From be638cf0a32ec1152be88b1a014b5508650cf8f7 Mon Sep 17 00:00:00 2001
From: huzekang <1040080742@qq.com>
Date: Fri, 6 Sep 2019 14:22:51 +0800
Subject: [PATCH] =?UTF-8?q?add:=201.scala=E8=AF=AD=E6=B3=95=E5=AD=A6?=
=?UTF-8?q?=E4=B9=A0=202.=20spark=20ml?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
spark-starter/pom.xml | 16 +-
.../wugui/sparkstarter/ml/SparkDouban.java | 18 +
.../com/wugui/sparkstarter/ml/SparkTFIDF.java | 63 +
.../sparkstarter/ml/TokenizerExample.java | 49 +
.../sparkstarter/ml/Word2VecExample.java | 53 +
.../src/main/resources/data/README.md | 3 +
.../src/main/resources/data/hot_movies.csv | 166 +
.../src/main/resources/data/user_movies.csv | 1007397 ++++++++++++++
.../resources/sample_movielens_ratings.txt | 1501 +
.../src/main/scala/AdvanceFunc.scala | 33 +
spark-starter/src/main/scala/BangSheng.scala | 21 +
spark-starter/src/main/scala/BreakTest.scala | 37 +
.../src/main/scala/CollectionTest.scala | 79 +
spark-starter/src/main/scala/FuncTest.scala | 32 +
spark-starter/src/main/scala/SparkPi.scala | 34 +
spark-starter/src/main/scala/TestVoMain.scala | 34 +
spark-starter/src/main/scala/UseJava.scala | 19 +
...70\347\224\250\345\207\275\346\225\260.md" | 385 +
18 files changed, 1009935 insertions(+), 5 deletions(-)
create mode 100644 spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkDouban.java
create mode 100644 spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkTFIDF.java
create mode 100644 spark-starter/src/main/java/com/wugui/sparkstarter/ml/TokenizerExample.java
create mode 100644 spark-starter/src/main/java/com/wugui/sparkstarter/ml/Word2VecExample.java
create mode 100644 spark-starter/src/main/resources/data/README.md
create mode 100755 spark-starter/src/main/resources/data/hot_movies.csv
create mode 100755 spark-starter/src/main/resources/data/user_movies.csv
create mode 100644 spark-starter/src/main/resources/sample_movielens_ratings.txt
create mode 100644 spark-starter/src/main/scala/AdvanceFunc.scala
create mode 100644 spark-starter/src/main/scala/BangSheng.scala
create mode 100644 spark-starter/src/main/scala/BreakTest.scala
create mode 100644 spark-starter/src/main/scala/CollectionTest.scala
create mode 100644 spark-starter/src/main/scala/FuncTest.scala
create mode 100644 spark-starter/src/main/scala/SparkPi.scala
create mode 100644 spark-starter/src/main/scala/TestVoMain.scala
create mode 100644 spark-starter/src/main/scala/UseJava.scala
create mode 100644 "spark-starter/src/main/scala/scala\346\225\260\346\215\256\347\273\223\346\236\204\345\222\214\345\270\270\347\224\250\345\207\275\346\225\260.md"
diff --git a/spark-starter/pom.xml b/spark-starter/pom.xml
index 2549d7b..283bd5f 100644
--- a/spark-starter/pom.xml
+++ b/spark-starter/pom.xml
@@ -51,11 +51,11 @@
-
-
-
-
-
+
+ org.apache.spark
+ spark-mllib_2.11
+ 2.4.0
+
@@ -151,6 +151,12 @@
+
+ org.scala-lang
+ scala-library
+ 2.11.12
+
+
diff --git a/spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkDouban.java b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkDouban.java
new file mode 100644
index 0000000..e2627c9
--- /dev/null
+++ b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkDouban.java
@@ -0,0 +1,18 @@
+package com.wugui.sparkstarter.ml;
+
+import org.apache.spark.api.java.JavaRDD;
+import org.apache.spark.rdd.RDD;
+import org.apache.spark.sql.Row;
+import org.apache.spark.sql.SparkSession;
+
+/**
+ * @program: bigdata-starter
+ * @author: huzekang
+ * @create: 2019-09-05 20:38
+ **/
+public class SparkDouban {
+ public static void main(String[] args) {
+ SparkSession sparkSession = SparkSession.builder().master("local").getOrCreate();
+ RDD rdd = sparkSession.read().text("/Users/huzekang/study/bigdata-starter/spark-starter/src/main/resources/data/hot_movies.csv").rdd();
+ }
+}
diff --git a/spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkTFIDF.java b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkTFIDF.java
new file mode 100644
index 0000000..327fb97
--- /dev/null
+++ b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/SparkTFIDF.java
@@ -0,0 +1,63 @@
+package com.wugui.sparkstarter.ml;
+
+import org.apache.spark.SparkContext;
+import org.apache.spark.ml.feature.HashingTF;
+import org.apache.spark.ml.feature.IDF;
+import org.apache.spark.ml.feature.IDFModel;
+import org.apache.spark.ml.feature.Tokenizer;
+import org.apache.spark.sql.Dataset;
+import org.apache.spark.sql.Row;
+import org.apache.spark.sql.RowFactory;
+import org.apache.spark.sql.SparkSession;
+import org.apache.spark.sql.types.DataTypes;
+import org.apache.spark.sql.types.Metadata;
+import org.apache.spark.sql.types.StructField;
+import org.apache.spark.sql.types.StructType;
+
+import java.util.Arrays;
+import java.util.List;
+
+/**
+ * @program: bigdata-starter
+ * @author: huzekang
+ * @create: 2019-09-05 18:49
+ **/
+public class SparkTFIDF {
+ public static void main(String[] args) {
+ SparkSession spark = SparkSession
+ .builder()
+ .appName("TFIDF")
+ .master("local")
+ .getOrCreate();
+
+ List data = Arrays.asList(
+ RowFactory.create(0.0, "Hi I heard about Spark"),
+ RowFactory.create(0.0, "I wish Java could use case classes"),
+ RowFactory.create(1.0, "Logistic regression models are neat")
+ );
+
+ StructType schema = new StructType(new StructField[]{
+ new StructField("label", DataTypes.DoubleType, false, Metadata.empty()),
+ new StructField("sentence", DataTypes.StringType, false, Metadata.empty())
+ });
+ Dataset sentenceData = spark.createDataFrame(data, schema);
+
+ Tokenizer tokenizer = new Tokenizer().setInputCol("sentence").setOutputCol("words");
+ Dataset wordsData = tokenizer.transform(sentenceData);
+
+ int numFeatures = 20;
+ HashingTF hashingTF = new HashingTF();
+ hashingTF.setInputCol("words")
+ .setOutputCol("rawFeatures");
+ //.setNumFeatures(numFeatures);
+
+ Dataset featurizedData = hashingTF.transform(wordsData);
+ featurizedData.show();
+
+ IDF idf = new IDF().setInputCol("rawFeatures").setOutputCol("features");
+ IDFModel idfModel = idf.fit(featurizedData);
+ Dataset rescalsedData = idfModel.transform(featurizedData);
+
+ System.out.println();
+ }
+}
diff --git a/spark-starter/src/main/java/com/wugui/sparkstarter/ml/TokenizerExample.java b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/TokenizerExample.java
new file mode 100644
index 0000000..85411f7
--- /dev/null
+++ b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/TokenizerExample.java
@@ -0,0 +1,49 @@
+package com.wugui.sparkstarter.ml;
+
+import org.apache.spark.ml.feature.Tokenizer;
+import org.apache.spark.sql.Dataset;
+import org.apache.spark.sql.Row;
+import org.apache.spark.sql.RowFactory;
+import org.apache.spark.sql.SparkSession;
+import org.apache.spark.sql.types.DataTypes;
+import org.apache.spark.sql.types.Metadata;
+import org.apache.spark.sql.types.StructField;
+import org.apache.spark.sql.types.StructType;
+
+import java.util.List;
+
+public class TokenizerExample
+{
+ public static void main(String[] args)
+ {
+ SparkSession spark = SparkSession
+ .builder()
+ .appName("Tokenizer")
+ .master("local")
+ .getOrCreate();
+
+ List data = java.util.Arrays.asList(
+ RowFactory.create(0, "Hi I heard about spark"),
+ RowFactory.create(1, "I wish Java could use case classes"),
+ RowFactory.create(2, "Logistic,regression,models,are,neat")
+ );
+
+ StructType schema = new StructType(new StructField[]{
+ new StructField("label", DataTypes.IntegerType, false, Metadata.empty()),
+ new StructField("sentence",DataTypes.StringType, false, Metadata.empty())
+ });
+
+ Dataset sentenceDataFrame = spark.createDataFrame(data, schema);
+
+ Tokenizer tokenizer = new Tokenizer().setInputCol("sentence").setOutputCol("words");
+
+ Dataset wordsData = tokenizer.transform(sentenceDataFrame);
+ for (Row r : wordsData.select("words","label").takeAsList(3))
+ {
+ List words = r.getList(0);
+ for (String word : words) {
+ System.out.println(word);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/spark-starter/src/main/java/com/wugui/sparkstarter/ml/Word2VecExample.java b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/Word2VecExample.java
new file mode 100644
index 0000000..39b36ba
--- /dev/null
+++ b/spark-starter/src/main/java/com/wugui/sparkstarter/ml/Word2VecExample.java
@@ -0,0 +1,53 @@
+package com.wugui.sparkstarter.ml;
+
+import org.apache.spark.ml.feature.Word2Vec;
+import org.apache.spark.ml.feature.Word2VecModel;
+import org.apache.spark.sql.Dataset;
+import org.apache.spark.sql.Row;
+import org.apache.spark.sql.RowFactory;
+import org.apache.spark.sql.SparkSession;
+import org.apache.spark.sql.types.*;
+
+import java.util.Arrays;
+import java.util.List;
+
+
+public class Word2VecExample
+{
+ public static void main(String[] args)
+ {
+ SparkSession spark = SparkSession
+ .builder()
+ .appName("TFIDF")
+ .master("local")
+ .getOrCreate();
+
+ List data = Arrays.asList(
+ RowFactory.create(Arrays.asList("Hi I herd about spark".split(" "))),
+ RowFactory.create(Arrays.asList("I wish Java could use case classes".split(" "))),
+ RowFactory.create(Arrays.asList("Logistic regression models are neat".split(" ")))
+ );
+
+ StructType schema = new StructType(new StructField[]{
+ new StructField("text", new ArrayType(DataTypes.StringType, true), false, Metadata.empty())
+ });
+
+ Dataset documentDF = spark.createDataFrame(data, schema);
+
+ Word2Vec word2Vec = new Word2Vec()
+ .setInputCol("text")
+ .setOutputCol("result")
+ .setVectorSize(7)
+ .setMinCount(0);
+
+ Word2VecModel model = word2Vec.fit(documentDF);
+ Dataset result = model.transform(documentDF);
+ result.show();
+// result.write().text("wor2vec");
+ for (Row r : result.takeAsList(10))
+ {
+ System.out.println(r);
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/spark-starter/src/main/resources/data/README.md b/spark-starter/src/main/resources/data/README.md
new file mode 100644
index 0000000..2f8f122
--- /dev/null
+++ b/spark-starter/src/main/resources/data/README.md
@@ -0,0 +1,3 @@
+基于Spark ML实现的豆瓣电影推荐系统
+
+https://colobu.com/2015/11/30/movie-recommendation-for-douban-users-by-spark-mllib/
\ No newline at end of file
diff --git a/spark-starter/src/main/resources/data/hot_movies.csv b/spark-starter/src/main/resources/data/hot_movies.csv
new file mode 100755
index 0000000..c46040e
--- /dev/null
+++ b/spark-starter/src/main/resources/data/hot_movies.csv
@@ -0,0 +1,166 @@
+20645098,8.2,小王子
+26259677,8.3,垫底辣妹
+11808948,7.2,海绵宝宝
+26253733,6.4,突然变异
+25856265,6.7,烈日迷踪
+26274810,6.6,侦探:为了原点
+25889465,6.3,抢劫
+1972724,7.3,斯坦福监狱实验
+6845667,8.0,秘密特工
+1866473,7.8,蚁人
+25859495,8.2,思悼
+25823132,8.1,暗杀
+10533913,8.8,头脑特工队
+25766754,8.2,年轻气盛
+26393561,8.8,小萝莉的猴神大叔
+26326395,5.1,真实魔鬼游戏
+25955491,8.6,罪恶之家
+25774051,6.8,寄生兽:完结篇
+24325923,8.0,我和厄尔以及将死的女孩
+2303845,7.2,刺客聂隐娘
+24719063,7.9,烈日灼心
+25911595,5.3,第三种爱情
+25933898,6.4,爱恋
+25763555,6.1,美式极端
+25761178,8.3,百元之恋
+25727048,7.8,福尔摩斯先生
+25855951,8.3,贝利叶一家
+26303865,7.7,维多利亚
+26304268,6.7,致命礼物
+25728010,7.5,老手
+21937450,8.2,国际市场
+25838463,6.2,像素大战
+25821461,7.7,旅程终点
+21350962,5.8,代号47
+3445457,7.8,无境之兽
+10773239,8.1,小男孩
+24397586,8.5,小羊肖恩
+26275494,7.3,橘色
+26297388,7.5,这时对那时错
+25955372,6.4,1980年代的爱情
+25823840,6.4,奸臣
+11624706,7.3,小黄人大眼萌
+10741643,8.3,我的个神啊
+25907004,4.6,坏姐姐之拆婚联盟
+26235839,7.5,内在美
+25774050,7.4,寄生兽
+23769147,7.7,爱情限时恋未尽
+26270517,7.8,愚人节
+25958787,7.8,深夜食堂 电影版
+26289144,7.6,滚蛋吧!肿瘤君
+25752261,7.6,女间谍
+25881628,6.7,幸存的女孩
+25853129,6.3,瑞奇和闪电
+25746375,7.3,我是路人甲
+25753326,7.1,巴霍巴利王(上)
+4075568,7.1,假期历险记
+6039412,6.3,时光尽头的恋人
+25870236,7.8,可爱的你
+24751764,6.1,三城记
+24405378,8.5,王牌特工:特工学院
+3592854,8.5,疯狂的麦克斯4:狂暴之路
+25830802,6.5,对风说爱你
+24879839,5.4,道士下山
+25774126,7.6,爷们些
+26304167,8.1,出租车
+25718082,7.0,念念
+23761370,8.4,速度与激情7
+10727641,7.8,碟中谍5:神秘国度
+25745752,5.5,左耳
+11540651,7.2,许三观
+11776289,6.2,华丽上班族
+4160540,7.5,机械姬
+25956520,6.6,太平轮(下)·彼岸
+26021055,4.1,栀子花开
+25962735,4.4,既然青春留不住
+26252157,7.5,龙三和他的七人党
+25723907,7.0,捉妖记
+11520649,8.2,麦克法兰
+19957083,6.5,泰迪熊2
+26252196,7.4,卫生间的圣母像
+26147706,7.9,花与爱丽丝杀人事件
+2973079,8.2,霍比特人3:五军之战
+26366634,5.3,嘘!禁止想象!
+3338862,6.9,终结者:创世纪
+25895276,6.4,煎饼侠
+3432861,6.5,黑色弥撒
+6873042,6.2,明日世界
+26384515,7.6,这里的黎明静悄悄
+26279166,4.6,鸭王
+4014396,4.1,神奇四侠2015
+25823833,6.0,天将雄师
+19897541,9.0,机动战士高达 THE ORIGIN I 青瞳的卡斯巴尔
+24325815,6.4,非我
+21345845,7.6,涉足荒野
+25821585,6.5,生活残骸
+24847343,4.6,小时代4:灵魂尽头
+25858759,5.0,有一个地方只有我们知道
+26582787,4.7,斗地主
+25858785,5.8,澳门风云2
+21349734,7.0,博物馆奇妙夜3
+23788440,7.4,杀破狼2
+25887846,6.7,传奇
+25794212,5.8,分歧者2:绝地反击
+6126442,6.2,一步之遥
+5446197,7.2,铁拳
+25862355,7.0,二十
+25945356,4.3,新步步惊心
+25786077,7.1,末日崩塌
+10741834,7.1,复仇者联盟2:奥创纪元
+25922902,7.5,唇上之歌
+10827341,7.3,疯狂外星人
+25881780,5.8,命中注定
+10604554,6.8,躲藏
+10792633,7.8,金衣女人
+25856480,5.7,巴黎假期
+26219652,5.7,少年班
+10440138,7.8,侏罗纪世界
+26328118,4.5,咒怨:完结篇
+2325873,5.0,第七子:降魔之战
+25944282,6.2,纸镇
+25746414,5.3,暴走神探
+25986688,4.5,流浪者年代记
+25767747,7.4,故事的故事
+21442760,7.2,最长的旅程
+25872931,6.0,万物生长
+26263443,5.7,恋爱中的城市
+3078390,5.7,太平轮(上)
+6875263,6.8,灰姑娘
+24716045,6.8,远离尘嚣
+6866928,5.1,进击的巨人真人版:前篇
+26276359,7.1,酷毙了
+25898213,7.1,军犬麦克斯
+26356488,7.9,1944
+26285777,5.2,有客到
+24307637,6.3,江南1970
+6846893,7.2,超能查派
+25853727,7.3,破风
+24753810,7.0,战狼
+3608742,7.6,冲出康普顿
+26599083,5.0,妈妈的朋友
+25843352,7.2,如此美好
+25908042,4.6,横冲直撞好莱坞
+25912924,6.3,暗杀教室
+25907088,5.0,魔镜
+25809260,6.5,工作女郎
+5154799,5.4,木星上行
+25805054,6.4,十万个冷笑话
+22522269,6.7,战斧骨
+24872023,5.3,贵族大盗
+24743709,4.1,北京纽约
+25717176,6.2,新宿天鹅
+24751757,4.8,微爱之渐入佳境
+26265099,6.8,白河夜船
+25835293,6.4,失孤
+25868191,5.1,极道大战争
+25779218,5.4,匆匆那年
+25861695,7.1,海月姬
+25731554,7.4,西部慢调
+3006769,6.9,大眼睛
+10440076,5.6,最后的女巫猎人
+22556810,4.5,猛龙特囧
+7003416,4.4,冲上云霄
+25919385,7.8,长寿商会
+11541282,5.8,魔力麦克2
+10793610,6.4,法老与众神
+25778488,4.1,宅女侦探桂香
diff --git a/spark-starter/src/main/resources/data/user_movies.csv b/spark-starter/src/main/resources/data/user_movies.csv
new file mode 100755
index 0000000..24ae337
--- /dev/null
+++ b/spark-starter/src/main/resources/data/user_movies.csv
@@ -0,0 +1,1007397 @@
+adamwzw,20645098,4
+baka_mono,20645098,3
+iRayc,20645098,2
+blueandgreen,20645098,3
+130992805,20645098,4
+134629166,20645098,5
+wangymm,20645098,3
+61336044,20645098,5
+sirius_sky,20645098,1
+46835510,20645098,5
+125554749,20645098,5
+136801905,20645098,5
+z30473,20645098,5
+76258520,20645098,5
+120784919,20645098,3
+longgouhugo,20645098,3
+screem2046,20645098,4
+76681041,20645098,3
+3962795,20645098,5
+chengyaojiang,20645098,5
+chengyaojiang,20645098,5
+yatiour,20645098,5
+toool,20645098,2
+48705415,20645098,4
+gezix1n,20645098,5
+52668487,20645098,4
+122370677,20645098,-1
+62637324,20645098,5
+zhaosq,20645098,4
+92451240,20645098,5
+50574309,20645098,5
+rx7801,20645098,-1
+4336649,20645098,5
+75173567,20645098,4
+135101430,20645098,5
+pubolin,20645098,4
+128563781,20645098,5
+goofy-G,20645098,4
+TonyLeungNCFan,20645098,4
+yeung123,20645098,5
+55790566,20645098,4
+yiannisyan,20645098,5
+50625431,20645098,5
+33523138,20645098,5
+36664394,20645098,4
+99075556,20645098,5
+57997316,20645098,4
+3584036,20645098,4
+58945423,20645098,5
+14247291,20645098,3
+46444197,20645098,4
+16235886,20645098,-1
+qzl,20645098,5
+47857020,20645098,5
+45612704,20645098,5
+60311898,20645098,3
+103180003,20645098,4
+4234130,20645098,5
+sslclz,20645098,4
+labite,20645098,1
+2593614,20645098,5
+128095249,20645098,5
+7960364,20645098,3
+126412740,20645098,1
+72866809,20645098,4
+39360207,20645098,4
+40081078,20645098,5
+63012598,20645098,-1
+lixiaoshall,20645098,3
+59856519,20645098,4
+mpor2,20645098,5
+135716425,20645098,4
+zhanling,20645098,4
+60368000,20645098,5
+56046368,20645098,5
+45223979,20645098,5
+46534834,20645098,3
+cicizhaowei,20645098,4
+45631897,20645098,5
+diva423,20645098,4
+2498446,20645098,3
+51640688,20645098,3
+65542582,20645098,4
+91163114,20645098,4
+115833556,20645098,5
+soffie,20645098,3
+momo6612,20645098,5
+53815348,20645098,4
+97816774,20645098,3
+73766908,20645098,5
+55849765,20645098,3
+74600340,20645098,5
+41375652,20645098,5
+53401173,20645098,5
+42471993,20645098,4
+135442645,20645098,5
+57968608,20645098,5
+84468658,20645098,5
+Murphymolly,20645098,4
+13424583,20645098,3
+50597699,20645098,4
+guolibin,20645098,4
+65117604,20645098,4
+42903485,20645098,3
+75668833,20645098,5
+veroniques,20645098,5
+24071740,20645098,4
+sqiqis,20645098,4
+53041218,20645098,5
+94032593,20645098,3
+51909421,20645098,3
+97133349,20645098,5
+yqp1987,20645098,3
+135996237,20645098,5
+54664894,20645098,3
+122593554,20645098,5
+65987456,20645098,5
+81774069,20645098,5
+thisisgap,20645098,4
+82820975,20645098,4
+rhe,20645098,5
+michaelhuan,20645098,5
+Vampire0704,20645098,4
+47802475,20645098,5
+131496500,20645098,4
+67330888,20645098,4
+59326783,20645098,4
+1989077,20645098,4
+76635599,20645098,2
+lovehebey,20645098,4
+65053075,20645098,3
+44587302,20645098,4
+66991726,20645098,5
+50527694,20645098,5
+34080365,20645098,5
+50227330,20645098,5
+70694742,20645098,-1
+126780823,20645098,2
+shamoshuiping,20645098,5
+stilllovebobdyl,20645098,4
+39266502,20645098,5
+3006618,20645098,-1
+37420534,20645098,4
+48165098,20645098,4
+74520364,20645098,5
+122327681,20645098,4
+cognac,20645098,4
+62216368,20645098,2
+95443822,20645098,4
+79489792,20645098,5
+minusculeF,20645098,1
+128643809,20645098,4
+90025780,20645098,5
+97155046,20645098,5
+52973703,20645098,4
+sirius_zhang,20645098,4
+128012079,20645098,5
+130567322,20645098,4
+87902611,20645098,-1
+50620373,20645098,5
+SecretInMyBox,20645098,5
+71985811,20645098,4
+53935985,20645098,4
+125147753,20645098,4
+61439975,20645098,5
+staceysung,20645098,3
+linyumi7,20645098,5
+129488626,20645098,5
+momoroe,20645098,5
+seaunt,20645098,5
+49366879,20645098,2
+stranger.,20645098,4
+55942870,20645098,4
+dangxiaoshi,20645098,5
+47688996,20645098,4
+41791950,20645098,3
+78358396,20645098,3
+127408964,20645098,5
+aspartameeee,20645098,3
+56691333,20645098,5
+41517741,20645098,3
+40684892,20645098,5
+57275978,20645098,5
+37210878,20645098,3
+69639078,20645098,5
+11080929,20645098,4
+77620661,20645098,3
+cpxxpc,20645098,5
+40751641,20645098,3
+krisleung,20645098,3
+wacky02,20645098,4
+34083797,20645098,5
+rabbit0709,20645098,4
+2092765,20645098,3
+97786845,20645098,-1
+53965566,20645098,4
+137075359,20645098,5
+26639772,20645098,5
+2877330,20645098,3
+yiri,20645098,-1
+57968508,20645098,5
+66399464,20645098,5
+52872697,20645098,5
+58005758,20645098,5
+chengchen0121,20645098,5
+41440460,20645098,4
+66057217,20645098,3
+31922532,20645098,3
+narrowjiu,20645098,4
+57791239,20645098,3
+50709951,20645098,3
+40360938,20645098,4
+88268903,20645098,4
+yozir,20645098,3
+3176021,20645098,5
+71014294,20645098,5
+70917351,20645098,3
+Godknows,20645098,5
+92913612,20645098,3
+83769093,20645098,3
+80820907,20645098,5
+62388997,20645098,3
+tove,20645098,5
+22991326,20645098,3
+132272414,20645098,5
+nandeyansu,20645098,5
+74571823,20645098,4
+115946437,20645098,5
+48443053,20645098,3
+121247515,20645098,5
+104731423,20645098,5
+99870614,20645098,3
+47802404,20645098,3
+56400825,20645098,4
+68102477,20645098,4
+84872284,20645098,4
+olabaobao,20645098,3
+53055726,20645098,5
+37600684,20645098,4
+16166133,20645098,3
+23621516,20645098,3
+34978816,20645098,5
+22056950,20645098,4
+vermouthsama,20645098,4
+63374320,20645098,5
+59685430,20645098,5
+51901036,20645098,4
+62153097,20645098,3
+38640250,20645098,2
+59944601,20645098,4
+pangtuan,20645098,4
+3032632,20645098,4
+bottle_hp,20645098,3
+4221659,20645098,3
+56994326,20645098,4
+83119838,20645098,4
+taratot,20645098,4
+xingxkxk,20645098,5
+yberbing,20645098,4
+4852496,20645098,4
+dreamer629,20645098,5
+135413824,20645098,5
+82229788,20645098,5
+54224355,20645098,3
+superdj,20645098,5
+79960653,20645098,4
+xiying,20645098,3
+44371183,20645098,3
+49634368,20645098,4
+60367620,20645098,4
+72451264,20645098,5
+yuanliu,20645098,3
+122879836,20645098,4
+53002120,20645098,3
+51507158,20645098,4
+122891503,20645098,5
+134503726,20645098,4
+55652120,20645098,4
+50510191,20645098,4
+41471411,20645098,3
+yuan521123,20645098,4
+58472013,20645098,4
+krugwoman,20645098,3
+65532408,20645098,5
+dido0626,20645098,5
+48543551,20645098,5
+68333051,20645098,4
+meilen,20645098,3
+80755814,20645098,5
+allen_y,20645098,4
+80537833,20645098,4
+Pudding33,20645098,4
+121997108,20645098,4
+70268382,20645098,2
+4341731,20645098,5
+129734802,20645098,4
+127252296,20645098,5
+aellr,20645098,1
+67656730,20645098,4
+65120739,20645098,5
+134499494,20645098,4
+109800958,20645098,3
+ravinenoravine,20645098,3
+58096357,20645098,4
+37737818,20645098,5
+102069788,20645098,3
+87603464,20645098,2
+61289644,20645098,5
+gaohame,20645098,4
+58882274,20645098,5
+95313700,20645098,4
+49606070,20645098,5
+miaogusensai,20645098,4
+98576573,20645098,5
+40300209,20645098,3
+ZDY95MY,20645098,4
+58042557,20645098,5
+37488201,20645098,-1
+121116969,20645098,3
+46583947,20645098,5
+54511196,20645098,4
+53341104,20645098,5
+2206999,20645098,5
+wangqi19881129,20645098,4
+133410756,20645098,5
+75441561,20645098,4
+12534073,20645098,4
+leeconping,20645098,5
+66113793,20645098,4
+47151726,20645098,3
+4068305,20645098,5
+caoduozi,20645098,4
+50476857,20645098,4
+1748014,20645098,2
+yachne0928,20645098,5
+joseph1213,20645098,2
+35241807,20645098,1
+40086365,20645098,5
+69535474,20645098,2
+37419863,20645098,4
+2738227,20645098,5
+65616591,20645098,4
+quinyu,20645098,3
+6776669,20645098,4
+Tigerag,20645098,4
+43375121,20645098,5
+73666911,20645098,3
+48938261,20645098,5
+114710465,20645098,4
+39590903,20645098,4
+61193045,20645098,4
+63673590,20645098,4
+wltao,20645098,4
+nevernice,20645098,4
+24534365,20645098,5
+56945675,20645098,1
+48414241,20645098,2
+Shirleyjscy,20645098,5
+99027512,20645098,4
+64873674,20645098,5
+itsmeymq,20645098,4
+carol2sea,20645098,4
+57041893,20645098,5
+winter-summer,20645098,-1
+66698052,20645098,3
+54342192,20645098,5
+4684266,20645098,3
+88658178,20645098,4
+57418562,20645098,4
+35069880,20645098,2
+39708774,20645098,-1
+55558648,20645098,4
+WZRY,20645098,5
+52012929,20645098,5
+53002213,20645098,2
+mrcandy,20645098,3
+60963394,20645098,5
+xpwk,20645098,-1
+lesliesunny,20645098,5
+lucifers,20645098,3
+89411042,20645098,4
+50433409,20645098,3
+amoric_sang,20645098,5
+hou_yuting,20645098,-1
+60036995,20645098,3
+jeffmsu,20645098,5
+ViviaChen,20645098,4
+134222368,20645098,2
+hennic,20645098,4
+caohongmei,20645098,2
+92944589,20645098,4
+59347352,20645098,3
+L5.P4,20645098,4
+47561224,20645098,4
+4582318,20645098,2
+victoria1024,20645098,4
+52214552,20645098,5
+fantom,20645098,4
+tian9005,20645098,5
+43400315,20645098,5
+43400315,20645098,5
+WALKING33,20645098,5
+127771292,20645098,3
+hohoyuhu,20645098,3
+57931932,20645098,4
+73537382,20645098,2
+84837410,20645098,4
+qingh,20645098,4
+50952518,20645098,4
+68509371,20645098,5
+130746615,20645098,-1
+wanglutong,20645098,1
+66706238,20645098,5
+69907281,20645098,4
+3498321,20645098,4
+49308867,20645098,5
+1401397,20645098,5
+66877401,20645098,4
+53339781,20645098,2
+86691385,20645098,4
+aislinnsecret,20645098,2
+124387754,20645098,5
+1958346,20645098,4
+21388170,20645098,3
+Neverlandor,20645098,3
+101864611,20645098,5
+91193494,20645098,5
+wena,20645098,4
+Optimus-Prime,20645098,4
+104582980,20645098,4
+57325323,20645098,3
+79074513,20645098,3
+126010684,20645098,5
+JimmySong,20645098,5
+wunaihuaqi,20645098,1
+123097597,20645098,4
+114658288,20645098,5
+4475760,20645098,5
+girliya,20645098,5
+gdamosusan,20645098,5
+84937702,20645098,4
+133019129,20645098,4
+miss_xiaoxiao,20645098,4
+guosai,20645098,4
+29606366,20645098,4
+126575098,20645098,3
+wangxiaolu,20645098,4
+1259506,20645098,5
+labifenelm,20645098,3
+liltwo,20645098,4
+WhoRU,20645098,4
+118854321,20645098,4
+phoenixjing,20645098,3
+81530706,20645098,3
+85512878,20645098,5
+47367894,20645098,5
+ariel1988731,20645098,4
+57071643,20645098,5
+huayeah,20645098,4
+77785733,20645098,5
+54330110,20645098,3
+SHANGYIMOMO,20645098,5
+134540327,20645098,5
+luckmelon,20645098,5
+45856827,20645098,4
+92567735,20645098,4
+55656364,20645098,4
+tom926,20645098,3
+62900892,20645098,4
+1876785,20645098,3
+132685909,20645098,4
+57771981,20645098,4
+y1-yu,20645098,5
+122696545,20645098,4
+47647880,20645098,5
+countcrows,20645098,4
+101884264,20645098,3
+84267223,20645098,5
+73042317,20645098,5
+wunie,20645098,4
+48825512,20645098,4
+malalt,20645098,4
+135237999,20645098,3
+73156181,20645098,4
+62284723,20645098,5
+101978260,20645098,3
+74420414,20645098,5
+100175553,20645098,5
+67783544,20645098,3
+77522635,20645098,4
+79132036,20645098,2
+rtzzw,20645098,4
+dustblue,20645098,3
+23502104,20645098,5
+harriet,20645098,3
+125224826,20645098,5
+115560712,20645098,5
+5747784,20645098,3
+46133817,20645098,3
+vikawang,20645098,3
+65284332,20645098,5
+47364324,20645098,4
+lovebaimei,20645098,4
+hellohanxi,20645098,3
+65912201,20645098,5
+92956323,20645098,3
+58630944,20645098,3
+62688271,20645098,3
+42832142,20645098,5
+55987282,20645098,5
+89792617,20645098,4
+cmtqz1gxfdr,20645098,2
+lucarolinelu,20645098,3
+3925373,20645098,5
+3941641,20645098,3
+Returnofthek,20645098,5
+cowsumy,20645098,5
+fmxiaofei,20645098,4
+1225013,20645098,-1
+enmaying,20645098,5
+63888010,20645098,5
+39877849,20645098,3
+31640275,20645098,4
+DKJessica,20645098,5
+Quester,20645098,5
+101464428,20645098,4
+tongtong7,20645098,3
+67681966,20645098,2
+3489632,20645098,4
+ce-ce,20645098,5
+70392127,20645098,3
+59741946,20645098,3
+xinxinniannian,20645098,3
+malu,20645098,3
+97334739,20645098,4
+vivien_princess,20645098,5
+99181086,20645098,1
+50621647,20645098,5
+sijizhp,20645098,4
+cloudlandlord,20645098,3
+parkxiahky,20645098,-1
+emilystar,20645098,5
+35628940,20645098,5
+IMINCR,20645098,-1
+49319979,20645098,4
+zhangyongfeng,20645098,5
+68404885,20645098,5
+62318695,20645098,5
+bluestone17,20645098,4
+53673765,20645098,5
+63781325,20645098,3
+lianshengsu,20645098,-1
+guyewuzhe,20645098,3
+40166841,20645098,3
+71477875,20645098,5
+2320875,20645098,-1
+wcngsjb,20645098,5
+42594038,20645098,5
+unnanae,20645098,5
+32008707,20645098,3
+4708598,20645098,-1
+127675582,20645098,3
+yao-monster,20645098,4
+87035372,20645098,3
+82550997,20645098,3
+60685540,20645098,5
+46659706,20645098,3
+66620851,20645098,5
+34569099,20645098,5
+48599915,20645098,5
+58714252,20645098,-1
+fan0208,20645098,4
+2978852,20645098,3
+lvqing,20645098,5
+yanbodiaoyu,20645098,2
+65488479,20645098,5
+57024226,20645098,3
+4287326,20645098,3
+douces,20645098,5
+49897167,20645098,3
+66846318,20645098,3
+81059128,20645098,5
+49397696,20645098,2
+124491349,20645098,4
+115569884,20645098,5
+60768165,20645098,4
+121726595,20645098,5
+10377981,20645098,3
+xiongge,20645098,5
+chloethegirl,20645098,3
+Dallipop,20645098,-1
+moyia,20645098,5
+64249051,20645098,1
+90195667,20645098,5
+3845975,20645098,3
+102938445,20645098,3
+92468807,20645098,3
+62312357,20645098,5
+70780550,20645098,4
+1069770,20645098,4
+62436528,20645098,5
+69835584,20645098,5
+loyalso,20645098,5
+68596231,20645098,2
+lunaya,20645098,3
+kingflower,20645098,4
+120259879,20645098,4
+71316982,20645098,5
+135473328,20645098,5
+L-Meditation,20645098,4
+49526730,20645098,4
+64555870,20645098,5
+1831746,20645098,3
+135126816,20645098,5
+49354246,20645098,4
+56130792,20645098,3
+78640879,20645098,3
+131632042,20645098,3
+133401254,20645098,5
+63941479,20645098,4
+1369129,20645098,3
+119883443,20645098,4
+81985285,20645098,4
+133497939,20645098,5
+6263589,20645098,4
+88226626,20645098,4
+95791019,20645098,5
+best4tina,20645098,4
+41094443,20645098,-1
+xtrats,20645098,3
+47546589,20645098,3
+58739294,20645098,5
+molihana,20645098,4
+59901599,20645098,5
+37035504,20645098,5
+55375806,20645098,5
+58687446,20645098,5
+Eme,20645098,3
+momoloveU,20645098,4
+chenyj,20645098,5
+100000149,20645098,5
+138125552,20645098,4
+54725975,20645098,4
+kevincaiduo,20645098,5
+vivien0212,20645098,4
+2552257,20645098,4
+74908002,20645098,4
+42778669,20645098,5
+sodafan,20645098,3
+qinaidebugua,20645098,3
+62956939,20645098,5
+jidoudou,20645098,5
+103246953,20645098,5
+63720309,20645098,3
+73108390,20645098,3
+58256525,20645098,5
+3729384,20645098,4
+clairegyy,20645098,2
+winnie0212,20645098,4
+114284723,20645098,5
+114284723,20645098,5
+68675748,20645098,4
+68699271,20645098,4
+Lonelyforward,20645098,4
+80607312,20645098,5
+bzfdu,20645098,4
+72598751,20645098,4
+87909103,20645098,3
+133393933,20645098,4
+55556011,20645098,4
+qiantuo0508,20645098,2
+orcagoal,20645098,4
+drxdrxdrxdrx,20645098,4
+80808248,20645098,4
+96290717,20645098,3
+3116272,20645098,4
+65055486,20645098,3
+88926842,20645098,5
+101786960,20645098,5
+65341751,20645098,5
+3310337,20645098,3
+95386641,20645098,3
+beckhacong,20645098,3
+90325710,20645098,4
+43511352,20645098,3
+lucialo,20645098,3
+irissui,20645098,4
+86856135,20645098,3
+84386848,20645098,5
+94966849,20645098,4
+45797451,20645098,3
+63092220,20645098,5
+56705427,20645098,4
+70794815,20645098,2
+124385874,20645098,3
+lancieee,20645098,5
+73852704,20645098,3
+Christinayanhan,20645098,5
+48997081,20645098,4
+46861838,20645098,4
+46861838,20645098,4
+4076571,20645098,4
+luoluochina,20645098,4
+116304949,20645098,5
+116054073,20645098,4
+smilbee,20645098,-1
+53199629,20645098,3
+120742454,20645098,3
+63064889,20645098,5
+45980116,20645098,4
+4900400,20645098,4
+84698224,20645098,5
+smg,20645098,3
+wwnoah,20645098,3
+47737561,20645098,4
+120219184,20645098,3
+lovemetaphor,20645098,5
+121921291,20645098,2
+58797277,20645098,3
+Shengkai_ShiW,20645098,3
+Shengkai_ShiW,20645098,3
+132262851,20645098,5
+51410491,20645098,4
+68002540,20645098,1
+55606448,20645098,5
+76477435,20645098,3
+136097347,20645098,4
+121368079,20645098,3
+4203522,20645098,3
+103180412,20645098,4
+johnlane360,20645098,3
+33261301,20645098,4
+100091686,20645098,3
+46135370,20645098,4
+64425214,20645098,4
+1565567,20645098,5
+78301371,20645098,5
+5691697,20645098,3
+121354261,20645098,3
+87727957,20645098,4
+jessica8111,20645098,4
+53257465,20645098,5
+55741572,20645098,5
+107594537,20645098,4
+4679551,20645098,5
+sherrytu,20645098,4
+50601373,20645098,4
+4172986,20645098,5
+fishnene,20645098,4
+4448887,20645098,4
+lg_longer,20645098,4
+3579800,20645098,3
+Ada_Liu,20645098,3
+hanachloe,20645098,3
+88502851,20645098,-1
+53426437,20645098,4
+stardawn,20645098,-1
+catheringli,20645098,5
+65590175,20645098,3
+jimmy037,20645098,3
+jimmy037,20645098,3
+xuanxuan1209,20645098,5
+44994541,20645098,4
+yiasong,20645098,3
+135128946,20645098,4
+59089460,20645098,1
+colatea,20645098,5
+sky-captaion,20645098,5
+61506971,20645098,4
+61162296,20645098,-1
+52622488,20645098,4
+58919499,20645098,4
+74537284,20645098,4
+MavisMoore,20645098,4
+44140767,20645098,4
+42787418,20645098,5
+37242209,20645098,5
+loveanimals,20645098,3
+Redycc,20645098,4
+Y19950422,20645098,4
+43430222,20645098,5
+52536484,20645098,2
+81589343,20645098,5
+diwosy,20645098,1
+137591600,20645098,5
+127347148,20645098,5
+37102095,20645098,-1
+50699357,20645098,4
+70996426,20645098,4
+58466235,20645098,4
+49946146,20645098,4
+82038252,20645098,3
+anniemax,20645098,5
+69674172,20645098,3
+Geminiying,20645098,4
+divingbird,20645098,5
+gexiaoshang,20645098,4
+66035702,20645098,4
+lolli_yj,20645098,3
+1529544,20645098,-1
+84868729,20645098,5
+49339227,20645098,5
+aikuyu,20645098,4
+106581395,20645098,5
+hdrsdgd,20645098,4
+63027817,20645098,4
+66904097,20645098,5
+Babybabygirl,20645098,4
+29904054,20645098,3
+58151244,20645098,5
+fooog,20645098,4
+2718163,20645098,5
+78588109,20645098,5
+58802831,20645098,5
+36664214,20645098,5
+57285224,20645098,5
+133795191,20645098,4
+1334269,20645098,5
+75911869,20645098,5
+108451433,20645098,4
+48921552,20645098,4
+SpancerM,20645098,3
+S-ing,20645098,3
+82980188,20645098,3
+niazion,20645098,5
+83214911,20645098,-1
+69773058,20645098,4
+75179640,20645098,4
+125849315,20645098,4
+105071662,20645098,3
+scarling,20645098,5
+sweetloli,20645098,5
+83242410,20645098,3
+49197459,20645098,2
+2106137,20645098,3
+66576261,20645098,3
+95822092,20645098,3
+88858264,20645098,4
+1756784,20645098,5
+2035151,20645098,4
+53898279,20645098,4
+45182133,20645098,3
+35649596,20645098,3
+64626178,20645098,5
+130969145,20645098,5
+3129978,20645098,3
+roam0629,20645098,3
+91713449,20645098,5
+68153956,20645098,3
+59099811,20645098,3
+131364833,20645098,5
+90610268,20645098,5
+60230973,20645098,1
+3595754,20645098,4
+96428900,20645098,5
+32920328,20645098,5
+88412250,20645098,3
+kongchanzhimeng,20645098,4
+bdnet,20645098,4
+47152561,20645098,4
+49959307,20645098,4
+teikain,20645098,2
+135426117,20645098,5
+aprileuro,20645098,4
+39056323,20645098,4
+G-myloxg,20645098,4
+42387519,20645098,3
+54083120,20645098,5
+60593657,20645098,4
+65079823,20645098,3
+44112436,20645098,4
+zl1237,20645098,5
+81156493,20645098,4
+3414519,20645098,3
+yzymo,20645098,5
+120338818,20645098,4
+132160274,20645098,4
+77922789,20645098,4
+lalamaggie,20645098,4
+81765406,20645098,2
+guihua621,20645098,5
+XinwenCheng,20645098,3
+cfaye,20645098,4
+hapysmile,20645098,3
+3410802,20645098,4
+104426261,20645098,4
+pandalucia,20645098,5
+47126344,20645098,4
+62926087,20645098,3
+131545662,20645098,4
+75474977,20645098,4
+ifeon,20645098,5
+79734997,20645098,4
+55617091,20645098,3
+67811189,20645098,2
+62383479,20645098,4
+130530674,20645098,5
+2297182,20645098,5
+120700818,20645098,3
+54467510,20645098,4
+56413663,20645098,5
+125486690,20645098,3
+83145085,20645098,4
+68521572,20645098,4
+115793590,20645098,5
+47603156,20645098,5
+115032485,20645098,3
+78759547,20645098,4
+yueyarom,20645098,5
+73623587,20645098,3
+89989677,20645098,4
+119760899,20645098,4
+65055212,20645098,4
+43788388,20645098,3
+xzz005,20645098,5
+54931017,20645098,4
+73847666,20645098,5
+liu1231,20645098,5
+89716765,20645098,5
+88638997,20645098,3
+56519940,20645098,4
+66554286,20645098,4
+gushaochen,20645098,3
+132433995,20645098,4
+1322402,20645098,4
+61557388,20645098,5
+127613691,20645098,4
+92490871,20645098,4
+52840916,20645098,3
+63630042,20645098,5
+83250000,20645098,5
+46520547,20645098,-1
+60038533,20645098,4
+117007812,20645098,1
+45840485,20645098,4
+mdtu,20645098,5
+fiona-cin,20645098,4
+136957186,20645098,3
+66794531,20645098,3
+83974267,20645098,4
+1240037,20645098,4
+119945985,20645098,3
+78730817,20645098,3
+s399,20645098,5
+25982397,20645098,3
+44271979,20645098,5
+50434812,20645098,4
+lsljctx,20645098,5
+36530982,20645098,3
+75814366,20645098,-1
+GTHUN,20645098,5
+3119825,20645098,4
+71061897,20645098,4
+lingdongling,20645098,4
+45055967,20645098,4
+115693800,20645098,4
+amyqiou,20645098,3
+85441088,20645098,5
+82764407,20645098,5
+76514252,20645098,5
+bhikkhuni,20645098,4
+135662436,20645098,5
+littlezhisandra,20645098,3
+120674319,20645098,5
+54397830,20645098,3
+wndtlkr,20645098,4
+71458303,20645098,5
+102148082,20645098,5
+Anitachung,20645098,3
+76997093,20645098,5
+52973706,20645098,5
+127380400,20645098,5
+MeloTheFisher,20645098,3
+69796665,20645098,4
+gning,20645098,4
+yuccaxx,20645098,4
+113608312,20645098,5
+seivm,20645098,4
+44059502,20645098,4
+77678238,20645098,3
+26715515,20645098,3
+44510441,20645098,4
+leavev,20645098,4
+123112954,20645098,4
+5012885,20645098,4
+50933473,20645098,5
+zoewen1984,20645098,4
+wuyunoy,20645098,3
+61539163,20645098,4
+134758461,20645098,4
+67288088,20645098,3
+78971867,20645098,4
+68277125,20645098,3
+yangqihang,20645098,4
+chujiaojian,20645098,4
+49693617,20645098,5
+48524156,20645098,5
+50034582,20645098,4
+116260749,20645098,4
+demon94cc,20645098,5
+kaulitz,20645098,4
+3582364,20645098,5
+75270955,20645098,5
+49259090,20645098,3
+7094131,20645098,3
+2889153,20645098,3
+70042257,20645098,3
+lingjunxin,20645098,4
+yuhuaizi,20645098,3
+134525766,20645098,3
+31613597,20645098,5
+63760706,20645098,4
+saky,20645098,3
+1794585,20645098,3
+2327694,20645098,4
+82832477,20645098,4
+134473693,20645098,4
+15689369,20645098,5
+74186681,20645098,4
+49210030,20645098,4
+simonfishing,20645098,3
+kisscat890505,20645098,5
+46920813,20645098,4
+49872790,20645098,4
+katherine_pig,20645098,5
+1282175,20645098,3
+insolitude,20645098,5
+hayden001,20645098,3
+59480546,20645098,5
+78668658,20645098,5
+73704277,20645098,5
+55607540,20645098,-1
+54202610,20645098,4
+71038565,20645098,4
+xiaosummer,20645098,4
+80304181,20645098,4
+geyao1994,20645098,4
+57847628,20645098,-1
+2217349,20645098,5
+58783502,20645098,4
+an-th7,20645098,1
+55966458,20645098,4
+42724768,20645098,4
+135440439,20645098,5
+50353681,20645098,4
+xlei130,20645098,3
+133380603,20645098,2
+56521026,20645098,4
+116290357,20645098,3
+15456074,20645098,5
+67905577,20645098,4
+78500828,20645098,4
+xi_1483,20645098,4
+130147627,20645098,5
+121540770,20645098,5
+sophie.sue,20645098,4
+flowerbaobao,20645098,5
+64600611,20645098,5
+55657617,20645098,3
+59172571,20645098,4
+stupidcat7652,20645098,4
+Chenxinhonghly,20645098,5
+119929270,20645098,5
+51435556,20645098,4
+48659455,20645098,5
+63072032,20645098,4
+foreverGJC8023,20645098,3
+70310265,20645098,4
+rbhuanxiong,20645098,4
+mokizhou,20645098,5
+63475975,20645098,4
+67823219,20645098,3
+www3737,20645098,4
+SnowlinHu,20645098,5
+zengrcsth,20645098,2
+48505839,20645098,2
+116652565,20645098,5
+flinhong,20645098,4
+samsaran,20645098,4
+76947768,20645098,4
+136182829,20645098,4
+diantaitou,20645098,3
+icetyle,20645098,4
+45069650,20645098,4
+136947765,20645098,4
+antiquelegend,20645098,5
+71821400,20645098,4
+58123651,20645098,4
+sophie1990,20645098,3
+63475932,20645098,4
+masaikejun,20645098,3
+133162014,20645098,5
+JosephineQv,20645098,5
+43447764,20645098,4
+sulla,20645098,5
+mogu-biu,20645098,3
+ruocun123,20645098,4
+67385694,20645098,3
+louieeeee,20645098,4
+1128584,20645098,5
+119858082,20645098,4
+yanjie0310,20645098,5
+56169417,20645098,4
+7255952,20645098,4
+adai112,20645098,4
+1077635,20645098,4
+103197916,20645098,4
+muouplay,20645098,3
+2293401,20645098,3
+58175019,20645098,5
+cecaazhang,20645098,3
+44345461,20645098,4
+137794763,20645098,5
+55933493,20645098,3
+77898629,20645098,5
+GameCEO,20645098,5
+101755012,20645098,4
+nowingcolorful,20645098,4
+65662824,20645098,4
+60421761,20645098,4
+68878530,20645098,4
+feiyangxzy,20645098,4
+135751000,20645098,4
+Josieeeeee,20645098,3
+49010022,20645098,4
+star0607,20645098,5
+48484446,20645098,5
+cathyyzn,20645098,5
+51721466,20645098,4
+58703684,20645098,4
+59013721,20645098,4
+50527578,20645098,-1
+2976059,20645098,5
+xiangyi816,20645098,3
+boool,20645098,4
+91097572,20645098,3
+59964725,20645098,4
+124170602,20645098,5
+65361718,20645098,4
+56877055,20645098,3
+42784448,20645098,4
+67072789,20645098,5
+72293050,20645098,5
+62532292,20645098,5
+2322487,20645098,2
+susuger,20645098,5
+87860382,20645098,4
+59221485,20645098,5
+65471574,20645098,3
+cyj8866,20645098,4
+44498578,20645098,4
+3677612,20645098,5
+Silvia_song,20645098,5
+foleyfan,20645098,4
+2198085,20645098,-1
+88817660,20645098,2
+14453874,20645098,3
+ranfei,20645098,4
+56655394,20645098,4
+46945318,20645098,5
+66458815,20645098,3
+55978536,20645098,4
+109849422,20645098,4
+51162865,20645098,5
+91446742,20645098,5
+3282401,20645098,3
+sudouya,20645098,3
+happen23,20645098,4
+52246931,20645098,3
+tonny-young,20645098,3
+61010244,20645098,5
+120835046,20645098,4
+spottedowl,20645098,4
+48174123,20645098,4
+exceppt,20645098,5
+69678068,20645098,4
+77645193,20645098,4
+heyidi,20645098,1
+48937810,20645098,5
+48785308,20645098,-1
+51416551,20645098,4
+136667430,20645098,4
+yuyip,20645098,5
+81752466,20645098,3
+136456460,20645098,5
+Sinept,20645098,4
+136998081,20645098,5
+85270433,20645098,3
+4722795,20645098,5
+mogubloom,20645098,5
+47218241,20645098,4
+83257989,20645098,4
+131499272,20645098,3
+menyingqi,20645098,4
+musemuse7,20645098,1
+50416946,20645098,4
+104001150,20645098,5
+60392839,20645098,3
+3654230,20645098,4
+44678301,20645098,5
+snokin,20645098,3
+lotty_liu,20645098,3
+136096165,20645098,5
+AuRevoir7,20645098,4
+2114161,20645098,3
+80206205,20645098,4
+57335774,20645098,3
+kp81ndlf,20645098,4
+zhangyue98,20645098,-1
+yue17years,20645098,-1
+52596376,20645098,4
+turly,20645098,2
+56268259,20645098,5
+3341865,20645098,4
+71879067,20645098,4
+136599746,20645098,5
+42293953,20645098,3
+2307180,20645098,4
+67539308,20645098,5
+63977549,20645098,5
+evertoooo,20645098,5
+2386302,20645098,4
+2221242,20645098,1
+39628944,20645098,-1
+luyicia,20645098,4
+soo_park641215,20645098,4
+waitintheseason,20645098,4
+133144980,20645098,5
+ltec,20645098,5
+hucj,20645098,3
+68575125,20645098,4
+45702321,20645098,4
+115204143,20645098,5
+73868761,20645098,3
+49185671,20645098,4
+mabeysomeday,20645098,5
+49751104,20645098,5
+70258470,20645098,5
+64727020,20645098,5
+lovingsister,20645098,4
+flowertide,20645098,2
+buzzsunny,20645098,5
+cy_chn,20645098,5
+119281931,20645098,1
+Walt_W,20645098,4
+d_side_story,20645098,4
+103242828,20645098,5
+110392919,20645098,5
+trista-smily,20645098,5
+30494481,20645098,4
+2434343,20645098,5
+59370142,20645098,2
+3599139,20645098,4
+3749468,20645098,5
+6866624,20645098,4
+128248701,20645098,4
+70961823,20645098,5
+64442233,20645098,3
+45828730,20645098,4
+lywang,20645098,3
+i_littlebee,20645098,3
+strength,20645098,5
+2003868,20645098,5
+misaj,20645098,5
+Jacky_L,20645098,5
+44510032,20645098,5
+102930164,20645098,5
+susanbear,20645098,1
+102902179,20645098,5
+59307428,20645098,5
+Sennir,20645098,3
+chuleiwu,20645098,-1
+131108295,20645098,5
+joanna_L,20645098,4
+46394662,20645098,2
+36393329,20645098,5
+hanyiran,20645098,5
+onlya,20645098,5
+46572945,20645098,3
+57853531,20645098,5
+25485850,20645098,4
+lowai,20645098,4
+71953415,20645098,4
+N44,20645098,5
+lidejun,20645098,5
+121188347,20645098,4
+xufan19821982,20645098,3
+minishine,20645098,5
+yyyyyyyyyyar,20645098,5
+1550135,20645098,3
+chenkefeng,20645098,3
+2530424,20645098,4
+63612050,20645098,4
+rain282453,20645098,4
+PASSMEBY,20645098,5
+119699596,20645098,5
+y1ngbb,20645098,4
+1342315,20645098,4
+70530619,20645098,5
+120692860,20645098,5
+62826582,20645098,3
+a-zhu,20645098,4
+38435102,20645098,3
+121146535,20645098,5
+zhoudaxia,20645098,5
+83633159,20645098,4
+52484761,20645098,5
+48917226,20645098,5
+lyning,20645098,3
+53476410,20645098,4
+73142599,20645098,4
+17871243,20645098,5
+lutosdan,20645098,2
+80914999,20645098,3
+jeansgarden,20645098,5
+yancm,20645098,3
+48596471,20645098,3
+shinlu0507,20645098,4
+91402535,20645098,2
+67753942,20645098,5
+60296110,20645098,5
+68870851,20645098,5
+30378348,20645098,3
+135405073,20645098,5
+4635921,20645098,4
+102840288,20645098,5
+127950307,20645098,5
+2537736,20645098,4
+84601671,20645098,3
+adaong,20645098,4
+87498473,20645098,5
+49878097,20645098,5
+127889355,20645098,5
+37322815,20645098,4
+128038668,20645098,5
+qianbao,20645098,5
+mikeodj,20645098,4
+97864189,20645098,5
+datiancai,20645098,5
+Caijiajian,20645098,3
+119067205,20645098,5
+zhhongbo,20645098,3
+yaerli,20645098,5
+121380677,20645098,1
+vfish,20645098,5
+xiaoyushudai,20645098,4
+oumyoumy,20645098,3
+pangbo1216,20645098,3
+61690695,20645098,3
+ellenxu,20645098,1
+seodler,20645098,4
+52107688,20645098,5
+43341234,20645098,4
+60845528,20645098,3
+3280722,20645098,5
+jessicalvtingti,20645098,3
+122232090,20645098,4
+64760327,20645098,4
+59556078,20645098,5
+lokio,20645098,5
+132303617,20645098,4
+52826626,20645098,3
+88243217,20645098,3
+63044059,20645098,2
+65766829,20645098,5
+87947895,20645098,5
+73845494,20645098,4
+xiaokuisunshine,20645098,4
+83201171,20645098,3
+grayer,20645098,5
+102333852,20645098,4
+78471131,20645098,5
+72737390,20645098,4
+naturesun,20645098,3
+32837881,20645098,4
+66976207,20645098,4
+2888284,20645098,5
+d_minor,20645098,3
+flykarry,20645098,2
+71588552,20645098,5
+immmmm,20645098,5
+qweerew,20645098,5
+72364535,20645098,5
+123334239,20645098,5
+love-99,20645098,5
+6010509,20645098,5
+52850914,20645098,3
+63277654,20645098,4
+3014394,20645098,5
+53370159,20645098,4
+122219958,20645098,5
+50490367,20645098,4
+64531746,20645098,4
+holmes520,20645098,5
+65590168,20645098,3
+daysofyouth,20645098,5
+64855352,20645098,3
+miao19890818,20645098,5
+65750204,20645098,5
+55965923,20645098,4
+70838363,20645098,5
+stevexia,20645098,5
+yimoyoulan916,20645098,4
+62993339,20645098,5
+46899693,20645098,4
+33071569,20645098,5
+62646421,20645098,4
+62269193,20645098,5
+48615515,20645098,5
+2979539,20645098,3
+66985613,20645098,4
+78635378,20645098,3
+47962228,20645098,3
+122039396,20645098,4
+125739150,20645098,3
+67851439,20645098,5
+56086830,20645098,5
+81830584,20645098,4
+51068415,20645098,4
+49468468,20645098,5
+55549104,20645098,5
+72120533,20645098,3
+caunion,20645098,2
+121536238,20645098,3
+85382563,20645098,5
+58056979,20645098,4
+2843167,20645098,4
+90914625,20645098,5
+73148999,20645098,-1
+48493154,20645098,4
+57383840,20645098,5
+73385142,20645098,5
+134647379,20645098,4
+phoebeless,20645098,2
+130345686,20645098,4
+85455779,20645098,4
+56111292,20645098,5
+78542472,20645098,4
+70362034,20645098,3
+64601874,20645098,5
+DUNHILLJJ,20645098,5
+47806100,20645098,5
+29280567,20645098,5
+64665284,20645098,5
+43649046,20645098,3
+68729160,20645098,5
+58484149,20645098,4
+heyvsss,20645098,4
+119313402,20645098,4
+55452001,20645098,3
+101928455,20645098,4
+51526777,20645098,5
+mirandasky,20645098,3
+65664176,20645098,5
+78373153,20645098,2
+youyuanshanren,20645098,4
+80991459,20645098,4
+77869321,20645098,5
+135510742,20645098,5
+71276414,20645098,5
+71276414,20645098,5
+62693318,20645098,5
+125699910,20645098,5
+55850316,20645098,2
+46856456,20645098,1
+yansihan,20645098,4
+39072658,20645098,4
+119078818,20645098,5
+Suumer007,20645098,5
+132197794,20645098,4
+LuthienLee,20645098,4
+77100547,20645098,5
+3947110,20645098,5
+49875981,20645098,3
+JJ_Jacob,20645098,1
+anygned,20645098,5
+71539697,20645098,4
+74772518,20645098,5
+69640239,20645098,2
+81118349,20645098,3
+126558199,20645098,5
+66339259,20645098,5
+konnomakoto,20645098,5
+114336232,20645098,4
+59458875,20645098,3
+qqyy402,20645098,4
+108753844,20645098,5
+63856676,20645098,5
+70162864,20645098,3
+68077940,20645098,5
+sweetsoldier,20645098,-1
+1300248,20645098,4
+pineberry,20645098,4
+90235976,20645098,3
+69982769,20645098,5
+120899545,20645098,4
+130988349,20645098,3
+46070924,20645098,5
+yumoxin,20645098,4
+47217799,20645098,5
+47217799,20645098,5
+50939073,20645098,4
+12232981,20645098,4
+41471452,20645098,4
+46225547,20645098,3
+52918200,20645098,4
+62378333,20645098,4
+laowa,20645098,3
+84081822,20645098,4
+leoglory,20645098,4
+74564961,20645098,4
+1783337,20645098,3
+ttfion,20645098,3
+5318547,20645098,3
+91358615,20645098,4
+57630254,20645098,5
+133995843,20645098,5
+kblexel,20645098,5
+109530447,20645098,2
+Pinnsvin,20645098,5
+55466621,20645098,3
+lucifer024,20645098,5
+91263818,20645098,4
+52086135,20645098,4
+103735356,20645098,3
+titibird,20645098,3
+51226041,20645098,4
+60961304,20645098,4
+110431093,20645098,5
+42205407,20645098,4
+69156553,20645098,4
+wuyelan,20645098,5
+38632566,20645098,3
+48755888,20645098,5
+114487129,20645098,5
+mda05057,20645098,4
+Decembermay,20645098,5
+mualifeo0,20645098,4
+34990334,20645098,5
+4652776,20645098,5
+Kkarimaa,20645098,5
+70108831,20645098,5
+124573159,20645098,4
+joygirlying,20645098,5
+40527777,20645098,5
+67209695,20645098,5
+98956225,20645098,5
+93500334,20645098,4
+102646839,20645098,5
+65747014,20645098,5
+45030783,20645098,4
+Nofeelings,20645098,4
+133354785,20645098,2
+1008752,20645098,5
+62210177,20645098,5
+119533372,20645098,4
+pennypq,20645098,-1
+rainbow0815,20645098,5
+34437764,20645098,5
+61078362,20645098,4
+61078362,20645098,4
+yilingbaihe,20645098,4
+wxhsolo,20645098,2
+sissixiong,20645098,4
+20657820,20645098,4
+131921881,20645098,3
+123555399,20645098,4
+paper-airplane,20645098,3
+83853096,20645098,5
+120304667,20645098,-1
+56109881,20645098,-1
+1206373,20645098,5
+Jeremy3,20645098,3
+cocojamboo,20645098,4
+128541426,20645098,1
+4603559,20645098,4
+64886603,20645098,5
+2039225,20645098,3
+50794247,20645098,5
+68699814,20645098,3
+30741393,20645098,3
+crazyfamily,20645098,5
+135318550,20645098,4
+70278827,20645098,5
+134372146,20645098,3
+103793768,20645098,4
+3540441,20645098,2
+88004560,20645098,4
+34727112,20645098,5
+99995336,20645098,4
+130599574,20645098,3
+50566408,20645098,4
+4531040,20645098,3
+40090492,20645098,4
+120322125,20645098,5
+62417186,20645098,3
+16486933,20645098,5
+Faychang,20645098,5
+49112807,20645098,5
+54390796,20645098,-1
+28272719,20645098,4
+102078175,20645098,5
+124228223,20645098,4
+zhaoray,20645098,5
+hljmsfy,20645098,4
+33733475,20645098,3
+29315501,20645098,4
+68881946,20645098,5
+placebo-bo,20645098,4
+96044338,20645098,4
+103685872,20645098,3
+70013273,20645098,4
+122932689,20645098,4
+78757579,20645098,5
+47309128,20645098,5
+caocaoa,20645098,3
+79090756,20645098,3
+1985980,20645098,4
+45111580,20645098,5
+wushiyi1122,20645098,2
+48518214,20645098,3
+69170430,20645098,5
+122130429,20645098,4
+104549652,20645098,-1
+56299828,20645098,4
+48057004,20645098,5
+123730406,20645098,3
+104517766,20645098,3
+xiaopangchong,20645098,5
+76655932,20645098,5
+51246091,20645098,4
+133371688,20645098,5
+ino_wyn,20645098,5
+VickyMonster,20645098,5
+yrs,20645098,5
+67623868,20645098,4
+50926756,20645098,4
+69930229,20645098,5
+sentsuki,20645098,3
+60073782,20645098,1
+60536752,20645098,5
+duoluowenren,20645098,4
+mcbird3017,20645098,5
+64726602,20645098,4
+128173263,20645098,4
+56435930,20645098,3
+76452322,20645098,4
+aboutnimo,20645098,4
+126804729,20645098,4
+word999,20645098,3
+83184870,20645098,4
+2327781,20645098,2
+130860796,20645098,5
+56119626,20645098,5
+ceoceoo,20645098,1
+4799139,20645098,4
+fwk522,20645098,5
+hutianyi,20645098,4
+4292817,20645098,4
+zjcgame,20645098,4
+48120448,20645098,3
+137941433,20645098,-1
+122938233,20645098,5
+48332506,20645098,4
+43393053,20645098,5
+87940237,20645098,4
+96190802,20645098,5
+137237773,20645098,5
+75860437,20645098,4
+alenhe,20645098,3
+susan-no-home,20645098,4
+afewyearslater,20645098,3
+64713560,20645098,3
+136738210,20645098,5
+dgawon,20645098,2
+ck35,20645098,5
+2150724,20645098,3
+2822373,20645098,-1
+45619504,20645098,-1
+102530220,20645098,5
+Tyin,20645098,5
+57092209,20645098,3
+42829575,20645098,4
+hudali,20645098,5
+yigeertong,20645098,5
+i840152811,20645098,5
+94032763,20645098,3
+WCAJ605850999,20645098,4
+122341750,20645098,4
+zlqll,20645098,3
+yejiuyi,20645098,3
+lansejiuhua,20645098,5
+33006528,20645098,5
+1888866,20645098,5
+92569558,20645098,3
+121688414,20645098,3
+64287254,20645098,4
+54066175,20645098,5
+34187825,20645098,3
+clh7,20645098,2
+2005598,20645098,4
+136105746,20645098,5
+55773220,20645098,5
+73949379,20645098,5
+29662178,20645098,4
+97936654,20645098,4
+90611286,20645098,5
+ancccdxh,20645098,4
+2745956,20645098,5
+132773025,20645098,4
+76039126,20645098,5
+59725846,20645098,3
+Sibier,20645098,2
+65138658,20645098,5
+119710944,20645098,5
+GraceChow,20645098,4
+Fionarun,20645098,4
+63256318,20645098,5
+44011336,20645098,5
+pandorapple,20645098,3
+pandorapple,20645098,3
+46397487,20645098,4
+44400357,20645098,5
+86140576,20645098,5
+61797915,20645098,3
+54141112,20645098,5
+kabuqinuomima,20645098,4
+60171581,20645098,5
+84076381,20645098,5
+67049936,20645098,5
+nuttybamboo,20645098,5
+gismine,20645098,5
+47338150,20645098,5
+bryce_zhao,20645098,5
+40354955,20645098,4
+woodenbook,20645098,5
+2212675,20645098,5
+133212789,20645098,4
+79507258,20645098,4
+131187465,20645098,5
+doll2,20645098,4
+83128220,20645098,4
+43409918,20645098,3
+huggin,20645098,5
+109048369,20645098,4
+57596395,20645098,5
+zhangweiwebsite,20645098,4
+51912673,20645098,4
+moryfor,20645098,2
+55811632,20645098,5
+73144387,20645098,4
+hqwxyz,20645098,4
+nangle,20645098,3
+1616375,20645098,4
+freebox,20645098,3
+74835284,20645098,5
+74266525,20645098,4
+61060011,20645098,3
+80470468,20645098,5
+92764567,20645098,3
+53920626,20645098,3
+36304941,20645098,5
+67921032,20645098,4
+72792251,20645098,3
+136594496,20645098,5
+4114315,20645098,4
+127448556,20645098,3
+121727190,20645098,5
+137777158,20645098,5
+48749653,20645098,-1
+60052227,20645098,4
+1512451,20645098,4
+60281234,20645098,5
+icurry,20645098,4
+50367533,20645098,4
+70727432,20645098,5
+63053176,20645098,4
+97957511,20645098,5
+40760358,20645098,5
+65366516,20645098,2
+fanxiaodong,20645098,4
+56922790,20645098,5
+122806435,20645098,3
+78966790,20645098,3
+xieyanqiu,20645098,5
+68092214,20645098,5
+kiethope,20645098,4
+4412176,20645098,4
+neverland_qq,20645098,4
+65937854,20645098,5
+notfound4O4,20645098,2
+Vivi17,20645098,5
+52879065,20645098,4
+62443824,20645098,5
+ymeiang,20645098,5
+66178513,20645098,4
+69232328,20645098,5
+70440738,20645098,5
+78977129,20645098,5
+yudaoni,20645098,5
+yudaoni,20645098,5
+ephraimdw,20645098,4
+76964275,20645098,3
+61415856,20645098,4
+armitt,20645098,5
+132666215,20645098,4
+79002821,20645098,4
+PaigeRaw,20645098,4
+75490431,20645098,4
+119301457,20645098,4
+98921786,20645098,5
+63531003,20645098,5
+jianganshe,20645098,-1
+36936880,20645098,3
+123386745,20645098,4
+xiaowhatwhat,20645098,5
+63127147,20645098,4
+58774315,20645098,4
+83517836,20645098,5
+61279019,20645098,4
+44311860,20645098,4
+125027221,20645098,5
+133486848,20645098,5
+60842368,20645098,5
+36923461,20645098,4
+62804242,20645098,4
+57784370,20645098,5
+62768629,20645098,4
+51096154,20645098,4
+82362318,20645098,4
+58071274,20645098,4
+47971865,20645098,4
+ys1013,20645098,3
+122231074,20645098,4
+twopersons,20645098,4
+64273735,20645098,2
+76501009,20645098,4
+DavyNight,20645098,4
+102747303,20645098,4
+48854859,20645098,3
+77419257,20645098,4
+62259012,20645098,3
+milkcandy,20645098,3
+59253640,20645098,4
+62434585,20645098,4
+130743803,20645098,5
+HighlevelLeo,20645098,3
+132041128,20645098,5
+45641492,20645098,5
+119838921,20645098,4
+65131336,20645098,5
+137441903,20645098,3
+44331306,20645098,4
+42853271,20645098,5
+135648248,20645098,3
+124546510,20645098,4
+52119694,20645098,5
+130806847,20645098,5
+1319464,20645098,5
+iamoutstander,20645098,-1
+119446065,20645098,3
+AmoH,20645098,5
+26482170,20645098,4
+3595887,20645098,3
+49151798,20645098,5
+50247818,20645098,3
+73324370,20645098,5
+sunshinewang,20645098,3
+evanye,20645098,4
+129910475,20645098,3
+54781167,20645098,3
+26459598,20645098,4
+Ocarshors,20645098,4
+51235598,20645098,5
+a3615,20645098,-1
+74013716,20645098,4
+136639292,20645098,5
+69202815,20645098,5
+134383270,20645098,4
+51951428,20645098,4
+71244162,20645098,4
+malishamarysamo,20645098,4
+Yvonnerain,20645098,5
+sentexiaohu,20645098,4
+3041980,20645098,3
+78585027,20645098,5
+106663926,20645098,4
+Moyuyu111,20645098,4
+59968700,20645098,5
+f7890,20645098,2
+130587924,20645098,5
+132361595,20645098,3
+52593684,20645098,3
+54432513,20645098,5
+53050456,20645098,5
+74307791,20645098,3
+84749143,20645098,4
+2248705,20645098,4
+3250086,20645098,5
+60864587,20645098,4
+60864587,20645098,4
+67148889,20645098,4
+2647676,20645098,4
+meilixiaoyao,20645098,5
+zoooooh,20645098,3
+51174613,20645098,4
+54000871,20645098,-1
+Lovezing,20645098,5
+69227741,20645098,4
+laipixiaoxiuxiu,20645098,5
+NikeAirMax90,20645098,-1
+54794752,20645098,4
+50410160,20645098,4
+2117824,20645098,3
+inzaghi0301,20645098,4
+yamapibaby,20645098,4
+4141698,20645098,5
+kalla,20645098,5
+44661123,20645098,5
+bettersnail,20645098,-1
+41758293,20645098,5
+48622522,20645098,5
+mocharoser,20645098,4
+81930957,20645098,1
+sysop,20645098,3
+2373335,20645098,4
+52045614,20645098,3
+131838063,20645098,4
+64090872,20645098,-1
+38603350,20645098,5
+55311188,20645098,4
+lyun_1437,20645098,5
+jiajunzhi,20645098,4
+123111535,20645098,4
+57827573,20645098,5
+56912820,20645098,4
+65740832,20645098,5
+55434870,20645098,4
+41856349,20645098,3
+shanyier,20645098,4
+43958959,20645098,5
+125755382,20645098,3
+131260166,20645098,5
+62227763,20645098,-1
+62626398,20645098,5
+liamcai,20645098,5
+123523483,20645098,4
+122476324,20645098,5
+bigandbig,20645098,2
+54285836,20645098,3
+43459920,20645098,4
+53269174,20645098,5
+135575731,20645098,4
+A989898,20645098,5
+36942754,20645098,3
+87651171,20645098,1
+88734539,20645098,4
+choulaoya,20645098,5
+130054425,20645098,5
+piggy726,20645098,4
+Carrieup1988,20645098,5
+zqsay,20645098,4
+eyes1991,20645098,4
+3365504,20645098,3
+71061023,20645098,4
+1485351,20645098,4
+48929842,20645098,4
+moicen,20645098,3
+49380921,20645098,5
+39560896,20645098,5
+3173862,20645098,2
+fanqiuyan,20645098,3
+51945032,20645098,4
+67576515,20645098,5
+serena_lol,20645098,2
+89931172,20645098,4
+56349029,20645098,5
+55487278,20645098,2
+chantervin,20645098,3
+LY0104,20645098,5
+63350513,20645098,4
+88345379,20645098,5
+3833311,20645098,4
+72431740,20645098,3
+68655104,20645098,3
+4509995,20645098,2
+tguitar,20645098,3
+lanyuanxizhou,20645098,5
+137849195,20645098,-1
+126936629,20645098,5
+44102290,20645098,4
+67351514,20645098,5
+62711685,20645098,3
+shiawasen,20645098,4
+59408891,20645098,2
+hsj9,20645098,3
+60010871,20645098,5
+yigedejia,20645098,4
+yujianxiaoben,20645098,4
+45937767,20645098,4
+51778464,20645098,3
+3089908,20645098,5
+cuteweenie,20645098,5
+3886889,20645098,4
+44326808,20645098,3
+136954073,20645098,3
+103112584,20645098,4
+3229322,20645098,4
+50766549,20645098,5
+130541613,20645098,4
+lrj1908,20645098,4
+pondy,20645098,2
+2264556,20645098,2
+33130502,20645098,4
+baby861708,20645098,3
+2273276,20645098,4
+SUKO,20645098,3
+53045137,20645098,5
+Anonymitaet,20645098,4
+59967469,20645098,5
+kring,20645098,5
+54868319,20645098,5
+108227368,20645098,4
+yurisong,20645098,3
+zhuangdikun,20645098,4
+64767888,20645098,4
+100208047,20645098,4
+37442929,20645098,3
+chaoren124,20645098,4
+93532272,20645098,5
+101818819,20645098,4
+96648379,20645098,5
+54367149,20645098,4
+vinniegn,20645098,3
+louiswk,20645098,5
+2325252,20645098,3
+62704211,20645098,4
+kinghaixin,20645098,5
+80845781,20645098,4
+52740043,20645098,4
+vivicky320,20645098,4
+76236179,20645098,4
+131104086,20645098,3
+8469986,20645098,5
+davysunny,20645098,3
+Castieal,20645098,4
+46261431,20645098,5
+4682542,20645098,3
+3519597,20645098,5
+64755839,20645098,3
+33745039,20645098,5
+120634884,20645098,3
+45804522,20645098,4
+liuchuanzi,20645098,3
+82511491,20645098,5
+89178219,20645098,5
+87082148,20645098,4
+109488189,20645098,4
+57566252,20645098,5
+88033603,20645098,4
+badmeetsevil,20645098,3
+46990299,20645098,4
+137770410,20645098,3
+80944810,20645098,-1
+ourkid,20645098,3
+yeqing611,20645098,3
+58135978,20645098,4
+38635851,20645098,4
+131343395,20645098,4
+zhuxiaowu,20645098,2
+51496046,20645098,4
+130539334,20645098,4
+134104313,20645098,2
+88174425,20645098,5
+68077984,20645098,4
+3676493,20645098,-1
+morgangeist,20645098,4
+dcydb,20645098,5
+51463765,20645098,5
+SesshuYang,20645098,4
+61409715,20645098,4
+57214502,20645098,4
+67695853,20645098,2
+Red_Bunny,20645098,5
+61718716,20645098,4
+38315732,20645098,5
+angeon,20645098,3
+37694449,20645098,3
+127692978,20645098,4
+67887593,20645098,4
+whateverp,20645098,4
+49521977,20645098,1
+3287248,20645098,3
+68549464,20645098,5
+49036730,20645098,5
+65394456,20645098,3
+zhuangjinxv,20645098,3
+lovage0402,20645098,4
+62115196,20645098,4
+53124352,20645098,5
+63700001,20645098,5
+81571102,20645098,-1
+121202891,20645098,4
+chachaa,20645098,5
+103277074,20645098,3
+23403898,20645098,1
+46289677,20645098,-1
+43004375,20645098,4
+shuqianshu,20645098,3
+52089274,20645098,5
+119195141,20645098,4
+65786583,20645098,1
+43329275,20645098,-1
+135746121,20645098,4
+68744718,20645098,3
+79098855,20645098,3
+zilu22,20645098,5
+moilly,20645098,4
+50494910,20645098,4
+2453639,20645098,3
+RobotechMacorss,20645098,4
+happyangzi,20645098,2
+youyu1229,20645098,4
+may5may,20645098,4
+84965819,20645098,5
+Serena.du,20645098,4
+119272239,20645098,4
+bethsc,20645098,3
+57472498,20645098,5
+68490960,20645098,5
+10277954,20645098,5
+zoefangqi,20645098,4
+zezzywa,20645098,5
+nicemonster_,20645098,5
+36387369,20645098,4
+43156253,20645098,4
+toctic,20645098,3
+65452147,20645098,4
+60509699,20645098,5
+137665589,20645098,5
+42375246,20645098,4
+newsweet,20645098,5
+70827051,20645098,5
+76160138,20645098,3
+68941642,20645098,4
+60614735,20645098,4
+AdelleAdela,20645098,4
+84628411,20645098,5
+blossombao,20645098,4
+rpsh,20645098,4
+137267477,20645098,5
+112845734,20645098,4
+kingofjungleo,20645098,4
+3816104,20645098,4
+3272171,20645098,3
+ohmygod813,20645098,4
+134148719,20645098,4
+101279895,20645098,1
+3372021,20645098,3
+50175269,20645098,4
+25259616,20645098,5
+Tangss,20645098,4
+63253187,20645098,3
+Ciris,20645098,5
+AliceStandbyme,20645098,4
+137082405,20645098,3
+91606633,20645098,5
+51355598,20645098,3
+44150163,20645098,5
+64127845,20645098,5
+39991969,20645098,4
+100934769,20645098,-1
+yiranharry,20645098,5
+24056470,20645098,5
+82460624,20645098,4
+56933618,20645098,3
+45969996,20645098,3
+samao_fay,20645098,4
+huangzj09thu,20645098,5
+4499258,20645098,5
+4499258,20645098,5
+3847108,20645098,4
+kxmu93,20645098,-1
+64963282,20645098,4
+bebabay,20645098,5
+licinda,20645098,4
+AndreBFSU,20645098,4
+48207954,20645098,1
+43132253,20645098,5
+127860852,20645098,3
+54315159,20645098,3
+angelina.ae,20645098,4
+chara4,20645098,5
+godlovebearxi,20645098,5
+82971746,20645098,4
+9485080,20645098,4
+92253265,20645098,3
+47603768,20645098,4
+27402449,20645098,4
+131126442,20645098,4
+69825713,20645098,4
+leeilo,20645098,4
+87566090,20645098,5
+61816824,20645098,4
+135070471,20645098,3
+97570215,20645098,5
+72365862,20645098,5
+36643443,20645098,3
+zh91,20645098,4
+BossaNovaNANA,20645098,5
+xiangs,20645098,4
+90798972,20645098,4
+47818066,20645098,4
+cathys,20645098,3
+101837882,20645098,4
+KeerDee,20645098,5
+105436312,20645098,4
+1760922,20645098,3
+nicoleyanxi,20645098,4
+57698446,20645098,3
+45400633,20645098,4
+34168497,20645098,4
+cactus_hee,20645098,5
+132747299,20645098,3
+1082879,20645098,3
+bluetracy0113,20645098,4
+122224124,20645098,2
+mickyququ,20645098,3
+44428554,20645098,3
+Diane_myl,20645098,4
+137294145,20645098,4
+121237994,20645098,1
+71078080,20645098,5
+48864711,20645098,5
+68550514,20645098,5
+k1lL-joY,20645098,4
+3627193,20645098,3
+linriyinyyh,20645098,3
+3758168,20645098,5
+68843343,20645098,3
+57687641,20645098,5
+58752829,20645098,4
+4429329,20645098,4
+27086306,20645098,3
+125428809,20645098,5
+112282567,20645098,3
+75488803,20645098,4
+69350050,20645098,3
+128955983,20645098,2
+33024832,20645098,3
+velldo,20645098,3
+95902321,20645098,5
+67481632,20645098,4
+Rita_Amber,20645098,4
+1978971,20645098,3
+100297843,20645098,2
+85675408,20645098,5
+136804658,20645098,5
+50990159,20645098,5
+lswsgg,20645098,3
+135074228,20645098,3
+xiaoyadezhi,20645098,2
+43471974,20645098,5
+63410556,20645098,5
+70124708,20645098,3
+122977131,20645098,4
+omei,20645098,3
+32128731,20645098,3
+2915513,20645098,5
+mystic54riccard,20645098,5
+130740344,20645098,5
+130561129,20645098,3
+micao-onlyhui,20645098,1
+Frank_Che,20645098,5
+79052504,20645098,3
+54627335,20645098,5
+3517421,20645098,4
+34723626,20645098,4
+53561059,20645098,4
+iDH,20645098,3
+maimaihui520,20645098,5
+122050976,20645098,1
+yanxianxian,20645098,4
+45883168,20645098,3
+catgbclovelife,20645098,5
+56357426,20645098,5
+59210955,20645098,2
+yimin99,20645098,4
+2307172,20645098,5
+50580090,20645098,-1
+58628338,20645098,5
+lyje0401,20645098,5
+36794624,20645098,3
+66889726,20645098,5
+50420769,20645098,3
+98809894,20645098,4
+yaojingbutiaowu,20645098,-1
+60048204,20645098,4
+aidaya,20645098,5
+73655533,20645098,3
+127322008,20645098,3
+gelsey1992,20645098,3
+130533154,20645098,5
+1566726,20645098,5
+Daruke,20645098,3
+37101036,20645098,4
+49786914,20645098,5
+136734165,20645098,5
+136491479,20645098,2
+53234728,20645098,4
+82150919,20645098,4
+82308347,20645098,3
+catroubing,20645098,5
+ler.sky.,20645098,4
+1393380,20645098,4
+44281201,20645098,4
+murryto,20645098,3
+kaka_elsie,20645098,4
+45542406,20645098,4
+37876086,20645098,5
+28739392,20645098,1
+51091763,20645098,4
+strange_kid,20645098,4
+xiaozhudejia,20645098,4
+2965375,20645098,3
+ewanyang11,20645098,3
+69811337,20645098,5
+49126351,20645098,4
+42562073,20645098,5
+belong2kent,20645098,5
+51247678,20645098,3
+JustCita,20645098,4
+8925160,20645098,5
+90825023,20645098,2
+133139302,20645098,5
+yao1yao,20645098,4
+1035774,20645098,5
+54436495,20645098,4
+51760780,20645098,4
+Lry_TheMemory,20645098,5
+107868990,20645098,5
+98094232,20645098,4
+122441289,20645098,4
+mihuaka,20645098,4
+102806246,20645098,5
+5653973,20645098,5
+64734128,20645098,4
+2840463,20645098,4
+43650052,20645098,4
+40626862,20645098,5
+128905184,20645098,3
+27396956,20645098,3
+2853604,20645098,3
+68951432,20645098,5
+67068664,20645098,4
+137078624,20645098,4
+43547642,20645098,4
+52593489,20645098,5
+arielwong,20645098,5
+redpond1910,20645098,5
+45234744,20645098,3
+erica953,20645098,3
+50192647,20645098,4
+whj623185136,20645098,4
+70914414,20645098,5
+tuoxiaotu,20645098,5
+adododo,20645098,4
+97321848,20645098,3
+51004338,20645098,5
+genevieve_xie,20645098,5
+racheldb,20645098,4
+rosatti,20645098,3
+130404838,20645098,5
+66596933,20645098,5
+64305932,20645098,5
+4266912,20645098,4
+chuanhua1989,20645098,5
+qiao0103,20645098,4
+little-dog,20645098,5
+52045091,20645098,4
+jiuyueqiuqianyu,20645098,5
+31788712,20645098,4
+122066432,20645098,5
+61906086,20645098,4
+fanyiduo,20645098,4
+59401014,20645098,4
+63156510,20645098,3
+4210513,20645098,4
+96575246,20645098,5
+86463308,20645098,4
+68901113,20645098,4
+80482136,20645098,4
+47405010,20645098,5
+honestydudu,20645098,3
+52770052,20645098,5
+136620813,20645098,5
+63032360,20645098,5
+132831512,20645098,4
+52777499,20645098,2
+39950464,20645098,4
+52138487,20645098,3
+108728454,20645098,4
+126994808,20645098,4
+78660807,20645098,5
+2380878,20645098,4
+transitory,20645098,4
+92811330,20645098,3
+IMP837860367,20645098,5
+watanabecoffee,20645098,2
+colormoon,20645098,5
+powful_x,20645098,4
+57138259,20645098,5
+3969339,20645098,5
+zangtianfly,20645098,5
+66902009,20645098,5
+131988762,20645098,3
+42841033,20645098,5
+58951524,20645098,5
+xiaobing95,20645098,5
+121028955,20645098,3
+93326085,20645098,5
+103477622,20645098,4
+evastone,20645098,3
+122970945,20645098,4
+ariel1987,20645098,-1
+64598926,20645098,4
+133822022,20645098,5
+lykingking,20645098,5
+vivienvb,20645098,3
+xiayichuan,20645098,5
+xiangkou,20645098,5
+71132041,20645098,4
+92026247,20645098,4
+65580779,20645098,3
+64208947,20645098,5
+134580402,20645098,4
+bamboo4768,20645098,3
+leozhangbing,20645098,4
+2504153,20645098,4
+134194471,20645098,5
+evecho,20645098,4
+8545269,20645098,1
+52642418,20645098,5
+88916149,20645098,1
+lionel_stewart,20645098,3
+lyl116065921,20645098,3
+zzhihuan,20645098,5
+tytyty,20645098,3
+caicaisweat,20645098,4
+nathanyun,20645098,3
+87818830,20645098,5
+131987227,20645098,5
+SunnyLuo,20645098,4
+135470815,20645098,5
+lealealea,20645098,4
+1465852,20645098,3
+Yokizyz,20645098,3
+91754998,20645098,5
+liususu,20645098,5
+supermiss,20645098,4
+supermiss,20645098,4
+48792138,20645098,5
+cabonari,20645098,5
+2210223,20645098,3
+seasoncmj,20645098,4
+lutheryang,20645098,2
+lucifer8790,20645098,5
+41385833,20645098,2
+28490243,20645098,5
+migesha,20645098,5
+81667410,20645098,4
+candybox0608,20645098,5
+wc0606wq,20645098,3
+teisacat,20645098,5
+60389557,20645098,4
+mary2009,20645098,4
+weiyangyinyi,20645098,5
+dancaiqianlv,20645098,3
+109350869,20645098,4
+81301929,20645098,5
+81301929,20645098,5
+vvivvi,20645098,4
+136714687,20645098,3
+sun653,20645098,5
+cuacfxx,20645098,3
+80813138,20645098,5
+131912581,20645098,3
+122740043,20645098,2
+mollymouth,20645098,5
+whereislaser,20645098,5
+48462975,20645098,4
+ycy_21,20645098,4
+provence1019,20645098,3
+chrisiron,20645098,5
+129141489,20645098,3
+7556467,20645098,4
+45799570,20645098,4
+62964103,20645098,3
+mmxyatou,20645098,4
+59552861,20645098,5
+53349812,20645098,5
+72220959,20645098,5
+130681703,20645098,4
+55701734,20645098,5
+echo_jingjing,20645098,-1
+67194090,20645098,2
+60117515,20645098,4
+52999233,20645098,5
+flowingmoon,20645098,1
+vadamir,20645098,5
+49898169,20645098,5
+fanshall,20645098,5
+2939624,20645098,5
+60830251,20645098,4
+50702384,20645098,5
+74418906,20645098,4
+54364422,20645098,4
+2258869,20645098,4
+29685065,20645098,4
+120832097,20645098,3
+120832097,20645098,3
+119030666,20645098,4
+74149481,20645098,4
+81593591,20645098,3
+4626609,20645098,4
+Doris_Q,20645098,5
+oneworldonebear,20645098,3
+JanyeeLee,20645098,3
+75650547,20645098,3
+121947827,20645098,3
+122360797,20645098,3
+70323785,20645098,3
+dangligedang,20645098,5
+diebuyi,20645098,4
+127313933,20645098,4
+120503563,20645098,5
+arsbonnie,20645098,5
+54191989,20645098,5
+shanshanyouli,20645098,4
+7549744,20645098,5
+yanoooo,20645098,5
+potassi_mcyanid,20645098,3
+123220825,20645098,4
+52728681,20645098,3
+82644412,20645098,2
+133986166,20645098,4
+39648072,20645098,4
+icemonique,20645098,5
+61424106,20645098,4
+52349741,20645098,5
+jacoxu,20645098,3
+83531928,20645098,3
+zmx447684192,20645098,4
+57495280,20645098,5
+123449328,20645098,5
+48492942,20645098,4
+87010317,20645098,3
+132237267,20645098,5
+2040497,20645098,4
+59444895,20645098,3
+zbpp1986,20645098,4
+62906991,20645098,5
+70808527,20645098,4
+zoe0315,20645098,5
+124647379,20645098,5
+giraffe0429,20645098,4
+woundman,20645098,-1
+3689742,20645098,4
+75981147,20645098,5
+hana0707,20645098,4
+71227303,20645098,3
+itscharism,20645098,3
+126092428,20645098,2
+63409763,20645098,4
+misamore,20645098,5
+1724328,20645098,5
+1462255,20645098,5
+62843075,20645098,3
+2750884,20645098,3
+77495634,20645098,4
+11658942,20645098,4
+35694775,20645098,3
+JIANININI,20645098,5
+39481202,20645098,3
+91528806,20645098,5
+56431276,20645098,4
+1708899,20645098,4
+48003781,20645098,3
+dengxian123,20645098,4
+4397835,20645098,4
+icaker,20645098,3
+132321087,20645098,2
+1975615,20645098,3
+4166320,20645098,4
+48815881,20645098,5
+44482309,20645098,3
+63871984,20645098,4
+iamedyang,20645098,4
+70586420,20645098,4
+53262999,20645098,4
+61823164,20645098,4
+71883529,20645098,4
+63494521,20645098,4
+tommytaurus,20645098,4
+41954323,20645098,-1
+30332673,20645098,3
+51908097,20645098,5
+74060692,20645098,5
+2539331,20645098,3
+3851402,20645098,3
+59320929,20645098,4
+40643841,20645098,3
+49120667,20645098,3
+80752202,20645098,2
+47679672,20645098,3
+51445023,20645098,5
+angelliujiayun,20645098,5
+49334857,20645098,4
+92860197,20645098,4
+iam44,20645098,5
+69922351,20645098,4
+jiachangting,20645098,5
+angelhor,20645098,4
+qincaiboai,20645098,3
+eiffel009,20645098,5
+80032869,20645098,3
+115687997,20645098,5
+44441839,20645098,4
+99272084,20645098,4
+halfsiren,20645098,3
+coldeyes_enatu,20645098,4
+122688374,20645098,4
+easyLyc,20645098,3
+61710591,20645098,5
+62946373,20645098,4
+54625709,20645098,3
+cypher_v,20645098,4
+110652593,20645098,4
+100342523,20645098,5
+136409582,20645098,4
+4195216,20645098,5
+stting,20645098,5
+hAteNoRatE,20645098,3
+3257961,20645098,4
+60072437,20645098,5
+2986410,20645098,3
+79191747,20645098,1
+68897919,20645098,3
+antoniagreen,20645098,3
+44587158,20645098,3
+135285888,20645098,-1
+ni0712,20645098,5
+serendipityblue,20645098,4
+57874939,20645098,3
+71937088,20645098,5
+122605310,20645098,4
+oneplusmoon,20645098,4
+lazymule,20645098,3
+double1004,20645098,5
+130683711,20645098,5
+tingxuanlv,20645098,4
+yummysherlock,20645098,5
+Foliage_Y,20645098,5
+heart_forever,20645098,5
+merveille,20645098,5
+43314025,20645098,3
+86254981,20645098,4
+graciealwaysbe,20645098,5
+liyawoo,20645098,5
+lizhiweierdelu,20645098,4
+wangjian0019,20645098,4
+132803778,20645098,4
+wubianz,20645098,4
+50630522,20645098,5
+freedomdeai,20645098,4
+134498967,20645098,5
+4424185,20645098,4
+53357479,20645098,3
+78585839,20645098,4
+52940930,20645098,4
+63866031,20645098,5
+70235777,20645098,5
+44776734,20645098,4
+Lane640,20645098,4
+winterppt,20645098,4
+44643515,20645098,4
+hanxiaonuo,20645098,-1
+46209502,20645098,5
+51328750,20645098,3
+60968500,20645098,4
+coolwd,20645098,4
+xiaodoufu,20645098,5
+101114328,20645098,4
+babydoris,20645098,3
+97693514,20645098,3
+avrilee,20645098,4
+guishou,20645098,4
+130234848,20645098,5
+alicemiffy,20645098,3
+78261244,20645098,4
+54191663,20645098,4
+135802167,20645098,5
+yinxiang,20645098,3
+60736257,20645098,3
+62864634,20645098,4
+cxh19920714,20645098,4
+61738638,20645098,5
+summersuy,20645098,5
+128799721,20645098,3
+79929037,20645098,4
+biglovebigbang,20645098,5
+42883589,20645098,5
+57693541,20645098,3
+47496080,20645098,4
+36617894,20645098,5
+artemisrj,20645098,4
+DoDoangell,20645098,5
+hedan122,20645098,5
+60624005,20645098,5
+137225547,20645098,4
+3751825,20645098,4
+littlemaybe,20645098,5
+meetpeterpan,20645098,4
+50892549,20645098,2
+69264496,20645098,5
+2613556,20645098,3
+edijason,20645098,3
+jojojojojoanna,20645098,2
+117911079,20645098,4
+3420320,20645098,5
+128360505,20645098,4
+2809964,20645098,3
+63773233,20645098,3
+55385860,20645098,3
+81796451,20645098,4
+126628542,20645098,4
+55815208,20645098,5
+99804851,20645098,5
+69332951,20645098,4
+61897117,20645098,4
+137226415,20645098,5
+121070871,20645098,4
+baihuxian,20645098,3
+49298107,20645098,1
+10580504,20645098,5
+59946746,20645098,-1
+72530950,20645098,2
+46574450,20645098,4
+120272196,20645098,4
+35331418,20645098,5
+121943500,20645098,4
+122944258,20645098,4
+136293291,20645098,-1
+130988431,20645098,3
+80280523,20645098,5
+90809338,20645098,5
+3876443,20645098,3
+KatoInoue,20645098,4
+132626524,20645098,-1
+stayfoolishstay,20645098,3
+137101396,20645098,3
+chenweikeke,20645098,5
+112083584,20645098,4
+85508803,20645098,4
+4397632,20645098,5
+13631484,20645098,3
+135499743,20645098,4
+70705310,20645098,2
+4822975,20645098,5
+120778881,20645098,5
+2270098,20645098,4
+123378616,20645098,5
+3065454,20645098,5
+maggie3837,20645098,5
+126823705,20645098,4
+46061693,20645098,4
+61872443,20645098,4
+53103122,20645098,4
+131758972,20645098,5
+cindy_ming,20645098,-1
+4125875,20645098,4
+4380586,20645098,5
+3749089,20645098,2
+45340658,20645098,3
+54983344,20645098,5
+mao_mao,20645098,4
+know,20645098,4
+54461009,20645098,4
+136957081,20645098,2
+po0oq,20645098,5
+68674316,20645098,5
+46738902,20645098,3
+122604724,20645098,4
+Vincentwu,20645098,4
+61746013,20645098,5
+44322866,20645098,4
+22105037,20645098,4
+130412943,20645098,5
+81337782,20645098,4
+Deicide,20645098,4
+48335496,20645098,4
+saidahyou,20645098,2
+seclock,20645098,5
+nestle103114,20645098,5
+30978745,20645098,4
+73073469,20645098,4
+2551920,20645098,3
+50330876,20645098,5
+47368327,20645098,4
+7401596,20645098,-1
+125730280,20645098,4
+JackHChan,20645098,4
+68314120,20645098,5
+onemoretime,20645098,5
+55925373,20645098,3
+Awezhang,20645098,4
+67081418,20645098,3
+renmeng,20645098,4
+51504042,20645098,5
+xiao7jl,20645098,4
+64506068,20645098,3
+30569827,20645098,5
+55609700,20645098,5
+luoweiliangchen,20645098,4
+68317426,20645098,-1
+128102502,20645098,4
+83141101,20645098,5
+25950624,20645098,5
+2118868,20645098,4
+124579051,20645098,5
+28462417,20645098,3
+131704221,20645098,4
+Nancy117,20645098,5
+2738015,20645098,3
+lovemimidog,20645098,4
+60588371,20645098,4
+133711626,20645098,4
+68078730,20645098,4
+1626349,20645098,4
+27280626,20645098,3
+72712114,20645098,4
+1325159,20645098,5
+46667318,20645098,3
+3496546,20645098,5
+52129000,20645098,4
+taihu,20645098,1
+63916093,20645098,5
+2346098,20645098,5
+RF181920,20645098,5
+Lumiere5200,20645098,3
+xukunbing,20645098,5
+salws,20645098,3
+42349049,20645098,3
+136518191,20645098,5
+122349881,20645098,4
+mayliyife,20645098,5
+42280233,20645098,4
+26739863,20645098,4
+137061442,20645098,4
+60226199,20645098,4
+YJXMYT,20645098,3
+115222337,20645098,5
+56103922,20645098,3
+68740315,20645098,4
+shangshishuo,20645098,5
+w849917387,20645098,4
+63716641,20645098,5
+134191869,20645098,4
+lipo,20645098,4
+62985765,20645098,5
+juyi214,20645098,5
+1153912,20645098,3
+127081626,20645098,4
+121432679,20645098,1
+xsweetsm_frida,20645098,5
+68630098,20645098,4
+FindingKnightly,20645098,3
+105325845,20645098,4
+54853596,20645098,4
+114517843,20645098,4
+126723672,20645098,4
+whuzhangli,20645098,4
+53274291,20645098,4
+beeston,20645098,5
+137136099,20645098,4
+kindlethesky,20645098,5
+chyxqwl,20645098,3
+chengnn,20645098,3
+47539459,20645098,4
+53250423,20645098,4
+63718074,20645098,5
+44965572,20645098,3
+131020888,20645098,3
+70659345,20645098,5
+Huyudao,20645098,5
+xellgio,20645098,4
+125264394,20645098,3
+51602037,20645098,5
+littletraveler,20645098,3
+cungang,20645098,-1
+43140182,20645098,3
+134267597,20645098,5
+ty2012,20645098,4
+binfancy,20645098,4
+130138879,20645098,5
+63932323,20645098,4
+83644669,20645098,3
+45892109,20645098,5
+61020702,20645098,1
+125007616,20645098,5
+127320783,20645098,5
+4906772,20645098,4
+gezi921054,20645098,3
+lilylmh,20645098,5
+44172316,20645098,5
+caofei-dai,20645098,5
+122052846,20645098,5
+56500125,20645098,-1
+57925390,20645098,3
+momon1900,20645098,4
+37259247,20645098,1
+zooyam,20645098,4
+yue2510,20645098,4
+64004989,20645098,3
+coffeesakura,20645098,4
+33569099,20645098,5
+warm_or_cool,20645098,4
+Min-sunflower,20645098,3
+vividzjr,20645098,4
+119997789,20645098,4
+shirlaw,20645098,5
+121484921,20645098,4
+flower_N,20645098,4
+134410818,20645098,3
+xiyoudou,20645098,4
+yujinxin1992,20645098,5
+127119228,20645098,4
+65812812,20645098,4
+122139957,20645098,5
+Bai-Bbai,20645098,5
+Bai-Bbai,20645098,5
+51100123,20645098,5
+6119737,20645098,3
+movie007wn,20645098,3
+76076982,20645098,5
+59938173,20645098,3
+49922956,20645098,5
+68630000,20645098,3
+illusion0211,20645098,1
+a_marantine,20645098,5
+52895943,20645098,5
+69386924,20645098,4
+jumbyl,20645098,5
+6765143,20645098,4
+seven1122,20645098,4
+1544213,20645098,5
+119027967,20645098,4
+52476178,20645098,3
+135689504,20645098,4
+45269875,20645098,2
+30427515,20645098,5
+4823337,20645098,3
+97452265,20645098,5
+zhangyutao519,20645098,4
+33893684,20645098,3
+68629139,20645098,4
+64056530,20645098,3
+VLR,20645098,3
+75267269,20645098,3
+53679520,20645098,4
+55797970,20645098,3
+98980389,20645098,4
+134100932,20645098,5
+Wing87504,20645098,3
+120094361,20645098,4
+icy-land,20645098,5
+107805569,20645098,4
+40673634,20645098,5
+emmaxu,20645098,3
+68632898,20645098,4
+73074411,20645098,4
+135850955,20645098,4
+45114236,20645098,2
+130998014,20645098,3
+daoxiaomi,20645098,4
+122860615,20645098,3
+52120890,20645098,3
+4450899,20645098,4
+125282375,20645098,4
+124848293,20645098,4
+80781412,20645098,5
+1943610,20645098,5
+blc86,20645098,5
+3439691,20645098,4
+lhnlyons,20645098,4
+yy33,20645098,5
+68015443,20645098,3
+Leung_QY,20645098,3
+henry-va-parle,20645098,5
+hatsu803,20645098,4
+kevingao27,20645098,4
+chanwanying,20645098,3
+29126479,20645098,3
+91985925,20645098,4
+bingo-kll,20645098,5
+57774434,20645098,4
+taoqianmo,20645098,5
+shiningsnow,20645098,4
+oovoov,20645098,3
+48649262,20645098,4
+weizaia,20645098,4
+98985570,20645098,4
+133415627,20645098,5
+3649454,20645098,5
+106538681,20645098,4
+marco_0708,20645098,4
+bornin1984,20645098,5
+jijingruxue,20645098,5
+119248717,20645098,4
+88345829,20645098,3
+88345829,20645098,3
+65214570,20645098,3
+105010095,20645098,5
+56899985,20645098,5
+vivianwuj,20645098,5
+62947379,20645098,3
+V.J.,20645098,5
+2246232,20645098,4
+51285935,20645098,4
+131064812,20645098,5
+Yaya325,20645098,3
+137069586,20645098,-1
+baby4inlove,20645098,4
+135461978,20645098,4
+63168048,20645098,2
+130192486,20645098,5
+45751483,20645098,3
+54994442,20645098,5
+120964759,20645098,4
+xiaoyu86,20645098,4
+137058497,20645098,4
+Gaspard,20645098,3
+revaoo,20645098,3
+98954264,20645098,3
+datete,20645098,3
+131205877,20645098,4
+naocanmaoer,20645098,3
+76779730,20645098,5
+130426117,20645098,3
+58310222,20645098,5
+76101689,20645098,5
+63233687,20645098,5
+tianhuan,20645098,4
+131025711,20645098,5
+67652760,20645098,4
+136879375,20645098,4
+53257837,20645098,4
+134371132,20645098,4
+48822574,20645098,5
+andrpirl,20645098,4
+137063266,20645098,5
+48036288,20645098,3
+127082758,20645098,4
+58791888,20645098,5
+134150089,20645098,4
+33895720,20645098,3
+46567996,20645098,5
+zhuqifan,20645098,5
+136992518,20645098,3
+2798198,20645098,5
+3274566,20645098,4
+127082757,20645098,4
+64547560,20645098,4
+68260270,20645098,4
+jaxxshen,20645098,4
+71479420,20645098,5
+84405232,20645098,4
+Meikom,20645098,3
+104633295,20645098,2
+47219412,20645098,5
+48090771,20645098,4
+iCinderella721,20645098,3
+qiyuemuxu,20645098,2
+thehours_lxx,20645098,4
+114719567,20645098,4
+51419980,20645098,4
+45935605,20645098,3
+119041520,20645098,3
+ChenSuXuan,20645098,-1
+3635922,20645098,4
+48369698,20645098,2
+51786034,20645098,4
+56450349,20645098,4
+88212504,20645098,5
+121334018,20645098,4
+96636386,20645098,5
+lilybhcoffee,20645098,4
+136274462,20645098,5
+sundaedae,20645098,4
+54159008,20645098,4
+54159008,20645098,4
+AyoChan,20645098,5
+baby0geek,20645098,4
+68073706,20645098,4
+pohhhh,20645098,4
+stormsuck,20645098,1
+1569872,20645098,4
+43303495,20645098,5
+2292701,20645098,5
+127118502,20645098,3
+56252551,20645098,3
+84297602,20645098,-1
+wille,20645098,5
+wjlzty,20645098,5
+burettes,20645098,4
+shoonior,20645098,2
+89332160,20645098,3
+131033417,20645098,4
+58029072,20645098,5
+shuangyugongjue,20645098,4
+121945093,20645098,4
+46030549,20645098,4
+hdfairy,20645098,4
+97005580,20645098,4
+39863821,20645098,5
+65771227,20645098,5
+50726933,20645098,5
+bluekitten,20645098,5
+77784759,20645098,5
+137006409,20645098,5
+58089982,20645098,5
+3954052,20645098,3
+cyrus_wong,20645098,2
+suuunino,20645098,3
+shinny010101,20645098,5
+43919989,20645098,5
+sheeppark,20645098,5
+TitlisGushishan,20645098,3
+56556616,20645098,3
+136644229,20645098,3
+136644229,20645098,3
+84834107,20645098,5
+102337536,20645098,3
+81870071,20645098,4
+49609934,20645098,5
+88867964,20645098,5
+64170132,20645098,4
+60417031,20645098,1
+2320408,20645098,3
+59005110,20645098,2
+4841197,20645098,4
+1474063,20645098,4
+53266040,20645098,4
+48191441,20645098,3
+miya1008,20645098,5
+93825881,20645098,4
+2870958,20645098,-1
+60095714,20645098,5
+43972207,20645098,4
+123002309,20645098,4
+51172081,20645098,4
+4432753,20645098,5
+66967423,20645098,4
+82993911,20645098,4
+hesterisafish,20645098,-1
+46935032,20645098,4
+4333370,20645098,4
+47361549,20645098,5
+36537385,20645098,4
+56013526,20645098,2
+37614806,20645098,5
+6270415,20645098,3
+ahuasist,20645098,4
+zeoh,20645098,3
+tianranzijiegou,20645098,4
+ishtarie,20645098,4
+loveyijingji,20645098,4
+43199601,20645098,5
+131928487,20645098,5
+53833822,20645098,5
+49282329,20645098,3
+59163778,20645098,4
+41509198,20645098,5
+66070737,20645098,3
+yeyinger,20645098,4
+89814463,20645098,5
+46361986,20645098,4
+70193283,20645098,5
+zxy_s,20645098,5
+56751035,20645098,5
+sandyran,20645098,4
+54773691,20645098,5
+xiaowumei,20645098,4
+feng-tracy,20645098,4
+41070205,20645098,4
+55606165,20645098,4
+pinkyboat,20645098,4
+37521902,20645098,1
+71859854,20645098,3
+wondersue,20645098,5
+blueguy,20645098,4
+mrzeng1993,20645098,5
+L-muyan,20645098,5
+bunnydai,20645098,4
+73648035,20645098,4
+48254741,20645098,5
+41151656,20645098,5
+56655499,20645098,3
+50839546,20645098,1
+132277009,20645098,2
+windytime,20645098,5
+130445057,20645098,3
+82443240,20645098,3
+122868077,20645098,5
+82531582,20645098,5
+caiyinfan,20645098,5
+121498824,20645098,5
+1275295,20645098,5
+guanbz,20645098,4
+yuci021,20645098,4
+adejavu,20645098,5
+102152688,20645098,4
+68429494,20645098,4
+76481900,20645098,2
+81685996,20645098,-1
+71230586,20645098,5
+70927104,20645098,3
+64126664,20645098,3
+Aterego,20645098,3
+14168896,20645098,4
+56125198,20645098,4
+4213621,20645098,2
+127457458,20645098,3
+102804958,20645098,4
+50737146,20645098,4
+123334702,20645098,3
+mgxshui,20645098,4
+102413399,20645098,4
+nicos,20645098,4
+theoneforever,20645098,4
+134586200,20645098,4
+yangziche,20645098,3
+84524255,20645098,4
+52523730,20645098,4
+1169348,20645098,4
+50662959,20645098,4
+3902704,20645098,5
+130353822,20645098,4
+47622720,20645098,4
+56139397,20645098,5
+adelestarry,20645098,4
+55767306,20645098,1
+fanqie3,20645098,4
+Lillian-LYL,20645098,3
+HANA-BI,20645098,-1
+dtreer,20645098,3
+81469223,20645098,3
+46493903,20645098,4
+48539445,20645098,4
+45419889,20645098,3
+wyfsmd,20645098,4
+MancunianJor,20645098,4
+57004497,20645098,5
+sebastiantoto,20645098,5
+onlysmile,20645098,4
+niuniurf,20645098,3
+76616285,20645098,4
+hexiyan,20645098,5
+ninquelote,20645098,4
+erikzm,20645098,4
+28739019,20645098,3
+bforbetter,20645098,4
+50305224,20645098,4
+4213270,20645098,3
+57036848,20645098,4
+47025677,20645098,5
+127569899,20645098,3
+angelyezi,20645098,4
+47265616,20645098,5
+btone0808,20645098,3
+3296068,20645098,-1
+80470246,20645098,4
+yysmini,20645098,2
+41726005,20645098,4
+129938682,20645098,5
+qqmhao,20645098,5
+2743826,20645098,4
+114183000,20645098,4
+24570827,20645098,5
+1436131,20645098,3
+91507972,20645098,4
+2331131,20645098,3
+funnyface,20645098,4
+zhzh_0831,20645098,3
+z1901111,20645098,4
+2914496,20645098,4
+41855712,20645098,3
+79192198,20645098,3
+tianyi_sweet,20645098,4
+80825347,20645098,5
+126335298,20645098,3
+bernadettttttte,20645098,5
+61161824,20645098,3
+41887297,20645098,4
+43846305,20645098,5
+128373341,20645098,4
+62660312,20645098,4
+3481421,20645098,5
+33792508,20645098,4
+princessmavis,20645098,3
+69467986,20645098,4
+51853424,20645098,5
+51271400,20645098,3
+50282986,20645098,1
+42723395,20645098,3
+69037881,20645098,4
+4309835,20645098,4
+fuckurbaby,20645098,3
+8240576,20645098,2
+91629846,20645098,1
+2005286,20645098,4
+wesley007,20645098,5
+2223553,20645098,5
+wstczy,20645098,3
+61317429,20645098,4
+qianqianaini,20645098,5
+kilruk,20645098,5
+43980408,20645098,2
+119802529,20645098,5
+yuebing123,20645098,5
+6972638,20645098,4
+38644821,20645098,4
+29687249,20645098,-1
+40883451,20645098,5
+panxy,20645098,2
+82438598,20645098,5
+3251375,20645098,4
+120350586,20645098,4
+truth3204,20645098,4
+tingky,20645098,4
+Rinascita,20645098,5
+134550050,20645098,4
+10128811,20645098,5
+72444352,20645098,5
+moxa,20645098,5
+39542479,20645098,4
+68831155,20645098,4
+houy123456,20645098,5
+47331030,20645098,4
+122656795,20645098,5
+46722209,20645098,3
+136320790,20645098,5
+63327576,20645098,3
+48876211,20645098,4
+49156187,20645098,5
+70121595,20645098,4
+37969274,20645098,5
+68390575,20645098,4
+62181246,20645098,5
+47815647,20645098,5
+49495441,20645098,4
+sunsetkiwi,20645098,5
+134499972,20645098,3
+49195473,20645098,3
+81799471,20645098,4
+123301657,20645098,5
+102611461,20645098,3
+zebramomo,20645098,5
+83777052,20645098,-1
+bailongyizhan,20645098,4
+38513029,20645098,3
+134327676,20645098,5
+123968684,20645098,3
+3341114,20645098,3
+q258523454,20645098,4
+FortyTwo,20645098,4
+49589057,20645098,3
+49489368,20645098,5
+37417625,20645098,4
+120324346,20645098,5
+53554219,20645098,4
+4074985,20645098,5
+65021205,20645098,5
+4227484,20645098,5
+44629022,20645098,1
+44764639,20645098,5
+42862890,20645098,4
+136628505,20645098,5
+90217144,20645098,4
+62799720,20645098,5
+65176170,20645098,4
+43625639,20645098,4
+abin520918,20645098,4
+newbear,20645098,3
+27933062,20645098,3
+2659651,20645098,3
+bronzeJ,20645098,5
+civey,20645098,4
+55444463,20645098,3
+50015738,20645098,4
+91322725,20645098,4
+59987958,20645098,4
+46395602,20645098,3
+forever_girl,20645098,3
+susie_qu,20645098,4
+silverstro,20645098,-1
+127619617,20645098,3
+134509898,20645098,4
+123404476,20645098,5
+49993004,20645098,5
+Vichair,20645098,4
+131727337,20645098,4
+131713125,20645098,4
+14167253,20645098,5
+3981557,20645098,5
+47747427,20645098,5
+53454251,20645098,4
+133553375,20645098,5
+135851247,20645098,4
+88731228,20645098,5
+ZonaLau1997,20645098,5
+64429820,20645098,5
+48695154,20645098,4
+126579331,20645098,4
+56277865,20645098,4
+beibeiyu,20645098,5
+114435379,20645098,4
+136854529,20645098,4
+58154691,20645098,5
+33940050,20645098,4
+wangliuchi,20645098,4
+beyond1993,20645098,3
+126557589,20645098,4
+1883840,20645098,5
+46177546,20645098,5
+eve87,20645098,3
+134013208,20645098,5
+2809875,20645098,5
+89407486,20645098,4
+49164975,20645098,4
+4288733,20645098,5
+43177938,20645098,2
+4885959,20645098,4
+mayukijuju,20645098,4
+24068635,20645098,5
+mxmxmxxx,20645098,4
+1280631,20645098,5
+59421721,20645098,3
+106351670,20645098,5
+135300017,20645098,3
+46380360,20645098,5
+97492474,20645098,5
+58578602,20645098,5
+E_whitesmoke,20645098,4
+freedomiron,20645098,3
+flyingbria,20645098,5
+40629912,20645098,5
+129543968,20645098,5
+46640524,20645098,5
+Gabriel_Mars,20645098,4
+43600394,20645098,3
+51395571,20645098,5
+71203856,20645098,5
+jadezely,20645098,5
+74425149,20645098,5
+3497811,20645098,4
+zhichuangfanle,20645098,4
+57983055,20645098,4
+116036519,20645098,3
+124732039,20645098,3
+3740351,20645098,4
+ChrisD9,20645098,2
+elsaguoo,20645098,4
+64981286,20645098,3
+killyourenemy,20645098,5
+60365345,20645098,3
+withoutMrRight,20645098,5
+sawakoluvian,20645098,2
+dressyisan,20645098,3
+uncletofu,20645098,5
+uncletofu,20645098,5
+3140118,20645098,4
+luolaijie,20645098,5
+60939723,20645098,5
+adrian0807,20645098,5
+121885852,20645098,5
+103751698,20645098,5
+35924117,20645098,4
+61791330,20645098,1
+41288485,20645098,5
+53328148,20645098,5
+huangti,20645098,4
+67257827,20645098,5
+yizaohong,20645098,3
+42759506,20645098,-1
+JonathanChen,20645098,4
+lockrock,20645098,3
+82729736,20645098,4
+zlmxyy,20645098,-1
+32643655,20645098,4
+33325877,20645098,1
+27223833,20645098,3
+sean229,20645098,2
+onlyjanetchan,20645098,5
+87698709,20645098,-1
+132292462,20645098,4
+luoluodan,20645098,4
+89761511,20645098,3
+srlzlgy,20645098,4
+47104715,20645098,5
+48602851,20645098,3
+52758897,20645098,2
+50738842,20645098,2
+50300019,20645098,5
+danzhu,20645098,2
+56617946,20645098,4
+4310313,20645098,3
+76737626,20645098,2
+98015375,20645098,3
+chinhao,20645098,4
+chinhao,20645098,4
+74962272,20645098,4
+127302539,20645098,3
+56349224,20645098,4
+1823757,20645098,5
+132333627,20645098,4
+2434047,20645098,3
+127449662,20645098,5
+lamianaiai,20645098,4
+63280686,20645098,5
+35051547,20645098,5
+50554590,20645098,5
+42665673,20645098,4
+131922389,20645098,2
+51618749,20645098,5
+43336372,20645098,2
+63790894,20645098,4
+50140281,20645098,5
+Lutertia0112358,20645098,4
+87570484,20645098,3
+69673873,20645098,4
+66177469,20645098,4
+tommy00000,20645098,4
+54977108,20645098,4
+evaniscoming,20645098,5
+130152879,20645098,5
+41436469,20645098,5
+hdjjys,20645098,3
+90747910,20645098,5
+60602246,20645098,3
+57304679,20645098,3
+miaotuanzi,20645098,4
+daisy_0629,20645098,4
+ibravo,20645098,3
+Yanyin_Zhan,20645098,5
+61374818,20645098,4
+107122115,20645098,5
+128569083,20645098,3
+48882984,20645098,5
+57933302,20645098,4
+136428811,20645098,4
+41317103,20645098,2
+46702310,20645098,3
+2438025,20645098,3
+Yvone911,20645098,4
+1222692,20645098,4
+52492021,20645098,4
+3435845,20645098,3
+77758915,20645098,5
+76552950,20645098,4
+121235168,20645098,4
+48813232,20645098,5
+52298907,20645098,3
+37765611,20645098,4
+y193,20645098,3
+lynchor,20645098,5
+45477713,20645098,3
+1511035,20645098,3
+62350026,20645098,4
+34225856,20645098,5
+muemiehf,20645098,4
+81280181,20645098,4
+3523793,20645098,3
+hoaxstar,20645098,4
+73427598,20645098,4
+43083123,20645098,4
+reneeyang,20645098,5
+42569565,20645098,5
+62409020,20645098,4
+50930270,20645098,5
+d8day,20645098,5
+45478618,20645098,5
+62189645,20645098,2
+43338065,20645098,4
+jyiris,20645098,4
+withmewithyou,20645098,4
+31637293,20645098,1
+sinux,20645098,5
+61690331,20645098,5
+63572086,20645098,5
+130663652,20645098,5
+cglhust,20645098,3
+horaceray,20645098,3
+44780498,20645098,5
+119364125,20645098,2
+43955073,20645098,5
+vivian1204,20645098,4
+KinO_O,20645098,5
+2078402,20645098,3
+68923973,20645098,3
+TGLRF,20645098,3
+94148888,20645098,4
+66711391,20645098,4
+56328149,20645098,4
+62307805,20645098,4
+74753192,20645098,5
+49893680,20645098,4
+hytro,20645098,5
+zoechung,20645098,4
+126401152,20645098,4
+126401152,20645098,4
+67726824,20645098,5
+98098523,20645098,3
+uleh,20645098,2
+121959506,20645098,4
+1102802,20645098,5
+doubanellen,20645098,5
+83133145,20645098,5
+65898362,20645098,4
+49649488,20645098,3
+ashuimmer,20645098,5
+40219614,20645098,5
+4570225,20645098,4
+71468174,20645098,4
+43084206,20645098,5
+2107509,20645098,4
+Colman,20645098,4
+70368637,20645098,2
+102280322,20645098,4
+59992887,20645098,3
+pandoragbn,20645098,5
+25803906,20645098,5
+127018675,20645098,-1
+february6th,20645098,3
+67068693,20645098,4
+22648222,20645098,5
+59336552,20645098,5
+samsyu,20645098,3
+mywwdd,20645098,3
+beanbag,20645098,4
+131124365,20645098,4
+67454495,20645098,2
+62628758,20645098,3
+shinysue,20645098,4
+67524096,20645098,4
+willydu,20645098,5
+121356026,20645098,5
+72171780,20645098,5
+yoyo5411,20645098,4
+monsterlost,20645098,5
+133522237,20645098,4
+134874896,20645098,4
+perishgarden,20645098,4
+42431883,20645098,5
+shirleyma,20645098,3
+53659864,20645098,5
+adrianna,20645098,3
+47833189,20645098,3
+120826498,20645098,5
+SECKY,20645098,1
+114380791,20645098,4
+xiaowaishuai,20645098,1
+saya0510,20645098,5
+53492986,20645098,5
+jing_radio,20645098,4
+4543967,20645098,2
+3684499,20645098,4
+2544491,20645098,4
+57907537,20645098,3
+61737098,20645098,4
+62577484,20645098,5
+60902819,20645098,5
+62631856,20645098,3
+131060612,20645098,5
+26889158,20645098,4
+nishijimaming,20645098,4
+55287107,20645098,4
+51297229,20645098,4
+hekahuiqu,20645098,5
+fufufufuxk,20645098,4
+littlecar,20645098,4
+83267131,20645098,3
+1804035,20645098,5
+kim899,20645098,5
+51126355,20645098,5
+132997902,20645098,3
+muzimisneil,20645098,3
+32019059,20645098,4
+jianbrother,20645098,2
+59186973,20645098,1
+wsmint,20645098,4
+uglyaa,20645098,3
+97057870,20645098,4
+F1vese7enone,20645098,5
+52667754,20645098,5
+niitsu,20645098,5
+133590415,20645098,3
+yh8975,20645098,5
+ieatyumi,20645098,4
+35958963,20645098,4
+xizi-nicotiana,20645098,5
+115706838,20645098,5
+60851886,20645098,4
+52821678,20645098,4
+jennyxixi,20645098,4
+77511021,20645098,5
+77093571,20645098,3
+64531485,20645098,4
+43639134,20645098,4
+siruila,20645098,-1
+fenxinyu,20645098,3
+1495064,20645098,5
+3966394,20645098,5
+46754080,20645098,5
+47642921,20645098,4
+41570843,20645098,5
+58411324,20645098,4
+jianinglee,20645098,3
+81384765,20645098,5
+palegirl1987,20645098,5
+ssime,20645098,2
+lijuede,20645098,3
+66167320,20645098,4
+64430104,20645098,5
+vivianya,20645098,5
+127131340,20645098,3
+125498604,20645098,5
+50235761,20645098,5
+3831169,20645098,4
+19805046,20645098,-1
+61374994,20645098,5
+zhanshenzhy,20645098,5
+1410994,20645098,5
+MaxinAn,20645098,4
+115217962,20645098,3
+onlymoment,20645098,4
+133690949,20645098,3
+elva_M,20645098,4
+80060056,20645098,5
+67497276,20645098,4
+67501014,20645098,3
+123889828,20645098,3
+82369004,20645098,4
+28319088,20645098,5
+120091522,20645098,4
+57479148,20645098,4
+wakeng,20645098,5
+133001857,20645098,4
+50686538,20645098,4
+59640341,20645098,4
+54222505,20645098,2
+cqzby,20645098,4
+Paranoidc,20645098,1
+44005154,20645098,5
+joannaZR,20645098,-1
+13284034,20645098,5
+62438264,20645098,3
+53028491,20645098,3
+62608961,20645098,4
+131927153,20645098,3
+xianxiansushou,20645098,4
+84109278,20645098,5
+91216302,20645098,5
+75436336,20645098,4
+44921687,20645098,4
+3927980,20645098,2
+133371885,20645098,4
+63380361,20645098,4
+Jue-1118,20645098,-1
+68442963,20645098,3
+125474588,20645098,4
+LOISK8,20645098,5
+129480991,20645098,3
+48254198,20645098,5
+121433297,20645098,4
+2230904,20645098,5
+43363409,20645098,5
+candychan,20645098,3
+130270318,20645098,3
+103202495,20645098,4
+135425885,20645098,5
+66519184,20645098,4
+Mibowen611,20645098,5
+zhaze,20645098,5
+sinapple,20645098,5
+PicturePerfect,20645098,5
+85409343,20645098,1
+baohei,20645098,4
+gy9512,20645098,5
+liuyuhen18,20645098,4
+lt33c,20645098,-1
+2753727,20645098,3
+2564439,20645098,3
+22704847,20645098,3
+65521542,20645098,-1
+58697210,20645098,2
+marc7i,20645098,5
+2432751,20645098,5
+136823116,20645098,4
+lafeegao,20645098,3
+linxiayidu0,20645098,5
+54715138,20645098,4
+37424688,20645098,3
+sickboy,20645098,3
+41207080,20645098,5
+ivy_lmj,20645098,3
+68742620,20645098,4
+53915476,20645098,4
+2760210,20645098,4
+131929372,20645098,4
+island-c,20645098,5
+120555899,20645098,3
+97444159,20645098,4
+133190133,20645098,2
+41660790,20645098,4
+26653388,20645098,4
+103610487,20645098,3
+b863782977,20645098,5
+60095742,20645098,3
+82680490,20645098,5
+privateoo,20645098,3
+57612713,20645098,4
+43342048,20645098,3
+112727322,20645098,5
+moraraho,20645098,5
+1856131,20645098,4
+45150324,20645098,4
+yele,20645098,4
+50914146,20645098,5
+84824667,20645098,5
+May_C,20645098,4
+7881838,20645098,3
+29988563,20645098,2
+marukawa,20645098,3
+43596686,20645098,4
+62658063,20645098,3
+47231110,20645098,5
+stefana,20645098,3
+72365393,20645098,4
+50264396,20645098,-1
+46533854,20645098,5
+1596473,20645098,5
+52279505,20645098,4
+48873151,20645098,5
+122447269,20645098,5
+77305768,20645098,3
+68523574,20645098,3
+39742961,20645098,2
+49484848,20645098,4
+32022842,20645098,3
+60429218,20645098,5
+45878132,20645098,4
+58010436,20645098,5
+73616787,20645098,5
+xuyimeng,20645098,3
+57252669,20645098,-1
+maixiaobao,20645098,3
+loftywain,20645098,4
+48573240,20645098,4
+135618648,20645098,5
+63558705,20645098,4
+58069293,20645098,4
+4516843,20645098,4
+taizi717,20645098,5
+46524942,20645098,4
+133319658,20645098,4
+92881561,20645098,5
+70340227,20645098,4
+liimaday,20645098,5
+73114968,20645098,5
+smokingchou,20645098,5
+130091161,20645098,5
+ruby_xunchuan,20645098,3
+3189714,20645098,3
+47784418,20645098,4
+51597147,20645098,3
+62436945,20645098,3
+attaincurtain,20645098,2
+62177769,20645098,5
+104048587,20645098,4
+elephant723,20645098,5
+64041722,20645098,3
+136849738,20645098,3
+76319059,20645098,4
+99132166,20645098,3
+damnm,20645098,2
+50703946,20645098,4
+49273541,20645098,2
+3876612,20645098,4
+38222446,20645098,5
+lostyoung,20645098,2
+62670880,20645098,4
+bamboowhale,20645098,3
+54495003,20645098,2
+novkey,20645098,2
+daesu_u,20645098,3
+57899091,20645098,5
+52562845,20645098,4
+127451167,20645098,5
+108242552,20645098,4
+yangguangwuxian,20645098,4
+45661529,20645098,5
+3678259,20645098,2
+47021535,20645098,4
+94273870,20645098,4
+egoism21,20645098,2
+leonhardtdb,20645098,5
+bloodleopard,20645098,4
+toozy,20645098,4
+SZH19920707,20645098,5
+3323872,20645098,4
+94341296,20645098,5
+8990191,20645098,3
+Makoto614,20645098,3
+131126079,20645098,3
+136429512,20645098,5
+49722560,20645098,4
+120852248,20645098,5
+7590722,20645098,1
+59206130,20645098,2
+1941944,20645098,3
+39947970,20645098,4
+Gengxiaolele,20645098,3
+131944321,20645098,5
+leafvsleaf,20645098,4
+131879243,20645098,5
+37959469,20645098,3
+92192831,20645098,5
+14944907,20645098,3
+linyunxuan,20645098,5
+114836268,20645098,5
+71656261,20645098,3
+116267652,20645098,3
+3728891,20645098,4
+71609653,20645098,5
+4196011,20645098,4
+47220088,20645098,5
+damichongamy,20645098,3
+etsuko120,20645098,4
+realwindy,20645098,5
+32004152,20645098,3
+Halbert-Sun,20645098,3
+59783887,20645098,5
+3931171,20645098,3
+3590759,20645098,5
+49923430,20645098,3
+52203160,20645098,5
+64218065,20645098,4
+4856520,20645098,2
+43600177,20645098,5
+aspiere,20645098,3
+53049553,20645098,4
+52739987,20645098,4
+124981596,20645098,4
+68693771,20645098,4
+123356567,20645098,-1
+zhaozhaoguo,20645098,4
+grassky,20645098,5
+95046585,20645098,4
+surfire1206,20645098,2
+15032209,20645098,5
+83983151,20645098,4
+58189012,20645098,3
+117806969,20645098,5
+y19940504,20645098,5
+evilhyde,20645098,3
+61703830,20645098,3
+1888516,20645098,3
+33290025,20645098,4
+17435111,20645098,4
+3555033,20645098,5
+53585510,20645098,4
+21331611,20645098,-1
+shaxiaohai,20645098,5
+wonder4xl,20645098,5
+58725875,20645098,3
+amunli,20645098,4
+95455271,20645098,5
+83043211,20645098,5
+55849683,20645098,3
+coolfax,20645098,5
+mocoa,20645098,4
+136714710,20645098,5
+SaberChan,20645098,3
+Linchy,20645098,4
+akiliapple,20645098,5
+64594935,20645098,5
+115400268,20645098,3
+4594496,20645098,4
+57687863,20645098,3
+49108399,20645098,2
+131469724,20645098,5
+51195238,20645098,3
+81268576,20645098,4
+115639810,20645098,4
+32941683,20645098,3
+31788770,20645098,4
+51903311,20645098,3
+colorwindeer,20645098,3
+3811681,20645098,4
+MyloveXxy,20645098,2
+51759846,20645098,4
+yp52,20645098,5
+68982219,20645098,3
+tessai,20645098,4
+2754204,20645098,-1
+winnylee,20645098,5
+mumcy,20645098,4
+120676548,20645098,4
+50143205,20645098,5
+52708319,20645098,4
+sunvision,20645098,4
+41536342,20645098,4
+maikatse,20645098,4
+25207902,20645098,3
+65593052,20645098,4
+kencity,20645098,1
+NotY,20645098,4
+63443426,20645098,4
+beifighting,20645098,3
+Abandoned_Sundy,20645098,3
+58347671,20645098,4
+hazelhsu,20645098,3
+1101526,20645098,3
+amadecasa,20645098,5
+83977213,20645098,3
+kongxinzei,20645098,2
+Pennyye,20645098,3
+CherrySnow,20645098,5
+78872347,20645098,5
+noonsleep,20645098,4
+64494535,20645098,4
+2048530,20645098,5
+59760731,20645098,5
+86235468,20645098,3
+59887639,20645098,3
+solaryy,20645098,3
+55289792,20645098,5
+dingconger,20645098,1
+121085525,20645098,5
+poopoohead,20645098,3
+45703382,20645098,4
+133159113,20645098,5
+40559858,20645098,4
+47359936,20645098,4
+yeyayu,20645098,5
+42576668,20645098,4
+47357911,20645098,4
+133644308,20645098,3
+53063719,20645098,5
+48461927,20645098,4
+ziting002,20645098,3
+62379540,20645098,5
+136754802,20645098,5
+korialeaf,20645098,3
+moyei,20645098,5
+90693032,20645098,4
+39811621,20645098,3
+67661617,20645098,5
+ilunzi,20645098,3
+67936485,20645098,5
+76379686,20645098,5
+121757659,20645098,-1
+1926472,20645098,2
+60568849,20645098,5
+48190133,20645098,4
+majide,20645098,4
+59902058,20645098,3
+38916827,20645098,5
+127192204,20645098,2
+Mary_Lee,20645098,5
+4305518,20645098,5
+zaywb,20645098,4
+xiuxiutiancai,20645098,3
+92203860,20645098,5
+103491600,20645098,1
+52052677,20645098,5
+53075716,20645098,3
+62317068,20645098,5
+84475486,20645098,5
+58960706,20645098,5
+damaimmm,20645098,-1
+82371523,20645098,4
+kim100702,20645098,1
+59649180,20645098,3
+teddyshmily,20645098,5
+rota1993,20645098,5
+57197807,20645098,4
+ly19910801,20645098,4
+88566153,20645098,4
+78565044,20645098,5
+64834262,20645098,5
+70779185,20645098,5
+fengclient,20645098,5
+hipposama,20645098,3
+119614326,20645098,3
+59995395,20645098,5
+stillfyou,20645098,4
+49143390,20645098,4
+30796047,20645098,2
+58338006,20645098,4
+122637168,20645098,5
+4858378,20645098,5
+3659754,20645098,4
+59572206,20645098,2
+4600665,20645098,4
+4204545,20645098,3
+yprenkouer,20645098,3
+57901422,20645098,4
+dearrbb,20645098,4
+69011211,20645098,4
+psynonder,20645098,4
+42292941,20645098,4
+60302594,20645098,4
+121146638,20645098,5
+mowo,20645098,2
+78831074,20645098,4
+54317932,20645098,-1
+56903875,20645098,5
+51313270,20645098,5
+136402775,20645098,4
+m.edulla,20645098,3
+allthesame,20645098,2
+128200926,20645098,4
+61767447,20645098,4
+yym3yearsold,20645098,5
+48167301,20645098,3
+80524865,20645098,4
+3793037,20645098,3
+134527565,20645098,3
+134527565,20645098,3
+Jennifer.C1117,20645098,3
+89318429,20645098,5
+46507893,20645098,5
+songyuanxiahai,20645098,3
+koalalalalala,20645098,4
+viki011,20645098,3
+4616127,20645098,5
+beibidewo,20645098,3
+72517310,20645098,4
+58281873,20645098,4
+51559906,20645098,3
+52599868,20645098,3
+57387149,20645098,3
+29282642,20645098,3
+1343126,20645098,4
+hopegreen,20645098,5
+miqu,20645098,3
+49628023,20645098,3
+quiet-qing,20645098,3
+54366340,20645098,5
+withshane,20645098,2
+37693865,20645098,4
+4912264,20645098,3
+70856854,20645098,3
+62571454,20645098,3
+apple4moon,20645098,5
+136790899,20645098,2
+angelazha,20645098,5
+38045752,20645098,4
+64335429,20645098,3
+81146886,20645098,5
+2422182,20645098,4
+1818595,20645098,3
+luolininger,20645098,4
+1110643,20645098,5
+crashqueen,20645098,4
+marv8422,20645098,1
+62911869,20645098,5
+47903791,20645098,4
+when3memory7,20645098,4
+11602983,20645098,4
+83812605,20645098,3
+36281933,20645098,4
+didadidi,20645098,4
+zivee-1uo,20645098,4
+35779488,20645098,5
+99512994,20645098,5
+47714598,20645098,4
+66773730,20645098,3
+ivydehouse,20645098,4
+BETSEY,20645098,4
+whisper75,20645098,3
+rozing,20645098,5
+Mai.c,20645098,4
+miong,20645098,5
+3815024,20645098,4
+64816700,20645098,3
+melodybeiz,20645098,4
+39374493,20645098,2
+amoryqq,20645098,4
+ovanisho,20645098,4
+59881428,20645098,4
+khunfeng,20645098,4
+48226644,20645098,4
+52054159,20645098,4
+103421398,20645098,3
+umikoyuu,20645098,3
+80093062,20645098,4
+yangbei810,20645098,4
+53149493,20645098,3
+88483778,20645098,4
+yazi3.15,20645098,3
+69616241,20645098,5
+55869856,20645098,4
+raibei,20645098,5
+40010033,20645098,4
+so-sogirl,20645098,4
+64234839,20645098,4
+burymyhead,20645098,3
+134552700,20645098,4
+127102772,20645098,5
+88614008,20645098,5
+Suki_N,20645098,3
+36621116,20645098,5
+120106662,20645098,1
+59047724,20645098,4
+chichengle,20645098,4
+55641747,20645098,4
+huangjungeng,20645098,3
+megumiwo,20645098,4
+61638467,20645098,5
+122251713,20645098,4
+57644512,20645098,5
+88292094,20645098,3
+3511490,20645098,4
+53795201,20645098,3
+74953596,20645098,4
+63485325,20645098,3
+heartseas,20645098,5
+134684988,20645098,3
+galaxy_far,20645098,5
+43296009,20645098,5
+xyolvf,20645098,4
+jyw56,20645098,3
+129568726,20645098,4
+14032722,20645098,5
+94886676,20645098,3
+65085646,20645098,3
+64874706,20645098,3
+133499151,20645098,4
+64323001,20645098,5
+aicher,20645098,5
+130735639,20645098,4
+64876627,20645098,4
+50050256,20645098,4
+36834058,20645098,-1
+56415499,20645098,4
+imhjl412,20645098,4
+61899279,20645098,5
+xiaowenjuan,20645098,3
+molly1012,20645098,3
+5580906,20645098,-1
+127536739,20645098,5
+134540692,20645098,5
+fadea_way,20645098,5
+70781004,20645098,5
+manuela,20645098,5
+1923660,20645098,3
+songchunxue,20645098,3
+45578908,20645098,5
+54663523,20645098,4
+felinoshuffle,20645098,3
+121767741,20645098,5
+2997309,20645098,4
+28212620,20645098,3
+115784778,20645098,3
+kkguagangqin,20645098,5
+66290511,20645098,4
+133887142,20645098,5
+2700013,20645098,4
+2193770,20645098,5
+59347903,20645098,5
+55952229,20645098,4
+132805966,20645098,-1
+miesafeandsound,20645098,4
+marvin42,20645098,3
+4429133,20645098,4
+ArekX,20645098,5
+83472230,20645098,3
+40306766,20645098,5
+pbb,20645098,3
+63088697,20645098,4
+50335410,20645098,3
+evilkitten,20645098,5
+4229853,20645098,5
+vanjohnbob,20645098,4
+57179184,20645098,3
+56833761,20645098,5
+3922229,20645098,3
+85416112,20645098,2
+135634275,20645098,4
+59263792,20645098,5
+72630623,20645098,3
+119257372,20645098,4
+79287740,20645098,-1
+122004304,20645098,4
+85120995,20645098,2
+46247128,20645098,-1
+3761305,20645098,5
+1754621,20645098,4
+urwill,20645098,5
+51304362,20645098,5
+MissInvisible,20645098,3
+80554477,20645098,5
+yyo427,20645098,-1
+dstro,20645098,-1
+57375454,20645098,5
+4001333,20645098,5
+29972827,20645098,4
+64351947,20645098,3
+Shijiayi,20645098,4
+79896532,20645098,5
+allenbuhe,20645098,4
+134340529,20645098,5
+99377723,20645098,4
+56751525,20645098,4
+aiwangyue,20645098,5
+68863381,20645098,5
+60737161,20645098,3
+yamap9thApr.,20645098,4
+kagaminerin,20645098,3
+45509005,20645098,5
+28183442,20645098,4
+Alarecherche,20645098,3
+42600622,20645098,-1
+43372151,20645098,4
+Iamfull,20645098,4
+68472138,20645098,3
+30386926,20645098,4
+43448765,20645098,4
+green912,20645098,4
+maxiaomeng,20645098,4
+allenzn125,20645098,5
+68149806,20645098,4
+53281036,20645098,4
+JanekissQSN,20645098,5
+xiaomomo,20645098,3
+115235064,20645098,4
+44192712,20645098,4
+77221093,20645098,2
+126056282,20645098,5
+128592624,20645098,5
+2068366,20645098,5
+mnky,20645098,3
+4916306,20645098,4
+46374392,20645098,5
+49585135,20645098,5
+72552409,20645098,4
+2273926,20645098,5
+everscot,20645098,2
+xyzmiki,20645098,5
+76078772,20645098,4
+candyrice,20645098,4
+47310524,20645098,5
+leLJ,20645098,5
+128492091,20645098,3
+35276844,20645098,2
+44007453,20645098,4
+adachinoboolu,20645098,5
+65907866,20645098,4
+1457047,20645098,5
+surprinazhang,20645098,3
+136744877,20645098,5
+yaoszoo,20645098,3
+50076834,20645098,3
+51684759,20645098,4
+2894547,20645098,4
+44290240,20645098,3
+47396460,20645098,3
+yvonne14,20645098,5
+67220326,20645098,4
+irresponsible,20645098,5
+32653092,20645098,4
+fengjiansun,20645098,3
+60557679,20645098,2
+40177253,20645098,3
+34533594,20645098,5
+59689360,20645098,-1
+2917314,20645098,4
+57805378,20645098,5
+HugoBaker,20645098,4
+arrowkey,20645098,4
+15786826,20645098,4
+58077411,20645098,5
+74583903,20645098,5
+fairylolita,20645098,3
+79121505,20645098,5
+123788774,20645098,4
+47165850,20645098,2
+47165850,20645098,2
+57753788,20645098,3
+72785773,20645098,4
+momo_722,20645098,4
+lovechul503710,20645098,5
+65391442,20645098,2
+Messi...,20645098,2
+52765377,20645098,5
+63214398,20645098,4
+49990451,20645098,-1
+icethan,20645098,5
+135574309,20645098,4
+3718647,20645098,3
+3852778,20645098,3
+48153886,20645098,3
+3518881,20645098,4
+66721136,20645098,5
+taotown,20645098,5
+50404371,20645098,4
+64480930,20645098,4
+88071858,20645098,4
+60593481,20645098,4
+42663693,20645098,5
+6186536,20645098,4
+99341305,20645098,3
+zmwing,20645098,5
+memorysongs,20645098,5
+Decadeff,20645098,4
+63567071,20645098,4
+onidalee,20645098,3
+yuan-zhang,20645098,2
+62134225,20645098,4
+131755087,20645098,4
+Baoberlln,20645098,4
+scbox,20645098,3
+wyheng,20645098,4
+nethex,20645098,4
+vivi-van,20645098,3
+67662597,20645098,4
+moruohan,20645098,3
+68027326,20645098,4
+61532165,20645098,4
+oasisercher,20645098,5
+136739686,20645098,4
+2890003,20645098,4
+68845209,20645098,4
+vanmic,20645098,3
+82082650,20645098,5
+92200521,20645098,3
+2919840,20645098,4
+113906275,20645098,4
+sunburntapril,20645098,-1
+48253364,20645098,3
+14903726,20645098,3
+122912528,20645098,1
+dsdg,20645098,4
+84044865,20645098,3
+christianwong,20645098,5
+67947664,20645098,5
+38355276,20645098,5
+duoduotrees,20645098,3
+79056942,20645098,5
+32109613,20645098,2
+43388977,20645098,-1
+119283335,20645098,5
+134057557,20645098,4
+fishwyj,20645098,5
+duck_l,20645098,4
+torreslee,20645098,5
+83215549,20645098,4
+83430475,20645098,1
+14042957,20645098,3
+zht90130,20645098,5
+jingmeng_xiahti,20645098,3
+Burn-21,20645098,4
+88054773,20645098,5
+57720008,20645098,5
+pennyfc21,20645098,5
+3880595,20645098,3
+Y665,20645098,4
+52403650,20645098,3
+3906179,20645098,1
+130680494,20645098,5
+omniwillpotent,20645098,4
+66805785,20645098,3
+superabigail,20645098,5
+sharon731,20645098,4
+135792492,20645098,-1
+aeris511,20645098,2
+papa1968,20645098,4
+70192323,20645098,5
+58034308,20645098,3
+cookiecola,20645098,4
+69251797,20645098,4
+3501606,20645098,4
+44836011,20645098,4
+64326764,20645098,2
+59147323,20645098,5
+meizhile,20645098,4
+45166308,20645098,5
+thevastworld,20645098,1
+53694003,20645098,-1
+43944690,20645098,4
+127345510,20645098,3
+87862615,20645098,4
+68992474,20645098,5
+2347351,20645098,2
+126849700,20645098,3
+133516099,20645098,3
+7801839,20645098,4
+zhurou,20645098,5
+132511009,20645098,3
+91031128,20645098,3
+49897445,20645098,4
+25499527,20645098,4
+juning,20645098,4
+lianlian0626,20645098,4
+61683576,20645098,4
+lovehyun,20645098,4
+63512552,20645098,5
+Joyce-D,20645098,3
+47182287,20645098,4
+enralphle,20645098,5
+66314549,20645098,3
+lsadalin,20645098,5
+fuloli,20645098,5
+50754510,20645098,2
+Mulholland,20645098,3
+goldjinzi,20645098,3
+52190902,20645098,5
+ichigogogo,20645098,5
+46874810,20645098,5
+murmer,20645098,4
+1570580,20645098,3
+2962402,20645098,4
+shirleysnape,20645098,4
+52698885,20645098,4
+2280118,20645098,1
+75060350,20645098,3
+65212468,20645098,5
+65212468,20645098,5
+81933633,20645098,3
+90127295,20645098,5
+62379184,20645098,4
+65563453,20645098,5
+tsf1234,20645098,2
+58038108,20645098,5
+EmmaChow,20645098,5
+64880714,20645098,3
+51468236,20645098,3
+63234929,20645098,5
+61304869,20645098,4
+134280300,20645098,2
+31530097,20645098,4
+1011858,20645098,4
+98640890,20645098,5
+pannnnnnnda,20645098,5
+59191856,20645098,-1
+53887589,20645098,4
+iki77,20645098,4
+136591647,20645098,5
+71507184,20645098,5
+1156429,20645098,5
+Kingnima,20645098,3
+85035991,20645098,4
+4107162,20645098,4
+49266731,20645098,3
+raymin,20645098,3
+OYJZ,20645098,3
+78710315,20645098,5
+132504414,20645098,4
+lucameow,20645098,5
+coffeejikou,20645098,4
+123506537,20645098,-1
+92177885,20645098,4
+124143047,20645098,4
+66171313,20645098,5
+58240623,20645098,4
+ktr,20645098,4
+91217632,20645098,5
+103344839,20645098,4
+68804843,20645098,4
+134561396,20645098,5
+62051375,20645098,5
+57425370,20645098,2
+90473435,20645098,3
+nanonino,20645098,5
+june_ever,20645098,5
+41964570,20645098,5
+55741662,20645098,5
+52606469,20645098,3
+57077284,20645098,4
+yikouerren,20645098,5
+lancelot-gao,20645098,5
+39292972,20645098,4
+Neoeyes,20645098,4
+48687037,20645098,3
+guawenzhaizhu,20645098,4
+48634684,20645098,4
+60374273,20645098,4
+53591021,20645098,-1
+geminige,20645098,4
+53633401,20645098,5
+2486222,20645098,3
+39077146,20645098,4
+57168306,20645098,5
+68457984,20645098,5
+LOTUS_NANA,20645098,4
+yixiujie,20645098,4
+60608617,20645098,-1
+71821737,20645098,5
+62160897,20645098,5
+136708207,20645098,5
+49932769,20645098,-1
+73762063,20645098,3
+chsi,20645098,-1
+shuilingyuesha,20645098,4
+swee42,20645098,-1
+60414758,20645098,5
+67579094,20645098,5
+67192113,20645098,4
+kaprilis,20645098,3
+1591677,20645098,5
+1811724,20645098,4
+shuiyichen,20645098,3
+3430040,20645098,-1
+75909716,20645098,5
+75166808,20645098,3
+2870355,20645098,5
+sniperfl,20645098,2
+74207601,20645098,4
+tumengying,20645098,4
+May-z,20645098,5
+WTYa,20645098,4
+woodwool,20645098,5
+58453204,20645098,5
+71697536,20645098,3
+115873815,20645098,4
+53958013,20645098,5
+miraclekylin,20645098,4
+66234722,20645098,4
+83571302,20645098,5
+87660455,20645098,5
+75455116,20645098,-1
+51745010,20645098,5
+chunfenghuayu23,20645098,5
+banzhan,20645098,5
+80027002,20645098,5
+56561314,20645098,3
+4160120,20645098,4
+59466056,20645098,4
+122210880,20645098,5
+3668071,20645098,3
+132045687,20645098,4
+53988247,20645098,4
+57465841,20645098,2
+3201359,20645098,4
+Candy_Can,20645098,4
+30713524,20645098,5
+sherry-he,20645098,3
+cleopatra927,20645098,5
+songhaibao,20645098,4
+94358582,20645098,5
+68580330,20645098,5
+54176828,20645098,3
+W18523342562,20645098,5
+Shane-SISU,20645098,4
+63118459,20645098,1
+5439991,20645098,5
+crazychenchen,20645098,3
+2030100,20645098,5
+62553096,20645098,5
+fengmengdi,20645098,5
+leileisunshine,20645098,3
+anyonenotfound,20645098,4
+75638886,20645098,1
+52887286,20645098,5
+53324248,20645098,3
+53711612,20645098,5
+minicatss,20645098,3
+74890087,20645098,4
+Linjingx,20645098,4
+67652079,20645098,4
+95402541,20645098,3
+132370483,20645098,5
+59529440,20645098,4
+3751886,20645098,4
+52530490,20645098,5
+76696081,20645098,4
+miemiemind,20645098,4
+129213976,20645098,4
+happysadop,20645098,5
+zhanye040218,20645098,3
+71421238,20645098,4
+38341224,20645098,3
+1963507,20645098,5
+101048498,20645098,5
+59281963,20645098,3
+xihuanshuzi,20645098,4
+60027696,20645098,2
+4280640,20645098,4
+68552407,20645098,3
+66521777,20645098,4
+83837319,20645098,5
+133533489,20645098,4
+62337711,20645098,3
+1831157,20645098,5
+57874487,20645098,2
+69739114,20645098,5
+48658567,20645098,4
+49982987,20645098,3
+mwa,20645098,4
+olbizia,20645098,5
+131592651,20645098,4
+suzyfine,20645098,3
+3435259,20645098,3
+linyiqing,20645098,4
+SKBIBBY,20645098,3
+44706331,20645098,4
+64075026,20645098,5
+2376689,20645098,-1
+63718614,20645098,5
+63464234,20645098,5
+131889498,20645098,4
+sofaspeak,20645098,3
+10552823,20645098,3
+80071306,20645098,4
+56470899,20645098,4
+90755706,20645098,5
+1378705,20645098,4
+mouselsb,20645098,4
+YakiraKw,20645098,4
+59063636,20645098,1
+58482756,20645098,5
+53291556,20645098,5
+1335533,20645098,4
+athousand,20645098,4
+why781,20645098,3
+54601280,20645098,5
+131854669,20645098,3
+69958249,20645098,5
+55021112,20645098,4
+132154442,20645098,5
+51377009,20645098,3
+yifeng2013,20645098,4
+79897503,20645098,5
+loveBJuncle,20645098,4
+44521682,20645098,5
+81787001,20645098,5
+ypnxcat,20645098,3
+43908954,20645098,5
+83411107,20645098,3
+69034550,20645098,1
+49090392,20645098,3
+54191212,20645098,4
+59013874,20645098,5
+58090719,20645098,3
+ivankazhang,20645098,-1
+68839218,20645098,5
+pausew,20645098,3
+67240733,20645098,3
+41866163,20645098,4
+lanjiaojiao,20645098,5
+70763042,20645098,4
+3254418,20645098,5
+jessie1989,20645098,4
+136626117,20645098,4
+34638576,20645098,3
+70720475,20645098,5
+tjvicwong,20645098,4
+kuihuatianyuan,20645098,5
+64493133,20645098,3
+121664748,20645098,3
+4159753,20645098,4
+27515686,20645098,5
+4457767,20645098,5
+sunnyisle,20645098,4
+11760447,20645098,4
+Anglezhang,20645098,5
+84268334,20645098,5
+134068331,20645098,5
+milkbook,20645098,4
+f_ckshane,20645098,3
+YP2013,20645098,4
+Innerplant,20645098,4
+135702418,20645098,3
+136675965,20645098,-1
+xiatan,20645098,4
+evgeni1955,20645098,3
+133188364,20645098,3
+59235428,20645098,5
+39945690,20645098,4
+48480667,20645098,3
+4833009,20645098,4
+daangel,20645098,4
+sueinjuly,20645098,4
+philosophier,20645098,4
+51651483,20645098,4
+M1racle,20645098,4
+115775129,20645098,5
+62930321,20645098,4
+68813789,20645098,5
+73958470,20645098,3
+hxsmile,20645098,5
+65647091,20645098,3
+50585223,20645098,4
+12528508,20645098,5
+75523218,20645098,4
+83760985,20645098,4
+51174120,20645098,5
+lovemapaandhuhu,20645098,4
+51893163,20645098,5
+17775259,20645098,3
+orchild0517,20645098,4
+43692949,20645098,4
+64920513,20645098,4
+39515803,20645098,4
+83313626,20645098,4
+xwjaney,20645098,4
+91541034,20645098,5
+119670372,20645098,5
+58160402,20645098,5
+66266382,20645098,5
+kyokoo,20645098,5
+75312600,20645098,3
+zoehuan,20645098,4
+62840293,20645098,5
+51582662,20645098,3
+jjjade,20645098,5
+46709909,20645098,2
+YourAva,20645098,5
+63528583,20645098,3
+Felicityluo,20645098,5
+47029300,20645098,4
+47195572,20645098,3
+ihaveafreeheart,20645098,3
+muse111,20645098,4
+dave_m,20645098,4
+wei1900,20645098,4
+xx218,20645098,4
+130934404,20645098,1
+lovesay,20645098,3
+88535863,20645098,4
+17407986,20645098,3
+120121483,20645098,5
+4050170,20645098,4
+1328599,20645098,5
+puzzlingfish,20645098,4
+80197452,20645098,4
+wangfei,20645098,4
+73008479,20645098,5
+80452059,20645098,3
+kikizhu,20645098,-1
+milk1210,20645098,3
+74022856,20645098,5
+3431765,20645098,-1
+cici_wtf13,20645098,5
+62743500,20645098,3
+62044722,20645098,4
+127504017,20645098,5
+135662191,20645098,4
+69101082,20645098,4
+66055788,20645098,3
+43440881,20645098,2
+yuntuo12,20645098,4
+56759438,20645098,3
+33328526,20645098,5
+35876351,20645098,5
+44257922,20645098,5
+70044778,20645098,5
+50932968,20645098,3
+zmwtf,20645098,4
+fannyone,20645098,4
+52514983,20645098,5
+Simonaxu,20645098,4
+aegeanguo,20645098,5
+8495827,20645098,3
+3400067,20645098,3
+65352630,20645098,2
+maoxiandashu,20645098,5
+94495606,20645098,4
+50416176,20645098,4
+THORNMAG,20645098,4
+44045639,20645098,4
+122858781,20645098,4
+liuyunxuan333,20645098,5
+twofatttttttt,20645098,5
+44272314,20645098,5
+44090096,20645098,5
+50369842,20645098,4
+maktubdestiny,20645098,5
+71955101,20645098,4
+58079597,20645098,5
+luolanmahua,20645098,4
+aime30,20645098,4
+125773849,20645098,4
+huxhu,20645098,2
+1958405,20645098,4
+57073619,20645098,1
+131704250,20645098,5
+51436199,20645098,4
+68635821,20645098,2
+Ashes-of-Roses,20645098,3
+65032980,20645098,3
+108128290,20645098,5
+50213452,20645098,4
+ruilixiurui,20645098,2
+curayukie,20645098,3
+38817965,20645098,1
+4199474,20645098,3
+2149977,20645098,5
+4657116,20645098,5
+yoursLilian,20645098,4
+53404477,20645098,3
+54061100,20645098,4
+ccaj,20645098,5
+SophieVV1130,20645098,5
+53917736,20645098,4
+49150210,20645098,4
+102624922,20645098,4
+3918663,20645098,5
+misslillian1993,20645098,4
+87869082,20645098,4
+130920695,20645098,3
+yelisi,20645098,3
+45298840,20645098,5
+40819535,20645098,4
+Jsmonica,20645098,4
+73213893,20645098,1
+48781941,20645098,5
+Pledge,20645098,4
+81344855,20645098,5
+43676115,20645098,5
+56059345,20645098,4
+73354082,20645098,1
+4766836,20645098,2
+121821498,20645098,4
+134257143,20645098,5
+suxiaobu,20645098,5
+63245865,20645098,-1
+48623915,20645098,5
+60741695,20645098,3
+A317,20645098,-1
+125961419,20645098,4
+82043488,20645098,2
+136661385,20645098,5
+67326475,20645098,5
+candy_maoshijia,20645098,5
+53036105,20645098,5
+umbrella722,20645098,3
+bblythechan,20645098,3
+aikeyinpluto,20645098,3
+57456072,20645098,5
+136340593,20645098,5
+83119154,20645098,4
+70193767,20645098,5
+46010081,20645098,4
+3318502,20645098,4
+78337328,20645098,3
+77403848,20645098,4
+128125720,20645098,5
+69295551,20645098,3
+snowman-clover,20645098,5
+combrain,20645098,4
+bpzhai,20645098,1
+11704802,20645098,5
+49091198,20645098,3
+136658734,20645098,4
+Suyan.,20645098,4
+Pallas_Athena,20645098,5
+48873102,20645098,4
+Hsummer,20645098,-1
+68708613,20645098,3
+carolzjw,20645098,4
+63156283,20645098,3
+32025786,20645098,4
+81378961,20645098,3
+3691770,20645098,5
+62208354,20645098,5
+2946363,20645098,4
+62208354,20645098,5
+2946363,20645098,4
+Psycho_L,20645098,4
+39357914,20645098,2
+60539303,20645098,3
+susie1991,20645098,5
+58922188,20645098,4
+76630020,20645098,5
+15343386,20645098,1
+2821330,20645098,1
+128453737,20645098,5
+74959611,20645098,4
+4065256,20645098,4
+3210031,20645098,3
+51960322,20645098,5
+68199229,20645098,5
+CarveforLive,20645098,4
+49747994,20645098,5
+50214253,20645098,5
+46958062,20645098,3
+heiyingtao,20645098,5
+132332103,20645098,5
+ScarlettCheung,20645098,3
+58618323,20645098,5
+102454533,20645098,4
+josephinexe,20645098,4
+136646299,20645098,4
+63531655,20645098,4
+gautama,20645098,5
+45073290,20645098,5
+52558781,20645098,-1
+lokolifestyle,20645098,4
+stories7,20645098,4
+51387494,20645098,5
+norns_13,20645098,5
+66652798,20645098,3
+58614276,20645098,3
+caixiaonong,20645098,5
+biubangbang,20645098,4
+sooyun,20645098,3
+ziyuzili911328,20645098,5
+4855435,20645098,3
+yuancoffee,20645098,4
+133107794,20645098,4
+119404591,20645098,4
+43692248,20645098,5
+48188874,20645098,5
+48545446,20645098,5
+die1021,20645098,5
+120956047,20645098,3
+53569508,20645098,4
+97105227,20645098,4
+46682792,20645098,3
+136639483,20645098,5
+fishxsherry,20645098,3
+Hnanmao,20645098,3
+redou,20645098,1
+63183447,20645098,4
+41805226,20645098,4
+63218646,20645098,4
+3607575,20645098,-1
+136650587,20645098,4
+nanarun,20645098,3
+129503817,20645098,3
+videe,20645098,5
+62687217,20645098,5
+133281735,20645098,5
+121557775,20645098,5
+70615998,20645098,2
+101419547,20645098,4
+54665714,20645098,5
+51016662,20645098,3
+135290961,20645098,5
+68342567,20645098,5
+33493653,20645098,5
+114270317,20645098,5
+70703313,20645098,1
+133913550,20645098,5
+54298700,20645098,4
+54871934,20645098,2
+83629075,20645098,1
+46371660,20645098,5
+jogy,20645098,4
+2144442,20645098,5
+90706131,20645098,4
+MargretShui,20645098,4
+4510903,20645098,4
+66274614,20645098,4
+cassiethere,20645098,4
+58280362,20645098,5
+64450704,20645098,4
+49191008,20645098,3
+aikoyaya,20645098,4
+127758982,20645098,4
+136646302,20645098,1
+50344552,20645098,3
+51798478,20645098,5
+67815505,20645098,4
+53319331,20645098,3
+65926978,20645098,3
+noheeyeon,20645098,5
+iris29,20645098,5
+49120697,20645098,5
+fly_to_heaven,20645098,5
+53724452,20645098,4
+48864123,20645098,3
+SiMinLi,20645098,4
+47738276,20645098,5
+littlesweets,20645098,4
+47052897,20645098,5
+37513501,20645098,4
+Thangka,20645098,3
+131345573,20645098,4
+stonelcc,20645098,4
+lvy823823,20645098,5
+96152194,20645098,4
+49702943,20645098,3
+27432251,20645098,4
+1116703,20645098,5
+58544664,20645098,4
+mavisa,20645098,4
+beiwei38du,20645098,3
+kongyan15,20645098,5
+83473411,20645098,4
+huoguowohuo,20645098,5
+xiaoxiao9061,20645098,3
+123099974,20645098,5
+4317618,20645098,5
+55484274,20645098,2
+46365473,20645098,5
+55819414,20645098,5
+hyukra,20645098,3
+52698928,20645098,5
+47058104,20645098,4
+52275129,20645098,5
+54410446,20645098,3
+v-end,20645098,4
+49190043,20645098,5
+66547121,20645098,4
+Elainezhang,20645098,3
+41758761,20645098,5
+4214943,20645098,4
+60317674,20645098,3
+wuhanzi_0118,20645098,2
+dongguac10,20645098,4
+candyxiaomei,20645098,5
+51609142,20645098,3
+58916644,20645098,5
+55446096,20645098,5
+violet412,20645098,4
+ivyleague,20645098,1
+81051190,20645098,5
+127058988,20645098,4
+52173503,20645098,5
+47587289,20645098,5
+119330514,20645098,3
+77098637,20645098,5
+parisyu,20645098,4
+121221805,20645098,3
+72291192,20645098,3
+2194654,20645098,3
+cherrysu711,20645098,5
+zhaoyonghui1026,20645098,3
+126983974,20645098,5
+3203530,20645098,5
+68993451,20645098,3
+37966759,20645098,4
+inmo,20645098,5
+sunbird47,20645098,3
+48760095,20645098,-1
+91114146,20645098,4
+63212715,20645098,4
+xxqxz,20645098,5
+93289481,20645098,4
+60055945,20645098,5
+3869328,20645098,2
+nineno,20645098,2
+62703414,20645098,3
+candiceevans,20645098,2
+131004052,20645098,3
+90543489,20645098,5
+wgj4,20645098,4
+35297714,20645098,5
+4231432,20645098,3
+70880759,20645098,5
+61023044,20645098,4
+55771326,20645098,5
+51668310,20645098,5
+gov,20645098,1
+69066592,20645098,4
+3513714,20645098,4
+65296951,20645098,4
+49246032,20645098,5
+44523449,20645098,-1
+4010903,20645098,5
+xiangkayi,20645098,3
+50422639,20645098,3
+104131739,20645098,4
+78251252,20645098,4
+3305632,20645098,3
+133044244,20645098,5
+osmanthus1989,20645098,3
+34908196,20645098,4
+3820435,20645098,4
+zjh005123,20645098,1
+asaka0102,20645098,4
+4811029,20645098,3
+53721569,20645098,5
+50926271,20645098,4
+67605510,20645098,3
+126346458,20645098,5
+yinyiner,20645098,4
+133507859,20645098,4
+52112819,20645098,4
+lovely-Sissi,20645098,4
+1493144,20645098,5
+58518153,20645098,4
+49308671,20645098,4
+karenin,20645098,4
+smilydc,20645098,5
+76267184,20645098,2
+arashimaori,20645098,1
+45681506,20645098,2
+14408136,20645098,5
+tuzibojue,20645098,5
+sesesmovie,20645098,4
+Erinalin,20645098,3
+fengwuyaoye,20645098,5
+aaru,20645098,4
+48689734,20645098,5
+duanxiu,20645098,3
+67484899,20645098,5
+3025498,20645098,1
+68441510,20645098,5
+yizuky,20645098,3
+70886063,20645098,4
+morning.garden,20645098,4
+wugaoxiang,20645098,4
+anhtyilyjz,20645098,4
+demondeng,20645098,4
+4640701,20645098,5
+43359010,20645098,5
+viola-x,20645098,4
+59159384,20645098,5
+ichigotama,20645098,4
+42912613,20645098,4
+jofanie,20645098,4
+nnnnore391,20645098,4
+88676029,20645098,4
+44376205,20645098,4
+fabrique1987,20645098,3
+posuoluo,20645098,5
+4628706,20645098,5
+61350532,20645098,5
+47117931,20645098,4
+40487079,20645098,4
+selvia,20645098,3
+joyestin,20645098,5
+63150711,20645098,4
+zeng_yi,20645098,5
+3534639,20645098,2
+4116226,20645098,4
+76096886,20645098,4
+62319312,20645098,4
+kfc2005,20645098,3
+alan_fanfan,20645098,4
+43212336,20645098,5
+lidianxi1990,20645098,3
+132572356,20645098,4
+neverfindme,20645098,5
+alittlewater,20645098,4
+orry-lee,20645098,4
+STMscanner,20645098,3
+46028086,20645098,4
+lindsaymao,20645098,3
+L2X12221120,20645098,5
+miku,20645098,2
+55600271,20645098,4
+64255744,20645098,5
+shxhkun,20645098,4
+skysxy,20645098,5
+2844320,20645098,4
+4651702,20645098,4
+68962934,20645098,5
+ifesherry,20645098,5
+danaaa,20645098,3
+Chusy,20645098,5
+58983340,20645098,3
+dingdaiwei,20645098,5
+46053193,20645098,3
+yaya2837,20645098,4
+48976276,20645098,4
+39977631,20645098,3
+mrschild,20645098,5
+3623374,20645098,5
+135192939,20645098,4
+2402438,20645098,4
+98658457,20645098,5
+twoerer,20645098,4
+121834984,20645098,4
+49367011,20645098,3
+27710094,20645098,5
+132515029,20645098,-1
+tanyu,20645098,5
+leaflee,20645098,4
+127988524,20645098,5
+4712087,20645098,4
+43986418,20645098,3
+lymh,20645098,5
+xudifang13,20645098,4
+dhrgxf,20645098,5
+54359368,20645098,3
+shjolin,20645098,3
+62881548,20645098,2
+119292656,20645098,5
+62446851,20645098,4
+80933545,20645098,4
+3614806,20645098,2
+57079509,20645098,4
+summer223,20645098,4
+31316457,20645098,4
+54713678,20645098,3
+24219882,20645098,5
+28677254,20645098,3
+2457714,20645098,3
+tomyiyun,20645098,4
+76666278,20645098,5
+101625344,20645098,4
+48217627,20645098,5
+hujunyao,20645098,2
+Clytze.vs.rose,20645098,3
+56886614,20645098,3
+l-snow,20645098,4
+63603619,20645098,5
+79506720,20645098,5
+fuckinboy,20645098,3
+127508395,20645098,3
+49022865,20645098,5
+lovetree521,20645098,5
+127014101,20645098,5
+sofafish,20645098,2
+50401772,20645098,5
+hpjoe,20645098,3
+69068594,20645098,4
+89410418,20645098,3
+sara39aiba,20645098,4
+50928470,20645098,5
+Stilll,20645098,4
+joyxu,20645098,-1
+1196601,20645098,2
+55386802,20645098,5
+92409264,20645098,5
+enjoyingchou,20645098,5
+thelovebones,20645098,5
+64134056,20645098,3
+xionghaizhi,20645098,4
+bamboonie,20645098,5
+46346813,20645098,4
+Ech000000000000,20645098,3
+jimmyjimmyjimmy,20645098,5
+56677474,20645098,5
+clby,20645098,4
+9360035,20645098,4
+57970979,20645098,1
+XC911,20645098,4
+63196895,20645098,4
+89549400,20645098,5
+22456771,20645098,5
+125373422,20645098,3
+sunny11fish,20645098,4
+IamFiona,20645098,3
+andyzhao,20645098,4
+cara-roamer,20645098,4
+1624071,20645098,3
+3369417,20645098,4
+70574144,20645098,5
+51238374,20645098,4
+43698242,20645098,3
+38558253,20645098,-1
+fromelf,20645098,4
+Charlotte.Q,20645098,3
+74853954,20645098,4
+135502800,20645098,3
+RssChen,20645098,5
+97982238,20645098,4
+60198871,20645098,5
+89341086,20645098,2
+2124043,20645098,1
+Torence,20645098,5
+47373224,20645098,3
+70688998,20645098,4
+kysen,20645098,5
+34979549,20645098,5
+50137334,20645098,4
+45626813,20645098,1
+greatblue,20645098,4
+36256022,20645098,4
+35937463,20645098,4
+chidaoshu,20645098,4
+bu2zz,20645098,5
+40551404,20645098,5
+65550886,20645098,4
+54780669,20645098,5
+bb609,20645098,5
+42266845,20645098,5
+duanhuangye,20645098,5
+jayeryy,20645098,4
+47666300,20645098,5
+42402561,20645098,5
+41986847,20645098,5
+therecomy,20645098,5
+doloress,20645098,3
+63167875,20645098,3
+70464788,20645098,4
+51918172,20645098,4
+128075536,20645098,5
+87726379,20645098,4
+baoxiaobai920,20645098,2
+65697187,20645098,4
+Nnlee,20645098,1
+122421599,20645098,4
+annline0,20645098,5
+4024346,20645098,3
+58168213,20645098,4
+60188018,20645098,-1
+60854908,20645098,4
+80319833,20645098,4
+capricornprince,20645098,3
+yxt1985,20645098,4
+sheilawx,20645098,5
+cutiegabrielle,20645098,4
+Isabella_Meow,20645098,5
+4871911,20645098,3
+43563586,20645098,5
+romamor,20645098,5
+71031264,20645098,2
+57336813,20645098,4
+sauking,20645098,5
+21145292,20645098,3
+52710825,20645098,5
+25564955,20645098,4
+51865106,20645098,3
+64334718,20645098,4
+71277503,20645098,4
+elwa.wu,20645098,4
+91583621,20645098,4
+68189537,20645098,5
+tosummer,20645098,3
+yihengxi,20645098,4
+132690366,20645098,4
+125313881,20645098,5
+47212439,20645098,4
+58822324,20645098,3
+cyan_xi,20645098,5
+52021990,20645098,5
+121904865,20645098,1
+shengyiw,20645098,5
+74827424,20645098,2
+44559687,20645098,5
+xianuannian,20645098,5
+56209480,20645098,3
+126514473,20645098,5
+53022387,20645098,5
+75246716,20645098,4
+60396256,20645098,3
+olivechenyy,20645098,5
+inthemelody,20645098,5
+2465284,20645098,5
+45841206,20645098,2
+48463405,20645098,4
+alanerer,20645098,4
+73696070,20645098,5
+78182286,20645098,3
+yuyang1990720,20645098,5
+duckdan,20645098,4
+59471293,20645098,5
+121807969,20645098,3
+nalanxiang,20645098,5
+45581232,20645098,5
+glacierzbc,20645098,3
+nining,20645098,5
+55961606,20645098,4
+xiaosuii,20645098,3
+38515582,20645098,4
+HeroineDaode,20645098,4
+63835684,20645098,3
+119171762,20645098,4
+Joongsim952,20645098,5
+131361061,20645098,5
+68027826,20645098,5
+fansaty,20645098,1
+3950589,20645098,2
+94260024,20645098,-1
+69150679,20645098,3
+penguin-k,20645098,4
+127319320,20645098,5
+dangdangSu,20645098,4
+2175454,20645098,3
+47598972,20645098,5
+xixihahaxiao,20645098,3
+seeyou--,20645098,4
+50466013,20645098,5
+82935134,20645098,4
+51065965,20645098,4
+59929388,20645098,4
+93868149,20645098,2
+93242497,20645098,4
+34664148,20645098,4
+3689113,20645098,-1
+timbowen,20645098,5
+77029353,20645098,4
+X-forest,20645098,3
+raymondray,20645098,5
+Jorrianna.,20645098,5
+35841878,20645098,4
+3884732,20645098,3
+zengzhezhi,20645098,5
+4464397,20645098,4
+dl0514,20645098,4
+cheer-yan,20645098,4
+70626173,20645098,5
+1089032,20645098,4
+1612598,20645098,5
+orange1027,20645098,3
+37655368,20645098,4
+50175377,20645098,2
+yellowbook,20645098,3
+Schweinsterger,20645098,-1
+99773030,20645098,3
+nakuchiyo,20645098,5
+90698517,20645098,5
+deartintin,20645098,4
+xiaozhumomo,20645098,4
+Onlyhl312,20645098,3
+shishuyue,20645098,5
+rose886,20645098,1
+sarahzk,20645098,4
+baleyang,20645098,4
+61813558,20645098,4
+41383794,20645098,3
+hanchukui,20645098,1
+Tqzm,20645098,3
+119330188,20645098,4
+63894485,20645098,5
+39168659,20645098,4
+103727305,20645098,4
+2748006,20645098,5
+103617417,20645098,3
+64276652,20645098,5
+52733446,20645098,3
+51911229,20645098,4
+yinchuanfu,20645098,5
+Xunna,20645098,2
+15766239,20645098,4
+2325689,20645098,5
+62917556,20645098,5
+94391686,20645098,5
+adamhu,20645098,5
+121650070,20645098,4
+zhandill,20645098,5
+34968891,20645098,4
+104003575,20645098,3
+cjc112,20645098,3
+kangjunhao,20645098,-1
+46012600,20645098,5
+60880769,20645098,1
+120984787,20645098,5
+3649520,20645098,4
+125784671,20645098,4
+her10ve,20645098,3
+syamazing,20645098,3
+61599793,20645098,2
+62708823,20645098,3
+60370594,20645098,4
+zhuyuejun,20645098,4
+tiansha,20645098,-1
+58658225,20645098,5
+lilipop,20645098,2
+122745696,20645098,3
+135580696,20645098,4
+jiang66,20645098,5
+64643929,20645098,4
+56526733,20645098,5
+46615871,20645098,3
+45155872,20645098,3
+59558511,20645098,1
+63220459,20645098,4
+50981156,20645098,5
+4272147,20645098,5
+onotou,20645098,3
+53825805,20645098,3
+2725757,20645098,5
+laurayyw,20645098,2
+3178620,20645098,3
+shinsukeholic,20645098,3
+132640037,20645098,4
+2214906,20645098,4
+rikkiwan,20645098,3
+103694448,20645098,5
+cloris32,20645098,4
+cloris32,20645098,4
+44465848,20645098,4
+52835573,20645098,5
+2726151,20645098,3
+60461731,20645098,5
+DouDoucomehere,20645098,5
+amrita,20645098,4
+4767815,20645098,3
+53134415,20645098,4
+64633341,20645098,5
+3801810,20645098,3
+51495138,20645098,5
+xxxcici123,20645098,-1
+bomg,20645098,5
+4311473,20645098,5
+128044981,20645098,5
+yakiang,20645098,4
+bunny636,20645098,2
+125038920,20645098,3
+yzzlovezj,20645098,4
+113171403,20645098,5
+iae,20645098,4
+Alberta77,20645098,4
+78906742,20645098,3
+63843063,20645098,3
+kidsinlove,20645098,3
+52823077,20645098,4
+2462947,20645098,4
+53501877,20645098,3
+cl523,20645098,3
+91649977,20645098,5
+calvingaga,20645098,5
+dynsky2011,20645098,4
+129582003,20645098,5
+izaijin,20645098,2
+56717775,20645098,4
+62594842,20645098,5
+kkkkaylee,20645098,5
+xiao8981,20645098,2
+102931592,20645098,5
+135315015,20645098,5
+58099043,20645098,2
+5969544,20645098,3
+youngjunxian,20645098,2
+lotusworld,20645098,5
+79669816,20645098,4
+50841586,20645098,4
+corgi,20645098,-1
+134034550,20645098,5
+4396219,20645098,-1
+bellayy,20645098,5
+47414610,20645098,3
+49733499,20645098,3
+4279428,20645098,2
+33486862,20645098,2
+lenglen,20645098,4
+never_but_ever,20645098,3
+32475683,20645098,4
+59993815,20645098,5
+45308089,20645098,3
+132039953,20645098,5
+132007086,20645098,5
+27641257,20645098,4
+littlevivi,20645098,3
+65086127,20645098,4
+120038071,20645098,4
+josiekiu,20645098,4
+54039981,20645098,5
+36302037,20645098,3
+57408340,20645098,-1
+yy0102,20645098,4
+50247460,20645098,3
+57941736,20645098,5
+72521146,20645098,4
+im1dao,20645098,5
+lurasham,20645098,4
+4800840,20645098,3
+chui13,20645098,3
+65018953,20645098,5
+ashli,20645098,4
+aesthetic,20645098,4
+89759439,20645098,4
+natalieee,20645098,4
+afantys,20645098,2
+76273078,20645098,4
+lkytz,20645098,4
+65609428,20645098,5
+123869999,20645098,5
+102718430,20645098,4
+1553175,20645098,3
+68934155,20645098,5
+39628553,20645098,5
+13736412,20645098,1
+loveandfreedom,20645098,5
+45541495,20645098,4
+maggiexiao,20645098,2
+134574897,20645098,5
+ml0684727,20645098,5
+129812391,20645098,5
+49191117,20645098,4
+57274028,20645098,5
+xiaomo828,20645098,3
+1295507,20645098,4
+44938761,20645098,4
+31849844,20645098,3
+37280239,20645098,5
+100445422,20645098,3
+edgeyeung,20645098,5
+zhaix0221,20645098,3
+47302606,20645098,5
+sewer-d,20645098,5
+122839137,20645098,4
+liufangni,20645098,3
+babyili,20645098,3
+Miss.Hyacinth,20645098,3
+75950224,20645098,4
+1035359,20645098,4
+Alex.Qiu,20645098,5
+16220178,20645098,4
+kayomii,20645098,3
+echofrancis,20645098,3
+74197950,20645098,5
+84524866,20645098,5
+80977670,20645098,3
+80683157,20645098,3
+70467086,20645098,4
+102006712,20645098,3
+13873761,20645098,4
+43122175,20645098,2
+116248904,20645098,5
+BALENO,20645098,3
+100660968,20645098,3
+63785506,20645098,3
+62916813,20645098,4
+chimneyland,20645098,4
+Psychoanalysis,20645098,5
+owenyao,20645098,5
+snowbusy,20645098,-1
+kiwiaide,20645098,3
+besom,20645098,4
+92196680,20645098,5
+52890891,20645098,5
+43308521,20645098,4
+63359487,20645098,3
+30258501,20645098,3
+54106582,20645098,5
+kkk920,20645098,3
+121355707,20645098,2
+74446940,20645098,3
+63280998,20645098,3
+53506476,20645098,4
+79541623,20645098,5
+babyneiei,20645098,5
+2370344,20645098,5
+minoru,20645098,4
+69420876,20645098,5
+Echo.Wang,20645098,4
+Davy.L,20645098,5
+2610938,20645098,4
+75074135,20645098,2
+47748422,20645098,5
+66993627,20645098,4
+66475895,20645098,4
+52621027,20645098,5
+127632434,20645098,4
+luffy828,20645098,4
+76933799,20645098,4
+jimmya,20645098,3
+4577190,20645098,4
+zhenvstian,20645098,5
+1098195,20645098,4
+48164029,20645098,3
+84549163,20645098,5
+Ana1221,20645098,4
+3770234,20645098,5
+42678712,20645098,3
+67962053,20645098,5
+43887086,20645098,4
+58451948,20645098,4
+bourne_su,20645098,5
+bourne_su,20645098,5
+dd1001,20645098,3
+67694516,20645098,5
+zzzzzmc,20645098,4
+56192501,20645098,5
+54139661,20645098,5
+55629251,20645098,5
+kuangren79,20645098,3
+52926206,20645098,-1
+37810756,20645098,5
+66827780,20645098,3
+cookiesssss,20645098,5
+80607844,20645098,5
+Mrrrrrrrrrjoker,20645098,1
+3463686,20645098,4
+swalt,20645098,-1
+121681565,20645098,5
+49387796,20645098,5
+lydia8697,20645098,5
+lc1002,20645098,5
+98249073,20645098,5
+sixysix,20645098,3
+82990219,20645098,4
+illiteracy,20645098,3
+110488256,20645098,4
+4617798,20645098,5
+suzon_deedee,20645098,3
+56755305,20645098,1
+rusteel,20645098,4
+Henry-Jean,20645098,-1
+ritasun,20645098,4
+42292957,20645098,3
+130692853,20645098,5
+wasabigreen,20645098,3
+Exaiy,20645098,3
+52790172,20645098,2
+131175291,20645098,5
+rianna,20645098,4
+nevertown,20645098,2
+46510096,20645098,3
+44353069,20645098,4
+58067735,20645098,5
+ananne,20645098,5
+51854429,20645098,4
+129283684,20645098,4
+26486155,20645098,3
+127900943,20645098,4
+taochongshaozhu,20645098,3
+82498439,20645098,3
+41651378,20645098,5
+87578435,20645098,3
+shutantan,20645098,4
+45014171,20645098,3
+132998627,20645098,5
+gigiloveblue,20645098,3
+BikaQiu,20645098,3
+46400190,20645098,4
+moquin,20645098,4
+sfm,20645098,3
+36412439,20645098,5
+imcherrie,20645098,5
+48048936,20645098,1
+50988051,20645098,5
+Vicky_Jiang,20645098,3
+Hello-Momoko,20645098,5
+52627644,20645098,4
+remi,20645098,4
+51449484,20645098,4
+jasmine0821,20645098,3
+2214938,20645098,5
+66699250,20645098,3
+zhugl,20645098,3
+3914860,20645098,4
+51186771,20645098,2
+zengjinse,20645098,5
+8097574,20645098,5
+sunnybath,20645098,4
+eertdik,20645098,5
+33963583,20645098,5
+127932340,20645098,3
+48095362,20645098,2
+71086095,20645098,4
+81860027,20645098,2
+96468687,20645098,5
+chenyaya,20645098,5
+49467804,20645098,5
+nolongerunicorn,20645098,4
+noisH,20645098,4
+58464911,20645098,4
+59319272,20645098,3
+ericdo,20645098,5
+xiaojiaheng,20645098,4
+115741082,20645098,5
+69215741,20645098,4
+113791333,20645098,5
+44141060,20645098,4
+51229713,20645098,4
+3936069,20645098,4
+66240328,20645098,3
+89308667,20645098,5
+zhangziyi,20645098,5
+129214543,20645098,4
+EvenUp,20645098,4
+xin0725,20645098,4
+57407135,20645098,5
+51777314,20645098,5
+106916966,20645098,4
+43360069,20645098,4
+65098968,20645098,4
+107225731,20645098,4
+54780827,20645098,5
+38191056,20645098,5
+2756995,20645098,5
+1236656,20645098,4
+61754132,20645098,5
+3717792,20645098,5
+59311720,20645098,4
+tilovefa,20645098,5
+71519677,20645098,5
+gardeniasky,20645098,4
+88692035,20645098,4
+rocker0313,20645098,5
+46290027,20645098,3
+jesuispomme,20645098,3
+anxin817,20645098,4
+87663658,20645098,3
+74337683,20645098,5
+126818106,20645098,5
+136577011,20645098,5
+128443021,20645098,5
+58464738,20645098,3
+54082963,20645098,4
+79399657,20645098,5
+52428391,20645098,4
+BrownieSin,20645098,3
+cassiecici,20645098,5
+43728521,20645098,4
+59244982,20645098,3
+63231885,20645098,5
+94583369,20645098,4
+104396401,20645098,4
+ziningcanyue,20645098,5
+3639221,20645098,3
+57160155,20645098,3
+45851335,20645098,5
+115819915,20645098,4
+61651911,20645098,5
+wen_Schwartz,20645098,4
+90697037,20645098,3
+132326708,20645098,5
+77334635,20645098,5
+eghy20380617,20645098,3
+122552772,20645098,5
+1475172,20645098,3
+92897764,20645098,4
+JaneCooper,20645098,5
+67711689,20645098,4
+lazyrachel,20645098,5
+113986971,20645098,4
+119877742,20645098,5
+yuan425,20645098,5
+52334416,20645098,4
+Comel.Dyx,20645098,4
+45903624,20645098,4
+gdhdun,20645098,4
+hw4life,20645098,5
+3601446,20645098,3
+134269225,20645098,2
+136102009,20645098,1
+58511967,20645098,5
+4109418,20645098,4
+VicS,20645098,5
+Lf1387,20645098,5
+ssqian,20645098,3
+92456075,20645098,3
+absdee,20645098,3
+78518168,20645098,5
+52074048,20645098,5
+miti32,20645098,5
+touch1986summer,20645098,5
+54215384,20645098,5
+aoaoaoaoaoaoao,20645098,3
+JomiNeverDies,20645098,5
+88025971,20645098,5
+49339349,20645098,3
+giliani,20645098,4
+robrob,20645098,3
+120606552,20645098,5
+80526466,20645098,4
+126816085,20645098,3
+kite.runner,20645098,-1
+122529370,20645098,4
+brucetown,20645098,4
+AprilHo,20645098,5
+51261711,20645098,2
+69180632,20645098,5
+51040110,20645098,5
+guierzidegandie,20645098,5
+verain,20645098,5
+yolanda_w,20645098,4
+40339894,20645098,4
+Amelieyou,20645098,3
+57069305,20645098,2
+2770592,20645098,5
+farawayfrom_u,20645098,4
+aoneatwo,20645098,-1
+iamliving,20645098,5
+2894410,20645098,5
+H897120417,20645098,5
+1945650,20645098,3
+yousuosi77,20645098,4
+45511772,20645098,3
+rahrah,20645098,3
+2774936,20645098,5
+51814592,20645098,4
+xkiiller,20645098,5
+103305507,20645098,5
+3997989,20645098,5
+124531659,20645098,3
+75407043,20645098,5
+snapeloveyou,20645098,-1
+1038289,20645098,3
+129381009,20645098,5
+60889084,20645098,4
+EchoofFei,20645098,4
+3350852,20645098,3
+zhanmingzhang,20645098,5
+42248589,20645098,5
+79899831,20645098,3
+88272889,20645098,5
+57565686,20645098,3
+28181434,20645098,5
+52260153,20645098,5
+71228713,20645098,4
+124098783,20645098,5
+33043177,20645098,3
+paranoid...,20645098,4
+50807913,20645098,3
+slavica,20645098,5
+surmoon,20645098,4
+125583755,20645098,4
+anyuancat,20645098,5
+3694442,20645098,4
+1769463,20645098,5
+128163061,20645098,5
+50393259,20645098,2
+supernanreturns,20645098,3
+maggietat,20645098,4
+angelcheng728,20645098,4
+76290312,20645098,5
+zjnsas,20645098,4
+justleeky,20645098,5
+2265138,20645098,5
+2883655,20645098,4
+72274732,20645098,3
+kiki204629,20645098,4
+2248587,20645098,4
+92372717,20645098,2
+75602395,20645098,3
+3375977,20645098,3
+tomatoANDpotato,20645098,5
+53497780,20645098,5
+66834030,20645098,5
+57266286,20645098,3
+hon,20645098,5
+47226574,20645098,5
+2792954,20645098,4
+82564466,20645098,4
+moxueyun,20645098,4
+91505474,20645098,5
+wjiandan,20645098,4
+byw1204,20645098,5
+75739095,20645098,1
+39891513,20645098,5
+neisha,20645098,5
+fatfatdog,20645098,5
+grandmama,20645098,5
+snowmeg,20645098,5
+ShiSanaibao,20645098,5
+120269206,20645098,5
+63310083,20645098,4
+YYweiwancheng,20645098,4
+35902921,20645098,4
+heenim-wait,20645098,4
+shingle,20645098,4
+74742103,20645098,5
+49255582,20645098,4
+103352684,20645098,5
+zhouruopei,20645098,4
+bikibiki,20645098,3
+2010008,20645098,3
+1974706,20645098,5
+37190150,20645098,5
+64821728,20645098,3
+57896997,20645098,5
+26748709,20645098,4
+wangxu200,20645098,4
+bzys,20645098,4
+82588845,20645098,4
+stephanie7766,20645098,3
+51454938,20645098,5
+reave,20645098,4
+136525255,20645098,5
+snowmasaki,20645098,4
+20807282,20645098,3
+60071743,20645098,3
+40735647,20645098,4
+Lira_13,20645098,3
+3981138,20645098,5
+55656968,20645098,5
+65734088,20645098,4
+rainzee,20645098,4
+42465194,20645098,4
+119042456,20645098,5
+99863115,20645098,4
+48555554,20645098,3
+66437241,20645098,5
+87652766,20645098,4
+49854958,20645098,3
+gb333,20645098,4
+73492237,20645098,1
+131749198,20645098,3
+waka7,20645098,4
+75444584,20645098,4
+114434662,20645098,5
+brightwsx,20645098,5
+6200492,20645098,5
+76860234,20645098,5
+63383390,20645098,4
+60592214,20645098,5
+69044224,20645098,4
+79893626,20645098,4
+50198419,20645098,3
+67454148,20645098,3
+41444054,20645098,5
+89909651,20645098,4
+yaoyiying,20645098,5
+46163946,20645098,4
+supitia,20645098,5
+22839446,20645098,3
+70290609,20645098,-1
+135030144,20645098,5
+58710906,20645098,3
+summerlove808,20645098,5
+71663707,20645098,4
+57361545,20645098,3
+peachgardn,20645098,5
+53896477,20645098,3
+greatbear819,20645098,4
+lingtse,20645098,4
+84930768,20645098,4
+131726078,20645098,3
+67244932,20645098,3
+zeal_she,20645098,5
+yeahgreen,20645098,5
+81152446,20645098,3
+61313201,20645098,3
+41065958,20645098,4
+JesusSAM,20645098,4
+63679603,20645098,1
+129149711,20645098,4
+43842293,20645098,5
+42306867,20645098,5
+newfm,20645098,4
+58490597,20645098,3
+124660062,20645098,5
+austing,20645098,5
+48542740,20645098,3
+61429044,20645098,2
+quaner1126,20645098,-1
+52618432,20645098,5
+lyabu,20645098,4
+3573746,20645098,5
+62018532,20645098,4
+2667767,20645098,4
+KarenC12,20645098,4
+48816803,20645098,3
+123179800,20645098,5
+60073105,20645098,5
+34417366,20645098,4
+34417366,20645098,4
+104592207,20645098,3
+82320533,20645098,4
+15182824,20645098,5
+2980674,20645098,4
+ismm,20645098,-1
+72385276,20645098,5
+63877279,20645098,4
+AnchorS,20645098,5
+rechyo,20645098,4
+liyajing1987,20645098,5
+C-Plus,20645098,3
+3340994,20645098,5
+Emily723,20645098,5
+MAOXIAOCHENG,20645098,4
+3568947,20645098,5
+mlzizi,20645098,4
+zoic,20645098,2
+54265487,20645098,4
+62582532,20645098,4
+46936186,20645098,3
+Irma26,20645098,3
+gary-7,20645098,5
+51786128,20645098,5
+130404781,20645098,3
+57063027,20645098,4
+chajumo,20645098,5
+121002348,20645098,4
+57983580,20645098,5
+76234777,20645098,3
+momojenny,20645098,3
+1870548,20645098,3
+starsslicence,20645098,4
+41127479,20645098,5
+59163051,20645098,5
+brave__,20645098,5
+citytan,20645098,5
+120199628,20645098,3
+Taurusess,20645098,4
+54605196,20645098,3
+122616416,20645098,4
+facetosky,20645098,4
+57977721,20645098,2
+bulajun,20645098,5
+41944895,20645098,3
+82835911,20645098,4
+63399175,20645098,5
+18747582,20645098,4
+3059063,20645098,5
+80671336,20645098,4
+42799702,20645098,2
+36622063,20645098,5
+ashleyzla,20645098,5
+62871612,20645098,4
+67729273,20645098,3
+frankzhang,20645098,5
+81353237,20645098,5
+58709171,20645098,5
+m619546766,20645098,3
+4067480,20645098,5
+caojian120,20645098,4
+65688183,20645098,3
+133909162,20645098,3
+71757474,20645098,1
+122024394,20645098,5
+134869661,20645098,5
+120050114,20645098,5
+121270733,20645098,4
+dairytea,20645098,4
+35780501,20645098,4
+42678961,20645098,3
+66844504,20645098,3
+96658819,20645098,4
+131484513,20645098,5
+127489630,20645098,4
+angel-A,20645098,4
+52763172,20645098,5
+lychjf,20645098,4
+50797855,20645098,5
+95026029,20645098,2
+Clara0916,20645098,5
+yunknap,20645098,3
+39105874,20645098,4
+64110823,20645098,5
+shystar,20645098,5
+onemushroom,20645098,2
+siggiruru,20645098,4
+54642925,20645098,3
+51771885,20645098,1
+itms,20645098,5
+tongxiaonian,20645098,4
+InTheShadowOfLo,20645098,4
+yyt0105,20645098,3
+echolee314,20645098,3
+125203567,20645098,5
+62467035,20645098,5
+133861190,20645098,4
+billhome,20645098,3
+135274296,20645098,4
+cloudyeast,20645098,4
+clever528,20645098,4
+yutooooooo,20645098,5
+66841667,20645098,5
+53176363,20645098,4
+47215662,20645098,5
+36030831,20645098,5
+J.727,20645098,5
+43568390,20645098,4
+87689631,20645098,3
+80715685,20645098,5
+weiLwei,20645098,5
+53316547,20645098,2
+halfrice1984,20645098,3
+136555362,20645098,4
+133551897,20645098,3
+2190982,20645098,3
+71814375,20645098,5
+49226452,20645098,4
+lcnverland,20645098,3
+Erinnerung,20645098,4
+40141522,20645098,4
+Tomi-Enn,20645098,4
+55488825,20645098,4
+manjia12,20645098,4
+weirdoToC,20645098,4
+yanyan813824,20645098,4
+42775906,20645098,4
+131798311,20645098,4
+53723225,20645098,4
+129453211,20645098,4
+iobito,20645098,2
+toybzz,20645098,2
+missfaye,20645098,5
+120002421,20645098,3
+Unalice,20645098,-1
+akxs,20645098,3
+syou27,20645098,-1
+29723781,20645098,5
+97284763,20645098,-1
+grey_07,20645098,4
+40970319,20645098,1
+61579644,20645098,1
+50126484,20645098,3
+65916762,20645098,4
+toodream,20645098,4
+57855892,20645098,3
+30585977,20645098,5
+74385730,20645098,-1
+62258561,20645098,3
+71947752,20645098,4
+shijiabeini0701,20645098,4
+58081227,20645098,4
+Princewhiteme,20645098,5
+130768851,20645098,3
+108037483,20645098,1
+61340165,20645098,4
+3951378,20645098,5
+shuixieqingtai,20645098,5
+130461977,20645098,4
+129337941,20645098,4
+113293279,20645098,1
+Celiac,20645098,5
+ClarityKing,20645098,5
+53395945,20645098,4
+paranea1993,20645098,4
+47359205,20645098,3
+45366889,20645098,3
+55581484,20645098,3
+102741968,20645098,5
+45598227,20645098,4
+68952248,20645098,5
+tiantian_n,20645098,4
+3611833,20645098,4
+132038522,20645098,5
+34678139,20645098,5
+76492013,20645098,2
+45930287,20645098,5
+88196239,20645098,3
+gilyun,20645098,5
+52207529,20645098,5
+43183830,20645098,5
+60042358,20645098,4
+XixiQ,20645098,4
+tenacityqian,20645098,5
+67194113,20645098,3
+4599187,20645098,4
+pikoor,20645098,5
+ellie1501240013,20645098,4
+56711495,20645098,3
+80980884,20645098,5
+47885824,20645098,3
+aline.,20645098,5
+abel-tree,20645098,4
+49767711,20645098,4
+45981995,20645098,4
+ilovekyoko,20645098,3
+71325468,20645098,5
+chuck0jessie,20645098,2
+41690969,20645098,5
+47053055,20645098,4
+63322369,20645098,3
+55413086,20645098,5
+85635101,20645098,4
+meteoraX,20645098,4
+36518040,20645098,2
+53206696,20645098,2
+2338228,20645098,3
+2056209,20645098,3
+77619737,20645098,2
+104815996,20645098,4
+60348245,20645098,3
+tongziyam,20645098,3
+129444727,20645098,4
+69713313,20645098,1
+b7bfc7bf,20645098,4
+45786700,20645098,4
+reki,20645098,3
+FanGo-Paris,20645098,5
+43290072,20645098,5
+iamk66,20645098,4
+60688367,20645098,4
+32541723,20645098,5
+67804762,20645098,4
+2850261,20645098,4
+130940806,20645098,5
+58174341,20645098,3
+nimanima,20645098,3
+xune,20645098,3
+2066944,20645098,4
+48096896,20645098,4
+twinklingm,20645098,3
+62489520,20645098,5
+60625421,20645098,5
+65016979,20645098,5
+asa-yan,20645098,4
+91790285,20645098,4
+loisli,20645098,4
+daisylq,20645098,4
+imoviekobe,20645098,3
+50204008,20645098,4
+50204008,20645098,4
+51113680,20645098,4
+101827918,20645098,4
+108821133,20645098,4
+125305853,20645098,5
+longzhanyun,20645098,5
+122447679,20645098,5
+AuZeonFung,20645098,4
+icaso,20645098,1
+queenozil,20645098,2
+56049056,20645098,5
+50174936,20645098,4
+55844421,20645098,5
+helloc7c,20645098,5
+charlesz,20645098,4
+mavishappy,20645098,4
+130555011,20645098,1
+2692807,20645098,5
+3458719,20645098,4
+adayinthelife,20645098,5
+i9,20645098,4
+60000300,20645098,5
+43671403,20645098,4
+70782826,20645098,4
+1110575,20645098,3
+92377736,20645098,4
+44087578,20645098,4
+125831887,20645098,4
+48499071,20645098,2
+66161843,20645098,5
+wdxc999999,20645098,4
+72206292,20645098,3
+36120993,20645098,5
+73943510,20645098,3
+45400036,20645098,4
+jorney88,20645098,4
+44741698,20645098,4
+may0615,20645098,5
+specialjophy,20645098,3
+87448827,20645098,3
+52521255,20645098,2
+6713361,20645098,4
+90661940,20645098,3
+65718942,20645098,3
+48014147,20645098,5
+lvshanqiang,20645098,3
+thereexistslove,20645098,5
+lifedraft,20645098,4
+liulan,20645098,3
+121050213,20645098,4
+sharkup,20645098,2
+102400825,20645098,3
+89789393,20645098,3
+huangrui1993,20645098,3
+livingfly,20645098,3
+yaogaosheng,20645098,3
+68872792,20645098,5
+119282623,20645098,4
+97387099,20645098,5
+jdrop,20645098,3
+131626464,20645098,5
+64459545,20645098,4
+cc3ee,20645098,4
+63027509,20645098,4
+61286496,20645098,5
+foysummer,20645098,4
+56913703,20645098,3
+74237278,20645098,4
+73480724,20645098,2
+ilovedraco,20645098,5
+jeremyzhuo,20645098,5
+53455347,20645098,4
+67453250,20645098,1
+62586666,20645098,5
+tinyyuan,20645098,3
+dadababa,20645098,4
+wenbo2003,20645098,4
+yinjianfa,20645098,4
+103297087,20645098,4
+snow523,20645098,4
+xiaofenzi,20645098,3
+RyanSheckler,20645098,4
+unrealzhizhi,20645098,4
+63788311,20645098,5
+66627403,20645098,4
+45249226,20645098,5
+JTianLing,20645098,5
+85006439,20645098,5
+chenshituzhu,20645098,5
+132208597,20645098,5
+lazziholic,20645098,3
+Xx_tong,20645098,5
+78559485,20645098,4
+44265296,20645098,4
+joyful_jojo,20645098,4
+26237008,20645098,4
+jca,20645098,-1
+78973755,20645098,3
+hitomiorange,20645098,4
+32033776,20645098,4
+34986236,20645098,5
+qianqianfei,20645098,4
+jenny0624,20645098,3
+fnix,20645098,5
+68079918,20645098,4
+dabingxiaojie,20645098,4
+cristinafaye,20645098,2
+66779780,20645098,5
+66015511,20645098,5
+wupeachfan,20645098,3
+41651079,20645098,4
+28152891,20645098,4
+119095420,20645098,4
+stillXmang,20645098,4
+61309272,20645098,3
+49538225,20645098,3
+duora11,20645098,4
+zxjtmac,20645098,5
+superxiaoqi123,20645098,5
+62370377,20645098,4
+62370377,20645098,4
+sunqianze,20645098,3
+54542902,20645098,5
+27831887,20645098,4
+81215873,20645098,2
+4209607,20645098,2
+nbyuan,20645098,3
+43828485,20645098,4
+35804400,20645098,5
+xiyaofeipeng,20645098,5
+ding.dang,20645098,3
+39421864,20645098,2
+nancybu,20645098,4
+131545379,20645098,5
+47064061,20645098,5
+116525909,20645098,4
+50146746,20645098,4
+69954925,20645098,4
+45230422,20645098,5
+18041356,20645098,3
+82336545,20645098,5
+Julienchou,20645098,5
+Koko_head,20645098,5
+69099872,20645098,3
+134495648,20645098,3
+happygs,20645098,3
+cannwindsor,20645098,5
+feqinfan,20645098,5
+104215998,20645098,5
+momojasper,20645098,4
+44656032,20645098,2
+mamakoo,20645098,3
+vaie,20645098,5
+127298095,20645098,5
+58080207,20645098,5
+65343705,20645098,3
+70435840,20645098,2
+JYF56911,20645098,4
+65665284,20645098,4
+dekaixu,20645098,3
+68653967,20645098,5
+3681326,20645098,5
+Antidream,20645098,5
+68990509,20645098,5
+133262737,20645098,4
+125440576,20645098,5
+brant,20645098,3
+luoluojiayou,20645098,5
+51367308,20645098,4
+125218552,20645098,4
+moon1880,20645098,5
+68079880,20645098,4
+baoli0819,20645098,4
+shuixin7,20645098,4
+44783920,20645098,3
+motou0328,20645098,4
+cowgirlfanny,20645098,3
+136455125,20645098,4
+57966600,20645098,5
+124317961,20645098,5
+zzll.0021,20645098,4
+lapland,20645098,5
+28559275,20645098,5
+2986990,20645098,4
+57423172,20645098,4
+63084070,20645098,5
+58060847,20645098,2
+49250486,20645098,5
+myboo1991,20645098,3
+67069829,20645098,4
+asukafai,20645098,5
+shooin,20645098,4
+wanderwonder,20645098,3
+45016565,20645098,5
+27091040,20645098,2
+35816805,20645098,4
+sidielove,20645098,5
+52051492,20645098,5
+danso,20645098,5
+27789415,20645098,5
+134691422,20645098,5
+apple_pie,20645098,5
+2361739,20645098,5
+126206725,20645098,5
+GATIK,20645098,5
+72947558,20645098,4
+58765705,20645098,4
+miankong24,20645098,3
+ayliredlaw,20645098,5
+102446060,20645098,5
+65372479,20645098,4
+85634562,20645098,5
+50718256,20645098,2
+yoicy,20645098,4
+45324453,20645098,4
+lingdesign,20645098,-1
+Miss.Panda,20645098,3
+52452422,20645098,4
+44940078,20645098,4
+CartoonLee,20645098,4
+BackToNight,20645098,4
+ran3233,20645098,5
+haohele,20645098,4
+120070814,20645098,4
+SakuraSakurada,20645098,4
+devono,20645098,1
+55548424,20645098,4
+VrainbowL,20645098,5
+72971110,20645098,3
+41843142,20645098,4
+44121250,20645098,3
+2402475,20645098,4
+huishihousu,20645098,3
+erin-cl,20645098,3
+baibi,20645098,4
+51604039,20645098,5
+61282100,20645098,5
+68459309,20645098,5
+71131491,20645098,3
+65669464,20645098,4
+62522931,20645098,4
+73764109,20645098,5
+48350741,20645098,4
+tao1449771080,20645098,4
+82817700,20645098,5
+46359852,20645098,3
+54639718,20645098,4
+68978861,20645098,5
+58164147,20645098,5
+65623952,20645098,4
+69788935,20645098,4
+51399202,20645098,3
+28134900,20645098,3
+30857176,20645098,4
+120281609,20645098,1
+2332373,20645098,5
+130520817,20645098,4
+89301982,20645098,4
+62381482,20645098,1
+life2x,20645098,3
+62034201,20645098,4
+87034538,20645098,4
+sealyhere,20645098,5
+71990490,20645098,5
+trainezyy,20645098,4
+120636049,20645098,5
+sennory,20645098,5
+49063056,20645098,5
+60526786,20645098,3
+56209739,20645098,5
+plight,20645098,2
+50062156,20645098,4
+17865557,20645098,4
+4324772,20645098,2
+78720836,20645098,4
+DearestLapland,20645098,5
+33900366,20645098,2
+sea-lucky,20645098,3
+2842120,20645098,5
+88608192,20645098,5
+65850343,20645098,5
+4657643,20645098,3
+sunchenyuan,20645098,4
+reader-shuo,20645098,-1
+49565536,20645098,-1
+10671511,20645098,4
+115922568,20645098,3
+50913544,20645098,4
+97789517,20645098,3
+lishushu,20645098,3
+131505012,20645098,4
+54703119,20645098,5
+Adagio62442,20645098,5
+43639841,20645098,1
+1078136,20645098,3
+37146120,20645098,5
+120069048,20645098,3
+61648064,20645098,4
+4191448,20645098,3
+128422006,20645098,5
+102611391,20645098,5
+lizzy1989,20645098,3
+aibo05-14,20645098,5
+ling0816,20645098,3
+shinysun,20645098,5
+39927174,20645098,4
+EliNagy,20645098,4
+39888720,20645098,5
+67843912,20645098,2
+78618445,20645098,3
+dayi5,20645098,5
+3136665,20645098,3
+58792200,20645098,2
+80121917,20645098,3
+53243609,20645098,4
+YuEyUe27,20645098,4
+Marilynsue,20645098,3
+summerose,20645098,4
+iamxx,20645098,4
+78501893,20645098,-1
+64230829,20645098,5
+akkabby,20645098,4
+49353834,20645098,3
+48724740,20645098,3
+126328955,20645098,4
+26721122,20645098,3
+52424511,20645098,4
+64830849,20645098,4
+132790620,20645098,4
+75869760,20645098,5
+Niaofei618,20645098,3
+63774252,20645098,5
+18166296,20645098,4
+74316022,20645098,5
+72091054,20645098,5
+132974606,20645098,5
+64136506,20645098,3
+43470149,20645098,3
+65820268,20645098,4
+3522119,20645098,4
+gaitouer,20645098,5
+62039387,20645098,4
+hereisSEVEN,20645098,4
+60306425,20645098,4
+63981568,20645098,5
+82435721,20645098,4
+sleepymio,20645098,3
+41582940,20645098,3
+82144387,20645098,3
+44375847,20645098,5
+71023450,20645098,3
+69323349,20645098,3
+72719551,20645098,5
+blueafter17,20645098,3
+timeseeker,20645098,5
+andy-channel,20645098,3
+mousebomb,20645098,3
+53234441,20645098,3
+8640305,20645098,3
+c243,20645098,5
+akifon,20645098,3
+42246037,20645098,3
+107437673,20645098,5
+75672182,20645098,1
+Bonnie_me,20645098,4
+27742695,20645098,4
+42349679,20645098,2
+4342719,20645098,3
+2097598,20645098,3
+48872085,20645098,3
+87410268,20645098,5
+jianjianer,20645098,4
+48394515,20645098,5
+63830890,20645098,4
+sugushome,20645098,4
+73259858,20645098,3
+63730928,20645098,2
+77194286,20645098,4
+rongrong,20645098,5
+xiguatang,20645098,5
+119581983,20645098,2
+largefo,20645098,5
+124261094,20645098,5
+sherowe,20645098,3
+57747110,20645098,4
+54428123,20645098,4
+90688889,20645098,5
+49893874,20645098,4
+46431535,20645098,2
+daran-,20645098,5
+59913885,20645098,-1
+1955873,20645098,3
+76191999,20645098,5
+25282337,20645098,5
+4826633,20645098,3
+adaylanie,20645098,4
+3969532,20645098,5
+68724331,20645098,5
+59649719,20645098,4
+51289559,20645098,3
+51289559,20645098,3
+47564777,20645098,4
+70481744,20645098,4
+58515646,20645098,3
+1737387,20645098,5
+48324038,20645098,5
+67729366,20645098,4
+59361957,20645098,3
+47153711,20645098,4
+3964079,20645098,3
+50335163,20645098,-1
+87819044,20645098,4
+Jhon_Lou,20645098,4
+yiyileaf,20645098,4
+cozy421,20645098,3
+67913326,20645098,4
+50941856,20645098,5
+88855171,20645098,4
+51416899,20645098,5
+5466368,20645098,4
+last_order9,20645098,4
+sunnyujia,20645098,3
+tyjklldx,20645098,4
+leejiatu987,20645098,5
+63419581,20645098,5
+yushengyan,20645098,3
+43740011,20645098,4
+54976290,20645098,2
+tinysean,20645098,3
+83328709,20645098,3
+48899383,20645098,4
+128112191,20645098,4
+71231764,20645098,5
+90194086,20645098,4
+89819271,20645098,4
+62604002,20645098,3
+winderwing,20645098,4
+4732229,20645098,4
+61095404,20645098,3
+56067600,20645098,5
+92237393,20645098,-1
+135274415,20645098,3
+130520030,20645098,4
+2880975,20645098,3
+ravenphoto,20645098,2
+57644964,20645098,5
+80470495,20645098,3
+82844336,20645098,5
+91936918,20645098,5
+48369193,20645098,4
+48309167,20645098,5
+56035155,20645098,3
+40624759,20645098,3
+55601818,20645098,5
+127928705,20645098,4
+2009298,20645098,4
+73108314,20645098,5
+huangyan2738yy,20645098,4
+celia550,20645098,5
+63862716,20645098,5
+Sunny851020,20645098,4
+60630554,20645098,3
+75322883,20645098,4
+urannus,20645098,5
+68966981,20645098,4
+sheila1221,20645098,5
+54076009,20645098,-1
+59513573,20645098,5
+3111518,20645098,5
+Andrian-lee,20645098,5
+116049427,20645098,3
+Monderian,20645098,4
+48611184,20645098,2
+uplee,20645098,3
+76264390,20645098,1
+46249272,20645098,4
+136486316,20645098,4
+jovialchen,20645098,4
+3284910,20645098,4
+suweiyi,20645098,4
+Pmr,20645098,3
+wanran8,20645098,3
+71463470,20645098,2
+2973153,20645098,4
+34507488,20645098,3
+3785050,20645098,3
+show06254444,20645098,4
+80860855,20645098,2
+68806699,20645098,3
+48498923,20645098,3
+lun7777777777,20645098,5
+sisley-,20645098,3
+tiffanyangel,20645098,4
+zhanzhan8871,20645098,5
+daheiluozi,20645098,4
+50057454,20645098,3
+2006580,20645098,5
+70936023,20645098,-1
+91474719,20645098,5
+ourend,20645098,4
+122452558,20645098,3
+xuylu,20645098,3
+63645835,20645098,5
+37956992,20645098,3
+93465829,20645098,5
+36847599,20645098,5
+107827183,20645098,3
+yinyannan,20645098,5
+134905637,20645098,3
+44654605,20645098,5
+weimengxiao,20645098,3
+Sophieless,20645098,3
+10934608,20645098,3
+55354703,20645098,1
+3487006,20645098,5
+kejinlong,20645098,3
+1598832,20645098,5
+71062374,20645098,4
+go4awalk,20645098,4
+51030434,20645098,4
+81894742,20645098,2
+54639887,20645098,4
+62000178,20645098,4
+60635657,20645098,3
+seewhywhy,20645098,1
+lingweiran_0305,20645098,4
+61475089,20645098,3
+42432037,20645098,5
+NINA0220,20645098,4
+deeplife,20645098,4
+endless_dreamle,20645098,5
+134380902,20645098,4
+Murray-sg,20645098,3
+44994315,20645098,4
+2485814,20645098,3
+35471670,20645098,4
+38226077,20645098,5
+64643086,20645098,4
+ylo1995,20645098,4
+2334248,20645098,5
+LZ20XX,20645098,5
+49705526,20645098,5
+yixi7,20645098,5
+135691917,20645098,4
+heechulholic,20645098,5
+3283974,20645098,-1
+Summer-isKing,20645098,3
+76022781,20645098,4
+iwbar,20645098,1
+93347677,20645098,4
+pineappletu,20645098,5
+3541131,20645098,5
+46536036,20645098,2
+30218224,20645098,3
+102958157,20645098,3
+48258273,20645098,5
+37335288,20645098,5
+Latefordrama,20645098,5
+132058883,20645098,5
+fatty3,20645098,5
+49156844,20645098,5
+81812882,20645098,4
+134161276,20645098,5
+44722840,20645098,5
+130968714,20645098,5
+85337730,20645098,4
+48990139,20645098,3
+58603704,20645098,3
+swiftly,20645098,1
+73014879,20645098,2
+38567771,20645098,3
+fdaidao,20645098,4
+4848390,20645098,3
+zhixiangtian,20645098,5
+79109261,20645098,4
+134687140,20645098,4
+65292306,20645098,4
+36575109,20645098,4
+46054766,20645098,-1
+3412807,20645098,5
+2982439,20645098,-1
+hughwong,20645098,4
+liuyisha,20645098,5
+Broderick,20645098,4
+94670941,20645098,3
+virginiaboat,20645098,-1
+lassiedusky,20645098,3
+CzFar,20645098,5
+gyb,20645098,5
+jessck,20645098,4
+55479715,20645098,5
+2572927,20645098,5
+78339577,20645098,4
+79499233,20645098,4
+132379895,20645098,5
+17843797,20645098,5
+G20100425nivel,20645098,4
+4005934,20645098,5
+DarkBeam,20645098,1
+chaimengjie,20645098,5
+sun_g,20645098,3
+Ston3s,20645098,2
+lvrenl,20645098,5
+34950703,20645098,4
+2145215,20645098,5
+60747990,20645098,3
+darlinfish,20645098,-1
+foolishrabbit,20645098,5
+84821105,20645098,5
+38657812,20645098,4
+momoaamomo,20645098,3
+avisj,20645098,4
+53912838,20645098,3
+un-surface,20645098,5
+61150921,20645098,4
+66242700,20645098,5
+50276433,20645098,4
+62868925,20645098,5
+49902324,20645098,4
+53159243,20645098,-1
+54500977,20645098,5
+nuannuan827,20645098,4
+64720052,20645098,4
+61325094,20645098,-1
+47468400,20645098,4
+wjtst,20645098,4
+47768933,20645098,5
+june.q,20645098,4
+64563247,20645098,5
+102817350,20645098,5
+133700153,20645098,4
+wzshere,20645098,5
+104764228,20645098,4
+clayda,20645098,5
+58347486,20645098,3
+63369291,20645098,4
+78352623,20645098,4
+doushabaoKG,20645098,4
+34245713,20645098,-1
+60708720,20645098,3
+90187672,20645098,5
+43194552,20645098,5
+atian0613,20645098,4
+30656357,20645098,5
+55410872,20645098,3
+2640849,20645098,3
+66581901,20645098,3
+45878477,20645098,5
+linda740,20645098,4
+130648493,20645098,5
+olivecheung,20645098,3
+werder100,20645098,4
+36599298,20645098,3
+yimiqisan,20645098,5
+that_mango,20645098,5
+99329704,20645098,3
+simple_v,20645098,5
+singing15,20645098,5
+37793108,20645098,4
+3397020,20645098,5
+twxpda,20645098,4
+Kings917,20645098,5
+zyt1404592118,20645098,5
+60769659,20645098,-1
+75239379,20645098,5
+3520940,20645098,3
+92461755,20645098,5
+57030137,20645098,5
+meysure,20645098,5
+71350146,20645098,3
+121669763,20645098,4
+2260580,20645098,2
+51664645,20645098,4
+129158063,20645098,5
+lynkyin,20645098,4
+littlec1024,20645098,3
+58057227,20645098,4
+123504720,20645098,4
+135211263,20645098,4
+120958781,20645098,2
+81652932,20645098,3
+61562634,20645098,5
+62532312,20645098,3
+135644489,20645098,4
+76870671,20645098,5
+57936141,20645098,5
+nangongmocheng,20645098,-1
+48801010,20645098,3
+2793920,20645098,3
+Lyn.L.Lee,20645098,4
+130452965,20645098,3
+4068052,20645098,3
+122680353,20645098,5
+vivisnbb,20645098,4
+melonkim,20645098,3
+121191665,20645098,4
+tennenpa-ma,20645098,5
+61292565,20645098,4
+musmur,20645098,5
+80913886,20645098,2
+a-Joel,20645098,5
+52907196,20645098,4
+azureseaway,20645098,4
+islandyu,20645098,3
+44649844,20645098,5
+1461156,20645098,4
+100234092,20645098,5
+srada0204,20645098,5
+watson_1990,20645098,3
+105737828,20645098,2
+134137352,20645098,4
+54970580,20645098,4
+65687734,20645098,5
+AdamWu,20645098,4
+68379103,20645098,4
+TitiCaca,20645098,3
+45194143,20645098,2
+sequel,20645098,3
+52113084,20645098,4
+52373314,20645098,-1
+WANG_RS,20645098,4
+tiamat,20645098,5
+51079481,20645098,5
+125599557,20645098,3
+80274259,20645098,5
+49382185,20645098,3
+76917831,20645098,4
+bigfacebigeye,20645098,5
+cn1027,20645098,5
+74115962,20645098,5
+1865210,20645098,5
+23332427,20645098,2
+47708632,20645098,5
+61722748,20645098,5
+62528379,20645098,5
+50410530,20645098,5
+48230348,20645098,3
+3179337,20645098,5
+96776775,20645098,4
+1400619,20645098,2
+43508209,20645098,3
+solavre,20645098,-1
+32977496,20645098,3
+125130054,20645098,4
+73749674,20645098,5
+127457297,20645098,5
+qiuniao1982,20645098,5
+101982187,20645098,4
+56326461,20645098,4
+cherrytiaotiao,20645098,4
+67632318,20645098,3
+cherishmxq,20645098,5
+82813230,20645098,3
+mouq,20645098,2
+2696668,20645098,5
+iadjani,20645098,3
+my_zing,20645098,4
+48267349,20645098,3
+91524755,20645098,5
+56318477,20645098,5
+56318477,20645098,5
+84003177,20645098,3
+jerryzou,20645098,5
+59275049,20645098,5
+122437008,20645098,5
+1632293,20645098,2
+52700293,20645098,5
+61856030,20645098,5
+63975738,20645098,3
+97649336,20645098,5
+candy100zxy,20645098,4
+80985277,20645098,-1
+56163108,20645098,4
+72285292,20645098,3
+48931320,20645098,5
+2440173,20645098,2
+76566444,20645098,3
+myqueenangela,20645098,4
+jinjiaotang,20645098,4
+61096170,20645098,5
+ZHENGLILIN,20645098,5
+vincent910203,20645098,4
+52702832,20645098,5
+paodan,20645098,3
+136088461,20645098,4
+57848312,20645098,4
+50201885,20645098,4
+daisyhujing0830,20645098,4
+74678898,20645098,4
+9945285,20645098,5
+41610301,20645098,3
+54807019,20645098,4
+56351830,20645098,3
+nian-an,20645098,4
+92840931,20645098,5
+3921078,20645098,3
+TalkChan,20645098,4
+gspjazz,20645098,5
+52371477,20645098,4
+131216888,20645098,4
+HHHHHR,20645098,5
+61962948,20645098,5
+126530174,20645098,4
+64820636,20645098,5
+55447460,20645098,4
+2572033,20645098,5
+114485241,20645098,5
+54731797,20645098,5
+4386736,20645098,5
+56899432,20645098,5
+49198892,20645098,5
+93651159,20645098,5
+65174941,20645098,3
+119013202,20645098,5
+46379813,20645098,3
+46271502,20645098,5
+48718934,20645098,4
+104265782,20645098,4
+rainboo,20645098,5
+56566809,20645098,4
+Maydayfirst,20645098,4
+57605745,20645098,5
+45137235,20645098,4
+olala,20645098,5
+howaiching,20645098,5
+78632729,20645098,4
+64009987,20645098,3
+chobit.w,20645098,4
+51284540,20645098,3
+viavia1991,20645098,4
+xiaoahman,20645098,3
+m_l,20645098,5
+69616363,20645098,4
+desan,20645098,3
+130059051,20645098,5
+raptor,20645098,4
+61721612,20645098,4
+kpcloud1314,20645098,5
+51216421,20645098,5
+sunyixin,20645098,4
+copy6,20645098,4
+hedgehog,20645098,4
+yumu0116,20645098,4
+futureelaine,20645098,-1
+slevwh,20645098,4
+104344457,20645098,5
+babelotus,20645098,4
+4203342,20645098,3
+moin1206,20645098,4
+echo920905,20645098,5
+87230227,20645098,2
+28215681,20645098,3
+kid1121,20645098,4
+49731141,20645098,5
+renxiaoheng,20645098,4
+68304210,20645098,5
+101017245,20645098,4
+100230675,20645098,3
+58386624,20645098,3
+60735312,20645098,-1
+coffee7,20645098,4
+123680755,20645098,4
+80585311,20645098,4
+3128287,20645098,5
+83399311,20645098,4
+fonying,20645098,5
+4610385,20645098,3
+mrwumao,20645098,3
+52389531,20645098,2
+66681227,20645098,5
+1401452,20645098,4
+MZ-part,20645098,4
+111016748,20645098,4
+129106127,20645098,3
+43885744,20645098,-1
+60193223,20645098,5
+53386586,20645098,3
+41691356,20645098,5
+wtforz,20645098,3
+56383208,20645098,4
+islander55,20645098,3
+2544534,20645098,5
+xiaohuaxiaoyu,20645098,4
+58067296,20645098,5
+stand314,20645098,4
+4144985,20645098,4
+simppydhl,20645098,5
+xuyuan0315,20645098,5
+45756376,20645098,4
+46748821,20645098,5
+gothicly16,20645098,3
+2237566,20645098,3
+NJYSL,20645098,2
+yourpinocchio,20645098,4
+47357292,20645098,4
+57826492,20645098,3
+STILLWATERRUNS,20645098,3
+Loreley333,20645098,3
+xiaojingyush,20645098,3
+vinciwang,20645098,3
+41307480,20645098,4
+60034463,20645098,3
+46932816,20645098,3
+83651306,20645098,4
+45396198,20645098,4
+karenizumi,20645098,4
+36463756,20645098,5
+2610640,20645098,4
+54804536,20645098,4
+shuaziwang,20645098,5
+58009119,20645098,4
+60606413,20645098,4
+garlic,20645098,4
+54697264,20645098,5
+honeyangela,20645098,4
+wen1228,20645098,4
+122662265,20645098,5
+50449064,20645098,4
+78900467,20645098,3
+126058557,20645098,4
+121640725,20645098,3
+2322078,20645098,4
+79827389,20645098,3
+3876144,20645098,4
+breakawaycs,20645098,4
+62895879,20645098,2
+honey_zhang,20645098,2
+3108063,20645098,5
+127085262,20645098,4
+huhu227,20645098,4
+58881939,20645098,5
+xingxingto,20645098,3
+unal,20645098,5
+ahuaaa,20645098,3
+34115080,20645098,2
+smilemiaomiao,20645098,5
+69805658,20645098,2
+74662202,20645098,5
+qingxin623,20645098,5
+3170874,20645098,3
+80125660,20645098,3
+csj0824,20645098,4
+44275592,20645098,5
+93385129,20645098,4
+51297351,20645098,3
+52611136,20645098,2
+wxdtcdsg,20645098,3
+sugustmac,20645098,3
+craneink,20645098,1
+giddycat,20645098,5
+mianlincong,20645098,4
+ywyjennifer,20645098,3
+45110347,20645098,4
+ivyfire,20645098,3
+62650109,20645098,3
+13039939,20645098,5
+Ronnie816,20645098,4
+50687552,20645098,5
+92048195,20645098,5
+62000329,20645098,5
+ddqr,20645098,3
+47989793,20645098,3
+49154510,20645098,4
+61272937,20645098,5
+CherryX,20645098,5
+40764343,20645098,5
+126846791,20645098,4
+119099264,20645098,4
+4360947,20645098,4
+ak430,20645098,3
+cherryhj,20645098,3
+seafans,20645098,4
+78628722,20645098,4
+57616241,20645098,3
+55814996,20645098,5
+130671534,20645098,4
+129276323,20645098,4
+73444446,20645098,3
+126469352,20645098,4
+129683109,20645098,4
+39209718,20645098,4
+104511788,20645098,3
+95078756,20645098,4
+60408856,20645098,5
+mint-greeeen,20645098,3
+orangelynn,20645098,5
+terryoy,20645098,3
+79953346,20645098,4
+54370174,20645098,5
+miyaliang,20645098,3
+catherine1995,20645098,5
+ccccccIty,20645098,3
+ruru8,20645098,-1
+CLARICE,20645098,3
+119353813,20645098,4
+majesty821,20645098,5
+laLavande,20645098,4
+31085938,20645098,5
+wn920927,20645098,4
+45932979,20645098,4
+89066076,20645098,3
+wsxiaoran,20645098,5
+82569239,20645098,3
+jiarencaotian,20645098,4
+87541020,20645098,4
+dayandnights,20645098,5
+81346988,20645098,4
+NeverLate,20645098,2
+beartt,20645098,5
+53083224,20645098,5
+rajorAn,20645098,4
+Lily.7,20645098,3
+53043583,20645098,5
+abalone91,20645098,4
+50365027,20645098,4
+60068819,20645098,4
+136427837,20645098,-1
+fsivyneof4,20645098,5
+75585925,20645098,5
+clf0827,20645098,3
+65595562,20645098,5
+96477990,20645098,5
+56720909,20645098,5
+33668342,20645098,5
+53068258,20645098,4
+33330297,20645098,4
+109064219,20645098,1
+vegetablepenny,20645098,4
+46810832,20645098,5
+7223165,20645098,5
+48165079,20645098,4
+75545538,20645098,4
+122604790,20645098,3
+goson,20645098,5
+63458600,20645098,4
+idmiao,20645098,5
+2455029,20645098,3
+yuyan1234,20645098,1
+46393539,20645098,2
+52181753,20645098,4
+52181753,20645098,4
+chanrayee,20645098,1
+Lemonsir,20645098,3
+73039194,20645098,4
+zz14,20645098,4
+106866145,20645098,4
+clytzesmile,20645098,5
+35233612,20645098,4
+Layna_wang,20645098,-1
+suheagatha,20645098,4
+benyang,20645098,4
+71609374,20645098,1
+lichuman,20645098,3
+xiaosongqu,20645098,4
+yiwangtianshi,20645098,3
+135613558,20645098,3
+75115688,20645098,5
+2374847,20645098,3
+36411115,20645098,5
+naschris,20645098,3
+58829197,20645098,5
+56057081,20645098,4
+45578282,20645098,3
+tleding,20645098,3
+64033964,20645098,5
+51693234,20645098,-1
+eileenlim,20645098,4
+39847804,20645098,4
+73059311,20645098,5
+50588044,20645098,5
+75166261,20645098,5
+isaxue,20645098,3
+136151249,20645098,4
+48194650,20645098,5
+134963788,20645098,3
+88738629,20645098,5
+juech171,20645098,5
+xiguaet,20645098,2
+64294321,20645098,2
+34971762,20645098,5
+34573514,20645098,4
+lingxishuyu,20645098,4
+48493333,20645098,4
+92966403,20645098,5
+58945598,20645098,3
+44760991,20645098,4
+43137756,20645098,4
+showmeet111,20645098,5
+miaomiao0408,20645098,5
+90729667,20645098,3
+127480277,20645098,5
+52994535,20645098,5
+70144915,20645098,3
+sukimushroom,20645098,3
+47912507,20645098,5
+52423064,20645098,5
+qi-shao-shang,20645098,3
+Flamingo446,20645098,4
+136423474,20645098,-1
+TaTaxxxx,20645098,4
+xiaojia86,20645098,2
+susimai,20645098,4
+90751686,20645098,2
+pangzimiao,20645098,4
+fuyunyajie,20645098,4
+33304415,20645098,3
+53267568,20645098,3
+40593028,20645098,5
+49740424,20645098,-1
+79118365,20645098,4
+52468739,20645098,3
+122175376,20645098,4
+39364170,20645098,4
+gfm,20645098,5
+71654816,20645098,4
+52573795,20645098,5
+xxxxxxuuuuuu,20645098,3
+yixiaoyan_,20645098,5
+49828405,20645098,4
+52015194,20645098,5
+xuguanzf,20645098,3
+4359622,20645098,5
+94478678,20645098,3
+67509576,20645098,1
+63976517,20645098,5
+14598994,20645098,3
+29839010,20645098,5
+ericsens,20645098,5
+36077117,20645098,4
+71678016,20645098,4
+2113603,20645098,2
+4311893,20645098,1
+88932203,20645098,4
+65443106,20645098,4
+3601408,20645098,2
+echo__,20645098,2
+2563968,20645098,5
+134897709,20645098,5
+35010939,20645098,3
+48636312,20645098,3
+57048528,20645098,-1
+59346098,20645098,4
+123065625,20645098,5
+2805974,20645098,4
+61570708,20645098,5
+4630026,20645098,4
+74337586,20645098,4
+81520240,20645098,3
+freeflame,20645098,5
+127857692,20645098,4
+49147188,20645098,5
+64287168,20645098,4
+25912456,20645098,3
+63874750,20645098,4
+fanwen0610,20645098,5
+jlx786,20645098,5
+82821279,20645098,5
+iumbrella,20645098,4
+47997499,20645098,5
+3205933,20645098,5
+34546789,20645098,5
+44187248,20645098,3
+2202605,20645098,5
+jujulyly,20645098,5
+48332703,20645098,3
+74420370,20645098,4
+133886774,20645098,3
+wangluling,20645098,5
+rosevi,20645098,5
+rukia-ichigo,20645098,4
+shengxiaoqi,20645098,1
+xiaozhangshi,20645098,4
+shikong27,20645098,3
+53668460,20645098,5
+2521209,20645098,4
+lesia,20645098,5
+xiaozhuo02,20645098,5
+3478294,20645098,5
+44487838,20645098,4
+akanishi_0704,20645098,4
+akanishi_0704,20645098,4
+2121850,20645098,3
+Junekira,20645098,2
+2183610,20645098,4
+40638118,20645098,5
+yagami-light,20645098,3
+2206615,20645098,4
+41441330,20645098,4
+61672883,20645098,5
+demoncat,20645098,3
+134358881,20645098,5
+36108304,20645098,3
+72673508,20645098,4
+rinkacheng,20645098,5
+1011787,20645098,5
+83040147,20645098,3
+136418938,20645098,4
+133904204,20645098,5
+59803743,20645098,4
+hici,20645098,4
+54069821,20645098,4
+55491528,20645098,4
+umber.,20645098,5
+katheleen33,20645098,4
+46516865,20645098,5
+49804217,20645098,4
+58568147,20645098,4
+72241538,20645098,3
+51204884,20645098,4
+59089292,20645098,3
+77334326,20645098,5
+zuozuowuyi,20645098,5
+2377765,20645098,4
+37222775,20645098,4
+120336940,20645098,5
+41703607,20645098,5
+62568441,20645098,5
+51617541,20645098,3
+an-sirens,20645098,3
+122687552,20645098,5
+47322994,20645098,3
+lostoldboy,20645098,2
+53536298,20645098,5
+48706869,20645098,5
+89033531,20645098,4
+cathyclan,20645098,4
+53373767,20645098,3
+52656396,20645098,5
+flicker1973,20645098,5
+3214138,20645098,5
+136416142,20645098,5
+73222054,20645098,4
+57830619,20645098,5
+66741252,20645098,4
+60404546,20645098,3
+josielove13,20645098,5
+51764690,20645098,4
+4688576,20645098,4
+xbanxianer,20645098,2
+15146438,20645098,4
+qiaoyayafly,20645098,3
+54222317,20645098,5
+77131298,20645098,1
+49411913,20645098,-1
+1391951,20645098,4
+119157867,20645098,3
+panrunni,20645098,3
+raratt,20645098,5
+77481221,20645098,5
+3609679,20645098,3
+pangdashen,20645098,4
+shuimohua,20645098,4
+54781442,20645098,3
+screamers,20645098,3
+88161315,20645098,3
+6846145,20645098,2
+udxiang,20645098,3
+130082458,20645098,4
+cacacathy,20645098,1
+58051571,20645098,5
+48315386,20645098,4
+lc1993520,20645098,3
+128160386,20645098,4
+109025568,20645098,2
+luohuangertao,20645098,2
+59354411,20645098,2
+131592303,20645098,-1
+133718009,20645098,4
+51660372,20645098,3
+52939857,20645098,4
+62958833,20645098,3
+129685348,20645098,5
+71718240,20645098,2
+mercla,20645098,3
+69429649,20645098,3
+60619683,20645098,5
+huaanhuang,20645098,5
+besmiled,20645098,4
+1280092,20645098,5
+3526216,20645098,5
+56839601,20645098,4
+2216479,20645098,4
+63746510,20645098,5
+67575009,20645098,3
+76539898,20645098,4
+poline,20645098,5
+4580713,20645098,5
+59883834,20645098,5
+79011283,20645098,5
+olivecan,20645098,3
+54844744,20645098,1
+115170755,20645098,4
+x1ngstar,20645098,5
+74762630,20645098,5
+UtopianCarmen,20645098,3
+54235182,20645098,4
+125979869,20645098,4
+99075022,20645098,5
+ada25,20645098,5
+53027731,20645098,4
+lagrandeillusio,20645098,1
+3610411,20645098,5
+November_nie,20645098,5
+57200771,20645098,4
+pussycat100,20645098,4
+74767482,20645098,5
+120530215,20645098,4
+134924552,20645098,5
+42718436,20645098,4
+44329176,20645098,4
+3478731,20645098,4
+120695517,20645098,4
+64715710,20645098,3
+56396911,20645098,4
+V4nine4,20645098,5
+68511299,20645098,2
+62720771,20645098,4
+53432709,20645098,-1
+132291529,20645098,5
+smilyk,20645098,5
+122857735,20645098,3
+67311017,20645098,4
+Zoekor,20645098,5
+56438841,20645098,5
+49080242,20645098,3
+1614368,20645098,1
+124948670,20645098,1
+47876726,20645098,2
+2704650,20645098,3
+8026660,20645098,5
+joycew0318,20645098,3
+zzsw1991,20645098,3
+48662592,20645098,5
+46981849,20645098,-1
+2950551,20645098,4
+63294351,20645098,5
+43530675,20645098,5
+33534935,20645098,5
+130957788,20645098,3
+48829574,20645098,3
+48313436,20645098,4
+2087096,20645098,5
+yangpeibei,20645098,5
+ann219,20645098,4
+74508061,20645098,3
+sunzeyu,20645098,4
+42661364,20645098,4
+63250544,20645098,4
+122222690,20645098,3
+4269560,20645098,3
+did-it,20645098,4
+84328720,20645098,5
+62268815,20645098,4
+56481671,20645098,5
+teaxx,20645098,4
+57503695,20645098,3
+125644658,20645098,5
+merryliang,20645098,3
+68836448,20645098,4
+81601017,20645098,4
+baishouzyn,20645098,3
+elainehsu,20645098,1
+2654815,20645098,2
+53663779,20645098,3
+54485655,20645098,3
+84696017,20645098,5
+49216618,20645098,3
+59420428,20645098,5
+kakasissi,20645098,4
+91673883,20645098,4
+94068216,20645098,5
+saws,20645098,5
+54874044,20645098,3
+clodfish,20645098,4
+ohAnthea,20645098,5
+54245600,20645098,5
+46528708,20645098,4
+daji900117,20645098,-1
+62213575,20645098,5
+huster-lion,20645098,5
+huster-lion,20645098,5
+3351455,20645098,5
+81832804,20645098,4
+126065071,20645098,5
+132207892,20645098,5
+132750777,20645098,4
+1083198,20645098,4
+52428606,20645098,2
+51667296,20645098,5
+132839401,20645098,1
+62672201,20645098,3
+36040987,20645098,5
+JW_taoY,20645098,4
+chair911,20645098,3
+ljyhe001,20645098,4
+Misha-BesideYou,20645098,3
+violette0826,20645098,5
+124467661,20645098,4
+ruanjingtian,20645098,4
+2467246,20645098,5
+72522600,20645098,5
+120352953,20645098,4
+3688402,20645098,-1
+eddychaw,20645098,1
+3055637,20645098,3
+ppxoxqq,20645098,3
+113285477,20645098,3
+xiyibixia,20645098,-1
+126836075,20645098,5
+67387288,20645098,3
+45179223,20645098,4
+agnes223,20645098,2
+cheergoll,20645098,4
+74097394,20645098,5
+68732725,20645098,4
+kishtyy_41,20645098,5
+2796344,20645098,5
+47717099,20645098,3
+6681586,20645098,4
+101819886,20645098,3
+yue126,20645098,4
+inearlysummer,20645098,3
+Ever1988,20645098,4
+44531163,20645098,5
+alvivi,20645098,4
+52762105,20645098,4
+2209141,20645098,5
+4294774,20645098,3
+79262344,20645098,3
+1114658,20645098,4
+61771256,20645098,5
+MoneyKAdjani,20645098,4
+49437518,20645098,4
+daisy6270,20645098,4
+50995944,20645098,4
+57886275,20645098,3
+daisyu17,20645098,5
+wilzen,20645098,5
+80014838,20645098,5
+dOHOfenn,20645098,4
+46579492,20645098,4
+35357574,20645098,4
+Leslie_Cheung,20645098,5
+66775281,20645098,5
+33382680,20645098,-1
+chris_1989,20645098,2
+davidtian,20645098,1
+fuxinisgood,20645098,3
+49629073,20645098,3
+72991242,20645098,4
+91135637,20645098,3
+135302519,20645098,4
+MaoMaoTiNa,20645098,4
+128555458,20645098,5
+zexun,20645098,5
+ile,20645098,5
+polars,20645098,3
+gzq121129910,20645098,5
+71750332,20645098,5
+58321791,20645098,2
+youx1,20645098,5
+opheliafeeling,20645098,4
+apollofay,20645098,-1
+94257080,20645098,5
+mary1991,20645098,4
+43856484,20645098,2
+45556826,20645098,5
+61494957,20645098,5
+98336288,20645098,5
+hewuyou,20645098,4
+55021699,20645098,5
+47839510,20645098,2
+136337190,20645098,5
+103062979,20645098,2
+feibaobei,20645098,4
+64380151,20645098,4
+Zaytun,20645098,4
+czplane,20645098,-1
+stingroger,20645098,5
+3297168,20645098,2
+87719942,20645098,4
+zhiyutianhaozi,20645098,5
+16679744,20645098,5
+lcx79,20645098,4
+1392797,20645098,5
+52185430,20645098,5
+37130581,20645098,4
+sandy0205,20645098,4
+mklop2008,20645098,5
+warmwater,20645098,-1
+Coast0to0coast,20645098,5
+xiaoranran,20645098,4
+44901258,20645098,4
+lumieremeimei,20645098,5
+49123021,20645098,4
+moon6fly,20645098,4
+77296894,20645098,4
+ilovetaylor,20645098,3
+63550302,20645098,5
+excelgirl,20645098,3
+minuan,20645098,1
+suertelore,20645098,5
+60591590,20645098,5
+fanclrice,20645098,4
+48857925,20645098,5
+83098290,20645098,4
+120388985,20645098,3
+119970651,20645098,4
+56174035,20645098,2
+75117824,20645098,4
+63348856,20645098,4
+54811615,20645098,3
+yingzhuang,20645098,5
+51010843,20645098,5
+richard1991,20645098,5
+49664854,20645098,4
+54454274,20645098,4
+2049714,20645098,4
+francisray,20645098,4
+10595793,20645098,5
+windyzhu3949,20645098,3
+qinyu253,20645098,4
+44686178,20645098,5
+eslier,20645098,5
+Ann951129,20645098,3
+YesIDO.,20645098,4
+122994382,20645098,5
+ellencc,20645098,-1
+62177936,20645098,4
+50589086,20645098,5
+a6002mickyjunsu,20645098,5
+72186585,20645098,4
+45088175,20645098,4
+2946811,20645098,5
+44866153,20645098,4
+57975142,20645098,5
+tayee,20645098,4
+ahino,20645098,5
+4711630,20645098,5
+135429900,20645098,4
+58519184,20645098,-1
+FILANIEYOTE,20645098,4
+hairh,20645098,5
+133065161,20645098,5
+55874640,20645098,3
+43830625,20645098,4
+90204789,20645098,4
+vivianexu,20645098,5
+80822227,20645098,4
+W3IQ7,20645098,3
+83861463,20645098,4
+2940531,20645098,4
+3760870,20645098,3
+Skypieas,20645098,4
+zikki__,20645098,4
+WenwenYoung,20645098,4
+emotion7,20645098,4
+1586971,20645098,4
+ahomushbiu,20645098,3
+ycy19870313,20645098,5
+paobecky,20645098,3
+freakg,20645098,4
+59712803,20645098,4
+fanny_lingf,20645098,5
+46175274,20645098,3
+135614057,20645098,2
+gray1210,20645098,-1
+4608887,20645098,3
+82058844,20645098,4
+xuyuhong,20645098,-1
+60420315,20645098,4
+71988580,20645098,3
+wangxuanzhi,20645098,5
+59554628,20645098,5
+zhangqiong07,20645098,4
+124783082,20645098,4
+63738722,20645098,5
+junylovejuny,20645098,5
+Video-game,20645098,5
+54540628,20645098,5
+50139701,20645098,2
+82562378,20645098,5
+2228783,20645098,4
+134875231,20645098,4
+125386476,20645098,5
+96383885,20645098,5
+hoagy,20645098,4
+43983045,20645098,2
+133815177,20645098,5
+53199948,20645098,5
+127025028,20645098,1
+55886551,20645098,4
+120669387,20645098,3
+72885960,20645098,4
+losangzhou,20645098,5
+88671453,20645098,4
+51362438,20645098,5
+122594677,20645098,-1
+43107357,20645098,5
+FRENTE13,20645098,4
+letmeletgo,20645098,3
+3262786,20645098,5
+wangting053,20645098,4
+91397625,20645098,4
+unclelonglegs,20645098,4
+9105179,20645098,3
+bejieforever,20645098,4
+64333232,20645098,-1
+59490029,20645098,5
+89234808,20645098,5
+qianhenbangye,20645098,5
+82852482,20645098,5
+134163547,20645098,5
+134732599,20645098,4
+Srexy,20645098,3
+paulinekp,20645098,-1
+136046529,20645098,5
+56301809,20645098,4
+77060018,20645098,3
+135076550,20645098,5
+90014790,20645098,3
+43215145,20645098,5
+58231020,20645098,4
+seven-y,20645098,4
+132977135,20645098,4
+59752375,20645098,4
+119296421,20645098,5
+28978843,20645098,5
+115665873,20645098,4
+70609075,20645098,4
+64828822,20645098,4
+30251701,20645098,4
+1218753,20645098,-1
+129081230,20645098,5
+16073149,20645098,5
+59783688,20645098,3
+46058827,20645098,5
+wyxwyx1993,20645098,5
+eveningbaby,20645098,5
+26476308,20645098,-1
+li_yixiao,20645098,-1
+132531728,20645098,4
+kyonkoo,20645098,4
+120302342,20645098,4
+shangguanyi13,20645098,5
+54780757,20645098,3
+tiffanyji,20645098,5
+85483552,20645098,-1
+gintama-W,20645098,4
+108247778,20645098,2
+73538837,20645098,3
+24955328,20645098,4
+47373898,20645098,-1
+1223666,20645098,4
+92809978,20645098,4
+133042692,20645098,2
+33853720,20645098,1
+116033722,20645098,5
+42520287,20645098,5
+cheerwxy,20645098,5
+54743249,20645098,4
+136375883,20645098,5
+58784233,20645098,3
+72163604,20645098,4
+Goal27,20645098,5
+58497726,20645098,4
+romanbaby,20645098,5
+2441121,20645098,5
+2305028,20645098,4
+S-Daisy,20645098,5
+47029323,20645098,4
+48485018,20645098,4
+64649677,20645098,4
+120066819,20645098,3
+130088939,20645098,5
+121604770,20645098,1
+45463396,20645098,3
+whoselee,20645098,4
+sharkstyle,20645098,5
+Littlecattle,20645098,4
+paza,20645098,4
+122508583,20645098,5
+60866434,20645098,5
+89270889,20645098,5
+fresh.daily,20645098,5
+103385070,20645098,3
+51624566,20645098,5
+shsf-sharon,20645098,5
+53615881,20645098,5
+geniuskathy,20645098,5
+2784838,20645098,5
+ruoansen,20645098,5
+4214564,20645098,3
+rill18,20645098,5
+65808040,20645098,5
+76961213,20645098,4
+deist,20645098,-1
+78377702,20645098,3
+jokerli,20645098,5
+shouzi123,20645098,3
+sasa926,20645098,4
+70332021,20645098,5
+102541469,20645098,4
+48098094,20645098,3
+123235799,20645098,-1
+49607126,20645098,1
+huangxie,20645098,5
+60127747,20645098,3
+dandangobelieve,20645098,-1
+80346808,20645098,4
+61756518,20645098,5
+61302654,20645098,4
+42400179,20645098,5
+3611128,20645098,3
+xcjugly,20645098,5
+3880942,20645098,3
+3791482,20645098,3
+8549482,20645098,5
+50086182,20645098,4
+CRA1G,20645098,5
+lijunxian0225,20645098,4
+76197558,20645098,4
+Hyacinth0333,20645098,4
+Shiely,20645098,3
+77644475,20645098,5
+cloverwish,20645098,5
+yoshidaerika,20645098,5
+45894251,20645098,5
+95360863,20645098,2
+xianlovezhi,20645098,4
+4347444,20645098,3
+HanaJen,20645098,5
+somnor,20645098,5
+79741169,20645098,5
+70535180,20645098,2
+3756358,20645098,3
+96612606,20645098,5
+zouxiameng,20645098,-1
+50750500,20645098,4
+52537849,20645098,4
+61657197,20645098,4
+3191624,20645098,5
+131538725,20645098,3
+fan_1220,20645098,3
+119615925,20645098,3
+62968482,20645098,5
+1408547,20645098,4
+soulmatestarry,20645098,-1
+4016925,20645098,5
+115704108,20645098,4
+ankui,20645098,4
+29345821,20645098,5
+arenagreen,20645098,4
+44699537,20645098,3
+kateniceday,20645098,2
+tanlin8711,20645098,3
+131216193,20645098,3
+58043896,20645098,5
+51759536,20645098,4
+120841522,20645098,4
+58494684,20645098,3
+xiaosongtao,20645098,5
+3307476,20645098,3
+celiazzz,20645098,4
+koujianyi,20645098,5
+133852846,20645098,3
+danxiadanlan,20645098,4
+67077471,20645098,3
+1885523,20645098,4
+67694968,20645098,3
+pleaseplease,20645098,3
+69396109,20645098,2
+64969828,20645098,5
+49523598,20645098,4
+forlig,20645098,4
+121137821,20645098,3
+46039604,20645098,3
+89268806,20645098,4
+80240022,20645098,4
+xiaoshi0212,20645098,5
+4368925,20645098,5
+46771775,20645098,5
+xly7788,20645098,4
+charlielee,20645098,4
+4324357,20645098,-1
+49362263,20645098,4
+BuckyBarnes,20645098,4
+91268300,20645098,5
+nvxiahxx,20645098,5
+MarsOrMoon,20645098,2
+63099220,20645098,4
+2958930,20645098,2
+136371607,20645098,4
+77876700,20645098,1
+shiliuzi2015,20645098,4
+Scorpio0203,20645098,2
+48398238,20645098,5
+79203500,20645098,4
+marlborosin,20645098,5
+44539538,20645098,4
+127704028,20645098,3
+115507760,20645098,5
+45300768,20645098,4
+48406181,20645098,2
+20916982,20645098,4
+62280098,20645098,4
+60411717,20645098,4
+54474146,20645098,3
+2626046,20645098,3
+syrah,20645098,5
+lanyingxiang,20645098,4
+56783392,20645098,3
+antonio314,20645098,3
+69267037,20645098,4
+53927357,20645098,4
+62298176,20645098,4
+xiaokudou,20645098,2
+MMAOCOOL,20645098,5
+49344280,20645098,4
+57065086,20645098,4
+jackguo,20645098,4
+57297847,20645098,4
+duolamaoxian,20645098,4
+Singtohalf,20645098,5
+52273132,20645098,5
+33665319,20645098,3
+76163964,20645098,5
+49103272,20645098,4
+52764884,20645098,5
+feicai1nan,20645098,-1
+bochan,20645098,5
+39491713,20645098,5
+1973189,20645098,4
+Fulllove,20645098,3
+34719706,20645098,5
+43236574,20645098,5
+tongyanruo,20645098,4
+47047627,20645098,4
+3974458,20645098,4
+3758190,20645098,5
+98788467,20645098,4
+92295600,20645098,3
+44475692,20645098,5
+36541831,20645098,5
+47820304,20645098,-1
+southfrog129,20645098,1
+47240557,20645098,5
+donmmy,20645098,-1
+80894601,20645098,3
+132972754,20645098,5
+marysays,20645098,-1
+losta,20645098,4
+foxvia,20645098,3
+45491031,20645098,4
+3329605,20645098,5
+41417678,20645098,5
+2744514,20645098,5
+49234078,20645098,1
+51815376,20645098,3
+82275664,20645098,5
+54728942,20645098,5
+dingruogu,20645098,4
+xuefei94,20645098,4
+2846758,20645098,4
+101225471,20645098,3
+48757091,20645098,4
+85450588,20645098,4
+syloveyangying,20645098,5
+3483358,20645098,2
+cheryl_wang,20645098,5
+3412422,20645098,3
+53786356,20645098,4
+55371105,20645098,5
+45489324,20645098,4
+47941742,20645098,5
+66689109,20645098,4
+57406085,20645098,4
+27744141,20645098,4
+3246025,20645098,5
+aliceshi,20645098,4
+datou146,20645098,4
+1516524,20645098,3
+4152314,20645098,4
+80749871,20645098,5
+12487547,20645098,5
+shiguagji,20645098,4
+Liiiiiisa,20645098,2
+124532032,20645098,3
+105146664,20645098,5
+81326728,20645098,4
+133027418,20645098,3
+98851164,20645098,4
+44760070,20645098,4
+70806910,20645098,3
+83377255,20645098,4
+windyeagle,20645098,3
+131709746,20645098,5
+annshuran,20645098,5
+53065014,20645098,5
+iysy,20645098,4
+70690888,20645098,4
+61757421,20645098,4
+64086047,20645098,3
+Dyouknow,20645098,3
+wuh,20645098,5
+carrotlalala,20645098,4
+53851456,20645098,4
+20779589,20645098,3
+lucyhuang21,20645098,5
+92626522,20645098,4
+60615521,20645098,5
+134267059,20645098,4
+casper2fly,20645098,4
+Georgina_0803,20645098,5
+48950150,20645098,1
+134541627,20645098,5
+32196088,20645098,4
+porkwen,20645098,4
+132485693,20645098,3
+winnie0032,20645098,3
+134888389,20645098,5
+68111893,20645098,5
+126716117,20645098,5
+gavinturkey,20645098,4
+58706786,20645098,-1
+46499475,20645098,2
+52679814,20645098,3
+135265147,20645098,4
+44182814,20645098,5
+onshuway,20645098,3
+75701178,20645098,4
+102830761,20645098,4
+63848305,20645098,3
+74727109,20645098,4
+84951260,20645098,4
+SweetyAndMe,20645098,1
+54869727,20645098,5
+zr8359,20645098,3
+gloria1206,20645098,5
+101905187,20645098,3
+tinytower,20645098,5
+81539389,20645098,4
+Annandan,20645098,5
+88144540,20645098,5
+hwh,20645098,5
+3923326,20645098,5
+57876924,20645098,4
+51084355,20645098,5
+52013531,20645098,4
+49541349,20645098,3
+113582401,20645098,5
+68437469,20645098,5
+zhouyaooo,20645098,5
+64093320,20645098,5
+58803248,20645098,5
+loveloki913,20645098,5
+71183440,20645098,5
+3857084,20645098,5
+48772570,20645098,5
+126899663,20645098,4
+68730850,20645098,4
+56437151,20645098,1
+123701524,20645098,5
+jiiiiiaaaa,20645098,1
+57611021,20645098,3
+ahoaki,20645098,4
+54215199,20645098,5
+49415138,20645098,4
+16965088,20645098,5
+120303986,20645098,4
+69670097,20645098,4
+136351240,20645098,5
+Z142325,20645098,1
+incoolway,20645098,2
+126980086,20645098,-1
+HugoVince,20645098,3
+73910323,20645098,5
+121064013,20645098,4
+catfishgirl,20645098,4
+71466029,20645098,5
+69368196,20645098,3
+124953430,20645098,5
+101915583,20645098,3
+75580732,20645098,4
+58153202,20645098,4
+68936327,20645098,4
+62842401,20645098,2
+aquarelle12c,20645098,4
+53126913,20645098,4
+memeD,20645098,3
+49134258,20645098,4
+liuxiaolier,20645098,1
+20880123,20645098,4
+journeyforever,20645098,3
+56916670,20645098,3
+76767700,20645098,5
+hot_air_balloon,20645098,2
+2466331,20645098,4
+68058633,20645098,5
+55948445,20645098,-1
+55948445,20645098,-1
+92324736,20645098,4
+49608808,20645098,5
+qingfengvicky,20645098,4
+65461297,20645098,5
+49950062,20645098,3
+Merioply,20645098,5
+85245250,20645098,5
+ggrise,20645098,-1
+xianzuo,20645098,5
+wlaner,20645098,5
+37660069,20645098,3
+73551685,20645098,5
+51032242,20645098,5
+58451465,20645098,4
+67504276,20645098,4
+WeezyShady,20645098,5
+67746913,20645098,3
+41386230,20645098,3
+jessica0316,20645098,3
+85395736,20645098,4
+122090145,20645098,-1
+92354006,20645098,4
+2842937,20645098,3
+4349980,20645098,4
+pandaxk001,20645098,1
+la-luna,20645098,3
+48218125,20645098,4
+shmilyeve,20645098,2
+detective,20645098,3
+106089598,20645098,4
+104247985,20645098,5
+4327225,20645098,3
+JulyTang,20645098,5
+edie1924,20645098,5
+huningning,20645098,5
+zaozao928,20645098,5
+80566761,20645098,4
+48348990,20645098,3
+3084251,20645098,5
+2110097,20645098,4
+anitajoy,20645098,4
+43227551,20645098,5
+88731900,20645098,5
+4254640,20645098,4
+phpqzq,20645098,4
+33940795,20645098,5
+52952050,20645098,2
+74249669,20645098,3
+4020678,20645098,5
+96336225,20645098,3
+131207194,20645098,5
+50156062,20645098,5
+50889039,20645098,4
+134319338,20645098,5
+Alienzhao,20645098,4
+couple1314,20645098,5
+25760345,20645098,1
+87577024,20645098,5
+107291767,20645098,-1
+52272160,20645098,4
+67071901,20645098,4
+61843859,20645098,5
+36031855,20645098,4
+52350621,20645098,5
+3907290,20645098,5
+83401102,20645098,4
+130603786,20645098,5
+50924709,20645098,4
+132262817,20645098,5
+72839034,20645098,4
+kkkkkkathy,20645098,4
+117360867,20645098,3
+95670618,20645098,5
+60656832,20645098,4
+86253418,20645098,5
+65208617,20645098,4
+kevinlew,20645098,4
+BigLo,20645098,5
+magicpencil,20645098,4
+UncleJOEs,20645098,-1
+miu-Wolf,20645098,4
+positivejing,20645098,2
+4899436,20645098,5
+75045017,20645098,4
+91304159,20645098,5
+chuzhengcn,20645098,2
+76270911,20645098,5
+Evelyn-7-,20645098,2
+57302103,20645098,4
+cherryhood,20645098,4
+46119744,20645098,4
+yinhaitian,20645098,4
+49387616,20645098,3
+61453800,20645098,4
+yan6,20645098,4
+z111hw,20645098,3
+costar,20645098,3
+64658435,20645098,3
+noknow,20645098,3
+78657454,20645098,4
+71093640,20645098,4
+52994309,20645098,5
+48167275,20645098,4
+white817,20645098,3
+53357239,20645098,5
+72098592,20645098,4
+2318016,20645098,3
+Harki_7,20645098,5
+78645942,20645098,3
+nicolehom,20645098,3
+67638498,20645098,4
+40483566,20645098,4
+63760065,20645098,3
+103026141,20645098,3
+3442167,20645098,4
+yan920131,20645098,5
+xyy_1214,20645098,3
+humechan,20645098,5
+62987657,20645098,3
+caoshisheng,20645098,1
+54554461,20645098,5
+74510100,20645098,2
+Ruty1985,20645098,4
+63978060,20645098,4
+roro0306,20645098,5
+cicia_lee,20645098,4
+47914662,20645098,3
+130321312,20645098,3
+123389443,20645098,-1
+128219918,20645098,5
+134611218,20645098,4
+135934616,20645098,3
+twjdts,20645098,5
+64154274,20645098,5
+situxx,20645098,4
+downlife,20645098,5
+XIAOTUTONG,20645098,4
+120518441,20645098,4
+Chohin,20645098,3
+24419346,20645098,4
+42440335,20645098,4
+67688465,20645098,4
+ivydreamer17,20645098,4
+76333727,20645098,3
+43111765,20645098,4
+120617781,20645098,5
+51401098,20645098,5
+2247401,20645098,5
+songzier1009,20645098,3
+1478783,20645098,4
+65402284,20645098,4
+80212965,20645098,5
+niu513,20645098,-1
+64216237,20645098,5
+49167865,20645098,5
+guo19molly,20645098,3
+43934329,20645098,4
+49833390,20645098,3
+snakesarah,20645098,5
+liujinjie,20645098,4
+3236400,20645098,5
+130067485,20645098,5
+71085689,20645098,5
+68462471,20645098,3
+80169463,20645098,4
+71490431,20645098,5
+stonepanda,20645098,2
+47239413,20645098,3
+51815099,20645098,4
+Cindylam,20645098,4
+cloudylee,20645098,-1
+30714456,20645098,3
+yanxiaoka,20645098,2
+andromeda1020,20645098,3
+97911186,20645098,4
+chanelluo,20645098,5
+83429427,20645098,5
+83649414,20645098,3
+scant,20645098,5
+65710960,20645098,5
+119484113,20645098,4
+2174521,20645098,4
+37879706,20645098,5
+linayan,20645098,4
+49855743,20645098,4
+82882578,20645098,5
+37771316,20645098,2
+gynini,20645098,2
+2003525,20645098,4
+jojosie,20645098,5
+43342000,20645098,5
+121665213,20645098,3
+51828462,20645098,4
+momoko89,20645098,-1
+61028583,20645098,5
+123440825,20645098,3
+juno2011,20645098,4
+janezhang92,20645098,2
+subseer,20645098,4
+43930540,20645098,5
+Clatyz-Sun,20645098,5
+luckypuppy,20645098,3
+28582685,20645098,5
+92480816,20645098,4
+47755264,20645098,2
+60307625,20645098,3
+47008077,20645098,1
+4586641,20645098,4
+76663522,20645098,5
+macchiatomood,20645098,5
+43713017,20645098,4
+JoyYoung,20645098,3
+emma70707,20645098,5
+sohere,20645098,4
+huichangwanmei,20645098,5
+yvottetangtang,20645098,2
+40280658,20645098,3
+74818677,20645098,4
+44046836,20645098,5
+3034073,20645098,5
+48395509,20645098,4
+2569676,20645098,2
+haoyagui,20645098,5
+64692515,20645098,4
+63873168,20645098,5
+44412927,20645098,4
+double_JM,20645098,4
+4841673,20645098,4
+68874282,20645098,4
+60168432,20645098,4
+hebesbaby,20645098,-1
+yylovekhalil,20645098,5
+2548730,20645098,1
+37518003,20645098,4
+54989899,20645098,4
+102605068,20645098,5
+daisyhqq,20645098,5
+adonisle,20645098,3
+53173594,20645098,5
+Lycc,20645098,4
+44564870,20645098,-1
+70447042,20645098,3
+47331203,20645098,5
+ielit,20645098,5
+4284029,20645098,4
+7542909,20645098,4
+131147743,20645098,4
+2134317,20645098,3
+57395287,20645098,3
+Piggery,20645098,2
+rememberjuly,20645098,5
+46064508,20645098,4
+50402097,20645098,3
+130858757,20645098,5
+48544704,20645098,5
+25978283,20645098,3
+36307732,20645098,3
+57599139,20645098,4
+96784492,20645098,5
+loseclown,20645098,4
+lycyycc,20645098,4
+50180272,20645098,3
+115051698,20645098,5
+4618269,20645098,4
+xiaojing0720,20645098,5
+3169215,20645098,5
+52203973,20645098,4
+43710853,20645098,3
+vagui,20645098,4
+yixiaoxiao,20645098,5
+douxiaokou,20645098,4
+memor,20645098,4
+82317477,20645098,3
+1162708,20645098,2
+65930256,20645098,3
+46531912,20645098,5
+3710093,20645098,5
+xslidian,20645098,3
+115640790,20645098,5
+4491309,20645098,4
+sodazxw,20645098,4
+52631968,20645098,5
+81998702,20645098,4
+Shahtoosh,20645098,4
+57825875,20645098,4
+bluemyheart,20645098,5
+63119058,20645098,3
+Helena250520,20645098,5
+46240263,20645098,3
+57980226,20645098,4
+125810771,20645098,5
+kiki1123,20645098,4
+A-sun,20645098,5
+58958788,20645098,5
+68857033,20645098,5
+70892372,20645098,4
+134867156,20645098,4
+45419841,20645098,5
+82164628,20645098,4
+xiwarts,20645098,4
+124832946,20645098,4
+ledt,20645098,3
+JunKun,20645098,5
+12430910,20645098,1
+50926664,20645098,5
+136179744,20645098,5
+woniumm,20645098,5
+Lareine.Mo,20645098,5
+54104457,20645098,5
+74286517,20645098,5
+78489578,20645098,5
+29257975,20645098,4
+4194592,20645098,5
+58058699,20645098,4
+pixie,20645098,4
+79835731,20645098,3
+90264058,20645098,4
+6040408,20645098,3
+72279651,20645098,3
+134312634,20645098,3
+TonyMagic,20645098,3
+22209969,20645098,5
+107641997,20645098,5
+116399092,20645098,5
+65588926,20645098,5
+vivilida,20645098,4
+xinyuetian,20645098,5
+ling.,20645098,5
+onlyqinping,20645098,4
+88780244,20645098,5
+26044083,20645098,4
+supersun1005,20645098,4
+53897092,20645098,4
+72224250,20645098,4
+49809768,20645098,4
+60166330,20645098,4
+54782004,20645098,5
+2544720,20645098,4
+57820083,20645098,4
+125087126,20645098,5
+51083261,20645098,5
+27528053,20645098,4
+43683389,20645098,4
+g080512,20645098,3
+49365587,20645098,3
+58959346,20645098,4
+shelley223,20645098,4
+75941536,20645098,4
+zhengyingchen,20645098,5
+simysm,20645098,4
+62613227,20645098,4
+78826299,20645098,3
+iris1990,20645098,3
+71149387,20645098,5
+48993982,20645098,2
+71821286,20645098,4
+3269399,20645098,4
+75007342,20645098,3
+132446691,20645098,3
+67298023,20645098,2
+13455593,20645098,5
+40507571,20645098,4
+50763809,20645098,5
+68213529,20645098,4
+greatzy,20645098,3
+2855594,20645098,4
+gstone1723,20645098,4
+64064709,20645098,4
+cqlavender,20645098,5
+85308049,20645098,3
+lordsun666,20645098,5
+103746028,20645098,4
+54849634,20645098,1
+46801772,20645098,5
+carolcarol,20645098,5
+nalusea,20645098,4
+willlove,20645098,4
+51594094,20645098,5
+laixiaccc,20645098,4
+laixiaccc,20645098,4
+3338302,20645098,2
+120945947,20645098,3
+78569938,20645098,4
+2833136,20645098,5
+23159155,20645098,5
+chocolate67,20645098,4
+60095133,20645098,5
+65236397,20645098,4
+76368408,20645098,4
+1453766,20645098,5
+53080002,20645098,4
+clodday,20645098,3
+80319931,20645098,3
+2123972,20645098,5
+kazuki_suki,20645098,1
+68918685,20645098,4
+belieflm,20645098,5
+fxl0977,20645098,3
+82575834,20645098,5
+yway1101,20645098,3
+xiaoshiyue77,20645098,4
+jjzzjoyce,20645098,4
+52904950,20645098,3
+61025801,20645098,3
+55332677,20645098,4
+woodsorrel,20645098,5
+mulicang,20645098,5
+84566061,20645098,3
+135481775,20645098,4
+30221434,20645098,3
+PranChen,20645098,4
+sawakoluo,20645098,3
+83621605,20645098,5
+62949401,20645098,3
+zhangdayang,20645098,2
+81099804,20645098,4
+caprisun,20645098,4
+59205597,20645098,2
+marvirah,20645098,4
+46206481,20645098,-1
+summerwith,20645098,5
+3970952,20645098,5
+47748305,20645098,5
+68977947,20645098,5
+3035586,20645098,3
+131636309,20645098,3
+68757762,20645098,4
+SINCE1988,20645098,5
+77579873,20645098,5
+doufutou,20645098,5
+93581012,20645098,5
+91073792,20645098,5
+79381337,20645098,5
+melodytian,20645098,2
+puhuahua,20645098,4
+suev,20645098,3
+48269548,20645098,4
+2162334,20645098,5
+kuangjieyu,20645098,3
+54119781,20645098,1
+64062822,20645098,4
+izhangying,20645098,5
+40201382,20645098,3
+51453942,20645098,5
+58949996,20645098,1
+Uni_zz,20645098,3
+119460712,20645098,5
+gaoshuang1226,20645098,4
+queensmary,20645098,3
+65021113,20645098,4
+litsunny,20645098,3
+76816067,20645098,4
+constantinechia,20645098,1
+cynthiazhang_,20645098,5
+63166175,20645098,4
+baikaishui-,20645098,5
+liutiaoyu,20645098,5
+1896468,20645098,5
+jiaolimin,20645098,3
+71434788,20645098,5
+70057422,20645098,4
+ragnarok1028,20645098,-1
+cschester,20645098,4
+thekooks,20645098,3
+ability2010,20645098,5
+59081281,20645098,1
+53829796,20645098,5
+txmj,20645098,5
+65670134,20645098,4
+130044129,20645098,4
+littleD,20645098,5
+micstrap,20645098,5
+74742803,20645098,5
+3415449,20645098,5
+Van07,20645098,4
+leeann2002,20645098,5
+72934606,20645098,4
+55842143,20645098,1
+55520369,20645098,5
+3845456,20645098,5
+mikihiro,20645098,5
+123270668,20645098,5
+65073470,20645098,4
+51999705,20645098,4
+49389948,20645098,4
+qkl330,20645098,4
+45838830,20645098,5
+32625691,20645098,3
+56889956,20645098,1
+59606439,20645098,5
+55323906,20645098,4
+45528596,20645098,1
+sophiayou,20645098,4
+qixiaomou,20645098,4
+126970287,20645098,4
+83445808,20645098,5
+47395813,20645098,5
+96490951,20645098,4
+54613640,20645098,3
+32475579,20645098,5
+136026332,20645098,3
+4083554,20645098,3
+60624598,20645098,4
+72098816,20645098,3
+52408878,20645098,5
+46469157,20645098,5
+6621886,20645098,4
+3142248,20645098,4
+48387123,20645098,4
+115631382,20645098,5
+godblesswho,20645098,1
+47077151,20645098,3
+78447440,20645098,5
+2123728,20645098,2
+93920997,20645098,5
+56876627,20645098,3
+58858728,20645098,3
+47583585,20645098,5
+85161189,20645098,5
+26717463,20645098,5
+50021701,20645098,4
+51265951,20645098,4
+71166070,20645098,5
+69948277,20645098,3
+lsiori,20645098,3
+rabbit_hole,20645098,1
+2902661,20645098,4
+61935443,20645098,4
+57557304,20645098,-1
+amyhe,20645098,5
+Alicescat,20645098,3
+48581520,20645098,5
+76777443,20645098,4
+47297505,20645098,5
+sugarci,20645098,4
+85130256,20645098,3
+sparkleodelia,20645098,4
+68440320,20645098,4
+80305341,20645098,5
+58762290,20645098,2
+tanzi24,20645098,3
+76346345,20645098,3
+silentwish,20645098,5
+53330231,20645098,5
+135886452,20645098,5
+javy,20645098,4
+53204240,20645098,4
+Night_shadow,20645098,2
+127245295,20645098,3
+84142287,20645098,-1
+65089550,20645098,4
+128109849,20645098,5
+levitating,20645098,4
+xiaoaifansion,20645098,4
+YoulovHellokity,20645098,4
+2245152,20645098,5
+chloeleung,20645098,3
+62766562,20645098,5
+4227812,20645098,3
+72228476,20645098,5
+68764015,20645098,4
+103638662,20645098,5
+dongchenxing,20645098,3
+wangjijuzi,20645098,4
+68341681,20645098,5
+57405549,20645098,4
+oucxsy,20645098,5
+kssugar,20645098,5
+46519818,20645098,3
+2377930,20645098,4
+42223669,20645098,5
+43438135,20645098,4
+jwlsxyww,20645098,4
+56528486,20645098,5
+52064559,20645098,3
+maydayyqy,20645098,3
+63412313,20645098,3
+umaymaymay,20645098,3
+roy821,20645098,5
+88940112,20645098,5
+3629615,20645098,3
+78852139,20645098,5
+before1998CXH,20645098,4
+126209354,20645098,5
+126894330,20645098,4
+Chic2375,20645098,4
+Nur,20645098,2
+kubotao,20645098,3
+2426246,20645098,5
+53499705,20645098,5
+75091194,20645098,3
+87681382,20645098,-1
+Caroline.H,20645098,5
+yeslie,20645098,-1
+133899940,20645098,2
+uniquemanman,20645098,5
+65173505,20645098,4
+41947526,20645098,5
+46984128,20645098,3
+46984128,20645098,3
+45662792,20645098,3
+63423532,20645098,5
+43747141,20645098,4
+68640061,20645098,4
+124847125,20645098,4
+nimei0329,20645098,5
+sacpoh,20645098,5
+59370551,20645098,5
+135207841,20645098,5
+43775933,20645098,4
+106497872,20645098,3
+61727406,20645098,4
+58970075,20645098,5
+76928010,20645098,4
+yangmianyang,20645098,5
+72163139,20645098,3
+121216761,20645098,5
+121567803,20645098,3
+50785163,20645098,4
+ivysui,20645098,4
+126621481,20645098,4
+84103974,20645098,5
+soda-fine,20645098,3
+jingmowu,20645098,5
+oppoize,20645098,3
+46525176,20645098,5
+52489598,20645098,2
+1026510,20645098,3
+24274750,20645098,5
+wusuhui,20645098,4
+anliye,20645098,4
+72381588,20645098,3
+62915199,20645098,3
+61852645,20645098,3
+125697930,20645098,5
+lesleylui,20645098,4
+40003537,20645098,3
+miucather,20645098,4
+xibanyayidong,20645098,4
+metkee,20645098,4
+95310145,20645098,5
+68676931,20645098,2
+70307710,20645098,4
+46348139,20645098,5
+81286886,20645098,4
+wuxu92,20645098,5
+77489329,20645098,4
+123170200,20645098,4
+43652282,20645098,-1
+55897235,20645098,5
+81475548,20645098,5
+128099844,20645098,3
+63993568,20645098,5
+Doglee110,20645098,-1
+wubingheng,20645098,4
+wjhz,20645098,4
+gothickid,20645098,5
+darllling,20645098,3
+68940923,20645098,-1
+133619820,20645098,5
+47983574,20645098,4
+pekoisagirl,20645098,5
+wz0822,20645098,4
+qq120286102030,20645098,4
+44592602,20645098,-1
+52639329,20645098,5
+81406768,20645098,5
+clover77,20645098,5
+57185474,20645098,5
+134498765,20645098,4
+Solv,20645098,5
+19734042,20645098,4
+92331243,20645098,5
+65805429,20645098,-1
+67041957,20645098,2
+zyx1990deep,20645098,4
+98914244,20645098,4
+58033392,20645098,4
+danmole,20645098,5
+51843085,20645098,4
+46161171,20645098,5
+46867582,20645098,4
+132611152,20645098,4
+67495718,20645098,4
+princess921129,20645098,3
+54056831,20645098,5
+linlanq,20645098,-1
+Ronicalee,20645098,4
+29562487,20645098,4
+rika19860217,20645098,3
+viby,20645098,5
+125703530,20645098,5
+117348494,20645098,3
+132619002,20645098,3
+xiiiiiiian,20645098,3
+57674944,20645098,4
+jumpblue99,20645098,5
+houjingmeng,20645098,5
+2479049,20645098,4
+43044093,20645098,5
+55990410,20645098,4
+48038328,20645098,2
+94574301,20645098,5
+53721434,20645098,4
+Robbielau,20645098,4
+ayii,20645098,4
+73569634,20645098,4
+64162048,20645098,1
+46764281,20645098,1
+98107332,20645098,5
+51385232,20645098,5
+nuoxiaofan,20645098,3
+daisy0427,20645098,2
+49170354,20645098,5
+lovetatum,20645098,4
+135868666,20645098,2
+131815669,20645098,4
+54117885,20645098,5
+xueyudexingkong,20645098,3
+131066999,20645098,5
+xxooxxooxxooxx,20645098,2
+Bunnysuk,20645098,4
+hushibookstore,20645098,4
+shebushe,20645098,5
+12511197,20645098,2
+zhuanglongzuoya,20645098,3
+drinking,20645098,4
+63582373,20645098,2
+52695229,20645098,5
+86585180,20645098,4
+61069242,20645098,2
+redsmile,20645098,4
+mingedou,20645098,5
+dawn.limpid,20645098,5
+102070677,20645098,5
+55287270,20645098,3
+2407478,20645098,3
+bluetiger,20645098,-1
+suh5213,20645098,3
+42900224,20645098,4
+jolyne,20645098,3
+136300332,20645098,5
+44832442,20645098,4
+67370965,20645098,4
+54408577,20645098,5
+mondayjungle,20645098,4
+61041885,20645098,5
+64039684,20645098,3
+39730031,20645098,3
+sonatina,20645098,3
+57492188,20645098,2
+nanfengchuimu,20645098,4
+feeldxy,20645098,3
+zhubling,20645098,4
+1346384,20645098,4
+jia931218,20645098,5
+134504952,20645098,4
+51194509,20645098,4
+61367029,20645098,3
+68099155,20645098,5
+catherinex217,20645098,4
+yogi2,20645098,2
+107502099,20645098,5
+weixiaolengmo,20645098,-1
+Keepgoon,20645098,5
+50861713,20645098,4
+leftpomelo,20645098,4
+krispunk,20645098,5
+67968935,20645098,5
+winterzxcz,20645098,5
+catundertree,20645098,1
+74185926,20645098,5
+zyy1026,20645098,4
+17214556,20645098,-1
+129828818,20645098,4
+119278802,20645098,4
+1068182,20645098,-1
+2860030,20645098,4
+51274941,20645098,-1
+50970598,20645098,3
+54191288,20645098,4
+78711295,20645098,3
+27032939,20645098,5
+131416608,20645098,4
+82243464,20645098,5
+133125055,20645098,3
+77099269,20645098,5
+elfdan,20645098,4
+72405382,20645098,5
+4026281,20645098,5
+1412628,20645098,3
+53547561,20645098,4
+57465510,20645098,5
+65909784,20645098,3
+tingzzer,20645098,4
+69785918,20645098,4
+look,20645098,3
+sugarsugarcane,20645098,4
+caesarphoenix,20645098,4
+53794075,20645098,4
+pigdick,20645098,3
+66830762,20645098,4
+vikissss,20645098,5
+jjinglee,20645098,4
+53280545,20645098,3
+foon,20645098,5
+CHAN6002,20645098,4
+owen0205,20645098,2
+kangwenyi,20645098,5
+40536897,20645098,4
+97076624,20645098,4
+Verocia,20645098,-1
+128013541,20645098,5
+71877767,20645098,4
+59098621,20645098,3
+67975507,20645098,5
+49695891,20645098,3
+66838621,20645098,3
+vvtutu,20645098,4
+vvtutu,20645098,4
+stillsanshan,20645098,3
+cherrytear,20645098,4
+64146161,20645098,5
+68090176,20645098,4
+72871706,20645098,4
+120264216,20645098,5
+115231878,20645098,4
+MOMO3,20645098,4
+80161354,20645098,4
+43397816,20645098,5
+1085901,20645098,4
+53787602,20645098,4
+YvetteYvette,20645098,5
+she-is-momo,20645098,3
+104745481,20645098,2
+136268042,20645098,2
+Shanglinyuan,20645098,3
+134909380,20645098,4
+62622534,20645098,5
+51777244,20645098,2
+80348399,20645098,5
+tuckshop,20645098,4
+yixin0liberty,20645098,5
+69321069,20645098,2
+toppphy,20645098,5
+117233942,20645098,5
+46626384,20645098,4
+llabria,20645098,1
+75522444,20645098,5
+datewithstar,20645098,5
+molia,20645098,3
+45575383,20645098,3
+76187253,20645098,5
+AdamGus,20645098,4
+Monica999xkw,20645098,5
+47029136,20645098,5
+zzzhy,20645098,5
+59714517,20645098,4
+2624503,20645098,4
+62671989,20645098,5
+ThebestDANN,20645098,5
+77391757,20645098,5
+mykaka1987,20645098,4
+sanhao_love,20645098,4
+monster-bro,20645098,-1
+12325127,20645098,4
+nancy425,20645098,3
+48530220,20645098,3
+126146488,20645098,3
+Sunnyshine,20645098,4
+57071321,20645098,4
+57453471,20645098,5
+90128896,20645098,5
+120961971,20645098,5
+84056163,20645098,5
+zcz1994,20645098,4
+69944887,20645098,4
+67048173,20645098,3
+56652624,20645098,5
+56652624,20645098,5
+vmile,20645098,5
+71790709,20645098,3
+64622270,20645098,5
+74365776,20645098,3
+135076039,20645098,4
+Lyabing,20645098,4
+nate_aways,20645098,5
+66832758,20645098,5
+56083031,20645098,5
+43725091,20645098,4
+Rottenmudpit,20645098,2
+bettyfay,20645098,4
+52122749,20645098,4
+57305886,20645098,3
+57941699,20645098,3
+45918227,20645098,3
+29641344,20645098,4
+Nancyxhn,20645098,4
+133864523,20645098,4
+79983944,20645098,5
+shudoku,20645098,5
+29574917,20645098,5
+121516783,20645098,5
+2818665,20645098,5
+78144849,20645098,3
+130164378,20645098,4
+4655887,20645098,4
+47309621,20645098,5
+4005082,20645098,5
+zhuangwei920,20645098,5
+68304173,20645098,5
+MiaMia97823,20645098,5
+4447378,20645098,5
+69420649,20645098,5
+3522938,20645098,4
+57246795,20645098,5
+3720406,20645098,5
+36077927,20645098,4
+52426499,20645098,3
+134497584,20645098,5
+4108295,20645098,3
+60162933,20645098,3
+yellnothing,20645098,4
+37613318,20645098,5
+49124802,20645098,4
+tuzi-7,20645098,5
+51901368,20645098,4
+61762354,20645098,4
+43330595,20645098,4
+133533083,20645098,4
+32569158,20645098,5
+veveve,20645098,2
+67547256,20645098,5
+44070949,20645098,5
+sakimay,20645098,4
+wxenia9189,20645098,5
+38659484,20645098,2
+29819963,20645098,4
+50410993,20645098,5
+48808520,20645098,5
+74388331,20645098,3
+90581117,20645098,4
+cherishem,20645098,4
+Lemon26,20645098,3
+33323138,20645098,5
+76032119,20645098,5
+4804994,20645098,3
+57101409,20645098,3
+50047469,20645098,3
+sakura8839,20645098,5
+36412946,20645098,3
+131909298,20645098,4
+cholerair,20645098,5
+59080310,20645098,4
+3450694,20645098,2
+56453885,20645098,2
+83453591,20645098,4
+25857150,20645098,5
+50156549,20645098,3
+fccindy,20645098,4
+55840798,20645098,4
+57889113,20645098,4
+tuviel,20645098,4
+76857499,20645098,4
+58588294,20645098,5
+3578321,20645098,3
+Fabianism,20645098,3
+121429956,20645098,5
+happyndog,20645098,5
+36821087,20645098,4
+thesadyesterday,20645098,3
+dearw616,20645098,4
+50250896,20645098,5
+63312230,20645098,4
+kandyzhao,20645098,3
+Ofine,20645098,3
+85294271,20645098,4
+50771967,20645098,5
+119522105,20645098,3
+6606600,20645098,5
+130132870,20645098,3
+lizardcat,20645098,3
+131441508,20645098,5
+68227361,20645098,4
+32354448,20645098,4
+freakbody,20645098,4
+skyofhaley,20645098,5
+55865392,20645098,4
+caojingjing,20645098,5
+126859970,20645098,4
+133840546,20645098,5
+prague2046,20645098,2
+4519509,20645098,5
+scheny,20645098,-1
+60823876,20645098,5
+91515979,20645098,3
+60108222,20645098,4
+113532923,20645098,5
+mereth,20645098,4
+104312412,20645098,4
+nwpiao,20645098,4
+3967225,20645098,5
+59629692,20645098,4
+85102033,20645098,4
+heathersiner,20645098,4
+2524962,20645098,1
+yanism,20645098,4
+Jane-L,20645098,4
+MORETHANM,20645098,3
+42829054,20645098,3
+ilovejenny,20645098,4
+3547475,20645098,5
+131597292,20645098,5
+2529003,20645098,4
+58547901,20645098,1
+59461494,20645098,5
+49866554,20645098,5
+129175694,20645098,3
+tearmap,20645098,3
+4408749,20645098,4
+liancheng,20645098,5
+66520731,20645098,3
+48710899,20645098,4
+22246157,20645098,5
+xingmie,20645098,3
+60225299,20645098,2
+44259676,20645098,5
+Matchamario,20645098,5
+twiggy901,20645098,1
+46065900,20645098,5
+54284949,20645098,4
+41803938,20645098,4
+Tlsmetabolous,20645098,5
+53623002,20645098,1
+mayobao,20645098,4
+54536799,20645098,3
+77631214,20645098,4
+2126869,20645098,4
+imyoyo1116,20645098,4
+42360628,20645098,3
+46492005,20645098,4
+69068532,20645098,5
+67088127,20645098,4
+pedant,20645098,3
+82206581,20645098,4
+47072592,20645098,5
+klaus2015,20645098,5
+39670803,20645098,5
+taxi,20645098,4
+coco112,20645098,5
+m1ssfe1,20645098,3
+mazedcity,20645098,5
+zhonghua001,20645098,1
+water_ame,20645098,3
+dandan0451,20645098,5
+56309720,20645098,5
+88085556,20645098,5
+maikhan,20645098,2
+33527780,20645098,3
+33527780,20645098,3
+waisel,20645098,4
+119181217,20645098,4
+41786241,20645098,4
+73597773,20645098,5
+Ovilia.,20645098,-1
+57133701,20645098,4
+paradise624,20645098,3
+Song1183,20645098,4
+zlx199707,20645098,4
+alex.tseng,20645098,3
+65275818,20645098,1
+60722327,20645098,3
+33300447,20645098,4
+1864146,20645098,5
+missxiaohua,20645098,5
+64069487,20645098,4
+2045080,20645098,3
+61887621,20645098,5
+92385969,20645098,5
+kuaml,20645098,-1
+43773651,20645098,3
+53905800,20645098,5
+48997423,20645098,5
+44961319,20645098,5
+FairleeY,20645098,2
+46321473,20645098,4
+52103092,20645098,3
+chesterchoi,20645098,4
+48302880,20645098,4
+101751000,20645098,5
+3577491,20645098,3
+56053205,20645098,4
+jn121314,20645098,-1
+32860757,20645098,5
+applelike,20645098,4
+43343230,20645098,3
+60082922,20645098,4
+ciweiqiqi,20645098,5
+azureINBLUR,20645098,-1
+lethexxx,20645098,4
+42264701,20645098,5
+reneena,20645098,4
+80359618,20645098,4
+doraline,20645098,-1
+sung..,20645098,3
+90966188,20645098,2
+56921877,20645098,5
+36751744,20645098,3
+46416150,20645098,5
+48269568,20645098,3
+62748915,20645098,4
+84264436,20645098,4
+spreebunny,20645098,4
+132463662,20645098,4
+73692914,20645098,4
+22238526,20645098,4
+mikarly,20645098,4
+3251456,20645098,3
+48393485,20645098,5
+l-misa,20645098,3
+wusuowei102,20645098,3
+limo2011,20645098,4
+80218946,20645098,4
+zhuoweather,20645098,5
+125505853,20645098,3
+66043535,20645098,3
+wrdouban,20645098,3
+83082786,20645098,5
+2206235,20645098,3
+Msdolphin,20645098,5
+78183847,20645098,4
+Anh.zz,20645098,4
+126225635,20645098,4
+2387348,20645098,5
+April-qmw,20645098,5
+86136547,20645098,5
+73921828,20645098,5
+3587701,20645098,4
+1317876,20645098,3
+4088278,20645098,3
+46607514,20645098,3
+40905460,20645098,5
+56379326,20645098,5
+29988044,20645098,5
+36556180,20645098,4
+80775732,20645098,3
+63685423,20645098,4
+76624031,20645098,5
+61209060,20645098,5
+37226242,20645098,4
+bork,20645098,1
+62836166,20645098,5
+59830157,20645098,5
+50565787,20645098,4
+123783477,20645098,4
+1107251,20645098,3
+68844784,20645098,5
+79363796,20645098,5
+50062390,20645098,4
+39574027,20645098,5
+41242591,20645098,5
+66237715,20645098,5
+vincent41,20645098,4
+huaqianshu,20645098,5
+51942098,20645098,3
+60119754,20645098,3
+52245563,20645098,4
+63997678,20645098,4
+89768114,20645098,4
+54612022,20645098,3
+79304005,20645098,4
+63990028,20645098,3
+ssyppq,20645098,5
+78658749,20645098,3
+Haley.Z,20645098,2
+fafashit,20645098,4
+49273916,20645098,4
+4430021,20645098,5
+56277901,20645098,5
+64020328,20645098,4
+lisasue,20645098,5
+50522399,20645098,4
+charlie_c,20645098,5
+121942823,20645098,3
+syanns,20645098,5
+71166354,20645098,3
+67368799,20645098,5
+134732771,20645098,4
+80806690,20645098,-1
+morachen,20645098,5
+102383108,20645098,5
+60472087,20645098,4
+49474993,20645098,4
+69947890,20645098,5
+64805440,20645098,5
+83188680,20645098,5
+77606465,20645098,2
+67863438,20645098,5
+69040173,20645098,1
+85642211,20645098,5
+zoe1989,20645098,3
+50598564,20645098,5
+45255898,20645098,2
+51270526,20645098,5
+39646892,20645098,5
+czq0417,20645098,-1
+51490108,20645098,4
+88308360,20645098,4
+57230631,20645098,4
+43554712,20645098,3
+sickey,20645098,3
+128017227,20645098,4
+yimairen,20645098,3
+allul,20645098,3
+46493467,20645098,5
+41899297,20645098,4
+48320059,20645098,4
+88262927,20645098,3
+74241382,20645098,4
+59680110,20645098,4
+121362164,20645098,4
+2020855,20645098,4
+maycheryl,20645098,5
+57770614,20645098,5
+ThroughTheNever,20645098,5
+yuan_yolanda,20645098,5
+nagefun,20645098,4
+Wenqian,20645098,5
+4765195,20645098,4
+zhirunze,20645098,4
+45134238,20645098,4
+49027531,20645098,5
+paes,20645098,3
+64875949,20645098,4
+112970184,20645098,4
+50003038,20645098,5
+wxmxy,20645098,5
+133874735,20645098,5
+120538141,20645098,5
+56604899,20645098,3
+54370463,20645098,4
+75898645,20645098,3
+ll-luly,20645098,5
+120378701,20645098,4
+133818384,20645098,5
+99741643,20645098,5
+92136222,20645098,-1
+60027417,20645098,5
+xiaopang2671,20645098,4
+nemopapa,20645098,4
+yjab777,20645098,4
+Shnei,20645098,5
+yvtoutou,20645098,4
+mutangdan,20645098,4
+74872914,20645098,4
+aptx1010,20645098,3
+53507443,20645098,4
+41106056,20645098,4
+radish,20645098,4
+xx0301ll,20645098,4
+42500417,20645098,4
+49856775,20645098,5
+14752026,20645098,4
+4284284,20645098,4
+135637907,20645098,5
+119995519,20645098,5
+76388450,20645098,4
+4380228,20645098,5
+lepd,20645098,3
+41843480,20645098,5
+sid005,20645098,4
+52244457,20645098,5
+135424879,20645098,5
+121859961,20645098,5
+ariellau,20645098,3
+wenjun63,20645098,5
+zhang-long,20645098,4
+mufanxuanji,20645098,4
+benbenunhappy,20645098,2
+136272932,20645098,5
+66617948,20645098,1
+44969187,20645098,3
+121823412,20645098,5
+lyijo,20645098,4
+clytzessummer,20645098,5
+132347906,20645098,5
+132190479,20645098,5
+55419771,20645098,5
+136272578,20645098,4
+42191844,20645098,5
+jesmine114,20645098,3
+43297912,20645098,5
+37845149,20645098,1
+66629958,20645098,3
+52097523,20645098,4
+62826188,20645098,4
+53365528,20645098,5
+54398591,20645098,3
+132678322,20645098,3
+vikkistyle,20645098,4
+cynthiachang,20645098,2
+weiranwei,20645098,4
+51774232,20645098,5
+128304317,20645098,4
+4312876,20645098,5
+tinyfl,20645098,5
+65448112,20645098,4
+85367661,20645098,5
+58151506,20645098,2
+24556429,20645098,4
+52841977,20645098,4
+life_go,20645098,5
+34766480,20645098,4
+121630768,20645098,5
+39231477,20645098,5
+90470774,20645098,4
+17703894,20645098,3
+122527158,20645098,5
+58277084,20645098,4
+73475415,20645098,5
+45630966,20645098,3
+52954426,20645098,4
+tildali1214,20645098,3
+2336151,20645098,3
+wangveggieg,20645098,5
+49385882,20645098,5
+61447555,20645098,4
+59028893,20645098,3
+52140378,20645098,3
+55976298,20645098,4
+sun-sun-wei,20645098,4
+4244492,20645098,2
+pjcs,20645098,3
+43780285,20645098,4
+Hana..,20645098,4
+Eva-land,20645098,4
+44040999,20645098,4
+61346101,20645098,5
+imagefly,20645098,3
+pussy_crystal,20645098,3
+forlang,20645098,-1
+63329920,20645098,5
+2569325,20645098,4
+91096598,20645098,5
+121746557,20645098,5
+yueyan23,20645098,4
+iamsyh,20645098,3
+47190086,20645098,5
+64901268,20645098,3
+83016243,20645098,4
+102409204,20645098,5
+lychee0825,20645098,3
+2859580,20645098,4
+123024321,20645098,4
+53908274,20645098,5
+1575989,20645098,4
+zoemelie,20645098,5
+14958793,20645098,5
+sleepinapril,20645098,4
+53375345,20645098,4
+52970362,20645098,5
+58484976,20645098,4
+60180314,20645098,4
+47391200,20645098,4
+2842222,20645098,3
+36103097,20645098,2
+103228646,20645098,2
+yukiyuko,20645098,4
+57930397,20645098,4
+99536916,20645098,3
+4361525,20645098,5
+78857918,20645098,3
+55980726,20645098,5
+50028019,20645098,3
+1751335,20645098,2
+BLprince,20645098,5
+130391371,20645098,5
+116273864,20645098,5
+111493695,20645098,3
+52833192,20645098,5
+133842733,20645098,4
+ludan4,20645098,4
+daly0520,20645098,3
+66461284,20645098,4
+ananmaomi,20645098,4
+foreverseeker,20645098,4
+xttaa,20645098,5
+3890315,20645098,5
+Monster_004,20645098,5
+83202830,20645098,4
+17588393,20645098,3
+lindsayzyh,20645098,5
+NIKI-BABY,20645098,3
+facier,20645098,4
+tangshui,20645098,4
+49192958,20645098,4
+53833766,20645098,5
+ruoshuiyouyu,20645098,4
+83769826,20645098,3
+70543759,20645098,3
+52308240,20645098,5
+42725289,20645098,3
+Mi-Querida,20645098,4
+69502792,20645098,4
+54759101,20645098,5
+dogeli,20645098,5
+59012758,20645098,5
+nothingdone,20645098,1
+42116635,20645098,5
+54624209,20645098,5
+3667822,20645098,5
+17705611,20645098,5
+RayForce,20645098,5
+imarilyn,20645098,3
+jasonwar,20645098,2
+116169238,20645098,3
+69428274,20645098,5
+59677707,20645098,3
+49079570,20645098,5
+iceJY,20645098,5
+29828337,20645098,5
+62403523,20645098,4
+yoyocui,20645098,3
+102126440,20645098,3
+56369223,20645098,4
+oliverpie,20645098,5
+funnyfoxydy,20645098,5
+45097131,20645098,4
+LogicLady,20645098,4
+64277816,20645098,3
+tomsnakewang,20645098,4
+callmeshallow,20645098,5
+LALA_613,20645098,4
+121581216,20645098,3
+49422565,20645098,3
+49389910,20645098,4
+92722037,20645098,4
+helloxiaoyan,20645098,5
+ruinide,20645098,5
+zhengranran,20645098,3
+eleveniris,20645098,5
+vivilinezaixu,20645098,4
+xihua1993,20645098,5
+48790837,20645098,5
+lizhongju,20645098,5
+yayi_ifsoso,20645098,3
+terryhey,20645098,4
+amynic,20645098,3
+53619534,20645098,4
+yayadehu,20645098,5
+liu_feng,20645098,3
+away125,20645098,5
+75010045,20645098,3
+48219213,20645098,4
+75118396,20645098,3
+64677693,20645098,5
+83264508,20645098,5
+viling,20645098,2
+34234049,20645098,4
+66227991,20645098,4
+83386831,20645098,3
+hermit_lover,20645098,5
+Emperor1996107,20645098,4
+duduxiongzhifu,20645098,2
+crazies,20645098,5
+90763642,20645098,4
+78614678,20645098,5
+datudoudatudou,20645098,4
+renjiananhuo,20645098,5
+kyd,20645098,5
+mayachen,20645098,3
+58178251,20645098,5
+1467881,20645098,5
+7085324,20645098,5
+1463457,20645098,2
+nagle,20645098,4
+114533111,20645098,4
+3382458,20645098,3
+xxwade,20645098,3
+Darezhao,20645098,5
+zoply6227,20645098,5
+66036408,20645098,3
+49316755,20645098,2
+59170101,20645098,5
+57090877,20645098,4
+4438039,20645098,4
+55851508,20645098,5
+73810775,20645098,5
+134342824,20645098,4
+89565486,20645098,4
+zqzhuqiu,20645098,4
+60597045,20645098,3
+Lisa.L,20645098,4
+olivelva,20645098,5
+70804424,20645098,3
+92154012,20645098,3
+15497319,20645098,4
+lebron.jude,20645098,5
+zxy310,20645098,-1
+ifemi,20645098,3
+82347389,20645098,4
+yigerenzhu,20645098,5
+airstreet,20645098,4
+Daray1989,20645098,4
+Ryann0429,20645098,3
+55669081,20645098,5
+charlottemjiang,20645098,5
+14692856,20645098,5
+124236435,20645098,5
+hachien,20645098,4
+63142359,20645098,3
+Femery,20645098,5
+50023585,20645098,2
+77613125,20645098,3
+vivimiaoer,20645098,4
+95201044,20645098,5
+67728756,20645098,2
+56300991,20645098,5
+33076718,20645098,3
+anix,20645098,5
+50904663,20645098,2
+qinxy,20645098,4
+83143182,20645098,4
+10810027,20645098,3
+51935167,20645098,4
+121716592,20645098,3
+37108716,20645098,3
+Joy_zzjin,20645098,4
+67284766,20645098,5
+16718270,20645098,4
+62957645,20645098,4
+foreveryoung01,20645098,4
+2088697,20645098,4
+mushichong,20645098,4
+55643387,20645098,5
+82889509,20645098,5
+103429510,20645098,2
+63045020,20645098,4
+28556542,20645098,3
+3551672,20645098,4
+85060919,20645098,5
+130020039,20645098,5
+52101454,20645098,4
+2912930,20645098,5
+89411462,20645098,5
+72454425,20645098,4
+130274670,20645098,4
+36800921,20645098,4
+shuo3dao4,20645098,4
+57639009,20645098,4
+addicted,20645098,4
+56071242,20645098,3
+starry_liu,20645098,4
+Lylaohyeah,20645098,5
+53776565,20645098,3
+miAAAAAo,20645098,1
+Jillian,20645098,-1
+121080454,20645098,3
+82498358,20645098,3
+mugglezwt,20645098,4
+74661878,20645098,5
+65153834,20645098,-1
+55406228,20645098,4
+tuyuqiao,20645098,5
+70981547,20645098,5
+97017536,20645098,5
+129032954,20645098,3
+56364233,20645098,3
+2986985,20645098,4
+yeechin,20645098,4
+partric,20645098,5
+sixer1005,20645098,4
+49291444,20645098,4
+hwyyj,20645098,1
+secretWJC,20645098,3
+123431259,20645098,5
+smeles,20645098,4
+62253827,20645098,5
+shunong,20645098,3
+nancyoyx,20645098,3
+cskywalker,20645098,5
+Top129,20645098,4
+taohong0927,20645098,3
+47161791,20645098,5
+mintangel,20645098,3
+zzzZi,20645098,3
+59428764,20645098,1
+laladreamer,20645098,5
+51934128,20645098,3
+132155394,20645098,3
+65260404,20645098,4
+128158516,20645098,5
+olereo,20645098,4
+60648596,20645098,5
+zhuxiaoqi,20645098,4
+63778440,20645098,5
+57102566,20645098,5
+Rockristy,20645098,5
+53023463,20645098,5
+84475436,20645098,3
+122349852,20645098,3
+4857042,20645098,2
+1853333,20645098,3
+97312448,20645098,3
+joyanlie,20645098,4
+34243799,20645098,4
+58312756,20645098,5
+aspirin-m,20645098,4
+blueyolanda,20645098,5
+91661265,20645098,3
+70990506,20645098,4
+90961062,20645098,4
+dzhq,20645098,5
+rinsola,20645098,5
+54588486,20645098,4
+70730114,20645098,3
+123475994,20645098,3
+14718675,20645098,5
+71996206,20645098,5
+noer33,20645098,5
+49283063,20645098,4
+82572629,20645098,2
+19769109,20645098,4
+forceleste,20645098,5
+69307403,20645098,5
+12940795,20645098,4
+kildren2013,20645098,4
+1967327,20645098,5
+47586585,20645098,4
+harlequin-a,20645098,4
+care198475,20645098,3
+69814261,20645098,3
+85901553,20645098,4
+73640215,20645098,4
+53622945,20645098,5
+3254520,20645098,3
+61276700,20645098,5
+51023914,20645098,3
+121340549,20645098,4
+53322417,20645098,5
+54457207,20645098,3
+wan623,20645098,4
+NAGISHO,20645098,3
+50616224,20645098,5
+wendyhsu,20645098,4
+10338909,20645098,5
+48171283,20645098,5
+58001871,20645098,2
+108077404,20645098,2
+57749235,20645098,5
+98419717,20645098,4
+125455262,20645098,2
+26757948,20645098,5
+55796244,20645098,3
+4587643,20645098,4
+fondxy,20645098,5
+zeroooccc,20645098,3
+Dimita_w,20645098,-1
+87647683,20645098,4
+3339865,20645098,4
+sasaxi7,20645098,5
+dfzxqqian,20645098,3
+64776776,20645098,4
+haji,20645098,4
+maydanji,20645098,4
+Jane88126,20645098,5
+56953703,20645098,5
+longyuanlei,20645098,3
+2414621,20645098,5
+Malins,20645098,5
+33693061,20645098,2
+129748813,20645098,5
+70188912,20645098,4
+55986543,20645098,5
+64031370,20645098,3
+61054348,20645098,5
+14363390,20645098,4
+BLuuuuE,20645098,5
+128604356,20645098,5
+46242801,20645098,3
+liheping0310,20645098,2
+4880674,20645098,5
+daisybbk,20645098,4
+89896325,20645098,5
+widchou,20645098,5
+spinfractal,20645098,5
+54119742,20645098,2
+121228834,20645098,4
+whenyoubelieve,20645098,2
+winmaxangle,20645098,4
+perhaps0108,20645098,3
+82760754,20645098,4
+49325754,20645098,4
+96674876,20645098,4
+Star1225,20645098,4
+43087425,20645098,5
+72367829,20645098,4
+4493043,20645098,5
+39233571,20645098,5
+63819525,20645098,3
+anarkhhom,20645098,4
+mikiaries,20645098,5
+xiaoyuan_0310,20645098,3
+hero_H,20645098,5
+1558142,20645098,5
+35978024,20645098,3
+66617484,20645098,2
+79352949,20645098,4
+97011307,20645098,5
+onlyYH,20645098,3
+49035504,20645098,1
+125111991,20645098,4
+jluy,20645098,4
+arielwjx,20645098,3
+depressionles,20645098,5
+cushifu,20645098,4
+20409682,20645098,5
+126273452,20645098,3
+tonyuanChen,20645098,4
+icantlive,20645098,4
+71057399,20645098,4
+yuyinweiwei,20645098,5
+xcxc519,20645098,5
+61641402,20645098,5
+punsiny,20645098,3
+34348516,20645098,5
+gayles,20645098,3
+119031382,20645098,4
+46505995,20645098,4
+65924127,20645098,4
+MemoFan,20645098,5
+132657014,20645098,5
+97304737,20645098,5
+108250008,20645098,5
+sixteen616,20645098,5
+83439796,20645098,3
+32401319,20645098,5
+jinyuhen,20645098,5
+bidiwudong,20645098,5
+susuchu,20645098,4
+DeWatson,20645098,5
+51197243,20645098,1
+8935294,20645098,4
+119296720,20645098,4
+mee2ashin,20645098,4
+83019485,20645098,5
+83192271,20645098,5
+55608107,20645098,5
+2505733,20645098,5
+li_1314,20645098,3
+champernova0507,20645098,5
+51508482,20645098,-1
+firoXfiro,20645098,3
+wzdqq,20645098,3
+46714118,20645098,4
+74770959,20645098,4
+120061371,20645098,5
+rockduan1987,20645098,5
+74040194,20645098,5
+16333554,20645098,5
+lilyoung,20645098,5
+52068926,20645098,3
+136181826,20645098,4
+91573235,20645098,4
+90785580,20645098,5
+73702156,20645098,3
+51339375,20645098,5
+Ryan-Z,20645098,4
+83639528,20645098,4
+62901714,20645098,5
+46482032,20645098,3
+idyllw,20645098,4
+carrypotter,20645098,4
+3975532,20645098,4
+jieracheung,20645098,5
+rutanilla07,20645098,-1
+121033528,20645098,5
+52864776,20645098,5
+58658426,20645098,3
+nanshuo,20645098,4
+joyfish0912,20645098,3
+46902321,20645098,5
+49285712,20645098,5
+cad0420,20645098,3
+54010420,20645098,4
+34310004,20645098,4
+lotusjunepp,20645098,3
+nikichou,20645098,3
+82464708,20645098,2
+63765493,20645098,3
+3717542,20645098,4
+1832124,20645098,5
+57530916,20645098,5
+1121093,20645098,5
+41571785,20645098,3
+winters.chs,20645098,3
+63344206,20645098,1
+14914580,20645098,3
+xxlrjxx,20645098,4
+53476786,20645098,4
+131924613,20645098,4
+82404312,20645098,-1
+65084443,20645098,3
+57539497,20645098,3
+2252208,20645098,5
+cinta-2012,20645098,3
+54927714,20645098,1
+zeroic_zly,20645098,3
+83054457,20645098,5
+50371058,20645098,3
+dancylon,20645098,5
+63029583,20645098,5
+64396292,20645098,5
+Chayhaw,20645098,5
+1530155,20645098,5
+80227476,20645098,4
+litianjiao,20645098,3
+henry929,20645098,4
+48674429,20645098,3
+53419518,20645098,2
+51628420,20645098,3
+sinkcheer,20645098,4
+leexiaoxiao,20645098,3
+130599620,20645098,4
+55621520,20645098,4
+acupofgreentea,20645098,4
+cherybeckham,20645098,5
+65062440,20645098,5
+124640229,20645098,4
+InveRno,20645098,4
+45761304,20645098,4
+luxifero,20645098,4
+ki-jlp,20645098,4
+leyoung,20645098,4
+3307951,20645098,3
+emilyforever,20645098,3
+122254128,20645098,5
+65721837,20645098,1
+hellohenai,20645098,3
+51660342,20645098,5
+66880325,20645098,5
+33907993,20645098,5
+123746304,20645098,4
+54018422,20645098,5
+58992948,20645098,3
+luoyunxiang72,20645098,5
+se7entail,20645098,4
+kather,20645098,4
+aegeaner,20645098,5
+46806968,20645098,2
+71467211,20645098,5
+48217298,20645098,5
+57580353,20645098,5
+46664771,20645098,-1
+58430439,20645098,4
+2444430,20645098,2
+103149314,20645098,3
+60923783,20645098,5
+cocozhao,20645098,2
+58489592,20645098,4
+42410152,20645098,4
+2245463,20645098,3
+61535181,20645098,5
+68208861,20645098,4
+Alpinist,20645098,3
+yunxin,20645098,4
+126143156,20645098,3
+ideathink,20645098,4
+Blanvon_151111,20645098,3
+83122810,20645098,5
+reika_scar,20645098,4
+chreesy,20645098,5
+63250603,20645098,2
+75986203,20645098,2
+82232966,20645098,5
+120334801,20645098,3
+16676768,20645098,5
+76534851,20645098,5
+yangyq,20645098,4
+yangyq,20645098,4
+50374697,20645098,3
+HBHelena,20645098,4
+47724316,20645098,4
+dongdongskice,20645098,4
+45394521,20645098,3
+cesliewang,20645098,5
+45754440,20645098,-1
+130510825,20645098,4
+3503398,20645098,3
+90657049,20645098,5
+cherrymaruko,20645098,3
+kepeng,20645098,1
+37791405,20645098,1
+12719976,20645098,4
+L0ve-zL,20645098,3
+3617677,20645098,4
+61676910,20645098,5
+bleachdevil,20645098,3
+126682168,20645098,4
+2226886,20645098,3
+54381840,20645098,4
+greenforest,20645098,4
+53339487,20645098,2
+coto,20645098,4
+55614852,20645098,4
+49061155,20645098,2
+lrxsamantha,20645098,5
+55396896,20645098,3
+2344452,20645098,3
+cat22,20645098,3
+dabaibai,20645098,4
+tansydreamslink,20645098,5
+Nickhsu,20645098,4
+46252496,20645098,4
+63821916,20645098,5
+ran69,20645098,5
+55984609,20645098,5
+26310507,20645098,-1
+126217193,20645098,5
+lovelyladys,20645098,5
+superMmm,20645098,4
+100355911,20645098,5
+3543290,20645098,5
+3355006,20645098,4
+1942591,20645098,4
+55618766,20645098,4
+63089184,20645098,3
+50347133,20645098,3
+simuvchen,20645098,4
+44976171,20645098,4
+3931180,20645098,2
+1652118,20645098,2
+swirry,20645098,5
+106730683,20645098,1
+i_amshelia,20645098,4
+55660634,20645098,4
+cvarts,20645098,5
+CronaldoIRIS,20645098,5
+silencewong,20645098,2
+liuine,20645098,5
+weichengluanma,20645098,5
+adagio4400,20645098,-1
+58438773,20645098,4
+48417342,20645098,5
+53268951,20645098,5
+65559608,20645098,5
+131984239,20645098,5
+kazuki_,20645098,3
+elcm,20645098,5
+69715781,20645098,5
+jiji6,20645098,4
+47857118,20645098,4
+zsq0028347,20645098,5
+wenwen7459,20645098,3
+BrokenVinci,20645098,5
+78663673,20645098,5
+Leenur_gln,20645098,5
+65026592,20645098,4
+lolalireader,20645098,3
+56416143,20645098,4
+nicole24,20645098,4
+51758301,20645098,5
+56651599,20645098,-1
+tislya,20645098,5
+128641812,20645098,4
+47265787,20645098,5
+51663804,20645098,5
+103951444,20645098,3
+59493796,20645098,5
+78413454,20645098,5
+55438232,20645098,4
+49110008,20645098,3
+48420105,20645098,5
+91295519,20645098,5
+119608603,20645098,4
+zhanghuijuan,20645098,4
+77794190,20645098,4
+79416306,20645098,2
+65188363,20645098,4
+scorlinger,20645098,5
+gaotongruc,20645098,4
+41752874,20645098,4
+51422581,20645098,3
+27891262,20645098,4
+86253613,20645098,4
+juanshangshu,20645098,3
+48267432,20645098,5
+76550501,20645098,3
+49258293,20645098,3
+cjdowson,20645098,4
+ryanchxl,20645098,4
+jangyang1992,20645098,5
+39369934,20645098,5
+71096090,20645098,3
+79770724,20645098,5
+52145577,20645098,4
+2157105,20645098,4
+sq320530,20645098,3
+clarachan,20645098,4
+60041907,20645098,4
+17828275,20645098,5
+44595410,20645098,4
+luckyumao,20645098,5
+44355281,20645098,5
+36999894,20645098,3
+55024644,20645098,5
+47034969,20645098,4
+52233629,20645098,4
+popgarden,20645098,3
+49314835,20645098,5
+ccguodong,20645098,3
+4871637,20645098,3
+cheeseflower,20645098,3
+sysonchen,20645098,5
+51455219,20645098,3
+47566111,20645098,5
+51339189,20645098,4
+43958178,20645098,4
+45417298,20645098,4
+wucai663,20645098,5
+smilingfishl,20645098,4
+Total-recall,20645098,2
+135340486,20645098,3
+bubbbble,20645098,5
+65415488,20645098,5
+45705723,20645098,5
+Fly123,20645098,4
+18081032,20645098,4
+50827685,20645098,3
+57818188,20645098,5
+wangyl_,20645098,4
+66682606,20645098,4
+52267687,20645098,5
+47534198,20645098,3
+nonoroazoro,20645098,5
+2979692,20645098,5
+43662683,20645098,5
+3707552,20645098,5
+AAGban,20645098,5
+jessedong,20645098,4
+134498032,20645098,4
+51888216,20645098,4
+yidaowang,20645098,3
+79891044,20645098,4
+45959791,20645098,3
+icerab,20645098,5
+51444963,20645098,4
+82572574,20645098,4
+55975844,20645098,4
+74862472,20645098,4
+44969749,20645098,3
+31269616,20645098,3
+3330105,20645098,3
+122268519,20645098,5
+Jewelyxy,20645098,4
+zhong13211,20645098,3
+yitingyanyu,20645098,3
+104551226,20645098,4
+zengkun100,20645098,5
+49237640,20645098,5
+63432491,20645098,3
+4676162,20645098,5
+miyaviyang,20645098,1
+50242818,20645098,5
+23321019,20645098,3
+pumpkindonkey,20645098,4
+44652503,20645098,4
+83667346,20645098,4
+dabianer,20645098,4
+chenxy92,20645098,-1
+56583743,20645098,4
+120121169,20645098,5
+57332584,20645098,5
+1519013,20645098,4
+49087212,20645098,5
+63998679,20645098,5
+32881100,20645098,4
+63211767,20645098,4
+42825111,20645098,2
+37862989,20645098,4
+80908164,20645098,4
+47554822,20645098,5
+sherry33,20645098,3
+57436067,20645098,3
+irene826,20645098,4
+catcathan,20645098,4
+128675043,20645098,5
+50275536,20645098,4
+39812333,20645098,3
+39120867,20645098,5
+60558554,20645098,3
+73811936,20645098,3
+1340751,20645098,3
+119288592,20645098,4
+47804762,20645098,4
+101983583,20645098,3
+flewhyouro,20645098,3
+48491449,20645098,4
+melentao,20645098,4
+65720842,20645098,5
+1805359,20645098,4
+yumuyou,20645098,5
+82629365,20645098,5
+blueapple0099,20645098,4
+104252458,20645098,5
+109328802,20645098,4
+44641385,20645098,5
+63137590,20645098,5
+1655091,20645098,4
+58932917,20645098,4
+85376575,20645098,3
+64253913,20645098,3
+65678886,20645098,3
+49443595,20645098,5
+65995981,20645098,4
+54771764,20645098,5
+79300639,20645098,5
+dzl15,20645098,3
+ballteda,20645098,2
+ballteda,20645098,2
+mikimumu,20645098,1
+zsqbgd,20645098,3
+121414792,20645098,2
+xiaoyatoufengzi,20645098,4
+relaispferd,20645098,2
+zjn050807,20645098,5
+102767054,20645098,5
+tequila7,20645098,4
+79782728,20645098,4
+beyo213,20645098,5
+51781693,20645098,4
+ala7lee,20645098,4
+91528271,20645098,4
+93708783,20645098,4
+kivachu,20645098,3
+49913112,20645098,3
+53734415,20645098,5
+baiyuanbao,20645098,4
+4014604,20645098,4
+42535612,20645098,3
+63003480,20645098,4
+51945340,20645098,5
+89723194,20645098,3
+56249828,20645098,5
+62780296,20645098,4
+tywan,20645098,5
+4679107,20645098,4
+83848433,20645098,5
+ochy,20645098,5
+some1one,20645098,3
+57482499,20645098,3
+2424966,20645098,5
+declee,20645098,3
+64710056,20645098,5
+josiezs,20645098,4
+1525174,20645098,5
+67024200,20645098,5
+seasidecity,20645098,5
+62559966,20645098,5
+49214799,20645098,5
+76999762,20645098,4
+44862070,20645098,4
+whoseLotus,20645098,3
+95529225,20645098,5
+61716471,20645098,3
+122749983,20645098,5
+itis-jia71,20645098,3
+48640337,20645098,5
+92261017,20645098,5
+133486624,20645098,4
+57285886,20645098,4
+4077141,20645098,3
+SeaLionYouth,20645098,5
+116782951,20645098,4
+Zmissuen,20645098,5
+93081094,20645098,4
+61503924,20645098,5
+yeppy,20645098,5
+46113187,20645098,3
+73831600,20645098,4
+OuTalK,20645098,5
+62825162,20645098,5
+eringarden,20645098,3
+4430908,20645098,1
+41869870,20645098,4
+63432071,20645098,5
+leizicn,20645098,5
+youngdreamer,20645098,1
+longlastingfad,20645098,4
+50269050,20645098,4
+LION8989,20645098,5
+54355152,20645098,4
+grace722,20645098,5
+52199886,20645098,3
+133403838,20645098,2
+viviatchi,20645098,4
+130978369,20645098,3
+50035534,20645098,5
+3528003,20645098,5
+73536867,20645098,5
+3887933,20645098,4
+C7chuqi,20645098,5
+youngsterstory,20645098,5
+119313507,20645098,-1
+64909616,20645098,4
+120892030,20645098,5
+39513476,20645098,4
+96200371,20645098,4
+128247761,20645098,5
+xd0812,20645098,3
+jijiayu,20645098,5
+120563382,20645098,5
+3301137,20645098,5
+77809977,20645098,5
+NicoleLibera,20645098,5
+hjaoxjl,20645098,5
+xqyamour,20645098,3
+53919202,20645098,4
+moboyu,20645098,5
+moboyu,20645098,5
+67878115,20645098,3
+75921976,20645098,4
+etherhejia,20645098,4
+princegemini,20645098,5
+hayeke2325156,20645098,3
+65161284,20645098,5
+116778035,20645098,5
+54000993,20645098,5
+54782824,20645098,2
+hey__summer,20645098,5
+fineJadeChan,20645098,5
+98417762,20645098,5
+freedom-seeker,20645098,4
+alicie,20645098,3
+81564048,20645098,1
+116642959,20645098,4
+63292246,20645098,4
+85119712,20645098,5
+115547734,20645098,3
+123274058,20645098,5
+blinglu,20645098,3
+49248736,20645098,2
+133475193,20645098,5
+waWa.tomato,20645098,3
+44816197,20645098,4
+SharonShining,20645098,4
+52066810,20645098,5
+65107995,20645098,4
+122560765,20645098,4
+121268267,20645098,4
+84340226,20645098,4
+43498488,20645098,5
+65055905,20645098,5
+51920859,20645098,4
+66079002,20645098,4
+97655546,20645098,5
+35528479,20645098,4
+1542578,20645098,5
+moooote,20645098,5
+73990623,20645098,-1
+52841780,20645098,5
+25808281,20645098,5
+71833015,20645098,5
+133270096,20645098,4
+30804612,20645098,3
+up117,20645098,4
+SaintDevil,20645098,4
+augusttt,20645098,4
+42330913,20645098,4
+135175217,20645098,4
+mudingcatshere,20645098,-1
+136029895,20645098,4
+60432635,20645098,4
+79193917,20645098,5
+62640823,20645098,5
+83389859,20645098,5
+formula1forever,20645098,4
+66757830,20645098,3
+Anesthesiawd,20645098,5
+51531512,20645098,4
+goowl,20645098,4
+57416043,20645098,5
+allaboutamo,20645098,3
+wangying2325,20645098,5
+franling,20645098,5
+lys613,20645098,5
+52090388,20645098,4
+120962190,20645098,4
+claireloveyou,20645098,1
+saindvy,20645098,5
+129626635,20645098,4
+39772031,20645098,-1
+vicky_vampire,20645098,4
+graygem,20645098,2
+52293862,20645098,5
+53433843,20645098,5
+Viannie_CXY,20645098,4
+75332945,20645098,4
+48781590,20645098,4
+50199295,20645098,4
+57545593,20645098,4
+51571110,20645098,2
+67619742,20645098,3
+Leony_,20645098,5
+125481969,20645098,5
+103672023,20645098,4
+59214894,20645098,3
+85398836,20645098,1
+crow-wuya,20645098,4
+70204712,20645098,3
+doria1981,20645098,5
+fishgor,20645098,4
+cyberpwz2002,20645098,5
+56392220,20645098,3
+102626556,20645098,4
+kinokoneko,20645098,5
+131927527,20645098,4
+isYoko,20645098,5
+47060979,20645098,5
+amygu940428,20645098,5
+98527998,20645098,4
+2766948,20645098,3
+tmd210,20645098,4
+luxury_lixi,20645098,5
+135502411,20645098,5
+chenbing,20645098,3
+lemonmeow,20645098,5
+80354020,20645098,4
+eleven171,20645098,5
+122832846,20645098,5
+89838973,20645098,5
+1353634,20645098,3
+4541082,20645098,5
+121520114,20645098,1
+84250012,20645098,5
+zhuzaixuanyabia,20645098,3
+133532655,20645098,5
+4224712,20645098,1
+56182429,20645098,4
+zawlwyf,20645098,5
+Pour_toi,20645098,5
+46865330,20645098,4
+42443171,20645098,5
+bouquet_msj,20645098,4
+27898838,20645098,2
+63399051,20645098,5
+wslhul,20645098,5
+42307079,20645098,3
+53322275,20645098,3
+79847046,20645098,3
+bay560,20645098,2
+lovely_love,20645098,4
+59073966,20645098,5
+91479757,20645098,4
+4527709,20645098,4
+136241219,20645098,4
+56783238,20645098,3
+Astro-Ho,20645098,2
+skyjadebear,20645098,4
+120872335,20645098,4
+4258722,20645098,4
+emolaw,20645098,5
+59102121,20645098,4
+128736430,20645098,3
+MaggieFA,20645098,4
+80782547,20645098,5
+57626964,20645098,5
+66389222,20645098,5
+125309329,20645098,4
+43547129,20645098,3
+2182116,20645098,4
+cuican,20645098,5
+born2die,20645098,4
+51739908,20645098,4
+shiyiyao,20645098,4
+64392106,20645098,5
+songai0609,20645098,3
+27028067,20645098,4
+103629204,20645098,3
+103629204,20645098,3
+Lesley_11,20645098,5
+69146144,20645098,5
+59384667,20645098,5
+50992387,20645098,5
+77210486,20645098,4
+2656956,20645098,5
+82219820,20645098,5
+44983850,20645098,5
+65573770,20645098,2
+1929074,20645098,5
+131829692,20645098,5
+41686022,20645098,4
+96662969,20645098,4
+Pshdakota,20645098,2
+4882058,20645098,5
+hikkii,20645098,3
+91238295,20645098,5
+lowinvae,20645098,5
+68982698,20645098,3
+68982698,20645098,3
+zlxcedric,20645098,4
+130319108,20645098,3
+X1L1N,20645098,5
+34125689,20645098,3
+14409304,20645098,3
+91147741,20645098,5
+36742818,20645098,4
+4106522,20645098,3
+61718644,20645098,3
+69655202,20645098,5
+78578406,20645098,4
+135317067,20645098,3
+127378341,20645098,5
+59367965,20645098,4
+46912263,20645098,5
+lihl,20645098,4
+62490945,20645098,5
+42706610,20645098,5
+45991981,20645098,2
+cjchenjue,20645098,4
+sweetmiracle,20645098,4
+wtks,20645098,5
+Dsmilence,20645098,-1
+BlossomBlue,20645098,4
+yaogunbabi708,20645098,5
+34500753,20645098,5
+aurawang95,20645098,2
+73466506,20645098,4
+rongrongjun,20645098,5
+24699373,20645098,3
+fleckfleck,20645098,2
+1362647,20645098,5
+29776503,20645098,4
+96801913,20645098,5
+3346015,20645098,3
+64612843,20645098,5
+48859035,20645098,4
+72588392,20645098,5
+73804612,20645098,5
+127406348,20645098,2
+63563763,20645098,-1
+45749483,20645098,4
+56890909,20645098,5
+120790874,20645098,-1
+131073049,20645098,5
+135932861,20645098,3
+wfx9332,20645098,4
+76373102,20645098,4
+56407287,20645098,5
+47844034,20645098,5
+cris7ss,20645098,3
+afeidemimi,20645098,4
+caizichen,20645098,5
+v1wanghuang,20645098,3
+79857577,20645098,-1
+82564566,20645098,5
+135012811,20645098,5
+melon1001,20645098,4
+72048806,20645098,5
+2750696,20645098,5
+indoors,20645098,-1
+56514339,20645098,5
+129633404,20645098,4
+92057558,20645098,5
+76823646,20645098,5
+qino,20645098,5
+84928663,20645098,5
+130315248,20645098,3
+120605718,20645098,5
+68317683,20645098,5
+93224854,20645098,3
+raraphael,20645098,4
+yjhsherry,20645098,4
+53558102,20645098,5
+17329905,20645098,4
+50652572,20645098,5
+2595920,20645098,5
+chiu-chiu,20645098,5
+54032989,20645098,4
+Michael18,20645098,-1
+q798929021,20645098,5
+83949510,20645098,4
+44821238,20645098,4
+YuTianTian,20645098,5
+69127375,20645098,2
+54033017,20645098,4
+63225304,20645098,3
+132348134,20645098,3
+42918463,20645098,3
+64173822,20645098,4
+duzhouchi,20645098,4
+128590668,20645098,5
+45524142,20645098,5
+35404268,20645098,3
+6987390,20645098,3
+125316227,20645098,4
+61349784,20645098,5
+82462239,20645098,4
+72656578,20645098,5
+iswitchon,20645098,5
+linfang0086,20645098,3
+aka-dian,20645098,5
+59007012,20645098,5
+mumu0400309,20645098,5
+3474517,20645098,3
+53004765,20645098,-1
+4468522,20645098,5
+51931928,20645098,5
+zuoxiaoming,20645098,5
+46642782,20645098,5
+52284138,20645098,1
+zhangdanbt,20645098,4
+1812778,20645098,4
+network,20645098,5
+135145248,20645098,5
+haoheart,20645098,4
+91578532,20645098,3
+czy940903,20645098,5
+feixianggod,20645098,5
+1585143,20645098,3
+hanqiu1995,20645098,4
+3112705,20645098,4
+SafeHaven,20645098,4
+doppio,20645098,4
+honahlee,20645098,5
+47787216,20645098,3
+48821646,20645098,5
+62546651,20645098,4
+3843442,20645098,4
+ohthursday,20645098,4
+why20061108,20645098,3
+61060272,20645098,3
+gujingxue,20645098,5
+60199001,20645098,-1
+132359473,20645098,5
+135475929,20645098,4
+44169934,20645098,5
+72628748,20645098,5
+46737056,20645098,1
+53608672,20645098,5
+90146858,20645098,5
+62221934,20645098,4
+Dison-cheng,20645098,5
+49455574,20645098,5
+127509812,20645098,5
+Ertu,20645098,4
+3844441,20645098,5
+57486658,20645098,5
+rincal1203,20645098,5
+TJ36,20645098,3
+81610597,20645098,3
+Dumplinging,20645098,5
+detectivemmhy,20645098,4
+59684425,20645098,4
+52792844,20645098,3
+56857148,20645098,5
+squaremc,20645098,4
+44349387,20645098,4
+39824986,20645098,5
+he3764,20645098,4
+dcly,20645098,5
+4427458,20645098,3
+36429054,20645098,5
+89021832,20645098,5
+72101661,20645098,4
+62153310,20645098,4
+mynange,20645098,3
+121681116,20645098,2
+cantona_x,20645098,4
+three354,20645098,2
+90985737,20645098,3
+121299325,20645098,2
+jingnian0807,20645098,5
+32835447,20645098,4
+ckino,20645098,2
+48958931,20645098,4
+53706093,20645098,4
+122669942,20645098,4
+49133007,20645098,4
+46431893,20645098,4
+3555700,20645098,5
+28163713,20645098,4
+50410126,20645098,5
+65114506,20645098,3
+121435099,20645098,4
+60862702,20645098,3
+72123222,20645098,4
+byandong,20645098,4
+61985343,20645098,5
+133401752,20645098,4
+69465872,20645098,-1
+4135099,20645098,5
+81074492,20645098,5
+99669308,20645098,4
+65440718,20645098,5
+vitajj,20645098,3
+44727941,20645098,3
+81101693,20645098,4
+cainroziel,20645098,5
+mola,20645098,4
+cellurc,20645098,4
+64996637,20645098,5
+34156068,20645098,5
+133414531,20645098,4
+UNIOOOO,20645098,5
+56580928,20645098,5
+yzkk821,20645098,4
+47792262,20645098,4
+Jechina,20645098,2
+dayclose,20645098,5
+Aug.Q,20645098,-1
+yangyanyi_ash,20645098,5
+64454454,20645098,4
+129654351,20645098,5
+88729333,20645098,4
+51213478,20645098,5
+49139036,20645098,5
+52004957,20645098,4
+75878406,20645098,3
+54704732,20645098,3
+129472211,20645098,2
+52933532,20645098,1
+70674305,20645098,4
+timeknife,20645098,5
+yangziqiang,20645098,3
+42651079,20645098,4
+cybenny,20645098,5
+59514938,20645098,5
+Maqqieyaoyao,20645098,5
+87381547,20645098,3
+53075236,20645098,3
+45274666,20645098,5
+71294112,20645098,4
+81616133,20645098,4
+xx2086,20645098,5
+doraci,20645098,4
+bravefish,20645098,4
+80353279,20645098,4
+48631155,20645098,3
+wh396011051,20645098,4
+136100094,20645098,3
+39696918,20645098,5
+122491642,20645098,3
+39996045,20645098,4
+tedan,20645098,4
+Quattuor,20645098,2
+127690553,20645098,3
+122119897,20645098,5
+81788332,20645098,4
+zyx321,20645098,5
+itzijing,20645098,3
+honqee,20645098,3
+54989059,20645098,3
+131466397,20645098,5
+83601520,20645098,3
+methuselah,20645098,1
+sugarmao,20645098,5
+132009485,20645098,5
+36884170,20645098,4
+10596327,20645098,4
+NicoleDR,20645098,3
+66749502,20645098,4
+randeic,20645098,3
+minisle,20645098,3
+sachi227,20645098,5
+lianwei,20645098,1
+123612947,20645098,2
+moonlightshit,20645098,4
+SummerDuan,20645098,4
+76999200,20645098,4
+61366288,20645098,4
+62370860,20645098,3
+131606948,20645098,3
+eggsrice,20645098,4
+88211283,20645098,4
+53768377,20645098,4
+63264576,20645098,4
+70451060,20645098,4
+125165455,20645098,4
+16918858,20645098,4
+4404766,20645098,3
+60114596,20645098,4
+51663220,20645098,3
+3507179,20645098,4
+paopao221,20645098,3
+iSaw11021,20645098,5
+36541079,20645098,3
+3880012,20645098,4
+87655848,20645098,4
+50040754,20645098,3
+61946261,20645098,5
+132954430,20645098,5
+63622280,20645098,4
+48332324,20645098,5
+94801744,20645098,1
+1351220,20645098,-1
+Dark_blue_WH,20645098,4
+81846719,20645098,5
+2704277,20645098,4
+62461088,20645098,5
+bingkuaizhuiluo,20645098,4
+shenfeiyan,20645098,4
+daladida,20645098,4
+44221871,20645098,3
+1061046,20645098,5
+4011962,20645098,4
+2445824,20645098,3
+spaceli,20645098,4
+48704764,20645098,5
+kennyzz,20645098,5
+eyesi,20645098,3
+saber323,20645098,5
+113988498,20645098,5
+51563212,20645098,5
+89997882,20645098,4
+73530411,20645098,4
+121601332,20645098,2
+fcleung,20645098,5
+51426219,20645098,5
+shelly_rr,20645098,5
+tjh0473,20645098,5
+56911400,20645098,5
+38494486,20645098,5
+126750722,20645098,4
+48379365,20645098,2
+34174318,20645098,3
+60858101,20645098,5
+ulysseus-2,20645098,4
+foreverwait,20645098,5
+31743160,20645098,4
+59005410,20645098,4
+punkroyal,20645098,4
+60128212,20645098,5
+32113946,20645098,4
+92633728,20645098,4
+isellechane,20645098,4
+ivanopt,20645098,5
+mangosteen28,20645098,5
+108289346,20645098,5
+7400552,20645098,4
+47639252,20645098,5
+eastge,20645098,4
+77067030,20645098,4
+87070126,20645098,4
+yuanlovenic,20645098,5
+lilithyang,20645098,2
+AmenGeb,20645098,5
+116727584,20645098,4
+gxyvonne,20645098,3
+memecha1314,20645098,4
+MaxMoon,20645098,4
+3277293,20645098,4
+92259699,20645098,3
+71644727,20645098,3
+62388980,20645098,4
+94017410,20645098,4
+101633858,20645098,4
+52190163,20645098,5
+ayannagai,20645098,4
+58158245,20645098,3
+jiang1365,20645098,5
+dabeibao,20645098,4
+92805867,20645098,4
+Diyi_Joe.,20645098,3
+mercury0302,20645098,5
+59858251,20645098,5
+52103871,20645098,5
+twinkle213,20645098,4
+97416681,20645098,3
+Rubbish_,20645098,5
+raintingfan,20645098,3
+104823115,20645098,4
+93372123,20645098,3
+dorothyzhang,20645098,3
+57880300,20645098,4
+130365312,20645098,5
+53589909,20645098,4
+42820544,20645098,5
+little_cupid,20645098,2
+133414001,20645098,4
+dehuaer,20645098,5
+79839259,20645098,4
+rainynut,20645098,3
+81619869,20645098,4
+55634315,20645098,5
+nanyin90,20645098,4
+101280968,20645098,4
+matrixliberty,20645098,5
+48475794,20645098,3
+dirty_bass,20645098,5
+clairez,20645098,3
+130438496,20645098,4
+75340616,20645098,3
+degasd,20645098,5
+83989454,20645098,4
+53612447,20645098,4
+coolwhite,20645098,4
+minoindemo,20645098,3
+pyw-sunshine,20645098,5
+jeady2311,20645098,4
+eill,20645098,1
+luvndisaster,20645098,5
+89454508,20645098,5
+lygzhangnan,20645098,4
+liqiru1110,20645098,5
+Bening,20645098,5
+qiaqiama,20645098,5
+hunhunsui,20645098,3
+chlloe,20645098,5
+lycheexuan,20645098,5
+41799655,20645098,5
+Side,20645098,5
+49893438,20645098,4
+luciachang,20645098,4
+jibenbanana,20645098,4
+57775883,20645098,4
+ohmydearvv,20645098,5
+lwl8823,20645098,4
+31854340,20645098,4
+72905704,20645098,5
+thomsonkoo,20645098,3
+32995807,20645098,3
+53987057,20645098,5
+44436266,20645098,5
+48022266,20645098,4
+16038998,20645098,4
+83731878,20645098,4
+116473919,20645098,4
+69251373,20645098,3
+54033660,20645098,4
+58323332,20645098,4
+rainbowwww,20645098,4
+vitamin227,20645098,2
+54474181,20645098,5
+31885459,20645098,5
+xuchuncaroline,20645098,5
+40081722,20645098,5
+49025260,20645098,5
+27900708,20645098,4
+qd724945697,20645098,4
+9089942,20645098,2
+62971840,20645098,5
+undecember,20645098,5
+sunhuaning,20645098,5
+47525831,20645098,4
+darlingm,20645098,4
+57990398,20645098,-1
+58630530,20645098,5
+3766473,20645098,4
+xukaibin,20645098,5
+70682305,20645098,4
+124764727,20645098,4
+135355635,20645098,4
+134692898,20645098,4
+ALLURER,20645098,5
+48991320,20645098,4
+4405006,20645098,-1
+sufangfang,20645098,4
+mafially,20645098,4
+132959097,20645098,3
+132603645,20645098,4
+37905941,20645098,3
+chenny515,20645098,5
+floadin,20645098,5
+49397724,20645098,5
+2562115,20645098,4
+124595459,20645098,5
+65724587,20645098,3
+53546400,20645098,3
+25585138,20645098,4
+80398385,20645098,3
+131303918,20645098,1
+104605800,20645098,5
+hanjinxuan,20645098,5
+cinyo0312,20645098,5
+55559965,20645098,5
+51890472,20645098,3
+66168257,20645098,4
+45864577,20645098,4
+58764574,20645098,5
+3846319,20645098,3
+60411524,20645098,-1
+120342469,20645098,5
+guliguo2046,20645098,4
+osg,20645098,-1
+depp333,20645098,4
+AllenZZhao,20645098,5
+28357214,20645098,5
+dourface,20645098,3
+64728959,20645098,5
+Elfie,20645098,5
+93143338,20645098,4
+43698408,20645098,4
+64136344,20645098,4
+icekiller,20645098,5
+19296065,20645098,4
+80311414,20645098,5
+37092336,20645098,5
+abelleba,20645098,1
+datouma,20645098,-1
+64861312,20645098,4
+48875971,20645098,5
+3079236,20645098,3
+59391720,20645098,5
+47226412,20645098,4
+2177082,20645098,-1
+134340947,20645098,5
+AdagioTotoro,20645098,5
+galactus,20645098,-1
+2737013,20645098,2
+43296422,20645098,4
+48689695,20645098,4
+CKyan,20645098,2
+51481503,20645098,4
+57811548,20645098,3
+3850230,20645098,5
+3146294,20645098,5
+53140569,20645098,5
+123776993,20645098,2
+58399217,20645098,3
+45981424,20645098,2
+49329563,20645098,4
+131038411,20645098,5
+aarivy,20645098,4
+127947406,20645098,3
+KyraYang,20645098,3
+43845603,20645098,5
+76327951,20645098,5
+135328500,20645098,2
+50977532,20645098,5
+130623512,20645098,5
+dieuma,20645098,4
+80275782,20645098,5
+68918623,20645098,4
+catherineja,20645098,3
+45536018,20645098,4
+kaxidou,20645098,5
+BURIALBLACK,20645098,4
+twelveoak,20645098,-1
+128691816,20645098,5
+48419960,20645098,3
+GracieG,20645098,3
+2233141,20645098,5
+jenniferxiao,20645098,4
+DDingLucky,20645098,3
+gu2evit,20645098,4
+moonwantspie,20645098,3
+82984225,20645098,2
+sj880226,20645098,4
+11704687,20645098,4
+136213601,20645098,5
+136069692,20645098,4
+136213414,20645098,5
+oppih,20645098,4
+103106457,20645098,5
+107739432,20645098,5
+cold_sophie,20645098,5
+50969962,20645098,5
+59847342,20645098,5
+Emily-LYF,20645098,5
+92016654,20645098,4
+52918110,20645098,4
+65663691,20645098,4
+47285151,20645098,4
+vickyxiaoyin,20645098,4
+67965473,20645098,5
+71887540,20645098,5
+Givan,20645098,5
+TiM2012start,20645098,5
+aprilxtt,20645098,3
+117063275,20645098,4
+43986034,20645098,5
+zayaza,20645098,3
+33544921,20645098,4
+47701435,20645098,3
+levone,20645098,3
+32433633,20645098,3
+monoxue,20645098,5
+53420495,20645098,5
+withharrypotter,20645098,4
+77449073,20645098,4
+49748358,20645098,-1
+samkaka,20645098,5
+101206978,20645098,3
+flyingwitch,20645098,5
+sweather,20645098,5
+61184354,20645098,5
+97646321,20645098,4
+63576554,20645098,5
+runningaway11,20645098,4
+30569646,20645098,4
+DGHL666666,20645098,5
+41307413,20645098,5
+suiyifm,20645098,4
+44987741,20645098,3
+127299151,20645098,4
+39684033,20645098,4
+samcoco,20645098,5
+babykor,20645098,5
+babykor,20645098,5
+36359450,20645098,4
+64767578,20645098,5
+103251122,20645098,5
+zlljxm,20645098,3
+60468152,20645098,4
+49135452,20645098,4
+63337821,20645098,4
+2843086,20645098,4
+120955323,20645098,5
+4506778,20645098,5
+loveabuforever,20645098,1
+48497184,20645098,4
+103387845,20645098,4
+lynn_500,20645098,-1
+47368196,20645098,5
+80667366,20645098,3
+mancyann,20645098,4
+52399993,20645098,3
+88254640,20645098,5
+50842397,20645098,1
+85006332,20645098,5
+Ivy0612,20645098,4
+74230834,20645098,5
+huosunan,20645098,3
+48441251,20645098,5
+129411152,20645098,5
+81864809,20645098,3
+2320595,20645098,5
+xiaxuexue,20645098,5
+xiarijinghao,20645098,4
+3423357,20645098,3
+DERRICK_ROSE,20645098,3
+59110015,20645098,4
+tomevivid,20645098,3
+54530898,20645098,4
+61328957,20645098,4
+48833378,20645098,5
+39604999,20645098,5
+61509749,20645098,4
+61509749,20645098,4
+113977777,20645098,4
+57583046,20645098,4
+October21,20645098,4
+66771614,20645098,3
+2733047,20645098,4
+4431102,20645098,4
+49715734,20645098,5
+38357495,20645098,2
+53262397,20645098,4
+65589834,20645098,4
+smilevicky,20645098,4
+kissyoutonight,20645098,5
+3849549,20645098,3
+flyeggjiang,20645098,5
+75465209,20645098,4
+l547302673,20645098,4
+64245643,20645098,3
+52830779,20645098,4
+3420591,20645098,5
+82624141,20645098,5
+4326487,20645098,5
+zxin94264,20645098,5
+lonelyalex,20645098,3
+judeyoung,20645098,3
+96654904,20645098,4
+41833499,20645098,4
+135975588,20645098,4
+43115240,20645098,5
+dorisqing,20645098,5
+61462956,20645098,4
+may1ove,20645098,5
+64523934,20645098,5
+nearlloveyou,20645098,3
+50095584,20645098,5
+69124222,20645098,5
+92809880,20645098,4
+49125983,20645098,4
+weizen,20645098,5
+tbubo,20645098,5
+moyee_sky,20645098,5
+101847790,20645098,4
+120286837,20645098,4
+66360674,20645098,1
+64805331,20645098,5
+3982564,20645098,5
+135844072,20645098,4
+VYSE,20645098,4
+44500307,20645098,3
+74991431,20645098,5
+61805853,20645098,4
+70661446,20645098,4
+78912431,20645098,5
+52573676,20645098,3
+whitedove,20645098,1
+73815229,20645098,4
+aprilray,20645098,4
+36633049,20645098,3
+revive-H,20645098,3
+12822970,20645098,4
+susanna_love,20645098,5
+3616042,20645098,4
+29484067,20645098,5
+50837451,20645098,4
+qiuyyyt,20645098,5
+57459956,20645098,5
+Eileke,20645098,4
+45836259,20645098,5
+91031871,20645098,5
+hanhuipsy,20645098,5
+ryx0316,20645098,3
+100308768,20645098,5
+vickysunday,20645098,4
+58816486,20645098,5
+80209748,20645098,4
+hengyueofapril,20645098,-1
+Pame1a,20645098,4
+cjsjason,20645098,3
+54387469,20645098,5
+3130809,20645098,3
+wangfendou1,20645098,1
+36627775,20645098,-1
+76996269,20645098,5
+65293080,20645098,4
+calmejing,20645098,3
+61350699,20645098,4
+fre7dom,20645098,4
+79139853,20645098,4
+81660493,20645098,5
+alicenana,20645098,5
+61593178,20645098,5
+69800828,20645098,4
+115725912,20645098,5
+66753667,20645098,-1
+28361024,20645098,3
+takahaishi9,20645098,5
+65927895,20645098,4
+61186332,20645098,4
+cctongxue,20645098,3
+56981380,20645098,5
+76666932,20645098,5
+52951268,20645098,5
+25329087,20645098,5
+70607492,20645098,2
+49249881,20645098,3
+myfan,20645098,4
+129742273,20645098,5
+101508207,20645098,5
+phyllis_withu,20645098,2
+35815787,20645098,3
+xylonapp,20645098,5
+78488932,20645098,5
+echo0607,20645098,4
+62945273,20645098,5
+66538952,20645098,5
+smiletome,20645098,5
+48526181,20645098,5
+7651105,20645098,4
+CZ1011,20645098,3
+78377948,20645098,5
+27760761,20645098,5
+134128280,20645098,4
+97302377,20645098,3
+63446036,20645098,5
+47243761,20645098,5
+131523305,20645098,3
+42932797,20645098,4
+56441549,20645098,4
+40163189,20645098,5
+52906969,20645098,3
+53492535,20645098,3
+ChicWeirdo,20645098,4
+131849470,20645098,4
+lianadreaming,20645098,3
+74714802,20645098,4
+sugar710,20645098,4
+lmlwahaha,20645098,5
+linkoalways,20645098,2
+124732876,20645098,4
+58289345,20645098,3
+122000521,20645098,4
+cpcf,20645098,5
+Grey1128,20645098,4
+1922616,20645098,3
+96042555,20645098,4
+56901115,20645098,4
+81411362,20645098,5
+1664175,20645098,4
+43474767,20645098,5
+4733262,20645098,4
+angellailai,20645098,4
+62086660,20645098,5
+40258007,20645098,5
+67282185,20645098,3
+neverlander,20645098,3
+Eremita_L,20645098,5
+3840143,20645098,4
+84077935,20645098,2
+evaine,20645098,5
+taylorman,20645098,4
+46702354,20645098,5
+65916785,20645098,4
+83166349,20645098,5
+antivirus,20645098,5
+77576075,20645098,3
+62255857,20645098,5
+2364795,20645098,3
+104261144,20645098,3
+qinyouxuan,20645098,4
+Creep_v,20645098,4
+icedolly,20645098,4
+83133983,20645098,5
+54548386,20645098,4
+57109319,20645098,3
+sosisarah,20645098,2
+48792175,20645098,5
+snowcolour,20645098,3
+60020373,20645098,-1
+dearestleslie,20645098,5
+trysta_lyu,20645098,5
+52144889,20645098,4
+teyahao,20645098,5
+40580620,20645098,5
+97659248,20645098,4
+2783035,20645098,3
+gexiarong,20645098,4
+50325744,20645098,4
+hellozyn,20645098,3
+Lizzie14,20645098,4
+46289707,20645098,4
+48777727,20645098,4
+129199707,20645098,4
+yukakiwi,20645098,3
+76153086,20645098,3
+66689671,20645098,4
+106105710,20645098,4
+monanc,20645098,5
+lvhobbitdarren,20645098,3
+lazypony,20645098,5
+66680881,20645098,5
+annie-bean,20645098,5
+dovefly,20645098,3
+89640678,20645098,1
+qiqijing,20645098,5
+39007214,20645098,5
+Morta13,20645098,5
+67182363,20645098,5
+120147440,20645098,3
+wangyi2011,20645098,4
+82917840,20645098,5
+77060201,20645098,5
+48521258,20645098,3
+litterearth,20645098,5
+77065352,20645098,5
+53395117,20645098,5
+91652819,20645098,5
+plants,20645098,3
+3512045,20645098,4
+hopefulday,20645098,5
+simpleway,20645098,4
+50398794,20645098,4
+liubanban,20645098,1
+81798635,20645098,5
+pertmm,20645098,4
+16959294,20645098,4
+2722876,20645098,1
+2842505,20645098,3
+rq1110,20645098,5
+kimonic,20645098,5
+39014074,20645098,4
+135297886,20645098,4
+120654562,20645098,4
+104519003,20645098,4
+1454027,20645098,4
+45056058,20645098,5
+callmev,20645098,4
+108087146,20645098,5
+124787554,20645098,5
+4026275,20645098,5
+130159674,20645098,4
+mississluu,20645098,4
+62358486,20645098,5
+49719620,20645098,5
+1736294,20645098,5
+131818558,20645098,5
+52087392,20645098,4
+2256967,20645098,5
+47772631,20645098,4
+77820849,20645098,5
+73382181,20645098,5
+91815909,20645098,4
+rigelong,20645098,5
+Young.forU,20645098,4
+36619226,20645098,4
+69787476,20645098,5
+hnyyxy,20645098,5
+65808735,20645098,3
+2253061,20645098,5
+naivekook,20645098,4
+sugarjojo,20645098,4
+ll_selbst,20645098,3
+angelmagazine,20645098,1
+69207631,20645098,4
+77200765,20645098,5
+2901431,20645098,3
+48065738,20645098,5
+63924223,20645098,4
+45590222,20645098,4
+6186981,20645098,5
+tartarus0719,20645098,4
+4058668,20645098,3
+miykok,20645098,5
+38357024,20645098,4
+53486329,20645098,4
+jiangyuhang,20645098,3
+120782002,20645098,4
+72891921,20645098,3
+anguijia,20645098,2
+130800910,20645098,4
+65364014,20645098,4
+uhziel,20645098,4
+65915294,20645098,4
+61944074,20645098,5
+xiaochi,20645098,5
+87079954,20645098,-1
+1295097,20645098,4
+43867742,20645098,3
+49813166,20645098,3
+yikobest,20645098,5
+56837111,20645098,4
+127589546,20645098,3
+KaYcily,20645098,4
+57924831,20645098,1
+xilouchen,20645098,4
+40911852,20645098,5
+82926098,20645098,5
+StarAnice,20645098,4
+130347315,20645098,4
+63600934,20645098,4
+xisme,20645098,5
+43786841,20645098,5
+108394568,20645098,3
+70307096,20645098,4
+ayake,20645098,4
+3583797,20645098,3
+125317173,20645098,1
+122686185,20645098,5
+53984450,20645098,5
+liyixuanorz,20645098,3
+14265657,20645098,5
+75380534,20645098,5
+58129926,20645098,5
+krabs,20645098,4
+haimian1077,20645098,5
+misschonger,20645098,5
+63483846,20645098,5
+Abby_ZLJ,20645098,4
+xiangxiao,20645098,4
+73866765,20645098,3
+71837063,20645098,2
+40027917,20645098,5
+4714593,20645098,4
+130561733,20645098,5
+shanbaby,20645098,4
+frais,20645098,3
+47170402,20645098,3
+27517816,20645098,4
+44761018,20645098,4
+135705904,20645098,5
+yangxiao4,20645098,5
+49041095,20645098,3
+cheapchic,20645098,3
+fanfouxiong,20645098,4
+82930682,20645098,4
+84741817,20645098,4
+50770418,20645098,5
+alai29,20645098,5
+62932478,20645098,3
+2394327,20645098,4
+77850068,20645098,4
+115629295,20645098,4
+tatabox,20645098,2
+71063649,20645098,5
+cullerrrrchen,20645098,5
+oranicge,20645098,5
+62918850,20645098,5
+zhj_810,20645098,5
+64129488,20645098,5
+103612490,20645098,5
+wheRe,20645098,5
+84569301,20645098,2
+39095423,20645098,5
+130647398,20645098,5
+2053210,20645098,4
+36878098,20645098,5
+3064539,20645098,5
+luluno,20645098,4
+76117404,20645098,5
+tomerlaw,20645098,4
+65565016,20645098,5
+27281908,20645098,5
+jetamit,20645098,-1
+16604198,20645098,4
+DayoChaplin,20645098,3
+lizhi6331,20645098,4
+46056151,20645098,5
+48006997,20645098,5
+133149817,20645098,2
+47214460,20645098,4
+mio1989,20645098,4
+43766729,20645098,5
+qiao517,20645098,3
+5588059,20645098,4
+Minaptx4869,20645098,4
+tyoukinn,20645098,5
+48150876,20645098,4
+58833358,20645098,5
+49177179,20645098,-1
+1991649,20645098,1
+otakichi,20645098,5
+53888961,20645098,5
+chengmingxia,20645098,4
+42177994,20645098,2
+laozo,20645098,3
+52531693,20645098,4
+rehin,20645098,4
+46948622,20645098,5
+120485715,20645098,5
+41352480,20645098,4
+danicahee,20645098,3
+70034039,20645098,4
+113992757,20645098,5
+DY9174,20645098,5
+toddzhou,20645098,4
+57566137,20645098,3
+102602713,20645098,5
+LasciatemiMorir,20645098,4
+102801550,20645098,5
+115974574,20645098,5
+lianshengruci,20645098,4
+81519024,20645098,3
+jeasy725,20645098,4
+summerchocolate,20645098,4
+43157559,20645098,5
+wangxuejiao1988,20645098,3
+121798050,20645098,3
+60988585,20645098,4
+4560593,20645098,4
+yubaozilee,20645098,4
+44865600,20645098,5
+viviensong,20645098,5
+121398261,20645098,5
+28410778,20645098,4
+27945420,20645098,-1
+70850538,20645098,2
+92999358,20645098,5
+87556531,20645098,5
+92562855,20645098,4
+121468796,20645098,3
+33402587,20645098,5
+lyuwen,20645098,4
+ceh19930603,20645098,4
+45623662,20645098,5
+agassiwpx,20645098,5
+49543670,20645098,5
+57195945,20645098,3
+cwdtq,20645098,3
+3483729,20645098,3
+42757817,20645098,5
+gongfang3,20645098,5
+lyy819,20645098,3
+zhaimozi,20645098,5
+66171138,20645098,5
+dr_floyd,20645098,-1
+66576486,20645098,4
+56419266,20645098,3
+60096447,20645098,5
+1394123,20645098,5
+57698084,20645098,3
+78437206,20645098,4
+64328354,20645098,4
+fluency1314,20645098,4
+69296860,20645098,5
+4495771,20645098,3
+jiaming102,20645098,5
+121433358,20645098,4
+wanglizhi2014,20645098,5
+3427535,20645098,4
+nelatever,20645098,-1
+80797429,20645098,4
+56136563,20645098,5
+50451911,20645098,5
+yuh17,20645098,1
+90804048,20645098,5
+49372436,20645098,5
+53329015,20645098,3
+Utopia.YY,20645098,5
+rainypie,20645098,4
+72820166,20645098,5
+42469083,20645098,4
+niubinuo,20645098,4
+127950412,20645098,5
+56068657,20645098,3
+52140771,20645098,5
+87855895,20645098,2
+28313985,20645098,3
+75115896,20645098,5
+52958278,20645098,5
+52674525,20645098,3
+hexi1,20645098,3
+120490975,20645098,5
+39480063,20645098,5
+35360651,20645098,4
+3254368,20645098,3
+52846055,20645098,4
+60870044,20645098,3
+salasalasalala,20645098,5
+48812858,20645098,5
+71764835,20645098,4
+tometojang,20645098,5
+1937088,20645098,4
+58571573,20645098,4
+devaLawrence,20645098,5
+73709425,20645098,3
+44409988,20645098,4
+58975463,20645098,5
+60841803,20645098,5
+xunwendy,20645098,4
+Hayley_Tsu,20645098,-1
+badaalle,20645098,3
+momisa,20645098,5
+zhangnawind,20645098,5
+115692355,20645098,5
+1155470,20645098,3
+124514675,20645098,5
+66824818,20645098,4
+4855309,20645098,4
+64135957,20645098,5
+yivi,20645098,4
+124930103,20645098,4
+124930103,20645098,4
+121088563,20645098,5
+54096060,20645098,4
+hommy,20645098,3
+49864044,20645098,4
+87909422,20645098,3
+57905872,20645098,4
+kcu,20645098,4
+79559178,20645098,3
+102906934,20645098,5
+73474090,20645098,5
+zhangreeki,20645098,5
+yangchuqi,20645098,4
+73741113,20645098,4
+54784241,20645098,5
+67388709,20645098,5
+yoky,20645098,3
+104777463,20645098,4
+GingerWang,20645098,5
+singingwheat,20645098,2
+singingwheat,20645098,2
+Larissa_nano,20645098,5
+63970518,20645098,4
+48861105,20645098,5
+randidianying,20645098,4
+61951790,20645098,3
+25664582,20645098,4
+128063403,20645098,4
+allrisesilver,20645098,2
+69570266,20645098,3
+56103216,20645098,4
+131492184,20645098,5
+51257639,20645098,4
+123950211,20645098,3
+71030074,20645098,5
+131087558,20645098,5
+52975959,20645098,5
+104396274,20645098,5
+purpleblue,20645098,5
+125384763,20645098,5
+1452141,20645098,1
+134129437,20645098,4
+82272917,20645098,5
+42368147,20645098,3
+36043913,20645098,-1
+68912465,20645098,5
+51401605,20645098,4
+52407408,20645098,3
+whoiswho,20645098,4
+85516664,20645098,4
+81832502,20645098,5
+74542067,20645098,5
+WXS-i-mayday,20645098,3
+57882904,20645098,3
+132348413,20645098,4
+129087038,20645098,5
+75312380,20645098,3
+64118312,20645098,3
+3419902,20645098,4
+131535153,20645098,4
+bedas,20645098,3
+58660682,20645098,5
+65911054,20645098,4
+zha-zha-mu,20645098,3
+63287228,20645098,5
+58986210,20645098,5
+81175608,20645098,3
+kathychu,20645098,4
+2787490,20645098,2
+88605317,20645098,5
+50600162,20645098,3
+62320618,20645098,5
+28346145,20645098,3
+neixinqiangda,20645098,5
+crystalaeroplan,20645098,5
+65358811,20645098,5
+Renee_la,20645098,5
+58164155,20645098,5
+linrougao,20645098,3
+antonia422,20645098,4
+JenVan,20645098,5
+76515207,20645098,5
+SpenceAguilar,20645098,4
+peiaxi,20645098,5
+59811610,20645098,5
+daonian_1990,20645098,4
+46600033,20645098,5
+58068218,20645098,5
+64244966,20645098,5
+90796911,20645098,5
+90997446,20645098,4
+55817697,20645098,3
+52624192,20645098,4
+132229126,20645098,1
+29946371,20645098,-1
+82691525,20645098,5
+58048362,20645098,3
+65319559,20645098,3
+tjz230,20645098,3
+58704040,20645098,4
+63402414,20645098,4
+evanlee2018,20645098,4
+83282039,20645098,4
+133861377,20645098,5
+116320219,20645098,4
+63030961,20645098,4
+63646276,20645098,5
+51047719,20645098,5
+61559542,20645098,4
+Ophelia14,20645098,3
+twisterlily,20645098,5
+72861793,20645098,5
+55317138,20645098,3
+kaylaguoguo,20645098,4
+rubytaiwan,20645098,5
+Tinglive,20645098,1
+Mreleven,20645098,5
+77801295,20645098,5
+55912621,20645098,5
+70432324,20645098,2
+43878478,20645098,5
+42149787,20645098,5
+58017981,20645098,4
+caoenjian,20645098,4
+57433106,20645098,5
+guonianle,20645098,5
+98543997,20645098,4
+74628004,20645098,4
+54910657,20645098,4
+69556893,20645098,4
+12384810,20645098,4
+123202130,20645098,4
+57049124,20645098,4
+BDX,20645098,-1
+liyijunaiashin,20645098,5
+waverim,20645098,5
+32051853,20645098,3
+78001242,20645098,4
+Bingbing.,20645098,4
+Leslie4everi,20645098,5
+59030523,20645098,2
+57828483,20645098,-1
+missmeo,20645098,5
+52291626,20645098,5
+66219749,20645098,5
+47347004,20645098,4
+2571757,20645098,2
+39708814,20645098,2
+134854783,20645098,5
+88371415,20645098,4
+60405337,20645098,5
+102522977,20645098,5
+36654067,20645098,5
+miaow,20645098,5
+hal-end,20645098,5
+45166536,20645098,4
+vicky83,20645098,4
+83096280,20645098,3
+56911164,20645098,3
+90172481,20645098,5
+90172481,20645098,5
+49161384,20645098,5
+the_z,20645098,4
+3922372,20645098,5
+julysunshine,20645098,-1
+50063625,20645098,5
+74825137,20645098,4
+tr0ublemaker,20645098,4
+ziwumian,20645098,4
+122110316,20645098,3
+40762850,20645098,4
+98143301,20645098,3
+longxiaosi,20645098,3
+Vivian-KW,20645098,3
+ouyazhaozha,20645098,5
+fx20061006,20645098,4
+46747029,20645098,4
+79068352,20645098,3
+Monica__Wang,20645098,4
+51584092,20645098,1
+63255258,20645098,1
+121656702,20645098,5
+45872414,20645098,4
+YvonneGQ,20645098,4
+wendysunny,20645098,4
+114329710,20645098,4
+59077047,20645098,5
+51322254,20645098,4
+liuanan0606,20645098,4
+134620993,20645098,5
+51208246,20645098,3
+godblessyou07,20645098,3
+57061185,20645098,5
+65186592,20645098,5
+119942879,20645098,4
+51414722,20645098,3
+82913743,20645098,5
+8342264,20645098,4
+sofaraway,20645098,4
+121818648,20645098,5
+77195543,20645098,4
+65975444,20645098,3
+75404580,20645098,5
+rebeccasen,20645098,5
+qiushimao,20645098,4
+Redbe0n,20645098,5
+83046164,20645098,4
+liyuanhui,20645098,5
+lemontrees,20645098,4
+80655381,20645098,4
+50294803,20645098,5
+48521978,20645098,4
+70522766,20645098,4
+77887717,20645098,4
+clover22,20645098,3
+65562790,20645098,3
+37596109,20645098,4
+33724221,20645098,5
+54804762,20645098,2
+109022269,20645098,5
+maidangdang,20645098,4
+kongguyouju,20645098,4
+sough,20645098,4
+lzt,20645098,3
+100532908,20645098,3
+broccole,20645098,5
+yyc1990,20645098,4
+47885909,20645098,4
+gongzitian,20645098,1
+iclover1314,20645098,5
+95458846,20645098,4
+monkeydoll,20645098,4
+133428175,20645098,4
+62182745,20645098,4
+85205230,20645098,5
+133313016,20645098,5
+xiaoranlee,20645098,3
+54686261,20645098,4
+4429797,20645098,5
+126959596,20645098,5
+forzainzaghi,20645098,4
+2079162,20645098,4
+wangzhaojun,20645098,5
+136117238,20645098,5
+53582924,20645098,5
+xuweijun0916,20645098,5
+3414927,20645098,5
+48094869,20645098,4
+57126994,20645098,4
+82855904,20645098,5
+62073129,20645098,4
+32910233,20645098,3
+44983577,20645098,3
+hitonmi,20645098,5
+vvingl,20645098,3
+sumisumi,20645098,5
+51848049,20645098,5
+38648875,20645098,4
+62139918,20645098,5
+84255418,20645098,4
+35663217,20645098,5
+21074898,20645098,5
+3161053,20645098,5
+49915405,20645098,3
+11677246,20645098,5
+qinqinluotuo,20645098,4
+2106145,20645098,2
+assurtrain,20645098,5
+liuyuxing,20645098,4
+64288371,20645098,2
+103651770,20645098,3
+Lucieni,20645098,5
+58489562,20645098,2
+116054774,20645098,4
+XMALIMALIHONGX,20645098,5
+46829398,20645098,5
+kikobury,20645098,3
+73856430,20645098,4
+45383601,20645098,5
+119586140,20645098,5
+80240498,20645098,3
+xieyixi,20645098,4
+tongflower,20645098,4
+syveen,20645098,1
+77268410,20645098,1
+glayo0,20645098,5
+53732167,20645098,3
+LadySandra,20645098,-1
+68573765,20645098,5
+103796743,20645098,4
+65742447,20645098,2
+88709907,20645098,5
+50859088,20645098,5
+122223735,20645098,5
+87890285,20645098,5
+tatamiao,20645098,5
+60374312,20645098,4
+61945985,20645098,4
+63910386,20645098,5
+59192273,20645098,4
+lightionight,20645098,4
+44893410,20645098,5
+jieup,20645098,4
+62123389,20645098,4
+120786974,20645098,5
+2539543,20645098,5
+65309880,20645098,-1
+arthurwen,20645098,5
+119833132,20645098,5
+52954408,20645098,5
+80001264,20645098,3
+ki8018ki,20645098,5
+127072493,20645098,4
+60743609,20645098,5
+guava_xie,20645098,4
+4145032,20645098,5
+52671677,20645098,4
+28363540,20645098,4
+xiaoxiaose,20645098,3
+62191172,20645098,5
+123549763,20645098,5
+phon,20645098,4
+78194519,20645098,4
+49214931,20645098,4
+vivileesun,20645098,5
+51504811,20645098,4
+65885307,20645098,4
+91432391,20645098,5
+66038844,20645098,3
+ClemenceCC,20645098,2
+cqhuazi,20645098,5
+85112816,20645098,3
+sstss411,20645098,5
+123000223,20645098,5
+pp209,20645098,5
+48514298,20645098,5
+121538309,20645098,5
+beijinglife,20645098,4
+sTop_-,20645098,4
+97195706,20645098,3
+feb.,20645098,5
+134246443,20645098,3
+ilvhsq,20645098,3
+83637383,20645098,4
+72043459,20645098,5
+52142248,20645098,4
+Anitavivi,20645098,5
+cidishenhao,20645098,5
+48807966,20645098,4
+pxyushu,20645098,4
+122206706,20645098,5
+nazhadi,20645098,4
+56827634,20645098,4
+26878396,20645098,5
+72885322,20645098,5
+53509461,20645098,5
+infofox,20645098,5
+104368418,20645098,5
+80798230,20645098,-1
+kassyxuemeng,20645098,5
+4114969,20645098,4
+43405636,20645098,-1
+81916004,20645098,4
+50298075,20645098,4
+69990492,20645098,4
+78428870,20645098,5
+FatladySlim,20645098,2
+ZQV0925,20645098,5
+75365783,20645098,3
+132206217,20645098,5
+48906452,20645098,4
+92878802,20645098,4
+nuan_1988,20645098,5
+67491757,20645098,4
+saemahr,20645098,3
+coco921,20645098,4
+63620716,20645098,5
+63154261,20645098,4
+83639322,20645098,5
+68146250,20645098,4
+chagrinbleu,20645098,3
+PulpPaprika,20645098,2
+1815039,20645098,4
+58255325,20645098,4
+102024870,20645098,4
+53364915,20645098,4
+102700712,20645098,5
+coolgun,20645098,4
+60988503,20645098,5
+63079914,20645098,4
+masterbuyuan,20645098,5
+wangjia0702,20645098,5
+58926047,20645098,4
+2910620,20645098,4
+66979855,20645098,4
+3546993,20645098,5
+86821204,20645098,2
+66298502,20645098,4
+94784652,20645098,4
+3433621,20645098,5
+chenwanrao,20645098,5
+39378921,20645098,5
+3958061,20645098,5
+babyamanda,20645098,4
+60099689,20645098,5
+funz_7,20645098,5
+99414276,20645098,3
+71401971,20645098,1
+51474153,20645098,5
+82188158,20645098,5
+47997824,20645098,5
+vane37,20645098,5
+54627862,20645098,5
+shuinaibing,20645098,1
+59135045,20645098,5
+131004317,20645098,3
+Chauvetina,20645098,4
+53560146,20645098,4
+Sovee091,20645098,4
+22525155,20645098,5
+79170497,20645098,4
+53050903,20645098,4
+45543286,20645098,4
+73255236,20645098,4
+akchun,20645098,5
+115927881,20645098,4
+avyiye,20645098,5
+42047004,20645098,5
+129548672,20645098,5
+quillblue,20645098,4
+52813259,20645098,3
+72274948,20645098,5
+wangdoudou20,20645098,4
+62380002,20645098,3
+54804910,20645098,5
+oceanboo,20645098,5
+50609677,20645098,-1
+46505445,20645098,5
+adelayao,20645098,4
+Dooooris,20645098,5
+44166324,20645098,3
+Popdai,20645098,5
+emilialinlin,20645098,5
+43790255,20645098,4
+silvia_,20645098,5
+fansherlocked,20645098,4
+54463600,20645098,3
+55288748,20645098,4
+meatball244,20645098,5
+38080849,20645098,3
+2144303,20645098,5
+62864359,20645098,3
+1425292,20645098,5
+3809778,20645098,5
+shiww,20645098,4
+128313677,20645098,5
+45714842,20645098,2
+89807150,20645098,5
+47840013,20645098,5
+135123728,20645098,3
+83131329,20645098,4
+89828441,20645098,4
+120518242,20645098,4
+81785994,20645098,-1
+daisychung,20645098,4
+mason0128,20645098,4
+58657685,20645098,3
+qiongdong,20645098,5
+ice-yan,20645098,5
+lambxlamb,20645098,4
+88123367,20645098,5
+imecho,20645098,4
+15412063,20645098,5
+35371266,20645098,5
+58533529,20645098,5
+white940105,20645098,5
+Riverz,20645098,5
+3926660,20645098,4
+119571357,20645098,3
+sammi-kou,20645098,3
+69504310,20645098,5
+1732296,20645098,5
+126162318,20645098,4
+4059598,20645098,4
+128418401,20645098,5
+umissvivan,20645098,5
+76663722,20645098,5
+122708996,20645098,5
+82874810,20645098,5
+41450473,20645098,4
+119308780,20645098,3
+idealtemple,20645098,4
+miamiami,20645098,4
+53644977,20645098,5
+78414144,20645098,4
+75810755,20645098,5
+55970012,20645098,4
+42949382,20645098,3
+44551969,20645098,5
+115949877,20645098,4
+helenzhao0512,20645098,3
+2960404,20645098,4
+84260977,20645098,4
+rachelcow,20645098,3
+129598785,20645098,5
+12227939,20645098,5
+131197260,20645098,3
+109113938,20645098,4
+99826715,20645098,3
+134495748,20645098,4
+48975518,20645098,4
+61232643,20645098,5
+136184241,20645098,4
+mrszeel,20645098,5
+xiuwusay,20645098,5
+102875751,20645098,5
+fucklife233,20645098,3
+kaopuYan0731,20645098,4
+3520200,20645098,4
+49579920,20645098,3
+108064497,20645098,3
+123123131,20645098,4
+89700756,20645098,3
+InIn1014,20645098,5
+valevalevale,20645098,1
+2713751,20645098,3
+59334555,20645098,4
+81370817,20645098,2
+pws2008,20645098,4
+121329465,20645098,5
+63275937,20645098,5
+37355445,20645098,5
+122343557,20645098,4
+lanyangyangdecc,20645098,4
+66920467,20645098,1
+69649375,20645098,4
+darcyshaw,20645098,-1
+1442801,20645098,5
+miaoxiaomo,20645098,4
+dragonandphenix,20645098,5
+48423704,20645098,5
+4378595,20645098,5
+89654663,20645098,2
+119663785,20645098,5
+younger105,20645098,2
+springl31120,20645098,5
+68316986,20645098,4
+47601578,20645098,4
+72783015,20645098,4
+58559629,20645098,5
+87979590,20645098,5
+53602254,20645098,4
+114662158,20645098,5
+ichbinsherlyn,20645098,4
+inging,20645098,4
+127000408,20645098,5
+Gothicone,20645098,4
+elenadivita,20645098,-1
+87781121,20645098,5
+49543853,20645098,5
+49543853,20645098,5
+32937393,20645098,5
+t25,20645098,3
+nico.heng.Y,20645098,3
+132137343,20645098,5
+55585297,20645098,3
+113440309,20645098,2
+63228083,20645098,5
+PsychoMissSo,20645098,5
+61861749,20645098,4
+46900588,20645098,5
+LotusJune,20645098,5
+littlesugar,20645098,3
+114786120,20645098,2
+cherrishee,20645098,5
+53394663,20645098,4
+46881440,20645098,3
+88515086,20645098,5
+26360498,20645098,4
+mccole,20645098,5
+58580022,20645098,5
+50093878,20645098,4
+44542969,20645098,4
+danrui,20645098,4
+76018084,20645098,5
+51156864,20645098,5
+Elisa.ma,20645098,4
+hx2,20645098,5
+lingrui1995,20645098,4
+75362296,20645098,5
+40270325,20645098,5
+umi-kumo,20645098,4
+sosx,20645098,5
+109791603,20645098,4
+120421429,20645098,5
+131019210,20645098,5
+60583642,20645098,3
+43302321,20645098,5
+2875804,20645098,5
+99337614,20645098,4
+53204374,20645098,3
+113752134,20645098,4
+44191956,20645098,3
+48481117,20645098,5
+50893701,20645098,5
+64424945,20645098,3
+88050881,20645098,5
+91137080,20645098,1
+Vivid-try,20645098,5
+66657609,20645098,5
+134503446,20645098,3
+1605000,20645098,4
+pppryo,20645098,5
+2401454,20645098,2
+kmona9,20645098,1
+44707255,20645098,1
+61476268,20645098,5
+135250807,20645098,5
+11017625,20645098,4
+freya07,20645098,5
+80226840,20645098,5
+123854349,20645098,5
+74256621,20645098,5
+missmoony,20645098,3
+38971714,20645098,5
+shenyong6813,20645098,3
+53664059,20645098,4
+74125897,20645098,4
+69202875,20645098,5
+40383640,20645098,-1
+dengnizhaodaowo,20645098,5
+quanquan_90,20645098,5
+134516282,20645098,4
+eacy-w,20645098,3
+3501553,20645098,4
+52465838,20645098,5
+3044053,20645098,5
+pr1_ncer,20645098,5
+songzer,20645098,4
+35703098,20645098,5
+silver_soul,20645098,5
+86812116,20645098,3
+yingji920,20645098,3
+sissyyyy,20645098,5
+a131351634,20645098,4
+ninosun,20645098,4
+92692605,20645098,4
+121536329,20645098,5
+1975978,20645098,4
+42967448,20645098,4
+48937323,20645098,4
+59572934,20645098,3
+65096830,20645098,5
+2244688,20645098,5
+81416350,20645098,5
+62386997,20645098,5
+52241991,20645098,3
+bluewhite82,20645098,5
+69646287,20645098,4
+103358688,20645098,4
+123063811,20645098,2
+yayading,20645098,1
+122048487,20645098,4
+yytttna,20645098,4
+meteora,20645098,5
+2997325,20645098,3
+135749481,20645098,5
+68800938,20645098,5
+octobersophie,20645098,5
+16870391,20645098,4
+61540535,20645098,4
+87693385,20645098,4
+49611509,20645098,4
+54934785,20645098,5
+132542069,20645098,5
+4025162,20645098,2
+27194011,20645098,5
+80635442,20645098,4
+50251329,20645098,4
+greengrey,20645098,4
+45855864,20645098,4
+84866154,20645098,5
+3072995,20645098,5
+raquelycidas,20645098,4
+theasir,20645098,5
+fiona_bau,20645098,5
+1371141,20645098,1
+1310260,20645098,5
+35410518,20645098,5
+58021100,20645098,4
+122517698,20645098,1
+64700587,20645098,4
+35736307,20645098,5
+71806570,20645098,3
+20213088,20645098,5
+1433196,20645098,4
+56466815,20645098,5
+huoniaoljy,20645098,4
+sevenlan,20645098,5
+45733056,20645098,3
+sevenlan,20645098,5
+45733056,20645098,3
+34385255,20645098,4
+mywords,20645098,-1
+wiwie,20645098,4
+91514152,20645098,4
+39004925,20645098,5
+135840119,20645098,5
+81003990,20645098,5
+91967570,20645098,5
+52209428,20645098,5
+58840542,20645098,3
+1469007,20645098,4
+74944832,20645098,5
+croath,20645098,5
+85204284,20645098,5
+47185443,20645098,4
+1601219,20645098,5
+pielin,20645098,3
+kimmyaloha,20645098,5
+52952692,20645098,3
+45480122,20645098,5
+119611660,20645098,5
+57245123,20645098,5
+vradica,20645098,3
+54164791,20645098,3
+49761983,20645098,5
+67293967,20645098,3
+114441069,20645098,5
+53913311,20645098,3
+64280895,20645098,5
+52883078,20645098,4
+52992444,20645098,5
+131088408,20645098,3
+121933047,20645098,4
+63383879,20645098,5
+56507571,20645098,5
+maoyufreng,20645098,4
+50561433,20645098,4
+36834154,20645098,5
+ZL813,20645098,5
+54720946,20645098,5
+45074622,20645098,4
+zhubeilife,20645098,3
+duduelien,20645098,5
+3529966,20645098,-1
+58734372,20645098,4
+halleybachelor,20645098,4
+48687112,20645098,3
+2285092,20645098,4
+65075320,20645098,5
+58712941,20645098,5
+73830337,20645098,3
+131840322,20645098,4
+124602530,20645098,5
+Erishia,20645098,4
+57639200,20645098,5
+54961914,20645098,5
+64008981,20645098,-1
+Sonnenland,20645098,5
+61362654,20645098,4
+sulen,20645098,5
+45522216,20645098,4
+Isa1996,20645098,5
+135458402,20645098,4
+LEE0222,20645098,4
+64313381,20645098,3
+i8059,20645098,5
+63179880,20645098,-1
+39255754,20645098,4
+3955122,20645098,3
+4869541,20645098,3
+90180906,20645098,5
+65557362,20645098,4
+58817726,20645098,5
+sonyaya,20645098,5
+52330687,20645098,5
+58135817,20645098,4
+starr_su,20645098,5
+57542378,20645098,5
+happyjiepp,20645098,5
+juzijun,20645098,2
+83905298,20645098,2
+vicenie,20645098,5
+58542371,20645098,5
+lrjlyf,20645098,4
+X-able,20645098,5
+46319235,20645098,4
+71472531,20645098,4
+89159179,20645098,4
+panshurst,20645098,5
+Lizyjs,20645098,3
+120049030,20645098,4
+FTDxiaowukong,20645098,5
+72175536,20645098,4
+somenothing,20645098,5
+2819380,20645098,4
+47695953,20645098,2
+119075615,20645098,5
+qinyuayuan,20645098,3
+129288424,20645098,4
+65046838,20645098,4
+63408688,20645098,3
+myvonne,20645098,5
+4617217,20645098,5
+83267893,20645098,5
+89419712,20645098,5
+4749312,20645098,3
+4597294,20645098,5
+Sun8023yy,20645098,3
+73892674,20645098,4
+morgankuku,20645098,4
+xiemingyuan,20645098,4
+58670353,20645098,4
+77149947,20645098,3
+MOGUANTHONY,20645098,5
+48183944,20645098,4
+41295906,20645098,5
+doratora,20645098,4
+55521010,20645098,4
+leesemonni,20645098,4
+shininglai,20645098,5
+yaksa5,20645098,4
+69749186,20645098,3
+14601311,20645098,5
+45227037,20645098,3
+61187639,20645098,4
+4533540,20645098,5
+127297970,20645098,4
+48849197,20645098,5
+67173929,20645098,4
+115555325,20645098,4
+90702171,20645098,4
+huxuan,20645098,2
+48198502,20645098,5
+57330014,20645098,1
+twinkletears,20645098,5
+72444533,20645098,-1
+66735359,20645098,4
+Saycee,20645098,2
+jayscorpio,20645098,5
+66099310,20645098,5
+53998675,20645098,4
+78681976,20645098,5
+arielwdl,20645098,3
+qj0824,20645098,4
+CAROHANNAH,20645098,4
+4537211,20645098,4
+say52,20645098,-1
+85140746,20645098,2
+82897167,20645098,3
+67878898,20645098,5
+101337641,20645098,4
+61723144,20645098,5
+126145633,20645098,5
+66495218,20645098,5
+50558551,20645098,4
+melody1220,20645098,1
+121587043,20645098,4
+buhaoxiao,20645098,5
+49642426,20645098,4
+rainbea,20645098,4
+4459976,20645098,4
+65120174,20645098,4
+4785418,20645098,5
+seven7ming,20645098,3
+miaoza,20645098,4
+35538811,20645098,5
+JY.L,20645098,5
+130268519,20645098,5
+35450002,20645098,4
+133475672,20645098,5
+BeatirceLee,20645098,5
+25560643,20645098,5
+woodstar,20645098,5
+67781034,20645098,-1
+71755062,20645098,4
+87823063,20645098,5
+47524824,20645098,5
+65557756,20645098,5
+132361096,20645098,5
+chancechance,20645098,4
+banxiaxiaoyu,20645098,5
+64024738,20645098,4
+36634678,20645098,3
+54108610,20645098,4
+73456502,20645098,3
+62484889,20645098,4
+60762809,20645098,5
+129834051,20645098,5
+wenteng1988,20645098,4
+Xmelie,20645098,-1
+sing57,20645098,3
+54757798,20645098,5
+56547057,20645098,4
+69903841,20645098,4
+45545911,20645098,4
+58141531,20645098,5
+3034621,20645098,3
+57724049,20645098,4
+88439681,20645098,4
+79680480,20645098,4
+hexybaby,20645098,5
+lamslee,20645098,3
+Aiyouyouyouyou,20645098,5
+geekky,20645098,4
+49330983,20645098,3
+48470859,20645098,4
+42172027,20645098,4
+77266400,20645098,5
+xianxiantutu,20645098,5
+4370686,20645098,4
+la_ficine,20645098,5
+87952406,20645098,5
+shibiebie,20645098,5
+87518110,20645098,4
+74479337,20645098,5
+pw1ng,20645098,5
+94833341,20645098,2
+shelleywh,20645098,4
+68816783,20645098,5
+babyroll,20645098,4
+76082574,20645098,5
+103163383,20645098,4
+valanthecarey,20645098,5
+twofour,20645098,5
+49963574,20645098,3
+ruikl,20645098,-1
+59376032,20645098,4
+116275054,20645098,5
+3868942,20645098,5
+36945830,20645098,3
+Twdrop,20645098,4
+astar5,20645098,-1
+60161593,20645098,4
+cozumakemesmile,20645098,3
+49095147,20645098,5
+123555227,20645098,5
+evergreen3507,20645098,3
+61740178,20645098,4
+51280804,20645098,5
+3981445,20645098,3
+65346497,20645098,5
+xdays,20645098,5
+49435214,20645098,3
+3095564,20645098,4
+43831100,20645098,5
+55480709,20645098,5
+jywpl,20645098,4
+57445383,20645098,5
+115290215,20645098,5
+remenbercc,20645098,5
+72432038,20645098,4
+pepperannn,20645098,5
+amzyangyk,20645098,4
+131878841,20645098,5
+rurubryant,20645098,5
+68031244,20645098,4
+34864713,20645098,5
+ningning9164,20645098,-1
+43265221,20645098,5
+3791428,20645098,4
+64864159,20645098,5
+125263804,20645098,4
+7510013,20645098,3
+52341431,20645098,5
+Alanya,20645098,4
+74141389,20645098,5
+29645088,20645098,4
+wpy114,20645098,4
+18062141,20645098,5
+peterpan1004,20645098,3
+124391754,20645098,4
+4708937,20645098,4
+2141346,20645098,3
+piaoweier,20645098,5
+69477344,20645098,5
+rangxiao,20645098,3
+nadesico,20645098,4
+doukoku,20645098,4
+52477984,20645098,3
+43012686,20645098,4
+am-gemini,20645098,5
+67711452,20645098,4
+3013645,20645098,5
+talentygw,20645098,4
+58189352,20645098,3
+faner521,20645098,5
+44851968,20645098,4
+zhysofia,20645098,4
+AmySpecial,20645098,5
+100495390,20645098,4
+Outro21,20645098,5
+sophiazouyun,20645098,5
+80928749,20645098,4
+64688710,20645098,4
+133728959,20645098,4
+4157643,20645098,5
+Machobabe347,20645098,5
+53417181,20645098,5
+yd9110,20645098,5
+101863920,20645098,5
+28852948,20645098,4
+vamzc,20645098,5
+83433400,20645098,3
+4604709,20645098,4
+130592757,20645098,3
+11979474,20645098,5
+43757100,20645098,5
+77357692,20645098,5
+isabella_shi,20645098,4
+49089345,20645098,5
+61660180,20645098,4
+49016330,20645098,4
+piulidayoki,20645098,5
+50116920,20645098,5
+80180666,20645098,5
+51516778,20645098,5
+132324610,20645098,4
+3255421,20645098,-1
+98052973,20645098,5
+dyinggg,20645098,4
+78598648,20645098,3
+51884253,20645098,5
+viteless,20645098,3
+34097491,20645098,-1
+46234987,20645098,5
+rregina,20645098,5
+60313316,20645098,4
+48047755,20645098,5
+124141059,20645098,4
+FlowerCharlotte,20645098,4
+75025238,20645098,4
+45348704,20645098,5
+48737936,20645098,5
+56795809,20645098,5
+52813443,20645098,5
+41257004,20645098,4
+canodia,20645098,3
+131185324,20645098,3
+48381769,20645098,4
+61722322,20645098,4
+3129085,20645098,5
+37584896,20645098,4
+wengxiaolan,20645098,5
+134605262,20645098,4
+CSMiss,20645098,5
+49188433,20645098,5
+applebunny,20645098,5
+49693965,20645098,5
+39629387,20645098,5
+91994560,20645098,5
+msghost,20645098,5
+speechlessdd,20645098,3
+ideallee1005,20645098,4
+82398497,20645098,5
+59180317,20645098,5
+34394752,20645098,5
+mariaaa,20645098,5
+zsqsophy,20645098,5
+99858292,20645098,5
+huliwang,20645098,5
+MoQin,20645098,2
+yoyofun,20645098,4
+youyoumiao,20645098,5
+chococo,20645098,5
+60885682,20645098,5
+132912697,20645098,5
+jopees,20645098,4
+6285929,20645098,4
+Jessica814,20645098,5
+TerryPrince,20645098,5
+ayamassia,20645098,5
+134716974,20645098,3
+35563914,20645098,3
+wanganqi,20645098,5
+52092989,20645098,5
+nodummy,20645098,5
+82722362,20645098,3
+46981614,20645098,2
+81317502,20645098,5
+71994355,20645098,4
+74943239,20645098,3
+74243951,20645098,4
+72806656,20645098,3
+4587293,20645098,3
+54278180,20645098,4
+68936887,20645098,4
+Linnn,20645098,5
+75381649,20645098,1
+69032361,20645098,5
+m2529,20645098,5
+63905629,20645098,3
+viola210,20645098,4
+47852493,20645098,5
+135013108,20645098,2
+75189266,20645098,1
+121619687,20645098,4
+63383650,20645098,5
+57534573,20645098,3
+57534573,20645098,3
+67571476,20645098,5
+82063606,20645098,5
+132171936,20645098,4
+sxdwzwq,20645098,3
+34728183,20645098,5
+sumo-zy,20645098,4
+yishengpingfan,20645098,5
+2329944,20645098,5
+firecome7,20645098,4
+130146633,20645098,5
+28533169,20645098,4
+41142807,20645098,4
+54616457,20645098,5
+m201314,20645098,5
+42477053,20645098,5
+81134195,20645098,4
+51584881,20645098,5
+62065685,20645098,4
+2807743,20645098,5
+44297232,20645098,5
+siuyuk,20645098,5
+70605081,20645098,5
+41132687,20645098,5
+56054406,20645098,5
+Silstar,20645098,4
+ruru0318,20645098,5
+Uroboros,20645098,4
+82406719,20645098,4
+106597439,20645098,2
+guoguo0502,20645098,5
+3779967,20645098,4
+27670899,20645098,4
+43778462,20645098,-1
+61476996,20645098,4
+68352338,20645098,5
+Kesseler,20645098,5
+timerainer,20645098,5
+68293752,20645098,5
+80887950,20645098,3
+samantha129,20645098,5
+79443450,20645098,3
+geniuswan,20645098,3
+66341866,20645098,3
+113073174,20645098,5
+3405357,20645098,4
+kxy12567,20645098,1
+55543301,20645098,3
+lost.soul,20645098,3
+47882862,20645098,3
+IcePickJones,20645098,2
+51223136,20645098,3
+74418129,20645098,5
+49187525,20645098,5
+54791351,20645098,5
+X_Tshirt,20645098,5
+32566689,20645098,5
+legal_alien,20645098,4
+39728128,20645098,4
+59406381,20645098,2
+75513285,20645098,4
+cect,20645098,3
+8251226,20645098,5
+64013773,20645098,4
+etsukirakira,20645098,4
+62960950,20645098,5
+69497786,20645098,1
+bibo110809,20645098,5
+2520052,20645098,3
+49748567,20645098,3
+48479017,20645098,5
+53300086,20645098,5
+itisnoteasy,20645098,4
+daisyhantt,20645098,5
+4320088,20645098,4
+xinyi714,20645098,4
+DreamAmin,20645098,5
+58728195,20645098,5
+96898762,20645098,4
+easystyle,20645098,4
+130699016,20645098,4
+zihuihui,20645098,5
+3478406,20645098,3
+loveblues,20645098,5
+reesehu,20645098,5
+123470321,20645098,5
+59389607,20645098,4
+lamb-fish,20645098,5
+TruffleWine,20645098,4
+gooddie29,20645098,-1
+37848644,20645098,4
+112340058,20645098,5
+44150824,20645098,3
+134490085,20645098,5
+97770335,20645098,4
+yuer118,20645098,5
+75706045,20645098,4
+53269895,20645098,3
+50886291,20645098,4
+70862123,20645098,5
+danshuyl,20645098,5
+41920355,20645098,5
+133335985,20645098,5
+36392442,20645098,4
+FreshSherlock,20645098,4
+135453893,20645098,3
+72397397,20645098,2
+133978729,20645098,4
+ilyju,20645098,4
+37003743,20645098,5
+49864789,20645098,4
+82703338,20645098,5
+60234742,20645098,5
+guozixiang,20645098,5
+70724511,20645098,4
+47212245,20645098,-1
+53908763,20645098,5
+57382661,20645098,5
+kylingu,20645098,4
+58979228,20645098,3
+Chanel_Yueyang,20645098,5
+YenjCarol,20645098,-1
+52860779,20645098,3
+therealme,20645098,4
+LuuuuC,20645098,2
+Kishimushroom,20645098,3
+59601426,20645098,5
+71096040,20645098,4
+121749304,20645098,5
+r8125,20645098,4
+xxzy93,20645098,5
+ArsenalCH,20645098,5
+xjrm,20645098,5
+41246979,20645098,5
+yyuan9372,20645098,4
+59943822,20645098,5
+57067318,20645098,3
+yoyoloveyou,20645098,5
+19848707,20645098,4
+77822767,20645098,5
+115351276,20645098,5
+adafirst,20645098,5
+84472857,20645098,4
+14523458,20645098,5
+58314106,20645098,4
+83740879,20645098,5
+54795644,20645098,5
+93189279,20645098,5
+102153568,20645098,4
+qpgpq,20645098,4
+Oleg,20645098,4
+58956740,20645098,5
+lovingmomo,20645098,4
+zq8870690207,20645098,3
+126290013,20645098,4
+65354608,20645098,5
+47436584,20645098,5
+52255600,20645098,5
+xiaoman219,20645098,5
+hongzhuqishi,20645098,4
+1263839,20645098,1
+xiaoshizhan,20645098,3
+samuel_liu,20645098,3
+qingmuwu,20645098,3
+57405925,20645098,5
+airan712,20645098,3
+135694361,20645098,4
+35806544,20645098,3
+59929072,20645098,4
+nicoletta,20645098,3
+133085127,20645098,5
+57411563,20645098,5
+65732402,20645098,4
+69481682,20645098,5
+52099486,20645098,4
+52135478,20645098,5
+SkyGrain,20645098,5
+84835775,20645098,5
+3561318,20645098,4
+88243971,20645098,5
+timestime,20645098,4
+gan_panpan,20645098,3
+3588825,20645098,1
+vyajana,20645098,3
+sukky,20645098,5
+clear1205,20645098,4
+crystal12345678,20645098,4
+marvelwei,20645098,4
+Stephon-Marbury,20645098,5
+49411986,20645098,5
+55986370,20645098,5
+125602131,20645098,3
+greendecember,20645098,4
+blunting,20645098,2
+loinbo,20645098,5
+mozulalala,20645098,5
+agree123,20645098,4
+66066002,20645098,3
+3068165,20645098,5
+76124816,20645098,5
+134520468,20645098,3
+53721122,20645098,3
+84985768,20645098,4
+126785151,20645098,5
+56167544,20645098,4
+49896749,20645098,1
+62586464,20645098,5
+131239316,20645098,5
+ameliefei,20645098,4
+52344572,20645098,4
+87534689,20645098,4
+73064038,20645098,4
+45179970,20645098,5
+89313000,20645098,4
+107190379,20645098,5
+pinkoisapig,20645098,5
+xss0791,20645098,4
+52259960,20645098,3
+50769743,20645098,3
+63318519,20645098,4
+tmj3,20645098,5
+4671602,20645098,5
+58020700,20645098,4
+92537918,20645098,3
+evara77,20645098,4
+131628728,20645098,4
+72485071,20645098,4
+45784891,20645098,5
+131268122,20645098,5
+57620266,20645098,4
+zullnverno,20645098,5
+bignoodle,20645098,5
+4639276,20645098,3
+80822437,20645098,1
+mochenf,20645098,5
+52615985,20645098,5
+125281406,20645098,3
+53403441,20645098,5
+smartsz,20645098,5
+h01,20645098,5
+127275438,20645098,4
+63603229,20645098,4
+huayuan619,20645098,5
+135424940,20645098,5
+26696495,20645098,4
+42961895,20645098,5
+53667479,20645098,5
+3356601,20645098,5
+q2lee,20645098,5
+70011740,20645098,4
+102179964,20645098,5
+53721830,20645098,4
+Kso-go,20645098,3
+63822026,20645098,5
+9033618,20645098,3
+vanros,20645098,4
+67730092,20645098,5
+57664737,20645098,5
+suxiaoliang,20645098,5
+65982449,20645098,5
+1980659,20645098,5
+bester89,20645098,-1
+76624368,20645098,3
+carmen8498,20645098,5
+58013933,20645098,4
+65775952,20645098,4
+amielee09,20645098,4
+43488242,20645098,3
+123473233,20645098,4
+85312047,20645098,3
+djdaisy1874,20645098,5
+lanebuxia,20645098,4
+3356148,20645098,5
+123036590,20645098,5
+54604560,20645098,5
+panfangjie,20645098,4
+62582526,20645098,4
+lordoferegion,20645098,5
+92105387,20645098,5
+88597096,20645098,5
+kikoleung,20645098,4
+37875537,20645098,5
+4289781,20645098,5
+80439526,20645098,3
+65108877,20645098,4
+73735858,20645098,3
+64311844,20645098,2
+gold5king,20645098,4
+23336096,20645098,5
+133080033,20645098,4
+Carman.Feng,20645098,4
+122143987,20645098,5
+46223615,20645098,5
+Fangfangxiao,20645098,4
+59608454,20645098,4
+63998046,20645098,4
+lulumme,20645098,5
+cupandrabbit,20645098,5
+Yann.A.S,20645098,1
+49298562,20645098,-1
+LoveHugo,20645098,4
+childwith,20645098,5
+64216875,20645098,5
+102070870,20645098,4
+46168021,20645098,5
+57846858,20645098,3
+36638272,20645098,5
+heyclaudia,20645098,4
+zc1020,20645098,5
+81016849,20645098,2
+peRFect1012,20645098,5
+jie2u,20645098,5
+poria,20645098,4
+92213482,20645098,5
+66025844,20645098,4
+57418911,20645098,5
+51858469,20645098,5
+81561010,20645098,5
+59794216,20645098,5
+chagallayi,20645098,5
+50348086,20645098,4
+51855205,20645098,4
+50250057,20645098,3
+79834344,20645098,3
+77235154,20645098,5
+51454421,20645098,4
+69189360,20645098,5
+61937258,20645098,3
+13257466,20645098,3
+72233881,20645098,5
+faithyuan02,20645098,5
+kiki924,20645098,4
+stansphere,20645098,3
+49993507,20645098,5
+64627852,20645098,5
+nansila,20645098,2
+59391832,20645098,5
+129273075,20645098,5
+60380024,20645098,2
+eleven32cc,20645098,-1
+huerwei,20645098,5
+60979573,20645098,3
+63597276,20645098,4
+4578112,20645098,5
+49161658,20645098,4
+54954313,20645098,5
+43662496,20645098,4
+77837992,20645098,4
+86712548,20645098,3
+61152016,20645098,5
+49854531,20645098,4
+57827177,20645098,3
+63451407,20645098,5
+50259221,20645098,3
+swimming7891,20645098,5
+53475858,20645098,5
+120296036,20645098,2
+HowShouldIKnow,20645098,5
+52106062,20645098,4
+mikafish,20645098,5
+mikafish,20645098,5
+52879091,20645098,5
+Monte.L,20645098,5
+34081979,20645098,4
+121014962,20645098,5
+53485113,20645098,5
+51195956,20645098,3
+99989883,20645098,4
+68773846,20645098,5
+120209933,20645098,4
+82573994,20645098,5
+aagg36121,20645098,4
+120211464,20645098,2
+ok,20645098,4
+114689592,20645098,5
+51279827,20645098,5
+115821342,20645098,5
+beiliya6261,20645098,3
+4915899,20645098,5
+lobey,20645098,5
+DangerRose,20645098,4
+80660109,20645098,4
+26204225,20645098,5
+132210683,20645098,4
+69578199,20645098,5
+Miralte,20645098,4
+Aamina-memory,20645098,4
+78706605,20645098,4
+127386249,20645098,5
+35966701,20645098,3
+121085982,20645098,5
+68285493,20645098,4
+35051709,20645098,5
+64540248,20645098,5
+hedingda,20645098,5
+Xumingxin,20645098,5
+angle223,20645098,4
+53517811,20645098,4
+cdz0516,20645098,4
+129965536,20645098,5
+36612335,20645098,3
+92926718,20645098,4
+ThomasMore,20645098,4
+94243524,20645098,5
+58400346,20645098,4
+52271140,20645098,3
+50900048,20645098,3
+am2.5,20645098,5
+renth,20645098,5
+69064967,20645098,5
+125942088,20645098,3
+grean,20645098,5
+57496538,20645098,4
+82677764,20645098,5
+119512559,20645098,5
+62651248,20645098,4
+changeable123,20645098,5
+LastKiss,20645098,5
+68911927,20645098,5
+zihaozai0407,20645098,4
+Aaronyy,20645098,3
+51278564,20645098,3
+Bye_air,20645098,5
+92427949,20645098,5
+85574139,20645098,5
+130304436,20645098,5
+yummyhere,20645098,4
+88425798,20645098,5
+23164861,20645098,5
+cmj1994,20645098,4
+51514321,20645098,4
+nilinli,20645098,5
+46483748,20645098,5
+132114882,20645098,5
+124319237,20645098,4
+101967009,20645098,3
+99692207,20645098,5
+134115819,20645098,5
+59104141,20645098,5
+37824700,20645098,5
+57404905,20645098,3
+tonefour,20645098,3
+69547790,20645098,3
+88019378,20645098,5
+131500891,20645098,5
+116380975,20645098,5
+bsq418,20645098,5
+zizon,20645098,3
+120647948,20645098,4
+61476638,20645098,5
+21040549,20645098,5
+54217571,20645098,2
+vianann,20645098,4
+121460001,20645098,4
+68664119,20645098,5
+119681463,20645098,4
+hhy2013,20645098,4
+130353620,20645098,5
+Cicinnurus,20645098,5
+myamelie,20645098,3
+77595893,20645098,-1
+106567962,20645098,3
+62659146,20645098,3
+echoningning,20645098,4
+4585217,20645098,5
+42137156,20645098,5
+44066317,20645098,4
+56109684,20645098,5
+1762540,20645098,4
+51910389,20645098,4
+60410488,20645098,5
+hawords,20645098,5
+84394974,20645098,3
+3549790,20645098,4
+69133798,20645098,5
+2640194,20645098,3
+69998360,20645098,5
+buchimifan,20645098,2
+70294430,20645098,5
+moneylatem,20645098,3
+moneylatem,20645098,3
+jimmyandpa,20645098,4
+87988157,20645098,4
+62676885,20645098,3
+63583816,20645098,5
+71680452,20645098,4
+41976054,20645098,5
+48306003,20645098,5
+47053575,20645098,4
+2469119,20645098,4
+67641940,20645098,5
+become,20645098,4
+49086369,20645098,3
+huyoubuding,20645098,3
+93038210,20645098,5
+78862155,20645098,5
+41703158,20645098,4
+57904632,20645098,3
+67554151,20645098,5
+62360669,20645098,5
+35287664,20645098,5
+121543696,20645098,5
+62874787,20645098,3
+87943711,20645098,5
+skyspy,20645098,4
+fenlanbingyan,20645098,4
+72985710,20645098,5
+vividance,20645098,3
+claireGuoDH,20645098,3
+96924256,20645098,5
+rosemaomi,20645098,5
+72183184,20645098,4
+65361244,20645098,5
+103400756,20645098,5
+darlingtudai,20645098,4
+73761191,20645098,4
+irenaleo,20645098,4
+wownow,20645098,3
+61310124,20645098,3
+92303311,20645098,5
+60452740,20645098,5
+yyqxkawaii1128,20645098,4
+115552732,20645098,4
+87730263,20645098,4
+minjielu,20645098,5
+34207718,20645098,5
+yaslyg,20645098,5
+121779298,20645098,3
+129953285,20645098,5
+imlyc,20645098,3
+64245848,20645098,4
+51724193,20645098,5
+2599607,20645098,4
+mushroom198812,20645098,4
+80197611,20645098,5
+aikioctt,20645098,5
+78728709,20645098,4
+102236551,20645098,5
+57853791,20645098,3
+95148578,20645098,5
+63770150,20645098,-1
+81468340,20645098,4
+32753722,20645098,4
+dodorene,20645098,5
+3676726,20645098,5
+zoethree,20645098,4
+vivianna_park,20645098,4
+60164301,20645098,5
+63422353,20645098,4
+ieattoomuch,20645098,4
+136053872,20645098,1
+60374653,20645098,4
+71961235,20645098,2
+63377291,20645098,5
+85369018,20645098,4
+eashell,20645098,3
+47496594,20645098,5
+ling5464,20645098,5
+121602100,20645098,5
+52422164,20645098,2
+31108272,20645098,5
+82494304,20645098,5
+135261292,20645098,5
+52806271,20645098,5
+57490228,20645098,4
+130994682,20645098,4
+57666555,20645098,4
+58169205,20645098,5
+joyceshan,20645098,3
+126241024,20645098,2
+52591024,20645098,2
+73979703,20645098,4
+12339708,20645098,5
+aprisliver,20645098,1
+68490361,20645098,5
+poselen,20645098,5
+66274003,20645098,4
+July5yue,20645098,5
+68636133,20645098,4
+AstrianZheng,20645098,3
+63874058,20645098,5
+63383010,20645098,4
+57972087,20645098,3
+lesoleil29,20645098,5
+117360143,20645098,5
+57274544,20645098,4
+92827831,20645098,5
+wanglinfei,20645098,5
+58148727,20645098,5
+bifangxiaoC,20645098,2
+zhangmouren,20645098,5
+1672449,20645098,5
+49500956,20645098,4
+49390872,20645098,5
+58913273,20645098,3
+69941646,20645098,5
+48477556,20645098,4
+132325954,20645098,4
+A_len,20645098,5
+123688744,20645098,4
+41308887,20645098,5
+71897978,20645098,4
+131374333,20645098,4
+50821658,20645098,4
+51888406,20645098,3
+von71224,20645098,5
+prince1900,20645098,4
+lumins,20645098,3
+talinnablue,20645098,5
+115645045,20645098,3
+80912388,20645098,5
+41546216,20645098,3
+xiaojirou007,20645098,5
+118090358,20645098,5
+129365030,20645098,3
+38821099,20645098,5
+bearblindman,20645098,4
+74448596,20645098,5
+130988539,20645098,4
+3540779,20645098,4
+84564093,20645098,5
+67243233,20645098,5
+CityOfShadows,20645098,3
+49238240,20645098,4
+119583854,20645098,4
+3317762,20645098,5
+wplee,20645098,4
+66831193,20645098,3
+85307679,20645098,5
+75175940,20645098,5
+54285089,20645098,3
+131447889,20645098,4
+59773682,20645098,5
+119877759,20645098,4
+miaoyanhui,20645098,2
+91948912,20645098,3
+104056990,20645098,3
+largind,20645098,4
+103045657,20645098,5
+134088482,20645098,5
+violan,20645098,4
+132879159,20645098,4
+lqloveyozoh,20645098,4
+LSQNZX,20645098,5
+luanluanvae,20645098,5
+73894299,20645098,5
+42130916,20645098,5
+4158579,20645098,5
+22258354,20645098,5
+popfeng,20645098,4
+78955356,20645098,4
+105736560,20645098,5
+51227412,20645098,4
+dusk.xiyang,20645098,4
+wangholic,20645098,5
+more-aries,20645098,5
+58634093,20645098,4
+72685963,20645098,5
+71118924,20645098,5
+63896361,20645098,3
+100303280,20645098,5
+sivenHU,20645098,5
+46087148,20645098,5
+60388561,20645098,3
+135967327,20645098,4
+zhuweina,20645098,4
+67426838,20645098,5
+46439800,20645098,5
+kafuk,20645098,5
+83080407,20645098,4
+29645106,20645098,3
+shmwhltt,20645098,4
+qijiuzhiyue,20645098,3
+25268390,20645098,5
+niceutopia,20645098,-1
+timememo,20645098,4
+bendanguangguan,20645098,5
+Juneaitvxq,20645098,5
+63989462,20645098,5
+75347251,20645098,4
+103105403,20645098,5
+2033981,20645098,5
+beyszhu,20645098,5
+yktimeless,20645098,5
+hehechishiba,20645098,5
+105802856,20645098,5
+73614049,20645098,5
+107514210,20645098,5
+88109187,20645098,5
+pp.peach,20645098,5
+2603913,20645098,5
+53433671,20645098,5
+mrsdarce,20645098,5
+zichujun,20645098,4
+88075590,20645098,-1
+53159276,20645098,3
+Hannia,20645098,3
+57965497,20645098,5
+85712050,20645098,5
+59849943,20645098,5
+roentgen,20645098,4
+sabrinamac,20645098,3
+44459546,20645098,4
+92718766,20645098,5
+73445722,20645098,4
+eastease,20645098,4
+chanel0214,20645098,5
+slpnju2010,20645098,4
+58690443,20645098,4
+83855853,20645098,3
+2495913,20645098,5
+HW995236773,20645098,3
+cherryye,20645098,5
+73243540,20645098,5
+46039273,20645098,2
+gzy0517,20645098,1
+1378503,20645098,4
+59450940,20645098,2
+kingiknow,20645098,4
+51092958,20645098,3
+51445328,20645098,4
+XFlovesChrisH,20645098,5
+58457174,20645098,2
+79970720,20645098,5
+49249269,20645098,5
+sosang,20645098,5
+46220008,20645098,5
+hopezike,20645098,5
+80602343,20645098,4
+4439779,20645098,5
+utopialand,20645098,4
+88214086,20645098,5
+shenshenlanf,20645098,4
+68870839,20645098,5
+pangwaer,20645098,5
+46848554,20645098,5
+131816781,20645098,4
+sum.,20645098,5
+39984469,20645098,-1
+117018256,20645098,5
+117018256,20645098,5
+89924744,20645098,4
+50144553,20645098,5
+jinshuxiao,20645098,4
+77259583,20645098,4
+121047961,20645098,5
+58161520,20645098,4
+18349242,20645098,2
+50792165,20645098,4
+simengw,20645098,3
+xijw,20645098,3
+66405994,20645098,3
+76193646,20645098,3
+73701347,20645098,4
+53053364,20645098,5
+gegewu92,20645098,4
+miaomi,20645098,4
+siyunz,20645098,5
+qiyingrunhua,20645098,5
+82299258,20645098,5
+jimmy78801,20645098,4
+130983616,20645098,4
+52925540,20645098,5
+88837137,20645098,5
+jean4you,20645098,4
+76783989,20645098,5
+caijiewen,20645098,4
+sakura137,20645098,4
+2242910,20645098,3
+xinxu,20645098,5
+mrjob,20645098,3
+79631901,20645098,4
+25460734,20645098,4
+manrysh,20645098,5
+TiAmoHelen,20645098,5
+jintianqingtian,20645098,3
+69257163,20645098,3
+61717566,20645098,4
+68227944,20645098,3
+kyleul,20645098,5
+kyleul,20645098,5
+miumiulala,20645098,2
+38883627,20645098,5
+63306713,20645098,5
+80126415,20645098,5
+87636985,20645098,5
+123951006,20645098,5
+102816814,20645098,5
+66481682,20645098,3
+FoEverDove,20645098,4
+lizzy2005,20645098,1
+69104253,20645098,5
+kedoumili,20645098,4
+Dallowave,20645098,4
+yanhecll,20645098,5
+myserendipity,20645098,4
+jimuwawa,20645098,5
+4197973,20645098,4
+90490469,20645098,4
+132023053,20645098,5
+58708135,20645098,4
+47016246,20645098,5
+83012813,20645098,1
+Celethy,20645098,5
+yushu25,20645098,4
+122702162,20645098,5
+58040832,20645098,5
+124662492,20645098,5
+star027,20645098,4
+59578482,20645098,5
+45986040,20645098,4
+74844430,20645098,4
+royin.chao,20645098,4
+51948085,20645098,5
+hjhmusic,20645098,1
+supersaul,20645098,4
+biglao,20645098,4
+ying029,20645098,4
+81059952,20645098,4
+winnietime,20645098,4
+4283595,20645098,5
+130379434,20645098,5
+75579156,20645098,4
+jite,20645098,3
+131610219,20645098,4
+flowermumu,20645098,4
+76452632,20645098,4
+73132535,20645098,3
+shadow.ls,20645098,5
+69164081,20645098,4
+Windbroken,20645098,5
+catpear,20645098,5
+KeithMoon,20645098,4
+mercyjj,20645098,4
+82687720,20645098,4
+49021875,20645098,5
+50620996,20645098,3
+49919460,20645098,5
+110718557,20645098,5
+yibojiang,20645098,5
+yezihanxu,20645098,5
+71206904,20645098,5
+63879603,20645098,4
+74575002,20645098,3
+61024335,20645098,5
+am7061222224,20645098,2
+skyfullife,20645098,5
+103137741,20645098,2
+littlejuice,20645098,4
+61076987,20645098,3
+134176594,20645098,3
+Link0406,20645098,4
+122657372,20645098,4
+nearjones,20645098,5
+61289986,20645098,3
+60437106,20645098,4
+2667938,20645098,5
+95074906,20645098,5
+84943776,20645098,5
+Kiwi1126,20645098,5
+70478796,20645098,4
+45187955,20645098,3
+diedie218,20645098,5
+LSD22,20645098,5
+135377807,20645098,3
+Renee101,20645098,5
+49048529,20645098,5
+oybj1989,20645098,3
+82524892,20645098,5
+116416248,20645098,4
+126053107,20645098,5
+58859992,20645098,5
+melodyshu,20645098,5
+virlee,20645098,2
+65895302,20645098,4
+48795051,20645098,2
+58927939,20645098,5
+62072231,20645098,-1
+66578884,20645098,4
+J7N,20645098,5
+woaotian,20645098,5
+84959999,20645098,4
+69223309,20645098,4
+121572881,20645098,4
+107926546,20645098,5
+1668414,20645098,5
+38718376,20645098,5
+80161356,20645098,1
+92559363,20645098,-1
+65117106,20645098,4
+dc_ckhab,20645098,4
+80429780,20645098,5
+131329189,20645098,-1
+129337245,20645098,5
+CookieCrumbler,20645098,4
+Kenren,20645098,2
+66066878,20645098,5
+2678642,20645098,3
+91821624,20645098,5
+53910261,20645098,5
+chengtong1991,20645098,3
+89451365,20645098,4
+128122162,20645098,4
+3192065,20645098,-1
+49419366,20645098,4
+130866861,20645098,3
+126125294,20645098,5
+65710892,20645098,3
+103878808,20645098,5
+107718660,20645098,4
+66319337,20645098,5
+Masked-xia,20645098,5
+62952005,20645098,5
+sfroompp,20645098,5
+95672053,20645098,5
+4325552,20645098,5
+1786605,20645098,4
+SecretWitch,20645098,5
+48824155,20645098,4
+69383984,20645098,5
+63774339,20645098,4
+44286990,20645098,5
+134573584,20645098,5
+100320970,20645098,5
+49249135,20645098,5
+riceseedling,20645098,3
+3470100,20645098,3
+68454681,20645098,2
+65675536,20645098,3
+59210685,20645098,3
+76914010,20645098,4
+wangxiaomiao,20645098,5
+131169136,20645098,4
+49175410,20645098,5
+67296055,20645098,5
+lunargoddess,20645098,4
+83211124,20645098,5
+63493367,20645098,4
+43176716,20645098,4
+haiyangchen,20645098,4
+89747225,20645098,4
+roseforu,20645098,4
+totowithlove,20645098,4
+kikyo531,20645098,5
+fangbin0516,20645098,4
+52207063,20645098,3
+92008777,20645098,4
+39370570,20645098,5
+31873447,20645098,3
+131131042,20645098,3
+danzi0105,20645098,5
+53654019,20645098,2
+69125337,20645098,4
+125863763,20645098,5
+42526579,20645098,5
+43927270,20645098,3
+69232236,20645098,5
+61064779,20645098,3
+136087116,20645098,4
+37470705,20645098,5
+35567760,20645098,3
+55332444,20645098,4
+58547154,20645098,3
+95626340,20645098,5
+52119631,20645098,5
+45038508,20645098,4
+52769755,20645098,5
+Youoen,20645098,4
+115223509,20645098,4
+94669890,20645098,5
+67781678,20645098,5
+87741143,20645098,5
+60826804,20645098,4
+45067851,20645098,5
+yeyi0819,20645098,-1
+91851070,20645098,4
+51658780,20645098,5
+land4dream,20645098,4
+119428504,20645098,3
+68615853,20645098,4
+synvin,20645098,4
+62629922,20645098,3
+87530030,20645098,5
+richey_,20645098,3
+55705550,20645098,4
+mysheepy,20645098,5
+106207821,20645098,4
+53988920,20645098,4
+47692361,20645098,4
+tiger.grass,20645098,5
+74894488,20645098,2
+loki-649,20645098,2
+60904027,20645098,2
+46001214,20645098,3
+moqulss,20645098,4
+3147736,20645098,5
+65429142,20645098,4
+biyouyousunshin,20645098,5
+61236868,20645098,4
+Zx-960925,20645098,3
+mnadio,20645098,5
+45257558,20645098,5
+57779611,20645098,5
+63713209,20645098,5
+47715297,20645098,4
+RoyalParty,20645098,5
+72174135,20645098,4
+132834328,20645098,5
+vina16c,20645098,4
+116602815,20645098,4
+72399328,20645098,3
+45340268,20645098,4
+yogawangyujia,20645098,5
+84174348,20645098,5
+mengjianl,20645098,3
+50832667,20645098,-1
+2195388,20645098,4
+inno2009,20645098,4
+47904693,20645098,5
+infero,20645098,2
+65667540,20645098,3
+52111402,20645098,5
+46430549,20645098,3
+103807559,20645098,5
+97710077,20645098,4
+xyq1995,20645098,5
+byebyehaku,20645098,3
+2571425,20645098,3
+2579342,20645098,4
+58726873,20645098,5
+63422177,20645098,3
+dreamchris,20645098,3
+66169257,20645098,4
+76484810,20645098,5
+sprite520,20645098,4
+80846705,20645098,5
+58656660,20645098,4
+51112968,20645098,3
+jeffblack,20645098,5
+80487107,20645098,3
+55972806,20645098,5
+58114577,20645098,3
+yoyomei,20645098,4
+3995826,20645098,3
+80622644,20645098,5
+cca2222223,20645098,5
+69510684,20645098,4
+61691553,20645098,3
+amibubai,20645098,5
+RongZ,20645098,3
+50598795,20645098,5
+47862106,20645098,5
+DM1994,20645098,4
+hivhivwhm,20645098,5
+weipengcheng,20645098,4
+bice87,20645098,5
+28566802,20645098,4
+lns,20645098,5
+Free12138,20645098,4
+justover,20645098,4
+135981815,20645098,3
+69112472,20645098,5
+57821710,20645098,3
+64123749,20645098,4
+LEPINGNI,20645098,3
+seuleme0328,20645098,5
+48353762,20645098,4
+78607370,20645098,5
+63478698,20645098,5
+yinzi731,20645098,5
+pimichang,20645098,3
+73067284,20645098,4
+lijianbinxp,20645098,5
+56158327,20645098,5
+43164818,20645098,5
+81815749,20645098,3
+124217585,20645098,3
+burglar,20645098,4
+59029214,20645098,5
+weiwei1020,20645098,5
+53381705,20645098,5
+eggpant,20645098,3
+74934010,20645098,5
+54783483,20645098,4
+gaaramengyi,20645098,2
+Obtson,20645098,3
+81106134,20645098,4
+Jiang_jss,20645098,5
+75074220,20645098,5
+46395501,20645098,3
+pigeye,20645098,3
+Plutoyw,20645098,3
+catq,20645098,3
+lin-12835,20645098,5
+97530151,20645098,5
+ShenaOne,20645098,5
+79418925,20645098,5
+108705565,20645098,5
+85282042,20645098,4
+61913236,20645098,4
+61913236,20645098,4
+shadow627,20645098,5
+53096337,20645098,4
+csp,20645098,4
+79728421,20645098,4
+63219017,20645098,4
+71859163,20645098,5
+p2165,20645098,4
+131474595,20645098,5
+1787114,20645098,3
+119314336,20645098,4
+3304496,20645098,5
+4288001,20645098,4
+fugazi,20645098,5
+vicking,20645098,5
+lunatique,20645098,3
+50344894,20645098,4
+122789021,20645098,4
+53675537,20645098,4
+114622036,20645098,3
+63003958,20645098,5
+71505159,20645098,5
+roseyan_lxy,20645098,-1
+Heliotrop,20645098,5
+dante8977,20645098,4
+52744740,20645098,4
+57111626,20645098,4
+35440419,20645098,5
+61136386,20645098,3
+y-3y17,20645098,4
+cambridgeblue,20645098,4
+jesus_marychain,20645098,5
+ambersigh,20645098,4
+68647916,20645098,4
+52979491,20645098,5
+1450454,20645098,5
+40635844,20645098,4
+121338991,20645098,4
+zyycat,20645098,-1
+48476618,20645098,4
+Aimovie,20645098,4
+70242855,20645098,4
+3377500,20645098,4
+FrankWasabi,20645098,3
+dearruby,20645098,5
+vitaminJ,20645098,5
+feesle,20645098,4
+94304030,20645098,4
+leeeeeeeew,20645098,1
+liaoxiaoben,20645098,4
+happuiness,20645098,3
+niguize,20645098,2
+130289224,20645098,5
+13405505,20645098,3
+kiwiloveskiwis,20645098,4
+47391679,20645098,4
+51166745,20645098,3
+8839314,20645098,3
+76739176,20645098,4
+97180587,20645098,5
+41629334,20645098,4
+63579179,20645098,5
+66033217,20645098,4
+88539374,20645098,5
+122999824,20645098,5
+angeoudemon,20645098,5
+euro,20645098,4
+41833593,20645098,4
+132235046,20645098,5
+50611156,20645098,-1
+zhangqiuyu,20645098,5
+90528426,20645098,5
+75547814,20645098,3
+38784639,20645098,5
+pylee,20645098,4
+63579329,20645098,4
+79695986,20645098,4
+gu_yan,20645098,4
+evalinezhou,20645098,4
+47257244,20645098,5
+81404706,20645098,4
+armai,20645098,4
+80506122,20645098,4
+yangxiansheng,20645098,2
+46815070,20645098,4
+65191313,20645098,5
+65851485,20645098,3
+79372672,20645098,5
+47239979,20645098,4
+48899019,20645098,3
+62837833,20645098,5
+29839643,20645098,5
+richer725,20645098,2
+sweetjune,20645098,5
+tounye,20645098,3
+suekz,20645098,5
+130540529,20645098,4
+54811719,20645098,4
+45099103,20645098,4
+aibamoe,20645098,4
+mouy490,20645098,5
+Olivia4real,20645098,3
+xiaoxunoisy,20645098,5
+57002877,20645098,5
+88878273,20645098,4
+133029599,20645098,4
+cl_2046,20645098,5
+44431964,20645098,5
+78260740,20645098,1
+13856427,20645098,3
+fengyanjujing,20645098,5
+77068892,20645098,4
+53617119,20645098,4
+42672470,20645098,5
+46387207,20645098,4
+42222694,20645098,5
+79033208,20645098,5
+jxjjxhb,20645098,4
+manxiaoyi,20645098,5
+beibeilaner,20645098,3
+61622272,20645098,5
+44618919,20645098,5
+iqueen,20645098,4
+51236215,20645098,4
+60874704,20645098,2
+raynawen,20645098,5
+81626432,20645098,-1
+3427616,20645098,3
+53031430,20645098,5
+53813339,20645098,4
+43732485,20645098,-1
+58595103,20645098,3
+3853432,20645098,5
+44032131,20645098,4
+82459449,20645098,4
+61490354,20645098,3
+paradisexue,20645098,5
+104204726,20645098,4
+bof,20645098,4
+47358102,20645098,4
+47730892,20645098,4
+58170865,20645098,2
+zoesuk,20645098,5
+52273001,20645098,4
+73878048,20645098,5
+vinniezhao,20645098,4
+monicayun,20645098,4
+128299741,20645098,5
+134498309,20645098,3
+1089017,20645098,-1
+deltadawns,20645098,3
+64302220,20645098,5
+earlyzaozao,20645098,5
+84389255,20645098,4
+84279039,20645098,4
+pavous,20645098,4
+crystalnie,20645098,5
+1830523,20645098,3
+mavisivam,20645098,3
+4599465,20645098,5
+17289580,20645098,5
+Lethe8,20645098,2
+lewuleyi,20645098,5
+3159688,20645098,2
+doraeman,20645098,4
+vermouthyan,20645098,5
+45318563,20645098,4
+shilylong,20645098,3
+summer_naci,20645098,5
+73312122,20645098,4
+kriskid,20645098,5
+monkeycupl,20645098,3
+49547973,20645098,4
+y.u,20645098,5
+121737603,20645098,5
+70233556,20645098,2
+50515546,20645098,5
+90618593,20645098,5
+119987605,20645098,4
+59782397,20645098,4
+133225593,20645098,4
+sofahuang,20645098,5
+42111921,20645098,4
+lucifer7th,20645098,5
+62240477,20645098,5
+congyaoyao,20645098,4
+106260389,20645098,5
+46696173,20645098,4
+fenglingcp,20645098,3
+52864878,20645098,5
+82046429,20645098,4
+2349644,20645098,4
+57311033,20645098,4
+69244855,20645098,5
+1863654,20645098,5
+47721355,20645098,5
+67471564,20645098,3
+Sparta233,20645098,4
+93807265,20645098,4
+122858309,20645098,5
+64623999,20645098,4
+92948260,20645098,5
+2448513,20645098,3
+3510022,20645098,5
+121370205,20645098,5
+54961234,20645098,5
+doralupin,20645098,4
+121922821,20645098,4
+51047226,20645098,5
+plasticsub,20645098,5
+sabrinaqin,20645098,4
+3420891,20645098,3
+122385818,20645098,4
+chixixiaoyu228,20645098,3
+joycedevil,20645098,1
+SuperWMY,20645098,4
+77016195,20645098,2
+eileen666lxh,20645098,5
+57973168,20645098,4
+79891168,20645098,5
+58143744,20645098,-1
+bettylwx,20645098,4
+imjack,20645098,5
+102390671,20645098,4
+46243415,20645098,4
+39916488,20645098,3
+63352248,20645098,4
+67232894,20645098,5
+14286734,20645098,3
+91746178,20645098,5
+litian19890502,20645098,3
+61184196,20645098,4
+sydsun,20645098,4
+JustinYu,20645098,4
+cc110414,20645098,3
+47941861,20645098,2
+28421600,20645098,5
+52811002,20645098,-1
+2352198,20645098,2
+sirs,20645098,4
+yycznh0520,20645098,5
+ciel2jia,20645098,5
+longbookstore,20645098,3
+Se7en1123,20645098,5
+encore7,20645098,5
+76782727,20645098,4
+87867332,20645098,5
+6474153,20645098,3
+128822231,20645098,4
+55799483,20645098,5
+45549076,20645098,5
+65440660,20645098,3
+undertherose,20645098,-1
+62034584,20645098,5
+rudolf_year,20645098,5
+34849239,20645098,4
+80688565,20645098,5
+why051370,20645098,5
+yiqi213,20645098,5
+126500017,20645098,3
+yuyangaiyang,20645098,4
+babylucky,20645098,5
+56244786,20645098,-1
+49529143,20645098,3
+soulmate_z,20645098,3
+yishuiyimu,20645098,3
+ruofeidangxia,20645098,4
+49154372,20645098,4
+57396518,20645098,1
+50416947,20645098,3
+susansayslove,20645098,5
+36061931,20645098,4
+63742684,20645098,4
+65104793,20645098,5
+60858827,20645098,5
+48941229,20645098,4
+74145154,20645098,5
+chensiliunian,20645098,4
+56861093,20645098,2
+jiliguala,20645098,-1
+81031962,20645098,4
+78727212,20645098,4
+4310321,20645098,4
+kangshuying,20645098,4
+DrRay,20645098,3
+2254252,20645098,4
+49851482,20645098,4
+49060371,20645098,4
+51208677,20645098,5
+119679668,20645098,3
+68456066,20645098,5
+1711540,20645098,5
+56682506,20645098,5
+85571808,20645098,5
+sherly0710,20645098,3
+65923312,20645098,5
+127879044,20645098,4
+99348139,20645098,-1
+121641170,20645098,5
+2518373,20645098,4
+130605576,20645098,5
+94678422,20645098,3
+MAAAAAX,20645098,5
+csee1121,20645098,5
+110315543,20645098,4
+132471226,20645098,3
+48885741,20645098,5
+lilian_016,20645098,5
+Fucking_hell,20645098,5
+pitaya77,20645098,4
+Slyviaaa,20645098,3
+50985267,20645098,5
+xiaopang1106,20645098,4
+126632521,20645098,3
+133742198,20645098,-1
+127731912,20645098,5
+119247583,20645098,4
+4092203,20645098,4
+pearl.lu,20645098,4
+81286408,20645098,3
+61920947,20645098,4
+50124221,20645098,5
+doralaw,20645098,2
+63646963,20645098,5
+121065420,20645098,3
+121997896,20645098,5
+spongepea,20645098,-1
+amhuming,20645098,5
+PARIADISE,20645098,3
+CainEstatic,20645098,5
+127114583,20645098,4
+120358782,20645098,4
+wayne_sun,20645098,5
+jjcarolyn0609,20645098,4
+80469066,20645098,4
+103775903,20645098,4
+BunnyBaby89757,20645098,5
+41657759,20645098,4
+72382152,20645098,5
+52447788,20645098,3
+MaiZiJie95,20645098,5
+95686183,20645098,4
+Riverdance,20645098,5
+35808840,20645098,4
+erhuyouxuan,20645098,5
+avaxi,20645098,4
+68960753,20645098,5
+56858678,20645098,3
+mrlp,20645098,3
+82825771,20645098,5
+tobekalorce,20645098,4
+119741073,20645098,5
+xiaoxiaoxincute,20645098,5
+wzh1995,20645098,3
+34940692,20645098,5
+90904421,20645098,3
+66203352,20645098,3
+71835684,20645098,5
+99632498,20645098,2
+133675350,20645098,5
+46196590,20645098,5
+87587913,20645098,5
+75867541,20645098,4
+48468316,20645098,4
+57244996,20645098,5
+28435763,20645098,2
+taoqi53231323,20645098,5
+67520406,20645098,5
+54551118,20645098,5
+102883589,20645098,5
+47721581,20645098,5
+lingzi_zheng,20645098,5
+135491679,20645098,4
+96390757,20645098,3
+61673467,20645098,5
+59535372,20645098,4
+revelation,20645098,4
+123174311,20645098,4
+62806809,20645098,2
+eleven_11,20645098,5
+4890880,20645098,1
+76282200,20645098,4
+didho,20645098,4
+21929051,20645098,-1
+68361818,20645098,5
+53212300,20645098,5
+55764073,20645098,5
+shuoshuochong,20645098,5
+orangeumoon,20645098,4
+52430897,20645098,4
+emelyne,20645098,-1
+124870613,20645098,3
+89185666,20645098,5
+2480872,20645098,5
+54943644,20645098,4
+xinnii,20645098,4
+59570753,20645098,5
+48232992,20645098,5
+3581002,20645098,5
+52390566,20645098,4
+46913847,20645098,5
+3498872,20645098,3
+yaozhouyao,20645098,5
+70320842,20645098,5
+78528926,20645098,4
+yuyourongyan,20645098,5
+46939628,20645098,4
+70001053,20645098,3
+45485577,20645098,2
+113286915,20645098,5
+1491950,20645098,3
+130856040,20645098,4
+135413775,20645098,4
+4239908,20645098,4
+baishibaihu,20645098,4
+54339291,20645098,4
+62187339,20645098,4
+39079545,20645098,5
+65635790,20645098,4
+67796824,20645098,2
+49891918,20645098,5
+122329830,20645098,3
+ami6328007,20645098,5
+59335490,20645098,4
+132255514,20645098,5
+kuimouren,20645098,4
+121892422,20645098,5
+100236370,20645098,5
+108289325,20645098,4
+49891610,20645098,4
+xiawu1130,20645098,5
+wan1991m,20645098,3
+81412725,20645098,4
+135236232,20645098,5
+132810036,20645098,5
+50570726,20645098,4
+55973777,20645098,5
+52999663,20645098,5
+98794202,20645098,5
+8039014,20645098,5
+45623540,20645098,5
+kkxnzi,20645098,4
+120964846,20645098,5
+67677954,20645098,4
+78763010,20645098,4
+133162323,20645098,4
+129369858,20645098,3
+LUCKYPAN9,20645098,5
+1282109,20645098,5
+SaneWoo,20645098,4
+90455856,20645098,4
+minoyi,20645098,3
+107424486,20645098,4
+alwayslo7e,20645098,5
+121758259,20645098,4
+103680149,20645098,5
+2873930,20645098,-1
+spritesh221b,20645098,5
+33177895,20645098,3
+43133361,20645098,5
+49403178,20645098,5
+2227016,20645098,1
+ruyuwong,20645098,3
+75678243,20645098,3
+Lotto59,20645098,4
+LoveJHart,20645098,4
+kobeeason,20645098,4
+maple_zt,20645098,5
+6239142,20645098,5
+kekexilijiu,20645098,5
+meco,20645098,4
+52477638,20645098,3
+66550848,20645098,4
+issyoukenmei,20645098,4
+50203852,20645098,5
+35261395,20645098,5
+75828184,20645098,-1
+huoruiting,20645098,3
+78571536,20645098,5
+69819504,20645098,5
+69819504,20645098,5
+69344472,20645098,3
+Echolong,20645098,5
+61426958,20645098,4
+53975225,20645098,4
+Pandaoreo,20645098,5
+47948719,20645098,-1
+Sarinagara,20645098,5
+edwardtroy,20645098,5
+kevinward,20645098,3
+minhom,20645098,5
+45408474,20645098,4
+129798303,20645098,4
+87442839,20645098,5
+33158247,20645098,5
+131337124,20645098,4
+67489449,20645098,3
+lugia1989,20645098,5
+zhanggezhi,20645098,5
+79784284,20645098,3
+hinna,20645098,3
+53000504,20645098,4
+hiandai,20645098,5
+37160658,20645098,4
+46736455,20645098,4
+52261766,20645098,5
+45922646,20645098,4
+64516697,20645098,5
+monkeek,20645098,4
+mogujunmomo,20645098,3
+82217473,20645098,3
+lemonomel,20645098,4
+58376944,20645098,5
+36184801,20645098,5
+imauve,20645098,5
+reginachi,20645098,3
+64497662,20645098,5
+63887797,20645098,4
+86208468,20645098,4
+moguduola,20645098,4
+39540944,20645098,5
+chickJzi,20645098,5
+8528137,20645098,4
+62882981,20645098,4
+korean,20645098,4
+gin-schizo,20645098,4
+78663925,20645098,5
+134390440,20645098,5
+63439908,20645098,3
+126887950,20645098,5
+1398348,20645098,5
+121704943,20645098,4
+doomsayer,20645098,5
+wheelov,20645098,5
+joyeecheung,20645098,1
+87039670,20645098,4
+77279823,20645098,5
+3904908,20645098,4
+3578261,20645098,4
+51790573,20645098,5
+4821736,20645098,5
+56486542,20645098,5
+mericandy,20645098,4
+66991215,20645098,5
+117994260,20645098,5
+yoyoheart,20645098,4
+zhaochenrui123,20645098,4
+84915183,20645098,3
+53179337,20645098,5
+Flower-tea,20645098,5
+RivenZhong,20645098,4
+30779391,20645098,3
+62664539,20645098,4
+Ppenguinw,20645098,5
+Ahomo,20645098,3
+Iamwanghaha,20645098,4
+elliry,20645098,5
+Patrick_Kang,20645098,4
+92140787,20645098,2
+magicnuan,20645098,5
+maihani,20645098,4
+48091031,20645098,5
+69572564,20645098,4
+57471416,20645098,5
+wbhvivian,20645098,-1
+anniegao,20645098,5
+71108776,20645098,5
+37377499,20645098,5
+61858967,20645098,5
+zookeeper,20645098,5
+54648454,20645098,3
+131109620,20645098,4
+49518806,20645098,4
+2475595,20645098,4
+wangyujia520,20645098,4
+73757988,20645098,4
+57671679,20645098,5
+122316474,20645098,4
+134339414,20645098,5
+KQueen,20645098,5
+abaqiao,20645098,3
+AokiEmi,20645098,3
+SpiritedGreen,20645098,5
+4242859,20645098,4
+87947108,20645098,4
+65382109,20645098,5
+36090011,20645098,4
+raoyueroyale,20645098,5
+2808827,20645098,-1
+ice41322,20645098,2
+82049060,20645098,4
+133698195,20645098,5
+ReneeChan,20645098,3
+101112458,20645098,4
+star-b612,20645098,4
+41815826,20645098,5
+41896370,20645098,5
+chishu,20645098,5
+4891885,20645098,5
+130941913,20645098,4
+53484226,20645098,5
+61253200,20645098,4
+51965596,20645098,3
+Seajor74,20645098,2
+51283004,20645098,5
+78130201,20645098,5
+4583369,20645098,4
+61053106,20645098,3
+NysUn,20645098,4
+84809239,20645098,5
+64029045,20645098,5
+hubery19930301,20645098,5
+14796449,20645098,4
+131984486,20645098,5
+10918942,20645098,4
+thisworld2night,20645098,5
+56008038,20645098,4
+buxiangpaobu,20645098,4
+80483315,20645098,4
+88526252,20645098,2
+88526252,20645098,2
+tiny___Lee,20645098,5
+127278343,20645098,5
+jessetoo,20645098,1
+2946471,20645098,4
+53512949,20645098,4
+uruk60kg,20645098,5
+49505291,20645098,4
+92340097,20645098,-1
+70236438,20645098,4
+103584497,20645098,4
+66989068,20645098,5
+72538808,20645098,4
+64654211,20645098,5
+63525530,20645098,4
+shanguicheng,20645098,4
+58291702,20645098,3
+53557522,20645098,4
+61921759,20645098,5
+130940103,20645098,-1
+sun_corydalis,20645098,5
+pipi1226,20645098,4
+45107933,20645098,4
+75105480,20645098,4
+49243292,20645098,5
+littlenineten,20645098,3
+4401259,20645098,5
+52349012,20645098,4
+cappuccino5026,20645098,4
+52028198,20645098,5
+ijiaorui,20645098,3
+41465171,20645098,5
+ViolentViolin,20645098,3
+TvTlovemom,20645098,4
+132686664,20645098,5
+cfbuhaochi,20645098,5
+Tracy.Wan,20645098,3
+23692831,20645098,4
+4096064,20645098,5
+105931012,20645098,4
+eatonzh,20645098,4
+122484981,20645098,3
+123004306,20645098,5
+34499999,20645098,4
+41922022,20645098,2
+50341926,20645098,4
+60407456,20645098,3
+45321739,20645098,5
+52452287,20645098,1
+46891374,20645098,5
+guosiyao,20645098,5
+3005993,20645098,3
+91687057,20645098,3
+70284743,20645098,5
+70052197,20645098,5
+68179093,20645098,4
+124384894,20645098,5
+92319009,20645098,5
+iker-estrella,20645098,4
+132882115,20645098,5
+BettyLuu,20645098,4
+96066844,20645098,5
+xiaochaiq,20645098,4
+64134033,20645098,4
+feelingthewind,20645098,5
+126008793,20645098,5
+alex047,20645098,5
+84864634,20645098,4
+ohghost,20645098,-1
+farewellmyeteen,20645098,3
+mystery1987,20645098,4
+impossible_ww,20645098,5
+aisang,20645098,4
+132447826,20645098,5
+45214078,20645098,5
+46053347,20645098,4
+3484320,20645098,1
+Jensen4ever,20645098,1
+jeffchuwei,20645098,4
+67695770,20645098,3
+56988549,20645098,5
+huadian,20645098,5
+koi_M,20645098,2
+75555636,20645098,5
+58393233,20645098,5
+mrbrightside,20645098,5
+flora1984,20645098,5
+52389942,20645098,2
+58739148,20645098,5
+huan19494114,20645098,3
+55342702,20645098,3
+duanbaba,20645098,4
+88600705,20645098,5
+132148305,20645098,4
+70315903,20645098,4
+3809045,20645098,2
+129278599,20645098,5
+127649603,20645098,5
+73305733,20645098,5
+coc79,20645098,4
+xiaobai_zw,20645098,3
+43590001,20645098,4
+24853995,20645098,5
+DVforever,20645098,3
+1151029,20645098,4
+xiangdahai,20645098,3
+65197917,20645098,4
+49529006,20645098,5
+52087447,20645098,4
+a_Yuan,20645098,3
+121456273,20645098,5
+maruko31,20645098,5
+3049354,20645098,3
+81840973,20645098,3
+summerEF,20645098,5
+121595559,20645098,5
+blueeon,20645098,4
+46705511,20645098,5
+anjia617,20645098,3
+r20085,20645098,4
+mhtgreen,20645098,5
+chance_in_842,20645098,5
+50126982,20645098,5
+73942837,20645098,5
+75796576,20645098,5
+23883662,20645098,4
+81628764,20645098,4
+61389234,20645098,5
+62852153,20645098,5
+goodbyelenin,20645098,3
+thistle_,20645098,5
+43161873,20645098,2
+Antonia-17,20645098,4
+Vitus16,20645098,5
+suyi1031,20645098,3
+125226021,20645098,4
+louisayu,20645098,3
+51363216,20645098,3
+anamorphose,20645098,5
+52001200,20645098,4
+13976232,20645098,5
+108481476,20645098,4
+luckysophia55,20645098,5
+79425472,20645098,4
+feel_sorrow,20645098,5
+wenbao,20645098,4
+57854252,20645098,3
+61752391,20645098,4
+103187008,20645098,3
+75691950,20645098,5
+42948649,20645098,4
+petitespot,20645098,3
+willicy,20645098,4
+meimeimoi,20645098,5
+132438473,20645098,2
+68167260,20645098,5
+1502900,20645098,2
+zhaimi,20645098,5
+joyouses,20645098,5
+wangchangjian,20645098,4
+53586597,20645098,4
+74572118,20645098,5
+51607995,20645098,5
+qylp,20645098,5
+violetmelody,20645098,5
+33602886,20645098,5
+65723626,20645098,3
+58253013,20645098,4
+yufeichen,20645098,4
+mixi456,20645098,4
+47048376,20645098,3
+124860961,20645098,5
+season.lin,20645098,4
+rokkumu,20645098,4
+Laylauu,20645098,4
+guo4901,20645098,4
+1530125,20645098,4
+leeloo_s,20645098,5
+chenxiangworld,20645098,5
+123811163,20645098,3
+yinchouyunv,20645098,5
+hellobabysa,20645098,4
+62763553,20645098,5
+Patricia1117,20645098,4
+95873636,20645098,4
+1639917,20645098,3
+121532564,20645098,3
+108146760,20645098,3
+qyuer,20645098,5
+81731050,20645098,5
+westender,20645098,5
+48407248,20645098,4
+cherishcrystal,20645098,4
+49261275,20645098,5
+73378499,20645098,5
+133624532,20645098,5
+73807448,20645098,4
+63558635,20645098,5
+stellalula,20645098,4
+40552565,20645098,4
+maimai251,20645098,4
+133592431,20645098,4
+ya45010424,20645098,5
+64214244,20645098,5
+ashur1314,20645098,4
+84290268,20645098,4
+gracebaobao,20645098,4
+PFmaple,20645098,3
+51061132,20645098,3
+69998788,20645098,4
+cassidesert,20645098,4
+kidrabbit,20645098,4
+82262914,20645098,5
+3509096,20645098,4
+74935838,20645098,3
+51807929,20645098,2
+vinvinky,20645098,4
+50187661,20645098,5
+yabatoo,20645098,5
+57342523,20645098,5
+nine1991,20645098,4
+61775783,20645098,5
+120359259,20645098,4
+4869932,20645098,5
+57860593,20645098,4
+Bubble-Geek,20645098,3
+dxiaomi,20645098,3
+74769149,20645098,3
+103240120,20645098,5
+onenadia,20645098,5
+45133430,20645098,5
+43871169,20645098,5
+coffeeworm,20645098,4
+62869919,20645098,4
+71811123,20645098,5
+83788301,20645098,4
+126306276,20645098,4
+131009254,20645098,4
+weexf,20645098,4
+tiniu,20645098,5
+65900296,20645098,5
+115661966,20645098,2
+65038272,20645098,5
+oldclean,20645098,3
+58726406,20645098,4
+65003049,20645098,5
+55852519,20645098,3
+2096340,20645098,4
+bonjourlouise,20645098,-1
+stefanie3nana3,20645098,3
+chahuajia,20645098,5
+JINGMO,20645098,5
+3842092,20645098,5
+xiaoguli,20645098,3
+70081984,20645098,4
+58337655,20645098,5
+86193611,20645098,5
+63692271,20645098,4
+rainerrilke,20645098,3
+unclepenguin,20645098,5
+YDevilcrys,20645098,5
+47723160,20645098,4
+2716948,20645098,3
+candy_littrell,20645098,2
+irenelgrandma,20645098,4
+novocaine,20645098,2
+SoyQueenaTse,20645098,3
+3535371,20645098,5
+52220712,20645098,5
+paopaoing,20645098,3
+53108511,20645098,5
+shouyuanwai,20645098,4
+59602774,20645098,4
+132841407,20645098,3
+68480782,20645098,5
+littlepinkbang7,20645098,5
+linruoru,20645098,3
+22593878,20645098,5
+lasai,20645098,4
+3386741,20645098,3
+tweetyish,20645098,4
+starspell,20645098,-1
+85314786,20645098,5
+59796591,20645098,3
+McMurphyT,20645098,-1
+ustyle,20645098,5
+47242205,20645098,4
+hairuo,20645098,3
+netweng,20645098,3
+42619149,20645098,-1
+viona,20645098,3
+ioveta,20645098,4
+Pabalee,20645098,4
+55365789,20645098,5
+67503021,20645098,2
+59105095,20645098,5
+54704864,20645098,-1
+130959045,20645098,5
+danasmom,20645098,3
+chaiyanchao,20645098,4
+60112538,20645098,5
+sakurasong,20645098,2
+45785336,20645098,4
+43576863,20645098,5
+50653408,20645098,4
+treedoctor,20645098,5
+54187301,20645098,4
+75328921,20645098,5
+19660347,20645098,3
+38150776,20645098,5
+alienyoyo,20645098,-1
+lemons,20645098,4
+2236097,20645098,4
+4585815,20645098,3
+see2saw,20645098,4
+sakina_s,20645098,5
+muzike,20645098,4
+jiazi1216,20645098,3
+LuciaEvans,20645098,3
+Wegmarken27,20645098,5
+66388029,20645098,4
+miracle1025,20645098,4
+60904921,20645098,5
+joywuyan,20645098,5
+33019737,20645098,3
+129817690,20645098,5
+52054072,20645098,-1
+97757646,20645098,5
+tezuka15,20645098,4
+goldenhornking,20645098,4
+50058141,20645098,3
+JunSta,20645098,4
+3892140,20645098,4
+3024123,20645098,5
+ciaoxu,20645098,3
+77520589,20645098,5
+2374654,20645098,5
+daisyhe,20645098,3
+52992190,20645098,2
+76110011,20645098,5
+simin319,20645098,4
+ellestmorte,20645098,-1
+20676116,20645098,4
+122736540,20645098,4
+4391706,20645098,5
+3670070,20645098,4
+Livingintherose,20645098,5
+RITABMW,20645098,4
+ooyoo,20645098,5
+79272694,20645098,3
+luhang363,20645098,5
+82254270,20645098,5
+ireneqian,20645098,5
+31713107,20645098,5
+34342480,20645098,4
+35108027,20645098,5
+98869956,20645098,5
+94008918,20645098,5
+18851959,20645098,3
+summer_Remember,20645098,4
+54443476,20645098,4
+132247397,20645098,5
+notexistatall,20645098,3
+42119237,20645098,5
+1174148,20645098,4
+elephantmonkey,20645098,4
+1131859,20645098,3
+81697516,20645098,4
+nan313,20645098,5
+realpoubelle,20645098,4
+58905615,20645098,5
+3971708,20645098,5
+45564542,20645098,-1
+49057685,20645098,3
+q423660875,20645098,5
+3041750,20645098,5
+yeeeeeee,20645098,4
+zeroseo,20645098,5
+57572255,20645098,3
+4549541,20645098,4
+5658430,20645098,5
+pick3650,20645098,4
+52544571,20645098,3
+4677552,20645098,5
+heywendi,20645098,5
+Moretoless,20645098,-1
+aaiun,20645098,4
+15874122,20645098,5
+44636465,20645098,5
+125841916,20645098,5
+69248971,20645098,5
+2793105,20645098,4
+52529736,20645098,5
+xlee,20645098,3
+3923430,20645098,5
+jeannezhujing,20645098,3
+43237878,20645098,4
+et2o,20645098,4
+2862311,20645098,5
+Mrfuck_u,20645098,5
+75215757,20645098,5
+CARZYEAR,20645098,1
+2933625,20645098,3
+YuRAY,20645098,4
+60802128,20645098,3
+130496028,20645098,4
+131043269,20645098,4
+dabyrowe,20645098,5
+50281371,20645098,5
+46095087,20645098,-1
+66579976,20645098,5
+56523090,20645098,4
+58114980,20645098,5
+52521472,20645098,5
+kaka22cd55,20645098,4
+zhengmeijun,20645098,4
+62272119,20645098,-1
+wyfar,20645098,4
+57587470,20645098,5
+2028239,20645098,3
+8605018,20645098,4
+fuxiu,20645098,2
+xkwnso,20645098,4
+60742023,20645098,3
+70870817,20645098,4
+69961635,20645098,3
+brave-wei,20645098,3
+67853237,20645098,5
+67941529,20645098,3
+88033199,20645098,-1
+129239528,20645098,5
+naomilee,20645098,5
+4098661,20645098,3
+icefishe,20645098,4
+36185142,20645098,4
+87942128,20645098,4
+57850884,20645098,5
+Memorial_Sue,20645098,5
+76999503,20645098,4
+43554362,20645098,5
+3394127,20645098,5
+60173971,20645098,3
+wang136906578,20645098,5
+101758665,20645098,4
+127528653,20645098,4
+73875283,20645098,4
+104394788,20645098,4
+amphy,20645098,5
+94563474,20645098,4
+49922437,20645098,3
+victorgcy1121,20645098,5
+qiaowu2,20645098,4
+1683096,20645098,2
+114879006,20645098,4
+2968002,20645098,4
+68513675,20645098,4
+29818764,20645098,4
+nebgnahz,20645098,4
+124142241,20645098,5
+60046251,20645098,-1
+79857371,20645098,5
+suealone,20645098,5
+4588310,20645098,5
+pierrewrs,20645098,4
+104366141,20645098,3
+lunar-month,20645098,5
+60788354,20645098,5
+57171119,20645098,1
+77581060,20645098,5
+83385888,20645098,3
+2195494,20645098,-1
+ZeeS,20645098,4
+blackeleven,20645098,5
+thephysicist,20645098,5
+123283464,20645098,4
+128822653,20645098,4
+13424749,20645098,4
+xiaohundaban,20645098,4
+57998285,20645098,4
+thevyi,20645098,4
+54512951,20645098,5
+physicsheart,20645098,-1
+hexuanpomon,20645098,5
+shili5,20645098,4
+jolllllly,20645098,4
+ganzhejun,20645098,-1
+apieceofpaper,20645098,3
+130107568,20645098,-1
+ChenlipingTS,20645098,5
+purepureheart,20645098,5
+vivifyvivi,20645098,5
+87922451,20645098,5
+16019490,20645098,5
+Chopen,20645098,4
+53698727,20645098,4
+63109880,20645098,5
+69141883,20645098,4
+121920760,20645098,5
+59283531,20645098,4
+mrfofo,20645098,4
+Jash1118,20645098,5
+46511566,20645098,5
+nobystander,20645098,5
+120699928,20645098,5
+shirleyqs,20645098,5
+Calin,20645098,3
+73291837,20645098,4
+daijialu1992,20645098,3
+91337551,20645098,4
+67555862,20645098,5
+76096245,20645098,1
+35591290,20645098,4
+57183150,20645098,5
+83269650,20645098,2
+76198383,20645098,4
+3915247,20645098,4
+53392958,20645098,4
+70815179,20645098,5
+dizzylu,20645098,4
+1494780,20645098,4
+xianxianjiang,20645098,4
+65223888,20645098,4
+jester-black,20645098,-1
+96233634,20645098,3
+75043360,20645098,3
+xiaoshuiliuqiao,20645098,3
+zhangxunnj,20645098,3
+conanemily,20645098,4
+4335163,20645098,3
+1423262,20645098,2
+98931515,20645098,4
+3625223,20645098,5
+58344166,20645098,5
+101765371,20645098,5
+83616174,20645098,5
+jessie811,20645098,-1
+xrr9753,20645098,4
+52622593,20645098,3
+tatazhu,20645098,3
+45219094,20645098,4
+45219094,20645098,4
+50023640,20645098,5
+37948273,20645098,5
+90091065,20645098,5
+47504020,20645098,5
+soulmjs,20645098,5
+74679165,20645098,4
+mr.slow,20645098,2
+78914788,20645098,3
+54087603,20645098,4
+41419698,20645098,4
+zillyromantic,20645098,3
+bluetramper,20645098,5
+100294226,20645098,-1
+56908068,20645098,5
+jeffersontang,20645098,4
+71814413,20645098,4
+lenvis,20645098,5
+judy0420,20645098,3
+hexiaoqin,20645098,5
+cxyecho,20645098,5
+goodull,20645098,4
+47054813,20645098,3
+127515076,20645098,5
+48990593,20645098,5
+69144722,20645098,5
+48363016,20645098,4
+69563898,20645098,4
+brad_tsye,20645098,5
+cat_rs,20645098,5
+chch1420,20645098,-1
+63527236,20645098,4
+3387960,20645098,5
+Ilovetheworld,20645098,4
+6793669,20645098,3
+corday,20645098,4
+yunqiu,20645098,4
+Se7en_017,20645098,3
+52279001,20645098,4
+51568494,20645098,5
+vitamisa,20645098,4
+pamelayang,20645098,1
+kydwang,20645098,4
+cabaret,20645098,3
+none17,20645098,3
+59982556,20645098,4
+vplumage,20645098,3
+ps716,20645098,4
+liu11,20645098,2
+BeanInk,20645098,4
+wangxhtt,20645098,4
+lovefishemma,20645098,3
+57821451,20645098,4
+Yinaly,20645098,5
+yizhao,20645098,4
+banxian,20645098,4
+Baybaz,20645098,4
+loyanymve,20645098,4
+15230288,20645098,1
+3296932,20645098,3
+38595648,20645098,4
+107195676,20645098,5
+4466839,20645098,5
+62122609,20645098,1
+zhuzx,20645098,5
+79746301,20645098,4
+64881839,20645098,5
+63631634,20645098,5
+126737120,20645098,3
+zhengkangkang,20645098,5
+Vol.de.nuit,20645098,3
+fountine1120,20645098,3
+muxiaoxu,20645098,3
+littlegousheng,20645098,1
+frankie_sy,20645098,3
+50703649,20645098,4
+124454581,20645098,4
+bihanguan,20645098,5
+summer_ending,20645098,3
+SilentLookYou,20645098,-1
+49356152,20645098,4
+92943106,20645098,4
+44142317,20645098,3
+sunflower37,20645098,4
+djakjfdl,20645098,5
+Strangefamiliar,20645098,3
+zztvxq_soulmate,20645098,4
+104818582,20645098,5
+92894015,20645098,5
+126702436,20645098,4
+63101856,20645098,5
+74449417,20645098,5
+75269499,20645098,2
+53531812,20645098,2
+luzhiyu,20645098,4
+120908268,20645098,4
+53175256,20645098,4
+nabiki1003,20645098,4
+78440786,20645098,3
+wuwuming,20645098,5
+25588497,20645098,5
+inameless,20645098,3
+54940586,20645098,3
+50325462,20645098,5
+funyifan,20645098,5
+52356046,20645098,3
+xia_xiao,20645098,3
+42962790,20645098,4
+flyying_1991,20645098,5
+ruo1996,20645098,2
+48071372,20645098,4
+EiffelSunrise,20645098,5
+62480578,20645098,5
+85309433,20645098,4
+126340291,20645098,5
+tinaq,20645098,3
+champignon_lou,20645098,4
+103297335,20645098,4
+sheep29,20645098,3
+kuangrenyihao,20645098,3
+godric,20645098,4
+wzdradon,20645098,3
+61123177,20645098,5
+73365749,20645098,4
+88428355,20645098,3
+Armande,20645098,4
+68366606,20645098,4
+8907036,20645098,5
+baicaibang,20645098,5
+moon124,20645098,4
+96992534,20645098,3
+50258293,20645098,1
+cynthia_he,20645098,4
+53612354,20645098,3
+bunnyfrapwcim,20645098,4
+47423865,20645098,4
+121990707,20645098,5
+Zhpher,20645098,5
+4099553,20645098,3
+mickeyF,20645098,5
+jinxi11,20645098,3
+shakie,20645098,4
+65371902,20645098,5
+83382731,20645098,4
+monkeyaptx4869,20645098,5
+66663254,20645098,5
+cinderella_ss,20645098,4
+xiaoan7EF,20645098,-1
+mues,20645098,2
+58521972,20645098,5
+59295882,20645098,4
+Acrazydddd,20645098,5
+kingtreetooth,20645098,5
+kyoko.,20645098,4
+61702712,20645098,5
+52263518,20645098,5
+locking,20645098,4
+61994901,20645098,5
+4759114,20645098,-1
+90532402,20645098,5
+70520100,20645098,5
+IantoJones,20645098,5
+misty_rui,20645098,4
+simonly,20645098,5
+47419627,20645098,4
+92117507,20645098,4
+52538749,20645098,5
+so-it-is,20645098,4
+TheSyaNHs,20645098,5
+57314586,20645098,3
+49902009,20645098,4
+tonycat,20645098,5
+48342025,20645098,5
+82227666,20645098,4
+sissistar,20645098,3
+1895030,20645098,5
+mxymj729,20645098,5
+16289855,20645098,4
+3511715,20645098,4
+musiknonstop,20645098,5
+Castellan199,20645098,4
+dongworry,20645098,5
+raingong,20645098,-1
+nianyike,20645098,3
+jicheng1993,20645098,3
+maxine-m,20645098,1
+AllenZ_CN,20645098,5
+56272874,20645098,4
+susuw,20645098,-1
+syurinn,20645098,3
+85375875,20645098,4
+44394014,20645098,5
+coolmilk,20645098,3
+DeanK,20645098,3
+lemed,20645098,3
+a1234567,20645098,3
+typezero,20645098,3
+eluv,20645098,5
+angelchou,20645098,5
+50029958,20645098,-1
+lupinthe3rd,20645098,3
+62113425,20645098,4
+2445409,20645098,5
+cazze,20645098,4
+4394605,20645098,4
+48844415,20645098,3
+amelie_11,20645098,-1
+55835105,20645098,3
+ting_shark,20645098,-1
+10851412,20645098,4
+44208362,20645098,4
+47336635,20645098,4
+Sheeplady,20645098,4
+62362119,20645098,5
+84749284,20645098,3
+53430385,20645098,4
+67741872,20645098,4
+60876982,20645098,4
+46292893,20645098,3
+Cassiopeia58,20645098,5
+solitude1207,20645098,-1
+3425802,20645098,4
+41348443,20645098,5
+119229578,20645098,4
+58767866,20645098,4
+YOHaYY,20645098,3
+33439516,20645098,4
+teenytinygenius,20645098,4
+vinesun,20645098,3
+jackiekuo,20645098,4
+marurui,20645098,4
+53485894,20645098,5
+q962265267,20645098,5
+35546848,20645098,4
+goffy2679,20645098,4
+114358395,20645098,3
+staybird,20645098,3
+superstitious,20645098,3
+yaozhilan,20645098,4
+63830017,20645098,4
+73715620,20645098,4
+13337545,20645098,3
+kaya_flowers,20645098,1
+wokson,20645098,5
+3764307,20645098,4
+66735315,20645098,3
+62442761,20645098,5
+46513410,20645098,3
+66580854,20645098,4
+42919297,20645098,3
+68144177,20645098,4
+2171517,20645098,3
+119416769,20645098,2
+38744988,20645098,5
+51638198,20645098,5
+121713493,20645098,5
+legend_rhyme,20645098,4
+renminling,20645098,5
+57770188,20645098,5
+4657884,20645098,5
+V-anilla,20645098,5
+nicky1031,20645098,5
+73507935,20645098,5
+tourstory,20645098,3
+rebry,20645098,4
+Doven,20645098,5
+shelyin,20645098,4
+cly23,20645098,3
+yanjy199087,20645098,5
+57319762,20645098,3
+51845720,20645098,2
+2856696,20645098,3
+116902692,20645098,4
+meifyrt,20645098,4
+87760364,20645098,3
+55532506,20645098,3
+yitull,20645098,5
+yixin,20645098,2
+51138955,20645098,4
+helenelian,20645098,3
+34145664,20645098,5
+yalindongdong,20645098,4
+2730418,20645098,5
+momomoyeah,20645098,1
+hyacinth515,20645098,-1
+missunshine,20645098,-1
+36262798,20645098,2
+77351374,20645098,5
+60770013,20645098,4
+55328158,20645098,3
+49668851,20645098,5
+xu77,20645098,3
+noel.suri,20645098,5
+langxiaoyu1990,20645098,5
+63887891,20645098,3
+PSY.D9,20645098,4
+84899362,20645098,5
+mymiss,20645098,4
+wendyshel,20645098,5
+designerbarbo,20645098,3
+cangjie1900,20645098,3
+ali000027,20645098,5
+58406112,20645098,5
+whtsky,20645098,3
+94976751,20645098,4
+Dear_Corny,20645098,2
+32727331,20645098,5
+61307239,20645098,4
+67771925,20645098,1
+so-magic,20645098,2
+34295625,20645098,5
+liming1874,20645098,-1
+73847256,20645098,3
+Levora,20645098,-1
+Southern_,20645098,-1
+69952221,20645098,4
+82362283,20645098,3
+91568025,20645098,3
+59363812,20645098,4
+93842210,20645098,5
+1876517,20645098,3
+gyivv,20645098,4
+green_sophie,20645098,-1
+iamanthony,20645098,4
+71918297,20645098,5
+68989366,20645098,3
+deepsnow,20645098,5
+bingyudeng,20645098,4
+SnakeTail,20645098,5
+35637187,20645098,4
+50437623,20645098,4
+80657884,20645098,5
+10287741,20645098,4
+51136126,20645098,4
+65723826,20645098,4
+41217938,20645098,3
+fanglingna,20645098,4
+mouliangliang,20645098,4
+kjecxx,20645098,3
+58954438,20645098,3
+warm_fan,20645098,5
+55355100,20645098,-1
+delsino,20645098,5
+26194155,20645098,5
+msstan,20645098,-1
+102902029,20645098,4
+x1Ao_y,20645098,5
+53532629,20645098,3
+52845947,20645098,5
+2975278,20645098,5
+97183307,20645098,4
+jammy48,20645098,3
+zison,20645098,4
+40424921,20645098,4
+79037298,20645098,3
+2408120,20645098,4
+90198636,20645098,3
+either_or,20645098,4
+76384072,20645098,2
+liosha_bfsu,20645098,5
+dataroom,20645098,5
+54754236,20645098,5
+70918450,20645098,4
+46254584,20645098,4
+2294419,20645098,4
+Showga,20645098,4
+49885829,20645098,5
+swqbunnie,20645098,3
+52987923,20645098,3
+75803122,20645098,5
+1097005,20645098,5
+yanyang210,20645098,4
+klb-3713,20645098,4
+66596929,20645098,4
+91648724,20645098,5
+l2morrow,20645098,3
+55941191,20645098,3
+60833590,20645098,5
+warmic,20645098,4
+Trafalgar,20645098,5
+75917409,20645098,4
+2389444,20645098,3
+51122652,20645098,5
+50043116,20645098,2
+AnnoymousFuncat,20645098,4
+12506720,20645098,4
+smilinglynn,20645098,3
+68288048,20645098,5
+1532624,20645098,3
+44724487,20645098,4
+50379098,20645098,5
+61806244,20645098,4
+58521633,20645098,4
+119695950,20645098,5
+justinran,20645098,3
+75862610,20645098,4
+kiian,20645098,5
+fallinlovexu,20645098,4
+78851730,20645098,3
+44440835,20645098,5
+81258030,20645098,4
+83359660,20645098,5
+64351070,20645098,5
+thunderous,20645098,3
+115957627,20645098,-1
+114468169,20645098,5
+96501562,20645098,5
+69126111,20645098,4
+dreamAnchor,20645098,3
+47637789,20645098,5
+AlonsoQuijano,20645098,3
+Gypsysoulmate,20645098,4
+69389104,20645098,5
+SPIRITUA,20645098,4
+xc-cindy,20645098,4
+77050463,20645098,3
+cici0617,20645098,3
+homchong,20645098,4
+fli93,20645098,2
+44384908,20645098,5
+61654956,20645098,5
+soberldly,20645098,3
+aaronfighting,20645098,5
+satanprince,20645098,3
+61564831,20645098,4
+jermen,20645098,5
+peaceup,20645098,4
+YagyuKyuubei,20645098,2
+64780410,20645098,5
+leevis,20645098,4
+57980305,20645098,5
+72409759,20645098,4
+46257426,20645098,5
+3111680,20645098,4
+chris027,20645098,5
+47235437,20645098,3
+10269517,20645098,4
+hiyangtao,20645098,3
+34751637,20645098,4
+52010271,20645098,3
+riverbrother,20645098,4
+47647061,20645098,3
+61538847,20645098,3
+echolemontree,20645098,4
+afou,20645098,4
+outsider_Sumo,20645098,5
+69833008,20645098,4
+64780091,20645098,3
+57947049,20645098,4
+NNNNNian-,20645098,5
+hanxudaydayup,20645098,4
+everlastingEGO,20645098,5
+kirsten7,20645098,4
+76098281,20645098,5
+64071683,20645098,3
+84001065,20645098,4
+61260966,20645098,4
+59665595,20645098,5
+95817419,20645098,4
+applelover,20645098,5
+91689529,20645098,5
+alexandrawoo,20645098,5
+89984750,20645098,3
+80036973,20645098,5
+67937047,20645098,5
+huang9426464,20645098,5
+moonorz,20645098,5
+57664359,20645098,5
+91116783,20645098,5
+32144547,20645098,5
+81317162,20645098,4
+hijikataT,20645098,3
+KuBurden,20645098,2
+42632136,20645098,3
+seventeenF,20645098,4
+48469422,20645098,3
+Andy_Shan,20645098,4
+81652871,20645098,4
+bearcubmer,20645098,5
+Hermionexu,20645098,5
+5750489,20645098,3
+louing,20645098,2
+81301720,20645098,4
+77631133,20645098,3
+minnierai,20645098,3
+guzi1987,20645098,5
+68492607,20645098,2
+53759198,20645098,5
+49424373,20645098,5
+62261111,20645098,5
+empfan,20645098,4
+72365328,20645098,5
+75251795,20645098,2
+brigittehoo,20645098,3
+64166028,20645098,4
+smxnini,20645098,4
+63280603,20645098,4
+61992166,20645098,4
+56660352,20645098,4
+56160592,20645098,5
+62428038,20645098,4
+75189651,20645098,4
+fan_tuan,20645098,1
+Deirdre95,20645098,5
+74062182,20645098,4
+67587735,20645098,5
+115100815,20645098,4
+66829892,20645098,5
+DawnGreen,20645098,3
+48808288,20645098,4
+foreverleaves,20645098,-1
+114541914,20645098,5
+67400098,20645098,5
+75605847,20645098,4
+anjingdelu,20645098,2
+63842655,20645098,2
+60177945,20645098,5
+92571087,20645098,5
+102257690,20645098,1
+Huxuan0522,20645098,5
+fei13,20645098,5
+hjl0312,20645098,1
+83743791,20645098,4
+meatbunny,20645098,4
+mouqingyang,20645098,4
+50590783,20645098,5
+85331626,20645098,4
+71478408,20645098,5
+xcoral,20645098,4
+97876360,20645098,4
+genglihui,20645098,5
+49082695,20645098,3
+53169979,20645098,5
+kid131,20645098,5
+49902714,20645098,3
+57673530,20645098,5
+krmushang,20645098,4
+zhr19951204,20645098,4
+lamwithme,20645098,5
+106367908,20645098,5
+54365638,20645098,5
+62345168,20645098,4
+51862225,20645098,5
+38920427,20645098,-1
+shenghuo0205,20645098,5
+Phoebe.Lee,20645098,4
+49705760,20645098,5
+88680899,20645098,5
+cubesugar,20645098,5
+61280115,20645098,5
+an_lee1107,20645098,5
+83899962,20645098,3
+40588949,20645098,5
+53187686,20645098,5
+2209152,20645098,4
+archil,20645098,5
+lavende,20645098,3
+alks,20645098,4
+saojie1206,20645098,5
+Wyc1,20645098,5
+53015845,20645098,3
+scuzz,20645098,3
+ella0124,20645098,4
+found5,20645098,3
+tangsongsong,20645098,5
+acbc115,20645098,4
+48709589,20645098,4
+62815815,20645098,5
+endofmay,20645098,3
+59229335,20645098,5
+mofang816,20645098,4
+58343870,20645098,5
+59553755,20645098,3
+xhazel,20645098,4
+60769531,20645098,5
+voyager1019,20645098,4
+nigelcrane,20645098,4
+green198641,20645098,4
+six6,20645098,5
+smile17,20645098,4
+skull54,20645098,3
+48722757,20645098,4
+haizizang5,20645098,5
+76819889,20645098,3
+bestkfx,20645098,5
+67844336,20645098,5
+demiinzhang,20645098,4
+50406444,20645098,5
+bluicezhen,20645098,5
+Tweff,20645098,4
+45095444,20645098,3
+buleddoll,20645098,5
+87118528,20645098,3
+tongdann,20645098,5
+Rutty,20645098,4
+2964464,20645098,3
+62309312,20645098,5
+84567577,20645098,-1
+blblues,20645098,5
+Eudemonia-moon,20645098,-1
+2600083,20645098,4
+4295926,20645098,5
+maitianwuya,20645098,4
+devofi,20645098,3
+astrology11,20645098,4
+jiao2er,20645098,5
+20811878,20645098,3
+52046624,20645098,4
+nalakahn,20645098,3
+77775868,20645098,4
+87681351,20645098,5
+ribbonecho,20645098,5
+66960634,20645098,4
+52638193,20645098,5
+sunflowerqi,20645098,3
+princesrose,20645098,5
+Little-bear.,20645098,4
+94000337,20645098,3
+xiao8888,20645098,4
+58691394,20645098,5
+56430530,20645098,5
+dianascb,20645098,-1
+58915928,20645098,5
+qianricao,20645098,4
+nknemo,20645098,5
+58086005,20645098,3
+huaflower,20645098,4
+sophie-wang,20645098,3
+greenyiruo,20645098,-1
+Vivien9,20645098,4
+69379185,20645098,5
+12571373,20645098,-1
+yuanazha,20645098,4
+46894377,20645098,4
+2309684,20645098,3
+43396822,20645098,4
+jinguo928,20645098,3
+44499295,20645098,5
+xiaohan222,20645098,-1
+2565519,20645098,3
+greyelf,20645098,3
+3198764,20645098,4
+anqq7776,20645098,5
+wjlqnyrc,20645098,3
+mandy.w.young,20645098,3
+wenguochen,20645098,4
+54753933,20645098,4
+3555049,20645098,3
+C.again,20645098,4
+78231416,20645098,4
+68922284,20645098,4
+amour1,20645098,4
+49831966,20645098,5
+ironCC,20645098,4
+mangooooo,20645098,4
+63621382,20645098,4
+3137358,20645098,4
+wz1031h,20645098,5
+tinydust_90,20645098,4
+plnewmoon,20645098,4
+58336596,20645098,4
+ohnirvana,20645098,5
+13147316,20645098,4
+51303010,20645098,5
+52521782,20645098,4
+31255854,20645098,5
+duanzizai,20645098,3
+Tinyk,20645098,4
+59103272,20645098,4
+2639021,20645098,5
+apple01,20645098,5
+flxjp,20645098,4
+aihisie,20645098,4
+icysummer,20645098,4
+summermaoyi,20645098,5
+monica-lcw,20645098,4
+siukou,20645098,-1
+35434178,20645098,4
+vinkingking,20645098,2
+62455169,20645098,5
+20194870,11808948,3
+NosyBunny,11808948,4
+88033603,11808948,3
+133499151,11808948,4
+135928273,11808948,-1
+121920760,11808948,3
+130445057,11808948,3
+121747053,11808948,4
+33019737,11808948,3
+134574897,11808948,4
+31698933,11808948,3
+134503726,11808948,3
+134483925,11808948,2
+34507934,11808948,3
+96042250,11808948,4
+71093640,11808948,4
+dailypop,11808948,3
+120988299,11808948,4
+55333647,11808948,3
+85571808,11808948,4
+91952258,11808948,4
+53896807,11808948,4
+liuanan0606,11808948,3
+shuiqq,11808948,4
+65722669,11808948,3
+16531942,11808948,5
+122944258,11808948,3
+heartbreakerkid,11808948,5
+miemiefever,11808948,3
+50572502,11808948,2
+76460934,11808948,3
+99853652,11808948,5
+Baoberlln,11808948,3
+130541613,11808948,5
+61175135,11808948,4
+64996012,11808948,3
+108693709,11808948,3
+64713560,11808948,4
+67677954,11808948,3
+yihengxi,11808948,4
+98956225,11808948,4
+89892294,11808948,3
+75650896,11808948,3
+125827809,11808948,3
+127131340,11808948,3
+Tigren,11808948,4
+126514473,11808948,3
+60563094,11808948,3
+78176677,11808948,4
+106449872,11808948,3
+68597225,11808948,4
+Ikergzy,11808948,3
+122517698,11808948,5
+131909298,11808948,3
+theflyingjamie,11808948,3
+kuroneko2002,11808948,4
+112727081,11808948,5
+137324986,11808948,5
+130496028,11808948,4
+IAMVILLIAN,11808948,2
+130496028,11808948,4
+IAMVILLIAN,11808948,2
+33834953,11808948,4
+134498032,11808948,3
+72276993,11808948,4
+124640229,11808948,5
+15587013,11808948,5
+74520364,11808948,4
+122889599,11808948,2
+91545129,11808948,3
+127119228,11808948,4
+37268394,11808948,3
+81685996,11808948,3
+3142312,11808948,3
+68630108,11808948,2
+68630098,11808948,4
+45402904,11808948,3
+112727322,11808948,4
+lingdongling,11808948,4
+impossible_ww,11808948,5
+77350146,11808948,3
+1689067,11808948,5
+104489015,11808948,3
+77169754,11808948,4
+134625303,11808948,4
+57465841,11808948,3
+leechambo,11808948,2
+scarllet1984,11808948,3
+110716103,11808948,5
+53830067,11808948,3
+mrcandy,11808948,3
+57024094,11808948,3
+49185326,11808948,5
+57612127,11808948,5
+82315938,11808948,4
+69326188,11808948,4
+just_yeat,11808948,2
+58338006,11808948,3
+80566761,11808948,3
+zhukeke,11808948,4
+songjia0227,11808948,3
+100767439,11808948,4
+42280664,11808948,3
+Hunjianxia,11808948,4
+5754772,11808948,-1
+Zoe-MU,11808948,4
+mraky,11808948,4
+76443380,11808948,4
+130610060,11808948,4
+85635101,11808948,4
+Gmosquito,11808948,4
+cyy9828,11808948,4
+103066869,11808948,5
+128063403,11808948,3
+128614952,11808948,4
+4083554,11808948,5
+shunong,11808948,2
+59276802,11808948,4
+cookiesssss,11808948,3
+127066563,11808948,3
+74418129,11808948,3
+78937198,11808948,4
+49698871,11808948,5
+133179065,11808948,4
+3063479,11808948,2
+133986166,11808948,4
+46712687,11808948,3
+76146142,11808948,4
+132183694,11808948,3
+103462406,11808948,4
+43872050,11808948,3
+95313700,11808948,4
+130353620,11808948,4
+77033669,11808948,3
+sirius_zhang,11808948,5
+sunnymoon1019,11808948,3
+84019906,11808948,4
+57892875,11808948,-1
+silvanyu,11808948,4
+68282002,11808948,3
+71918561,11808948,3
+134495648,11808948,3
+63475932,11808948,3
+130550035,11808948,3
+125281406,11808948,3
+131009574,11808948,3
+53685870,11808948,3
+62198193,11808948,4
+4506778,11808948,4
+xita,11808948,5
+66766065,11808948,5
+lidickaka,11808948,3
+57729224,11808948,4
+haizhiyue,11808948,3
+81351299,11808948,3
+4028097,11808948,3
+dirkhysteria,11808948,5
+133864365,11808948,2
+135101148,11808948,5
+64298831,11808948,5
+wildold,11808948,5
+60061265,11808948,5
+littlebreeze,11808948,4
+120689172,11808948,5
+Shadow..,11808948,5
+jpjc222,11808948,5
+52636837,11808948,5
+72091054,11808948,4
+63972448,11808948,-1
+Yanna_z,11808948,4
+miyavikame,11808948,4
+4714682,11808948,4
+celestetang,11808948,4
+67727072,11808948,4
+Bonjour-Bee,11808948,3
+44509377,11808948,4
+deshley,11808948,3
+78497624,11808948,4
+amibubai,11808948,5
+55622685,11808948,5
+54660213,11808948,3
+66103395,11808948,4
+91474719,11808948,3
+66958106,11808948,5
+129158063,11808948,3
+55556011,11808948,5
+132302501,11808948,-1
+63647300,11808948,5
+4251816,11808948,2
+57687882,11808948,4
+axio,11808948,3
+61731670,11808948,5
+42961533,11808948,5
+2579342,11808948,4
+104019378,11808948,4
+63462182,11808948,4
+forest_desert,11808948,4
+maybe520sunshin,11808948,4
+134094707,11808948,4
+68855550,11808948,4
+56015661,11808948,3
+93374803,11808948,4
+1951695,11808948,5
+73156181,11808948,3
+50738842,11808948,1
+83980387,11808948,4
+3488671,11808948,4
+charmaineklo579,11808948,2
+wangmuse,11808948,4
+50450766,11808948,5
+3239610,11808948,4
+maomao19901108,11808948,4
+58246566,11808948,4
+annbabyyan,11808948,-1
+Evelyn-7-,11808948,3
+50180510,11808948,4
+110481429,11808948,4
+121154422,11808948,4
+ivyfire,11808948,5
+33327300,11808948,5
+84195999,11808948,4
+98794202,11808948,4
+MancunianJor,11808948,3
+xzxyeah,11808948,4
+69508953,11808948,3
+56103585,11808948,5
+76626092,11808948,4
+74005837,11808948,3
+75532418,11808948,4
+tionphoenix,11808948,5
+67665508,11808948,3
+Byebye-lilian,11808948,3
+86253847,11808948,3
+tin0101,11808948,4
+43590001,11808948,3
+52961473,11808948,5
+124536699,11808948,4
+47807328,11808948,3
+yonita_yang,11808948,4
+fandarin,11808948,5
+50086973,11808948,2
+56804273,11808948,-1
+135012811,11808948,3
+Emperor1996107,11808948,3
+119991897,11808948,3
+51215014,11808948,5
+126980247,11808948,4
+thaddeuskhu,11808948,2
+50443007,11808948,5
+48000477,11808948,4
+58386956,11808948,5
+131856439,11808948,4
+50335651,11808948,5
+58804593,11808948,3
+37948273,11808948,5
+128541386,11808948,5
+62618569,11808948,2
+nhjieme,11808948,5
+34393876,11808948,3
+2597570,11808948,4
+26697552,11808948,4
+103282452,11808948,5
+weili27,11808948,2
+peixinzhu,11808948,4
+62402779,11808948,4
+48979561,11808948,4
+fuzyu,11808948,3
+59578482,11808948,5
+75251795,11808948,4
+63063791,11808948,3
+4184371,11808948,5
+CNBorn,11808948,4
+48752205,11808948,4
+12571373,11808948,4
+130856040,11808948,4
+huangyinqi0412,11808948,3
+julia_duan,11808948,3
+50174936,11808948,3
+cmyssssssss,11808948,3
+45572268,11808948,3
+2629692,11808948,-1
+3835065,11808948,4
+63299321,11808948,4
+120427530,11808948,5
+80090755,11808948,3
+66895800,11808948,3
+60944387,11808948,5
+59939925,11808948,4
+3934733,11808948,5
+133628416,11808948,4
+54801903,11808948,4
+bloodsasha,11808948,4
+45912977,11808948,4
+baby4inlove,11808948,4
+120735552,11808948,5
+120625830,11808948,4
+130845579,11808948,2
+60162366,11808948,5
+tea69,11808948,3
+56912705,11808948,5
+45344133,11808948,5
+1364563,11808948,4
+134098533,11808948,3
+133019129,11808948,4
+70790963,11808948,4
+IIGHTENYZING,11808948,4
+53055726,11808948,4
+69162144,11808948,4
+lionlsh,11808948,4
+68014143,11808948,2
+karizchancy,11808948,3
+neirn,11808948,4
+luluxiubaozi,11808948,3
+47609007,11808948,4
+ziv_yll,11808948,4
+119201585,11808948,5
+51777015,11808948,3
+rainfromstar,11808948,3
+53024139,11808948,5
+89844147,11808948,2
+102611391,11808948,4
+xy9102,11808948,3
+121757659,11808948,-1
+62479871,11808948,3
+57759869,11808948,3
+82855904,11808948,4
+Devil.Q,11808948,3
+50139701,11808948,4
+68773846,11808948,5
+3403075,11808948,3
+51402436,11808948,3
+124456282,11808948,3
+yq1ng,11808948,4
+52828296,11808948,3
+68404885,11808948,3
+AMOHanMeimei,11808948,4
+94691066,11808948,4
+53683391,11808948,4
+gengmengxia,11808948,4
+26641956,11808948,4
+26641956,11808948,4
+2798800,11808948,2
+blue4light,11808948,5
+50688194,11808948,3
+64173822,11808948,5
+103178477,11808948,5
+64972660,11808948,3
+wishna,11808948,3
+133556437,11808948,3
+22704847,11808948,-1
+73845983,11808948,5
+122722882,11808948,4
+83415611,11808948,4
+lovelyao,11808948,5
+more-u-are,11808948,2
+blackjason,11808948,3
+91906703,11808948,4
+129305098,11808948,4
+Alien_shin,11808948,3
+Kidew,11808948,4
+cskywalker,11808948,3
+122103175,11808948,2
+Armande,11808948,4
+Michele19,11808948,3
+enya_pureheaven,11808948,5
+beckham7,11808948,3
+104629005,11808948,3
+54783406,11808948,4
+58547901,11808948,5
+gangrel96,11808948,3
+64801475,11808948,5
+92302421,11808948,4
+junko,11808948,3
+69102270,11808948,3
+3351778,11808948,4
+45953798,11808948,5
+46899693,11808948,4
+biglazy,11808948,4
+90476319,11808948,4
+67770399,11808948,4
+64783983,11808948,3
+callmetracy,11808948,5
+rainliu7,11808948,4
+64540248,11808948,4
+mdx622813,11808948,4
+52278256,11808948,4
+49389676,11808948,4
+licinda,11808948,3
+83025470,11808948,-1
+Sibier,11808948,2
+rexarski,11808948,5
+129369858,11808948,5
+83473833,11808948,2
+76619614,11808948,4
+60234742,11808948,4
+aliforse,11808948,4
+44289499,11808948,5
+frankfankai,11808948,4
+14113539,11808948,4
+doubansi,11808948,5
+cappuccino-jl,11808948,3
+Chenyeye55555,11808948,5
+53830250,11808948,3
+83848433,11808948,3
+132208597,11808948,3
+55887072,11808948,2
+52872697,11808948,4
+3775276,11808948,4
+lemoncan,11808948,4
+91785401,11808948,3
+56955441,11808948,5
+etsbin12,11808948,3
+ckafka,11808948,5
+LincolnSixEcho,11808948,3
+65123381,11808948,4
+Amolittlergirl,11808948,5
+jaylia,11808948,3
+kiwiflmi,11808948,4
+54158411,11808948,3
+killpaul,11808948,5
+129135232,11808948,3
+67979559,11808948,4
+70716931,11808948,3
+66693462,11808948,3
+88581131,11808948,-1
+yuyutuo,11808948,3
+46466887,11808948,4
+29534182,11808948,4
+92972118,11808948,4
+78571042,11808948,3
+Maqqieyaoyao,11808948,4
+mmcv,11808948,4
+128222210,11808948,5
+sansung,11808948,3
+78542258,11808948,4
+70552607,11808948,4
+58316313,11808948,4
+novocaine,11808948,5
+VRoss,11808948,2
+121933047,11808948,3
+74566437,11808948,2
+52309535,11808948,4
+66946937,11808948,4
+42678497,11808948,4
+49190112,11808948,4
+60656963,11808948,2
+52702832,11808948,3
+121270653,11808948,5
+131866254,11808948,4
+69986931,11808948,2
+120860718,11808948,4
+104003575,11808948,5
+89972315,11808948,4
+67667065,11808948,4
+77646030,11808948,3
+quanetta,11808948,3
+62690762,11808948,1
+66802637,11808948,5
+olivia0826,11808948,-1
+57691329,11808948,5
+57691329,11808948,5
+Cello7_11,11808948,5
+becauseofthou,11808948,5
+43628275,11808948,4
+mickey0725,11808948,5
+53065744,11808948,3
+121722324,11808948,5
+61161767,11808948,4
+2856840,11808948,4
+cokekaola,11808948,-1
+akkabby,11808948,3
+61679641,11808948,1
+Ryan-Z,11808948,4
+51026880,11808948,-1
+58996750,11808948,2
+92118420,11808948,5
+A989898,11808948,3
+74567913,11808948,4
+54220607,11808948,2
+122048990,11808948,4
+dinge,11808948,-1
+115816477,11808948,4
+57001973,11808948,4
+35567760,11808948,4
+88174382,11808948,5
+yukicl,11808948,3
+amber-shadow,11808948,4
+132034967,11808948,4
+fly7437,11808948,4
+3507554,11808948,5
+danaest,11808948,3
+69054448,11808948,4
+32251971,11808948,2
+stories7,11808948,3
+infero,11808948,2
+karain,11808948,3
+mymydemon,11808948,3
+130024032,11808948,5
+JiaU_Dong,11808948,1
+Kittyworkhard,11808948,5
+41338064,11808948,3
+Segame,11808948,5
+undas,11808948,3
+128543745,11808948,3
+neverjames,11808948,3
+laomaoshaoxu,11808948,4
+92081445,11808948,5
+64870027,11808948,5
+heyuheyme,11808948,2
+50188089,11808948,5
+64136119,11808948,5
+46589297,11808948,3
+65660961,11808948,3
+45836987,11808948,5
+115857757,11808948,5
+ozzythewizard,11808948,3
+53080002,11808948,4
+54801845,11808948,4
+avisj,11808948,5
+purepureheart,11808948,4
+60874704,11808948,3
+dsymjh,11808948,5
+57953785,11808948,-1
+57835629,11808948,4
+3801481,11808948,4
+37947794,11808948,4
+89533485,11808948,4
+spondee,11808948,3
+77491930,11808948,5
+108573841,11808948,4
+64775243,11808948,4
+Hermanita,11808948,4
+liuxinyuxiao,11808948,4
+2177155,11808948,3
+65590622,11808948,4
+71985811,11808948,3
+69036663,11808948,3
+shixianyong,11808948,5
+optimisery,11808948,5
+hippo2,11808948,-1
+lovingmomo,11808948,3
+80589934,11808948,4
+74030060,11808948,3
+72357492,11808948,3
+lsx8270,11808948,5
+49937909,11808948,3
+76187986,11808948,5
+52259960,11808948,3
+44392983,11808948,3
+62932403,11808948,4
+HandsomeJack,11808948,4
+66598168,11808948,3
+handsomegay,11808948,4
+icecyoko,11808948,3
+104310668,11808948,3
+3471791,11808948,4
+93208688,11808948,4
+62509398,11808948,4
+56431276,11808948,4
+45529743,11808948,3
+45529743,11808948,3
+84343760,11808948,4
+57714650,11808948,4
+39636174,11808948,3
+balanco,11808948,4
+2211361,11808948,5
+knoppers,11808948,5
+lvbeier,11808948,2
+35589826,11808948,4
+66632216,11808948,3
+63677986,11808948,4
+119833040,11808948,4
+35687471,11808948,4
+kiiwi,11808948,3
+lovebenedict,11808948,2
+maskman0917,11808948,3
+62455169,11808948,3
+wreckitzak,11808948,3
+78625629,11808948,4
+linchuzhuang,11808948,4
+71298339,11808948,4
+douxiaokou,11808948,3
+panhoo,11808948,4
+80044238,11808948,4
+haocai,11808948,4
+126804729,11808948,2
+72354881,11808948,5
+76288591,11808948,4
+119587434,11808948,4
+88206344,11808948,3
+2374505,11808948,2
+winter-h,11808948,3
+34479227,11808948,4
+117808839,11808948,5
+100418686,11808948,3
+84831004,11808948,3
+124514675,11808948,4
+58774315,11808948,3
+51867437,11808948,4
+ET.papillon,11808948,3
+fonne,11808948,1
+87579241,11808948,2
+Georgewen,11808948,3
+Windbroken,11808948,5
+41010803,11808948,3
+92318310,11808948,3
+1709598,11808948,4
+49403061,11808948,5
+zoewhatever,11808948,3
+72527995,11808948,5
+june.q,11808948,3
+mousesayit,11808948,4
+akenhoo,11808948,3
+56839601,11808948,5
+xiaomo1,11808948,4
+moesolo,11808948,4
+34006126,11808948,5
+68864068,11808948,5
+62345841,11808948,4
+63953631,11808948,4
+63953631,11808948,4
+67330888,11808948,3
+49563367,11808948,5
+3696011,11808948,4
+93920997,11808948,3
+47797683,11808948,5
+3869328,11808948,2
+72030393,11808948,5
+eggs,11808948,5
+61781075,11808948,5
+2413967,11808948,3
+lostinfire,11808948,2
+2187326,11808948,3
+72972634,11808948,3
+115838732,11808948,3
+fukai,11808948,5
+longbookstore,11808948,4
+EBEMASH,11808948,4
+2210223,11808948,3
+129798303,11808948,4
+117240526,11808948,2
+rdjtmntrl,11808948,4
+iiibuwan,11808948,1
+48112826,11808948,4
+53962357,11808948,4
+129756377,11808948,3
+79846975,11808948,3
+67021523,11808948,4
+54807886,11808948,5
+50555792,11808948,4
+49153230,11808948,5
+96370254,11808948,4
+flyingbean,11808948,3
+3119464,11808948,4
+laoshixier,11808948,3
+34990141,11808948,4
+yeallingmay,11808948,3
+answer_kop,11808948,5
+cajiln,11808948,3
+LadyInSatin,11808948,3
+87631296,11808948,4
+65803818,11808948,3
+ztr19920126,11808948,3
+58433027,11808948,5
+64716585,11808948,3
+124384968,11808948,3
+66669225,11808948,5
+utopialand,11808948,4
+ink1020,11808948,3
+130046819,11808948,4
+greatblue,11808948,5
+connie-kangni,11808948,5
+tomatooo,11808948,-1
+hela,11808948,-1
+64565637,11808948,3
+80133214,11808948,4
+56481731,11808948,4
+67184394,11808948,3
+yyq871,11808948,5
+75940485,11808948,3
+knoxie,11808948,4
+50018349,11808948,3
+zhangdahua,11808948,-1
+closeyoureyes,11808948,3
+120418587,11808948,3
+104769374,11808948,3
+xiaoczhang,11808948,5
+4912264,11808948,3
+98094232,11808948,4
+84781945,11808948,5
+52071881,11808948,4
+49177179,11808948,-1
+chidaoshu,11808948,4
+56207141,11808948,4
+65113652,11808948,3
+tomchil,11808948,3
+52322539,11808948,5
+76589400,11808948,4
+4165611,11808948,3
+3014394,11808948,4
+60624243,11808948,3
+80609092,11808948,3
+dawnq,11808948,5
+91872215,11808948,4
+Emily723,11808948,-1
+67143504,11808948,3
+45975024,11808948,4
+echochoco,11808948,4
+49610582,11808948,-1
+58072780,11808948,4
+60282135,11808948,4
+50412359,11808948,5
+47274538,11808948,5
+66967732,11808948,4
+luzhiyu,11808948,3
+47475734,11808948,3
+goldchocolmrun,11808948,4
+Kallita,11808948,4
+82550997,11808948,3
+52790328,11808948,-1
+MyLittleWhite,11808948,5
+lena0517,11808948,4
+Rosier,11808948,5
+40185469,11808948,5
+115083844,11808948,2
+103484488,11808948,5
+62178164,11808948,2
+moneylatem,11808948,3
+126116154,11808948,2
+xd0812,11808948,2
+LillianLuan,11808948,4
+46429312,11808948,2
+mz_174,11808948,5
+54757798,11808948,5
+marlborosin,11808948,4
+freekami,11808948,2
+120092472,11808948,5
+Veronicam,11808948,3
+60102866,11808948,3
+Phi_V,11808948,3
+56948968,11808948,3
+ideyes,11808948,3
+128991169,11808948,5
+19240319,11808948,3
+SleeperInVain,11808948,-1
+62072231,11808948,4
+2651164,11808948,4
+68342567,11808948,5
+zhaozhijia,11808948,5
+45079034,11808948,4
+93404406,11808948,5
+xguozi,11808948,3
+orangeT,11808948,4
+55914846,11808948,4
+127226444,11808948,4
+lovenapp,11808948,4
+66767418,11808948,4
+54103480,11808948,4
+Alcor,11808948,-1
+utasty,11808948,4
+utasty,11808948,4
+73863026,11808948,5
+76170749,11808948,5
+125391105,11808948,4
+shawryan,11808948,3
+ihana,11808948,3
+53728345,11808948,3
+67544902,11808948,4
+littlepussy_wf,11808948,5
+58245871,11808948,5
+115370500,11808948,4
+wangshiqian1024,11808948,3
+fnx,11808948,3
+43200549,11808948,5
+90854543,11808948,3
+130044129,11808948,3
+120256612,11808948,4
+newcomer,11808948,4
+92868619,11808948,5
+vivie7,11808948,4
+38727371,11808948,4
+61448696,11808948,3
+53317019,11808948,3
+57591346,11808948,4
+68230715,11808948,3
+Daruke,11808948,4
+91252045,11808948,3
+51435361,11808948,3
+linyanyanyan,11808948,3
+115547734,11808948,3
+TOMATE,11808948,4
+wangxiaojunwjj,11808948,5
+105196709,11808948,3
+81223352,11808948,5
+56035155,11808948,3
+anna.sarah,11808948,4
+55823750,11808948,4
+dyalan,11808948,3
+66612367,11808948,4
+2121850,11808948,4
+3690173,11808948,4
+milanmao,11808948,3
+33324533,11808948,3
+kristenxin,11808948,3
+like-a-star,11808948,5
+115985324,11808948,3
+67665088,11808948,2
+64182296,11808948,4
+dxf,11808948,4
+41601894,11808948,4
+moqingran,11808948,3
+poppysuen,11808948,4
+2990377,11808948,3
+3435124,11808948,3
+62134358,11808948,5
+45714042,11808948,2
+76497080,11808948,4
+dangerousfate,11808948,5
+55716934,11808948,5
+baixg,11808948,-1
+baixg,11808948,-1
+53652006,11808948,3
+78277110,11808948,5
+perisher,11808948,3
+MonaMoe,11808948,2
+92562855,11808948,5
+88489615,11808948,4
+zhangyuan2ba,11808948,5
+tingkelly,11808948,5
+47845902,11808948,4
+53156692,11808948,3
+76755993,11808948,4
+HugoVince,11808948,3
+62917415,11808948,4
+76596449,11808948,3
+49354246,11808948,5
+flowerfrommars,11808948,4
+83749765,11808948,4
+2075939,11808948,2
+77151655,11808948,4
+3082439,11808948,3
+55800838,11808948,3
+45213979,11808948,5
+61033806,11808948,5
+panda11,11808948,-1
+1550135,11808948,5
+63637280,11808948,3
+Tetsuling,11808948,3
+121041076,11808948,2
+65411877,11808948,3
+34853481,11808948,4
+MOKUZJY,11808948,3
+102788325,11808948,4
+memokun,11808948,3
+84281755,11808948,5
+l-snow,11808948,5
+53037327,11808948,3
+9091191,11808948,3
+fanmengya,11808948,5
+55355707,11808948,5
+bozzi,11808948,4
+91684216,11808948,3
+120375739,11808948,3
+xulu_films,11808948,4
+4640701,11808948,5
+cmhloveukulele,11808948,-1
+68307753,11808948,4
+85112816,11808948,4
+60609410,11808948,5
+76905653,11808948,4
+44437703,11808948,3
+53961079,11808948,4
+kun_kun,11808948,3
+56970543,11808948,3
+jolinalbert,11808948,4
+77758955,11808948,5
+58807022,11808948,2
+64771060,11808948,3
+79511947,11808948,4
+fengeasy,11808948,5
+121071059,11808948,4
+62130099,11808948,3
+ponie325,11808948,4
+bebesummer,11808948,4
+alternative,11808948,2
+78721948,11808948,4
+58258651,11808948,3
+tiziw,11808948,3
+43558241,11808948,5
+78934649,11808948,4
+4287326,11808948,4
+Maam,11808948,5
+53927357,11808948,4
+43430222,11808948,4
+1793879,11808948,4
+chuanchengwu,11808948,4
+yinzhi83,11808948,3
+mariahbfly,11808948,5
+75938815,11808948,3
+windyeagle,11808948,5
+42139785,11808948,5
+56111522,11808948,3
+jessie1456,11808948,3
+ZeRo.0821,11808948,5
+48633478,11808948,3
+53255748,11808948,5
+53787357,11808948,5
+52129512,11808948,3
+lilyigreg,11808948,4
+raydeer,11808948,5
+Alaska621,11808948,3
+52925540,11808948,4
+59034777,11808948,4
+konghanlei,11808948,4
+50644195,11808948,5
+53317988,11808948,4
+51909421,11808948,2
+joyjay,11808948,1
+38574221,11808948,4
+xinnngXD,11808948,4
+88097347,11808948,3
+52600175,11808948,5
+41758984,11808948,3
+zhaopusheng,11808948,4
+50451093,11808948,3
+91251565,11808948,3
+65161284,11808948,4
+sunmiaoran,11808948,4
+57585289,11808948,5
+amorexia,11808948,3
+TheZero,11808948,5
+allblue,11808948,4
+87902611,11808948,-1
+56628925,11808948,4
+culinus,11808948,3
+49118559,11808948,1
+79865158,11808948,5
+121042228,11808948,-1
+74789050,11808948,5
+herolee,11808948,4
+94068216,11808948,4
+44537605,11808948,4
+yoyosapple,11808948,3
+63368491,11808948,5
+untildied,11808948,3
+103214078,11808948,3
+93498429,11808948,4
+103583567,11808948,4
+46270610,11808948,5
+watermelon1996,11808948,4
+librapan,11808948,4
+75555205,11808948,3
+yggdrasil,11808948,3
+82834599,11808948,4
+anishieh,11808948,4
+chelsea_baker,11808948,5
+3688402,11808948,-1
+RanQixi,11808948,3
+1010302,11808948,4
+91669617,11808948,5
+antony1994,11808948,5
+44431964,11808948,3
+53656219,11808948,3
+59106111,11808948,4
+simor0105uknow,11808948,4
+lephemera,11808948,2
+47300313,11808948,5
+50600067,11808948,4
+87411768,11808948,3
+et2o,11808948,3
+4077370,11808948,3
+ixiaotong,11808948,4
+AriesSusan,11808948,4
+64639835,11808948,3
+126753343,11808948,5
+51705193,11808948,5
+45511772,11808948,4
+48950860,11808948,4
+edubuntu,11808948,5
+juwujian,11808948,3
+54375575,11808948,4
+clh7,11808948,4
+72145346,11808948,4
+61733513,11808948,2
+masterv,11808948,3
+45362948,11808948,4
+77111727,11808948,4
+69941646,11808948,3
+44292349,11808948,5
+NEUN1975,11808948,3
+ximeiruru,11808948,5
+50176168,11808948,4
+qingxi52vv,11808948,4
+92061156,11808948,4
+61727176,11808948,4
+52143452,11808948,5
+82765955,11808948,3
+65123072,11808948,3
+56419266,11808948,3
+ballteda,11808948,3
+angelliujiayun,11808948,3
+bxc1988yiderky,11808948,4
+29800647,11808948,3
+72820019,11808948,4
+kiki204629,11808948,4
+62281464,11808948,3
+104651253,11808948,3
+121976459,11808948,3
+83192271,11808948,4
+108241953,11808948,4
+76239452,11808948,3
+127348779,11808948,5
+twoest,11808948,5
+86482648,11808948,5
+73734497,11808948,4
+13833588,11808948,4
+1747318,11808948,4
+oycl,11808948,3
+heyuting13,11808948,5
+56886085,11808948,4
+64841580,11808948,-1
+junoshih,11808948,5
+nghwbbbm,11808948,4
+lufei0113,11808948,4
+yeahxcx,11808948,3
+milkcandy,11808948,3
+51433287,11808948,4
+2110097,11808948,2
+sf12447411,11808948,3
+48072963,11808948,3
+83069715,11808948,4
+laihiukei,11808948,3
+58197963,11808948,3
+78539196,11808948,3
+sittingroom1108,11808948,1
+46996433,11808948,4
+Shin7KYO,11808948,4
+68631195,11808948,3
+61260691,11808948,3
+echorus-walker,11808948,4
+nekoshadow,11808948,4
+101462888,11808948,4
+janetbubble,11808948,3
+KKKKILTH,11808948,4
+naiz3583685,11808948,3
+angerjia,11808948,4
+tianmuxian,11808948,5
+gjyrace,11808948,4
+68872693,11808948,3
+60715343,11808948,3
+57452457,11808948,3
+88072113,11808948,3
+sissistar,11808948,3
+53570723,11808948,3
+Cap_Connie,11808948,4
+4704105,11808948,4
+erikzm,11808948,4
+36936880,11808948,2
+103355489,11808948,4
+119922273,11808948,4
+daizy_10,11808948,3
+58419588,11808948,4
+32841660,11808948,3
+48906452,11808948,5
+HeroineDaode,11808948,4
+88095866,11808948,4
+d_minor,11808948,3
+42787791,11808948,3
+goldenhornking,11808948,4
+38829704,11808948,4
+jennychang,11808948,3
+4325552,11808948,4
+littlezhisandra,11808948,1
+Jensen4ever,11808948,1
+123890207,11808948,4
+xiaojiongxia,11808948,3
+67072789,11808948,1
+71720056,11808948,4
+gingcha,11808948,4
+113124571,11808948,5
+45182133,11808948,1
+QUEBO,11808948,4
+JoeBazinga,11808948,5
+41310138,11808948,4
+36470321,11808948,5
+32541723,11808948,5
+55320320,11808948,4
+59254681,11808948,3
+83082276,11808948,5
+17778744,11808948,4
+129028198,11808948,4
+bookeat,11808948,5
+49585616,11808948,4
+Sparta233,11808948,5
+GekiMasamune,11808948,4
+31335200,11808948,1
+33976222,11808948,5
+49693617,11808948,4
+4370207,11808948,5
+snowelf,11808948,5
+50126982,11808948,5
+mucy95,11808948,4
+abbeyssss,11808948,5
+83989831,11808948,3
+49948273,11808948,3
+121132351,11808948,4
+122195109,11808948,4
+69202815,11808948,3
+54940600,11808948,4
+mixmx,11808948,4
+JiaoYaZi,11808948,3
+42536535,11808948,3
+ikrf,11808948,4
+59752375,11808948,4
+aptxkim,11808948,3
+59446959,11808948,4
+edocsil,11808948,3
+74977373,11808948,4
+60376200,11808948,3
+homebody,11808948,-1
+homebody,11808948,-1
+MintManiac,11808948,5
+elyn5234,11808948,3
+66973670,11808948,4
+yummy0526,11808948,4
+91252299,11808948,3
+claraye,11808948,4
+82849854,11808948,4
+sunshinexuu,11808948,3
+63626568,11808948,5
+2896376,11808948,3
+hljmsfy,11808948,3
+50846350,11808948,4
+14494074,11808948,-1
+4050170,11808948,4
+tiny_moo,11808948,3
+90005274,11808948,5
+zihaozai0407,11808948,4
+90000787,11808948,3
+80719948,11808948,4
+96398339,11808948,4
+63457703,11808948,5
+62453659,11808948,5
+3339466,11808948,4
+dahelin,11808948,5
+92580665,11808948,2
+83415378,11808948,3
+53145042,11808948,4
+58161520,11808948,2
+zhengkangkang,11808948,5
+VicOhItsVic,11808948,3
+47546589,11808948,2
+62961700,11808948,4
+baoxuerui,11808948,3
+74137880,11808948,4
+80317889,11808948,4
+81404706,11808948,3
+66005272,11808948,4
+cat_yr,11808948,5
+69152007,11808948,2
+69152007,11808948,2
+53560146,11808948,4
+64259939,11808948,3
+bubbleliang,11808948,5
+99448311,11808948,3
+37160658,11808948,3
+102862890,11808948,3
+75179409,11808948,3
+63412313,11808948,4
+73112329,11808948,3
+melonday,11808948,5
+1998897,11808948,2
+63586324,11808948,3
+4425705,11808948,4
+61415736,11808948,3
+ailyfhong9999,11808948,3
+richer725,11808948,3
+61918875,11808948,5
+42603367,11808948,3
+57311033,11808948,3
+zizzyzizz,11808948,3
+25635000,11808948,3
+bell-wind,11808948,4
+1155174,11808948,5
+50490367,11808948,3
+85384710,11808948,5
+cicytsao,11808948,3
+goldenj,11808948,4
+jxy625,11808948,4
+63091718,11808948,3
+64092595,11808948,4
+68674122,11808948,4
+75260597,11808948,4
+59237362,11808948,4
+49886917,11808948,5
+79805335,11808948,4
+86193611,11808948,5
+SwimGood,11808948,3
+der_Baum,11808948,4
+lisa417,11808948,4
+lisa417,11808948,4
+77621365,11808948,3
+52624192,11808948,4
+jael0000,11808948,-1
+noheeyeon,11808948,-1
+57096958,11808948,4
+76872047,11808948,4
+somehoow,11808948,4
+sacpoh,11808948,3
+69156553,11808948,4
+68796799,11808948,4
+62663500,11808948,3
+54116667,11808948,4
+122062782,11808948,3
+72878510,11808948,4
+62180561,11808948,4
+71181579,11808948,4
+teikamouse,11808948,3
+amunli,11808948,3
+45390359,11808948,4
+silverleaforz,11808948,4
+75869572,11808948,4
+zdaxuxu,11808948,4
+49411986,11808948,4
+103155678,11808948,4
+102791213,11808948,4
+yuyangaiyang,11808948,5
+78314737,11808948,2
+Tobyone,11808948,4
+subuuti,11808948,4
+59784525,11808948,3
+37424688,11808948,3
+ifiwere,11808948,3
+120358782,11808948,5
+59820675,11808948,3
+dronce,11808948,3
+3561048,11808948,3
+4061966,11808948,3
+13976232,11808948,2
+63572086,11808948,4
+2647689,11808948,5
+121950217,11808948,4
+62972831,11808948,2
+66966914,11808948,5
+122757661,11808948,4
+51773323,11808948,4
+1786804,11808948,3
+48137780,11808948,5
+ryanp,11808948,-1
+szb,11808948,3
+smshuimu,11808948,3
+3710445,11808948,1
+Faust_Tsai,11808948,3
+chenea,11808948,3
+jeonwoo,11808948,4
+126842883,11808948,3
+53143948,11808948,4
+54595884,11808948,5
+56208888,11808948,5
+84058913,11808948,5
+70781768,11808948,-1
+orangecheung,11808948,5
+53464389,11808948,-1
+55385860,11808948,4
+52588771,11808948,4
+122821584,11808948,4
+neardemon,11808948,3
+25585138,11808948,5
+57715527,11808948,3
+66989876,11808948,1
+greatkiller,11808948,4
+afterhanabinigh,11808948,2
+48036288,11808948,5
+glimo,11808948,3
+45628195,11808948,-1
+foxlovewhitecat,11808948,5
+119992317,11808948,4
+54783483,11808948,3
+flotte,11808948,4
+50963591,11808948,4
+61152016,11808948,4
+justsoso80s,11808948,3
+58687446,11808948,4
+65719413,11808948,5
+73033279,11808948,2
+45340915,11808948,4
+ORBR,11808948,3
+64961856,11808948,3
+dekaixu,11808948,3
+56499192,11808948,5
+3579800,11808948,3
+stigie,11808948,2
+an__,11808948,3
+41403989,11808948,4
+65009709,11808948,2
+jhy007,11808948,3
+Zizou_Vam,11808948,3
+wenbo2003,11808948,4
+killmystery,11808948,4
+72480107,11808948,4
+49160897,11808948,-1
+3461171,11808948,5
+28400267,11808948,5
+56739185,11808948,4
+79535386,11808948,3
+Yuimokin,11808948,4
+81126169,11808948,4
+120119799,11808948,5
+79680480,11808948,4
+108821133,11808948,3
+59220796,11808948,4
+49136180,11808948,4
+guanmu,11808948,5
+125310228,11808948,4
+66951342,11808948,5
+88171857,11808948,3
+lisa_clover,11808948,5
+83389859,11808948,5
+67182363,11808948,4
+56068782,11808948,3
+42630229,11808948,4
+lynxmao,11808948,3
+sleepingbramble,11808948,4
+sugarl,11808948,3
+43375121,11808948,3
+Kathtelet,11808948,5
+104365503,11808948,5
+3275817,11808948,4
+29662178,11808948,4
+izane,11808948,3
+Mav1slee,11808948,4
+67289981,11808948,5
+joymu,11808948,2
+g1oveg,11808948,4
+34343949,11808948,3
+iris714,11808948,3
+54683234,11808948,3
+sqq90,11808948,3
+49143221,11808948,5
+44549735,11808948,5
+godfathery,11808948,4
+p3atlus,11808948,5
+4462311,11808948,3
+61461484,11808948,3
+78821909,11808948,3
+Lungle,11808948,5
+3511814,11808948,5
+57880300,11808948,3
+59192273,11808948,3
+60054131,11808948,3
+badass420,11808948,-1
+2437698,11808948,3
+voyasuki,11808948,4
+PoooZz,11808948,5
+qiusechun,11808948,3
+cyb1n,11808948,4
+vnoonv,11808948,-1
+3976155,11808948,3
+allancat,11808948,5
+lostheart,11808948,-1
+27517816,11808948,5
+theLastQuijote,11808948,3
+evey42,11808948,4
+lostcindy,11808948,5
+vandanger,11808948,4
+58913556,11808948,3
+128553861,11808948,4
+49145944,11808948,2
+119852340,11808948,3
+74244143,11808948,3
+47754884,11808948,5
+65054384,11808948,5
+vickiee77,11808948,5
+53841308,11808948,4
+erikaluvth,11808948,3
+108992454,11808948,5
+73662943,11808948,5
+Kesseler,11808948,4
+120522735,11808948,4
+62199775,11808948,5
+RainbowRen,11808948,5
+toka,11808948,3
+qiantianxun,11808948,5
+55861124,11808948,3
+70687473,11808948,4
+acbc115,11808948,3
+40952005,11808948,4
+4521508,11808948,3
+87468773,11808948,3
+73064038,11808948,3
+128112253,11808948,5
+84849865,11808948,4
+song0802,11808948,5
+fy7,11808948,3
+19968192,11808948,3
+4600230,11808948,3
+84394974,11808948,3
+104600848,11808948,4
+39769069,11808948,4
+114515480,11808948,5
+55596130,11808948,3
+61743337,11808948,5
+39549579,11808948,5
+bloodykiss,11808948,4
+liarelaw,11808948,3
+46920813,11808948,4
+45055967,11808948,4
+62531945,11808948,1
+71741760,11808948,3
+1369113,11808948,3
+39274503,11808948,3
+monkeydoll,11808948,5
+65670813,11808948,3
+49123516,11808948,5
+66194891,11808948,5
+51136126,11808948,4
+66203625,11808948,4
+Nymphe428,11808948,5
+bearhearted,11808948,4
+w2jmoe,11808948,2
+daysofyouth,11808948,3
+27017814,11808948,4
+2539543,11808948,4
+85333070,11808948,4
+117234787,11808948,3
+LoveJHart,11808948,5
+greatsmallnine,11808948,4
+51985669,11808948,5
+75215757,11808948,3
+97751777,11808948,3
+azukii,11808948,5
+nbyuan,11808948,3
+ginfujima,11808948,-1
+BenedictusVI,11808948,4
+41540029,11808948,4
+35362604,11808948,2
+112970184,11808948,3
+67618719,11808948,2
+54242679,11808948,4
+56424841,11808948,4
+davyjones,11808948,3
+Warrgon,11808948,3
+64933961,11808948,4
+45541495,11808948,3
+82437863,11808948,5
+49249122,11808948,3
+62209149,11808948,4
+arriey,11808948,3
+77349857,11808948,3
+Gothicone,11808948,3
+liang9527,11808948,4
+17790607,11808948,3
+53132648,11808948,5
+61453526,11808948,5
+baibi,11808948,3
+iContact,11808948,4
+51845720,11808948,5
+p.m3821229,11808948,4
+91994560,11808948,3
+amber_xyxy,11808948,2
+87590424,11808948,4
+81143099,11808948,4
+55465032,11808948,2
+81134195,11808948,3
+67690348,11808948,3
+45792584,11808948,4
+43511352,11808948,4
+68511299,11808948,3
+88263300,11808948,3
+rinalee,11808948,3
+davys,11808948,4
+Collins1995,11808948,3
+Susie_Tsow,11808948,5
+74700188,11808948,5
+Hanry7,11808948,5
+104554472,11808948,3
+64114079,11808948,5
+27223833,11808948,4
+68592556,11808948,3
+100841051,11808948,4
+55628932,11808948,4
+65982623,11808948,4
+chuleiwu,11808948,3
+52635539,11808948,4
+jokerli,11808948,3
+jakartaxie,11808948,5
+3899360,11808948,3
+99977887,11808948,3
+46910579,11808948,3
+little_MOMO,11808948,3
+59378291,11808948,4
+92516233,11808948,2
+zhomee,11808948,5
+Cincky.XiN,11808948,3
+busyq,11808948,3
+1840916,11808948,4
+la_ficine,11808948,3
+120950015,11808948,5
+56976495,11808948,4
+aitiaowudemeng,11808948,4
+70801856,11808948,4
+80732468,11808948,4
+90986289,11808948,4
+Phyllis5,11808948,3
+veolxxxx,11808948,3
+Ozu,11808948,3
+laoziiii,11808948,5
+umarmung,11808948,5
+68700662,11808948,4
+48481364,11808948,4
+56309720,11808948,4
+nansila,11808948,3
+C443658,11808948,4
+3798488,11808948,4
+jack13,11808948,3
+78607701,11808948,3
+39255754,11808948,4
+37796090,11808948,5
+48883093,11808948,-1
+Lreckle,11808948,3
+48894607,11808948,4
+82059571,11808948,5
+111745071,11808948,3
+95572191,11808948,4
+67489382,11808948,4
+minmins,11808948,-1
+zsx567,11808948,4
+88214341,11808948,3
+55357697,11808948,2
+66458815,11808948,3
+wuzouhuanghun,11808948,4
+49025271,11808948,3
+niubinuo,11808948,2
+75945244,11808948,4
+brian4444,11808948,5
+kathychu,11808948,4
+41279117,11808948,2
+108798239,11808948,4
+57540462,11808948,3
+yoyoga,11808948,3
+53300404,11808948,3
+39522500,11808948,1
+eggsbox.ee,11808948,4
+73627812,11808948,4
+79734997,11808948,3
+Zicher,11808948,4
+vivifyvivi,11808948,3
+54056952,11808948,3
+YellowHand,11808948,3
+54845592,11808948,3
+2005598,11808948,3
+63283519,11808948,5
+msycle,11808948,4
+xuehaotian,11808948,3
+57653061,11808948,3
+14347413,11808948,2
+121807969,11808948,5
+52790172,11808948,2
+92344902,11808948,5
+47195868,11808948,5
+Hennessy_,11808948,-1
+linnjil,11808948,5
+3896719,11808948,5
+53724452,11808948,3
+1771263,11808948,5
+57425264,11808948,3
+57501453,11808948,3
+62209386,11808948,3
+64007210,11808948,5
+chidoufuma,11808948,4
+63278789,11808948,4
+metkee,11808948,3
+79684421,11808948,5
+42477053,11808948,5
+83802681,11808948,3
+63734932,11808948,2
+Boomer,11808948,4
+36193600,11808948,3
+niazion,11808948,5
+58896419,11808948,4
+72985710,11808948,4
+wruo,11808948,4
+52765670,11808948,4
+62569562,11808948,-1
+43762131,11808948,5
+126039569,11808948,3
+70542468,11808948,3
+66493866,11808948,4
+70042257,11808948,2
+sigua04,11808948,5
+knife413,11808948,4
+weizheren,11808948,3
+L.ccnightcat,11808948,5
+woopopo,11808948,4
+Psycho_L,11808948,3
+chenkongkong,11808948,2
+92399399,11808948,3
+101099683,11808948,4
+laperseus,11808948,3
+49761291,11808948,3
+longnel,11808948,3
+57377674,11808948,3
+60854174,11808948,5
+120353268,11808948,5
+74589582,11808948,4
+70294430,11808948,4
+67942462,11808948,5
+53439322,11808948,5
+kingkongofkhan,11808948,3
+47822950,11808948,3
+delete801,11808948,-1
+robinsparrow,11808948,-1
+M2ciro,11808948,5
+sweetmonster,11808948,4
+119683375,11808948,4
+shinysky,11808948,4
+52445404,11808948,3
+Jaytaoo,11808948,3
+penguin-k,11808948,-1
+monkeek,11808948,3
+60080924,11808948,4
+zhangsitong2014,11808948,1
+4536219,11808948,5
+xuanlihuan,11808948,4
+39093072,11808948,5
+73189108,11808948,4
+zhengxiaomo,11808948,5
+46624759,11808948,5
+contact-u,11808948,4
+4357598,11808948,3
+52689721,11808948,4
+septemwang,11808948,3
+renqiaoyun,11808948,-1
+47193126,11808948,4
+55338878,11808948,-1
+48033961,11808948,4
+3005065,11808948,5
+50351476,11808948,4
+fuck_time,11808948,-1
+75603589,11808948,5
+littleaprilfool,11808948,3
+lingnuo,11808948,-1
+heihuawu,11808948,5
+CRA1G,11808948,4
+sailorcooper,11808948,3
+mattni,11808948,3
+Tiara0211,11808948,4
+jxyyy,11808948,5
+prince_neo,11808948,5
+Easter77,11808948,4
+27387317,11808948,4
+movie8,11808948,3
+54688842,11808948,4
+55942870,11808948,3
+2571976,11808948,5
+Sabire,11808948,4
+3894700,11808948,3
+ttongwinter,11808948,5
+119263813,11808948,4
+1599200,11808948,4
+67950697,11808948,4
+57262521,11808948,5
+zepwhen,11808948,5
+67880800,11808948,2
+60861914,11808948,1
+78793402,11808948,5
+43903214,11808948,3
+94269146,11808948,4
+48167301,11808948,4
+Charlie.Lee,11808948,4
+69952221,11808948,4
+ice_pudding,11808948,4
+kildren2013,11808948,3
+lovesky0513,11808948,5
+Super.Loogie,11808948,5
+kevinsy,11808948,5
+gavinturkey,11808948,5
+64092114,11808948,5
+destinyemment,11808948,3
+123222453,11808948,3
+xiaolvmiao,11808948,3
+Monster_004,11808948,3
+shables,11808948,-1
+3333087,11808948,1
+90904421,11808948,3
+RJ861126,11808948,5
+geniusfei,11808948,3
+47099555,11808948,3
+64069869,11808948,4
+laoshudeshijie,11808948,4
+49555547,11808948,2
+tangjiaqi,11808948,3
+122090145,11808948,-1
+irene_i,11808948,4
+43301248,11808948,4
+7223165,11808948,4
+16313678,11808948,4
+57783752,11808948,3
+waitforyoujun,11808948,3
+yang18yi,11808948,4
+yang18yi,11808948,4
+farewell3,11808948,3
+42084433,11808948,2
+35241807,11808948,4
+58291702,11808948,3
+65111838,11808948,2
+49957530,11808948,3
+4529745,11808948,5
+40125031,11808948,3
+85324202,11808948,4
+63639535,11808948,4
+3403834,11808948,3
+97501403,11808948,4
+86601635,11808948,3
+slowdream,11808948,4
+jinjidexiong,11808948,2
+demoncat,11808948,3
+yunl988,11808948,3
+chevalier7,11808948,3
+2341945,11808948,4
+75564358,11808948,4
+75139264,11808948,3
+79951487,11808948,3
+chunchunderen,11808948,4
+xiza,11808948,3
+70917351,11808948,3
+yzk2237084,11808948,3
+61524961,11808948,4
+wocalei,11808948,4
+55646304,11808948,3
+119297298,11808948,5
+82717454,11808948,1
+guo369,11808948,5
+satanprince,11808948,4
+4841197,11808948,4
+46279764,11808948,3
+53721830,11808948,2
+w_j_y,11808948,-1
+jumbod,11808948,5
+miko0721,11808948,4
+40684892,11808948,5
+huster-lion,11808948,4
+65545100,11808948,4
+46261300,11808948,-1
+maraton,11808948,3
+baoshumin,11808948,2
+41142807,11808948,4
+56958360,11808948,4
+lishidai93,11808948,3
+Link0406,11808948,4
+zchou,11808948,3
+66308044,11808948,4
+77501042,11808948,4
+35858270,11808948,5
+hhy890809,11808948,4
+48238044,11808948,3
+64132743,11808948,3
+mayaryuzaki,11808948,4
+65640022,11808948,4
+73150810,11808948,4
+101513427,11808948,2
+93571982,11808948,5
+66174740,11808948,4
+98944241,11808948,5
+55024998,11808948,4
+doon7,11808948,3
+75203785,11808948,2
+52728523,11808948,4
+uestchj,11808948,4
+zzluan,11808948,2
+dodorene,11808948,4
+dengxlin,11808948,4
+79963490,11808948,4
+116703616,11808948,3
+96383885,11808948,3
+brandnewstart,11808948,3
+leeang,11808948,1
+52655756,11808948,-1
+2803619,11808948,4
+pannydebaobao,11808948,3
+NAGISHO,11808948,4
+45797451,11808948,2
+100625194,11808948,5
+27704994,11808948,4
+7255952,11808948,3
+54096811,11808948,4
+103498359,11808948,4
+58703621,11808948,5
+51583782,11808948,5
+39628944,11808948,-1
+51097525,11808948,2
+64783002,11808948,2
+62503467,11808948,3
+54113299,11808948,2
+clovergoku,11808948,5
+53058265,11808948,5
+Chappell.Wat,11808948,4
+74541142,11808948,3
+47467918,11808948,4
+amazg,11808948,4
+muouplay,11808948,3
+mrockfire,11808948,4
+jenniferxiao,11808948,4
+121525520,11808948,5
+Elinna0525,11808948,5
+benbenzh,11808948,2
+75310034,11808948,4
+70034039,11808948,2
+50069849,11808948,5
+fshigh,11808948,5
+63314716,11808948,3
+96490951,11808948,3
+70055114,11808948,3
+33489379,11808948,4
+36821754,11808948,3
+120392055,11808948,3
+hilongmaoxiong,11808948,-1
+98665982,11808948,4
+58777523,11808948,3
+bcnk,11808948,3
+bcnk,11808948,3
+Neoo0,11808948,4
+49319979,11808948,3
+52081497,11808948,3
+wangdoudou20,11808948,3
+63798164,11808948,2
+4520667,11808948,1
+121057399,11808948,5
+44182814,11808948,3
+58863205,11808948,4
+81807699,11808948,5
+SDx74,11808948,5
+40654523,11808948,5
+82893497,11808948,5
+Jacky_L,11808948,3
+103769558,11808948,3
+92117507,11808948,4
+wtforz,11808948,4
+q962265267,11808948,4
+zsj66666,11808948,3
+aomiz,11808948,5
+cindyhello,11808948,-1
+geoffero,11808948,3
+xinnii,11808948,4
+youk,11808948,2
+105859099,11808948,2
+chankawai,11808948,4
+candyrice,11808948,5
+edwardzhou,11808948,4
+9612906,11808948,5
+2934232,11808948,3
+1935824,11808948,4
+70990506,11808948,4
+55488825,11808948,2
+47008277,11808948,3
+seafans,11808948,3
+92978277,11808948,3
+6243740,11808948,3
+75476241,11808948,4
+4709312,11808948,5
+wxhsolo,11808948,3
+mml3774,11808948,1
+68742880,11808948,5
+91397625,11808948,5
+53771727,11808948,2
+34943389,11808948,3
+68967658,11808948,4
+45207350,11808948,4
+61648064,11808948,4
+MaggieFA,11808948,4
+faiel,11808948,3
+vivian1165,11808948,5
+79344850,11808948,3
+xzz005,11808948,3
+king-mushroom,11808948,3
+62671036,11808948,4
+i5conan,11808948,5
+59556078,11808948,3
+Ada_quan,11808948,-1
+2647768,11808948,3
+r712,11808948,4
+1238604,11808948,4
+53323941,11808948,1
+74553230,11808948,4
+52125579,11808948,3
+39351443,11808948,3
+49282353,11808948,3
+binfancy,11808948,4
+65157272,11808948,5
+91036793,11808948,4
+2600693,11808948,4
+3092474,11808948,4
+xms282214205,11808948,2
+DoDoangell,11808948,5
+zweikun,11808948,3
+cxxxmonster531,11808948,4
+81258030,11808948,3
+35497511,11808948,5
+3921078,11808948,3
+4635910,11808948,4
+chenkefeng,11808948,4
+27900767,11808948,4
+83978154,11808948,4
+vacodia,11808948,3
+shishuyue,11808948,4
+66627995,11808948,4
+40638118,11808948,4
+fbndragona,11808948,4
+119472433,11808948,5
+64844513,11808948,4
+xiaoheilian,11808948,4
+45598227,11808948,4
+saker1818,11808948,-1
+simpledeer,11808948,3
+ashin49,11808948,3
+113286141,11808948,4
+53485894,11808948,4
+andorra,11808948,4
+15565943,11808948,4
+63828870,11808948,4
+57711088,11808948,3
+82566965,11808948,4
+moz000,11808948,5
+3023464,11808948,3
+81301720,11808948,3
+103638490,11808948,2
+52421629,11808948,-1
+dafeinydia,11808948,4
+bill86101,11808948,4
+3031036,11808948,3
+47707485,11808948,3
+46030353,11808948,5
+minoindemo,11808948,4
+33855845,11808948,2
+xu77,11808948,2
+rjh1994,11808948,3
+46505445,11808948,5
+64981286,11808948,3
+deartintin,11808948,3
+122738024,11808948,5
+tears_rainbow,11808948,4
+abin520918,11808948,4
+69573255,11808948,2
+67244165,11808948,3
+63277654,11808948,3
+4154813,11808948,5
+91365822,11808948,3
+eggiysnest,11808948,3
+ERIKAZU,11808948,3
+53343599,11808948,3
+jinnioio,11808948,-1
+lianxiben,11808948,3
+49468468,11808948,5
+justinran,11808948,5
+74404471,11808948,5
+cdpnerv,11808948,5
+45612183,11808948,4
+Sharpay0405,11808948,3
+yellowjanet,11808948,2
+120322125,11808948,4
+Sarinagara,11808948,-1
+Boice-YY,11808948,3
+100734380,11808948,3
+65930256,11808948,3
+wrdouban,11808948,4
+62877248,11808948,2
+mansono,11808948,4
+63699428,11808948,4
+62279554,11808948,3
+49706708,11808948,3
+113289658,11808948,5
+48559229,11808948,4
+81831195,11808948,3
+shanshanyouli,11808948,4
+53830411,11808948,4
+77698200,11808948,5
+74013716,11808948,4
+fzw83035379,11808948,4
+T.Shinoda,11808948,3
+50229670,11808948,5
+tearusapart,11808948,3
+83217907,11808948,4
+amadeo,11808948,-1
+87651171,11808948,4
+panbanxian,11808948,5
+53276243,11808948,5
+W3IQ7,11808948,4
+60392839,11808948,3
+muant,11808948,3
+4509975,11808948,3
+102275555,11808948,3
+87978179,11808948,1
+102070870,11808948,2
+73791401,11808948,3
+39107236,11808948,5
+42805484,11808948,-1
+songsida,11808948,5
+122725527,11808948,3
+95158239,11808948,4
+51661978,11808948,5
+54342307,11808948,3
+115714696,11808948,3
+60880769,11808948,5
+63395542,11808948,2
+108352341,11808948,3
+50836111,11808948,5
+23612143,11808948,4
+65564275,11808948,4
+51490972,11808948,2
+Nanamii,11808948,4
+52636272,11808948,5
+rokkumu,11808948,3
+markspotting,11808948,3
+62101965,11808948,4
+rabbit_forest,11808948,4
+potatoblack,11808948,4
+54277204,11808948,3
+87681382,11808948,-1
+50281819,11808948,4
+61495974,11808948,4
+62906196,11808948,2
+untouchable,11808948,4
+81433056,11808948,4
+48179852,11808948,4
+59573093,11808948,3
+ziminliuri,11808948,3
+53094976,11808948,5
+40690261,11808948,3
+Andpsv,11808948,2
+avaxi,11808948,5
+guaitai19960115,11808948,4
+51224776,11808948,4
+68207288,11808948,3
+qrq1995,11808948,4
+51955912,11808948,4
+34704072,11808948,3
+guosiyao,11808948,3
+85868315,11808948,3
+43778462,11808948,-1
+73868761,11808948,2
+41546216,11808948,3
+55318162,11808948,4
+fengshurui,11808948,-1
+CX092,11808948,3
+1756794,11808948,3
+Sinept,11808948,3
+chjjuly0118,11808948,5
+VALLA,11808948,5
+coffeehao,11808948,3
+121384880,11808948,5
+58827869,11808948,5
+jinduoduo,11808948,-1
+38138394,11808948,5
+xxfx,11808948,3
+34789541,11808948,4
+112822542,11808948,5
+ninosun,11808948,4
+69613018,11808948,5
+1942614,11808948,5
+112285998,11808948,4
+46976674,11808948,5
+62828901,11808948,2
+54616457,11808948,5
+33177895,11808948,3
+119490218,11808948,2
+2295492,11808948,4
+126151029,11808948,4
+62635497,11808948,2
+83328709,11808948,4
+btone0808,11808948,3
+53271347,11808948,4
+48065350,11808948,3
+85643943,11808948,2
+34204093,11808948,5
+73627549,11808948,3
+43773144,11808948,5
+56767865,11808948,4
+57315902,11808948,4
+61788564,11808948,3
+42695669,11808948,3
+68621390,11808948,4
+ahuasist,11808948,3
+75913868,11808948,4
+49326872,11808948,5
+76955121,11808948,1
+yaolinj,11808948,2
+76498254,11808948,-1
+4801315,11808948,3
+59604055,11808948,2
+59103272,11808948,5
+simontien,11808948,5
+25314137,11808948,5
+reave,11808948,4
+79737120,11808948,4
+34347136,11808948,3
+CloudRiver,11808948,4
+Curry_Egg,11808948,4
+leikea,11808948,5
+46847805,11808948,3
+7609988,11808948,3
+hjl0312,11808948,3
+Dr.Moth,11808948,4
+sesey,11808948,3
+57795255,11808948,2
+49082695,11808948,3
+phoenixfannie,11808948,2
+65911136,11808948,5
+CookieCrumbler,11808948,3
+69016984,11808948,3
+alled,11808948,3
+37019644,11808948,5
+66396229,11808948,3
+51736421,11808948,4
+seinenmanga,11808948,4
+cqyyAyy,11808948,4
+lmhluvmovie,11808948,5
+15321915,11808948,3
+67775093,11808948,4
+seanxftkesha,11808948,4
+ZotterElaine,11808948,4
+34696386,11808948,4
+66550666,11808948,3
+28628471,11808948,5
+52762831,11808948,4
+81431649,11808948,5
+37852351,11808948,3
+Kkumako,11808948,3
+83141101,11808948,4
+62090150,11808948,3
+77165599,11808948,3
+caiwoshishei,11808948,3
+81741082,11808948,4
+72569635,11808948,3
+62195893,11808948,4
+ghostcatstudio,11808948,3
+GodAssassin,11808948,4
+Batcaty,11808948,3
+25553362,11808948,2
+62517035,11808948,5
+42637645,11808948,4
+49470212,11808948,4
+49511491,11808948,5
+ricechow,11808948,5
+maikou_,11808948,5
+rockerai,11808948,4
+53771308,11808948,4
+2427012,11808948,-1
+64477541,11808948,3
+bigpig93,11808948,2
+119456550,11808948,3
+amy0303,11808948,4
+12410068,11808948,4
+27199413,11808948,4
+cody555,11808948,2
+59561773,11808948,4
+33684021,11808948,3
+51477715,11808948,4
+65058502,11808948,5
+8447509,11808948,4
+holy-fishman,11808948,4
+YUYUSTF,11808948,3
+58255325,11808948,3
+51342796,11808948,-1
+70933657,11808948,3
+53010578,11808948,-1
+63099220,11808948,4
+zhegxha,11808948,3
+zuoteeth,11808948,4
+Sttaan,11808948,3
+43470149,11808948,3
+87909103,11808948,4
+3141886,11808948,-1
+xiaoji-jade,11808948,4
+coldromantic,11808948,3
+3656028,11808948,4
+43276883,11808948,5
+fuuuuuuck,11808948,5
+warm_fan,11808948,3
+loulou-mae,11808948,3
+mikoz,11808948,4
+65070649,11808948,5
+46597206,11808948,3
+39945204,11808948,3
+77765189,11808948,3
+Toopooh,11808948,4
+3832465,11808948,4
+66581287,11808948,3
+52543419,11808948,4
+62613227,11808948,5
+18937847,11808948,2
+53247764,11808948,3
+68887897,11808948,-1
+68089671,11808948,2
+78519970,11808948,2
+68951602,11808948,2
+wewillrockyou,11808948,4
+3690205,11808948,4
+MephistophelesK,11808948,5
+126825775,11808948,3
+xiaodizi16,11808948,4
+3548440,11808948,3
+sundayikel,11808948,-1
+91365372,11808948,3
+45107933,11808948,5
+125021641,11808948,5
+41014466,11808948,3
+iamswan,11808948,2
+59465835,11808948,4
+Mere_77,11808948,5
+44042257,11808948,4
+doreending,11808948,3
+superman-is-gay,11808948,4
+grico,11808948,3
+GoldFish,11808948,3
+guiying96,11808948,3
+freddy_xu,11808948,4
+sevseven,11808948,4
+60237257,11808948,5
+71428982,11808948,2
+hide-by-day,11808948,4
+YuRAY,11808948,4
+cyblocker,11808948,2
+yvoria,11808948,5
+1225013,11808948,-1
+2938267,11808948,2
+33309594,11808948,-1
+51918666,11808948,5
+2495589,11808948,2
+58086005,11808948,4
+58448710,11808948,5
+104818582,11808948,4
+2651396,11808948,2
+fafa8343,11808948,-1
+63651226,11808948,4
+17713187,11808948,3
+ulenka,11808948,4
+3573130,11808948,4
+liweiheng,11808948,2
+62134395,11808948,1
+beersun,11808948,3
+czuni,11808948,3
+64430536,11808948,3
+118277522,11808948,1
+63422177,11808948,4
+magiahaoking,11808948,4
+46774756,11808948,4
+13038312,11808948,3
+50310141,11808948,4
+kingiknow,11808948,2
+given0709,11808948,3
+Fay59,11808948,3
+45220439,11808948,4
+Ice.Nefar,11808948,4
+MLKGOD,11808948,4
+lesile,11808948,3
+73845494,11808948,3
+85249949,11808948,-1
+xiaoyuhen,11808948,2
+MMMangojz,11808948,4
+50414498,11808948,4
+44221953,11808948,4
+gjy.patricia,11808948,3
+59367397,11808948,-1
+2062498,11808948,4
+bluegluegun,11808948,1
+82866714,11808948,1
+glorymanutd,11808948,3
+63022230,11808948,5
+alvie,11808948,1
+2701375,11808948,1
+61572428,11808948,5
+35591333,11808948,4
+60729529,11808948,4
+45420804,11808948,4
+Pincent,11808948,4
+3122796,11808948,4
+56493073,11808948,4
+123004306,11808948,3
+74528520,11808948,4
+58120258,11808948,4
+1428744,11808948,3
+Ellusion,11808948,4
+hirair,11808948,4
+63211767,11808948,4
+smallove816,11808948,-1
+xiaolangtongxue,11808948,3
+44317755,11808948,3
+cowrykong,11808948,3
+VickyMonster,11808948,3
+ioott,11808948,2
+50607886,11808948,5
+105484488,11808948,2
+empatie,11808948,-1
+lline,11808948,3
+sandysea,11808948,3
+25569564,11808948,3
+58574805,11808948,3
+58523222,11808948,3
+2340742,11808948,3
+48014594,11808948,5
+48014594,11808948,5
+59541262,11808948,2
+120736500,11808948,4
+73822937,11808948,5
+stella0720,11808948,3
+sueinjuly,11808948,4
+73299376,11808948,2
+hu7solo,11808948,4
+muxiaoxu,11808948,3
+elsolmysun,11808948,3
+zhushejia,11808948,3
+fayy,11808948,3
+inwonderland,11808948,1
+50945725,11808948,2
+frozone,11808948,2
+no1no,11808948,2
+Tfish,11808948,4
+32791958,11808948,5
+75232634,11808948,3
+maydaysweety,11808948,2
+cyyywx,11808948,3
+4104741,11808948,3
+fanyarabbit,11808948,5
+51435556,11808948,3
+njndyx,11808948,1
+ciaoxu,11808948,4
+63119034,11808948,3
+45549330,11808948,4
+58540622,11808948,3
+sherryhexc,11808948,3
+cassiopeiaxiah,11808948,4
+59771378,11808948,1
+65507794,11808948,4
+101393970,11808948,3
+zziam,11808948,1
+42600622,11808948,-1
+2012350,11808948,-1
+47692546,11808948,3
+54428935,11808948,3
+france_lj,11808948,2
+iktsuarpokxx,11808948,3
+nathaneil,11808948,2
+loverwenzi22,11808948,3
+flavia-huqing,11808948,3
+37176848,11808948,3
+silviapan,11808948,4
+82623937,11808948,4
+57521129,11808948,4
+Pabalee,11808948,4
+62469238,11808948,2
+3553432,11808948,3
+4857000,11808948,5
+bubblewing,11808948,1
+zouy1216,11808948,3
+fishy,11808948,3
+xxxholic99,11808948,5
+68859699,11808948,2
+48708746,11808948,3
+loveirina,11808948,1
+joywuyan,11808948,5
+miiyuro,11808948,3
+cx9146,11808948,4
+miaogusensai,11808948,4
+muyanyan,11808948,5
+pigpearl,11808948,5
+HIDING.,11808948,4
+windson7,11808948,3
+26739863,11808948,2
+zanmeishi,11808948,4
+hahahalalala,11808948,4
+casolove,11808948,5
+3533485,11808948,3
+54278419,11808948,4
+66180081,11808948,4
+pusijie,11808948,2
+83767002,11808948,3
+outtatheblues,11808948,3
+dasyhiqiang,11808948,-1
+sevenshuai,11808948,3
+102140524,11808948,3
+61499382,11808948,4
+anearl,11808948,2
+45025869,11808948,3
+44159787,11808948,4
+Milckhy,11808948,5
+66732663,11808948,4
+26039197,11808948,-1
+wnovic,11808948,4
+wywu1990,11808948,3
+sickroom305,11808948,-1
+vacancy_v,11808948,4
+doraeomon0620,11808948,5
+46771775,11808948,4
+gladdon,11808948,1
+4860409,11808948,3
+53723225,11808948,4
+yyyyyrl,11808948,2
+shinesday,11808948,2
+ZZSJC,11808948,4
+101232797,11808948,3
+101232797,11808948,3
+46265222,11808948,3
+lollypain,11808948,-1
+senhai,11808948,4
+47759115,11808948,2
+ringogo,11808948,5
+7880093,11808948,3
+4390181,11808948,5
+2231082,11808948,-1
+iConan,11808948,3
+Queenlotus,11808948,4
+dick8045,11808948,3
+73743884,11808948,3
+50843130,11808948,1
+para77,11808948,-1
+abcclk,11808948,4
+44888841,11808948,2
+helenrain553,11808948,3
+52628024,11808948,4
+3590500,11808948,4
+2189989,11808948,3
+bodysnatcher,11808948,3
+52586711,11808948,4
+Au.k,11808948,3
+sosansosan,11808948,4
+juliayunjie,11808948,1
+abei1988,11808948,2
+the7th_bloom,11808948,2
+btjing,11808948,5
+1136099,11808948,5
+dnarna_vicky,11808948,-1
+edwardpanda,11808948,-1
+abelxing,11808948,4
+57598837,11808948,-1
+padma929,11808948,4
+52519025,11808948,4
+DrGonzo,11808948,3
+rubikcj,11808948,3
+45359685,11808948,3
+104428490,11808948,4
+50673336,11808948,2
+huangxiaobai,11808948,3
+cherry0908,11808948,3
+65388114,11808948,5
+diafarona,11808948,3
+57892517,11808948,3
+Sandyhz,11808948,5
+ziyoupaifeizai,11808948,3
+3753878,11808948,3
+coastocean,11808948,2
+Vincentwsk,11808948,3
+52544571,11808948,3
+andriylin,11808948,4
+119631821,11808948,2
+77117649,11808948,3
+58011320,11808948,2
+dmy612,11808948,4
+36941035,11808948,4
+1612741,11808948,-1
+Julinawang,11808948,3
+2399502,11808948,2
+kiwiweiji,11808948,2
+65056943,11808948,3
+56579686,11808948,2
+47080438,11808948,4
+Knightmare,11808948,2
+problemchildren,11808948,3
+70119569,11808948,3
+80720900,11808948,5
+85665063,11808948,5
+ecane,11808948,4
+42367831,11808948,2
+90116342,11808948,3
+64144009,11808948,4
+120579379,11808948,5
+44350440,11808948,5
+molaire,11808948,5
+60166330,11808948,5
+loneblog,11808948,5
+75605847,11808948,4
+70746193,11808948,4
+75485763,11808948,3
+straizer,11808948,5
+q164511490,11808948,3
+67470935,11808948,5
+65190817,11808948,3
+zhentms,11808948,3
+52708584,11808948,5
+Rencee,11808948,3
+78604833,11808948,5
+64051414,11808948,3
+24888847,11808948,5
+iloveEminem,11808948,2
+1767731,11808948,3
+Alex-boil,11808948,2
+69156297,11808948,4
+60648081,11808948,5
+kodokoja,11808948,5
+64780091,11808948,4
+Leslie221,11808948,3
+68984410,11808948,3
+54050020,11808948,3
+106760566,11808948,5
+EdwardLear,11808948,5
+58305570,11808948,4
+46550458,11808948,4
+landystar,11808948,5
+yujiuwei,11808948,3
+luojiu,11808948,-1
+97396333,11808948,4
+suma,11808948,2
+65662005,11808948,4
+PMsxl,11808948,3
+ricik,11808948,4
+guoooo,11808948,5
+flxjp,11808948,4
+urasucker,11808948,1
+Mrfuck_u,11808948,4
+stetehe,11808948,4
+59524525,11808948,4
+51562475,11808948,5
+adelarenta,11808948,3
+51911319,11808948,2
+Castellan199,11808948,5
+79090756,11808948,4
+minutemaid,11808948,3
+Argine,11808948,5
+3993233,11808948,3
+53769380,11808948,4
+IamCaroline,11808948,3
+warmblanket,11808948,-1
+53585510,11808948,4
+60413211,11808948,4
+15146438,11808948,5
+vickilovewan,11808948,-1
+59038571,11808948,3
+1363290,11808948,5
+4632449,11808948,4
+toai,11808948,4
+60894533,11808948,2
+31301735,11808948,3
+PCvarment,11808948,-1
+johnmcclane,11808948,4
+austinswift,11808948,4
+61879680,11808948,4
+2783573,11808948,2
+50031038,11808948,4
+NewFun,11808948,3
+thogiac,11808948,2
+witeryourheart,11808948,3
+107886685,11808948,3
+64395750,11808948,2
+101955327,11808948,5
+57774995,11808948,4
+138249939,11808948,5
+134542578,11808948,3
+bijigod,11808948,1
+68549627,11808948,4
+mmfay,11808948,3
+2856474,11808948,4
+20194870,11808948,3
+NosyBunny,11808948,4
+88033603,11808948,3
+133499151,11808948,4
+135928273,11808948,-1
+121920760,11808948,3
+130445057,11808948,3
+121747053,11808948,4
+33019737,11808948,3
+134574897,11808948,4
+31698933,11808948,3
+134503726,11808948,3
+134483925,11808948,2
+34507934,11808948,3
+96042250,11808948,4
+71093640,11808948,4
+dailypop,11808948,3
+120988299,11808948,4
+55333647,11808948,3
+85571808,11808948,4
+45314448,26253733,3
+70546993,26253733,3
+71039483,26253733,4
+131535153,26253733,2
+lmx1220,26253733,2
+66631031,26253733,2
+onlyloveu,26253733,5
+84652846,26253733,3
+49104566,26253733,4
+1960323,26253733,3
+hejiaqiqi,26253733,3
+48168328,26253733,2
+124694624,26253733,3
+7255952,26253733,3
+fangzhou97851,26253733,5
+52883078,26253733,3
+53591021,26253733,3
+1933600,26253733,3
+59856519,26253733,3
+66598286,26253733,4
+66598286,26253733,4
+76364366,26253733,4
+46523579,26253733,-1
+99508404,26253733,3
+2498635,26253733,4
+65565016,26253733,4
+bearblindman,26253733,2
+62155959,26253733,3
+danicahee,26253733,4
+136534147,26253733,3
+123386745,26253733,3
+62503467,26253733,4
+Makoto614,26253733,3
+Haze1,26253733,3
+48167301,26253733,4
+kong_bai_ge,26253733,3
+130445057,26253733,3
+foxbaby_1104,26253733,3
+131470546,26253733,2
+51156405,26253733,4
+73707848,26253733,2
+tangmm,26253733,3
+75043360,26253733,2
+75173567,26253733,4
+36348968,26253733,3
+134574897,26253733,3
+caocaoa,26253733,3
+63874245,26253733,3
+69532674,26253733,4
+2238966,26253733,3
+53710950,26253733,3
+popzoe,26253733,4
+64763460,26253733,4
+70310265,26253733,3
+56167490,26253733,2
+56369777,26253733,2
+132859823,26253733,3
+64204939,26253733,5
+91243092,26253733,3
+68909177,26253733,3
+50129534,26253733,3
+90904421,26253733,3
+138222120,26253733,5
+57970143,26253733,3
+80894601,26253733,2
+49002133,26253733,3
+71174011,26253733,4
+2849436,26253733,4
+37840696,26253733,3
+amin888,26253733,3
+55937876,26253733,2
+63139563,26253733,3
+94278035,26253733,1
+51482803,26253733,-1
+66800718,26253733,4
+Sheeplady,26253733,3
+kp81ndlf,26253733,3
+51401098,26253733,3
+58064281,26253733,3
+136300332,26253733,3
+40687803,26253733,4
+samixuan.,26253733,3
+49061947,26253733,3
+134503726,26253733,4
+RUOER,26253733,4
+a1b2c31221,26253733,4
+120954219,26253733,5
+36452184,26253733,1
+3571898,26253733,3
+121920760,26253733,4
+129239528,26253733,4
+Maybo-Chang,26253733,3
+jidecengjing,26253733,3
+134483925,26253733,4
+75849450,26253733,2
+126970287,26253733,5
+75757535,26253733,3
+80066409,26253733,4
+85226504,26253733,4
+60201729,26253733,2
+60201729,26253733,2
+68630098,26253733,4
+53362180,26253733,3
+81244293,26253733,3
+135141557,26253733,3
+28909435,26253733,4
+67715281,26253733,5
+memejoo,26253733,3
+36723541,26253733,3
+K-Child,26253733,3
+123161664,26253733,4
+49386746,26253733,3
+Mrscorpio,26253733,2
+70328585,26253733,2
+lingxie,26253733,2
+SharonShining,26253733,3
+91323310,26253733,4
+lingdongling,26253733,2
+98956225,26253733,1
+72225985,26253733,3
+131068311,26253733,3
+phoebe0_0nn,26253733,3
+106318944,26253733,3
+119405586,26253733,5
+qianqianjueding,26253733,-1
+50221817,26253733,4
+asnli,26253733,4
+iladios_sopp,26253733,3
+58691394,26253733,3
+127114583,26253733,3
+32711539,26253733,4
+lanlanhl,26253733,5
+84790765,26253733,1
+Grace_Xuliang,26253733,3
+136508098,26253733,5
+71833015,26253733,4
+37424688,26253733,3
+84282668,26253733,5
+44614198,26253733,3
+52106146,26253733,3
+rucianyimo,26253733,1
+64128291,26253733,3
+fenshoudashi,26253733,3
+wtforz,26253733,1
+Kenneth_mu,26253733,3
+69569100,26253733,3
+45580110,26253733,3
+36874977,26253733,4
+103214078,26253733,3
+59654893,26253733,4
+xasen,26253733,3
+131987227,26253733,3
+63528738,26253733,5
+aboutnimo,26253733,3
+53396330,26253733,3
+121536434,26253733,3
+27895974,26253733,4
+53257577,26253733,4
+45837126,26253733,2
+120267137,26253733,4
+60053075,26253733,2
+68989729,26253733,2
+la739212322,26253733,5
+137555231,26253733,3
+40081722,26253733,4
+73419369,26253733,4
+72642943,26253733,3
+antoniagreen,26253733,3
+119189065,26253733,3
+54355887,26253733,3
+88929691,26253733,5
+SuzyMao,26253733,3
+85445381,26253733,3
+133718009,26253733,3
+60100529,26253733,5
+137409901,26253733,4
+kiki204629,26253733,3
+zeroooccc,26253733,5
+62350748,26253733,3
+3690205,26253733,2
+58929269,26253733,4
+qhyh,26253733,4
+60941930,26253733,3
+38740648,26253733,3
+yinmoqingsanhe,26253733,3
+75913868,26253733,2
+66091959,26253733,3
+56922790,26253733,3
+65341751,26253733,3
+66178513,26253733,3
+lionaunt,26253733,5
+71586138,26253733,3
+zoe_dl,26253733,3
+ishtarie,26253733,3
+61280115,26253733,3
+54034056,26253733,2
+LAMAU,26253733,3
+76667923,26253733,3
+50012279,26253733,1
+52688114,26253733,4
+55825163,26253733,3
+yscysc803,26253733,1
+44517782,26253733,3
+jielunaimomo,26253733,4
+Phyllis5,26253733,2
+2916025,26253733,3
+4291780,26253733,4
+jessicajoe,26253733,3
+evilQin,26253733,2
+1019579,26253733,2
+70699214,26253733,3
+IronCock,26253733,4
+57275830,26253733,3
+58231376,26253733,2
+qiongdong,26253733,4
+76804621,26253733,3
+45374421,26253733,4
+44940002,26253733,3
+2985135,26253733,4
+64873674,26253733,2
+66932854,26253733,4
+4021496,26253733,3
+127950412,26253733,4
+62915355,26253733,3
+winnie0212,26253733,3
+piulidayoki,26253733,3
+58802831,26253733,3
+deer-zhao,26253733,3
+53558102,26253733,3
+37210878,26253733,3
+25960765,26253733,3
+120161233,26253733,4
+ffx1201,26253733,3
+66141079,26253733,3
+63457669,26253733,2
+68449766,26253733,3
+53656219,26253733,3
+3066956,26253733,3
+115000421,26253733,3
+1886385,26253733,3
+1886385,26253733,3
+yuuuummy,26253733,3
+lycy,26253733,5
+62880392,26253733,3
+doubana,26253733,3
+amorexia,26253733,2
+14263907,26253733,3
+53112248,26253733,4
+73259473,26253733,5
+56074294,26253733,3
+44669432,26253733,4
+92908596,26253733,4
+36568003,26253733,2
+104261144,26253733,1
+pariseros,26253733,4
+cute-candyan,26253733,2
+katerzo,26253733,4
+wuhuihong1992,26253733,2
+67104637,26253733,4
+67808822,26253733,3
+67808822,26253733,3
+2106137,26253733,4
+59276802,26253733,3
+64009647,26253733,2
+xuehaotian,26253733,2
+124744172,26253733,4
+Armande,26253733,3
+lancy27,26253733,4
+58602175,26253733,2
+54652758,26253733,4
+86807674,26253733,3
+93892762,26253733,3
+xiaosongqu,26253733,3
+67843912,26253733,3
+52083386,26253733,4
+nicdone,26253733,3
+62418513,26253733,4
+128221638,26253733,2
+43778462,26253733,-1
+64591940,26253733,4
+136509793,26253733,2
+64854726,26253733,3
+60407456,26253733,2
+80098161,26253733,4
+2754204,26253733,3
+115324297,26253733,1
+126929965,26253733,3
+45078646,26253733,4
+113310119,26253733,3
+86093744,26253733,2
+58545738,26253733,3
+61888241,26253733,5
+bamboojdiandian,26253733,2
+oweuuu,26253733,-1
+2890229,26253733,3
+withlymm,26253733,3
+btone0808,26253733,2
+WuDingShang,26253733,3
+76244481,26253733,3
+57036739,26253733,5
+51368936,26253733,3
+amyyuer,26253733,4
+66617660,26253733,3
+124333866,26253733,4
+51877834,26253733,3
+71330808,26253733,3
+filmfilm,26253733,3
+126959230,26253733,4
+80722428,26253733,3
+jeonwoo,26253733,4
+58854842,26253733,3
+84698699,26253733,4
+37620368,26253733,3
+ellie0314,26253733,4
+Goudy,26253733,4
+49187859,26253733,4
+134863222,26253733,5
+48953772,26253733,3
+54068370,26253733,-1
+3425333,26253733,5
+80024991,26253733,2
+anthonybb,26253733,3
+124829943,26253733,5
+46913971,26253733,2
+69675369,26253733,4
+3798381,26253733,4
+60621560,26253733,3
+hika99,26253733,4
+ohhei,26253733,4
+49119255,26253733,2
+73161188,26253733,3
+day-break,26253733,3
+61696914,26253733,5
+Emily723,26253733,5
+3214496,26253733,5
+78347009,26253733,3
+gandi2,26253733,5
+fionaseven7,26253733,5
+cyushu,26253733,-1
+HDG3215,26253733,4
+45314448,26253733,3
+70546993,26253733,3
+71039483,26253733,4
+131535153,26253733,2
+lmx1220,26253733,2
+66631031,26253733,2
+onlyloveu,26253733,5
+84652846,26253733,3
+49104566,26253733,4
+1960323,26253733,3
+hejiaqiqi,26253733,3
+48168328,26253733,2
+124694624,26253733,3
+7255952,26253733,3
+fangzhou97851,26253733,5
+52883078,26253733,3
+53591021,26253733,3
+1933600,26253733,3
+59856519,26253733,3
+66598286,26253733,4
+1795295,25856265,2
+121920760,25856265,2
+36015341,25856265,4
+134574897,25856265,2
+40853957,25856265,2
+55519511,25856265,3
+foun,25856265,2
+134503726,25856265,3
+134483925,25856265,3
+68630098,25856265,3
+59129484,25856265,4
+punk90,25856265,4
+136199952,25856265,4
+Ruty1985,25856265,3
+98956225,25856265,1
+OpenSpaces,25856265,3
+120445293,25856265,4
+Rachel23,25856265,3
+41842523,25856265,3
+131533540,25856265,5
+bodd,25856265,4
+58840542,25856265,3
+2008327,25856265,4
+43942858,25856265,4
+137555231,25856265,3
+1922440,25856265,4
+2016454,25856265,4
+xinxuqi,25856265,4
+3852931,25856265,4
+60486561,25856265,4
+58802831,25856265,4
+131352783,25856265,3
+68406313,25856265,2
+63617641,25856265,4
+82248938,25856265,1
+57803183,25856265,4
+130657915,25856265,3
+115828628,25856265,3
+40140527,25856265,3
+14247291,25856265,3
+104409838,25856265,4
+84943776,25856265,4
+55617091,25856265,4
+1331153,25856265,4
+2187326,25856265,3
+45055967,25856265,4
+64618863,25856265,3
+83295870,25856265,4
+79879080,25856265,4
+1821069,25856265,2
+49340336,25856265,3
+135248938,25856265,3
+wood0913,25856265,3
+136594496,25856265,4
+72642943,25856265,4
+33990008,25856265,5
+2876705,25856265,5
+48973534,25856265,3
+dengxuanhai,25856265,3
+45484348,25856265,4
+erobin,25856265,3
+2118404,25856265,2
+133094793,25856265,5
+tix,25856265,4
+84597133,25856265,5
+53586919,25856265,4
+Bobby320415,25856265,3
+53935985,25856265,3
+81404706,25856265,3
+70686440,25856265,4
+1166776,25856265,3
+btone0808,25856265,3
+102129178,25856265,5
+50264279,25856265,3
+134864468,25856265,4
+99117906,25856265,5
+zhujiao,25856265,3
+matt33,25856265,3
+1599143,25856265,5
+yangwenming,25856265,5
+1795295,25856265,2
+121920760,25856265,2
+36015341,25856265,4
+134574897,25856265,2
+40853957,25856265,2
+55519511,25856265,3
+foun,25856265,2
+134503726,25856265,3
+134483925,25856265,3
+68630098,25856265,3
+59129484,25856265,4
+punk90,25856265,4
+136199952,25856265,4
+Ruty1985,25856265,3
+98956225,25856265,1
+OpenSpaces,25856265,3
+120445293,25856265,4
+Rachel23,25856265,3
+41842523,25856265,3
+131533540,25856265,5
+Lycheeciel,26274810,3
+mymydemon,26274810,3
+40687803,26274810,4
+70546993,26274810,3
+61619787,26274810,2
+33204818,26274810,4
+76911039,26274810,3
+99508404,26274810,2
+60145877,26274810,2
+man7shuo,26274810,5
+48290239,26274810,3
+49177191,26274810,2
+53920626,26274810,3
+130445057,26274810,3
+124246405,26274810,4
+77048663,26274810,3
+134574897,26274810,2
+65978113,26274810,4
+47937098,26274810,4
+59285776,26274810,4
+71946766,26274810,3
+lingdongling,26274810,3
+3685117,26274810,4
+134503726,26274810,3
+kkbear,26274810,3
+71586138,26274810,3
+121920760,26274810,3
+59390060,26274810,4
+49568187,26274810,3
+K-Child,26274810,3
+37580592,26274810,3
+98956225,26274810,1
+xiyuanaries,26274810,4
+61111185,26274810,3
+frozone,26274810,2
+130610060,26274810,4
+122868077,26274810,3
+3287454,26274810,3
+131592651,26274810,5
+4453892,26274810,-1
+CindyTsao,26274810,3
+foreveraegeanse,26274810,3
+sunzherayallen,26274810,4
+3670661,26274810,5
+48712788,26274810,3
+1943610,26274810,3
+56922790,26274810,3
+34901213,26274810,3
+48102959,26274810,3
+xjksama,26274810,4
+58231376,26274810,4
+115089885,26274810,-1
+aprilsunshine,26274810,4
+127114583,26274810,3
+65114344,26274810,5
+ala7lee,26274810,2
+2220578,26274810,3
+37620368,26274810,3
+73084756,26274810,3
+marco_0708,26274810,3
+49266863,26274810,2
+1959352,26274810,3
+reave,26274810,2
+49082695,26274810,3
+71330808,26274810,3
+49812770,26274810,3
+66946889,26274810,3
+77774632,26274810,2
+68894222,26274810,3
+62379540,26274810,4
+zpoo2009,26274810,3
+77922789,26274810,3
+66803513,26274810,3
+131616351,26274810,3
+135499054,26274810,3
+74115900,26274810,3
+48974553,26274810,3
+76467871,26274810,3
+2238966,26274810,3
+61219748,26274810,4
+61219748,26274810,4
+73600166,26274810,3
+122812221,26274810,5
+fyvonne,26274810,3
+qq1994,26274810,3
+51213478,26274810,5
+rurucat,26274810,3
+50255025,26274810,2
+64801860,26274810,3
+TaTaxxxx,26274810,3
+lsg_lsg,26274810,3
+7132062,26274810,3
+btone0808,26274810,2
+78667352,26274810,5
+71995699,26274810,3
+46525176,26274810,4
+67447555,26274810,4
+2341945,26274810,3
+66057217,26274810,3
+foxbaby_1104,26274810,3
+foxbaby_1104,26274810,3
+Asukaluo,26274810,3
+misawang,26274810,4
+57080555,26274810,2
+72504662,26274810,4
+beckhacong,26274810,3
+duanziyu,26274810,4
+43488242,26274810,3
+jielunaimomo,26274810,5
+81336001,26274810,4
+njtintin,26274810,3
+4520667,26274810,3
+32841660,26274810,3
+a1b2c31221,26274810,3
+tongziyam,26274810,3
+2106137,26274810,3
+Youandi4,26274810,-1
+veverlee,26274810,3
+80561643,26274810,5
+zengmouren,26274810,3
+nuanda,26274810,3
+baoxiaolin0913,26274810,3
+kevin_lu1001,26274810,3
+57305545,26274810,4
+laespoirao,26274810,3
+p2165,26274810,2
+1651604,26274810,3
+79526047,26274810,5
+yfxiang,26274810,4
+nyteen,26274810,4
+52220875,26274810,3
+66979855,26274810,3
+orangeorange6,26274810,3
+81404706,26274810,3
+67436408,26274810,3
+angelakristin,26274810,5
+68700662,26274810,4
+3177593,26274810,3
+lynnstefanie,26274810,-1
+hollycn,26274810,3
+4412898,26274810,3
+Goudy,26274810,4
+64277319,26274810,3
+catherine_koo,26274810,4
+76288538,26274810,4
+44589835,26274810,3
+ellie0314,26274810,4
+Laputain,26274810,2
+55811442,26274810,-1
+yushouxijie,26274810,3
+69866906,26274810,4
+61332807,26274810,3
+wanwanwan4u,26274810,4
+114478420,26274810,5
+catbrid,26274810,3
+138245884,26274810,5
+Masa_Masa,26274810,2
+4584870,26274810,3
+50103743,26274810,1
+138229519,26274810,3
+Lycheeciel,26274810,3
+mymydemon,26274810,3
+40687803,26274810,4
+70546993,26274810,3
+61619787,26274810,2
+33204818,26274810,4
+76911039,26274810,3
+99508404,26274810,2
+60145877,26274810,2
+man7shuo,26274810,5
+48290239,26274810,3
+49177191,26274810,2
+53920626,26274810,3
+130445057,26274810,3
+124246405,26274810,4
+77048663,26274810,3
+134574897,26274810,2
+65978113,26274810,4
+47937098,26274810,4
+59285776,26274810,4
+erobin,25889465,4
+102938445,25889465,4
+3884388,25889465,5
+131364833,25889465,4
+54653189,25889465,1
+weini0410,25889465,3
+59888468,25889465,3
+134503726,25889465,3
+36015341,25889465,3
+71814035,25889465,1
+70043510,25889465,3
+44412475,25889465,2
+50951864,25889465,3
+1259506,25889465,3
+124127651,25889465,2
+80003827,25889465,3
+TiramisuPig,25889465,3
+Son47,25889465,3
+131025711,25889465,2
+122868077,25889465,2
+jozenky,25889465,2
+61809588,25889465,5
+84708478,25889465,3
+simysm,25889465,3
+colorwind,25889465,3
+kistance,25889465,3
+york_wu,25889465,3
+98956225,25889465,3
+red.,25889465,-1
+62217595,25889465,4
+127675582,25889465,1
+28312683,25889465,2
+yf611x,25889465,3
+46828936,25889465,2
+popeyes365,25889465,3
+53935985,25889465,3
+50527578,25889465,3
+ps2xboxgbaxbox,25889465,3
+kelvinshaw,25889465,3
+aa415522,25889465,3
+134625303,25889465,3
+16928498,25889465,3
+43814222,25889465,3
+2106137,25889465,3
+84327675,25889465,2
+92721405,25889465,2
+64704924,25889465,3
+58484149,25889465,3
+54415980,25889465,4
+135209955,25889465,3
+41758984,25889465,2
+iamliving,25889465,4
+44109040,25889465,5
+33980065,25889465,3
+80040060,25889465,2
+45804814,25889465,-1
+45238478,25889465,3
+130322622,25889465,4
+2114161,25889465,4
+2429292,25889465,4
+53030860,25889465,4
+26713841,25889465,3
+matt33,25889465,3
+81404706,25889465,3
+xieao123,25889465,3
+48153292,25889465,3
+linmi,25889465,4
+58956237,25889465,3
+4380133,25889465,3
+78667352,25889465,4
+jakartaxie,25889465,3
+48885291,25889465,2
+127161571,25889465,4
+Jin....,25889465,2
+1019579,25889465,3
+131987227,25889465,3
+62496308,25889465,-1
+46572945,25889465,1
+64618863,25889465,3
+35672658,25889465,3
+bora2547,25889465,3
+36853373,25889465,3
+1268296,25889465,3
+127345355,25889465,3
+58840542,25889465,3
+71125053,25889465,3
+xfile99,25889465,3
+4239908,25889465,3
+63730928,25889465,2
+65814779,25889465,4
+55603094,25889465,3
+59746203,25889465,5
+btone0808,25889465,3
+zcsgdbd,25889465,3
+49715563,25889465,5
+48938261,25889465,3
+abaobao,25889465,4
+doitbig,25889465,3
+77839555,25889465,5
+15515197,25889465,4
+59113427,25889465,3
+41482074,25889465,3
+74676258,25889465,4
+63531003,25889465,1
+68477521,25889465,3
+65915294,25889465,4
+1068202,25889465,3
+51387843,25889465,5
+42106999,25889465,3
+jaycee103,25889465,4
+kevin_lu1001,25889465,3
+84374264,25889465,3
+nanzang,25889465,3
+liang9527,25889465,3
+39781506,25889465,5
+63381133,25889465,3
+97517593,25889465,3
+3804174,25889465,4
+lovetatum,25889465,3
+cllee,25889465,-1
+ys1013,25889465,3
+63422177,25889465,2
+60486561,25889465,4
+56144263,25889465,3
+fusiji,25889465,4
+84418105,25889465,-1
+102129178,25889465,4
+4340710,25889465,3
+46478465,25889465,5
+58907756,25889465,3
+137621762,25889465,3
+Shineo,25889465,4
+lazydesigner,25889465,3
+52438455,25889465,4
+youcannotfindme,25889465,3
+136971275,25889465,1
+127121082,25889465,4
+131746229,25889465,-1
+M37098,25889465,-1
+53032554,25889465,-1
+erobin,25889465,4
+102938445,25889465,4
+3884388,25889465,5
+131364833,25889465,4
+54653189,25889465,1
+weini0410,25889465,3
+59888468,25889465,3
+134503726,25889465,3
+36015341,25889465,3
+71814035,25889465,1
+70043510,25889465,3
+44412475,25889465,2
+50951864,25889465,3
+1259506,25889465,3
+124127651,25889465,2
+80003827,25889465,3
+TiramisuPig,25889465,3
+Son47,25889465,3
+131025711,25889465,2
+122868077,25889465,2
+49266863,1972724,2
+45484261,1972724,3
+59981188,1972724,4
+61619787,1972724,4
+60244008,1972724,1
+2147925,1972724,5
+68542833,1972724,3
+3426596,1972724,3
+77848216,1972724,4
+14247291,1972724,4
+3177593,1972724,3
+54034056,1972724,3
+52883078,1972724,4
+119894914,1972724,3
+31466605,1972724,4
+zhuimengrenm,1972724,3
+loverwenzi22,1972724,4
+65744923,1972724,4
+8523675,1972724,4
+90610268,1972724,5
+60168447,1972724,3
+51410491,1972724,3
+121540770,1972724,4
+58576025,1972724,1
+132213872,1972724,5
+102871082,1972724,3
+ivy1969,1972724,4
+121711598,1972724,5
+53935985,1972724,4
+58618853,1972724,5
+78728709,1972724,3
+69371165,1972724,4
+blackmeajump,1972724,2
+100582359,1972724,4
+49949826,1972724,4
+50527578,1972724,-1
+60140602,1972724,5
+41441330,1972724,3
+126877719,1972724,5
+75661398,1972724,3
+83188009,1972724,3
+134503726,1972724,3
+2187326,1972724,3
+33620830,1972724,4
+2755866,1972724,4
+cocojamboo,1972724,5
+116284858,1972724,4
+119945985,1972724,3
+61506971,1972724,2
+52685590,1972724,3
+59835894,1972724,2
+scorpion1015,1972724,4
+83295870,1972724,1
+kofvigo,1972724,1
+78857918,1972724,3
+74098909,1972724,2
+122614702,1972724,3
+cmtqz1gxfdr,1972724,1
+49322971,1972724,4
+90089301,1972724,5
+spidaman,1972724,4
+3310337,1972724,3
+43409918,1972724,1
+wood0913,1972724,3
+55851508,1972724,3
+3475739,1972724,5
+pastories,1972724,4
+54653189,1972724,1
+125196459,1972724,4
+58094531,1972724,2
+59129484,1972724,4
+Stephen2046,1972724,4
+62816278,1972724,4
+wcy1997,1972724,5
+foleyfan,1972724,4
+coldcall,1972724,5
+lionelwait,1972724,5
+78234449,1972724,4
+45484348,1972724,3
+cappuccino-jl,1972724,3
+93484113,1972724,5
+48632925,1972724,-1
+68477521,1972724,4
+54756499,1972724,4
+Hunjianxia,1972724,4
+66191716,1972724,5
+83900345,1972724,3
+38821369,1972724,4
+61486120,1972724,3
+1074069,1972724,5
+67231468,1972724,5
+100162086,1972724,3
+87411768,1972724,4
+70730114,1972724,4
+81193986,1972724,4
+92230776,1972724,4
+64707906,1972724,3
+challengerlihan,1972724,5
+77236741,1972724,-1
+63531003,1972724,5
+2428511,1972724,4
+2106137,1972724,3
+szuysk,1972724,5
+megamao,1972724,4
+gu1110,1972724,4
+duduxiongzhifu,1972724,2
+2258556,1972724,3
+macchinto,1972724,4
+132951000,1972724,4
+46819232,1972724,5
+130334670,1972724,3
+49298107,1972724,3
+57548410,1972724,2
+hipussy,1972724,3
+44549735,1972724,2
+48770075,1972724,3
+sunflowersp,1972724,4
+64578424,1972724,4
+37402473,1972724,4
+1886385,1972724,3
+67072789,1972724,1
+49233326,1972724,4
+MrMia,1972724,3
+80319590,1972724,3
+4565520,1972724,4
+127262027,1972724,4
+76964275,1972724,3
+oobibigo,1972724,2
+2990853,1972724,4
+untrustworhy,1972724,5
+65114344,1972724,5
+kino611,1972724,4
+53326584,1972724,4
+KillerD,1972724,3
+84737725,1972724,4
+101504303,1972724,4
+69125005,1972724,4
+xttlq,1972724,4
+48885291,1972724,1
+wawalex,1972724,2
+47853230,1972724,3
+yushi,1972724,3
+56024643,1972724,4
+42724768,1972724,3
+51329457,1972724,4
+sharon.jin,1972724,3
+loewely,1972724,3
+btone0808,1972724,3
+eversupersheep,1972724,5
+tangjiaqi,1972724,3
+39792754,1972724,3
+Heyimwalker,1972724,3
+19627331,1972724,5
+84152502,1972724,3
+playgame,1972724,4
+67520306,1972724,2
+65465409,1972724,4
+116073490,1972724,3
+brucas,1972724,4
+47366306,1972724,-1
+47366306,1972724,-1
+50900048,1972724,3
+122868077,1972724,3
+lingrui1995,1972724,3
+pandatou,1972724,4
+ps2xboxgbaxbox,1972724,3
+4333851,1972724,4
+121920760,1972724,3
+61506654,1972724,4
+50865043,1972724,3
+73327595,1972724,4
+lampard,1972724,5
+Pinnsvin,1972724,1
+60289458,1972724,2
+126546596,1972724,4
+84854172,1972724,4
+87651171,1972724,4
+mugglezwt,1972724,-1
+justwatching,1972724,3
+HL0919,1972724,4
+sharon_p,1972724,3
+50851987,1972724,3
+3674593,1972724,5
+AlienSuger,1972724,4
+76099210,1972724,1
+59604055,1972724,4
+69694769,1972724,3
+duducool,1972724,5
+59796042,1972724,4
+59592907,1972724,-1
+53905733,1972724,4
+ewan7,1972724,4
+16452382,1972724,4
+54678951,1972724,4
+LolaLola,1972724,-1
+samsarabai,1972724,3
+greengreendeer,1972724,3
+71332667,1972724,5
+andrpirl,1972724,5
+stacy-agony,1972724,4
+116029632,1972724,4
+IndieRock,1972724,3
+126980247,1972724,4
+87719224,1972724,3
+TiramisuPig,1972724,3
+67615408,1972724,3
+2425435,1972724,4
+94394247,1972724,2
+43127616,1972724,3
+Batcaty,1972724,4
+50256249,1972724,4
+Christina.H,1972724,4
+tinker828,1972724,4
+54618299,1972724,3
+43893140,1972724,-1
+122879836,1972724,4
+qingxingji47,1972724,3
+102922692,1972724,3
+122932689,1972724,3
+duanziyu,1972724,4
+91252045,1972724,4
+115985324,1972724,4
+Cherrie.,1972724,4
+yuedawei,1972724,2
+125313881,1972724,5
+3522119,1972724,5
+91687057,1972724,5
+32258314,1972724,4
+41310886,1972724,-1
+4051797,1972724,4
+71210493,1972724,1
+mia666,1972724,4
+jccycj,1972724,3
+54141112,1972724,3
+127059947,1972724,3
+59704797,1972724,4
+earlyzaozao,1972724,3
+87275356,1972724,4
+45569084,1972724,4
+50469334,1972724,5
+45569084,1972724,4
+50469334,1972724,5
+wxhsolo,1972724,4
+135708633,1972724,4
+48168328,1972724,4
+122944258,1972724,4
+52686959,1972724,-1
+79151265,1972724,2
+mrwumao,1972724,4
+98956225,1972724,3
+65565016,1972724,5
+cyrus_wong,1972724,3
+78588109,1972724,5
+Clarke,1972724,-1
+neverbutterfly,1972724,4
+hukou,1972724,5
+45962163,1972724,4
+135390992,1972724,-1
+analog,1972724,4
+1322481,1972724,4
+64389615,1972724,4
+contemplate,1972724,4
+80607844,1972724,4
+sai27,1972724,5
+roryluo,1972724,3
+49585135,1972724,3
+67843912,1972724,2
+35348441,1972724,3
+63612050,1972724,3
+62996817,1972724,4
+65260404,1972724,4
+yzone,1972724,4
+28026736,1972724,5
+lorenmt,1972724,5
+sgsenv,1972724,3
+freemanfu,1972724,4
+xdcheung,1972724,5
+3540441,1972724,4
+88426116,1972724,4
+sxy921026,1972724,4
+63401608,1972724,2
+mrc,1972724,4
+2307180,1972724,4
+119540883,1972724,4
+YuRAY,1972724,3
+waterskop,1972724,4
+53644977,1972724,3
+1892501,1972724,1
+56431276,1972724,3
+5580630,1972724,4
+morningormoenig,1972724,4
+66552525,1972724,5
+lucaa,1972724,4
+4320404,1972724,3
+dyalan,1972724,3
+enderstar,1972724,2
+zhouqiweilai,1972724,5
+lindsayfly,1972724,5
+103331928,1972724,4
+43961399,1972724,5
+mufishchi,1972724,4
+55822264,1972724,5
+7292876,1972724,2
+dklovesmovie,1972724,3
+tenglyubing,1972724,4
+48666472,1972724,3
+4114032,1972724,5
+wavyiyi,1972724,4
+Tasse1,1972724,2
+cat-afi,1972724,4
+xiaodaoyang,1972724,4
+poseidonbunny,1972724,2
+78055552,1972724,5
+linshang,1972724,3
+nailuoyitai,1972724,3
+101778299,1972724,4
+jijiayu,1972724,5
+shevjensen,1972724,5
+58878500,1972724,3
+44888841,1972724,-1
+czfy,1972724,3
+Yakushima,1972724,5
+4347930,1972724,4
+119456550,1972724,3
+axio,1972724,4
+ALDI81,1972724,3
+87222005,1972724,2
+lline,1972724,3
+62913401,1972724,4
+49125980,1972724,3
+GinaJJ,1972724,5
+yoli,1972724,5
+57743813,1972724,4
+moneylatem,1972724,4
+wunie,1972724,3
+63527920,1972724,4
+100316410,1972724,5
+77035699,1972724,-1
+MOVIE--KO,1972724,3
+cherry0908,1972724,4
+47713319,1972724,3
+53559432,1972724,3
+sherryls,1972724,5
+kinged14,1972724,3
+66514778,1972724,5
+31812462,1972724,4
+55321247,1972724,5
+lanbignsu,1972724,5
+50859543,1972724,5
+3526492,1972724,3
+ellenhear,1972724,4
+54912532,1972724,4
+43716176,1972724,4
+48523761,1972724,-1
+yc82267869,1972724,-1
+jesuistian,1972724,5
+54405784,1972724,-1
+50567770,1972724,4
+3530237,1972724,4
+jiuyejinxiu,1972724,3
+gracecang,1972724,5
+yuzhonghai,1972724,5
+toxwu,1972724,-1
+4635981,1972724,4
+yuki_cheung,1972724,4
+31436005,1972724,4
+amoresperros,1972724,4
+48499610,1972724,3
+40645247,1972724,3
+137563798,1972724,4
+119112442,1972724,5
+62143286,1972724,3
+raysai,1972724,4
+4835247,1972724,3
+lattedog,1972724,3
+52706799,1972724,4
+75901403,1972724,2
+littlemian,1972724,4
+DestinoBURN,1972724,4
+48189297,1972724,2
+49266863,1972724,2
+45484261,1972724,3
+59981188,1972724,4
+61619787,1972724,4
+60244008,1972724,1
+2147925,1972724,5
+68542833,1972724,3
+3426596,1972724,3
+77848216,1972724,4
+14247291,1972724,4
+3177593,1972724,3
+54034056,1972724,3
+52883078,1972724,4
+119894914,1972724,3
+31466605,1972724,4
+zhuimengrenm,1972724,3
+loverwenzi22,1972724,4
+65744923,1972724,4
+8523675,1972724,4
+90610268,1972724,5
+46162383,6845667,3
+54540243,6845667,5
+61619787,6845667,1
+72461082,6845667,5
+44392983,6845667,4
+129470292,6845667,4
+imkt,6845667,5
+122933889,6845667,4
+eefee,6845667,4
+65113301,6845667,5
+79668765,6845667,4
+1248650,6845667,5
+37809200,6845667,4
+51139499,6845667,3
+lecsi,6845667,4
+LLT,6845667,4
+6881518,6845667,3
+1371348,6845667,4
+vinkingking,6845667,5
+37369275,6845667,5
+funyifan,6845667,4
+51953999,6845667,5
+46138752,6845667,3
+orange-44,6845667,4
+31172327,6845667,4
+45938786,6845667,5
+nathanyun,6845667,4
+66178513,6845667,4
+41441330,6845667,4
+64173169,6845667,4
+120065870,6845667,1
+60947985,6845667,4
+52523730,6845667,5
+89186302,6845667,5
+54693337,6845667,4
+79779762,6845667,5
+52097068,6845667,5
+82876812,6845667,2
+cbw506021,6845667,5
+79506720,6845667,4
+gaoxiafang,6845667,5
+52484368,6845667,3
+33125571,6845667,-1
+48253364,6845667,3
+F1vese7enone,6845667,4
+48523065,6845667,3
+92167444,6845667,5
+dustblue,6845667,2
+Whauff,6845667,4
+126853809,6845667,5
+49812770,6845667,4
+sonnenshein,6845667,4
+heyjjzlyoops,6845667,4
+victoria1024,6845667,4
+1408253,6845667,4
+45858265,6845667,-1
+42421580,6845667,5
+127402798,6845667,4
+45108609,6845667,4
+coolworship,6845667,4
+1414083,6845667,5
+136172875,6845667,4
+67346668,6845667,5
+46208929,6845667,4
+103247709,6845667,3
+kyo62,6845667,4
+36888094,6845667,4
+69168057,6845667,5
+48778935,6845667,4
+46100445,6845667,4
+52622488,6845667,4
+2066242,6845667,5
+59707864,6845667,5
+pillow_cat,6845667,5
+48119914,6845667,4
+alphy,6845667,4
+kevinfilm,6845667,-1
+38721043,6845667,4
+50235107,6845667,5
+imthewind,6845667,4
+chenxizi,6845667,3
+41240808,6845667,5
+80589934,6845667,4
+nooto,6845667,5
+49116416,6845667,4
+jiachangting,6845667,4
+49342454,6845667,3
+53637766,6845667,4
+30725262,6845667,4
+4252143,6845667,5
+45425732,6845667,4
+59361957,6845667,3
+64797594,6845667,3
+BackToNight,6845667,4
+kidda,6845667,3
+115131162,6845667,4
+87818830,6845667,4
+Azexi,6845667,4
+78609798,6845667,5
+81418362,6845667,4
+cangjie1900,6845667,3
+103682044,6845667,4
+3879960,6845667,5
+123136037,6845667,4
+ZawadaRiiin,6845667,4
+28494028,6845667,4
+cheguevara1967,6845667,5
+32911120,6845667,4
+43949308,6845667,4
+60655749,6845667,4
+39648072,6845667,4
+75610196,6845667,4
+63636223,6845667,5
+givindream,6845667,4
+37259247,6845667,5
+134483925,6845667,5
+62072231,6845667,5
+101978260,6845667,5
+85948759,6845667,3
+66345679,6845667,4
+lingqingchun,6845667,-1
+jiangxuezi,6845667,5
+49451055,6845667,3
+tqwang,6845667,5
+34507934,6845667,4
+57275922,6845667,5
+91224743,6845667,3
+51802730,6845667,5
+59338688,6845667,5
+elwy,6845667,4
+wuxiaohua,6845667,4
+45358903,6845667,3
+iloveeuro,6845667,3
+3306133,6845667,3
+xpwk,6845667,-1
+50398830,6845667,5
+hsuhoffe,6845667,3
+48877341,6845667,5
+fenjinnan,6845667,4
+60544607,6845667,5
+133787676,6845667,5
+baiyugg,6845667,4
+47810404,6845667,4
+76804621,6845667,5
+Hans_Du,6845667,4
+49174691,6845667,5
+88913295,6845667,5
+2489807,6845667,5
+66632216,6845667,5
+48119351,6845667,3
+C-tetu,6845667,3
+59760298,6845667,4
+wuxipaopao,6845667,4
+sevenplus,6845667,5
+73925418,6845667,4
+133228357,6845667,4
+63044059,6845667,4
+99598599,6845667,4
+39696481,6845667,3
+123183376,6845667,3
+123183376,6845667,3
+ipodmelody,6845667,4
+25314137,6845667,4
+spade3,6845667,4
+61944030,6845667,3
+133564344,6845667,5
+70872466,6845667,5
+2283018,6845667,3
+xiaojingzi,6845667,5
+11255442,6845667,4
+66066878,6845667,4
+lieerli,6845667,3
+114977043,6845667,5
+marco_xc,6845667,5
+smallqianqian,6845667,4
+44417635,6845667,3
+127480277,6845667,4
+2599660,6845667,3
+58094531,6845667,3
+2647926,6845667,4
+69573255,6845667,4
+119787917,6845667,3
+4774837,6845667,4
+46419448,6845667,3
+83895101,6845667,5
+93884659,6845667,4
+51734671,6845667,5
+68277572,6845667,3
+47588877,6845667,4
+62776173,6845667,5
+4623210,6845667,4
+125196459,6845667,3
+sea-lucky,6845667,3
+47364324,6845667,4
+48195937,6845667,3
+135470815,6845667,5
+63705961,6845667,4
+emunah,6845667,4
+63633595,6845667,5
+min1,6845667,4
+70162864,6845667,4
+3287454,6845667,4
+flowertide,6845667,3
+65641754,6845667,4
+luoee,6845667,4
+47496790,6845667,3
+40239203,6845667,-1
+hrzlvn,6845667,3
+103026141,6845667,5
+41342326,6845667,5
+60570203,6845667,3
+outsidecastle,6845667,5
+pearltear,6845667,3
+67125371,6845667,4
+45705639,6845667,5
+vivianyshow,6845667,5
+106548711,6845667,3
+dinglinzi,6845667,4
+72712114,6845667,4
+jaciewho,6845667,3
+mainemay,6845667,4
+58090634,6845667,4
+42808876,6845667,4
+59537499,6845667,4
+47331203,6845667,4
+DKfeixiang,6845667,4
+2333505,6845667,3
+Tigerag,6845667,4
+67457628,6845667,5
+48590382,6845667,3
+dahuilang15656,6845667,3
+58697566,6845667,4
+114285934,6845667,4
+fansgentle,6845667,4
+58726406,6845667,5
+28645018,6845667,4
+3300819,6845667,4
+66624462,6845667,4
+35944558,6845667,4
+61683576,6845667,4
+20196112,6845667,2
+83670471,6845667,4
+16873537,6845667,4
+i80hou,6845667,4
+Niro-Zeng,6845667,5
+yfqc24pippo,6845667,3
+31313042,6845667,3
+41798049,6845667,4
+48514176,6845667,5
+100418686,6845667,5
+3116272,6845667,5
+57262819,6845667,5
+62709194,6845667,3
+88926842,6845667,4
+Sue0815,6845667,4
+45797451,6845667,3
+74444990,6845667,4
+loafz,6845667,4
+JimmyLien,6845667,4
+76611008,6845667,3
+Coke,6845667,3
+wangyuan2648,6845667,4
+yuhuaizi,6845667,4
+4473063,6845667,3
+77110480,6845667,5
+2692091,6845667,5
+csf,6845667,4
+9184667,6845667,4
+89092816,6845667,3
+68020624,6845667,5
+79236287,6845667,5
+128695300,6845667,4
+128255313,6845667,5
+79139734,6845667,4
+Ophelia-108,6845667,4
+13600762,6845667,3
+4730490,6845667,4
+59689060,6845667,3
+83177067,6845667,5
+fufu28,6845667,4
+53561838,6845667,5
+62535973,6845667,3
+121468237,6845667,4
+letyoufindme,6845667,5
+kaiyu1028,6845667,4
+76623488,6845667,4
+1217251,6845667,3
+60941930,6845667,4
+92721405,6845667,4
+jimmyzhang1989,6845667,4
+126209159,6845667,4
+zouxiameng,6845667,4
+67952037,6845667,2
+CapWhite,6845667,5
+62932025,6845667,4
+84472857,6845667,3
+yuchenyuan,6845667,5
+duxiaofei283,6845667,4
+oliviafyy,6845667,4
+alynlin,6845667,4
+alynlin,6845667,4
+36206497,6845667,3
+leeredevil,6845667,5
+bora2547,6845667,4
+cherryziyi,6845667,5
+koushisi,6845667,4
+51824277,6845667,4
+pinkvivien,6845667,5
+gingersalt,6845667,4
+39890190,6845667,4
+60421761,6845667,4
+MightyAtom,6845667,4
+1978971,6845667,4
+turtur,6845667,5
+birdicat,6845667,4
+unclemeng,6845667,4
+129369858,6845667,5
+Kostova,6845667,5
+63959089,6845667,3
+79517236,6845667,5
+daifuzhai,6845667,3
+125145528,6845667,5
+2368703,6845667,5
+fortanxu,6845667,4
+67334410,6845667,5
+2275556,6845667,3
+flyindance_fei,6845667,4
+gtl,6845667,5
+Lynnehe,6845667,-1
+njlhwx,6845667,5
+59718039,6845667,5
+82645304,6845667,3
+66850309,6845667,4
+54658264,6845667,4
+137436394,6845667,4
+65137092,6845667,4
+1388185,6845667,4
+wwwwind,6845667,4
+47467918,6845667,4
+76943413,6845667,1
+Eie10_9,6845667,5
+36556180,6845667,5
+88426430,6845667,1
+63672355,6845667,3
+5425230,6845667,4
+54309491,6845667,3
+49979829,6845667,5
+tristanfree,6845667,4
+2596903,6845667,3
+123617593,6845667,4
+bxhOTZ,6845667,3
+54268454,6845667,4
+adi,6845667,4
+36621770,6845667,3
+frozone,6845667,2
+53323361,6845667,4
+30535234,6845667,5
+62635497,6845667,5
+play0829,6845667,4
+snakefly,6845667,4
+1263370,6845667,4
+137814359,6845667,4
+3322382,6845667,-1
+137221434,6845667,3
+aiwosuoai55,6845667,3
+blackbanana3Y,6845667,4
+136499234,6845667,3
+76630020,6845667,4
+52283927,6845667,5
+25960765,6845667,4
+yellowhsy,6845667,4
+ooyoo,6845667,5
+137728472,6845667,5
+126400936,6845667,4
+3481297,6845667,3
+froggrandpa,6845667,3
+fredakaizokuban,6845667,4
+sj1_1ei,6845667,5
+42661364,6845667,4
+33980065,6845667,4
+87821672,6845667,4
+72118040,6845667,3
+59838683,6845667,4
+chencheny,6845667,3
+127161571,6845667,4
+xixistone,6845667,3
+Bran,6845667,4
+59158037,6845667,5
+102083464,6845667,4
+67266475,6845667,4
+77758955,6845667,4
+wusuowei102,6845667,5
+53319331,6845667,4
+28344177,6845667,3
+halfling,6845667,4
+39266502,6845667,5
+saky,6845667,3
+27714747,6845667,4
+onetwothreefar,6845667,4
+131834377,6845667,-1
+snowyhowe,6845667,4
+ganjiawei,6845667,4
+3210857,6845667,2
+60411524,6845667,-1
+68260452,6845667,5
+61748995,6845667,4
+81836452,6845667,4
+Kateya,6845667,4
+2516200,6845667,4
+58480998,6845667,4
+closet,6845667,3
+xiaosummer,6845667,4
+50938886,6845667,4
+quizas...,6845667,4
+128001844,6845667,4
+an-th7,6845667,5
+Polo79,6845667,4
+39849703,6845667,4
+fulingke,6845667,4
+95824497,6845667,3
+50538211,6845667,4
+haimengkai,6845667,3
+103525640,6845667,5
+qinsword521,6845667,4
+evich,6845667,2
+littlet2010,6845667,4
+LanciaZS,6845667,5
+78731933,6845667,3
+67463552,6845667,4
+jungjay,6845667,4
+fusk,6845667,4
+candysunny711,6845667,3
+76066640,6845667,4
+42173846,6845667,4
+58810077,6845667,-1
+9998453,6845667,5
+46316296,6845667,5
+12674669,6845667,5
+tiantianyicheng,6845667,-1
+129336307,6845667,5
+2165076,6845667,5
+59336433,6845667,4
+landcontinent,6845667,4
+37026248,6845667,4
+8342264,6845667,4
+71890378,6845667,4
+49848172,6845667,4
+61435009,6845667,5
+53627660,6845667,3
+46184375,6845667,5
+51945032,6845667,3
+87997485,6845667,4
+63941479,6845667,4
+49886917,6845667,5
+69529988,6845667,4
+7605327,6845667,3
+klinsi,6845667,4
+44184384,6845667,-1
+67493290,6845667,1
+33847605,6845667,5
+115143793,6845667,1
+27517816,6845667,4
+mattni,6845667,5
+56524561,6845667,5
+64288458,6845667,4
+1239815,6845667,4
+70930463,6845667,4
+89531686,6845667,5
+58229186,6845667,4
+135756688,6845667,5
+65635790,6845667,4
+46788822,6845667,5
+2296297,6845667,4
+64881520,6845667,4
+1076084,6845667,4
+53256209,6845667,4
+yiyiyu,6845667,5
+4231601,6845667,5
+fyfhjq,6845667,5
+timorrowmain,6845667,4
+16237835,6845667,4
+3298336,6845667,4
+zouhuzm,6845667,4
+45312368,6845667,3
+annlan31,6845667,3
+C_C--321,6845667,4
+32314974,6845667,4
+6019648,6845667,2
+3341865,6845667,3
+105146664,6845667,5
+34364053,6845667,5
+3410802,6845667,4
+4739187,6845667,4
+ORBR,6845667,2
+3026733,6845667,4
+74418627,6845667,4
+yingyouzang,6845667,-1
+62716748,6845667,5
+steinyxu,6845667,4
+120322125,6845667,4
+namatterwhat,6845667,4
+94782987,6845667,4
+15666885,6845667,4
+46729768,6845667,3
+2387426,6845667,3
+catsama77,6845667,4
+oyxp,6845667,5
+memechayedandan,6845667,5
+zhhongbo,6845667,4
+4453892,6845667,-1
+55390748,6845667,4
+7795838,6845667,5
+45220416,6845667,3
+4378595,6845667,5
+casoon,6845667,5
+JC921004,6845667,4
+mousemouse,6845667,3
+64172361,6845667,4
+lazzaro,6845667,3
+pretendor,6845667,4
+82134708,6845667,5
+75105516,6845667,5
+47089666,6845667,5
+22595281,6845667,5
+81506415,6845667,3
+54034056,6845667,3
+108287560,6845667,4
+35518497,6845667,5
+117348494,6845667,3
+71843483,6845667,3
+ssb,6845667,4
+interskh,6845667,4
+Nata1ie,6845667,4
+luluto,6845667,4
+57591311,6845667,5
+2135192,6845667,3
+81278452,6845667,4
+3617454,6845667,4
+135357583,6845667,5
+dssunshineer,6845667,4
+3192650,6845667,4
+137709918,6845667,-1
+39360207,6845667,5
+typezero,6845667,4
+june.q,6845667,3
+92024245,6845667,4
+119864973,6845667,4
+91851250,6845667,3
+58601544,6845667,5
+wlee21,6845667,4
+53258378,6845667,5
+122932689,6845667,4
+marsding,6845667,4
+53794095,6845667,5
+Cynthiasama,6845667,3
+soloz,6845667,3
+58374891,6845667,2
+62504399,6845667,3
+55355100,6845667,5
+luxe,6845667,4
+fanqu,6845667,3
+7329190,6845667,3
+cyyywx,6845667,5
+benmutou,6845667,3
+immmmm,6845667,5
+65125200,6845667,3
+jackguo,6845667,4
+83295870,6845667,5
+66081323,6845667,5
+134589409,6845667,4
+kuroneko2002,6845667,3
+1012162,6845667,3
+63340395,6845667,5
+yuhuanhuan,6845667,5
+2311976,6845667,3
+shuijian1,6845667,3
+2461588,6845667,3
+60836654,6845667,5
+AsleepOrDead,6845667,4
+casusu,6845667,5
+doraz,6845667,4
+50473170,6845667,5
+sept-itchy,6845667,3
+93638081,6845667,4
+1424681,6845667,4
+107413709,6845667,5
+53900014,6845667,4
+49825242,6845667,3
+lucifers,6845667,5
+amycc,6845667,4
+135425839,6845667,4
+45321512,6845667,4
+50255025,6845667,4
+103550111,6845667,3
+36849871,6845667,5
+birdgirl,6845667,4
+37183583,6845667,5
+andrpirl,6845667,3
+camie69,6845667,5
+55997229,6845667,5
+aprilray,6845667,4
+icyqh,6845667,2
+51908799,6845667,4
+46011187,6845667,4
+2849700,6845667,4
+maxselina,6845667,5
+lilylau,6845667,3
+3198993,6845667,2
+41785476,6845667,5
+doubleS,6845667,5
+illness,6845667,3
+39628553,6845667,4
+lil1314,6845667,4
+122787137,6845667,5
+willieoo,6845667,4
+52907345,6845667,3
+Karilyn,6845667,3
+50073602,6845667,4
+haianlong,6845667,4
+79400267,6845667,5
+65301310,6845667,4
+tucaomalisu,6845667,4
+122888716,6845667,4
+inthesummer,6845667,3
+hypochondria,6845667,4
+43096733,6845667,4
+88273996,6845667,4
+51542054,6845667,5
+zzfznp,6845667,3
+76819505,6845667,4
+129527421,6845667,5
+55575289,6845667,4
+65371460,6845667,5
+133522204,6845667,4
+qqb143,6845667,4
+63856676,6845667,4
+mintcatty,6845667,4
+papermoon_niky,6845667,3
+qiaoxiaodu,6845667,4
+129652201,6845667,5
+3925598,6845667,5
+51358310,6845667,5
+57187581,6845667,4
+sulavie,6845667,5
+AngelikaSigrid,6845667,4
+3182538,6845667,4
+Zynismus,6845667,4
+94227961,6845667,4
+1168172,6845667,-1
+baidudotcom,6845667,4
+49115709,6845667,5
+foxgarden,6845667,5
+1995910,6845667,4
+alla,6845667,4
+enderstar,6845667,2
+7510013,6845667,3
+59205597,6845667,4
+98762105,6845667,5
+asldrf,6845667,4
+76786786,6845667,3
+40527777,6845667,4
+64870027,6845667,3
+124953430,6845667,4
+121197040,6845667,5
+yoory,6845667,-1
+80935389,6845667,4
+43814222,6845667,5
+79745413,6845667,3
+68799841,6845667,5
+52300652,6845667,4
+50344211,6845667,5
+MoriartyL,6845667,5
+mafeifei246,6845667,4
+4652776,6845667,3
+goodmengmeng,6845667,4
+65013886,6845667,4
+63043429,6845667,3
+62122190,6845667,4
+62317747,6845667,5
+65178670,6845667,4
+wh412,6845667,5
+1373968,6845667,3
+3512598,6845667,5
+81304385,6845667,5
+101504303,6845667,5
+Just_So_So,6845667,4
+zhaoray,6845667,4
+14369952,6845667,4
+2491799,6845667,5
+rebecca.psy,6845667,3
+vivianclytze,6845667,4
+60349367,6845667,4
+82619026,6845667,5
+81752466,6845667,4
+50880780,6845667,3
+frian,6845667,5
+istrangers,6845667,4
+64451825,6845667,5
+37160658,6845667,3
+gpzc,6845667,5
+52273132,6845667,5
+54113299,6845667,3
+33942554,6845667,4
+34464499,6845667,4
+54740080,6845667,5
+shellyye,6845667,5
+52832781,6845667,5
+nieaibai,6845667,4
+136133409,6845667,2
+Claudialovedad,6845667,3
+little_cupid,6845667,3
+56435930,6845667,2
+yelisi,6845667,4
+25970354,6845667,4
+77074010,6845667,3
+132232839,6845667,5
+fayema,6845667,3
+1198621,6845667,3
+43004375,6845667,5
+shenxuzhu,6845667,4
+52852194,6845667,4
+128993428,6845667,5
+62781897,6845667,4
+guolibin,6845667,4
+delai,6845667,5
+62553340,6845667,5
+44011714,6845667,5
+65784611,6845667,3
+88727732,6845667,5
+vincent2010,6845667,4
+65239673,6845667,5
+nicolastong,6845667,4
+zhubeilife,6845667,3
+Sylat,6845667,5
+87390770,6845667,5
+1132028,6845667,5
+122349374,6845667,3
+1077635,6845667,4
+120541509,6845667,3
+l.don,6845667,3
+51342796,6845667,5
+2632979,6845667,-1
+wind_gxh,6845667,3
+71117694,6845667,4
+22784963,6845667,4
+59311627,6845667,-1
+29875571,6845667,2
+65183183,6845667,3
+47593124,6845667,5
+79087170,6845667,4
+PasS__bY,6845667,3
+AmadHatter,6845667,4
+38863376,6845667,3
+104396401,6845667,4
+65547752,6845667,5
+60585416,6845667,2
+57036451,6845667,5
+rhh,6845667,5
+flyinhigh,6845667,4
+3429384,6845667,4
+teenybrook,6845667,3
+2265138,6845667,4
+49271038,6845667,3
+yuval,6845667,5
+adamhu,6845667,5
+51636486,6845667,5
+3043789,6845667,4
+57743663,6845667,3
+30277086,6845667,4
+sarahshen10,6845667,4
+lavende,6845667,4
+65181695,6845667,5
+70699443,6845667,5
+69465675,6845667,-1
+43612401,6845667,4
+46735684,6845667,4
+monser,6845667,5
+coldcall,6845667,3
+klakt,6845667,4
+19699130,6845667,3
+53182459,6845667,4
+eric_iiw,6845667,3
+121268267,6845667,3
+129837323,6845667,5
+3301961,6845667,4
+114499538,6845667,4
+xsy2020,6845667,3
+1354076,6845667,3
+dsqingdao,6845667,4
+funnyxucheng,6845667,4
+66250308,6845667,3
+131533540,6845667,2
+50649295,6845667,5
+3858718,6845667,3
+alexyou,6845667,4
+2212675,6845667,5
+104373100,6845667,4
+aricahuang,6845667,4
+3797336,6845667,5
+104091868,6845667,5
+3326293,6845667,3
+70252275,6845667,3
+61101184,6845667,3
+1767400,6845667,4
+119476678,6845667,4
+huxiaotian,6845667,4
+99473768,6845667,4
+57459077,6845667,4
+sbonder,6845667,5
+muouplay,6845667,4
+3344118,6845667,5
+caicai1005,6845667,4
+sisi_ly,6845667,4
+135648248,6845667,-1
+54783483,6845667,4
+2787180,6845667,3
+79847046,6845667,4
+Ken,6845667,4
+lazymn,6845667,4
+49061155,6845667,4
+49568187,6845667,4
+71221555,6845667,4
+2112561,6845667,4
+onceomega,6845667,-1
+63839731,6845667,5
+nanoButterMint,6845667,4
+ylmil,6845667,4
+47935255,6845667,4
+59285776,6845667,5
+66979855,6845667,3
+76553080,6845667,4
+9491401,6845667,3
+130445057,6845667,3
+evergreen3507,6845667,4
+43703010,6845667,3
+3818284,6845667,2
+108728687,6845667,3
+qijiejieblue,6845667,5
+56369223,6845667,4
+62608491,6845667,4
+46722209,6845667,4
+cindy547288,6845667,4
+2058605,6845667,5
+guagua1992,6845667,3
+36257603,6845667,4
+shanegl,6845667,-1
+tijuana,6845667,2
+61425842,6845667,5
+2788446,6845667,4
+66965988,6845667,5
+32033776,6845667,5
+61823164,6845667,4
+51273572,6845667,4
+54495452,6845667,3
+milkcolor,6845667,5
+63033488,6845667,3
+79855798,6845667,4
+52233629,6845667,4
+46721798,6845667,3
+131817734,6845667,4
+1208857,6845667,4
+itstillvivi,6845667,5
+tuirt,6845667,3
+44356747,6845667,5
+124076510,6845667,4
+64154441,6845667,5
+47482651,6845667,4
+52905046,6845667,4
+48500555,6845667,4
+weichai,6845667,5
+duyishi,6845667,4
+crambola,6845667,3
+92061156,6845667,4
+heathercone,6845667,3
+67763944,6845667,4
+79408087,6845667,5
+2275412,6845667,4
+tomelephant,6845667,4
+tenaciousdragon,6845667,5
+48978367,6845667,3
+3398416,6845667,3
+50739519,6845667,5
+63559969,6845667,4
+1793602,6845667,4
+67987733,6845667,5
+ninquelote,6845667,4
+kenheart_ccxuan,6845667,4
+63657016,6845667,-1
+76373238,6845667,4
+57580969,6845667,5
+122893908,6845667,3
+136768505,6845667,4
+12846871,6845667,4
+AspireY,6845667,4
+cjlinux,6845667,4
+moyia,6845667,3
+61375666,6845667,4
+3943144,6845667,4
+65545100,6845667,4
+122425673,6845667,5
+122425673,6845667,5
+57538254,6845667,5
+45975385,6845667,4
+Z-Pain,6845667,4
+50469035,6845667,4
+zhuyaoyao,6845667,4
+loveleo,6845667,3
+42778669,6845667,5
+holy_ml,6845667,3
+2475141,6845667,3
+shadowsmack,6845667,5
+55488423,6845667,5
+64232305,6845667,5
+dasherry,6845667,5
+41758984,6845667,5
+susimai,6845667,3
+95767683,6845667,4
+orangesuan,6845667,4
+1643126,6845667,4
+127797249,6845667,3
+raffale,6845667,5
+49487093,6845667,5
+78987156,6845667,4
+47754235,6845667,4
+seoyoungeun,6845667,3
+marina08,6845667,5
+50455314,6845667,4
+6471991,6845667,5
+65232928,6845667,4
+43866584,6845667,4
+2664560,6845667,5
+63525530,6845667,4
+Erotica,6845667,5
+37017024,6845667,4
+2711081,6845667,3
+39006881,6845667,4
+130541613,6845667,5
+2164129,6845667,4
+fanzling,6845667,4
+godblesswho,6845667,5
+godblesswho,6845667,5
+2810246,6845667,3
+49420713,6845667,3
+52378291,6845667,4
+122420292,6845667,4
+78777736,6845667,4
+65345253,6845667,3
+77782385,6845667,4
+onlymelody,6845667,3
+loftywain,6845667,-1
+58136152,6845667,5
+nanshuo,6845667,4
+60756197,6845667,5
+babywineer,6845667,5
+64975249,6845667,2
+69944887,6845667,5
+2708666,6845667,4
+operaticfrances,6845667,4
+liangzhuzaoshu,6845667,-1
+jite,6845667,3
+york_wu,6845667,3
+changeable123,6845667,4
+zipaiwang,6845667,3
+x-inter,6845667,4
+wmymt,6845667,5
+claireloveyou,6845667,1
+48562105,6845667,5
+yaole,6845667,2
+30674711,6845667,4
+debrah,6845667,4
+zhchtcm,6845667,5
+seeMshatE,6845667,5
+serenenight,6845667,5
+72891921,6845667,4
+yanala,6845667,4
+losrfuu,6845667,3
+w74,6845667,3
+53795201,6845667,4
+55010232,6845667,5
+4077370,6845667,4
+4077370,6845667,4
+125185442,6845667,4
+55849765,6845667,4
+35440419,6845667,4
+53867160,6845667,4
+25676059,6845667,5
+1495292,6845667,4
+43228715,6845667,4
+134937890,6845667,3
+jawstrong,6845667,4
+heartbreakerkid,6845667,2
+91537543,6845667,4
+48826276,6845667,4
+48899980,6845667,4
+lovezhuangjia,6845667,4
+clyee,6845667,5
+kathychu,6845667,4
+doll2,6845667,4
+gtxyxyz,6845667,5
+Shahtoosh,6845667,4
+39923615,6845667,4
+115779630,6845667,3
+BruceBack,6845667,3
+MYtachikoma,6845667,4
+andynoodle,6845667,4
+michaelya,6845667,4
+121055436,6845667,4
+37848161,6845667,4
+Beryl-L,6845667,5
+sxhour,6845667,4
+ymm,6845667,2
+dailypop,6845667,4
+luohuazhu,6845667,2
+dongboqi,6845667,4
+3491773,6845667,4
+57260722,6845667,3
+4630769,6845667,5
+67888545,6845667,5
+127066563,6845667,4
+57980305,6845667,5
+57980305,6845667,5
+60650660,6845667,5
+135690272,6845667,2
+thisisgap,6845667,4
+mengaxin,6845667,4
+66803513,6845667,5
+fogmoutain,6845667,5
+55389424,6845667,4
+56273353,6845667,4
+41089133,6845667,4
+74843461,6845667,5
+122394659,6845667,3
+geographer,6845667,5
+3114482,6845667,3
+71861591,6845667,3
+angalny,6845667,3
+131560812,6845667,3
+3054506,6845667,5
+45876793,6845667,-1
+58391749,6845667,4
+58391749,6845667,4
+38615886,6845667,5
+goodmac,6845667,3
+26379453,6845667,5
+47517431,6845667,4
+cocoatee,6845667,4
+PringlesLinB,6845667,2
+61030200,6845667,3
+liux5520,6845667,4
+kanzaki666,6845667,3
+56557982,6845667,5
+121088664,6845667,5
+Vision0027,6845667,5
+IvyTsai,6845667,4
+61823510,6845667,4
+hurenjingyan,6845667,4
+51836053,6845667,4
+48773692,6845667,4
+44013526,6845667,4
+121173641,6845667,5
+Oo0o0o0,6845667,3
+jiaxintuanzi,6845667,4
+somegg,6845667,4
+bmrlb,6845667,4
+89804270,6845667,4
+134880064,6845667,4
+eternalblue,6845667,5
+21139926,6845667,4
+jccycj,6845667,4
+biketo,6845667,3
+134631211,6845667,3
+61105278,6845667,4
+84714869,6845667,3
+2040404,6845667,5
+34976631,6845667,4
+70321611,6845667,4
+16171023,6845667,3
+57224796,6845667,5
+heshouwu555,6845667,4
+137800179,6845667,2
+2005598,6845667,3
+114115384,6845667,5
+47150276,6845667,4
+109407129,6845667,4
+kyo85,6845667,4
+2063961,6845667,4
+iisakura,6845667,3
+8469986,6845667,5
+53393312,6845667,4
+v_xunyicao_v,6845667,4
+34187825,6845667,5
+63458600,6845667,3
+Heart-Ace,6845667,4
+54880973,6845667,3
+Liu.Y,6845667,5
+62880392,6845667,4
+1373290,6845667,5
+lena0517,6845667,4
+57878638,6845667,3
+shanghao,6845667,5
+46421123,6845667,4
+47583585,6845667,4
+loreleishanny,6845667,4
+nknymphet,6845667,4
+ecstasybird,6845667,3
+36792290,6845667,5
+77086576,6845667,4
+136910570,6845667,4
+2797193,6845667,5
+papaduty,6845667,3
+45665171,6845667,3
+36071533,6845667,5
+4200336,6845667,3
+coolmilk,6845667,4
+85083207,6845667,5
+2426372,6845667,3
+1274922,6845667,5
+dust4hope,6845667,4
+63777033,6845667,5
+13678850,6845667,5
+49875686,6845667,5
+77864053,6845667,3
+liuchuanzi,6845667,4
+belladouban,6845667,-1
+62687736,6845667,4
+46266194,6845667,5
+bidhole,6845667,5
+saintxi,6845667,4
+44005420,6845667,5
+78727212,6845667,5
+3523793,6845667,4
+52384106,6845667,3
+tianxinqi,6845667,5
+2338448,6845667,4
+saraystang,6845667,4
+shenggxhz,6845667,5
+87673742,6845667,5
+bismorgen,6845667,4
+43725091,6845667,4
+ctrl-moon,6845667,3
+ctrl-moon,6845667,3
+ravencx,6845667,4
+Helianthustree,6845667,4
+51855205,6845667,5
+bobowudi,6845667,5
+sd116,6845667,4
+alled,6845667,4
+campbellii,6845667,4
+56618669,6845667,5
+134146468,6845667,5
+128991169,6845667,4
+130203366,6845667,1
+4132596,6845667,4
+2953117,6845667,4
+52963156,6845667,4
+3371376,6845667,3
+leeyzh,6845667,4
+1876785,6845667,4
+135175472,6845667,5
+26487427,6845667,4
+3751886,6845667,3
+veraaa,6845667,4
+137305184,6845667,4
+137235653,6845667,4
+jashia,6845667,5
+4104841,6845667,3
+35888113,6845667,5
+buan420,6845667,5
+36253770,6845667,2
+33261301,6845667,4
+82191110,6845667,3
+richer725,6845667,1
+58086381,6845667,4
+cskywalker,6845667,4
+Jaytaoo,6845667,4
+52816310,6845667,3
+orzmc,6845667,3
+62375548,6845667,4
+47473847,6845667,4
+48205267,6845667,3
+136931946,6845667,2
+NO.223,6845667,4
+48710899,6845667,5
+133190465,6845667,4
+65595562,6845667,5
+68817117,6845667,3
+2210399,6845667,4
+sibylwang,6845667,3
+68389512,6845667,4
+41634233,6845667,4
+48664010,6845667,4
+31806975,6845667,4
+61923761,6845667,5
+47037959,6845667,4
+68607460,6845667,4
+122872269,6845667,3
+79848078,6845667,5
+128661562,6845667,4
+nyssa712,6845667,4
+81777477,6845667,4
+37228673,6845667,4
+51234730,6845667,3
+79875260,6845667,4
+monkey_dick,6845667,4
+65361718,6845667,4
+jianyadaodao,6845667,4
+52220875,6845667,5
+houdana,6845667,3
+mysheepy,6845667,5
+73530411,6845667,4
+2060005,6845667,4
+janwwj,6845667,3
+LIUYUANZI,6845667,2
+liumoming,6845667,-1
+2228009,6845667,4
+pangjiansheng,6845667,5
+foreverjoy,6845667,4
+ideyes,6845667,4
+45646209,6845667,5
+40812485,6845667,4
+fangfang5,6845667,3
+51965596,6845667,5
+81149170,6845667,4
+131500891,6845667,4
+mdec,6845667,-1
+Ruty1985,6845667,5
+67998952,6845667,4
+Luster_DumDum,6845667,5
+43685156,6845667,4
+CheeZcn,6845667,4
+61506971,6845667,4
+king4solomon,6845667,3
+longlystone,6845667,5
+erichalfrchuck,6845667,4
+60209728,6845667,4
+104174985,6845667,5
+129964938,6845667,4
+57317934,6845667,5
+caseyqian,6845667,4
+115231190,6845667,3
+KGB1997,6845667,4
+4525795,6845667,5
+62874039,6845667,5
+49476132,6845667,3
+4026275,6845667,4
+70057422,6845667,4
+33042240,6845667,4
+55668412,6845667,4
+44875082,6845667,4
+87631296,6845667,4
+skycrow,6845667,5
+52840916,6845667,4
+36152069,6845667,3
+67176964,6845667,4
+kenc,6845667,4
+65590622,6845667,5
+46714901,6845667,4
+135610617,6845667,5
+dewar,6845667,3
+58863257,6845667,4
+51001959,6845667,4
+xylor,6845667,2
+51474271,6845667,4
+2440819,6845667,2
+78730817,6845667,3
+63479785,6845667,4
+johnnielan,6845667,5
+yamilove,6845667,3
+Wkw1129BZBHS,6845667,5
+82096379,6845667,4
+45666676,6845667,4
+3890315,6845667,2
+92504226,6845667,4
+paeonia19,6845667,4
+leonardzhu,6845667,3
+48763298,6845667,4
+Mr.Constantine,6845667,4
+farewellton,6845667,5
+znrpiggey,6845667,3
+xiaojiongxia,6845667,3
+3599865,6845667,5
+46456359,6845667,5
+46963738,6845667,4
+4170552,6845667,5
+64874309,6845667,4
+khailll,6845667,4
+jarodzy,6845667,4
+91498001,6845667,3
+2441502,6845667,4
+122656795,6845667,4
+1799532,6845667,5
+ogailo,6845667,5
+3491366,6845667,-1
+2980085,6845667,4
+55817697,6845667,4
+135970045,6845667,4
+gyd,6845667,4
+134057557,6845667,3
+1981762,6845667,5
+49935216,6845667,4
+49935216,6845667,4
+64194321,6845667,3
+raikonoe,6845667,-1
+onlyloll,6845667,5
+mouzhi,6845667,4
+100953233,6845667,5
+luocha,6845667,4
+79823689,6845667,2
+53292530,6845667,5
+mogu_s,6845667,5
+MudDog,6845667,3
+one-spitle,6845667,2
+yuhaoyun,6845667,5
+35892009,6845667,4
+lyivy9032,6845667,5
+69874247,6845667,3
+54400449,6845667,5
+59949751,6845667,4
+23450183,6845667,4
+119991897,6845667,4
+119991897,6845667,4
+62120599,6845667,1
+5747784,6845667,4
+yingluncheng,6845667,3
+57970143,6845667,4
+Zizou_Vam,6845667,3
+55347894,6845667,5
+49636170,6845667,3
+78902065,6845667,3
+79354740,6845667,5
+70710582,6845667,5
+76170749,6845667,5
+yaoyaolu,6845667,3
+45242330,6845667,4
+crowwwn,6845667,-1
+25546658,6845667,5
+martian1996,6845667,4
+75175463,6845667,3
+136842545,6845667,5
+faysummer,6845667,3
+vrush,6845667,5
+45528332,6845667,4
+metkee,6845667,3
+rolemodel,6845667,5
+40674382,6845667,5
+serendip,6845667,4
+48173577,6845667,5
+84517412,6845667,4
+130032953,6845667,5
+88072113,6845667,4
+123176315,6845667,4
+62677139,6845667,3
+126932580,6845667,3
+1369113,6845667,4
+aprilsunshine,6845667,5
+akenhoo,6845667,4
+71539697,6845667,4
+50762366,6845667,3
+120038071,6845667,4
+70217927,6845667,5
+vivienvb,6845667,3
+bxynf4,6845667,3
+Dev1antKoMi,6845667,4
+1319464,6845667,4
+63371877,6845667,5
+yoyochat,6845667,4
+Renee_er_est,6845667,5
+50663434,6845667,4
+movieview,6845667,4
+61426958,6845667,4
+43827673,6845667,5
+ViviaChen,6845667,3
+90807462,6845667,4
+2741340,6845667,4
+58704227,6845667,5
+Alice-Mu,6845667,5
+foofights,6845667,3
+76356022,6845667,3
+2770592,6845667,4
+59660757,6845667,5
+50410160,6845667,5
+90586395,6845667,5
+51091763,6845667,3
+Kevin3,6845667,4
+65429142,6845667,4
+49065066,6845667,4
+63324585,6845667,3
+65397009,6845667,3
+43757152,6845667,2
+bebesummer,6845667,4
+windyboy,6845667,4
+25460734,6845667,4
+53548921,6845667,4
+2648592,6845667,5
+61541011,6845667,5
+137541196,6845667,5
+shahua,6845667,4
+121878138,6845667,4
+GZ,6845667,4
+3966093,6845667,3
+1575077,6845667,3
+49852947,6845667,5
+59378291,6845667,5
+3217100,6845667,4
+Evangelline,6845667,4
+51909873,6845667,4
+rurucat,6845667,2
+27518977,6845667,3
+37926741,6845667,4
+45650024,6845667,5
+luhua,6845667,3
+58096357,6845667,4
+80304181,6845667,4
+ruhualucky,6845667,5
+yangyixiu1218,6845667,3
+70668435,6845667,2
+43953322,6845667,5
+GracieG,6845667,5
+11658942,6845667,3
+30116913,6845667,5
+sunww,6845667,5
+jackiex,6845667,4
+62668317,6845667,5
+88171131,6845667,4
+effyneversleeps,6845667,-1
+4279722,6845667,5
+yolanda_kin,6845667,5
+49411913,6845667,-1
+51938291,6845667,4
+78946319,6845667,4
+minisle,6845667,3
+73334494,6845667,4
+lsiori,6845667,4
+90051465,6845667,4
+119536086,6845667,5
+wangliuwei,6845667,3
+2294404,6845667,3
+34144556,6845667,4
+counting_crows,6845667,5
+73940131,6845667,3
+48615515,6845667,5
+kaidi717,6845667,4
+habulie,6845667,4
+70595414,6845667,4
+58338006,6845667,4
+buwubuhui,6845667,3
+68542833,6845667,4
+52190883,6845667,5
+46133817,6845667,4
+easonkoko,6845667,3
+Pius,6845667,3
+72556877,6845667,3
+yyycaleen,6845667,4
+50526806,6845667,3
+francesfyy,6845667,4
+44653636,6845667,5
+41083928,6845667,4
+1435513,6845667,3
+78406452,6845667,5
+71128604,6845667,4
+71128604,6845667,4
+zhangluning,6845667,4
+1493686,6845667,5
+Eunyul,6845667,4
+kathy_voe,6845667,5
+soncurn,6845667,5
+mpower007,6845667,4
+win2012,6845667,3
+82767121,6845667,4
+62837123,6845667,4
+60808695,6845667,3
+Vampire0704,6845667,4
+56788441,6845667,4
+1821069,6845667,1
+49022504,6845667,4
+lbc21,6845667,5
+1317921,6845667,-1
+103178426,6845667,5
+56223706,6845667,4
+52103092,6845667,5
+1314588,6845667,4
+3642691,6845667,3
+50306536,6845667,5
+58267868,6845667,4
+91259845,6845667,4
+1020913,6845667,4
+QQQQQQQla,6845667,5
+lovemycats,6845667,4
+putin36,6845667,4
+harukimlee,6845667,4
+60721268,6845667,5
+cealiannnnnn,6845667,5
+2771328,6845667,4
+zo3c,6845667,4
+47889203,6845667,5
+69678068,6845667,4
+81916004,6845667,4
+60614735,6845667,4
+Adnachiel,6845667,4
+51445389,6845667,4
+3745695,6845667,4
+countcrows,6845667,3
+honestydudu,6845667,4
+6278260,6845667,5
+Skin.C,6845667,5
+41951732,6845667,4
+45678075,6845667,5
+46139461,6845667,5
+96336225,6845667,4
+zhibiaoshi,6845667,4
+lindanda,6845667,5
+petitejoie,6845667,5
+falent,6845667,4
+63460177,6845667,3
+zyx1991313,6845667,4
+soulm,6845667,5
+2428233,6845667,3
+summermayfly,6845667,3
+tavi0529,6845667,5
+59253003,6845667,4
+66099029,6845667,4
+25195048,6845667,4
+63635904,6845667,4
+47788105,6845667,5
+42629232,6845667,4
+FinalFantasy,6845667,3
+65230761,6845667,2
+39168659,6845667,5
+137555231,6845667,4
+muini,6845667,4
+59189424,6845667,4
+34526603,6845667,4
+ducklucy,6845667,4
+35545320,6845667,4
+cicely521,6845667,4
+nannanloves,6845667,4
+2960450,6845667,4
+60126055,6845667,5
+1712529,6845667,5
+137670832,6845667,4
+61591842,6845667,4
+2488466,6845667,4
+58959752,6845667,5
+dalizi,6845667,4
+58014924,6845667,5
+JunkRoad,6845667,5
+huangyuqi_smile,6845667,4
+52110920,6845667,5
+laoziiii,6845667,5
+51086058,6845667,4
+65303828,6845667,4
+71335687,6845667,4
+115695650,6845667,4
+47220302,6845667,5
+26486155,6845667,4
+junlintaxiang,6845667,4
+imagefly,6845667,3
+51629890,6845667,4
+god8knows,6845667,4
+54531313,6845667,5
+71586138,6845667,3
+semiyanyan,6845667,5
+unbounder,6845667,3
+bulbosa,6845667,5
+42125701,6845667,-1
+75015059,6845667,-1
+ritz,6845667,3
+131182158,6845667,3
+74013127,6845667,3
+63547626,6845667,4
+sunviro,6845667,5
+eznf,6845667,5
+57442857,6845667,4
+moredarkwhite,6845667,3
+83489403,6845667,4
+ryannys,6845667,5
+48641750,6845667,5
+45786010,6845667,4
+2858772,6845667,3
+yinw83,6845667,4
+122399571,6845667,5
+102303685,6845667,5
+4733166,6845667,4
+51427436,6845667,3
+tiger-rose,6845667,4
+momoshuo,6845667,4
+oliver330,6845667,4
+52390566,6845667,5
+seraph-ding,6845667,4
+lalou,6845667,5
+bubulansui,6845667,4
+29905943,6845667,4
+jingxi259,6845667,5
+liuziyihhs,6845667,5
+46068341,6845667,4
+58542527,6845667,4
+52395760,6845667,4
+dearrenyu,6845667,4
+chenxiangworld,6845667,4
+joey12255555,6845667,3
+109273896,6845667,5
+129164828,6845667,5
+48673876,6845667,4
+1605715,6845667,4
+52305498,6845667,4
+wheel,6845667,4
+peridot,6845667,-1
+2330715,6845667,4
+50199295,6845667,5
+rainze,6845667,5
+61233140,6845667,5
+99483183,6845667,-1
+134896642,6845667,3
+56975242,6845667,5
+mjtang,6845667,5
+nanaei1314,6845667,4
+67134061,6845667,4
+FTDxiaowukong,6845667,5
+62497317,6845667,5
+23235822,6845667,5
+59229335,6845667,5
+42541743,6845667,5
+ke-ke,6845667,5
+sleepinyoursong,6845667,4
+79558591,6845667,4
+31849844,6845667,4
+44976758,6845667,3
+50012279,6845667,5
+guoqiang_jiang,6845667,5
+dats,6845667,4
+51445817,6845667,4
+133582771,6845667,5
+appreciation,6845667,4
+126467467,6845667,4
+80923059,6845667,3
+xiloxilo,6845667,3
+MaclovenZD,6845667,4
+63785417,6845667,1
+88997815,6845667,3
+43471200,6845667,4
+58089304,6845667,3
+tunerchiang,6845667,5
+graylucky,6845667,5
+109530447,6845667,4
+72030393,6845667,5
+53879443,6845667,3
+121148510,6845667,3
+lincysara,6845667,4
+baimuli,6845667,3
+63699428,6845667,3
+3550233,6845667,4
+skeeter007,6845667,4
+52750876,6845667,4
+fastkill,6845667,3
+76433556,6845667,5
+ccinder,6845667,-1
+67851439,6845667,4
+1778496,6845667,4
+41109416,6845667,5
+3192149,6845667,4
+seafans,6845667,2
+3484320,6845667,5
+enanm,6845667,4
+3238270,6845667,3
+ailanyiying,6845667,3
+72127152,6845667,3
+49664854,6845667,5
+87237465,6845667,3
+ichaos,6845667,4
+68835916,6845667,5
+1080050,6845667,5
+49673011,6845667,3
+Colacao,6845667,5
+4329212,6845667,3
+32941683,6845667,4
+92242218,6845667,5
+35514248,6845667,5
+44034563,6845667,3
+45906710,6845667,5
+cities,6845667,4
+38924619,6845667,3
+50452092,6845667,3
+gray1210,6845667,-1
+53811699,6845667,4
+1663187,6845667,3
+nicdone,6845667,4
+43649933,6845667,5
+izaijin,6845667,4
+61196519,6845667,2
+56035155,6845667,4
+98728218,6845667,5
+42042005,6845667,4
+50585337,6845667,3
+49035105,6845667,4
+hirthead,6845667,5
+136366122,6845667,4
+71428293,6845667,4
+baladong123,6845667,2
+51904993,6845667,4
+BuddhaTree,6845667,3
+127313933,6845667,4
+121601332,6845667,4
+Nofeelings,6845667,3
+WANG_RS,6845667,4
+68585121,6845667,5
+68592556,6845667,4
+bebest,6845667,3
+116073490,6845667,4
+125524083,6845667,4
+cescshen,6845667,3
+43344167,6845667,2
+bzfdu,6845667,5
+jolllllly,6845667,5
+snsyzb,6845667,5
+69727866,6845667,5
+lele4027,6845667,3
+MissCaptain,6845667,5
+34459197,6845667,5
+51478034,6845667,5
+1367998,6845667,4
+SeaterWei,6845667,4
+53650868,6845667,4
+33538142,6845667,3
+jjwzgrmdx,6845667,5
+129057188,6845667,5
+67918582,6845667,4
+luoluomicky,6845667,5
+53791114,6845667,4
+3489125,6845667,3
+62177769,6845667,5
+127345355,6845667,5
+sonicyang,6845667,5
+81336001,6845667,3
+30765497,6845667,4
+waterdrops,6845667,4
+AeroAnte,6845667,4
+49272831,6845667,3
+Pum,6845667,4
+1411336,6845667,3
+1911212,6845667,4
+28820949,6845667,5
+27675083,6845667,5
+48821799,6845667,4
+129015324,6845667,5
+31335200,6845667,5
+61187637,6845667,4
+131878915,6845667,3
+67810374,6845667,4
+2751978,6845667,5
+52777499,6845667,4
+75667669,6845667,3
+sebastianv,6845667,5
+40848168,6845667,4
+33547006,6845667,4
+2221143,6845667,2
+58783502,6845667,5
+1491317,6845667,-1
+44949504,6845667,4
+1383913,6845667,5
+lhx,6845667,4
+6469458,6845667,5
+35994067,6845667,4
+1240037,6845667,4
+68093189,6845667,3
+69436086,6845667,4
+gaiasmile,6845667,4
+2636722,6845667,-1
+65108877,6845667,4
+zhanghanha,6845667,3
+lovetatum,6845667,5
+erfolgqun,6845667,4
+mrsfed,6845667,4
+66278129,6845667,4
+juliazhuli,6845667,4
+Wsuansuan,6845667,4
+2099122,6845667,3
+46728828,6845667,4
+3105123,6845667,4
+53653977,6845667,4
+76635599,6845667,3
+68730794,6845667,5
+52199961,6845667,4
+yunyuanshuo,6845667,4
+129598785,6845667,4
+3802312,6845667,4
+64780259,6845667,3
+62296174,6845667,4
+81002115,6845667,4
+49015850,6845667,4
+54428123,6845667,4
+lyzhie,6845667,4
+59220835,6845667,4
+4737971,6845667,4
+76109816,6845667,5
+60892519,6845667,4
+4099946,6845667,5
+44485871,6845667,3
+1833576,6845667,4
+xuyansong,6845667,3
+bailuweishuang,6845667,-1
+Daruke,6845667,4
+72485071,6845667,5
+19819965,6845667,5
+56478530,6845667,5
+2951993,6845667,5
+136942011,6845667,4
+102749538,6845667,4
+54306906,6845667,5
+i13nocry,6845667,4
+120978925,6845667,4
+dhtcwd,6845667,5
+46572945,6845667,5
+52902931,6845667,2
+1609951,6845667,4
+lorenmt,6845667,5
+3519597,6845667,5
+104764228,6845667,4
+jakartaxie,6845667,4
+53193684,6845667,4
+ayumiH,6845667,3
+ayumiH,6845667,3
+65412989,6845667,4
+77001369,6845667,4
+Qin-,6845667,5
+monkeydoll,6845667,5
+81138274,6845667,5
+sosofly,6845667,4
+jinjidexiong,6845667,3
+53393580,6845667,4
+tikidas,6845667,5
+suyimo,6845667,4
+101747870,6845667,4
+3083042,6845667,4
+64003394,6845667,5
+46055685,6845667,5
+2174077,6845667,4
+dltmw,6845667,3
+yanjing7611,6845667,4
+Patrick_Kang,6845667,3
+76509928,6845667,3
+76509928,6845667,3
+longnel,6845667,4
+econique,6845667,3
+29614337,6845667,4
+Oliver05,6845667,4
+79879080,6845667,4
+optimisery,6845667,3
+3519575,6845667,5
+4380478,6845667,3
+cheshiredoc,6845667,5
+70049579,6845667,4
+56008028,6845667,4
+1073807,6845667,4
+104261144,6845667,3
+godmako,6845667,3
+shaoraul,6845667,5
+le_grand_bleu,6845667,3
+JakeNow,6845667,4
+4325552,6845667,4
+52807266,6845667,4
+55340250,6845667,5
+rockymei,6845667,4
+62370156,6845667,4
+jx0517,6845667,4
+85245609,6845667,5
+67004506,6845667,4
+taycuu,6845667,5
+28776614,6845667,4
+1484739,6845667,5
+angelinebyi,6845667,-1
+29827748,6845667,5
+goofy-G,6845667,5
+elephantjun,6845667,4
+4134812,6845667,4
+61389962,6845667,4
+81698816,6845667,3
+62842401,6845667,4
+brallow,6845667,5
+intotool,6845667,4
+54096140,6845667,5
+biti.vector,6845667,3
+66557005,6845667,4
+47167717,6845667,5
+1769693,6845667,4
+henshss,6845667,2
+chercherlukia,6845667,5
+36008300,6845667,5
+56213524,6845667,4
+94030694,6845667,3
+53560863,6845667,4
+89787162,6845667,4
+39108497,6845667,4
+56492163,6845667,5
+32383822,6845667,3
+31698933,6845667,3
+136715644,6845667,3
+3023464,6845667,5
+summerwith,6845667,5
+58569504,6845667,4
+mandymao,6845667,5
+87930236,6845667,4
+chinriya,6845667,3
+80121770,6845667,5
+goldenday,6845667,4
+gongzitian,6845667,4
+carrie_c.,6845667,4
+42291376,6845667,4
+64707906,6845667,5
+Cenux,6845667,5
+aphemia,6845667,5
+41655130,6845667,4
+62900892,6845667,3
+114090542,6845667,5
+73308380,6845667,5
+52392787,6845667,5
+belovedeyes,6845667,3
+2733941,6845667,4
+40659159,6845667,4
+54341660,6845667,4
+2834263,6845667,5
+12391728,6845667,5
+renshaoqun,6845667,5
+72061303,6845667,4
+64750790,6845667,3
+41670814,6845667,5
+126842883,6845667,4
+63140304,6845667,5
+52657125,6845667,4
+54208229,6845667,3
+51784561,6845667,4
+35734014,6845667,3
+123857159,6845667,4
+121966622,6845667,4
+veronicawu1982,6845667,4
+83184870,6845667,4
+80058700,6845667,3
+67072789,6845667,5
+QChinge,6845667,5
+57416904,6845667,3
+3550389,6845667,5
+3550389,6845667,5
+69407013,6845667,5
+127675582,6845667,2
+punk90,6845667,4
+85190529,6845667,4
+33328418,6845667,2
+joer,6845667,5
+leeecho1027,6845667,5
+83802681,6845667,4
+bigsword,6845667,4
+achen17,6845667,3
+34243551,6845667,3
+51132496,6845667,4
+junenmajunen,6845667,5
+81373304,6845667,4
+cronus92,6845667,4
+54468195,6845667,5
+85356798,6845667,5
+fishee,6845667,4
+59344489,6845667,4
+58180925,6845667,3
+liarelaw,6845667,3
+41196257,6845667,4
+88393319,6845667,4
+rockerai,6845667,4
+51840690,6845667,4
+foollance,6845667,4
+71217329,6845667,5
+miyabemiya,6845667,4
+31563326,6845667,4
+CNToria617,6845667,3
+lidianxi1990,6845667,4
+54611627,6845667,4
+53988209,6845667,3
+2441545,6845667,5
+71946766,6845667,4
+29821954,6845667,4
+48286955,6845667,4
+yangqiaohe,6845667,3
+51105732,6845667,4
+116727584,6845667,5
+60664918,6845667,4
+85635101,6845667,5
+youli241,6845667,5
+oooweirooo,6845667,4
+sulian6415,6845667,5
+50144933,6845667,3
+bilibili01,6845667,2
+yykenny,6845667,5
+133125055,6845667,3
+49266863,6845667,5
+luxilu,6845667,-1
+62318523,6845667,4
+119446065,6845667,3
+SuperWMY,6845667,5
+72648633,6845667,4
+4545627,6845667,4
+107481201,6845667,3
+junglehaha,6845667,4
+48092800,6845667,5
+41746669,6845667,5
+31319988,6845667,5
+super_tao,6845667,3
+64574403,6845667,5
+zzyzeal,6845667,4
+61315252,6845667,5
+nbyuan,6845667,3
+jun_ny3,6845667,5
+77151897,6845667,3
+88138298,6845667,5
+Philoco,6845667,4
+100338185,6845667,3
+44869983,6845667,-1
+67731504,6845667,4
+Injurer,6845667,4
+3507065,6845667,3
+RabitAmen,6845667,4
+zheshijian,6845667,5
+amour,6845667,3
+wllh2345,6845667,5
+sh65489,6845667,5
+57562576,6845667,4
+pandaleilei,6845667,5
+SINCE1988,6845667,4
+jigedon,6845667,5
+1313315,6845667,4
+69679017,6845667,3
+46735351,6845667,5
+54717954,6845667,4
+lotusbleu,6845667,3
+127613691,6845667,5
+119270472,6845667,3
+hahatedan,6845667,4
+42625255,6845667,5
+43359124,6845667,4
+36669166,6845667,4
+3959689,6845667,5
+xzx2011,6845667,4
+saitojinalice,6845667,5
+74479513,6845667,5
+74479513,6845667,5
+Mr_movie,6845667,-1
+weblinder,6845667,4
+60592214,6845667,3
+46655518,6845667,4
+oceaneyes,6845667,4
+90587256,6845667,4
+mengqingjiao,6845667,4
+126702436,6845667,3
+Vantt,6845667,3
+79157004,6845667,4
+61640995,6845667,4
+54991804,6845667,4
+XLAngel,6845667,4
+65832475,6845667,4
+58543683,6845667,3
+63223538,6845667,3
+soya43464983,6845667,3
+sunshineautumn,6845667,3
+angeline313,6845667,4
+50527578,6845667,4
+zhangrenran,6845667,3
+129106127,6845667,3
+h1805331722,6845667,4
+xiyuanaries,6845667,4
+121278981,6845667,3
+52810889,6845667,4
+34557052,6845667,3
+93202185,6845667,4
+75322883,6845667,4
+96495909,6845667,4
+48694579,6845667,-1
+2483074,6845667,3
+40853957,6845667,4
+daisymouse,6845667,4
+Shawn_lecter,6845667,3
+45941293,6845667,3
+evenz,6845667,4
+136155203,6845667,5
+76428013,6845667,3
+50174936,6845667,5
+60079529,6845667,4
+120666244,6845667,3
+JaceJing,6845667,4
+helloanyone,6845667,5
+55324449,6845667,5
+93682864,6845667,4
+34005046,6845667,4
+flowermoon,6845667,4
+50720620,6845667,5
+z-h-7,6845667,4
+huyouyou,6845667,3
+Bulimic,6845667,4
+jijiayu,6845667,4
+53934591,6845667,4
+shizhewenmonica,6845667,2
+56911400,6845667,4
+61775961,6845667,4
+gooo111,6845667,4
+jca,6845667,-1
+TERI,6845667,4
+MOVA,6845667,5
+babaria,6845667,4
+40684892,6845667,4
+evilQin,6845667,4
+83843245,6845667,4
+2126183,6845667,4
+91268300,6845667,5
+70313784,6845667,4
+68102477,6845667,5
+58602175,6845667,4
+sakuras1412,6845667,-1
+55942870,6845667,5
+127563675,6845667,3
+67742715,6845667,4
+122352396,6845667,5
+Dling-YYY,6845667,4
+34170843,6845667,5
+66925820,6845667,3
+44236825,6845667,4
+48198502,6845667,4
+83343003,6845667,5
+58901835,6845667,4
+yixiaoyan_,6845667,4
+fengzaifei,6845667,4
+2807823,6845667,4
+6669413,6845667,4
+129935447,6845667,4
+tea123,6845667,3
+58158290,6845667,5
+18360610,6845667,4
+hollydoyle,6845667,4
+57475505,6845667,5
+43978378,6845667,3
+50130752,6845667,3
+1065097,6845667,5
+linxiaoleng,6845667,5
+estelle_mellow,6845667,5
+shuiqi,6845667,5
+59741934,6845667,5
+1458725,6845667,4
+61653276,6845667,4
+25468044,6845667,3
+durandalk,6845667,4
+1130020,6845667,3
+43921829,6845667,3
+annow,6845667,5
+chamori,6845667,3
+4518695,6845667,5
+42062370,6845667,3
+cappuccino-jl,6845667,4
+Plumed__Serpent,6845667,3
+2229618,6845667,5
+50972547,6845667,3
+solidgal,6845667,4
+59055667,6845667,2
+131800557,6845667,4
+53490791,6845667,4
+63391784,6845667,5
+Brad_King,6845667,3
+63218478,6845667,2
+135643960,6845667,4
+59901599,6845667,4
+2096902,6845667,5
+chidaoshu,6845667,4
+littlelion,6845667,5
+110718557,6845667,4
+2225652,6845667,3
+57890138,6845667,4
+108481476,6845667,5
+54083120,6845667,5
+49028309,6845667,3
+67330324,6845667,4
+64242861,6845667,3
+ljwcurry,6845667,4
+53635906,6845667,4
+47790392,6845667,5
+77048663,6845667,5
+3082551,6845667,2
+3934917,6845667,3
+55422325,6845667,5
+66339819,6845667,5
+71962172,6845667,5
+41680643,6845667,4
+119680918,6845667,5
+58249428,6845667,4
+faiel,6845667,3
+32144547,6845667,3
+53477720,6845667,3
+53697035,6845667,3
+98956070,6845667,3
+43783521,6845667,4
+56208320,6845667,5
+danielgillies,6845667,5
+4412898,6845667,4
+mustundead,6845667,3
+69615181,6845667,3
+41354434,6845667,3
+123097653,6845667,4
+donnie,6845667,4
+53577893,6845667,5
+6821770,6845667,4
+137483520,6845667,4
+45505109,6845667,5
+50451911,6845667,3
+81222828,6845667,5
+58060693,6845667,4
+77607736,6845667,5
+PSYmonkey,6845667,4
+41842523,6845667,3
+netkr,6845667,4
+TinyLens1990,6845667,3
+47186001,6845667,4
+83123138,6845667,4
+2546239,6845667,4
+zhangyuan2ba,6845667,5
+81628425,6845667,4
+61415736,6845667,4
+72858627,6845667,5
+77532413,6845667,5
+2286926,6845667,4
+whatever92,6845667,4
+digdug,6845667,5
+47650145,6845667,4
+2233781,6845667,4
+66178804,6845667,5
+105871087,6845667,3
+126341666,6845667,4
+79139857,6845667,5
+72870354,6845667,5
+42724768,6845667,5
+46983520,6845667,5
+lvchencf,6845667,4
+60274677,6845667,3
+54119533,6845667,4
+3501606,6845667,4
+gene4ever,6845667,3
+46282005,6845667,4
+fanglingna,6845667,4
+3470100,6845667,3
+12822970,6845667,4
+119280630,6845667,4
+WillHunted,6845667,3
+57981890,6845667,3
+4377011,6845667,3
+xiaoxiao0504,6845667,4
+124548457,6845667,4
+Jan111,6845667,4
+hotelCA,6845667,5
+rakuL,6845667,3
+3563996,6845667,3
+83192703,6845667,4
+wantjoin,6845667,5
+yinghuaji,6845667,4
+136765005,6845667,3
+60914067,6845667,-1
+39690585,6845667,4
+3571623,6845667,3
+53275472,6845667,4
+87558213,6845667,4
+soldierlu,6845667,4
+wanbo,6845667,5
+cgl0932,6845667,3
+vanilla666,6845667,4
+3969292,6845667,5
+122603381,6845667,5
+64425214,6845667,4
+52884834,6845667,3
+cherub235,6845667,4
+121748685,6845667,3
+55504631,6845667,4
+79308363,6845667,4
+79453297,6845667,4
+Kidz,6845667,4
+45623690,6845667,4
+58629032,6845667,3
+leiii,6845667,3
+kejinlong,6845667,3
+38850701,6845667,4
+zbar1234,6845667,4
+lvmeansdonkey,6845667,4
+42025402,6845667,5
+33553111,6845667,5
+90755706,6845667,5
+nupta,6845667,3
+67756173,6845667,3
+119318539,6845667,5
+50256775,6845667,4
+60295233,6845667,4
+10788342,6845667,5
+4422872,6845667,3
+60860847,6845667,5
+laneddy,6845667,3
+65830621,6845667,5
+82054541,6845667,3
+sunshinezz1991,6845667,4
+snaal,6845667,5
+47837056,6845667,4
+62276848,6845667,3
+49620873,6845667,3
+ninalynnsaynia,6845667,4
+48247472,6845667,5
+39003448,6845667,4
+42609258,6845667,4
+49089463,6845667,5
+lovelans,6845667,4
+abuwangzi,6845667,4
+73064038,6845667,4
+leimsy,6845667,5
+1909194,6845667,4
+2917148,6845667,5
+sueprince,6845667,4
+33976222,6845667,5
+iyvette,6845667,-1
+4565520,6845667,5
+2670240,6845667,4
+135236340,6845667,5
+4242859,6845667,4
+2959420,6845667,4
+59394881,6845667,5
+47815647,6845667,2
+missneuf,6845667,4
+lidesheng,6845667,-1
+46754344,6845667,3
+133516099,6845667,5
+31102423,6845667,4
+17654843,6845667,5
+93374803,6845667,4
+63742684,6845667,4
+56143225,6845667,4
+61845850,6845667,3
+lovingly,6845667,4
+98956225,6845667,2
+1455801,6845667,4
+132294820,6845667,5
+65176170,6845667,3
+sakimay,6845667,4
+2785610,6845667,3
+80537833,6845667,3
+3266143,6845667,3
+45055967,6845667,4
+65132102,6845667,4
+64300426,6845667,4
+1770378,6845667,5
+59716419,6845667,5
+35076658,6845667,3
+1929758,6845667,4
+3307804,6845667,4
+61486120,6845667,5
+56866974,6845667,4
+redcookie,6845667,3
+AllanBen,6845667,3
+csp,6845667,3
+37162990,6845667,4
+78914788,6845667,4
+115185041,6845667,3
+72589509,6845667,-1
+2642171,6845667,4
+weixiaoP,6845667,4
+pengpeng,6845667,3
+cindylionel,6845667,3
+84591615,6845667,5
+61111185,6845667,3
+68338997,6845667,5
+15923288,6845667,4
+124988562,6845667,5
+114398895,6845667,5
+mowo,6845667,4
+59202996,6845667,4
+122365805,6845667,5
+goldensunflower,6845667,-1
+53387777,6845667,4
+76467871,6845667,4
+51911319,6845667,3
+135629380,6845667,5
+54538975,6845667,4
+1133756,6845667,5
+72642943,6845667,3
+59383084,6845667,4
+4582318,6845667,3
+shaonvc,6845667,4
+59012758,6845667,4
+52951780,6845667,4
+atengbrilliance,6845667,4
+Jerry-Zeng,6845667,4
+xiaobao7,6845667,4
+136219098,6845667,4
+29399686,6845667,1
+66794531,6845667,2
+1101928,6845667,3
+61500804,6845667,3
+parislover,6845667,3
+impossible_ww,6845667,5
+vaan_konh,6845667,4
+32541255,6845667,1
+80140628,6845667,3
+66904102,6845667,3
+58596015,6845667,4
+106347535,6845667,4
+137129598,6845667,5
+55379993,6845667,4
+towne,6845667,4
+sunred66,6845667,4
+62623186,6845667,4
+68353669,6845667,4
+jiscat,6845667,4
+andy5,6845667,4
+rock0323,6845667,3
+wangyao1982,6845667,5
+dongcongcong,6845667,3
+moonlightshit,6845667,4
+129798303,6845667,3
+csaver,6845667,5
+rociowyc,6845667,4
+54349281,6845667,3
+49170151,6845667,5
+sevenamo,6845667,4
+61813884,6845667,5
+54141112,6845667,4
+strawman81,6845667,4
+2182116,6845667,4
+65369148,6845667,3
+85451111,6845667,5
+92775477,6845667,3
+torreslee,6845667,4
+57025348,6845667,3
+67682492,6845667,5
+allenbuhe,6845667,4
+Silstar,6845667,5
+49608808,6845667,4
+43910063,6845667,4
+49588349,6845667,5
+89034625,6845667,3
+basil_yying,6845667,5
+83793299,6845667,-1
+hx615,6845667,3
+62217128,6845667,5
+44426331,6845667,5
+wylwddjz,6845667,4
+56856472,6845667,5
+louis_li,6845667,3
+48976619,6845667,4
+IloveyouDanica,6845667,3
+heart_forever,6845667,5
+37306803,6845667,4
+65442139,6845667,3
+72972634,6845667,3
+jinhoo,6845667,3
+84076381,6845667,3
+JoooNE,6845667,4
+Smileysnow,6845667,4
+3850532,6845667,4
+58094874,6845667,5
+56044350,6845667,4
+126829630,6845667,4
+3096049,6845667,3
+2620783,6845667,5
+45446401,6845667,5
+vivifyvivi,6845667,3
+52098739,6845667,5
+49981766,6845667,5
+56104621,6845667,3
+54579149,6845667,3
+69223309,6845667,5
+63301116,6845667,3
+124823100,6845667,4
+59620866,6845667,4
+yukiaimar,6845667,4
+melancholyhill,6845667,4
+edgeyeung,6845667,5
+anbox,6845667,4
+64947764,6845667,4
+fay19881025,6845667,4
+123000223,6845667,5
+2917249,6845667,5
+53454251,6845667,4
+cloverllx,6845667,3
+70620691,6845667,5
+Mapotatoes,6845667,4
+Brettish,6845667,2
+suyuhang,6845667,3
+70862123,6845667,4
+Georgewen,6845667,4
+DuoH,6845667,5
+proudlucifer,6845667,5
+55334348,6845667,-1
+55624184,6845667,3
+yummy1986,6845667,5
+moonbird39,6845667,4
+shuman90,6845667,4
+weiyi1112,6845667,5
+37950189,6845667,5
+44976171,6845667,4
+hetairan,6845667,4
+lemonsummer420,6845667,5
+Happyprince,6845667,3
+58283584,6845667,4
+77555967,6845667,4
+3674593,6845667,5
+69356155,6845667,4
+Rubio,6845667,4
+w2jmoe,6845667,2
+82305871,6845667,4
+48589119,6845667,4
+81649502,6845667,5
+formydream,6845667,4
+olejue,6845667,4
+48160969,6845667,4
+131187465,6845667,4
+71284863,6845667,4
+furien,6845667,3
+4537053,6845667,4
+44820765,6845667,5
+61133613,6845667,3
+72536627,6845667,5
+87344013,6845667,5
+80674760,6845667,3
+49191100,6845667,4
+EndAndEnd,6845667,3
+3783012,6845667,4
+66575578,6845667,-1
+46087498,6845667,5
+48571778,6845667,4
+123818120,6845667,4
+43308232,6845667,5
+84699940,6845667,5
+childdream,6845667,5
+53484672,6845667,2
+92610102,6845667,4
+64124840,6845667,3
+hedgehog,6845667,3
+80323022,6845667,4
+53416381,6845667,4
+TiffanyBrisset,6845667,3
+4079119,6845667,4
+135585747,6845667,4
+2613946,6845667,3
+luluyunxiao,6845667,3
+cap120,6845667,5
+68427316,6845667,4
+tilovefa,6845667,3
+zx8713,6845667,4
+drsoul,6845667,5
+xixi9000,6845667,4
+saintkaka,6845667,3
+76477435,6845667,4
+michaelcc,6845667,3
+caozhuo,6845667,4
+july5412,6845667,4
+49791968,6845667,3
+Yubk111111,6845667,2
+heidyxu,6845667,4
+wiwikuang,6845667,4
+1520844,6845667,3
+lingrui1995,6845667,4
+xly7788,6845667,5
+51446945,6845667,5
+FeeSouler,6845667,5
+3687958,6845667,5
+vanillacats,6845667,5
+35306449,6845667,5
+43982125,6845667,4
+48931320,6845667,5
+wei75820,6845667,4
+51060168,6845667,3
+3540779,6845667,4
+1867292,6845667,3
+32090748,6845667,5
+64902546,6845667,3
+45283092,6845667,5
+39095645,6845667,3
+robins1979,6845667,3
+cjsjason,6845667,4
+komos,6845667,4
+50790879,6845667,5
+Orchendor,6845667,5
+imarco,6845667,4
+136727796,6845667,4
+45897135,6845667,5
+80500079,6845667,5
+80500079,6845667,5
+fanyichao,6845667,5
+46453522,6845667,5
+66397755,6845667,5
+64252611,6845667,4
+4348122,6845667,5
+journeyboy,6845667,4
+AlphaScan,6845667,3
+supremetooto,6845667,4
+46394662,6845667,3
+88658178,6845667,3
+stknight,6845667,3
+53647318,6845667,4
+stardust1900,6845667,4
+68098280,6845667,3
+34592808,6845667,4
+qiushengtang,6845667,3
+47869637,6845667,4
+66643871,6845667,5
+OOXXWJW,6845667,3
+81407936,6845667,4
+133860777,6845667,4
+wskhandsome,6845667,3
+50660338,6845667,3
+gallria,6845667,4
+54158519,6845667,4
+131811211,6845667,4
+kokia233,6845667,3
+Norma,6845667,3
+67769734,6845667,4
+3217354,6845667,3
+65121646,6845667,4
+daisyhantt,6845667,4
+bhg,6845667,5
+85245250,6845667,3
+83003018,6845667,4
+3323980,6845667,4
+garbovisa,6845667,5
+49302309,6845667,4
+majormaureen,6845667,4
+66370075,6845667,4
+caunion,6845667,5
+120912258,6845667,3
+2698249,6845667,4
+myself7,6845667,4
+60072264,6845667,4
+annko,6845667,3
+fairyhui521,6845667,5
+xlhtdxx,6845667,4
+6013612,6845667,5
+blurrrrr,6845667,4
+58438773,6845667,5
+bluep,6845667,5
+1391137,6845667,5
+77820849,6845667,5
+HeyMok,6845667,4
+2180501,6845667,3
+85324202,6845667,4
+51606142,6845667,2
+airpore,6845667,5
+49267542,6845667,-1
+NosyBunny,6845667,5
+grayguy,6845667,4
+lylechao,6845667,5
+4679551,6845667,2
+57853791,6845667,3
+2790933,6845667,4
+usernamej,6845667,4
+106570148,6845667,4
+likecake,6845667,5
+2146226,6845667,3
+41610301,6845667,5
+42006560,6845667,4
+34727533,6845667,3
+48477485,6845667,4
+zansheep,6845667,3
+hushibookstore,6845667,4
+59144379,6845667,4
+prague2046,6845667,5
+2630532,6845667,4
+ilovehouyi,6845667,3
+yuc200,6845667,2
+32737561,6845667,3
+53868725,6845667,1
+Sandal,6845667,2
+81845294,6845667,4
+59975190,6845667,3
+46988261,6845667,4
+49137557,6845667,4
+ClaudiaS571,6845667,4
+121321169,6845667,5
+mush24,6845667,5
+koutiao,6845667,4
+Bobbie13,6845667,4
+115714696,6845667,4
+67681966,6845667,5
+4685842,6845667,5
+qinduo,6845667,5
+3394942,6845667,4
+flowernim,6845667,3
+me2shy,6845667,5
+65810750,6845667,4
+coolluo_zw,6845667,3
+croath,6845667,5
+orangehahaha,6845667,4
+gintokiyin,6845667,3
+48360672,6845667,4
+49218261,6845667,5
+61752391,6845667,4
+64426025,6845667,4
+1314672,6845667,5
+1482191,6845667,3
+43784506,6845667,4
+57605760,6845667,4
+vi24vi,6845667,4
+bxg555,6845667,-1
+2581765,6845667,4
+fx--hanshu,6845667,5
+ashida,6845667,4
+YYDEE,6845667,4
+74917564,6845667,5
+124697172,6845667,4
+53317988,6845667,4
+53768020,6845667,5
+66088686,6845667,2
+quanzhouren,6845667,3
+46170275,6845667,4
+75749309,6845667,4
+48999552,6845667,4
+76076225,6845667,4
+28881965,6845667,5
+a13025566,6845667,4
+63127147,6845667,4
+b.side,6845667,4
+78314737,6845667,5
+47227699,6845667,5
+athenasaga,6845667,5
+awenawen,6845667,3
+fightim,6845667,4
+65458998,6845667,4
+lilyzhou2012,6845667,4
+61540850,6845667,2
+3464028,6845667,5
+73901440,6845667,4
+135604751,6845667,5
+130399642,6845667,4
+lish5621,6845667,5
+Twdrop,6845667,4
+51422628,6845667,2
+iris15,6845667,4
+8036624,6845667,3
+hypertxt,6845667,5
+135430923,6845667,5
+130860796,6845667,5
+aaadzy,6845667,5
+ashli,6845667,2
+33320870,6845667,2
+2178609,6845667,5
+besmiled,6845667,5
+69095910,6845667,4
+look,6845667,4
+127947570,6845667,4
+129287014,6845667,4
+64757557,6845667,4
+121304224,6845667,5
+127080746,6845667,3
+120886080,6845667,3
+62742693,6845667,5
+87498473,6845667,3
+86807524,6845667,4
+zeyldjj,6845667,5
+83181100,6845667,5
+2750884,6845667,4
+39086364,6845667,3
+62715368,6845667,5
+50848466,6845667,4
+37230962,6845667,5
+53269895,6845667,3
+13826202,6845667,3
+jennychang,6845667,3
+121187003,6845667,4
+56755911,6845667,4
+2298833,6845667,4
+137110783,6845667,5
+4017162,6845667,4
+135377807,6845667,4
+mythjill,6845667,4
+47574517,6845667,4
+63462794,6845667,4
+ez2dier,6845667,4
+116089509,6845667,3
+fylyunfei,6845667,-1
+48973534,6845667,4
+70986797,6845667,4
+3478406,6845667,4
+45059307,6845667,5
+129633404,6845667,5
+newzallery,6845667,5
+LoveHugo,6845667,4
+weizi07,6845667,4
+2527696,6845667,5
+77676888,6845667,3
+49288532,6845667,4
+53355400,6845667,4
+119583854,6845667,4
+52408878,6845667,4
+85487169,6845667,5
+AJDENOLE-,6845667,5
+kgbbeer,6845667,4
+josie5dance,6845667,5
+snowlydouban,6845667,2
+120521050,6845667,4
+3924801,6845667,4
+89844032,6845667,5
+31365269,6845667,2
+72122656,6845667,4
+onlyblue16,6845667,4
+olabaobao,6845667,5
+136333363,6845667,4
+1743655,6845667,3
+1653790,6845667,4
+annaanonly,6845667,4
+inspiredxx,6845667,2
+wj8198026,6845667,4
+louisyoung,6845667,5
+108168194,6845667,4
+77648930,6845667,5
+4380586,6845667,4
+58484149,6845667,4
+125971465,6845667,4
+Srats,6845667,5
+122587004,6845667,4
+zoepoirot,6845667,4
+2187326,6845667,3
+82494887,6845667,5
+shenmime,6845667,5
+67759095,6845667,5
+88750919,6845667,5
+1000545,6845667,4
+61162296,6845667,-1
+61162296,6845667,-1
+summerguagua,6845667,4
+69854006,6845667,4
+97501403,6845667,3
+130069675,6845667,4
+LazyCatZ,6845667,3
+aaaaaaaaaaa,6845667,3
+jolyne,6845667,4
+79897130,6845667,4
+120792651,6845667,4
+62062793,6845667,3
+115467690,6845667,4
+changgu4290,6845667,3
+3603174,6845667,5
+69805658,6845667,3
+47822950,6845667,4
+Paradox_Q,6845667,3
+zera,6845667,4
+3173862,6845667,3
+44345461,6845667,5
+iwangke,6845667,4
+48090771,6845667,3
+4896156,6845667,5
+sosxisang,6845667,5
+51847608,6845667,2
+65382109,6845667,4
+addicted,6845667,4
+73751576,6845667,5
+aRmstrong-Kiss,6845667,5
+3440574,6845667,3
+sunny1986,6845667,3
+62712229,6845667,4
+fishxsherry,6845667,5
+LadySandra,6845667,4
+4364181,6845667,4
+73784914,6845667,3
+lilcccc,6845667,4
+119449888,6845667,4
+KavnoKaviKz,6845667,4
+71014294,6845667,3
+gracetop10,6845667,-1
+45560095,6845667,5
+alft-huahua,6845667,5
+xiawu1130,6845667,5
+JackingChen,6845667,4
+78645703,6845667,4
+61617844,6845667,3
+83994709,6845667,4
+89528523,6845667,5
+65974526,6845667,4
+2511906,6845667,5
+akilaa,6845667,4
+3981138,6845667,5
+47472746,6845667,4
+winifred,6845667,5
+31978586,6845667,5
+106176250,6845667,2
+1227418,6845667,3
+61040304,6845667,5
+3627412,6845667,5
+2580780,6845667,4
+wangmingtianya,6845667,4
+43276883,6845667,4
+45933152,6845667,4
+kissorli,6845667,4
+mumcy,6845667,4
+songxuancheng,6845667,5
+kedoumili,6845667,3
+50566140,6845667,2
+115092605,6845667,4
+46752202,6845667,5
+l---j,6845667,4
+wch2020,6845667,3
+wannafat,6845667,4
+qi1937,6845667,5
+2799911,6845667,5
+1247885,6845667,4
+53793944,6845667,5
+muyunattitude,6845667,4
+turandot0815,6845667,4
+49689956,6845667,5
+71814035,6845667,2
+76964275,6845667,4
+elingwu,6845667,5
+81903719,6845667,4
+59237633,6845667,4
+80191540,6845667,5
+bluelsd,6845667,3
+70681955,6845667,4
+maplepu,6845667,4
+64173822,6845667,5
+thomsonkoo,6845667,3
+90847508,6845667,5
+67268296,6845667,5
+53947728,6845667,5
+77837992,6845667,5
+65912201,6845667,4
+on1ooker,6845667,4
+83220030,6845667,5
+37390884,6845667,2
+p0pking,6845667,4
+24070476,6845667,4
+dashebei,6845667,4
+44937867,6845667,3
+50566408,6845667,4
+2586114,6845667,4
+57886275,6845667,3
+1450381,6845667,3
+40011155,6845667,5
+robinbird,6845667,3
+49587231,6845667,1
+3656658,6845667,5
+sgzjhw,6845667,4
+51165620,6845667,3
+56692892,6845667,4
+madbilly,6845667,3
+96044338,6845667,4
+Sk.Young,6845667,4
+67752944,6845667,3
+74103020,6845667,3
+74103020,6845667,3
+68770847,6845667,4
+84142287,6845667,5
+49659191,6845667,3
+120551581,6845667,4
+58934879,6845667,4
+Cherrie.,6845667,4
+57991654,6845667,4
+50060410,6845667,4
+brant800,6845667,5
+45790746,6845667,5
+56800653,6845667,3
+yihengxi,6845667,4
+12031989,6845667,5
+59458875,6845667,4
+46996433,6845667,4
+48069693,6845667,4
+junwuchen,6845667,5
+68010649,6845667,4
+46627349,6845667,4
+44990923,6845667,4
+booboo777,6845667,5
+88384044,6845667,4
+130558450,6845667,5
+63205591,6845667,5
+57195945,6845667,5
+56297473,6845667,4
+miraclegd,6845667,4
+81377941,6845667,5
+91515979,6845667,1
+48167750,6845667,4
+65947697,6845667,4
+liquor,6845667,5
+yaoyang513,6845667,4
+colorwind,6845667,4
+52827003,6845667,4
+RachelLi,6845667,4
+cheeseberry,6845667,3
+kokibi,6845667,4
+58101535,6845667,4
+zh888,6845667,3
+61213016,6845667,4
+snowmaymay,6845667,4
+98767132,6845667,5
+catvoldemort,6845667,4
+62304027,6845667,3
+2471335,6845667,4
+anniehoneys,6845667,3
+laurathealine,6845667,4
+48394589,6845667,5
+72995081,6845667,3
+hher,6845667,2
+51781269,6845667,5
+79287577,6845667,3
+aipa,6845667,4
+aiwengfan,6845667,4
+36831002,6845667,1
+14327084,6845667,3
+70927590,6845667,5
+ripslyme,6845667,4
+4387213,6845667,5
+xijiayang,6845667,3
+2444863,6845667,4
+47826669,6845667,4
+48963798,6845667,5
+theshadow,6845667,4
+122090145,6845667,-1
+hljmsfy,6845667,4
+sunkyeast,6845667,5
+luerdelphic,6845667,5
+45985032,6845667,2
+erobin,6845667,3
+7973423,6845667,-1
+mctrain,6845667,5
+107124348,6845667,5
+conanwansui,6845667,3
+36276299,6845667,4
+49122242,6845667,5
+53152941,6845667,4
+31853211,6845667,-1
+Mayk,6845667,5
+49693617,6845667,4
+oakhui,6845667,4
+45513879,6845667,5
+43409918,6845667,3
+Maze10888119,6845667,4
+dinoel,6845667,4
+3254520,6845667,5
+82317907,6845667,3
+77075195,6845667,4
+rosemerryth,6845667,5
+78466382,6845667,5
+62736630,6845667,3
+63822026,6845667,5
+44761018,6845667,5
+windyzhu3949,6845667,4
+48339890,6845667,4
+45782661,6845667,3
+55842990,6845667,3
+65213268,6845667,2
+65213268,6845667,2
+doriskojima,6845667,4
+jolinxian,6845667,4
+119669908,6845667,4
+94463679,6845667,4
+54187301,6845667,5
+qinyouxuan,6845667,4
+mcwong,6845667,5
+75874006,6845667,4
+3922372,6845667,4
+54853596,6845667,5
+xiaoyushudai,6845667,4
+55836686,6845667,4
+120291697,6845667,4
+79715467,6845667,3
+ProfThunder,6845667,4
+4722347,6845667,5
+39739363,6845667,4
+1671301,6845667,3
+59623092,6845667,4
+djinn77,6845667,5
+xiaoxinadd,6845667,5
+51583738,6845667,5
+57892875,6845667,-1
+45351288,6845667,3
+132667516,6845667,4
+sunzeya,6845667,5
+xiaozuo1,6845667,3
+39192898,6845667,3
+101827918,6845667,3
+inic,6845667,4
+strikeman,6845667,4
+hollishob,6845667,5
+xunnight,6845667,4
+136837238,6845667,-1
+alan_fanfan,6845667,5
+64898125,6845667,5
+landaishuyihao,6845667,5
+82550997,6845667,3
+45648843,6845667,2
+50892549,6845667,5
+120299687,6845667,4
+49023972,6845667,5
+115982359,6845667,4
+cicigo,6845667,3
+92853414,6845667,5
+43210476,6845667,4
+42680639,6845667,4
+zhanggongzi,6845667,4
+52710825,6845667,5
+93664984,6845667,4
+wzptoby,6845667,3
+133245536,6845667,2
+yonita_yang,6845667,5
+Dreaming1989712,6845667,4
+keyilibie,6845667,2
+1717629,6845667,-1
+50919323,6845667,3
+90412571,6845667,3
+59038247,6845667,2
+Metal.GY,6845667,4
+61123177,6845667,4
+74959611,6845667,5
+120378701,6845667,3
+64163444,6845667,4
+lutherjho,6845667,3
+49298107,6845667,3
+62478064,6845667,3
+53203892,6845667,4
+17109660,6845667,4
+71202281,6845667,5
+48046895,6845667,-1
+62832736,6845667,3
+53947772,6845667,4
+60193223,6845667,3
+3972229,6845667,4
+53404081,6845667,5
+whypretty,6845667,4
+34600682,6845667,-1
+59807933,6845667,5
+46813003,6845667,4
+122944258,6845667,4
+gongxukai,6845667,4
+59290556,6845667,3
+92990007,6845667,-1
+49145944,6845667,4
+41506911,6845667,4
+FILANIEYOTE,6845667,4
+2125225,6845667,3
+51058241,6845667,3
+79640756,6845667,4
+57142558,6845667,4
+91808189,6845667,4
+jlam174170,6845667,3
+52780028,6845667,3
+fuckyeahdelia,6845667,5
+8275729,6845667,4
+103105403,6845667,4
+52519025,6845667,3
+121943500,6845667,4
+yuchishangjiu,6845667,4
+63592658,6845667,4
+JackHiddleston,6845667,4
+76529709,6845667,4
+47747519,6845667,3
+50242355,6845667,4
+julia_duan,6845667,5
+52372728,6845667,4
+xweiway,6845667,5
+kayoulee,6845667,5
+40685307,6845667,5
+roseforu,6845667,4
+120778881,6845667,5
+keytoworld,6845667,4
+3439248,6845667,5
+42368352,6845667,4
+52948477,6845667,4
+49162672,6845667,3
+53801609,6845667,5
+dirtydung,6845667,4
+poornicky,6845667,4
+guangyingyinhen,6845667,4
+kiplinghu,6845667,5
+mikelpc,6845667,5
+50280331,6845667,3
+64345409,6845667,5
+mian11,6845667,3
+rongmenkezhan,6845667,3
+fuyuanjie,6845667,3
+blackmeajump,6845667,4
+fairyx,6845667,5
+68631195,6845667,4
+65321007,6845667,4
+Hyke,6845667,3
+3843825,6845667,3
+vigilgt,6845667,3
+121622881,6845667,4
+33960706,6845667,5
+xin0725,6845667,4
+130024032,6845667,4
+YuSu,6845667,4
+66331142,6845667,2
+johngreed,6845667,5
+3831169,6845667,4
+93892137,6845667,4
+1133241,6845667,4
+47319867,6845667,5
+yvone1220,6845667,3
+120984888,6845667,4
+4568910,6845667,3
+75515881,6845667,4
+79807142,6845667,5
+50256249,6845667,5
+60055945,6845667,3
+83143884,6845667,4
+2315826,6845667,5
+82912362,6845667,3
+siqinhai,6845667,4
+79074513,6845667,4
+54926735,6845667,5
+2210574,6845667,4
+zhengxueao,6845667,5
+anisezww,6845667,3
+lc_ENo.,6845667,3
+33990008,6845667,5
+45958612,6845667,3
+53891862,6845667,5
+Zukunft,6845667,4
+38498557,6845667,4
+sagtree,6845667,3
+37557678,6845667,4
+1530502,6845667,4
+37620368,6845667,4
+78975012,6845667,4
+angelazha,6845667,4
+lephemera,6845667,4
+cannotstopme,6845667,4
+68855550,6845667,4
+75309704,6845667,5
+41130036,6845667,-1
+41130036,6845667,-1
+124336215,6845667,3
+65981408,6845667,3
+49550156,6845667,4
+tobewith0216,6845667,4
+79420813,6845667,4
+119685812,6845667,5
+3107549,6845667,3
+grayfoxever,6845667,4
+stella930,6845667,4
+113999648,6845667,5
+xiaoyuhen,6845667,3
+36735001,6845667,5
+72263938,6845667,4
+73856461,6845667,3
+mylbj,6845667,4
+lea_x,6845667,-1
+45641492,6845667,5
+61829345,6845667,4
+27979325,6845667,4
+131364833,6845667,4
+guanjianfei,6845667,3
+67208670,6845667,5
+33830687,6845667,4
+mountainriver,6845667,4
+3266611,6845667,4
+59888468,6845667,5
+2202819,6845667,4
+51336568,6845667,4
+62489520,6845667,4
+130944083,6845667,3
+57076226,6845667,4
+47144465,6845667,5
+92619228,6845667,4
+sjch,6845667,4
+70522766,6845667,2
+63177196,6845667,3
+58934612,6845667,4
+83816838,6845667,5
+49821084,6845667,3
+jiajunzhi,6845667,4
+longislandiced,6845667,-1
+Cc4911,6845667,4
+july8903,6845667,4
+1333942,6845667,5
+weekqin,6845667,4
+122966703,6845667,3
+sentexiaohu,6845667,3
+122648938,6845667,4
+17991181,6845667,4
+noaccident,6845667,4
+91999086,6845667,5
+wizbp,6845667,4
+100020528,6845667,3
+SZH19920707,6845667,3
+101872138,6845667,5
+wanglei962845,6845667,3
+64083865,6845667,3
+127298823,6845667,4
+46970893,6845667,4
+131909298,6845667,4
+125827809,6845667,3
+36627836,6845667,4
+beckhong,6845667,4
+45238478,6845667,4
+kelvinshaw,6845667,3
+136293291,6845667,-1
+61169740,6845667,4
+83619054,6845667,4
+35364683,6845667,4
+79379701,6845667,5
+53719070,6845667,4
+132207282,6845667,4
+71811082,6845667,5
+2196209,6845667,2
+54621010,6845667,5
+79169198,6845667,-1
+lyzw,6845667,5
+137061387,6845667,3
+68666799,6845667,3
+67489382,6845667,5
+nabiki1003,6845667,4
+54642925,6845667,5
+96674410,6845667,5
+heyeast,6845667,3
+36623417,6845667,3
+jefffeihead,6845667,3
+BeanInk,6845667,4
+84876827,6845667,4
+56279162,6845667,4
+1205451,6845667,4
+49910264,6845667,4
+54845592,6845667,4
+47658546,6845667,4
+63383650,6845667,3
+dulllennon,6845667,4
+27928039,6845667,4
+iSaw11021,6845667,4
+61072952,6845667,5
+49190112,6845667,5
+63989217,6845667,4
+61872443,6845667,5
+45686083,6845667,4
+2761343,6845667,-1
+71576870,6845667,4
+53227132,6845667,4
+64043988,6845667,4
+15367255,6845667,4
+3722910,6845667,5
+123061684,6845667,5
+ableno,6845667,4
+54011582,6845667,4
+89678583,6845667,4
+sui2,6845667,3
+mimiefenqiu,6845667,5
+wsgstrike,6845667,4
+3772811,6845667,5
+3561048,6845667,4
+morbidangel,6845667,4
+69107349,6845667,4
+5851064,6845667,2
+2148283,6845667,-1
+33282308,6845667,5
+53443769,6845667,5
+42556657,6845667,5
+gatcn,6845667,5
+36621771,6845667,4
+redbackzhong,6845667,5
+84152502,6845667,4
+airan712,6845667,3
+135709850,6845667,4
+120099521,6845667,4
+zpj86,6845667,5
+1514019,6845667,3
+1935443,6845667,4
+110926951,6845667,5
+63014642,6845667,4
+zwj514235,6845667,2
+67353177,6845667,4
+AALO,6845667,4
+130988539,6845667,4
+allonsy,6845667,5
+robbb,6845667,4
+14186620,6845667,5
+Xia0_K,6845667,4
+Vivi17,6845667,5
+56890247,6845667,5
+Fangodar,6845667,4
+1896089,6845667,4
+yuki_kaze,6845667,3
+63506712,6845667,4
+23626776,6845667,5
+46225012,6845667,4
+68061879,6845667,3
+114734252,6845667,3
+55440318,6845667,3
+57190198,6845667,5
+1068202,6845667,4
+3142312,6845667,4
+60392839,6845667,4
+dun_z,6845667,5
+134258996,6845667,4
+51412054,6845667,4
+sun-sun-emma,6845667,4
+Jessica.clr,6845667,3
+netsurfe,6845667,3
+4583473,6845667,3
+14247291,6845667,4
+snowandrain,6845667,3
+3598072,6845667,4
+137058479,6845667,4
+sparrowwang,6845667,4
+1565154,6845667,4
+43788388,6845667,4
+59789966,6845667,3
+46003260,6845667,4
+72438301,6845667,3
+124640229,6845667,4
+63843063,6845667,4
+zhengkangkang,6845667,5
+130192486,6845667,4
+51986122,6845667,4
+84047449,6845667,5
+48649403,6845667,5
+2385429,6845667,5
+andreaqi,6845667,3
+67883787,6845667,4
+52636646,6845667,4
+121379293,6845667,4
+40733477,6845667,3
+63531003,6845667,5
+1975540,6845667,-1
+42987621,6845667,4
+44789325,6845667,5
+122605310,6845667,3
+66613325,6845667,4
+136594496,6845667,4
+123948134,6845667,5
+106514817,6845667,3
+62949401,6845667,3
+44020426,6845667,4
+68630108,6845667,2
+48479949,6845667,4
+72783015,6845667,5
+4284723,6845667,3
+23400839,6845667,5
+49390111,6845667,4
+62348192,6845667,5
+64114079,6845667,4
+78971867,6845667,4
+49853837,6845667,3
+76873283,6845667,3
+82357316,6845667,3
+72365575,6845667,5
+81530706,6845667,3
+123543090,6845667,4
+lyych,6845667,3
+68864457,6845667,4
+4347027,6845667,3
+3420320,6845667,4
+122635365,6845667,4
+wlx_7,6845667,4
+47876726,6845667,5
+georginas_,6845667,4
+2658903,6845667,4
+46781917,6845667,-1
+64051414,6845667,3
+121152580,6845667,4
+54506898,6845667,5
+131402261,6845667,4
+4434835,6845667,5
+xellgio,6845667,4
+47639252,6845667,5
+showeryoung,6845667,5
+137058497,6845667,3
+25982397,6845667,3
+64124886,6845667,4
+123404476,6845667,3
+47126344,6845667,4
+90532402,6845667,5
+pbc0615,6845667,3
+zhiyiren,6845667,5
+50438518,6845667,4
+iamliving,6845667,5
+121925373,6845667,4
+46175639,6845667,3
+68629139,6845667,4
+121679794,6845667,4
+94394247,6845667,4
+69682298,6845667,5
+76566444,6845667,2
+37771316,6845667,4
+dongbai,6845667,4
+83195287,6845667,3
+cui_xianan,6845667,-1
+fafashit,6845667,4
+3337456,6845667,5
+62705311,6845667,3
+8099941,6845667,4
+Jobszhuisui9,6845667,5
+130540529,6845667,3
+68990799,6845667,5
+81316047,6845667,5
+ElyseLee,6845667,5
+chuleiwu,6845667,3
+85621966,6845667,4
+47395567,6845667,4
+cypsh,6845667,4
+77092352,6845667,3
+movie8,6845667,4
+hdjjys,6845667,4
+91787788,6845667,5
+135451199,6845667,3
+87909103,6845667,4
+34006126,6845667,2
+mlgbpirate,6845667,4
+nonono7,6845667,4
+59835894,6845667,3
+39382448,6845667,5
+46309610,6845667,4
+mingming1124530,6845667,-1
+4332615,6845667,3
+bigmiao,6845667,3
+parkxiahky,6845667,4
+13062600,6845667,3
+pandorapple,6845667,4
+61681574,6845667,3
+52214552,6845667,5
+ADmoviemtime,6845667,4
+50000718,6845667,4
+99942273,6845667,4
+STanLey_TanSoLo,6845667,3
+52345284,6845667,4
+zhaoyu1222,6845667,4
+72970549,6845667,5
+131881210,6845667,5
+AirCastle,6845667,5
+2866973,6845667,5
+1762954,6845667,3
+78501893,6845667,-1
+48731812,6845667,5
+40141522,6845667,4
+123469699,6845667,4
+60095742,6845667,5
+33149603,6845667,5
+131025711,6845667,2
+46012521,6845667,4
+yzone,6845667,4
+wyzhcn,6845667,4
+127917109,6845667,2
+4118910,6845667,4
+2387348,6845667,4
+pepereina,6845667,4
+vivianya,6845667,4
+wateringFishS,6845667,3
+yypudding,6845667,5
+37092553,6845667,3
+59027708,6845667,3
+olivia1016,6845667,4
+41837755,6845667,3
+sunny1992,6845667,3
+38780906,6845667,4
+royz,6845667,3
+cloudy20011128,6845667,4
+27019548,6845667,5
+heraunty,6845667,4
+39792754,6845667,4
+qinxinzhu,6845667,4
+Neeeeeverland,6845667,4
+Faithy26,6845667,5
+56586044,6845667,5
+71038565,6845667,5
+69529350,6845667,5
+59457349,6845667,5
+migo562,6845667,5
+1326010,6845667,4
+134417369,6845667,3
+46383568,6845667,4
+67009997,6845667,2
+3418984,6845667,4
+bfa1950,6845667,4
+90097591,6845667,1
+3454428,6845667,4
+73542789,6845667,3
+tjz230,6845667,3
+90480173,6845667,4
+2323600,6845667,5
+134067468,6845667,5
+3878223,6845667,5
+69986931,6845667,4
+2265374,6845667,5
+47259646,6845667,4
+xiaohe5210,6845667,4
+4804072,6845667,-1
+86836719,6845667,5
+winxberg,6845667,5
+sunshinean2000,6845667,4
+87956504,6845667,5
+60844857,6845667,4
+53362350,6845667,5
+62917977,6845667,3
+sephilish,6845667,4
+zeph1462,6845667,4
+vickkid,6845667,5
+44034935,6845667,5
+50887988,6845667,2
+91816564,6845667,3
+103793768,6845667,3
+52179978,6845667,3
+91243092,6845667,4
+VampirX,6845667,5
+84309358,6845667,5
+47958996,6845667,3
+woruili,6845667,4
+137076197,6845667,4
+cherrywoodpig,6845667,5
+126980247,6845667,4
+131088732,6845667,4
+2227798,6845667,3
+97977376,6845667,4
+34063715,6845667,4
+48245531,6845667,5
+Sandorothy,6845667,2
+thisisstan,6845667,5
+iker-estrella,6845667,4
+stevense,6845667,3
+alamao,6845667,-1
+1394891,6845667,4
+51635702,6845667,3
+48062615,6845667,4
+49703092,6845667,5
+1252761,6845667,4
+83507458,6845667,4
+50938017,6845667,4
+56484149,6845667,4
+yansihan,6845667,5
+68628453,6845667,-1
+liqiyao8931,6845667,5
+137073841,6845667,4
+ivis1989,6845667,4
+ivis1989,6845667,4
+48153292,6845667,5
+78966790,6845667,3
+Cycneverstop,6845667,4
+dhrgxf,6845667,5
+Fucking_hell,6845667,4
+apoorguitar,6845667,4
+133795191,6845667,2
+lizzen,6845667,-1
+95442218,6845667,4
+137072980,6845667,3
+62662600,6845667,4
+duoduoshuwu,6845667,3
+39015968,6845667,4
+6243740,6845667,3
+funnyface,6845667,4
+wunie,6845667,4
+ryanp,6845667,-1
+2994065,6845667,4
+darkbob,6845667,5
+61415856,6845667,4
+chesterchoi,6845667,4
+46237216,6845667,5
+tongnixcv,6845667,3
+nofer,6845667,4
+Magicians,6845667,4
+49298846,6845667,5
+16084893,6845667,3
+57729353,6845667,5
+xuaoling,6845667,3
+65164486,6845667,5
+bt4ever,6845667,5
+60440382,6845667,5
+3379023,6845667,4
+justleeee,6845667,4
+1182787,6845667,2
+70990506,6845667,4
+59964725,6845667,4
+callmeblack,6845667,4
+hjzj,6845667,2
+49922437,6845667,3
+67575567,6845667,4
+joker112,6845667,5
+125010605,6845667,4
+4299667,6845667,4
+3264232,6845667,5
+2030100,6845667,4
+catfacegirl,6845667,4
+34753066,6845667,4
+43867451,6845667,5
+fyxx101,6845667,4
+WiseUncleWu,6845667,4
+caspiandc,6845667,3
+48988166,6845667,5
+2338857,6845667,3
+konglinghuanyin,6845667,5
+40956109,6845667,5
+zxpjs,6845667,3
+82655767,6845667,4
+50585223,6845667,5
+Bebefore,6845667,4
+136409582,6845667,4
+53581844,6845667,3
+123048108,6845667,5
+37640485,6845667,5
+1795295,6845667,4
+61890434,6845667,4
+131186363,6845667,3
+115483881,6845667,3
+127131340,6845667,3
+51525177,6845667,5
+45268716,6845667,4
+50547349,6845667,3
+suitsue0504,6845667,3
+67184394,6845667,4
+132811341,6845667,4
+67653468,6845667,4
+jackoldbear,6845667,3
+vsunan,6845667,3
+AlexYJ,6845667,3
+45543286,6845667,4
+nimonnwang,6845667,5
+127111031,6845667,2
+56035103,6845667,5
+50616224,6845667,5
+voilalilas,6845667,4
+fangyuan1mi,6845667,4
+gezi921054,6845667,4
+errena,6845667,4
+97277841,6845667,4
+62308731,6845667,5
+135964291,6845667,4
+bettyzhu,6845667,4
+cris7ss,6845667,3
+bearhao1976,6845667,3
+cunzeg,6845667,3
+52399993,6845667,1
+phunny,6845667,3
+100413156,6845667,4
+Grace_Xuliang,6845667,4
+43375121,6845667,3
+81645668,6845667,3
+laycher,6845667,3
+lorry316,6845667,5
+kimomo,6845667,3
+48093431,6845667,4
+55321548,6845667,4
+4869541,6845667,3
+raychau,6845667,4
+1250982,6845667,4
+yasenluobin,6845667,3
+rapunzeld,6845667,3
+56583743,6845667,-1
+135323724,6845667,4
+3201544,6845667,4
+shikeyifeng,6845667,4
+65123381,6845667,4
+51410491,6845667,4
+73577019,6845667,3
+y19940504,6845667,5
+y19940504,6845667,5
+2921812,6845667,4
+xihahaha,6845667,3
+xuancaidanqing,6845667,4
+72569635,6845667,4
+55924051,6845667,4
+sxy921026,6845667,3
+RouYang,6845667,5
+37495463,6845667,4
+115552732,6845667,3
+vinnywang,6845667,4
+41644891,6845667,3
+76302090,6845667,4
+turinglee,6845667,4
+tina0330,6845667,4
+takahashili,6845667,3
+43858841,6845667,4
+102938445,6845667,3
+colintide,6845667,3
+35499398,6845667,4
+1324592,6845667,4
+46888824,6845667,5
+yujiuwei,6845667,4
+Momo-at1615,6845667,5
+liancheng,6845667,5
+127603477,6845667,4
+58290785,6845667,3
+1303479,6845667,2
+2756953,6845667,4
+51841040,6845667,4
+M-chris,6845667,4
+65187145,6845667,4
+56684398,6845667,3
+41864568,6845667,3
+48661159,6845667,3
+51049181,6845667,5
+gothickid,6845667,4
+32019435,6845667,3
+122868077,6845667,4
+37462874,6845667,5
+37462874,6845667,5
+59699452,6845667,4
+sophia.x,6845667,4
+1142853,6845667,3
+2111262,6845667,5
+51264470,6845667,4
+135703346,6845667,3
+3526854,6845667,5
+88074531,6845667,3
+68617780,6845667,4
+43354228,6845667,3
+65907866,6845667,4
+62944813,6845667,2
+120422590,6845667,5
+dorky,6845667,3
+cassandra73,6845667,5
+49536125,6845667,4
+shadowoflight,6845667,5
+64955104,6845667,4
+Jensen4ever,6845667,3
+Rayzhangcl,6845667,5
+85665063,6845667,4
+jersey0821,6845667,4
+rum1412,6845667,3
+57886651,6845667,4
+48369826,6845667,5
+ilv1840,6845667,4
+52872697,6845667,4
+111739039,6845667,3
+93294169,6845667,4
+56341447,6845667,5
+59370142,6845667,4
+53535052,6845667,5
+52994758,6845667,4
+59161683,6845667,5
+liaojiafen,6845667,4
+67238808,6845667,4
+maxmartin,6845667,5
+114809892,6845667,3
+57561635,6845667,5
+athrun1009,6845667,5
+ssssssa111,6845667,3
+100091686,6845667,4
+56493831,6845667,5
+94246293,6845667,4
+wxhsolo,6845667,4
+113163801,6845667,4
+aboutin,6845667,5
+43291484,6845667,4
+junqli86,6845667,4
+zcy2531,6845667,5
+129857538,6845667,5
+134171030,6845667,4
+129775647,6845667,5
+gabriel.yu,6845667,3
+51490972,6845667,2
+3547067,6845667,2
+riceseedling,6845667,2
+44284522,6845667,5
+dudumozart,6845667,3
+43297403,6845667,4
+ydyie,6845667,3
+bunny-say,6845667,4
+vianann,6845667,4
+82235522,6845667,4
+89565486,6845667,4
+87515685,6845667,5
+lynnstefanie,6845667,-1
+45463396,6845667,2
+2579946,6845667,2
+Tecsun,6845667,3
+yf611x,6845667,4
+44076173,6845667,4
+62798977,6845667,4
+108212384,6845667,5
+37402473,6845667,4
+34575902,6845667,3
+135724867,6845667,5
+4841197,6845667,4
+K_wang,6845667,4
+43405327,6845667,5
+62148442,6845667,5
+reaco,6845667,4
+43529469,6845667,5
+tracy77899,6845667,4
+syyofficer,6845667,3
+27088353,6845667,3
+43770198,6845667,4
+6270415,6845667,5
+lukaka,6845667,4
+chowmo,6845667,5
+maomao19901108,6845667,4
+1815039,6845667,3
+75318000,6845667,2
+codetco,6845667,4
+114635463,6845667,5
+60760442,6845667,4
+8244005,6845667,5
+50865043,6845667,3
+1610349,6845667,4
+84593268,6845667,4
+1068125,6845667,3
+59113427,6845667,4
+81197029,6845667,4
+zyw,6845667,3
+xyhen,6845667,3
+zcy0505,6845667,5
+52081497,6845667,3
+1516524,6845667,3
+ThreeMonkey,6845667,3
+71416831,6845667,4
+61398424,6845667,5
+57775883,6845667,4
+54277204,6845667,3
+96175707,6845667,4
+78667352,6845667,5
+55780099,6845667,5
+vanvin,6845667,3
+miqingye,6845667,3
+lee7lee,6845667,3
+lee7lee,6845667,3
+101287383,6845667,3
+2796731,6845667,5
+130154428,6845667,3
+strangernora,6845667,-1
+60752953,6845667,-1
+66660989,6845667,5
+austinswift,6845667,4
+ekiz,6845667,3
+113050393,6845667,4
+63348856,6845667,4
+66598168,6845667,4
+tildali1214,6845667,4
+45103496,6845667,1
+115660168,6845667,5
+44601282,6845667,3
+120287193,6845667,5
+flrit,6845667,5
+may6913,6845667,5
+65054483,6845667,3
+66979226,6845667,4
+kezhangaima,6845667,5
+doraeman,6845667,4
+34638255,6845667,5
+envyandecho,6845667,5
+tracytao,6845667,4
+MyloveXxy,6845667,4
+xguozi,6845667,4
+Do-my-self,6845667,4
+115702012,6845667,5
+4454517,6845667,5
+134574897,6845667,3
+49566063,6845667,2
+zi34lang,6845667,2
+1320971,6845667,5
+35241807,6845667,3
+wuhuihong1992,6845667,5
+freestyle1993,6845667,5
+1892627,6845667,3
+birch,6845667,4
+57517262,6845667,3
+jeyhello,6845667,4
+108821133,6845667,4
+kafaka,6845667,4
+104050982,6845667,3
+36307686,6845667,5
+blackscreen,6845667,4
+ruyan0521,6845667,5
+52104896,6845667,3
+45078646,6845667,4
+4452998,6845667,5
+53896477,6845667,5
+4190834,6845667,4
+35365939,6845667,3
+catherine_koo,6845667,4
+sanrio1992,6845667,5
+38514261,6845667,4
+125668189,6845667,4
+83299695,6845667,3
+tofrom,6845667,3
+70242419,6845667,5
+40335342,6845667,4
+Narcisken,6845667,4
+jasocn,6845667,5
+72391986,6845667,3
+69225702,6845667,2
+47325319,6845667,3
+63612050,6845667,4
+26921092,6845667,-1
+66831677,6845667,5
+the920,6845667,4
+lifest,6845667,4
+weiguangyinghuo,6845667,4
+49893816,6845667,4
+rockinghead,6845667,-1
+120069048,6845667,4
+47266655,6845667,5
+48316305,6845667,5
+5854721,6845667,4
+cyrus_wong,6845667,3
+aprilhan,6845667,4
+40067511,6845667,3
+47870683,6845667,5
+xml1112,6845667,4
+lanyangyangdecc,6845667,4
+xong,6845667,5
+75007342,6845667,3
+sable_in_red,6845667,4
+dannyZ,6845667,4
+xxnya,6845667,5
+45025869,6845667,4
+128902296,6845667,4
+46673618,6845667,4
+58993842,6845667,5
+88078787,6845667,5
+64113646,6845667,4
+64223729,6845667,4
+2165653,6845667,4
+46815070,6845667,2
+84091392,6845667,4
+QuentinQiu,6845667,4
+3053086,6845667,3
+Rae.Y,6845667,5
+arthurx,6845667,4
+dogfish,6845667,4
+128468373,6845667,5
+54410090,6845667,4
+50094689,6845667,4
+ceciliamuzi,6845667,4
+62118386,6845667,4
+60347813,6845667,3
+44436573,6845667,5
+xiaoqianquan,6845667,5
+jbecks,6845667,3
+49455679,6845667,4
+er953921,6845667,4
+1555908,6845667,4
+49734677,6845667,3
+3874009,6845667,5
+94767276,6845667,5
+john1986,6845667,4
+liyuanhui,6845667,4
+Claire_Ding,6845667,4
+aki0726,6845667,4
+shiro666,6845667,5
+50118085,6845667,4
+1364563,6845667,4
+fenxinyu,6845667,3
+3617275,6845667,4
+84760249,6845667,4
+71267771,6845667,5
+64713560,6845667,3
+46920813,6845667,5
+130435722,6845667,4
+76999762,6845667,5
+ajuews,6845667,5
+17881602,6845667,5
+maxghj,6845667,5
+helloivan,6845667,4
+51689962,6845667,3
+38040905,6845667,3
+19469713,6845667,4
+54437511,6845667,4
+43330235,6845667,4
+77905933,6845667,5
+84278342,6845667,5
+qq53117256,6845667,4
+2628753,6845667,4
+lomers,6845667,4
+69454101,6845667,4
+3184101,6845667,3
+wuwuzizi,6845667,5
+69068097,6845667,4
+pm,6845667,3
+44833816,6845667,3
+2106137,6845667,4
+EnBunSyun,6845667,2
+44182814,6845667,4
+60417212,6845667,5
+1077570,6845667,5
+1077570,6845667,5
+yuedawei,6845667,3
+114994723,6845667,5
+81639579,6845667,4
+45659325,6845667,-1
+131497305,6845667,5
+57762260,6845667,3
+42821103,6845667,4
+43988930,6845667,3
+Crayon,6845667,5
+WanGenius,6845667,5
+kiryoYNG,6845667,4
+65111838,6845667,5
+49772004,6845667,4
+62314563,6845667,5
+76251078,6845667,4
+Exaiy,6845667,4
+61713856,6845667,4
+56936714,6845667,5
+47899427,6845667,5
+userzero,6845667,5
+46981423,6845667,5
+flower_crossing,6845667,4
+42247042,6845667,4
+55675710,6845667,4
+47845902,6845667,3
+PatrickMYK,6845667,4
+jewelshao,6845667,4
+1845398,6845667,4
+68366606,6845667,3
+35477330,6845667,3
+54159008,6845667,5
+47808773,6845667,3
+63494405,6845667,5
+soranya,6845667,5
+30016549,6845667,4
+author,6845667,2
+34674400,6845667,3
+130328147,6845667,4
+moryfor,6845667,3
+34919139,6845667,5
+1463503,6845667,2
+superrao,6845667,4
+50178808,6845667,3
+52192124,6845667,4
+60234742,6845667,4
+haman,6845667,5
+3385352,6845667,4
+102203140,6845667,5
+vito0719,6845667,5
+62418513,6845667,5
+cwill,6845667,4
+76790888,6845667,5
+115547734,6845667,2
+52456095,6845667,3
+54880097,6845667,5
+135779480,6845667,4
+47563229,6845667,4
+vikawang,6845667,4
+lonelyhedgehog,6845667,4
+lonelyhedgehog,6845667,4
+beckham7,6845667,3
+73189108,6845667,4
+122981729,6845667,4
+isaakfvkampfer,6845667,5
+ET-Jac,6845667,4
+fourjings,6845667,5
+cantona_x,6845667,4
+45069650,6845667,4
+54234447,6845667,4
+zxt1219,6845667,3
+f91_82,6845667,4
+43989001,6845667,5
+52124959,6845667,5
+richardzrc,6845667,4
+vivianlovesun,6845667,5
+35929918,6845667,4
+92806168,6845667,5
+Knighail,6845667,4
+ruilixiurui,6845667,4
+yaoyamin,6845667,5
+58696033,6845667,4
+39863904,6845667,4
+81998298,6845667,4
+edenhsu,6845667,3
+52765670,6845667,4
+2411985,6845667,5
+53032069,6845667,5
+23730457,6845667,4
+Aso,6845667,5
+27432217,6845667,3
+1234887,6845667,4
+52160935,6845667,4
+3476283,6845667,5
+46483875,6845667,3
+42539278,6845667,5
+2162982,6845667,5
+68968517,6845667,5
+51120053,6845667,5
+63927330,6845667,5
+69045210,6845667,3
+yc_0619,6845667,3
+70390842,6845667,5
+47319771,6845667,5
+127256948,6845667,4
+51943027,6845667,3
+junoqi,6845667,5
+45982463,6845667,3
+lingdongling,6845667,5
+70781968,6845667,5
+fangmuchen1314,6845667,3
+cyy9828,6845667,3
+59127988,6845667,3
+55925233,6845667,2
+liuxiangchao,6845667,4
+1508707,6845667,5
+74084881,6845667,5
+gavinturkey,6845667,5
+42306867,6845667,5
+leechambo,6845667,4
+33528664,6845667,3
+98581759,6845667,4
+allanlou,6845667,5
+julingshen,6845667,5
+56994135,6845667,5
+83192314,6845667,5
+h514367193,6845667,4
+4116226,6845667,4
+raen,6845667,3
+35546848,6845667,3
+135687100,6845667,4
+ghostjoe,6845667,4
+50106958,6845667,5
+63930074,6845667,5
+jpjc222,6845667,5
+62198966,6845667,4
+2955572,6845667,5
+readyliu,6845667,4
+dear-anonymous,6845667,4
+SKIN69-L,6845667,4
+2829825,6845667,5
+88101207,6845667,4
+3493629,6845667,5
+55617091,6845667,3
+janejanegulu,6845667,3
+jade0711,6845667,4
+mrsrost,6845667,4
+2052146,6845667,-1
+xu77,6845667,4
+3183207,6845667,-1
+xiaosongqu,6845667,4
+sunny333,6845667,5
+48059977,6845667,4
+3092474,6845667,3
+cai1st,6845667,4
+Acinom,6845667,3
+132592664,6845667,5
+joybang,6845667,4
+29662178,6845667,4
+jiangye,6845667,4
+36359450,6845667,4
+89852120,6845667,4
+48591645,6845667,4
+rajorAn,6845667,4
+aprilivin,6845667,4
+Yu-Tommy,6845667,4
+majoselyqiujuan,6845667,5
+132719459,6845667,4
+15342214,6845667,4
+Fomy,6845667,4
+kamine,6845667,4
+3506880,6845667,4
+56198518,6845667,3
+75543467,6845667,3
+64880714,6845667,3
+84564093,6845667,3
+59940868,6845667,5
+junyilee,6845667,5
+2054540,6845667,5
+2714153,6845667,5
+122949105,6845667,5
+1751457,6845667,5
+53920626,6845667,4
+1791853,6845667,5
+3063479,6845667,4
+53616337,6845667,3
+1828101,6845667,3
+85866685,6845667,4
+83433400,6845667,3
+126804729,6845667,3
+tanwenqiang,6845667,4
+81757410,6845667,3
+owenclv,6845667,3
+16026833,6845667,4
+8312118,6845667,5
+sheldonkao,6845667,4
+4516843,6845667,3
+56396911,6845667,4
+32564748,6845667,5
+75169660,6845667,4
+61461484,6845667,4
+Ihuiyao,6845667,5
+1935613,6845667,3
+Yvonne0627,6845667,5
+104742376,6845667,4
+Clara0916,6845667,5
+shenluos,6845667,3
+54126939,6845667,4
+COCOCOQUEEN,6845667,3
+90543489,6845667,4
+SuzyMao,6845667,3
+42242645,6845667,-1
+Baronera,6845667,5
+136486316,6845667,4
+69680398,6845667,4
+insomniafish,6845667,4
+1302983,6845667,4
+78413869,6845667,2
+70055114,6845667,3
+yfxiang,6845667,4
+6023961,6845667,3
+18045809,6845667,4
+78871037,6845667,4
+xfile99,6845667,3
+44865324,6845667,4
+91182826,6845667,3
+47821826,6845667,4
+wyjfl,6845667,4
+81771803,6845667,4
+56739185,6845667,4
+piaoyull,6845667,3
+eiji218837,6845667,3
+xiaopang1106,6845667,4
+58739148,6845667,5
+121620281,6845667,5
+75189651,6845667,5
+Tylermrx,6845667,3
+1427200,6845667,4
+36193600,6845667,3
+67298685,6845667,4
+62582526,6845667,3
+130404838,6845667,5
+1135938,6845667,4
+Son47,6845667,4
+BlackOpIum,6845667,4
+51997514,6845667,3
+81560578,6845667,5
+13857069,6845667,4
+dee,6845667,4
+52637584,6845667,5
+92934548,6845667,5
+zengchinhuang,6845667,5
+lifan1980,6845667,5
+4475200,6845667,5
+mazerine,6845667,4
+poxiaozhe,6845667,4
+cocojamboo,6845667,3
+jiqingyi,6845667,3
+76099210,6845667,5
+61317282,6845667,5
+61317282,6845667,5
+62761738,6845667,5
+57570888,6845667,3
+alj,6845667,4
+80483514,6845667,3
+dancelatoto,6845667,4
+xlei130,6845667,3
+64879609,6845667,4
+57038536,6845667,4
+91359652,6845667,5
+geb515,6845667,2
+121787421,6845667,5
+lianxiben,6845667,4
+49130385,6845667,5
+4643138,6845667,5
+39959377,6845667,4
+terenceyibo,6845667,4
+Sharpay0405,6845667,4
+yvoxu,6845667,4
+shijoe,6845667,4
+caocaoa,6845667,3
+Mov1e-Clan,6845667,3
+o0xffff,6845667,5
+35623829,6845667,5
+p2165,6845667,3
+2891944,6845667,4
+66696808,6845667,4
+73979703,6845667,3
+59629580,6845667,4
+103598804,6845667,5
+4115987,6845667,5
+55324515,6845667,4
+hehe2day,6845667,5
+2190029,6845667,4
+69840641,6845667,4
+senlintu,6845667,4
+moveqiu,6845667,3
+littletraveler,6845667,4
+wushishiwo,6845667,5
+geoffero,6845667,3
+133471355,6845667,5
+2872360,6845667,4
+zheyu,6845667,5
+sansimo,6845667,5
+79127642,6845667,5
+72719769,6845667,3
+58332166,6845667,4
+73377845,6845667,5
+50366197,6845667,5
+2174443,6845667,3
+34266139,6845667,5
+3078221,6845667,4
+64071503,6845667,5
+1259506,6845667,4
+3546937,6845667,5
+77151655,6845667,4
+52039512,6845667,5
+qiqihhappy,6845667,5
+masaike,6845667,3
+84430794,6845667,4
+deathangel54,6845667,4
+78957039,6845667,2
+56938346,6845667,5
+1596435,6845667,4
+101503219,6845667,5
+empty_icer,6845667,5
+131179524,6845667,4
+37751161,6845667,5
+kimi-1119,6845667,4
+52499368,6845667,3
+Cathybebrave,6845667,4
+laespoirao,6845667,5
+77058316,6845667,5
+33325877,6845667,5
+126239848,6845667,5
+62318575,6845667,4
+14914580,6845667,4
+3911866,6845667,3
+BuckyBarnes,6845667,4
+1844983,6845667,5
+ethanlau,6845667,3
+grannys_bear,6845667,2
+52862060,6845667,5
+37965167,6845667,-1
+44326808,6845667,5
+nathaliema,6845667,5
+sentimento-rose,6845667,5
+59025385,6845667,3
+36086845,6845667,4
+Jessica_Nangong,6845667,5
+136593943,6845667,4
+47480428,6845667,4
+loveloki913,6845667,5
+janicekim,6845667,4
+linger37,6845667,3
+3519238,6845667,5
+4151637,6845667,5
+45655057,6845667,5
+chemicalromance,6845667,4
+26411537,6845667,4
+ishikari,6845667,4
+56532469,6845667,4
+49307986,6845667,4
+zhmcyake,6845667,4
+69277440,6845667,4
+pengyaos,6845667,4
+44849027,6845667,5
+1848823,6845667,5
+xuxu2333,6845667,5
+27598248,6845667,4
+m_l,6845667,5
+121656332,6845667,4
+80162841,6845667,5
+willis1106,6845667,5
+82145185,6845667,4
+49308797,6845667,5
+oppih,6845667,5
+3629692,6845667,5
+zhoulucy,6845667,4
+63676625,6845667,3
+63676625,6845667,3
+sirui54,6845667,5
+2850261,6845667,4
+75231611,6845667,4
+58369888,6845667,3
+2659195,6845667,5
+loveanimals,6845667,3
+niazion,6845667,5
+67211309,6845667,4
+65731916,6845667,5
+xiaohu2008,6845667,5
+55715149,6845667,3
+45207380,6845667,4
+pisa_cz,6845667,5
+62825162,6845667,5
+121517314,6845667,3
+34040442,6845667,5
+53523221,6845667,5
+1823227,6845667,4
+2016454,6845667,4
+2555357,6845667,5
+83980530,6845667,4
+58194812,6845667,5
+wen_Schwartz,6845667,1
+elinorshen,6845667,4
+72480107,6845667,5
+1998296,6845667,4
+54475855,6845667,5
+58033392,6845667,3
+37424688,6845667,4
+88317701,6845667,5
+2429292,6845667,3
+121844395,6845667,4
+61497577,6845667,4
+45536018,6845667,4
+7255952,6845667,4
+masaikejun,6845667,4
+60140602,6845667,4
+115618317,6845667,5
+57589094,6845667,4
+44022921,6845667,3
+40395158,6845667,2
+51384913,6845667,4
+surewen,6845667,5
+64740791,6845667,2
+tt1426,6845667,4
+45446265,6845667,4
+47724316,6845667,4
+129645509,6845667,4
+44888841,6845667,-1
+83389859,6845667,4
+huantong,6845667,4
+cocytus,6845667,3
+Riverwatcher,6845667,4
+68970024,6845667,4
+53291556,6845667,5
+67679868,6845667,3
+51426516,6845667,4
+119343632,6845667,5
+zhongshanaoli,6845667,4
+aivnce,6845667,4
+ask4more,6845667,-1
+KKKCI,6845667,4
+56922790,6845667,4
+glasstar,6845667,5
+attshuo,6845667,4
+tennystime,6845667,4
+49012459,6845667,4
+jinweishen,6845667,5
+hika99,6845667,4
+71107908,6845667,5
+113124571,6845667,5
+chuanshu,6845667,4
+zhangrihe,6845667,4
+2305028,6845667,4
+58278187,6845667,4
+51226041,6845667,4
+1074069,6845667,4
+skyisquiet,6845667,3
+imoviekobe,6845667,2
+122978902,6845667,5
+ftxnj,6845667,5
+15338047,6845667,4
+88140661,6845667,3
+pineberry,6845667,4
+82687720,6845667,4
+47108985,6845667,3
+57088195,6845667,4
+92468807,6845667,3
+87558584,6845667,4
+10618924,6845667,5
+27028067,6845667,3
+4447712,6845667,4
+43153098,6845667,4
+jingying11,6845667,5
+alonggauss,6845667,4
+21606016,6845667,4
+3880942,6845667,4
+61726273,6845667,4
+3435112,6845667,4
+bronco,6845667,5
+heming_way,6845667,4
+kevinsy,6845667,4
+tangjiaqi,6845667,3
+53765771,6845667,4
+133906973,6845667,3
+30492787,6845667,4
+4664430,6845667,4
+89700756,6845667,5
+fatia0,6845667,5
+dupang,6845667,4
+53062972,6845667,3
+122101793,6845667,-1
+kagehappy,6845667,4
+zykmilan,6845667,4
+73478164,6845667,2
+cangbaicanku,6845667,4
+hnnyzxh,6845667,4
+chqqq,6845667,5
+shuikanshuizhid,6845667,4
+40334840,6845667,2
+fuzyu,6845667,5
+58096445,6845667,4
+77257136,6845667,4
+46818877,6845667,3
+74193285,6845667,5
+68420280,6845667,2
+37633509,6845667,5
+lauer,6845667,4
+38138105,6845667,5
+62245513,6845667,3
+1096452,6845667,4
+61311789,6845667,3
+51021889,6845667,4
+35294199,6845667,5
+taotaomvp,6845667,4
+52199185,6845667,5
+48480567,6845667,3
+46527269,6845667,5
+2304501,6845667,4
+nanhualyq,6845667,5
+59856519,6845667,3
+Mr..k.ing,6845667,5
+51670628,6845667,3
+braveshengchun,6845667,5
+48886320,6845667,5
+40950202,6845667,4
+ekamiao,6845667,5
+61132884,6845667,3
+52021990,6845667,5
+25023693,6845667,-1
+68294915,6845667,4
+AlBiKlose,6845667,3
+fat_hill,6845667,4
+57610764,6845667,4
+37420300,6845667,5
+lfyaya,6845667,4
+hecategk,6845667,5
+77610965,6845667,4
+68699271,6845667,3
+theaxell,6845667,5
+52146606,6845667,4
+endlessid,6845667,1
+2232768,6845667,5
+1268296,6845667,4
+82823263,6845667,3
+mrlp,6845667,4
+59695133,6845667,4
+53905733,6845667,4
+yomuxi,6845667,4
+59099811,6845667,3
+64009647,6845667,4
+3477296,6845667,4
+4139518,6845667,5
+32505572,6845667,4
+cpt21,6845667,4
+ooxx00xx,6845667,5
+nicoyan,6845667,5
+53829796,6845667,4
+3908249,6845667,5
+Oliver_Lu,6845667,4
+78937198,6845667,5
+73060633,6845667,4
+silentg,6845667,3
+moonorz,6845667,3
+51212428,6845667,5
+90859526,6845667,3
+62195893,6845667,4
+libangsi,6845667,5
+1066031,6845667,3
+136878015,6845667,2
+4826633,6845667,4
+51763291,6845667,5
+43596686,6845667,5
+67673869,6845667,5
+58774315,6845667,5
+starmaro,6845667,5
+housefuture,6845667,4
+70915171,6845667,5
+131632042,6845667,4
+kerorocao,6845667,5
+Just_vv,6845667,5
+2438025,6845667,5
+66716197,6845667,5
+russelrain,6845667,5
+bunnydoll,6845667,4
+wusiyi,6845667,4
+KUBRICK2OO1,6845667,3
+104777463,6845667,5
+41555500,6845667,4
+yovng,6845667,3
+71697872,6845667,4
+pierrewrs,6845667,5
+ballteda,6845667,2
+4469131,6845667,3
+52433144,6845667,3
+baijixing,6845667,5
+61468495,6845667,3
+99977887,6845667,5
+126202371,6845667,4
+neilxy,6845667,5
+60154183,6845667,3
+132541787,6845667,5
+120830012,6845667,5
+58899374,6845667,3
+zini8023,6845667,4
+63989347,6845667,4
+51736421,6845667,-1
+zuozuo1990,6845667,4
+willing-willing,6845667,4
+SubsetsFrank,6845667,5
+wang2v,6845667,5
+50761421,6845667,4
+81391880,6845667,3
+justdust,6845667,4
+93924879,6845667,3
+40573013,6845667,3
+3634287,6845667,3
+nigu_lulu,6845667,4
+nancy425,6845667,4
+53768301,6845667,4
+60304638,6845667,3
+yalindongdong,6845667,3
+118862756,6845667,3
+1672417,6845667,4
+34894274,6845667,3
+86585180,6845667,4
+74491212,6845667,4
+Ron1230,6845667,3
+44649844,6845667,3
+69838036,6845667,4
+weini0410,6845667,4
+Kso-go,6845667,4
+68655879,6845667,5
+ys1013,6845667,2
+58023617,6845667,5
+1511879,6845667,5
+63403641,6845667,5
+53292474,6845667,5
+ZouzheFoudouzhe,6845667,4
+teikamouse,6845667,3
+73983245,6845667,5
+68093704,6845667,4
+102446060,6845667,5
+104007429,6845667,4
+54231536,6845667,4
+45030783,6845667,5
+selenesun,6845667,3
+75325570,6845667,4
+51570538,6845667,5
+52622213,6845667,5
+2107134,6845667,5
+nanzang,6845667,4
+60536752,6845667,5
+34588630,6845667,4
+1412545,6845667,3
+2858394,6845667,5
+3362140,6845667,5
+48501189,6845667,5
+37899965,6845667,3
+37899965,6845667,3
+84675514,6845667,4
+58956237,6845667,3
+48770075,6845667,4
+qian_natsu,6845667,4
+46405443,6845667,3
+MaxinAn,6845667,4
+46534834,6845667,5
+62298176,6845667,3
+tsoo416,6845667,3
+63527236,6845667,3
+81519024,6845667,5
+zhujiao,6845667,3
+xilouchen,6845667,3
+yangzhaohua,6845667,5
+41717444,6845667,3
+83484959,6845667,-1
+yangui,6845667,5
+Mr.pea,6845667,3
+50474016,6845667,5
+RemyAnderson,6845667,3
+48047032,6845667,4
+49343894,6845667,2
+58689768,6845667,5
+iceyvonne,6845667,3
+juwujian,6845667,3
+56849444,6845667,5
+2668037,6845667,4
+Quester,6845667,5
+lt22550164,6845667,4
+69196405,6845667,5
+51490120,6845667,3
+63277654,6845667,4
+joannaZR,6845667,4
+57367354,6845667,4
+58249501,6845667,4
+4587143,6845667,5
+hijikataT,6845667,4
+135209955,6845667,4
+3189714,6845667,3
+1743223,6845667,4
+carboot,6845667,5
+84418105,6845667,-1
+48885291,6845667,3
+80872006,6845667,5
+4597338,6845667,3
+51836771,6845667,5
+AndersonNeo,6845667,5
+luhang363,6845667,5
+3209049,6845667,4
+84551349,6845667,3
+127962821,6845667,5
+80797429,6845667,4
+78448254,6845667,4
+HL0919,6845667,4
+raven1916,6845667,5
+9054621,6845667,4
+55287270,6845667,4
+amiaaso,6845667,4
+136096165,6845667,5
+99414276,6845667,3
+48354152,6845667,4
+116213668,6845667,2
+futurama,6845667,4
+adaxiang1205,6845667,4
+Kev.Garnett,6845667,3
+130150805,6845667,4
+23575352,6845667,3
+fyl00,6845667,4
+meiyouyun,6845667,3
+73767002,6845667,4
+58217178,6845667,3
+50353681,6845667,5
+57077807,6845667,3
+queeniwy,6845667,5
+xianxianchen,6845667,4
+41482074,6845667,4
+64109076,6845667,4
+46266479,6845667,5
+59914430,6845667,4
+3513365,6845667,3
+120480108,6845667,3
+60932260,6845667,4
+58649588,6845667,3
+takigo,6845667,4
+1643427,6845667,4
+135751000,6845667,4
+balynss,6845667,5
+46891725,6845667,4
+2127037,6845667,5
+48509446,6845667,4
+adrian.chai.au,6845667,4
+imlove,6845667,4
+amerway,6845667,3
+zuiaidaluobo,6845667,5
+49998853,6845667,2
+lamsee,6845667,4
+53024139,6845667,4
+82223749,6845667,4
+brigittehoo,6845667,3
+47546589,6845667,3
+42803233,6845667,3
+125282020,6845667,4
+twitodd,6845667,5
+maxxie88,6845667,4
+eatonzh,6845667,4
+68342150,6845667,4
+51629650,6845667,5
+vincen1208,6845667,4
+Sen.Z,6845667,5
+3631042,6845667,4
+1450499,6845667,5
+61260966,6845667,4
+61312247,6845667,4
+slimseven,6845667,3
+79617229,6845667,5
+96497379,6845667,4
+hanqiu1995,6845667,4
+L45oc,6845667,5
+56711007,6845667,3
+czj950615,6845667,3
+1364278,6845667,3
+2482985,6845667,4
+58161520,6845667,5
+adelineadele,6845667,5
+simple-wy,6845667,5
+1316648,6845667,4
+46991549,6845667,4
+65907091,6845667,5
+77880814,6845667,4
+52562845,6845667,4
+Leoshirley,6845667,5
+44006704,6845667,2
+abin520918,6845667,4
+nangle,6845667,2
+kylingu,6845667,4
+ashley17,6845667,3
+deandai,6845667,4
+70389132,6845667,4
+bozil,6845667,4
+moradin,6845667,4
+59709563,6845667,5
+78065496,6845667,3
+souring,6845667,4
+47806100,6845667,4
+60486561,6845667,3
+45219094,6845667,5
+13872529,6845667,4
+allblue,6845667,3
+58836054,6845667,4
+3977584,6845667,4
+70868373,6845667,5
+cm627,6845667,4
+102440738,6845667,3
+4239908,6845667,5
+shenliyang,6845667,5
+Varatril,6845667,4
+xuanyushuo,6845667,3
+41786270,6845667,3
+duanziyu,6845667,-1
+duanziyu,6845667,-1
+106663926,6845667,3
+48164798,6845667,4
+sifangfengdong,6845667,4
+98500983,6845667,2
+1149341,6845667,3
+60049862,6845667,5
+72504662,6845667,4
+74955890,6845667,4
+biskup,6845667,3
+lcghere,6845667,3
+shine495_,6845667,4
+50900048,6845667,3
+reave,6845667,4
+53246779,6845667,5
+lostlandist,6845667,4
+cuishuang,6845667,-1
+olioli2006,6845667,3
+1381065,6845667,4
+doctorzark,6845667,4
+65366516,6845667,3
+yipiankongbai,6845667,5
+favezhihao,6845667,4
+87651171,6845667,2
+93900680,6845667,4
+75869572,6845667,5
+Time-Trust,6845667,3
+65915294,6845667,5
+94032593,6845667,4
+4716205,6845667,5
+4557738,6845667,5
+lmx1220,6845667,5
+34617683,6845667,-1
+103358688,6845667,5
+halfsquare,6845667,4
+3688568,6845667,4
+nearlloveyou,6845667,3
+133995843,6845667,5
+47417998,6845667,3
+Brego,6845667,4
+52470011,6845667,4
+53793059,6845667,4
+91031128,6845667,5
+44172595,6845667,5
+125663520,6845667,4
+aspira,6845667,5
+54030275,6845667,4
+39022168,6845667,-1
+48854947,6845667,4
+56207725,6845667,5
+45583268,6845667,4
+agentying,6845667,3
+starstargoo,6845667,1
+merengue,6845667,4
+134362348,6845667,4
+42775906,6845667,4
+48777727,6845667,3
+1886385,6845667,4
+3641651,6845667,3
+63730928,6845667,2
+louis4498,6845667,4
+76058867,6845667,4
+flydolphin,6845667,4
+51252348,6845667,3
+50210563,6845667,4
+52529736,6845667,4
+71966924,6845667,5
+53455992,6845667,5
+li2007,6845667,-1
+61136338,6845667,2
+51549155,6845667,4
+arthurwen,6845667,2
+icepenny77,6845667,4
+wzn,6845667,3
+btone0808,6845667,3
+leonhardtdb,6845667,4
+78925849,6845667,4
+70469575,6845667,3
+twopersons,6845667,4
+zonovo,6845667,3
+51202994,6845667,5
+jianghucrab,6845667,4
+yoyoyoyoyoyoyo,6845667,4
+coxat,6845667,4
+stanup,6845667,3
+lmhluvmovie,6845667,5
+baisechengai,6845667,5
+joyjay,6845667,2
+flytomilan,6845667,5
+figue,6845667,3
+59129484,6845667,5
+cazze,6845667,4
+afa1021,6845667,4
+feelmyworld,6845667,3
+73959584,6845667,4
+66787345,6845667,4
+4324772,6845667,4
+cyz0313,6845667,4
+SweetCoffee,6845667,4
+120008046,6845667,2
+120008046,6845667,2
+2098235,6845667,4
+1033629,6845667,4
+59451032,6845667,4
+lixiadegua,6845667,-1
+lostinfire,6845667,4
+3729467,6845667,5
+28883826,6845667,5
+48666472,6845667,4
+45886049,6845667,4
+53833067,6845667,4
+fying,6845667,5
+58059498,6845667,4
+zweikun,6845667,4
+44862479,6845667,3
+Minimalis,6845667,4
+97517593,6845667,3
+zlyxxm,6845667,4
+53710950,6845667,4
+121182825,6845667,4
+121182825,6845667,4
+50470149,6845667,5
+49319979,6845667,3
+ymirlan,6845667,5
+kiki204629,6845667,4
+83974267,6845667,3
+42368147,6845667,2
+55711683,6845667,5
+122738024,6845667,3
+11035464,6845667,3
+46712687,6845667,1
+pariseros,6845667,5
+onegirl,6845667,2
+130990055,6845667,5
+58986889,6845667,5
+loudi,6845667,4
+67880800,6845667,2
+36667235,6845667,4
+58087167,6845667,5
+goodbyelenin,6845667,4
+89879186,6845667,5
+79706317,6845667,4
+Dcynic,6845667,3
+88356969,6845667,4
+89984750,6845667,4
+53559432,6845667,3
+ohahahu,6845667,4
+54334954,6845667,5
+62476143,6845667,5
+nyankoo,6845667,5
+70278597,6845667,4
+guppyfish,6845667,4
+71266039,6845667,4
+65269166,6845667,3
+neneha,6845667,-1
+peytonc,6845667,5
+65443106,6845667,3
+119413025,6845667,4
+134462242,6845667,4
+81107474,6845667,2
+Royeka.Es,6845667,4
+vividtime,6845667,4
+mistlessea,6845667,5
+73552244,6845667,4
+51489993,6845667,4
+71133496,6845667,4
+75678243,6845667,4
+73079867,6845667,4
+133398715,6845667,3
+belinda0717,6845667,4
+3772330,6845667,4
+octwo,6845667,4
+58283106,6845667,3
+83650519,6845667,4
+obsesser,6845667,4
+60420315,6845667,4
+aiolia,6845667,5
+74418129,6845667,5
+ILWTFT,6845667,4
+1333976,6845667,3
+wwnoah,6845667,5
+jadexyy,6845667,4
+dolcetta99,6845667,5
+61223246,6845667,5
+67632318,6845667,4
+mrfofo,6845667,4
+54734027,6845667,4
+49519192,6845667,5
+mackalex,6845667,2
+zhangdazhui,6845667,5
+117339283,6845667,5
+122331377,6845667,4
+tonyleung2046,6845667,3
+108077404,6845667,4
+3428014,6845667,4
+45784298,6845667,5
+46064508,6845667,4
+tinaxuang,6845667,5
+47782519,6845667,3
+diracot,6845667,5
+57931932,6845667,4
+48787128,6845667,4
+47709338,6845667,3
+leighshen,6845667,5
+qzl,6845667,4
+44191956,6845667,4
+iliuweiming,6845667,4
+3474662,6845667,4
+radiooo,6845667,2
+raquelycidas,6845667,4
+74855673,6845667,2
+helenhong,6845667,3
+Aaron_Tse,6845667,3
+18586571,6845667,4
+1756794,6845667,4
+iwei,6845667,4
+49668025,6845667,4
+56116508,6845667,3
+Chery,6845667,3
+49048693,6845667,4
+49048693,6845667,4
+45804814,6845667,4
+119807484,6845667,4
+4366766,6845667,4
+2784226,6845667,4
+yeslie,6845667,5
+4057670,6845667,4
+63396173,6845667,4
+81325605,6845667,4
+candicechang,6845667,4
+db_time,6845667,4
+63765493,6845667,5
+72993383,6845667,4
+52539806,6845667,3
+hyy_lili,6845667,4
+hooklt,6845667,4
+Gengxiaolele,6845667,5
+72792251,6845667,3
+32008707,6845667,5
+88938201,6845667,4
+wuyuloveelva,6845667,4
+iskl,6845667,5
+47256103,6845667,5
+136027630,6845667,3
+88109580,6845667,3
+135802167,6845667,5
+Flipped_Judy,6845667,4
+134463446,6845667,4
+50165261,6845667,3
+biquan,6845667,4
+60717456,6845667,3
+eamontoday,6845667,4
+ruanzebang,6845667,5
+60460597,6845667,4
+3178602,6845667,3
+jeremydu777,6845667,3
+57791239,6845667,4
+68669440,6845667,4
+ganwunv,6845667,5
+60383614,6845667,5
+3009788,6845667,5
+20950014,6845667,5
+89108079,6845667,4
+47157163,6845667,5
+122855833,6845667,4
+1892501,6845667,1
+46068969,6845667,4
+52269090,6845667,5
+carerina,6845667,4
+paul314,6845667,4
+c.g,6845667,4
+4353001,6845667,4
+zhuzaixuanyabia,6845667,5
+77216393,6845667,3
+edisonme,6845667,4
+37906609,6845667,4
+61602605,6845667,4
+wanwan______,6845667,5
+yanbigflower,6845667,4
+xlxiaolei,6845667,5
+62063835,6845667,4
+67447555,6845667,4
+34805156,6845667,4
+xiaojingyush,6845667,3
+margaret_wmx,6845667,4
+nicky7,6845667,1
+pigmoon,6845667,4
+133358932,6845667,3
+Scorpio_lxs,6845667,5
+10040083,6845667,-1
+70214878,6845667,4
+47796650,6845667,4
+58634950,6845667,4
+oak1890,6845667,3
+windson7,6845667,4
+121997108,6845667,4
+56523090,6845667,5
+63352492,6845667,5
+Qooo,6845667,5
+67742444,6845667,4
+65117604,6845667,5
+wxysmq,6845667,4
+2594397,6845667,4
+77492957,6845667,5
+Lancelot365,6845667,3
+TYM,6845667,-1
+freakg,6845667,5
+1762955,6845667,4
+xlee,6845667,4
+ciaoxu,6845667,4
+134854042,6845667,5
+3376240,6845667,4
+53304881,6845667,5
+dingxx,6845667,3
+25282878,6845667,4
+princessfrog,6845667,5
+7934750,6845667,4
+1963086,6845667,4
+Aulicaxoxo,6845667,-1
+80048822,6845667,4
+1857671,6845667,4
+leonardodicapri,6845667,3
+Shineo,6845667,4
+68742880,6845667,5
+GenieBabylon,6845667,4
+74115491,6845667,5
+goalps,6845667,4
+allwordswrong,6845667,4
+2039569,6845667,4
+56686931,6845667,5
+Probe_S,6845667,5
+ztftom,6845667,4
+58025611,6845667,5
+fromichome,6845667,5
+et2o,6845667,4
+mikanical,6845667,4
+x1Ao_y,6845667,4
+75531469,6845667,5
+51224776,6845667,3
+ValentineQ,6845667,5
+limenghua,6845667,5
+50277925,6845667,3
+ss433light,6845667,4
+flowermoi,6845667,5
+lonelysin,6845667,4
+josephx,6845667,3
+FK621,6845667,4
+nodaira,6845667,5
+yyuan9372,6845667,3
+2597570,6845667,5
+35609833,6845667,4
+57729721,6845667,4
+2984167,6845667,4
+45345873,6845667,2
+minus16,6845667,3
+58018487,6845667,3
+Pabalee,6845667,5
+3431847,6845667,5
+120969873,6845667,5
+37968335,6845667,4
+37968335,6845667,4
+45340915,6845667,4
+130222539,6845667,4
+44549735,6845667,5
+129227451,6845667,5
+Num23,6845667,4
+4585815,6845667,4
+45332811,6845667,3
+51859970,6845667,5
+xiqi,6845667,4
+chrisWen,6845667,3
+3561547,6845667,4
+130345686,6845667,4
+40438184,6845667,4
+fandongzhuantou,6845667,4
+viona,6845667,5
+snowbusy,6845667,-1
+3693808,6845667,5
+cumming,6845667,5
+51638198,6845667,5
+127378341,6845667,5
+96514775,6845667,4
+aayccm,6845667,4
+4632833,6845667,3
+muwen0211,6845667,5
+imCheryl,6845667,4
+68597225,6845667,5
+52530117,6845667,5
+ericforgood,6845667,4
+80209748,6845667,4
+liuzhejimmy,6845667,5
+79272694,6845667,4
+ramsestwo,6845667,4
+cloudiness,6845667,4
+54278419,6845667,4
+joywuyan,6845667,5
+43594988,6845667,5
+45685573,6845667,4
+20676116,6845667,4
+124142241,6845667,4
+47574075,6845667,4
+mlgg,6845667,4
+45642222,6845667,4
+63432491,6845667,2
+46046729,6845667,4
+103420044,6845667,3
+yangcht,6845667,4
+44074623,6845667,-1
+petercat,6845667,4
+M7gnon,6845667,5
+74572703,6845667,4
+52983818,6845667,-1
+115551507,6845667,4
+talentlee,6845667,5
+4698504,6845667,3
+54336845,6845667,5
+76739176,6845667,5
+63997678,6845667,4
+12644505,6845667,4
+zillyromantic,6845667,3
+89758966,6845667,3
+62664539,6845667,5
+67580337,6845667,-1
+4596244,6845667,4
+103208436,6845667,5
+1614995,6845667,4
+windyolivia,6845667,4
+robinsparrow,6845667,-1
+quriola,6845667,3
+maniacmolecules,6845667,4
+53339781,6845667,3
+134503726,6845667,5
+fanfanmero,6845667,5
+4191076,6845667,4
+53644977,6845667,5
+14575310,6845667,5
+53453211,6845667,4
+graceyangzi,6845667,4
+130190354,6845667,5
+lucywang53,6845667,3
+2458174,6845667,4
+46458564,6845667,3
+reynoldlei,6845667,4
+biabee,6845667,5
+69393592,6845667,4
+qingjuesikong,6845667,5
+plastictreeman,6845667,4
+1565707,6845667,-1
+37288438,6845667,4
+samedittt,6845667,3
+134341434,6845667,4
+2741819,6845667,5
+63410162,6845667,5
+yangjing2011,6845667,4
+luckyshell,6845667,4
+49346352,6845667,5
+15912473,6845667,3
+ferkmavie,6845667,4
+clarify,6845667,4
+ling_chen,6845667,4
+xiao__F,6845667,4
+79181644,6845667,4
+q423660875,6845667,5
+49397696,6845667,4
+w112233,6845667,5
+128063403,6845667,3
+didijia,6845667,4
+1390047,6845667,-1
+sundongge,6845667,4
+TRULYSHELTON,6845667,5
+43802399,6845667,4
+izume,6845667,4
+yangshuangblue,6845667,3
+43087284,6845667,4
+1332702,6845667,3
+buqing,6845667,5
+75033795,6845667,5
+heilan8,6845667,5
+62879204,6845667,5
+126825775,6845667,4
+134701310,6845667,3
+122155449,6845667,5
+125495885,6845667,3
+suekyshi,6845667,4
+maggiore,6845667,3
+50023640,6845667,4
+RITABMW,6845667,4
+77037611,6845667,4
+46199652,6845667,5
+liuyushu,6845667,4
+gooxoo,6845667,3
+VincentZSY,6845667,3
+wonderfultimes,6845667,4
+56552029,6845667,4
+31757691,6845667,4
+dnarna_vicky,6845667,-1
+champignon_lou,6845667,5
+1091789,6845667,4
+nini_wang,6845667,4
+60222551,6845667,4
+46539992,6845667,5
+84161421,6845667,4
+24502706,6845667,5
+62294102,6845667,4
+3894700,6845667,3
+47618742,6845667,4
+41419698,6845667,3
+loveirina,6845667,3
+laylasn,6845667,4
+T.Shinoda,6845667,3
+vanlove,6845667,4
+foreverbye622,6845667,5
+134623344,6845667,4
+4386130,6845667,5
+53061557,6845667,5
+56281995,6845667,3
+zhounanshen,6845667,3
+51406258,6845667,5
+58128212,6845667,4
+tiny_moo,6845667,3
+3351303,6845667,4
+120985349,6845667,4
+63530647,6845667,5
+vermouthsama,6845667,4
+kooou,6845667,3
+131663027,6845667,3
+84243616,6845667,4
+3851842,6845667,-1
+3776076,6845667,5
+Secilia,6845667,4
+1121196,6845667,5
+49134732,6845667,4
+memejoo,6845667,4
+fashional,6845667,5
+lzblack,6845667,4
+130533856,6845667,4
+superegg.,6845667,5
+59556078,6845667,4
+45573545,6845667,5
+mitocad,6845667,-1
+Luxiyalu,6845667,5
+EddieCooper,6845667,-1
+37580592,6845667,3
+dolaaa,6845667,5
+48001287,6845667,5
+maikocyan,6845667,4
+rednoodles,6845667,5
+wayxoxo,6845667,4
+halloweenist,6845667,2
+cryuyu,6845667,4
+narcissus_iris,6845667,4
+62762880,6845667,4
+Jiangxiaolu,6845667,5
+60037838,6845667,5
+2174123,6845667,4
+emily56,6845667,5
+dizzyfizzypiggy,6845667,4
+3738535,6845667,4
+xiaoluohao,6845667,4
+55631071,6845667,4
+ink1020,6845667,4
+53458096,6845667,5
+sopoala,6845667,5
+killit,6845667,5
+audreyc,6845667,5
+1651604,6845667,4
+1587535,6845667,5
+will_u,6845667,4
+ohterri,6845667,4
+43516388,6845667,5
+xycapocalyptica,6845667,4
+69424948,6845667,3
+58172616,6845667,4
+2253369,6845667,5
+lozzy,6845667,4
+3449193,6845667,4
+variabled,6845667,4
+55919249,6845667,4
+inout,6845667,4
+freekami,6845667,5
+catwolf0823,6845667,5
+22510137,6845667,5
+memokun,6845667,4
+14277787,6845667,5
+muxiaoxu,6845667,4
+1358728,6845667,4
+VivianLL,6845667,4
+26039197,6845667,5
+Asita99,6845667,3
+2221831,6845667,3
+1503749,6845667,5
+53042572,6845667,-1
+alacrity516,6845667,3
+3591352,6845667,5
+53447982,6845667,3
+vincentheo,6845667,4
+52111433,6845667,3
+121778312,6845667,-1
+3122796,6845667,3
+ghw0225,6845667,4
+liuliyuan,6845667,5
+63349480,6845667,4
+65079476,6845667,3
+sho2mon4e4y,6845667,4
+83188009,6845667,3
+orsettp,6845667,4
+carrieme,6845667,4
+39649962,6845667,4
+jingrong,6845667,4
+BA92101,6845667,5
+Ray_W,6845667,4
+2600693,6845667,4
+quietsinger,6845667,4
+9915911,6845667,3
+1689876,6845667,4
+deadmonica,6845667,4
+waltz1991,6845667,4
+59035457,6845667,5
+Orbital,6845667,4
+56160592,6845667,3
+winmaxangle,6845667,3
+132192126,6845667,5
+45955298,6845667,4
+21767774,6845667,4
+56858678,6845667,3
+kalahere,6845667,4
+51513008,6845667,4
+1462465,6845667,4
+kaolla,6845667,5
+theMicky,6845667,4
+calla,6845667,4
+82484416,6845667,3
+55635987,6845667,4
+55925373,6845667,3
+75043360,6845667,4
+IcbM,6845667,3
+zaraatnike,6845667,5
+FIMLML,6845667,4
+idorothy,6845667,4
+2045360,6845667,5
+61504628,6845667,4
+104397819,6845667,5
+134231384,6845667,5
+78656769,6845667,5
+43473868,6845667,4
+jluy,6845667,3
+3132782,6845667,5
+55833200,6845667,4
+stella0122,6845667,5
+linjunzhe,6845667,4
+crowneak,6845667,3
+58012559,6845667,4
+91310062,6845667,4
+62812139,6845667,4
+75212693,6845667,3
+violajoe,6845667,3
+54086705,6845667,5
+2377434,6845667,4
+dinosaw,6845667,4
+4032042,6845667,3
+2872655,6845667,-1
+rainleo410818,6845667,5
+sqxmy,6845667,4
+47633821,6845667,5
+sisonzhang,6845667,5
+58223398,6845667,5
+1668414,6845667,3
+68732725,6845667,5
+notyetdone,6845667,4
+49273575,6845667,3
+119626702,6845667,4
+spark0601,6845667,4
+theflyingjamie,6845667,4
+simonyao,6845667,4
+41000067,6845667,4
+bigway,6845667,4
+Erman-Wei,6845667,2
+no4day,6845667,5
+jasonwzz,6845667,5
+23883662,6845667,4
+110752603,6845667,4
+hujingruo,6845667,4
+startalker,6845667,4
+darkscorpion,6845667,3
+1225917,6845667,3
+30170220,6845667,4
+41687639,6845667,5
+xxmajia,6845667,4
+cukia,6845667,3
+55366144,6845667,4
+66542441,6845667,5
+86091558,6845667,5
+yhelxx,6845667,5
+34434303,6845667,4
+6773474,6845667,4
+72232333,6845667,4
+XZnJJ_kim,6845667,4
+44877462,6845667,5
+2695178,6845667,3
+bimbo,6845667,4
+43161873,6845667,5
+72328786,6845667,3
+dentist,6845667,5
+judeli,6845667,4
+vivie7,6845667,5
+58074145,6845667,4
+hailie0421,6845667,5
+44982186,6845667,5
+Pincent,6845667,4
+lyxa,6845667,3
+loulou-mae,6845667,4
+Zoeeoz,6845667,3
+froggie,6845667,5
+yoshimi,6845667,4
+37677418,6845667,4
+SANDMANECW,6845667,1
+sunergou,6845667,5
+shinjong,6845667,4
+smilemansay,6845667,4
+solanachen,6845667,5
+57124272,6845667,5
+sinbone,6845667,3
+80570322,6845667,3
+anzhenyunyou,6845667,3
+supercrazy,6845667,4
+61686862,6845667,3
+64459545,6845667,4
+jtothen,6845667,4
+33328138,6845667,4
+alcudish,6845667,4
+mo_hui06,6845667,4
+Vincentknight,6845667,4
+RobinsonZZ,6845667,2
+wenbao,6845667,5
+26053558,6845667,4
+lilwhite,6845667,3
+violette,6845667,3
+61955471,6845667,4
+47877507,6845667,4
+41670015,6845667,5
+2388812,6845667,4
+2119698,6845667,5
+60311898,6845667,4
+45007107,6845667,5
+39234011,6845667,4
+124585332,6845667,5
+1704805,6845667,5
+wuxuanjing,6845667,5
+lijinhui,6845667,4
+79425472,6845667,5
+75215757,6845667,4
+84384668,6845667,4
+40979259,6845667,5
+zita07,6845667,5
+jasontodd,6845667,4
+hudodo0314,6845667,3
+39294617,6845667,4
+52366349,6845667,3
+32424363,6845667,4
+socalledgin,6845667,3
+fuyouforest,6845667,3
+sunny_S,6845667,4
+tikchao,6845667,5
+37657307,6845667,4
+sissichan,6845667,4
+46705053,6845667,4
+3139594,6845667,4
+76789340,6845667,4
+lllllm,6845667,4
+peach42,6845667,4
+featherfancy,6845667,5
+darkgt,6845667,5
+32267845,6845667,4
+madlab,6845667,5
+holyzach,6845667,5
+whateverwbwb,6845667,4
+52655814,6845667,-1
+53785140,6845667,4
+43956642,6845667,5
+okship,6845667,4
+37959667,6845667,4
+59101445,6845667,5
+lenglen,6845667,4
+edwardpanda,6845667,4
+Violetleite,6845667,5
+27360780,6845667,4
+toishiki,6845667,4
+qixuelun,6845667,4
+bubblelam,6845667,5
+yesidogiveadamn,6845667,1
+3467832,6845667,4
+68034788,6845667,5
+133202676,6845667,4
+FinnieXu,6845667,5
+40195954,6845667,3
+55381057,6845667,3
+dasyure,6845667,4
+66344990,6845667,4
+4105021,6845667,3
+58482756,6845667,4
+3151445,6845667,4
+19676752,6845667,4
+shelockcrc,6845667,4
+some_Ji,6845667,5
+2481028,6845667,4
+50624143,6845667,4
+130581811,6845667,5
+2593133,6845667,4
+Lioka,6845667,4
+73869921,6845667,4
+51992445,6845667,4
+lanben,6845667,5
+45261585,6845667,4
+47334850,6845667,3
+butina,6845667,4
+vkinoko,6845667,4
+53134632,6845667,5
+smallove816,6845667,-1
+avocadoi,6845667,4
+yvonneyys,6845667,4
+35409946,6845667,4
+fwtzzl,6845667,2
+momo.lan,6845667,4
+83415261,6845667,4
+fishy,6845667,4
+fengqingyuexia,6845667,4
+andriylin,6845667,5
+29811001,6845667,3
+hw4life,6845667,5
+siyannnn,6845667,4
+summerest,6845667,4
+Nikki_11,6845667,3
+miss.sadness,6845667,-1
+128799458,6845667,5
+52523145,6845667,4
+49836065,6845667,4
+banruoliuli,6845667,4
+39937848,6845667,4
+41280614,6845667,5
+130072814,6845667,5
+130072814,6845667,5
+48532760,6845667,2
+gmrxfx,6845667,3
+50957337,6845667,3
+jeonwoo,6845667,4
+cmhloveukulele,6845667,-1
+59149853,6845667,5
+catbeartakasan,6845667,5
+brianchoo,6845667,3
+55937351,6845667,4
+51430921,6845667,3
+bayer04040404,6845667,4
+suyanz,6845667,3
+neverchanges,6845667,4
+43602749,6845667,4
+closer_whisper,6845667,-1
+Rittle,6845667,4
+80065462,6845667,5
+hollyxiyi,6845667,4
+virginiawood,6845667,5
+hecaba,6845667,3
+35518301,6845667,3
+98183739,6845667,4
+sadiee,6845667,5
+tableandstool,6845667,5
+stephanieliu,6845667,4
+orry-lee,6845667,5
+62532789,6845667,4
+syyw88,6845667,4
+50183995,6845667,3
+microblue,6845667,4
+heartless,6845667,4
+joarieas,6845667,4
+15485620,6845667,4
+or2JuAn,6845667,5
+43039629,6845667,4
+1401672,6845667,4
+35507576,6845667,5
+CaptLimbo,6845667,4
+84782971,6845667,5
+70043510,6845667,5
+dilv,6845667,4
+54049800,6845667,4
+Lostland,6845667,4
+129028198,6845667,2
+bitstream,6845667,3
+42074061,6845667,4
+ngc4151,6845667,3
+xzhyqq866,6845667,5
+chuxcy,6845667,4
+LilHayah,6845667,5
+61714546,6845667,5
+vanessa07,6845667,5
+aquapanda,6845667,4
+63477660,6845667,3
+ekkus66,6845667,5
+printa,6845667,4
+58499826,6845667,5
+sinxu,6845667,5
+doris19921203,6845667,4
+CatPrince,6845667,4
+erin522,6845667,4
+16437500,6845667,3
+blur4love,6845667,4
+34929495,6845667,4
+68974440,6845667,4
+56603661,6845667,4
+62469238,6845667,4
+whateverrr,6845667,3
+whatsuplaura,6845667,4
+80936991,6845667,4
+aquqmarine,6845667,5
+s90r,6845667,5
+126344543,6845667,5
+sunnykatty,6845667,3
+29515987,6845667,4
+Clarke,6845667,3
+58442010,6845667,4
+cherry0908,6845667,3
+53416126,6845667,4
+icwk,6845667,4
+syddb,6845667,5
+foamfly,6845667,5
+51393119,6845667,4
+u-know17,6845667,-1
+arcueid,6845667,4
+humanafterall,6845667,5
+53033730,6845667,4
+HEISONWONG,6845667,4
+mirandachu,6845667,4
+67953627,6845667,5
+outsider-hk,6845667,5
+fabrique1987,6845667,5
+45220607,6845667,5
+1631968,6845667,3
+IvyGiggs,6845667,4
+48146801,6845667,5
+33768233,6845667,5
+127728111,6845667,4
+13833588,6845667,4
+95313700,6845667,5
+leafmela,6845667,4
+abby0109,6845667,5
+jiong7,6845667,4
+sinkeyq,6845667,4
+frankzhang,6845667,4
+39255754,6845667,4
+lieerF,6845667,-1
+96171694,6845667,5
+131987227,6845667,-1
+silence17,6845667,4
+kuangren79,6845667,3
+kickyourleg,6845667,2
+Staceyesu,6845667,5
+61712114,6845667,4
+missapple,6845667,-1
+53253261,6845667,5
+30187417,6845667,5
+pkughost,6845667,4
+Ice-Rhine,6845667,5
+9274036,6845667,4
+3522547,6845667,5
+amy930,6845667,5
+modestcat,6845667,3
+elwingt,6845667,4
+47105459,6845667,5
+1851702,6845667,4
+emeraldbian,6845667,4
+66967830,6845667,5
+elinnao,6845667,3
+Christina63,6845667,4
+jiangziwen,6845667,5
+54661413,6845667,3
+53343838,6845667,4
+Zhedong,6845667,4
+neilchi,6845667,5
+44576253,6845667,4
+cocageng,6845667,3
+81404706,6845667,4
+disheron,6845667,2
+disheron,6845667,2
+Vincent4ever,6845667,4
+viviansr,6845667,5
+stupidcat7652,6845667,2
+dunhaotian,6845667,4
+66189087,6845667,4
+54378833,6845667,5
+62709413,6845667,5
+y2even,6845667,4
+4434079,6845667,3
+dawdle,6845667,5
+53997661,6845667,3
+65685834,6845667,5
+66266382,6845667,5
+fmon,6845667,3
+57613764,6845667,-1
+115125689,6845667,5
+62619587,6845667,4
+51579212,6845667,4
+watcherli,6845667,5
+83734300,6845667,3
+53418739,6845667,5
+VicW330,6845667,5
+justinran,6845667,3
+1723236,6845667,4
+42657355,6845667,5
+anearl,6845667,5
+dseugene,6845667,5
+emma777,6845667,4
+49848992,6845667,5
+42948156,6845667,5
+79143222,6845667,4
+vplumage,6845667,4
+53972660,6845667,4
+GalaxyisSour,6845667,5
+3541486,6845667,4
+39369770,6845667,4
+bowon,6845667,5
+11189422,6845667,3
+61797915,6845667,3
+61797915,6845667,3
+SophiaCGuo,6845667,4
+hanajiang,6845667,4
+fang0079,6845667,5
+louisalau007,6845667,5
+G-Dear,6845667,2
+atlas0413,6845667,4
+49539687,6845667,4
+2121794,6845667,3
+59465835,6845667,5
+lujcmss,6845667,4
+kevin222,6845667,2
+59245915,6845667,4
+cold24,6845667,-1
+brbaarlab,6845667,3
+21967116,6845667,5
+4720825,6845667,5
+3667311,6845667,4
+54371431,6845667,5
+monody,6845667,5
+changwapi,6845667,3
+lsloveshow,6845667,5
+orangeT,6845667,3
+65335204,6845667,3
+43301500,6845667,4
+34407636,6845667,4
+45942443,6845667,5
+39561667,6845667,5
+liweiheng,6845667,4
+evolhjt,6845667,4
+sickroom305,6845667,5
+Balacama,6845667,3
+47591131,6845667,3
+2942790,6845667,-1
+43783147,6845667,4
+44204441,6845667,5
+chocolan,6845667,4
+yixuananana,6845667,5
+45566858,6845667,5
+kratos0008,6845667,4
+kratos0008,6845667,4
+70385539,6845667,-1
+shelley_ni,6845667,5
+59290832,6845667,4
+3284948,6845667,4
+41696616,6845667,4
+2364679,6845667,4
+57188725,6845667,4
+Linmimilan,6845667,4
+54994533,6845667,5
+vv_gh,6845667,5
+aprildaisy,6845667,5
+taylorwang,6845667,5
+1422362,6845667,-1
+51572438,6845667,4
+1380354,6845667,4
+elvenyung,6845667,4
+119606902,6845667,4
+lampslovesterry,6845667,4
+34875842,6845667,4
+36049101,6845667,4
+Ask,6845667,3
+119277789,6845667,3
+84948949,6845667,3
+iRayc,6845667,5
+ericandlisa,6845667,3
+58725600,6845667,3
+mingnqiut,6845667,5
+miraculousu,6845667,5
+desmond1982,6845667,3
+73403895,6845667,3
+2183176,6845667,4
+foamwhisper,6845667,5
+mansuzi,6845667,5
+curemyself,6845667,5
+65726915,6845667,5
+4624578,6845667,5
+Mizleave,6845667,5
+miracle1025,6845667,4
+tytony890115,6845667,4
+60744558,6845667,5
+nancyyan,6845667,4
+51590575,6845667,4
+4273687,6845667,4
+kin090909,6845667,-1
+cmyts54,6845667,5
+2326027,6845667,5
+dr_new,6845667,5
+1550127,6845667,3
+1830523,6845667,4
+seongtan,6845667,4
+love270,6845667,4
+goldenhornking,6845667,4
+kaolaxing,6845667,5
+xuguanyu1381,6845667,4
+punkshen,6845667,5
+harrymoon,6845667,3
+79991595,6845667,5
+35066546,6845667,5
+pandaneko,6845667,4
+joejoeli,6845667,4
+4221061,6845667,3
+51402564,6845667,5
+siemielu,6845667,5
+1749296,6845667,4
+sasa926,6845667,4
+yoteamomucho,6845667,4
+2169269,6845667,4
+70006548,6845667,5
+xi_1483,6845667,5
+mabbit,6845667,4
+5964944,6845667,4
+77848216,6845667,5
+zengyejimmy,6845667,4
+53464636,6845667,3
+donglaimengwu,6845667,5
+51888816,6845667,5
+sickboy,6845667,4
+FunnyBike,6845667,4
+PASSMEBY,6845667,4
+2853059,6845667,5
+I009,6845667,-1
+sapphiresea1130,6845667,4
+46025465,6845667,4
+orchid926,6845667,4
+3341659,6845667,5
+49002577,6845667,5
+snowlight,6845667,4
+davidove,6845667,3
+leepanda,6845667,5
+guoyandao,6845667,4
+86728823,6845667,5
+torresgomenggo,6845667,-1
+dou_1223,6845667,3
+81244293,6845667,4
+2220298,6845667,4
+3706403,6845667,3
+50041783,6845667,3
+pillbug,6845667,5
+44070862,6845667,4
+jackieatdnv,6845667,4
+4119152,6845667,4
+echo_me_,6845667,5
+wu_dbpersonal,6845667,4
+TTTevolt,6845667,4
+farewell0510,6845667,4
+roy325,6845667,4
+62135529,6845667,4
+80823041,6845667,5
+apprenticeship,6845667,5
+landystar,6845667,3
+76720138,6845667,4
+10057599,6845667,5
+silverslivers,6845667,4
+elainemumu,6845667,4
+42339153,6845667,5
+findmusic,6845667,4
+Eataix,6845667,5
+45244208,6845667,4
+moiselletea,6845667,5
+40303756,6845667,3
+BennyB,6845667,5
+besify,6845667,5
+1223426,6845667,4
+46248376,6845667,5
+40360094,6845667,5
+sr719,6845667,4
+55549387,6845667,5
+3419902,6845667,5
+Vulpeculae,6845667,5
+boiling-silence,6845667,2
+terry_f,6845667,-1
+2744950,6845667,4
+41277351,6845667,5
+97331914,6845667,-1
+RivenZhong,6845667,4
+48156038,6845667,3
+51394725,6845667,4
+Webboy,6845667,4
+muyi9,6845667,4
+124833218,6845667,4
+karasu419,6845667,3
+51559890,6845667,4
+jjforever,6845667,2
+KooK-Psycho,6845667,4
+bigredapple,6845667,4
+88327789,6845667,4
+teapot,6845667,4
+lixiaoshall,6845667,3
+impzz,6845667,4
+119903956,6845667,5
+abcclk,6845667,5
+Shuimu3,6845667,3
+2548730,6845667,5
+ninoliu,6845667,4
+33663451,6845667,4
+14683656,6845667,4
+75621811,6845667,3
+takaramono,6845667,4
+douding1024,6845667,4
+andrewrhao,6845667,3
+1852234,6845667,3
+1383301,6845667,3
+52515848,6845667,5
+vampireamos,6845667,4
+30872266,6845667,5
+55364280,6845667,4
+68931689,6845667,2
+30941541,6845667,5
+90525586,6845667,3
+emeline,6845667,3
+48863239,6845667,4
+Leoky,6845667,4
+YUNZIAH4Y,6845667,4
+51183805,6845667,5
+xiaoxiongweini,6845667,4
+sk4ever,6845667,3
+3579800,6845667,4
+85994648,6845667,5
+34722246,6845667,4
+troublemakerjoy,6845667,3
+47874303,6845667,4
+Ansonjia,6845667,3
+enzai,6845667,5
+79695986,6845667,4
+Chloe8846,6845667,4
+tang516,6845667,4
+1949431,6845667,4
+ann-in-april,6845667,5
+2632873,6845667,5
+amberose,6845667,5
+eaufavor,6845667,4
+2700292,6845667,4
+56488254,6845667,4
+41511401,6845667,4
+82262914,6845667,4
+51622953,6845667,5
+onionzoooo,6845667,5
+67920603,6845667,4
+rackylo,6845667,4
+nodane,6845667,4
+31301735,6845667,3
+sukaka51,6845667,5
+ziyoupaifeizai,6845667,5
+ganewael,6845667,3
+spectretown,6845667,4
+absinthejt,6845667,5
+bearbebop,6845667,4
+harechan,6845667,3
+54982306,6845667,5
+seancheung,6845667,3
+4060704,6845667,3
+2248658,6845667,3
+jimmy78801,6845667,5
+53346349,6845667,5
+kuku_yang,6845667,5
+36458457,6845667,5
+starever,6845667,5
+kindofbullshit,6845667,4
+66393344,6845667,5
+wanglq,6845667,5
+2914721,6845667,4
+lotuskate,6845667,4
+3673640,6845667,5
+57392362,6845667,5
+zybxixi,6845667,4
+47833189,6845667,5
+chenxiaodan,6845667,5
+alcat,6845667,5
+bloodykiss,6845667,4
+avisj,6845667,4
+38460983,6845667,4
+48484470,6845667,5
+50112413,6845667,4
+43471768,6845667,5
+zoelizexin,6845667,4
+103629201,6845667,5
+Xingda,6845667,5
+ericjorgeeddy,6845667,5
+43087680,6845667,4
+winter-h,6845667,3
+tmbbf,6845667,5
+28681555,6845667,3
+langsusu,6845667,4
+xianyu719,6845667,5
+46706414,6845667,3
+55822264,6845667,4
+longsy,6845667,5
+64969001,6845667,5
+3205834,6845667,4
+82367118,6845667,3
+10345879,6845667,4
+75209751,6845667,5
+ster,6845667,5
+47941742,6845667,5
+yytaizi,6845667,4
+mknow,6845667,5
+ivorybos,6845667,4
+85671125,6845667,4
+49501478,6845667,4
+49501478,6845667,4
+56177980,6845667,4
+vesperxu,6845667,-1
+lisa-l,6845667,5
+LXJAAA,6845667,4
+kangtadlt,6845667,4
+Sophieless,6845667,4
+28013682,6845667,5
+l00000000,6845667,4
+cristinaburke,6845667,3
+54507832,6845667,5
+e7even,6845667,4
+52140349,6845667,3
+Balebeng,6845667,4
+114680294,6845667,5
+TwistedZ,6845667,5
+53577645,6845667,-1
+silvenyszmanda,6845667,5
+chenxijessica,6845667,4
+Ecthelion,6845667,5
+liukaco,6845667,4
+hanxiao2060,6845667,5
+sashaz,6845667,-1
+49711912,6845667,4
+54150368,6845667,4
+nianmo,6845667,4
+2633400,6845667,3
+61935443,6845667,4
+1817565,6845667,5
+lowai,6845667,5
+46492005,6845667,4
+larrycane,6845667,4
+67843912,6845667,3
+Ikergzy,6845667,4
+92906741,6845667,4
+59733385,6845667,2
+47999352,6845667,5
+52374368,6845667,5
+subuuti,6845667,4
+yupian,6845667,4
+glorymanutd,6845667,5
+131838639,6845667,5
+87222005,6845667,5
+49038928,6845667,4
+povi,6845667,4
+silentbean,6845667,5
+guanjunyan,6845667,-1
+120313404,6845667,4
+yi_yang,6845667,4
+51898571,6845667,3
+75381843,6845667,5
+yenna0411,6845667,5
+Chliztian,6845667,4
+meltykisszhy,6845667,4
+kidaliu,6845667,5
+85114697,6845667,3
+42342405,6845667,5
+moyuxi,6845667,5
+52800878,6845667,5
+4874301,6845667,5
+page7,6845667,5
+123851520,6845667,4
+68719898,6845667,4
+89972315,6845667,4
+83949510,6845667,4
+71381094,6845667,5
+zuochangyu,6845667,4
+49322454,6845667,4
+2247807,6845667,4
+clementinetsu,6845667,3
+lynnchan,6845667,4
+104445642,6845667,4
+arsenallau,6845667,5
+jkk0620,6845667,5
+83017283,6845667,4
+landissey,6845667,4
+mophia,6845667,3
+woshizengjiujiu,6845667,4
+blueglacier,6845667,4
+severus,6845667,4
+Leslie221,6845667,4
+jesuisQ,6845667,5
+6332449,6845667,4
+39355167,6845667,5
+49079612,6845667,5
+skyllla,6845667,4
+foreverlethe,6845667,-1
+45251073,6845667,4
+45794051,6845667,5
+Alicestormrage,6845667,-1
+logiko,6845667,5
+thechamp,6845667,3
+shylos,6845667,5
+PKUelbereth,6845667,-1
+1159054,6845667,5
+suwa,6845667,3
+49515197,6845667,5
+4231166,6845667,4
+samii,6845667,5
+72684898,6845667,3
+120913568,6845667,5
+34028726,6845667,4
+brandnewstart,6845667,3
+70862713,6845667,5
+reader-shuo,6845667,-1
+51257892,6845667,5
+joong,6845667,3
+tongtone,6845667,5
+shaoyi,6845667,4
+47379145,6845667,4
+murongnuomi,6845667,-1
+mr81,6845667,3
+kongweihan,6845667,4
+53060922,6845667,4
+Ada_quan,6845667,-1
+shezaizuyi,6845667,4
+45455917,6845667,4
+yomika,6845667,3
+4347930,6845667,4
+sophie-z,6845667,4
+lesleyxu,6845667,4
+naroro,6845667,-1
+lhwithsummer,6845667,4
+fuckinghate,6845667,-1
+Summerlalala,6845667,4
+43892960,6845667,4
+65758167,6845667,4
+oliviaC,6845667,-1
+coffee--time,6845667,5
+54525813,6845667,5
+lillianxiong,6845667,5
+42767093,6845667,5
+32108727,6845667,4
+sadness,6845667,4
+Artystayshungry,6845667,5
+ajiaclpk,6845667,4
+12019034,6845667,4
+ovspianist,6845667,5
+54096811,6845667,3
+74106602,6845667,3
+pumpkin_s,6845667,4
+DonCorleone,6845667,5
+45344133,6845667,5
+XinZee,6845667,4
+31407826,6845667,5
+2978891,6845667,5
+ring_ring,6845667,5
+crazycathr,6845667,5
+glassywitch,6845667,4
+7987819,6845667,2
+48826965,6845667,5
+2678412,6845667,5
+47053093,6845667,4
+80417517,6845667,3
+novrhapsody,6845667,4
+4251957,6845667,-1
+51440754,6845667,3
+lucameow,6845667,5
+shunicole,6845667,5
+9386243,6845667,4
+ytismile,6845667,5
+133039983,6845667,4
+132798268,6845667,5
+aknavi88,6845667,5
+dorasun,6845667,5
+47022632,6845667,4
+1359052,6845667,2
+46845668,6845667,3
+126073377,6845667,5
+58801678,6845667,4
+2853604,6845667,3
+shelleyhsu,6845667,3
+42906066,6845667,3
+tintindd,6845667,4
+lulu_p.p,6845667,5
+Gxy0429,6845667,5
+2126869,6845667,5
+janeyyxl,6845667,4
+44848574,6845667,5
+46856850,6845667,5
+1775763,6845667,5
+clarehsu0203,6845667,5
+46897570,6845667,3
+Nietzschesun,6845667,-1
+39047335,6845667,5
+120628955,6845667,3
+HIDING.,6845667,5
+Renovatio84,6845667,5
+charlottey,6845667,4
+26641956,6845667,4
+Duluoz,6845667,5
+lazy.wanderlust,6845667,5
+msfigaro,6845667,4
+R.Samsara,6845667,5
+lynnwhite,6845667,-1
+stevecarell,6845667,4
+towelcatryna,6845667,4
+1778088,6845667,2
+80357003,6845667,4
+31622009,6845667,4
+57416043,6845667,3
+78487387,6845667,4
+Vincentwsk,6845667,4
+68091356,6845667,5
+66057217,6845667,4
+dixueyaxiaojie,6845667,5
+85643943,6845667,4
+ld514,6845667,4
+pipituliuliu,6845667,-1
+80722428,6845667,2
+MihoKomatsu,6845667,5
+kekeximi,6845667,4
+60237257,6845667,5
+damon-l,6845667,4
+50219893,6845667,5
+LilC,6845667,4
+gmzzxg,6845667,5
+ecane,6845667,4
+42348997,6845667,4
+57990843,6845667,4
+38955500,6845667,4
+shanjuan,6845667,4
+souldive,6845667,4
+heylucyliu,6845667,5
+fenglimuren,6845667,3
+bohemiann,6845667,3
+60475552,6845667,4
+4042513,6845667,5
+53518939,6845667,4
+cat_rs,6845667,5
+87905288,6845667,4
+47471992,6845667,4
+26545118,6845667,5
+64844513,6845667,4
+reneeqiao,6845667,4
+30796197,6845667,4
+totozhang,6845667,5
+dawenxi,6845667,4
+37589827,6845667,3
+1727444,6845667,4
+yeeeeeee,6845667,4
+lilibuth,6845667,4
+50088258,6845667,5
+xiannn,6845667,4
+3731360,6845667,5
+3585941,6845667,4
+claireyao,6845667,4
+ivygreen06,6845667,4
+edward1988,6845667,2
+87559103,6845667,4
+47974911,6845667,3
+119374613,6845667,3
+ffantuan,6845667,4
+30463094,6845667,5
+52536542,6845667,5
+4685727,6845667,4
+57395743,6845667,5
+60348817,6845667,4
+93217012,6845667,3
+sharkspeare,6845667,4
+52705401,6845667,-1
+ninuga-710sss,6845667,3
+66806771,6845667,5
+lynn7lynch,6845667,5
+deirdra,6845667,3
+37405681,6845667,5
+47602699,6845667,5
+3540441,6845667,4
+50545656,6845667,3
+ironmonkey,6845667,4
+31983093,6845667,4
+59281167,6845667,4
+drennuz,6845667,5
+47871037,6845667,3
+66431238,6845667,2
+35591333,6845667,4
+YuRAY,6845667,4
+53247764,6845667,4
+ryod,6845667,3
+hellomaggie,6845667,4
+47317447,6845667,5
+82894072,6845667,4
+127292796,6845667,-1
+Aspirin129,6845667,3
+hyuk35zm,6845667,5
+55882161,6845667,5
+62353907,6845667,3
+avaxi,6845667,4
+2768603,6845667,5
+Weeeeeeeeeeds,6845667,4
+Sammyzheng,6845667,2
+47974584,6845667,4
+Cicinnurus,6845667,5
+spaceli,6845667,4
+97757646,6845667,5
+108637207,6845667,5
+43233255,6845667,5
+66325431,6845667,5
+2635870,6845667,4
+40581527,6845667,5
+40581527,6845667,5
+102819112,6845667,4
+z275,6845667,5
+4637101,6845667,5
+63422177,6845667,3
+hengacheung,6845667,4
+wandawang,6845667,3
+67213481,6845667,4
+judy0420,6845667,3
+senyoung,6845667,3
+ichigomint,6845667,5
+vigshane,6845667,5
+Youoen,6845667,3
+54352313,6845667,4
+60871322,6845667,4
+60378678,6845667,5
+62836930,6845667,4
+felixfelicis,6845667,5
+WyBaby,6845667,5
+charrme,6845667,4
+skye1110,6845667,4
+60841792,6845667,-1
+dadou417,6845667,-1
+IantoJones,6845667,4
+Sophieven,6845667,3
+paradise624,6845667,5
+48687824,6845667,4
+59792119,6845667,3
+astroangel,6845667,5
+1730018,6845667,4
+3904908,6845667,4
+yukinari999,6845667,5
+kulilin,6845667,3
+lazydesigner,6845667,3
+helicopter,6845667,3
+66664303,6845667,4
+48395509,6845667,4
+108278256,6845667,5
+65274866,6845667,3
+manyandandan,6845667,5
+51061132,6845667,4
+60788989,6845667,3
+xuqianxun,6845667,5
+baicaitai,6845667,4
+4165611,6845667,3
+hzfsdjf,6845667,4
+sleeper_arashi,6845667,4
+superbjs,6845667,3
+shipisanliang,6845667,4
+76026872,6845667,4
+70648715,6845667,4
+baguabagua,6845667,5
+46429312,6845667,3
+elice,6845667,5
+43840561,6845667,5
+47172452,6845667,3
+Csq1994106,6845667,5
+AAAxiaowei,6845667,4
+yizhao,6845667,3
+56543116,6845667,5
+101568749,6845667,5
+50755079,6845667,4
+60623717,6845667,5
+rayeah,6845667,5
+willow_0319,6845667,5
+tianxie1114,6845667,5
+124812731,6845667,3
+65915611,6845667,4
+51721466,6845667,4
+samsyu,6845667,4
+wangxhtt,6845667,5
+Mr.Alice,6845667,5
+2092765,6845667,4
+dengxian123,6845667,4
+littlelu,6845667,4
+bearblindman,6845667,3
+79262344,6845667,4
+TERRYBEAR,6845667,3
+66302726,6845667,4
+121662152,6845667,5
+QQY,6845667,5
+44542197,6845667,3
+60241275,6845667,1
+JY-DAI,6845667,4
+93527647,6845667,4
+ChenMelon,6845667,3
+56194836,6845667,3
+4032411,6845667,5
+60088640,6845667,4
+wzdradon,6845667,5
+littleshy,6845667,5
+doralupin,6845667,4
+nemoye,6845667,4
+47458734,6845667,4
+luojiu,6845667,-1
+JeanTam,6845667,-1
+50003038,6845667,4
+ValJester,6845667,5
+55772953,6845667,4
+89931172,6845667,3
+93375016,6845667,4
+4727883,6845667,5
+34245713,6845667,-1
+74399470,6845667,4
+104629005,6845667,3
+65400706,6845667,4
+44399575,6845667,5
+shinnodoo,6845667,3
+sirluoji,6845667,2
+foleyfan,6845667,5
+lightreus,6845667,4
+Kallita,6845667,4
+88188816,6845667,4
+ydlxiaolong,6845667,4
+60863980,6845667,4
+fr33k,6845667,5
+xinziai,6845667,3
+43795391,6845667,5
+jinzeyu007,6845667,4
+Sapporo,6845667,4
+fortblk,6845667,2
+63547117,6845667,4
+61572428,6845667,4
+janicefish,6845667,5
+duanzizai,6845667,4
+72365328,6845667,4
+seven-day,6845667,4
+lunatique,6845667,4
+claud,6845667,2
+yolii,6845667,4
+lijie,6845667,2
+a1830996698,6845667,5
+120331217,6845667,4
+62862861,6845667,4
+1864180,6845667,4
+61992166,6845667,4
+74851993,6845667,5
+suma,6845667,4
+currant,6845667,5
+49326623,6845667,3
+49778972,6845667,5
+73983729,6845667,3
+privateplot,6845667,4
+59604055,6845667,4
+34174788,6845667,-1
+CyruseBabe,6845667,2
+54604108,6845667,5
+jessie77s,6845667,3
+iuheuxnehc,6845667,2
+1846457,6845667,2
+78517327,6845667,5
+3570794,6845667,5
+Slyffin,6845667,4
+Illbeamyouup,6845667,5
+ltp19950208,6845667,4
+TVBVSBON,6845667,5
+mrbrooks,6845667,5
+stetehe,6845667,5
+evey42,6845667,3
+framtid,6845667,4
+IAmSoVain,6845667,5
+Ophelia14,6845667,4
+53316539,6845667,4
+46714159,6845667,3
+102901525,6845667,4
+55465032,6845667,4
+blacksmiles,6845667,4
+flxjp,6845667,3
+2806653,6845667,5
+lvhobbitdarren,6845667,3
+jomey,6845667,4
+51243076,6845667,3
+2640849,6845667,4
+brad_tsye,6845667,4
+50398793,6845667,3
+77033669,6845667,3
+rudygiraffe,6845667,3
+an__,6845667,4
+foryui,6845667,4
+67519851,6845667,1
+46162383,6845667,3
+54540243,6845667,5
+61619787,6845667,1
+72461082,6845667,5
+44392983,6845667,4
+129470292,6845667,4
+imkt,6845667,5
+122933889,6845667,4
+eefee,6845667,4
+65113301,6845667,5
+79668765,6845667,4
+1248650,6845667,5
+37809200,6845667,4
+51139499,6845667,3
+lecsi,6845667,4
+LLT,6845667,4
+6881518,6845667,3
+1371348,6845667,4
+vinkingking,6845667,5
+37369275,6845667,5
+55785392,1866473,4
+58081877,1866473,3
+69122757,1866473,4
+jerviscz,1866473,4
+65532755,1866473,3
+blurjth,1866473,1
+3339805,1866473,4
+mengzhuxiongmao,1866473,4
+52331640,1866473,4
+55755674,1866473,4
+77337658,1866473,5
+47655212,1866473,3
+4257284,1866473,3
+AspireY,1866473,4
+67759592,1866473,4
+63959089,1866473,4
+38984888,1866473,4
+camellowang,1866473,4
+56493761,1866473,4
+44965595,1866473,4
+43529469,1866473,4
+58423375,1866473,3
+72781855,1866473,4
+story23,1866473,4
+4213331,1866473,-1
+52887957,1866473,4
+59394881,1866473,4
+119226922,1866473,3
+jinhoo,1866473,2
+43282525,1866473,3
+58490597,1866473,3
+131921881,1866473,4
+44020426,1866473,4
+2283018,1866473,4
+4156800,1866473,4
+48849603,1866473,4
+2426372,1866473,3
+50235107,1866473,4
+63960496,1866473,3
+59307428,1866473,4
+135237999,1866473,3
+Arden_Dodd,1866473,3
+nvq7Gin,1866473,3
+2317327,1866473,2
+3860671,1866473,3
+chengchen0121,1866473,3
+61135044,1866473,4
+45419273,1866473,4
+114645921,1866473,4
+Murphymolly,1866473,3
+skyaim,1866473,4
+JaceJing,1866473,4
+47239413,1866473,3
+58189944,1866473,4
+25314137,1866473,4
+tianyi1020,1866473,4
+62605597,1866473,3
+130580816,1866473,3
+65987456,1866473,4
+dltmw,1866473,4
+129356588,1866473,4
+50680483,1866473,4
+128568817,1866473,4
+3901159,1866473,4
+65053075,1866473,5
+56218882,1866473,5
+Evilblood,1866473,4
+3510413,1866473,1
+48790837,1866473,4
+windson7,1866473,3
+50884822,1866473,4
+48269766,1866473,4
+yueyetulcc,1866473,5
+33973051,1866473,5
+tiffany_love,1866473,-1
+61504169,1866473,4
+peterzhou001,1866473,3
+weirdozhe,1866473,5
+49968268,1866473,3
+71878737,1866473,4
+4092597,1866473,3
+qxxqxx,1866473,5
+57128387,1866473,4
+37644839,1866473,5
+74106453,1866473,3
+2842455,1866473,5
+42421580,1866473,5
+chenjiusan,1866473,3
+krisleung,1866473,4
+Leo-Andy,1866473,5
+69168057,1866473,5
+xinziai,1866473,4
+137642810,1866473,3
+41495090,1866473,3
+blackmeajump,1866473,4
+88032160,1866473,4
+42680639,1866473,4
+63929108,1866473,3
+kingflower,1866473,2
+tangrumei1022,1866473,4
+56390988,1866473,3
+49631776,1866473,5
+64203397,1866473,3
+32505572,1866473,4
+56143102,1866473,5
+fying,1866473,3
+pandawitnU,1866473,3
+1211087,1866473,4
+Carl_L,1866473,5
+125151595,1866473,3
+60614735,1866473,5
+3116575,1866473,3
+DKJessica,1866473,4
+64036271,1866473,5
+tola95,1866473,3
+buglovenet,1866473,3
+127837358,1866473,5
+lovehebey,1866473,4
+41375652,1866473,3
+113846031,1866473,5
+63924562,1866473,4
+yuanliu,1866473,2
+2622237,1866473,4
+76428013,1866473,3
+106514817,1866473,4
+50558551,1866473,4
+81418362,1866473,4
+50510191,1866473,3
+elevenzhang,1866473,3
+115374759,1866473,3
+32911120,1866473,3
+51901036,1866473,4
+26161451,1866473,4
+62927689,1866473,4
+Pudding33,1866473,5
+envyandecho,1866473,3
+76798161,1866473,2
+fdid,1866473,3
+MoviesandI,1866473,3
+136133409,1866473,1
+wonderer,1866473,4
+vanuan,1866473,4
+aboutdistance,1866473,3
+mountaindew,1866473,4
+41376663,1866473,4
+132062815,1866473,2
+44417635,1866473,3
+48920631,1866473,2
+huachunyan,1866473,3
+76352627,1866473,4
+46583947,1866473,4
+wxgigi0617,1866473,4
+131147318,1866473,3
+minamihayashi,1866473,5
+52622488,1866473,4
+84775751,1866473,4
+68561607,1866473,3
+65616591,1866473,3
+87727642,1866473,4
+130655992,1866473,4
+130655992,1866473,4
+Kios,1866473,3
+2592170,1866473,4
+65854158,1866473,4
+marmotgo,1866473,4
+44596229,1866473,3
+94828295,1866473,2
+a960629,1866473,2
+130433536,1866473,5
+1423262,1866473,2
+61806244,1866473,4
+4415162,1866473,4
+81149989,1866473,4
+35069880,1866473,3
+49582119,1866473,3
+ADmoviemtime,1866473,4
+67656730,1866473,5
+Anw77,1866473,4
+48877341,1866473,5
+65897088,1866473,3
+1761514,1866473,3
+geeseken,1866473,4
+123995952,1866473,4
+58802831,1866473,3
+64879609,1866473,3
+65441937,1866473,4
+luxe,1866473,4
+wybobo,1866473,5
+LittleTalks,1866473,4
+72257329,1866473,2
+tayswiftie,1866473,3
+Kkumako,1866473,3
+50414826,1866473,4
+2330272,1866473,3
+31308183,1866473,3
+2203192,1866473,3
+48217627,1866473,4
+47461599,1866473,4
+36152069,1866473,4
+55333647,1866473,4
+54781345,1866473,4
+Lumiere5200,1866473,3
+50629676,1866473,3
+127771292,1866473,3
+100338185,1866473,3
+wwwwind,1866473,4
+122062782,1866473,5
+123523483,1866473,4
+127691419,1866473,5
+122871112,1866473,4
+40643745,1866473,2
+walker2210,1866473,4
+67489382,1866473,5
+132012316,1866473,3
+1599590,1866473,4
+1248650,1866473,4
+129775647,1866473,4
+59217273,1866473,3
+75667669,1866473,3
+3506866,1866473,3
+73645330,1866473,3
+137850204,1866473,5
+69394485,1866473,3
+67019496,1866473,4
+106519480,1866473,3
+45784891,1866473,3
+62400100,1866473,4
+coollamb,1866473,4
+76220129,1866473,3
+gene4ever,1866473,3
+134026402,1866473,3
+54521491,1866473,4
+104261144,1866473,3
+46646449,1866473,4
+122258109,1866473,5
+47837056,1866473,4
+133350014,1866473,5
+14830211,1866473,5
+aquariusyoyo,1866473,3
+67435615,1866473,5
+JasonKing1021,1866473,2
+rethatevon,1866473,4
+59741946,1866473,2
+70215403,1866473,3
+frankxiafan,1866473,4
+122107585,1866473,4
+87638833,1866473,4
+12873508,1866473,4
+64907162,1866473,4
+51167957,1866473,2
+46068341,1866473,3
+67165803,1866473,5
+tsui.uestc,1866473,3
+Ken,1866473,3
+45883168,1866473,3
+Ashez,1866473,4
+idao,1866473,3
+jvjvjvjv,1866473,2
+37607914,1866473,4
+jdqx,1866473,4
+laycher,1866473,3
+83261887,1866473,4
+xuancanna,1866473,4
+jbecks,1866473,3
+21530130,1866473,4
+106548711,1866473,4
+115784778,1866473,4
+49397696,1866473,2
+cheshiredoc,1866473,4
+foun,1866473,3
+axio,1866473,3
+mainemay,1866473,3
+wiwikuang,1866473,3
+KarlSchneider,1866473,3
+idida,1866473,4
+daonian_1990,1866473,4
+81939398,1866473,3
+bfa1950,1866473,4
+DKfeixiang,1866473,3
+78754556,1866473,4
+78469944,1866473,3
+53278965,1866473,5
+123222453,1866473,4
+9784009,1866473,3
+53052178,1866473,3
+60552303,1866473,4
+63777033,1866473,5
+kane-chen,1866473,3
+83389168,1866473,4
+1074069,1866473,3
+71335687,1866473,4
+34835512,1866473,5
+48812180,1866473,4
+2107728,1866473,4
+allenjay,1866473,3
+43652685,1866473,3
+eric_iiw,1866473,3
+60631421,1866473,4
+61497443,1866473,3
+62531945,1866473,5
+67184394,1866473,4
+53668460,1866473,4
+41125061,1866473,4
+88154386,1866473,3
+48153292,1866473,3
+Democan,1866473,4
+myself7,1866473,4
+coolfax,1866473,5
+53815013,1866473,3
+72086305,1866473,3
+54983344,1866473,4
+61524961,1866473,3
+47688996,1866473,3
+joanna726,1866473,4
+54443064,1866473,-1
+50902906,1866473,-1
+sibylwang,1866473,4
+1998991,1866473,4
+53858902,1866473,3
+gj_1987,1866473,5
+67330888,1866473,3
+Shirleywjz,1866473,4
+44896000,1866473,4
+maitianwuya,1866473,-1
+3904908,1866473,4
+67609353,1866473,5
+3296630,1866473,4
+4236471,1866473,4
+40572113,1866473,3
+37064545,1866473,4
+jadexyy,1866473,4
+45529743,1866473,3
+2450300,1866473,3
+tofrom,1866473,3
+vonvonluck,1866473,4
+fangtr,1866473,4
+yagao1,1866473,4
+HERE,1866473,2
+104096948,1866473,4
+95416047,1866473,4
+95416047,1866473,4
+mayday_anne,1866473,4
+54419821,1866473,3
+62839462,1866473,3
+66322119,1866473,4
+53227132,1866473,4
+med1cine,1866473,5
+zest,1866473,4
+fancybear,1866473,2
+cairongjia,1866473,3
+crucifix_fox,1866473,4
+34010148,1866473,4
+48264121,1866473,3
+1421601,1866473,4
+youyuanshanren,1866473,4
+46627349,1866473,4
+36304941,1866473,4
+128379271,1866473,4
+43671128,1866473,4
+68476661,1866473,4
+85746210,1866473,4
+74612926,1866473,3
+lingxiaoyue,1866473,4
+26265440,1866473,5
+57445447,1866473,4
+kangwenyi,1866473,5
+25977616,1866473,5
+JC_Panda,1866473,3
+103016365,1866473,3
+21680407,1866473,3
+80060716,1866473,3
+59902712,1866473,5
+pangjiansheng,1866473,4
+83141101,1866473,3
+40067937,1866473,4
+sunjialin1989,1866473,5
+2590915,1866473,5
+wjxmygc,1866473,4
+4582318,1866473,4
+enanm,1866473,4
+92544403,1866473,4
+4668466,1866473,3
+36621771,1866473,3
+63434340,1866473,-1
+49420713,1866473,3
+70971321,1866473,4
+50942522,1866473,3
+5854721,1866473,5
+41850911,1866473,4
+2328781,1866473,4
+cai1st,1866473,3
+soityoung,1866473,3
+58059498,1866473,3
+48354152,1866473,3
+80011707,1866473,4
+52606273,1866473,3
+guoziguoziguozi,1866473,4
+osopaso,1866473,5
+114115384,1866473,4
+48335260,1866473,5
+jiaolimin,1866473,3
+85124865,1866473,4
+68750895,1866473,4
+85084961,1866473,3
+Sun__Babe,1866473,5
+70586246,1866473,2
+120646386,1866473,4
+discipline,1866473,4
+4192725,1866473,3
+64095116,1866473,4
+71181943,1866473,3
+85665063,1866473,2
+137350189,1866473,3
+103151877,1866473,-1
+52568253,1866473,4
+78906906,1866473,3
+48856056,1866473,4
+lovesunny,1866473,4
+myl1fe,1866473,4
+OOXXWJW,1866473,5
+31849844,1866473,4
+95312413,1866473,4
+zl1237,1866473,4
+3090557,1866473,-1
+1319405,1866473,3
+69809083,1866473,5
+66810723,1866473,5
+64826972,1866473,4
+50992070,1866473,3
+82603168,1866473,3
+46333522,1866473,4
+anents,1866473,5
+keisa,1866473,4
+1252327,1866473,3
+128005787,1866473,3
+55865355,1866473,2
+43542523,1866473,3
+56832705,1866473,4
+liuyingxin_1984,1866473,4
+32144547,1866473,4
+56519940,1866473,4
+duducool,1866473,4
+95264069,1866473,4
+49527668,1866473,4
+90551682,1866473,4
+59162431,1866473,2
+gallria,1866473,3
+yunijiajia,1866473,-1
+93505964,1866473,4
+64248782,1866473,3
+59591751,1866473,4
+62293051,1866473,3
+69458682,1866473,4
+63858929,1866473,4
+56116508,1866473,4
+50865043,1866473,3
+67732575,1866473,2
+72880439,1866473,3
+13174363,1866473,4
+45078275,1866473,4
+45078275,1866473,4
+75807285,1866473,3
+chenchenpaul,1866473,4
+73158261,1866473,4
+pinger87,1866473,5
+78389609,1866473,3
+sjzqzkn,1866473,3
+yayun920,1866473,3
+67125371,1866473,4
+76181752,1866473,4
+cloudink,1866473,3
+137383897,1866473,3
+tanoshiku,1866473,5
+54876127,1866473,4
+wuyunoy,1866473,4
+50773825,1866473,4
+40098751,1866473,4
+94399688,1866473,4
+59586906,1866473,4
+78730690,1866473,5
+3310337,1866473,4
+xiaojingyush,1866473,3
+aaronallan,1866473,5
+41785476,1866473,3
+78966790,1866473,4
+49028231,1866473,3
+Houdong,1866473,2
+58249010,1866473,4
+55317138,1866473,3
+inout,1866473,4
+62608491,1866473,4
+4531748,1866473,4
+dzone,1866473,3
+72061303,1866473,3
+2327763,1866473,4
+argoowz,1866473,3
+lindadarling,1866473,3
+90548476,1866473,3
+4311877,1866473,5
+yangfu,1866473,4
+56978693,1866473,3
+liarelaw,1866473,3
+122749528,1866473,4
+tinakirakira,1866473,5
+48560904,1866473,3
+79887691,1866473,5
+46827374,1866473,4
+66064522,1866473,3
+aninyya_cat,1866473,4
+2268415,1866473,5
+anlrj,1866473,4
+48641750,1866473,4
+losrfuu,1866473,2
+jefffeng,1866473,4
+90412571,1866473,2
+choushabi,1866473,4
+4134812,1866473,4
+56203117,1866473,3
+43955496,1866473,4
+zommy,1866473,3
+80354641,1866473,4
+chloe6668,1866473,4
+daiginnko,1866473,3
+demoncat,1866473,3
+2304340,1866473,4
+1451542,1866473,3
+68075321,1866473,4
+2298495,1866473,5
+49154510,1866473,4
+1608362,1866473,3
+lovewaiter,1866473,4
+LunaticPandora,1866473,4
+80978535,1866473,4
+plastictreeman,1866473,4
+77073926,1866473,4
+GKTThh,1866473,4
+NicoleCrowe,1866473,3
+3923065,1866473,4
+1249947,1866473,4
+119313402,1866473,5
+34753066,1866473,4
+jinzimiao,1866473,5
+2628818,1866473,4
+yelano,1866473,4
+66624462,1866473,4
+CworkOrange,1866473,3
+4108583,1866473,4
+yiouob,1866473,2
+shane1887,1866473,-1
+52656841,1866473,4
+51255691,1866473,3
+65178670,1866473,3
+89528523,1866473,4
+47576659,1866473,2
+wujiyu,1866473,3
+sarielkyoto,1866473,4
+57969879,1866473,3
+127762081,1866473,4
+49303961,1866473,4
+114422467,1866473,3
+58245871,1866473,5
+64500822,1866473,4
+122079973,1866473,4
+67561107,1866473,2
+127300222,1866473,4
+crvigne,1866473,5
+cherryonsale,1866473,4
+7669558,1866473,3
+57931932,1866473,4
+liutianhong1992,1866473,5
+133354785,1866473,2
+46788822,1866473,3
+Ellenlium01,1866473,4
+kaxidou,1866473,2
+68593933,1866473,4
+1371348,1866473,3
+alfon42,1866473,5
+30110594,1866473,2
+ilearner,1866473,4
+57596518,1866473,3
+68547609,1866473,4
+81316047,1866473,3
+CheeseTree,1866473,5
+123617593,1866473,4
+tpop,1866473,3
+61184196,1866473,3
+48304556,1866473,3
+56445461,1866473,4
+77555967,1866473,4
+137725931,1866473,3
+78786637,1866473,3
+kunvip886,1866473,5
+59638655,1866473,4
+63582688,1866473,5
+69330572,1866473,4
+moveqiu,1866473,4
+69131322,1866473,5
+46683408,1866473,5
+136599746,1866473,5
+50817761,1866473,4
+69016984,1866473,4
+yipiankongbai,1866473,3
+wangshiqian1024,1866473,3
+njlhwx,1866473,3
+eeiceeic,1866473,3
+kenheart_ccxuan,1866473,3
+1948576,1866473,-1
+4245501,1866473,3
+36276299,1866473,3
+137517942,1866473,3
+trista-smily,1866473,4
+53341104,1866473,4
+2677068,1866473,3
+4332802,1866473,2
+50444681,1866473,4
+110328259,1866473,4
+fujiaying,1866473,4
+jhourui,1866473,4
+45375152,1866473,2
+114358788,1866473,3
+ioy,1866473,3
+Godot0108,1866473,3
+61785634,1866473,4
+blue4light,1866473,5
+81789668,1866473,3
+45933152,1866473,4
+67211890,1866473,3
+26897119,1866473,4
+tinmiko,1866473,4
+4658557,1866473,3
+91923332,1866473,3
+xyl412,1866473,4
+99077517,1866473,4
+8752115,1866473,3
+jeansgarden,1866473,4
+60119202,1866473,3
+timeispassing,1866473,3
+darkstars,1866473,4
+3519353,1866473,3
+130399642,1866473,4
+53815086,1866473,4
+w74,1866473,3
+70154626,1866473,4
+sue-fighter,1866473,5
+56874398,1866473,5
+61413214,1866473,3
+JayKiller,1866473,4
+98757899,1866473,4
+50688073,1866473,4
+1056656,1866473,-1
+72944170,1866473,5
+35234764,1866473,2
+54781167,1866473,5
+74937470,1866473,5
+1654774,1866473,-1
+54076866,1866473,4
+marsding,1866473,3
+qq530898920,1866473,4
+14357343,1866473,4
+1484739,1866473,3
+1484739,1866473,3
+potassi_mcyanid,1866473,4
+56173618,1866473,3
+chengnanxuan,1866473,3
+102530220,1866473,3
+whloo1,1866473,5
+x-inter,1866473,5
+65256757,1866473,3
+2171561,1866473,3
+62506105,1866473,4
+57166176,1866473,4
+CheeZcn,1866473,3
+orangeT,1866473,4
+sanzanglx,1866473,3
+46146656,1866473,1
+99601239,1866473,1
+31044829,1866473,4
+ideyes,1866473,3
+82793308,1866473,3
+lxgend,1866473,3
+2431859,1866473,4
+74199863,1866473,4
+104651595,1866473,3
+122218547,1866473,4
+131953037,1866473,5
+39855725,1866473,2
+34347136,1866473,3
+59774310,1866473,5
+31335200,1866473,4
+43330235,1866473,4
+2762300,1866473,4
+xieao123,1866473,3
+43342177,1866473,3
+42610315,1866473,5
+68631195,1866473,1
+xuexiaoyan,1866473,4
+43982125,1866473,4
+39863972,1866473,5
+Sylary,1866473,3
+lovinest,1866473,4
+52716682,1866473,4
+78680128,1866473,4
+56128547,1866473,4
+3287248,1866473,3
+46534834,1866473,4
+67503021,1866473,3
+72120533,1866473,4
+emd12,1866473,2
+59205597,1866473,4
+longfei39,1866473,5
+37501692,1866473,4
+stevexia,1866473,4
+gjr,1866473,3
+38228503,1866473,4
+42623950,1866473,4
+yubingqiangwei,1866473,4
+101326703,1866473,4
+veiko,1866473,3
+121247615,1866473,5
+137206904,1866473,3
+iamtough,1866473,4
+wrdeam,1866473,4
+83145085,1866473,3
+32767730,1866473,4
+3501606,1866473,3
+52884834,1866473,3
+musicer03,1866473,4
+28170948,1866473,4
+126201751,1866473,4
+woshiadan,1866473,4
+1103640,1866473,3
+sharkspeare,1866473,4
+127219953,1866473,3
+2030775,1866473,3
+129580488,1866473,5
+3393944,1866473,4
+cherrychai,1866473,5
+83317526,1866473,4
+qqb143,1866473,3
+28110957,1866473,3
+endless_dreamle,1866473,3
+123122974,1866473,5
+16740892,1866473,3
+4700040,1866473,4
+1797813,1866473,3
+3300819,1866473,3
+96638998,1866473,5
+spottedowl,1866473,3
+bluesken,1866473,3
+eseasun,1866473,4
+Ocean52,1866473,3
+2592298,1866473,3
+49570696,1866473,5
+57260722,1866473,3
+81652871,1866473,3
+98956225,1866473,2
+46252496,1866473,3
+115762881,1866473,3
+urielwang,1866473,3
+54378833,1866473,4
+54378833,1866473,4
+gcd0318,1866473,3
+68363649,1866473,4
+59504522,1866473,4
+Queen613,1866473,4
+81133859,1866473,4
+sonicyang,1866473,3
+121620281,1866473,4
+3641651,1866473,3
+96175707,1866473,5
+46667318,1866473,3
+53863717,1866473,-1
+ele30tin,1866473,4
+4333160,1866473,4
+122879836,1866473,4
+milkynbird,1866473,3
+ayumiH,1866473,3
+28113244,1866473,5
+2546239,1866473,4
+53487447,1866473,3
+131021845,1866473,5
+2891944,1866473,4
+49711704,1866473,4
+dukeyunz,1866473,3
+107911126,1866473,4
+61317282,1866473,3
+6881518,1866473,4
+66236209,1866473,3
+50444806,1866473,4
+VICKI000,1866473,4
+skeeter007,1866473,3
+125878339,1866473,3
+64515288,1866473,4
+47616937,1866473,4
+97334739,1866473,4
+51060168,1866473,3
+istrangers,1866473,4
+101503219,1866473,4
+53768301,1866473,4
+4630769,1866473,3
+IT_Student,1866473,4
+czzpsych06,1866473,3
+52111433,1866473,3
+VickyMonster,1866473,4
+56856986,1866473,5
+imzrh,1866473,3
+136931946,1866473,3
+134916252,1866473,3
+zitangyaye,1866473,4
+121423792,1866473,4
+aiwengfan,1866473,1
+39294617,1866473,3
+63057898,1866473,3
+whz1143243564,1866473,5
+kickgeek,1866473,3
+51909421,1866473,2
+36403736,1866473,4
+shakespark,1866473,5
+71844789,1866473,4
+68093704,1866473,3
+100255899,1866473,4
+57005339,1866473,4
+97816774,1866473,4
+3521983,1866473,4
+72941446,1866473,5
+rdjtmntrl,1866473,5
+62047761,1866473,4
+3641686,1866473,3
+pyengu,1866473,4
+1844983,1866473,3
+2505517,1866473,5
+129575965,1866473,3
+78937198,1866473,3
+shuimudeyu1990,1866473,3
+giantpanda,1866473,3
+62578249,1866473,3
+64565637,1866473,3
+69723828,1866473,5
+longnel,1866473,4
+szfdouban,1866473,4
+szfdouban,1866473,4
+129967137,1866473,3
+kat.is.kathy,1866473,4
+121519817,1866473,5
+48756490,1866473,3
+129599627,1866473,4
+46385460,1866473,3
+michaelxu1205,1866473,3
+Guozhao,1866473,4
+Irene-nie,1866473,5
+PasS__bY,1866473,3
+cappuccino-jl,1866473,3
+50474016,1866473,5
+57972218,1866473,3
+135463251,1866473,3
+57699870,1866473,4
+82391492,1866473,-1
+snow961003,1866473,5
+lubolin,1866473,3
+120524672,1866473,5
+52961960,1866473,3
+63236309,1866473,5
+84936380,1866473,-1
+olabaobao,1866473,5
+3645958,1866473,4
+125469853,1866473,4
+moosee,1866473,5
+54806925,1866473,2
+34894274,1866473,3
+72972634,1866473,5
+biti.vector,1866473,4
+120466803,1866473,4
+4739187,1866473,3
+21133666,1866473,4
+1309486,1866473,4
+yunpu,1866473,4
+46876577,1866473,4
+roxanneshiong,1866473,4
+winniewong021,1866473,5
+mickey_.,1866473,4
+85366942,1866473,4
+137568140,1866473,5
+2948050,1866473,4
+37306803,1866473,4
+70930463,1866473,4
+55518938,1866473,3
+133598281,1866473,5
+61845850,1866473,3
+78150719,1866473,5
+30281505,1866473,4
+58609856,1866473,3
+awalktoremember,1866473,4
+54126939,1866473,4
+101937454,1866473,4
+64083865,1866473,2
+Lazy__cat,1866473,5
+43968587,1866473,4
+13833588,1866473,4
+64247507,1866473,3
+45382410,1866473,5
+xyhen,1866473,3
+47299010,1866473,2
+92982249,1866473,4
+kammury,1866473,3
+ChrisOutOfSpace,1866473,3
+lumen,1866473,4
+128106765,1866473,5
+chloe1108,1866473,5
+cuixin1976,1866473,5
+wanlili520,1866473,5
+74188273,1866473,4
+49617324,1866473,3
+47240557,1866473,5
+41606282,1866473,3
+44776734,1866473,4
+34634914,1866473,5
+53791497,1866473,3
+longlastingfad,1866473,4
+137365819,1866473,4
+90985192,1866473,2
+Ophelia-108,1866473,4
+3969292,1866473,3
+90480927,1866473,4
+132296063,1866473,4
+qtxs,1866473,4
+50404313,1866473,5
+62499870,1866473,3
+53323494,1866473,4
+miumiu777,1866473,4
+cangjie1900,1866473,4
+66557005,1866473,4
+122195421,1866473,3
+66341871,1866473,4
+69265405,1866473,4
+59127988,1866473,2
+58094874,1866473,2
+zhouxin95,1866473,3
+77099096,1866473,3
+49479409,1866473,-1
+88317701,1866473,5
+124444264,1866473,3
+61116917,1866473,4
+119476678,1866473,4
+Gaspard,1866473,3
+84398440,1866473,4
+earthchild,1866473,4
+xiaowenli,1866473,5
+65922740,1866473,4
+2242668,1866473,4
+isabel_cui,1866473,2
+79895695,1866473,3
+2999259,1866473,4
+lorenmt,1866473,5
+137438186,1866473,4
+43539810,1866473,4
+53804461,1866473,4
+49115709,1866473,5
+4624620,1866473,3
+StanleyCheung,1866473,4
+45197584,1866473,3
+45197584,1866473,3
+104099237,1866473,5
+janejanechan,1866473,4
+47308380,1866473,4
+135477569,1866473,3
+119263813,1866473,3
+81507911,1866473,4
+4323578,1866473,3
+anmolan0216,1866473,4
+lindanda,1866473,3
+54648454,1866473,4
+104842273,1866473,4
+liushaliu,1866473,3
+91019778,1866473,4
+61907651,1866473,3
+wuzhaobao,1866473,3
+35595189,1866473,4
+2603031,1866473,3
+134531481,1866473,3
+137143071,1866473,4
+zxc_suki,1866473,3
+54654369,1866473,3
+122719042,1866473,5
+55422325,1866473,5
+76509928,1866473,2
+3177593,1866473,3
+2240638,1866473,4
+yijingsheng,1866473,2
+2131520,1866473,3
+67330324,1866473,4
+120445293,1866473,5
+81504290,1866473,4
+38737800,1866473,3
+behindtheveil,1866473,3
+119489543,1866473,4
+xingyun2185,1866473,4
+Mackintosh,1866473,4
+Absurd1212,1866473,4
+kiethope,1866473,3
+43878478,1866473,4
+48069693,1866473,4
+36452184,1866473,3
+50632642,1866473,3
+55978897,1866473,4
+98293560,1866473,4
+81030268,1866473,3
+1559062,1866473,4
+63810080,1866473,4
+12198403,1866473,3
+2526442,1866473,3
+tanmingdong,1866473,3
+64035088,1866473,4
+summerjie,1866473,4
+52956534,1866473,3
+57350477,1866473,3
+elppapple,1866473,4
+14836914,1866473,4
+43912809,1866473,-1
+eyes1991,1866473,4
+1938649,1866473,3
+2438025,1866473,4
+78110952,1866473,5
+62259012,1866473,2
+1841749,1866473,3
+peggyzhu,1866473,5
+lushi,1866473,3
+luohuazhu,1866473,3
+47231110,1866473,2
+64071417,1866473,5
+villano,1866473,2
+48057625,1866473,4
+sunbiyu,1866473,4
+4051028,1866473,5
+66519184,1866473,4
+61375984,1866473,5
+115029613,1866473,4
+61779592,1866473,3
+52061855,1866473,4
+angalny,1866473,2
+jiangxuezi,1866473,4
+kingtreetooth,1866473,3
+joey12255555,1866473,3
+liuziyihhs,1866473,4
+47517431,1866473,3
+xuanxuan1209,1866473,4
+desperad0,1866473,4
+xiangfo,1866473,4
+50747236,1866473,2
+53204240,1866473,4
+k-j-p,1866473,4
+52451378,1866473,4
+x706,1866473,3
+53935985,1866473,4
+Idahogirl,1866473,2
+Grey1128,1866473,3
+CWQ1030,1866473,4
+52463415,1866473,3
+63700001,1866473,4
+135470815,1866473,5
+chenronggang,1866473,4
+71542304,1866473,5
+2718163,1866473,5
+130541613,1866473,5
+59221485,1866473,4
+sjch,1866473,4
+13191648,1866473,3
+45381894,1866473,4
+135996237,1866473,5
+liorraineQ,1866473,4
+iiawu,1866473,3
+54078126,1866473,5
+87390770,1866473,5
+mickjoust,1866473,4
+3116272,1866473,3
+103457931,1866473,5
+121633982,1866473,4
+57831727,1866473,4
+liangzhuzaoshu,1866473,-1
+108794765,1866473,3
+cmybbbb,1866473,5
+132750902,1866473,4
+137824298,1866473,4
+zzhiyao,1866473,5
+32853386,1866473,3
+bensdiary,1866473,3
+madgirldoris,1866473,2
+132444837,1866473,1
+122425673,1866473,3
+75792815,1866473,4
+57526570,1866473,3
+60970032,1866473,3
+fengyeada,1866473,2
+52080305,1866473,3
+73581567,1866473,5
+67052373,1866473,3
+33960706,1866473,5
+47167717,1866473,3
+48332324,1866473,5
+4544241,1866473,5
+kring,1866473,3
+fandarin,1866473,3
+37914560,1866473,3
+50516869,1866473,5
+60417212,1866473,5
+lazymule,1866473,4
+tobecontinued,1866473,-1
+53048177,1866473,4
+3934917,1866473,3
+teenteenteen,1866473,3
+wind_gxh,1866473,4
+1558709,1866473,4
+ohmygod813,1866473,3
+67758880,1866473,4
+4010903,1866473,4
+31877981,1866473,3
+127246406,1866473,2
+12391728,1866473,4
+42293953,1866473,3
+130944929,1866473,4
+kevi2dan,1866473,5
+kevi2dan,1866473,5
+68489915,1866473,4
+135788425,1866473,4
+103163957,1866473,4
+d8day,1866473,2
+4246182,1866473,4
+53477720,1866473,3
+4643817,1866473,3
+57831440,1866473,5
+73167671,1866473,-1
+44837247,1866473,4
+70549270,1866473,5
+55835825,1866473,5
+56566421,1866473,4
+126644059,1866473,4
+toka,1866473,4
+49698151,1866473,4
+121228834,1866473,5
+80859638,1866473,4
+isnico,1866473,3
+konec,1866473,3
+85245250,1866473,3
+2137795,1866473,3
+shikeyifeng,1866473,4
+42657229,1866473,4
+77013688,1866473,3
+92855943,1866473,4
+49803548,1866473,4
+61111034,1866473,4
+41618389,1866473,5
+53233343,1866473,3
+75905117,1866473,4
+58197963,1866473,5
+13527027,1866473,4
+yikoyumisa,1866473,4
+4401243,1866473,4
+35572328,1866473,2
+46970893,1866473,4
+eapac,1866473,-1
+4559768,1866473,3
+cocokidman,1866473,3
+cpt21,1866473,4
+55803883,1866473,3
+zouxq1993,1866473,5
+3083042,1866473,3
+kikilili006,1866473,4
+2636027,1866473,4
+as442181966,1866473,4
+68978873,1866473,5
+62704211,1866473,3
+icwk,1866473,4
+60732201,1866473,3
+137800179,1866473,4
+elaineishere,1866473,2
+58028604,1866473,4
+59426898,1866473,4
+84516045,1866473,4
+fengbao945,1866473,2
+53190172,1866473,4
+vivicky320,1866473,3
+4548261,1866473,3
+121656332,1866473,4
+yours8687,1866473,2
+8469986,1866473,3
+84654420,1866473,3
+zyone,1866473,3
+SoloAi,1866473,4
+suttie,1866473,4
+galaxyzhao,1866473,5
+largecool,1866473,3
+66980915,1866473,4
+formyself,1866473,4
+52708083,1866473,5
+zilaishui,1866473,3
+ssjj,1866473,4
+yueyuedad1972,1866473,4
+56922610,1866473,3
+46545185,1866473,5
+22583393,1866473,5
+grey_sugar,1866473,3
+1978997,1866473,4
+65138658,1866473,5
+yuanqing630,1866473,5
+2385520,1866473,3
+48445532,1866473,4
+yzfayxj,1866473,3
+4713496,1866473,4
+JackLee1992,1866473,3
+78051236,1866473,5
+BruceBack,1866473,4
+71477858,1866473,5
+one_upan,1866473,-1
+125267371,1866473,5
+75231611,1866473,3
+49065066,1866473,3
+53829796,1866473,4
+winter0313,1866473,5
+emma_er,1866473,4
+65989078,1866473,5
+liuchuanzi,1866473,4
+72820019,1866473,4
+30494481,1866473,4
+weblinder,1866473,4
+buuwp,1866473,4
+10724372,1866473,3
+128569083,1866473,4
+babybluebb,1866473,2
+54942314,1866473,3
+2294404,1866473,3
+93856616,1866473,4
+72941253,1866473,4
+125741123,1866473,4
+76326345,1866473,4
+50425824,1866473,4
+XiaoShai,1866473,4
+114467456,1866473,4
+61547123,1866473,4
+135248605,1866473,3
+57298061,1866473,4
+2070699,1866473,2
+2070699,1866473,2
+54703119,1866473,4
+82357316,1866473,4
+52524178,1866473,4
+98591417,1866473,4
+newcomer,1866473,3
+58430439,1866473,4
+49145848,1866473,4
+99004931,1866473,5
+66278129,1866473,4
+132210683,1866473,3
+beckhacong,1866473,5
+47475734,1866473,3
+121270653,1866473,3
+yiyedu,1866473,3
+43271150,1866473,4
+88033603,1866473,4
+56103306,1866473,2
+shenshanlaoma,1866473,4
+126929965,1866473,4
+126929965,1866473,4
+qixian1125,1866473,3
+artcrazy,1866473,3
+76748435,1866473,4
+ducklucy,1866473,4
+2951344,1866473,5
+3314831,1866473,3
+59366583,1866473,3
+59665595,1866473,3
+yvone1220,1866473,3
+meijiemo,1866473,-1
+58064521,1866473,3
+dewar,1866473,3
+evich,1866473,3
+68607460,1866473,4
+a83848400,1866473,3
+42657355,1866473,4
+54497011,1866473,4
+65469860,1866473,5
+49634368,1866473,4
+49634368,1866473,4
+63064889,1866473,3
+62917977,1866473,5
+dhlp,1866473,4
+87681382,1866473,-1
+78663925,1866473,4
+132463662,1866473,3
+45884477,1866473,3
+37228673,1866473,3
+June13,1866473,4
+oOUmi,1866473,4
+palpattine,1866473,1
+AuRevoir7,1866473,4
+chedan-NB,1866473,4
+52554533,1866473,4
+65398795,1866473,4
+9104603,1866473,3
+lolitazly,1866473,3
+2168902,1866473,3
+xiaohuai533,1866473,3
+xiaohuai533,1866473,3
+yeqing611,1866473,4
+119318539,1866473,4
+50094689,1866473,4
+40558804,1866473,4
+bmw.lili,1866473,4
+hulagirl,1866473,3
+jhy007,1866473,4
+61506971,1866473,4
+52378291,1866473,3
+69068097,1866473,4
+132154442,1866473,4
+56767865,1866473,4
+48965557,1866473,4
+xiaoipiao,1866473,5
+bloodsasha,1866473,4
+28414217,1866473,4
+34909792,1866473,4
+115231190,1866473,4
+solarwater,1866473,4
+63413340,1866473,4
+62874039,1866473,5
+87691265,1866473,3
+96035607,1866473,4
+shanggu,1866473,3
+windyolivia,1866473,4
+4129696,1866473,4
+u2bb,1866473,4
+48033961,1866473,3
+leiii,1866473,4
+56223706,1866473,4
+maoamao,1866473,5
+45994637,1866473,3
+33745770,1866473,4
+69367982,1866473,4
+84872284,1866473,3
+vivienvb,1866473,5
+79181644,1866473,4
+dotcomdog,1866473,4
+71250285,1866473,3
+50645471,1866473,4
+3104835,1866473,3
+AuZeonFung,1866473,4
+Jaytaoo,1866473,5
+115536725,1866473,3
+61718716,1866473,5
+Lucifer_89,1866473,4
+49191528,1866473,3
+81283209,1866473,2
+47723496,1866473,4
+134171030,1866473,4
+67861218,1866473,3
+xiaojiongxia,1866473,4
+lianmumu,1866473,5
+wxhnnmm,1866473,4
+SleepyEyes,1866473,3
+71905329,1866473,5
+zhanghuaxin,1866473,3
+22364570,1866473,3
+50074678,1866473,3
+3331579,1866473,3
+yilingbaihe,1866473,5
+50312553,1866473,4
+131636309,1866473,3
+aaaaaaaaaaa,1866473,3
+mouzhi,1866473,4
+70923979,1866473,3
+simoncrazy,1866473,3
+51378440,1866473,3
+74130746,1866473,2
+vinjun,1866473,3
+67851427,1866473,3
+87885475,1866473,3
+luanweiwei,1866473,3
+78881537,1866473,4
+chowmo,1866473,5
+85269857,1866473,3
+115329707,1866473,4
+73213893,1866473,4
+olioli2006,1866473,4
+olioli2006,1866473,4
+119446065,1866473,2
+lt-2988,1866473,5
+wulaoshan,1866473,4
+1236338,1866473,4
+soweird,1866473,5
+Mai68,1866473,-1
+levid,1866473,3
+play0829,1866473,4
+windy.lin,1866473,3
+qinhang,1866473,3
+Jane07,1866473,2
+90681003,1866473,4
+12360363,1866473,4
+82687720,1866473,3
+70614930,1866473,4
+zhangake,1866473,3
+54030694,1866473,5
+4409440,1866473,3
+119195141,1866473,4
+2348623,1866473,-1
+53855491,1866473,1
+59807933,1866473,5
+54171468,1866473,4
+lozer,1866473,3
+rockymay,1866473,3
+66269844,1866473,4
+10892176,1866473,4
+51496046,1866473,4
+4560642,1866473,3
+60375226,1866473,4
+61898774,1866473,4
+34479227,1866473,3
+67190853,1866473,3
+130589573,1866473,4
+70397135,1866473,3
+53868140,1866473,4
+milkcandy,1866473,3
+40073195,1866473,3
+43621478,1866473,5
+91024874,1866473,3
+48130091,1866473,4
+58308697,1866473,4
+3275817,1866473,3
+40512144,1866473,3
+cplcs,1866473,5
+50264396,1866473,-1
+JIANGXUE,1866473,3
+4502175,1866473,4
+realpussy,1866473,4
+91618562,1866473,3
+rainbowsmile,1866473,4
+62678652,1866473,5
+60781321,1866473,4
+jtwendy,1866473,5
+plawyer,1866473,3
+31951077,1866473,3
+slowslowzhang,1866473,4
+4128845,1866473,3
+naples5,1866473,4
+2316813,1866473,3
+kubrick_dy,1866473,3
+sinceY,1866473,4
+62091283,1866473,2
+25460734,1866473,4
+29667351,1866473,4
+45939025,1866473,4
+29662178,1866473,3
+65408583,1866473,5
+olivia1003,1866473,4
+121878138,1866473,4
+LyleWang,1866473,4
+137352484,1866473,4
+67298685,1866473,3
+56539741,1866473,3
+57113574,1866473,5
+rurucat,1866473,3
+3353989,1866473,3
+wyjlwyy,1866473,4
+99309071,1866473,4
+99309071,1866473,4
+119606902,1866473,3
+bozzvalen,1866473,2
+52046624,1866473,3
+88610055,1866473,4
+65763988,1866473,4
+47496790,1866473,3
+4313043,1866473,4
+iamloco,1866473,4
+63290202,1866473,3
+43948244,1866473,5
+dlup,1866473,3
+41041352,1866473,4
+maraton,1866473,4
+43790131,1866473,3
+xdcheung,1866473,5
+129979276,1866473,5
+101792652,1866473,5
+TERRYBEAR,1866473,3
+102315421,1866473,4
+rickeylee,1866473,3
+2527582,1866473,5
+3361340,1866473,3
+2948682,1866473,4
+137665589,1866473,4
+owenclv,1866473,3
+pengyaos,1866473,3
+63086956,1866473,4
+9322060,1866473,4
+29958349,1866473,4
+72993143,1866473,4
+104043833,1866473,3
+47480391,1866473,3
+38702982,1866473,5
+67531205,1866473,4
+42367485,1866473,4
+shiawasen,1866473,4
+125185442,1866473,4
+sweethurts,1866473,3
+goldendali,1866473,4
+44523640,1866473,3
+aking,1866473,3
+68364127,1866473,3
+123127945,1866473,1
+46722646,1866473,4
+41083928,1866473,4
+133801601,1866473,3
+lovers-fahion,1866473,5
+46436685,1866473,-1
+52267229,1866473,5
+122605310,1866473,3
+68941642,1866473,5
+fufei,1866473,4
+53566919,1866473,3
+92468807,1866473,3
+66403603,1866473,4
+Green_Girl,1866473,3
+1821069,1866473,4
+dongboqi,1866473,4
+allenyao,1866473,4
+43958775,1866473,4
+3645377,1866473,3
+46820034,1866473,4
+103726869,1866473,2
+danielx,1866473,5
+zhibiaoshi,1866473,4
+67865489,1866473,3
+levelart,1866473,4
+37886516,1866473,4
+80133214,1866473,4
+56922790,1866473,4
+43632851,1866473,3
+14583847,1866473,4
+102934174,1866473,5
+7007260,1866473,3
+51482803,1866473,3
+2257166,1866473,2
+59859119,1866473,2
+57278963,1866473,3
+iltt,1866473,-1
+consheep,1866473,3
+3008889,1866473,3
+60768165,1866473,3
+zhudasu,1866473,4
+41430205,1866473,4
+rpsh,1866473,3
+63766051,1866473,4
+51876071,1866473,3
+fcinter,1866473,3
+34005046,1866473,4
+83975590,1866473,4
+41946814,1866473,3
+41951732,1866473,3
+81424914,1866473,4
+KG719,1866473,4
+47815647,1866473,3
+73868761,1866473,1
+137678631,1866473,2
+40067147,1866473,-1
+91498001,1866473,4
+35241807,1866473,3
+90199489,1866473,5
+43602056,1866473,1
+75490431,1866473,3
+shas,1866473,4
+44852938,1866473,3
+137580781,1866473,4
+skloveshaka,1866473,4
+41577435,1866473,3
+47671749,1866473,4
+Decembermay,1866473,4
+92610102,1866473,3
+87311289,1866473,3
+clean12,1866473,4
+lunann,1866473,5
+133245536,1866473,3
+newslizi,1866473,4
+77791055,1866473,1
+Neoo0,1866473,4
+caunion,1866473,2
+123439615,1866473,3
+134148719,1866473,3
+49987940,1866473,3
+100532395,1866473,4
+jessieron,1866473,3
+4457793,1866473,5
+fatcatfatact,1866473,3
+nxam,1866473,3
+nyx0115,1866473,4
+37450030,1866473,4
+34526603,1866473,4
+3591608,1866473,4
+81163129,1866473,4
+82733508,1866473,4
+DarkblueInk,1866473,-1
+134146468,1866473,5
+viaggiatore,1866473,3
+yangisyang,1866473,3
+67653468,1866473,4
+3725119,1866473,4
+119673605,1866473,4
+50180510,1866473,4
+AILUHAN123,1866473,4
+PATCHPAN,1866473,5
+120735552,1866473,4
+28481892,1866473,4
+shmily12345,1866473,5
+42897156,1866473,4
+eyestriker,1866473,3
+xuancaidanqing,1866473,4
+62288515,1866473,4
+nengyinyibeiwu,1866473,4
+jason1992,1866473,4
+121570619,1866473,3
+54495452,1866473,4
+louis_li,1866473,4
+baguabagua,1866473,2
+kzhailideyu,1866473,5
+3439248,1866473,2
+51355598,1866473,3
+51355598,1866473,3
+49891008,1866473,4
+chenbing,1866473,4
+15158454,1866473,3
+46758420,1866473,4
+yozir,1866473,2
+fameloo,1866473,4
+44150163,1866473,3
+kingkongofkhan,1866473,4
+47004757,1866473,4
+Awezhang,1866473,4
+franling,1866473,-1
+muini,1866473,3
+64127845,1866473,5
+zhangrihe,1866473,3
+63105919,1866473,3
+122612759,1866473,4
+52396155,1866473,3
+jidecengjing,1866473,-1
+67685341,1866473,3
+50836475,1866473,5
+allenaobo,1866473,4
+4557702,1866473,4
+haimian1077,1866473,4
+p0pking,1866473,3
+2480215,1866473,3
+3208300,1866473,3
+seraph-ding,1866473,4
+62926962,1866473,5
+126130506,1866473,2
+82460624,1866473,3
+53620030,1866473,5
+echorus-walker,1866473,3
+68983294,1866473,4
+131090977,1866473,4
+30166414,1866473,4
+chl199093,1866473,4
+gdpan,1866473,5
+3517666,1866473,4
+119330188,1866473,3
+115329516,1866473,4
+60115733,1866473,5
+xml1112,1866473,3
+52097068,1866473,4
+59324564,1866473,4
+58858762,1866473,4
+58783502,1866473,4
+1801370,1866473,4
+36071533,1866473,3
+51377015,1866473,3
+1282175,1866473,3
+120530215,1866473,3
+49456596,1866473,4
+82310044,1866473,4
+Chery,1866473,2
+rehin,1866473,4
+qjp0h,1866473,4
+83428425,1866473,4
+131340441,1866473,4
+1493686,1866473,3
+62153097,1866473,3
+kkshopcc,1866473,3
+78681924,1866473,5
+53349909,1866473,3
+1084703,1866473,3
+ggrise,1866473,-1
+50557858,1866473,4
+48892810,1866473,4
+back2back,1866473,3
+foofights,1866473,2
+lingqingchun,1866473,-1
+Baracke,1866473,4
+121146638,1866473,4
+vensli,1866473,4
+60885961,1866473,3
+82911001,1866473,3
+48763298,1866473,3
+53774400,1866473,4
+ann0518,1866473,5
+doraline,1866473,-1
+135451199,1866473,4
+MaclovenZD,1866473,3
+ichliebedich,1866473,-1
+60701395,1866473,3
+novel_zhou,1866473,3
+68477521,1866473,3
+102897499,1866473,2
+zhanggongzi,1866473,4
+45332811,1866473,3
+9463369,1866473,5
+91114476,1866473,4
+65092466,1866473,4
+ihanhan,1866473,3
+2137969,1866473,3
+43471200,1866473,5
+fishial,1866473,3
+48509446,1866473,4
+rbhuanxiong,1866473,3
+yumiaodemao,1866473,5
+2193797,1866473,5
+55930112,1866473,3
+hushaohan,1866473,4
+Nirvanakafka,1866473,3
+58288224,1866473,2
+127231698,1866473,4
+130051507,1866473,4
+51884253,1866473,4
+60952768,1866473,4
+88878838,1866473,5
+58283106,1866473,3
+sskllt,1866473,3
+sunfloewr,1866473,4
+56143225,1866473,3
+2096902,1866473,2
+1364576,1866473,4
+97977278,1866473,3
+66711391,1866473,4
+43020527,1866473,3
+Valen-Valen,1866473,5
+zhuyaoyao,1866473,4
+wei75820,1866473,3
+69371165,1866473,4
+cca2222223,1866473,3
+roger0420,1866473,4
+61486728,1866473,4
+2415644,1866473,4
+61696845,1866473,4
+xiejinni,1866473,4
+134100949,1866473,4
+125282020,1866473,3
+60762809,1866473,5
+34601221,1866473,3
+57589094,1866473,5
+71974219,1866473,4
+sushunai,1866473,4
+44938274,1866473,5
+60955605,1866473,4
+60646074,1866473,5
+94380874,1866473,4
+65162225,1866473,2
+129381525,1866473,3
+74567166,1866473,4
+100438100,1866473,5
+xiaomo1,1866473,3
+xiangs,1866473,3
+72365862,1866473,5
+77216393,1866473,3
+tianranzijiegou,1866473,3
+36643443,1866473,3
+68277572,1866473,4
+43308232,1866473,4
+amyzane,1866473,4
+neochao,1866473,3
+58840542,1866473,4
+42006560,1866473,4
+39508181,1866473,3
+4346900,1866473,3
+ntrer,1866473,4
+58512408,1866473,3
+telomere,1866473,5
+baiwuya,1866473,5
+abpeter,1866473,4
+52315577,1866473,5
+61878012,1866473,4
+Rosa_lolali,1866473,4
+lonelylucifer,1866473,2
+68669440,1866473,3
+79456169,1866473,5
+72381227,1866473,3
+61509352,1866473,5
+50585337,1866473,3
+49153230,1866473,4
+31640382,1866473,3
+68592556,1866473,5
+together1018,1866473,4
+libinhan,1866473,3
+61229226,1866473,4
+bebest,1866473,3
+69892402,1866473,4
+MRcheshire,1866473,2
+MRcheshire,1866473,2
+44398603,1866473,5
+69507945,1866473,4
+134758585,1866473,-1
+31820753,1866473,4
+121738614,1866473,5
+121945022,1866473,5
+49342454,1866473,4
+itsmeymq,1866473,5
+77194286,1866473,4
+3053086,1866473,4
+131171695,1866473,4
+judy5th7,1866473,4
+92177922,1866473,5
+ydzxt,1866473,4
+zqw930421,1866473,3
+tangxg,1866473,4
+47415286,1866473,4
+1495292,1866473,4
+ppu07,1866473,4
+ppu07,1866473,4
+howlformousai,1866473,4
+turandot0815,1866473,3
+135795811,1866473,3
+53791114,1866473,4
+samixuan.,1866473,3
+63220712,1866473,4
+Clarke,1866473,-1
+Scorpio_lxs,1866473,4
+57069635,1866473,4
+zhoujiewu,1866473,3
+25676059,1866473,3
+94468324,1866473,2
+133020185,1866473,4
+3082551,1866473,4
+54977106,1866473,3
+68496579,1866473,3
+66596564,1866473,4
+ElephantBoy,1866473,4
+64543096,1866473,3
+59842125,1866473,5
+57501453,1866473,4
+63068430,1866473,4
+104792995,1866473,4
+sebastianv,1866473,2
+raychau,1866473,4
+53854833,1866473,4
+jlma1,1866473,5
+yoory,1866473,-1
+adi,1866473,3
+53212300,1866473,4
+teenwolf,1866473,5
+75555205,1866473,3
+121937876,1866473,4
+61430172,1866473,4
+44949504,1866473,5
+78263246,1866473,5
+56524460,1866473,4
+64349163,1866473,4
+Ann-e,1866473,-1
+sabel,1866473,5
+69492907,1866473,5
+kuroda_sakaki,1866473,3
+121148510,1866473,3
+50763809,1866473,4
+48395509,1866473,3
+3420891,1866473,4
+49886917,1866473,5
+134497584,1866473,4
+70727432,1866473,5
+52583553,1866473,5
+80055631,1866473,3
+nyserq,1866473,2
+67462088,1866473,3
+46728828,1866473,3
+65014224,1866473,4
+Jacky_L,1866473,4
+66720713,1866473,4
+42531507,1866473,2
+52750876,1866473,3
+43466652,1866473,3
+hazelxue,1866473,4
+yanmingsky,1866473,4
+57565875,1866473,3
+1767400,1866473,4
+37488201,1866473,-1
+53773450,1866473,3
+71929336,1866473,3
+91095353,1866473,5
+76999747,1866473,4
+42816656,1866473,4
+1723236,1866473,4
+senioroneleo,1866473,4
+121237994,1866473,4
+jbfu,1866473,3
+26601106,1866473,4
+78941984,1866473,4
+1759173,1866473,4
+43857375,1866473,3
+4407883,1866473,3
+brandnewstart,1866473,4
+karasu419,1866473,3
+90805572,1866473,3
+129488626,1866473,4
+doon7,1866473,3
+xiao8888,1866473,4
+juliazhuli,1866473,3
+chinnyh,1866473,4
+62161898,1866473,3
+52294863,1866473,3
+63324585,1866473,3
+54653189,1866473,4
+jerry6123,1866473,4
+60377456,1866473,4
+travelforever,1866473,4
+popzero,1866473,4
+stickerzhang,1866473,4
+55824890,1866473,5
+62483503,1866473,3
+70446008,1866473,5
+95817419,1866473,4
+70007681,1866473,4
+54555433,1866473,4
+130562665,1866473,4
+53193684,1866473,4
+metaphorqian,1866473,3
+136594496,1866473,4
+paistar,1866473,4
+55585638,1866473,4
+Tiamo0118,1866473,4
+68193326,1866473,3
+131006977,1866473,4
+54804910,1866473,3
+Ginatea,1866473,4
+jinjidexiong,1866473,3
+dalianhaizao,1866473,4
+37950189,1866473,4
+vipdayu,1866473,4
+zhurou,1866473,3
+129348708,1866473,4
+61532693,1866473,-1
+shenlewuwu,1866473,5
+46865330,1866473,5
+2922610,1866473,3
+109657209,1866473,4
+48473875,1866473,4
+70521401,1866473,4
+61748227,1866473,3
+mixi456,1866473,4
+50167002,1866473,3
+memox,1866473,4
+opheliafeeling,1866473,3
+47019925,1866473,3
+40929874,1866473,4
+54965871,1866473,4
+53620031,1866473,3
+doylerao,1866473,3
+59362946,1866473,3
+wjiandan,1866473,4
+49220911,1866473,3
+127978116,1866473,4
+48279582,1866473,3
+22510137,1866473,4
+ColorProduction,1866473,4
+2229618,1866473,5
+65538675,1866473,4
+3515844,1866473,5
+75531469,1866473,5
+70990506,1866473,3
+sunfloweroom,1866473,3
+99550697,1866473,3
+helloanyone,1866473,5
+121195542,1866473,5
+norah6964,1866473,5
+127632434,1866473,3
+db924519251,1866473,2
+40943584,1866473,-1
+94886676,1866473,4
+62296200,1866473,5
+91280997,1866473,4
+54693337,1866473,4
+101462888,1866473,4
+68227139,1866473,3
+79424091,1866473,4
+137585835,1866473,4
+88095866,1866473,5
+51100692,1866473,4
+4059273,1866473,4
+53872605,1866473,5
+3472636,1866473,5
+aptx0922,1866473,4
+59798433,1866473,4
+63524891,1866473,4
+QVivian,1866473,2
+rockymei,1866473,4
+G_Matthew,1866473,4
+81690117,1866473,4
+53950244,1866473,5
+85675408,1866473,4
+Tomokin,1866473,5
+moe_gor,1866473,4
+rolex16600,1866473,3
+129408166,1866473,4
+fwoncn,1866473,3
+78667352,1866473,5
+cxycxy19930520,1866473,5
+67296353,1866473,5
+79239570,1866473,4
+33942554,1866473,4
+27676863,1866473,4
+36659083,1866473,3
+47847703,1866473,4
+clearhappy7,1866473,3
+jiangdabiao,1866473,3
+102220840,1866473,4
+33688715,1866473,4
+53517811,1866473,3
+3014394,1866473,3
+JANETZHENG,1866473,4
+gs21cn,1866473,3
+84140756,1866473,4
+gracegsmile,1866473,4
+55357697,1866473,4
+58096357,1866473,3
+135530165,1866473,4
+81930224,1866473,3
+38461766,1866473,3
+aliter,1866473,5
+60908358,1866473,4
+128403577,1866473,5
+44109266,1866473,4
+50284935,1866473,3
+58135379,1866473,4
+64128291,1866473,3
+sunny333,1866473,5
+shadowshame,1866473,3
+michaelhuan,1866473,4
+83044349,1866473,3
+122288974,1866473,3
+2092765,1866473,4
+4560479,1866473,4
+56475433,1866473,3
+3321331,1866473,3
+colinhayashi,1866473,3
+67740691,1866473,3
+56844373,1866473,3
+63044059,1866473,3
+37885408,1866473,4
+guolibin,1866473,4
+135421560,1866473,3
+41267206,1866473,5
+tuzidan,1866473,3
+50477939,1866473,3
+52710825,1866473,3
+horadric,1866473,3
+v12108,1866473,4
+Simplelove_,1866473,3
+63927330,1866473,5
+76467871,1866473,3
+4295298,1866473,4
+73936611,1866473,5
+54614709,1866473,3
+64996012,1866473,3
+51583306,1866473,4
+56083731,1866473,3
+47990890,1866473,3
+96948133,1866473,3
+62515119,1866473,3
+131183374,1866473,4
+120161233,1866473,3
+lynntong,1866473,4
+114179686,1866473,3
+ValJester,1866473,3
+48105948,1866473,3
+85356798,1866473,5
+122048565,1866473,4
+chapu,1866473,3
+2157066,1866473,4
+34243551,1866473,4
+134580402,1866473,5
+61287139,1866473,-1
+sugarl,1866473,5
+1333997,1866473,4
+JJ88pig,1866473,5
+kaizige,1866473,2
+77349857,1866473,3
+55933493,1866473,4
+OOOOSummer,1866473,5
+52421707,1866473,4
+nowingcolorful,1866473,3
+Adrift_eternity,1866473,4
+35224934,1866473,4
+56095656,1866473,4
+srada,1866473,4
+68770847,1866473,4
+137555231,1866473,3
+50420769,1866473,3
+thenewhope,1866473,3
+78540381,1866473,3
+3853719,1866473,3
+98809894,1866473,4
+playtoy,1866473,3
+vipzshtomorrow,1866473,5
+Yuimokin,1866473,3
+imoioi,1866473,5
+81692824,1866473,3
+65260404,1866473,3
+78130123,1866473,2
+joyjay,1866473,4
+hemoo,1866473,5
+youyan.annalise,1866473,4
+for_love,1866473,4
+57280262,1866473,3
+suiyi7367,1866473,4
+y888888888,1866473,4
+42484020,1866473,3
+mufengqin,1866473,4
+81926405,1866473,4
+45455300,1866473,3
+66785665,1866473,4
+136802138,1866473,5
+61181229,1866473,-1
+3052607,1866473,4
+zhanshi1987,1866473,4
+caspermarjorie,1866473,3
+48304899,1866473,4
+63458600,1866473,3
+37101036,1866473,4
+48032495,1866473,5
+137541270,1866473,4
+watanabecoffee,1866473,2
+90500870,1866473,-1
+vividtime,1866473,3
+60258701,1866473,4
+Klinux,1866473,3
+1068125,1866473,4
+104713983,1866473,4
+67755348,1866473,4
+barzin,1866473,5
+dengxuanhai,1866473,4
+62989333,1866473,3
+62688110,1866473,2
+55831879,1866473,4
+foollance,1866473,4
+2342122,1866473,4
+shf993,1866473,3
+3410802,1866473,4
+50902125,1866473,4
+liiiiiiiii9,1866473,5
+103281873,1866473,3
+2437069,1866473,4
+101405544,1866473,4
+46668318,1866473,4
+62778442,1866473,4
+2174443,1866473,3
+lovepeople,1866473,4
+131039743,1866473,4
+56871206,1866473,3
+91747068,1866473,2
+44281201,1866473,5
+yxm8854,1866473,5
+53616337,1866473,3
+1771263,1866473,3
+71065282,1866473,3
+deartintin,1866473,4
+CookieCrumbler,1866473,4
+98457677,1866473,4
+nightdreamer,1866473,4
+87602683,1866473,4
+36499503,1866473,2
+62568620,1866473,4
+115078834,1866473,4
+80786128,1866473,4
+27432217,1866473,3
+23450183,1866473,4
+winning-11,1866473,3
+kevin_lu1001,1866473,3
+jaslee,1866473,4
+darkness211,1866473,5
+evanye,1866473,4
+74835284,1866473,3
+121444704,1866473,4
+godlovebearxi,1866473,4
+Xadow,1866473,5
+strange_kid,1866473,5
+Son47,1866473,3
+60168902,1866473,3
+56072639,1866473,3
+wena,1866473,4
+137437939,1866473,4
+49332854,1866473,4
+lyzxoxo,1866473,4
+63015769,1866473,4
+h1805331722,1866473,4
+msw0123,1866473,5
+mafeiyxq,1866473,1
+60608137,1866473,4
+34070573,1866473,5
+84698699,1866473,4
+75538960,1866473,4
+54373936,1866473,5
+snailjia,1866473,-1
+38829704,1866473,4
+feellings,1866473,2
+137522268,1866473,4
+127328567,1866473,3
+62827558,1866473,3
+66089131,1866473,4
+zhangzhibin,1866473,5
+60079529,1866473,3
+43979908,1866473,4
+DrinkD,1866473,4
+lizzywoo,1866473,4
+45008619,1866473,5
+136810733,1866473,4
+2384916,1866473,4
+101233044,1866473,-1
+33973598,1866473,5
+emmafish,1866473,3
+flowermoon,1866473,3
+55494665,1866473,4
+8925160,1866473,3
+46953833,1866473,3
+49369904,1866473,4
+77048663,1866473,4
+2387705,1866473,5
+121881237,1866473,5
+51245320,1866473,3
+133033817,1866473,3
+lvcheng0304,1866473,1
+3073495,1866473,2
+83385888,1866473,4
+towzoo,1866473,4
+66985441,1866473,4
+90825023,1866473,4
+53257768,1866473,3
+93484113,1866473,4
+47230637,1866473,5
+102862890,1866473,4
+dangxiaoshi,1866473,5
+67342694,1866473,4
+54503908,1866473,-1
+50438518,1866473,4
+62721036,1866473,3
+67719067,1866473,3
+sakuras1412,1866473,-1
+wcwc,1866473,5
+himarkcn,1866473,4
+amberasharon,1866473,4
+68806147,1866473,4
+ecgaoxiang,1866473,4
+45594123,1866473,4
+76399967,1866473,-1
+84170779,1866473,2
+tangmm,1866473,4
+132025988,1866473,4
+49663103,1866473,3
+107868990,1866473,4
+48290239,1866473,4
+121867791,1866473,4
+45307285,1866473,2
+BoyZ,1866473,5
+woshijiangxinju,1866473,4
+132126693,1866473,3
+134362348,1866473,3
+45368819,1866473,4
+irismile,1866473,4
+62383479,1866473,4
+71547837,1866473,5
+kazuki_suki,1866473,4
+wangyiwangyi,1866473,4
+42022756,1866473,3
+73059881,1866473,3
+50919323,1866473,3
+4182806,1866473,3
+50694268,1866473,4
+43371343,1866473,4
+lupocky,1866473,5
+24162736,1866473,4
+mihuaka,1866473,4
+aki0726,1866473,3
+3598072,1866473,4
+127963972,1866473,3
+60722327,1866473,4
+53586919,1866473,4
+1386369,1866473,4
+4446932,1866473,3
+xiao33319,1866473,4
+melancia,1866473,4
+AAAHHHAAA,1866473,4
+59495337,1866473,4
+wen1228,1866473,4
+xingxkxk,1866473,3
+37462874,1866473,3
+44522146,1866473,5
+108693709,1866473,4
+DrLoop,1866473,4
+zhenglei1919,1866473,3
+52705065,1866473,4
+68617780,1866473,4
+79348899,1866473,5
+47776464,1866473,5
+57315902,1866473,3
+yiyamiao,1866473,5
+april.fool,1866473,4
+80598638,1866473,5
+35183435,1866473,5
+36669166,1866473,4
+vitasharry,1866473,3
+96786087,1866473,2
+67456292,1866473,4
+WildMeteor,1866473,3
+lovelypocky,1866473,4
+margaux,1866473,4
+131521748,1866473,5
+chenlee,1866473,4
+88109580,1866473,5
+pm,1866473,3
+74818677,1866473,3
+52593489,1866473,5
+51882704,1866473,2
+120566787,1866473,4
+anbox,1866473,3
+88605317,1866473,5
+54741903,1866473,5
+33553111,1866473,5
+115131162,1866473,4
+EtionT,1866473,4
+fylingy,1866473,4
+73542789,1866473,4
+117234787,1866473,4
+115660168,1866473,3
+huaiyundemazha,1866473,4
+2472867,1866473,-1
+135724867,1866473,3
+103089307,1866473,5
+78214422,1866473,3
+55013431,1866473,4
+136155203,1866473,5
+Nofeelings,1866473,3
+fluorinespark,1866473,3
+47265787,1866473,3
+Lost_Atlantis,1866473,2
+45291333,1866473,4
+58472013,1866473,4
+52624380,1866473,3
+xiaoxiao0504,1866473,4
+46729768,1866473,3
+43129996,1866473,3
+4284841,1866473,4
+92615342,1866473,3
+bora2547,1866473,4
+49139242,1866473,5
+konakona,1866473,4
+4259863,1866473,3
+61497577,1866473,4
+50367027,1866473,4
+71861591,1866473,4
+56776280,1866473,3
+129554584,1866473,4
+68779054,1866473,4
+137398525,1866473,4
+92944589,1866473,3
+yf611x,1866473,3
+kilruk,1866473,3
+58317456,1866473,4
+53725842,1866473,5
+135626481,1866473,3
+101469765,1866473,5
+72858627,1866473,5
+51785908,1866473,4
+121076466,1866473,4
+126804729,1866473,3
+godblessrobin,1866473,5
+liusuer,1866473,4
+dongjh,1866473,2
+jxncm,1866473,5
+91088197,1866473,4
+amandachun-gccz,1866473,4
+136053168,1866473,3
+61394120,1866473,4
+93471236,1866473,4
+biketo,1866473,3
+62735594,1866473,3
+64920513,1866473,4
+zi34lang,1866473,2
+adventurer5927,1866473,4
+redcookie,1866473,4
+killian9999,1866473,3
+72870354,1866473,5
+jessicalvtingti,1866473,3
+marsstone,1866473,3
+aropfw1004,1866473,4
+4387690,1866473,4
+51572844,1866473,4
+104347602,1866473,4
+sj_leeY,1866473,4
+60906528,1866473,4
+47047008,1866473,4
+72883424,1866473,5
+61732711,1866473,4
+76552950,1866473,4
+52550764,1866473,5
+41636718,1866473,4
+131471616,1866473,3
+87403571,1866473,3
+miucather,1866473,5
+2280920,1866473,3
+1314588,1866473,3
+dovm,1866473,5
+20763391,1866473,4
+57447240,1866473,3
+2114417,1866473,4
+50364248,1866473,3
+Roxane,1866473,-1
+weiaiJaychou,1866473,4
+78846990,1866473,4
+67072789,1866473,5
+69969080,1866473,3
+52045091,1866473,4
+80304181,1866473,4
+xingxin6,1866473,4
+43297511,1866473,3
+71117694,1866473,3
+muiy,1866473,3
+86093744,1866473,1
+123981599,1866473,2
+47592794,1866473,5
+L_kid,1866473,5
+98493632,1866473,3
+63526173,1866473,4
+ledaodao,1866473,5
+fanyiduo,1866473,3
+40684892,1866473,4
+47853230,1866473,3
+cedric99,1866473,3
+k33425,1866473,4
+59451032,1866473,4
+3175914,1866473,3
+132254485,1866473,4
+hfguren,1866473,3
+yomiimoy,1866473,4
+53559432,1866473,2
+suixi,1866473,4
+deadkingq,1866473,5
+tijuana,1866473,3
+59401014,1866473,4
+xiaochi2,1866473,4
+1437339,1866473,4
+53245934,1866473,3
+50256775,1866473,4
+LotteMars,1866473,3
+70123027,1866473,-1
+kistrike,1866473,4
+wobumingbai,1866473,3
+uzbaby,1866473,4
+Jessica.clr,1866473,4
+AGCT_music,1866473,5
+137453306,1866473,5
+64620917,1866473,4
+137261116,1866473,3
+c-bode,1866473,4
+yinyuan,1866473,3
+80602343,1866473,3
+lxlkey,1866473,4
+67411402,1866473,4
+63277654,1866473,3
+50957198,1866473,4
+32920328,1866473,4
+64011605,1866473,2
+zo3c,1866473,4
+85114697,1866473,3
+ejw,1866473,4
+63617641,1866473,4
+weiweiguoer,1866473,4
+16166133,1866473,4
+68020683,1866473,5
+glasstar,1866473,3
+70851112,1866473,1
+84854172,1866473,4
+j1angvei,1866473,4
+33981553,1866473,3
+34592808,1866473,5
+78352623,1866473,4
+50527578,1866473,-1
+47709338,1866473,3
+106229129,1866473,4
+nangongmocheng,1866473,5
+112088753,1866473,3
+seven7sky,1866473,2
+42368147,1866473,2
+ylnaiwcz,1866473,-1
+49271038,1866473,4
+76964275,1866473,4
+LoveXXin,1866473,4
+heartbreakerkid,1866473,3
+beibeiyu,1866473,3
+2307180,1866473,3
+133584467,1866473,4
+53377652,1866473,4
+69325397,1866473,3
+120542127,1866473,5
+JohnnyLi,1866473,3
+momodeshang,1866473,4
+4366766,1866473,4
+56568243,1866473,3
+51284624,1866473,5
+59880831,1866473,3
+keywoodzone,1866473,3
+1333942,1866473,3
+43788388,1866473,3
+4430057,1866473,4
+98183739,1866473,3
+virgin,1866473,3
+K-Child,1866473,3
+ljyfree,1866473,2
+shuoyin,1866473,4
+gsmusician,1866473,2
+48217590,1866473,2
+58706034,1866473,4
+98880412,1866473,4
+64776955,1866473,4
+108728454,1866473,4
+27318486,1866473,3
+hakuhaku,1866473,4
+126994808,1866473,5
+49616200,1866473,4
+47138887,1866473,3
+2597570,1866473,4
+yelusiku,1866473,3
+Cyder,1866473,5
+79074513,1866473,3
+justinraul,1866473,3
+transitory,1866473,4
+53916327,1866473,4
+4501745,1866473,3
+chenxiliu,1866473,3
+129355992,1866473,5
+aprilhan,1866473,3
+fzlinyanxia,1866473,2
+dum,1866473,4
+64824326,1866473,4
+mic1990,1866473,4
+YAH1003,1866473,4
+akitang,1866473,4
+32251971,1866473,5
+csf,1866473,4
+colormoon,1866473,4
+50028709,1866473,1
+53387777,1866473,3
+judybear,1866473,-1
+86941493,1866473,4
+everfreeneciel,1866473,3
+47684731,1866473,4
+59383084,1866473,3
+mieyou8mie,1866473,4
+48957279,1866473,5
+fumaolianxi,1866473,-1
+annow,1866473,4
+3337580,1866473,4
+3337580,1866473,4
+3969339,1866473,4
+83202177,1866473,3
+47646952,1866473,4
+1631968,1866473,3
+78216114,1866473,3
+53794132,1866473,5
+61223246,1866473,3
+7973423,1866473,2
+4152095,1866473,5
+dudumozart,1866473,3
+44750610,1866473,4
+dirtydung,1866473,2
+henshss,1866473,3
+36805272,1866473,4
+53231469,1866473,5
+4213577,1866473,3
+6842341,1866473,3
+midautumnsong,1866473,3
+66043535,1866473,4
+79453297,1866473,4
+pretendor,1866473,4
+2570876,1866473,3
+70149072,1866473,1
+48047032,1866473,4
+gluttony6,1866473,3
+66257147,1866473,5
+dengsheng,1866473,2
+49855404,1866473,4
+73939740,1866473,3
+74918892,1866473,4
+to1900,1866473,5
+mr.songguo,1866473,4
+68353669,1866473,4
+111331563,1866473,3
+56970395,1866473,3
+3918507,1866473,4
+66335514,1866473,3
+caixiaoqiang,1866473,3
+85250768,1866473,-1
+sancosmos,1866473,1
+Williamlee1992,1866473,3
+54059498,1866473,4
+62668317,1866473,4
+62516560,1866473,4
+83490065,1866473,4
+16140339,1866473,1
+83701119,1866473,5
+136957186,1866473,3
+zuiyufengzhong,1866473,3
+zhongxin987,1866473,5
+xxyoyo,1866473,5
+VVsad,1866473,-1
+43528546,1866473,3
+74150636,1866473,4
+54349281,1866473,5
+51297703,1866473,5
+73997999,1866473,4
+4730490,1866473,3
+Daniel-Cheung,1866473,4
+lykingking,1866473,4
+anonymousor,1866473,2
+110172016,1866473,5
+Sandorothy,1866473,3
+127121534,1866473,4
+57816526,1866473,4
+70668927,1866473,3
+59906784,1866473,4
+80679783,1866473,2
+49308862,1866473,2
+flowerfrommars,1866473,4
+51078918,1866473,5
+127256948,1866473,4
+100091686,1866473,4
+3633198,1866473,3
+72471422,1866473,5
+53362350,1866473,4
+kolodo,1866473,3
+68352338,1866473,3
+115370500,1866473,4
+yxmj1982,1866473,3
+71132041,1866473,5
+71457288,1866473,4
+38265968,1866473,3
+84877866,1866473,4
+pandawin,1866473,3
+68162187,1866473,4
+snowmaymay,1866473,4
+53370159,1866473,4
+64704924,1866473,4
+38184816,1866473,3
+71843483,1866473,5
+123073450,1866473,3
+linchuzhuang,1866473,5
+52484368,1866473,2
+45245216,1866473,4
+rangdream,1866473,4
+banyinxie,1866473,4
+73650637,1866473,-1
+42138729,1866473,5
+wuxi4945,1866473,5
+loselove,1866473,4
+poppy7777,1866473,4
+hichai,1866473,3
+1369113,1866473,4
+3353710,1866473,4
+52345284,1866473,3
+55617091,1866473,4
+qq83114569,1866473,4
+ORBR,1866473,3
+hljmsfy,1866473,3
+no1907,1866473,3
+90610268,1866473,3
+3878223,1866473,5
+hicode,1866473,4
+59835894,1866473,4
+48477485,1866473,5
+bellaG,1866473,4
+yaoez,1866473,3
+2320667,1866473,5
+2320667,1866473,5
+56430102,1866473,2
+beibeilaner,1866473,4
+acagalli410,1866473,5
+69125358,1866473,3
+xlhtdxx,1866473,4
+70043510,1866473,3
+35890249,1866473,3
+76460934,1866473,3
+85236699,1866473,3
+54277204,1866473,3
+70681955,1866473,4
+54753971,1866473,3
+63380301,1866473,4
+63376089,1866473,4
+60074125,1866473,4
+censy,1866473,4
+53910261,1866473,3
+51416132,1866473,3
+seasonkiddo,1866473,-1
+80058700,1866473,3
+62119610,1866473,3
+75749309,1866473,3
+46524942,1866473,4
+62761738,1866473,4
+VVIVXIV,1866473,4
+50625431,1866473,4
+51651483,1866473,4
+72354881,1866473,5
+82222137,1866473,3
+113050393,1866473,4
+81550449,1866473,3
+viviyin,1866473,3
+64626074,1866473,3
+just_yeat,1866473,3
+zoeyi,1866473,4
+Wing87504,1866473,3
+84216766,1866473,3
+40164532,1866473,4
+72792251,1866473,3
+Rachel.L,1866473,4
+lyzw,1866473,4
+122352396,1866473,4
+MimiLs,1866473,4
+58332166,1866473,2
+zhuji,1866473,5
+103531222,1866473,3
+tt2792654,1866473,4
+sssssstutter,1866473,3
+84207817,1866473,5
+zhegejiale,1866473,4
+119392686,1866473,4
+69776981,1866473,4
+53186566,1866473,4
+mine_orange,1866473,4
+58610912,1866473,4
+YuleWu,1866473,4
+renymartin,1866473,4
+56684398,1866473,3
+33081318,1866473,3
+119787917,1866473,3
+41756959,1866473,4
+kssky,1866473,3
+wangshaoda,1866473,3
+2283860,1866473,4
+looknana,1866473,3
+yutingamy,1866473,3
+40172272,1866473,4
+52340866,1866473,4
+52487586,1866473,5
+41651433,1866473,5
+seraphhoo,1866473,3
+3170562,1866473,4
+51929329,1866473,4
+79580095,1866473,4
+1603330,1866473,3
+studyzy,1866473,3
+1319464,1866473,3
+orangle_liu,1866473,5
+2003213,1866473,4
+56849444,1866473,4
+77758955,1866473,4
+54228014,1866473,3
+MaxC,1866473,3
+41741395,1866473,3
+69682298,1866473,5
+134694723,1866473,5
+50985267,1866473,4
+bbass,1866473,3
+76466963,1866473,3
+1061597,1866473,4
+qzl,1866473,4
+14027517,1866473,3
+1565710,1866473,5
+treesun173,1866473,3
+72316189,1866473,4
+gooxx,1866473,4
+3000688,1866473,3
+32551454,1866473,4
+27223833,1866473,4
+crow.,1866473,4
+73909736,1866473,3
+waldo0121,1866473,5
+funnypunny,1866473,4
+fufu28,1866473,3
+mary2009,1866473,4
+54011582,1866473,3
+2982307,1866473,3
+lovelcl,1866473,4
+ZeryForL,1866473,3
+penguinman,1866473,2
+3475951,1866473,4
+colorwind,1866473,3
+49897167,1866473,1
+61516922,1866473,5
+132315557,1866473,3
+47371112,1866473,3
+Faithy26,1866473,3
+4391367,1866473,5
+41264056,1866473,3
+linmi,1866473,4
+york_wu,1866473,2
+2258556,1866473,2
+43435925,1866473,4
+22246157,1866473,5
+81863885,1866473,4
+47567093,1866473,4
+in_stereo,1866473,4
+136714687,1866473,4
+Shea_xll,1866473,5
+57142558,1866473,3
+62453659,1866473,5
+50401772,1866473,4
+huskie,1866473,-1
+sentlily,1866473,4
+jasonwcy,1866473,4
+jianganshe,1866473,-1
+mimiefenqiu,1866473,3
+sogstad,1866473,3
+47166487,1866473,4
+3432048,1866473,5
+hussizu,1866473,3
+91754998,1866473,5
+49536582,1866473,3
+2709425,1866473,4
+chen828,1866473,4
+lxhwsm,1866473,5
+131816687,1866473,3
+92906741,1866473,4
+liulenju,1866473,4
+47032431,1866473,3
+136333363,1866473,3
+90089301,1866473,3
+58601345,1866473,4
+3572516,1866473,3
+57698822,1866473,3
+64972660,1866473,3
+132572096,1866473,5
+landaishuyihao,1866473,4
+2266030,1866473,4
+1653790,1866473,4
+60788989,1866473,3
+49339227,1866473,5
+72220959,1866473,5
+dinoel,1866473,4
+43786893,1866473,4
+48707415,1866473,4
+80161824,1866473,5
+122740043,1866473,5
+83011051,1866473,4
+98202551,1866473,5
+YAMAHA_GO,1866473,4
+mollymouth,1866473,-1
+apchy,1866473,4
+littlebeans,1866473,4
+73715669,1866473,5
+65242715,1866473,5
+53058729,1866473,3
+blueguy,1866473,3
+FiveStrong,1866473,5
+LeeMar,1866473,3
+4839154,1866473,4
+yuedawei,1866473,3
+41758984,1866473,3
+58689768,1866473,5
+aspoon,1866473,5
+130540894,1866473,3
+67352190,1866473,5
+afrasakurai,1866473,1
+67731504,1866473,4
+aaaaaas,1866473,3
+52179978,1866473,4
+provence1019,1866473,4
+40474663,1866473,3
+ycy_21,1866473,5
+78459327,1866473,3
+2305783,1866473,3
+61625435,1866473,4
+126071846,1866473,4
+35296853,1866473,5
+55850316,1866473,4
+136414483,1866473,4
+2432383,1866473,3
+62405118,1866473,4
+cheergao,1866473,4
+2114161,1866473,5
+51833331,1866473,4
+62776173,1866473,4
+129141489,1866473,4
+53489403,1866473,4
+1938286,1866473,4
+littleisle,1866473,4
+sohojiawei,1866473,4
+Knighail,1866473,5
+36475631,1866473,4
+3229629,1866473,3
+rebean,1866473,3
+133502255,1866473,5
+30067864,1866473,5
+54215342,1866473,3
+54215342,1866473,3
+49413114,1866473,3
+80674760,1866473,4
+dahdumiedu,1866473,3
+Devil.Q,1866473,4
+83802681,1866473,4
+favezhihao,1866473,4
+73711889,1866473,4
+133081838,1866473,4
+ramonachan,1866473,4
+70042257,1866473,4
+hua_sheng_dou,1866473,5
+41199208,1866473,4
+130954450,1866473,4
+48351217,1866473,5
+46891725,1866473,4
+49937057,1866473,5
+133161561,1866473,5
+hildasu,1866473,4
+44919543,1866473,5
+23264500,1866473,4
+121875738,1866473,5
+57707856,1866473,3
+dailypop,1866473,3
+62180561,1866473,4
+44103412,1866473,4
+125618871,1866473,5
+90532402,1866473,3
+47298387,1866473,5
+wxhsolo,1866473,5
+brookett,1866473,5
+135543815,1866473,3
+4028097,1866473,4
+zhangbohun,1866473,3
+45347825,1866473,4
+55807296,1866473,5
+edith.wong,1866473,4
+65948183,1866473,3
+52905046,1866473,4
+21110490,1866473,2
+50249739,1866473,4
+Houjie_hj,1866473,4
+70108831,1866473,4
+18318076,1866473,4
+sheldonkao,1866473,2
+88658178,1866473,3
+43867607,1866473,3
+49041095,1866473,5
+wxsbeyondi,1866473,3
+44639489,1866473,3
+51815376,1866473,5
+qd724945697,1866473,4
+74954538,1866473,5
+fuzyu,1866473,5
+p22231,1866473,5
+eci0427,1866473,-1
+67469687,1866473,4
+78601907,1866473,3
+135165633,1866473,5
+y1991513,1866473,3
+Smileysnow,1866473,3
+102267665,1866473,5
+67763944,1866473,3
+47037959,1866473,3
+67883683,1866473,3
+48078859,1866473,4
+70914414,1866473,4
+20054715,1866473,4
+74936551,1866473,3
+mickey0725,1866473,5
+81244462,1866473,4
+skferb,1866473,5
+2202623,1866473,3
+52244189,1866473,3
+120832097,1866473,4
+lanchong03,1866473,4
+122416010,1866473,3
+Niro-Zeng,1866473,5
+fengshurui,1866473,-1
+45797451,1866473,3
+42964686,1866473,5
+3243275,1866473,3
+126348390,1866473,5
+sissistar,1866473,3
+68855550,1866473,3
+zera,1866473,5
+u_hxy0504,1866473,4
+75561690,1866473,2
+63744362,1866473,4
+51370063,1866473,4
+43057375,1866473,4
+Effi,1866473,3
+84137263,1866473,4
+75650547,1866473,3
+33990103,1866473,4
+108212384,1866473,4
+3260744,1866473,3
+56169417,1866473,4
+qfy,1866473,3
+gongguan,1866473,3
+gongguan,1866473,3
+58300229,1866473,2
+43625639,1866473,4
+myway510,1866473,3
+88273996,1866473,4
+63755964,1866473,3
+wunie,1866473,3
+120984888,1866473,4
+linlongnian,1866473,5
+36735001,1866473,3
+131039568,1866473,5
+diebuyi,1866473,3
+larryhe,1866473,3
+2840499,1866473,2
+92529698,1866473,5
+3215192,1866473,3
+49266863,1866473,4
+50141061,1866473,4
+qbits,1866473,5
+79898693,1866473,4
+43153197,1866473,3
+freakyoyo,1866473,3
+azthwh,1866473,5
+72815235,1866473,3
+93606686,1866473,5
+taotaomvp,1866473,3
+100637778,1866473,3
+58934612,1866473,3
+103076371,1866473,4
+ansontree33,1866473,4
+64131713,1866473,4
+aralebox,1866473,4
+koutiao,1866473,3
+82083975,1866473,5
+79803791,1866473,3
+64060154,1866473,3
+shenggxhz,1866473,4
+127675582,1866473,1
+downbeats,1866473,4
+57899095,1866473,4
+wangqiwen,1866473,4
+90617915,1866473,-1
+76549379,1866473,4
+109884640,1866473,4
+75940485,1866473,4
+brew,1866473,3
+47397728,1866473,4
+1448740,1866473,4
+haixingba,1866473,3
+50420949,1866473,-1
+62843301,1866473,4
+83079142,1866473,4
+33438465,1866473,4
+44764426,1866473,4
+csc,1866473,3
+vermoutha,1866473,5
+59940868,1866473,3
+32810352,1866473,4
+2239351,1866473,4
+70464788,1866473,4
+59038247,1866473,1
+62732851,1866473,4
+myjayway,1866473,4
+fiona721,1866473,4
+photoshopper,1866473,2
+liminzhang,1866473,4
+2376689,1866473,-1
+dreckding,1866473,3
+67941529,1866473,4
+43761875,1866473,5
+53030860,1866473,5
+127651937,1866473,4
+nadiawoo,1866473,4
+39207025,1866473,3
+120252287,1866473,2
+63871984,1866473,4
+stardust1900,1866473,2
+52156429,1866473,1
+60551662,1866473,4
+fightim,1866473,3
+127965244,1866473,3
+65025231,1866473,4
+slothbug,1866473,3
+55769530,1866473,5
+zhanghanha,1866473,4
+2091302,1866473,2
+eddy_charlie,1866473,3
+58153848,1866473,3
+57844107,1866473,5
+58178251,1866473,5
+55321453,1866473,4
+53672256,1866473,5
+41234171,1866473,3
+hermit90,1866473,3
+62417186,1866473,4
+46810295,1866473,4
+102916412,1866473,5
+87298117,1866473,4
+2087622,1866473,3
+48770075,1866473,3
+120479152,1866473,2
+mcoach,1866473,3
+51236266,1866473,3
+10149854,1866473,4
+39202306,1866473,5
+37322815,1866473,5
+46686249,1866473,4
+69223309,1866473,4
+64880714,1866473,3
+onlyjtl,1866473,4
+anmao,1866473,4
+127345355,1866473,5
+tuihuo,1866473,5
+dhtcwd,1866473,5
+fengyue12358,1866473,3
+135430923,1866473,5
+hnnyzxh,1866473,3
+75981147,1866473,4
+1223469,1866473,5
+cc5832354,1866473,4
+poxiaozhe,1866473,4
+4214564,1866473,3
+67039563,1866473,4
+75928928,1866473,3
+75652747,1866473,4
+senlintu,1866473,4
+53646130,1866473,3
+44303270,1866473,4
+72451264,1866473,4
+candyhorse,1866473,4
+thinhunan,1866473,2
+134080513,1866473,4
+90748727,1866473,5
+64280895,1866473,2
+121084172,1866473,5
+126961893,1866473,4
+48591645,1866473,3
+52615010,1866473,4
+2917148,1866473,3
+2750884,1866473,5
+48965747,1866473,5
+131632042,1866473,4
+120627904,1866473,4
+39412698,1866473,5
+35694775,1866473,3
+43298618,1866473,3
+13826202,1866473,4
+59233109,1866473,4
+4100649,1866473,4
+69066592,1866473,4
+62406790,1866473,1
+62418513,1866473,5
+81856033,1866473,4
+Ray_W,1866473,4
+63960808,1866473,3
+71586138,1866473,4
+58513606,1866473,4
+7223165,1866473,4
+56957975,1866473,3
+133927238,1866473,5
+fengwanjing,1866473,3
+52819229,1866473,4
+100939284,1866473,5
+44373773,1866473,4
+60634927,1866473,3
+49298107,1866473,3
+57936922,1866473,4
+64780259,1866473,4
+jimmy037,1866473,3
+maggiexu,1866473,3
+62363931,1866473,5
+LazyCatZ,1866473,4
+42359539,1866473,3
+3575164,1866473,3
+yunxiaoj,1866473,4
+76553080,1866473,4
+126682168,1866473,4
+Chrismade,1866473,3
+eblackangle,1866473,4
+63160833,1866473,5
+51183805,1866473,3
+jiudoucairen,1866473,5
+4679551,1866473,3
+58836160,1866473,3
+bhg,1866473,4
+49539687,1866473,5
+hellozyn,1866473,4
+136891005,1866473,3
+50583077,1866473,4
+38477082,1866473,5
+55559550,1866473,3
+aptxkim,1866473,4
+3528812,1866473,3
+31306878,1866473,5
+64535817,1866473,4
+62502924,1866473,4
+83994709,1866473,3
+4166320,1866473,3
+66535614,1866473,4
+103780920,1866473,4
+Azzz,1866473,4
+45059307,1866473,3
+134552122,1866473,5
+62477374,1866473,5
+135147897,1866473,4
+54728119,1866473,3
+RichardGrey,1866473,4
+88452602,1866473,4
+59699452,1866473,4
+shixuqing,1866473,3
+B.angus,1866473,4
+70418145,1866473,2
+46812658,1866473,4
+56586044,1866473,5
+3772330,1866473,3
+39696481,1866473,3
+73478164,1866473,3
+35698024,1866473,4
+44523449,1866473,4
+133906973,1866473,5
+shinysky,1866473,4
+58897478,1866473,4
+137303234,1866473,5
+65830621,1866473,5
+60144175,1866473,4
+53639016,1866473,3
+71890378,1866473,4
+letyoufindme,1866473,5
+virginia7,1866473,3
+47845902,1866473,3
+binglanxier,1866473,4
+thundering,1866473,5
+dawdle,1866473,4
+61389962,1866473,4
+71879067,1866473,3
+123141060,1866473,4
+51496241,1866473,-1
+53242249,1866473,3
+59043900,1866473,3
+58697175,1866473,4
+henhen0701,1866473,4
+63021029,1866473,5
+janfle,1866473,4
+82722362,1866473,3
+59129938,1866473,4
+52898679,1866473,3
+Edward-Lockwood,1866473,4
+faiel,1866473,3
+58254446,1866473,4
+carrot8587,1866473,4
+37262549,1866473,4
+42569565,1866473,4
+ga_twenty,1866473,4
+whereru,1866473,4
+65054483,1866473,3
+119790269,1866473,3
+45094700,1866473,4
+WZYU-96,1866473,2
+abezhang,1866473,5
+kidddddding,1866473,5
+50443968,1866473,3
+feller,1866473,3
+50328839,1866473,3
+sunyangchina,1866473,4
+Candy_Ghost,1866473,4
+46309610,1866473,3
+iwangke,1866473,3
+108113381,1866473,4
+Time-Trust,1866473,4
+bobobobobo,1866473,4
+133094793,1866473,4
+yaojinlong,1866473,4
+47808773,1866473,3
+wzjzxgj,1866473,-1
+62996817,1866473,4
+66311081,1866473,5
+shijoe,1866473,4
+tomatooo,1866473,4
+4774491,1866473,1
+zeex,1866473,4
+56653841,1866473,4
+119828861,1866473,5
+40643841,1866473,3
+76879519,1866473,3
+65366516,1866473,4
+50210563,1866473,4
+2668037,1866473,4
+44436573,1866473,5
+shaoyedn,1866473,4
+64854726,1866473,3
+GMDY,1866473,3
+42625255,1866473,4
+49722560,1866473,5
+54605122,1866473,4
+57409980,1866473,4
+maxlvw,1866473,4
+lilcccc,1866473,4
+124536699,1866473,4
+73222054,1866473,4
+49334857,1866473,4
+135099240,1866473,3
+100418686,1866473,3
+24068635,1866473,5
+Joycejingtong,1866473,4
+colorjiang,1866473,-1
+81530706,1866473,4
+3377445,1866473,4
+dadadayo,1866473,3
+51945032,1866473,5
+91296116,1866473,4
+67544902,1866473,4
+ChristopherJie,1866473,4
+34040552,1866473,3
+82823263,1866473,3
+56086830,1866473,4
+50080144,1866473,4
+103214078,1866473,3
+70518379,1866473,4
+mjtang,1866473,4
+94199515,1866473,5
+69328232,1866473,5
+133752998,1866473,1
+137301398,1866473,3
+3481743,1866473,3
+122508584,1866473,3
+toufaluan,1866473,5
+50566408,1866473,4
+cuikunjia,1866473,-1
+134054475,1866473,5
+xzx2011,1866473,5
+2235528,1866473,4
+leeliu,1866473,3
+yzy16,1866473,5
+moicen,1866473,4
+56427016,1866473,3
+51508263,1866473,5
+60728287,1866473,4
+54889533,1866473,5
+52522804,1866473,3
+60157427,1866473,3
+neneha,1866473,4
+124421219,1866473,3
+eileen0817,1866473,4
+60295233,1866473,3
+79210098,1866473,4
+54380467,1866473,4
+63014642,1866473,4
+mkbl,1866473,5
+xu77,1866473,4
+93007927,1866473,4
+marxpayne,1866473,4
+LovingLife2016,1866473,5
+12467421,1866473,4
+58001500,1866473,3
+62805644,1866473,4
+zombiekid,1866473,4
+51138585,1866473,4
+1291946,1866473,3
+117339283,1866473,3
+annieaiannie,1866473,4
+49922620,1866473,4
+62745677,1866473,3
+Yuenyuan,1866473,3
+engcube,1866473,4
+75328137,1866473,4
+61795649,1866473,3
+yousuke,1866473,3
+clynch,1866473,3
+56239771,1866473,3
+122413006,1866473,3
+cocojamboo,1866473,2
+xlei130,1866473,1
+60469455,1866473,4
+1534963,1866473,3
+65388874,1866473,5
+56076158,1866473,5
+57383174,1866473,3
+mrockfire,1866473,4
+70212980,1866473,5
+75826878,1866473,3
+44513297,1866473,4
+64076867,1866473,4
+70162864,1866473,3
+littleshy,1866473,3
+Fil-girl,1866473,4
+zhongxiaojun,1866473,4
+79841047,1866473,4
+hbwsbo,1866473,3
+maxdoreen,1866473,5
+deer1156164672,1866473,4
+ween339,1866473,4
+74768790,1866473,3
+Jenny_Hsin,1866473,4
+73830337,1866473,3
+imhechang,1866473,4
+57784370,1866473,4
+njtintin,1866473,4
+52790172,1866473,3
+62946136,1866473,3
+63177437,1866473,5
+53565685,1866473,3
+50811235,1866473,3
+110652593,1866473,4
+fupp1119,1866473,4
+37840696,1866473,4
+choppernini,1866473,5
+nearlloveyou,1866473,3
+129936841,1866473,3
+63250313,1866473,3
+35877038,1866473,3
+crazygogo,1866473,4
+37183583,1866473,4
+66696808,1866473,3
+lazyjo,1866473,4
+83297028,1866473,4
+Zlil,1866473,4
+83186453,1866473,4
+1831746,1866473,5
+shuiyichen,1866473,4
+52519025,1866473,4
+neixinqiangda,1866473,4
+109273896,1866473,3
+beannyontheroad,1866473,4
+132392850,1866473,5
+131500618,1866473,4
+weini0410,1866473,4
+4029515,1866473,-1
+51038558,1866473,5
+44587158,1866473,3
+135285888,1866473,5
+2594549,1866473,3
+48514176,1866473,5
+2976553,1866473,5
+nobodyfind,1866473,5
+muouplay,1866473,3
+36477944,1866473,3
+44081301,1866473,4
+FrancisM,1866473,4
+3563996,1866473,5
+65863568,1866473,4
+123386745,1866473,4
+79915546,1866473,5
+44216952,1866473,4
+119449888,1866473,2
+97977376,1866473,3
+kidify,1866473,3
+68277125,1866473,3
+57874939,1866473,3
+102436486,1866473,4
+2846758,1866473,4
+film101,1866473,4
+115219372,1866473,4
+82550997,1866473,3
+70512730,1866473,3
+grassonthetree,1866473,3
+Narcisken,1866473,4
+juwujian,1866473,3
+49373007,1866473,3
+57122585,1866473,5
+UC0083,1866473,3
+leafsong,1866473,4
+74990413,1866473,3
+3428014,1866473,4
+44947264,1866473,2
+erobin,1866473,4
+3833369,1866473,4
+putaonat,1866473,4
+mostai,1866473,3
+fengclient,1866473,5
+monorol,1866473,-1
+47394588,1866473,3
+ldlizhiqing,1866473,3
+54375575,1866473,4
+68989213,1866473,3
+62210177,1866473,4
+monica325,1866473,3
+tingxuanlv,1866473,3
+1380354,1866473,3
+xxflyyh,1866473,4
+115164354,1866473,3
+121482185,1866473,5
+48360672,1866473,5
+70915171,1866473,4
+35440419,1866473,4
+59556078,1866473,4
+alcudish,1866473,3
+wonderfulhoujie,1866473,4
+wrbconnie,1866473,4
+83449630,1866473,4
+1756794,1866473,4
+35545320,1866473,4
+46572945,1866473,3
+50226238,1866473,3
+daisylook,1866473,3
+31469454,1866473,5
+coconutZii,1866473,4
+wangxiaoyeer,1866473,3
+130370376,1866473,4
+130762415,1866473,3
+82572574,1866473,4
+44888841,1866473,1
+9614176,1866473,4
+i840152811,1866473,4
+48380446,1866473,3
+53011245,1866473,4
+hcxx,1866473,4
+51504042,1866473,4
+129159691,1866473,5
+xiaotaomao,1866473,4
+kikoliu999,1866473,5
+71266039,1866473,4
+78585839,1866473,5
+hexiumin,1866473,3
+zhaoyuner,1866473,3
+33757247,1866473,4
+brightchai,1866473,4
+135143930,1866473,4
+133471355,1866473,5
+90000787,1866473,3
+70235777,1866473,3
+3685304,1866473,4
+44990923,1866473,3
+aurorabread,1866473,4
+lyych,1866473,3
+135245926,1866473,4
+133486848,1866473,4
+4557738,1866473,5
+41462868,1866473,4
+71985328,1866473,4
+3550612,1866473,4
+53710950,1866473,3
+Grace_Xuliang,1866473,4
+128902296,1866473,4
+54252699,1866473,4
+59005110,1866473,3
+44155260,1866473,4
+78757579,1866473,3
+askingwindy,1866473,3
+87034893,1866473,5
+50353681,1866473,3
+3631042,1866473,4
+sunkyeast,1866473,4
+39491647,1866473,3
+Panwang1989,1866473,3
+uncleyang,1866473,4
+ferkmavie,1866473,4
+3009345,1866473,4
+56035103,1866473,4
+14327084,1866473,3
+iRayc,1866473,3
+vivo,1866473,-1
+51045384,1866473,4
+sherryvi,1866473,4
+127797249,1866473,5
+xijiayang,1866473,3
+xuxu2333,1866473,5
+69502792,1866473,5
+49871363,1866473,3
+NaamTsui,1866473,4
+51855182,1866473,5
+jedicat,1866473,4
+59055667,1866473,4
+68068334,1866473,5
+47396894,1866473,3
+92878802,1866473,3
+45390521,1866473,4
+mabysomebody,1866473,1
+67007418,1866473,4
+yuiyvonne,1866473,4
+46718931,1866473,4
+METABOLISM,1866473,5
+76554051,1866473,5
+lichade,1866473,3
+81752466,1866473,3
+130234848,1866473,4
+66933810,1866473,-1
+snokin,1866473,3
+myfairytale,1866473,-1
+56070920,1866473,3
+3029659,1866473,4
+52007831,1866473,3
+70904193,1866473,4
+marryliu,1866473,5
+mojiang730,1866473,4
+63989347,1866473,4
+52708319,1866473,3
+2788057,1866473,2
+49789073,1866473,3
+CycloneBoy,1866473,5
+136360346,1866473,4
+6564681,1866473,4
+52798732,1866473,5
+54191663,1866473,4
+3683989,1866473,4
+65051253,1866473,5
+61579193,1866473,5
+34617683,1866473,-1
+mrsmsr,1866473,3
+fanshuren,1866473,4
+9619954,1866473,4
+124548457,1866473,4
+64124840,1866473,3
+49988447,1866473,4
+v1wanghuang,1866473,4
+69072393,1866473,4
+aquar25,1866473,4
+73465562,1866473,4
+67880800,1866473,3
+43522692,1866473,3
+aivnce,1866473,4
+34936131,1866473,5
+real_spain,1866473,5
+118854321,1866473,3
+62873685,1866473,5
+135102331,1866473,3
+duankou,1866473,5
+131352783,1866473,3
+50346508,1866473,4
+fayema,1866473,3
+42883589,1866473,5
+9349453,1866473,3
+4101720,1866473,4
+tao1kb,1866473,5
+82993911,1866473,4
+Jodiezhang,1866473,4
+46818877,1866473,3
+59336433,1866473,3
+36617894,1866473,3
+39540818,1866473,3
+53238292,1866473,4
+65447745,1866473,5
+liyah,1866473,4
+superabigail,1866473,-1
+32977496,1866473,4
+45623979,1866473,4
+Yu-Tommy,1866473,4
+57474326,1866473,4
+63714261,1866473,4
+50066816,1866473,5
+95443736,1866473,4
+65236397,1866473,4
+Rihaulin,1866473,3
+yunerrun,1866473,3
+51342796,1866473,4
+52010421,1866473,4
+92027453,1866473,4
+25555778,1866473,3
+1238604,1866473,4
+momouk,1866473,4
+53605714,1866473,4
+NicoleAkiko,1866473,5
+2613556,1866473,4
+132714507,1866473,5
+3962795,1866473,5
+80466570,1866473,2
+jojojojojoanna,1866473,3
+79820861,1866473,4
+92386300,1866473,3
+rikkuwang,1866473,4
+100301777,1866473,4
+130024032,1866473,4
+pan24,1866473,2
+SS13.,1866473,3
+69196405,1866473,3
+84899568,1866473,4
+4118910,1866473,3
+78413869,1866473,5
+4811365,1866473,3
+5926337,1866473,4
+38747364,1866473,4
+56788441,1866473,5
+125663520,1866473,3
+DoDoangell,1866473,3
+63179901,1866473,5
+35883564,1866473,3
+Nemoyo,1866473,4
+124333866,1866473,4
+43966741,1866473,4
+52458935,1866473,3
+41555500,1866473,3
+126140067,1866473,4
+iiibuwan,1866473,5
+birdicat,1866473,3
+42808435,1866473,3
+115593440,1866473,4
+69928262,1866473,5
+129617606,1866473,5
+58452735,1866473,4
+133486624,1866473,4
+73142498,1866473,3
+41786241,1866473,4
+54030275,1866473,3
+10828318,1866473,3
+121070871,1866473,4
+47464390,1866473,3
+babeyayashow,1866473,3
+137226415,1866473,5
+70487695,1866473,5
+1779254,1866473,4
+ys1013,1866473,4
+47143570,1866473,1
+schumibati,1866473,3
+35076658,1866473,3
+56981196,1866473,4
+58706396,1866473,5
+jingxinbalance,1866473,4
+60993054,1866473,4
+4325847,1866473,4
+76566444,1866473,3
+lizww,1866473,3
+yuyouting,1866473,3
+2709569,1866473,4
+A-CHA,1866473,3
+earlytalk,1866473,3
+121943500,1866473,3
+zbar1234,1866473,4
+35331418,1866473,4
+78380925,1866473,4
+57585752,1866473,3
+mjxlyc,1866473,4
+122944258,1866473,4
+65808735,1866473,3
+wisepeng,1866473,3
+roymo,1866473,4
+77702347,1866473,4
+68403421,1866473,5
+68241844,1866473,3
+69259241,1866473,4
+72504662,1866473,4
+hyukcat,1866473,3
+127466089,1866473,4
+76621126,1866473,5
+1965120,1866473,2
+68630900,1866473,-1
+66739600,1866473,5
+2144442,1866473,4
+67759095,1866473,4
+fighting-ing,1866473,3
+yiqianbai,1866473,4
+2495968,1866473,-1
+137101396,1866473,4
+127119228,1866473,3
+skywalkerw,1866473,4
+florah,1866473,5
+51562213,1866473,3
+130192486,1866473,4
+3290709,1866473,4
+49284729,1866473,4
+61716471,1866473,4
+90217144,1866473,4
+3887848,1866473,3
+49434419,1866473,4
+134241394,1866473,4
+46091039,1866473,4
+66384195,1866473,4
+46987605,1866473,4
+54976256,1866473,4
+flycondor,1866473,3
+64827053,1866473,4
+gtax,1866473,5
+gtax,1866473,5
+4111773,1866473,3
+keikoless,1866473,4
+62862861,1866473,4
+wallaceLee,1866473,4
+42609258,1866473,3
+3925691,1866473,5
+bpzhai,1866473,5
+LOTUS_NANA,1866473,4
+49343715,1866473,5
+47804119,1866473,5
+71772436,1866473,5
+indd,1866473,4
+91851250,1866473,5
+Iamlazylady,1866473,4
+11459354,1866473,3
+78074889,1866473,5
+102108363,1866473,3
+64149040,1866473,4
+15520729,1866473,3
+53734415,1866473,3
+87651171,1866473,2
+6243740,1866473,3
+137150355,1866473,5
+56617946,1866473,-1
+73307715,1866473,3
+86614728,1866473,4
+97313759,1866473,3
+44359145,1866473,5
+54461009,1866473,2
+63082424,1866473,3
+48780913,1866473,5
+41112876,1866473,4
+bombbombbombbom,1866473,5
+75305865,1866473,3
+jolyne,1866473,3
+imKuku,1866473,3
+127457458,1866473,4
+28807836,1866473,4
+54744192,1866473,4
+36671910,1866473,4
+48898826,1866473,3
+2784226,1866473,4
+77571393,1866473,3
+80727731,1866473,3
+daisy7.,1866473,4
+45400078,1866473,4
+2670240,1866473,3
+44322866,1866473,4
+9420191,1866473,4
+chenshituzhu,1866473,2
+68454681,1866473,4
+60826813,1866473,5
+kpcloud1314,1866473,4
+teikamouse,1866473,2
+tomqulab,1866473,4
+songxuancheng,1866473,5
+64223729,1866473,4
+132698860,1866473,3
+hezudao201,1866473,4
+57544065,1866473,4
+calvin_ban,1866473,5
+44412475,1866473,4
+47531635,1866473,5
+3421868,1866473,3
+62010489,1866473,2
+52318521,1866473,5
+27037345,1866473,4
+79301017,1866473,4
+67649121,1866473,4
+yasmine818,1866473,4
+withlymm,1866473,4
+71693752,1866473,5
+flyingzorro,1866473,3
+89931172,1866473,2
+49985650,1866473,2
+104621407,1866473,3
+47368327,1866473,4
+JackHChan,1866473,4
+51366710,1866473,4
+55457108,1866473,3
+61039441,1866473,3
+sugerlovingyou,1866473,3
+107863421,1866473,4
+58136152,1866473,5
+73261825,1866473,2
+123830246,1866473,4
+62906196,1866473,3
+45428000,1866473,4
+62604002,1866473,3
+dayna,1866473,3
+132621694,1866473,5
+124233692,1866473,4
+62536526,1866473,4
+48950860,1866473,5
+maryshirley,1866473,4
+62936243,1866473,4
+137168720,1866473,3
+53721065,1866473,5
+83006721,1866473,4
+115555926,1866473,5
+saxifrage,1866473,4
+42711041,1866473,5
+2997090,1866473,4
+67323158,1866473,4
+124579051,1866473,5
+zuoguo,1866473,3
+xx_jmlx,1866473,4
+btone0808,1866473,3
+icethan,1866473,5
+83019906,1866473,4
+xiaojiaozhu,1866473,5
+69232236,1866473,4
+44549599,1866473,3
+121419838,1866473,4
+64696511,1866473,4
+lovemimidog,1866473,4
+IAMkulong,1866473,4
+133711626,1866473,5
+50570932,1866473,4
+74848697,1866473,4
+eden1009,1866473,3
+49994320,1866473,4
+122679679,1866473,4
+3280764,1866473,4
+53908141,1866473,4
+nancy-chan,1866473,3
+49181549,1866473,5
+51723838,1866473,4
+muyuxiaoxiao,1866473,4
+taihu,1866473,1
+135415686,1866473,3
+55632749,1866473,3
+119447313,1866473,5
+3222803,1866473,3
+128102502,1866473,4
+49124802,1866473,4
+Jerry-feng,1866473,4
+55744777,1866473,3
+46033479,1866473,-1
+135850955,1866473,3
+60137763,1866473,4
+57546427,1866473,4
+34867941,1866473,4
+xianxiansushou,1866473,4
+131104086,1866473,4
+67596323,1866473,3
+pizzamx,1866473,4
+42280233,1866473,4
+76818566,1866473,4
+mayliyife,1866473,4
+48417569,1866473,4
+41130036,1866473,3
+40643701,1866473,5
+4018486,1866473,4
+115027330,1866473,4
+103348980,1866473,3
+3938353,1866473,-1
+46967065,1866473,4
+11383205,1866473,2
+sun-happy,1866473,3
+serein27,1866473,4
+wsgstrike,1866473,4
+86926721,1866473,4
+2740951,1866473,4
+58991490,1866473,3
+53353893,1866473,4
+astrogirl1028,1866473,5
+46654545,1866473,3
+83782943,1866473,5
+62985765,1866473,4
+littleshit,1866473,4
+56718514,1866473,2
+2838561,1866473,3
+58901835,1866473,4
+66603540,1866473,5
+76663522,1866473,4
+3770076,1866473,5
+68946693,1866473,4
+78538835,1866473,5
+56890247,1866473,4
+helenforce,1866473,4
+AzuresongWarden,1866473,4
+Yolanda7,1866473,4
+emilyrubbish,1866473,4
+zhiwojian,1866473,4
+jooyi,1866473,4
+4074165,1866473,4
+44134959,1866473,4
+arielwong,1866473,5
+FindingDory,1866473,3
+40553391,1866473,4
+mosquitoBoA,1866473,4
+62452566,1866473,4
+63506712,1866473,4
+70313784,1866473,3
+wangdazhong,1866473,4
+53274291,1866473,3
+60847691,1866473,5
+2677256,1866473,5
+4204353,1866473,1
+137136099,1866473,4
+47826669,1866473,5
+Rae8023,1866473,5
+128304317,1866473,4
+3142312,1866473,3
+sunshine_ape,1866473,3
+54038897,1866473,3
+62843075,1866473,3
+xuanmg,1866473,3
+jollychang,1866473,4
+wind.B,1866473,-1
+62333889,1866473,5
+Machobabe347,1866473,4
+knightingale,1866473,4
+3791482,1866473,4
+liu1231,1866473,4
+too_much,1866473,4
+41196257,1866473,3
+132938345,1866473,3
+137004271,1866473,3
+37180784,1866473,5
+131020888,1866473,3
+Qyaoyao,1866473,-1
+137063266,1866473,5
+55489137,1866473,-1
+67232116,1866473,-1
+49023101,1866473,4
+1165894,1866473,3
+50797855,1866473,4
+specialvera,1866473,5
+26017196,1866473,4
+kgbbeer,1866473,3
+66081417,1866473,3
+kiwi113,1866473,5
+hrhy1976,1866473,4
+SH51244,1866473,5
+43019419,1866473,4
+ting_shark,1866473,-1
+ty2012,1866473,5
+ty2012,1866473,5
+35135916,1866473,3
+34043000,1866473,4
+lilyhmmm,1866473,5
+57084612,1866473,4
+66362602,1866473,4
+81697516,1866473,4
+Cier-lindy,1866473,1
+lilysflower,1866473,-1
+40687803,1866473,3
+35213734,1866473,4
+chenfeiyu,1866473,3
+49595632,1866473,4
+beautyxyw,1866473,4
+KIRINZAN,1866473,4
+125597257,1866473,3
+4823337,1866473,5
+122966951,1866473,4
+3731229,1866473,3
+47078298,1866473,4
+95454291,1866473,4
+56500125,1866473,5
+momon1900,1866473,4
+120699928,1866473,5
+Before37,1866473,5
+weakest,1866473,4
+130353822,1866473,3
+79443450,1866473,4
+47382115,1866473,4
+49345312,1866473,3
+lowbroadway,1866473,-1
+62705311,1866473,3
+52506105,1866473,3
+56800653,1866473,3
+127102772,1866473,4
+63835684,1866473,4
+36362288,1866473,3
+oiegg,1866473,3
+79352949,1866473,4
+xiaoyufan569801,1866473,4
+viteless,1866473,4
+133861068,1866473,4
+pisceanw,1866473,4
+Bai-Bbai,1866473,3
+Vo.,1866473,3
+yujinwen,1866473,3
+76696081,1866473,3
+panda11,1866473,-1
+July0831,1866473,3
+momoroe,1866473,4
+47540497,1866473,3
+redrabbit,1866473,4
+watercolor823,1866473,4
+36910596,1866473,3
+126693961,1866473,4
+53770568,1866473,4
+14904352,1866473,3
+82844336,1866473,5
+70019854,1866473,3
+81391261,1866473,5
+63675567,1866473,3
+97917605,1866473,3
+68186986,1866473,3
+caiying21,1866473,4
+houmengdie,1866473,4
+131343395,1866473,5
+130441658,1866473,5
+lemoncan,1866473,5
+62012748,1866473,4
+40125031,1866473,3
+54719032,1866473,5
+68629139,1866473,4
+122860615,1866473,4
+122860615,1866473,4
+46144446,1866473,4
+calla-lu,1866473,3
+61496311,1866473,3
+119240610,1866473,4
+14027777,1866473,4
+RenoTT,1866473,5
+3165537,1866473,3
+53812143,1866473,4
+61360774,1866473,4
+2362910,1866473,-1
+3440321,1866473,3
+131025711,1866473,4
+120094361,1866473,5
+little-aileen,1866473,3
+51478034,1866473,5
+rockduan1987,1866473,4
+prisoner,1866473,4
+42375246,1866473,4
+ya829,1866473,3
+122720481,1866473,4
+68632898,1866473,4
+45114236,1866473,3
+130998014,1866473,3
+luckyumao,1866473,4
+royz,1866473,2
+71875157,1866473,3
+he19,1866473,4
+78582854,1866473,4
+64345409,1866473,4
+dgtdgb,1866473,5
+45718957,1866473,3
+59457349,1866473,4
+52120890,1866473,4
+54449997,1866473,5
+liushu429,1866473,3
+108198970,1866473,3
+2898955,1866473,3
+122392735,1866473,3
+134191869,1866473,4
+80781412,1866473,4
+1082879,1866473,3
+108601772,1866473,3
+133604109,1866473,4
+54766723,1866473,3
+yihaENEN,1866473,3
+66620661,1866473,5
+123001004,1866473,4
+xieyuhan1988,1866473,3
+shenxi,1866473,3
+48705415,1866473,4
+1943610,1866473,4
+lizishu1991,1866473,5
+104905007,1866473,5
+89607627,1866473,2
+37810756,1866473,4
+shinexyb,1866473,5
+36206497,1866473,3
+46965804,1866473,4
+24406697,1866473,5
+xjta17,1866473,4
+itiszdq,1866473,4
+6972638,1866473,4
+98980389,1866473,4
+chen1,1866473,4
+2348564,1866473,3
+127080746,1866473,3
+57255280,1866473,4
+53063719,1866473,4
+fenghan,1866473,4
+36212126,1866473,4
+51399526,1866473,4
+3793771,1866473,3
+gdhdun,1866473,3
+136319459,1866473,2
+137075765,1866473,2
+meow-3-,1866473,5
+45577366,1866473,4
+72532437,1866473,2
+80040060,1866473,3
+zggdzssaq,1866473,4
+56484149,1866473,3
+cindytintin,1866473,3
+131529950,1866473,4
+56273728,1866473,1
+boss1993,1866473,4
+cat23love,1866473,3
+134485888,1866473,3
+98985570,1866473,4
+64959073,1866473,5
+48312950,1866473,4
+136268447,1866473,3
+133415627,1866473,3
+ghzxjian,1866473,5
+4888036,1866473,4
+63681438,1866473,4
+100083138,1866473,4
+70519062,1866473,3
+Betty818,1866473,4
+125111991,1866473,4
+65214570,1866473,4
+77676134,1866473,3
+56899985,1866473,3
+137070872,1866473,3
+35969014,1866473,5
+77081639,1866473,4
+79918771,1866473,4
+65842431,1866473,3
+evelyn69,1866473,4
+131064812,1866473,5
+70546796,1866473,5
+48332506,1866473,4
+43664671,1866473,5
+25392363,1866473,4
+67962053,1866473,4
+58725999,1866473,4
+53462863,1866473,4
+135393696,1866473,3
+135097138,1866473,4
+1396380,1866473,4
+4619929,1866473,2
+60440382,1866473,3
+62658973,1866473,4
+junod,1866473,5
+136926154,1866473,4
+AaronJemm,1866473,4
+127141779,1866473,4
+49756568,1866473,2
+55309998,1866473,4
+yhbx,1866473,5
+101603016,1866473,3
+cdz0516,1866473,4
+131205877,1866473,3
+53639789,1866473,5
+4315193,1866473,3
+136947773,1866473,4
+Annietta8393,1866473,4
+55476347,1866473,4
+liaoxiaoben,1866473,4
+50694975,1866473,3
+62414956,1866473,4
+130438496,1866473,3
+61491842,1866473,5
+51408985,1866473,4
+59163778,1866473,3
+cumming,1866473,3
+126824613,1866473,4
+49226040,1866473,4
+64024738,1866473,3
+4861512,1866473,4
+melodychung,1866473,3
+dreamt_A,1866473,3
+127275047,1866473,4
+75994389,1866473,4
+32194604,1866473,4
+48086861,1866473,4
+136879375,1866473,4
+2267973,1866473,5
+Eva.pisces,1866473,5
+daisyz,1866473,3
+74232483,1866473,4
+61890434,1866473,4
+junelong,1866473,4
+55886551,1866473,3
+97232716,1866473,3
+51525177,1866473,5
+51306658,1866473,4
+45454541,1866473,5
+qiqinaideziji,1866473,4
+starrylaughter,1866473,3
+64709555,1866473,3
+54789202,1866473,4
+4834635,1866473,3
+81679660,1866473,4
+63958025,1866473,3
+54484555,1866473,3
+sinkpad,1866473,4
+65496704,1866473,4
+33071569,1866473,3
+caicaihuang,1866473,3
+1212231,1866473,3
+48090771,1866473,4
+68468748,1866473,5
+29873764,1866473,4
+82484416,1866473,4
+47299047,1866473,4
+3541718,1866473,4
+lwy107,1866473,2
+49802388,1866473,3
+dodofish,1866473,3
+51303183,1866473,4
+70053575,1866473,4
+83881122,1866473,4
+white817,1866473,3
+SundraLee,1866473,4
+48093431,1866473,3
+51440227,1866473,4
+stina_may,1866473,5
+qiyuemuxu,1866473,5
+51636160,1866473,5
+mourirank,1866473,4
+53451398,1866473,4
+69257163,1866473,3
+27704994,1866473,4
+53271762,1866473,5
+127128067,1866473,4
+luckyanc,1866473,4
+136971594,1866473,4
+129577798,1866473,4
+3333349,1866473,4
+135302519,1866473,4
+2126628,1866473,4
+51786034,1866473,4
+127111031,1866473,3
+87854998,1866473,3
+insomnia,1866473,5
+youtubunsei,1866473,5
+88345829,1866473,3
+anicelv,1866473,4
+136274462,1866473,4
+zypq,1866473,3
+summeric,1866473,3
+1689067,1866473,1
+47583222,1866473,4
+3771254,1866473,3
+64252611,1866473,4
+cokecoal,1866473,3
+29819380,1866473,4
+volantisff,1866473,4
+49594731,1866473,3
+1174148,1866473,4
+64486055,1866473,5
+49415138,1866473,4
+52246931,1866473,4
+136674981,1866473,4
+68953339,1866473,3
+114836268,1866473,5
+48801010,1866473,4
+134968495,1866473,1
+74948787,1866473,4
+2292701,1866473,4
+princessing,1866473,4
+48634684,1866473,4
+3344118,1866473,5
+wille,1866473,4
+127603869,1866473,4
+42762301,1866473,4
+134523911,1866473,4
+43378617,1866473,4
+39399066,1866473,3
+mingyaback,1866473,2
+125792443,1866473,5
+doryrue,1866473,4
+34794492,1866473,2
+92892144,1866473,4
+19542852,1866473,4
+119242703,1866473,4
+49308797,1866473,4
+shouJUer,1866473,4
+M.Rino,1866473,4
+69384559,1866473,4
+115116249,1866473,5
+Gabriel_Mars,1866473,4
+XYJessie,1866473,4
+75434556,1866473,-1
+Cosmo--,1866473,3
+81107134,1866473,4
+62377440,1866473,5
+56655394,1866473,3
+bjus,1866473,5
+56053205,1866473,3
+44349707,1866473,4
+deviline,1866473,4
+wnhello,1866473,4
+137007173,1866473,5
+cutebug,1866473,3
+bluekitten,1866473,5
+67626687,1866473,4
+104815996,1866473,3
+103326883,1866473,3
+100746508,1866473,5
+59627511,1866473,5
+2419512,1866473,4
+45639473,1866473,4
+131116833,1866473,3
+52202142,1866473,5
+3954052,1866473,5
+smilejackiekwok,1866473,3
+49250777,1866473,4
+74805050,1866473,4
+zhangyunji,1866473,4
+65555922,1866473,4
+garbovisa,1866473,5
+1522607,1866473,3
+sayashelly,1866473,-1
+83060870,1866473,5
+radioasisuede,1866473,5
+66954678,1866473,4
+41992023,1866473,5
+37969517,1866473,1
+leethero,1866473,4
+83337492,1866473,4
+Josephine.R,1866473,3
+40835496,1866473,-1
+65675496,1866473,4
+BeanInk,1866473,4
+4841197,1866473,4
+135294969,1866473,5
+tabrism,1866473,4
+42307079,1866473,4
+49295714,1866473,4
+48191441,1866473,4
+wty22keith,1866473,4
+2870958,1866473,-1
+2903830,1866473,4
+rainy0124,1866473,4
+71817860,1866473,3
+80098088,1866473,4
+38676304,1866473,2
+38404027,1866473,5
+quchentao,1866473,4
+53300404,1866473,2
+63985739,1866473,3
+68324587,1866473,5
+129233901,1866473,3
+136261663,1866473,4
+jewelschen,1866473,5
+6270415,1866473,4
+44485871,1866473,4
+114635463,1866473,4
+75860437,1866473,4
+30649428,1866473,4
+52463414,1866473,4
+57799036,1866473,3
+flowermoi,1866473,3
+47822950,1866473,4
+69749186,1866473,3
+69033332,1866473,3
+evilynq,1866473,4
+1030614,1866473,3
+53069053,1866473,3
+shania0912,1866473,5
+89615473,1866473,3
+xubaoxin,1866473,3
+49270565,1866473,4
+2009103,1866473,3
+miao1109,1866473,4
+62882653,1866473,4
+icefishe,1866473,4
+52293681,1866473,-1
+90774856,1866473,4
+135779480,1866473,4
+81744133,1866473,5
+54540243,1866473,3
+38635851,1866473,4
+love1989,1866473,4
+wfxs,1866473,4
+kay0108,1866473,3
+66660989,1866473,5
+48676614,1866473,4
+crowwwn,1866473,-1
+miykok,1866473,5
+74497804,1866473,5
+64026031,1866473,5
+buxizhizhou530,1866473,4
+87353422,1866473,4
+44076173,1866473,3
+52395760,1866473,3
+49134971,1866473,4
+xiaowumei,1866473,4
+119253554,1866473,4
+57666302,1866473,3
+creep-way,1866473,4
+58513319,1866473,4
+zhqi11,1866473,3
+43640903,1866473,5
+55737203,1866473,3
+51962529,1866473,3
+yuyuchan,1866473,3
+65094219,1866473,3
+49604858,1866473,4
+60961304,1866473,5
+Iammani,1866473,5
+alwaysbestrong,1866473,4
+2437974,1866473,4
+Am0ooooo,1866473,4
+1436131,1866473,3
+61366971,1866473,5
+jpdong,1866473,4
+120719817,1866473,3
+danaebirds,1866473,3
+bellewang,1866473,4
+tong0803,1866473,4
+3277928,1866473,4
+63998046,1866473,4
+64163444,1866473,4
+4032536,1866473,4
+42046990,1866473,2
+51048563,1866473,4
+46589297,1866473,3
+2176424,1866473,4
+96388706,1866473,4
+114149260,1866473,4
+44622528,1866473,4
+duc_k,1866473,4
+82531582,1866473,5
+121498824,1866473,4
+dsdg,1866473,4
+60304820,1866473,3
+43255159,1866473,4
+71457779,1866473,4
+4445748,1866473,3
+guanbz,1866473,4
+76042398,1866473,5
+suiffeng0504,1866473,4
+56370323,1866473,3
+bhbst,1866473,4
+48126534,1866473,5
+48589119,1866473,4
+72786209,1866473,4
+mivan,1866473,4
+40281229,1866473,3
+tanhuiwendy,1866473,-1
+jie0504,1866473,4
+27797440,1866473,4
+112764137,1866473,4
+coqueke,1866473,3
+doya,1866473,3
+64126664,1866473,4
+71230586,1866473,4
+52678874,1866473,4
+64593353,1866473,3
+48318969,1866473,4
+126058557,1866473,4
+56125198,1866473,4
+52788947,1866473,4
+Cinderellamay,1866473,4
+imshanshan,1866473,4
+74566313,1866473,4
+zhangyanyu,1866473,3
+50737146,1866473,4
+4266482,1866473,3
+yuhuai,1866473,4
+yincesc,1866473,3
+yyqh,1866473,5
+48078575,1866473,3
+dodo6060,1866473,3
+134586200,1866473,4
+52084130,1866473,5
+40411879,1866473,3
+momoyaoyaoyao,1866473,3
+47052897,1866473,3
+1140871,1866473,3
+53694721,1866473,3
+68835395,1866473,3
+103277074,1866473,5
+bololo923,1866473,3
+sadawd,1866473,4
+84524255,1866473,4
+dwf123655,1866473,4
+3823320,1866473,5
+74981611,1866473,4
+52423064,1866473,2
+49213405,1866473,4
+braveshengchun,1866473,4
+35434178,1866473,4
+fengzhongyeer,1866473,-1
+48153068,1866473,4
+52392093,1866473,4
+2626587,1866473,3
+102152688,1866473,4
+132320147,1866473,4
+39148019,1866473,4
+SELVEN,1866473,4
+47022625,1866473,5
+kakaitachi,1866473,3
+29819963,1866473,3
+48539445,1866473,5
+135745978,1866473,4
+Felicia-Chiu,1866473,4
+99373292,1866473,4
+42276004,1866473,4
+77461430,1866473,3
+119685812,1866473,5
+62118386,1866473,4
+jagpumpkin,1866473,3
+136048332,1866473,4
+nancy_hehe,1866473,4
+49041524,1866473,4
+2796405,1866473,3
+81685996,1866473,3
+xingxing0889,1866473,3
+76616285,1866473,3
+45074921,1866473,5
+45521984,1866473,4
+51602185,1866473,3
+55335684,1866473,5
+XenFOne,1866473,5
+29725427,1866473,5
+44146004,1866473,5
+51477715,1866473,3
+72040927,1866473,4
+karenlo,1866473,3
+4377011,1866473,4
+14944907,1866473,4
+chiu-chiu,1866473,3
+3173882,1866473,3
+134905591,1866473,5
+52523730,1866473,4
+5674564,1866473,4
+57036848,1866473,3
+57289255,1866473,5
+31768026,1866473,5
+2897322,1866473,2
+Nymphe428,1866473,5
+Titlyeo,1866473,3
+IluvatarMartin,1866473,3
+70160218,1866473,5
+3758190,1866473,3
+syyofficer,1866473,3
+seizeup,1866473,5
+4692009,1866473,4
+Star1225,1866473,4
+looma,1866473,4
+2888450,1866473,4
+84885684,1866473,4
+45663975,1866473,3
+79080942,1866473,4
+119311949,1866473,4
+63744115,1866473,4
+hurenjingyan,1866473,4
+48585196,1866473,4
+Gomo,1866473,4
+39070600,1866473,4
+Creep_,1866473,3
+33389219,1866473,3
+douxiaobai,1866473,5
+57285886,1866473,4
+ni0712,1866473,4
+36829206,1866473,4
+AmandaZhou,1866473,4
+yY.,1866473,5
+132247397,1866473,5
+71596124,1866473,4
+120955323,1866473,4
+36825112,1866473,4
+lilithyang1983,1866473,4
+rockgong,1866473,3
+yaogaosheng,1866473,3
+65186418,1866473,-1
+121249457,1866473,5
+fylq,1866473,2
+morechange,1866473,4
+88256583,1866473,3
+super_tao,1866473,3
+bus99,1866473,3
+78810397,1866473,3
+44651418,1866473,5
+28852948,1866473,3
+65740339,1866473,4
+136953073,1866473,3
+102761023,1866473,4
+dohertysphinx,1866473,3
+seclock,1866473,4
+87783060,1866473,4
+103807559,1866473,3
+EffyQ,1866473,4
+43087480,1866473,3
+50282986,1866473,4
+69467986,1866473,3
+36884133,1866473,4
+35815787,1866473,3
+50875593,1866473,3
+4843947,1866473,4
+Bupt_Doc,1866473,4
+tagore_tsai,1866473,4
+sillyatom,1866473,3
+2073061,1866473,4
+2617530,1866473,2
+3163266,1866473,4
+62710318,1866473,3
+amorpaseo,1866473,4
+legal_alien,1866473,4
+mangomaluko,1866473,4
+luziyujiang,1866473,4
+owenbzf,1866473,4
+66468870,1866473,5
+57079509,1866473,3
+37789532,1866473,4
+56896055,1866473,4
+jiuzao,1866473,5
+47701816,1866473,3
+134343426,1866473,4
+zuojian07,1866473,4
+61355644,1866473,4
+1583835,1866473,4
+129276323,1866473,2
+46242801,1866473,5
+89747008,1866473,4
+2493346,1866473,-1
+maitianangle,1866473,3
+37339424,1866473,-1
+robinlei,1866473,4
+54268266,1866473,3
+funfaires,1866473,-1
+57557138,1866473,4
+52120815,1866473,3
+59033325,1866473,4
+3760870,1866473,4
+47603027,1866473,3
+ruoyezixuan,1866473,4
+emilyforever,1866473,4
+35586325,1866473,3
+32402352,1866473,3
+57540462,1866473,3
+52798749,1866473,3
+neilfushi,1866473,4
+35353317,1866473,3
+vivamian,1866473,2
+McAPhenix,1866473,4
+meipuqingnian,1866473,5
+49424919,1866473,3
+suitsue0504,1866473,4
+135124660,1866473,3
+119089511,1866473,5
+54117972,1866473,3
+4119279,1866473,4
+24365141,1866473,4
+59378291,1866473,5
+43224902,1866473,4
+am-gemini,1866473,4
+braquentin,1866473,4
+39603909,1866473,4
+kakai0u,1866473,3
+Mandychai,1866473,4
+122656795,1866473,5
+48174123,1866473,4
+104265215,1866473,5
+87582209,1866473,4
+jfbobo,1866473,5
+61962948,1866473,2
+74687875,1866473,5
+49156187,1866473,4
+65907866,1866473,3
+58197291,1866473,4
+97987100,1866473,3
+ninomae,1866473,4
+ninomae,1866473,4
+84592177,1866473,4
+xiaoiou,1866473,4
+icantlive,1866473,3
+46334233,1866473,5
+50844097,1866473,4
+75117514,1866473,4
+candyforever,1866473,4
+129540471,1866473,5
+3359048,1866473,4
+96336225,1866473,3
+supersheep,1866473,5
+49659191,1866473,3
+pikoarc,1866473,5
+44757453,1866473,4
+memoricry,1866473,3
+radiooo,1866473,3
+132063881,1866473,5
+42539341,1866473,4
+136951793,1866473,2
+85368770,1866473,5
+134325436,1866473,5
+feeky,1866473,3
+64326764,1866473,3
+luocaoyaoyao,1866473,5
+72023596,1866473,5
+Lkongming,1866473,3
+vvvvv,1866473,4
+48248729,1866473,4
+30935515,1866473,4
+2187326,1866473,3
+122858309,1866473,4
+61719919,1866473,4
+75421360,1866473,4
+122773747,1866473,4
+59540342,1866473,-1
+31667362,1866473,3
+4106522,1866473,3
+47029600,1866473,3
+50111985,1866473,2
+68027461,1866473,5
+37417625,1866473,5
+122882500,1866473,4
+73701438,1866473,3
+57884796,1866473,4
+gujiahui,1866473,4
+35546848,1866473,3
+42186574,1866473,3
+voodoo_shen,1866473,3
+3278968,1866473,4
+dreamoslo,1866473,4
+74738582,1866473,3
+riplilse7en,1866473,4
+vvhs,1866473,3
+maxiaoyin,1866473,5
+58526834,1866473,4
+Esine,1866473,3
+una_107,1866473,4
+65200029,1866473,3
+woruili,1866473,3
+55507630,1866473,4
+jiangye,1866473,4
+53652012,1866473,5
+36302037,1866473,4
+Hanncy.Zheng,1866473,5
+54355887,1866473,4
+candylyt,1866473,5
+59625394,1866473,5
+tracyliang223,1866473,4
+28820949,1866473,4
+55849765,1866473,4
+3635990,1866473,2
+54066397,1866473,4
+bzfdu,1866473,5
+ericleemayday,1866473,5
+natsunokaori,1866473,-1
+kida0227,1866473,4
+84531200,1866473,5
+124295061,1866473,4
+69814261,1866473,3
+122360797,1866473,5
+72978838,1866473,3
+64195325,1866473,3
+40609540,1866473,5
+46634841,1866473,5
+49587951,1866473,4
+tinysean,1866473,3
+64713560,1866473,4
+122868077,1866473,3
+13356942,1866473,3
+70308638,1866473,5
+4558272,1866473,4
+60040964,1866473,3
+thisisgap,1866473,4
+39696918,1866473,3
+Eileke,1866473,3
+3566413,1866473,3
+7981026,1866473,4
+75261344,1866473,3
+4338846,1866473,4
+127114583,1866473,4
+wd1000,1866473,4
+36004124,1866473,5
+HBtemptation,1866473,4
+67194113,1866473,3
+15439490,1866473,5
+54506812,1866473,3
+67968689,1866473,4
+meitianniang,1866473,3
+127313933,1866473,3
+125386476,1866473,4
+70933374,1866473,3
+NNLLT,1866473,3
+4575064,1866473,4
+126579331,1866473,5
+8597530,1866473,4
+45938786,1866473,3
+90546235,1866473,4
+47445565,1866473,3
+yyycaleen,1866473,4
+45069187,1866473,3
+53505227,1866473,3
+tomtit,1866473,3
+51414722,1866473,4
+logiko,1866473,4
+coolsin,1866473,5
+silicone,1866473,3
+eve87,1866473,4
+Bloodworks,1866473,4
+65398395,1866473,4
+MariahCD,1866473,3
+134414658,1866473,5
+1135092,1866473,4
+90582258,1866473,4
+kidrun,1866473,5
+67883787,1866473,5
+narcisusss,1866473,4
+2123968,1866473,4
+simpleyaya,1866473,4
+38105854,1866473,3
+50229419,1866473,4
+34779757,1866473,4
+89788600,1866473,4
+amandaqu,1866473,5
+twisterlily,1866473,4
+47152561,1866473,3
+Singyi,1866473,4
+2929500,1866473,5
+an-sirens,1866473,4
+134625303,1866473,3
+3496801,1866473,4
+xiaoqianquan,1866473,4
+SunnyLuo,1866473,4
+45319686,1866473,3
+53685870,1866473,3
+coolcutechan,1866473,4
+sugarjojo,1866473,4
+master-photon,1866473,4
+85846927,1866473,5
+stower,1866473,4
+121921036,1866473,3
+79071322,1866473,4
+135300017,1866473,1
+124754239,1866473,4
+63160835,1866473,3
+alice0574,1866473,3
+miss179,1866473,3
+chaiochang,1866473,3
+119550935,1866473,4
+49879024,1866473,3
+58578602,1866473,5
+fivero,1866473,4
+53303549,1866473,5
+beautifish,1866473,3
+andyzhanghua,1866473,4
+serotinous,1866473,5
+127448783,1866473,5
+127191688,1866473,5
+129543968,1866473,5
+cindyylxx,1866473,4
+cindyylxx,1866473,4
+59270375,1866473,3
+85394793,1866473,5
+forestwanglin,1866473,3
+zhy650218,1866473,4
+55912091,1866473,4
+48164029,1866473,3
+104985254,1866473,4
+Huxinghang510,1866473,4
+1264827,1866473,4
+shengworld,1866473,5
+125474588,1866473,4
+60826397,1866473,3
+lovingness,1866473,4
+mmmmmya,1866473,5
+77511444,1866473,5
+julycythia,1866473,4
+muyedou,1866473,4
+farx,1866473,4
+55334303,1866473,3
+lindsaymao,1866473,3
+kakaandkamen,1866473,3
+bmth,1866473,5
+47598205,1866473,4
+9662580,1866473,4
+2870561,1866473,4
+maysum,1866473,3
+3642691,1866473,4
+luot,1866473,4
+45420315,1866473,5
+withoutMrRight,1866473,4
+47267795,1866473,-1
+missufinally,1866473,5
+Likferd,1866473,5
+66787474,1866473,3
+92337255,1866473,4
+4533857,1866473,5
+skipalong,1866473,3
+17280012,1866473,3
+32817284,1866473,4
+sisiliya,1866473,3
+60365345,1866473,4
+119778087,1866473,4
+127782706,1866473,4
+3140118,1866473,4
+wenqi55520,1866473,4
+134222368,1866473,4
+63875804,1866473,5
+4113894,1866473,4
+2358466,1866473,4
+135989286,1866473,4
+adrian0807,1866473,3
+snapeloveyou,1866473,-1
+79926980,1866473,4
+49232592,1866473,2
+52762797,1866473,3
+43327058,1866473,-1
+48740274,1866473,5
+50595621,1866473,5
+33406946,1866473,3
+49772103,1866473,-1
+xzw1407,1866473,4
+115474584,1866473,5
+malu,1866473,4
+etoile,1866473,5
+fishbar,1866473,3
+82729736,1866473,3
+67668223,1866473,-1
+1222203,1866473,4
+zhoulefeng,1866473,2
+xiaokongji,1866473,4
+fishgor,1866473,4
+fmxiaofei,1866473,5
+montee_D,1866473,3
+136252307,1866473,2
+41632476,1866473,3
+4111457,1866473,3
+83244806,1866473,5
+50581741,1866473,3
+wenzhu89,1866473,3
+wenzhu89,1866473,3
+60251826,1866473,4
+17471764,1866473,-1
+71953826,1866473,4
+donkele,1866473,3
+3413742,1866473,5
+63656533,1866473,4
+qiztholly,1866473,3
+enjoysmile,1866473,-1
+53391246,1866473,3
+tankette,1866473,3
+2710028,1866473,5
+4498680,1866473,3
+2627116,1866473,3
+ninaperfume,1866473,3
+Jennytakun,1866473,4
+rachel1120,1866473,3
+115657337,1866473,4
+136236093,1866473,5
+40447604,1866473,4
+65905746,1866473,4
+jielade08,1866473,4
+36899592,1866473,4
+76737626,1866473,4
+28293516,1866473,4
+130331459,1866473,4
+74720152,1866473,4
+superblily108,1866473,4
+xiaoyushudai,1866473,3
+radia,1866473,4
+Cassiopeia58,1866473,4
+28582685,1866473,3
+subaru244,1866473,3
+cvjk2009485,1866473,4
+xifengqishi,1866473,3
+82082650,1866473,5
+92140787,1866473,4
+3497971,1866473,3
+2208862,1866473,3
+1603683,1866473,4
+D.A.A.E.,1866473,3
+130020039,1866473,5
+132333627,1866473,4
+74307791,1866473,3
+9596432,1866473,3
+85269486,1866473,3
+127161571,1866473,3
+60811220,1866473,3
+65063068,1866473,3
+1929074,1866473,4
+79365604,1866473,5
+vivarium,1866473,3
+84480272,1866473,4
+51862785,1866473,3
+51728085,1866473,4
+78399714,1866473,4
+90543489,1866473,5
+116805216,1866473,4
+MiaoKK,1866473,3
+fluency1314,1866473,4
+fluency1314,1866473,4
+44777564,1866473,4
+chkx,1866473,3
+121085525,1866473,4
+lamianaiai,1866473,3
+60208186,1866473,3
+78824064,1866473,4
+manatsu,1866473,4
+115318026,1866473,5
+69673873,1866473,5
+136589265,1866473,-1
+61326336,1866473,4
+formydream,1866473,3
+66773730,1866473,3
+4160312,1866473,-1
+106113807,1866473,5
+drinkme,1866473,4
+3832280,1866473,4
+37751161,1866473,4
+70307710,1866473,4
+70307710,1866473,4
+xiaobai2046,1866473,3
+49034223,1866473,4
+58608944,1866473,4
+wonderfulBonnie,1866473,4
+vamzc,1866473,4
+Bocahontas,1866473,3
+48171385,1866473,4
+70066511,1866473,4
+duhuitang,1866473,3
+my_landscape,1866473,4
+66629958,1866473,4
+wangmuse,1866473,4
+38462134,1866473,4
+132854070,1866473,4
+50353544,1866473,3
+1049827,1866473,3
+104700864,1866473,4
+53173594,1866473,5
+44032446,1866473,5
+emi881008,1866473,2
+72925066,1866473,4
+80346080,1866473,4
+130890583,1866473,4
+125151418,1866473,5
+62150747,1866473,3
+yiranhyy,1866473,5
+65132102,1866473,4
+134340947,1866473,4
+90236615,1866473,4
+69806082,1866473,4
+lovememebb,1866473,5
+59769203,1866473,4
+zhangxiaolei,1866473,4
+16043506,1866473,5
+63041714,1866473,5
+99401561,1866473,4
+130671534,1866473,3
+54462951,1866473,4
+51908799,1866473,4
+88916149,1866473,5
+121857406,1866473,4
+Bigdad,1866473,4
+65372479,1866473,4
+61559411,1866473,5
+66873262,1866473,3
+kim100702,1866473,4
+135647354,1866473,4
+linn2034,1866473,4
+3435845,1866473,4
+54378428,1866473,4
+51812849,1866473,4
+a6853550,1866473,4
+49355592,1866473,4
+TheBeBe,1866473,3
+52298907,1866473,4
+Little-Shaily,1866473,3
+78793402,1866473,5
+77334635,1866473,5
+15080714,1866473,4
+15080714,1866473,4
+52341431,1866473,4
+lotus-yu,1866473,5
+2307563,1866473,3
+70855502,1866473,-1
+3881393,1866473,4
+46937278,1866473,3
+71640049,1866473,3
+changgu4290,1866473,3
+57860967,1866473,5
+SharonShining,1866473,4
+ChelseaHotel,1866473,-1
+60140602,1866473,4
+oulichen,1866473,4
+1949693,1866473,4
+IncredibleWoody,1866473,4
+53708555,1866473,4
+ximeir,1866473,3
+53346121,1866473,4
+steffidai,1866473,4
+62902715,1866473,4
+79452257,1866473,3
+Ryan-Cheng,1866473,3
+Pius,1866473,3
+58588109,1866473,5
+2293752,1866473,5
+FancyW,1866473,5
+2783573,1866473,5
+82970357,1866473,5
+Sennir,1866473,4
+115185293,1866473,3
+3848878,1866473,5
+mangoboi,1866473,4
+thesadyesterday,1866473,4
+36541831,1866473,5
+40395158,1866473,4
+littlenono,1866473,3
+43096716,1866473,3
+57901422,1866473,3
+yuki_kaze,1866473,3
+121187003,1866473,4
+tinnu,1866473,3
+DUNHILLJJ,1866473,3
+54450944,1866473,3
+B-B-B-Side,1866473,3
+69848404,1866473,3
+131333953,1866473,5
+47564456,1866473,4
+lechuga,1866473,4
+50060242,1866473,3
+2421625,1866473,4
+candylmx,1866473,4
+52298238,1866473,5
+52593684,1866473,5
+124825941,1866473,4
+yutubao,1866473,3
+70581894,1866473,5
+joyousjoy,1866473,3
+53654019,1866473,4
+xiaotun,1866473,4
+tkf024,1866473,4
+59538037,1866473,4
+62559082,1866473,3
+63069201,1866473,4
+2031014,1866473,3
+2752003,1866473,-1
+seagull_shen,1866473,4
+96771459,1866473,3
+colintide,1866473,3
+37613786,1866473,5
+itechen,1866473,4
+kkoyoozs,1866473,5
+90688581,1866473,5
+133832889,1866473,5
+2746484,1866473,-1
+69189478,1866473,4
+65227513,1866473,4
+38182265,1866473,5
+journeyboy,1866473,3
+83188680,1866473,4
+83188680,1866473,4
+milanmao,1866473,4
+dearmeng,1866473,4
+4158217,1866473,3
+104399747,1866473,5
+96545513,1866473,4
+jjjz,1866473,5
+45851871,1866473,3
+91512792,1866473,3
+linhuijun,1866473,2
+yqz23,1866473,4
+horae,1866473,4
+46014273,1866473,4
+127448556,1866473,3
+henryxuzimo,1866473,5
+35963836,1866473,3
+121437140,1866473,3
+8051136,1866473,5
+57395055,1866473,5
+53080124,1866473,4
+65035493,1866473,-1
+122056274,1866473,4
+121959506,1866473,3
+3855637,1866473,4
+4842930,1866473,4
+109023138,1866473,5
+tomato88,1866473,5
+3796003,1866473,4
+130800910,1866473,3
+127145817,1866473,5
+59783688,1866473,4
+4109036,1866473,4
+48463405,1866473,5
+whypro,1866473,4
+1419073,1866473,4
+jujuhe,1866473,2
+suejarnlly,1866473,3
+Daryl,1866473,3
+shineone,1866473,4
+60583997,1866473,3
+60583997,1866473,3
+122377549,1866473,4
+seayo,1866473,3
+XLL86,1866473,4
+2630532,1866473,5
+4297964,1866473,3
+bukuweidouban,1866473,4
+64069487,1866473,4
+90701273,1866473,5
+sunshinetoo,1866473,5
+89050593,1866473,4
+masakurahao,1866473,4
+48276999,1866473,4
+littlezhisandra,1866473,3
+25341660,1866473,4
+63859419,1866473,5
+43532322,1866473,3
+rock0323,1866473,3
+co_cobalt,1866473,3
+asuka_lau,1866473,2
+salahdou,1866473,4
+47218521,1866473,4
+82705597,1866473,4
+3491773,1866473,5
+136872877,1866473,4
+1673787,1866473,4
+53474498,1866473,3
+76762890,1866473,3
+46292893,1866473,4
+53272974,1866473,4
+58987913,1866473,5
+circircle,1866473,4
+2078834,1866473,3
+arrowkey,1866473,3
+57538254,1866473,3
+zf468930104,1866473,4
+55750705,1866473,5
+4324027,1866473,4
+58924801,1866473,4
+134875231,1866473,4
+53968834,1866473,5
+62113839,1866473,3
+kandyball,1866473,4
+66451620,1866473,4
+xuanyushuo,1866473,3
+35712103,1866473,3
+Abbyssuly,1866473,5
+3892198,1866473,3
+JasmineYu,1866473,5
+4853049,1866473,3
+44499391,1866473,3
+76808256,1866473,5
+25973603,1866473,1
+49727842,1866473,3
+iking1314,1866473,4
+orange432,1866473,2
+guoerer,1866473,4
+difeijing,1866473,2
+irenemi,1866473,4
+129783136,1866473,3
+jun8911869,1866473,3
+lovechai,1866473,4
+62628758,1866473,2
+stacieee,1866473,4
+ekuwang,1866473,3
+53492986,1866473,4
+114681097,1866473,5
+60947985,1866473,2
+62061884,1866473,4
+3198636,1866473,4
+113593585,1866473,2
+summer-oblivion,1866473,5
+yujianengyi,1866473,4
+52640259,1866473,5
+71133348,1866473,5
+boboaibaobao,1866473,3
+55910265,1866473,4
+1199925,1866473,3
+syavalon,1866473,5
+60105823,1866473,4
+57907537,1866473,4
+62395792,1866473,5
+68918685,1866473,5
+nina1205,1866473,3
+62504399,1866473,3
+26889158,1866473,4
+UchihaObito,1866473,5
+59789966,1866473,3
+45722490,1866473,5
+42724768,1866473,3
+39121054,1866473,4
+21951726,1866473,3
+35964817,1866473,4
+fufufufuxk,1866473,3
+singsolate,1866473,4
+135896409,1866473,4
+kulime,1866473,4
+136814681,1866473,5
+aprilM,1866473,4
+134476648,1866473,4
+DONGXIAOYANG,1866473,4
+daiyuannianyan,1866473,-1
+pl1621,1866473,3
+byduan,1866473,4
+rincliu,1866473,5
+64008981,1866473,4
+57667810,1866473,4
+62864359,1866473,3
+49226222,1866473,4
+28079955,1866473,3
+32019059,1866473,3
+124638589,1866473,3
+Lyn.L.Lee,1866473,4
+93316006,1866473,4
+42376655,1866473,4
+53798871,1866473,5
+lovenpeaces,1866473,5
+127378341,1866473,3
+4207280,1866473,5
+frankzhang,1866473,4
+agenta,1866473,4
+minimao,1866473,3
+88292094,1866473,4
+4580722,1866473,4
+24317297,1866473,4
+88968544,1866473,3
+127947406,1866473,3
+54579149,1866473,4
+celestetang,1866473,4
+serra,1866473,4
+10343137,1866473,3
+69658798,1866473,5
+91912832,1866473,4
+55984873,1866473,5
+56885500,1866473,4
+23745652,1866473,4
+lei7891,1866473,3
+78194519,1866473,3
+62370377,1866473,5
+96408686,1866473,4
+sweather,1866473,3
+starpieces,1866473,-1
+flycanfly,1866473,-1
+67179244,1866473,4
+spacerwith,1866473,3
+ruxiaoguo,1866473,3
+35051709,1866473,4
+131533540,1866473,4
+m-n,1866473,4
+luxudong,1866473,4
+4491309,1866473,4
+4218369,1866473,4
+jiaxr007,1866473,4
+12794807,1866473,3
+yigesong,1866473,4
+66509533,1866473,3
+33328418,1866473,3
+60299023,1866473,-1
+71372120,1866473,3
+Joeking.xiao,1866473,3
+53454251,1866473,4
+1495064,1866473,3
+53958013,1866473,5
+81627392,1866473,4
+4359003,1866473,2
+69152267,1866473,4
+136887390,1866473,3
+45506080,1866473,4
+74258577,1866473,3
+131617615,1866473,4
+81468340,1866473,5
+yue1992,1866473,3
+austing,1866473,4
+56953846,1866473,3
+58135978,1866473,5
+75994627,1866473,4
+40913424,1866473,4
+45662322,1866473,3
+hello-malaimo,1866473,5
+weiweibaiguang,1866473,3
+44191956,1866473,4
+43742933,1866473,5
+shentihu,1866473,4
+bzking,1866473,3
+3314389,1866473,3
+51008270,1866473,4
+monkeydshinki,1866473,4
+134874896,1866473,4
+68031244,1866473,5
+wuhen333,1866473,3
+63620310,1866473,4
+45874737,1866473,-1
+51208677,1866473,3
+78528987,1866473,4
+53108390,1866473,5
+little_kevin,1866473,4
+43791681,1866473,4
+xiaopin19,1866473,3
+wakeng,1866473,3
+achen29,1866473,5
+janesea1028,1866473,4
+62781897,1866473,3
+1846420,1866473,2
+44005154,1866473,5
+76307011,1866473,5
+62438264,1866473,3
+128621750,1866473,3
+3966394,1866473,4
+yttx,1866473,4
+rosetta_luo,1866473,5
+102426428,1866473,5
+2066944,1866473,4
+58025611,1866473,4
+102640123,1866473,5
+134031623,1866473,4
+ketsu214,1866473,5
+48909711,1866473,5
+84195999,1866473,4
+75436336,1866473,4
+4902486,1866473,4
+80442790,1866473,3
+68778693,1866473,4
+59803743,1866473,4
+scarface,1866473,4
+zlzzoe,1866473,4
+102407375,1866473,4
+60046415,1866473,2
+120421429,1866473,4
+134523196,1866473,4
+121360189,1866473,4
+blueshadow30,1866473,3
+83069715,1866473,3
+candychan,1866473,5
+34696386,1866473,3
+136875339,1866473,5
+58975463,1866473,3
+66161843,1866473,3
+103202495,1866473,4
+30621998,1866473,3
+voene,1866473,4
+81351219,1866473,4
+WengHan,1866473,4
+runawayinsane,1866473,5
+22930383,1866473,5
+x2x2x2,1866473,5
+38632557,1866473,4
+59777760,1866473,5
+waiting.u,1866473,5
+131060612,1866473,5
+66944533,1866473,5
+52125341,1866473,3
+92943855,1866473,3
+PicturePerfect,1866473,5
+72902802,1866473,3
+134503726,1866473,4
+54208015,1866473,4
+123776993,1866473,5
+55640220,1866473,5
+3606261,1866473,3
+2480872,1866473,4
+Log_cabin,1866473,-1
+49130385,1866473,4
+60620913,1866473,4
+91736694,1866473,4
+myclover_luo,1866473,4
+33490013,1866473,4
+91660735,1866473,4
+2193770,1866473,5
+agassiwpx,1866473,4
+73627901,1866473,4
+island-c,1866473,4
+66548946,1866473,4
+114734252,1866473,4
+1775081,1866473,4
+46712687,1866473,3
+dfjx,1866473,3
+54437511,1866473,3
+KaRiCh,1866473,3
+61074050,1866473,4
+136823116,1866473,4
+136823116,1866473,4
+55914846,1866473,4
+61495232,1866473,5
+84210838,1866473,5
+54715138,1866473,3
+DY9174,1866473,5
+34728183,1866473,5
+73133920,1866473,4
+53456180,1866473,2
+mimashuo,1866473,4
+58935563,1866473,3
+60860186,1866473,3
+37424688,1866473,3
+wikimedia,1866473,4
+52886775,1866473,4
+3856901,1866473,4
+vincen1208,1866473,4
+58754090,1866473,4
+29104235,1866473,4
+poppy1982,1866473,5
+41351821,1866473,4
+68742620,1866473,4
+55609637,1866473,4
+74810496,1866473,3
+61260966,1866473,4
+136863950,1866473,5
+blacknana,1866473,3
+66848309,1866473,3
+caiworld,1866473,4
+86768814,1866473,4
+49022279,1866473,4
+51902619,1866473,4
+20968477,1866473,4
+53546307,1866473,4
+58289325,1866473,5
+ilovesnoopy3,1866473,5
+3851739,1866473,5
+2576367,1866473,4
+127297247,1866473,4
+av13,1866473,1
+av13,1866473,1
+vvvvvvvip,1866473,5
+liuxk99,1866473,4
+63435812,1866473,5
+somnus0319,1866473,4
+1016020,1866473,1
+58308595,1866473,4
+130755105,1866473,4
+doranmartell,1866473,3
+loveyourass,1866473,3
+53737275,1866473,3
+43083123,1866473,5
+xiaodi27,1866473,3
+63033488,1866473,4
+67888896,1866473,5
+14480826,1866473,4
+2988100,1866473,4
+85659565,1866473,4
+taronie,1866473,5
+111743603,1866473,4
+48769501,1866473,4
+126217193,1866473,4
+36160342,1866473,4
+LOCass,1866473,4
+132582200,1866473,3
+33399271,1866473,4
+27597762,1866473,5
+63123198,1866473,4
+68431348,1866473,3
+91089424,1866473,5
+3393654,1866473,4
+57354478,1866473,5
+3801925,1866473,3
+puguangwei,1866473,4
+zjy1222,1866473,3
+136019111,1866473,3
+un-do,1866473,4
+cheiry,1866473,4
+50221817,1866473,3
+scaring,1866473,-1
+listensunshine,1866473,2
+128755032,1866473,5
+61528185,1866473,5
+98538969,1866473,4
+50068065,1866473,3
+1094456,1866473,4
+68816489,1866473,4
+60145877,1866473,3
+125661279,1866473,5
+67835108,1866473,3
+akasa,1866473,3
+62968482,1866473,5
+50762366,1866473,3
+30804612,1866473,3
+alec13131,1866473,4
+yamiyuki,1866473,3
+99975380,1866473,4
+walinee,1866473,4
+ekamiao,1866473,4
+121933047,1866473,3
+102603343,1866473,4
+soupmoon,1866473,3
+anyonenotfound,1866473,3
+dasung,1866473,3
+79667003,1866473,4
+80382193,1866473,3
+45848130,1866473,4
+realeva,1866473,5
+2914721,1866473,4
+ahxu,1866473,4
+48271739,1866473,3
+snoopypark,1866473,3
+136409582,1866473,4
+115119279,1866473,5
+64759305,1866473,5
+133319658,1866473,4
+93892995,1866473,4
+83045135,1866473,5
+2445409,1866473,5
+65942873,1866473,3
+more1npc,1866473,5
+65341751,1866473,2
+henry929,1866473,4
+onlyloll,1866473,4
+92082038,1866473,3
+63374320,1866473,5
+97342015,1866473,4
+1274832,1866473,3
+135604751,1866473,4
+BarryLyndon,1866473,3
+41506209,1866473,4
+52562845,1866473,4
+67826635,1866473,4
+60696883,1866473,3
+mayka,1866473,4
+37340433,1866473,3
+49170151,1866473,4
+135574930,1866473,3
+53817584,1866473,4
+67551894,1866473,3
+revaoo,1866473,5
+35667000,1866473,4
+61840209,1866473,4
+136826257,1866473,3
+130461977,1866473,4
+114435379,1866473,4
+56609049,1866473,4
+4654119,1866473,4
+136100094,1866473,3
+49273541,1866473,3
+54890377,1866473,4
+129586774,1866473,5
+132044163,1866473,5
+85331626,1866473,3
+122696442,1866473,4
+119262734,1866473,4
+50749706,1866473,3
+38222446,1866473,4
+122109036,1866473,3
+park_summer,1866473,4
+78453730,1866473,4
+xiza,1866473,3
+4668252,1866473,-1
+Scavengers1121,1866473,4
+summerdontgo,1866473,5
+31652863,1866473,5
+rowling0915,1866473,4
+56044350,1866473,3
+34235185,1866473,3
+77288985,1866473,4
+renzhewei,1866473,4
+46162696,1866473,4
+48815744,1866473,4
+dong--dong,1866473,4
+69464561,1866473,3
+4624921,1866473,4
+46857287,1866473,-1
+49404071,1866473,4
+64386456,1866473,4
+toozy,1866473,4
+115510735,1866473,5
+56347233,1866473,4
+3681116,1866473,3
+84796406,1866473,4
+mae626,1866473,4
+28448565,1866473,4
+Deepoxygen,1866473,2
+92490871,1866473,4
+olovc,1866473,4
+89035580,1866473,4
+59206130,1866473,4
+51302979,1866473,4
+3420320,1866473,4
+66893773,1866473,-1
+xnj131,1866473,4
+charlielee,1866473,4
+41289155,1866473,4
+3119825,1866473,3
+anitapudding,1866473,3
+34569099,1866473,3
+71463470,1866473,4
+fwtzzl,1866473,3
+54551463,1866473,4
+vivianbloom,1866473,4
+126949865,1866473,3
+pansini,1866473,4
+leafvsleaf,1866473,4
+imMurphy,1866473,3
+94683180,1866473,4
+zhangyx0125,1866473,3
+feixianggod,1866473,4
+57479148,1866473,4
+lqc_amen,1866473,3
+52325341,1866473,4
+47098461,1866473,4
+banxiamelove,1866473,5
+rhea860618,1866473,4
+3168552,1866473,4
+imashley,1866473,3
+crystaltvxq,1866473,4
+136837238,1866473,4
+3728891,1866473,2
+48590382,1866473,4
+staryyao,1866473,-1
+110565024,1866473,5
+132827164,1866473,4
+57486272,1866473,4
+37693865,1866473,5
+49296258,1866473,4
+chenbei7,1866473,4
+93151927,1866473,4
+49191008,1866473,3
+70454973,1866473,4
+51338490,1866473,5
+Holidayczz,1866473,3
+1962344,1866473,3
+Lemon26,1866473,4
+48745872,1866473,4
+3590759,1866473,4
+63189132,1866473,4
+133439975,1866473,4
+59816567,1866473,5
+133590394,1866473,3
+31438245,1866473,3
+52576194,1866473,3
+42306867,1866473,3
+131013584,1866473,4
+70402235,1866473,5
+yunxin,1866473,4
+49577279,1866473,-1
+emmmmma,1866473,4
+2030100,1866473,4
+anvirdo,1866473,4
+133184119,1866473,4
+blueafter17,1866473,4
+48816440,1866473,4
+7656225,1866473,5
+43831246,1866473,3
+Dukezuo,1866473,4
+1743863,1866473,4
+37571281,1866473,3
+raen,1866473,3
+evalinezhou,1866473,3
+2884333,1866473,-1
+1743599,1866473,3
+71585704,1866473,4
+dumingyuan0829,1866473,4
+Boomer,1866473,4
+43952815,1866473,3
+fenxinyu,1866473,4
+JohnnyJiong,1866473,4
+cening,1866473,4
+44090096,1866473,3
+zv_____,1866473,4
+KyobinJohnson,1866473,2
+54665714,1866473,4
+61703830,1866473,4
+akanetx,1866473,3
+Aioros,1866473,4
+errylee,1866473,3
+Nickhsu,1866473,4
+50242355,1866473,4
+aquariankitty,1866473,4
+28467614,1866473,4
+singing_bird,1866473,3
+51669831,1866473,3
+129448195,1866473,3
+chaliwang3,1866473,5
+57964854,1866473,3
+57693778,1866473,3
+95455271,1866473,5
+loftywain,1866473,3
+stevenfive,1866473,2
+48252121,1866473,3
+Psycho_L,1866473,4
+61887621,1866473,4
+3534837,1866473,4
+youngjie999,1866473,5
+ccaokunn,1866473,5
+mimimojo,1866473,4
+49632171,1866473,4
+39270011,1866473,3
+43547129,1866473,3
+6877388,1866473,4
+4594496,1866473,-1
+jo422,1866473,4
+48237443,1866473,4
+68576426,1866473,3
+74601609,1866473,4
+daydreamers,1866473,4
+51773782,1866473,4
+mousemouse,1866473,4
+59290535,1866473,3
+130411286,1866473,3
+116531685,1866473,4
+122670225,1866473,4
+ranljron,1866473,5
+59646207,1866473,4
+pajamania,1866473,3
+56068033,1866473,5
+tongyc8844,1866473,5
+ZLeaves,1866473,4
+xseac,1866473,5
+cute-candyan,1866473,4
+43800309,1866473,3
+tacshif,1866473,4
+rhh,1866473,3
+95174213,1866473,-1
+52437375,1866473,4
+42471589,1866473,4
+52209428,1866473,3
+gexiaohua,1866473,4
+33914811,1866473,-1
+53785185,1866473,3
+44150824,1866473,4
+123067761,1866473,5
+38850701,1866473,3
+17189076,1866473,3
+Abandoned_Sundy,1866473,3
+134738478,1866473,3
+128867670,1866473,3
+73439952,1866473,3
+yue919,1866473,5
+38721043,1866473,4
+130359713,1866473,4
+62392709,1866473,4
+49715964,1866473,4
+108241953,1866473,4
+49893816,1866473,3
+floragarfield,1866473,5
+4333099,1866473,5
+zz1314,1866473,4
+53633401,1866473,3
+48662310,1866473,3
+83739647,1866473,2
+4574039,1866473,4
+92707476,1866473,5
+46630645,1866473,5
+83700643,1866473,3
+sun_corydalis,1866473,5
+77621365,1866473,4
+dearjan,1866473,4
+44006704,1866473,3
+zhaichaochao,1866473,4
+43317314,1866473,4
+damonhao-cs,1866473,4
+1353634,1866473,3
+82481394,1866473,3
+45703382,1866473,3
+YJXMYT,1866473,3
+Vivien9,1866473,3
+64182296,1866473,4
+62379540,1866473,5
+42576668,1866473,4
+neetli,1866473,3
+lzt,1866473,3
+1393970,1866473,5
+3157228,1866473,4
+leokaikai,1866473,4
+44973722,1866473,5
+42295837,1866473,5
+famma,1866473,4
+91526509,1866473,4
+120566516,1866473,3
+63973142,1866473,4
+20672891,1866473,3
+66632216,1866473,4
+52787854,1866473,4
+lufy,1866473,4
+82317477,1866473,3
+abbyrong,1866473,4
+56121048,1866473,5
+49116772,1866473,3
+42275944,1866473,4
+sunking_fish,1866473,4
+41288485,1866473,4
+60095742,1866473,4
+roaring90h,1866473,3
+52775199,1866473,4
+132922428,1866473,4
+2582296,1866473,4
+51492643,1866473,5
+135944182,1866473,4
+3074950,1866473,3
+63347675,1866473,4
+perfectbread,1866473,3
+zhxyuh,1866473,4
+s399,1866473,3
+53913139,1866473,4
+yao120,1866473,4
+135751000,1866473,3
+littlevanny,1866473,3
+72023919,1866473,4
+48349929,1866473,4
+1981762,1866473,4
+51839609,1866473,3
+fujunyi,1866473,5
+roxymusic,1866473,5
+64141017,1866473,5
+75284376,1866473,4
+130930909,1866473,5
+25103738,1866473,4
+65387421,1866473,4
+sinky1022,1866473,-1
+GFW,1866473,3
+111342880,1866473,3
+1433196,1866473,4
+135466412,1866473,3
+yukikaoru,1866473,4
+48180333,1866473,3
+66081323,1866473,5
+EricYing,1866473,4
+47277729,1866473,3
+70779185,1866473,4
+48523065,1866473,3
+47436584,1866473,4
+2796731,1866473,3
+ibty,1866473,4
+stillfyou,1866473,4
+57803169,1866473,4
+mollyfang777,1866473,5
+61624406,1866473,4
+66179555,1866473,4
+57864735,1866473,4
+twooneseven,1866473,4
+52734180,1866473,3
+76916226,1866473,4
+49442547,1866473,5
+4600665,1866473,3
+4204545,1866473,3
+136182370,1866473,5
+36372446,1866473,3
+sapphire31,1866473,4
+sliverfox,1866473,4
+imlyc,1866473,5
+forever0801,1866473,3
+7952688,1866473,4
+83956629,1866473,4
+78762931,1866473,4
+121432553,1866473,3
+Wyl.,1866473,4
+66459035,1866473,4
+lynn120915,1866473,5
+shadowphoenix,1866473,3
+134509941,1866473,4
+istrings,1866473,4
+82123498,1866473,4
+129283684,1866473,4
+68290528,1866473,3
+yoyo92Iris,1866473,4
+keith_z,1866473,4
+45167634,1866473,5
+84673994,1866473,4
+clivery,1866473,4
+angie0715,1866473,4
+73719753,1866473,5
+120201514,1866473,4
+97307888,1866473,4
+59901694,1866473,3
+82261308,1866473,3
+Victory_V,1866473,3
+54792791,1866473,5
+4549914,1866473,4
+sylvanaslee,1866473,4
+heli940613,1866473,5
+62837159,1866473,4
+sooBoppy,1866473,5
+millren,1866473,4
+65644933,1866473,4
+48167301,1866473,4
+47988873,1866473,4
+88078787,1866473,3
+2903172,1866473,3
+memorysongs,1866473,4
+52294357,1866473,5
+71758766,1866473,3
+65086893,1866473,4
+80283476,1866473,3
+121747053,1866473,5
+73604339,1866473,5
+koalalalalala,1866473,3
+28884615,1866473,4
+122261501,1866473,4
+beibidewo,1866473,3
+56161116,1866473,5
+ChrisNoth,1866473,3
+dynsky2011,1866473,4
+52599868,1866473,3
+rie-,1866473,4
+wowo1314,1866473,3
+44525636,1866473,3
+91241737,1866473,4
+64895214,1866473,4
+23826255,1866473,3
+4196011,1866473,3
+tata1030,1866473,4
+1923916,1866473,4
+54366340,1866473,3
+2713839,1866473,-1
+33196085,1866473,2
+130605614,1866473,4
+81845294,1866473,4
+sunshinewang,1866473,3
+54395094,1866473,3
+tzkeer,1866473,3
+110104355,1866473,2
+1519946,1866473,4
+136790899,1866473,3
+3689742,1866473,4
+angelazha,1866473,4
+libowen,1866473,4
+fengbeer,1866473,4
+126671524,1866473,2
+americanidiot,1866473,4
+1929758,1866473,3
+pipi1226,1866473,4
+pangdashen,1866473,3
+53437305,1866473,2
+1110643,1866473,2
+fandaniaowoaini,1866473,3
+4364181,1866473,3
+81930052,1866473,3
+77176909,1866473,3
+49232664,1866473,5
+Frieda_,1866473,3
+ruoansen,1866473,3
+jeanne68240109,1866473,3
+35890739,1866473,3
+mocouhs,1866473,-1
+youzhiqiang,1866473,3
+38850585,1866473,5
+3477620,1866473,2
+zivee-1uo,1866473,4
+130209226,1866473,4
+hudi911217,1866473,4
+Carolinesue,1866473,4
+72319276,1866473,3
+joylovesyou,1866473,4
+ivydehouse,1866473,4
+javaer,1866473,3
+iamlowe,1866473,3
+miong,1866473,3
+44804402,1866473,4
+47714598,1866473,2
+26306306,1866473,5
+58483665,1866473,3
+122822781,1866473,3
+29988563,1866473,4
+68761520,1866473,5
+42327957,1866473,2
+57831811,1866473,4
+1364563,1866473,3
+65029164,1866473,4
+12083244,1866473,4
+2604555,1866473,4
+yihengxi,1866473,4
+huangzeng,1866473,4
+74168799,1866473,4
+109055681,1866473,3
+92637851,1866473,4
+37078808,1866473,4
+48226644,1866473,4
+77763115,1866473,3
+wyxdora,1866473,3
+50035534,1866473,4
+serendipity1937,1866473,3
+christianaJin,1866473,3
+119644008,1866473,3
+paradisexue,1866473,4
+ilovehouyi,1866473,4
+yazi3.15,1866473,4
+63314941,1866473,3
+skiny_orange,1866473,4
+55793666,1866473,5
+86810689,1866473,3
+3039167,1866473,4
+122994382,1866473,3
+maiyi99,1866473,3
+81544162,1866473,4
+Popdai,1866473,5
+shoucnag,1866473,4
+4338735,1866473,5
+huangjungeng,1866473,3
+swordx,1866473,4
+66722557,1866473,3
+lostItard,1866473,3
+122251713,1866473,3
+chuiching,1866473,5
+34154389,1866473,4
+felt,1866473,4
+57439274,1866473,4
+53795201,1866473,3
+4431205,1866473,4
+xuhaihua,1866473,4
+21927784,1866473,5
+meathill,1866473,3
+134684988,1866473,4
+128025495,1866473,4
+heartseas,1866473,4
+61813472,1866473,4
+17233438,1866473,3
+61739352,1866473,4
+1895030,1866473,4
+54201084,1866473,4
+32741288,1866473,-1
+55273592,1866473,4
+51792609,1866473,3
+45804814,1866473,4
+45439094,1866473,3
+charlesdd,1866473,5
+mero_fox,1866473,4
+Mrs.wrong,1866473,4
+64874706,1866473,-1
+51489993,1866473,3
+57983708,1866473,3
+47088059,1866473,4
+56074823,1866473,5
+133499151,1866473,4
+84925904,1866473,4
+44343473,1866473,5
+122308055,1866473,4
+wolfdharky,1866473,4
+50050256,1866473,3
+53932937,1866473,5
+sky12321fu,1866473,4
+50846350,1866473,5
+Smile...,1866473,3
+37667521,1866473,4
+4010095,1866473,3
+2057844,1866473,5
+bluefish123,1866473,4
+4280175,1866473,3
+vetayao,1866473,3
+47413356,1866473,3
+48200922,1866473,-1
+swa,1866473,4
+twinslt,1866473,3
+4247692,1866473,4
+58569504,1866473,3
+64041722,1866473,3
+singing4u,1866473,3
+84710865,1866473,4
+102967407,1866473,3
+Lolita1881,1866473,3
+Yvonne0627,1866473,5
+62271201,1866473,4
+timing,1866473,3
+61490354,1866473,3
+83025470,1866473,5
+yiya77,1866473,3
+78065496,1866473,4
+43891940,1866473,3
+63443426,1866473,4
+74775337,1866473,4
+83193363,1866473,4
+65683142,1866473,3
+39947856,1866473,4
+ingwerstein,1866473,4
+newzallery,1866473,5
+dsgy,1866473,4
+51195956,1866473,3
+yyumen,1866473,3
+coffeedog,1866473,4
+2700013,1866473,4
+128759511,1866473,3
+3682455,1866473,3
+allrightyeah,1866473,3
+wodeminzijiaolu,1866473,3
+29678096,1866473,4
+66803034,1866473,5
+72418572,1866473,4
+84638987,1866473,4
+marco_0708,1866473,4
+nulanix,1866473,5
+37568625,1866473,4
+miesafeandsound,1866473,3
+lllllllei,1866473,5
+black9_eleven,1866473,5
+candyisme,1866473,4
+49693719,1866473,-1
+mqknet,1866473,5
+ops-out,1866473,4
+59396311,1866473,3
+stafiaryuu,1866473,3
+42224337,1866473,5
+127688878,1866473,5
+beijingdouban,1866473,5
+48368530,1866473,5
+blueclover,1866473,4
+51416199,1866473,3
+76082574,1866473,4
+38624462,1866473,5
+48852517,1866473,3
+zx8713,1866473,4
+73530078,1866473,4
+abbynmagic,1866473,5
+majide,1866473,3
+junefirst,1866473,5
+84582390,1866473,5
+harjol,1866473,3
+harjol,1866473,3
+78215254,1866473,4
+68465754,1866473,3
+73597591,1866473,5
+129092749,1866473,2
+3480174,1866473,4
+robins1979,1866473,3
+37694449,1866473,4
+71767117,1866473,5
+135928484,1866473,4
+121780577,1866473,3
+66714330,1866473,1
+47741613,1866473,4
+bingyansue,1866473,4
+43588127,1866473,4
+55443753,1866473,3
+Ellie_sy,1866473,2
+61657305,1866473,4
+JoooNE,1866473,5
+60654795,1866473,5
+60654795,1866473,5
+dream09104,1866473,3
+getanvil,1866473,4
+yixi7,1866473,3
+119226117,1866473,4
+40638118,1866473,4
+134159627,1866473,4
+black_knight22,1866473,4
+49063842,1866473,5
+Yeah.Owl.G,1866473,4
+theshow,1866473,4
+32008707,1866473,3
+28410778,1866473,4
+53389655,1866473,3
+51444963,1866473,5
+75438481,1866473,4
+47581758,1866473,3
+46003128,1866473,5
+47806100,1866473,4
+61929224,1866473,4
+75274306,1866473,3
+121700755,1866473,5
+47316424,1866473,5
+120740966,1866473,4
+49772248,1866473,3
+Hope0105,1866473,4
+la_viva,1866473,5
+54807886,1866473,3
+lyning,1866473,3
+58643220,1866473,4
+stt0315,1866473,5
+littlegreeeeen,1866473,4
+113943553,1866473,4
+lesleylk,1866473,4
+52740644,1866473,4
+56407287,1866473,5
+51943027,1866473,4
+51761822,1866473,3
+81162851,1866473,3
+119307507,1866473,3
+36145161,1866473,4
+78732088,1866473,4
+dml0528,1866473,4
+3944230,1866473,4
+43372151,1866473,3
+51401098,1866473,3
+57968864,1866473,5
+97415424,1866473,3
+68472138,1866473,4
+flyawaylevana,1866473,5
+99126872,1866473,4
+jade0711,1866473,4
+134339414,1866473,3
+48932419,1866473,3
+whosKady,1866473,4
+Spherenix,1866473,3
+72276993,1866473,3
+wuyoufengzheng,1866473,5
+21395164,1866473,4
+rabbit_roxas,1866473,5
+iyuge,1866473,4
+lightblue_xu,1866473,4
+Iamfull,1866473,5
+66405994,1866473,3
+3234538,1866473,3
+mariewyssa,1866473,4
+sebasverm,1866473,4
+51918172,1866473,5
+44975625,1866473,4
+134176594,1866473,3
+68204055,1866473,3
+69526034,1866473,3
+3752572,1866473,2
+tinaxuang,1866473,4
+93423717,1866473,5
+wawuka,1866473,3
+sophiamaomao,1866473,3
+57057682,1866473,3
+miasweety,1866473,4
+73122939,1866473,5
+73122939,1866473,5
+84968325,1866473,2
+qiangzhuang,1866473,4
+47200046,1866473,4
+135792274,1866473,4
+63119058,1866473,3
+84064538,1866473,5
+gzshi,1866473,4
+green911,1866473,5
+114517843,1866473,4
+wizbp,1866473,3
+ohyeacat,1866473,3
+l309788500,1866473,3
+nian0415,1866473,4
+49362402,1866473,4
+acseleon,1866473,4
+95691041,1866473,3
+2075616,1866473,3
+34043177,1866473,5
+dianawh,1866473,3
+surprinazhang,1866473,3
+gbracelet,1866473,5
+35914058,1866473,4
+lanxiaoyang710,1866473,4
+47100012,1866473,4
+72769762,1866473,4
+117359316,1866473,4
+52182861,1866473,-1
+62772716,1866473,4
+taolitianxia,1866473,4
+49827359,1866473,4
+32653092,1866473,3
+48409104,1866473,4
+64480930,1866473,4
+Dpudding,1866473,4
+61101184,1866473,4
+noply,1866473,3
+55310272,1866473,4
+2913325,1866473,3
+33901414,1866473,3
+131055900,1866473,4
+cathrynanne,1866473,5
+67715281,1866473,4
+2917314,1866473,4
+97916221,1866473,3
+hiandai,1866473,4
+49852947,1866473,5
+desan,1866473,4
+126372246,1866473,4
+3182801,1866473,4
+60271982,1866473,4
+julingshen,1866473,4
+123788774,1866473,4
+48713524,1866473,4
+33482711,1866473,3
+58188727,1866473,5
+112126006,1866473,4
+112695374,1866473,3
+36888094,1866473,3
+68098280,1866473,5
+132235046,1866473,3
+57293187,1866473,5
+kanrenao,1866473,5
+momo_722,1866473,5
+57112483,1866473,3
+50188986,1866473,4
+33325167,1866473,3
+rainboo,1866473,4
+84851693,1866473,4
+9815076,1866473,3
+CYPAAAAA,1866473,3
+127362939,1866473,4
+tqwang,1866473,4
+Mr.rawness,1866473,3
+48720584,1866473,4
+136744877,1866473,5
+41017931,1866473,4
+120383320,1866473,2
+55461172,1866473,5
+82018179,1866473,3
+jennylove,1866473,5
+LO7,1866473,3
+3852778,1866473,3
+75189132,1866473,4
+51216421,1866473,3
+45547350,1866473,5
+81370561,1866473,4
+83377522,1866473,5
+nzhdme,1866473,5
+3894772,1866473,3
+116607290,1866473,3
+guanjianhong,1866473,5
+belliedmonkey,1866473,5
+54306906,1866473,4
+64776383,1866473,4
+43649169,1866473,4
+6186536,1866473,5
+62560000,1866473,4
+3937539,1866473,3
+74227062,1866473,3
+89925651,1866473,4
+lelexiaomifeng,1866473,4
+102957224,1866473,4
+b.jok,1866473,4
+onidalee,1866473,5
+43942972,1866473,3
+yeskor,1866473,4
+2761343,1866473,-1
+77212612,1866473,5
+lpjxc,1866473,2
+65445656,1866473,4
+133673021,1866473,5
+40273043,1866473,4
+SoniaLu-douban,1866473,4
+135460518,1866473,4
+claudiaqq,1866473,5
+oooweirooo,1866473,3
+72505167,1866473,-1
+Sandra_2009,1866473,4
+50131666,1866473,4
+1888516,1866473,4
+70415985,1866473,4
+chihuoo,1866473,4
+136499591,1866473,4
+51350191,1866473,3
+huxzhao,1866473,5
+62770743,1866473,4
+macchiatomood,1866473,5
+pinkycon,1866473,4
+4218644,1866473,3
+2210223,1866473,3
+124304094,1866473,5
+46673283,1866473,4
+92200521,1866473,4
+45575383,1866473,3
+56258332,1866473,4
+35192408,1866473,3
+32549161,1866473,3
+2940089,1866473,5
+113906275,1866473,4
+Yiz-Chan,1866473,5
+46749955,1866473,3
+62130444,1866473,5
+alyssadu,1866473,4
+jiuzhao,1866473,3
+YiShine,1866473,4
+53771216,1866473,5
+44272314,1866473,4
+34258545,1866473,3
+jasonwoodlsj,1866473,3
+74061622,1866473,3
+51965431,1866473,3
+theykilledbill,1866473,4
+54045751,1866473,3
+65045632,1866473,4
+44523532,1866473,4
+68136264,1866473,4
+65804378,1866473,4
+frozone,1866473,2
+56252937,1866473,3
+73172080,1866473,5
+6455488,1866473,3
+lsg_lsg,1866473,4
+34310004,1866473,3
+122287111,1866473,3
+TCTF,1866473,3
+naomilee,1866473,4
+3683994,1866473,3
+29620245,1866473,4
+mamm,1866473,4
+Varatril,1866473,3
+Nicking,1866473,-1
+vanco19,1866473,5
+34706621,1866473,4
+pennyfc21,1866473,4
+114402570,1866473,5
+67970767,1866473,4
+miffychen0,1866473,4
+bananany,1866473,4
+fireflyxin,1866473,4
+luerdelphic,1866473,4
+46297315,1866473,-1
+84042964,1866473,5
+anguswhile,1866473,5
+39224869,1866473,5
+lilliantao,1866473,4
+136689269,1866473,4
+Dora69,1866473,5
+Diversity7,1866473,4
+134630529,1866473,4
+83177067,1866473,4
+paeonia19,1866473,4
+51919301,1866473,3
+133507859,1866473,3
+hejuefei,1866473,4
+myboo1991,1866473,3
+thickshrimp,1866473,5
+3217439,1866473,5
+43122698,1866473,5
+fallenfanell,1866473,4
+15726816,1866473,3
+cookiecola,1866473,4
+longyueye,1866473,3
+freggieg,1866473,3
+syloveyangying,1866473,5
+43280379,1866473,3
+71869905,1866473,4
+53932283,1866473,3
+caosen,1866473,3
+60053486,1866473,5
+cloris32,1866473,4
+21530603,1866473,4
+49815117,1866473,-1
+2857806,1866473,4
+yochiro,1866473,3
+89399541,1866473,4
+2857621,1866473,3
+aki.sh,1866473,4
+49491466,1866473,3
+meizhile,1866473,3
+meizhile,1866473,3
+48031310,1866473,4
+52755966,1866473,4
+47837799,1866473,5
+2198591,1866473,4
+leikea,1866473,4
+xinagxi,1866473,5
+90763721,1866473,5
+4383003,1866473,4
+111493695,1866473,4
+102342515,1866473,3
+72425203,1866473,4
+4595070,1866473,3
+76782634,1866473,5
+3573377,1866473,-1
+namik_ercan,1866473,4
+zql9527,1866473,3
+45648477,1866473,3
+xy1232123,1866473,4
+45786010,1866473,4
+46590028,1866473,3
+SZH19920707,1866473,4
+momohei,1866473,4
+121656702,1866473,-1
+52299764,1866473,-1
+36268957,1866473,4
+47755926,1866473,4
+42785964,1866473,3
+16215501,1866473,4
+psynonder,1866473,3
+88998260,1866473,5
+109530447,1866473,3
+79452838,1866473,3
+windywings,1866473,4
+juning,1866473,4
+litsunny,1866473,3
+110771626,1866473,3
+haochimaomao,1866473,4
+lmx1220,1866473,5
+75055138,1866473,4
+63512552,1866473,5
+64876627,1866473,3
+61406882,1866473,5
+61683576,1866473,4
+52270497,1866473,5
+binnnn,1866473,3
+3655806,1866473,5
+38654828,1866473,5
+81646190,1866473,5
+43784506,1866473,4
+2244671,1866473,4
+onein6billion,1866473,5
+carrypotter,1866473,3
+summerday510,1866473,4
+57450797,1866473,5
+73536867,1866473,4
+lsadalin,1866473,4
+2842937,1866473,4
+55937300,1866473,4
+55436430,1866473,4
+Mulholland,1866473,3
+GGGGGly,1866473,5
+resurrection,1866473,4
+49765659,1866473,3
+28959917,1866473,3
+zhuyueya,1866473,5
+48608212,1866473,4
+49923430,1866473,3
+49137557,1866473,4
+50303559,1866473,4
+2167030,1866473,5
+2634600,1866473,4
+121650860,1866473,4
+111280014,1866473,4
+62110835,1866473,3
+90961062,1866473,3
+4470190,1866473,4
+34719706,1866473,5
+53772865,1866473,4
+116908080,1866473,5
+49673011,1866473,4
+47017825,1866473,5
+83459700,1866473,4
+hpjoe,1866473,3
+48898994,1866473,3
+29453492,1866473,3
+19136693,1866473,3
+kimonic,1866473,5
+52939857,1866473,4
+55638323,1866473,4
+43447764,1866473,3
+107805569,1866473,3
+102602713,1866473,4
+98640890,1866473,5
+hilongmaoxiong,1866473,4
+43910063,1866473,3
+aboutlei,1866473,3
+59233639,1866473,4
+64797594,1866473,4
+37136452,1866473,5
+61190847,1866473,3
+iki77,1866473,5
+27021178,1866473,3
+58934229,1866473,4
+sentexiaohu,1866473,4
+52692342,1866473,4
+58399217,1866473,4
+asahikawa,1866473,-1
+alaxos,1866473,5
+38984865,1866473,4
+58783405,1866473,5
+Kingnima,1866473,4
+ZoeyFox,1866473,2
+jqong1,1866473,4
+26442373,1866473,3
+40681472,1866473,4
+stillove,1866473,5
+62635497,1866473,3
+82227481,1866473,4
+mew-yxs,1866473,4
+48694579,1866473,-1
+31716665,1866473,4
+50472438,1866473,4
+58229713,1866473,4
+jy89110,1866473,4
+106663926,1866473,3
+79145213,1866473,4
+67454532,1866473,3
+64638261,1866473,4
+smartgirl0305,1866473,-1
+46416495,1866473,5
+65379776,1866473,3
+57888362,1866473,2
+98356595,1866473,4
+kylintatto,1866473,3
+zhangreeki,1866473,5
+3214138,1866473,4
+52284138,1866473,5
+oolong12,1866473,5
+49249122,1866473,4
+55303586,1866473,3
+48459404,1866473,3
+iamshining,1866473,3
+yvhgdpgy,1866473,3
+56796153,1866473,3
+4841673,1866473,5
+73108314,1866473,5
+valentina999,1866473,5
+57949283,1866473,4
+42036458,1866473,3
+SilverZhan,1866473,3
+122384990,1866473,3
+66210329,1866473,3
+38606408,1866473,3
+47175598,1866473,4
+44911874,1866473,4
+shuyan50,1866473,3
+43370431,1866473,4
+1450335,1866473,3
+yoyo5411,1866473,5
+34440415,1866473,-1
+65412989,1866473,2
+2310617,1866473,4
+Clatyz-Sun,1866473,4
+116277859,1866473,5
+48359509,1866473,3
+82273963,1866473,5
+90465571,1866473,3
+63579329,1866473,3
+1077771,1866473,3
+taoer999,1866473,4
+LYX_loielaine,1866473,4
+3015416,1866473,4
+3044833,1866473,4
+catmovie,1866473,5
+caijiazhan,1866473,4
+57970468,1866473,3
+58543683,1866473,5
+43685156,1866473,4
+34727533,1866473,3
+63647300,1866473,4
+hongna,1866473,3
+bemyself925,1866473,4
+mymisssummer,1866473,3
+coffeejikou,1866473,3
+shirley920,1866473,4
+gzgaoyuan,1866473,3
+68687739,1866473,4
+131118514,1866473,4
+bracelet,1866473,4
+50656136,1866473,4
+62362677,1866473,4
+36196484,1866473,3
+122341232,1866473,5
+likengni,1866473,5
+weizaia,1866473,4
+122616416,1866473,4
+46770253,1866473,4
+76182479,1866473,3
+81773403,1866473,3
+zhangying0913,1866473,5
+56460053,1866473,4
+crazycrazyboo,1866473,4
+40063567,1866473,4
+127858479,1866473,4
+suNny.,1866473,4
+50186647,1866473,3
+stefaniesays,1866473,4
+songhaibao,1866473,3
+mmj12,1866473,4
+63249490,1866473,4
+pengpeng0308,1866473,5
+wantu,1866473,3
+66234722,1866473,4
+1515004,1866473,3
+mitusheng,1866473,3
+57961574,1866473,4
+77643090,1866473,2
+zzww88,1866473,4
+69128957,1866473,3
+xiaoan7EF,1866473,-1
+we_are_Smug,1866473,1
+34576135,1866473,3
+59375998,1866473,4
+saky,1866473,3
+banzhan,1866473,3
+64718672,1866473,1
+20886546,1866473,4
+65072386,1866473,4
+catherine1995,1866473,3
+57260261,1866473,4
+84593823,1866473,4
+57497039,1866473,4
+53854187,1866473,3
+80027002,1866473,5
+61660180,1866473,3
+39378921,1866473,4
+60752122,1866473,4
+50757734,1866473,3
+53259114,1866473,3
+70488224,1866473,3
+36707971,1866473,3
+63778440,1866473,5
+37179208,1866473,4
+132045687,1866473,4
+Desperatio_God,1866473,4
+pan-bob,1866473,4
+48781224,1866473,3
+alohaceci,1866473,3
+blossomindark,1866473,4
+130564437,1866473,3
+128159341,1866473,5
+63547769,1866473,3
+xybeijing,1866473,4
+58728864,1866473,4
+1569718,1866473,4
+Angel.Sun,1866473,5
+50596601,1866473,4
+40193618,1866473,3
+wangxiaolei,1866473,4
+63412313,1866473,3
+peter.dai,1866473,4
+sixpie,1866473,3
+61797796,1866473,4
+fu.yuan.yu,1866473,4
+fengmengdi,1866473,1
+leileisunshine,1866473,4
+47071735,1866473,4
+63882511,1866473,5
+61717566,1866473,4
+66136937,1866473,3
+80682770,1866473,4
+shawnchang,1866473,3
+lovelyekin,1866473,3
+mia52,1866473,4
+119850013,1866473,4
+iamzpp,1866473,5
+66066828,1866473,4
+64651618,1866473,3
+132370483,1866473,4
+zheshijian,1866473,5
+nikan,1866473,4
+song0802,1866473,4
+86705212,1866473,4
+EavenTao,1866473,4
+99337614,1866473,3
+132678799,1866473,4
+45162443,1866473,3
+killy_wys,1866473,3
+52530490,1866473,5
+14410964,1866473,3
+29595679,1866473,3
+136695075,1866473,4
+3851402,1866473,4
+lifehere,1866473,4
+miu-Wolf,1866473,3
+ceciliayiyi,1866473,5
+doudouhu,1866473,4
+libertyer,1866473,4
+lemontown,1866473,4
+59281963,1866473,4
+yuranyi,1866473,3
+69006133,1866473,4
+125979869,1866473,4
+49632759,1866473,4
+47663512,1866473,3
+serpentine0930,1866473,4
+Lisa.L,1866473,3
+space_junk,1866473,4
+69739114,1866473,5
+51227412,1866473,4
+65338858,1866473,4
+50941682,1866473,4
+suzyfine,1866473,3
+64865282,1866473,3
+34774733,1866473,4
+79855798,1866473,3
+shire,1866473,3
+threetimes,1866473,4
+praguenight,1866473,3
+49872247,1866473,4
+wanbo,1866473,3
+shionpure,1866473,3
+48121857,1866473,4
+41353092,1866473,4
+Hellove,1866473,4
+63718614,1866473,4
+willyjiang,1866473,4
+Ann_iris,1866473,3
+kksai,1866473,3
+58596015,1866473,4
+43765762,1866473,4
+47153711,1866473,3
+on1yys,1866473,4
+111642436,1866473,4
+61455222,1866473,3
+toprocku,1866473,4
+sonofsam,1866473,3
+46521802,1866473,4
+2918555,1866473,3
+64628791,1866473,3
+1378705,1866473,5
+66617484,1866473,4
+Archesthan,1866473,5
+minishine,1866473,5
+42503959,1866473,4
+wuzicun,1866473,3
+52948312,1866473,4
+107641997,1866473,5
+Viooolin,1866473,3
+thinkerfeng,1866473,4
+lcpeng,1866473,3
+41480013,1866473,4
+65312708,1866473,5
+feizhouji,1866473,3
+Jarvenlaw,1866473,4
+78081172,1866473,4
+58049381,1866473,4
+74678898,1866473,3
+36077117,1866473,3
+68033214,1866473,4
+35157970,1866473,4
+61520625,1866473,4
+SETiiiii,1866473,3
+48523761,1866473,4
+131854669,1866473,4
+e_eyore,1866473,4
+133564346,1866473,3
+loveBJuncle,1866473,4
+4608887,1866473,4
+badayidi,1866473,3
+59105676,1866473,3
+tuirt,1866473,5
+4385109,1866473,4
+54191212,1866473,4
+79897503,1866473,4
+52512289,1866473,3
+ontar1o,1866473,4
+46444197,1866473,4
+136364437,1866473,4
+52969111,1866473,5
+rainpath,1866473,4
+74244754,1866473,3
+yutti,1866473,4
+47485602,1866473,4
+17908241,1866473,3
+Poison.,1866473,-1
+52573676,1866473,3
+2797193,1866473,5
+63332065,1866473,4
+135702418,1866473,5
+58552673,1866473,4
+45722938,1866473,4
+44105688,1866473,3
+2664010,1866473,4
+27515686,1866473,3
+sunnyisle,1866473,3
+49626330,1866473,5
+120795158,1866473,4
+38924619,1866473,3
+41740929,1866473,4
+sanzhiling,1866473,3
+95913803,1866473,5
+moon124,1866473,5
+sleeper0803,1866473,4
+41212756,1866473,3
+136673934,1866473,4
+47881810,1866473,4
+seoyoungeun,1866473,4
+57530916,1866473,5
+72630623,1866473,5
+Sad.chang,1866473,3
+tyler007,1866473,5
+50651316,1866473,4
+73100857,1866473,5
+2417499,1866473,3
+136510389,1866473,4
+111711289,1866473,4
+39945690,1866473,5
+94767276,1866473,4
+94767276,1866473,4
+sxy921026,1866473,3
+mmayy555,1866473,4
+58115368,1866473,5
+121933130,1866473,4
+42993095,1866473,5
+110981703,1866473,4
+130716428,1866473,4
+136425560,1866473,5
+yingruo91,1866473,4
+c2ming,1866473,5
+sherrychris,1866473,5
+136249243,1866473,3
+pepereina,1866473,5
+74376371,1866473,4
+2385262,1866473,4
+50995944,1866473,3
+134254818,1866473,4
+103124485,1866473,3
+xiki.m,1866473,3
+kangecho,1866473,3
+130564137,1866473,2
+130671137,1866473,3
+beanny,1866473,4
+wangyujia520,1866473,4
+lovetatum,1866473,5
+zhangqizhuangbi,1866473,3
+maomao3644,1866473,4
+54888937,1866473,5
+leafly8,1866473,3
+xiangrikui1988,1866473,4
+52006998,1866473,5
+89308667,1866473,4
+chuan1989,1866473,4
+119670372,1866473,5
+135700811,1866473,3
+3557807,1866473,4
+schritt,1866473,4
+6474153,1866473,3
+53829509,1866473,4
+111795228,1866473,5
+63107606,1866473,4
+1582961,1866473,4
+crystal_ruirui,1866473,3
+acacia_acacia,1866473,4
+41415915,1866473,4
+liuyuntianma,1866473,5
+41615125,1866473,3
+carolcai,1866473,4
+sdp1037,1866473,3
+46927258,1866473,4
+lemonsweet,1866473,5
+88566153,1866473,3
+136672329,1866473,3
+tigermiao,1866473,3
+SOPHYSUN,1866473,-1
+implicitallure,1866473,5
+51983779,1866473,5
+43916999,1866473,4
+37620368,1866473,4
+37620368,1866473,4
+120860718,1866473,4
+lovesay,1866473,3
+136671814,1866473,4
+132161257,1866473,5
+58310222,1866473,5
+121997896,1866473,4
+4852496,1866473,4
+calafalas,1866473,4
+103524037,1866473,-1
+4050170,1866473,4
+66776085,1866473,5
+min1,1866473,4
+81807241,1866473,5
+timemachine5,1866473,4
+valiantwarrior,1866473,4
+4587143,1866473,5
+songjia0227,1866473,4
+2368557,1866473,4
+61110479,1866473,4
+mavishebelsie,1866473,5
+37398408,1866473,4
+47768622,1866473,4
+40328329,1866473,4
+yummy1986,1866473,4
+ZJ1231,1866473,4
+78632463,1866473,4
+44625309,1866473,4
+2426065,1866473,1
+132277009,1866473,3
+huxinting,1866473,5
+bearyumi,1866473,3
+jimodexueren,1866473,3
+3142293,1866473,-1
+27087669,1866473,4
+128592624,1866473,5
+ythsxz,1866473,4
+57830347,1866473,4
+65755363,1866473,4
+43062061,1866473,3
+106176250,1866473,4
+127278998,1866473,4
+elf_09,1866473,4
+34226675,1866473,3
+54664009,1866473,4
+foxgarden,1866473,3
+94495606,1866473,4
+46370067,1866473,4
+42340819,1866473,3
+2677247,1866473,4
+xxxxsxxxx,1866473,4
+128616912,1866473,3
+75058618,1866473,3
+Charlie.Lee,1866473,3
+shumilejo,1866473,3
+mandylu,1866473,4
+peach99,1866473,3
+57598902,1866473,4
+ym_199355,1866473,4
+46721798,1866473,3
+45787212,1866473,4
+42695669,1866473,4
+55621323,1866473,4
+133743909,1866473,5
+69221648,1866473,4
+kaine666,1866473,-1
+L_E,1866473,4
+96898762,1866473,3
+zhangyutao519,1866473,4
+51807929,1866473,5
+133854839,1866473,4
+IcePickJones,1866473,5
+3248654,1866473,4
+49397430,1866473,4
+66673109,1866473,4
+41236968,1866473,3
+2149977,1866473,5
+cherrytiaotiao,1866473,4
+48496387,1866473,5
+24346292,1866473,4
+j303,1866473,5
+RedRoth,1866473,4
+48627405,1866473,5
+49891610,1866473,4
+40861362,1866473,3
+2589831,1866473,3
+121230071,1866473,4
+2258869,1866473,3
+gh13singer,1866473,3
+wangzhumei,1866473,4
+102594722,1866473,4
+56238441,1866473,5
+102624922,1866473,3
+58491493,1866473,3
+4459987,1866473,4
+54107641,1866473,2
+kuku_yang,1866473,4
+merveille,1866473,5
+40819535,1866473,3
+2581765,1866473,5
+76624951,1866473,3
+60889273,1866473,4
+85395609,1866473,3
+yiliaobailiao,1866473,5
+thehours_lxx,1866473,3
+74984713,1866473,4
+53004765,1866473,4
+79879080,1866473,4
+10191174,1866473,4
+lukaka,1866473,4
+51635702,1866473,4
+63716025,1866473,4
+ricchhard,1866473,4
+thistle_,1866473,3
+43308521,1866473,5
+lankfire,1866473,4
+58919934,1866473,3
+43808968,1866473,-1
+50565787,1866473,5
+53399092,1866473,5
+53399092,1866473,5
+agentying,1866473,4
+136447545,1866473,4
+xiaoxiaose,1866473,4
+JakeNow,1866473,4
+134924552,1866473,5
+nuannuanmo,1866473,4
+123389443,1866473,4
+candy_maoshijia,1866473,4
+wusansui,1866473,4
+balltaker,1866473,4
+53988209,1866473,4
+121609146,1866473,3
+gejun9558,1866473,3
+rum1412,1866473,4
+2625680,1866473,5
+56469704,1866473,4
+55474748,1866473,2
+dongdayou,1866473,4
+2535721,1866473,4
+58116999,1866473,4
+69487826,1866473,3
+83041900,1866473,2
+60606413,1866473,2
+23400839,1866473,4
+jvanky,1866473,5
+mintring,1866473,3
+ameibush9799,1866473,4
+hewenzicandy,1866473,4
+83034260,1866473,3
+43037534,1866473,3
+47424781,1866473,2
+43773287,1866473,3
+69095910,1866473,2
+62208354,1866473,3
+adreaman,1866473,4
+liaoyanzhen,1866473,4
+hsyh1989,1866473,4
+kided,1866473,4
+46243159,1866473,5
+VISIONLENS,1866473,4
+zhangjikun,1866473,4
+136658563,1866473,3
+fengzaifei,1866473,3
+lolos,1866473,3
+amandehome,1866473,4
+ultrasb,1866473,3
+bxc1988yiderky,1866473,5
+50860943,1866473,4
+64107417,1866473,4
+46289841,1866473,4
+3691770,1866473,4
+scholl,1866473,4
+allenzn125,1866473,3
+66477256,1866473,3
+susie1991,1866473,4
+2063961,1866473,5
+49263977,1866473,3
+snitu,1866473,4
+47472910,1866473,-1
+yoghurtfree,1866473,4
+72081703,1866473,2
+3859112,1866473,4
+64662945,1866473,4
+jeanjay,1866473,4
+57088195,1866473,4
+2496608,1866473,3
+133374064,1866473,5
+51960322,1866473,3
+74715074,1866473,4
+50933381,1866473,-1
+55387652,1866473,4
+54836169,1866473,4
+kenosisy,1866473,3
+Amberine,1866473,5
+50214253,1866473,4
+44969749,1866473,3
+paintaking,1866473,4
+43916563,1866473,4
+43376668,1866473,3
+48873217,1866473,5
+66583991,1866473,4
+35886249,1866473,4
+yxgn,1866473,4
+pure_115,1866473,4
+122118571,1866473,3
+63531655,1866473,4
+41864568,1866473,4
+Gengxiaolele,1866473,4
+92431654,1866473,4
+yvonnemao,1866473,3
+onlymoment,1866473,4
+50726036,1866473,3
+3210031,1866473,4
+gycheng,1866473,4
+stories7,1866473,3
+48792138,1866473,4
+haluway,1866473,3
+134530385,1866473,4
+51387494,1866473,4
+norns_13,1866473,4
+92409264,1866473,3
+53451776,1866473,4
+2264793,1866473,3
+1242185,1866473,4
+102605271,1866473,4
+68393583,1866473,3
+2812801,1866473,5
+iamyzgf,1866473,3
+hua400,1866473,-1
+67200006,1866473,3
+134879624,1866473,4
+4855435,1866473,4
+133107794,1866473,4
+68519585,1866473,5
+sunnybath,1866473,5
+52174133,1866473,4
+125128077,1866473,4
+jiiiiiaaaa,1866473,4
+Gdeer,1866473,3
+14348215,1866473,4
+43692248,1866473,4
+zhuyuying,1866473,5
+104296703,1866473,-1
+55545338,1866473,4
+joshvietti,1866473,3
+3203277,1866473,4
+55785418,1866473,4
+79420252,1866473,4
+66841204,1866473,3
+dyjtony,1866473,4
+52762105,1866473,3
+xiaodongWang,1866473,3
+2022222,1866473,3
+48767552,1866473,4
+elle.luo,1866473,4
+joy0209,1866473,5
+133516099,1866473,4
+Kemuid,1866473,5
+43710853,1866473,3
+63183447,1866473,3
+maerting,1866473,4
+50979998,1866473,4
+49364044,1866473,4
+50452092,1866473,3
+bonnie920311,1866473,4
+101785625,1866473,5
+87642971,1866473,5
+136650795,1866473,4
+78501874,1866473,2
+1392150,1866473,4
+69516043,1866473,4
+swing8,1866473,4
+yyxdl,1866473,3
+1166849,1866473,4
+lolita822,1866473,4
+121557775,1866473,4
+43773651,1866473,4
+130934404,1866473,2
+56826913,1866473,4
+fccindy,1866473,4
+infante,1866473,4
+97646321,1866473,4
+51572467,1866473,-1
+81369268,1866473,5
+66974866,1866473,3
+xuyuansundae,1866473,3
+liususu,1866473,3
+113515120,1866473,4
+1219326,1866473,4
+66932091,1866473,4
+64547560,1866473,5
+ooxx00xx,1866473,4
+122789808,1866473,5
+52217133,1866473,4
+114977043,1866473,3
+44957387,1866473,4
+123131043,1866473,4
+tristasmile,1866473,4
+101365200,1866473,5
+57248096,1866473,4
+51784257,1866473,3
+69914528,1866473,3
+49259090,1866473,3
+4105122,1866473,3
+mecsta,1866473,2
+48055064,1866473,4
+106597439,1866473,3
+53280545,1866473,5
+freedomiron,1866473,3
+49407288,1866473,3
+4170268,1866473,4
+2416471,1866473,4
+4533688,1866473,3
+58280362,1866473,4
+53256209,1866473,3
+2569425,1866473,4
+37953747,1866473,5
+36008103,1866473,4
+105003277,1866473,3
+62751828,1866473,5
+48882984,1866473,2
+2736158,1866473,4
+bibodeng,1866473,5
+25284374,1866473,4
+58725875,1866473,4
+116267652,1866473,3
+63635904,1866473,4
+3995826,1866473,3
+iris29,1866473,-1
+65232928,1866473,4
+1326095,1866473,4
+51263731,1866473,3
+noheeyeon,1866473,4
+keero,1866473,4
+landissey,1866473,4
+Lair_Grass,1866473,3
+81986095,1866473,5
+89646324,1866473,4
+134062078,1866473,4
+3476767,1866473,3
+102626556,1866473,4
+52680941,1866473,5
+91241564,1866473,4
+4290608,1866473,4
+46596043,1866473,5
+44756507,1866473,5
+mylove88,1866473,5
+yabuyabuyabu,1866473,4
+75706045,1866473,5
+44222375,1866473,4
+sniperchris,1866473,2
+tomatosweet,1866473,5
+3435038,1866473,5
+119026102,1866473,3
+saker,1866473,3
+60435322,1866473,3
+43683587,1866473,5
+shgy,1866473,3
+53049553,1866473,4
+50873714,1866473,4
+unrealzhizhi,1866473,4
+roger589,1866473,4
+58196889,1866473,4
+zxman386,1866473,4
+fallenisland,1866473,4
+77094909,1866473,4
+ariesyesung,1866473,4
+moruohan,1866473,4
+54410446,1866473,4
+foradaisy,1866473,3
+livrecoeur,1866473,4
+62352557,1866473,4
+67104840,1866473,3
+4710028,1866473,4
+53914126,1866473,4
+71741395,1866473,4
+moneywj0302,1866473,5
+skysailing,1866473,3
+41313551,1866473,4
+heydzi,1866473,3
+131385388,1866473,5
+66521777,1866473,3
+zqy931213,1866473,4
+44434649,1866473,4
+benbenzo,1866473,4
+4523412,1866473,5
+125543674,1866473,4
+58195193,1866473,3
+51964877,1866473,5
+103775903,1866473,4
+87537150,1866473,3
+79888548,1866473,5
+41599370,1866473,4
+Kerrigan,1866473,4
+songjinglee,1866473,4
+125010883,1866473,5
+taojingyu1996,1866473,5
+45419889,1866473,4
+58316398,1866473,4
+47587289,1866473,3
+asukayoshioka,1866473,4
+46712820,1866473,5
+lamwithme,1866473,5
+wang_yangyang,1866473,3
+ricohjing,1866473,3
+4016597,1866473,4
+49278748,1866473,5
+enjoyleelife,1866473,3
+50335786,1866473,4
+59959404,1866473,4
+119330514,1866473,4
+3816221,1866473,3
+3503399,1866473,4
+litesoar,1866473,4
+babbye,1866473,3
+36888465,1866473,3
+sjstal,1866473,4
+28312683,1866473,3
+5326502,1866473,5
+killsusie,1866473,4
+liuliliuli,1866473,3
+landcontinent,1866473,3
+119567326,1866473,5
+50729959,1866473,3
+63381991,1866473,4
+44329176,1866473,3
+caramelbabybear,1866473,4
+Sunny851020,1866473,5
+79322383,1866473,4
+136639281,1866473,4
+10834287,1866473,5
+46004647,1866473,5
+124042651,1866473,3
+123645263,1866473,4
+58670353,1866473,4
+55792771,1866473,4
+57472290,1866473,4
+2361739,1866473,4
+55874081,1866473,4
+44022921,1866473,4
+2814849,1866473,5
+surths,1866473,4
+99436003,1866473,5
+JL-Nobody,1866473,4
+candiceevans,1866473,5
+sostomato,1866473,4
+53240525,1866473,4
+66277108,1866473,4
+130154874,1866473,4
+67823605,1866473,3
+72834528,1866473,5
+1721938,1866473,4
+49995634,1866473,2
+74541142,1866473,3
+48071996,1866473,4
+niangyue,1866473,4
+likounin,1866473,4
+85445676,1866473,4
+Utopiartist,1866473,4
+L-muyan,1866473,5
+95767683,1866473,3
+102741968,1866473,4
+75478743,1866473,4
+shynic89,1866473,5
+liubin192,1866473,4
+63971578,1866473,4
+46291335,1866473,4
+38387457,1866473,3
+zhangtuo,1866473,4
+Bao1a2s,1866473,4
+104622893,1866473,5
+sparkzml,1866473,4
+39945133,1866473,4
+63932737,1866473,4
+Sophieee_sophie,1866473,3
+FifthDlassie,1866473,4
+2826239,1866473,3
+Alejandro0929,1866473,4
+64673199,1866473,4
+64673199,1866473,4
+ammo123,1866473,4
+40645830,1866473,4
+132438473,1866473,3
+shelockcrc,1866473,4
+43390539,1866473,3
+75691950,1866473,4
+132394444,1866473,5
+Sibier,1866473,4
+60927256,1866473,5
+49374393,1866473,4
+48652559,1866473,3
+3254520,1866473,4
+48708306,1866473,4
+52169356,1866473,4
+wonfrade,1866473,4
+yadnomeulb,1866473,3
+93916065,1866473,5
+Sheldon5,1866473,4
+51091763,1866473,4
+48048906,1866473,5
+53721569,1866473,4
+131182158,1866473,3
+yinyiner,1866473,5
+25972257,1866473,5
+monstertonnia,1866473,3
+hollypong,1866473,4
+44124671,1866473,3
+sephilish,1866473,3
+Freaknius,1866473,5
+62825162,1866473,5
+41241224,1866473,3
+63850885,1866473,4
+50272188,1866473,-1
+45276725,1866473,4
+57697286,1866473,3
+huhu227,1866473,3
+55993143,1866473,3
+4235191,1866473,4
+3025498,1866473,5
+3025498,1866473,5
+littlecar,1866473,4
+lizzy1989,1866473,4
+128203745,1866473,3
+Erinalin,1866473,4
+34244241,1866473,4
+CINDYCINDY,1866473,5
+44760392,1866473,4
+wndhaor,1866473,4
+68498461,1866473,4
+72028864,1866473,3
+72256181,1866473,3
+122765987,1866473,5
+selvia,1866473,4
+juech171,1866473,4
+demondeng,1866473,4
+taozi9129,1866473,4
+tkoks,1866473,3
+120700918,1866473,3
+73291837,1866473,4
+73291837,1866473,4
+doratora,1866473,3
+41148862,1866473,4
+66460349,1866473,4
+morning.garden,1866473,5
+53824348,1866473,3
+71900698,1866473,4
+51557657,1866473,5
+ilovejenny,1866473,4
+stefana,1866473,4
+3403075,1866473,4
+josherich,1866473,3
+orsule,1866473,3
+132058883,1866473,4
+mingyuejiang,1866473,4
+46574354,1866473,4
+54415011,1866473,4
+38665535,1866473,4
+3258327,1866473,2
+hedgehog,1866473,3
+102439314,1866473,4
+Killern,1866473,2
+75581591,1866473,4
+7995110,1866473,4
+53457323,1866473,3
+fannuoer,1866473,4
+40093986,1866473,4
+59236369,1866473,4
+sylar_chan,1866473,3
+55833673,1866473,4
+hitomiorange,1866473,4
+34674400,1866473,3
+3887933,1866473,4
+leexiang,1866473,4
+GianfrancoLee,1866473,4
+122578622,1866473,4
+121776182,1866473,3
+83527994,1866473,5
+lecron,1866473,1
+bukeyibuyaoyumi,1866473,5
+bukeyibuyaoyumi,1866473,5
+50329136,1866473,4
+cofield,1866473,5
+53460924,1866473,4
+47801719,1866473,4
+79090756,1866473,4
+73730431,1866473,5
+32320904,1866473,4
+chjaylee,1866473,4
+ViviaChen,1866473,3
+48603851,1866473,4
+ZeRo.0821,1866473,4
+2792766,1866473,4
+kuangk,1866473,4
+48022266,1866473,3
+115708964,1866473,3
+45137235,1866473,4
+42309326,1866473,4
+chenvi5,1866473,4
+93300402,1866473,3
+47537862,1866473,3
+49367011,1866473,3
+82027868,1866473,4
+kiara803,1866473,5
+37944663,1866473,4
+62582467,1866473,4
+78475246,1866473,4
+50460301,1866473,4
+orochimaru94264,1866473,3
+52918154,1866473,4
+Rutty,1866473,3
+yintianyi420,1866473,5
+2801179,1866473,3
+lucifer7th,1866473,4
+xixi-0303,1866473,3
+trav31,1866473,4
+4632833,1866473,4
+laobai.,1866473,3
+tmz1127,1866473,4
+2284784,1866473,5
+greenbeansand,1866473,4
+bookbug,1866473,3
+25372576,1866473,4
+cheeselover,1866473,5
+abin520918,1866473,3
+53789319,1866473,4
+43726684,1866473,3
+mars9,1866473,4
+AngelikaSigrid,1866473,4
+80933545,1866473,4
+2790933,1866473,3
+69549784,1866473,3
+11989579,1866473,3
+101625344,1866473,4
+effy-s,1866473,4
+28178860,1866473,5
+windyzhu3949,1866473,4
+31316457,1866473,4
+39580713,1866473,4
+54910721,1866473,4
+129158063,1866473,4
+124886383,1866473,5
+37410275,1866473,4
+79846050,1866473,4
+83994671,1866473,3
+3501553,1866473,3
+127508395,1866473,4
+55386802,1866473,5
+63209981,1866473,4
+116277755,1866473,4
+73654644,1866473,4
+82872921,1866473,4
+chongmoshiye,1866473,4
+mokop,1866473,4
+landelanle,1866473,3
+123379059,1866473,4
+ningt,1866473,3
+zxjtmac,1866473,3
+72383278,1866473,4
+simple_v,1866473,4
+yfqc24pippo,1866473,3
+memorystream,1866473,3
+wdxc999999,1866473,4
+62639604,1866473,3
+32890058,1866473,5
+JesseZZX,1866473,3
+Mirac1e,1866473,4
+jade1911,1866473,4
+junwuchen,1866473,5
+72521146,1866473,4
+mowenxia,1866473,4
+95621225,1866473,4
+smallqianqian,1866473,3
+raphael0525,1866473,3
+66178639,1866473,4
+FindingKnightly,1866473,4
+60123657,1866473,5
+1648456,1866473,4
+76018725,1866473,4
+madgirl,1866473,4
+48172200,1866473,3
+skywwl,1866473,4
+3331389,1866473,4
+79849225,1866473,4
+plaris,1866473,4
+96290717,1866473,4
+54145451,1866473,4
+51963677,1866473,3
+chanelhong,1866473,4
+cain69,1866473,3
+54811800,1866473,4
+52823077,1866473,4
+42884870,1866473,4
+121073792,1866473,4
+38207955,1866473,4
+121657053,1866473,5
+54475883,1866473,5
+69595749,1866473,3
+42270798,1866473,4
+mamalin,1866473,3
+53023463,1866473,4
+30626996,1866473,4
+Anny1209,1866473,5
+3561748,1866473,5
+73377845,1866473,5
+54896883,1866473,3
+78777412,1866473,3
+61435009,1866473,5
+aidaozuihou,1866473,5
+ml0684727,1866473,4
+SA69,1866473,4
+53666715,1866473,4
+Kev_,1866473,5
+1200829,1866473,4
+39024104,1866473,3
+3030378,1866473,5
+91359652,1866473,4
+46609900,1866473,3
+bloodrate,1866473,4
+70233556,1866473,4
+122119897,1866473,4
+capri19901231,1866473,4
+64081316,1866473,3
+115144480,1866473,4
+77640366,1866473,4
+131033417,1866473,4
+75570117,1866473,5
+47220302,1866473,5
+fuyunyajie,1866473,4
+zhangqiyu_0202,1866473,5
+127944617,1866473,4
+misskanie,1866473,4
+mumcy,1866473,3
+liebejenny,1866473,4
+smilestefanie,1866473,4
+rivering,1866473,4
+akizou,1866473,4
+79368298,1866473,3
+33597419,1866473,3
+62746745,1866473,4
+62746745,1866473,4
+1153237,1866473,3
+47878839,1866473,4
+rococoyu,1866473,3
+102911668,1866473,4
+87937161,1866473,3
+35433628,1866473,4
+Julilili,1866473,4
+bismorgen,1866473,3
+50137334,1866473,4
+4214141,1866473,4
+lisa_ist_was,1866473,3
+55746390,1866473,4
+58419588,1866473,5
+bunnyrabbit,1866473,4
+58457160,1866473,4
+annline0,1866473,4
+single_meow,1866473,5
+newbear,1866473,5
+treememory26,1866473,5
+63892714,1866473,3
+magicxiaobi,1866473,4
+maryim,1866473,3
+yingyujiaoshi,1866473,4
+51213466,1866473,5
+m.edulla,1866473,4
+41570719,1866473,4
+Candiceme,1866473,3
+izzn,1866473,1
+3352510,1866473,4
+43970229,1866473,3
+5218300,1866473,5
+Hyke,1866473,4
+2003211,1866473,3
+74262574,1866473,4
+Isabella_Meow,1866473,5
+jun.jun.,1866473,3
+60854908,1866473,4
+60789468,1866473,5
+ice41322,1866473,3
+37026248,1866473,4
+130552646,1866473,5
+poppy7mbsf,1866473,3
+40100132,1866473,5
+49125983,1866473,3
+47182866,1866473,4
+39565614,1866473,4
+a495433977,1866473,4
+3177611,1866473,5
+44854145,1866473,3
+53460171,1866473,4
+49312393,1866473,5
+2570265,1866473,5
+4561197,1866473,3
+zsq0028347,1866473,4
+Zon_,1866473,5
+120008046,1866473,3
+xl8690,1866473,5
+bingoh2o,1866473,4
+3518592,1866473,4
+3518592,1866473,4
+106407230,1866473,4
+53810483,1866473,5
+xieyongqiang_,1866473,4
+128930943,1866473,5
+3615093,1866473,4
+4388033,1866473,4
+51258589,1866473,4
+74827424,1866473,4
+119608603,1866473,4
+19296065,1866473,5
+104041207,1866473,4
+laofei,1866473,4
+2984695,1866473,3
+jjdessxn,1866473,4
+pingchengweixin,1866473,4
+57421160,1866473,4
+80768370,1866473,4
+antilo,1866473,4
+112757196,1866473,3
+70055114,1866473,4
+58161942,1866473,4
+120376008,1866473,4
+cukie,1866473,4
+jovanni,1866473,3
+57049124,1866473,4
+51841459,1866473,4
+MaSir,1866473,4
+62209386,1866473,3
+rummy0115,1866473,4
+didiaosummer,1866473,3
+2353173,1866473,3
+62676773,1866473,4
+mikihiro,1866473,4
+zhongshanaoli,1866473,4
+Z-soda,1866473,4
+43288736,1866473,4
+nalanxiang,1866473,4
+50247460,1866473,4
+sstss411,1866473,5
+54976290,1866473,5
+61734859,1866473,3
+50089353,1866473,4
+3113748,1866473,4
+27652633,1866473,4
+yuyang1990720,1866473,4
+3515372,1866473,5
+4578112,1866473,5
+91236974,1866473,5
+4609090,1866473,3
+78833399,1866473,2
+hecy,1866473,4
+77105796,1866473,5
+raintingfan,1866473,3
+3794172,1866473,4
+2175454,1866473,4
+79394514,1866473,3
+131361061,1866473,3
+gallimard,1866473,4
+64012873,1866473,3
+EstelleZheng,1866473,4
+nanacancer,1866473,3
+70277802,1866473,3
+1805712,1866473,4
+40155038,1866473,4
+56020938,1866473,3
+55842378,1866473,4
+39108497,1866473,3
+taguan,1866473,3
+sircayden,1866473,4
+20935302,1866473,4
+qdyoo,1866473,5
+53870427,1866473,5
+63988739,1866473,2
+tomiesky,1866473,5
+3884732,1866473,5
+limie,1866473,4
+lovely_love,1866473,3
+setilis,1866473,5
+housefuture,1866473,2
+72004354,1866473,4
+DUOSI,1866473,4
+why199306,1866473,3
+93242497,1866473,3
+46702896,1866473,3
+72122656,1866473,3
+zengzhezhi,1866473,4
+73189680,1866473,4
+51259360,1866473,5
+lsm19930402,1866473,3
+68166983,1866473,3
+2663035,1866473,4
+4284000,1866473,4
+jingj,1866473,3
+hejinsomething,1866473,4
+lihui_tiger,1866473,3
+71157955,1866473,4
+121601332,1866473,3
+olive621,1866473,5
+VieVie,1866473,4
+67040528,1866473,4
+53803562,1866473,4
+55822752,1866473,5
+Rainteedm,1866473,4
+47748422,1866473,4
+116073490,1866473,4
+64898649,1866473,4
+sing57,1866473,4
+57215044,1866473,2
+25972265,1866473,5
+53405870,1866473,3
+jessiejiang,1866473,5
+zy911,1866473,5
+63462794,1866473,3
+31555036,1866473,4
+34245125,1866473,4
+star-b612,1866473,3
+69127854,1866473,5
+111461811,1866473,4
+57967875,1866473,4
+57967875,1866473,4
+just-emma,1866473,3
+52650072,1866473,5
+huhuxiaoxue0219,1866473,4
+49198911,1866473,4
+3671869,1866473,3
+77656352,1866473,3
+yujianwo49,1866473,4
+chanchange,1866473,5
+3480125,1866473,4
+CANCER75,1866473,3
+53265759,1866473,4
+81986503,1866473,3
+MaomaLee000NOGO,1866473,4
+103617417,1866473,3
+70158914,1866473,5
+99296692,1866473,3
+53749033,1866473,2
+52316866,1866473,4
+77317619,1866473,3
+CaesarLUO,1866473,5
+HBHelena,1866473,4
+43871169,1866473,-1
+54989059,1866473,4
+3622707,1866473,4
+68299954,1866473,5
+2844275,1866473,4
+Heresy666,1866473,4
+127066563,1866473,4
+zhz586,1866473,5
+26512693,1866473,5
+2191672,1866473,5
+wayephang,1866473,3
+4750967,1866473,3
+2513938,1866473,2
+3923443,1866473,4
+1806463,1866473,3
+vaay-mei,1866473,4
+134145014,1866473,3
+39168659,1866473,4
+shahuizhang,1866473,3
+49756466,1866473,5
+2392193,1866473,3
+yuami,1866473,3
+48095084,1866473,3
+59956259,1866473,4
+LION8989,1866473,4
+threeaus,1866473,3
+15655185,1866473,4
+weimoxx,1866473,4
+Jaelee0604,1866473,5
+2085469,1866473,3
+24678754,1866473,4
+49305149,1866473,3
+76447430,1866473,3
+72995277,1866473,5
+Lokry666,1866473,3
+50981156,1866473,3
+Fucking_hell,1866473,4
+82685125,1866473,4
+marlborosin,1866473,3
+isolated_,1866473,4
+52477186,1866473,4
+63617557,1866473,5
+79080709,1866473,5
+dana_dana,1866473,4
+46943365,1866473,4
+132640037,1866473,4
+51587083,1866473,3
+38866851,1866473,4
+60352980,1866473,4
+62047214,1866473,4
+54744166,1866473,4
+jojojoyce,1866473,4
+MayGreen,1866473,4
+65442139,1866473,4
+liuyuxing,1866473,3
+46352288,1866473,3
+43326393,1866473,4
+davia1107,1866473,5
+78616610,1866473,4
+49520128,1866473,4
+117808839,1866473,4
+2164915,1866473,3
+33847605,1866473,5
+66366500,1866473,4
+134789384,1866473,4
+3420387,1866473,5
+46402509,1866473,4
+damon3liz,1866473,3
+65111838,1866473,4
+45511266,1866473,5
+bunny636,1866473,4
+79161906,1866473,5
+Pixie_19,1866473,4
+75651301,1866473,4
+1745489,1866473,5
+1427744,1866473,4
+moth,1866473,4
+keane-boz,1866473,3
+2868053,1866473,3
+52409641,1866473,3
+64564032,1866473,4
+a_zi,1866473,3
+64334718,1866473,3
+ILSYY,1866473,5
+30441986,1866473,4
+61540867,1866473,3
+linxing123,1866473,3
+23853027,1866473,4
+90729667,1866473,3
+sophiaforfree,1866473,5
+40966373,1866473,4
+130227721,1866473,5
+58927688,1866473,4
+32475683,1866473,3
+60913555,1866473,3
+mukucelia,1866473,4
+aprisliver,1866473,3
+44349387,1866473,4
+60712166,1866473,4
+57036739,1866473,5
+13728402,1866473,5
+2672461,1866473,4
+32360693,1866473,4
+shadyjia,1866473,5
+jadezely,1866473,4
+Winnie_Liu,1866473,5
+52522813,1866473,3
+miaotuanzi,1866473,4
+49585596,1866473,4
+65364463,1866473,3
+zyv1224,1866473,4
+48279164,1866473,5
+59225673,1866473,4
+34295916,1866473,4
+50614819,1866473,4
+49705302,1866473,4
+103222605,1866473,-1
+28953793,1866473,4
+47586585,1866473,3
+48396212,1866473,4
+45220416,1866473,5
+4771796,1866473,4
+55532506,1866473,3
+josiekiu,1866473,5
+face0,1866473,3
+132039953,1866473,4
+30909217,1866473,4
+sugarmao,1866473,4
+38514261,1866473,4
+44498578,1866473,4
+59767232,1866473,4
+37120516,1866473,5
+thanksdanny,1866473,4
+yyq811,1866473,4
+51671663,1866473,5
+57355355,1866473,4
+4800840,1866473,4
+76851962,1866473,4
+Sirenfairy,1866473,4
+131292596,1866473,5
+115714696,1866473,5
+1379137,1866473,3
+132835611,1866473,4
+54474146,1866473,4
+59566200,1866473,3
+xyy_1214,1866473,5
+bearble,1866473,4
+im1dao,1866473,5
+4114315,1866473,3
+andrewhxism,1866473,3
+46263513,1866473,4
+Lommy,1866473,2
+2212675,1866473,4
+3438313,1866473,4
+sevendbly,1866473,3
+128507849,1866473,3
+69094340,1866473,3
+sirluoji,1866473,5
+sirluoji,1866473,5
+122318855,1866473,5
+62156484,1866473,5
+71755062,1866473,3
+78854291,1866473,4
+88916457,1866473,4
+cloudyblue,1866473,4
+yamaaibani,1866473,4
+42859187,1866473,4
+clear_wang,1866473,3
+lucia_star,1866473,5
+84247002,1866473,4
+ALBERTYI,1866473,4
+59943822,1866473,3
+95443822,1866473,4
+jinzhawithyou,1866473,3
+mandy-woo,1866473,4
+133995843,1866473,5
+45800687,1866473,2
+57609060,1866473,-1
+JanekissQSN,1866473,5
+Zeinaz,1866473,4
+wood0913,1866473,4
+qurtime,1866473,2
+yanism,1866473,4
+3485346,1866473,4
+126283550,1866473,3
+39628553,1866473,5
+stridep,1866473,4
+ragnarokstack,1866473,5
+mlac,1866473,3
+126783800,1866473,4
+101033924,1866473,3
+tutusky,1866473,4
+122465142,1866473,4
+52801321,1866473,3
+44665319,1866473,5
+61321704,1866473,4
+53615881,1866473,5
+nigelzeng,1866473,4
+52685250,1866473,3
+60385357,1866473,4
+43236941,1866473,2
+46533854,1866473,4
+kyth,1866473,3
+dkjune,1866473,3
+16347879,1866473,3
+fangxiaotang,1866473,4
+trubasa10,1866473,4
+dingyin301,1866473,4
+sunnyhouseman,1866473,4
+58478276,1866473,4
+100042378,1866473,4
+67321190,1866473,3
+pinxue,1866473,3
+65935109,1866473,3
+47353624,1866473,5
+windowsosok,1866473,5
+53467813,1866473,4
+50665690,1866473,3
+zdoudou,1866473,4
+57847628,1866473,-1
+61162296,1866473,-1
+84524866,1866473,3
+ThomasMore,1866473,4
+1131859,1866473,-1
+10323126,1866473,4
+esme123,1866473,3
+130728708,1866473,5
+36681127,1866473,3
+48972272,1866473,4
+onlyqinping,1866473,3
+70467086,1866473,4
+Single_Cat,1866473,2
+44813973,1866473,5
+48931320,1866473,4
+59834160,1866473,3
+flowertide,1866473,2
+128422006,1866473,3
+123851520,1866473,4
+133475672,1866473,4
+3378805,1866473,2
+1619451,1866473,5
+5592925,1866473,4
+58001502,1866473,4
+yangbei0131,1866473,2
+133815233,1866473,4
+happy_function,1866473,4
+48498034,1866473,5
+122099416,1866473,4
+kiwiaide,1866473,4
+52395639,1866473,4
+76021519,1866473,-1
+luanjunyi,1866473,4
+41065595,1866473,5
+6681586,1866473,4
+46714901,1866473,4
+82198158,1866473,3
+56249366,1866473,3
+62048623,1866473,3
+133794602,1866473,4
+121355707,1866473,4
+54350307,1866473,1
+Hel_xiaomu,1866473,3
+63280998,1866473,-1
+64190669,1866473,2
+2982439,1866473,-1
+kevinrise,1866473,5
+irissui,1866473,4
+4897888,1866473,4
+2718136,1866473,3
+54993624,1866473,4
+63120961,1866473,4
+63236633,1866473,3
+59427727,1866473,3
+50328248,1866473,4
+zzsw1991,1866473,4
+51735678,1866473,3
+3530603,1866473,4
+4627678,1866473,5
+121612994,1866473,3
+89081401,1866473,5
+aoaoaoaoao,1866473,4
+commemoration,1866473,4
+63142694,1866473,3
+133887142,1866473,4
+132563952,1866473,5
+yanwo,1866473,4
+lyshan,1866473,4
+39513476,1866473,5
+gigalo,1866473,3
+zephyrliu,1866473,3
+136593943,1866473,4
+heyjjzlyoops,1866473,4
+63405876,1866473,4
+63095049,1866473,4
+67516676,1866473,5
+54385496,1866473,4
+netbeginner,1866473,5
+135680157,1866473,5
+lulupink,1866473,4
+35994067,1866473,4
+51404354,1866473,2
+136593987,1866473,4
+48804651,1866473,4
+3864518,1866473,3
+74770959,1866473,4
+2122075,1866473,3
+62140326,1866473,4
+57314609,1866473,5
+52931532,1866473,4
+53060922,1866473,3
+80398365,1866473,4
+dadafanhe,1866473,4
+59584497,1866473,5
+adejavu,1866473,4
+Wsiku,1866473,-1
+52390911,1866473,4
+51309478,1866473,2
+sakura0130,1866473,4
+84589131,1866473,4
+3513754,1866473,5
+RATATKAIQI,1866473,3
+54057235,1866473,4
+59288696,1866473,4
+66707971,1866473,3
+47503404,1866473,4
+alisonend,1866473,4
+48959194,1866473,5
+68184951,1866473,4
+131337124,1866473,5
+sl1219dyj66,1866473,4
+51168066,1866473,5
+kuangren79,1866473,3
+123873434,1866473,4
+97114018,1866473,4
+boool,1866473,3
+joaquina,1866473,3
+33149603,1866473,4
+2181749,1866473,3
+firecome7,1866473,4
+wakahoo,1866473,4
+94782987,1866473,3
+40024490,1866473,4
+windwingc,1866473,4
+lucyhuang21,1866473,3
+49922437,1866473,4
+120735055,1866473,3
+ouyangjie123,1866473,4
+37244080,1866473,5
+71177487,1866473,4
+44197111,1866473,4
+84710118,1866473,3
+4159690,1866473,3
+36502417,1866473,5
+96080324,1866473,2
+87237465,1866473,3
+vvish,1866473,4
+PranChen,1866473,5
+122116691,1866473,4
+renjiananhuo,1866473,3
+5012885,1866473,4
+lc1002,1866473,4
+88539374,1866473,4
+133900665,1866473,4
+53304881,1866473,4
+94414130,1866473,4
+55325883,1866473,4
+39736420,1866473,3
+46138752,1866473,3
+suzon_deedee,1866473,3
+zech,1866473,4
+weirdoToC,1866473,4
+JEWELzxx,1866473,2
+131007195,1866473,5
+ritasun,1866473,3
+36834058,1866473,-1
+maryoasis,1866473,3
+1499246,1866473,4
+43920577,1866473,5
+lostcindy,1866473,4
+36238876,1866473,4
+WitchLoLo,1866473,5
+107559213,1866473,4
+130692853,1866473,5
+60630554,1866473,5
+34245923,1866473,4
+64794289,1866473,4
+65086608,1866473,4
+phpqzq,1866473,3
+rianna,1866473,4
+52140378,1866473,4
+simonly,1866473,4
+51888216,1866473,4
+57440805,1866473,4
+miss0you,1866473,3
+46714118,1866473,4
+60385477,1866473,3
+lyingcream,1866473,4
+ananne,1866473,4
+48195937,1866473,4
+butuisedelan,1866473,3
+50493709,1866473,4
+53222131,1866473,4
+82498439,1866473,4
+lightblueblueli,1866473,4
+Keemen,1866473,3
+48658567,1866473,4
+37495463,1866473,3
+yyc1990,1866473,3
+tobewith0216,1866473,4
+32314974,1866473,4
+yoursnicky,1866473,4
+dengwf91,1866473,4
+49902324,1866473,4
+lightionight,1866473,4
+42150092,1866473,5
+78634802,1866473,3
+45849213,1866473,4
+4691374,1866473,4
+2126779,1866473,3
+134562390,1866473,4
+13857069,1866473,3
+49751665,1866473,5
+57968508,1866473,4
+64008968,1866473,5
+mmycshng,1866473,3
+82897167,1866473,1
+43042569,1866473,4
+50405161,1866473,3
+57286187,1866473,2
+cecilelover,1866473,4
+35474492,1866473,4
+57730258,1866473,5
+89723194,1866473,2
+35283831,1866473,3
+45819377,1866473,4
+sofahuang,1866473,3
+koiwai0908,1866473,4
+65896805,1866473,3
+121241537,1866473,5
+tetcato,1866473,4
+45789849,1866473,4
+69320768,1866473,4
+lvy823823,1866473,3
+rearia,1866473,4
+52627644,1866473,5
+ezhenwuknowk,1866473,3
+wangyuezuiai,1866473,4
+72365393,1866473,4
+73790083,1866473,2
+129759965,1866473,4
+alexander1224,1866473,4
+71194323,1866473,5
+mr_han1991,1866473,4
+19375858,1866473,3
+56394106,1866473,3
+4325552,1866473,4
+85239246,1866473,4
+67629272,1866473,4
+54909533,1866473,4
+16670816,1866473,5
+quills,1866473,2
+dreamsun,1866473,4
+69569015,1866473,5
+38365917,1866473,5
+29976264,1866473,4
+1503790,1866473,4
+2275556,1866473,3
+iwbar,1866473,4
+77631133,1866473,4
+50075764,1866473,4
+amor27,1866473,4
+javy,1866473,5
+76453097,1866473,3
+babyA,1866473,4
+saemahr,1866473,2
+72337142,1866473,3
+50236723,1866473,4
+69646287,1866473,4
+44485632,1866473,4
+134318408,1866473,4
+xjm1015,1866473,4
+xiaojiaheng,1866473,5
+57193722,1866473,4
+octodon,1866473,5
+chenyaya,1866473,5
+46692711,1866473,3
+82655767,1866473,4
+135531197,1866473,4
+67370965,1866473,4
+phoenix722,1866473,3
+48503456,1866473,4
+1570580,1866473,4
+61998632,1866473,3
+cherrybombbb,1866473,3
+71516012,1866473,5
+78406452,1866473,5
+yanhaolee,1866473,3
+godsun,1866473,4
+haruka87,1866473,4
+58137202,1866473,3
+hellbuli,1866473,4
+SUNEEMA,1866473,4
+58786397,1866473,4
+61797911,1866473,3
+54479974,1866473,4
+35475264,1866473,3
+Hey_825,1866473,4
+Dooooris,1866473,5
+96658819,1866473,4
+BLprince,1866473,4
+shuikanshuizhid,1866473,4
+HY827889104,1866473,4
+34032008,1866473,5
+smiletolife,1866473,3
+51920642,1866473,4
+121481681,1866473,3
+xuzhezhen,1866473,4
+uu2,1866473,4
+Blair-L,1866473,2
+ajiuyo,1866473,5
+65560821,1866473,3
+58596058,1866473,4
+67454716,1866473,4
+rocker0313,1866473,4
+Yunsta,1866473,4
+mjpx0510,1866473,5
+64243172,1866473,4
+53715739,1866473,4
+97757646,1866473,3
+75959684,1866473,4
+Suumer007,1866473,5
+78309545,1866473,4
+cbw711,1866473,-1
+55628165,1866473,3
+82019070,1866473,4
+41031427,1866473,3
+15497319,1866473,3
+40424921,1866473,2
+yaoyaolu,1866473,3
+50073106,1866473,4
+23235822,1866473,4
+72454425,1866473,4
+Tournesolcc,1866473,3
+flied,1866473,3
+jiugedian,1866473,-1
+60283425,1866473,3
+vera0902,1866473,4
+119846634,1866473,1
+50835991,1866473,4
+yrs,1866473,4
+55874640,1866473,4
+44206855,1866473,4
+94353228,1866473,5
+51836771,1866473,4
+54706735,1866473,4
+4491930,1866473,5
+40762850,1866473,4
+dreamermiss,1866473,4
+61754907,1866473,-1
+46564815,1866473,4
+38808424,1866473,4
+kyo85,1866473,3
+50514243,1866473,3
+134981649,1866473,4
+yuanlovenic,1866473,3
+59602716,1866473,4
+134140438,1866473,5
+hellojeff,1866473,3
+fogg,1866473,3
+69692421,1866473,4
+3269790,1866473,4
+37102807,1866473,5
+82691525,1866473,5
+63231885,1866473,5
+52893055,1866473,3
+50276433,1866473,4
+Roseee,1866473,4
+MygawaTalk,1866473,4
+wubaiwu,1866473,2
+62575629,1866473,3
+s_plus,1866473,4
+83493569,1866473,4
+39518332,1866473,4
+65562790,1866473,4
+3140556,1866473,5
+43616371,1866473,3
+55276073,1866473,5
+chaiyanchao,1866473,5
+41976054,1866473,3
+4586261,1866473,5
+38024916,1866473,4
+67711689,1866473,3
+48515290,1866473,4
+132326708,1866473,5
+51221334,1866473,-1
+40258007,1866473,5
+124094945,1866473,4
+65098968,1866473,4
+muyuchao,1866473,4
+122946337,1866473,3
+70238336,1866473,4
+yeemeans,1866473,3
+67749466,1866473,4
+2869651,1866473,-1
+122231719,1866473,3
+61728346,1866473,4
+Davidcyclone,1866473,-1
+129743539,1866473,5
+2822846,1866473,4
+122452558,1866473,5
+28633682,1866473,3
+102463790,1866473,4
+53195089,1866473,4
+1475172,1866473,4
+60988503,1866473,5
+missinlove,1866473,3
+121998536,1866473,5
+chaossss,1866473,3
+57756886,1866473,5
+8863836,1866473,4
+70195839,1866473,3
+62237283,1866473,4
+2528575,1866473,5
+70775632,1866473,5
+1452888,1866473,4
+55978838,1866473,5
+134384553,1866473,4
+louie628,1866473,5
+62266291,1866473,4
+49617240,1866473,3
+tao1449771080,1866473,4
+2847632,1866473,4
+96350117,1866473,4
+82849389,1866473,5
+16038998,1866473,4
+21331611,1866473,-1
+85418269,1866473,5
+23353726,1866473,4
+52956842,1866473,3
+49680774,1866473,3
+55963528,1866473,5
+kid29,1866473,3
+41604678,1866473,4
+echo0402,1866473,3
+rebeccasen,1866473,4
+keyiyi,1866473,4
+aoaoaoaoaoaoao,1866473,3
+61933771,1866473,5
+69161245,1866473,4
+bluestereo,1866473,4
+sp0328,1866473,4
+61186332,1866473,4
+sylvielanlan,1866473,4
+51274391,1866473,3
+73156181,1866473,5
+126816085,1866473,4
+mian1987,1866473,5
+dmcrgiye,1866473,5
+YuNdAoLa,1866473,4
+1751335,1866473,4
+SeanShepherd,1866473,4
+121746313,1866473,4
+122529370,1866473,4
+movieview,1866473,3
+94358582,1866473,3
+beloved-seven,1866473,3
+47347004,1866473,4
+hoomjac,1866473,4
+40172529,1866473,5
+57069305,1866473,4
+snakefly,1866473,4
+2213454,1866473,3
+121340498,1866473,4
+qfkx,1866473,4
+absdee,1866473,5
+55629625,1866473,3
+iamliving,1866473,4
+wish21,1866473,5
+arielwjx,1866473,4
+MrJlol,1866473,4
+46665128,1866473,4
+jiumuccc,1866473,3
+47168945,1866473,5
+4862060,1866473,4
+Sm_Qop,1866473,4
+70818335,1866473,4
+yihaifei,1866473,4
+36630260,1866473,5
+45511772,1866473,4
+cookiesun0420,1866473,4
+79899831,1866473,4
+4641163,1866473,4
+2051711,1866473,4
+tvxqsheep,1866473,4
+cynb,1866473,4
+jingshuixian,1866473,3
+70517543,1866473,3
+2833136,1866473,3
+alexf,1866473,3
+57945362,1866473,5
+131536000,1866473,3
+46210737,1866473,5
+danaoke,1866473,4
+huanyoushijiema,1866473,4
+57915393,1866473,4
+60694225,1866473,3
+Thing2,1866473,-1
+73952321,1866473,3
+4057670,1866473,4
+8592550,1866473,3
+58520151,1866473,4
+jukiloveu,1866473,4
+28105351,1866473,3
+1805745,1866473,3
+campbellding,1866473,5
+54481663,1866473,4
+ryo-,1866473,4
+94514917,1866473,4
+102621793,1866473,5
+103196865,1866473,3
+ricbabe,1866473,3
+50942885,1866473,5
+chinhao,1866473,4
+heymyfish,1866473,5
+superdupp,1866473,-1
+50434812,1866473,4
+48109399,1866473,4
+60016722,1866473,4
+wentaoxie,1866473,4
+weiminglu,1866473,5
+58723728,1866473,5
+49068854,1866473,3
+yvoria,1866473,3
+59516917,1866473,5
+3344824,1866473,4
+54277282,1866473,5
+chrisgao.buaa,1866473,3
+nothing7139,1866473,4
+79294434,1866473,4
+73534330,1866473,4
+dearestjoe,1866473,3
+chav.H,1866473,3
+134515949,1866473,5
+2265138,1866473,5
+3173862,1866473,3
+57213056,1866473,4
+65874671,1866473,4
+KathyChao,1866473,4
+bter,1866473,4
+93744576,1866473,2
+dou4y,1866473,4
+zzsycfx57,1866473,4
+extremisme,1866473,5
+sadnessken,1866473,4
+whitraven,1866473,5
+3922509,1866473,5
+127809639,1866473,5
+128160386,1866473,5
+128160386,1866473,5
+54500977,1866473,4
+4409616,1866473,3
+34388514,1866473,4
+60095133,1866473,5
+45300768,1866473,3
+47118380,1866473,3
+zuihaodewo,1866473,4
+61403829,1866473,4
+91995423,1866473,3
+109932712,1866473,4
+AndersonNeo,1866473,4
+48604788,1866473,3
+smiing,1866473,5
+76556131,1866473,4
+freedom-seeker,1866473,4
+daystar22,1866473,4
+32693161,1866473,4
+66336980,1866473,5
+39520405,1866473,4
+47929973,1866473,4
+121679794,1866473,4
+80699404,1866473,5
+Sunray0807,1866473,4
+kongguyouju,1866473,3
+lain2am,1866473,3
+karen-wh.y,1866473,4
+84852383,1866473,4
+104877425,1866473,4
+fatfatdog,1866473,4
+dreamofduoduo,1866473,3
+54021561,1866473,3
+neisha,1866473,3
+16814663,1866473,4
+clare3068,1866473,5
+4369602,1866473,3
+alangalang,1866473,5
+btcatsun,1866473,3
+94254038,1866473,4
+50254988,1866473,4
+50655031,1866473,4
+lizardxy,1866473,4
+36231045,1866473,3
+57471580,1866473,5
+48311981,1866473,4
+24451966,1866473,4
+boonup,1866473,3
+42202174,1866473,2
+31778691,1866473,3
+115602293,1866473,5
+48239592,1866473,4
+46366387,1866473,3
+33512281,1866473,3
+99329704,1866473,4
+132676591,1866473,4
+liluoliluo,1866473,3
+41080653,1866473,3
+Jewelyxy,1866473,4
+4682542,1866473,4
+RRspace,1866473,3
+53867160,1866473,4
+diamantejae,1866473,4
+53741508,1866473,4
+117836887,1866473,3
+98344279,1866473,5
+jingying11,1866473,5
+Plaka,1866473,3
+rainzee,1866473,4
+33195651,1866473,3
+3524450,1866473,4
+belovedeyes,1866473,3
+65212468,1866473,4
+46598833,1866473,3
+shutupfreud,1866473,4
+102858753,1866473,5
+51629310,1866473,-1
+dingxiang_4537,1866473,4
+catsSchrodinge,1866473,4
+hope62442,1866473,5
+gb333,1866473,4
+hyapple,1866473,4
+46722209,1866473,3
+lyy819,1866473,4
+1317876,1866473,4
+3711082,1866473,4
+zoeyhe,1866473,4
+54713678,1866473,4
+yangqihang,1866473,5
+74932520,1866473,3
+66039352,1866473,5
+49587059,1866473,3
+73787373,1866473,-1
+fyl00,1866473,3
+17004593,1866473,4
+xiao888,1866473,2
+3687786,1866473,4
+63383390,1866473,3
+orange1027,1866473,5
+gusuxiaoqiao,1866473,5
+48862073,1866473,4
+57120276,1866473,4
+68029503,1866473,5
+42741125,1866473,4
+2443823,1866473,4
+41257004,1866473,5
+93240060,1866473,5
+57371466,1866473,4
+Corleone89,1866473,3
+bluishocean,1866473,4
+45517061,1866473,4
+62874787,1866473,3
+48493897,1866473,4
+63516554,1866473,4
+chumin201111,1866473,5
+64118312,1866473,4
+35763103,1866473,5
+61304869,1866473,3
+134141941,1866473,4
+66110301,1866473,5
+Joelia,1866473,4
+121558315,1866473,4
+53896477,1866473,4
+83617900,1866473,5
+moi_7ong,1866473,4
+69398497,1866473,5
+chayatou,1866473,4
+45540102,1866473,4
+121434454,1866473,2
+73008479,1866473,5
+70924398,1866473,3
+64664895,1866473,3
+zhaimozi,1866473,4
+peachgardn,1866473,3
+1958405,1866473,3
+yanqingwei,1866473,3
+71813073,1866473,5
+51269285,1866473,4
+51320114,1866473,3
+ading4171,1866473,3
+51144978,1866473,2
+53833067,1866473,4
+62903092,1866473,4
+132222782,1866473,3
+2058011,1866473,4
+zoever,1866473,4
+3487705,1866473,3
+zeoh,1866473,3
+gruel_,1866473,5
+Skybehindme,1866473,3
+8523675,1866473,4
+wusiqi,1866473,4
+132341860,1866473,4
+Ana1221,1866473,4
+53307722,1866473,4
+icyiwing,1866473,4
+JohnnyZac,1866473,4
+sherry_mj,1866473,5
+4689314,1866473,4
+inanai,1866473,3
+shaku_hanako,1866473,4
+2667767,1866473,4
+zxmushroom,1866473,4
+89024356,1866473,4
+47403212,1866473,4
+LillianLeelll,1866473,4
+61584024,1866473,5
+120700818,1866473,3
+45322912,1866473,3
+sherry0425,1866473,4
+57608084,1866473,4
+51890472,1866473,4
+15182824,1866473,4
+129550207,1866473,4
+13846330,1866473,5
+73254471,1866473,3
+10670904,1866473,4
+eightsbar,1866473,4
+62917556,1866473,5
+50944576,1866473,4
+130097686,1866473,4
+2799911,1866473,5
+gyivv,1866473,4
+133185272,1866473,4
+47227699,1866473,5
+Dydia,1866473,2
+58536535,1866473,4
+63902835,1866473,5
+levin815,1866473,4
+3580466,1866473,4
+49513360,1866473,5
+4352757,1866473,5
+41086330,1866473,5
+4141993,1866473,4
+yilaguanbuku,1866473,5
+54532754,1866473,5
+shanguicheng,1866473,5
+71426897,1866473,5
+46747029,1866473,3
+97770335,1866473,4
+flyinhigh,1866473,4
+94036052,1866473,4
+eleventhsnow,1866473,3
+36359811,1866473,4
+48795907,1866473,4
+KosiChina,1866473,4
+48014611,1866473,4
+42692898,1866473,3
+27219467,1866473,-1
+41127479,1866473,3
+75668833,1866473,4
+43870659,1866473,5
+sunmiaoran,1866473,4
+50546022,1866473,4
+emilyvc,1866473,5
+120199628,1866473,5
+60746988,1866473,4
+3606264,1866473,5
+4623210,1866473,4
+54605196,1866473,4
+34707868,1866473,4
+24974359,1866473,4
+Free-cat,1866473,5
+weimengxiao,1866473,4
+85423911,1866473,5
+130252492,1866473,5
+nofish,1866473,4
+byebyehaku,1866473,4
+39948230,1866473,2
+36964868,1866473,2
+92427949,1866473,5
+69068557,1866473,4
+54754963,1866473,3
+Fesvia,1866473,4
+49721814,1866473,3
+84739128,1866473,5
+55550016,1866473,5
+39360207,1866473,4
+121518881,1866473,4
+68970958,1866473,5
+ze_lan,1866473,4
+AlbertaPanda,1866473,3
+M.iya,1866473,2
+selket,1866473,4
+14247291,1866473,3
+122139957,1866473,4
+124391754,1866473,4
+akhexiaobai,1866473,4
+49771238,1866473,5
+liujiazhong,1866473,4
+2906253,1866473,5
+greenbe,1866473,5
+83192271,1866473,4
+dairytea,1866473,4
+followyourwind,1866473,3
+13038456,1866473,4
+cuteeestar,1866473,5
+45507123,1866473,4
+57860593,1866473,5
+121475864,1866473,4
+80127380,1866473,4
+60161009,1866473,5
+70081048,1866473,4
+34849239,1866473,5
+51174120,1866473,5
+70555286,1866473,4
+125477201,1866473,5
+44140767,1866473,4
+40487079,1866473,4
+46317949,1866473,4
+118883751,1866473,5
+34751637,1866473,4
+lukemdk,1866473,3
+siggiruru,1866473,3
+curlyfox,1866473,3
+36784029,1866473,4
+60166330,1866473,4
+131849470,1866473,4
+41482074,1866473,5
+72261882,1866473,5
+80250339,1866473,4
+wosyizhiqq,1866473,3
+leeeeeeeew,1866473,4
+62237138,1866473,4
+hhred,1866473,4
+100452734,1866473,5
+Awewonderland,1866473,5
+110060551,1866473,4
+2853926,1866473,4
+48823348,1866473,5
+jokker,1866473,5
+63809388,1866473,5
+chyidan,1866473,4
+tangerine0113,1866473,4
+fiendpochi,1866473,3
+zhishouyuan,1866473,4
+92245110,1866473,5
+duoluowenren,1866473,4
+ling0816,1866473,4
+62467035,1866473,5
+chenahu,1866473,5
+136097493,1866473,5
+73761450,1866473,4
+52473311,1866473,5
+ashley17,1866473,4
+4570225,1866473,3
+65480172,1866473,4
+83139491,1866473,4
+54126303,1866473,5
+4755039,1866473,4
+52652829,1866473,4
+134813165,1866473,4
+41629007,1866473,4
+88605702,1866473,4
+51075041,1866473,5
+103055033,1866473,5
+1406370,1866473,3
+49970303,1866473,5
+91643745,1866473,5
+58866731,1866473,4
+45549330,1866473,2
+55626398,1866473,4
+84200621,1866473,4
+121353064,1866473,4
+78585270,1866473,5
+dusk.xiyang,1866473,4
+uglyaa,1866473,3
+fangwenjiao,1866473,3
+zxrsygcjdtc,1866473,5
+75301762,1866473,5
+2508877,1866473,3
+133551897,1866473,4
+Crystal_Fong,1866473,4
+yueyarom,1866473,5
+136555362,1866473,5
+99080642,1866473,5
+41307413,1866473,3
+46761795,1866473,5
+120545083,1866473,4
+37889365,1866473,4
+74015810,1866473,4
+Erinnerung,1866473,5
+61233140,1866473,5
+8337663,1866473,4
+cgaga,1866473,3
+42775906,1866473,3
+97299138,1866473,3
+3843671,1866473,4
+45385294,1866473,4
+76076225,1866473,3
+54762015,1866473,4
+63643182,1866473,4
+103028552,1866473,4
+bearblindman,1866473,4
+68882211,1866473,5
+foxvi,1866473,2
+3353584,1866473,4
+Hayley_Tsu,1866473,-1
+suntina,1866473,4
+58675512,1866473,4
+Giraffe830,1866473,4
+65118050,1866473,4
+3633419,1866473,3
+15044978,1866473,3
+34220694,1866473,4
+cristiana,1866473,4
+131606948,1866473,4
+51477454,1866473,4
+69361608,1866473,4
+40369337,1866473,4
+120268630,1866473,4
+49589057,1866473,4
+52763006,1866473,5
+121390872,1866473,3
+58564617,1866473,2
+zisic,1866473,4
+ke-ke,1866473,4
+saintdump,1866473,3
+minglemingle,1866473,5
+diablov,1866473,4
+jeremy25,1866473,5
+7971587,1866473,4
+carmen8212,1866473,4
+51331852,1866473,3
+32752627,1866473,5
+66636246,1866473,4
+akumaero,1866473,-1
+IchBinHerrMAO,1866473,3
+momogui,1866473,4
+xiahjay,1866473,4
+xincheer,1866473,3
+82573994,1866473,3
+tddsy,1866473,4
+132082727,1866473,5
+87947108,1866473,5
+ssmario,1866473,3
+102605068,1866473,5
+65325237,1866473,4
+betterthanrenee,1866473,2
+liuzisen,1866473,3
+7076521,1866473,4
+52926147,1866473,5
+78635378,1866473,4
+53765771,1866473,4
+1377546,1866473,4
+92566934,1866473,4
+128453737,1866473,4
+76815966,1866473,5
+ivvvvvvvvy,1866473,4
+rainingjuly,1866473,3
+95395894,1866473,4
+134498967,1866473,4
+68640061,1866473,4
+60042358,1866473,5
+65721837,1866473,4
+zyzy,1866473,4
+ElyseLee,1866473,5
+61419060,1866473,4
+BMY378670541,1866473,4
+Fadeagony,1866473,3
+mustbe007,1866473,4
+58485268,1866473,4
+106536998,1866473,4
+68481345,1866473,4
+ZouzheFoudouzhe,1866473,3
+hamletvsRomeo,1866473,3
+40718617,1866473,3
+viola-x,1866473,4
+hephan,1866473,-1
+ilovekyoko,1866473,3
+54217571,1866473,3
+chuck0jessie,1866473,3
+59257575,1866473,2
+45898037,1866473,3
+silencehuang,1866473,4
+45312368,1866473,3
+12528508,1866473,4
+63091718,1866473,4
+iammagic,1866473,4
+20466373,1866473,3
+18746695,1866473,4
+xunuo828,1866473,4
+49503761,1866473,4
+63885118,1866473,2
+65162419,1866473,4
+133715428,1866473,4
+46103242,1866473,4
+1864180,1866473,3
+100420531,1866473,4
+97477466,1866473,5
+48748738,1866473,5
+1346719,1866473,3
+loveday1023,1866473,5
+yovng,1866473,4
+49713409,1866473,2
+54666689,1866473,5
+leeva,1866473,4
+napleo,1866473,4
+38770627,1866473,5
+45383601,1866473,4
+52256109,1866473,3
+nanaei1314,1866473,4
+126202371,1866473,5
+laceless,1866473,5
+52472393,1866473,5
+Eric-Andy,1866473,4
+3924801,1866473,4
+47708904,1866473,4
+48329083,1866473,2
+60624598,1866473,3
+dingxuefeng0918,1866473,3
+winnielancy,1866473,5
+41502441,1866473,5
+4686407,1866473,3
+45981995,1866473,4
+84374966,1866473,4
+48601475,1866473,4
+63110579,1866473,5
+92341154,1866473,3
+46455071,1866473,3
+72083821,1866473,4
+59853438,1866473,3
+59827847,1866473,5
+133867857,1866473,4
+67804762,1866473,5
+girlfriend1213,1866473,5
+75567187,1866473,4
+washingstar,1866473,3
+2464459,1866473,4
+108175205,1866473,5
+46308834,1866473,3
+84001065,1866473,5
+62399137,1866473,5
+63319802,1866473,3
+65675536,1866473,5
+edo-biscuit,1866473,-1
+kissorli,1866473,4
+61955471,1866473,4
+qingfengmubai,1866473,4
+bbbosh,1866473,-1
+YDJH,1866473,4
+imoviekobe,1866473,3
+61894548,1866473,4
+84203379,1866473,5
+Cancer_x,1866473,4
+tracytao,1866473,4
+57224796,1866473,5
+108821133,1866473,4
+3497198,1866473,4
+34859400,1866473,4
+122905474,1866473,5
+swanman17,1866473,3
+91157157,1866473,5
+73032214,1866473,3
+fnks,1866473,4
+fdshanqun,1866473,4
+2383388,1866473,3
+3170874,1866473,4
+132126062,1866473,4
+urania1102,1866473,4
+2404315,1866473,4
+49435286,1866473,5
+53743649,1866473,4
+mirccccco,1866473,5
+show.huang,1866473,4
+3739080,1866473,5
+82814595,1866473,3
+sidneylumet,1866473,3
+dearsl,1866473,5
+taikonaut,1866473,3
+33564270,1866473,3
+langyalan,1866473,5
+92956805,1866473,4
+52207360,1866473,4
+60071743,1866473,3
+yvonneliu,1866473,3
+58768473,1866473,3
+Zzhangmxm,1866473,4
+44203780,1866473,3
+qino,1866473,4
+46338692,1866473,4
+46375249,1866473,4
+yumuu,1866473,4
+JimmyLien,1866473,4
+klot,1866473,3
+41706695,1866473,5
+44491264,1866473,3
+64379876,1866473,3
+snowpears,1866473,5
+57297847,1866473,3
+12573860,1866473,4
+52673992,1866473,5
+94988988,1866473,4
+129274650,1866473,2
+53484366,1866473,2
+103237043,1866473,5
+58854842,1866473,4
+44741698,1866473,2
+35414122,1866473,4
+82094261,1866473,5
+49020270,1866473,5
+54233594,1866473,4
+askthedust,1866473,3
+singing15,1866473,4
+115751800,1866473,5
+65718942,1866473,5
+Stanleyhai,1866473,3
+40659159,1866473,4
+rayll,1866473,4
+50256249,1866473,4
+79092669,1866473,3
+85282042,1866473,4
+81346988,1866473,5
+50086182,1866473,3
+65640517,1866473,4
+64869515,1866473,3
+KingChoi,1866473,1
+103995448,1866473,3
+xy-927,1866473,4
+53930515,1866473,5
+poochai,1866473,4
+93920997,1866473,4
+133468076,1866473,5
+102599405,1866473,4
+adrianna,1866473,3
+68872792,1866473,4
+49875019,1866473,5
+68082323,1866473,4
+58708135,1866473,-1
+problove,1866473,4
+youzidao,1866473,4
+131626464,1866473,4
+87455874,1866473,5
+58178362,1866473,3
+2189866,1866473,4
+42176486,1866473,3
+91779176,1866473,4
+72485071,1866473,4
+91108237,1866473,5
+2910534,1866473,5
+1911940,1866473,4
+zhenimei,1866473,3
+ft5239328,1866473,4
+130129200,1866473,4
+56670282,1866473,4
+4204744,1866473,3
+1097543,1866473,5
+43536991,1866473,5
+tieliuwudi,1866473,5
+107554806,1866473,4
+68100167,1866473,4
+65562624,1866473,4
+103297087,1866473,4
+xiaofenzi,1866473,4
+47680901,1866473,4
+62938015,1866473,4
+73690570,1866473,3
+estest,1866473,5
+119631821,1866473,5
+46734185,1866473,4
+131017572,1866473,5
+18508363,1866473,4
+119865328,1866473,3
+65985132,1866473,5
+loki-649,1866473,4
+lazziholic,1866473,4
+70296365,1866473,4
+gmmmilly,1866473,4
+37837807,1866473,4
+62586984,1866473,4
+79429448,1866473,4
+49144295,1866473,5
+Cincky.XiN,1866473,3
+45236466,1866473,4
+52841977,1866473,4
+81651557,1866473,4
+49411879,1866473,2
+3608042,1866473,3
+78001242,1866473,4
+84076381,1866473,4
+47790392,1866473,4
+hjl0312,1866473,4
+2842222,1866473,4
+56795705,1866473,4
+on1ooker,1866473,4
+Yindaxian,1866473,4
+surenyi,1866473,4
+dreams_be_dream,1866473,4
+124584550,1866473,4
+39052784,1866473,5
+jiatianyu1,1866473,3
+banana_benny,1866473,5
+4376826,1866473,5
+69794996,1866473,5
+84562260,1866473,3
+Nokia5610,1866473,3
+oliviapalermo,1866473,4
+50371627,1866473,3
+52912743,1866473,4
+73294772,1866473,4
+15368043,1866473,3
+4547052,1866473,4
+simplece,1866473,4
+57325323,1866473,4
+50349631,1866473,2
+31530097,1866473,3
+3555700,1866473,4
+JosephineQv,1866473,5
+95147125,1866473,4
+49732676,1866473,4
+34036106,1866473,3
+Jessica814,1866473,5
+gwenstore,1866473,4
+70370999,1866473,4
+sophiemay,1866473,-1
+48097979,1866473,2
+banzaleno,1866473,3
+ting_1987,1866473,3
+44411218,1866473,3
+27824791,1866473,3
+96233628,1866473,5
+4252143,1866473,4
+26312947,1866473,4
+liebedai,1866473,4
+125281406,1866473,3
+ken_zhou,1866473,5
+51016354,1866473,3
+jolinalbert,1866473,2
+goddyzhao,1866473,5
+miyaM,1866473,4
+69698013,1866473,5
+flowernim,1866473,4
+happygs,1866473,4
+134506465,1866473,4
+Joan7600,1866473,5
+69099872,1866473,4
+louieeeee,1866473,3
+SeriousPleasure,1866473,3
+57710980,1866473,5
+Sataaaaaan,1866473,4
+35005590,1866473,4
+51507388,1866473,4
+136390186,1866473,4
+131604537,1866473,5
+120391642,1866473,5
+48250185,1866473,4
+96730730,1866473,4
+uruir,1866473,4
+51433570,1866473,4
+39695667,1866473,2
+43211032,1866473,3
+houx,1866473,5
+58051524,1866473,5
+Hannia,1866473,4
+90594894,1866473,4
+appleweiwei,1866473,4
+lonelyalex,1866473,4
+58080207,1866473,4
+64951594,1866473,4
+twyvian,1866473,4
+eatonzh,1866473,4
+goodprado,1866473,3
+tingky,1866473,4
+1335533,1866473,4
+1985034,1866473,3
+mydearnye,1866473,2
+52071601,1866473,4
+53839512,1866473,4
+OpalMummy,1866473,4
+darling99,1866473,2
+63306713,1866473,5
+xieyixi,1866473,4
+136522389,1866473,-1
+3520910,1866473,4
+Mndove,1866473,5
+88598461,1866473,3
+aidaaijani,1866473,4
+49576050,1866473,4
+54887603,1866473,-1
+chenwanrao,1866473,3
+48662592,1866473,4
+48662592,1866473,4
+4337135,1866473,4
+sophie_chan,1866473,5
+67844336,1866473,3
+50085727,1866473,4
+joyestin,1866473,4
+60282929,1866473,3
+3179740,1866473,4
+44412254,1866473,4
+56151191,1866473,4
+momoko11510,1866473,4
+53990985,1866473,4
+meltyice,1866473,4
+FayVan,1866473,3
+Alexation,1866473,4
+jdantong,1866473,4
+zonovo,1866473,3
+sirroy,1866473,4
+75309704,1866473,4
+65912201,1866473,4
+62320618,1866473,4
+134057557,1866473,3
+47691790,1866473,4
+130348084,1866473,5
+jujubechow,1866473,4
+119122218,1866473,5
+2572066,1866473,4
+lilyforever1206,1866473,5
+akanishi_0704,1866473,5
+78706605,1866473,5
+75865676,1866473,4
+yoonjae_,1866473,3
+misayxt,1866473,2
+131505012,1866473,4
+49250486,1866473,4
+54853345,1866473,4
+lingdesign,1866473,-1
+103415530,1866473,3
+91348351,1866473,4
+58908611,1866473,3
+43389668,1866473,3
+3474392,1866473,4
+greenyvonne,1866473,4
+3597938,1866473,4
+conanwansui,1866473,4
+micstrap,1866473,5
+45648190,1866473,4
+3032632,1866473,3
+68227944,1866473,3
+46153046,1866473,4
+134691422,1866473,5
+sai27,1866473,5
+133978250,1866473,5
+Ghost.Melody,1866473,3
+29685065,1866473,3
+missuguys,1866473,4
+y328675858,1866473,4
+yzjoanne,1866473,4
+51369610,1866473,4
+90611286,1866473,5
+mxlzyd,1866473,4
+singheartly,1866473,3
+q168,1866473,4
+33751339,1866473,5
+58765705,1866473,3
+42836191,1866473,4
+103727305,1866473,4
+123238661,1866473,4
+moekon,1866473,4
+122666721,1866473,5
+4652776,1866473,4
+ssqian,1866473,4
+47297505,1866473,5
+45935605,1866473,3
+sevenya,1866473,3
+4417608,1866473,5
+54641947,1866473,4
+taliyan,1866473,5
+fario,1866473,3
+59099811,1866473,3
+twiggylwx,1866473,5
+geekky,1866473,2
+122273872,1866473,3
+bamboo0214,1866473,4
+2753456,1866473,5
+53396330,1866473,4
+134800314,1866473,4
+HowShouldIKnow,1866473,5
+Tree4,1866473,5
+xiaokudou,1866473,3
+ran3233,1866473,4
+adafirst,1866473,4
+131565125,1866473,4
+GawaiChen,1866473,4
+yzr8979,1866473,4
+1428499,1866473,1
+58076486,1866473,5
+77071490,1866473,4
+73979703,1866473,4
+1012162,1866473,3
+133239175,1866473,4
+didy815,1866473,4
+52529736,1866473,4
+tinyshmily,1866473,5
+huangxinyionly,1866473,4
+120065870,1866473,3
+67163006,1866473,4
+136517051,1866473,4
+135491689,1866473,4
+waylybaye,1866473,4
+106438435,1866473,3
+ets,1866473,4
+cheryl0211,1866473,3
+39890190,1866473,3
+Inkfearless,1866473,4
+2411985,1866473,5
+Joeroad,1866473,4
+49166988,1866473,4
+47152521,1866473,5
+overlysilly,1866473,2
+29126479,1866473,5
+127377114,1866473,5
+SheRrySweets,1866473,4
+41116493,1866473,4
+33830687,1866473,4
+68822610,1866473,3
+68505371,1866473,4
+63174808,1866473,4
+48034227,1866473,4
+Leung_QY,1866473,4
+69884318,1866473,5
+Henry-Maugham,1866473,3
+102386704,1866473,4
+75514930,1866473,4
+myasuka,1866473,4
+59358119,1866473,5
+89066668,1866473,4
+36862106,1866473,4
+69859935,1866473,5
+Rouwell,1866473,4
+132082715,1866473,5
+mantoW3,1866473,3
+127515076,1866473,5
+3080716,1866473,4
+sunyuan,1866473,4
+62034201,1866473,5
+111988301,1866473,5
+sealyhere,1866473,4
+wh12321,1866473,4
+64218065,1866473,4
+63379039,1866473,5
+132347906,1866473,4
+53874586,1866473,4
+43269770,1866473,3
+63369291,1866473,3
+52051895,1866473,4
+kosetsutei,1866473,4
+1078136,1866473,3
+1198621,1866473,4
+talentygw,1866473,4
+62074991,1866473,5
+plight,1866473,3
+luciaandmayday,1866473,5
+134629399,1866473,4
+2247430,1866473,4
+135440439,1866473,5
+65181695,1866473,4
+67887744,1866473,4
+2842120,1866473,4
+EbiCo,1866473,3
+3515140,1866473,4
+2850261,1866473,4
+56887114,1866473,4
+119615855,1866473,4
+68252856,1866473,2
+lishushu,1866473,4
+36252674,1866473,4
+63724956,1866473,4
+71811123,1866473,4
+87583739,1866473,5
+2247685,1866473,4
+52463916,1866473,3
+nazuna,1866473,4
+coffee7lemon,1866473,4
+97677085,1866473,-1
+LuciaEvans,1866473,5
+89709979,1866473,4
+zhoumeizi,1866473,5
+91005322,1866473,4
+67497276,1866473,4
+sunflower2-,1866473,4
+far_away,1866473,4
+kyuly,1866473,5
+58792200,1866473,3
+71821364,1866473,4
+78501893,1866473,-1
+49703092,1866473,4
+69794753,1866473,4
+48096896,1866473,4
+136421278,1866473,4
+58225486,1866473,5
+67570635,1866473,4
+41521988,1866473,4
+132790620,1866473,4
+102618249,1866473,5
+75869760,1866473,4
+suguorui,1866473,5
+JTianLing,1866473,4
+64136506,1866473,4
+sherlocknh2fan,1866473,4
+91628432,1866473,4
+ryan-vag,1866473,3
+65820268,1866473,4
+51282315,1866473,3
+135981815,1866473,3
+54153618,1866473,4
+41582940,1866473,3
+52051860,1866473,5
+58862112,1866473,4
+42987621,1866473,2
+42987621,1866473,2
+64866923,1866473,4
+36248772,1866473,3
+82623937,1866473,3
+40789061,1866473,3
+66414661,1866473,5
+18747582,1866473,3
+34062081,1866473,-1
+120852248,1866473,4
+46816911,1866473,4
+44431235,1866473,5
+70311914,1866473,5
+lovelucie,1866473,4
+moqulss,1866473,4
+33494408,1866473,1
+1548712,1866473,4
+57563598,1866473,5
+58539257,1866473,3
+abey1949,1866473,4
+54444481,1866473,5
+53210734,1866473,4
+4873557,1866473,4
+4353368,1866473,4
+cargee,1866473,4
+49262338,1866473,5
+50017356,1866473,5
+ylrenee,1866473,4
+Tangss,1866473,-1
+50062390,1866473,4
+rexhu,1866473,5
+135137854,1866473,3
+42349679,1866473,4
+2097598,1866473,3
+jygreen,1866473,4
+liz_anna,1866473,3
+134183599,1866473,3
+48043918,1866473,3
+elijahh,1866473,3
+82145185,1866473,3
+60820990,1866473,3
+134433329,1866473,5
+sugushome,1866473,3
+nicolaswang,1866473,3
+4002589,1866473,3
+67706797,1866473,5
+10208465,1866473,5
+timonin,1866473,5
+Schiller,1866473,4
+6260234,1866473,4
+43808911,1866473,3
+53980581,1866473,4
+54654221,1866473,3
+2232531,1866473,-1
+4795748,1866473,5
+54344898,1866473,4
+101337641,1866473,5
+135746994,1866473,4
+mayoke,1866473,4
+53718083,1866473,5
+122977131,1866473,5
+48262509,1866473,4
+56030854,1866473,5
+119364695,1866473,5
+63402468,1866473,3
+47503984,1866473,4
+53541411,1866473,3
+54428123,1866473,3
+42803233,1866473,3
+61648064,1866473,2
+20213088,1866473,3
+61929343,1866473,4
+120903556,1866473,4
+74094889,1866473,4
+98782610,1866473,5
+yjybibby,1866473,5
+32111208,1866473,4
+KAGAMI-J,1866473,4
+fineyou,1866473,5
+baimaheizong,1866473,4
+47557602,1866473,4
+2400445,1866473,4
+41691356,1866473,3
+mybullet,1866473,3
+4459976,1866473,3
+134693673,1866473,3
+zk_0707,1866473,4
+Mayumi720,1866473,2
+51883093,1866473,2
+58195982,1866473,3
+40506185,1866473,4
+2292966,1866473,5
+127180672,1866473,4
+70481744,1866473,3
+82904575,1866473,4
+bais0630,1866473,4
+75757535,1866473,3
+39628944,1866473,-1
+Coast0to0coast,1866473,5
+yuyueehappy,1866473,4
+90161175,1866473,4
+122686185,1866473,4
+75259646,1866473,4
+miqu,1866473,4
+50335163,1866473,-1
+36936880,1866473,3
+xuesong0009,1866473,5
+zitong970329,1866473,-1
+akilee614,1866473,4
+happyface1022,1866473,4
+49484817,1866473,3
+4015921,1866473,4
+88434665,1866473,5
+2561289,1866473,3
+3556906,1866473,3
+65995981,1866473,4
+81933554,1866473,5
+50011332,1866473,5
+4315821,1866473,3
+orchialgia,1866473,4
+47471768,1866473,3
+die1021,1866473,3
+132432039,1866473,3
+51249415,1866473,4
+43717763,1866473,5
+huang0329,1866473,4
+LordMo,1866473,4
+60300339,1866473,4
+leejiatu987,1866473,4
+35684219,1866473,4
+65292706,1866473,5
+53485894,1866473,4
+26627187,1866473,4
+82367083,1866473,4
+mvapple,1866473,5
+Bright0574,1866473,3
+115092605,1866473,4
+kkk920,1866473,4
+92908596,1866473,3
+51741927,1866473,3
+maychendaxu,1866473,3
+flyrodney,1866473,3
+spx,1866473,5
+3298336,1866473,3
+49043660,1866473,5
+47112515,1866473,5
+apr1lcoo,1866473,5
+47193602,1866473,3
+42972356,1866473,4
+janelle.c,1866473,3
+little_cupid,1866473,3
+135274415,1866473,4
+marioii,1866473,-1
+zchou,1866473,4
+airinsky,1866473,4
+57644964,1866473,4
+64700587,1866473,4
+2968572,1866473,4
+4422335,1866473,4
+79105910,1866473,3
+DJ510,1866473,4
+120980814,1866473,3
+burglar,1866473,3
+55598262,1866473,5
+2300644,1866473,4
+63956192,1866473,3
+73450008,1866473,5
+48309167,1866473,4
+71039483,1866473,3
+77898629,1866473,3
+LovelyYvonny,1866473,3
+2469434,1866473,5
+wingsx,1866473,3
+72677574,1866473,5
+131843195,1866473,3
+2144524,1866473,4
+127928705,1866473,4
+133402651,1866473,5
+huangyan2738yy,1866473,3
+Articuno,1866473,3
+celia550,1866473,5
+deafbear,1866473,4
+45173770,1866473,4
+76270911,1866473,4
+135644489,1866473,3
+64793869,1866473,3
+69010983,1866473,5
+63647766,1866473,4
+30486993,1866473,3
+gyd,1866473,3
+ruyibuzairuyi,1866473,4
+6440487,1866473,5
+3111518,1866473,4
+102938214,1866473,4
+zcy0505,1866473,3
+57726967,1866473,4
+1558576,1866473,4
+2340314,1866473,4
+3317762,1866473,4
+136486316,1866473,4
+illiteracy,1866473,3
+60421761,1866473,3
+49535116,1866473,3
+35528479,1866473,4
+35070207,1866473,-1
+Lena-Ho,1866473,4
+44500339,1866473,4
+2843764,1866473,4
+endofmay,1866473,4
+48006238,1866473,4
+boringsly,1866473,4
+57916639,1866473,4
+54158519,1866473,4
+55764073,1866473,4
+77488153,1866473,4
+Tracy_morning,1866473,4
+2295492,1866473,3
+91543549,1866473,5
+48498923,1866473,2
+50646130,1866473,1
+102221538,1866473,4
+94471728,1866473,3
+107868458,1866473,5
+koushisi,1866473,4
+45231027,1866473,3
+96066844,1866473,4
+9184667,1866473,3
+120604736,1866473,2
+13631484,1866473,3
+SK8_frank,1866473,4
+40507571,1866473,3
+60320238,1866473,4
+66552621,1866473,4
+TXS0331,1866473,4
+56747792,1866473,4
+bluenilo,1866473,3
+pussy0pu,1866473,4
+56241501,1866473,4
+amunli,1866473,3
+xuylu,1866473,3
+naomi_giveme5,1866473,4
+93035726,1866473,4
+29481623,1866473,3
+xingtuo,1866473,3
+85481882,1866473,2
+81998298,1866473,4
+130956052,1866473,5
+3086105,1866473,4
+115020477,1866473,5
+fuckass,1866473,4
+dongxie1994,1866473,3
+135758261,1866473,4
+49963574,1866473,5
+kejinlong,1866473,3
+wuchen11,1866473,4
+87603831,1866473,4
+48320560,1866473,4
+71062374,1866473,4
+121109357,1866473,4
+2425907,1866473,3
+48948981,1866473,3
+runningaway11,1866473,4
+pdleo,1866473,4
+2787996,1866473,4
+49190910,1866473,4
+tongziyam,1866473,4
+4466839,1866473,-1
+lishangpei,1866473,4
+26044083,1866473,5
+pkbraveheart,1866473,4
+2191624,1866473,5
+lingweiran_0305,1866473,5
+Cllindaoud,1866473,3
+jeyhello,1866473,-1
+zbyoyo,1866473,5
+ripplelien,1866473,4
+42431883,1866473,4
+14042957,1866473,3
+82847789,1866473,4
+DrRay,1866473,4
+80609092,1866473,3
+peterpan1004,1866473,3
+lemon1991syj,1866473,4
+qiusuiying,1866473,4
+40081609,1866473,4
+73011629,1866473,4
+41968793,1866473,4
+viniday,1866473,3
+52534425,1866473,4
+47783311,1866473,4
+70192323,1866473,4
+39294395,1866473,4
+54753816,1866473,4
+17790607,1866473,4
+93504074,1866473,5
+4806563,1866473,3
+luics,1866473,4
+132208597,1866473,4
+52750268,1866473,5
+50686538,1866473,5
+27575810,1866473,4
+baby4inlove,1866473,4
+wangliuwei,1866473,4
+71488560,1866473,4
+pineappletu,1866473,5
+30577521,1866473,3
+134854042,1866473,4
+52279416,1866473,-1
+91809497,1866473,4
+119874761,1866473,4
+amazinfiona,1866473,5
+vmbai,1866473,4
+66617948,1866473,4
+38245498,1866473,4
+faunus,1866473,3
+daangel,1866473,4
+124019379,1866473,5
+83619054,1866473,4
+szuysk,1866473,5
+18571046,1866473,5
+31427645,1866473,3
+2375749,1866473,4
+58320011,1866473,3
+puccabb,1866473,5
+shuilingyuesha,1866473,4
+65305380,1866473,-1
+49853837,1866473,3
+83070447,1866473,5
+64029045,1866473,4
+55983243,1866473,3
+scarlett982,1866473,3
+46418064,1866473,4
+1390707,1866473,5
+shenshenet,1866473,3
+Gordoncoco,1866473,5
+64244966,1866473,4
+92613498,1866473,3
+42221402,1866473,2
+28939207,1866473,4
+40733477,1866473,3
+59607562,1866473,3
+liuyisha,1866473,5
+63844933,1866473,3
+62230254,1866473,3
+123179800,1866473,5
+65029025,1866473,3
+withshane,1866473,4
+mowo,1866473,3
+89164143,1866473,3
+gyb,1866473,4
+51593691,1866473,3
+APRILKA,1866473,5
+nagle,1866473,4
+euphymia,1866473,4
+jinlinyuyu,1866473,4
+49729749,1866473,4
+snoopy198471,1866473,3
+lizhizhiwai,1866473,-1
+zht90130,1866473,5
+73784914,1866473,3
+xbegg,1866473,4
+xbegg,1866473,4
+77922789,1866473,5
+53776899,1866473,4
+65303056,1866473,4
+68671581,1866473,4
+stellayuki,1866473,4
+vivilida,1866473,3
+1256276,1866473,4
+102938445,1866473,4
+98009481,1866473,5
+GATIK,1866473,5
+Mignonette-W,1866473,4
+75607691,1866473,4
+winmaxangle,1866473,4
+boycester,1866473,4
+44915988,1866473,4
+4650728,1866473,4
+49362263,1866473,4
+babyplume,1866473,4
+33822786,1866473,4
+snowqueen7,1866473,4
+onlymengya,1866473,3
+bear1943,1866473,4
+s13,1866473,3
+134285579,1866473,4
+sikidayobaka,1866473,4
+57823249,1866473,4
+91670770,1866473,4
+fountine1120,1866473,3
+128831767,1866473,4
+sarahbuxia,1866473,4
+52780386,1866473,4
+46981006,1866473,5
+120119010,1866473,4
+134863795,1866473,5
+4348412,1866473,4
+saieleven,1866473,3
+45242330,1866473,4
+Anesthesiawd,1866473,4
+minamy1227,1866473,3
+sissip,1866473,5
+x.bing,1866473,5
+micheesama,1866473,4
+71267771,1866473,5
+58163617,1866473,5
+ashin52,1866473,4
+blender,1866473,5
+51927756,1866473,3
+119190302,1866473,4
+67374627,1866473,4
+1079289,1866473,4
+79699248,1866473,4
+60461731,1866473,5
+52656396,1866473,3
+melanie_je,1866473,5
+43176716,1866473,4
+102203140,1866473,3
+Sabrina.hu,1866473,4
+2236100,1866473,4
+115775879,1866473,5
+Elvis_Young,1866473,4
+58929848,1866473,4
+2911268,1866473,4
+35087113,1866473,3
+43273795,1866473,4
+linlin009006,1866473,4
+57919652,1866473,3
+milansunshine,1866473,4
+54560671,1866473,3
+48975518,1866473,4
+tennystime,1866473,3
+113404948,1866473,4
+40868820,1866473,5
+80468427,1866473,5
+1627116,1866473,4
+xinyi_jane,1866473,4
+49658554,1866473,4
+49489445,1866473,5
+superchao57,1866473,5
+echosmilefor,1866473,5
+119262490,1866473,3
+Journeywu,1866473,4
+64881520,1866473,4
+125149511,1866473,4
+lidada,1866473,2
+vivimao128,1866473,4
+soda-fine,1866473,4
+moshushi1123,1866473,5
+71833015,1866473,4
+CassieBae,1866473,4
+52495882,1866473,4
+88684580,1866473,2
+49585616,1866473,4
+90847864,1866473,4
+59905029,1866473,3
+28026736,1866473,5
+19034268,1866473,4
+shingle,1866473,3
+lian0070,1866473,2
+46035799,1866473,4
+57724902,1866473,4
+64645898,1866473,4
+wbb45,1866473,5
+4627477,1866473,5
+renmeng,1866473,4
+70862164,1866473,4
+45599150,1866473,5
+broussaille,1866473,-1
+122458396,1866473,3
+Eveh,1866473,4
+50048603,1866473,5
+49422565,1866473,5
+49415166,1866473,5
+58043566,1866473,4
+iliahuy,1866473,4
+cszcucn,1866473,4
+ciciywg,1866473,4
+3347336,1866473,4
+43831100,1866473,5
+helianchan,1866473,4
+lulinhaohan,1866473,4
+62476143,1866473,4
+128179315,1866473,4
+58482024,1866473,4
+81911390,1866473,5
+91882469,1866473,4
+52907196,1866473,4
+shuihe,1866473,3
+alai29,1866473,4
+yardbirds,1866473,3
+56687292,1866473,4
+utopialand,1866473,4
+63458360,1866473,2
+134137352,1866473,3
+xiangkayi,1866473,4
+hthj,1866473,4
+yunta,1866473,4
+yangli1st,1866473,3
+2933839,1866473,5
+58956706,1866473,3
+zhujiao,1866473,3
+81742698,1866473,3
+lulu1011,1866473,5
+34945593,1866473,5
+lpf1990,1866473,3
+95794515,1866473,4
+57996084,1866473,4
+48579474,1866473,2
+87581035,1866473,5
+130190354,1866473,3
+49074611,1866473,4
+landy0514,1866473,2
+2711621,1866473,4
+49345225,1866473,4
+119652529,1866473,-1
+51933689,1866473,5
+69323349,1866473,4
+66108954,1866473,5
+49893438,1866473,4
+51079481,1866473,5
+alittletiger,1866473,3
+41209021,1866473,5
+61944030,1866473,3
+73694800,1866473,5
+myweekend,1866473,4
+Lira_13,1866473,4
+74974016,1866473,4
+89410418,1866473,4
+57656194,1866473,5
+54625709,1866473,4
+81444373,1866473,3
+1011858,1866473,4
+136460394,1866473,4
+ihee1995,1866473,5
+35902672,1866473,3
+61722748,1866473,4
+126931660,1866473,3
+75511451,1866473,4
+manjusaka.,1866473,4
+42367831,1866473,4
+suinsun,1866473,4
+orange258,1866473,2
+130554186,1866473,4
+81680542,1866473,3
+ninquelote,1866473,4
+49207665,1866473,2
+qiuniao1982,1866473,3
+101982187,1866473,3
+130345686,1866473,3
+Beth0204,1866473,5
+Andy_Shan,1866473,3
+48873283,1866473,3
+Lemonsir,1866473,3
+lobey,1866473,5
+52870405,1866473,4
+62509398,1866473,5
+58122842,1866473,4
+59275049,1866473,4
+3681326,1866473,5
+72970549,1866473,4
+55324449,1866473,4
+namida0422,1866473,5
+122486376,1866473,5
+47116857,1866473,5
+why20061108,1866473,3
+85748562,1866473,4
+DavidbyGrace,1866473,4
+115035212,1866473,5
+72233881,1866473,5
+52698885,1866473,3
+80847365,1866473,4
+47279331,1866473,4
+2110865,1866473,3
+65542569,1866473,4
+lotuslalay,1866473,4
+sunlusky,1866473,4
+35925189,1866473,4
+33946730,1866473,4
+35443594,1866473,4
+nizhenhua1981,1866473,4
+Miss-Zha,1866473,4
+102788052,1866473,4
+136438728,1866473,4
+46020433,1866473,3
+55613831,1866473,4
+chouchou35,1866473,4
+stillsanshan,1866473,3
+2409685,1866473,3
+47705439,1866473,4
+56566809,1866473,3
+123663607,1866473,4
+66552525,1866473,4
+41919176,1866473,4
+39351378,1866473,3
+wangyuan2648,1866473,4
+47717336,1866473,5
+102986629,1866473,4
+akxs,1866473,5
+89093479,1866473,4
+38311886,1866473,5
+54646551,1866473,4
+1029394,1866473,3
+52366157,1866473,2
+3585677,1866473,4
+1162046,1866473,3
+SmilingJune,1866473,4
+TalkChan,1866473,3
+TallTan,1866473,4
+121064013,1866473,4
+bluetiger,1866473,4
+lxljuicy,1866473,4
+sharkstyle,1866473,5
+51188157,1866473,4
+jinasong,1866473,4
+MomoHorin,1866473,5
+moxiaomindouban,1866473,4
+44072732,1866473,4
+75096112,1866473,4
+54731797,1866473,4
+131125342,1866473,5
+49712766,1866473,5
+50174936,1866473,4
+121342307,1866473,5
+48812858,1866473,3
+77905956,1866473,4
+68803794,1866473,4
+48314806,1866473,3
+terryhey,1866473,4
+134504813,1866473,4
+1421383,1866473,5
+78632729,1866473,3
+79951487,1866473,4
+45379580,1866473,4
+4317618,1866473,3
+84003620,1866473,5
+wishknow,1866473,3
+periswallow,1866473,5
+115524075,1866473,3
+chobit.w,1866473,4
+59413586,1866473,4
+33493653,1866473,3
+caicaisweat,1866473,5
+38981287,1866473,4
+alfiestudio,1866473,3
+yanlifan,1866473,4
+8083237,1866473,3
+135228152,1866473,3
+78794254,1866473,4
+61014554,1866473,5
+marv8422,1866473,3
+63305885,1866473,4
+81916004,1866473,4
+59721741,1866473,4
+131503436,1866473,4
+hirair,1866473,4
+yeung123,1866473,4
+48724979,1866473,4
+50179673,1866473,4
+84696017,1866473,3
+44548602,1866473,3
+38045752,1866473,-1
+mintly1027,1866473,4
+49731141,1866473,5
+128409852,1866473,3
+lilanning,1866473,4
+ywjaij,1866473,4
+54490331,1866473,4
+yinmengtan,1866473,3
+erison_lan,1866473,3
+84433988,1866473,4
+59336552,1866473,5
+3128287,1866473,5
+53708953,1866473,4
+jiangjiang1214,1866473,3
+83361236,1866473,3
+98480325,1866473,3
+54249805,1866473,5
+52017448,1866473,3
+48313436,1866473,4
+6401896,1866473,4
+42805521,1866473,3
+zorro4337,1866473,4
+UU0707,1866473,4
+83343003,1866473,5
+56383208,1866473,5
+48459304,1866473,3
+simppydhl,1866473,4
+4357598,1866473,4
+77201294,1866473,3
+58067296,1866473,4
+110227894,1866473,4
+sukilovemayday,1866473,3
+antiHero,1866473,4
+wei666,1866473,5
+81806780,1866473,3
+43944824,1866473,3
+81848575,1866473,5
+vinciwang,1866473,4
+47862106,1866473,5
+83262608,1866473,5
+4217605,1866473,3
+caikiddg,1866473,5
+wanglei962845,1866473,3
+NJYSL,1866473,4
+60760507,1866473,4
+52056943,1866473,3
+logicmd,1866473,4
+78574279,1866473,5
+esy0706,1866473,4
+70914565,1866473,4
+15923288,1866473,3
+fuckinboy,1866473,4
+Banana_Z,1866473,4
+1465852,1866473,3
+OneiLulu,1866473,4
+45337528,1866473,5
+132092156,1866473,4
+vivi1993,1866473,4
+63528738,1866473,5
+14820638,1866473,-1
+clare.t,1866473,3
+54338548,1866473,3
+41307480,1866473,5
+3930745,1866473,5
+shanelean,1866473,5
+FangFangZ1024,1866473,4
+TerryPark,1866473,4
+107496978,1866473,4
+59586263,1866473,4
+distinguished,1866473,4
+miyamiyawei,1866473,3
+36463756,1866473,4
+6239142,1866473,3
+3656467,1866473,3
+59660757,1866473,5
+60915070,1866473,3
+luo_yanling,1866473,4
+45786589,1866473,4
+3571623,1866473,5
+carambo,1866473,4
+4362013,1866473,3
+81238293,1866473,5
+50449064,1866473,3
+5957736,1866473,3
+51281553,1866473,4
+Cherrie.,1866473,4
+35165687,1866473,3
+60888658,1866473,5
+Eudemonia-moon,1866473,3
+optimisery,1866473,3
+70335483,1866473,4
+68725217,1866473,5
+54703835,1866473,5
+uuul,1866473,4
+m19900714,1866473,3
+48781590,1866473,4
+11786089,1866473,3
+11842501,1866473,3
+4313714,1866473,4
+70013242,1866473,4
+Dora_bamboo,1866473,4
+122302727,1866473,3
+zechewang007,1866473,3
+2059210,1866473,3
+120786974,1866473,3
+cannawinds,1866473,3
+72138630,1866473,4
+84612888,1866473,3
+aiknow,1866473,4
+78465383,1866473,3
+bluesorry,1866473,5
+witkeysai,1866473,4
+qingzai,1866473,5
+44160866,1866473,4
+131932247,1866473,4
+carolsy22,1866473,4
+cornelia_su,1866473,5
+qijiang037,1866473,5
+60429218,1866473,4
+66224726,1866473,2
+59272939,1866473,3
+4657884,1866473,5
+3704936,1866473,4
+misshjz,1866473,3
+13039939,1866473,-1
+106916966,1866473,3
+47707866,1866473,-1
+38084251,1866473,5
+autumnfly,1866473,3
+96305246,1866473,5
+33683472,1866473,5
+57393346,1866473,5
+47776036,1866473,4
+77451005,1866473,3
+119099264,1866473,4
+liero,1866473,5
+zz_lucy,1866473,3
+54717954,1866473,3
+51879316,1866473,4
+96764185,1866473,3
+4059598,1866473,4
+shuyedaxigua,1866473,3
+1831722,1866473,3
+wx3826,1866473,5
+chocolateld,1866473,4
+3365374,1866473,4
+2914496,1866473,5
+ruyu,1866473,4
+126346458,1866473,3
+59446610,1866473,2
+60685526,1866473,4
+70521921,1866473,3
+Lycc,1866473,5
+130566544,1866473,4
+lear7,1866473,5
+115001902,1866473,4
+petterzhang,1866473,4
+89421913,1866473,5
+everlastingblue,1866473,5
+127540251,1866473,2
+37943825,1866473,4
+odddddddddddddd,1866473,3
+60408856,1866473,5
+126780263,1866473,1
+49038278,1866473,4
+134874653,1866473,5
+125528314,1866473,4
+136429512,1866473,3
+41193009,1866473,4
+4153237,1866473,3
+Rosier,1866473,3
+49930481,1866473,5
+4427457,1866473,5
+45917791,1866473,4
+81391880,1866473,3
+49160139,1866473,-1
+lipiaopiao,1866473,3
+YVANFUS,1866473,4
+dayandnights,1866473,4
+nuanshuiping,1866473,4
+42850714,1866473,4
+xinyi714,1866473,5
+2272336,1866473,5
+allwordswrong,1866473,3
+3443645,1866473,4
+onehundredblue,1866473,5
+3526854,1866473,5
+62122609,1866473,4
+benbenmuxi,1866473,4
+88200565,1866473,3
+alaray,1866473,3
+melonkim,1866473,4
+jungjay,1866473,3
+icebully521,1866473,4
+qingfengvicky,1866473,4
+gayly,1866473,5
+56678240,1866473,4
+helen1026,1866473,-1
+98473521,1866473,4
+3598360,1866473,5
+yuuka0765,1866473,5
+69273736,1866473,4
+64831069,1866473,5
+60936664,1866473,5
+84418105,1866473,-1
+47838456,1866473,4
+39105874,1866473,5
+119683375,1866473,3
+1189560,1866473,4
+symbolist,1866473,4
+queencoco,1866473,4
+Mint1031,1866473,4
+53769343,1866473,4
+summersugarb,1866473,3
+shituo,1866473,2
+50366197,1866473,4
+134203219,1866473,3
+53068258,1866473,4
+ininsun,1866473,4
+quelvasa,1866473,4
+129548672,1866473,5
+36413097,1866473,3
+66989332,1866473,4
+47475277,1866473,4
+64904915,1866473,4
+neallau1221,1866473,2
+73804612,1866473,3
+93211311,1866473,4
+43983045,1866473,3
+Knox,1866473,4
+biptwjw,1866473,3
+fangyuan1mi,1866473,3
+113287715,1866473,4
+45775512,1866473,3
+shunong,1866473,3
+30738110,1866473,5
+50644881,1866473,4
+yuyan1234,1866473,5
+clytzesmile,1866473,5
+49108399,1866473,3
+R1NUAN,1866473,3
+80482289,1866473,4
+57751540,1866473,2
+librelove,1866473,4
+130770010,1866473,4
+yao0509,1866473,5
+68710449,1866473,5
+ziko16,1866473,4
+76038438,1866473,5
+stacy-agony,1866473,4
+82191110,1866473,3
+3412065,1866473,3
+106712856,1866473,4
+wzsmc57,1866473,4
+4587293,1866473,3
+73039194,1866473,4
+116036519,1866473,3
+47599682,1866473,3
+49148767,1866473,5
+GarYZuA,1866473,5
+92174979,1866473,4
+60939723,1866473,2
+120931613,1866473,4
+Ditou.,1866473,4
+41573793,1866473,5
+benyang,1866473,4
+60388741,1866473,4
+naschris,1866473,4
+35163305,1866473,4
+33226742,1866473,5
+whisperstone,1866473,5
+mush24,1866473,4
+50178808,1866473,3
+78984390,1866473,4
+3610351,1866473,3
+miemiemiemiemie,1866473,4
+63278789,1866473,5
+pcwofe,1866473,3
+38603350,1866473,3
+fishsiu,1866473,5
+candy_littrell,1866473,3
+58349730,1866473,3
+83313626,1866473,5
+louis15yao,1866473,5
+seriousz,1866473,4
+xudifang13,1866473,4
+58934879,1866473,4
+57126111,1866473,4
+47468400,1866473,4
+60751376,1866473,3
+125929186,1866473,4
+53507443,1866473,4
+125602185,1866473,5
+135868666,1866473,4
+58063696,1866473,4
+Heiyoo,1866473,3
+dai_xiao_feng,1866473,4
+58945598,1866473,4
+84641449,1866473,5
+125784671,1866473,5
+movie007wn,1866473,3
+64046846,1866473,4
+120909510,1866473,4
+lidesheng,1866473,-1
+73626689,1866473,4
+yandafan,1866473,5
+47423865,1866473,3
+59651696,1866473,4
+45164185,1866473,3
+67942569,1866473,3
+57071321,1866473,4
+37959469,1866473,4
+vodkajing,1866473,-1
+xiaomaxi,1866473,4
+122742084,1866473,3
+56919953,1866473,4
+shaxiong,1866473,4
+66290511,1866473,3
+102126440,1866473,5
+67784702,1866473,5
+62662196,1866473,5
+1885662,1866473,4
+47494111,1866473,4
+lingxishuyu,1866473,3
+63177196,1866473,5
+q2lee,1866473,5
+xxzy93,1866473,4
+3649520,1866473,4
+125002776,1866473,4
+Lessat,1866473,4
+43488242,1866473,4
+56147428,1866473,5
+xiaoyatoufengzi,1866473,4
+blackeleven,1866473,4
+79118365,1866473,4
+48029998,1866473,4
+122365805,1866473,5
+97180490,1866473,3
+122110316,1866473,3
+jtt622,1866473,4
+44258193,1866473,3
+10750432,1866473,4
+3433653,1866473,4
+136422471,1866473,5
+121572592,1866473,3
+qiabeibei314,1866473,4
+40696316,1866473,5
+127426227,1866473,5
+136421859,1866473,4
+37513501,1866473,3
+50455314,1866473,3
+14598994,1866473,5
+52048814,1866473,5
+66314549,1866473,5
+sidnad,1866473,4
+Lee90,1866473,3
+29202128,1866473,3
+87817634,1866473,5
+mazing,1866473,4
+2627935,1866473,4
+104402849,1866473,4
+heechen,1866473,4
+49849512,1866473,-1
+brison,1866473,3
+72828410,1866473,4
+122873381,1866473,3
+64114079,1866473,5
+42587922,1866473,5
+48198502,1866473,2
+aptx1010,1866473,3
+FTDxiaowukong,1866473,4
+catherined,1866473,5
+29965674,1866473,4
+tongnixcv,1866473,3
+136420771,1866473,3
+55312255,1866473,5
+ichloe,1866473,4
+lagrandeillusio,1866473,4
+74420370,1866473,4
+107124348,1866473,4
+seafi,1866473,4
+65546077,1866473,5
+43153098,1866473,4
+65202120,1866473,4
+50233060,1866473,4
+45714042,1866473,3
+57041893,1866473,3
+72963062,1866473,3
+allahking,1866473,3
+shikong27,1866473,4
+46082327,1866473,3
+4077370,1866473,4
+1452141,1866473,5
+xiaozhangshi,1866473,5
+gossip0123,1866473,4
+45310336,1866473,5
+xixihahaxiao,1866473,3
+58784307,1866473,4
+61150921,1866473,4
+Carman.Feng,1866473,4
+81542616,1866473,3
+5467957,1866473,4
+karyland,1866473,5
+Junekira,1866473,5
+wenyijiji,1866473,3
+Laoism,1866473,4
+snowchong1984,1866473,4
+52001200,1866473,5
+3694442,1866473,5
+96804163,1866473,5
+83740879,1866473,4
+joesmine,1866473,5
+52101882,1866473,5
+hellowind,1866473,4
+55867399,1866473,4
+134358881,1866473,4
+55887045,1866473,4
+rukia-ichigo,1866473,4
+rinkacheng,1866473,4
+tanlan3,1866473,5
+garymaycry,1866473,3
+lilygoy,1866473,4
+90747214,1866473,3
+54069821,1866473,3
+EI_wei,1866473,4
+ashes-and-snow,1866473,5
+checycc,1866473,4
+a1234567,1866473,4
+133904204,1866473,4
+49645423,1866473,5
+57317934,1866473,4
+63513932,1866473,5
+87790169,1866473,3
+120985349,1866473,4
+2590684,1866473,4
+guonianle,1866473,2
+46628722,1866473,5
+tonyteng,1866473,3
+4283595,1866473,4
+54398591,1866473,4
+hyperhypo,1866473,3
+SeeUMr.Van,1866473,4
+49891343,1866473,3
+3273386,1866473,4
+51162582,1866473,3
+freakg,1866473,3
+136417459,1866473,5
+bingoyy,1866473,5
+3176938,1866473,3
+94277693,1866473,5
+90195151,1866473,4
+Light_L,1866473,-1
+yaossss,1866473,4
+MCzjy,1866473,3
+icecream0330,1866473,4
+justbelieve,1866473,5
+52049296,1866473,-1
+68588893,1866473,5
+85354113,1866473,5
+56448548,1866473,4
+LM_,1866473,4
+61461484,1866473,3
+74853954,1866473,4
+52606809,1866473,4
+54782004,1866473,4
+45349650,1866473,3
+108496496,1866473,3
+52122495,1866473,4
+106525523,1866473,3
+105577352,1866473,4
+53536298,1866473,4
+119157867,1866473,4
+60404546,1866473,5
+70447042,1866473,2
+82743637,1866473,5
+tt0523_hitomi,1866473,4
+90005274,1866473,4
+84582978,1866473,5
+49676841,1866473,5
+5483875,1866473,3
+bulbosa,1866473,4
+89778884,1866473,4
+3489632,1866473,4
+ladyali,1866473,4
+darkphoenix,1866473,4
+alicepeng,1866473,5
+46167248,1866473,4
+112387290,1866473,4
+nico.heng.Y,1866473,4
+wendyshel,1866473,5
+129919857,1866473,3
+60645894,1866473,2
+37889636,1866473,3
+74110935,1866473,5
+52582150,1866473,4
+89610465,1866473,4
+52004190,1866473,2
+49979829,1866473,4
+einverne,1866473,4
+steamed_bun,1866473,5
+57679372,1866473,2
+2344931,1866473,4
+131592303,1866473,-1
+freakfreakfreak,1866473,5
+56894230,1866473,4
+62446851,1866473,5
+56580928,1866473,4
+Renee_Lee,1866473,4
+55584086,1866473,4
+125965009,1866473,5
+zhaosq,1866473,3
+57859400,1866473,4
+wanwanwan,1866473,3
+132667516,1866473,4
+49869256,1866473,3
+60619683,1866473,5
+97250156,1866473,4
+pp521,1866473,5
+125334017,1866473,4
+48667076,1866473,3
+grinch,1866473,4
+orochichris,1866473,3
+36478287,1866473,4
+besmiled,1866473,4
+47273453,1866473,3
+59253447,1866473,4
+soffie,1866473,3
+2177082,1866473,4
+69099920,1866473,5
+x1ngstar,1866473,4
+70214079,1866473,4
+76419237,1866473,2
+130960149,1866473,3
+mymike,1866473,3
+58273580,1866473,5
+80630129,1866473,4
+empty_icer,1866473,4
+48929842,1866473,4
+53318659,1866473,4
+yerryr,1866473,3
+6651647,1866473,4
+54947602,1866473,4
+2705335,1866473,4
+raratt,1866473,3
+40688720,1866473,3
+131634753,1866473,5
+3005065,1866473,4
+65628781,1866473,2
+42951565,1866473,4
+25546658,1866473,4
+106730683,1866473,4
+shiheng,1866473,5
+120187893,1866473,3
+clover.k,1866473,4
+aRmstrong-Kiss,1866473,5
+swiftflyer,1866473,4
+wanggegui,1866473,4
+43477542,1866473,4
+62720771,1866473,4
+2657253,1866473,5
+ayuandeDB,1866473,4
+75179409,1866473,5
+116054829,1866473,4
+4026585,1866473,4
+69948277,1866473,3
+raintoo,1866473,3
+47876726,1866473,3
+35403176,1866473,3
+75909451,1866473,5
+chrisairfly,1866473,3
+64429364,1866473,3
+119692827,1866473,3
+84019906,1866473,5
+milovejt_,1866473,4
+juand,1866473,5
+131950889,1866473,3
+48656837,1866473,2
+4115987,1866473,3
+53404103,1866473,4
+qt1022,1866473,4
+weichuu,1866473,4
+16678563,1866473,3
+mmhalj,1866473,5
+jakartaxie,1866473,3
+62333494,1866473,5
+suppppperrr,1866473,4
+50271595,1866473,4
+40616844,1866473,4
+wutongsuliang,1866473,3
+johndoex,1866473,3
+Miss-Flowers,1866473,4
+42661364,1866473,4
+76412988,1866473,4
+waiting322,1866473,4
+56221536,1866473,4
+70011740,1866473,2
+135687100,1866473,4
+67211553,1866473,5
+62268815,1866473,3
+34459327,1866473,4
+Mov1e-Clan,1866473,3
+95074857,1866473,3
+4655693,1866473,5
+reneesnow,1866473,4
+ForeverMoon,1866473,5
+shiminxu,1866473,5
+KyoQueen,1866473,3
+7344779,1866473,4
+59968133,1866473,4
+asvra,1866473,4
+119365101,1866473,3
+77303569,1866473,3
+120287477,1866473,4
+53548921,1866473,4
+65931842,1866473,3
+35715082,1866473,4
+77162594,1866473,5
+Chris_Martin,1866473,3
+weixiaojia,1866473,4
+47397843,1866473,4
+53846310,1866473,4
+56960014,1866473,3
+3915429,1866473,4
+Hana_,1866473,4
+aaronfighting,1866473,4
+131596492,1866473,4
+59143830,1866473,4
+65850343,1866473,4
+2666556,1866473,4
+1407063,1866473,3
+134434017,1866473,5
+candaes,1866473,5
+65421629,1866473,4
+smilingway,1866473,3
+1519013,1866473,5
+2391373,1866473,3
+49788914,1866473,4
+47095353,1866473,3
+vickybao,1866473,4
+39005559,1866473,5
+39005559,1866473,5
+75673953,1866473,3
+lindsayzyh,1866473,5
+52372728,1866473,4
+6642488,1866473,4
+3116029,1866473,4
+foxlovewhitecat,1866473,5
+70805460,1866473,4
+77405783,1866473,4
+52424511,1866473,4
+43342048,1866473,5
+51249854,1866473,4
+120182003,1866473,4
+38785285,1866473,4
+chloecin,1866473,4
+violetsnow,1866473,5
+125644658,1866473,5
+72606790,1866473,3
+64040953,1866473,2
+70294263,1866473,5
+niuyiniu,1866473,4
+44121177,1866473,5
+72147052,1866473,5
+keichan,1866473,4
+guitar_poker,1866473,4
+47098539,1866473,4
+WOW444321,1866473,5
+eaudevie,1866473,4
+48383608,1866473,5
+akinotsubasa,1866473,5
+ryanhsueh,1866473,3
+JudahXIII,1866473,4
+33010059,1866473,3
+38606077,1866473,5
+77774632,1866473,4
+TDlemon1900,1866473,4
+cheergoll,1866473,3
+73807448,1866473,4
+132576897,1866473,4
+hutiehua,1866473,3
+beckhong,1866473,3
+46655518,1866473,4
+er953921,1866473,4
+sofialiu,1866473,5
+pigeye,1866473,4
+61553011,1866473,1
+84593268,1866473,4
+3877363,1866473,4
+badvoice,1866473,4
+44531163,1866473,5
+80014838,1866473,3
+cube4you,1866473,4
+59070757,1866473,2
+59220796,1866473,5
+57840199,1866473,4
+88789846,1866473,3
+King-H,1866473,4
+2363090,1866473,4
+Kateya,1866473,4
+101017245,1866473,5
+101017245,1866473,5
+4294774,1866473,3
+90470774,1866473,4
+8078899,1866473,5
+75874006,1866473,4
+zuohengheng,1866473,5
+89066076,1866473,4
+33382680,1866473,-1
+hdkoo,1866473,4
+3931252,1866473,4
+134907491,1866473,3
+85174401,1866473,4
+103415108,1866473,3
+62292922,1866473,4
+97647405,1866473,4
+55561510,1866473,5
+3874583,1866473,4
+82963896,1866473,5
+meowchang,1866473,4
+88002306,1866473,5
+Minaptx4869,1866473,3
+2380878,1866473,4
+KinO_O,1866473,5
+48672114,1866473,4
+ms0604,1866473,4
+76933799,1866473,4
+74104010,1866473,4
+marilyncooper,1866473,3
+riusmary,1866473,2
+36446265,1866473,4
+djn1399,1866473,4
+46767134,1866473,4
+kaka_elsie,1866473,4
+3671639,1866473,4
+52628233,1866473,4
+shaguameng,1866473,4
+36967110,1866473,3
+piecelost,1866473,5
+68058633,1866473,4
+summer_waiting,1866473,5
+78303309,1866473,-1
+lingsky36,1866473,4
+guanyu19920623,1866473,4
+85038783,1866473,4
+xlew,1866473,5
+sum.,1866473,4
+58392849,1866473,5
+claire1101,1866473,4
+63592658,1866473,4
+xunlaoxia,1866473,4
+36882093,1866473,4
+3616332,1866473,3
+suki0704,1866473,4
+3613680,1866473,4
+Mrssin,1866473,4
+61513949,1866473,3
+dandan0451,1866473,4
+baby861708,1866473,2
+jackiekuo,1866473,3
+53266040,1866473,4
+53266040,1866473,4
+satan_mark,1866473,5
+onederful,1866473,4
+13993334,1866473,4
+36123963,1866473,3
+1160337,1866473,4
+kugar,1866473,5
+youming1029,1866473,4
+cnsjw,1866473,4
+dearing,1866473,3
+52145035,1866473,5
+44699129,1866473,4
+pygmalio,1866473,4
+KennySiliver,1866473,4
+61715256,1866473,3
+yogurt2202,1866473,4
+48841040,1866473,3
+vaniadyq,1866473,4
+litian19890502,1866473,4
+60655749,1866473,4
+60655749,1866473,4
+43253714,1866473,3
+thav,1866473,5
+sixer1005,1866473,3
+stingroger,1866473,3
+54475855,1866473,4
+daisy-mint,1866473,4
+59568163,1866473,3
+ggqgu,1866473,3
+51803624,1866473,4
+EvilCat,1866473,4
+3253504,1866473,4
+xiaohundexiaoba,1866473,4
+Q87407845,1866473,5
+1050739,1866473,4
+moon6fly,1866473,4
+76770413,1866473,4
+snow-drop,1866473,3
+lzzsadr,1866473,4
+joy1015,1866473,4
+75474977,1866473,4
+49035105,1866473,3
+97645479,1866473,3
+32019435,1866473,3
+thunderous,1866473,3
+4581750,1866473,5
+elric07,1866473,4
+kuizihai,1866473,3
+deepe,1866473,3
+fanclrice,1866473,3
+tosummer,1866473,3
+sinpoooo,1866473,2
+jingchengzhu,1866473,4
+44585968,1866473,4
+1110575,1866473,3
+131680692,1866473,5
+BiXiaoBengZhuRe,1866473,4
+maertaren,1866473,4
+48484472,1866473,5
+ciciw,1866473,3
+81666344,1866473,4
+55834107,1866473,4
+62662906,1866473,5
+antime,1866473,4
+4131597,1866473,4
+133967176,1866473,3
+58581987,1866473,5
+48608024,1866473,4
+43820792,1866473,3
+35051373,1866473,4
+wy320,1866473,5
+124408864,1866473,4
+50005636,1866473,5
+127080428,1866473,5
+54454274,1866473,4
+phoebe0225,1866473,4
+54330575,1866473,5
+mona.c,1866473,4
+114082783,1866473,5
+zhouyaooo,1866473,5
+eslier,1866473,2
+55457012,1866473,2
+90402607,1866473,4
+62711685,1866473,4
+29822921,1866473,5
+ismm,1866473,-1
+66593618,1866473,4
+s-a-d,1866473,5
+47653456,1866473,3
+63796277,1866473,4
+45088175,1866473,3
+pigrui001,1866473,4
+greengina,1866473,4
+58519184,1866473,4
+56752174,1866473,4
+83667346,1866473,4
+chemicalromance,1866473,4
+ala7lee,1866473,3
+1589677,1866473,3
+65174372,1866473,4
+136194748,1866473,4
+63205590,1866473,3
+jywpl,1866473,4
+54690757,1866473,4
+63924842,1866473,5
+emotion7,1866473,3
+2444430,1866473,5
+happyBabyvv,1866473,4
+58672259,1866473,4
+badapple,1866473,4
+FionaH,1866473,4
+psyence-1,1866473,4
+30569646,1866473,5
+46272390,1866473,1
+sysop,1866473,4
+45278107,1866473,2
+79902852,1866473,5
+wuyulun1211,1866473,4
+13383859,1866473,4
+50545818,1866473,3
+41420695,1866473,4
+92152108,1866473,5
+46482640,1866473,4
+Chiunotfortoday,1866473,5
+3936749,1866473,5
+ivyuan,1866473,4
+FIONAMOK,1866473,4
+46206481,1866473,-1
+zoe2punk,1866473,4
+61390468,1866473,4
+xuyuhong,1866473,4
+62491833,1866473,4
+118269905,1866473,4
+36518040,1866473,5
+53397908,1866473,3
+iskl,1866473,4
+leeeyuan00,1866473,4
+74033673,1866473,3
+101324733,1866473,4
+essies,1866473,4
+misswatermelon,1866473,4
+chaoszt,1866473,5
+1233601,1866473,4
+75835017,1866473,3
+56572401,1866473,5
+46810832,1866473,5
+61515893,1866473,5
+127552693,1866473,2
+92268711,1866473,4
+lwl8823,1866473,4
+izaijin,1866473,4
+101963490,1866473,5
+lullaby_ly,1866473,4
+XiaXiaokuan,1866473,3
+49710379,1866473,3
+jackchen,1866473,5
+54608680,1866473,5
+ya45010424,1866473,4
+sky147,1866473,3
+Evarnold,1866473,4
+51419685,1866473,4
+51362438,1866473,4
+4905483,1866473,-1
+57488053,1866473,5
+127996669,1866473,4
+3111466,1866473,4
+sunnyfify,1866473,4
+47195868,1866473,5
+68163117,1866473,5
+42360628,1866473,3
+3220635,1866473,4
+63646276,1866473,4
+55864034,1866473,3
+60980785,1866473,5
+bejieforever,1866473,3
+guxingao,1866473,4
+52561499,1866473,3
+17672710,1866473,2
+47212439,1866473,3
+oldmanriver,1866473,4
+134163547,1866473,5
+136379671,1866473,4
+zhouyuan0124,1866473,5
+22725672,1866473,5
+49118645,1866473,3
+childream,1866473,3
+BIN_CHANG,1866473,4
+25560643,1866473,4
+30119648,1866473,4
+131064576,1866473,5
+rollin,1866473,3
+14306703,1866473,4
+fannie7,1866473,3
+76589851,1866473,3
+54970580,1866473,5
+xxfuuuuu,1866473,4
+55931553,1866473,3
+16073149,1866473,4
+53474235,1866473,4
+73299919,1866473,5
+119267623,1866473,4
+57680535,1866473,-1
+46058827,1866473,4
+85483552,1866473,4
+52766430,1866473,4
+laurayyw,1866473,3
+soundless618,1866473,5
+starHSE,1866473,3
+82834599,1866473,4
+F1vese7enone,1866473,5
+48487891,1866473,5
+47373898,1866473,4
+mlzizi,1866473,4
+loserisit,1866473,5
+gekun,1866473,4
+56976495,1866473,4
+73538837,1866473,3
+4685842,1866473,4
+35578162,1866473,4
+122789390,1866473,3
+39863821,1866473,4
+tiffanyji,1866473,5
+2818730,1866473,4
+50880876,1866473,4
+Jobszhuisui9,1866473,4
+2753727,1866473,4
+another_Leo,1866473,5
+onelast,1866473,4
+Wblb9,1866473,4
+68294657,1866473,3
+58921825,1866473,4
+3946199,1866473,3
+91583375,1866473,3
+ileonwii,1866473,4
+30578327,1866473,4
+asha19,1866473,3
+holy_ml,1866473,5
+122508583,1866473,4
+duduxiongzhifu,1866473,2
+saoppitig,1866473,4
+37628489,1866473,4
+tomatoANDpotato,1866473,-1
+128112191,1866473,4
+choulaoya,1866473,4
+Pallas_Athena,1866473,3
+120099521,1866473,3
+136376546,1866473,5
+boyeen,1866473,3
+89270889,1866473,5
+53398087,1866473,4
+41541704,1866473,5
+132386823,1866473,4
+tongzai,1866473,4
+lailai_tu,1866473,4
+kackl,1866473,3
+114677427,1866473,4
+55466368,1866473,4
+bbmonkey,1866473,4
+51299801,1866473,5
+63606511,1866473,3
+84785338,1866473,3
+wgj4,1866473,4
+fatwolf,1866473,-1
+67329290,1866473,5
+52322425,1866473,5
+34234049,1866473,5
+12232981,1866473,4
+79770015,1866473,4
+71337437,1866473,5
+dandangobelieve,1866473,-1
+80346808,1866473,4
+53554219,1866473,3
+mxl1988,1866473,4
+wangshuailong,1866473,4
+81521718,1866473,4
+61416355,1866473,4
+55683912,1866473,4
+cloverwish,1866473,5
+44345461,1866473,4
+71667852,1866473,5
+74985362,1866473,5
+60127747,1866473,3
+silvergrey,1866473,4
+tricky_V,1866473,4
+71680452,1866473,3
+50015300,1866473,4
+60223940,1866473,4
+73843195,1866473,4
+chevalier7,1866473,4
+54133944,1866473,3
+urani,1866473,4
+66207629,1866473,3
+sallyvivi,1866473,4
+49878108,1866473,4
+40140527,1866473,4
+79693169,1866473,4
+45324744,1866473,5
+fanfankuaipao,1866473,4
+3983967,1866473,3
+55953352,1866473,3
+90612297,1866473,5
+2180309,1866473,3
+46009561,1866473,4
+62276848,1866473,5
+68621390,1866473,3
+necoforest,1866473,4
+78412332,1866473,4
+61248862,1866473,5
+icsky,1866473,5
+VampirX,1866473,5
+134408913,1866473,4
+amour123,1866473,5
+oracle33,1866473,3
+jetamit,1866473,3
+120002421,1866473,5
+31452599,1866473,5
+27300561,1866473,5
+bestkfx,1866473,5
+BELINDA.S,1866473,4
+goofy-G,1866473,5
+4016925,1866473,5
+52917026,1866473,5
+94040558,1866473,5
+1659209,1866473,4
+48932342,1866473,4
+3223208,1866473,-1
+floraxu,1866473,4
+66640479,1866473,4
+50861907,1866473,5
+momo_pan,1866473,3
+grass_tree,1866473,4
+114284723,1866473,4
+kadanny,1866473,4
+38863376,1866473,3
+bunnydoll,1866473,4
+silencewong,1866473,3
+4279046,1866473,3
+70202233,1866473,4
+krugwoman,1866473,3
+63626048,1866473,4
+63218646,1866473,3
+Ane1114,1866473,3
+artwalk,1866473,4
+45537891,1866473,4
+45718170,1866473,5
+vivi00,1866473,4
+65038272,1866473,4
+xly7788,1866473,4
+57459956,1866473,2
+91263818,1866473,3
+52399993,1866473,3
+136371607,1866473,4
+51113045,1866473,4
+136320790,1866473,3
+23645101,1866473,5
+seeuyuki,1866473,5
+49285712,1866473,5
+shenxuzhu,1866473,4
+127704028,1866473,3
+Crystal1411,1866473,4
+memorymia,1866473,4
+agreedoes,1866473,4
+39670803,1866473,5
+4516843,1866473,2
+joyful_jojo,1866473,4
+anxel,1866473,-1
+89082243,1866473,4
+39829339,1866473,4
+43896457,1866473,3
+26740977,1866473,3
+bilis,1866473,3
+lanyingxiang,1866473,4
+74545384,1866473,3
+mikafish,1866473,5
+46133817,1866473,4
+dousei,1866473,4
+130654365,1866473,4
+2504247,1866473,4
+1259506,1866473,3
+longxsen,1866473,4
+57065086,1866473,4
+69442423,1866473,2
+61682333,1866473,4
+52273132,1866473,5
+13262103,1866473,3
+51084713,1866473,5
+8402449,1866473,4
+godnightoldtime,1866473,4
+76081150,1866473,5
+56758013,1866473,4
+49620873,1866473,3
+ivyfire,1866473,4
+59945460,1866473,5
+69854098,1866473,4
+wenjunlwj,1866473,5
+103622140,1866473,4
+92966403,1866473,4
+103629204,1866473,4
+3974458,1866473,3
+2211361,1866473,3
+3974458,1866473,3
+2211361,1866473,3
+38090828,1866473,5
+3520940,1866473,4
+eastease,1866473,3
+83011742,1866473,4
+2744514,1866473,3
+Lotosschnee,1866473,4
+Schneestark,1866473,5
+summer712,1866473,4
+chunfenghuayu23,1866473,3
+66627403,1866473,3
+73587524,1866473,3
+30658509,1866473,5
+zhengminlive,1866473,2
+16807244,1866473,4
+Zukunft,1866473,4
+51855205,1866473,4
+1460780,1866473,4
+42400951,1866473,5
+4244381,1866473,3
+127803773,1866473,5
+52442754,1866473,3
+neflower,1866473,4
+45283092,1866473,5
+50699782,1866473,4
+ihaveafreeheart,1866473,3
+57754572,1866473,4
+homegirl223,1866473,4
+48781656,1866473,5
+lj-family,1866473,2
+3478294,1866473,4
+75801738,1866473,4
+ifesherry,1866473,5
+58267808,1866473,3
+titsi,1866473,5
+3246025,1866473,4
+2273373,1866473,-1
+2106137,1866473,5
+52106062,1866473,5
+35409946,1866473,4
+odayumi,1866473,5
+49910264,1866473,3
+tintingo,1866473,4
+72685963,1866473,3
+zizon,1866473,3
+dhlingchi,1866473,3
+68002540,1866473,5
+lyc67,1866473,3
+48599230,1866473,4
+kuensun,1866473,3
+xiloxilo,1866473,4
+71016752,1866473,3
+57401508,1866473,4
+70806910,1866473,5
+83377255,1866473,4
+gerralonso,1866473,4
+57144002,1866473,4
+48058863,1866473,5
+53065014,1866473,5
+3765207,1866473,3
+115467690,1866473,4
+57004061,1866473,4
+72101886,1866473,5
+d99,1866473,4
+guxiaomo321,1866473,3
+93375016,1866473,3
+40829345,1866473,-1
+harrylyx,1866473,5
+Mrs.Myself,1866473,4
+69327148,1866473,3
+zhanghang525,1866473,4
+ParadiseOfFilm,1866473,3
+elishaw,1866473,5
+duodu,1866473,4
+125773849,1866473,5
+vividcake,1866473,4
+conansense,1866473,4
+Wenqian,1866473,3
+63827792,1866473,-1
+63095265,1866473,3
+1532624,1866473,3
+46411162,1866473,5
+44276090,1866473,3
+55970012,1866473,3
+Creep_v,1866473,5
+52429464,1866473,4
+53486418,1866473,4
+Jusmine,1866473,4
+61613671,1866473,5
+3341822,1866473,5
+50169026,1866473,5
+6578851,1866473,4
+104489015,1866473,4
+feelzyl,1866473,4
+1177237,1866473,4
+yylovekhalil,1866473,4
+53486329,1866473,4
+58281873,1866473,4
+119838921,1866473,2
+4447712,1866473,3
+135753239,1866473,5
+lazycatsn,1866473,-1
+88047322,1866473,4
+gavinturkey,1866473,4
+3759585,1866473,4
+58544664,1866473,4
+18416992,1866473,4
+135357583,1866473,2
+43269558,1866473,1
+133153060,1866473,4
+enterzhu,1866473,5
+47414610,1866473,3
+1151347,1866473,4
+80234954,1866473,4
+59991352,1866473,3
+45503087,1866473,5
+4856520,1866473,3
+65233252,1866473,4
+51258253,1866473,4
+bianhan,1866473,3
+68708613,1866473,4
+jicheng1993,1866473,4
+133190133,1866473,4
+creepofhuihui,1866473,4
+squaremc,1866473,4
+52854839,1866473,3
+iyvette,1866473,3
+izune,1866473,3
+lfyaya,1866473,4
+49660684,1866473,4
+Sinept,1866473,3
+weiranwei,1866473,-1
+zsy_azure,1866473,4
+cnxh,1866473,4
+30674711,1866473,5
+71947752,1866473,3
+127975111,1866473,4
+7511995,1866473,3
+60853996,1866473,4
+81430185,1866473,5
+4879557,1866473,4
+yizhaisansheng,1866473,5
+67828663,1866473,4
+2940152,1866473,3
+zhuoshang,1866473,4
+itomayuki,1866473,3
+EI-Vmy,1866473,4
+89039670,1866473,3
+baomu,1866473,3
+i_amshelia,1866473,4
+heartrick,1866473,4
+59649180,1866473,1
+58078105,1866473,5
+4760755,1866473,4
+49090392,1866473,3
+126980086,1866473,3
+129008962,1866473,5
+1693083,1866473,4
+xuyuhaouriz,1866473,5
+67968935,1866473,2
+WakeUpDead,1866473,5
+81197029,1866473,4
+crowdedstars,1866473,4
+3307476,1866473,4
+101915583,1866473,4
+albuswu,1866473,4
+yangyiyin,1866473,4
+123264996,1866473,3
+49134258,1866473,4
+Phyllis5,1866473,3
+16960582,1866473,3
+96761951,1866473,4
+tasuka_l,1866473,3
+2918978,1866473,4
+fyerl,1866473,4
+52428606,1866473,2
+32569876,1866473,4
+122270068,1866473,4
+84170507,1866473,3
+84170507,1866473,3
+60290035,1866473,4
+2911285,1866473,-1
+28904947,1866473,3
+124467661,1866473,4
+m549990625,1866473,4
+liujinlin,1866473,4
+4228422,1866473,3
+72673508,1866473,4
+xianzuo,1866473,5
+57355391,1866473,5
+1806087,1866473,3
+128742398,1866473,3
+2286926,1866473,4
+121318701,1866473,3
+kidkid,1866473,-1
+yummygirl,1866473,4
+hanxu521,1866473,5
+WeezyShady,1866473,5
+vinnywang,1866473,4
+vinnywang,1866473,4
+41386230,1866473,4
+47519598,1866473,4
+20665537,1866473,3
+yinchuanfu,1866473,4
+52941661,1866473,3
+67143504,1866473,4
+43171172,1866473,5
+135314519,1866473,3
+66286560,1866473,5
+69048541,1866473,3
+sevendream129,1866473,4
+jxy625,1866473,3
+48218125,1866473,3
+136113347,1866473,4
+50410126,1866473,4
+1550413,1866473,4
+52098538,1866473,3
+79583588,1866473,4
+elainehsu,1866473,4
+49629073,1866473,4
+24989214,1866473,5
+3783012,1866473,4
+2943288,1866473,4
+49757941,1866473,5
+3020797,1866473,4
+sonicxs,1866473,3
+61532678,1866473,4
+22914904,1866473,4
+60625092,1866473,5
+59097857,1866473,3
+119557936,1866473,3
+59083879,1866473,4
+wenqianmoshen,1866473,4
+kinjio,1866473,4
+61573146,1866473,3
+53067576,1866473,-1
+59803560,1866473,4
+daisyhantt,1866473,4
+11889754,1866473,4
+45234987,1866473,4
+alessioliu,1866473,3
+49721724,1866473,4
+4114869,1866473,5
+68759882,1866473,4
+zsc1995,1866473,4
+60880769,1866473,5
+akert,1866473,4
+garyelephant,1866473,4
+49544994,1866473,4
+54382756,1866473,4
+babyblue,1866473,5
+lianwei,1866473,4
+44356747,1866473,4
+44045443,1866473,3
+74249669,1866473,4
+88213659,1866473,5
+28853372,1866473,3
+48119914,1866473,2
+Alienzhao,1866473,3
+yuanzedong,1866473,4
+couple1314,1866473,4
+56936714,1866473,4
+shouting0,1866473,3
+runcastor,1866473,5
+130603786,1866473,5
+83895101,1866473,5
+alphard0615,1866473,4
+chanyochen,1866473,4
+62740578,1866473,4
+wilhelmina,1866473,4
+54571422,1866473,3
+102435306,1866473,4
+zhuobielin,1866473,3
+2894410,1866473,4
+kevinlew,1866473,4
+46120245,1866473,4
+65100690,1866473,5
+79605736,1866473,4
+38161901,1866473,5
+Iamzhexuan,1866473,4
+w_weixing,1866473,3
+26523193,1866473,3
+71756751,1866473,4
+79734997,1866473,4
+LxiaoY0214,1866473,5
+yifanElle,1866473,5
+lokolifestyle,1866473,4
+48216088,1866473,3
+133695436,1866473,3
+84169379,1866473,4
+impossible_ww,1866473,5
+4093312,1866473,3
+68076968,1866473,3
+yan6,1866473,4
+50531079,1866473,4
+54856887,1866473,4
+48179378,1866473,3
+veronicahan,1866473,4
+blindye,1866473,3
+59688106,1866473,4
+58594728,1866473,3
+pengpeng,1866473,3
+happysadop,1866473,4
+71093640,1866473,4
+78657454,1866473,5
+wqqingtian,1866473,3
+wuzouhuanghun,1866473,3
+merryliang,1866473,4
+134275392,1866473,3
+72098592,1866473,4
+allenduane,1866473,5
+1791431,1866473,4
+47390120,1866473,4
+82890862,1866473,3
+60418082,1866473,4
+111584714,1866473,3
+3071518,1866473,4
+53626533,1866473,3
+73496560,1866473,4
+62095303,1866473,4
+68907023,1866473,4
+aircrow,1866473,4
+3442167,1866473,4
+60279891,1866473,5
+yan920131,1866473,5
+qiaomai,1866473,4
+91304159,1866473,3
+Ruty1985,1866473,5
+uranus_taotao,1866473,4
+57456072,1866473,4
+qingfengpushang,1866473,4
+62976329,1866473,4
+3243016,1866473,5
+miyavivicky,1866473,5
+135934616,1866473,3
+65309880,1866473,-1
+hjsdlcdbb,1866473,4
+mangoshushu,1866473,5
+lxzyen,1866473,4
+2642171,1866473,4
+tea123,1866473,4
+1456080,1866473,4
+56165832,1866473,4
+78240226,1866473,4
+24419346,1866473,3
+wph546635812,1866473,4
+cjcn,1866473,4
+ivydreamer17,1866473,5
+eddychaw,1866473,2
+qmx1025,1866473,3
+46829398,1866473,5
+130289224,1866473,4
+43409918,1866473,4
+hellofriday,1866473,3
+sissiazhang,1866473,3
+50657422,1866473,4
+laozo,1866473,4
+2266233,1866473,4
+46843516,1866473,4
+l44398821,1866473,4
+garconne,1866473,4
+4404541,1866473,4
+65402284,1866473,5
+2429836,1866473,5
+yukimaru,1866473,5
+KGB1997,1866473,4
+3146294,1866473,4
+78850337,1866473,3
+61328690,1866473,4
+49478990,1866473,3
+87942128,1866473,4
+kaarlo,1866473,2
+49167865,1866473,5
+56487740,1866473,4
+4010650,1866473,3
+fuyulovehyde,1866473,4
+71085689,1866473,3
+liujinjie,1866473,3
+90325710,1866473,4
+85482709,1866473,3
+Little__Annie,1866473,5
+40934646,1866473,4
+zenlife,1866473,3
+puppy33,1866473,3
+51766927,1866473,4
+51139499,1866473,3
+122701852,1866473,4
+scorlinger,1866473,3
+Hxm_F,1866473,4
+Cheney__,1866473,4
+30714456,1866473,5
+37526876,1866473,4
+Cenux,1866473,4
+wangxiaoma27,1866473,4
+34835739,1866473,4
+49847024,1866473,5
+4088278,1866473,3
+61085061,1866473,4
+48591299,1866473,4
+76017260,1866473,5
+74275879,1866473,1
+62926087,1866473,4
+133401752,1866473,4
+LinuxPlusPlus,1866473,3
+80718552,1866473,5
+60039385,1866473,4
+42342580,1866473,-1
+oldwolfnwf,1866473,5
+37029015,1866473,5
+51828462,1866473,2
+82935134,1866473,4
+66048476,1866473,4
+92119764,1866473,4
+128958875,1866473,1
+98052973,1866473,4
+44703064,1866473,3
+sanggolden,1866473,3
+3566462,1866473,5
+Janla,1866473,4
+57813879,1866473,4
+128855763,1866473,4
+asglass,1866473,4
+3910855,1866473,3
+quanzaidouban,1866473,-1
+52128308,1866473,3
+jianghan1217,1866473,3
+132086884,1866473,4
+93807160,1866473,5
+123961251,1866473,5
+2382205,1866473,4
+wlj13626,1866473,3
+1856131,1866473,4
+44774536,1866473,3
+colisa,1866473,3
+cicihappy,1866473,4
+4190834,1866473,3
+50293369,1866473,3
+emma70707,1866473,2
+68401918,1866473,4
+65738214,1866473,3
+lolimoe,1866473,4
+87997485,1866473,4
+4549412,1866473,3
+61068131,1866473,3
+NikkiG,1866473,3
+ct1965,1866473,4
+aimaox,1866473,4
+siyun,1866473,4
+3501858,1866473,-1
+1452797,1866473,3
+87555900,1866473,5
+44046836,1866473,3
+zkxloveytt,1866473,3
+Innerplant,1866473,3
+graceyuan,1866473,3
+76429645,1866473,5
+Jake52592,1866473,4
+dujiachen,1866473,4
+snowbusy,1866473,-1
+OnlyCoffee,1866473,5
+63873168,1866473,4
+45784298,1866473,5
+Frienky,1866473,5
+58606962,1866473,3
+87869082,1866473,5
+47019091,1866473,5
+80071306,1866473,3
+junkyler,1866473,3
+4564418,1866473,3
+57770188,1866473,4
+fooox,1866473,3
+bb0708,1866473,3
+43127835,1866473,5
+58429338,1866473,4
+foggyjungle,1866473,5
+moonglade,1866473,4
+78589161,1866473,5
+fei19960602,1866473,3
+85347919,1866473,4
+57366467,1866473,-1
+tyu,1866473,5
+73766860,1866473,5
+98939749,1866473,4
+36103097,1866473,4
+121205980,1866473,5
+51978662,1866473,4
+47297112,1866473,4
+65415712,1866473,4
+ielit,1866473,4
+Kevin3,1866473,3
+47331203,1866473,5
+131147743,1866473,4
+56528486,1866473,4
+winkyia,1866473,3
+ebbywong,1866473,5
+tangmenxiaosan,1866473,3
+65266454,1866473,4
+83108940,1866473,4
+32033776,1866473,3
+4618269,1866473,4
+16413618,1866473,2
+2298209,1866473,5
+Demo21,1866473,4
+39532785,1866473,4
+djoko,1866473,3
+imscaty,1866473,4
+tonyzhao,1866473,4
+61249567,1866473,4
+57970979,1866473,4
+choushanzi,1866473,4
+44132837,1866473,3
+55555236,1866473,4
+103251122,1866473,5
+97319028,1866473,4
+46085016,1866473,4
+68445549,1866473,4
+43743828,1866473,4
+40596238,1866473,4
+cuisandy,1866473,3
+foolishrabbit,1866473,5
+72869594,1866473,3
+53073700,1866473,5
+62475981,1866473,4
+74448596,1866473,3
+47357292,1866473,1
+67116666,1866473,4
+45780268,1866473,5
+Anh.zz,1866473,5
+17354448,1866473,4
+ninerock,1866473,4
+33684021,1866473,3
+lying0,1866473,3
+121137821,1866473,3
+tiffanieee,1866473,4
+icepussy,1866473,2
+62749686,1866473,5
+70746193,1866473,3
+82406719,1866473,3
+49091580,1866473,2
+55745830,1866473,5
+freemagic1988,1866473,3
+130758637,1866473,5
+129994477,1866473,4
+89187056,1866473,4
+40161822,1866473,5
+103252658,1866473,4
+55321398,1866473,5
+56388358,1866473,5
+46702310,1866473,4
+73678720,1866473,4
+miss_coffee,1866473,4
+108808730,1866473,4
+51639633,1866473,3
+63121073,1866473,4
+alar,1866473,3
+BackToNight,1866473,1
+daliaodelinju,1866473,4
+49813166,1866473,4
+3353047,1866473,3
+53896807,1866473,3
+51454938,1866473,5
+2161651,1866473,4
+52826626,1866473,4
+85574139,1866473,5
+mynange,1866473,5
+60055945,1866473,4
+kyo_21,1866473,3
+129553485,1866473,5
+44225857,1866473,5
+yongzhenkaiyuan,1866473,3
+82225761,1866473,5
+4290099,1866473,4
+40547313,1866473,4
+97438200,1866473,4
+tianjianshuo,1866473,5
+54463600,1866473,4
+49565536,1866473,4
+54365638,1866473,5
+52655521,1866473,4
+hujing324,1866473,3
+qdzdyg,1866473,5
+aichendouban,1866473,4
+121471027,1866473,5
+RaphaelDeng,1866473,5
+52548060,1866473,3
+2495913,1866473,4
+50356511,1866473,3
+2401362,1866473,2
+virginiaboat,1866473,-1
+1084593,1866473,4
+4603863,1866473,3
+greenlifehi,1866473,3
+40154979,1866473,4
+xilouchen,1866473,3
+50415311,1866473,4
+heyan0225,1866473,4
+68692876,1866473,5
+natureotr,1866473,4
+iatihs,1866473,3
+secretcat,1866473,4
+bluebellforest,1866473,4
+AtlantisJ,1866473,4
+49365587,1866473,4
+moszz,1866473,4
+wangliuchi,1866473,4
+75361006,1866473,3
+135374569,1866473,3
+veronbb,1866473,4
+91458179,1866473,4
+133291470,1866473,4
+1594219,1866473,3
+45223979,1866473,4
+15542930,1866473,3
+40302528,1866473,5
+63202867,1866473,3
+36360632,1866473,3
+xinxinyu,1866473,4
+2620783,1866473,4
+1159782,1866473,4
+135118827,1866473,4
+MissLynn11,1866473,3
+1274922,1866473,4
+51733805,1866473,4
+cecilia_kim,1866473,3
+63822332,1866473,4
+darrenskywalker,1866473,4
+70526264,1866473,5
+volcancano,1866473,4
+lintao,1866473,4
+42832142,1866473,5
+65059952,1866473,4
+65813423,1866473,3
+nalusea,1866473,4
+xslidian,1866473,1
+58784233,1866473,3
+49986348,1866473,5
+58581778,1866473,5
+131823699,1866473,4
+willlove,1866473,5
+Eie10_9,1866473,4
+59110822,1866473,5
+54174425,1866473,5
+hongdoushanuomi,1866473,4
+realcaptain,1866473,3
+ladymashroom,1866473,4
+jiaosally,1866473,4
+fanxiaodong,1866473,4
+77659937,1866473,5
+76368408,1866473,4
+69420876,1866473,4
+82764407,1866473,5
+43682836,1866473,4
+1218753,1866473,4
+58249428,1866473,4
+119078211,1866473,4
+czj950615,1866473,3
+52357717,1866473,5
+44519549,1866473,5
+84479943,1866473,4
+44966176,1866473,5
+49949268,1866473,4
+49215844,1866473,3
+103793768,1866473,3
+zz556677,1866473,5
+kisto1989,1866473,3
+48970909,1866473,4
+53782984,1866473,4
+58624199,1866473,3
+119166720,1866473,4
+67194881,1866473,4
+58537687,1866473,4
+zhangshuashua,1866473,4
+homebody,1866473,-1
+49273270,1866473,3
+73281520,1866473,5
+53769380,1866473,5
+48506705,1866473,3
+mississippi0071,1866473,1
+36108304,1866473,4
+Ben_Sunderland,1866473,3
+57772675,1866473,3
+59236586,1866473,4
+63089726,1866473,4
+69302580,1866473,4
+3734035,1866473,3
+celt,1866473,3
+64240261,1866473,4
+yangyijie17,1866473,5
+33250269,1866473,3
+xbq1113,1866473,4
+51763291,1866473,4
+44182814,1866473,4
+solavre,1866473,4
+45864291,1866473,4
+sophieluvluca,1866473,5
+huaanhuang,1866473,5
+60300095,1866473,3
+EnronZhao,1866473,5
+Alexistding,1866473,-1
+ToscanaSole,1866473,5
+53632507,1866473,3
+68013424,1866473,4
+33991254,1866473,3
+sara1992,1866473,5
+yingyan1231,1866473,3
+uhuruqingcheng,1866473,3
+46944255,1866473,5
+54614500,1866473,4
+91073792,1866473,4
+huangxie,1866473,3
+61415856,1866473,4
+nonowhy,1866473,5
+ReyRab,1866473,4
+55328158,1866473,4
+69805658,1866473,3
+65092694,1866473,4
+gps730,1866473,4
+yinhun,1866473,5
+14453874,1866473,4
+54537877,1866473,4
+wowWicgam,1866473,5
+doufutou,1866473,5
+gentlepuppy,1866473,3
+enjoy826,1866473,3
+skyw510,1866473,5
+maydaylyn,1866473,4
+2209906,1866473,5
+salmonMing,1866473,4
+YoNasiti,1866473,5
+46032671,1866473,4
+122127116,1866473,5
+49012459,1866473,3
+135396673,1866473,3
+75192516,1866473,4
+135799063,1866473,4
+3742976,1866473,3
+zoneone,1866473,4
+79381337,1866473,5
+romance90,1866473,3
+59100232,1866473,5
+BURIALBLACK,1866473,5
+4617786,1866473,5
+eyesfromacat,1866473,5
+49764228,1866473,5
+linsio,1866473,4
+bikibiki,1866473,4
+51224776,1866473,4
+130167204,1866473,4
+68337058,1866473,5
+56493831,1866473,5
+fongfongziv1600,1866473,4
+133968412,1866473,3
+eldard,1866473,4
+58992948,1866473,4
+45226797,1866473,4
+zqsnail121,1866473,4
+71325468,1866473,4
+1340085,1866473,3
+63030961,1866473,5
+62129234,1866473,4
+zoehuan,1866473,3
+49884357,1866473,3
+96171694,1866473,5
+chriseva,1866473,4
+122394659,1866473,5
+85179488,1866473,3
+baijie8412,1866473,5
+50423855,1866473,3
+69529350,1866473,4
+44275428,1866473,3
+71305067,1866473,5
+superrao,1866473,4
+34950703,1866473,3
+44349376,1866473,4
+59862121,1866473,3
+71938024,1866473,3
+49484848,1866473,4
+55605353,1866473,5
+ask4more,1866473,3
+baibailin,1866473,4
+Perhaps_Green,1866473,4
+thekooks,1866473,2
+73118174,1866473,4
+50486951,1866473,4
+nana_007,1866473,4
+28881965,1866473,4
+59110325,1866473,4
+75400416,1866473,4
+63143290,1866473,3
+languheshang,1866473,3
+Rabbittooth,1866473,5
+33729211,1866473,3
+44599506,1866473,3
+124668726,1866473,5
+51999705,1866473,3
+71302732,1866473,4
+Fishisme,1866473,5
+45959791,1866473,4
+133815703,1866473,3
+83445808,1866473,5
+93866634,1866473,2
+74948257,1866473,4
+73903391,1866473,3
+33153903,1866473,-1
+3727154,1866473,4
+JennyDingding,1866473,4
+128666422,1866473,4
+136135349,1866473,4
+yanjing7611,1866473,4
+11973232,1866473,4
+5612926,1866473,3
+49340336,1866473,5
+ca5h,1866473,-1
+2672889,1866473,5
+46469157,1866473,4
+3142248,1866473,5
+guanzihuiji,1866473,3
+shijinqi,1866473,5
+sequel,1866473,3
+120764662,1866473,4
+3609679,1866473,3
+133225593,1866473,5
+1386491,1866473,4
+freedom9611,1866473,4
+61955756,1866473,5
+Amy-QQ,1866473,4
+flyfy,1866473,5
+bluesmilery,1866473,5
+51204884,1866473,4
+50008450,1866473,1
+leisuretimeyun,1866473,4
+91661265,1866473,4
+51265951,1866473,4
+71014294,1866473,4
+3150096,1866473,5
+2060418,1866473,5
+JCsama,1866473,4
+50543598,1866473,3
+52867128,1866473,3
+48806335,1866473,5
+102751216,1866473,3
+6765143,1866473,5
+93638081,1866473,4
+83883222,1866473,3
+47425487,1866473,4
+58762290,1866473,3
+3880595,1866473,4
+sparkleodelia,1866473,4
+zelowawa,1866473,5
+59391832,1866473,4
+106423465,1866473,4
+peggy198644,1866473,5
+57589585,1866473,4
+ronaldojxz,1866473,4
+StupidL,1866473,2
+soloHero,1866473,5
+3818585,1866473,3
+Talushen,1866473,3
+64091286,1866473,3
+52418635,1866473,4
+2137078,1866473,4
+65557756,1866473,3
+40447897,1866473,3
+3814695,1866473,4
+n3ss,1866473,3
+gelsey1992,1866473,4
+3170513,1866473,3
+57048528,1866473,-1
+cyylee,1866473,4
+104517766,1866473,4
+57259895,1866473,5
+46968280,1866473,3
+53440236,1866473,3
+67436507,1866473,4
+116551398,1866473,3
+8872886,1866473,3
+44703220,1866473,1
+46519818,1866473,4
+61621650,1866473,3
+ppfat,1866473,4
+Devilhunter,1866473,3
+xxxxiaoxiao,1866473,-1
+A-sun,1866473,5
+53737366,1866473,4
+66568520,1866473,4
+47564941,1866473,4
+maodou_,1866473,4
+132424913,1866473,4
+70924936,1866473,3
+47514626,1866473,5
+51583738,1866473,4
+43713017,1866473,4
+67176964,1866473,4
+2426246,1866473,4
+tiamat,1866473,4
+WindmillPotato,1866473,5
+45160142,1866473,5
+62600930,1866473,5
+62610096,1866473,4
+9360035,1866473,5
+zhuweina,1866473,4
+106032621,1866473,4
+34946223,1866473,4
+51199402,1866473,4
+Dailaosan,1866473,5
+1701338,1866473,3
+81273832,1866473,4
+79135407,1866473,5
+2444818,1866473,4
+50148866,1866473,4
+diracot,1866473,4
+130968000,1866473,4
+35533635,1866473,4
+leftorright002,1866473,3
+58506046,1866473,5
+naiveal,1866473,4
+luxixi99,1866473,3
+aoqisheng,1866473,3
+46459211,1866473,-1
+65979615,1866473,4
+4166635,1866473,3
+41487335,1866473,5
+121568939,1866473,3
+yrst,1866473,4
+83364239,1866473,3
+anitajoy,1866473,4
+43059614,1866473,3
+126621481,1866473,4
+44849027,1866473,4
+51287977,1866473,5
+jingmowu,1866473,4
+l726,1866473,4
+70663980,1866473,3
+flacual,1866473,4
+55990410,1866473,4
+53784803,1866473,4
+bulijite,1866473,3
+frank1992,1866473,3
+73832904,1866473,5
+73832904,1866473,5
+36686325,1866473,4
+54340888,1866473,4
+63072650,1866473,3
+40003537,1866473,4
+LasciatemiMorir,1866473,3
+veronicaz,1866473,4
+74797419,1866473,-1
+92636187,1866473,4
+49476132,1866473,5
+ianwatson,1866473,5
+113053487,1866473,3
+59038571,1866473,4
+wazbq,1866473,-1
+68304210,1866473,5
+64757557,1866473,4
+29594909,1866473,4
+lily-monica,1866473,4
+50199295,1866473,4
+83974267,1866473,3
+121369705,1866473,4
+2772729,1866473,3
+58901870,1866473,5
+39611534,1866473,3
+aharley,1866473,4
+51082790,1866473,4
+1884591,1866473,4
+44720442,1866473,4
+1498380,1866473,4
+47856992,1866473,3
+54612022,1866473,3
+129012253,1866473,5
+4482032,1866473,3
+edisonmotata,1866473,4
+yaozi0426,1866473,2
+90035714,1866473,3
+88750919,1866473,5
+128063403,1866473,4
+38868421,1866473,4
+58323329,1866473,3
+74073772,1866473,4
+53523221,1866473,5
+44901258,1866473,5
+anthonybb,1866473,5
+48493359,1866473,4
+2039387,1866473,3
+133619820,1866473,3
+50662959,1866473,3
+2170638,1866473,1
+3895080,1866473,4
+violalululu,1866473,3
+47983574,1866473,4
+70160255,1866473,5
+53385600,1866473,4
+129106127,1866473,3
+50649295,1866473,5
+Collins1995,1866473,3
+134898713,1866473,3
+vtmonkey,1866473,3
+freeup157,1866473,3
+freeup157,1866473,3
+13719372,1866473,3
+17289580,1866473,5
+aliiiiis,1866473,4
+65805429,1866473,-1
+mua244,1866473,3
+zyx1990deep,1866473,4
+xiaoyinxuanpapa,1866473,5
+xiawu1130,1866473,3
+cyndio,1866473,3
+63483596,1866473,5
+1359081,1866473,4
+ccppeyre,1866473,3
+54272292,1866473,4
+67695770,1866473,4
+75487013,1866473,4
+49617731,1866473,4
+ccyy1020,1866473,5
+sulphurlee,1866473,4
+princess921129,1866473,4
+anynini,1866473,4
+deczeus,1866473,3
+58123651,1866473,4
+hxiaoyang,1866473,3
+21944459,1866473,4
+129081230,1866473,3
+llleeqh,1866473,4
+34187825,1866473,5
+58344309,1866473,5
+53319331,1866473,4
+57611021,1866473,4
+16366985,1866473,3
+114361347,1866473,3
+AliceTang27,1866473,4
+117348494,1866473,4
+Eeamon,1866473,4
+81304385,1866473,5
+lele480,1866473,3
+sickben,1866473,3
+72230656,1866473,3
+49762857,1866473,4
+48348622,1866473,3
+lovemj4ever,1866473,5
+dreamstealer,1866473,3
+52291295,1866473,5
+4065256,1866473,4
+54123451,1866473,4
+49302309,1866473,3
+120203049,1866473,4
+48276312,1866473,3
+46525176,1866473,4
+zzzt29,1866473,3
+1152785,1866473,2
+mengqingjiao,1866473,4
+108480827,1866473,5
+81221315,1866473,3
+47805986,1866473,3
+64241350,1866473,3
+rakasha,1866473,4
+2310497,1866473,3
+48679133,1866473,5
+ayii,1866473,4
+SKYE_Is_Super,1866473,5
+47548945,1866473,4
+43384535,1866473,5
+135075217,1866473,4
+2655199,1866473,5
+iayunuo,1866473,5
+izane,1866473,3
+2711829,1866473,4
+oranicge,1866473,5
+dzl15,1866473,4
+raphaelife,1866473,4
+zhjwxw,1866473,3
+lutherjho,1866473,4
+xxooxxooxxooxx,1866473,4
+Rachel23,1866473,4
+57295120,1866473,4
+wenteng1988,1866473,3
+132808026,1866473,4
+sapphire_1228,1866473,4
+34885746,1866473,4
+1935443,1866473,3
+imcaspar,1866473,3
+66433144,1866473,3
+movie8,1866473,4
+Allan.Vr,1866473,4
+43504068,1866473,4
+63964754,1866473,4
+102413399,1866473,5
+angeline313,1866473,4
+46170275,1866473,4
+sarabilau2,1866473,3
+53522902,1866473,3
+61069242,1866473,4
+79354060,1866473,4
+53317988,1866473,2
+86585180,1866473,4
+yohoho0,1866473,4
+3880012,1866473,4
+63436061,1866473,3
+ohghost,1866473,3
+131814242,1866473,4
+57684790,1866473,4
+77809977,1866473,5
+82909338,1866473,5
+48036288,1866473,4
+lilyigreg,1866473,5
+4007831,1866473,5
+grantqian,1866473,4
+lizmurray,1866473,4
+zcx1990,1866473,3
+37916151,1866473,-1
+37448450,1866473,4
+Vampire0704,1866473,4
+33598055,1866473,4
+mendishuxiang,1866473,5
+1446460,1866473,4
+53877844,1866473,4
+feeldxy,1866473,3
+12511197,1866473,5
+first_victory,1866473,3
+99027512,1866473,4
+64532388,1866473,5
+vicky_vampire,1866473,5
+jia931218,1866473,4
+63946270,1866473,4
+dearmia,1866473,4
+60854174,1866473,4
+4392294,1866473,3
+starnicky,1866473,4
+107502099,1866473,4
+daisyding08,1866473,4
+58783819,1866473,3
+122920362,1866473,3
+snowbaby217,1866473,5
+42678961,1866473,4
+2364299,1866473,1
+layne37,1866473,5
+56914134,1866473,3
+131914536,1866473,5
+130689340,1866473,5
+57367354,1866473,3
+miyo5,1866473,5
+fiona-cin,1866473,4
+ajuews,1866473,5
+77432698,1866473,4
+52781294,1866473,3
+NINA0220,1866473,5
+3820776,1866473,5
+67509576,1866473,1
+adaxinyi,1866473,4
+powerland,1866473,4
+42918463,1866473,5
+3430040,1866473,-1
+imhjl412,1866473,4
+119192047,1866473,4
+76319059,1866473,4
+1123245,1866473,4
+xiaolxk,1866473,4
+26713841,1866473,4
+fanzii,1866473,4
+81143853,1866473,5
+28966138,1866473,4
+rockerai,1866473,4
+1440164,1866473,5
+suh5213,1866473,5
+57455479,1866473,3
+101433184,1866473,4
+127118502,1866473,3
+weibioh,1866473,3
+39961322,1866473,4
+49274936,1866473,5
+55465032,1866473,4
+51060145,1866473,5
+53546281,1866473,4
+geminige,1866473,4
+fattyme,1866473,4
+90854543,1866473,5
+ephemeral314,1866473,3
+ephemeral314,1866473,3
+sunzeyu,1866473,3
+ranke0129,1866473,4
+4019961,1866473,3
+51524489,1866473,3
+gaolengshaonv,1866473,5
+westleaf,1866473,4
+52872697,1866473,4
+55601920,1866473,4
+crystal53451,1866473,4
+53081049,1866473,3
+63300955,1866473,3
+57983055,1866473,5
+120137624,1866473,3
+55668809,1866473,3
+116282788,1866473,3
+jiujiuprincess,1866473,4
+rainloveyy,1866473,4
+9292090,1866473,4
+weexf,1866473,2
+1534211,1866473,4
+72179400,1866473,4
+83162641,1866473,3
+1717660,1866473,5
+63579399,1866473,4
+64497662,1866473,4
+joyouses,1866473,5
+15027079,1866473,5
+youngoceano,1866473,3
+43822211,1866473,4
+Cecilia925,1866473,3
+caesarphoenix,1866473,2
+48664391,1866473,4
+44670712,1866473,3
+voyasuki,1866473,5
+124514675,1866473,5
+46946236,1866473,4
+88226761,1866473,4
+52385653,1866473,2
+84177108,1866473,4
+53291556,1866473,5
+85341093,1866473,3
+45322158,1866473,4
+guppyfish,1866473,4
+mrcandy,1866473,3
+62532163,1866473,4
+qi_candy,1866473,4
+41470882,1866473,4
+12667477,1866473,4
+1544106,1866473,4
+dounaivivi,1866473,4
+132985387,1866473,3
+2667938,1866473,3
+reira_jxy,1866473,4
+dreamersjcat,1866473,3
+adu2599,1866473,4
+Bening,1866473,4
+121907627,1866473,2
+65738414,1866473,4
+90483519,1866473,4
+90483519,1866473,4
+43397816,1866473,4
+2062966,1866473,3
+linayan,1866473,3
+58924080,1866473,3
+57753980,1866473,2
+52762831,1866473,4
+67681636,1866473,4
+47084632,1866473,3
+93368517,1866473,4
+57825875,1866473,2
+kkheart,1866473,4
+hrm880716,1866473,4
+Shanglinyuan,1866473,4
+1140060,1866473,3
+4453893,1866473,5
+3539409,1866473,4
+53478564,1866473,5
+2467328,1866473,3
+79083151,1866473,3
+60895094,1866473,4
+94763902,1866473,5
+51277324,1866473,4
+55295040,1866473,3
+46861379,1866473,4
+rosemarylucy,1866473,4
+132770225,1866473,4
+76187253,1866473,4
+Monica999xkw,1866473,4
+aliciajun,1866473,5
+1928295,1866473,4
+58383917,1866473,4
+136291795,1866473,-1
+82378885,1866473,3
+87506677,1866473,4
+62671989,1866473,5
+39452521,1866473,4
+77391757,1866473,4
+56867346,1866473,3
+63963645,1866473,4
+57180055,1866473,3
+54986489,1866473,4
+76636398,1866473,5
+KingKongtired,1866473,4
+tunwowo,1866473,4
+51207083,1866473,4
+1010302,1866473,4
+zzy.ll,1866473,5
+130119581,1866473,4
+94337182,1866473,4
+131136009,1866473,4
+134003187,1866473,4
+wdh198807,1866473,4
+abeishishabi,1866473,-1
+shallwe07,1866473,3
+90186328,1866473,4
+zcz1994,1866473,4
+way7wei,1866473,3
+wuyueshizi,1866473,4
+65202824,1866473,5
+49190298,1866473,-1
+bloodxhell,1866473,5
+yixin0liberty,1866473,4
+15666797,1866473,5
+yivi,1866473,5
+1585106,1866473,3
+FFFine,1866473,3
+53936296,1866473,5
+B-Aries,1866473,4
+ms_lily,1866473,3
+114586204,1866473,4
+qyqgpower,1866473,4
+44486984,1866473,3
+79068352,1866473,3
+127196792,1866473,4
+catq,1866473,3
+17654843,1866473,4
+70278827,1866473,4
+suck-man,1866473,4
+forgetallthing,1866473,4
+Nancyxhn,1866473,3
+chancius,1866473,4
+125055300,1866473,5
+90187672,1866473,5
+60388085,1866473,4
+4655887,1866473,4
+yeyayu,1866473,3
+52117580,1866473,5
+beaux,1866473,4
+maxwell2place,1866473,4
+fancyyan,1866473,4
+63978275,1866473,4
+2262505,1866473,4
+4047603,1866473,4
+ProfThunder,1866473,4
+edgeyeung,1866473,5
+122300732,1866473,4
+4160222,1866473,3
+yullc,1866473,4
+1794910,1866473,4
+sunflower37,1866473,4
+107284336,1866473,5
+54971766,1866473,4
+3395379,1866473,3
+1538371,1866473,5
+64263776,1866473,5
+2774956,1866473,5
+milan1994,1866473,5
+65174941,1866473,5
+majesty.voyi,1866473,4
+lucydeer,1866473,3
+54468195,1866473,3
+102675224,1866473,4
+lolalireader,1866473,5
+y.sh,1866473,4
+63612050,1866473,3
+67385694,1866473,4
+2544651,1866473,4
+rapunzeld,1866473,4
+119644148,1866473,5
+58773339,1866473,4
+lubianxiaohai,1866473,4
+fun-lv,1866473,4
+32359738,1866473,4
+shmilykz,1866473,4
+ganjiawei,1866473,4
+52533161,1866473,4
+134963788,1866473,4
+wumengyu,1866473,2
+59765811,1866473,4
+CrystaDD,1866473,5
+51937634,1866473,5
+3913741,1866473,4
+63354063,1866473,-1
+67324922,1866473,5
+32127610,1866473,5
+Dreamology525,1866473,5
+50618871,1866473,5
+131893479,1866473,4
+90581117,1866473,5
+130115967,1866473,3
+61647279,1866473,4
+47127791,1866473,4
+bobo32,1866473,3
+32572221,1866473,4
+lovelyyuchen,1866473,4
+72403472,1866473,5
+wendyfield,1866473,4
+67708176,1866473,5
+98855330,1866473,4
+48072909,1866473,2
+yanxiaobao,1866473,4
+135677641,1866473,-1
+58742773,1866473,5
+yang_ygy,1866473,4
+131427089,1866473,4
+41956289,1866473,5
+xuxiaoyu,1866473,3
+131913480,1866473,-1
+63348856,1866473,4
+21274604,1866473,4
+bloodleopard,1866473,4
+78518168,1866473,4
+laoyin621,1866473,4
+AdileGuan,1866473,4
+fyxx101,1866473,4
+131909298,1866473,4
+69685647,1866473,4
+2118444,1866473,4
+ai-you,1866473,3
+guoguo0502,1866473,5
+65750183,1866473,3
+wednesday.coffe,1866473,4
+77279823,1866473,4
+seasonalspace,1866473,5
+basaya,1866473,5
+68226125,1866473,4
+115351276,1866473,4
+junqli86,1866473,5
+Butcherhoney,1866473,3
+63894811,1866473,4
+lephemera,1866473,3
+amoryqq,1866473,4
+jjjjjjjjasmine,1866473,4
+54619955,1866473,3
+103454751,1866473,4
+124749541,1866473,3
+66543188,1866473,4
+sdanlin,1866473,3
+joeyada,1866473,4
+Noreli,1866473,5
+58113252,1866473,4
+floraforever21,1866473,5
+yycat,1866473,5
+65832475,1866473,2
+79061340,1866473,-1
+Lifeascinema,1866473,4
+fsyc,1866473,4
+jinyatou,1866473,4
+TonyHsu,1866473,1
+dearw616,1866473,4
+hyxmmm,1866473,-1
+97105227,1866473,4
+68557847,1866473,5
+58231376,1866473,4
+ls8215,1866473,3
+68227361,1866473,5
+68219893,1866473,5
+ImpossibleII,1866473,3
+71217329,1866473,4
+50625911,1866473,3
+135880399,1866473,4
+2003525,1866473,4
+AzureFeeling,1866473,5
+2599607,1866473,5
+54643617,1866473,3
+mustundead,1866473,4
+metkee,1866473,4
+53716762,1866473,5
+tinas,1866473,5
+126859970,1866473,2
+129118169,1866473,3
+47058104,1866473,5
+flyingluffy,1866473,4
+68503636,1866473,4
+stillwmxz,1866473,1
+130001930,1866473,4
+wendy-tsai,1866473,3
+89395128,1866473,4
+104205522,1866473,3
+85357151,1866473,4
+junnasky,1866473,4
+hellcat712,1866473,4
+Sking_lq,1866473,4
+nutj,1866473,5
+3768406,1866473,3
+xingmie,1866473,4
+liyunhui,1866473,3
+49354246,1866473,5
+56210995,1866473,5
+zeal_she,1866473,4
+rainbowhongye,1866473,3
+jinuljt,1866473,3
+35070552,1866473,4
+iadjani,1866473,4
+puseman,1866473,3
+jdh233,1866473,4
+4260903,1866473,4
+61721612,1866473,3
+39015968,1866473,4
+maggie594522,1866473,4
+zitang,1866473,4
+renxiaoheng,1866473,4
+xiaoqianhui,1866473,5
+113532923,1866473,5
+3510700,1866473,3
+kingharry517,1866473,4
+57843938,1866473,5
+53808953,1866473,5
+maxchris,1866473,4
+17797747,1866473,4
+51445817,1866473,4
+105811040,1866473,3
+50660234,1866473,-1
+65053754,1866473,2
+2404348,1866473,3
+joannaZR,1866473,5
+jiyae,1866473,4
+66520731,1866473,4
+108727098,1866473,3
+58619991,1866473,4
+43720060,1866473,4
+64674632,1866473,5
+66816646,1866473,3
+Tiara0211,1866473,4
+49866554,1866473,4
+49549223,1866473,3
+47807328,1866473,3
+93662055,1866473,4
+44517782,1866473,4
+46531239,1866473,4
+127354177,1866473,4
+liancheng,1866473,5
+tt1122,1866473,4
+sigra,1866473,3
+59964725,1866473,4
+ankui,1866473,3
+127386249,1866473,3
+45147771,1866473,4
+27883309,1866473,5
+100293359,1866473,4
+4715775,1866473,5
+lastunicorn,1866473,4
+xiangguniang,1866473,3
+lunaya,1866473,4
+ningxiaoyang,1866473,4
+36594932,1866473,-1
+24543063,1866473,3
+sunbox,1866473,4
+39996045,1866473,3
+Matchamario,1866473,4
+mayobao,1866473,3
+Isabella0712,1866473,5
+yunerzh,1866473,4
+45663922,1866473,4
+farewellmyeteen,1866473,4
+45974387,1866473,4
+57055757,1866473,4
+Dielin,1866473,3
+xfjzoe,1866473,5
+81532007,1866473,5
+79970792,1866473,4
+amydsr,1866473,3
+Nicky007,1866473,3
+1963507,1866473,4
+95817312,1866473,3
+xqx,1866473,4
+YukiYou,1866473,5
+Loreley333,1866473,-1
+treevow,1866473,4
+jennifershi,1866473,4
+63550302,1866473,5
+95685813,1866473,3
+seattle_on,1866473,5
+xiaxiaoyu,1866473,4
+48200557,1866473,4
+88085556,1866473,5
+maybeland,1866473,4
+131597292,1866473,5
+46325007,1866473,5
+49855743,1866473,3
+71317646,1866473,4
+chunchunderen,1866473,4
+Sura890123,1866473,4
+110901020,1866473,4
+42069915,1866473,4
+ryanerd,1866473,4
+54804536,1866473,3
+52700748,1866473,4
+94207654,1866473,4
+49022394,1866473,5
+46065900,1866473,4
+chrno,1866473,3
+66330480,1866473,5
+x.xiong,1866473,3
+54533341,1866473,4
+87230227,1866473,4
+131412359,1866473,5
+44653441,1866473,4
+73597773,1866473,4
+69842524,1866473,4
+chocolate67,1866473,3
+71583788,1866473,5
+lazydoy,1866473,4
+52597615,1866473,5
+29783892,1866473,4
+100935420,1866473,4
+48129305,1866473,4
+alex.tseng,1866473,3
+46484046,1866473,5
+125182895,1866473,5
+xipo,1866473,4
+kuaml,1866473,4
+53726776,1866473,3
+bixiuli,1866473,3
+action552200,1866473,4
+54537827,1866473,4
+mimizang,1866473,3
+32860757,1866473,4
+46507893,1866473,3
+47404227,1866473,4
+orangesuan,1866473,3
+54280629,1866473,-1
+ThinkTask,1866473,5
+piscescott,1866473,4
+chesterchoi,1866473,4
+standby-,1866473,4
+2229889,1866473,5
+61042086,1866473,4
+61745875,1866473,4
+iamamortal,1866473,4
+shadowall,1866473,4
+43448765,1866473,4
+winterbreak,1866473,4
+25588497,1866473,4
+47202062,1866473,4
+58079597,1866473,4
+60082922,1866473,3
+2416197,1866473,4
+70764851,1866473,5
+68632515,1866473,3
+azureINBLUR,1866473,3
+sheisj,1866473,4
+41462661,1866473,4
+123815629,1866473,3
+55984951,1866473,5
+57880931,1866473,4
+102454533,1866473,4
+56921877,1866473,4
+50769743,1866473,4
+41833499,1866473,4
+62748915,1866473,3
+57982992,1866473,5
+88079450,1866473,4
+50573314,1866473,4
+53868957,1866473,2
+42095486,1866473,4
+getefuxing,1866473,4
+61011795,1866473,5
+3812350,1866473,4
+sherry-fmj,1866473,5
+kuii,1866473,4
+69202875,1866473,2
+judybubu,1866473,4
+33366667,1866473,4
+alice-cat,1866473,5
+49893647,1866473,5
+44610838,1866473,4
+houyuan425,1866473,5
+richardzrc,1866473,4
+4263354,1866473,4
+Reecom,1866473,4
+31711681,1866473,4
+37411559,1866473,3
+47052463,1866473,4
+iysy,1866473,4
+16304195,1866473,2
+2446517,1866473,3
+49047522,1866473,4
+mythjill,1866473,4
+75283214,1866473,3
+wrdouban,1866473,3
+120303986,1866473,3
+46011907,1866473,3
+64010178,1866473,4
+136086652,1866473,3
+49009055,1866473,3
+83429427,1866473,4
+Howen,1866473,3
+98058015,1866473,4
+36036646,1866473,3
+fasterhigher,1866473,5
+LuuuuC,1866473,3
+120625991,1866473,3
+25564955,1866473,5
+icepenny77,1866473,3
+48253364,1866473,3
+86714653,1866473,4
+54344363,1866473,4
+50433074,1866473,3
+namely,1866473,4
+clf0827,1866473,4
+44201606,1866473,5
+2407582,1866473,5
+Cycneverstop,1866473,5
+40905460,1866473,4
+60310155,1866473,3
+119372376,1866473,3
+135703346,1866473,3
+arr,1866473,4
+llbreeze,1866473,4
+61209060,1866473,4
+62340407,1866473,4
+49046809,1866473,5
+41440460,1866473,5
+50474286,1866473,4
+63699428,1866473,5
+49002564,1866473,4
+nyteen,1866473,5
+72573412,1866473,3
+juzikeke,1866473,5
+rabbitfish,1866473,5
+62798977,1866473,3
+52858240,1866473,5
+HugoVince,1866473,3
+44843168,1866473,4
+keledoll,1866473,4
+41472309,1866473,3
+ZhaHuanEr,1866473,3
+45978726,1866473,4
+58189352,1866473,4
+51050167,1866473,5
+65418503,1866473,5
+hobbitkirsten,1866473,4
+leftone,1866473,3
+johnmarks,1866473,5
+128200926,1866473,4
+42770019,1866473,4
+vincent41,1866473,3
+69430764,1866473,4
+54845592,1866473,5
+51628420,1866473,4
+57943867,1866473,4
+4291484,1866473,4
+tomyiyun,1866473,4
+133918620,1866473,4
+3438238,1866473,5
+69713505,1866473,4
+49233803,1866473,5
+69547016,1866473,3
+npzhd,1866473,4
+64451825,1866473,5
+44192267,1866473,4
+136275151,1866473,4
+34097491,1866473,5
+68199229,1866473,5
+81745530,1866473,4
+85057811,1866473,5
+xichlo,1866473,4
+alunnihao,1866473,3
+sssoul,1866473,-1
+seeder0121,1866473,3
+52104896,1866473,4
+39092937,1866473,5
+48502234,1866473,3
+individualj,1866473,5
+lidejun,1866473,3
+136272758,1866473,4
+Patrick_Kang,1866473,4
+AriesSusan,1866473,4
+pinkvivi523,1866473,4
+47836672,1866473,3
+64020328,1866473,4
+2843360,1866473,4
+123869999,1866473,3
+2559180,1866473,4
+lslgreen,1866473,4
+kangtacaty,1866473,4
+lily928,1866473,4
+135799943,1866473,4
+68179093,1866473,5
+deargod123,1866473,4
+30066915,1866473,4
+vermis_sum,1866473,4
+42144253,1866473,4
+cody555,1866473,3
+CZ1011,1866473,5
+129472402,1866473,4
+50003038,1866473,4
+60458466,1866473,2
+2243044,1866473,5
+mamuyao,1866473,5
+36993232,1866473,3
+99899210,1866473,5
+2560828,1866473,4
+chankawai,1866473,3
+84311404,1866473,4
+starry88,1866473,3
+hero2845,1866473,4
+60875005,1866473,5
+115645606,1866473,5
+4457767,1866473,3
+75115688,1866473,5
+ostara,1866473,4
+xuyang0455,1866473,4
+sleeper_arashi,1866473,5
+76236179,1866473,5
+3541298,1866473,4
+53177130,1866473,2
+qimiao0423,1866473,5
+touch1986summer,1866473,3
+4766836,1866473,3
+136265610,1866473,4
+50146746,1866473,4
+4182606,1866473,2
+sueneko,1866473,5
+56081675,1866473,4
+analkh,1866473,5
+zhaoyu1222,1866473,3
+53752220,1866473,4
+26396479,1866473,5
+68102477,1866473,4
+t33th,1866473,5
+chenjiaqi1008,1866473,4
+craneink,1866473,3
+82852911,1866473,3
+53334499,1866473,4
+72891921,1866473,3
+55540547,1866473,3
+67851439,1866473,4
+xiaopang2671,1866473,3
+64885985,1866473,4
+93137555,1866473,5
+forever.b,1866473,4
+Rmiaoer,1866473,3
+sanmir,1866473,4
+alan5x,1866473,5
+102718430,1866473,3
+lintin23,1866473,4
+4085843,1866473,3
+hedyiswondering,1866473,5
+40797673,1866473,5
+MOMO3,1866473,4
+luka9527,1866473,4
+2280761,1866473,4
+yjab777,1866473,5
+125962782,1866473,2
+93892137,1866473,5
+Shnei,1866473,4
+48261192,1866473,3
+74872914,1866473,3
+47674697,1866473,4
+108247778,1866473,1
+49040161,1866473,5
+Ve1014,1866473,4
+Shuncat,1866473,4
+59183821,1866473,3
+28783357,1866473,5
+Bigric,1866473,4
+56535276,1866473,3
+80604085,1866473,5
+124854750,1866473,4
+126334650,1866473,4
+128061195,1866473,2
+48543801,1866473,4
+mahuahualai,1866473,4
+84303160,1866473,4
+44177740,1866473,5
+54542205,1866473,5
+dolphinfu,1866473,3
+allanzlau,1866473,5
+49856775,1866473,4
+83217907,1866473,4
+90769441,1866473,3
+55835105,1866473,3
+127504858,1866473,5
+89743076,1866473,4
+bluejessica,1866473,3
+121808699,1866473,4
+36740289,1866473,5
+41843480,1866473,4
+111974961,1866473,4
+3535619,1866473,5
+62121031,1866473,4
+67141829,1866473,3
+Jorrianna.,1866473,5
+1631122,1866473,4
+lanhouzi,1866473,3
+48119351,1866473,4
+1872169,1866473,4
+juyi214,1866473,4
+45238478,1866473,3
+fishzero,1866473,4
+130391371,1866473,4
+casapink,1866473,5
+48883608,1866473,5
+joycew0318,1866473,4
+132034967,1866473,4
+45838830,1866473,4
+potcat,1866473,3
+huster-lion,1866473,5
+jonas9293,1866473,4
+46177546,1866473,4
+58521633,1866473,4
+1793879,1866473,4
+116718171,1866473,4
+Zdb,1866473,5
+65080268,1866473,4
+hiphopking,1866473,5
+120729297,1866473,5
+RingS915,1866473,4
+rainyyuyu,1866473,5
+80519837,1866473,5
+54130249,1866473,4
+44445592,1866473,4
+52918110,1866473,3
+126513771,1866473,5
+dennie2011,1866473,4
+71862680,1866473,4
+50360912,1866473,5
+47604910,1866473,4
+53057559,1866473,3
+76477435,1866473,3
+45852304,1866473,5
+98566963,1866473,4
+hanxiaonuan,1866473,4
+CLOWN9527521,1866473,4
+60781966,1866473,3
+fatenighting,1866473,4
+superjune,1866473,5
+71371712,1866473,4
+30441221,1866473,3
+apple_pie,1866473,5
+1608835,1866473,3
+fleure,1866473,4
+yzk2237084,1866473,4
+liuyayao619,1866473,4
+120512004,1866473,4
+dongzhen0,1866473,3
+shyun,1866473,4
+fancynotgrow,1866473,4
+38767764,1866473,4
+11566740,1866473,3
+peRFect1012,1866473,4
+sibyl.h,1866473,-1
+69939429,1866473,5
+32334286,1866473,4
+34766480,1866473,3
+3929718,1866473,3
+53677228,1866473,3
+yueyan23,1866473,4
+deseijily,1866473,4
+135973442,1866473,4
+asen_shi,1866473,4
+Melody-Moon,1866473,2
+2569325,1866473,4
+fjwjune,1866473,4
+128176886,1866473,5
+3852877,1866473,4
+73892674,1866473,4
+74032223,1866473,3
+imagefly,1866473,3
+loooool,1866473,4
+3531316,1866473,4
+56925526,1866473,4
+haruka,1866473,3
+lianghongyu,1866473,5
+73669959,1866473,5
+68219887,1866473,4
+pierrenan,1866473,4
+51795855,1866473,4
+121410902,1866473,5
+96490951,1866473,4
+119396712,1866473,5
+SPIRITUA,1866473,3
+ipodmelody,1866473,4
+75475788,1866473,4
+49893874,1866473,3
+47190086,1866473,4
+felicita,1866473,5
+37507455,1866473,4
+siro7,1866473,4
+Renee516,1866473,4
+122791785,1866473,4
+kkkhahajill,1866473,4
+basu,1866473,5
+milkbook,1866473,4
+ethalz,1866473,5
+28978843,1866473,4
+32471543,1866473,3
+55410872,1866473,4
+qianhenbangye,1866473,5
+hidedrain,1866473,3
+27627449,1866473,3
+Danny-Green,1866473,4
+60180314,1866473,4
+46843344,1866473,4
+lonelydark7,1866473,4
+2573092,1866473,5
+131012186,1866473,5
+3617275,1866473,3
+menophenon,1866473,4
+tenderhearted,1866473,4
+leof1989,1866473,5
+56827109,1866473,4
+3826833,1866473,4
+98985469,1866473,3
+72111097,1866473,5
+4223395,1866473,5
+arrogantcolonel,1866473,4
+zmhlys,1866473,5
+131466194,1866473,4
+43312634,1866473,3
+57058120,1866473,5
+44671906,1866473,4
+135355635,1866473,4
+135599438,1866473,4
+38632566,1866473,4
+56647071,1866473,3
+1164137,1866473,5
+2451603,1866473,5
+59813466,1866473,-1
+elynsu,1866473,3
+smileforever,1866473,3
+littleta,1866473,4
+56396911,1866473,3
+128099844,1866473,2
+49079570,1866473,3
+uf0,1866473,4
+XuKyle,1866473,3
+124996930,1866473,4
+41792966,1866473,4
+8895439,1866473,3
+50782612,1866473,4
+MOGUANTHONY,1866473,3
+102050741,1866473,3
+1065050,1866473,4
+1492653,1866473,3
+facier,1866473,5
+who_knows,1866473,4
+53000934,1866473,4
+2994831,1866473,4
+124400494,1866473,5
+1951296,1866473,5
+110142217,1866473,5
+54443004,1866473,4
+2538567,1866473,4
+95819039,1866473,5
+47701757,1866473,3
+34634407,1866473,4
+56904781,1866473,5
+1536142,1866473,4
+38640250,1866473,3
+1763981,1866473,3
+124878359,1866473,2
+Mi-Querida,1866473,3
+angelikahh,1866473,2
+1467881,1866473,4
+3931533,1866473,4
+karenizumi,1866473,4
+136078726,1866473,4
+daiyuanvian,1866473,3
+Vicky_Jiang,1866473,4
+mercury0302,1866473,5
+51774042,1866473,5
+47598972,1866473,4
+loveiscolder,1866473,4
+39768482,1866473,4
+1152601,1866473,4
+131741048,1866473,4
+49180401,1866473,-1
+51449484,1866473,4
+104088049,1866473,4
+59677707,1866473,4
+llamakun,1866473,4
+3810681,1866473,4
+44344818,1866473,5
+50533001,1866473,-1
+16040985,1866473,5
+58807022,1866473,3
+59203729,1866473,5
+45117838,1866473,4
+60337447,1866473,4
+icykiko,1866473,4
+75860313,1866473,4
+62079416,1866473,4
+serein0423,1866473,5
+our1314,1866473,4
+3694786,1866473,5
+60973173,1866473,4
+50519870,1866473,4
+45097131,1866473,5
+79314239,1866473,5
+jore1102,1866473,4
+51139979,1866473,5
+enberry,1866473,4
+72602686,1866473,3
+enjoyrachel,1866473,4
+2220624,1866473,5
+69788935,1866473,5
+94872079,1866473,4
+115232186,1866473,2
+wwwsxst,1866473,5
+auhei,1866473,2
+xqsmao,1866473,3
+tomsnakewang,1866473,3
+72536627,1866473,4
+cotton,1866473,4
+katerzo,1866473,4
+hikarulea,1866473,3
+yihuxingkong,1866473,4
+121807969,1866473,5
+36135879,1866473,3
+61473566,1866473,5
+thcode,1866473,4
+74532668,1866473,4
+42898402,1866473,3
+suikame,1866473,5
+4114969,1866473,4
+bernadettttttte,1866473,3
+47754305,1866473,4
+131510377,1866473,3
+4520566,1866473,4
+46420660,1866473,3
+babykissy,1866473,5
+48219213,1866473,4
+57823672,1866473,4
+3133331,1866473,-1
+42507473,1866473,3
+135634275,1866473,4
+40017309,1866473,5
+60741095,1866473,4
+49188433,1866473,5
+arou22,1866473,5
+babyili,1866473,2
+119182643,1866473,5
+maybealiar,1866473,5
+Cecilia1990,1866473,4
+76668612,1866473,5
+87911212,1866473,3
+63036215,1866473,4
+zc_726,1866473,4
+53561733,1866473,5
+sara39aiba,1866473,3
+35194523,1866473,3
+130888340,1866473,4
+Stephen2046,1866473,2
+47055297,1866473,4
+94442097,1866473,5
+aeon4ever,1866473,4
+112933075,1866473,4
+34664148,1866473,4
+40970313,1866473,3
+60764174,1866473,4
+127365822,1866473,5
+61572428,1866473,3
+64381938,1866473,5
+get0ut,1866473,4
+62949378,1866473,5
+56722636,1866473,5
+74636467,1866473,4
+10497254,1866473,5
+15612441,1866473,4
+36698820,1866473,4
+LoveHugo,1866473,5
+beforewind,1866473,4
+58140841,1866473,4
+DuoThree,1866473,3
+sijizhp,1866473,3
+sczz_tang,1866473,3
+45379301,1866473,4
+2029657,1866473,4
+57770608,1866473,5
+49316755,1866473,4
+62601567,1866473,4
+charlottemjiang,1866473,5
+40626862,1866473,4
+embee,1866473,4
+55919844,1866473,3
+55022372,1866473,3
+GameCEO,1866473,5
+lovepeter,1866473,4
+115962378,1866473,4
+52384106,1866473,5
+56300991,1866473,3
+dodopan,1866473,5
+56362540,1866473,5
+rampage_akasha,1866473,4
+littlepussy_wf,1866473,-1
+129681521,1866473,4
+cl1235,1866473,4
+50904663,1866473,5
+59421721,1866473,4
+22596190,1866473,-1
+2783407,1866473,3
+121194917,1866473,4
+123588338,1866473,4
+79451845,1866473,4
+68726944,1866473,3
+67840454,1866473,3
+36289402,1866473,3
+95201044,1866473,5
+foreveryoung01,1866473,4
+70929695,1866473,3
+31453107,1866473,3
+72438301,1866473,4
+cysbaby,1866473,5
+63820584,1866473,3
+82347389,1866473,4
+anpho,1866473,4
+55643387,1866473,4
+45795420,1866473,4
+56977444,1866473,4
+58375992,1866473,4
+zuoxiaoan45,1866473,4
+47796650,1866473,3
+49875686,1866473,3
+pearlnebula,1866473,4
+51379336,1866473,5
+1305491,1866473,3
+72985710,1866473,5
+48847988,1866473,3
+58899302,1866473,3
+120579850,1866473,4
+BDX,1866473,-1
+135754076,1866473,4
+yomaybe,1866473,4
+stevieting,1866473,4
+4580367,1866473,3
+yueyuebetty,1866473,-1
+ushiyo,1866473,4
+64734128,1866473,4
+56968028,1866473,4
+sijimoli,1866473,4
+131216193,1866473,4
+shables,1866473,-1
+11893352,1866473,5
+120327562,1866473,4
+felixqiqi,1866473,5
+56429297,1866473,4
+60451506,1866473,3
+1734347,1866473,5
+zhd7,1866473,4
+84635107,1866473,4
+dobima,1866473,4
+74608127,1866473,4
+haizeiq,1866473,4
+mackalex,1866473,3
+65124379,1866473,3
+33751223,1866473,4
+62579424,1866473,4
+freeyoru,1866473,4
+55374511,1866473,4
+77110674,1866473,4
+wren,1866473,4
+65930256,1866473,3
+yowsah,1866473,5
+4606615,1866473,3
+babylon2000,1866473,3
+mugglezwt,1866473,3
+clemencechow,1866473,4
+zhenzhen,1866473,3
+51633930,1866473,5
+2912930,1866473,5
+kuruto,1866473,4
+shaine,1866473,3
+100767439,1866473,4
+63167875,1866473,4
+46061693,1866473,3
+RemyAnderson,1866473,-1
+66960776,1866473,4
+46430549,1866473,4
+diysad,1866473,-1
+miantanjie,1866473,5
+59428764,1866473,3
+78362081,1866473,4
+47995839,1866473,3
+51584292,1866473,4
+wotamashidaxia,1866473,2
+53053364,1866473,4
+urannus,1866473,4
+47572613,1866473,5
+53222149,1866473,4
+doggymx,1866473,4
+49993074,1866473,3
+yyuan9372,1866473,3
+52448649,1866473,4
+hecategk,1866473,5
+Zhpher,1866473,4
+sl19910727,1866473,5
+135761559,1866473,4
+janice_wong,1866473,5
+winsonunddrei,1866473,4
+cqyyAyy,1866473,4
+30762446,1866473,3
+39969280,1866473,4
+130845579,1866473,4
+131007198,1866473,5
+BenYoung,1866473,5
+lqj1,1866473,4
+misslaw,1866473,4
+48355482,1866473,4
+67853237,1866473,5
+leonumberone,1866473,3
+sharp.shooter,1866473,4
+50587917,1866473,3
+lemon-alex,1866473,3
+72806494,1866473,5
+likechuck,1866473,3
+silverstro,1866473,-1
+69678068,1866473,4
+ringoo,1866473,4
+18274942,1866473,3
+53248861,1866473,4
+1354076,1866473,4
+ercan,1866473,4
+52874024,1866473,4
+89045639,1866473,1
+57129991,1866473,5
+2034934,1866473,3
+116380571,1866473,4
+66340058,1866473,5
+54588486,1866473,3
+132509113,1866473,3
+92602582,1866473,4
+102650364,1866473,4
+balabara,1866473,3
+93340836,1866473,4
+42555541,1866473,3
+66688383,1866473,-1
+Ste_corleone,1866473,3
+lysphere,1866473,3
+50616224,1866473,5
+znnancy,1866473,3
+81850559,1866473,3
+64291202,1866473,5
+97312448,1866473,3
+57073619,1866473,4
+3682487,1866473,4
+csh329,1866473,4
+aisarah,1866473,4
+123591914,1866473,5
+52110233,1866473,5
+wan623,1866473,3
+129235712,1866473,4
+116402107,1866473,4
+yusherry,1866473,4
+cachecache,1866473,4
+50245791,1866473,4
+cowgirlfanny,1866473,4
+51474271,1866473,3
+125455262,1866473,4
+39369934,1866473,3
+partric,1866473,5
+119239652,1866473,4
+zsqbgd,1866473,4
+2822340,1866473,-1
+55796244,1866473,4
+57683355,1866473,4
+48695154,1866473,5
+coldeyes_enatu,1866473,4
+kbs---ak,1866473,3
+in551w1,1866473,5
+mio1989,1866473,4
+65458998,1866473,4
+3006385,1866473,4
+132446691,1866473,3
+potatoblack,1866473,4
+48355705,1866473,-1
+109446676,1866473,4
+Jane88126,1866473,4
+jeanann,1866473,4
+mogujunmomo,1866473,4
+67913939,1866473,5
+35095860,1866473,5
+LaaazzzY,1866473,3
+1464431,1866473,5
+44005420,1866473,4
+danlan121,1866473,2
+solaryy,1866473,4
+42397686,1866473,4
+37023161,1866473,4
+d1senchanted,1866473,3
+102611391,1866473,4
+darwin927,1866473,4
+74628579,1866473,2
+34495275,1866473,4
+36927005,1866473,4
+46423055,1866473,3
+84419481,1866473,3
+53573316,1866473,4
+maydanji,1866473,3
+52352034,1866473,3
+42643432,1866473,4
+122420292,1866473,4
+14363390,1866473,4
+BaiDamao,1866473,3
+56668791,1866473,5
+128604356,1866473,4
+79660887,1866473,4
+xiaoyuan_0310,1866473,4
+63134305,1866473,5
+38191056,1866473,4
+81785228,1866473,4
+47546589,1866473,4
+reyico,1866473,4
+92032476,1866473,4
+44825930,1866473,4
+58863205,1866473,3
+62687217,1866473,4
+candicechang,1866473,4
+28522579,1866473,4
+callmemrcoolman,1866473,3
+werder100,1866473,4
+4032411,1866473,3
+favorite,1866473,5
+lidusa,1866473,3
+63819525,1866473,4
+cris7ss,1866473,4
+daisy702,1866473,4
+46258109,1866473,5
+47339441,1866473,4
+56866010,1866473,5
+134839175,1866473,4
+winnie0032,1866473,4
+bignoodle,1866473,4
+linglongwunv,1866473,4
+39698078,1866473,4
+2762159,1866473,3
+52199185,1866473,5
+kafaka,1866473,4
+87681351,1866473,5
+59235742,1866473,4
+131713125,1866473,5
+imr3,1866473,4
+ydlxiaolong,1866473,3
+36940575,1866473,5
+3915286,1866473,3
+91827424,1866473,3
+61963666,1866473,5
+128909653,1866473,1
+125149507,1866473,5
+50413289,1866473,3
+zlpEcho,1866473,3
+59705163,1866473,4
+56416669,1866473,4
+alicerobin,1866473,4
+41127672,1866473,4
+78263023,1866473,4
+xnywrite2009,1866473,5
+tinydream,1866473,4
+graylucky,1866473,4
+jzk,1866473,4
+75096447,1866473,4
+swarovskii,1866473,4
+97409290,1866473,4
+ywyjennifer,1866473,4
+35285718,1866473,4
+62949401,1866473,3
+49830114,1866473,5
+38781943,1866473,4
+76623488,1866473,3
+yoky,1866473,5
+58676771,1866473,5
+2345491,1866473,5
+91656862,1866473,4
+53244433,1866473,4
+87570484,1866473,4
+70571885,1866473,5
+4805946,1866473,5
+88171857,1866473,3
+kitashin,1866473,4
+sixteen616,1866473,4
+cuile1201,1866473,5
+119296720,1866473,5
+53716519,1866473,4
+67357105,1866473,4
+9632550,1866473,3
+1187053,1866473,4
+zsqsophy,1866473,5
+Otta,1866473,5
+mee2ashin,1866473,4
+abendmuse,1866473,4
+64138699,1866473,5
+115560712,1866473,4
+3269865,1866473,4
+obliviosage,1866473,3
+87118528,1866473,4
+baibaiyang,1866473,3
+2414351,1866473,4
+54433399,1866473,3
+71231764,1866473,4
+3202437,1866473,3
+virkong,1866473,4
+90785580,1866473,4
+Miss.Panda,1866473,4
+75749423,1866473,5
+44685216,1866473,5
+3679180,1866473,4
+amberbo,1866473,4
+73702156,1866473,4
+73783978,1866473,4
+fastkill,1866473,3
+huzhenting,1866473,4
+joyfish0912,1866473,3
+71848384,1866473,5
+59738934,1866473,4
+orangeabby,1866473,3
+48474852,1866473,4
+Dolphin_yu,1866473,4
+48194135,1866473,4
+61235171,1866473,3
+31563326,1866473,4
+dssunshineer,1866473,4
+Okina,1866473,3
+57640790,1866473,4
+3601377,1866473,5
+48920065,1866473,5
+gstone1723,1866473,4
+58658426,1866473,4
+Colahdh,1866473,4
+Hazu,1866473,4
+lisaxingxing,1866473,5
+xiaolvtier,1866473,4
+63589080,1866473,4
+bolijiao,1866473,3
+134738255,1866473,4
+30251701,1866473,3
+24515643,1866473,5
+81378961,1866473,5
+4426162,1866473,4
+summerlater,1866473,4
+39389388,1866473,4
+47800725,1866473,4
+132137179,1866473,3
+76599391,1866473,5
+52530638,1866473,3
+65535508,1866473,3
+97431474,1866473,3
+17913616,1866473,5
+37966610,1866473,4
+48930507,1866473,5
+49985202,1866473,5
+44238908,1866473,4
+juuarashi,1866473,5
+WenwenYoung,1866473,4
+124981596,1866473,5
+glacierzbc,1866473,4
+61816824,1866473,4
+wolvestime,1866473,3
+50971547,1866473,4
+88107292,1866473,4
+66803513,1866473,4
+39569779,1866473,5
+4454692,1866473,4
+congba,1866473,4
+nihac,1866473,3
+69428143,1866473,4
+tonyuanChen,1866473,3
+ccmaycry,1866473,4
+94033941,1866473,4
+46148106,1866473,5
+4199523,1866473,3
+51620794,1866473,3
+59740753,1866473,4
+46057903,1866473,5
+52140771,1866473,5
+dafuyuan,1866473,4
+67011634,1866473,2
+4585995,1866473,5
+53617052,1866473,3
+76917831,1866473,4
+39012867,1866473,4
+53455622,1866473,4
+4280640,1866473,3
+14914580,1866473,3
+49059976,1866473,4
+fangxiaoyi,1866473,5
+72984075,1866473,4
+baiid,1866473,-1
+1614995,1866473,5
+jjzzjoyce,1866473,4
+49740424,1866473,-1
+2142279,1866473,4
+dear001,1866473,3
+119238337,1866473,4
+82903511,1866473,-1
+77106660,1866473,4
+55964278,1866473,3
+50555792,1866473,4
+50555792,1866473,4
+60923783,1866473,-1
+124286936,1866473,5
+leave614,1866473,4
+4518695,1866473,4
+xiaoshurui,1866473,3
+44735401,1866473,3
+corina0717,1866473,4
+Vanessa...,1866473,3
+loyanymve,1866473,4
+127991755,1866473,4
+taozilove1314,1866473,5
+wuyelan,1866473,3
+52168475,1866473,3
+61111185,1866473,3
+49848172,1866473,3
+stand314,1866473,4
+nicole24,1866473,4
+84994751,1866473,3
+pankida,1866473,3
+36059562,1866473,4
+young2u,1866473,4
+60278797,1866473,5
+mayflylris,1866473,4
+seeing...,1866473,5
+68080863,1866473,3
+babelotus,1866473,4
+74654430,1866473,4
+81566298,1866473,5
+133374987,1866473,5
+volanslei,1866473,-1
+63657398,1866473,4
+40587202,1866473,3
+17006018,1866473,5
+miniqian0228,1866473,4
+27028067,1866473,4
+luluimayday,1866473,5
+64392106,1866473,5
+125360551,1866473,5
+Enidluv,1866473,3
+84266137,1866473,3
+50763897,1866473,3
+1314672,1866473,4
+Sk.Young,1866473,4
+52737447,1866473,4
+xiaoduokids,1866473,4
+EddieCurre,1866473,4
+mayday001,1866473,4
+135615366,1866473,3
+47509216,1866473,3
+69023727,1866473,4
+88097347,1866473,3
+40302847,1866473,4
+rabbitcharlie,1866473,5
+38138105,1866473,5
+103016444,1866473,2
+12998506,1866473,4
+iimozart,1866473,4
+49607126,1866473,3
+40373085,1866473,5
+pzk0719,1866473,4
+sosofly,1866473,4
+geminitang,1866473,3
+danielyan1991,1866473,3
+29415022,1866473,4
+130049487,1866473,5
+ying823624,1866473,4
+102912620,1866473,3
+47492761,1866473,2
+duanziyu,1866473,4
+35330234,1866473,4
+34493482,1866473,4
+121870116,1866473,5
+67127602,1866473,5
+yiyi9love,1866473,5
+135932861,1866473,5
+67645499,1866473,3
+Just-My-Luck.,1866473,4
+133578116,1866473,5
+62345841,1866473,5
+56803436,1866473,4
+1427200,1866473,4
+34523215,1866473,4
+3967446,1866473,5
+69338882,1866473,4
+anzhengjie,1866473,4
+40853957,1866473,4
+zianzhao,1866473,4
+s-neko,1866473,4
+iriszhong,1866473,3
+26734576,1866473,5
+me1on,1866473,5
+66009495,1866473,5
+luhua,1866473,3
+cmisland,1866473,3
+bonnieWZ,1866473,3
+75895206,1866473,3
+76551061,1866473,4
+44976171,1866473,3
+1973189,1866473,4
+YanY,1866473,3
+nxhe,1866473,2
+71133496,1866473,4
+OldButNaive,1866473,4
+1942591,1866473,5
+38327977,1866473,3
+mayee1121,1866473,5
+83135902,1866473,5
+shinecloud,1866473,4
+60348245,1866473,4
+2483608,1866473,5
+3355006,1866473,5
+96513286,1866473,5
+1840916,1866473,4
+81840393,1866473,4
+119680918,1866473,4
+6539111,1866473,3
+76433556,1866473,5
+46646867,1866473,-1
+siliconx2w,1866473,4
+41843254,1866473,4
+lingci,1866473,3
+chen1776,1866473,5
+lunababe,1866473,5
+Dcynic,1866473,3
+57375454,1866473,4
+xiaoyuhen,1866473,3
+78458638,1866473,4
+39687903,1866473,5
+51075942,1866473,2
+52477984,1866473,3
+49467804,1866473,5
+109043948,1866473,4
+superT,1866473,5
+57700479,1866473,4
+67714096,1866473,3
+94417936,1866473,3
+3555547,1866473,3
+47155914,1866473,5
+56413610,1866473,4
+49353834,1866473,4
+Alicias,1866473,4
+37943842,1866473,4
+84529511,1866473,2
+56911400,1866473,4
+15088576,1866473,-1
+rtg,1866473,4
+122917042,1866473,4
+Andrian-lee,1866473,3
+45245030,1866473,4
+59493796,1866473,4
+46370564,1866473,3
+jezzahe,1866473,-1
+58693526,1866473,4
+73795161,1866473,3
+71656261,1866473,3
+102484426,1866473,4
+43211886,1866473,4
+iswear_4ever,1866473,4
+44868532,1866473,5
+9429775,1866473,4
+50416947,1866473,4
+53886253,1866473,4
+52636646,1866473,4
+8316667,1866473,4
+1554569,1866473,3
+47568379,1866473,3
+zoic,1866473,3
+116539336,1866473,4
+vane0301,1866473,4
+68714865,1866473,4
+Rice5566Mayday,1866473,5
+70361364,1866473,5
+2455029,1866473,4
+angeldch3,1866473,4
+56360766,1866473,4
+46361986,1866473,3
+laurel-nanr,1866473,4
+44652353,1866473,4
+121120829,1866473,2
+46497404,1866473,5
+81870071,1866473,3
+55885677,1866473,3
+58932483,1866473,4
+nikkichou,1866473,4
+61312900,1866473,4
+msallsunday,1866473,-1
+34998517,1866473,5
+ddcchenfei,1866473,4
+sunlei1029,1866473,3
+ancg,1866473,3
+elmsley,1866473,4
+meilang.,1866473,5
+fredztq,1866473,5
+kid45698,1866473,4
+27938535,1866473,3
+bear-fullhouse,1866473,3
+129251940,1866473,4
+83094433,1866473,3
+chichengle,1866473,4
+chichengle,1866473,4
+33893684,1866473,5
+99508404,1866473,5
+popgarden,1866473,4
+85487157,1866473,4
+sunqi,1866473,4
+73856461,1866473,5
+pinko333,1866473,5
+44506499,1866473,3
+66676801,1866473,3
+37404981,1866473,4
+songofmomo,1866473,3
+61408402,1866473,4
+81785994,1866473,-1
+Defeeeeeated,1866473,4
+3248231,1866473,4
+63705961,1866473,4
+cokasusu,1866473,4
+dongxuanlan,1866473,4
+36501951,1866473,3
+136250825,1866473,3
+36238973,1866473,4
+52098655,1866473,3
+sherrytu,1866473,4
+67769734,1866473,4
+4439510,1866473,3
+emmacqq,1866473,3
+Ark1992,1866473,3
+50573714,1866473,4
+60093239,1866473,3
+One_apple,1866473,5
+76621205,1866473,5
+91746178,1866473,3
+44760991,1866473,4
+78645703,1866473,3
+69247286,1866473,4
+96738155,1866473,3
+silenceeeee,1866473,3
+47756739,1866473,3
+62187483,1866473,4
+62073129,1866473,4
+43710642,1866473,5
+53138162,1866473,5
+62604027,1866473,3
+132939853,1866473,4
+chenquan91,1866473,5
+stella930,1866473,5
+53642273,1866473,3
+8240576,1866473,3
+yoyoyoyoyoyoyo,1866473,3
+119829181,1866473,5
+53698994,1866473,4
+Rosesea,1866473,4
+3594748,1866473,4
+59621398,1866473,4
+orange12345,1866473,5
+2982114,1866473,4
+101989859,1866473,5
+122402846,1866473,4
+47778684,1866473,4
+3304536,1866473,3
+rip626,1866473,4
+rou3lives,1866473,4
+57803183,1866473,4
+85536299,1866473,4
+4175130,1866473,4
+123977133,1866473,3
+45417298,1866473,4
+130692591,1866473,4
+76051077,1866473,5
+3097147,1866473,-1
+rryu,1866473,5
+coldlife,1866473,4
+4024346,1866473,5
+121587043,1866473,5
+59907116,1866473,4
+134772912,1866473,5
+48217121,1866473,4
+133734548,1866473,4
+96140309,1866473,4
+ceachother,1866473,5
+52492498,1866473,3
+58518290,1866473,4
+71505159,1866473,5
+117130584,1866473,5
+mirror3636,1866473,4
+2134658,1866473,3
+tobewithwho,1866473,3
+gothickid,1866473,5
+sansu_fighting,1866473,3
+hhy2013,1866473,3
+57425173,1866473,5
+60455649,1866473,4
+jessedong,1866473,4
+evim,1866473,5
+66999913,1866473,3
+orangev1990,1866473,3
+cutebbluckygirl,1866473,3
+23733715,1866473,4
+40560256,1866473,3
+48519318,1866473,4
+onlyck,1866473,3
+64858112,1866473,5
+lemoncake,1866473,5
+3769878,1866473,3
+53803517,1866473,3
+89103199,1866473,5
+69436086,1866473,4
+Incognito,1866473,4
+56871040,1866473,4
+NO.223,1866473,4
+86193611,1866473,5
+eugne,1866473,4
+91251565,1866473,4
+71867993,1866473,4
+113752134,1866473,4
+37720840,1866473,5
+Huxuan0522,1866473,5
+63170647,1866473,4
+75519812,1866473,4
+MariahC,1866473,4
+73737341,1866473,5
+nauyuxSilverdew,1866473,3
+PandaHermit,1866473,4
+122603381,1866473,5
+68237085,1866473,4
+92775477,1866473,4
+43692949,1866473,4
+4486102,1866473,4
+40235686,1866473,4
+Lee_Will,1866473,4
+69532674,1866473,4
+DoubleSWanLi,1866473,4
+WyBaby,1866473,3
+38412910,1866473,3
+38877757,1866473,4
+sw59218,1866473,4
+4221004,1866473,4
+yezisnow,1866473,4
+78410323,1866473,5
+65632268,1866473,4
+xhlaxhla,1866473,4
+126252523,1866473,4
+51905389,1866473,5
+98665982,1866473,4
+2883655,1866473,4
+127755762,1866473,5
+65678886,1866473,4
+magickori,1866473,5
+59508588,1866473,4
+51202453,1866473,3
+2319090,1866473,4
+huoLayfeng,1866473,4
+122929763,1866473,4
+54286864,1866473,4
+54365251,1866473,4
+webweaver,1866473,4
+72181533,1866473,5
+60234742,1866473,5
+49545873,1866473,5
+50800694,1866473,3
+69542619,1866473,3
+EchoofFei,1866473,3
+53330231,1866473,3
+pinkypxy,1866473,2
+52433144,1866473,3
+antoniagreen,1866473,4
+1878284,1866473,4
+51885129,1866473,2
+58310945,1866473,4
+60181393,1866473,2
+nal,1866473,4
+48778738,1866473,4
+50042173,1866473,4
+52691772,1866473,5
+64092595,1866473,3
+nekozamurai,1866473,5
+3502559,1866473,4
+YvonneGQ,1866473,3
+52356046,1866473,4
+zrenata,1866473,5
+Earrame,1866473,5
+101306122,1866473,3
+44332074,1866473,4
+timejin,1866473,4
+li_1314,1866473,4
+63381133,1866473,3
+53907528,1866473,4
+MovieL,1866473,3
+5688079,1866473,3
+irischou,1866473,4
+92692605,1866473,3
+2113603,1866473,4
+wangmuyang,1866473,4
+45194143,1866473,3
+Dlio_o,1866473,4
+64995430,1866473,4
+49063009,1866473,4
+43554949,1866473,3
+60983227,1866473,4
+yuriyurichan,1866473,2
+72700363,1866473,4
+ochy,1866473,5
+119203760,1866473,3
+birch,1866473,3
+yt0310,1866473,4
+heartlesstree,1866473,3
+lovexiaoyan,1866473,4
+1741905,1866473,3
+Minimalis,1866473,4
+Gil19960630,1866473,4
+babypaula,1866473,5
+107437673,1866473,4
+53482752,1866473,4
+39729270,1866473,4
+35360002,1866473,3
+64857350,1866473,3
+sorrow_YMY,1866473,3
+56847004,1866473,3
+accenture,1866473,5
+huihuiai1314,1866473,4
+74073932,1866473,4
+her10ve,1866473,4
+imickeymouse,1866473,5
+liveralkali,1866473,3
+77068545,1866473,5
+kuroneko2002,1866473,4
+cloudnest,1866473,5
+59237362,1866473,4
+luoochaoo,1866473,4
+ET-Ocean,1866473,4
+83436610,1866473,4
+3112705,1866473,4
+homecat1983,1866473,4
+63659583,1866473,2
+46794642,1866473,5
+47108985,1866473,4
+128122162,1866473,4
+68152466,1866473,4
+Redbe0n,1866473,4
+EliNagy,1866473,3
+52542019,1866473,3
+weixiaol,1866473,4
+mrszeel,1866473,5
+81126169,1866473,5
+oneplusmoon,1866473,4
+91238295,1866473,4
+46496992,1866473,5
+67211309,1866473,5
+papa_guo,1866473,4
+4909767,1866473,4
+jarodzy,1866473,4
+44129141,1866473,4
+jaward,1866473,4
+75914022,1866473,3
+3873448,1866473,4
+Jeanerduo,1866473,4
+98622958,1866473,-1
+85245609,1866473,3
+3356601,1866473,5
+clumsybean,1866473,2
+90415514,1866473,4
+53462734,1866473,4
+conan_4869,1866473,4
+enidyin,1866473,4
+doubanscheisse,1866473,3
+27068945,1866473,4
+dirtylee,1866473,5
+134909513,1866473,4
+68864068,1866473,4
+44741261,1866473,4
+48996798,1866473,5
+41198675,1866473,-1
+38508040,1866473,5
+63260508,1866473,3
+127008939,1866473,4
+51607217,1866473,4
+71400865,1866473,4
+58315873,1866473,3
+47790252,1866473,4
+50058727,1866473,3
+57864238,1866473,4
+niuxiaohei,1866473,3
+LameSaintSusenF,1866473,3
+2176730,1866473,5
+120978925,1866473,4
+45295442,1866473,3
+45255137,1866473,4
+48191181,1866473,4
+107739432,1866473,4
+gexiaoshang,1866473,5
+comewinni,1866473,5
+misawang,1866473,4
+51303010,1866473,5
+38498557,1866473,4
+mericandy,1866473,4
+62872014,1866473,5
+5760403,1866473,3
+43046100,1866473,4
+fyyksyh,1866473,4
+Centhouting,1866473,5
+DorisM,1866473,4
+60344319,1866473,4
+67351841,1866473,4
+47060979,1866473,5
+75166808,1866473,3
+1159670,1866473,5
+2298833,1866473,3
+4866014,1866473,3
+hzx9991,1866473,4
+ruler21san,1866473,-1
+71467682,1866473,3
+121085982,1866473,4
+131201726,1866473,4
+eazycreep,1866473,4
+blinglu,1866473,5
+37899965,1866473,3
+129365030,1866473,5
+120841522,1866473,4
+78814872,1866473,3
+82320533,1866473,4
+52870924,1866473,4
+hd35,1866473,5
+52140579,1866473,3
+13262749,1866473,2
+55771467,1866473,3
+2476759,1866473,2
+67589382,1866473,4
+80791412,1866473,4
+32911362,1866473,3
+78843795,1866473,4
+yeox,1866473,4
+37861913,1866473,4
+125571207,1866473,4
+65529304,1866473,4
+mrshamaliel,1866473,4
+storman,1866473,4
+gloryofnt,1866473,4
+AstrianZheng,1866473,4
+126730096,1866473,4
+120784937,1866473,5
+73189108,1866473,4
+102883589,1866473,5
+76119662,1866473,5
+63371877,1866473,5
+48917306,1866473,5
+32835447,1866473,4
+70603009,1866473,4
+77200563,1866473,4
+ephraimdw,1866473,4
+57613408,1866473,3
+zjswr,1866473,5
+lidianxi1990,1866473,4
+1313926,1866473,4
+115895718,1866473,3
+linsleyzhou,1866473,4
+summermaoyi,1866473,3
+junmuxi0413,1866473,3
+song1108,1866473,5
+serenasorceress,1866473,5
+JUN10,1866473,4
+102099688,1866473,2
+lovingkyu,1866473,4
+73469326,1866473,4
+57368289,1866473,5
+91417742,1866473,5
+like9225,1866473,4
+55806681,1866473,5
+28238952,1866473,3
+52907345,1866473,4
+63291664,1866473,4
+william_fung,1866473,4
+51571110,1866473,3
+80013900,1866473,5
+89108079,1866473,4
+92960717,1866473,5
+lazing0611,1866473,4
+omniwillpotent,1866473,5
+2237566,1866473,4
+120625344,1866473,3
+120625344,1866473,3
+zhuqingdaren,1866473,4
+97517593,1866473,4
+funkybaby,1866473,4
+103979483,1866473,5
+norahuang,1866473,5
+52093119,1866473,5
+DoctorHou,1866473,3
+126823086,1866473,4
+120470819,1866473,4
+103672023,1866473,4
+rebeccayip,1866473,5
+60788836,1866473,4
+71961326,1866473,4
+120551581,1866473,5
+75273529,1866473,5
+62529217,1866473,3
+97365571,1866473,5
+58132552,1866473,3
+79089179,1866473,5
+127029651,1866473,4
+63870030,1866473,5
+manchesite,1866473,4
+53768020,1866473,4
+91948472,1866473,3
+jayelhy,1866473,4
+80694240,1866473,4
+61935443,1866473,4
+crazygrave,1866473,3
+97623200,1866473,3
+youknow810,1866473,4
+49886203,1866473,4
+relaispferd,1866473,2
+69995441,1866473,4
+78276267,1866473,5
+74926321,1866473,4
+81519024,1866473,4
+apexcyril,1866473,5
+48845332,1866473,3
+37521902,1866473,4
+nyx1224,1866473,5
+2256967,1866473,5
+73878048,1866473,5
+qinsword521,1866473,4
+72133915,1866473,3
+yaya102,1866473,4
+93893593,1866473,4
+61087751,1866473,5
+86208688,1866473,4
+86193760,1866473,3
+emanon01,1866473,2
+45400633,1866473,5
+dxq1216,1866473,4
+51031281,1866473,4
+62089597,1866473,4
+rumpelstiltskin,1866473,4
+48685895,1866473,5
+sssuryy,1866473,4
+77914968,1866473,3
+121033172,1866473,5
+64955104,1866473,4
+75569999,1866473,5
+28776614,1866473,5
+68577543,1866473,3
+season-ho,1866473,5
+cindy547288,1866473,5
+royisagoodboy,1866473,4
+58193839,1866473,4
+120244834,1866473,3
+SpriteShen,1866473,3
+4118375,1866473,4
+50641998,1866473,4
+huxiaotian,1866473,4
+52591024,1866473,3
+59073966,1866473,5
+nian-an,1866473,2
+42787363,1866473,5
+49968813,1866473,3
+cantona_x,1866473,4
+xiang-chuyi,1866473,3
+MaggieFA,1866473,5
+rayfrank,1866473,4
+eason0210,1866473,2
+115971779,1866473,5
+42111921,1866473,4
+76216989,1866473,5
+55886490,1866473,3
+dneo,1866473,4
+X140Yu,1866473,-1
+127621706,1866473,4
+3484320,1866473,4
+131499885,1866473,4
+y193,1866473,3
+63924223,1866473,4
+96785209,1866473,4
+songai0609,1866473,4
+aegeanguo,1866473,5
+74616260,1866473,5
+62559581,1866473,5
+56875123,1866473,5
+56875123,1866473,5
+rubywong,1866473,4
+45513879,1866473,4
+38226077,1866473,3
+4140499,1866473,5
+67353177,1866473,4
+3363790,1866473,4
+48997081,1866473,3
+hikkii,1866473,5
+65719413,1866473,4
+54056952,1866473,4
+66041501,1866473,5
+76189804,1866473,4
+1168375,1866473,4
+66168101,1866473,3
+8718496,1866473,5
+131603889,1866473,5
+king1099,1866473,3
+unknown-place,1866473,3
+100953233,1866473,4
+pandaxiaoke,1866473,5
+82677764,1866473,4
+tucaomalisu,1866473,5
+104003575,1866473,5
+M.N.,1866473,4
+111572690,1866473,4
+jasonisajoker,1866473,3
+25635000,1866473,4
+fatina0624,1866473,4
+1386311,1866473,3
+90598022,1866473,3
+132566833,1866473,4
+83848433,1866473,3
+25795086,1866473,4
+123229428,1866473,5
+63561473,1866473,3
+4465352,1866473,5
+DawnGow,1866473,3
+85948759,1866473,5
+49258293,1866473,4
+130778242,1866473,3
+lixiaguniang,1866473,4
+72991242,1866473,4
+65387296,1866473,4
+127701993,1866473,4
+47417998,1866473,4
+NetPuter,1866473,4
+vanunited,1866473,4
+69133798,1866473,1
+xuaoling,1866473,5
+131932102,1866473,4
+ceqt_pulpfictio,1866473,4
+xiaochan83,1866473,5
+30884176,1866473,4
+yaogunbabi708,1866473,4
+125594306,1866473,4
+34557052,1866473,3
+alianhei,1866473,4
+chara4,1866473,4
+31978586,1866473,5
+68384121,1866473,2
+56627146,1866473,4
+66151732,1866473,3
+ryozth,1866473,4
+87838056,1866473,3
+134693882,1866473,5
+1362647,1866473,3
+64796517,1866473,-1
+zuotianyou,1866473,4
+azure0130,1866473,4
+60815590,1866473,4
+2326685,1866473,2
+48859035,1866473,4
+127406348,1866473,5
+1482191,1866473,3
+47193126,1866473,3
+72201310,1866473,4
+95865076,1866473,4
+windirt,1866473,3
+3939279,1866473,3
+3090957,1866473,5
+75021032,1866473,5
+14903726,1866473,3
+36867618,1866473,4
+uncall,1866473,4
+48660501,1866473,4
+ludengludeng6,1866473,-1
+tjg325,1866473,5
+58976778,1866473,4
+67284766,1866473,4
+58028787,1866473,4
+67876533,1866473,3
+54757893,1866473,3
+58822324,1866473,4
+72101237,1866473,5
+133208122,1866473,4
+ziquan827,1866473,4
+74237278,1866473,4
+135012811,1866473,5
+nbyuan,1866473,3
+Lene_XJTU,1866473,4
+49387616,1866473,5
+11965473,1866473,4
+1271102,1866473,3
+61398424,1866473,4
+LeonardodaFiren,1866473,3
+ivy_lmj,1866473,4
+135076039,1866473,3
+61229030,1866473,4
+60858827,1866473,4
+121382700,1866473,4
+45916040,1866473,3
+Hypocrite.,1866473,5
+heyuting13,1866473,5
+53146748,1866473,4
+56151370,1866473,3
+90551475,1866473,5
+tiebin223,1866473,5
+artmisia,1866473,5
+42987999,1866473,3
+48042160,1866473,4
+marvin42,1866473,3
+69127375,1866473,2
+83739220,1866473,4
+2977954,1866473,5
+2310200,1866473,4
+36422732,1866473,5
+lemonplant,1866473,3
+Aianita,1866473,4
+82624454,1866473,3
+39974163,1866473,4
+35450465,1866473,3
+3663725,1866473,5
+1558354,1866473,3
+88588672,1866473,-1
+yoxyue,1866473,4
+122978902,1866473,5
+46168428,1866473,4
+64969828,1866473,4
+6375537,1866473,4
+63934272,1866473,3
+121628266,1866473,4
+IMD__,1866473,5
+43127616,1866473,4
+66717642,1866473,-1
+46428356,1866473,5
+3477296,1866473,4
+3187868,1866473,4
+52991581,1866473,4
+damnm,1866473,5
+115710110,1866473,3
+czy940903,1866473,4
+WG92,1866473,3
+mf,1866473,4
+71298339,1866473,5
+6987390,1866473,3
+132830109,1866473,5
+47782519,1866473,3
+50385122,1866473,4
+66806575,1866473,5
+60178731,1866473,3
+47621269,1866473,3
+120558525,1866473,5
+aifax,1866473,3
+minedoubanban,1866473,5
+39923615,1866473,3
+50129534,1866473,3
+dong79,1866473,4
+51915169,1866473,3
+dazzlingego,1866473,4
+65027660,1866473,4
+70930410,1866473,4
+64716585,1866473,4
+55536180,1866473,4
+brucas,1866473,4
+shutantan,1866473,5
+83267131,1866473,3
+yuanyan,1866473,5
+kevindai,1866473,4
+61715230,1866473,3
+61311789,1866473,3
+54635444,1866473,4
+60199001,1866473,-1
+hym116,1866473,5
+ArkimidyF,1866473,5
+3277293,1866473,4
+mixmx,1866473,5
+90127295,1866473,4
+67606836,1866473,5
+51546106,1866473,2
+129383533,1866473,4
+90146858,1866473,4
+135383084,1866473,3
+edisonme,1866473,3
+3001194,1866473,5
+54275881,1866473,5
+53386586,1866473,3
+127024293,1866473,5
+85119623,1866473,5
+jjinglee,1866473,5
+YYweiwancheng,1866473,3
+bloodykafka,1866473,3
+In2004.6.,1866473,4
+69475039,1866473,4
+garfieldnotcat,1866473,3
+52849543,1866473,4
+vinkingking,1866473,-1
+84646038,1866473,4
+4599465,1866473,4
+gardeniasky,1866473,4
+60667221,1866473,4
+wulebuzuo,1866473,2
+107718660,1866473,3
+49366823,1866473,4
+78242005,1866473,3
+nancy425,1866473,4
+HughCapet,1866473,3
+49649488,1866473,3
+fenlanbingyan,1866473,4
+72101661,1866473,4
+83388773,1866473,4
+1235455,1866473,4
+52100772,1866473,4
+128255313,1866473,4
+burninghugehead,1866473,4
+ninetysix,1866473,4
+gw150080,1866473,1
+56054406,1866473,4
+89768114,1866473,4
+aileencheung,1866473,5
+59158445,1866473,3
+koonwah,1866473,3
+59779751,1866473,4
+4727803,1866473,3
+winass,1866473,5
+carol3233,1866473,4
+45984585,1866473,3
+119343632,1866473,5
+miyaorion,1866473,4
+tenteny,1866473,4
+50789162,1866473,5
+35961384,1866473,3
+cskywalker,1866473,4
+4068052,1866473,3
+57920939,1866473,4
+57620266,1866473,3
+4742366,1866473,4
+xingfucong,1866473,4
+69840641,1866473,4
+andrea_tang,1866473,5
+93238901,1866473,4
+43212336,1866473,4
+12734942,1866473,4
+yangfengdouban,1866473,4
+bluegatecrossin,1866473,3
+chowkalin,1866473,4
+99669308,1866473,4
+3431557,1866473,2
+69011211,1866473,4
+53888176,1866473,5
+bbbiabb,1866473,4
+56339363,1866473,3
+59629692,1866473,3
+killmystery,1866473,4
+simple4ever,1866473,3
+walkingtime,1866473,4
+bonniekillu,1866473,3
+2866973,1866473,4
+80734129,1866473,4
+50432713,1866473,4
+61705025,1866473,3
+135818499,1866473,4
+60860847,1866473,4
+ceffee,1866473,4
+lucyhu,1866473,3
+4887509,1866473,4
+3243634,1866473,3
+47914559,1866473,5
+crystalgirl,1866473,1
+Life4Junson,1866473,5
+blanchexiao,1866473,3
+90795414,1866473,4
+momojasper,1866473,4
+65506092,1866473,3
+ming_203344,1866473,4
+65381163,1866473,4
+80754534,1866473,3
+49335682,1866473,4
+58035376,1866473,2
+49443595,1866473,4
+43627476,1866473,4
+70405013,1866473,4
+kekexilijiu,1866473,4
+49337423,1866473,5
+121204173,1866473,4
+92894015,1866473,3
+90546161,1866473,4
+33792508,1866473,3
+49983823,1866473,3
+59084050,1866473,4
+134194471,1866473,3
+81003990,1866473,4
+92154012,1866473,4
+48164798,1866473,4
+43067493,1866473,4
+yangziqiang,1866473,4
+sharplhl,1866473,3
+60905103,1866473,5
+53789609,1866473,4
+hange,1866473,3
+4688576,1866473,3
+nvmotou,1866473,4
+130860796,1866473,4
+67985857,1866473,4
+45996774,1866473,5
+65440718,1866473,3
+51057351,1866473,5
+68993451,1866473,5
+66614447,1866473,4
+42709375,1866473,4
+3581002,1866473,3
+lordoferegion,1866473,4
+58207796,1866473,3
+136076014,1866473,5
+phevoshoo,1866473,4
+demiinzhang,1866473,3
+2163937,1866473,4
+xiejiaxin1209,1866473,5
+f91_82,1866473,5
+50891160,1866473,4
+4690926,1866473,3
+127066549,1866473,5
+48012745,1866473,3
+LittleS,1866473,4
+36695909,1866473,3
+51279827,1866473,4
+dhken,1866473,4
+134088482,1866473,4
+35892393,1866473,4
+medusayuan,1866473,3
+medusayuan,1866473,3
+136050608,1866473,4
+61982601,1866473,4
+yehuajie,1866473,4
+44937867,1866473,4
+81506415,1866473,5
+57586189,1866473,4
+65763828,1866473,3
+127006376,1866473,4
+97465230,1866473,5
+53512949,1866473,4
+liuhuajian007,1866473,4
+6278260,1866473,4
+124257806,1866473,4
+88211283,1866473,5
+yulingxi007,1866473,3
+tyche1988,1866473,5
+72044584,1866473,4
+131495477,1866473,5
+2705619,1866473,5
+69317574,1866473,4
+59134594,1866473,4
+54625991,1866473,2
+63191025,1866473,5
+ooooooo7,1866473,5
+12962566,1866473,4
+50374697,1866473,2
+MancunianJor,1866473,3
+1033926,1866473,5
+43276698,1866473,3
+63793789,1866473,4
+shen3yang,1866473,4
+89919283,1866473,5
+windson120,1866473,4
+53045249,1866473,4
+voilet6,1866473,5
+132954430,1866473,4
+94260167,1866473,4
+63589265,1866473,4
+Dark_blue_WH,1866473,4
+frankxumomo,1866473,4
+42144339,1866473,4
+isabella_tk,1866473,3
+2826167,1866473,3
+2339752,1866473,3
+47926562,1866473,4
+45744940,1866473,5
+31600047,1866473,4
+58360970,1866473,3
+109038183,1866473,5
+lyming,1866473,3
+61384734,1866473,5
+59356659,1866473,5
+morpihine,1866473,3
+48892199,1866473,4
+6981512,1866473,3
+134688476,1866473,5
+71143154,1866473,4
+25621274,1866473,4
+spaceli,1866473,4
+moqianyao,1866473,3
+35450002,1866473,4
+119273544,1866473,4
+58411324,1866473,4
+3858718,1866473,4
+2392077,1866473,4
+ZhangBui,1866473,4
+63605240,1866473,5
+81921037,1866473,4
+91712143,1866473,4
+47096545,1866473,4
+3970076,1866473,4
+59397449,1866473,3
+49580117,1866473,4
+131881210,1866473,4
+RAINYF,1866473,3
+stevenssonny,1866473,4
+21042861,1866473,5
+73530411,1866473,4
+lyracao,1866473,5
+lost-kaine,1866473,3
+85083807,1866473,3
+46175747,1866473,4
+stef_yuan,1866473,3
+81131709,1866473,5
+119224522,1866473,3
+jjwhu,1866473,2
+48379365,1866473,4
+52248641,1866473,4
+acha13,1866473,4
+acmilanzjt,1866473,4
+76553742,1866473,5
+58719132,1866473,5
+45311427,1866473,4
+59571520,1866473,3
+joyxu,1866473,-1
+122517698,1866473,5
+oulayi,1866473,5
+41583177,1866473,5
+ruska_xu,1866473,4
+ruska_xu,1866473,4
+SafeHaven,1866473,4
+nkorea,1866473,5
+130421783,1866473,4
+3545643,1866473,4
+32090748,1866473,3
+inrelief,1866473,5
+williamwindy,1866473,-1
+80517374,1866473,5
+132151907,1866473,5
+55011354,1866473,4
+54867328,1866473,5
+47882268,1866473,2
+65640022,1866473,5
+echo-shuang,1866473,5
+116727584,1866473,5
+79856999,1866473,4
+73997619,1866473,4
+94559005,1866473,3
+luxianlx,1866473,4
+46954285,1866473,3
+2284835,1866473,4
+70707218,1866473,4
+sansyx,1866473,5
+51271683,1866473,4
+58004852,1866473,3
+libaosheng,1866473,4
+copy6,1866473,4
+47515047,1866473,5
+83054457,1866473,4
+66965988,1866473,3
+Rocky_neverland,1866473,-1
+sunianjinshired,1866473,4
+huangti,1866473,4
+peyman,1866473,3
+sweetiantian,1866473,3
+80044238,1866473,4
+Rubbish_,1866473,3
+50375853,1866473,4
+56369223,1866473,3
+xiamubeishi,1866473,4
+61696956,1866473,4
+4168284,1866473,3
+guu.sama,1866473,3
+58258651,1866473,3
+zy47,1866473,-1
+bearbyebye,1866473,4
+57880300,1866473,3
+kooooh,1866473,3
+9915911,1866473,4
+53917309,1866473,4
+gent1eman,1866473,4
+2049714,1866473,3
+2846988,1866473,4
+68354862,1866473,4
+131073049,1866473,5
+81619869,1866473,4
+40737991,1866473,4
+44908870,1866473,5
+65172405,1866473,2
+56111292,1866473,4
+loveless12,1866473,5
+sciascia,1866473,3
+71575345,1866473,3
+wxy2307,1866473,5
+48475794,1866473,3
+DVforever,1866473,4
+degasd,1866473,5
+4804994,1866473,3
+122451528,1866473,4
+51369912,1866473,4
+80082149,1866473,5
+BrownieSin,1866473,3
+62484253,1866473,4
+iceanmu,1866473,5
+hanningxuan,1866473,-1
+cissy_cissy,1866473,4
+60912631,1866473,4
+dingdangneko,1866473,4
+yummy0526,1866473,3
+96400940,1866473,3
+samuel_liu,1866473,5
+39034881,1866473,3
+131209560,1866473,3
+clownlee,1866473,-1
+4765195,1866473,4
+eggsbox.ee,1866473,4
+60763444,1866473,4
+enjoyxin,1866473,5
+133648602,1866473,4
+Lqm107,1866473,5
+57031141,1866473,3
+4356156,1866473,-1
+119795456,1866473,5
+71270529,1866473,4
+5048380,1866473,4
+amazingta,1866473,-1
+xyl19900815,1866473,3
+64821728,1866473,3
+bunny-say,1866473,4
+135175724,1866473,4
+72549209,1866473,4
+4521703,1866473,3
+63300609,1866473,4
+64507278,1866473,3
+120547538,1866473,3
+35369841,1866473,4
+57775883,1866473,4
+58029072,1866473,4
+48258273,1866473,5
+Pinkyii,1866473,4
+anotherballack,1866473,5
+43360069,1866473,3
+chinasunnypig,1866473,1
+biby9475,1866473,3
+potatotudouyu,1866473,4
+nadesico,1866473,4
+124098973,1866473,5
+FaNbO,1866473,2
+kiwiiiii,1866473,4
+Bobbyency,1866473,3
+34394752,1866473,5
+58369888,1866473,3
+xiaoxianbibi,1866473,3
+jozenky,1866473,5
+24387412,1866473,4
+rainbowwww,1866473,5
+DERRICK_ROSE,1866473,5
+41069819,1866473,3
+33329266,1866473,3
+grayguy,1866473,3
+52214552,1866473,4
+to-july,1866473,3
+lovelyting58,1866473,4
+suzy1030,1866473,5
+49748358,1866473,-1
+yogaeven,1866473,4
+steveliux,1866473,4
+31954151,1866473,3
+balelovesqian,1866473,4
+71797507,1866473,4
+3914860,1866473,4
+56116625,1866473,4
+blackout,1866473,4
+54474181,1866473,4
+foreverpdc,1866473,3
+84968890,1866473,4
+Riverdance,1866473,4
+30022213,1866473,4
+46244847,1866473,4
+leexiaoxiao,1866473,3
+42301539,1866473,4
+48919879,1866473,4
+surfire1206,1866473,5
+Sparkyue,1866473,5
+130735639,1866473,4
+105314480,1866473,4
+26275743,1866473,5
+135843569,1866473,5
+csprite,1866473,3
+78488993,1866473,3
+83809414,1866473,5
+Lyabing,1866473,3
+88911934,1866473,4
+60420315,1866473,4
+51032242,1866473,5
+vjjdwn,1866473,3
+december.L,1866473,4
+85634562,1866473,3
+48155100,1866473,5
+zoepoirot,1866473,4
+lemonliman,1866473,3
+83587515,1866473,-1
+119710944,1866473,4
+fengwuyaoye,1866473,4
+52110315,1866473,3
+58214702,1866473,4
+Erica1011,1866473,4
+92449125,1866473,4
+ccccccIty,1866473,4
+ccccccIty,1866473,4
+74117962,1866473,5
+kaqiyuaiecho,1866473,5
+as_shmily,1866473,4
+17549723,1866473,4
+mafially,1866473,4
+ffmi,1866473,5
+44361116,1866473,4
+ikon.rUDY,1866473,3
+4231858,1866473,5
+47603935,1866473,5
+1327654,1866473,5
+126051239,1866473,5
+alualu,1866473,5
+27940300,1866473,4
+49446093,1866473,5
+mutangdan,1866473,4
+53744550,1866473,3
+69856173,1866473,4
+128390764,1866473,3
+Madao_D,1866473,4
+cxy0419,1866473,4
+renth,1866473,4
+xxxdorisxxx,1866473,4
+49596127,1866473,5
+53896694,1866473,4
+jerven,1866473,3
+41437311,1866473,5
+sweetrain0229,1866473,3
+zq8870690207,1866473,3
+shirleynash,1866473,4
+94830928,1866473,5
+2910842,1866473,5
+xmarmand,1866473,5
+wacky02,1866473,4
+77762504,1866473,4
+moryfor,1866473,3
+69407378,1866473,4
+56795809,1866473,4
+43609061,1866473,3
+Frank_Fu,1866473,4
+55439926,1866473,4
+83229871,1866473,4
+36359450,1866473,4
+25585138,1866473,4
+Lightsummer,1866473,4
+AtomuHZ,1866473,5
+2658903,1866473,4
+100445422,1866473,4
+vincentpku,1866473,4
+51701400,1866473,5
+Rocklisa,1866473,4
+134938707,1866473,3
+onedotdot,1866473,5
+MudDog,1866473,4
+shukehh,1866473,4
+36695396,1866473,4
+125275470,1866473,4
+48148912,1866473,4
+58021100,1866473,3
+honestydudu,1866473,4
+bossgugu,1866473,4
+76497080,1866473,4
+52010271,1866473,3
+71427030,1866473,3
+dourface,1866473,4
+127802556,1866473,4
+93143338,1866473,4
+67262547,1866473,5
+June-24th,1866473,3
+62309312,1866473,3
+wj8198026,1866473,4
+54885866,1866473,4
+62736610,1866473,5
+4674424,1866473,4
+51951271,1866473,4
+missgemini,1866473,5
+xxfelix,1866473,5
+65744500,1866473,5
+Sapporo,1866473,3
+58141531,1866473,4
+81645668,1866473,4
+lotte07,1866473,4
+3973757,1866473,4
+116007343,1866473,4
+datouma,1866473,4
+znrpiggey,1866473,3
+132011879,1866473,4
+fuckpussy,1866473,2
+monicsolomon,1866473,4
+70742254,1866473,4
+46690733,1866473,3
+77633290,1866473,4
+43639134,1866473,4
+131194167,1866473,4
+fkimi,1866473,5
+EvenUp,1866473,4
+cktckt,1866473,4
+86140576,1866473,3
+48752205,1866473,4
+2629275,1866473,3
+37318948,1866473,4
+2327858,1866473,4
+135211848,1866473,4
+1742602,1866473,3
+49138712,1866473,5
+neglecthu,1866473,4
+70981547,1866473,4
+baoyinjun,1866473,4
+maynardleung,1866473,5
+50300036,1866473,5
+78609798,1866473,3
+mrbuzhidao,1866473,3
+65038039,1866473,3
+64861312,1866473,3
+99385118,1866473,3
+yunwen_2012,1866473,4
+51423276,1866473,5
+phejohnwang,1866473,4
+islands-,1866473,1
+67502392,1866473,3
+133690949,1866473,4
+kach244,1866473,4
+130602926,1866473,5
+55410800,1866473,-1
+121693868,1866473,5
+hanadomoto,1866473,5
+dvddvd,1866473,4
+135843421,1866473,4
+lcm0414,1866473,4
+136214058,1866473,2
+68918623,1866473,5
+3846319,1866473,4
+48419960,1866473,3
+meilixiaoyao,1866473,5
+101414289,1866473,4
+51481503,1866473,4
+GracieG,1866473,5
+115116662,1866473,5
+127083032,1866473,4
+58127008,1866473,5
+13273701,1866473,3
+65514003,1866473,5
+1945650,1866473,4
+80275782,1866473,5
+3623604,1866473,-1
+1381497,1866473,4
+cueb,1866473,4
+lemontin,1866473,4
+51029316,1866473,5
+67878319,1866473,-1
+68485237,1866473,4
+71867547,1866473,4
+4324357,1866473,3
+72684898,1866473,3
+87587366,1866473,4
+76722357,1866473,5
+90884547,1866473,4
+8907036,1866473,5
+45463396,1866473,2
+oppih,1866473,4
+125971465,1866473,4
+vivilinezaixu,1866473,4
+purple_kenny,1866473,4
+60432635,1866473,4
+lovelymei,1866473,4
+47285151,1866473,3
+79285043,1866473,4
+iamsyh,1866473,3
+48190133,1866473,4
+efscpig,1866473,4
+1545061,1866473,4
+wjlzty,1866473,4
+ireneyan,1866473,4
+yoyodbh,1866473,3
+46536036,1866473,3
+soulchang,1866473,3
+65079823,1866473,4
+90767458,1866473,4
+48854947,1866473,4
+134867156,1866473,5
+46804098,1866473,5
+67789023,1866473,5
+lips,1866473,5
+43916573,1866473,5
+76368928,1866473,4
+erhuyouxuan,1866473,3
+yanleung1102,1866473,4
+3966093,1866473,3
+stanup,1866473,4
+Lopez_zyw,1866473,5
+sasa522,1866473,4
+24547228,1866473,4
+soultaker,1866473,3
+78462539,1866473,4
+llms,1866473,4
+76549265,1866473,4
+102249966,1866473,5
+50281819,1866473,4
+66683925,1866473,5
+46738902,1866473,4
+zhaohuan0909,1866473,3
+104183037,1866473,5
+2003868,1866473,4
+roryluo,1866473,4
+yiqiny,1866473,5
+bigbei,1866473,4
+51845720,1866473,4
+58056819,1866473,4
+nalanjingmeng,1866473,4
+qiiqi,1866473,4
+120929768,1866473,4
+monoxue,1866473,3
+iconsume,1866473,4
+53420495,1866473,3
+45482400,1866473,5
+51912673,1866473,5
+duanzizai,1866473,4
+67831727,1866473,4
+9411741,1866473,5
+accessoryfong,1866473,4
+xinglu,1866473,4
+46373841,1866473,4
+sugarjune,1866473,4
+68963965,1866473,5
+39688839,1866473,2
+chanelluo,1866473,4
+2184792,1866473,5
+jideknight,1866473,5
+zooyam,1866473,3
+83372523,1866473,4
+48434496,1866473,4
+37091569,1866473,5
+97350616,1866473,4
+soul922,1866473,3
+qiuqiongxu,1866473,4
+113437204,1866473,5
+30323984,1866473,3
+62764426,1866473,3
+47054399,1866473,4
+easonkoko,1866473,4
+49583852,1866473,3
+BurningSoul,1866473,1
+4253116,1866473,3
+4357790,1866473,4
+yeppy,1866473,4
+102630086,1866473,5
+1506430,1866473,4
+newvier,1866473,4
+boovie,1866473,4
+126209354,1866473,4
+1897367,1866473,-1
+58938806,1866473,4
+62024381,1866473,4
+waityoualex,1866473,3
+1520336,1866473,5
+128509659,1866473,4
+ryanjuly,1866473,4
+mxturing,1866473,4
+agraynel,1866473,5
+92494614,1866473,5
+44908756,1866473,4
+61579146,1866473,4
+ROMAN10,1866473,3
+41843142,1866473,4
+53682563,1866473,4
+ypfair,1866473,5
+luobo687,1866473,-1
+79217059,1866473,4
+116053893,1866473,4
+135261292,1866473,5
+44669555,1866473,3
+rajorAn,1866473,4
+50506429,1866473,4
+fabrique1987,1866473,4
+13702374,1866473,5
+VEmokst,1866473,4
+124823100,1866473,3
+4160305,1866473,4
+2352053,1866473,4
+50638011,1866473,4
+113977777,1866473,4
+danmole,1866473,4
+65810750,1866473,4
+69886132,1866473,5
+74890087,1866473,4
+cruisechan,1866473,4
+50880780,1866473,5
+70248212,1866473,4
+61166940,1866473,5
+skyisquiet,1866473,4
+65057546,1866473,4
+keneyzhao,1866473,3
+GUYU7,1866473,3
+75650896,1866473,4
+lucifer1029,1866473,4
+56035155,1866473,4
+vianna.H,1866473,4
+left-em,1866473,4
+89449772,1866473,4
+4352057,1866473,4
+3002217,1866473,3
+99483183,1866473,3
+114278157,1866473,5
+123028634,1866473,5
+zacklee,1866473,3
+matata522,1866473,4
+44187248,1866473,4
+58949996,1866473,5
+135975588,1866473,4
+30752578,1866473,4
+tongjinghao,1866473,3
+49531398,1866473,4
+71479420,1866473,4
+stellabubu,1866473,3
+121143952,1866473,4
+2521792,1866473,4
+67512191,1866473,4
+80800486,1866473,5
+122591212,1866473,5
+43115240,1866473,4
+astroyao,1866473,5
+3243663,1866473,5
+49094124,1866473,3
+Sue0815,1866473,5
+120291697,1866473,4
+gambler801,1866473,5
+nobodyhome,1866473,3
+40982141,1866473,5
+69762404,1866473,4
+62369741,1866473,3
+iwinux,1866473,4
+60968365,1866473,4
+43596686,1866473,4
+4873070,1866473,4
+61346101,1866473,5
+74753192,1866473,5
+105023809,1866473,4
+76943413,1866473,3
+5566664,1866473,3
+WANG_RS,1866473,4
+124812731,1866473,4
+ireneg,1866473,5
+xx218,1866473,4
+SiriusY,1866473,4
+115819915,1866473,3
+128130996,1866473,5
+stillm,1866473,4
+49309537,1866473,5
+52422400,1866473,4
+86928462,1866473,5
+weiwei1020,1866473,5
+callmecrazy,1866473,3
+dear-lc,1866473,3
+raye.b,1866473,4
+104396401,1866473,3
+54594576,1866473,4
+hly_sky,1866473,4
+45447780,1866473,4
+77847494,1866473,4
+killeren,1866473,4
+4292817,1866473,4
+49749063,1866473,5
+122335329,1866473,5
+27698600,1866473,3
+77283735,1866473,3
+Aquarious,1866473,5
+50588840,1866473,3
+69800828,1866473,5
+41854617,1866473,5
+59101282,1866473,3
+wen_Schwartz,1866473,3
+54387469,1866473,5
+115550774,1866473,4
+4684932,1866473,3
+79372510,1866473,5
+negoning,1866473,4
+3805082,1866473,4
+126190597,1866473,5
+fre7dom,1866473,4
+52167842,1866473,4
+59471293,1866473,3
+58660815,1866473,4
+3815024,1866473,5
+70794815,1866473,5
+cyy9828,1866473,3
+chouchou0707,1866473,4
+46282005,1866473,4
+16951432,1866473,3
+135643960,1866473,4
+34711453,1866473,5
+63580159,1866473,3
+yunwaizhizhi,1866473,4
+yoonjaeleven,1866473,5
+4058668,1866473,3
+45991981,1866473,5
+53989389,1866473,5
+52851561,1866473,5
+58190107,1866473,4
+26438724,1866473,4
+92267089,1866473,4
+48540705,1866473,4
+viki011,1866473,4
+69824529,1866473,3
+132560934,1866473,5
+61868098,1866473,4
+MissCaptain,1866473,5
+2349464,1866473,-1
+3544626,1866473,5
+42092243,1866473,4
+TopSlut,1866473,4
+fuluchii,1866473,3
+49411009,1866473,3
+skyline0623,1866473,4
+131103457,1866473,4
+sadshadow,1866473,4
+50222083,1866473,4
+119270472,1866473,4
+51387244,1866473,4
+66461284,1866473,5
+baiwei_ren,1866473,5
+93900680,1866473,4
+67416002,1866473,3
+29717716,1866473,4
+1094981,1866473,4
+shushi2011,1866473,3
+58034308,1866473,4
+1773768,1866473,4
+kiahchen,1866473,4
+daydream466,1866473,3
+FixtheShadow,1866473,4
+VALLA,1866473,5
+38625392,1866473,5
+119767675,1866473,5
+ky_linChen,1866473,3
+121332582,1866473,5
+97561291,1866473,4
+chenghu,1866473,5
+47370846,1866473,4
+julynan,1866473,4
+54941298,1866473,3
+upstairs,1866473,4
+l1086905132,1866473,4
+kin090909,1866473,-1
+zhaoda,1866473,4
+ola_,1866473,-1
+45298145,1866473,4
+66126154,1866473,5
+hotduck,1866473,3
+Alberta77,1866473,5
+54150696,1866473,-1
+aprilpear,1866473,4
+50532974,1866473,3
+cjsjason,1866473,4
+4427195,1866473,3
+78599391,1866473,2
+124313805,1866473,3
+deeplife,1866473,3
+83143884,1866473,4
+3111680,1866473,5
+48062615,1866473,5
+61272937,1866473,4
+55286449,1866473,3
+3192065,1866473,5
+51152974,1866473,4
+96149760,1866473,4
+lizhenhao,1866473,4
+3192663,1866473,3
+raising_dawn,1866473,3
+xiaomo828,1866473,4
+micao-onlyhui,1866473,3
+56159408,1866473,5
+4211678,1866473,4
+81412725,1866473,5
+58542371,1866473,4
+sexpistols,1866473,4
+2801550,1866473,3
+binifit,1866473,5
+78616781,1866473,5
+59114201,1866473,5
+ijihoon,1866473,4
+59288525,1866473,5
+nianyike,1866473,4
+54591552,1866473,4
+93807265,1866473,5
+cc9055,1866473,4
+33316183,1866473,5
+46030224,1866473,5
+2841389,1866473,-1
+cassiewang,1866473,2
+108146303,1866473,5
+lz9314,1866473,4
+58128597,1866473,4
+41443101,1866473,4
+48842999,1866473,4
+21946696,1866473,4
+126846791,1866473,4
+vegenious,1866473,3
+BlazingCD,1866473,3
+tanlin8711,1866473,3
+53908274,1866473,3
+67134272,1866473,4
+3671744,1866473,3
+43912671,1866473,4
+3651501,1866473,5
+132802176,1866473,4
+52758132,1866473,4
+april_rap,1866473,4
+2467246,1866473,5
+37750456,1866473,3
+39233571,1866473,5
+33091901,1866473,5
+135662029,1866473,4
+3543290,1866473,5
+fishonthetree,1866473,5
+yeqier,1866473,5
+120989480,1866473,5
+74522328,1866473,3
+40201382,1866473,3
+bochan,1866473,4
+stevense,1866473,4
+lizheng2210,1866473,-1
+yukakiwi,1866473,4
+h_deanz,1866473,3
+54521254,1866473,4
+40085918,1866473,3
+52408297,1866473,5
+79423614,1866473,-1
+Mickey-Cai,1866473,3
+2617322,1866473,3
+122193967,1866473,4
+64485827,1866473,4
+68732725,1866473,4
+wongtianzhen,1866473,5
+126237126,1866473,5
+41655130,1866473,4
+woodstar,1866473,4
+4109418,1866473,4
+mrsdarce,1866473,5
+flower_crossing,1866473,4
+60874704,1866473,3
+hllgreen,1866473,-1
+2305028,1866473,4
+34317519,1866473,3
+57947419,1866473,4
+131044103,1866473,4
+49713007,1866473,3
+40399819,1866473,-1
+51770922,1866473,4
+51156826,1866473,4
+52925540,1866473,5
+4446589,1866473,5
+3442593,1866473,5
+34834989,1866473,4
+53862196,1866473,5
+90134828,1866473,2
+ningning9164,1866473,-1
+36653510,1866473,5
+1563636,1866473,4
+wyjfl,1866473,4
+Madaotaku,1866473,4
+lvhobbitdarren,1866473,4
+51417733,1866473,3
+53120711,1866473,4
+136207464,1866473,4
+129645509,1866473,4
+Ira_Jing,1866473,5
+13994999,1866473,4
+56739185,1866473,4
+34078383,1866473,5
+51215296,1866473,5
+123744542,1866473,4
+61797915,1866473,3
+58855650,1866473,4
+88122881,1866473,5
+samantha129,1866473,4
+36103812,1866473,4
+77040171,1866473,-1
+33142981,1866473,5
+20887147,1866473,5
+43974139,1866473,5
+16395064,1866473,5
+72371496,1866473,3
+PaperBear,1866473,4
+2787490,1866473,4
+4590914,1866473,5
+fdaidao,1866473,4
+3541000,1866473,4
+134574897,1866473,3
+63287228,1866473,4
+myplacemyway,1866473,4
+61706956,1866473,4
+lee0402,1866473,4
+feibaobei,1866473,4
+athena51244,1866473,4
+soundofu,1866473,4
+quite2,1866473,4
+zhuluoo7,1866473,4
+3483358,1866473,4
+jakehkj,1866473,4
+apoorguitar,1866473,4
+minilion,1866473,3
+1205696,1866473,2
+bzlin,1866473,4
+2763659,1866473,3
+2234264,1866473,3
+ydyie,1866473,4
+10321693,1866473,4
+2842505,1866473,4
+134854783,1866473,4
+adelineadele,1866473,4
+57964416,1866473,4
+grayfoxever,1866473,4
+niazion,1866473,4
+56496405,1866473,3
+104890249,1866473,5
+62401840,1866473,5
+48206747,1866473,4
+lmelva,1866473,3
+55583926,1866473,4
+92897764,1866473,5
+rq1110,1866473,5
+Magicians,1866473,4
+75708723,1866473,4
+70204811,1866473,5
+numbercoco,1866473,3
+luyang19891021,1866473,3
+92762833,1866473,4
+gloomyass,1866473,3
+64339192,1866473,5
+62629078,1866473,4
+45941293,1866473,4
+zourong,1866473,4
+4681923,1866473,5
+hi-juli,1866473,4
+65824527,1866473,5
+4270149,1866473,4
+4026275,1866473,3
+28677254,1866473,3
+45056058,1866473,4
+81384765,1866473,5
+Aurora707,1866473,4
+135145215,1866473,4
+43290072,1866473,4
+50880028,1866473,4
+angelmagazine,1866473,3
+hasyan,1866473,5
+130280555,1866473,4
+61551663,1866473,4
+132599218,1866473,5
+saya0510,1866473,4
+48471753,1866473,4
+mewcatcher,1866473,5
+Emily90,1866473,4
+rqh999,1866473,3
+oldnikki,1866473,4
+54822233,1866473,4
+83040147,1866473,3
+71036525,1866473,4
+rin993,1866473,5
+132974606,1866473,5
+3299180,1866473,4
+74005678,1866473,4
+69365887,1866473,4
+sheshoumeizhi,1866473,4
+40452255,1866473,3
+3107107,1866473,3
+83949510,1866473,4
+63155041,1866473,3
+81003605,1866473,5
+128638957,1866473,4
+2243854,1866473,4
+rudygiraffe,1866473,3
+85660971,1866473,5
+57626964,1866473,4
+76288591,1866473,4
+y111222,1866473,5
+JieloveMovie,1866473,4
+bdahz,1866473,4
+doll88,1866473,4
+71467416,1866473,4
+134258996,1866473,5
+maggieyb,1866473,5
+edwardtroy,1866473,2
+ffliens,1866473,4
+121363589,1866473,5
+91816564,1866473,4
+80732468,1866473,3
+71062611,1866473,4
+xinzhengs,1866473,4
+39708814,1866473,4
+bendanxiaoniu,1866473,5
+WenLg,1866473,4
+lovingmomo,1866473,4
+r8125,1866473,4
+1887182,1866473,5
+1295097,1866473,3
+50212998,1866473,4
+127589546,1866473,4
+possion007,1866473,4
+TiffanyCao,1866473,5
+coradevil,1866473,4
+suev,1866473,3
+115125689,1866473,4
+liaoruochenxing,1866473,4
+cool360,1866473,2
+60016862,1866473,4
+134723876,1866473,3
+45987005,1866473,4
+isheldon,1866473,5
+littlemoon218,1866473,4
+riverbrother,1866473,4
+103169801,1866473,4
+64060288,1866473,3
+4725146,1866473,4
+68449205,1866473,4
+62154568,1866473,4
+wongelephant,1866473,4
+Bobbie13,1866473,4
+63208019,1866473,5
+touya0229,1866473,3
+60130169,1866473,4
+35742329,1866473,3
+1723553,1866473,3
+124720796,1866473,3
+leehow29,1866473,4
+yuefulun,1866473,4
+JESSES,1866473,5
+134600773,1866473,4
+77782385,1866473,3
+53853976,1866473,4
+104878352,1866473,5
+64692199,1866473,5
+ninilovekaikai,1866473,4
+selinashin,1866473,5
+119950155,1866473,4
+82503693,1866473,4
+124268613,1866473,4
+32162865,1866473,4
+56413716,1866473,4
+oooivy,1866473,3
+63805238,1866473,4
+ganganjj,1866473,4
+84749284,1866473,4
+135257732,1866473,4
+84142287,1866473,5
+53393312,1866473,5
+2565255,1866473,3
+73866765,1866473,5
+50557576,1866473,4
+6955816,1866473,5
+40401643,1866473,3
+131958507,1866473,3
+74658279,1866473,3
+fishghoul,1866473,4
+82147319,1866473,4
+4311473,1866473,5
+53785455,1866473,5
+46056151,1866473,4
+lovepants,1866473,4
+lovepants,1866473,4
+61264914,1866473,5
+liliansue,1866473,4
+45358068,1866473,4
+45975385,1866473,4
+2352198,1866473,3
+129175694,1866473,3
+50886291,1866473,3
+46943216,1866473,5
+29116290,1866473,5
+36022376,1866473,4
+102446060,1866473,4
+15005083,1866473,3
+xkingtp,1866473,5
+maxiaoalex,1866473,5
+chengzer,1866473,4
+xchill,1866473,3
+2593133,1866473,4
+58057340,1866473,3
+69658283,1866473,4
+Jazag,1866473,4
+dolphinshotel,1866473,4
+panhoo,1866473,4
+CeciliaQueen,1866473,-1
+43662887,1866473,4
+91994560,1866473,3
+kongyan15,1866473,4
+SadTomato,1866473,4
+gray1210,1866473,-1
+135891681,1866473,5
+sinkerone,1866473,3
+chidaoshu,1866473,4
+48037187,1866473,4
+vane37,1866473,4
+Chenzhouyun1995,1866473,5
+131671719,1866473,3
+daniel_gao,1866473,4
+73948612,1866473,4
+fengjiansun,1866473,4
+114512894,1866473,4
+Elizabeth-Lee,1866473,5
+2266577,1866473,3
+70306814,1866473,3
+yikouerren,1866473,3
+37268394,1866473,4
+56821325,1866473,4
+48770048,1866473,5
+gregoryhouse,1866473,4
+49338392,1866473,-1
+58833358,1866473,3
+vradica,1866473,5
+115504725,1866473,4
+jackoldbear,1866473,4
+my1900,1866473,4
+126273452,1866473,3
+syveen,1866473,5
+100530673,1866473,5
+130554342,1866473,3
+MissTangerine,1866473,-1
+66121478,1866473,5
+Vivi17,1866473,5
+3951378,1866473,4
+73901440,1866473,4
+39957958,1866473,4
+67781674,1866473,5
+freejason,1866473,5
+3060891,1866473,5
+hemu7,1866473,3
+133046698,1866473,5
+28178228,1866473,3
+108216021,1866473,1
+lljyl,1866473,4
+WN-ninja,1866473,4
+25970354,1866473,3
+4876430,1866473,4
+53497780,1866473,4
+candysunny711,1866473,5
+66088686,1866473,4
+Magic_L,1866473,4
+57729721,1866473,-1
+76239452,1866473,4
+douzi2103,1866473,5
+4242859,1866473,4
+63228083,1866473,4
+49093644,1866473,5
+babyprincy,1866473,3
+4464843,1866473,4
+maggiexiao,1866473,4
+57446627,1866473,4
+Thangka,1866473,5
+kim899,1866473,5
+76395595,1866473,4
+75509335,1866473,4
+61742449,1866473,4
+78925849,1866473,4
+prinkanjou,1866473,-1
+sun-sun-emma,1866473,-1
+6205109,1866473,5
+dog0138,1866473,5
+1148225,1866473,3
+dodorene,1866473,3
+48479949,1866473,4
+below17,1866473,3
+42316907,1866473,4
+xiaoconggo,1866473,5
+56063289,1866473,4
+42202741,1866473,3
+50598564,1866473,5
+56416143,1866473,4
+bestkinki,1866473,4
+summerchocolate,1866473,4
+107887327,1866473,4
+surgdy1008,1866473,5
+2172840,1866473,4
+Sakura-feng,1866473,5
+break5,1866473,3
+45062725,1866473,4
+50932968,1866473,4
+36034980,1866473,5
+vincent0007,1866473,3
+49499844,1866473,3
+44734820,1866473,5
+viviensong,1866473,4
+73735858,1866473,3
+1510862,1866473,4
+57978267,1866473,5
+7255952,1866473,4
+dr_floyd,1866473,-1
+55796583,1866473,4
+3843442,1866473,4
+gailsylee,1866473,5
+heureux666,1866473,5
+92522884,1866473,4
+90612337,1866473,2
+72808838,1866473,3
+57151968,1866473,5
+answer0545716,1866473,3
+phonicfei,1866473,3
+60002715,1866473,4
+31061992,1866473,5
+rogerjulia,1866473,4
+27562730,1866473,3
+76657752,1866473,3
+66915476,1866473,4
+beomi,1866473,4
+xy0908132,1866473,3
+mrbg,1866473,-1
+64878236,1866473,5
+swimming7891,1866473,4
+woochang,1866473,4
+amycc,1866473,4
+48229136,1866473,4
+40241805,1866473,4
+AMY-SHUFEN,1866473,3
+green_rock,1866473,2
+cazze,1866473,3
+5580906,1866473,3
+c6h8o6,1866473,4
+52330687,1866473,4
+sam_smile,1866473,4
+65213268,1866473,4
+2223598,1866473,3
+115213178,1866473,4
+53323361,1866473,4
+lesterlsh,1866473,4
+Herowest,1866473,5
+78232825,1866473,5
+61538847,1866473,4
+47047627,1866473,4
+yuh17,1866473,1
+2195388,1866473,3
+novocaine,1866473,5
+52889197,1866473,4
+84097024,1866473,5
+carlson,1866473,4
+ifuya,1866473,5
+86952901,1866473,5
+71389371,1866473,4
+81410150,1866473,4
+127262027,1866473,4
+65583104,1866473,4
+28074817,1866473,4
+72242260,1866473,5
+74744187,1866473,4
+53953725,1866473,5
+78284260,1866473,4
+67848471,1866473,5
+zhilanas,1866473,5
+wutheringshi,1866473,4
+3966971,1866473,4
+89700756,1866473,4
+3395328,1866473,4
+miss-sun,1866473,4
+hedingda,1866473,4
+wumingzaish,1866473,5
+39959377,1866473,4
+35360651,1866473,4
+82269158,1866473,4
+sxh249,1866473,5
+73709425,1866473,5
+2126869,1866473,4
+79559178,1866473,3
+68420280,1866473,5
+64740791,1866473,4
+chopsticks7,1866473,3
+113522784,1866473,4
+40889918,1866473,3
+55890778,1866473,5
+49133007,1866473,3
+ChengXiaosi,1866473,4
+fuckbook,1866473,5
+ruilixiurui,1866473,3
+lovelydoria,1866473,5
+61476572,1866473,5
+kuoxh,1866473,3
+53254724,1866473,-1
+L0ve-zL,1866473,3
+seveneason,1866473,4
+69068594,1866473,3
+134340411,1866473,4
+134897709,1866473,4
+33526716,1866473,3
+47867931,1866473,5
+51606142,1866473,3
+115668392,1866473,3
+2761282,1866473,2
+132409397,1866473,5
+leona.,1866473,5
+65512328,1866473,3
+kuqiaocha821,1866473,4
+52370517,1866473,5
+58442075,1866473,4
+59638708,1866473,5
+45982072,1866473,4
+133090786,1866473,4
+SKTM,1866473,3
+capershadow,1866473,3
+52763172,1866473,5
+35303799,1866473,3
+bidhole,1866473,5
+135756688,1866473,5
+83360600,1866473,5
+58739148,1866473,4
+65196455,1866473,5
+61553411,1866473,4
+2787923,1866473,5
+25664582,1866473,3
+80726886,1866473,4
+42919297,1866473,3
+9500340,1866473,5
+57249703,1866473,4
+jean4you,1866473,3
+fzw83035379,1866473,5
+130994214,1866473,5
+65745378,1866473,4
+hulalachump,1866473,5
+47336635,1866473,3
+niushansuan313,1866473,5
+102238622,1866473,4
+1235613,1866473,-1
+68441766,1866473,5
+65911054,1866473,5
+48906452,1866473,4
+58043896,1866473,4
+52973383,1866473,5
+115540808,1866473,5
+63223538,1866473,4
+120084471,1866473,4
+53335866,1866473,5
+81628425,1866473,3
+pure0918,1866473,4
+kinochan,1866473,4
+51776299,1866473,5
+83018108,1866473,4
+jing0614,1866473,5
+92851670,1866473,5
+stknight,1866473,4
+Ophelia14,1866473,5
+xiaobenma,1866473,3
+6407298,1866473,5
+huayeah,1866473,2
+Flipped_Judy,1866473,4
+63399051,1866473,5
+chenruan,1866473,4
+50588044,1866473,4
+128929565,1866473,5
+6903243,1866473,4
+42778669,1866473,4
+43617068,1866473,3
+jixiang656,1866473,4
+44182899,1866473,4
+Deeper.Dark,1866473,3
+22031796,1866473,4
+Francisway,1866473,3
+62638144,1866473,5
+ixxxxparis,1866473,4
+69730287,1866473,4
+2232768,1866473,4
+121217928,1866473,4
+super112211,1866473,4
+45823163,1866473,5
+130539334,1866473,4
+55956371,1866473,3
+tt312,1866473,5
+126018849,1866473,4
+xiaoyingshuo,1866473,5
+10841627,1866473,5
+37777456,1866473,-1
+78871037,1866473,4
+77485550,1866473,5
+maye528,1866473,4
+60717435,1866473,4
+Tinyk,1866473,4
+pimichang,1866473,4
+119226090,1866473,5
+graygem,1866473,4
+74803451,1866473,4
+58728195,1866473,3
+katrinamu,1866473,4
+Guardianangel,1866473,5
+ricefieldflfish,1866473,5
+76603396,1866473,4
+chongchong1990,1866473,-1
+80285873,1866473,5
+16824036,1866473,3
+2600677,1866473,3
+wtforz,1866473,3
+63156283,1866473,3
+1986183,1866473,3
+uknowzuibaqi,1866473,4
+netkr,1866473,4
+13823787,1866473,4
+34213965,1866473,5
+momoran,1866473,4
+123977563,1866473,5
+64737614,1866473,4
+131627562,1866473,4
+SldneyZhang,1866473,4
+supersun1005,1866473,4
+56782849,1866473,4
+97713824,1866473,5
+52393301,1866473,4
+98543997,1866473,4
+126252999,1866473,3
+66269083,1866473,4
+4753861,1866473,3
+47912507,1866473,4
+96523797,1866473,4
+beifighting,1866473,4
+ashida,1866473,5
+wxcQluotuo,1866473,5
+88371415,1866473,4
+4369057,1866473,4
+108481476,1866473,5
+129214543,1866473,3
+60835831,1866473,4
+tanxiaoyu,1866473,4
+kiwiyoghourt,1866473,5
+48470859,1866473,4
+2079162,1866473,4
+kakayanzi,1866473,4
+subaoyu,1866473,2
+corona92cml,1866473,5
+2520901,1866473,3
+66126312,1866473,4
+73335242,1866473,4
+echofrancis,1866473,1
+50925149,1866473,5
+5652081,1866473,4
+64173822,1866473,5
+checy,1866473,4
+90525586,1866473,3
+3690205,1866473,3
+gnihton,1866473,4
+116695354,1866473,4
+ReyC,1866473,5
+65000218,1866473,4
+mini_hobo,1866473,5
+3796746,1866473,5
+huir,1866473,4
+8412009,1866473,3
+49826646,1866473,4
+kindofbullshit,1866473,4
+123469699,1866473,5
+45016565,1866473,3
+CatPeter,1866473,4
+chrissie619108,1866473,3
+JJY1337,1866473,4
+63329467,1866473,4
+106449872,1866473,3
+wangyiqiu,1866473,4
+82145368,1866473,3
+58178351,1866473,4
+40518476,1866473,4
+102289527,1866473,4
+84261396,1866473,4
+64165773,1866473,5
+78593884,1866473,4
+36610260,1866473,4
+cera,1866473,3
+65580896,1866473,5
+ACGharris,1866473,4
+43214237,1866473,3
+2548575,1866473,5
+125208149,1866473,4
+121744384,1866473,4
+templar,1866473,4
+63741942,1866473,5
+t1n9_520,1866473,3
+87673408,1866473,4
+116856151,1866473,4
+130496328,1866473,2
+132774712,1866473,4
+savage_Howl,1866473,5
+maomaomaoyl,1866473,4
+127563675,1866473,4
+92809978,1866473,3
+supermyhero,1866473,4
+115223509,1866473,4
+48793240,1866473,4
+92461755,1866473,5
+55967513,1866473,5
+69986931,1866473,4
+80655381,1866473,4
+54164791,1866473,3
+67605510,1866473,4
+29209369,1866473,4
+106204195,1866473,4
+ffffans,1866473,3
+GJ007,1866473,3
+atombb,1866473,5
+kiruto,1866473,5
+caixuanjia,1866473,5
+75025238,1866473,4
+olivia_LQ,1866473,4
+zhaoqingwei,1866473,3
+5747784,1866473,3
+rakbumps,1866473,4
+52189151,1866473,4
+2341694,1866473,4
+39879452,1866473,5
+coto,1866473,5
+lorrainelsy,1866473,3
+45748052,1866473,4
+1240037,1866473,3
+58641999,1866473,4
+75569795,1866473,5
+chauyeelee,1866473,5
+guanghainanhai,1866473,5
+1011787,1866473,3
+93289873,1866473,4
+46386865,1866473,3
+52593780,1866473,4
+66016190,1866473,5
+91009457,1866473,5
+VendettaChild,1866473,4
+51759848,1866473,3
+sewer-d,1866473,4
+78414144,1866473,4
+chrisyx,1866473,4
+gongzitian,1866473,3
+xflengruo,1866473,5
+49585135,1866473,3
+sumisumi,1866473,3
+cyberspike,1866473,4
+chloeti,1866473,3
+48048904,1866473,5
+xiatian722,1866473,4
+corallemon,1866473,5
+41070205,1866473,4
+tarotarotaro,1866473,4
+2621323,1866473,3
+38695828,1866473,5
+baiyuanbao,1866473,4
+2809964,1866473,4
+56980157,1866473,4
+72175536,1866473,5
+69155614,1866473,4
+120128695,1866473,3
+66332693,1866473,3
+xiamudemao,1866473,3
+67575009,1866473,4
+56866915,1866473,2
+53103122,1866473,3
+45449329,1866473,4
+28077686,1866473,4
+77229106,1866473,4
+ccj0212,1866473,4
+41458814,1866473,5
+84775041,1866473,5
+87374913,1866473,5
+62139918,1866473,4
+wylwddjz,1866473,4
+33177895,1866473,4
+besom,1866473,3
+llh9277,1866473,5
+jewelshao,1866473,4
+ellencc,1866473,-1
+63461045,1866473,3
+65647130,1866473,3
+Suneyesight,1866473,5
+82238487,1866473,2
+kerbalpilot,1866473,4
+vampirefan,1866473,5
+51617797,1866473,5
+129103259,1866473,4
+2190029,1866473,3
+xiaxixiaxi,1866473,4
+48236201,1866473,4
+63086434,1866473,5
+120069048,1866473,4
+134969713,1866473,4
+14157576,1866473,4
+76208210,1866473,4
+49096015,1866473,5
+3161053,1866473,4
+semenov,1866473,4
+2943338,1866473,4
+LadySandra,1866473,5
+63236278,1866473,4
+83798286,1866473,5
+unakao,1866473,5
+50060410,1866473,3
+nynynyny,1866473,4
+79240544,1866473,4
+85324202,1866473,4
+Elaineyre,1866473,4
+135372483,1866473,4
+96150758,1866473,5
+53248531,1866473,2
+Yichun_D,1866473,4
+tianyajie,1866473,5
+66345165,1866473,4
+xuxiailing,1866473,3
+47345174,1866473,4
+sjsry,1866473,4
+qiaowu2,1866473,4
+45010437,1866473,4
+88429697,1866473,5
+52878748,1866473,5
+wuyunchong2010,1866473,5
+mika8611,1866473,4
+melongo,1866473,-1
+121479444,1866473,5
+49155542,1866473,4
+62553340,1866473,4
+56526640,1866473,5
+59192273,1866473,4
+57699906,1866473,5
+115982359,1866473,5
+49876674,1866473,4
+colleen_1211,1866473,5
+arthurwen,1866473,5
+66548000,1866473,4
+cheeseberry,1866473,4
+59393765,1866473,4
+44204441,1866473,4
+127000408,1866473,5
+2740339,1866473,4
+xxxcici123,1866473,4
+26298804,1866473,5
+40141522,1866473,4
+zhazha0601,1866473,5
+28363540,1866473,5
+63205792,1866473,4
+sirk,1866473,4
+zuoshoudezuo,1866473,4
+10045748,1866473,4
+53162024,1866473,4
+4118218,1866473,-1
+130132099,1866473,3
+46874810,1866473,5
+lingkong911,1866473,2
+67322058,1866473,4
+67854963,1866473,3
+136063439,1866473,4
+hanqiu1995,1866473,4
+57455972,1866473,5
+60786536,1866473,3
+74418627,1866473,4
+siorjot,1866473,4
+66352565,1866473,5
+lovemetomato,1866473,4
+82629572,1866473,3
+61945985,1866473,3
+uumay,1866473,5
+51854429,1866473,3
+48369193,1866473,4
+beachboyzx,1866473,5
+ar4ever,1866473,5
+65133684,1866473,3
+29472366,1866473,5
+134499178,1866473,4
+45490376,1866473,4
+xiuhua,1866473,2
+kingiknow,1866473,4
+80667366,1866473,4
+feng-tracy,1866473,4
+128178367,1866473,3
+82512036,1866473,3
+4157643,1866473,5
+noahhhh,1866473,4
+youranlan,1866473,4
+59929388,1866473,2
+2751582,1866473,5
+lazyrobot,1866473,2
+53543970,1866473,4
+58400700,1866473,3
+65114344,1866473,2
+75935161,1866473,4
+123000223,1866473,4
+47821826,1866473,4
+60882378,1866473,5
+58706786,1866473,4
+sunxujjack,1866473,4
+rinnie,1866473,4
+yigedaguangtou,1866473,5
+81250941,1866473,4
+83192314,1866473,4
+130321312,1866473,3
+130321312,1866473,3
+51226041,1866473,4
+129346558,1866473,4
+luvsoon,1866473,3
+103499745,1866473,4
+2625768,1866473,3
+57230631,1866473,4
+Chappell.Wat,1866473,5
+michelle0121,1866473,3
+60410715,1866473,4
+4694209,1866473,4
+58268607,1866473,3
+22991326,1866473,4
+yazizi77,1866473,2
+54367149,1866473,4
+74137880,1866473,4
+63786695,1866473,5
+Hzt,1866473,4
+67619742,1866473,4
+Tracy1230,1866473,4
+susan_chen,1866473,3
+127857692,1866473,3
+66505410,1866473,5
+dreamending,1866473,4
+goodzsj,1866473,3
+123020002,1866473,4
+ccinder,1866473,-1
+87956504,1866473,4
+106521911,1866473,3
+63027817,1866473,4
+37679562,1866473,3
+121188347,1866473,3
+57981890,1866473,3
+57533785,1866473,5
+sogenannte,1866473,4
+76857499,1866473,4
+33538142,1866473,5
+28212620,1866473,3
+lotusworld,1866473,4
+65128585,1866473,5
+116391652,1866473,3
+SECKY,1866473,4
+48361122,1866473,4
+66794531,1866473,5
+61667274,1866473,5
+3084855,1866473,5
+WatanabeSumire,1866473,3
+beckham7,1866473,4
+wildshen,1866473,5
+hohojm,1866473,4
+doppio,1866473,4
+63359487,1866473,4
+elephantjun,1866473,4
+4909186,1866473,3
+limbopp,1866473,5
+fallinrnb,1866473,4
+eko2echo,1866473,3
+135664793,1866473,4
+121740061,1866473,4
+53364915,1866473,4
+52579703,1866473,4
+PsychoMissSo,1866473,3
+85733818,1866473,4
+122751247,1866473,5
+losacos,1866473,4
+48182921,1866473,3
+claireloveyou,1866473,4
+50204008,1866473,4
+Windbroken,1866473,4
+YaO-TaTa,1866473,5
+ganster,1866473,5
+chagrinbleu,1866473,4
+36654067,1866473,3
+jerry_zou,1866473,5
+Yaya325,1866473,3
+91671305,1866473,5
+75295285,1866473,5
+46402600,1866473,4
+68810289,1866473,4
+72136015,1866473,4
+72136015,1866473,4
+17628651,1866473,3
+39547942,1866473,4
+77883181,1866473,4
+yumanre,1866473,5
+59807561,1866473,5
+67077471,1866473,5
+48793243,1866473,3
+33245540,1866473,4
+44134802,1866473,5
+59995660,1866473,4
+71188390,1866473,5
+66979855,1866473,4
+67678601,1866473,4
+3780212,1866473,5
+antony221,1866473,3
+coolgun,1866473,4
+50396291,1866473,3
+64883992,1866473,5
+134242130,1866473,4
+57795507,1866473,3
+lihouyuan,1866473,4
+49905941,1866473,2
+135445524,1866473,4
+82771577,1866473,4
+annhyukwon,1866473,5
+62088663,1866473,4
+84744874,1866473,4
+59291130,1866473,5
+electroniXtar,1866473,5
+38811434,1866473,3
+99942273,1866473,3
+Casiopea_yh,1866473,4
+4454159,1866473,3
+iclover1314,1866473,5
+Y.Neverland,1866473,4
+32541723,1866473,5
+122657372,1866473,5
+84250012,1866473,4
+72013021,1866473,4
+72013021,1866473,4
+129919974,1866473,5
+133764875,1866473,4
+40588949,1866473,4
+62930321,1866473,4
+50883641,1866473,4
+115644313,1866473,5
+92576305,1866473,3
+bigEggplant,1866473,5
+80149039,1866473,4
+63757609,1866473,4
+55910656,1866473,5
+126489180,1866473,4
+2909779,1866473,4
+120194903,1866473,4
+43698973,1866473,3
+84707523,1866473,5
+yu830,1866473,3
+unclepenguin,1866473,5
+108077404,1866473,3
+luoyunxiang72,1866473,3
+96782721,1866473,3
+38558253,1866473,-1
+yukuai,1866473,-1
+88648524,1866473,5
+Corrinne,1866473,3
+88135973,1866473,4
+37359681,1866473,4
+moon.s11_11,1866473,5
+54220607,1866473,3
+45324893,1866473,3
+55421906,1866473,4
+54936166,1866473,4
+10236919,1866473,4
+103247038,1866473,3
+52864776,1866473,5
+gadflyesterday,1866473,5
+94952686,1866473,3
+36352996,1866473,3
+56492985,1866473,4
+76417903,1866473,4
+lcghere,1866473,5
+niccal,1866473,4
+superbwt,1866473,5
+yuuko-rei,1866473,4
+monononono,1866473,4
+Strangefamiliar,1866473,2
+huti,1866473,5
+lostoldboy,1866473,4
+princesssyn,1866473,4
+liuxt,1866473,4
+2095236,1866473,3
+76602042,1866473,5
+leona_2624c,1866473,4
+131191820,1866473,5
+paopao_2011,1866473,4
+60051635,1866473,3
+67240379,1866473,3
+53582924,1866473,4
+30022643,1866473,4
+13643786,1866473,5
+lomonv,1866473,3
+freddie,1866473,3
+24274750,1866473,4
+leeXD22,1866473,5
+130162562,1866473,5
+50284809,1866473,5
+90201226,1866473,5
+madblademan,1866473,5
+buzhishilikai,1866473,4
+melentao,1866473,4
+35371266,1866473,4
+49158269,1866473,4
+cherryye,1866473,5
+lianadreaming,1866473,4
+mantouniu,1866473,3
+47101605,1866473,4
+58400620,1866473,4
+76194476,1866473,5
+49693617,1866473,4
+ucyuicy,1866473,3
+3478508,1866473,5
+50191994,1866473,4
+h514367193,1866473,3
+46957067,1866473,3
+56017394,1866473,4
+3669844,1866473,4
+104511788,1866473,4
+84929947,1866473,5
+liufangni,1866473,3
+60486798,1866473,4
+63672355,1866473,4
+113966573,1866473,4
+xiaomeizi22,1866473,5
+arriey,1866473,4
+115202720,1866473,3
+letonk,1866473,4
+131335028,1866473,4
+65917717,1866473,5
+32594098,1866473,4
+51827168,1866473,4
+26721122,1866473,4
+95026029,1866473,4
+45904259,1866473,5
+zoe970829,1866473,5
+tzerol,1866473,3
+summerji,1866473,4
+135340486,1866473,3
+63813072,1866473,4
+47053575,1866473,4
+49028296,1866473,5
+124277677,1866473,3
+vaan_konh,1866473,4
+ntz521,1866473,3
+115009833,1866473,4
+75640218,1866473,5
+81178074,1866473,5
+134983577,1866473,3
+124266215,1866473,5
+48278787,1866473,5
+77182257,1866473,4
+63150042,1866473,3
+fxx1498420,1866473,3
+wukomn,1866473,5
+119468081,1866473,4
+65951134,1866473,3
+63992935,1866473,4
+chengzhongke,1866473,5
+3578321,1866473,3
+luvmariah,1866473,5
+56003950,1866473,4
+67244165,1866473,4
+129513068,1866473,5
+69441778,1866473,5
+66980943,1866473,4
+62762871,1866473,3
+49343055,1866473,4
+InTheShadowOfLo,1866473,3
+41848839,1866473,4
+70336022,1866473,3
+49684865,1866473,3
+118090358,1866473,4
+1558551,1866473,3
+xqyamour,1866473,4
+52415244,1866473,4
+typezero,1866473,4
+39003448,1866473,4
+11964325,1866473,4
+Emily723,1866473,4
+4368925,1866473,4
+69255956,1866473,4
+foryoungheart,1866473,5
+61566876,1866473,4
+andersonyue,1866473,4
+sodazxw,1866473,4
+49578533,1866473,4
+77420474,1866473,4
+52021990,1866473,5
+echo0607,1866473,5
+evergreeen,1866473,4
+42535612,1866473,5
+vivisnbb,1866473,4
+4525795,1866473,4
+49335488,1866473,4
+135128946,1866473,4
+godmako,1866473,5
+71806570,1866473,4
+65364014,1866473,5
+60307625,1866473,4
+45306000,1866473,4
+36115089,1866473,5
+minoindemo,1866473,3
+4527041,1866473,3
+82479868,1866473,5
+51132496,1866473,4
+2249866,1866473,4
+gwaihir,1866473,5
+xuyansong,1866473,4
+36579827,1866473,4
+Luna_apo,1866473,5
+2134366,1866473,3
+1067485,1866473,4
+4905173,1866473,4
+83989454,1866473,5
+quanquan0817,1866473,5
+54570567,1866473,4
+2349644,1866473,4
+misstorlii,1866473,3
+123383424,1866473,3
+115702913,1866473,4
+57336670,1866473,5
+ivy0208,1866473,4
+enralphle,1866473,5
+116035367,1866473,4
+43671696,1866473,2
+Ihuiyao,1866473,4
+ashli,1866473,3
+74566437,1866473,3
+62535973,1866473,4
+89409260,1866473,4
+xiaopendvd,1866473,-1
+jiezimao,1866473,3
+58651646,1866473,4
+ClaireL,1866473,4
+59967875,1866473,5
+79680480,1866473,4
+57928041,1866473,5
+76128853,1866473,5
+134901053,1866473,4
+2959420,1866473,4
+2790802,1866473,4
+59285776,1866473,5
+120358782,1866473,4
+hingyyq,1866473,3
+wukongtiaotiao,1866473,4
+selavyzhou,1866473,5
+80923328,1866473,-1
+doralupin,1866473,4
+57826492,1866473,3
+127322008,1866473,3
+71882861,1866473,3
+miga_sophia,1866473,3
+47100950,1866473,3
+134013208,1866473,5
+cosmtrek,1866473,4
+49679859,1866473,5
+beijinglife,1866473,3
+48849498,1866473,4
+anliye,1866473,4
+70354592,1866473,4
+60976525,1866473,4
+46310239,1866473,3
+4525488,1866473,5
+phoenixfannie,1866473,4
+79822985,1866473,4
+66581901,1866473,2
+Volence,1866473,4
+miyavikame,1866473,5
+65274866,1866473,4
+48786976,1866473,4
+52146606,1866473,4
+60648596,1866473,4
+2580551,1866473,3
+45778196,1866473,3
+57984448,1866473,4
+chequel7880,1866473,3
+115985324,1866473,5
+69857353,1866473,4
+74551171,1866473,4
+64954480,1866473,5
+57262819,1866473,5
+81175608,1866473,4
+47603916,1866473,3
+sunchao1989,1866473,3
+mickeyhao,1866473,4
+hana0707,1866473,5
+123250951,1866473,5
+limifly,1866473,4
+132348134,1866473,4
+wesley007,1866473,3
+goodbyelenin,1866473,3
+26149046,1866473,4
+haxiepeia,1866473,4
+96123927,1866473,4
+47905384,1866473,4
+kkfkk,1866473,4
+50183635,1866473,4
+43375121,1866473,5
+61039882,1866473,4
+deyon,1866473,3
+48227947,1866473,5
+3195572,1866473,4
+79865158,1866473,4
+38971714,1866473,5
+64292562,1866473,4
+121191665,1866473,5
+Night_shadow,1866473,3
+82511491,1866473,4
+lunargoddess,1866473,4
+kyleul,1866473,5
+59086030,1866473,3
+119340060,1866473,4
+121182825,1866473,5
+MWHLONG,1866473,4
+49864044,1866473,5
+48545858,1866473,5
+zhtianyu,1866473,4
+69943229,1866473,3
+kokia233,1866473,5
+70439283,1866473,4
+lieds,1866473,5
+idealtemple,1866473,4
+130504774,1866473,3
+klakt,1866473,3
+135335880,1866473,4
+127480277,1866473,4
+WWWINDSKY,1866473,3
+74796937,1866473,4
+68318109,1866473,5
+64300426,1866473,4
+4882930,1866473,5
+IridescentSin,1866473,4
+chaosenvoy,1866473,5
+airshadowchan,1866473,5
+41850877,1866473,2
+elice,1866473,4
+zzyzeal,1866473,4
+68657829,1866473,5
+79677319,1866473,3
+yigerenzhu,1866473,4
+101847790,1866473,4
+3922372,1866473,4
+sissyyyy,1866473,4
+seren,1866473,5
+3410512,1866473,4
+86807524,1866473,4
+128418401,1866473,4
+62248402,1866473,4
+35477330,1866473,4
+52852194,1866473,4
+3722910,1866473,4
+3557049,1866473,1
+47029136,1866473,4
+82889509,1866473,5
+fansherlocked,1866473,3
+25240448,1866473,4
+oceanheart,1866473,5
+58374037,1866473,5
+63091551,1866473,4
+67437110,1866473,-1
+47379077,1866473,4
+84169041,1866473,4
+45648843,1866473,3
+121818648,1866473,5
+45274666,1866473,5
+littlejuice,1866473,4
+silvanelf,1866473,4
+2489180,1866473,4
+55503051,1866473,3
+36840213,1866473,4
+4163965,1866473,5
+82915767,1866473,4
+35233003,1866473,3
+ld514,1866473,4
+83989182,1866473,4
+MueKir,1866473,4
+4356952,1866473,3
+liltwo,1866473,3
+2742057,1866473,4
+zhou33,1866473,4
+55802778,1866473,4
+78249968,1866473,4
+121460001,1866473,5
+34623045,1866473,3
+fucklife233,1866473,4
+85109921,1866473,3
+67980899,1866473,4
+onshuway,1866473,4
+l.a.m.b,1866473,4
+fanwen0610,1866473,4
+84866154,1866473,4
+133864523,1866473,4
+62558401,1866473,5
+123431259,1866473,5
+46505445,1866473,3
+yekciR,1866473,4
+louxiaoxiao,1866473,5
+47647880,1866473,4
+2481671,1866473,5
+47583585,1866473,4
+xuhongmiao,1866473,2
+3547067,1866473,2
+97211660,1866473,4
+2766948,1866473,3
+54170909,1866473,4
+gk521,1866473,5
+Jillian,1866473,-1
+58131621,1866473,4
+samkaka,1866473,5
+12835196,1866473,4
+55607390,1866473,4
+94460148,1866473,4
+68399606,1866473,5
+52952050,1866473,5
+135401156,1866473,4
+134692898,1866473,4
+35991194,1866473,3
+cealiannnnnn,1866473,5
+Milk_Solo,1866473,4
+52286623,1866473,3
+67728756,1866473,3
+62432326,1866473,5
+91686187,1866473,4
+2340389,1866473,4
+leixe,1866473,3
+58628338,1866473,4
+46598871,1866473,3
+52228251,1866473,4
+17686337,1866473,4
+32354448,1866473,5
+65546282,1866473,3
+58094716,1866473,5
+darling425,1866473,3
+127085262,1866473,3
+zeph1462,1866473,4
+2359242,1866473,5
+51930449,1866473,5
+medievaldream32,1866473,3
+56582926,1866473,4
+62687736,1866473,4
+iammushroomyy,1866473,3
+54597801,1866473,3
+73749265,1866473,4
+63168857,1866473,5
+tellsme,1866473,3
+little-dog,1866473,4
+135518285,1866473,4
+mrsrost,1866473,3
+Kumamonnn,1866473,5
+63425633,1866473,4
+52883078,1866473,4
+67029274,1866473,4
+zebra168,1866473,5
+behindlies,1866473,4
+49832504,1866473,4
+PP-RAIN,1866473,5
+92340097,1866473,-1
+56526840,1866473,5
+linruoru,1866473,4
+41158884,1866473,4
+maoyufreng,1866473,4
+zayaza,1866473,3
+56423521,1866473,4
+58350801,1866473,4
+42604000,1866473,4
+58587564,1866473,5
+62743500,1866473,4
+35827809,1866473,3
+43868110,1866473,3
+4238363,1866473,3
+z-tianhua,1866473,4
+FinalFantasy,1866473,4
+53381423,1866473,3
+68534357,1866473,4
+ziningcanyue,1866473,4
+120099108,1866473,5
+121346678,1866473,4
+35365939,1866473,4
+73383984,1866473,4
+46889127,1866473,4
+81326728,1866473,3
+43671403,1866473,5
+61245435,1866473,4
+GrinGrinGrin,1866473,4
+61809588,1866473,5
+52635539,1866473,3
+stupidant,1866473,3
+yanlaotie,1866473,5
+67862151,1866473,4
+yinleo,1866473,4
+34369350,1866473,1
+dodov,1866473,3
+wz1031h,1866473,4
+3091893,1866473,4
+straizer,1866473,5
+54821248,1866473,4
+akward,1866473,5
+qinqin1130,1866473,3
+mississluu,1866473,4
+anya2011,1866473,5
+29894151,1866473,4
+90987820,1866473,5
+43232986,1866473,3
+21338461,1866473,5
+arthurx,1866473,4
+85008065,1866473,4
+2330715,1866473,4
+oldrabbit,1866473,5
+itzhaoxiangyu,1866473,4
+xialiang1900,1866473,-1
+56072564,1866473,4
+changtengteng,1866473,4
+84077935,1866473,4
+75260597,1866473,4
+84408984,1866473,4
+jeelychair,1866473,4
+choy,1866473,4
+73449751,1866473,4
+109365835,1866473,3
+brightwsx,1866473,3
+60406508,1866473,3
+HollyBecky,1866473,4
+yummyW,1866473,4
+leslieilee,1866473,4
+50499996,1866473,4
+133065964,1866473,4
+1266223,1866473,1
+124266239,1866473,5
+53962149,1866473,3
+50347133,1866473,3
+HeroineDaode,1866473,2
+timbbm,1866473,3
+45944885,1866473,4
+91958061,1866473,5
+127567879,1866473,4
+1098195,1866473,3
+52803666,1866473,5
+2940531,1866473,3
+melynda,1866473,3
+badaalle,1866473,3
+hyy714,1866473,5
+48418593,1866473,4
+2954485,1866473,4
+80418355,1866473,4
+129977566,1866473,4
+acswana,1866473,4
+79728421,1866473,5
+Georgewen,1866473,3
+runforheart,1866473,5
+113327866,1866473,4
+85734464,1866473,3
+52587148,1866473,4
+3385352,1866473,3
+96014072,1866473,3
+68776992,1866473,4
+1101928,1866473,4
+79948176,1866473,4
+51354667,1866473,5
+62880392,1866473,4
+vulperz,1866473,4
+70392138,1866473,4
+3297168,1866473,5
+Iamwanghaha,1866473,5
+134866133,1866473,5
+121756661,1866473,4
+meilingmj,1866473,4
+34183802,1866473,3
+41444054,1866473,4
+72729301,1866473,4
+59254681,1866473,4
+82222392,1866473,4
+51663220,1866473,4
+76852341,1866473,5
+48349431,1866473,4
+45903649,1866473,3
+54770734,1866473,4
+80834580,1866473,5
+52468126,1866473,4
+57633355,1866473,4
+51749125,1866473,3
+36568003,1866473,3
+37210878,1866473,4
+66966914,1866473,4
+124062673,1866473,3
+52636837,1866473,4
+2844320,1866473,3
+56672211,1866473,4
+135315015,1866473,4
+heikichi,1866473,4
+129582003,1866473,4
+134611218,1866473,3
+49382185,1866473,3
+120378701,1866473,3
+sucivy,1866473,4
+4132864,1866473,4
+57430809,1866473,4
+zhuakuangshitai,1866473,4
+70076924,1866473,4
+54898944,1866473,3
+105736560,1866473,4
+44330388,1866473,4
+seafans,1866473,5
+4381355,1866473,4
+87891193,1866473,4
+liuningba,1866473,4
+hexuanpomon,1866473,4
+55434870,1866473,4
+37242209,1866473,3
+121761822,1866473,2
+100532908,1866473,4
+gooo111,1866473,4
+zhangezra,1866473,4
+48419666,1866473,5
+31043480,1866473,5
+136161089,1866473,4
+zhawk008,1866473,4
+sophia-xiao,1866473,4
+31483921,1866473,3
+feesle,1866473,5
+49618072,1866473,5
+RockxxPunk,1866473,5
+IceP,1866473,5
+69251373,1866473,4
+4872425,1866473,3
+57886275,1866473,3
+3365356,1866473,4
+halfhalf,1866473,4
+54997572,1866473,5
+3066956,1866473,3
+55340226,1866473,4
+62182942,1866473,3
+52847252,1866473,5
+64821035,1866473,5
+3532653,1866473,4
+anniefay,1866473,4
+Showga,1866473,4
+xiaojuner12,1866473,3
+63352248,1866473,4
+youmuxun,1866473,5
+Microka,1866473,4
+lushimizu,1866473,5
+zhongzhinan,1866473,4
+132959097,1866473,3
+48494718,1866473,4
+boomXXboomXX,1866473,4
+93372123,1866473,4
+132028366,1866473,5
+xunianwen1314,1866473,3
+Ryanzeng,1866473,5
+Janone,1866473,3
+missqso,1866473,2
+74779260,1866473,4
+129432208,1866473,4
+2016454,1866473,4
+38886796,1866473,4
+58343189,1866473,4
+joeysuri,1866473,4
+64246935,1866473,3
+113285477,1866473,3
+Redlum,1866473,5
+82285213,1866473,4
+muyunattitude,1866473,4
+4370686,1866473,3
+82336545,1866473,3
+2089051,1866473,3
+ryanwords,1866473,3
+Chayhaw,1866473,5
+47361556,1866473,3
+46017359,1866473,4
+Mango99101185,1866473,4
+viego,1866473,3
+57883052,1866473,5
+Joseph_8.12,1866473,4
+127526905,1866473,5
+49645604,1866473,4
+133399736,1866473,4
+80370344,1866473,4
+yoicy,1866473,4
+49123021,1866473,5
+i7COLORS,1866473,5
+vvvvvgoldenweek,1866473,5
+25329087,1866473,3
+64926044,1866473,3
+108394568,1866473,4
+3611961,1866473,5
+41438322,1866473,3
+58896741,1866473,4
+108210499,1866473,3
+115497097,1866473,4
+128782904,1866473,4
+64689820,1866473,4
+Riskey,1866473,3
+Gioz,1866473,3
+niki2wynn,1866473,3
+93161752,1866473,3
+NAGISHO,1866473,4
+vickkid,1866473,4
+4158579,1866473,4
+4643954,1866473,3
+QQ3BlueRose,1866473,5
+55549573,1866473,3
+35297314,1866473,4
+qi-shao-shang,1866473,3
+shanyuping,1866473,3
+60392839,1866473,3
+jeaiad,1866473,3
+16526373,1866473,4
+88439681,1866473,3
+royin.chao,1866473,4
+7549744,1866473,5
+48377465,1866473,4
+unbounder,1866473,4
+73692914,1866473,5
+21139926,1866473,3
+82150919,1866473,3
+135886747,1866473,4
+76909066,1866473,5
+bardfox,1866473,4
+89984750,1866473,3
+40936615,1866473,4
+97042878,1866473,5
+lesleylui,1866473,5
+MYtachikoma,1866473,4
+103163383,1866473,5
+81144305,1866473,5
+fsivyneof4,1866473,5
+84762957,1866473,4
+43766202,1866473,4
+55335004,1866473,4
+58133291,1866473,4
+66613325,1866473,4
+thecrespo,1866473,4
+36470859,1866473,3
+53126913,1866473,4
+76617024,1866473,4
+74654745,1866473,3
+61389067,1866473,3
+60658925,1866473,3
+zihaozai0407,1866473,4
+62442761,1866473,3
+90693032,1866473,4
+CPUCMX,1866473,5
+ppandpp,1866473,4
+62877626,1866473,5
+123331677,1866473,4
+xiyanbyluo,1866473,4
+47215700,1866473,3
+c12064,1866473,4
+tracycw618,1866473,4
+amzyangyk,1866473,3
+80768830,1866473,5
+12822970,1866473,4
+55479744,1866473,5
+61740178,1866473,3
+lienhe,1866473,4
+71980617,1866473,3
+61024335,1866473,5
+48342724,1866473,4
+103736685,1866473,5
+107399304,1866473,3
+66612367,1866473,4
+65346497,1866473,3
+52933680,1866473,5
+62908361,1866473,4
+maggiemars,1866473,3
+ninewords,1866473,5
+riraku,1866473,-1
+4107737,1866473,-1
+remenbercc,1866473,5
+87529198,1866473,4
+135448441,1866473,4
+adamhu,1866473,4
+sidneyalva,1866473,4
+70039420,1866473,5
+41787565,1866473,4
+80922094,1866473,4
+4108295,1866473,4
+120538141,1866473,5
+Rachel.W,1866473,4
+watercuber,1866473,4
+huoxiaoliang,1866473,3
+48102279,1866473,4
+50620373,1866473,5
+45831323,1866473,4
+PaigeRaw,1866473,3
+61042773,1866473,5
+7510013,1866473,4
+53373861,1866473,2
+68200387,1866473,2
+3621631,1866473,5
+45536018,1866473,4
+120038071,1866473,5
+50933206,1866473,3
+91808189,1866473,4
+57026267,1866473,3
+41275504,1866473,4
+aprilwind_shi,1866473,3
+58596965,1866473,4
+3442243,1866473,-1
+wpy114,1866473,5
+brant,1866473,5
+54010420,1866473,4
+69378440,1866473,3
+ioncx,1866473,4
+doukoku,1866473,3
+qianlongwu,1866473,4
+baxianjiang,1866473,4
+83650519,1866473,5
+ClaireChu,1866473,4
+26860515,1866473,5
+133027418,1866473,4
+4696967,1866473,-1
+yizizhiming,1866473,5
+53025886,1866473,4
+55548424,1866473,4
+4343972,1866473,5
+48471441,1866473,5
+yoshidaerika,1866473,5
+73034014,1866473,5
+tequila7,1866473,4
+46064508,1866473,4
+126818106,1866473,4
+43137121,1866473,4
+51912865,1866473,4
+tanggg,1866473,4
+131480891,1866473,4
+130592757,1866473,3
+3310338,1866473,5
+51134125,1866473,4
+62062793,1866473,4
+zhuxiaoxuan,1866473,4
+Lioka,1866473,4
+92811330,1866473,5
+47243761,1866473,5
+3974202,1866473,4
+64978409,1866473,5
+56689572,1866473,3
+lilium,1866473,3
+122240927,1866473,3
+up117,1866473,5
+2030641,1866473,3
+69702764,1866473,4
+115483881,1866473,4
+133820326,1866473,5
+2174521,1866473,3
+61312247,1866473,5
+Bleaker,1866473,4
+4584624,1866473,3
+cviva,1866473,5
+waWa.tomato,1866473,3
+18313578,1866473,3
+sred0727,1866473,5
+rakkaus,1866473,4
+sakurawei,1866473,4
+123938127,1866473,5
+80928749,1866473,3
+64315063,1866473,4
+56628925,1866473,5
+4826633,1866473,4
+1412545,1866473,4
+woaichanganmou,1866473,4
+104215998,1866473,3
+cicisj,1866473,3
+thomsonkoo,1866473,4
+58187681,1866473,4
+44708171,1866473,4
+cqmccb,1866473,5
+65303828,1866473,4
+124573500,1866473,5
+49808652,1866473,3
+wongzayoi,1866473,3
+94585344,1866473,4
+daisylau,1866473,5
+66749502,1866473,3
+73285323,1866473,4
+54143026,1866473,5
+52640944,1866473,5
+47802404,1866473,4
+nicos,1866473,5
+Sigrid_Lu,1866473,3
+107392859,1866473,4
+46836947,1866473,4
+48773692,1866473,4
+82582719,1866473,5
+50451911,1866473,4
+82844631,1866473,5
+48224282,1866473,4
+61085333,1866473,4
+43757152,1866473,5
+2890229,1866473,5
+K220810,1866473,5
+45047336,1866473,3
+leabc,1866473,5
+119311113,1866473,5
+46234987,1866473,4
+scolo,1866473,3
+55860957,1866473,3
+54239971,1866473,5
+69616363,1866473,4
+HollyPhoenix,1866473,3
+64238881,1866473,3
+zxzcherish,1866473,5
+49269031,1866473,3
+61712348,1866473,3
+ypl52111,1866473,4
+61856030,1866473,4
+zhaoyao0919,1866473,4
+SamuelYan,1866473,4
+1167276,1866473,4
+InvisibleViper,1866473,5
+InvisibleViper,1866473,5
+73958470,1866473,3
+40104674,1866473,4
+131811211,1866473,5
+s085113,1866473,5
+bluemind,1866473,3
+97011307,1866473,3
+50619132,1866473,3
+62374245,1866473,5
+fifa10,1866473,4
+101856109,1866473,3
+76496998,1866473,4
+44326808,1866473,5
+oasisercher,1866473,5
+82564566,1866473,4
+yukchor,1866473,4
+2769218,1866473,5
+68282002,1866473,4
+65450414,1866473,4
+niexiaoyuan,1866473,4
+noleavenostick,1866473,4
+62169454,1866473,4
+vloiter,1866473,3
+77492957,1866473,4
+yixiaoyan_,1866473,4
+gismine,1866473,4
+81660493,1866473,5
+56333236,1866473,2
+thegreatkoala,1866473,3
+catbuild,1866473,5
+89187307,1866473,5
+74869653,1866473,3
+hidemyhead,1866473,4
+JJSJJ,1866473,2
+134156002,1866473,5
+93486979,1866473,5
+47798709,1866473,5
+ameliuge,1866473,3
+120272196,1866473,5
+82391952,1866473,3
+46281534,1866473,4
+61953501,1866473,4
+11428236,1866473,4
+bigcakkkkkke,1866473,5
+wanganqi,1866473,4
+47993544,1866473,5
+zjfyy1011128,1866473,4
+61722322,1866473,3
+72523304,1866473,5
+RivaLinn,1866473,4
+onenote,1866473,4
+davoo,1866473,4
+75953505,1866473,5
+31873447,1866473,4
+67372006,1866473,3
+64898125,1866473,4
+45897135,1866473,5
+90051465,1866473,4
+84339238,1866473,4
+61366288,1866473,4
+104605800,1866473,5
+ice-yan,1866473,4
+2579882,1866473,3
+41660790,1866473,4
+16645869,1866473,5
+51965596,1866473,4
+62316028,1866473,5
+51249252,1866473,3
+32941683,1866473,3
+fayexu,1866473,4
+59384667,1866473,4
+51412054,1866473,4
+iyyhua,1866473,4
+facteur,1866473,4
+61348061,1866473,4
+41855603,1866473,4
+mymydemon,1866473,4
+4530638,1866473,3
+steve647,1866473,5
+12832281,1866473,5
+67388709,1866473,5
+maomiwang809,1866473,4
+119475808,1866473,4
+125691923,1866473,4
+4287326,1866473,5
+evan999,1866473,4
+74103020,1866473,4
+October21,1866473,4
+yinjianfa,1866473,5
+43830625,1866473,3
+irenezlq,1866473,5
+45855864,1866473,3
+2600693,1866473,3
+64287168,1866473,4
+58603704,1866473,3
+chinadoll_xenia,1866473,3
+38500219,1866473,4
+C-Plus,1866473,3
+63166175,1866473,4
+lovingyoyo8ever,1866473,5
+66572341,1866473,-1
+43336457,1866473,5
+mayleo,1866473,4
+cupltiantian,1866473,4
+wonderfulsavvy,1866473,4
+67939755,1866473,3
+goson,1866473,4
+70018914,1866473,4
+Mobius.wang,1866473,4
+pandaleilei,1866473,4
+56206646,1866473,-1
+80820907,1866473,5
+135607709,1866473,4
+57534573,1866473,3
+103149314,1866473,3
+130883394,1866473,5
+74418129,1866473,5
+SweetyAndMe,1866473,5
+33191821,1866473,4
+65084443,1866473,4
+120819060,1866473,4
+120035398,1866473,4
+40757284,1866473,4
+taski.C,1866473,-1
+34173621,1866473,4
+54027649,1866473,-1
+sunanna,1866473,4
+2485814,1866473,4
+viola210,1866473,3
+115772568,1866473,4
+64816700,1866473,4
+seventhworkshop,1866473,4
+linnnnnc,1866473,3
+killrec,1866473,-1
+tincnie,1866473,4
+54096060,1866473,4
+124144390,1866473,4
+59821556,1866473,4
+mao87523,1866473,5
+marvirah,1866473,5
+74607366,1866473,-1
+Top129,1866473,4
+ertianyiliu,1866473,5
+shxhkun,1866473,4
+dearruby,1866473,4
+53434263,1866473,4
+121382290,1866473,5
+bluelsd,1866473,3
+tangan,1866473,4
+masterbuyuan,1866473,3
+MRCellardoor,1866473,5
+64450294,1866473,4
+46735231,1866473,5
+constancef,1866473,3
+48723558,1866473,4
+69646560,1866473,4
+merengue,1866473,4
+51313019,1866473,5
+85024027,1866473,3
+1066031,1866473,4
+89997882,1866473,3
+Never_mind,1866473,5
+xiezhenyu,1866473,5
+48420105,1866473,4
+57892875,1866473,-1
+lovefilms,1866473,3
+69145897,1866473,5
+babybei,1866473,5
+chenjisoler,1866473,4
+zzzzzmc,1866473,4
+epplenoki,1866473,4
+74538416,1866473,1
+63373186,1866473,4
+113073174,1866473,5
+134312788,1866473,4
+6186981,1866473,5
+wenbo2003,1866473,4
+2858394,1866473,4
+58605674,1866473,4
+50269699,1866473,4
+54791351,1866473,5
+87498473,1866473,5
+nicdone,1866473,4
+vividance,1866473,4
+51763262,1866473,5
+tjvicwong,1866473,4
+70365819,1866473,5
+62960950,1866473,4
+fatfay,1866473,3
+48504589,1866473,4
+54379104,1866473,1
+1876785,1866473,3
+yanqinforziyu,1866473,5
+53159454,1866473,4
+amaotou,1866473,3
+52586242,1866473,5
+56870852,1866473,4
+104432779,1866473,5
+xx0301ll,1866473,3
+58267868,1866473,4
+clayda,1866473,4
+2737013,1866473,5
+Vol.de.nuit,1866473,3
+14407324,1866473,4
+38886735,1866473,4
+63662895,1866473,4
+shennessy,1866473,3
+43287608,1866473,4
+84522058,1866473,5
+flowermumu,1866473,3
+4005034,1866473,5
+yujingfenglove,1866473,5
+87842256,1866473,3
+59378260,1866473,5
+40531790,1866473,4
+hqwxyz,1866473,4
+122130571,1866473,3
+125751709,1866473,4
+lesones,1866473,4
+54543639,1866473,4
+58323913,1866473,4
+zhangzhangzhang,1866473,5
+58262603,1866473,5
+inearlysummer,1866473,5
+noel.suri,1866473,4
+oosunshine,1866473,5
+60782706,1866473,5
+65393759,1866473,3
+2319130,1866473,3
+3880942,1866473,5
+1977979,1866473,4
+whyan9,1866473,5
+IantoJones,1866473,5
+39627284,1866473,5
+sirkee,1866473,4
+121763704,1866473,5
+36575109,1866473,5
+1135938,1866473,4
+43859610,1866473,4
+hairh,1866473,5
+akilaa,1866473,3
+46911355,1866473,-1
+Rainbowww,1866473,3
+57195945,1866473,5
+13570007,1866473,3
+119189786,1866473,5
+46793847,1866473,4
+sdinger,1866473,4
+48437475,1866473,3
+renchenwei,1866473,5
+81371751,1866473,4
+toutdai,1866473,4
+biggrass,1866473,4
+Nicolelingji,1866473,4
+59537499,1866473,5
+dreamer629,1866473,4
+42149787,1866473,3
+23154088,1866473,5
+68559810,1866473,4
+48766647,1866473,3
+delicioussalad,1866473,4
+90795622,1866473,3
+Monster_004,1866473,4
+louing,1866473,4
+crlazy_,1866473,4
+78428870,1866473,5
+seanseal,1866473,4
+57583046,1866473,5
+68966981,1866473,4
+2626046,1866473,4
+1392335,1866473,4
+vince717,1866473,5
+23957168,1866473,4
+108111137,1866473,4
+49242708,1866473,4
+ovanisho,1866473,4
+61171378,1866473,4
+50377436,1866473,5
+76790888,1866473,4
+128066555,1866473,4
+132718277,1866473,5
+102254201,1866473,5
+tjz230,1866473,3
+59012758,1866473,4
+58777523,1866473,4
+xianjiang,1866473,4
+59249083,1866473,3
+podolski,1866473,3
+115613463,1866473,3
+92331243,1866473,4
+jafey1,1866473,5
+feicai1nan,1866473,4
+1926820,1866473,3
+kuangjieyu,1866473,3
+52918200,1866473,5
+levitating,1866473,3
+125136196,1866473,4
+pawear,1866473,4
+57436067,1866473,4
+bayuban,1866473,3
+79847046,1866473,4
+51283004,1866473,4
+133978729,1866473,4
+alj,1866473,4
+zx584384856,1866473,4
+128739482,1866473,4
+62788376,1866473,5
+69280280,1866473,4
+76624368,1866473,4
+57847785,1866473,4
+69744753,1866473,5
+zhengxianmin,1866473,4
+airan712,1866473,3
+mandylu2010,1866473,5
+132505637,1866473,3
+74628004,1866473,4
+LeonJunki,1866473,5
+45541495,1866473,4
+52170934,1866473,4
+57886651,1866473,4
+74002159,1866473,5
+minoyi,1866473,3
+yishenmanli,1866473,4
+xiaofanskyfree,1866473,4
+59340784,1866473,4
+anyi1314,1866473,5
+94135073,1866473,4
+75001572,1866473,4
+76234777,1866473,5
+46388568,1866473,3
+128248701,1866473,3
+75763564,1866473,2
+99765304,1866473,5
+59704797,1866473,5
+57405925,1866473,3
+idlelz,1866473,3
+65339878,1866473,3
+82990219,1866473,4
+50059470,1866473,4
+TomatoDevil,1866473,-1
+78490224,1866473,4
+4752519,1866473,4
+lijin606,1866473,4
+121718178,1866473,4
+50756277,1866473,4
+75096370,1866473,4
+outsider-hk,1866473,5
+liuweilian,1866473,4
+gilyun,1866473,5
+57075245,1866473,3
+76999762,1866473,4
+3080557,1866473,3
+63485325,1866473,4
+cookiesssss,1866473,4
+55817697,1866473,4
+56237449,1866473,1
+sadmu,1866473,4
+47886279,1866473,5
+62332371,1866473,4
+yukiyuko,1866473,4
+honey-honey,1866473,4
+flitter,1866473,4
+luerraluerra,1866473,5
+shaoraul,1866473,5
+xiaoshizhan,1866473,3
+2836954,1866473,4
+136046529,1866473,4
+131538725,1866473,3
+stardust1030,1866473,3
+97163496,1866473,5
+79086916,1866473,4
+2902661,1866473,4
+34271981,1866473,4
+udandan,1866473,3
+122411510,1866473,5
+july8903,1866473,4
+84244952,1866473,5
+92805867,1866473,5
+wdmzjls,1866473,3
+18586571,1866473,5
+bbian,1866473,5
+kingszar,1866473,3
+43842293,1866473,4
+theyear,1866473,4
+104600854,1866473,4
+summercaimin,1866473,3
+52951856,1866473,5
+clx1992,1866473,5
+StillAliveLoL,1866473,4
+126206725,1866473,5
+AlexanderWang,1866473,5
+58836054,1866473,4
+nancyyan,1866473,4
+128556621,1866473,5
+62731205,1866473,4
+4244492,1866473,4
+42630408,1866473,4
+53723765,1866473,4
+78619194,1866473,5
+64113646,1866473,5
+130699016,1866473,5
+1218211,1866473,3
+hot_air,1866473,3
+59606324,1866473,5
+74844430,1866473,4
+PrinceAlbert,1866473,5
+qinyouxuan,1866473,4
+66513837,1866473,4
+hushibookstore,1866473,3
+50566666,1866473,4
+57719412,1866473,3
+129298730,1866473,5
+58726406,1866473,4
+viva.wj,1866473,3
+41964570,1866473,5
+121389553,1866473,4
+Alinaqueen,1866473,3
+jyt0203,1866473,4
+Jerry-Zeng,1866473,4
+Nicccki,1866473,4
+1412098,1866473,3
+44034206,1866473,3
+forlig,1866473,4
+52543100,1866473,-1
+Bamboooooo,1866473,5
+72676164,1866473,4
+71466029,1866473,4
+127450235,1866473,4
+48687824,1866473,4
+nakiyami,1866473,3
+59290556,1866473,3
+Zoanty,1866473,-1
+hexiaoshuang,1866473,3
+54176828,1866473,4
+81107474,1866473,2
+121716592,1866473,4
+60411524,1866473,-1
+JinMinJun,1866473,4
+53559369,1866473,5
+kk_22,1866473,4
+alapeach,1866473,4
+102778571,1866473,4
+s_sc1,1866473,4
+45055967,1866473,5
+44400478,1866473,4
+44040999,1866473,4
+48217943,1866473,3
+torreslee,1866473,4
+41498049,1866473,3
+crea,1866473,4
+reave,1866473,4
+134520468,1866473,3
+iamzhanggui,1866473,5
+47021231,1866473,4
+onlyYH,1866473,4
+christopherlin,1866473,3
+ulayh0607,1866473,3
+121844395,1866473,3
+126785151,1866473,4
+43504927,1866473,5
+loverwenzi22,1866473,4
+52471318,1866473,4
+135694361,1866473,4
+130225502,1866473,4
+14965275,1866473,4
+wangdoudou20,1866473,4
+1458725,1866473,5
+Singtohalf,1866473,5
+57748050,1866473,5
+46333291,1866473,5
+65836711,1866473,4
+81146886,1866473,4
+nemo2man,1866473,3
+marvelwei,1866473,5
+lingrui1995,1866473,4
+3502294,1866473,4
+78728562,1866473,4
+michelq,1866473,3
+mr.slow,1866473,3
+zh91,1866473,4
+4599993,1866473,3
+3936900,1866473,4
+82689525,1866473,5
+79999351,1866473,5
+69386924,1866473,4
+1956606,1866473,2
+4603294,1866473,3
+1815039,1866473,3
+49647604,1866473,5
+Esacpe.,1866473,3
+49086768,1866473,1
+tongxiaonian,1866473,5
+dark_glede,1866473,4
+87769477,1866473,4
+superpanv,1866473,4
+4618089,1866473,3
+hawords,1866473,5
+rachel511,1866473,5
+119482459,1866473,4
+4414323,1866473,4
+4429797,1866473,5
+97249280,1866473,4
+109063951,1866473,4
+qq120286102030,1866473,4
+124454581,1866473,4
+raquelycidas,1866473,3
+illkids,1866473,4
+48406181,1866473,4
+windissolo,1866473,5
+130540529,1866473,4
+x.sunday,1866473,3
+4269656,1866473,4
+kimixu1017,1866473,1
+84938785,1866473,2
+57083421,1866473,3
+1138243,1866473,4
+94574301,1866473,4
+54818133,1866473,-1
+63822026,1866473,5
+47034969,1866473,3
+66015075,1866473,4
+lies583,1866473,4
+102067252,1866473,4
+65108877,1866473,3
+imarco,1866473,4
+68655879,1866473,5
+jhlcw,1866473,5
+50927542,1866473,4
+roseforu,1866473,4
+67730092,1866473,4
+mirageofbless,1866473,5
+jiqiuqiu,1866473,5
+126828053,1866473,3
+63257932,1866473,4
+saintxi,1866473,5
+134036415,1866473,4
+102024870,1866473,3
+tianxinqi,1866473,5
+upyougo,1866473,5
+adora,1866473,5
+63122021,1866473,3
+Tiffay-fxy,1866473,4
+64396292,1866473,4
+fafashit,1866473,5
+1001195,1866473,3
+48506304,1866473,5
+51667296,1866473,4
+1477802,1866473,5
+59032148,1866473,3
+wangeasy,1866473,4
+Murmur256,1866473,5
+51100123,1866473,5
+55373134,1866473,2
+133080033,1866473,5
+44589835,1866473,1
+70534283,1866473,5
+wangzelovely,1866473,4
+37146120,1866473,3
+doingcando,1866473,4
+49294840,1866473,4
+shenyong6813,1866473,4
+Clara0916,1866473,4
+80658200,1866473,4
+46740329,1866473,4
+Plutoyw,1866473,3
+toddzhou,1866473,4
+59060509,1866473,4
+58152713,1866473,4
+ethanlau,1866473,3
+59334555,1866473,4
+lunaa,1866473,3
+47376302,1866473,4
+monetsun,1866473,5
+71942378,1866473,5
+3884472,1866473,4
+luoyiyu,1866473,4
+52235575,1866473,4
+72091054,1866473,4
+120956047,1866473,3
+lukeyu,1866473,5
+60082328,1866473,5
+130044129,1866473,3
+44733447,1866473,4
+81045053,1866473,4
+51252348,1866473,3
+nothingbird,1866473,4
+lu7,1866473,-1
+113286915,1866473,-1
+62871612,1866473,4
+terenceyibo,1866473,3
+60086410,1866473,3
+liwujiu,1866473,3
+Leenur_gln,1866473,5
+81359953,1866473,5
+75322883,1866473,3
+61937258,1866473,4
+yanrange1218,1866473,4
+128937113,1866473,4
+68545285,1866473,5
+135145248,1866473,5
+52929305,1866473,4
+135959495,1866473,4
+80348933,1866473,4
+129557077,1866473,4
+84675514,1866473,4
+76933633,1866473,5
+zhuzaixuanyabia,1866473,5
+3483729,1866473,3
+raymondray,1866473,4
+reiko77877,1866473,4
+133010878,1866473,4
+sszwe,1866473,4
+53612447,1866473,4
+79913596,1866473,4
+94032593,1866473,4
+1995910,1866473,4
+79254578,1866473,4
+52928685,1866473,4
+43766729,1866473,4
+might_morning,1866473,4
+47172452,1866473,2
+122195109,1866473,4
+3144827,1866473,1
+62192019,1866473,4
+dmyra1011,1866473,4
+58955045,1866473,5
+119428504,1866473,3
+2947191,1866473,4
+53080002,1866473,4
+3526503,1866473,3
+81217259,1866473,5
+kou0413,1866473,5
+liuanan0606,1866473,4
+54783024,1866473,4
+1886453,1866473,5
+26812348,1866473,-1
+63853626,1866473,4
+72163139,1866473,3
+48165079,1866473,4
+45073290,1866473,4
+132065702,1866473,5
+55585297,1866473,3
+phunny,1866473,4
+90859526,1866473,1
+58209087,1866473,2
+leenyue,1866473,5
+48866416,1866473,3
+79893626,1866473,5
+taxi,1866473,4
+52244457,1866473,4
+93179604,1866473,4
+3466745,1866473,5
+115707608,1866473,5
+smilehuhu,1866473,5
+44529408,1866473,5
+justinnext,1866473,3
+119806823,1866473,5
+75174389,1866473,3
+50672411,1866473,4
+tc-tc,1866473,4
+57842655,1866473,4
+dearbaoba,1866473,5
+jessck,1866473,5
+40559782,1866473,5
+caojiang,1866473,5
+71181579,1866473,3
+zyx256,1866473,3
+89146290,1866473,4
+64397699,1866473,4
+3625223,1866473,4
+youeqian,1866473,4
+EmayI,1866473,4
+59089292,1866473,4
+117795392,1866473,4
+77037611,1866473,4
+kururuken,1866473,5
+qijiuzhiyue,1866473,3
+mrlp,1866473,3
+dancealone,1866473,4
+53343599,1866473,4
+izzie,1866473,4
+Dling-YYY,1866473,3
+nlc_hzn,1866473,3
+53806077,1866473,4
+42636733,1866473,4
+131610219,1866473,4
+34678139,1866473,4
+3110715,1866473,4
+68816004,1866473,4
+49854531,1866473,3
+2525910,1866473,4
+52233629,1866473,4
+84519888,1866473,5
+49488269,1866473,3
+79668765,1866473,5
+70536128,1866473,5
+53697035,1866473,5
+44600663,1866473,5
+4429031,1866473,4
+119512559,1866473,4
+119512559,1866473,4
+62651248,1866473,5
+126162318,1866473,3
+61737808,1866473,4
+27008930,1866473,4
+yanyan4ever,1866473,4
+103045657,1866473,4
+nashxk,1866473,5
+54236052,1866473,4
+73696070,1866473,4
+44724487,1866473,4
+2304686,1866473,5
+55438034,1866473,5
+keyilijie,1866473,5
+silver_soul,1866473,4
+angelclaudia,1866473,3
+yummyhere,1866473,-1
+81299938,1866473,4
+63209376,1866473,3
+Silstar,1866473,4
+jasonai,1866473,3
+125650125,1866473,4
+Cephiroth,1866473,4
+zhangxunnj,1866473,3
+50577348,1866473,3
+87726379,1866473,5
+58033392,1866473,3
+Smeagol,1866473,4
+monkeydoll,1866473,5
+alivinlondonl,1866473,3
+52408878,1866473,3
+109113938,1866473,4
+102960018,1866473,5
+121352269,1866473,4
+54989075,1866473,-1
+52002560,1866473,5
+42128136,1866473,4
+53581844,1866473,3
+53539766,1866473,4
+64552518,1866473,4
+47419627,1866473,5
+128075536,1866473,5
+97786845,1866473,4
+49133456,1866473,4
+119171673,1866473,4
+133852846,1866473,4
+hana-neverland,1866473,5
+46915487,1866473,5
+liandlisa,1866473,4
+41529515,1866473,3
+79528433,1866473,3
+fsmarjorie,1866473,3
+1498974,1866473,4
+73419369,1866473,5
+vitaminJ,1866473,3
+120169874,1866473,5
+verylolicon,1866473,4
+61394088,1866473,-1
+46871806,1866473,4
+wzdradon,1866473,4
+51504811,1866473,3
+78914788,1866473,4
+42477053,1866473,3
+1132028,1866473,5
+Robin0227,1866473,4
+6532656,1866473,5
+115807401,1866473,2
+80209748,1866473,4
+82305871,1866473,4
+63349480,1866473,5
+ben0813,1866473,3
+superchen1015,1866473,5
+26982621,1866473,4
+47701435,1866473,3
+Qooo,1866473,4
+46326400,1866473,3
+68239707,1866473,4
+65145861,1866473,5
+70913010,1866473,4
+zjc96,1866473,4
+51157503,1866473,4
+joy21278,1866473,5
+Elizabethly,1866473,3
+50522399,1866473,4
+49086461,1866473,4
+violan,1866473,4
+102650139,1866473,5
+85352179,1866473,4
+73845983,1866473,5
+79281125,1866473,5
+51665091,1866473,4
+75057354,1866473,5
+28183442,1866473,4
+62074957,1866473,3
+83852683,1866473,2
+48492345,1866473,4
+79798477,1866473,5
+68512252,1866473,4
+127299578,1866473,4
+47321536,1866473,4
+92462355,1866473,4
+2910620,1866473,4
+cainroziel,1866473,4
+114358187,1866473,5
+86253418,1866473,4
+70821942,1866473,5
+YangXueYFH,1866473,5
+paulinekp,1866473,-1
+66758358,1866473,5
+veveve,1866473,4
+19734042,1866473,3
+51563286,1866473,4
+oatgnik,1866473,4
+35902921,1866473,4
+94766000,1866473,3
+64724876,1866473,2
+41837755,1866473,4
+59418223,1866473,5
+6343940,1866473,5
+62927775,1866473,4
+bassapple,1866473,-1
+53594562,1866473,5
+Halbert-Sun,1866473,4
+55606165,1866473,3
+61207902,1866473,5
+136053872,1866473,1
+54008688,1866473,4
+Masked-xia,1866473,3
+44896206,1866473,4
+aurawang95,1866473,3
+82299258,1866473,5
+126970287,1866473,4
+irenaleo,1866473,4
+48062280,1866473,3
+55446096,1866473,5
+57002850,1866473,5
+115614631,1866473,4
+80212965,1866473,4
+d.brown,1866473,3
+127690553,1866473,4
+anoTherTeezy,1866473,3
+31873785,1866473,3
+85142259,1866473,4
+xiaochongshan,1866473,2
+56341748,1866473,4
+62517955,1866473,-1
+hwh,1866473,3
+75219384,1866473,4
+120209933,1866473,3
+58085348,1866473,3
+44159787,1866473,3
+poselen,1866473,5
+tintintsang,1866473,3
+endlishock,1866473,4
+39730031,1866473,4
+69457010,1866473,4
+utasty,1866473,4
+42264311,1866473,-1
+remuse,1866473,3
+3585501,1866473,-1
+67201475,1866473,4
+135087674,1866473,5
+Aimovie,1866473,3
+yangqiaohe,1866473,3
+fly7437,1866473,5
+lewuleyi,1866473,5
+93299177,1866473,5
+65199152,1866473,4
+ameliefei,1866473,4
+unnanae,1866473,4
+124773780,1866473,4
+105011179,1866473,4
+54829004,1866473,4
+55446081,1866473,4
+73572565,1866473,1
+86253613,1866473,4
+80797429,1866473,3
+46761602,1866473,5
+allonsy,1866473,5
+phoebejh,1866473,-1
+75332945,1866473,3
+susidai,1866473,3
+76356022,1866473,3
+mumurose,1866473,3
+Utopia.YY,1866473,4
+134198569,1866473,4
+118096038,1866473,4
+59954859,1866473,4
+52283927,1866473,4
+von71224,1866473,5
+109025568,1866473,5
+govgouviiiiiiii,1866473,5
+54002286,1866473,4
+61226979,1866473,5
+68156660,1866473,5
+62817881,1866473,5
+76193646,1866473,3
+100750697,1866473,4
+46007359,1866473,3
+131969086,1866473,4
+48114475,1866473,3
+125038920,1866473,3
+63981568,1866473,5
+wang1994,1866473,5
+peterhq,1866473,4
+135209955,1866473,4
+67742715,1866473,3
+52992118,1866473,3
+69323925,1866473,4
+3540779,1866473,4
+113834252,1866473,3
+hyjstc,1866473,3
+84564093,1866473,3
+63777506,1866473,4
+62532021,1866473,4
+60595638,1866473,4
+nicoletta,1866473,3
+64365749,1866473,3
+64595804,1866473,4
+80660240,1866473,5
+57935610,1866473,4
+106160266,1866473,4
+67677954,1866473,3
+61082716,1866473,5
+114014303,1866473,4
+49239429,1866473,4
+84260977,1866473,4
+104056990,1866473,3
+ALWAYSP2Q,1866473,4
+65399116,1866473,2
+ThroughTheNever,1866473,5
+104823216,1866473,4
+53229163,1866473,4
+122336700,1866473,3
+51490972,1866473,3
+2563161,1866473,5
+sockbabyclaire,1866473,5
+81420986,1866473,2
+58161520,1866473,5
+zqt0,1866473,4
+42084433,1866473,4
+lupinthe3rd,1866473,3
+102159203,1866473,4
+douban787878,1866473,4
+yuanzailv,1866473,4
+kerorocao,1866473,5
+62650109,1866473,4
+62817794,1866473,5
+kid131,1866473,3
+69680398,1866473,4
+56243256,1866473,5
+48825129,1866473,4
+60089560,1866473,4
+81061741,1866473,3
+27981640,1866473,4
+54862869,1866473,3
+63878965,1866473,5
+62927562,1866473,4
+51764700,1866473,5
+87599451,1866473,4
+71609799,1866473,4
+39217507,1866473,3
+82219188,1866473,4
+69225702,1866473,4
+135967327,1866473,3
+waka7,1866473,4
+74193285,1866473,4
+68435848,1866473,4
+55529322,1866473,5
+59367965,1866473,3
+H897120417,1866473,5
+Sabrinayao,1866473,5
+56017717,1866473,4
+59099932,1866473,4
+57984276,1866473,3
+48657704,1866473,5
+1495717,1866473,4
+83264508,1866473,5
+34280647,1866473,3
+32433633,1866473,4
+85868315,1866473,5
+51840690,1866473,4
+destroy0326,1866473,4
+36359522,1866473,3
+68771576,1866473,4
+ballteda,1866473,4
+2766375,1866473,5
+105146664,1866473,5
+37168028,1866473,4
+2465698,1866473,4
+87636985,1866473,3
+1530155,1866473,3
+duoduoshuwu,1866473,3
+98110557,1866473,4
+2713167,1866473,3
+74575002,1866473,4
+127853770,1866473,3
+47215745,1866473,3
+124953430,1866473,5
+115547734,1866473,4
+73445722,1866473,4
+gzzing,1866473,4
+55406228,1866473,3
+46911720,1866473,4
+daly0520,1866473,3
+teselaaaaaaa,1866473,3
+45840603,1866473,4
+93564412,1866473,5
+fushushuailuoli,1866473,4
+83389859,1866473,3
+70469575,1866473,4
+49319979,1866473,3
+121516783,1866473,3
+53416381,1866473,5
+58249501,1866473,3
+126189333,1866473,5
+6931938,1866473,1
+129598785,1866473,4
+115978200,1866473,4
+yolandityb,1866473,4
+92516233,1866473,4
+duolamaoxian,1866473,5
+cyeon,1866473,5
+114165552,1866473,4
+kinokoneko,1866473,5
+61076987,1866473,3
+iear,1866473,4
+50900048,1866473,3
+90491472,1866473,4
+76831491,1866473,2
+82817836,1866473,4
+DANTEJD,1866473,4
+129549618,1866473,5
+46565536,1866473,4
+88730050,1866473,3
+102100348,1866473,4
+122368219,1866473,5
+63531003,1866473,5
+130988539,1866473,4
+hotelCA,1866473,5
+75785153,1866473,5
+62683678,1866473,1
+63458011,1866473,5
+127728111,1866473,4
+45940438,1866473,5
+bieshaohui,1866473,4
+119583854,1866473,5
+78656769,1866473,5
+20960530,1866473,5
+51054063,1866473,5
+43866584,1866473,3
+113761818,1866473,4
+4067480,1866473,5
+wyylx0608,1866473,5
+67943735,1866473,4
+46848554,1866473,5
+131836014,1866473,5
+pitaya77,1866473,4
+HDG3215,1866473,5
+52470011,1866473,4
+89924744,1866473,3
+128675043,1866473,4
+101967009,1866473,5
+126980247,1866473,3
+unwillingly,1866473,4
+92841390,1866473,4
+59848257,1866473,4
+DangerRose,1866473,4
+47265925,1866473,5
+SuperWMY,1866473,4
+83401102,1866473,4
+65547752,1866473,4
+ren2kk,1866473,5
+lanebuxia,1866473,4
+68842437,1866473,3
+listenmumu,1866473,4
+Makoto614,1866473,3
+superkarit,1866473,5
+look,1866473,3
+34245713,1866473,4
+oceanboo,1866473,5
+25140645,1866473,4
+65975444,1866473,3
+49372738,1866473,4
+92559363,1866473,-1
+36667235,1866473,4
+104823231,1866473,3
+4506723,1866473,4
+2985135,1866473,4
+82663579,1866473,4
+cschester,1866473,4
+pupuxiang,1866473,5
+48609178,1866473,5
+49956294,1866473,5
+75007342,1866473,3
+135749481,1866473,3
+evan.liew,1866473,4
+dadadidada,1866473,5
+3053849,1866473,4
+kikyo531,1866473,3
+77043853,1866473,3
+TiAmoHelen,1866473,5
+68661491,1866473,5
+90761722,1866473,5
+aishiTeru,1866473,4
+seodler,1866473,4
+52605679,1866473,4
+6169099,1866473,3
+2444385,1866473,1
+koukouxuanhe,1866473,3
+41750008,1866473,5
+liljoker,1866473,4
+57947049,1866473,4
+52846746,1866473,4
+80907430,1866473,4
+2109472,1866473,5
+92423237,1866473,4
+134223488,1866473,4
+2087096,1866473,4
+115725912,1866473,4
+Cicinnurus,1866473,5
+1161579,1866473,4
+luoqiuyue,1866473,5
+54530898,1866473,4
+kylingu,1866473,4
+78571536,1866473,5
+83855853,1866473,4
+FOOL624,1866473,5
+108165633,1866473,4
+48740096,1866473,4
+51629650,1866473,5
+46329546,1866473,5
+48458660,1866473,1
+iwei,1866473,4
+4638543,1866473,4
+poline,1866473,4
+duzhouchi,1866473,4
+89451372,1866473,5
+78238348,1866473,5
+54461230,1866473,4
+59361957,1866473,3
+foreverGJC8023,1866473,5
+hjhmusic,1866473,3
+supersaul,1866473,5
+52350359,1866473,5
+ArsenalCH,1866473,5
+50040990,1866473,4
+83268589,1866473,5
+60786130,1866473,5
+delchisio,1866473,4
+51010303,1866473,5
+xiaonuan527,1866473,5
+103583567,1866473,5
+ohAnthea,1866473,4
+41693408,1866473,4
+131120554,1866473,4
+44649844,1866473,5
+deany,1866473,4
+67182363,1866473,5
+2807743,1866473,5
+41125179,1866473,3
+75963174,1866473,3
+foleyfan,1866473,5
+ceh19930603,1866473,4
+yezihanxu,1866473,4
+nopanic,1866473,4
+27072845,1866473,3
+47319867,1866473,5
+magiahaoking,1866473,4
+49419366,1866473,3
+91515979,1866473,5
+114499538,1866473,4
+yrftx,1866473,4
+4054446,1866473,4
+46815070,1866473,2
+1239706,1866473,5
+60904027,1866473,4
+81102769,1866473,3
+manhattant,1866473,4
+66578884,1866473,3
+bsqtzykbsqtzyk,1866473,1
+129503817,1866473,3
+66741252,1866473,4
+72127449,1866473,3
+62187339,1866473,4
+47243412,1866473,2
+99989883,1866473,4
+71554093,1866473,5
+steinyxu,1866473,4
+66880325,1866473,4
+love_sam,1866473,3
+june.q,1866473,3
+at28,1866473,4
+57378206,1866473,3
+AustinTsang,1866473,4
+124104084,1866473,3
+28319088,1866473,-1
+51171341,1866473,3
+43448478,1866473,-1
+37390884,1866473,4
+flrit,1866473,5
+4672724,1866473,4
+39363264,1866473,2
+64459545,1866473,4
+rrgone,1866473,4
+122864705,1866473,4
+42870123,1866473,5
+44359880,1866473,3
+136111756,1866473,5
+43832031,1866473,4
+4630725,1866473,3
+44005787,1866473,5
+48925752,1866473,4
+135716700,1866473,4
+lovebibi,1866473,5
+bakaemono,1866473,4
+Hans_Du,1866473,4
+60650614,1866473,4
+102901525,1866473,4
+45484861,1866473,3
+SmartRaisin,1866473,5
+64825748,1866473,4
+suriwoo90,1866473,-1
+60554271,1866473,5
+53006440,1866473,3
+75416666,1866473,3
+sorrowgrown,1866473,4
+4255750,1866473,5
+sullivan_lee,1866473,4
+loveloki913,1866473,5
+tuiou,1866473,3
+46542025,1866473,5
+72098495,1866473,4
+feqinfan,1866473,3
+80354020,1866473,4
+twxpda,1866473,4
+biquan,1866473,3
+101454972,1866473,3
+132859823,1866473,4
+2569676,1866473,5
+nuannuan2you,1866473,4
+47794724,1866473,4
+47418311,1866473,4
+84622836,1866473,4
+123688744,1866473,3
+45099103,1866473,4
+DX3960,1866473,5
+51749255,1866473,5
+56540518,1866473,4
+65520925,1866473,4
+Memorial_Sue,1866473,4
+51828666,1866473,4
+97088153,1866473,3
+64039684,1866473,5
+CAYmomo,1866473,3
+81668154,1866473,3
+66112477,1866473,3
+masaikejun,1866473,3
+72303778,1866473,4
+93892762,1866473,5
+wwnoah,1866473,4
+kazuki_,1866473,3
+63099220,1866473,3
+zhuzi_33,1866473,4
+52309571,1866473,5
+87127743,1866473,5
+67641940,1866473,5
+3480532,1866473,5
+2940882,1866473,5
+KZ_maomao,1866473,4
+78144849,1866473,5
+xuyanshang,1866473,4
+Tone.C,1866473,5
+beyszhu,1866473,4
+65396178,1866473,4
+75325570,1866473,3
+129626635,1866473,5
+32995807,1866473,3
+135647565,1866473,5
+lingfriendly,1866473,4
+70415168,1866473,5
+87909103,1866473,5
+57429985,1866473,3
+zhengyingchen,1866473,4
+3599865,1866473,5
+maomao19901108,1866473,4
+morvin,1866473,4
+82575834,1866473,5
+70057422,1866473,4
+lecsi,1866473,4
+1390268,1866473,2
+131941091,1866473,5
+59379666,1866473,4
+96535250,1866473,5
+80121770,1866473,4
+60449837,1866473,5
+54408577,1866473,3
+127559466,1866473,3
+DeWatson,1866473,4
+5851064,1866473,2
+69383984,1866473,5
+58927939,1866473,5
+3470100,1866473,3
+51066949,1866473,5
+59210685,1866473,3
+78906900,1866473,4
+fei-never,1866473,4
+saojie1206,1866473,4
+4337866,1866473,5
+Wannaly,1866473,5
+pylee,1866473,4
+119381415,1866473,5
+buffyjiang,1866473,4
+bonike,1866473,5
+fangbin0516,1866473,3
+124640229,1866473,3
+59829813,1866473,4
+33979042,1866473,4
+131131042,1866473,4
+121920760,1866473,3
+121920760,1866473,3
+25282109,1866473,5
+126290013,1866473,5
+HKdisney,1866473,4
+134257829,1866473,3
+xbl911,1866473,4
+yvonne777,1866473,4
+83017050,1866473,4
+74698401,1866473,5
+79745413,1866473,4
+38718376,1866473,4
+45038508,1866473,4
+jetcui,1866473,3
+leelvhong,1866473,4
+88650755,1866473,5
+107719993,1866473,5
+fuckyeahfaithy,1866473,3
+44661123,1866473,5
+41505204,1866473,4
+3305632,1866473,3
+mnadio,1866473,4
+alvinchan1226,1866473,4
+xiaozhubaobao,1866473,4
+70421764,1866473,3
+ahao25,1866473,4
+1861285,1866473,5
+56228022,1866473,4
+62489520,1866473,5
+lanego,1866473,3
+38980912,1866473,4
+129480991,1866473,4
+stevenzhaodl,1866473,3
+114257816,1866473,5
+52999504,1866473,5
+timeseeker,1866473,3
+119666088,1866473,3
+zqnpz,1866473,3
+49813578,1866473,4
+76868556,1866473,4
+elle1989,1866473,-1
+piaoweier,1866473,4
+CJPVIP,1866473,4
+135970045,1866473,5
+petitlynn,1866473,5
+84091392,1866473,3
+35516440,1866473,4
+jabriel90,1866473,1
+jessielee1018,1866473,5
+eosin,1866473,4
+flowervirus,1866473,5
+mysuyu,1866473,4
+shuitianlulu,1866473,4
+57893510,1866473,5
+89565486,1866473,3
+81404706,1866473,4
+Alex-boil,1866473,4
+p2165,1866473,3
+55481958,1866473,4
+92934548,1866473,4
+48555554,1866473,4
+yiqiu8932,1866473,4
+leevis,1866473,4
+simaxiangru118,1866473,4
+123419758,1866473,4
+11501508,1866473,5
+135838359,1866473,3
+57666555,1866473,5
+55972806,1866473,4
+81588706,1866473,3
+y19940504,1866473,4
+KGThunder,1866473,1
+77453445,1866473,2
+114115243,1866473,5
+babyroll,1866473,4
+sisilian,1866473,3
+hashtable,1866473,4
+soberldly,1866473,3
+134500343,1866473,5
+122145772,1866473,1
+83147387,1866473,5
+riceseedling,1866473,2
+120797263,1866473,4
+ssizzi,1866473,3
+35864691,1866473,3
+59752375,1866473,3
+1191648,1866473,2
+119263777,1866473,3
+57405895,1866473,4
+57777518,1866473,4
+127496421,1866473,3
+verakid,1866473,5
+99261996,1866473,5
+75254575,1866473,4
+imxiaobei,1866473,4
+41629334,1866473,5
+50836111,1866473,4
+91480587,1866473,5
+66331142,1866473,3
+thisworld2night,1866473,4
+FrankWasabi,1866473,3
+benben76,1866473,4
+76548979,1866473,-1
+56224870,1866473,4
+chinriya,1866473,3
+4236071,1866473,4
+84969413,1866473,3
+52944642,1866473,4
+75528244,1866473,5
+52929940,1866473,4
+56872460,1866473,5
+54783483,1866473,3
+61511872,1866473,4
+qqyy402,1866473,5
+50532338,1866473,5
+48905575,1866473,4
+misszuoweimen,1866473,4
+46395501,1866473,4
+zhangjianpeng,1866473,4
+4842786,1866473,3
+101443784,1866473,5
+91178835,1866473,-1
+46497522,1866473,4
+kylefun,1866473,5
+mindechoing,1866473,4
+jellyfish0816,1866473,3
+133188364,1866473,4
+wangxhtt,1866473,5
+4380586,1866473,4
+62737941,1866473,3
+73964398,1866473,5
+2381238,1866473,3
+51628170,1866473,4
+nopharos,1866473,3
+2184003,1866473,4
+81059128,1866473,4
+3305024,1866473,3
+nestle103114,1866473,5
+spig,1866473,4
+Yanna_z,1866473,4
+34805156,1866473,4
+59378072,1866473,3
+98165549,1866473,4
+75672182,1866473,3
+guanwaiguicai,1866473,5
+claireqq,1866473,4
+36832783,1866473,2
+1595012,1866473,4
+chachasu,1866473,4
+liujie891010,1866473,4
+44293037,1866473,3
+29839643,1866473,4
+73577019,1866473,3
+flyxzz,1866473,4
+61920947,1866473,4
+MerciMFY,1866473,4
+rienge,1866473,5
+53794054,1866473,5
+shinemypolaris,1866473,5
+Dunstan13,1866473,4
+124093629,1866473,4
+Malivoni,1866473,4
+vczhong,1866473,3
+119277473,1866473,4
+aibamoe,1866473,4
+57964421,1866473,5
+57002877,1866473,5
+57542378,1866473,4
+132410493,1866473,3
+60208379,1866473,4
+2052146,1866473,-1
+Genjo,1866473,3
+sunarwen,1866473,3
+Iamapoem,1866473,3
+57436180,1866473,2
+65474158,1866473,3
+77629279,1866473,3
+blackjason,1866473,3
+134495648,1866473,3
+harriet,1866473,3
+62131091,1866473,3
+48689734,1866473,5
+liaojinzi,1866473,3
+tcldsk,1866473,3
+51061132,1866473,4
+59337450,1866473,3
+120948560,1866473,4
+sherry-cheng999,1866473,5
+55799483,1866473,4
+67732402,1866473,4
+xjksama,1866473,2
+pepperannn,1866473,3
+1077086,1866473,2
+74390608,1866473,4
+kimyeol,1866473,4
+33921766,1866473,4
+yang_lei,1866473,5
+DanteIsMe,1866473,4
+81731050,1866473,4
+65646732,1866473,5
+3407887,1866473,4
+3407887,1866473,4
+joyzhuang,1866473,4
+zzgpyfz,1866473,4
+jocelyn1031,1866473,4
+43374462,1866473,3
+53061557,1866473,4
+66960634,1866473,3
+81928972,1866473,4
+2460236,1866473,5
+elise0219,1866473,4
+122855833,1866473,4
+cyrene959,1866473,3
+fsjack,1866473,3
+leavelove,1866473,4
+3705182,1866473,4
+57690021,1866473,3
+TheAnswer_,1866473,5
+2574364,1866473,4
+melatielian,1866473,4
+3030951,1866473,4
+huoruiting,1866473,5
+fasy,1866473,4
+monkeycupl,1866473,5
+dyinsun,1866473,4
+4703013,1866473,5
+vovowow,1866473,4
+121043192,1866473,3
+53024139,1866473,4
+63824068,1866473,4
+3496461,1866473,3
+52864878,1866473,3
+littletraveler,1866473,4
+joephie,1866473,-1
+huangjiaofeng,1866473,4
+2456676,1866473,4
+51838419,1866473,4
+jacoxu,1866473,3
+85179487,1866473,5
+63462417,1866473,3
+41403989,1866473,3
+4921259,1866473,4
+101568749,1866473,2
+VCer,1866473,3
+3266143,1866473,4
+76203879,1866473,4
+oisa,1866473,4
+79746301,1866473,4
+66860143,1866473,3
+joycedevil,1866473,5
+dearFreundin,1866473,3
+lianyan.tc,1866473,5
+82923097,1866473,-1
+jinsy,1866473,4
+26475045,1866473,5
+orangela,1866473,4
+hangecho,1866473,3
+yingyouzang,1866473,-1
+97057870,1866473,4
+58048362,1866473,3
+4313303,1866473,5
+aaaai,1866473,4
+4900077,1866473,4
+fancywanan,1866473,5
+Alpinist,1866473,2
+sis-24sec,1866473,4
+47289557,1866473,5
+68608061,1866473,4
+2183610,1866473,3
+3705062,1866473,3
+3634287,1866473,3
+homlim,1866473,4
+8099941,1866473,3
+dearerxia,1866473,4
+donyin,1866473,3
+RICE_Z,1866473,4
+pantomime,1866473,4
+point1to1,1866473,4
+43576863,1866473,4
+2565519,1866473,3
+isaakfvkampfer,1866473,4
+isaakfvkampfer,1866473,4
+oakhui,1866473,4
+37552777,1866473,4
+yaomonan,1866473,5
+121397901,1866473,4
+ni484sa,1866473,4
+Chopen,1866473,4
+backYi,1866473,4
+3542168,1866473,4
+zita07,1866473,4
+tsubasaimai,1866473,3
+liheping0310,1866473,5
+53181549,1866473,5
+46010081,1866473,4
+48941229,1866473,4
+70741441,1866473,4
+2543575,1866473,4
+4310321,1866473,4
+117360143,1866473,4
+126949729,1866473,3
+zayuyun,1866473,5
+4595467,1866473,3
+river_me1212,1866473,4
+57642444,1866473,4
+127329113,1866473,5
+37820008,1866473,3
+1762955,1866473,3
+1752320,1866473,3
+66888888,1866473,3
+62375548,1866473,3
+135705904,1866473,5
+48864357,1866473,5
+cheryl73,1866473,4
+LauFun,1866473,4
+qunlangzhishou,1866473,5
+zhuanglongzuoya,1866473,4
+69095608,1866473,5
+94678422,1866473,4
+RobinsonZZ,1866473,2
+ANPANG,1866473,5
+110315543,1866473,4
+bianmengso,1866473,5
+59103510,1866473,4
+4625344,1866473,4
+58963539,1866473,3
+52970998,1866473,3
+8605018,1866473,3
+dinglinsusu,1866473,4
+46167382,1866473,5
+25282878,1866473,4
+57449150,1866473,4
+OnePiece0505,1866473,5
+yangmianyang,1866473,4
+82796715,1866473,4
+42786624,1866473,4
+xiaopang1106,1866473,4
+61721922,1866473,3
+67667928,1866473,4
+mr-kill,1866473,3
+53893192,1866473,4
+thejl,1866473,4
+ly227,1866473,3
+pearl.lu,1866473,4
+121057597,1866473,5
+Daisy33,1866473,4
+83123138,1866473,4
+45872414,1866473,5
+snakesarah,1866473,4
+adventxv,1866473,4
+moyuxxoomaomao,1866473,3
+67885647,1866473,4
+simonfishing,1866473,3
+yesoneup,1866473,3
+110052722,1866473,3
+3513677,1866473,4
+1857671,1866473,4
+rabbiy,1866473,4
+72387002,1866473,5
+Charmaine,1866473,3
+3478406,1866473,5
+3478406,1866473,5
+2144157,1866473,4
+84517412,1866473,3
+leonardodicapri,1866473,4
+84103974,1866473,4
+badblueeyes,1866473,4
+66016685,1866473,3
+dorothealu,1866473,3
+clearsky11,1866473,4
+dstro,1866473,2
+133485545,1866473,4
+veronica061,1866473,4
+2260384,1866473,3
+121829507,1866473,5
+natejumper,1866473,3
+75186042,1866473,5
+49307986,1866473,3
+96514775,1866473,4
+fuxiu,1866473,3
+2821183,1866473,3
+47052162,1866473,3
+tcyzco3,1866473,4
+zzy8688608,1866473,3
+38648875,1866473,3
+105530942,1866473,4
+lbert,1866473,3
+jeremy926,1866473,4
+66128252,1866473,4
+1175096,1866473,4
+2494468,1866473,2
+70906891,1866473,3
+67035142,1866473,5
+43111391,1866473,5
+swdnpal,1866473,4
+tohoshinki1002,1866473,5
+3808156,1866473,3
+nevertori,1866473,2
+58403534,1866473,4
+98975031,1866473,5
+nielu,1866473,4
+nielu,1866473,4
+tobekalorce,1866473,4
+HowardRoark,1866473,5
+68076452,1866473,3
+edithloving,1866473,4
+ramya99,1866473,3
+43550130,1866473,5
+celinedsam,1866473,4
+67783578,1866473,5
+45833709,1866473,4
+wzh1995,1866473,3
+trista1990,1866473,3
+37948273,1866473,5
+34940692,1866473,5
+90904421,1866473,4
+30600835,1866473,3
+66203352,1866473,4
+85753830,1866473,5
+73836108,1866473,4
+48871508,1866473,-1
+64212386,1866473,4
+75867541,1866473,4
+howlongisyoyo,1866473,3
+3786096,1866473,5
+Baronera,1866473,3
+48468316,1866473,4
+51760780,1866473,4
+luyut1an,1866473,4
+130957788,1866473,4
+130362004,1866473,4
+3875131,1866473,2
+67520406,1866473,3
+62280098,1866473,5
+41855333,1866473,3
+1743235,1866473,5
+120342469,1866473,5
+hypertxt,1866473,5
+hypertxt,1866473,5
+127489630,1866473,5
+83441602,1866473,5
+81042933,1866473,3
+koalaxy,1866473,5
+34956783,1866473,3
+44515615,1866473,5
+huanglijuly,1866473,-1
+VLR,1866473,4
+the_z,1866473,-1
+lanbignsu,1866473,4
+33976222,1866473,5
+2445728,1866473,4
+92203860,1866473,4
+82767121,1866473,5
+HAYATE-RIN,1866473,4
+acbc115,1866473,4
+85866685,1866473,3
+37832420,1866473,4
+58352034,1866473,4
+fangpeishi,1866473,4
+3921995,1866473,2
+17589484,1866473,3
+133582771,1866473,5
+32727331,1866473,5
+74714528,1866473,5
+yakiang,1866473,5
+virlee,1866473,4
+lidongyu,1866473,4
+119272239,1866473,3
+45485577,1866473,3
+huiverci,1866473,4
+77056370,1866473,5
+119997789,1866473,4
+64123749,1866473,4
+4239908,1866473,4
+51887534,1866473,5
+122711085,1866473,3
+59695133,1866473,4
+joker619,1866473,5
+49257150,1866473,4
+51704929,1866473,5
+2175058,1866473,5
+35407270,1866473,4
+jolllllly,1866473,3
+67413245,1866473,4
+53331026,1866473,5
+ada1911,1866473,2
+parachutony,1866473,4
+JarviStark,1866473,4
+sleeptalker,1866473,5
+120425760,1866473,4
+80060056,1866473,3
+miaojiaguo,1866473,5
+49055690,1866473,4
+AAAxiaowei,1866473,3
+59335490,1866473,4
+64423254,1866473,4
+75859524,1866473,5
+76781369,1866473,3
+50926117,1866473,4
+91548416,1866473,4
+yihongmeilan,1866473,4
+43133361,1866473,5
+velmafei,1866473,3
+no1like_u,1866473,5
+50570726,1866473,4
+122604790,1866473,5
+81042721,1866473,4
+49615830,1866473,3
+wish430,1866473,4
+69755851,1866473,3
+joelove,1866473,5
+62181928,1866473,4
+amen-0,1866473,4
+kanzaki666,1866473,4
+may_you_never,1866473,5
+52434759,1866473,3
+78763010,1866473,4
+50357025,1866473,3
+99977887,1866473,5
+47916116,1866473,5
+53031430,1866473,5
+53031430,1866473,5
+128274200,1866473,4
+20807282,1866473,3
+ster,1866473,4
+82817173,1866473,5
+myself920,1866473,4
+13129748,1866473,-1
+York29,1866473,4
+Renee101,1866473,4
+5520945,1866473,5
+poisoncake,1866473,4
+13405505,1866473,4
+ksmyass,1866473,-1
+spritesh221b,1866473,5
+morechou,1866473,4
+70539132,1866473,5
+81639579,1866473,3
+amhuming,1866473,4
+pianpian_Sun,1866473,4
+73399489,1866473,4
+helen--lu,1866473,4
+50280331,1866473,4
+ooyoo,1866473,-1
+43696634,1866473,4
+errena,1866473,4
+ngtgz,1866473,3
+75678243,1866473,3
+113124571,1866473,5
+130440504,1866473,4
+68615984,1866473,4
+zhangqiyuan,1866473,4
+2387348,1866473,4
+68597225,1866473,5
+summerwith,1866473,5
+58792305,1866473,4
+fhlan,1866473,3
+3346015,1866473,4
+4582224,1866473,5
+33201871,1866473,4
+87857918,1866473,4
+zer09,1866473,3
+1503417,1866473,4
+doraeman,1866473,4
+wlzrxxc,1866473,5
+49110008,1866473,4
+101450152,1866473,2
+129798303,1866473,5
+songmeng1216,1866473,5
+liuliyan,1866473,4
+67489449,1866473,3
+131109620,1866473,4
+caroltt4024333,1866473,4
+49227399,1866473,5
+65370065,1866473,3
+thisisstan,1866473,3
+64047703,1866473,5
+hinna,1866473,3
+47482651,1866473,5
+61038892,1866473,5
+eugene117,1866473,4
+seventeenF,1866473,5
+3599156,1866473,5
+63641490,1866473,5
+minhom,1866473,4
+128156169,1866473,4
+45843359,1866473,4
+70378955,1866473,-1
+131024844,1866473,4
+98944241,1866473,4
+tenaciousdragon,1866473,4
+44504599,1866473,3
+cxp0730,1866473,3
+2599660,1866473,2
+shipan,1866473,4
+51075959,1866473,3
+100249349,1866473,4
+richer725,1866473,2
+84809239,1866473,5
+jingerjingjing,1866473,4
+104469563,1866473,3
+75842929,1866473,5
+ospopi,1866473,3
+115551507,1866473,3
+69396109,1866473,5
+2670607,1866473,3
+68620338,1866473,5
+97396333,1866473,3
+132750726,1866473,4
+63774339,1866473,4
+zeroiris,1866473,4
+42600622,1866473,-1
+59301340,1866473,5
+foreveryoung09,1866473,4
+62532715,1866473,5
+issyoukenmei,1866473,4
+2778486,1866473,1
+3583797,1866473,4
+36621770,1866473,4
+MihaelKeehl,1866473,4
+flyingelfin,1866473,4
+53721830,1866473,3
+13424749,1866473,4
+56719974,1866473,4
+76617762,1866473,5
+14167253,1866473,4
+karenluo,1866473,4
+zoelizexin,1866473,4
+doriskojima,1866473,4
+shuangyugongjue,1866473,5
+vedaland,1866473,4
+54364029,1866473,5
+songsida,1866473,4
+66875139,1866473,5
+57545593,1866473,4
+58410294,1866473,3
+Slovekame,1866473,4
+coronis,1866473,5
+jesterselby,1866473,4
+123097653,1866473,5
+74106602,1866473,4
+aquqmarine,1866473,4
+62506738,1866473,4
+44095527,1866473,4
+90412275,1866473,4
+kkkid,1866473,5
+134896142,1866473,5
+naroro,1866473,-1
+xinlinguer,1866473,-1
+undeadmonster,1866473,4
+50968156,1866473,5
+101112458,1866473,5
+80536863,1866473,4
+115492375,1866473,4
+65135842,1866473,4
+a55h01e,1866473,5
+2040840,1866473,4
+43393053,1866473,3
+karita,1866473,5
+tadashi,1866473,4
+69608520,1866473,4
+52958278,1866473,5
+libinghe,1866473,4
+53578475,1866473,4
+4570656,1866473,4
+65075320,1866473,4
+DarkBeam,1866473,4
+wolverine_c,1866473,4
+2935013,1866473,3
+melodyruan,1866473,5
+Seajor74,1866473,3
+3440574,1866473,3
+120107044,1866473,5
+63414448,1866473,5
+foxswily,1866473,3
+62290897,1866473,5
+guitarain,1866473,4
+mollukax3,1866473,5
+42781255,1866473,4
+NysUn,1866473,4
+46845274,1866473,5
+46953232,1866473,4
+36627836,1866473,4
+71859163,1866473,4
+108051142,1866473,5
+LoveScarlett,1866473,5
+51214182,1866473,3
+54328709,1866473,5
+15230288,1866473,5
+60025721,1866473,5
+Real-One,1866473,5
+3783132,1866473,3
+82345675,1866473,5
+62377536,1866473,5
+41220794,1866473,5
+InMisery,1866473,4
+lbc21,1866473,4
+29985951,1866473,4
+82569239,1866473,3
+41869870,1866473,4
+69277440,1866473,5
+bedifferent,1866473,4
+Betty_king,1866473,4
+2701338,1866473,4
+Amiesays,1866473,3
+79596092,1866473,4
+CAROHANNAH,1866473,5
+jessetoo,1866473,5
+40537905,1866473,5
+50043116,1866473,5
+qingjuesikong,1866473,5
+129956796,1866473,4
+hasuki523,1866473,4
+59604055,1866473,5
+interskh,1866473,4
+summer4525,1866473,4
+58728752,1866473,4
+77654603,1866473,4
+CNToria617,1866473,4
+clarachan,1866473,5
+y_XO,1866473,4
+3648785,1866473,5
+Ryan-Z,1866473,4
+80663628,1866473,4
+66387369,1866473,4
+66056067,1866473,4
+47991605,1866473,4
+2417136,1866473,5
+73762063,1866473,4
+darkdio,1866473,4
+caocaoa,1866473,3
+88531210,1866473,4
+45107933,1866473,3
+77086576,1866473,3
+2633400,1866473,3
+nate0710,1866473,5
+44387904,1866473,4
+4401259,1866473,5
+cappuccino5026,1866473,5
+1923202,1866473,5
+34607988,1866473,5
+128103281,1866473,4
+74920289,1866473,4
+131535153,1866473,4
+133589292,1866473,3
+2325252,1866473,3
+shinesday,1866473,3
+Luxiyalu,1866473,5
+102727851,1866473,3
+43629022,1866473,3
+122484981,1866473,4
+annie-bean,1866473,4
+3981138,1866473,4
+54090532,1866473,4
+3943993,1866473,4
+4652744,1866473,4
+Kkkky,1866473,4
+47564545,1866473,4
+mikanical,1866473,4
+2229038,1866473,4
+rie_fu,1866473,4
+45782661,1866473,4
+50268324,1866473,5
+81241683,1866473,5
+121225056,1866473,4
+46243415,1866473,4
+131514121,1866473,3
+3422449,1866473,2
+catherine_koo,1866473,-1
+47053093,1866473,3
+61554500,1866473,3
+ruiyialex,1866473,3
+dearpluto,1866473,3
+96659853,1866473,4
+xxxeleven,1866473,2
+57030185,1866473,4
+1778088,1866473,2
+relyon,1866473,4
+119623175,1866473,5
+hanghao,1866473,-1
+79108534,1866473,3
+35645675,1866473,4
+99863115,1866473,4
+casablanca0912,1866473,4
+Secilia,1866473,4
+foreverlethe,1866473,-1
+nevertry,1866473,4
+1651604,1866473,4
+killit,1866473,3
+jesais,1866473,4
+43296422,1866473,4
+1516524,1866473,3
+47359834,1866473,2
+121778312,1866473,3
+2221077,1866473,4
+59578482,1866473,4
+62504024,1866473,3
+huan19494114,1866473,4
+75182939,1866473,4
+44222331,1866473,4
+70242437,1866473,3
+50831360,1866473,3
+80914640,1866473,3
+1169348,1866473,5
+1171665,1866473,4
+62066399,1866473,4
+wildold,1866473,4
+bleachxiaobai,1866473,5
+49364179,1866473,4
+1792353,1866473,5
+130496028,1866473,4
+zhushejia,1866473,4
+55470813,1866473,4
+llliilliilll,1866473,4
+telneter,1866473,5
+39649962,1866473,4
+Goudy,1866473,4
+Davinairene,1866473,5
+rose886,1866473,5
+supermikam,1866473,5
+61602605,1866473,3
+11054187,1866473,5
+134148189,1866473,5
+132216519,1866473,5
+sueyue,1866473,4
+kimidon,1866473,4
+CTT696,1866473,4
+musicyue21,1866473,5
+133628416,1866473,4
+indyiyi,1866473,5
+134298368,1866473,3
+antony1994,1866473,3
+MEXIC,1866473,-1
+1535922,1866473,3
+keychan,1866473,3
+rubikplayer,1866473,4
+monsterkill,1866473,5
+maruko31,1866473,5
+4116226,1866473,3
+darkscorpion,1866473,3
+sqxmy,1866473,4
+lucky498,1866473,4
+anjia617,1866473,4
+61511301,1866473,4
+77052440,1866473,4
+Avril_99,1866473,4
+94214893,1866473,5
+mylittlechul_c,1866473,5
+68922284,1866473,4
+wsp_wu,1866473,4
+chenpei0318521,1866473,4
+vincentjones,1866473,3
+35586598,1866473,4
+afatar,1866473,3
+deadcolour,1866473,4
+heibaituzi,1866473,5
+58050003,1866473,4
+takigo,1866473,4
+jtothen,1866473,3
+72538808,1866473,5
+babylon14,1866473,4
+babylon14,1866473,4
+70682305,1866473,4
+121055562,1866473,4
+54068370,1866473,3
+deepnightfly,1866473,4
+JefferyZ,1866473,3
+39414753,1866473,4
+86091558,1866473,5
+3838722,1866473,5
+72232333,1866473,3
+49583557,1866473,5
+mousesayit,1866473,5
+42539278,1866473,4
+76550501,1866473,4
+63622302,1866473,3
+pijin,1866473,5
+33232999,1866473,5
+caixiaopao,1866473,3
+kex,1866473,4
+91797066,1866473,5
+cindyhao,1866473,4
+blueskd,1866473,4
+Sophieven,1866473,3
+47885824,1866473,4
+63997678,1866473,4
+2920373,1866473,4
+43335184,1866473,3
+mmmeow,1866473,4
+28344177,1866473,3
+xinxianmantou,1866473,-1
+drawtang,1866473,4
+47448827,1866473,5
+89844032,1866473,4
+amyzhang33402,1866473,3
+5755075,1866473,5
+63287823,1866473,5
+cillin,1866473,5
+14311533,1866473,4
+68145483,1866473,5
+70272999,1866473,4
+54336845,1866473,4
+ygweric,1866473,5
+40708520,1866473,4
+leee14,1866473,3
+jasmine22,1866473,-1
+T.Shinoda,1866473,5
+1536567,1866473,3
+Elaine_Changxin,1866473,4
+42682123,1866473,3
+ValentineQ,1866473,4
+48661159,1866473,4
+sif7,1866473,4
+69875903,1866473,4
+ss25,1866473,4
+132458103,1866473,5
+flyflyflyfly,1866473,4
+pottqqq,1866473,4
+lubinfan,1866473,3
+133895653,1866473,3
+50111423,1866473,3
+65935512,1866473,4
+92978277,1866473,4
+4263312,1866473,3
+49233507,1866473,-1
+4467798,1866473,4
+cabaret,1866473,3
+43087284,1866473,5
+maihiseki,1866473,4
+singingxin,1866473,4
+bunnyshinoda,1866473,4
+67491700,1866473,5
+lolopraying,1866473,4
+88559856,1866473,4
+66344990,1866473,3
+arapallas,1866473,2
+85359314,1866473,3
+57707299,1866473,3
+122943812,1866473,3
+46266479,1866473,-1
+jeonwoo,1866473,3
+59592825,1866473,3
+36556180,1866473,3
+siyannnn,1866473,3
+133372996,1866473,5
+96662969,1866473,3
+iloveww,1866473,5
+76633178,1866473,4
+74115192,1866473,4
+98187739,1866473,4
+59027708,1866473,3
+skylet,1866473,4
+SweetCoffee,1866473,4
+zod798,1866473,3
+indiexuan,1866473,4
+44178660,1866473,4
+68603418,1866473,4
+ycho1203,1866473,4
+129837323,1866473,3
+michelle1995,1866473,5
+51909458,1866473,3
+Carl0809,1866473,3
+jerseydreamer,1866473,4
+50938886,1866473,3
+Laylauu,1866473,5
+toby_7,1866473,4
+ssb,1866473,4
+jasontodd,1866473,3
+49595588,1866473,3
+laurencelee,1866473,4
+datongtong,1866473,4
+56049056,1866473,5
+75645970,1866473,3
+5750489,1866473,4
+52583509,1866473,2
+62582526,1866473,4
+41872275,1866473,4
+67855390,1866473,3
+51056550,1866473,4
+johnqz874,1866473,5
+2798800,1866473,4
+petitejoie,1866473,3
+82766218,1866473,5
+itayloriswift,1866473,4
+83415611,1866473,5
+kiwieternal,1866473,5
+ivy_xu1992,1866473,4
+aliceliang0907,1866473,4
+zachzhou,1866473,4
+99766293,1866473,5
+62469238,1866473,4
+maeho,1866473,4
+icemankobe,1866473,4
+73134068,1866473,4
+bekgst,1866473,5
+71950308,1866473,4
+taylorwang,1866473,4
+51638198,1866473,3
+63477660,1866473,4
+100855724,1866473,5
+49496507,1866473,4
+kiteshady,1866473,4
+51703758,1866473,4
+47044759,1866473,5
+55279581,1866473,3
+62741239,1866473,3
+83513831,1866473,4
+48542981,1866473,3
+kugooer,1866473,3
+kickyourleg,1866473,2
+62716748,1866473,5
+58702024,1866473,3
+58386111,1866473,4
+62796272,1866473,5
+deactivate,1866473,5
+67122142,1866473,4
+51328750,1866473,4
+30187417,1866473,3
+126695347,1866473,5
+2933625,1866473,2
+51264470,1866473,4
+130658738,1866473,4
+56198749,1866473,3
+zhangyired,1866473,4
+56866284,1866473,4
+50750779,1866473,4
+131500891,1866473,4
+iisakura,1866473,3
+Christina63,1866473,4
+janeyyxl,1866473,3
+cmzcgq,1866473,-1
+62709413,1866473,5
+68511299,1866473,4
+littlekunsheng,1866473,4
+50852526,1866473,5
+1703105,1866473,5
+58305570,1866473,4
+121118492,1866473,4
+125750519,1866473,3
+sweetsss,1866473,4
+97277841,1866473,4
+28736165,1866473,4
+74017888,1866473,4
+76393487,1866473,5
+74420414,1866473,4
+4856168,1866473,4
+68806699,1866473,4
+38882087,1866473,3
+133190465,1866473,4
+luluto,1866473,4
+48030221,1866473,3
+jupiterkid,1866473,3
+Nicholaus,1866473,3
+gulugulu424,1866473,4
+88938201,1866473,4
+33320870,1866473,3
+63189858,1866473,4
+48728204,1866473,4
+shiningmonkey,1866473,-1
+133122713,1866473,5
+haiserlu,1866473,4
+2624414,1866473,5
+severus,1866473,4
+xiongbear01,1866473,4
+51736506,1866473,5
+46097027,1866473,4
+92024245,1866473,3
+jelly12,1866473,5
+98014979,1866473,5
+xiaofangma,1866473,4
+love.jay,1866473,4
+4265186,1866473,4
+73959584,1866473,4
+52138435,1866473,4
+60357094,1866473,4
+darlingtudai,1866473,3
+monicayun,1866473,4
+kiraikirai,1866473,3
+34875842,1866473,3
+kitkat_kk1125,1866473,4
+fantastic1021,1866473,-1
+TiffanyBrisset,1866473,3
+ericandlisa,1866473,4
+103420044,1866473,5
+52358087,1866473,3
+ChloeJoyce,1866473,4
+75636877,1866473,4
+brbaarlab,1866473,4
+vivaviva,1866473,4
+1381065,1866473,3
+XMALIMALIHONGX,1866473,4
+58904341,1866473,5
+53723225,1866473,4
+40303756,1866473,3
+yanan928,1866473,5
+1550127,1866473,4
+49620557,1866473,5
+miniville,1866473,-1
+7997785,1866473,5
+68936887,1866473,5
+2732455,1866473,5
+49227246,1866473,5
+imulu,1866473,5
+65113325,1866473,4
+iris77yaxo,1866473,3
+57727542,1866473,5
+rainbow-fish,1866473,4
+4486237,1866473,4
+2169269,1866473,3
+LJ_OuO,1866473,3
+73929218,1866473,5
+liussdy,1866473,5
+53464636,1866473,4
+44399575,1866473,3
+zooeyyue,1866473,5
+45340915,1866473,4
+71478394,1866473,5
+stabrid,1866473,4
+37344756,1866473,4
+Avila_Yin,1866473,4
+51312252,1866473,3
+56523090,1866473,5
+tinaq,1866473,3
+3864613,1866473,4
+3656028,1866473,5
+70002242,1866473,5
+KatoShigeaki,1866473,4
+4425575,1866473,4
+Vulpeculae,1866473,4
+simonyao,1866473,3
+youyousina,1866473,5
+59035457,1866473,4
+cocageng,1866473,4
+2305085,1866473,4
+julienzhao,1866473,4
+xgy0318,1866473,5
+54113299,1866473,5
+66599169,1866473,5
+Broderick,1866473,3
+mocnabuodouhs,1866473,3
+30221113,1866473,2
+summer0607,1866473,3
+AnsaTc,1866473,4
+Pazzilivo,1866473,5
+d690859110,1866473,5
+Shuimu3,1866473,4
+beary,1866473,4
+HELLLORD,1866473,5
+29811001,1866473,2
+paramint,1866473,4
+44753719,1866473,4
+no4day,1866473,3
+theflyingjamie,1866473,4
+132956553,1866473,4
+vacancy_v,1866473,5
+19863736,1866473,5
+joywuyan,1866473,5
+47730670,1866473,4
+53534106,1866473,5
+eatswasabi,1866473,3
+3178602,1866473,4
+48362404,1866473,5
+51028542,1866473,3
+38465519,1866473,-1
+SnoozyOwl,1866473,4
+55603094,1866473,3
+2352547,1866473,3
+qzwang,1866473,4
+colinpanda,1866473,3
+fishlet,1866473,3
+EncoreUneFois,1866473,5
+cakesama,1866473,4
+41640054,1866473,4
+51440754,1866473,3
+shine531,1866473,-1
+KOBENYF,1866473,4
+133146648,1866473,3
+54146811,1866473,3
+deirdra,1866473,2
+57025568,1866473,4
+lexieweila,1866473,-1
+63280608,1866473,4
+39047335,1866473,3
+kidadida,1866473,4
+78455570,1866473,4
+terrubunny,1866473,4
+alvie,1866473,4
+89844147,1866473,5
+chuleiwu,1866473,3
+solycoco,1866473,4
+4101286,1866473,3
+afreetsophia,1866473,4
+subuuti,1866473,3
+71603471,1866473,2
+xiaobao7,1866473,5
+67679868,1866473,3
+Zoeeoz,1866473,4
+99632498,1866473,5
+irisyours,1866473,4
+49544157,1866473,2
+94773780,1866473,3
+94773780,1866473,3
+63556085,1866473,4
+miemiefever,1866473,5
+63738341,1866473,4
+104445642,1866473,3
+Nathancai,1866473,5
+Gaowill,1866473,5
+lillianxiong,1866473,5
+nbot,1866473,3
+cmhloveukulele,1866473,-1
+andrew_2015,1866473,4
+anthony1123,1866473,4
+chrisWen,1866473,3
+akitaneru,1866473,3
+yi_yang,1866473,3
+qiao1123,1866473,4
+libramao,1866473,4
+tsubomi_sun,1866473,3
+51165620,1866473,2
+83876707,1866473,4
+senses058,1866473,3
+dyq930211,1866473,4
+yokotree,1866473,3
+iker-estrella,1866473,4
+solanachen,1866473,5
+62664539,1866473,4
+47747519,1866473,4
+36241769,1866473,5
+131108295,1866473,4
+60521399,1866473,-1
+fanyi0109,1866473,5
+130110997,1866473,4
+65079476,1866473,4
+67099663,1866473,4
+wanwan824,1866473,5
+75180994,1866473,3
+winnie0212,1866473,4
+51795288,1866473,4
+seaneight,1866473,4
+bayer04040404,1866473,-1
+4734251,1866473,5
+minhuzi,1866473,4
+sozheng,1866473,4
+68865370,1866473,3
+cancerism,1866473,4
+93036792,1866473,4
+3726027,1866473,5
+38750920,1866473,4
+54371431,1866473,3
+3541486,1866473,4
+46897570,1866473,3
+orsettp,1866473,4
+129452107,1866473,4
+131063824,1866473,4
+doris19921203,1866473,4
+56636321,1866473,4
+61542214,1866473,3
+spark0601,1866473,4
+weapin,1866473,4
+sevengin,1866473,4
+64746643,1866473,4
+reneelv,1866473,4
+1587535,1866473,3
+36470321,1866473,4
+jodiesun,1866473,5
+alla,1866473,4
+89448174,1866473,3
+54032989,1866473,4
+79425986,1866473,4
+75621811,1866473,3
+76261616,1866473,5
+46171648,1866473,5
+mm_ww,1866473,4
+44095878,1866473,3
+58326738,1866473,4
+lunachen,1866473,5
+twitodd,1866473,3
+yeamanda,1866473,4
+53134632,1866473,3
+39957115,1866473,4
+48317610,1866473,4
+46992428,1866473,2
+83681188,1866473,-1
+FAIRYfire,1866473,3
+xuyinaxxxxxxx,1866473,5
+graceyangzi,1866473,4
+donglaimengwu,1866473,5
+eleanorseed,1866473,4
+xsy2020,1866473,4
+sisilovechoco,1866473,4
+52143519,1866473,4
+57729290,1866473,4
+36321216,1866473,4
+3846941,1866473,4
+1207173,1866473,3
+Gxy0429,1866473,4
+10345879,1866473,3
+60112538,1866473,5
+40861955,1866473,5
+63839731,1866473,4
+46218863,1866473,3
+ypapa,1866473,3
+seclo,1866473,5
+48568251,1866473,4
+2205261,1866473,5
+59372484,1866473,5
+55660651,1866473,4
+huanxibushuohua,1866473,3
+46936355,1866473,3
+2853604,1866473,4
+zjmm1990,1866473,3
+34591792,1866473,3
+84755665,1866473,3
+Gallifrey,1866473,4
+52284019,1866473,4
+sophielinff,1866473,-1
+ryod,1866473,3
+62971762,1866473,4
+tuweidx,1866473,5
+xixizxl,1866473,4
+xixizxl,1866473,4
+16237835,1866473,3
+lilibuth,1866473,4
+VicW330,1866473,3
+4258613,1866473,5
+suwa,1866473,4
+yeniya519,1866473,-1
+silent_island,1866473,3
+schuni,1866473,4
+49829206,1866473,2
+whatever92,1866473,4
+52216893,1866473,4
+l00000000,1866473,4
+36230644,1866473,4
+51087231,1866473,1
+ANG.Y,1866473,-1
+1307328,1866473,3
+47151726,1866473,3
+4357121,1866473,5
+fbndragona,1866473,5
+2275412,1866473,4
+57563925,1866473,5
+April1st,1866473,3
+99215743,1866473,4
+48807966,1866473,3
+67785259,1866473,4
+77092352,1866473,3
+Reuben.zhen,1866473,4
+63599319,1866473,3
+shireenzhu,1866473,3
+66385263,1866473,4
+75242193,1866473,4
+3006805,1866473,4
+2309931,1866473,4
+cassandra73,1866473,5
+zhiyaotiankong,1866473,4
+46046838,1866473,5
+RossoneriViola,1866473,4
+45513375,1866473,4
+3166954,1866473,4
+17828049,1866473,3
+kyoki,1866473,4
+agnes223,1866473,4
+43552849,1866473,3
+58906924,1866473,3
+80319590,1866473,4
+16846262,1866473,3
+83188361,1866473,4
+2073049,1866473,4
+ILWTFT,1866473,4
+screamcity,1866473,3
+29211262,1866473,4
+vacuo,1866473,4
+2094664,1866473,4
+iamswan,1866473,2
+nebgnahz,1866473,5
+vinta,1866473,3
+angelababy_,1866473,4
+iliuweiming,1866473,4
+79304005,1866473,2
+moi.s,1866473,3
+brainwashed,1866473,-1
+3377097,1866473,3
+30280100,1866473,4
+69458125,1866473,4
+gooxoo,1866473,4
+132182651,1866473,5
+80121316,1866473,4
+ztztztzt8888,1866473,4
+58470389,1866473,3
+aragakki,1866473,4
+4161702,1866473,3
+firepr,1866473,4
+1634975,1866473,4
+73828343,1866473,4
+estrelafan,1866473,5
+zzhumemory,1866473,4
+4057118,1866473,3
+mizutanikosuke,1866473,4
+turnsole,1866473,5
+52489469,1866473,4
+cat_rs,1866473,4
+42862890,1866473,4
+streamercity,1866473,-1
+3642569,1866473,3
+4105021,1866473,3
+moiselletea,1866473,3
+formyownworld2,1866473,4
+44851952,1866473,3
+2155434,1866473,4
+MuddyKing,1866473,4
+34590485,1866473,4
+16331608,1866473,4
+48198672,1866473,5
+47514336,1866473,5
+BenRun,1866473,4
+icyyoghurt,1866473,3
+Julia_Queen,1866473,5
+chanel0214,1866473,3
+2155168,1866473,4
+70285411,1866473,3
+JanC,1866473,4
+90868187,1866473,-1
+tuoxiaotu,1866473,5
+aprilwhu,1866473,4
+starstargoo,1866473,4
+49057443,1866473,4
+58732271,1866473,5
+misspill,1866473,4
+wotaomei,1866473,4
+hazelhan,1866473,4
+tzhou730,1866473,4
+Septembres,1866473,5
+2320052,1866473,4
+bigway,1866473,3
+ephemerality,1866473,3
+85671125,1866473,3
+50293215,1866473,4
+cat-in-black,1866473,4
+nirvana73,1866473,-1
+102356757,1866473,4
+luvniq,1866473,5
+47871037,1866473,3
+FerencYim,1866473,3
+49659187,1866473,5
+12644505,1866473,3
+Kafspear,1866473,3
+pennylueng,1866473,4
+83991598,1866473,4
+70379849,1866473,4
+61268751,1866473,4
+4022317,1866473,3
+3464738,1866473,5
+47719447,1866473,4
+jinglingwangzi,1866473,-1
+96044338,1866473,3
+62221399,1866473,4
+allets,1866473,4
+73690547,1866473,4
+2299664,1866473,4
+ichimarumidori,1866473,4
+60623717,1866473,5
+68945862,1866473,3
+43991440,1866473,5
+redeyeski,1866473,4
+79970720,1866473,5
+34313332,1866473,4
+54507832,1866473,5
+joanff,1866473,3
+63901336,1866473,4
+FTY364002361,1866473,4
+littleD,1866473,3
+2913201,1866473,4
+2700292,1866473,4
+53253261,1866473,4
+emma_mocha,1866473,4
+5994776,1866473,3
+stella0122,1866473,4
+et2o,1866473,4
+lujin,1866473,-1
+millayQ,1866473,4
+52403253,1866473,3
+4019398,1866473,4
+fairyluohua,1866473,4
+55990119,1866473,4
+2812955,1866473,5
+120774684,1866473,5
+52375179,1866473,3
+132544782,1866473,5
+minus16,1866473,3
+yytaizi,1866473,4
+succina,1866473,3
+lylayu,1866473,5
+shunjun,1866473,3
+54120772,1866473,5
+70361131,1866473,4
+BA92101,1866473,4
+65319841,1866473,4
+blue_stone,1866473,4
+54107632,1866473,-1
+avall0n,1866473,4
+71801667,1866473,5
+55545848,1866473,4
+57475766,1866473,4
+summer_Remember,1866473,4
+fables,1866473,-1
+68931689,1866473,3
+46415829,1866473,3
+81010901,1866473,4
+114143891,1866473,-1
+85090983,1866473,4
+35967033,1866473,4
+champernova0507,1866473,4
+blurrrrr,1866473,5
+amberose,1866473,5
+wingo,1866473,4
+cyanu,1866473,3
+lijinhui,1866473,3
+3386344,1866473,4
+52877536,1866473,5
+58364140,1866473,2
+41684888,1866473,5
+51911319,1866473,4
+130581811,1866473,4
+63760743,1866473,4
+Foxie717,1866473,3
+Nolicier,1866473,-1
+helenrain553,1866473,4
+tennos,1866473,4
+44691440,1866473,4
+kuangxx,1866473,4
+banruoliuli,1866473,4
+sunnykisskins,1866473,3
+sosansosan,1866473,5
+eileen_cheung,1866473,5
+2583295,1866473,4
+juliayunjie,1866473,3
+threeyears,1866473,4
+khalilbaby,1866473,4
+122236054,1866473,3
+3890374,1866473,4
+70530683,1866473,5
+52374368,1866473,5
+TigerDuan,1866473,2
+jmn_white,1866473,4
+liux516,1866473,4
+120480108,1866473,5
+31008535,1866473,4
+isabella1994,1866473,4
+kidaliu,1866473,4
+yexiaohao,1866473,5
+candybox0608,1866473,4
+48963798,1866473,5
+34724471,1866473,3
+windy_y,1866473,3
+73084756,1866473,5
+IceKey,1866473,3
+1911997,1866473,4
+jeffblack,1866473,5
+JINGMO,1866473,4
+junlucy,1866473,4
+68596231,1866473,3
+wen1011,1866473,4
+xiaobei1116,1866473,4
+79812878,1866473,4
+ice_bloom,1866473,3
+48160969,1866473,4
+79425472,1866473,5
+hhhhhhhhhhhh,1866473,4
+104298228,1866473,4
+beatricehzp,1866473,5
+AllanBen,1866473,4
+laura_ch,1866473,5
+4473082,1866473,4
+heatherbobo,1866473,4
+2518621,1866473,4
+kidpt,1866473,3
+AMOHanMeimei,1866473,4
+51297889,1866473,4
+kang8,1866473,4
+silentbean,1866473,4
+tinywine,1866473,3
+Greewii,1866473,5
+47159320,1866473,2
+iceak,1866473,3
+newyow,1866473,4
+zuochangyu,1866473,4
+76699672,1866473,4
+132358159,1866473,5
+39015644,1866473,5
+131838639,1866473,4
+x2338x,1866473,4
+49691795,1866473,-1
+46163023,1866473,-1
+oomG,1866473,-1
+1496728,1866473,4
+MAY2RAIN,1866473,3
+xiaomengqiuyue,1866473,3
+summer_rock,1866473,5
+31757691,1866473,4
+charmine913,1866473,3
+123515572,1866473,3
+sisiwang,1866473,5
+finalrisk,1866473,4
+3449193,1866473,4
+whateverwbwb,1866473,4
+23621516,1866473,5
+76012813,1866473,4
+75462954,1866473,5
+15277249,1866473,-1
+baywreath,1866473,3
+xiao__F,1866473,4
+Aaronyy,1866473,3
+45641492,1866473,4
+montemou,1866473,4
+61426958,1866473,4
+41949292,1866473,5
+reed_princess,1866473,4
+36654308,1866473,4
+35308346,1866473,4
+fionasocool,1866473,3
+51367308,1866473,4
+liszt_pp,1866473,4
+lutaozi,1866473,4
+1663187,1866473,4
+Pabalee,1866473,4
+132356139,1866473,2
+leafmela,1866473,3
+51549155,1866473,4
+achen130,1866473,4
+xiaoyaoworm,1866473,3
+1886385,1866473,3
+justinran,1866473,3
+hutianyi,1866473,5
+50412359,1866473,5
+vanlove,1866473,4
+yqp1987,1866473,5
+2819586,1866473,4
+40931662,1866473,4
+59864726,1866473,4
+53033730,1866473,5
+53679520,1866473,3
+klaus2015,1866473,5
+37160658,1866473,3
+82130845,1866473,5
+4882851,1866473,4
+49576668,1866473,4
+54780757,1866473,4
+kayslv,1866473,4
+1536149,1866473,3
+poemorning0326,1866473,5
+1617591,1866473,5
+super77,1866473,4
+huchiyu,1866473,3
+lemonquizas,1866473,-1
+50205798,1866473,5
+whatsuplaura,1866473,4
+chenxijessica,1866473,4
+followmydreams,1866473,4
+wenbao,1866473,3
+56143952,1866473,4
+47874303,1866473,3
+troublemakerjoy,1866473,3
+58801678,1866473,4
+terrenjuice,1866473,4
+Milieu,1866473,4
+40436207,1866473,4
+55351150,1866473,5
+3971708,1866473,4
+1296624,1866473,4
+48192795,1866473,4
+chendax,1866473,4
+Ariascat,1866473,5
+NMary,1866473,3
+yeeeeeee,1866473,4
+alianlwl,1866473,4
+2924921,1866473,4
+hyper_z,1866473,4
+57214774,1866473,3
+58036782,1866473,5
+chrislam,1866473,4
+132291529,1866473,5
+44044101,1866473,4
+wain1216,1866473,-1
+someoneunknown,1866473,5
+68379103,1866473,5
+51073562,1866473,4
+tunerchiang,1866473,5
+71038565,1866473,4
+35595098,1866473,4
+73126266,1866473,5
+2019069,1866473,5
+rouroudong,1866473,3
+68572064,1866473,4
+46239325,1866473,3
+yaluluz,1866473,4
+garuru,1866473,4
+ohgoogjump,1866473,3
+youcat,1866473,3
+blackboard0215,1866473,4
+131278340,1866473,5
+brucetown,1866473,4
+34407636,1866473,4
+35071680,1866473,5
+49465758,1866473,5
+48483774,1866473,4
+sonnenshein,1866473,4
+2401872,1866473,5
+47601113,1866473,3
+parfumo,1866473,3
+zzqinxx,1866473,5
+2802817,1866473,4
+75902309,1866473,3
+PHLucy,1866473,5
+vincentnifang,1866473,5
+34168497,1866473,4
+zenobao,1866473,5
+62506001,1866473,5
+57882288,1866473,3
+christ_,1866473,-1
+4657541,1866473,5
+44070862,1866473,4
+50144933,1866473,4
+shelleyhsu,1866473,3
+pamelayang,1866473,3
+19676752,1866473,4
+yamericanpie,1866473,5
+rainred,1866473,5
+deepsnow,1866473,4
+41925325,1866473,5
+seongtan,1866473,4
+121235168,1866473,4
+102941926,1866473,4
+lijun_,1866473,4
+niubinuo,1866473,3
+NO-doubanjiang,1866473,4
+131837471,1866473,3
+78088543,1866473,5
+2440792,1866473,4
+blueskyfly,1866473,4
+m.911,1866473,4
+gracepeople,1866473,3
+81244293,1866473,4
+soya45,1866473,5
+3548440,1866473,3
+59741934,1866473,3
+mr81,1866473,4
+IIIiiireneeeeee,1866473,-1
+2051768,1866473,-1
+anlysing,1866473,5
+echo920905,1866473,5
+JC921004,1866473,4
+126116154,1866473,3
+130255793,1866473,3
+kekeximi,1866473,-1
+kevinyan13,1866473,4
+zy236498319,1866473,3
+diorsunrise,1866473,3
+88747698,1866473,5
+103619776,1866473,4
+103619776,1866473,4
+violetawong,1866473,4
+AMA_HERE,1866473,5
+Sunbowinrain,1866473,4
+40487136,1866473,3
+115503186,1866473,4
+48766335,1866473,3
+55365789,1866473,4
+51411741,1866473,3
+75332568,1866473,-1
+yin1257,1866473,-1
+62415146,1866473,4
+XIAOTUTONG,1866473,3
+grannys_bear,1866473,4
+cunty,1866473,-1
+77386416,1866473,4
+53646910,1866473,5
+83250285,1866473,5
+71865681,1866473,5
+avivalovestory,1866473,3
+81760631,1866473,5
+50663434,1866473,3
+sophie1900,1866473,4
+jianghucrab,1866473,4
+Chliztian,1866473,3
+psyche213,1866473,5
+less,1866473,4
+njndyx,1866473,5
+Tigerag,1866473,5
+27985927,1866473,4
+2377434,1866473,4
+sharonz,1866473,4
+FK621,1866473,4
+3564797,1866473,4
+47995787,1866473,4
+stanza,1866473,5
+48941780,1866473,4
+33663451,1866473,4
+ellestmorte,1866473,3
+53942259,1866473,4
+x1nyu,1866473,-1
+48050176,1866473,5
+yumiaoxiaoyu,1866473,5
+number814,1866473,4
+lesile,1866473,5
+pplonglong,1866473,4
+somelolitas,1866473,5
+lcaesar,1866473,3
+pkughost,1866473,4
+80784091,1866473,4
+beatrice,1866473,5
+helloivan,1866473,4
+yonita_yang,1866473,5
+43233255,1866473,4
+48845864,1866473,5
+remixchao,1866473,4
+xixymonkey,1866473,5
+roro0306,1866473,5
+landcrosser,1866473,4
+adamyoung1518,1866473,5
+37264633,1866473,3
+84849322,1866473,5
+Youoen,1866473,4
+dave_m,1866473,4
+villa27,1866473,4
+ertsoe,1866473,4
+1421869,1866473,4
+92580665,1866473,5
+cankii,1866473,4
+31407826,1866473,4
+vivabarca,1866473,4
+3793085,1866473,3
+60087207,1866473,4
+60237257,1866473,5
+bonnieliu0718,1866473,4
+96503660,1866473,3
+ameliewang,1866473,4
+naomi724,1866473,4
+3115385,1866473,3
+53288868,1866473,3
+Ces7,1866473,4
+6537233,1866473,5
+goldenhornking,1866473,5
+30457423,1866473,5
+62876165,1866473,3
+58301523,1866473,4
+47289236,1866473,3
+imking666,1866473,5
+42008064,1866473,5
+xiaohundaban,1866473,3
+yiqingchen18,1866473,5
+blair77,1866473,5
+56244631,1866473,5
+58313990,1866473,4
+69345678,1866473,4
+KatherineLOL,1866473,3
+ciaoxu,1866473,4
+violajoe,1866473,3
+samantha-jy,1866473,4
+saccharinTang,1866473,4
+2413899,1866473,4
+besify,1866473,3
+meadow_lmao,1866473,4
+suyimo,1866473,4
+jiaojiaozrj,1866473,2
+62597862,1866473,4
+74519391,1866473,2
+25276718,1866473,5
+47005130,1866473,4
+LilC,1866473,4
+46144657,1866473,2
+67958578,1866473,5
+34230958,1866473,4
+96000077,1866473,5
+queenie512,1866473,4
+ossianshiwo,1866473,2
+77213278,1866473,5
+29515987,1866473,4
+damon-l,1866473,4
+48146801,1866473,4
+itislh,1866473,5
+52705401,1866473,4
+85958266,1866473,5
+terry_f,1866473,3
+68742880,1866473,5
+74491212,1866473,4
+weiguangyinghuo,1866473,4
+takuyayueyue,1866473,4
+edward1988,1866473,4
+127905420,1866473,5
+4191076,1866473,3
+nildesperandum,1866473,3
+freemanfu,1866473,5
+79757878,1866473,3
+94671887,1866473,4
+44468738,1866473,3
+43295924,1866473,3
+1460965,1866473,-1
+tonix517,1866473,5
+maclauring,1866473,4
+58211668,1866473,1
+62894547,1866473,5
+evachan001,1866473,3
+70742333,1866473,2
+2139539,1866473,3
+115060047,1866473,3
+sebas0714,1866473,4
+babe_of_pisces,1866473,4
+30943019,1866473,4
+JackHiddleston,1866473,3
+lhwithsummer,1866473,4
+notyetdone,1866473,4
+heity,1866473,4
+56454388,1866473,3
+1924272,1866473,3
+65750204,1866473,4
+das_parfum,1866473,3
+rouble-w,1866473,4
+47386345,1866473,3
+66753667,1866473,4
+7921485,1866473,4
+42948156,1866473,4
+28736860,1866473,4
+47186092,1866473,4
+41696616,1866473,4
+kally_allen,1866473,3
+38854651,1866473,4
+gwyting,1866473,4
+laoshudeshijie,1866473,4
+charmaineklo579,1866473,4
+hanxiao2060,1866473,5
+chianty,1866473,5
+carlo_,1866473,4
+cryuyu,1866473,4
+1900968,1866473,5
+xiaofeipedia,1866473,4
+68091356,1866473,5
+71229527,1866473,4
+aayccm,1866473,3
+69215741,1866473,4
+69146144,1866473,4
+jessie1456,1866473,5
+lingnafox,1866473,5
+3280103,1866473,4
+chunxiaoniubi,1866473,4
+zuoyuhe,1866473,3
+nonickname,1866473,4
+xuranjun,1866473,3
+57124272,1866473,4
+57280159,1866473,5
+93601866,1866473,4
+28359015,1866473,3
+69000298,1866473,5
+teatiara,1866473,5
+31904672,1866473,4
+huasajun,1866473,3
+foamwhisper,1866473,4
+2853059,1866473,4
+acruxfilan,1866473,4
+53656219,1866473,4
+74248985,1866473,4
+52575639,1866473,3
+cecilia.eve,1866473,5
+kitty668,1866473,4
+violette,1866473,4
+2119698,1866473,4
+kristin0711,1866473,5
+Rae.Q,1866473,4
+sweetranran,1866473,4
+3471791,1866473,3
+34594200,1866473,5
+ssssssssigh,1866473,4
+janice5680,1866473,4
+finsy,1866473,5
+1830523,1866473,5
+35073852,1866473,3
+sundayikel,1866473,4
+banxian,1866473,4
+randi0103,1866473,4
+RivenZhong,1866473,3
+54771764,1866473,5
+46043026,1866473,3
+Weeeeeeeeeeds,1866473,4
+1252761,1866473,4
+jaro.,1866473,4
+1454015,1866473,4
+33285857,1866473,4
+yancm,1866473,5
+aprildaisy,1866473,4
+SylviaWang,1866473,5
+80381774,1866473,3
+34722246,1866473,4
+3328450,1866473,4
+3510731,1866473,5
+123172810,1866473,4
+49038928,1866473,4
+126849700,1866473,3
+77459141,1866473,5
+60088640,1866473,4
+kusanoyui,1866473,4
+130082458,1866473,4
+3419902,1866473,4
+44628811,1866473,4
+faithinus,1866473,3
+46039604,1866473,5
+maoyu,1866473,4
+wutianxiang,1866473,4
+66967830,1866473,5
+jomey,1866473,4
+runaway6161,1866473,4
+w-libra,1866473,4
+3500238,1866473,4
+24806813,1866473,4
+64844513,1866473,4
+34209599,1866473,5
+kellangamp,1866473,3
+love_maxmin,1866473,4
+muxiaoxu,1866473,4
+kotony,1866473,4
+44576253,1866473,4
+Mr.pea,1866473,4
+66833229,1866473,3
+yukinari999,1866473,4
+44839840,1866473,5
+tzungtzu,1866473,4
+15393217,1866473,4
+Sam_in_Fangzi,1866473,5
+elephanthuihui,1866473,5
+imnothan,1866473,5
+RITABMW,1866473,4
+3151416,1866473,4
+willd,1866473,-1
+Greenwicher,1866473,5
+mql,1866473,4
+rainbow0420,1866473,4
+120241385,1866473,4
+amelieho,1866473,5
+cassandras,1866473,5
+NewStart,1866473,5
+30499670,1866473,4
+78728775,1866473,5
+hudodo0314,1866473,3
+yilizhati,1866473,5
+maxrins,1866473,5
+68866486,1866473,5
+47675907,1866473,3
+YuRAY,1866473,4
+teamototavita,1866473,5
+MelodyGrass,1866473,3
+vanvin,1866473,3
+kulawong,1866473,5
+65934035,1866473,3
+moudianzhang,1866473,3
+49563367,1866473,5
+34434303,1866473,5
+wmymt,1866473,3
+nyxi,1866473,3
+36458457,1866473,4
+rogerzheng,1866473,3
+cfs0669,1866473,5
+61601559,1866473,4
+jerkoff,1866473,3
+luckyshell,1866473,5
+81373304,1866473,4
+131687078,1866473,5
+DonCorleone,1866473,3
+66310390,1866473,5
+36397793,1866473,4
+woshizengjiujiu,1866473,3
+evastone,1866473,4
+sindyfan,1866473,5
+21771687,1866473,4
+Snoopeacer,1866473,4
+2149921,1866473,4
+55943262,1866473,4
+sinikami,1866473,5
+fishy,1866473,4
+50136545,1866473,3
+smallove816,1866473,-1
+Missky_db,1866473,3
+88327789,1866473,3
+shadow_morie,1866473,3
+Nages,1866473,5
+mindlee,1866473,5
+4902353,1866473,3
+6961377,1866473,4
+kamegemma,1866473,4
+3447044,1866473,5
+sunshinezz1991,1866473,4
+mongly,1866473,4
+PonpyThePenguin,1866473,5
+42020814,1866473,4
+anmour,1866473,4
+jiayi6616,1866473,4
+45929722,1866473,4
+54525580,1866473,4
+tina0330,1866473,5
+53997661,1866473,3
+toishiki,1866473,4
+doraeomon0620,1866473,-1
+Litlsherry,1866473,4
+46688085,1866473,4
+45060818,1866473,4
+39990580,1866473,5
+Immafrady,1866473,5
+45642222,1866473,5
+left_right,1866473,5
+58121967,1866473,4
+2459224,1866473,5
+58986889,1866473,5
+45220439,1866473,4
+nathaneil,1866473,4
+Segame,1866473,4
+Tartan,1866473,3
+narcissus_iris,1866473,4
+55549387,1866473,5
+razan,1866473,5
+46741446,1866473,3
+67711452,1866473,4
+duanmuyiyang,1866473,4
+58078884,1866473,5
+79066027,1866473,4
+55875465,1866473,5
+74249680,1866473,5
+65981408,1866473,4
+69460784,1866473,5
+2248456,1866473,4
+ziwu,1866473,4
+xi_1483,1866473,5
+56486542,1866473,5
+KK22,1866473,4
+62063835,1866473,3
+53807344,1866473,4
+30725262,1866473,4
+73877407,1866473,3
+sley,1866473,3
+4259768,1866473,5
+linnjil,1866473,3
+50946864,1866473,4
+jaimeerica,1866473,4
+HansMelone,1866473,3
+leeyizuo,1866473,4
+1061640,1866473,4
+47852595,1866473,3
+lilwhite,1866473,5
+LarryLv,1866473,4
+timothy89,1866473,3
+SophiaCGuo,1866473,4
+123004306,1866473,4
+45251073,1866473,4
+4522191,1866473,3
+4200201,1866473,4
+zhouweilin,1866473,4
+gyceedoo,1866473,5
+39079545,1866473,4
+90601363,1866473,5
+vigilgt,1866473,4
+52112521,1866473,4
+chaojiansong,1866473,4
+joyce19920111,1866473,5
+52481154,1866473,5
+14683656,1866473,4
+30170220,1866473,5
+offers,1866473,-1
+3716043,1866473,5
+46025465,1866473,3
+47334850,1866473,3
+xiaodaoyang,1866473,4
+julia_duan,1866473,4
+1851702,1866473,4
+75418722,1866473,4
+41089253,1866473,4
+lilyang,1866473,4
+aprilmolly,1866473,4
+carinawang,1866473,4
+tyevoli,1866473,4
+69454563,1866473,5
+goeatshit,1866473,5
+46375333,1866473,3
+huangwei0079,1866473,4
+xiaopo,1866473,4
+hwf254,1866473,4
+bryantarecool,1866473,3
+raniayanjingyi,1866473,3
+48708746,1866473,4
+hiddenIris,1866473,5
+59101445,1866473,4
+46899693,1866473,4
+100413600,1866473,4
+vermouthsama,1866473,4
+126344543,1866473,4
+77536605,1866473,4
+46920813,1866473,4
+truth3204,1866473,3
+68617708,1866473,3
+hzrviola,1866473,5
+middleair,1866473,4
+66393344,1866473,5
+71381094,1866473,4
+57977167,1866473,4
+aitoutou,1866473,4
+60377425,1866473,4
+glassywitch,1866473,4
+hanxudaydayup,1866473,5
+ftjason,1866473,4
+4239804,1866473,5
+danchenxi,1866473,4
+54475037,1866473,5
+joyzhai,1866473,4
+57425264,1866473,3
+charissanama,1866473,5
+54907599,1866473,5
+COCOCOQUEEN,1866473,3
+tintindd,1866473,4
+65758167,1866473,4
+foreverjoy,1866473,4
+Gmosquito,1866473,4
+sbbisabel,1866473,-1
+56812940,1866473,4
+jzcatherine1990,1866473,4
+3848354,1866473,5
+70353948,1866473,3
+yinyannan,1866473,5
+67331748,1866473,3
+G-Dear,1866473,4
+julia1989,1866473,3
+wangying2325,1866473,5
+xuetongwang,1866473,3
+21479657,1866473,4
+4600230,1866473,3
+27969330,1866473,5
+shinyeel,1866473,4
+61511895,1866473,-1
+55364280,1866473,4
+flo20,1866473,4
+Jackygu32,1866473,4
+44917242,1866473,4
+foamfly,1866473,3
+silverslivers,1866473,5
+35963638,1866473,5
+115943900,1866473,5
+ananny,1866473,-1
+chuangbo,1866473,4
+64430536,1866473,5
+aginny,1866473,3
+purepureheart,1866473,4
+ljx19921111,1866473,4
+carolgogo,1866473,4
+sfroompp,1866473,4
+ChenMelon,1866473,3
+120611241,1866473,4
+58905615,1866473,4
+2136666,1866473,5
+53941925,1866473,4
+59733385,1866473,3
+63953384,1866473,5
+45665171,1866473,4
+ismumu,1866473,5
+52996479,1866473,4
+cocof,1866473,5
+5594345,1866473,3
+cease_blink,1866473,4
+yre,1866473,4
+BakeryforMe,1866473,4
+Litt1eSta5,1866473,4
+disheron,1866473,3
+36768577,1866473,5
+58012559,1866473,4
+64141618,1866473,4
+rav4ever,1866473,5
+tjmelody,1866473,4
+2744950,1866473,4
+reader-shuo,1866473,-1
+39369770,1866473,4
+sallyal,1866473,3
+lanshangba,1866473,5
+73763567,1866473,4
+littleyueyue,1866473,3
+92209655,1866473,5
+43213326,1866473,3
+32028224,1866473,4
+123857159,1866473,4
+supabed,1866473,4
+57463991,1866473,4
+avisj,1866473,5
+gmrxfx,1866473,4
+64980477,1866473,5
+ashi323,1866473,4
+80066409,1866473,4
+1662765,1866473,4
+teapot,1866473,4
+48955202,1866473,3
+iamdengdeng,1866473,4
+MissBao,1866473,4
+angelstone,1866473,4
+synther,1866473,-1
+2125588,1866473,-1
+38361995,1866473,4
+10034546,1866473,4
+annaanonly,1866473,4
+53981944,1866473,4
+hasukihaga,1866473,-1
+77905933,1866473,4
+DrGonzo,1866473,3
+50183995,1866473,5
+Peach.T,1866473,4
+46828129,1866473,4
+49356246,1866473,3
+IcbM,1866473,3
+sanyaboy,1866473,4
+kii-hong,1866473,4
+62998558,1866473,5
+47911343,1866473,4
+45025869,1866473,4
+1780860,1866473,5
+62041665,1866473,4
+3579800,1866473,4
+cs314765478,1866473,3
+129548719,1866473,4
+chacha.0301.,1866473,5
+carmenchan,1866473,5
+3274950,1866473,5
+mearcher,1866473,5
+a_kira,1866473,4
+42962790,1866473,4
+78777736,1866473,1
+Elinde,1866473,5
+andriylin,1866473,4
+44600352,1866473,4
+40625984,1866473,5
+yisuilife,1866473,3
+lynnwhite,1866473,4
+79874579,1866473,4
+63022230,1866473,4
+75270004,1866473,4
+lea_x,1866473,2
+39408600,1866473,5
+BethBubbly,1866473,3
+seasunflower,1866473,5
+54351544,1866473,3
+velenpul,1866473,5
+48511722,1866473,4
+1834922,1866473,5
+jihong,1866473,4
+leoglory,1866473,4
+lesleyxu,1866473,3
+50510640,1866473,4
+1643126,1866473,3
+mandy727,1866473,4
+moyuxi,1866473,5
+3573130,1866473,4
+45975893,1866473,5
+Cherryandtomato,1866473,5
+asoma,1866473,3
+appreciation,1866473,4
+elevenge,1866473,4
+glorymanutd,1866473,4
+49711912,1866473,4
+48065350,1866473,4
+misuiru,1866473,5
+Jackieee_28,1866473,5
+83767002,1866473,3
+boyj,1866473,3
+54433785,1866473,4
+52515848,1866473,5
+12468955,1866473,4
+FIMLML,1866473,4
+2784323,1866473,4
+89602947,1866473,4
+jing328,1866473,5
+47618742,1866473,4
+54049800,1866473,4
+35003294,1866473,4
+tytony890115,1866473,4
+ashin49,1866473,5
+songzer,1866473,3
+freekami,1866473,4
+sadiee,1866473,4
+73677448,1866473,4
+4332872,1866473,4
+4332872,1866473,4
+nicole9103,1866473,1
+54098652,1866473,4
+39255754,1866473,4
+1871100,1866473,4
+63119879,1866473,5
+4320404,1866473,3
+ring_ring,1866473,5
+42284034,1866473,-1
+27308826,1866473,5
+NF_xian,1866473,5
+52951268,1866473,5
+Jayne_pig,1866473,5
+4081670,1866473,4
+49964080,1866473,3
+2295266,1866473,4
+58482756,1866473,4
+rainleo410818,1866473,5
+Ajisao,1866473,5
+ytismile,1866473,3
+suchengmo,1866473,5
+43594988,1866473,4
+126077709,1866473,5
+3826970,1866473,-1
+elaine14,1866473,4
+vesyinz,1866473,4
+eggtree,1866473,5
+lizlee0601,1866473,4
+sunnykatty,1866473,4
+58810422,1866473,4
+buubu,1866473,3
+32701611,1866473,5
+45693911,1866473,4
+126702436,1866473,4
+129224814,1866473,3
+PeterChe1990,1866473,4
+119559372,1866473,4
+Marley99,1866473,4
+Old_Panda,1866473,4
+49931222,1866473,4
+lulubei,1866473,4
+shuiduocao,1866473,4
+mallorca_sun,1866473,5
+79935599,1866473,4
+68034921,1866473,4
+shezaizuyi,1866473,3
+lanette,1866473,4
+giddens,1866473,5
+48484470,1866473,4
+74062182,1866473,3
+wilbeibi,1866473,4
+some_Ji,1866473,4
+83684239,1866473,4
+angelQQ,1866473,3
+lozzy,1866473,4
+42234148,1866473,4
+sunny1992,1866473,3
+52273001,1866473,4
+49636760,1866473,4
+46329517,1866473,-1
+46329517,1866473,-1
+37947794,1866473,2
+52746407,1866473,4
+3435212,1866473,4
+jin811089856,1866473,5
+orangeumoon,1866473,4
+16446452,1866473,4
+2747579,1866473,3
+57774716,1866473,3
+etsbin12,1866473,4
+5580630,1866473,4
+3239610,1866473,3
+17713187,1866473,4
+48847270,1866473,4
+69622575,1866473,5
+lwx624,1866473,5
+usaywhat,1866473,4
+dnarna_vicky,1866473,-1
+BlackChalk,1866473,5
+kathyminwoo,1866473,4
+angela.dashen,1866473,5
+50952518,1866473,4
+backinblack,1866473,4
+2012350,1866473,4
+volCANo455,1866473,5
+Luciferre,1866473,4
+74845826,1866473,4
+rex33cc,1866473,4
+50219893,1866473,3
+64245643,1866473,3
+69048453,1866473,4
+49186147,1866473,5
+131619623,1866473,5
+68765447,1866473,5
+55922564,1866473,5
+whowho2008,1866473,5
+shanshanyouli,1866473,5
+49718559,1866473,5
+8447509,1866473,4
+bettercharlot,1866473,5
+zhubonn,1866473,4
+wendy47,1866473,4
+Kayee.C,1866473,5
+lamovrevx,1866473,5
+spondee,1866473,3
+61591842,1866473,4
+75957964,1866473,5
+2230884,1866473,4
+wubudingyang,1866473,4
+2806653,1866473,4
+56769973,1866473,3
+kristenxin,1866473,4
+4585815,1866473,4
+92399399,1866473,3
+punkshen,1866473,3
+2896376,1866473,4
+curemyself,1866473,3
+8312118,1866473,5
+aln423,1866473,4
+souring,1866473,4
+53831944,1866473,5
+47540163,1866473,4
+71262628,1866473,3
+44669562,1866473,3
+2401213,1866473,4
+stargazerzsd,1866473,5
+mryanwoo,1866473,3
+3083133,1866473,5
+kangtadlt,1866473,5
+yokawao,1866473,3
+takifugu,1866473,4
+62331827,1866473,5
+80804597,1866473,5
+51679757,1866473,5
+51741700,1866473,4
+2750410,1866473,4
+124608910,1866473,3
+78955356,1866473,4
+39364196,1866473,4
+4594367,1866473,5
+edwardpanda,1866473,4
+MOVIE--KO,1866473,3
+59376067,1866473,-1
+ameliejia,1866473,4
+41851712,1866473,5
+miloz0908,1866473,4
+66431238,1866473,5
+SwanShunhang,1866473,5
+2944300,1866473,4
+kongweihan,1866473,3
+tianrunhe,1866473,5
+Alicestormrage,1866473,-1
+102818452,1866473,5
+diafarona,1866473,4
+31622009,1866473,4
+51119059,1866473,4
+36049101,1866473,5
+summerious,1866473,4
+loafingnick,1866473,4
+Sherry.Chou,1866473,4
+giliani,1866473,4
+4651406,1866473,-1
+lenna,1866473,-1
+zhierrox,1866473,5
+83715675,1866473,4
+68788637,1866473,5
+3122796,1866473,4
+linkisterock,1866473,3
+63496676,1866473,4
+50030842,1866473,5
+80185243,1866473,4
+58287082,1866473,-1
+lecleosal,1866473,5
+zhuangjiahan,1866473,4
+jkk0620,1866473,5
+fortunearn,1866473,3
+treeplanting,1866473,5
+sharonsama,1866473,5
+hcaelb,1866473,3
+50650526,1866473,5
+peri_yi,1866473,3
+feixuanqiwu,1866473,4
+marauder,1866473,5
+53343838,1866473,5
+guotong,1866473,4
+saryta,1866473,4
+savagett,1866473,4
+125417950,1866473,5
+81902764,1866473,4
+kirinkeren,1866473,2
+fullofvitamin,1866473,3
+39937848,1866473,4
+51622953,1866473,4
+irukia,1866473,4
+jerry1992,1866473,5
+71053452,1866473,5
+3623173,1866473,4
+45886049,1866473,4
+perfm0n,1866473,3
+HikaruL,1866473,5
+2830816,1866473,4
+52067129,1866473,4
+S_ilencio,1866473,4
+terryliyixuan,1866473,5
+38651346,1866473,4
+lily9261,1866473,5
+74301144,1866473,4
+54066175,1866473,3
+38955500,1866473,5
+fuckinghate,1866473,4
+82254270,1866473,4
+Artystayshungry,1866473,4
+71990215,1866473,4
+Amandaland,1866473,4
+ClockSheepZ,1866473,5
+4207894,1866473,4
+halfling,1866473,4
+viatina,1866473,3
+elwingt,1866473,5
+14482100,1866473,3
+Dependon,1866473,4
+oursonkuma,1866473,4
+65417437,1866473,4
+lostinfire,1866473,4
+fevotw,1866473,3
+49820651,1866473,5
+arneis,1866473,4
+27199413,1866473,3
+marieni,1866473,4
+Ask,1866473,3
+chocochocolat,1866473,-1
+118862756,1866473,4
+shanchow,1866473,4
+gezz92,1866473,4
+46822299,1866473,4
+67843912,1866473,3
+crazycathr,1866473,3
+nathanyun,1866473,5
+15461817,1866473,5
+56173844,1866473,4
+chloe7603,1866473,4
+VeniVidiVici3,1866473,5
+58110414,1866473,5
+45887661,1866473,4
+6023961,1866473,3
+3205834,1866473,4
+harrymoon,1866473,4
+PringlesLinB,1866473,5
+breakballs,1866473,4
+4499258,1866473,4
+yanniyanni,1866473,5
+66266382,1866473,5
+76789340,1866473,4
+1344334,1866473,3
+55845400,1866473,5
+1401672,1866473,3
+yiri,1866473,5
+57980226,1866473,5
+w_j_y,1866473,4
+52390566,1866473,5
+60185414,1866473,4
+49254231,1866473,3
+AdaDream,1866473,4
+39234011,1866473,4
+sakurasong,1866473,3
+47681496,1866473,3
+61654063,1866473,4
+80206205,1866473,5
+120167569,1866473,4
+bluebamboo,1866473,3
+soulmate4me,1866473,3
+deadmonica,1866473,3
+2388812,1866473,4
+superegg.,1866473,5
+kyd77,1866473,4
+laoziiii,1866473,4
+Yinaly,1866473,4
+41311018,1866473,3
+83415261,1866473,4
+head_missing,1866473,3
+Etoilefilante,1866473,4
+4663105,1866473,4
+50594493,1866473,4
+shiyun.sherry,1866473,4
+nicoyan,1866473,4
+60842177,1866473,4
+tingleshao,1866473,4
+2613759,1866473,-1
+3284948,1866473,4
+55986808,1866473,4
+saonian,1866473,4
+88775652,1866473,4
+64354015,1866473,5
+nodane,1866473,4
+41662587,1866473,5
+65977866,1866473,4
+81900373,1866473,4
+flora_dong,1866473,5
+59367397,1866473,4
+61830049,1866473,4
+79085491,1866473,4
+2229062,1866473,4
+somaliayaswan,1866473,3
+lovedujuan,1866473,4
+70807559,1866473,-1
+2605445,1866473,5
+peggyflora,1866473,4
+110752603,1866473,3
+xumhandy,1866473,5
+gandalfmellyrn,1866473,4
+50044721,1866473,4
+yianran,1866473,5
+xiaogu_07,1866473,5
+abcclk,1866473,5
+44245225,1866473,4
+40153271,1866473,4
+fengqingyuexia,1866473,4
+lin2jie,1866473,4
+2731510,1866473,5
+2643117,1866473,5
+excelgirl,1866473,3
+Serrya,1866473,5
+aotui,1866473,3
+mushroomlol,1866473,4
+babybottle,1866473,4
+2135192,1866473,3
+18133718,1866473,4
+ivygreen06,1866473,4
+moredarkwhite,1866473,3
+58467704,1866473,4
+59290832,1866473,4
+47193903,1866473,-1
+manyandandan,1866473,4
+pumpkin_s,1866473,4
+meteooora,1866473,4
+3600496,1866473,3
+wandersu,1866473,4
+Kev.Garnett,1866473,4
+3351796,1866473,4
+85994648,1866473,5
+3731360,1866473,4
+mengdalian,1866473,4
+80287090,1866473,5
+61468605,1866473,4
+flyfrankenstein,1866473,4
+33328876,1866473,4
+34028726,1866473,4
+nightldj,1866473,-1
+jiajun14,1866473,4
+shanshanshanqin,1866473,5
+52157367,1866473,4
+131663027,1866473,4
+127948092,1866473,3
+2220298,1866473,3
+homeland,1866473,5
+59731344,1866473,4
+buya,1866473,1
+57416043,1866473,3
+67541144,1866473,3
+36617014,1866473,5
+ysz0115,1866473,5
+53083224,1866473,3
+Sherlock.B,1866473,4
+16452382,1866473,4
+120541509,1866473,4
+abby0109,1866473,4
+archikiki,1866473,3
+gq0513,1866473,5
+ioaxis,1866473,5
+alicemeng,1866473,3
+romanticist,1866473,4
+petitespot,1866473,4
+22263173,1866473,4
+46126944,1866473,4
+47585871,1866473,4
+4063062,1866473,3
+Vanessa.,1866473,3
+playon,1866473,5
+35350032,1866473,3
+FrozenShow,1866473,5
+ssxl,1866473,5
+2156528,1866473,4
+meamo,1866473,5
+74525845,1866473,5
+ximutudan,1866473,4
+125380674,1866473,5
+dawenxi,1866473,3
+xingrunzhi,1866473,3
+imedi,1866473,4
+2845890,1866473,4
+75189651,1866473,4
+MGRJGirl,1866473,5
+51977450,1866473,4
+zoelovepuppy,1866473,4
+40838566,1866473,5
+119903956,1866473,4
+65741899,1866473,4
+yoteamomucho,1866473,4
+65642489,1866473,2
+infero,1866473,3
+tristanye,1866473,5
+51888816,1866473,4
+60687232,1866473,4
+52794854,1866473,5
+65058502,1866473,5
+68178694,1866473,5
+lemonspirit,1866473,5
+blackscreen,1866473,4
+goodmonkey,1866473,4
+Candy_Can,1866473,4
+sinbone,1866473,3
+129051527,1866473,3
+minastivith,1866473,4
+craigga,1866473,3
+yangcht,1866473,3
+3815475,1866473,4
+susimai,1866473,3
+syh202,1866473,5
+2202216,1866473,4
+ricy-rice,1866473,4
+63424113,1866473,4
+66193299,1866473,4
+1226511,1866473,4
+53523983,1866473,5
+keiiii,1866473,4
+4485928,1866473,5
+80786877,1866473,4
+75033795,1866473,5
+scarling,1866473,5
+sara36,1866473,4
+70862713,1866473,4
+meercat,1866473,4
+3007499,1866473,5
+42689506,1866473,4
+66057217,1866473,4
+46919006,1866473,3
+49872790,1866473,4
+peterdyf,1866473,4
+40517030,1866473,-1
+miraculousu,1866473,4
+121215156,1866473,3
+qq397653889,1866473,5
+2210399,1866473,3
+56300546,1866473,4
+mophia,1866473,3
+4904166,1866473,4
+71888272,1866473,4
+1643372,1866473,3
+50545656,1866473,3
+lixiaoshall,1866473,4
+44079904,1866473,3
+deepkid,1866473,3
+Eataix,1866473,2
+52237739,1866473,5
+tikchao,1866473,4
+49988296,1866473,4
+yunfanle,1866473,5
+txiaomiao,1866473,5
+yupian,1866473,4
+wendyhsu,1866473,4
+wendyhsu,1866473,4
+54813786,1866473,5
+54081337,1866473,5
+63002140,1866473,5
+yozoh96119,1866473,3
+chenyingxing,1866473,4
+Hunter2046,1866473,5
+misscellophane,1866473,3
+Pm_wanderlust,1866473,4
+46341101,1866473,5
+spade3,1866473,3
+Littlesj,1866473,3
+53874485,1866473,5
+drennuz,1866473,3
+3942271,1866473,4
+liujieruo,1866473,3
+1159054,1866473,3
+62400422,1866473,3
+46856850,1866473,4
+43260783,1866473,3
+alacrity516,1866473,3
+miracle1025,1866473,4
+yuanxiaota,1866473,3
+rantao,1866473,5
+freeeeeeee,1866473,4
+evenone,1866473,4
+shushibi,1866473,5
+sickboy,1866473,4
+dasyhiqiang,1866473,4
+lampslovesterry,1866473,4
+love_obsession,1866473,4
+14604910,1866473,5
+69388549,1866473,4
+doctorecho,1866473,3
+jushang,1866473,5
+Renovatio84,1866473,4
+itscd,1866473,4
+52046312,1866473,3
+55772953,1866473,4
+SDx74,1866473,4
+32424363,1866473,2
+97356962,1866473,5
+67202155,1866473,3
+vanessa07,1866473,5
+scorpiogirljill,1866473,5
+sophiewxr0429,1866473,5
+lishirley,1866473,4
+68416685,1866473,5
+dick8045,1866473,3
+43471768,1866473,4
+102168082,1866473,5
+26694704,1866473,5
+wangshuai901,1866473,-1
+vaneptune,1866473,5
+3894700,1866473,4
+rockyanhua,1866473,4
+45858265,1866473,5
+xiannn,1866473,5
+qwishu,1866473,4
+ghw0225,1866473,4
+71316784,1866473,3
+44725365,1866473,3
+107581698,1866473,3
+62403751,1866473,5
+darcy0306,1866473,4
+54278419,1866473,4
+zhangtianyi1216,1866473,4
+Pincent,1866473,4
+steamnoob,1866473,3
+lunamu,1866473,4
+pastilles,1866473,4
+45794051,1866473,5
+74916567,1866473,4
+35066546,1866473,4
+michaelswift,1866473,3
+tuanziaifadai,1866473,5
+lisa-l,1866473,5
+nathaliema,1866473,4
+43087680,1866473,4
+33973764,1866473,5
+loveirina,1866473,4
+hhriver,1866473,3
+lovea_ten,1866473,4
+4775119,1866473,5
+34926165,1866473,4
+wendysoong,1866473,5
+vplumage,1866473,4
+50813433,1866473,5
+evolhjt,1866473,4
+13038312,1866473,4
+79695986,1866473,5
+willdb,1866473,3
+liweiheng,1866473,4
+2862335,1866473,4
+53510827,1866473,-1
+54208229,1866473,5
+kaolaxing,1866473,4
+90900527,1866473,4
+75749312,1866473,4
+32267845,1866473,4
+70006548,1866473,5
+yykenny,1866473,5
+guoyandao,1866473,4
+dantev,1866473,4
+34855007,1866473,5
+41686934,1866473,5
+Rolls-Royce,1866473,5
+82045748,1866473,5
+octo8,1866473,4
+zxl321,1866473,4
+Outman-LV,1866473,4
+24227243,1866473,5
+entendu,1866473,4
+ppa007hot,1866473,5
+zhecx,1866473,5
+52825921,1866473,4
+whateverrr,1866473,4
+freddy_xu,1866473,4
+fengyalan,1866473,4
+18360610,1866473,4
+Maniacwild,1866473,5
+47331387,1866473,4
+seekingwjy,1866473,4
+bimbo,1866473,4
+vigshane,1866473,4
+47941742,1866473,5
+4896156,1866473,4
+43802399,1866473,5
+gabrielle.li,1866473,4
+41670015,1866473,4
+olivia396273102,1866473,5
+fenglimuren,1866473,3
+67447555,1866473,5
+llefan,1866473,3
+stefanie3nana3,1866473,3
+4454092,1866473,4
+Sh1neYuan,1866473,4
+41197149,1866473,5
+3540441,1866473,4
+crystal612,1866473,5
+65717414,1866473,5
+50319120,1866473,5
+ilovelusi,1866473,4
+49162672,1866473,5
+49408202,1866473,5
+SANDMANECW,1866473,3
+68295283,1866473,1
+vickydourwork,1866473,5
+aaaaaaalice,1866473,5
+39355167,1866473,4
+3189714,1866473,5
+Vincentwsk,1866473,5
+MATTZ,1866473,5
+xyxylem,1866473,5
+2099122,1866473,4
+samsadhu,1866473,5
+jijiayu,1866473,4
+jmjm,1866473,4
+75209751,1866473,5
+98760682,1866473,5
+7880093,1866473,5
+AaronMix,1866473,4
+shockyoooo,1866473,4
+80823041,1866473,5
+ann-in-april,1866473,5
+66237715,1866473,4
+Nikki_11,1866473,4
+44622653,1866473,5
+david-kwok,1866473,4
+37841036,1866473,5
+rackylo,1866473,5
+Seraph0628,1866473,4
+coldcall,1866473,4
+jiangziwen,1866473,5
+witch_xxiao,1866473,4
+peilic1020,1866473,3
+2548730,1866473,3
+ant-me,1866473,4
+anyu1029,1866473,5
+50088258,1866473,4
+echoooz,1866473,4
+seditionary,1866473,4
+izume,1866473,5
+68869311,1866473,5
+lunapurple,1866473,3
+15912473,1866473,3
+1456706,1866473,3
+wonderfultimes,1866473,3
+61030127,1866473,5
+alynlin,1866473,5
+Momo-at1615,1866473,4
+84384668,1866473,3
+claud,1866473,4
+circlevita,1866473,-1
+KooK-Psycho,1866473,4
+seancheung,1866473,3
+hinnie_addict,1866473,3
+52518897,1866473,5
+87559103,1866473,4
+author,1866473,4
+zhiyutianhaozi,1866473,5
+luvis1499,1866473,3
+2862743,1866473,4
+4253202,1866473,3
+52655814,1866473,-1
+46196075,1866473,4
+59319026,1866473,4
+11914612,1866473,4
+2118868,1866473,4
+yuusuke_riku,1866473,5
+nocturnelee,1866473,3
+65649327,1866473,5
+42348997,1866473,2
+49842997,1866473,4
+4685727,1866473,4
+4527563,1866473,4
+silvia_,1866473,5
+IvyGiggs,1866473,3
+35158141,1866473,5
+45432670,1866473,-1
+40581527,1866473,3
+shunicole,1866473,4
+82763339,1866473,5
+69653798,1866473,5
+79013811,1866473,4
+79272694,1866473,3
+78957039,1866473,5
+Wristcut,1866473,3
+fayeneee,1866473,4
+monkeykang,1866473,4
+Lancelot365,1866473,4
+35797147,1866473,4
+snowlight,1866473,4
+stevecarell,1866473,4
+46706414,1866473,3
+63422177,1866473,4
+67452182,1866473,3
+orry-lee,1866473,4
+yangshuangblue,1866473,3
+fashional,1866473,4
+fashional,1866473,4
+108419773,1866473,5
+59135946,1866473,3
+Linkinport,1866473,5
+74938203,1866473,4
+shinjong,1866473,4
+holyzach,1866473,5
+3003624,1866473,3
+42040536,1866473,4
+50703649,1866473,3
+emmalaw,1866473,3
+2092985,1866473,4
+41419698,1866473,5
+luhang363,1866473,4
+51992165,1866473,5
+zillyromantic,1866473,5
+chenchenchenhs,1866473,5
+laylasn,1866473,4
+54754236,1866473,3
+53798089,1866473,5
+cloudlandlord,1866473,4
+83550216,1866473,5
+nianlu,1866473,4
+55874346,1866473,4
+1324290,1866473,4
+bugz,1866473,5
+2529003,1866473,4
+2670612,1866473,4
+74139024,1866473,5
+huantong,1866473,4
+1437680,1866473,3
+47609007,1866473,4
+70357022,1866473,5
+54352313,1866473,4
+129139352,1866473,3
+69104253,1866473,5
+Solv,1866473,5
+siufay325,1866473,5
+64390024,1866473,5
+127291315,1866473,4
+exploremore,1866473,5
+wuyuloveelva,1866473,3
+69192844,1866473,5
+yini3a87,1866473,5
+72902533,1866473,3
+ILOVEMOVIES,1866473,4
+rayeah,1866473,5
+120943212,1866473,4
+lee_way,1866473,4
+1668414,1866473,3
+cy-yeah,1866473,5
+A_Sam,1866473,4
+lil1314,1866473,3
+69267037,1866473,4
+star2s,1866473,4
+53971929,1866473,4
+79596115,1866473,4
+zhqich123,1866473,-1
+58929132,1866473,5
+3953760,1866473,5
+47717774,1866473,4
+lifewithbeauty,1866473,4
+yangyucn,1866473,4
+weipengcheng,1866473,3
+43359124,1866473,3
+48181031,1866473,5
+mason0128,1866473,3
+judy0420,1866473,3
+56858678,1866473,4
+deadheart,1866473,3
+xita,1866473,5
+um_banana,1866473,3
+41486823,1866473,5
+64110275,1866473,4
+75034696,1866473,4
+63765493,1866473,4
+Webboy,1866473,5
+batman_1121,1866473,-1
+eva1221,1866473,4
+4165611,1866473,4
+85143816,1866473,3
+51558823,1866473,5
+axiao0514,1866473,4
+woshuoshuoshuo,1866473,5
+q164511490,1866473,5
+71472531,1866473,5
+nobita1217,1866473,5
+56526826,1866473,5
+4108180,1866473,5
+98289221,1866473,4
+wangcan_uu,1866473,3
+guoxiaolu1447,1866473,5
+rokkumu,1866473,4
+37906609,1866473,4
+64780091,1866473,4
+93202185,1866473,4
+lotas,1866473,5
+60165688,1866473,4
+129764944,1866473,3
+zchvera,1866473,4
+bettyDX,1866473,5
+49907411,1866473,4
+3542129,1866473,-1
+31698933,1866473,3
+119456550,1866473,4
+123433010,1866473,4
+122804233,1866473,5
+62917415,1866473,4
+x1Ao_y,1866473,5
+laihiukei,1866473,5
+towelie,1866473,4
+110151741,1866473,5
+crazyaquarius,1866473,4
+49761291,1866473,5
+34309421,1866473,2
+5678441,1866473,4
+65009709,1866473,5
+93527647,1866473,4
+62312013,1866473,3
+65547971,1866473,3
+62993397,1866473,4
+baihama,1866473,3
+54584070,1866473,3
+4594513,1866473,4
+53450833,1866473,5
+4537211,1866473,4
+bleudodo,1866473,5
+guanjunyan,1866473,-1
+49648575,1866473,3
+liyijuan,1866473,4
+3412422,1866473,3
+2776951,1866473,3
+56653305,1866473,4
+RicoCC,1866473,4
+71281519,1866473,4
+40195954,1866473,3
+Shin7KYO,1866473,4
+IloveyouDanica,1866473,4
+74275869,1866473,5
+blancheliu,1866473,4
+ding1yi,1866473,4
+102053653,1866473,5
+35591333,1866473,4
+clementinetsu,1866473,3
+54845025,1866473,4
+krenee,1866473,4
+1971410,1866473,5
+zuomu,1866473,4
+57437837,1866473,4
+52689515,1866473,5
+floww,1866473,5
+71654816,1866473,4
+51488168,1866473,4
+69045210,1866473,3
+XinZee,1866473,4
+64272167,1866473,3
+MokeyDLuffy,1866473,4
+tripster,1866473,5
+monica90729,1866473,5
+49086369,1866473,4
+2386302,1866473,5
+jamesjiang27,1866473,5
+taken-tee,1866473,4
+65868148,1866473,4
+sapphiresea1130,1866473,4
+60639132,1866473,4
+glily,1866473,5
+dakusaido,1866473,5
+74679165,1866473,-1
+122821584,1866473,5
+56397458,1866473,4
+72918708,1866473,5
+59998164,1866473,3
+ch4gas,1866473,3
+zyycat,1866473,5
+Rabbitoe,1866473,5
+wcschalke,1866473,5
+122974709,1866473,4
+68197528,1866473,5
+78858017,1866473,5
+91606963,1866473,4
+60862702,1866473,4
+92185128,1866473,4
+xulu_films,1866473,4
+eternalblue,1866473,5
+rice0324,1866473,3
+1974466,1866473,4
+MihoKomatsu,1866473,4
+fortblk,1866473,3
+3061502,1866473,4
+5355133,1866473,5
+41122541,1866473,4
+54554461,1866473,3
+kuimouren,1866473,5
+2859580,1866473,4
+67937047,1866473,4
+121338991,1866473,5
+nocita,1866473,3
+66371968,1866473,4
+54404280,1866473,3
+RedSnowRose,1866473,4
+Hanry7,1866473,5
+quietin,1866473,4
+lawkid,1866473,4
+wakaka1986,1866473,4
+73942837,1866473,3
+guosiyao,1866473,4
+114879006,1866473,4
+msghost,1866473,5
+75705487,1866473,3
+65113075,1866473,4
+VivianGoodchild,1866473,3
+3972030,1866473,4
+50222187,1866473,4
+zhchtcm,1866473,4
+1504613,1866473,4
+66550848,1866473,4
+Her_Mione,1866473,4
+timorrowmain,1866473,4
+marvindi,1866473,-1
+46068969,1866473,5
+pennypennypenny,1866473,3
+axknightroad,1866473,4
+48787128,1866473,5
+22843463,1866473,3
+yidachen,1866473,3
+48484450,1866473,5
+62993339,1866473,4
+57980305,1866473,4
+Tavico,1866473,4
+2440348,1866473,4
+youyeqiuxin,1866473,4
+menethil,1866473,3
+dofine,1866473,4
+78710403,1866473,5
+29904054,1866473,5
+oxolin,1866473,4
+42462023,1866473,4
+82059571,1866473,5
+46888824,1866473,3
+52636272,1866473,5
+61132884,1866473,4
+eternityyuli,1866473,-1
+littlelu,1866473,4
+hyuk35zm,1866473,5
+chan007,1866473,5
+yogurtshue,1866473,4
+65263408,1866473,5
+72234354,1866473,4
+cyrus_wong,1866473,4
+yalindongdong,1866473,3
+Sitachiin,1866473,5
+yangjianmeiyang,1866473,2
+radiocock,1866473,2
+59366761,1866473,4
+29844884,1866473,4
+yorihisa,1866473,5
+63830017,1866473,4
+61328957,1866473,4
+ringo_uknow,1866473,4
+77405771,1866473,3
+AWESOME0813,1866473,5
+57723007,1866473,4
+74680055,1866473,3
+59465835,1866473,5
+53602254,1866473,4
+38438573,1866473,5
+super0zero0,1866473,4
+89972315,1866473,4
+3488671,1866473,5
+65895302,1866473,3
+59580012,1866473,4
+61992166,1866473,5
+Ikergzy,1866473,4
+44687623,1866473,4
+59244982,1866473,5
+88867964,1866473,4
+aquahst,1866473,5
+58282966,1866473,4
+50050245,1866473,5
+41401838,1866473,5
+kongben,1866473,5
+csee1121,1866473,4
+shinnodoo,1866473,3
+lollypain,1866473,3
+53392958,1866473,3
+83773769,1866473,4
+45498889,1866473,4
+33214309,1866473,5
+ichigomint,1866473,4
+1811474,1866473,-1
+afa1021,1866473,3
+heyowl,1866473,3
+wann_,1866473,4
+71772237,1866473,5
+dounianghao2,1866473,5
+kanghao413,1866473,4
+dawn.dm,1866473,4
+dbNAYU,1866473,4
+lxu,1866473,4
+60214722,1866473,5
+90564869,1866473,4
+1437754,1866473,4
+119251095,1866473,5
+50145189,1866473,5
+losiuhong,1866473,5
+fungchilong,1866473,4
+57881792,1866473,4
+rusheye,1866473,4
+92853414,1866473,5
+84899362,1866473,4
+80398385,1866473,4
+122476573,1866473,4
+Annata,1866473,3
+103735356,1866473,4
+71985811,1866473,4
+51777034,1866473,3
+45543286,1866473,4
+48463460,1866473,5
+48689695,1866473,5
+lovesebby,1866473,3
+48256975,1866473,5
+rinacheung,1866473,5
+121197040,1866473,5
+vianann,1866473,4
+48333582,1866473,3
+ambersigh,1866473,5
+xcser,1866473,3
+94162680,1866473,4
+veat,1866473,5
+79262344,1866473,3
+60871322,1866473,1
+50776710,1866473,4
+105196709,1866473,3
+fli93,1866473,4
+73125867,1866473,5
+51229713,1866473,4
+hui-shide,1866473,4
+Plumed__Serpent,1866473,3
+Levora,1866473,3
+Levora,1866473,3
+53033589,1866473,4
+62882981,1866473,3
+moneybear,1866473,4
+60020875,1866473,4
+53685389,1866473,-1
+sesey,1866473,3
+74851993,1866473,5
+qinsining,1866473,5
+62297944,1866473,5
+mengwei0205,1866473,5
+SnakeTail,1866473,5
+51301478,1866473,4
+51301478,1866473,4
+58101535,1866473,4
+senyoung,1866473,3
+78636509,1866473,4
+aiyos,1866473,4
+mspengmei,1866473,3
+74783952,1866473,4
+55619717,1866473,4
+56855422,1866473,4
+mobymarry,1866473,4
+98914244,1866473,4
+48735350,1866473,5
+35888113,1866473,4
+shichaocaesar,1866473,4
+4583369,1866473,3
+81476241,1866473,4
+59573485,1866473,3
+margaret_wmx,1866473,5
+99448311,1866473,5
+36623417,1866473,3
+shalouzhitong,1866473,5
+3455600,1866473,3
+79492851,1866473,4
+55366144,1866473,4
+Tooooooo0,1866473,5
+summermilan,1866473,3
+maggiore,1866473,5
+blacksmiles,1866473,4
+3489125,1866473,5
+65474816,1866473,2
+2691100,1866473,4
+57630254,1866473,5
+61954270,1866473,4
+subject,1866473,5
+ashuraison,1866473,4
+debussy,1866473,4
+Cecil.,1866473,4
+54150368,1866473,3
+2931560,1866473,3
+benjune,1866473,3
+1363290,1866473,5
+33982496,1866473,5
+48816803,1866473,3
+ledany,1866473,4
+yizhao,1866473,3
+49326623,1866473,4
+37190150,1866473,5
+1730018,1866473,3
+sheeppark,1866473,5
+lingaoyi,1866473,4
+donotgo,1866473,4
+Sammyzheng,1866473,4
+alamao,1866473,-1
+91252299,1866473,3
+49191644,1866473,5
+yupz,1866473,3
+everlastingEGO,1866473,2
+foreverboy,1866473,3
+81885646,1866473,4
+89320570,1866473,5
+75043360,1866473,3
+16531942,1866473,4
+erin-cl,1866473,3
+73154787,1866473,4
+me0mj,1866473,4
+sendo,1866473,4
+Luster_DumDum,1866473,5
+idreammrs,1866473,3
+84238214,1866473,4
+karizchancy,1866473,4
+cateyeqn,1866473,4
+74913423,1866473,5
+zuozuo1990,1866473,4
+63127179,1866473,4
+71630153,1866473,2
+ycheung,1866473,5
+92004174,1866473,5
+56638281,1866473,4
+Sylein,1866473,4
+43846305,1866473,5
+limpidness,1866473,3
+87230484,1866473,4
+Batcaty,1866473,3
+75251795,1866473,4
+31528814,1866473,4
+hecky,1866473,5
+problemchildren,1866473,4
+mousebomb,1866473,3
+jonathanss,1866473,4
+79197554,1866473,5
+67820201,1866473,4
+yujiuwei,1866473,4
+45712857,1866473,2
+jinghanxing,1866473,3
+meront,1866473,4
+ZY-Monster,1866473,4
+hijikataT,1866473,4
+ghostchan,1866473,5
+sswzhp,1866473,5
+62715368,1866473,4
+61871207,1866473,5
+95313700,1866473,5
+gf199220,1866473,4
+63953878,1866473,4
+50668923,1866473,5
+uniquemanman,1866473,5
+Olesama,1866473,4
+55021112,1866473,4
+42291376,1866473,5
+2799788,1866473,4
+72365328,1866473,5
+59918545,1866473,5
+an__,1866473,4
+1444881,1866473,4
+68392675,1866473,3
+61216437,1866473,3
+stetehe,1866473,3
+53659864,1866473,3
+14607225,1866473,4
+eamontoday,1866473,3
+53586597,1866473,4
+65400706,1866473,4
+53885262,1866473,4
+64894018,1866473,4
+yihanlin,1866473,4
+58044228,1866473,4
+92167444,1866473,5
+57095832,1866473,3
+64110534,1866473,4
+50945725,1866473,3
+91604108,1866473,5
+77033669,1866473,4
+greenpasta,1866473,3
+lonelysin,1866473,4
+DizzyFox,1866473,5
+48480567,1866473,4
+62633913,1866473,4
+1477764,1866473,5
+just-in-vain,1866473,5
+64093040,1866473,4
+Edward_m,1866473,4
+meteora,1866473,5
+sophie-z,1866473,4
+73545042,1866473,4
+48474156,1866473,5
+63614653,1866473,5
+imjanette,1866473,4
+55968793,1866473,5
+48845052,1866473,3
+50238914,1866473,-1
+ost-observer,1866473,4
+77765586,1866473,4
+loooli,1866473,4
+HIDING.,1866473,5
+sakamoto1ren,1866473,4
+sqz1212,1866473,4
+64121971,1866473,5
+53233117,1866473,-1
+caprice_vvn,1866473,3
+2978891,1866473,4
+Liangkui,1866473,5
+MeloTheFisher,1866473,4
+shawnNK,1866473,3
+52943250,1866473,3
+3322566,1866473,3
+Kesseler,1866473,4
+64741291,1866473,5
+ltp19950208,1866473,4
+11285303,1866473,3
+coolluo_zw,1866473,5
+liqiru1110,1866473,5
+mrbaibaibai,1866473,5
+65554501,1866473,4
+43556775,1866473,4
+63878764,1866473,5
+51393119,1866473,4
+sho2mon4e4y,1866473,4
+36664715,1866473,4
+ayumi,1866473,4
+daysofyouth,1866473,4
+4095323,1866473,4
+53644977,1866473,5
+73064038,1866473,4
+81002115,1866473,4
+4506622,1866473,4
+45388031,1866473,4
+41014466,1866473,5
+60474207,1866473,3
+59249650,1866473,5
+49405022,1866473,5
+55785392,1866473,4
+58081877,1866473,3
+69122757,1866473,4
+jerviscz,1866473,4
+65532755,1866473,3
+blurjth,1866473,1
+3339805,1866473,4
+mengzhuxiongmao,1866473,4
+52331640,1866473,4
+55755674,1866473,4
+77337658,1866473,5
+47655212,1866473,3
+4257284,1866473,3
+AspireY,1866473,4
+67759592,1866473,4
+63959089,1866473,4
+38984888,1866473,4
+52308080,25859495,5
+117007812,25859495,4
+58453204,25859495,5
+1651604,25859495,5
+81254408,25859495,5
+91495186,25859495,5
+128250063,25859495,3
+5691697,25859495,3
+4014339,25859495,5
+pengzhuxin,25859495,5
+98134056,25859495,4
+119415852,25859495,4
+75756405,25859495,2
+68153956,25859495,4
+42797360,25859495,5
+qingmuwu,25859495,5
+64585406,25859495,4
+64525968,25859495,4
+59110325,25859495,5
+frozenwind,25859495,3
+13163067,25859495,5
+76964275,25859495,4
+30269250,25859495,4
+114284723,25859495,4
+3334448,25859495,5
+56901042,25859495,5
+illiteracy,25859495,2
+70328585,25859495,5
+timbbm,25859495,4
+huanghuang0227,25859495,4
+77719731,25859495,4
+67958148,25859495,4
+31817174,25859495,3
+urzacat,25859495,5
+84593268,25859495,4
+119306223,25859495,4
+41990953,25859495,4
+zjbabyhouse,25859495,5
+23067439,25859495,4
+31698933,25859495,4
+31698933,25859495,4
+57800427,25859495,3
+4511323,25859495,5
+84586790,25859495,-1
+lemonomel,25859495,5
+119644008,25859495,5
+64884887,25859495,5
+33473018,25859495,5
+bucai,25859495,4
+4624612,25859495,4
+83322081,25859495,5
+a1b2c31221,25859495,5
+59731229,25859495,5
+1164443,25859495,4
+picnicskins,25859495,4
+44038243,25859495,5
+lingdongling,25859495,4
+44939590,25859495,4
+lizishu1991,25859495,4
+topxpp,25859495,5
+58929848,25859495,5
+49916036,25859495,5
+shooting-stars,25859495,3
+124246405,25859495,3
+84588027,25859495,3
+78980786,25859495,5
+1422362,25859495,5
+satanprince,25859495,5
+xpwk,25859495,-1
+68979031,25859495,4
+57609619,25859495,-1
+claudie,25859495,-1
+1251918,25859495,-1
+62023518,25859495,5
+68841907,25859495,4
+63528738,25859495,5
+qiuxiang,25859495,4
+86691385,25859495,4
+fqlv5,25859495,4
+58484149,25859495,5
+35357574,25859495,5
+40659159,25859495,4
+4113403,25859495,5
+93825881,25859495,3
+ruocun123,25859495,3
+122868077,25859495,3
+HanaChang,25859495,5
+115639810,25859495,5
+70029025,25859495,5
+62755469,25859495,5
+51490603,25859495,3
+33529236,25859495,5
+sanzang007,25859495,3
+kidadida,25859495,4
+cangjie1900,25859495,2
+126775069,25859495,5
+71250285,25859495,4
+60925123,25859495,4
+mivan,25859495,4
+ChanelFive,25859495,5
+64359754,25859495,3
+yao-monster,25859495,5
+130251472,25859495,5
+120242097,25859495,4
+76148379,25859495,5
+4154813,25859495,5
+66552525,25859495,3
+46905699,25859495,-1
+53531629,25859495,4
+137300298,25859495,5
+3590759,25859495,3
+122729888,25859495,5
+71574131,25859495,4
+4245576,25859495,4
+60038262,25859495,4
+47714398,25859495,4
+1406966,25859495,5
+65346969,25859495,5
+miclhang,25859495,5
+99508404,25859495,4
+80429208,25859495,5
+LittleMoxa,25859495,4
+53387777,25859495,4
+basil_yying,25859495,5
+shinewy,25859495,5
+guyuejiayu,25859495,5
+casablanca0912,25859495,4
+for1007,25859495,4
+91746178,25859495,4
+49116416,25859495,4
+72086660,25859495,5
+51043856,25859495,4
+x7summer,25859495,5
+dOgdAysaReoVer,25859495,4
+bloodsasha,25859495,4
+41206383,25859495,4
+66112477,25859495,3
+ze_lan,25859495,4
+emilialaloca,25859495,-1
+radia,25859495,5
+jijillwang,25859495,5
+lesones,25859495,4
+135644489,25859495,5
+3641874,25859495,3
+7971587,25859495,4
+60735312,25859495,-1
+93602980,25859495,5
+67705683,25859495,4
+37620368,25859495,4
+fuzyu,25859495,4
+87387635,25859495,4
+58290785,25859495,3
+schwamm,25859495,5
+51095448,25859495,5
+47331166,25859495,5
+61469542,25859495,5
+132035196,25859495,5
+53331402,25859495,4
+70780193,25859495,5
+2526442,25859495,3
+65911258,25859495,4
+33538142,25859495,5
+55925373,25859495,3
+22056950,25859495,4
+ymwtime,25859495,5
+implicitallure,25859495,5
+64425214,25859495,4
+43788388,25859495,3
+57606505,25859495,5
+oak1890,25859495,4
+45580337,25859495,5
+48716526,25859495,5
+enochyang,25859495,5
+blue_gemini,25859495,3
+65114344,25859495,5
+45182133,25859495,4
+3768406,25859495,4
+53505174,25859495,3
+1248339,25859495,3
+gan_panpan,25859495,-1
+changuang7,25859495,3
+48626964,25859495,3
+50034582,25859495,5
+79235702,25859495,-1
+60222551,25859495,5
+35336788,25859495,4
+bearhao1976,25859495,5
+52706338,25859495,5
+105200083,25859495,-1
+1166776,25859495,4
+Karilyn,25859495,3
+57405167,25859495,5
+97992849,25859495,5
+78314737,25859495,5
+laomo,25859495,2
+57656024,25859495,5
+59901681,25859495,4
+colordancer,25859495,5
+snowintheheaven,25859495,5
+mono1886,25859495,5
+1077635,25859495,4
+138031731,25859495,-1
+51303010,25859495,5
+3059000,25859495,4
+Headstones,25859495,3
+102751216,25859495,4
+timetowrite,25859495,4
+94514917,25859495,4
+3341865,25859495,4
+77216634,25859495,4
+73729558,25859495,4
+48593748,25859495,4
+11035464,25859495,4
+45355870,25859495,4
+73280633,25859495,4
+huoxiaoliang,25859495,4
+68093189,25859495,2
+72381227,25859495,4
+56922790,25859495,4
+OYJZ,25859495,2
+46276564,25859495,3
+yaole,25859495,3
+bigmiao,25859495,3
+zisefeiyu,25859495,5
+2005941,25859495,5
+pretendor,25859495,4
+likecake,25859495,2
+35578162,25859495,4
+zytchanging,25859495,5
+50923233,25859495,4
+121876647,25859495,4
+55286456,25859495,4
+121305318,25859495,5
+SHAOSHAOMENG,25859495,4
+lisa91l,25859495,4
+2327781,25859495,4
+lalalaho,25859495,5
+121228834,25859495,5
+kadai929,25859495,4
+45463396,25859495,4
+132868544,25859495,5
+90446896,25859495,4
+122932689,25859495,3
+50278899,25859495,5
+82876812,25859495,5
+45784891,25859495,4
+82520961,25859495,3
+lilyzhou2012,25859495,4
+31523729,25859495,4
+49460136,25859495,4
+4287011,25859495,4
+15388173,25859495,4
+chuleiwu,25859495,4
+79171936,25859495,4
+38359787,25859495,2
+zoeybatman,25859495,4
+84042964,25859495,4
+52092117,25859495,3
+63119659,25859495,5
+98773690,25859495,3
+98773690,25859495,3
+53768020,25859495,4
+cicititi,25859495,4
+74230834,25859495,4
+36825385,25859495,5
+66744703,25859495,5
+51133130,25859495,5
+53605536,25859495,5
+131351538,25859495,5
+54849061,25859495,4
+47302179,25859495,3
+52220875,25859495,3
+88127829,25859495,5
+89438308,25859495,4
+ohohzhizhi,25859495,4
+53886643,25859495,5
+ovanisho,25859495,5
+115557406,25859495,4
+52145474,25859495,4
+Nibia,25859495,4
+52340503,25859495,4
+71995699,25859495,5
+4516843,25859495,3
+61602134,25859495,4
+34434303,25859495,4
+56303622,25859495,5
+60421809,25859495,5
+48848721,25859495,3
+62169990,25859495,3
+xiuri,25859495,5
+45391459,25859495,5
+addff,25859495,5
+131337124,25859495,4
+xyunyunshan,25859495,3
+75650547,25859495,5
+40595579,25859495,3
+47114271,25859495,3
+4008035,25859495,4
+56435930,25859495,4
+124107116,25859495,5
+25960765,25859495,3
+asoloman,25859495,3
+51482803,25859495,5
+62197878,25859495,5
+51022467,25859495,4
+75310522,25859495,5
+caixiaomi,25859495,4
+52705405,25859495,4
+19716945,25859495,5
+62346655,25859495,4
+68294915,25859495,5
+61078362,25859495,2
+130610060,25859495,4
+xixiai,25859495,5
+75198919,25859495,5
+recall710,25859495,5
+88951785,25859495,4
+67878115,25859495,5
+18586571,25859495,-1
+94394247,25859495,4
+136475671,25859495,5
+53568128,25859495,4
+wen_Schwartz,25859495,3
+55622314,25859495,4
+2788057,25859495,4
+46416495,25859495,5
+1226511,25859495,5
+43621347,25859495,4
+76233857,25859495,4
+69031458,25859495,3
+pedant,25859495,5
+67516737,25859495,5
+124881851,25859495,-1
+58209087,25859495,4
+129670010,25859495,4
+121540770,25859495,5
+robinjrt,25859495,4
+82980188,25859495,3
+hongyeshou,25859495,4
+58288224,25859495,4
+51653649,25859495,4
+Bryan_westtown,25859495,3
+Ro-ro,25859495,4
+46288685,25859495,3
+3170513,25859495,4
+40239203,25859495,3
+137503237,25859495,3
+60738715,25859495,4
+guyewuzhe,25859495,3
+45166536,25859495,4
+JunkRoad,25859495,5
+131533540,25859495,5
+62340238,25859495,5
+12074004,25859495,5
+64332109,25859495,-1
+3394942,25859495,5
+57275922,25859495,3
+favezhihao,25859495,4
+76244481,25859495,3
+49083776,25859495,5
+jiegumu,25859495,5
+73382181,25859495,5
+zhangdayun,25859495,3
+shaoniana,25859495,4
+49298107,25859495,3
+36807657,25859495,4
+twopersons,25859495,5
+71806570,25859495,4
+49451055,25859495,4
+peopleshuili,25859495,4
+41744599,25859495,-1
+104462145,25859495,-1
+62496308,25859495,-1
+41257004,25859495,3
+64382868,25859495,4
+angellillian,25859495,4
+27545760,25859495,2
+53396330,25859495,5
+zyilei,25859495,5
+49003393,25859495,4
+4409109,25859495,4
+74536227,25859495,5
+51721466,25859495,3
+tlgn0430,25859495,4
+JustStayReal,25859495,5
+57040976,25859495,3
+2792524,25859495,5
+bearblindman,25859495,3
+Summer-isKing,25859495,5
+pubolin,25859495,5
+61165335,25859495,4
+65087582,25859495,4
+4616681,25859495,4
+72782260,25859495,4
+Bebefore,25859495,3
+freud849,25859495,4
+51959545,25859495,4
+48415827,25859495,5
+51071387,25859495,5
+lostoldboy,25859495,4
+zuihaodewo,25859495,4
+103580957,25859495,5
+84231339,25859495,4
+81870071,25859495,4
+48360672,25859495,5
+toys,25859495,4
+4624797,25859495,4
+53425694,25859495,5
+67615408,25859495,5
+zymhxm,25859495,5
+117339283,25859495,3
+MMAOCOOL,25859495,5
+63022142,25859495,5
+58371683,25859495,4
+106663926,25859495,5
+zpoo2009,25859495,4
+67098541,25859495,5
+1453101,25859495,5
+46494864,25859495,5
+3858083,25859495,3
+3858083,25859495,3
+52819229,25859495,2
+130540529,25859495,5
+radiooo,25859495,4
+74499552,25859495,5
+52004639,25859495,5
+122614702,25859495,4
+73569982,25859495,4
+67290417,25859495,4
+kkbear,25859495,4
+47832961,25859495,4
+yuantown,25859495,3
+3462919,25859495,5
+54308994,25859495,5
+77293647,25859495,5
+130541613,25859495,4
+49433742,25859495,4
+monet-l,25859495,3
+xianxiansushou,25859495,4
+60655621,25859495,5
+librajoseph,25859495,4
+79855798,25859495,3
+tjz230,25859495,4
+78053734,25859495,4
+44669432,25859495,4
+GKTThh,25859495,4
+51445023,25859495,4
+46175639,25859495,4
+KGyeer,25859495,5
+41236968,25859495,4
+woshigejilao,25859495,4
+108296832,25859495,3
+lovezhuangjia,25859495,4
+68419209,25859495,5
+39209718,25859495,4
+67034536,25859495,5
+123710673,25859495,5
+47933054,25859495,5
+14965275,25859495,4
+88285360,25859495,4
+39809119,25859495,4
+32920328,25859495,5
+njtintin,25859495,5
+35892009,25859495,4
+86621646,25859495,4
+82828720,25859495,4
+31102423,25859495,4
+53668460,25859495,4
+128017902,25859495,5
+2867984,25859495,3
+80817324,25859495,4
+79190002,25859495,5
+52840916,25859495,4
+53982181,25859495,4
+137814359,25859495,4
+96441682,25859495,5
+ys1013,25859495,3
+62773931,25859495,5
+Obtson,25859495,3
+134503726,25859495,4
+67843912,25859495,3
+91473851,25859495,4
+122612759,25859495,3
+131535153,25859495,4
+81244293,25859495,4
+xiaosaorui,25859495,4
+2580831,25859495,4
+89451365,25859495,4
+52918154,25859495,3
+77168395,25859495,4
+45543286,25859495,4
+88345829,25859495,4
+Creep_,25859495,4
+1804203,25859495,5
+2895435,25859495,3
+princesssyn,25859495,4
+83223876,25859495,4
+134222368,25859495,3
+81628425,25859495,4
+134414658,25859495,5
+lynnesay,25859495,4
+18360610,25859495,3
+wondereveryway,25859495,4
+saintkaka,25859495,5
+134519666,25859495,5
+2238966,25859495,3
+64535817,25859495,3
+psychodying,25859495,4
+59575014,25859495,4
+48379683,25859495,4
+58109203,25859495,5
+35780501,25859495,4
+musichellsing,25859495,4
+96342252,25859495,4
+43789785,25859495,5
+79572639,25859495,5
+45681861,25859495,5
+6303192,25859495,3
+mansonloong,25859495,5
+2040866,25859495,5
+37402473,25859495,4
+53996515,25859495,4
+44087578,25859495,4
+lanmichelle,25859495,5
+46230886,25859495,4
+46394662,25859495,3
+1793084,25859495,4
+huapiqiu,25859495,4
+55937876,25859495,5
+59856519,25859495,4
+137305184,25859495,4
+cheapchic,25859495,4
+68146250,25859495,5
+137235653,25859495,4
+63399051,25859495,5
+yorkchan,25859495,5
+91140276,25859495,3
+HON_XSXS,25859495,4
+62961863,25859495,4
+Niro-Zeng,25859495,5
+57597976,25859495,5
+50620528,25859495,3
+135973466,25859495,5
+62995545,25859495,4
+68371671,25859495,4
+dun_z,25859495,2
+131538671,25859495,5
+chuan_shan,25859495,4
+47037959,25859495,4
+1344306,25859495,4
+pgdzhua,25859495,3
+2220578,25859495,3
+48958561,25859495,5
+76529709,25859495,3
+4092155,25859495,2
+52273132,25859495,4
+saltysun,25859495,4
+96290717,25859495,5
+37424688,25859495,3
+87570484,25859495,1
+84390206,25859495,4
+tuzichiluobo,25859495,4
+132067714,25859495,4
+131025711,25859495,4
+66178513,25859495,3
+89014541,25859495,4
+43771540,25859495,3
+juenjay1,25859495,4
+songxiaoci,25859495,5
+52529736,25859495,4
+wwl6002,25859495,3
+89660387,25859495,4
+joyceyuen,25859495,4
+50663434,25859495,3
+114336232,25859495,5
+gluttony6,25859495,4
+anna923,25859495,5
+40683858,25859495,4
+67843385,25859495,4
+detruire,25859495,4
+1840916,25859495,4
+dearFreundin,25859495,4
+YUYII,25859495,4
+zhirunze,25859495,5
+27898838,25859495,4
+TaTaxxxx,25859495,3
+ADORE8000,25859495,4
+wuhuihong1992,25859495,5
+49207878,25859495,4
+48491449,25859495,5
+zyjj141,25859495,4
+YIMo616,25859495,4
+61806244,25859495,5
+ceciliamuzi,25859495,5
+53463101,25859495,5
+52883078,25859495,4
+68564015,25859495,5
+owen_oy,25859495,4
+85084961,25859495,4
+51489608,25859495,4
+63531003,25859495,4
+59274667,25859495,4
+jiajia1130,25859495,4
+66776700,25859495,4
+hh1911,25859495,4
+136842545,25859495,5
+68478979,25859495,5
+62795882,25859495,5
+66333721,25859495,5
+49176531,25859495,5
+79085945,25859495,4
+131909298,25859495,3
+48939653,25859495,4
+41809305,25859495,5
+46815070,25859495,3
+65907866,25859495,4
+90807462,25859495,4
+AeroAnte,25859495,4
+viven7788,25859495,-1
+53162024,25859495,2
+70284743,25859495,5
+82500899,25859495,3
+labifenelm,25859495,5
+59604055,25859495,5
+x.sunday,25859495,4
+30506731,25859495,3
+2671857,25859495,3
+50199295,25859495,5
+60226199,25859495,3
+dear-lc,25859495,2
+76824704,25859495,5
+emily0016,25859495,4
+delmar,25859495,4
+79703370,25859495,4
+55425319,25859495,4
+55668412,25859495,4
+aitiaowudemeng,25859495,4
+jianfengcai,25859495,5
+49322971,25859495,5
+64607654,25859495,5
+63593169,25859495,5
+46725950,25859495,4
+58587564,25859495,4
+58596058,25859495,4
+52832781,25859495,4
+64122386,25859495,3
+31815624,25859495,4
+103214078,25859495,3
+51610855,25859495,5
+57985209,25859495,5
+57643998,25859495,5
+juneismiranda,25859495,5
+Lreckle,25859495,4
+78828446,25859495,4
+42006560,25859495,4
+87308057,25859495,3
+62489919,25859495,4
+wood0913,25859495,4
+sujutotheme,25859495,5
+39003448,25859495,5
+blackpanther,25859495,4
+1530502,25859495,4
+yeyinger,25859495,5
+67059149,25859495,3
+66057217,25859495,3
+43276698,25859495,3
+62795321,25859495,3
+55617091,25859495,4
+callmemrcoolman,25859495,4
+81884634,25859495,4
+64677693,25859495,4
+october777,25859495,4
+137287589,25859495,5
+61809588,25859495,5
+51438766,25859495,5
+muxiaoxu,25859495,4
+69656731,25859495,4
+59556078,25859495,4
+Seajor74,25859495,5
+4597338,25859495,3
+65635790,25859495,4
+62455169,25859495,5
+beikou,25859495,4
+Dreaming1989712,25859495,5
+64143096,25859495,4
+1233038,25859495,3
+59534446,25859495,5
+54477254,25859495,5
+47285151,25859495,3
+32650866,25859495,5
+78667352,25859495,5
+124536699,25859495,5
+82771388,25859495,4
+FuckUrMother,25859495,4
+37612294,25859495,5
+Clarke,25859495,4
+108077404,25859495,4
+80140628,25859495,4
+magic1029,25859495,4
+55817697,25859495,3
+99483183,25859495,4
+133245406,25859495,5
+2221309,25859495,4
+heaven851102,25859495,5
+16693810,25859495,5
+cicely521,25859495,3
+67574595,25859495,5
+64320633,25859495,3
+38462134,25859495,4
+LGDtianxiadiyi,25859495,4
+yufendou622,25859495,4
+cloudy20011128,25859495,5
+2923778,25859495,3
+whitney0417,25859495,4
+luoshuibian,25859495,3
+7134514,25859495,2
+45786010,25859495,5
+50060410,25859495,4
+134232275,25859495,5
+78601907,25859495,4
+68549464,25859495,4
+38612058,25859495,5
+oakhui,25859495,4
+43508209,25859495,4
+50427973,25859495,4
+nina,25859495,4
+33528664,25859495,3
+saddyla,25859495,5
+1943610,25859495,4
+3617454,25859495,4
+62307805,25859495,4
+43713017,25859495,5
+mayliyife,25859495,4
+54352343,25859495,5
+62793517,25859495,3
+3183207,25859495,-1
+119243560,25859495,5
+75866967,25859495,5
+131761032,25859495,4
+fenshoudashi,25859495,4
+pengyuwa,25859495,4
+61681574,25859495,3
+tongziyam,25859495,4
+69378440,25859495,5
+candy_littrell,25859495,3
+70487695,25859495,4
+36100413,25859495,4
+42368147,25859495,3
+127688878,25859495,4
+carino8023,25859495,4
+4453892,25859495,-1
+47338102,25859495,4
+60131423,25859495,4
+58738139,25859495,5
+44776262,25859495,4
+45425732,25859495,4
+69685647,25859495,4
+61845850,25859495,4
+103325989,25859495,3
+31313042,25859495,4
+May_T,25859495,3
+wusiyi,25859495,4
+44178660,25859495,4
+123392008,25859495,5
+winmaxangle,25859495,4
+48090771,25859495,4
+lisuansuan,25859495,2
+77071451,25859495,4
+64173512,25859495,3
+Formosaxxx,25859495,4
+52924562,25859495,4
+mickyququ,25859495,4
+126980247,25859495,4
+52744740,25859495,4
+18066465,25859495,5
+132329944,25859495,4
+akifon,25859495,4
+121084172,25859495,5
+62036162,25859495,4
+1411336,25859495,4
+53477398,25859495,4
+61134223,25859495,4
+1666477,25859495,3
+78231416,25859495,5
+44597595,25859495,4
+1550135,25859495,4
+51229956,25859495,-1
+137353380,25859495,5
+75940485,25859495,4
+49364288,25859495,4
+58752829,25859495,3
+93104938,25859495,5
+52668501,25859495,4
+39642972,25859495,4
+107128082,25859495,5
+greatsmallnine,25859495,5
+46615871,25859495,4
+3598072,25859495,5
+66993193,25859495,4
+122746349,25859495,3
+55373656,25859495,5
+kevin_lu1001,25859495,4
+2772927,25859495,5
+lucifermi,25859495,5
+87035372,25859495,4
+51858297,25859495,3
+Joanzen,25859495,3
+93374803,25859495,3
+131179524,25859495,4
+54047594,25859495,5
+69337188,25859495,5
+3075309,25859495,4
+agentying,25859495,3
+guangjun,25859495,5
+39115751,25859495,4
+44539538,25859495,4
+nirvanayl,25859495,4
+9491401,25859495,4
+62659446,25859495,4
+48078859,25859495,4
+70452697,25859495,-1
+131913208,25859495,5
+1458725,25859495,3
+65313383,25859495,5
+76236179,25859495,3
+83044349,25859495,5
+60156625,25859495,5
+asparku,25859495,3
+53204374,25859495,4
+50703649,25859495,3
+riceseedling,25859495,3
+55851508,25859495,3
+samy0868,25859495,4
+135499054,25859495,5
+qiqihhappy,25859495,5
+38853803,25859495,4
+133711771,25859495,3
+2118020,25859495,5
+54034056,25859495,4
+49107061,25859495,4
+67310405,25859495,3
+79553446,25859495,4
+7255952,25859495,5
+kibum6097,25859495,4
+eisenhajime,25859495,5
+60600742,25859495,5
+50983824,25859495,5
+Decadeff,25859495,4
+57325304,25859495,3
+81336001,25859495,5
+126500017,25859495,4
+47724316,25859495,5
+23189422,25859495,5
+49784959,25859495,3
+4242859,25859495,4
+59390060,25859495,3
+2598729,25859495,4
+77626905,25859495,4
+69875076,25859495,5
+43595031,25859495,4
+yscysc803,25859495,2
+imachild,25859495,4
+sebastiaan,25859495,3
+shizhewenmonica,25859495,3
+4067779,25859495,5
+54976256,25859495,3
+78144849,25859495,4
+44849027,25859495,5
+coffeejikou,25859495,4
+chabaochabao,25859495,3
+102618249,25859495,4
+102099688,25859495,1
+2298833,25859495,4
+51342675,25859495,5
+xxyilun,25859495,4
+46920813,25859495,4
+130107568,25859495,4
+48990593,25859495,3
+64332284,25859495,5
+47881350,25859495,3
+jintoudexing,25859495,5
+35474492,25859495,3
+yidapan,25859495,4
+72985710,25859495,4
+120778881,25859495,4
+84848641,25859495,5
+134486742,25859495,5
+vera-cyw,25859495,5
+62705311,25859495,3
+mickeyvivid,25859495,5
+54133819,25859495,4
+119284862,25859495,4
+134631211,25859495,4
+elyn5234,25859495,4
+81501878,25859495,5
+52583509,25859495,3
+anliye,25859495,4
+renjiananhuo,25859495,5
+fawaixiaoyao,25859495,3
+73763567,25859495,5
+102077432,25859495,3
+3597938,25859495,4
+kahrpba2100,25859495,4
+hljmsfy,25859495,3
+126417194,25859495,4
+86929992,25859495,5
+27323715,25859495,3
+3365504,25859495,5
+foleyfan,25859495,4
+44420951,25859495,-1
+4040058,25859495,3
+90752833,25859495,5
+52575639,25859495,4
+hetaodeyanjing,25859495,3
+54150368,25859495,4
+lhlqzhuge,25859495,5
+51416598,25859495,4
+136155203,25859495,3
+128353754,25859495,3
+60392839,25859495,4
+mira_yukin,25859495,4
+kp81ndlf,25859495,3
+128112191,25859495,4
+mariah1986,25859495,5
+87558213,25859495,3
+45143111,25859495,-1
+60777007,25859495,5
+45123579,25859495,3
+SOU77ESS,25859495,5
+58602175,25859495,4
+75353142,25859495,3
+75268479,25859495,4
+35890739,25859495,4
+133270096,25859495,4
+cristinali,25859495,5
+2481028,25859495,5
+ameba,25859495,5
+TenkyAn,25859495,5
+kaies528,25859495,5
+37691812,25859495,4
+68620338,25859495,4
+daisymouse,25859495,3
+yunqiu,25859495,4
+66794531,25859495,5
+otomelu,25859495,5
+ihee1995,25859495,5
+nineautumn,25859495,4
+Sophieless,25859495,4
+121768645,25859495,3
+51658550,25859495,4
+79639811,25859495,3
+60353329,25859495,3
+60420315,25859495,3
+Oceanor,25859495,3
+bone314,25859495,5
+heenim-wait,25859495,4
+FredaRunom,25859495,-1
+81939398,25859495,4
+115133631,25859495,5
+58059498,25859495,3
+71298471,25859495,5
+61688125,25859495,5
+3790594,25859495,2
+110718557,25859495,4
+45484403,25859495,5
+huchuyiduoyun,25859495,5
+agnes223,25859495,5
+97416328,25859495,3
+3379883,25859495,5
+cherryface,25859495,5
+ranke0129,25859495,5
+74818677,25859495,4
+59101445,25859495,4
+41039099,25859495,5
+34943086,25859495,3
+K_kk,25859495,4
+63265733,25859495,4
+123386745,25859495,4
+7609988,25859495,4
+123111535,25859495,3
+88236856,25859495,3
+WSSWHL,25859495,3
+90412571,25859495,2
+44225219,25859495,4
+98956070,25859495,4
+58950457,25859495,-1
+45076514,25859495,5
+60037905,25859495,5
+94032593,25859495,4
+35051709,25859495,3
+ruilixiurui,25859495,3
+soya43464983,25859495,2
+zhangqiong07,25859495,5
+87691265,25859495,2
+kingkongofkhan,25859495,3
+zhujiao,25859495,4
+63410203,25859495,4
+67238808,25859495,4
+27475876,25859495,3
+61445283,25859495,-1
+28958263,25859495,4
+12794807,25859495,4
+59684689,25859495,4
+28959917,25859495,4
+59100804,25859495,1
+46068231,25859495,5
+1631968,25859495,4
+lmx1220,25859495,5
+duoduoshuwu,25859495,5
+92516233,25859495,5
+foreveraegeanse,25859495,5
+84564093,25859495,5
+liuyang1227,25859495,5
+54652758,25859495,4
+52241685,25859495,5
+115051698,25859495,4
+63612050,25859495,4
+59555735,25859495,5
+yutingamy,25859495,4
+66179555,25859495,4
+maggiemars,25859495,5
+ZhaHuanEr,25859495,5
+71078758,25859495,5
+1378503,25859495,4
+53920626,25859495,3
+shunong,25859495,4
+47733868,25859495,4
+74926570,25859495,4
+136344222,25859495,3
+33538904,25859495,4
+71961119,25859495,5
+seki_kan,25859495,5
+59143830,25859495,5
+127128928,25859495,4
+63082424,25859495,5
+60046251,25859495,-1
+minquan,25859495,3
+Youandi4,25859495,-1
+67332045,25859495,5
+58769650,25859495,2
+61366288,25859495,5
+80193020,25859495,4
+72547163,25859495,4
+54166163,25859495,3
+84610876,25859495,5
+2994648,25859495,3
+119600892,25859495,5
+55977312,25859495,4
+84698699,25859495,4
+52994758,25859495,5
+lianmaomi,25859495,-1
+62936115,25859495,5
+60132042,25859495,4
+125668189,25859495,3
+62515119,25859495,4
+70954003,25859495,4
+67679868,25859495,3
+neillee312,25859495,3
+119319878,25859495,5
+senelu,25859495,3
+84418105,25859495,-1
+3670661,25859495,5
+52456948,25859495,5
+honeyhui,25859495,4
+49146355,25859495,4
+yeeeeeee,25859495,4
+51171341,25859495,3
+1834762,25859495,4
+72936098,25859495,5
+51265293,25859495,4
+65458998,25859495,4
+3066956,25859495,4
+shuizhimuhua,25859495,5
+sosofly,25859495,3
+Henry-Maugham,25859495,4
+70055114,25859495,3
+135573450,25859495,4
+76851962,25859495,3
+137364152,25859495,4
+63463854,25859495,5
+4421353,25859495,4
+67589382,25859495,5
+ryudouhajime,25859495,-1
+119489564,25859495,5
+75043360,25859495,4
+61753912,25859495,5
+136406291,25859495,5
+2106137,25859495,5
+benlau,25859495,3
+47821826,25859495,3
+51476835,25859495,4
+82629572,25859495,4
+98956225,25859495,4
+somehoow,25859495,4
+Eve2005,25859495,4
+cyrus_wong,25859495,5
+122709202,25859495,-1
+49160139,25859495,-1
+70915171,25859495,4
+3588917,25859495,4
+lovingmomo,25859495,4
+123969865,25859495,5
+lilysld,25859495,4
+46600033,25859495,4
+dearruby,25859495,4
+75860313,25859495,5
+2249428,25859495,4
+jill-volleyball,25859495,4
+70310265,25859495,4
+cl13,25859495,5
+lephemera,25859495,4
+Nenya,25859495,5
+47984386,25859495,5
+57542378,25859495,5
+87546829,25859495,5
+64245784,25859495,3
+132463662,25859495,4
+70963111,25859495,5
+Griezmann,25859495,5
+34727533,25859495,4
+49711912,25859495,4
+106113807,25859495,5
+doubana,25859495,5
+3378930,25859495,5
+nvpizi,25859495,4
+50836111,25859495,4
+119750263,25859495,5
+9848966,25859495,5
+71350145,25859495,4
+59217273,25859495,5
+68366606,25859495,4
+34009269,25859495,3
+45477393,25859495,4
+1614995,25859495,4
+midautumnsong,25859495,4
+amazingQi,25859495,5
+rurucat,25859495,3
+kiki204629,25859495,4
+52139708,25859495,5
+47529528,25859495,4
+34092145,25859495,3
+2231082,25859495,4
+3072995,25859495,5
+37571281,25859495,2
+53475502,25859495,5
+rikkuwang,25859495,5
+60823876,25859495,5
+vera-cheng,25859495,5
+y19940504,25859495,5
+137129598,25859495,5
+rememberjuly,25859495,2
+119703887,25859495,3
+sanwenli,25859495,-1
+75984184,25859495,4
+baqian,25859495,3
+97542676,25859495,5
+kingkongbarbie,25859495,4
+61312247,25859495,5
+nieblalan,25859495,5
+59658494,25859495,5
+24792867,25859495,5
+71561935,25859495,4
+65452477,25859495,3
+59714184,25859495,4
+imoviekobe,25859495,4
+84668219,25859495,5
+zhuobielin,25859495,4
+hbb,25859495,5
+36601365,25859495,5
+zran0609,25859495,4
+91808189,25859495,4
+84026276,25859495,4
+nangle,25859495,4
+50061483,25859495,4
+naturalvoice,25859495,4
+1068202,25859495,5
+57149541,25859495,4
+35745537,25859495,5
+42313883,25859495,5
+xilouchen,25859495,3
+73958470,25859495,4
+masaike,25859495,3
+fergie37,25859495,4
+intofilm,25859495,4
+45797451,25859495,4
+84675514,25859495,5
+48396212,25859495,4
+94546976,25859495,4
+36678476,25859495,5
+lilanning,25859495,5
+63730928,25859495,4
+58038251,25859495,5
+wangjia0702,25859495,4
+starstargoo,25859495,5
+suren11,25859495,5
+58318026,25859495,5
+64009647,25859495,5
+41895346,25859495,5
+125750519,25859495,5
+55639463,25859495,5
+71962172,25859495,4
+126758396,25859495,5
+77021678,25859495,5
+55324515,25859495,4
+84047449,25859495,5
+juttann,25859495,5
+120480108,25859495,5
+daetou,25859495,4
+1828101,25859495,4
+12410068,25859495,4
+1253917,25859495,5
+kejinlong,25859495,2
+ft5239328,25859495,4
+3504519,25859495,4
+44006704,25859495,3
+105462772,25859495,4
+58231376,25859495,5
+53819334,25859495,4
+51222661,25859495,4
+46310239,25859495,4
+shenyuxi,25859495,-1
+framtid,25859495,4
+104818700,25859495,4
+73600166,25859495,4
+91419586,25859495,4
+121021780,25859495,4
+43778462,25859495,-1
+45267369,25859495,-1
+50443148,25859495,5
+54762005,25859495,3
+119287600,25859495,4
+randidianying,25859495,5
+52929684,25859495,5
+34697220,25859495,4
+xiaojingyush,25859495,4
+airan712,25859495,4
+AuRevoir7,25859495,4
+120579869,25859495,4
+70469575,25859495,4
+45968027,25859495,4
+50900048,25859495,3
+58151132,25859495,4
+67467386,25859495,2
+57970143,25859495,5
+81152446,25859495,3
+59774628,25859495,3
+2341945,25859495,4
+btone0808,25859495,2
+48818687,25859495,4
+77587791,25859495,4
+RITABMW,25859495,3
+2196104,25859495,4
+little_mari0,25859495,4
+62693255,25859495,4
+umich,25859495,4
+119883443,25859495,5
+heylian,25859495,4
+53656219,25859495,4
+97348317,25859495,4
+76206641,25859495,4
+afterthis,25859495,4
+qiao517,25859495,5
+35929918,25859495,4
+72781855,25859495,5
+52284149,25859495,3
+53932937,25859495,5
+62153097,25859495,4
+lokeyuri,25859495,5
+zyt_69,25859495,5
+77774632,25859495,5
+charo,25859495,5
+meijiangshi,25859495,4
+childfish,25859495,5
+53625109,25859495,5
+104261144,25859495,3
+zyaihg0209,25859495,4
+67436408,25859495,5
+89973800,25859495,5
+x5,25859495,3
+xuyuny252,25859495,5
+fmloveme,25859495,2
+YolaZhang,25859495,5
+91376063,25859495,5
+poros,25859495,4
+45831323,25859495,4
+55980175,25859495,4
+96473743,25859495,3
+120332872,25859495,5
+chenchangxing,25859495,4
+79822624,25859495,4
+80797429,25859495,4
+58954654,25859495,4
+lengleng,25859495,4
+estersssss,25859495,4
+44787315,25859495,5
+44437052,25859495,4
+109558086,25859495,4
+fyby,25859495,3
+42149787,25859495,3
+takuyayueyue,25859495,5
+53267569,25859495,5
+nanchizi,25859495,5
+tsoo416,25859495,3
+58721432,25859495,3
+3202437,25859495,3
+cilar,25859495,3
+yeslie,25859495,3
+60002715,25859495,3
+120496189,25859495,3
+16943300,25859495,4
+1352823,25859495,4
+ruo1996,25859495,4
+37173044,25859495,4
+56941343,25859495,4
+60127464,25859495,4
+131004317,25859495,4
+p2165,25859495,3
+klanders,25859495,5
+54756616,25859495,4
+52470011,25859495,4
+54756616,25859495,4
+52470011,25859495,4
+58197207,25859495,5
+1786605,25859495,4
+daniel_gao,25859495,4
+1892627,25859495,5
+82250645,25859495,5
+106341534,25859495,5
+50065423,25859495,5
+133698195,25859495,5
+ma-sheng,25859495,4
+45630966,25859495,4
+ricechow,25859495,5
+68825025,25859495,4
+79560195,25859495,3
+91140332,25859495,5
+baoxiaolin0913,25859495,5
+119858439,25859495,5
+gaopengyuan,25859495,3
+40337501,25859495,3
+130464213,25859495,4
+74883201,25859495,4
+51886935,25859495,5
+w23,25859495,4
+61292565,25859495,5
+58179619,25859495,4
+AugustSeven,25859495,5
+93474440,25859495,4
+baijixing,25859495,3
+63422177,25859495,3
+6270415,25859495,4
+130988539,25859495,4
+57779578,25859495,5
+119987907,25859495,5
+zaiyuepaoduosh,25859495,5
+iSaw11021,25859495,5
+62673895,25859495,5
+39913165,25859495,5
+80564860,25859495,5
+105892231,25859495,4
+103315563,25859495,5
+53559432,25859495,3
+38403649,25859495,5
+3177593,25859495,3
+1452797,25859495,3
+99067701,25859495,3
+57439274,25859495,5
+136863053,25859495,5
+4412898,25859495,4
+66388538,25859495,3
+59353616,25859495,4
+123788774,25859495,5
+46209502,25859495,5
+83484959,25859495,4
+naomi724,25859495,5
+anthony1123,25859495,4
+57819875,25859495,4
+44709496,25859495,5
+realbrownie,25859495,5
+61591334,25859495,4
+M1racle,25859495,4
+unnanae,25859495,4
+xiaopang1106,25859495,4
+pariseros,25859495,5
+125298994,25859495,3
+46812658,25859495,4
+badaalle,25859495,4
+milkbook,25859495,4
+125226021,25859495,4
+xiaodongWang,25859495,3
+2092765,25859495,4
+3729467,25859495,5
+xiaosongqu,25859495,4
+73047239,25859495,4
+asanisimasa,25859495,1
+3540441,25859495,4
+78602807,25859495,5
+crystal12345678,25859495,5
+63142694,25859495,5
+d300019,25859495,4
+82995055,25859495,4
+80319931,25859495,4
+sangou,25859495,3
+simu19,25859495,4
+62457534,25859495,4
+135403711,25859495,5
+saosaoxy,25859495,5
+sxy921026,25859495,5
+4239908,25859495,4
+65369148,25859495,4
+GreenL,25859495,5
+youngtoo,25859495,3
+90467667,25859495,5
+46906827,25859495,4
+80115244,25859495,5
+74810496,25859495,5
+57998290,25859495,3
+tom926,25859495,2
+zhongshanaoli,25859495,4
+115125689,25859495,5
+MOVIE--KO,25859495,3
+53477720,25859495,5
+77068892,25859495,4
+dgzy1644,25859495,4
+duduxiongzhifu,25859495,3
+45712857,25859495,5
+cherrytvxq1126,25859495,5
+53455992,25859495,3
+96044338,25859495,4
+ss25,25859495,-1
+lucifer024,25859495,4
+30285418,25859495,3
+Hdodo,25859495,4
+102623663,25859495,4
+vinra,25859495,4
+linngallery,25859495,3
+35044445,25859495,-1
+shiyuedeshishe,25859495,4
+78347009,25859495,4
+48953772,25859495,5
+4470965,25859495,5
+catherine_koo,25859495,3
+66836438,25859495,4
+vacancy_,25859495,4
+65400706,25859495,3
+49482611,25859495,4
+quanzhouren,25859495,4
+44725365,25859495,4
+momo077,25859495,5
+92908596,25859495,5
+r712,25859495,4
+66979855,25859495,4
+elsieyyj,25859495,5
+130724928,25859495,3
+76611723,25859495,5
+1414083,25859495,4
+60246775,25859495,4
+3044501,25859495,5
+maphia,25859495,4
+liuningba,25859495,4
+liuningba,25859495,4
+56160592,25859495,4
+helicopter,25859495,4
+41317103,25859495,4
+crystal612,25859495,5
+ruhualucky,25859495,3
+zeroqq,25859495,5
+Nagini,25859495,5
+pershingsay,25859495,5
+csy2526,25859495,5
+79706287,25859495,4
+dianlong,25859495,3
+64961989,25859495,4
+132024650,25859495,5
+65692560,25859495,5
+l278338151,25859495,5
+79732099,25859495,3
+2362158,25859495,4
+12593219,25859495,3
+48105782,25859495,5
+52308080,25859495,5
+117007812,25859495,4
+58453204,25859495,5
+1651604,25859495,5
+81254408,25859495,5
+91495186,25859495,5
+128250063,25859495,3
+5691697,25859495,3
+4014339,25859495,5
+pengzhuxin,25859495,5
+98134056,25859495,4
+119415852,25859495,4
+75756405,25859495,2
+68153956,25859495,4
+42797360,25859495,5
+qingmuwu,25859495,5
+64585406,25859495,4
+64525968,25859495,4
+59110325,25859495,5
+frozenwind,25859495,3
+chemicalromance,25823132,4
+1714674,25823132,4
+coco921,25823132,5
+xmausp,25823132,5
+84042964,25823132,4
+45705639,25823132,4
+decemfirst,25823132,5
+9833904,25823132,5
+lovin12,25823132,3
+71609046,25823132,4
+51010843,25823132,4
+67479654,25823132,5
+Dear_Corny,25823132,4
+50514282,25823132,4
+122857735,25823132,4
+sinux,25823132,4
+summer4_ever,25823132,4
+pipix,25823132,5
+laipixiaoxiuxiu,25823132,3
+cynthiazhang_,25823132,4
+gubutong,25823132,5
+67143504,25823132,4
+127222434,25823132,3
+cn50344,25823132,4
+46070924,25823132,3
+52798749,25823132,2
+16700404,25823132,4
+wingrabbit,25823132,3
+91851250,25823132,3
+z-shan,25823132,5
+36664394,25823132,4
+78478366,25823132,5
+93265673,25823132,5
+Lycheeciel,25823132,5
+31313042,25823132,4
+97453118,25823132,5
+milkcolor,25823132,5
+135739193,25823132,5
+ann27996090,25823132,3
+wudejun,25823132,3
+50227330,25823132,4
+107570827,25823132,3
+46848554,25823132,5
+6186981,25823132,5
+73770188,25823132,4
+137912145,25823132,5
+zhaoray,25823132,3
+130082458,25823132,4
+egeria1225,25823132,5
+lsiori,25823132,4
+xiguaet,25823132,2
+72866809,25823132,4
+56429297,25823132,5
+22655595,25823132,4
+62530102,25823132,4
+K-Child,25823132,4
+zzxin,25823132,4
+37291572,25823132,4
+85324202,25823132,3
+78786637,25823132,4
+62804242,25823132,4
+61836437,25823132,4
+60317509,25823132,3
+85084871,25823132,4
+narrowjiu,25823132,4
+hughs,25823132,4
+95968737,25823132,4
+57212959,25823132,4
+56742109,25823132,4
+50519870,25823132,4
+vince717,25823132,5
+63233687,25823132,5
+44541773,25823132,3
+47802475,25823132,4
+58665425,25823132,3
+47066484,25823132,3
+3901159,25823132,4
+52997821,25823132,4
+67489382,25823132,5
+65053075,25823132,5
+37803987,25823132,4
+48790837,25823132,3
+57687641,25823132,4
+wagobian,25823132,5
+Ada_Liu,25823132,4
+79748311,25823132,4
+malinkang,25823132,3
+pangjiansheng,25823132,4
+jeffchuwei,25823132,4
+2842455,25823132,3
+krisleung,25823132,4
+134489720,25823132,5
+131012186,25823132,4
+51064618,25823132,3
+51057847,25823132,4
+mattni,25823132,4
+61223246,25823132,4
+48544555,25823132,5
+43982125,25823132,5
+mrc,25823132,4
+132272414,25823132,4
+2583639,25823132,3
+94640425,25823132,5
+134034353,25823132,3
+Hyke,25823132,3
+49342454,25823132,3
+blackjason,25823132,3
+chenyj,25823132,5
+2477652,25823132,3
+46506835,25823132,4
+52098739,25823132,5
+63443426,25823132,4
+47598409,25823132,4
+82054541,25823132,3
+38228296,25823132,5
+xiying,25823132,3
+4804994,25823132,3
+28494028,25823132,3
+mouzhi,25823132,3
+115131162,25823132,4
+32911120,25823132,3
+39648072,25823132,4
+93007927,25823132,5
+Targaryen,25823132,5
+102069788,25823132,5
+miku,25823132,4
+ting_1987,25823132,3
+40931837,25823132,4
+44831365,25823132,4
+132062815,25823132,3
+79030834,25823132,4
+taozilove1314,25823132,5
+36252674,25823132,5
+53233343,25823132,2
+19716945,25823132,3
+xingze,25823132,3
+125971465,25823132,4
+1761514,25823132,5
+63296396,25823132,5
+ameba,25823132,-1
+ameba,25823132,-1
+Jacky_L,25823132,4
+suiziyanghan,25823132,4
+48950860,25823132,4
+wiwikuang,25823132,4
+wanwanxiaojie,25823132,5
+sevenplus,25823132,5
+jianganshe,25823132,4
+47785072,25823132,3
+48057625,25823132,5
+3217173,25823132,3
+56435930,25823132,4
+67633281,25823132,5
+zihuihui,25823132,3
+71121390,25823132,4
+fuzyu,25823132,4
+77779936,25823132,4
+mostai,25823132,4
+51483335,25823132,3
+45222640,25823132,4
+45222640,25823132,4
+gene4ever,25823132,3
+57474326,25823132,4
+3173862,25823132,3
+95442218,25823132,3
+xuyansong,25823132,3
+71861591,25823132,3
+127313933,25823132,4
+134190878,25823132,3
+58904341,25823132,4
+37320102,25823132,3
+ilovehotcoffee,25823132,-1
+105019332,25823132,5
+121829507,25823132,3
+44852938,25823132,3
+120287193,25823132,4
+49568187,25823132,4
+jiangjiang1214,25823132,3
+shahua,25823132,2
+2978891,25823132,3
+65641754,25823132,3
+48477485,25823132,5
+53891862,25823132,5
+55865392,25823132,4
+66657609,25823132,1
+40789061,25823132,4
+jimmy037,25823132,4
+4087422,25823132,3
+4191166,25823132,3
+39720218,25823132,3
+yao-monster,25823132,4
+133770513,25823132,4
+outsidecastle,25823132,2
+57370195,25823132,4
+68513675,25823132,4
+57024226,25823132,2
+46957067,25823132,3
+62314563,25823132,4
+76357897,25823132,4
+34416443,25823132,3
+tsebb,25823132,3
+45312368,25823132,4
+poornicky,25823132,3
+goldenday,25823132,3
+48774230,25823132,4
+48712788,25823132,4
+59610543,25823132,4
+46620424,25823132,3
+sumoxin,25823132,5
+pss217,25823132,5
+lzl890129,25823132,-1
+52621906,25823132,4
+27901768,25823132,3
+95078314,25823132,4
+bentmoon,25823132,3
+50242818,25823132,4
+61439975,25823132,3
+MiddleLau,25823132,4
+64704924,25823132,5
+biyi,25823132,4
+46561204,25823132,5
+42827834,25823132,3
+tianranzijiegou,25823132,3
+54653189,25823132,1
+weblinder,25823132,4
+gj_1987,25823132,4
+30759604,25823132,5
+31335200,25823132,5
+woshijiangxinju,25823132,2
+mrsfed,25823132,5
+xjksama,25823132,3
+115089885,25823132,4
+1367998,25823132,4
+travelzmc,25823132,5
+134502817,25823132,4
+38462134,25823132,4
+4512750,25823132,3
+67374627,25823132,5
+Shengkai_ShiW,25823132,-1
+taropie,25823132,5
+70435217,25823132,4
+41206383,25823132,4
+pig4lover,25823132,-1
+131351538,25823132,4
+virola,25823132,5
+4284841,25823132,3
+lvyue1986,25823132,5
+66794675,25823132,4
+50414826,25823132,5
+135834713,25823132,3
+116537034,25823132,4
+linxiaoleng,25823132,5
+64238881,25823132,3
+71974219,25823132,3
+yuefulun,25823132,4
+53274291,25823132,4
+1452797,25823132,3
+43864936,25823132,5
+137541196,25823132,5
+66669225,25823132,3
+52468739,25823132,4
+68102477,25823132,3
+125755382,25823132,4
+26265440,25823132,5
+2368703,25823132,5
+47539459,25823132,5
+53178335,25823132,3
+3679450,25823132,4
+princessamigo,25823132,3
+55717894,25823132,4
+7683143,25823132,4
+64023969,25823132,4
+55550016,25823132,4
+121354261,25823132,4
+1891073,25823132,1
+52636646,25823132,4
+58934229,25823132,4
+qingjiao,25823132,3
+39360207,25823132,3
+2990853,25823132,3
+Andrian-lee,25823132,4
+78759547,25823132,3
+30535234,25823132,4
+cherishcrystal,25823132,4
+39545267,25823132,2
+66676801,25823132,5
+50759873,25823132,4
+41943699,25823132,4
+skyFei,25823132,3
+pandejian250,25823132,4
+127972732,25823132,4
+137728472,25823132,5
+52918200,25823132,4
+45789849,25823132,3
+daidai1346,25823132,5
+62798977,25823132,4
+38850701,25823132,2
+6263589,25823132,4
+65361718,25823132,3
+61506971,25823132,3
+57139809,25823132,5
+82687720,25823132,3
+43921829,25823132,4
+wuyunoy,25823132,3
+34101066,25823132,4
+39168682,25823132,5
+Never_ever,25823132,4
+131254424,25823132,3
+jennystar,25823132,4
+67877483,25823132,5
+michaelya,25823132,4
+yuanyuan8870,25823132,5
+48286955,25823132,4
+48942391,25823132,3
+riverbrother,25823132,4
+56119626,25823132,4
+elfff,25823132,3
+43134221,25823132,4
+54202610,25823132,4
+58007643,25823132,5
+purewhitemolly,25823132,4
+58249010,25823132,3
+61085061,25823132,4
+gtxyxyz,25823132,5
+5854721,25823132,4
+jx0517,25823132,4
+ttoohh,25823132,4
+55997229,25823132,4
+kanrenao,25823132,4
+2016454,25823132,4
+70795862,25823132,4
+72752391,25823132,4
+yozir,25823132,3
+73569982,25823132,4
+110679412,25823132,4
+50452092,25823132,3
+steinyxu,25823132,3
+1457201,25823132,5
+3115383,25823132,4
+48167450,25823132,4
+11189422,25823132,4
+Elizabeth-Lee,25823132,4
+1805528,25823132,4
+120299687,25823132,3
+ayazhou,25823132,5
+85226504,25823132,5
+1259506,25823132,4
+121986674,25823132,3
+42838726,25823132,5
+movie8,25823132,4
+2548730,25823132,2
+3296630,25823132,4
+84168657,25823132,4
+35156084,25823132,4
+51297703,25823132,4
+86851971,25823132,4
+k2summit,25823132,2
+ltraman,25823132,4
+48484446,25823132,5
+2922610,25823132,3
+4632449,25823132,4
+3783012,25823132,4
+onlyloll,25823132,4
+114115384,25823132,5
+1615074,25823132,5
+arrowkey,25823132,3
+60743609,25823132,4
+1922653,25823132,5
+44483182,25823132,4
+1998991,25823132,5
+10007777,25823132,4
+summeryfun,25823132,3
+40447897,25823132,3
+76397529,25823132,4
+vito0719,25823132,5
+77194286,25823132,4
+44923935,25823132,5
+76549265,25823132,4
+91656862,25823132,5
+37322815,25823132,3
+larryhe,25823132,4
+32183273,25823132,4
+1417333,25823132,4
+21064111,25823132,4
+lidesheng,25823132,2
+d_side_story,25823132,4
+oyxp,25823132,4
+1714845,25823132,4
+wantti,25823132,4
+shushudabaoz,25823132,3
+54159008,25823132,5
+121243676,25823132,4
+irishong,25823132,5
+nebgnahz,25823132,4
+2280920,25823132,3
+42620728,25823132,3
+linyumi7,25823132,5
+133711771,25823132,3
+62864634,25823132,4
+125460350,25823132,4
+4378595,25823132,4
+3979432,25823132,4
+2963699,25823132,4
+renyuanstella,25823132,4
+79092004,25823132,5
+65458998,25823132,3
+fwsslyxx,25823132,4
+55960754,25823132,4
+3177593,25823132,4
+derekyyc,25823132,5
+131470818,25823132,4
+68592556,25823132,4
+17036547,25823132,4
+2828074,25823132,4
+122932689,25823132,4
+luxe,25823132,4
+64996012,25823132,3
+xiyuanaries,25823132,4
+capsula,25823132,3
+3114580,25823132,5
+3114580,25823132,5
+4790791,25823132,5
+50696669,25823132,5
+58142666,25823132,4
+pottqqq,25823132,3
+133895653,25823132,3
+45069650,25823132,4
+121536238,25823132,3
+2546239,25823132,3
+80699404,25823132,5
+4023510,25823132,5
+bananahotel,25823132,5
+50444681,25823132,4
+yangqihang,25823132,3
+1381065,25823132,3
+48088054,25823132,3
+108693709,25823132,3
+43968587,25823132,4
+64598652,25823132,5
+52657272,25823132,5
+52657272,25823132,5
+68799841,25823132,3
+qqb143,25823132,4
+12232981,25823132,5
+60462039,25823132,5
+moodymooday,25823132,4
+1425483,25823132,5
+43330595,25823132,3
+39580713,25823132,5
+37818937,25823132,-1
+easonkoko,25823132,4
+55774823,25823132,5
+29399686,25823132,5
+1448740,25823132,5
+47335967,25823132,4
+julyba,25823132,5
+zcy0505,25823132,3
+52553059,25823132,4
+62453695,25823132,5
+63710473,25823132,3
+116935437,25823132,4
+lcpeng,25823132,4
+20196112,25823132,2
+55275612,25823132,4
+81863885,25823132,4
+92860197,25823132,4
+57361553,25823132,4
+lisasue,25823132,4
+yangguangyi2,25823132,4
+ducklucy,25823132,4
+jiadun2006,25823132,4
+jiangrenz,25823132,3
+1233896,25823132,4
+58569504,25823132,4
+4037947,25823132,4
+101287383,25823132,4
+51284048,25823132,5
+61911395,25823132,4
+81316047,25823132,4
+51086058,25823132,5
+cjlinux,25823132,4
+angandry,25823132,3
+69796665,25823132,3
+xyq1364,25823132,-1
+51803315,25823132,4
+49228717,25823132,4
+poppy25,25823132,3
+59451032,25823132,4
+59116664,25823132,3
+sherrylgl,25823132,3
+43409918,25823132,3
+KeryChou,25823132,4
+soyoung1986,25823132,4
+10402356,25823132,3
+pp521,25823132,4
+MudDog,25823132,4
+xinxuqi,25823132,4
+feizhouji,25823132,5
+90540149,25823132,5
+59859213,25823132,5
+iklong,25823132,4
+3051599,25823132,5
+69396109,25823132,5
+3775940,25823132,4
+qqs,25823132,5
+65388874,25823132,5
+58976262,25823132,4
+48906452,25823132,5
+55593785,25823132,5
+3850532,25823132,4
+88719248,25823132,-1
+54880973,25823132,5
+102922692,25823132,4
+68238165,25823132,4
+62489520,25823132,5
+moonlightshit,25823132,5
+130318674,25823132,4
+49733253,25823132,5
+103675641,25823132,3
+83971141,25823132,5
+125102922,25823132,4
+yoshimi,25823132,3
+dicky1986,25823132,4
+3864613,25823132,4
+59968700,25823132,1
+23450183,25823132,5
+Heaterh,25823132,4
+3109255,25823132,3
+61775961,25823132,4
+135092660,25823132,4
+cajiln,25823132,-1
+36759958,25823132,4
+56413716,25823132,3
+32502933,25823132,4
+31970870,25823132,4
+47025279,25823132,3
+51965596,25823132,3
+62352557,25823132,4
+76635599,25823132,4
+leftone,25823132,4
+YH222,25823132,4
+52366508,25823132,4
+grayguy,25823132,3
+1101928,25823132,2
+yubin8725,25823132,4
+felicity7631,25823132,5
+14479133,25823132,4
+cappuccino-jl,25823132,2
+65183183,25823132,4
+fyvonne,25823132,4
+66965988,25823132,3
+VYSE,25823132,4
+yang_lei,25823132,4
+37294924,25823132,5
+100338185,25823132,3
+felt,25823132,4
+nina,25823132,4
+zoujian-999,25823132,5
+14247291,25823132,3
+redcookie,25823132,4
+ienen,25823132,3
+98877536,25823132,4
+136947773,25823132,3
+2116608,25823132,-1
+81770301,25823132,4
+shushiwang,25823132,4
+56586044,25823132,5
+103016365,25823132,3
+92796739,25823132,4
+dearajiu,25823132,5
+54474146,25823132,4
+51363896,25823132,3
+53697035,25823132,5
+75790133,25823132,4
+mmdrx,25823132,5
+57987696,25823132,5
+59620866,25823132,5
+55840798,25823132,3
+71496203,25823132,4
+bzfdu,25823132,4
+45933152,25823132,4
+52963156,25823132,3
+1014375,25823132,3
+DKJessica,25823132,4
+lostlandist,25823132,3
+44613513,25823132,5
+122649591,25823132,4
+wff19930208,25823132,4
+78662061,25823132,5
+59590971,25823132,4
+50058727,25823132,3
+sharkspeare,25823132,3
+68700662,25823132,5
+63119659,25823132,5
+130999542,25823132,4
+argoowz,25823132,3
+127062843,25823132,4
+linaboxiannv,25823132,5
+81377005,25823132,3
+72097640,25823132,4
+myxiguachong,25823132,5
+1240037,25823132,3
+77799876,25823132,3
+56880922,25823132,3
+57121022,25823132,5
+vnoonv,25823132,-1
+39809119,25823132,4
+121621931,25823132,4
+130541613,25823132,4
+122612759,25823132,4
+63650151,25823132,3
+q296579068,25823132,2
+taoyisanya,25823132,4
+blankmemory,25823132,2
+38001119,25823132,5
+52787199,25823132,5
+louise0614,25823132,4
+136942011,25823132,3
+zuozuo1990,25823132,4
+66620851,25823132,5
+66620851,25823132,5
+87390770,25823132,5
+49924381,25823132,5
+134519666,25823132,4
+2088587,25823132,3
+137438186,25823132,4
+4267240,25823132,4
+tankdriver,25823132,4
+81742461,25823132,4
+fengzimin0221,25823132,3
+Yhy_Garfield,25823132,5
+cherub235,25823132,4
+patrickrong,25823132,5
+rye39,25823132,3
+124812731,25823132,3
+beijingdouban,25823132,4
+76873283,25823132,4
+76993603,25823132,4
+134937890,25823132,5
+favezhihao,25823132,4
+2305028,25823132,4
+51635702,25823132,4
+zbar1234,25823132,3
+letyoufindme,25823132,5
+Tz0202,25823132,5
+79408087,25823132,3
+asldrf,25823132,4
+72132264,25823132,5
+nanxisunny0514,25823132,5
+EtionT,25823132,3
+yuxiaoyan0908,25823132,3
+91026407,25823132,4
+Malivoni,25823132,3
+43475366,25823132,3
+WitNesS-C,25823132,4
+78760255,25823132,5
+54162773,25823132,5
+keinshen,25823132,4
+answerwxf,25823132,4
+106570148,25823132,3
+62253613,25823132,5
+memoricry,25823132,3
+guolibin,25823132,5
+53982181,25823132,4
+97729106,25823132,5
+2498446,25823132,4
+137814359,25823132,4
+joyjay,25823132,5
+hzgirl0001,25823132,5
+133033817,25823132,4
+135627646,25823132,4
+52596376,25823132,4
+geminehoo,25823132,4
+61573146,25823132,5
+51854225,25823132,5
+1712187,25823132,3
+chowmo,25823132,5
+75667669,25823132,3
+45221913,25823132,3
+137555231,25823132,4
+coffeejikou,25823132,4
+65037565,25823132,4
+46148106,25823132,3
+127686469,25823132,5
+70321611,25823132,4
+137794763,25823132,4
+3116575,25823132,3
+vivicky320,25823132,3
+61497577,25823132,3
+121656332,25823132,5
+4811269,25823132,3
+4727036,25823132,4
+cai1st,25823132,4
+titibird,25823132,4
+129964938,25823132,4
+guoyandao,25823132,3
+103325989,25823132,4
+84912149,25823132,4
+134613226,25823132,4
+dujianpeng,25823132,4
+74495148,25823132,4
+74779260,25823132,3
+amyammy,25823132,4
+asdandowen,25823132,4
+asvra,25823132,4
+68354862,25823132,4
+52022745,25823132,5
+63022122,25823132,4
+42785964,25823132,4
+mengaxin,25823132,4
+52477308,25823132,3
+136910570,25823132,4
+56917159,25823132,4
+134531481,25823132,3
+40156361,25823132,-1
+mctrain,25823132,4
+moosee,25823132,4
+63708637,25823132,4
+71539697,25823132,4
+91268300,25823132,4
+32383822,25823132,4
+46138752,25823132,3
+48591645,25823132,4
+125028814,25823132,4
+xiaojuner12,25823132,4
+78754556,25823132,4
+61176270,25823132,5
+73222054,25823132,-1
+62288515,25823132,5
+47266655,25823132,3
+76554051,25823132,5
+shisongya,25823132,4
+48856971,25823132,5
+124568969,25823132,3
+134963788,25823132,5
+60140602,25823132,3
+64332109,25823132,4
+53768301,25823132,3
+50312553,25823132,3
+heartbreakerkid,25823132,2
+88096302,25823132,4
+Juice.,25823132,4
+137305184,25823132,4
+yuhaoyun,25823132,4
+49760036,25823132,5
+84351170,25823132,3
+121917994,25823132,3
+136594496,25823132,4
+muxiaoxu,25823132,3
+49578212,25823132,4
+blossomingliu,25823132,5
+58764888,25823132,-1
+57135077,25823132,3
+miaojike,25823132,4
+47037959,25823132,3
+rockymei,25823132,5
+4021496,25823132,4
+131187465,25823132,5
+iamliving,25823132,4
+51047226,25823132,4
+54344998,25823132,5
+monkey_dick,25823132,4
+bxynf4,25823132,3
+65283286,25823132,5
+yeqing611,25823132,3
+66689109,25823132,4
+81319731,25823132,3
+44045443,25823132,3
+jerry20071012,25823132,3
+137503237,25823132,5
+mdec,25823132,-1
+xiaoipiao,25823132,5
+isbairland,25823132,5
+79287577,25823132,3
+52987252,25823132,5
+mi-hang,25823132,4
+roy325,25823132,3
+3897599,25823132,4
+62343222,25823132,3
+yangyixiu1218,25823132,3
+yangyixiu1218,25823132,3
+Surecan,25823132,4
+56872635,25823132,5
+54015533,25823132,5
+60895508,25823132,5
+yiddle,25823132,5
+114014303,25823132,4
+35228199,25823132,5
+jvjvjvjv,25823132,4
+52451378,25823132,3
+128130996,25823132,5
+IronCock,25823132,5
+2376689,25823132,-1
+129618880,25823132,4
+84790765,25823132,5
+54865791,25823132,5
+sunq,25823132,3
+51227412,25823132,4
+whateverp,25823132,4
+ketsu214,25823132,4
+45631732,25823132,5
+70681955,25823132,4
+4583862,25823132,3
+airan712,25823132,3
+76302090,25823132,4
+35672658,25823132,3
+76413878,25823132,3
+53833067,25823132,4
+43788388,25823132,3
+levid,25823132,4
+54277204,25823132,3
+90681003,25823132,4
+Pridsl,25823132,3
+128403577,25823132,5
+amibubai,25823132,4
+3104945,25823132,5
+68478979,25823132,4
+houyuan425,25823132,5
+45528332,25823132,4
+27703240,25823132,-1
+SUSU19940314,25823132,4
+40674382,25823132,4
+mia777,25823132,4
+Mu_la,25823132,3
+zhangrihe,25823132,3
+3065454,25823132,4
+4560642,25823132,5
+58774025,25823132,3
+15782303,25823132,3
+71797507,25823132,2
+57844107,25823132,5
+52458935,25823132,2
+52103391,25823132,4
+56529814,25823132,5
+46981462,25823132,1
+49558005,25823132,4
+57037379,25823132,5
+64029045,25823132,4
+62275045,25823132,3
+dongwx,25823132,5
+dongwx,25823132,5
+dudumozart,25823132,4
+58497726,25823132,4
+wuyuxiansheng,25823132,3
+3311665,25823132,4
+61788705,25823132,5
+qiangqiangzhang,25823132,4
+79059134,25823132,4
+29822208,25823132,3
+71143154,25823132,3
+unruturn,25823132,4
+99004931,25823132,5
+137683584,25823132,3
+135128946,25823132,4
+14583847,25823132,3
+4587143,25823132,5
+56213382,25823132,4
+35123281,25823132,4
+59433731,25823132,5
+zhibiaoshi,25823132,4
+zhibiaoshi,25823132,4
+120666244,25823132,3
+mollye,25823132,5
+40760358,25823132,4
+1721242,25823132,4
+38747364,25823132,4
+62710966,25823132,4
+77523023,25823132,4
+66574557,25823132,3
+2622666,25823132,5
+pansin,25823132,3
+132126693,25823132,5
+5116652,25823132,4
+songorz,25823132,5
+kimxixi,25823132,4
+1943610,25823132,4
+64552967,25823132,5
+62634901,25823132,4
+63878965,25823132,4
+kidultlilith,25823132,3
+kidultlilith,25823132,3
+3535619,25823132,3
+rainze,25823132,5
+83428425,25823132,4
+47193126,25823132,3
+65159840,25823132,4
+1084703,25823132,3
+29370418,25823132,1
+76929963,25823132,3
+foofights,25823132,2
+stevenzhaodl,25823132,2
+40322094,25823132,4
+134292834,25823132,4
+67731504,25823132,4
+1769693,25823132,4
+juliekathy,25823132,4
+carrie_c.,25823132,5
+27433108,25823132,5
+131761032,25823132,3
+131088732,25823132,3
+131088732,25823132,3
+43923829,25823132,4
+66926887,25823132,4
+zhgrace,25823132,3
+58807022,25823132,3
+carino8023,25823132,4
+44810732,25823132,3
+tvat,25823132,4
+2650390,25823132,3
+3867251,25823132,3
+50450547,25823132,4
+122893231,25823132,5
+nighteye1123,25823132,3
+daisydann,25823132,3
+57496445,25823132,5
+guibao520,25823132,4
+xunliwu,25823132,5
+65260404,25823132,4
+64736329,25823132,4
+124956698,25823132,3
+50280331,25823132,4
+62979514,25823132,3
+memoryLA,25823132,4
+66575578,25823132,3
+44875082,25823132,3
+80704682,25823132,3
+56970395,25823132,4
+48224071,25823132,4
+62455742,25823132,4
+72100627,25823132,4
+48990593,25823132,4
+2296984,25823132,5
+76075796,25823132,4
+83453172,25823132,4
+momot,25823132,4
+2588629,25823132,3
+57605822,25823132,5
+48525161,25823132,4
+77922789,25823132,4
+132237127,25823132,4
+78406452,25823132,4
+55419617,25823132,3
+66798898,25823132,3
+58135379,25823132,4
+3273282,25823132,4
+136971594,25823132,4
+42535832,25823132,4
+104310668,25823132,5
+10200994,25823132,5
+33921766,25823132,4
+leepenng,25823132,3
+84710876,25823132,4
+63442441,25823132,3
+84091392,25823132,4
+46375776,25823132,4
+dearpluto,25823132,3
+34243551,25823132,3
+calla,25823132,4
+wenjingbaba,25823132,3
+3483430,25823132,4
+memor,25823132,4
+csaver,25823132,5
+suwa,25823132,3
+hosoro,25823132,4
+dusk853,25823132,5
+133854839,25823132,4
+4108038,25823132,4
+43083123,25823132,4
+76428013,25823132,4
+94996353,25823132,5
+55494665,25823132,4
+54983933,25823132,3
+50614819,25823132,5
+cyansugar,25823132,3
+40211421,25823132,4
+69585663,25823132,3
+53518992,25823132,4
+alankant,25823132,4
+131518850,25823132,4
+48163178,25823132,4
+feiyingjiancg,25823132,4
+136639893,25823132,4
+61653276,25823132,4
+89804270,25823132,4
+rinnie,25823132,4
+mengxixi,25823132,4
+funfunjoy,25823132,4
+Dushanbe,25823132,4
+66179555,25823132,3
+51967154,25823132,2
+79151265,25823132,3
+77048663,25823132,3
+120566787,25823132,4
+68916586,25823132,3
+67306883,25823132,-1
+64707906,25823132,4
+36669166,25823132,4
+98956070,25823132,3
+43783521,25823132,3
+97683724,25823132,4
+134545112,25823132,5
+82145368,25823132,4
+72365575,25823132,4
+137398525,25823132,5
+135482587,25823132,4
+77715371,25823132,5
+guyewuzhe,25823132,3
+137325687,25823132,5
+126341666,25823132,4
+superxiang,25823132,5
+10277954,25823132,3
+98956225,25823132,4
+aizhengyang,25823132,4
+47047008,25823132,4
+106384787,25823132,3
+never_missing,25823132,3
+55814996,25823132,3
+71117694,25823132,4
+137462818,25823132,-1
+39690585,25823132,4
+65187145,25823132,4
+Pincent,25823132,4
+dnarna_vicky,25823132,-1
+134842363,25823132,-1
+58194812,25823132,3
+48247472,25823132,5
+SeanShepherd,25823132,2
+43483612,25823132,3
+85114697,25823132,3
+4565520,25823132,4
+LoveXXin,25823132,4
+45291333,25823132,3
+123000223,25823132,5
+sunata,25823132,4
+39024744,25823132,3
+74448596,25823132,3
+amoliu,25823132,4
+62840293,25823132,3
+81895989,25823132,5
+42296972,25823132,4
+42296972,25823132,4
+137129598,25823132,5
+76025225,25823132,3
+kamiyamaki,25823132,4
+65935393,25823132,5
+56484149,25823132,3
+adonis72,25823132,4
+Rinascita,25823132,4
+56894837,25823132,4
+m0920,25823132,3
+101450082,25823132,4
+4714593,25823132,-1
+70690321,25823132,4
+130459038,25823132,5
+62337798,25823132,4
+70043510,25823132,3
+anbox,25823132,3
+klot,25823132,3
+52122159,25823132,3
+136454222,25823132,4
+136454222,25823132,4
+121922821,25823132,5
+73530411,25823132,4
+yf90924123,25823132,5
+37950189,25823132,4
+Narcisken,25823132,3
+luanweiwei,25823132,5
+Ms.ZzZz,25823132,3
+JackingChen,25823132,4
+2187670,25823132,4
+kingsitcome,25823132,3
+49558870,25823132,3
+104091868,25823132,5
+kinghaixin,25823132,4
+3956478,25823132,3
+121633982,25823132,4
+136727796,25823132,4
+106514817,25823132,4
+25960765,25823132,4
+csf,25823132,4
+48165541,25823132,4
+136714687,25823132,5
+123002309,25823132,4
+17786192,25823132,5
+62650557,25823132,4
+liangerle,25823132,3
+1941226,25823132,4
+130540894,25823132,3
+104985254,25823132,4
+otnemem,25823132,4
+134552700,25823132,5
+56609049,25823132,4
+44361116,25823132,2
+59684689,25823132,4
+qimaoyu,25823132,5
+65121646,25823132,4
+2980085,25823132,5
+WierdMinds,25823132,3
+101864611,25823132,5
+79478187,25823132,4
+64444296,25823132,5
+46068341,25823132,4
+2327781,25823132,5
+51222661,25823132,3
+3151445,25823132,4
+48547507,25823132,4
+38324807,25823132,4
+zhangjc223,25823132,5
+58243506,25823132,3
+32609644,25823132,4
+2219533,25823132,5
+41351821,25823132,4
+58769650,25823132,3
+3678344,25823132,3
+2750884,25823132,4
+36147004,25823132,5
+48211750,25823132,4
+79525878,25823132,4
+56925526,25823132,3
+67976989,25823132,4
+67976989,25823132,4
+134527565,25823132,4
+64780259,25823132,4
+28194529,25823132,4
+fairygarden,25823132,3
+131768204,25823132,4
+weizi07,25823132,3
+PennyZZZZZ,25823132,5
+6915068,25823132,4
+51484755,25823132,5
+80922094,25823132,4
+120627904,25823132,3
+29472366,25823132,5
+17841187,25823132,3
+56653841,25823132,4
+2115674,25823132,3
+zqw930421,25823132,5
+121228834,25823132,3
+62945273,25823132,4
+68946144,25823132,2
+84140756,25823132,4
+biby9475,25823132,3
+70794038,25823132,5
+crazydoctor,25823132,4
+75184056,25823132,-1
+84872284,25823132,4
+50638011,25823132,3
+87416529,25823132,3
+anfeather,25823132,5
+3858083,25823132,4
+57984537,25823132,5
+134532187,25823132,3
+happygs,25823132,4
+2428631,25823132,5
+hudodo0314,25823132,-1
+64789916,25823132,3
+muouplay,25823132,3
+52506761,25823132,5
+63246686,25823132,3
+1528226,25823132,4
+127316538,25823132,4
+58772458,25823132,4
+33684021,25823132,3
+61689441,25823132,3
+blos,25823132,5
+120461858,25823132,4
+caicaihuang,25823132,3
+kaka_elsie,25823132,3
+114994723,25823132,3
+xiaoqi777777777,25823132,5
+1039069,25823132,3
+52117309,25823132,4
+6394575,25823132,5
+44990923,25823132,3
+65644087,25823132,5
+64790470,25823132,4
+79779762,25823132,4
+CheeZcn,25823132,5
+3672180,25823132,5
+xixiduoduo,25823132,-1
+hela,25823132,-1
+mgmyz,25823132,4
+philette,25823132,4
+33149603,25823132,4
+69649993,25823132,4
+60141694,25823132,3
+AspireY,25823132,3
+60736257,25823132,3
+3192650,25823132,4
+lanshangba,25823132,4
+34746953,25823132,5
+30066915,25823132,4
+77919551,25823132,4
+1595012,25823132,5
+wuxipaopao,25823132,2
+jessica_21,25823132,3
+xiaoyushudai,25823132,4
+jopees,25823132,4
+121761822,25823132,4
+127619617,25823132,3
+59399939,25823132,4
+135234490,25823132,4
+58338006,25823132,3
+72430905,25823132,3
+wangsc1102,25823132,4
+84957899,25823132,3
+88072113,25823132,4
+10580504,25823132,5
+43344167,25823132,3
+122944258,25823132,4
+41758984,25823132,5
+58081227,25823132,4
+81237991,25823132,5
+69197532,25823132,4
+131909298,25823132,3
+67911635,25823132,3
+50875593,25823132,2
+136569467,25823132,4
+KatoInoue,25823132,5
+135118905,25823132,4
+135118905,25823132,4
+3978591,25823132,3
+barcabookworm,25823132,4
+137206904,25823132,4
+xianxiansushou,25823132,3
+37803671,25823132,3
+122966703,25823132,4
+46729768,25823132,1
+119306223,25823132,5
+49913788,25823132,4
+80141777,25823132,4
+127345355,25823132,5
+75126103,25823132,5
+CrystaDD,25823132,5
+129857538,25823132,4
+101915984,25823132,5
+AAAxiaowei,25823132,4
+carolynjcc,25823132,5
+126135923,25823132,4
+elwy,25823132,5
+130944083,25823132,3
+58144474,25823132,3
+brofe,25823132,3
+53916327,25823132,3
+38702110,25823132,4
+121679794,25823132,4
+136293291,25823132,-1
+122679679,25823132,4
+131056660,25823132,5
+lizhiqiang127,25823132,4
+57546427,25823132,4
+xiaoyufan569801,25823132,4
+56533866,25823132,4
+79846802,25823132,-1
+1334269,25823132,4
+108296832,25823132,3
+3360731,25823132,4
+87344411,25823132,4
+karain,25823132,3
+60764482,25823132,-1
+halconnen,25823132,4
+121305318,25823132,3
+hanlisen,25823132,3
+45030783,25823132,2
+66826461,25823132,-1
+44276090,25823132,4
+65213268,25823132,4
+22595281,25823132,4
+83193363,25823132,5
+9619954,25823132,3
+137058479,25823132,3
+59704797,25823132,4
+14594701,25823132,3
+subject,25823132,5
+50290697,25823132,2
+leethero,25823132,5
+4305734,25823132,4
+lmxiaojian,25823132,5
+38780906,25823132,3
+114435379,25823132,4
+137107411,25823132,5
+antilo,25823132,4
+3321382,25823132,5
+47716612,25823132,5
+1364563,25823132,4
+130563496,25823132,5
+137058497,25823132,4
+hh1911,25823132,4
+1538371,25823132,4
+134625303,25823132,3
+momon1900,25823132,4
+122259950,25823132,4
+69095785,25823132,4
+gezi921054,25823132,4
+81592044,25823132,5
+119262714,25823132,3
+137061387,25823132,4
+68666799,25823132,4
+4671919,25823132,4
+75268479,25823132,4
+61681574,25823132,4
+74752187,25823132,4
+59484952,25823132,4
+97452265,25823132,4
+43393007,25823132,2
+pinecone511,25823132,5
+echobaby6002,25823132,-1
+4118910,25823132,4
+57929727,25823132,5
+135689504,25823132,4
+125641594,25823132,4
+102997764,25823132,4
+37513501,25823132,5
+53523221,25823132,4
+47029437,25823132,4
+37344756,25823132,4
+108601772,25823132,5
+4409109,25823132,3
+xiongbear01,25823132,4
+64713560,25823132,4
+57996084,25823132,4
+137076197,25823132,4
+136926154,25823132,5
+laoshububen,25823132,4
+25110019,25823132,3
+37036835,25823132,4
+vivienvb,25823132,4
+17871243,25823132,4
+131529950,25823132,4
+137073841,25823132,4
+6972638,25823132,4
+41107629,25823132,2
+61524961,25823132,4
+123404476,25823132,3
+xianxianchen,25823132,4
+wayephang,25823132,4
+78667352,25823132,5
+vanilla-sky,25823132,3
+123370298,25823132,5
+59163778,25823132,4
+guoqichepiao,25823132,3
+69439267,25823132,2
+AeroAnte,25823132,4
+2344931,25823132,4
+80209748,25823132,3
+1495292,25823132,3
+suitsue0504,25823132,2
+koreaguy,25823132,4
+46169817,25823132,4
+68881946,25823132,5
+99031984,25823132,5
+66328593,25823132,4
+1319405,25823132,1
+44975625,25823132,4
+50255025,25823132,4
+79210098,25823132,5
+39781506,25823132,2
+76732231,25823132,4
+48093431,25823132,3
+128739482,25823132,3
+128739482,25823132,3
+syrahshiraz,25823132,5
+117359316,25823132,4
+Kidew,25823132,4
+60470640,25823132,3
+jiuyang,25823132,4
+lolitazly,25823132,3
+47347613,25823132,3
+52409841,25823132,5
+30067864,25823132,-1
+65316211,25823132,4
+38659536,25823132,4
+36055864,25823132,3
+53771216,25823132,4
+35111006,25823132,-1
+103265619,25823132,4
+pinkcandiii,25823132,5
+winxberg,25823132,4
+1157299,25823132,2
+59792119,25823132,4
+snsyzb,25823132,5
+54328973,25823132,5
+131408932,25823132,4
+70217927,25823132,2
+73042225,25823132,4
+115051698,25823132,4
+djaychan,25823132,5
+43359124,25823132,3
+63985739,25823132,4
+54030275,25823132,4
+122656795,25823132,4
+59101445,25823132,4
+133858603,25823132,4
+Kingnima,25823132,3
+wclovew,25823132,5
+113999648,25823132,4
+104592207,25823132,2
+130445057,25823132,4
+45491301,25823132,5
+3481297,25823132,4
+125151595,25823132,3
+wengjx,25823132,5
+14186620,25823132,1
+70284422,25823132,5
+73536867,25823132,4
+71078758,25823132,4
+61292810,25823132,4
+raibei,25823132,5
+122868077,25823132,3
+60349266,25823132,4
+2483772,25823132,5
+ggrise,25823132,4
+pbc0615,25823132,4
+formydream,25823132,2
+75804317,25823132,4
+40027917,25823132,3
+black9_eleven,25823132,3
+2848557,25823132,3
+103656059,25823132,4
+Simone_smile,25823132,5
+124618760,25823132,3
+70024677,25823132,3
+55613939,25823132,4
+kenc,25823132,4
+zombiebaby,25823132,4
+121849085,25823132,4
+feizhuangzhuang,25823132,3
+88032160,25823132,3
+1499246,25823132,4
+34363424,25823132,4
+126755224,25823132,5
+toyanyang,25823132,5
+96241491,25823132,4
+61328119,25823132,5
+stevenfive,25823132,4
+33263448,25823132,4
+136409582,25823132,5
+75915241,25823132,2
+58854842,25823132,5
+78925849,25823132,4
+78925849,25823132,4
+90623764,25823132,5
+72023596,25823132,4
+90141140,25823132,4
+57275922,25823132,4
+alexda1da2da3,25823132,4
+4333851,25823132,4
+132098902,25823132,1
+35578162,25823132,4
+VVIVXIV,25823132,5
+2411985,25823132,5
+76780337,25823132,-1
+ooosky,25823132,5
+vera0902,25823132,4
+acseleon,25823132,4
+4042513,25823132,3
+67624149,25823132,4
+47504578,25823132,4
+blueskd,25823132,3
+131817734,25823132,4
+42173846,25823132,5
+49032670,25823132,5
+62843075,25823132,4
+60365345,25823132,3
+63386417,25823132,4
+122394659,25823132,3
+demo_3,25823132,2
+5318547,25823132,2
+mivan,25823132,3
+xiaokongji,25823132,4
+61944030,25823132,4
+Uvo,25823132,5
+77531500,25823132,5
+63821085,25823132,4
+45871248,25823132,5
+121627285,25823132,4
+queenchelsea,25823132,1
+112683822,25823132,4
+2652430,25823132,2
+47641724,25823132,4
+iCyBLeu,25823132,4
+68166491,25823132,3
+Victor_D,25823132,4
+50312843,25823132,4
+LLT,25823132,4
+ximeir,25823132,4
+ido_idoing,25823132,2
+64810171,25823132,4
+64624172,25823132,-1
+avrilyian,25823132,4
+134501526,25823132,4
+cheeseberry,25823132,3
+4643813,25823132,3
+3959996,25823132,5
+61737098,25823132,4
+132676591,25823132,5
+hyapple,25823132,3
+dupang,25823132,3
+youyou110205,25823132,3
+30885179,25823132,4
+133350413,25823132,4
+qzpm1029,25823132,5
+128025495,25823132,4
+62369741,25823132,4
+136878015,25823132,2
+83757263,25823132,3
+elaeagnaceae,25823132,3
+87628591,25823132,5
+25621274,25823132,4
+94767953,25823132,5
+72405316,25823132,4
+jiyuanwang,25823132,4
+46230886,25823132,4
+130691174,25823132,4
+Zenodotus,25823132,4
+madbilly,25823132,3
+withmydog,25823132,3
+134546006,25823132,5
+127131340,25823132,4
+46656528,25823132,4
+103979483,25823132,5
+58180925,25823132,5
+ideyes,25823132,3
+115217962,25823132,4
+ccushuaia1220,25823132,-1
+40256147,25823132,5
+42111921,25823132,4
+100020528,25823132,3
+3712994,25823132,4
+136629154,25823132,2
+4902486,25823132,4
+61315672,25823132,4
+58134202,25823132,2
+132332103,25823132,4
+63713209,25823132,1
+49081579,25823132,4
+yangjiemomo,25823132,3
+CharlieXiaoxiao,25823132,3
+1226511,25823132,4
+135402146,25823132,3
+3856901,25823132,5
+69805658,25823132,3
+67156192,25823132,3
+29142546,25823132,5
+likechuck,25823132,5
+zhouxuan,25823132,4
+124549679,25823132,4
+50474286,25823132,4
+84418105,25823132,-1
+63650643,25823132,2
+39382448,25823132,5
+68098280,25823132,5
+57262819,25823132,4
+42368147,25823132,3
+57065228,25823132,5
+6961043,25823132,4
+74479513,25823132,4
+kknightnight,25823132,5
+1122936,25823132,2
+lunacake,25823132,3
+42171117,25823132,4
+128063403,25823132,3
+63568126,25823132,4
+48370487,25823132,4
+50109761,25823132,4
+79424567,25823132,4
+zhhongbo,25823132,4
+XY920521,25823132,3
+xiamudemao,25823132,4
+79583588,25823132,3
+128405947,25823132,3
+135012811,25823132,3
+52392093,25823132,4
+110565024,25823132,3
+39238013,25823132,5
+70805035,25823132,3
+heechul007,25823132,5
+66322119,25823132,3
+nyx0115,25823132,5
+2663303,25823132,5
+134905591,25823132,4
+36282814,25823132,3
+65937174,25823132,5
+18965054,25823132,3
+chenmiaoyang,25823132,5
+53531270,25823132,4
+83900345,25823132,3
+70992635,25823132,4
+1356234,25823132,5
+64821035,25823132,4
+1754621,25823132,3
+45187119,25823132,5
+hukou,25823132,4
+liria521,25823132,-1
+136062696,25823132,5
+noonsleep,25823132,4
+joelipam,25823132,5
+baigao,25823132,4
+52128308,25823132,4
+77394245,25823132,5
+48369826,25823132,4
+106519480,25823132,4
+134545730,25823132,4
+2304340,25823132,4
+69068097,25823132,4
+2858772,25823132,3
+qweerew,25823132,5
+ooxx00xx,25823132,4
+60413211,25823132,3
+fortiffany,25823132,3
+68783162,25823132,5
+44868532,25823132,3
+1176730,25823132,3
+78500881,25823132,4
+meskelil,25823132,3
+2387426,25823132,3
+holy-fishman,25823132,4
+4906139,25823132,3
+32144547,25823132,2
+4453892,25823132,-1
+heyeast,25823132,4
+8795096,25823132,5
+smileuna,25823132,5
+68770847,25823132,4
+59886067,25823132,4
+78757579,25823132,4
+54832274,25823132,2
+134631211,25823132,4
+summer19,25823132,4
+120268837,25823132,4
+sosofly,25823132,4
+daizy_10,25823132,5
+130251472,25823132,5
+ilmarie,25823132,5
+60573283,25823132,3
+momoko1024,25823132,4
+136669389,25823132,4
+67238808,25823132,4
+74145867,25823132,4
+123543090,25823132,4
+136785274,25823132,4
+kinso,25823132,4
+136086355,25823132,5
+68283591,25823132,4
+hdjjys,25823132,3
+52166968,25823132,3
+54306906,25823132,4
+pii3you,25823132,5
+134540692,25823132,4
+130225502,25823132,5
+missufinally,25823132,5
+48324481,25823132,4
+43216565,25823132,4
+99104494,25823132,5
+SophieVV1130,25823132,4
+28356235,25823132,1
+101549160,25823132,5
+tanmingdong,25823132,3
+81506415,25823132,5
+120250936,25823132,3
+bstutu,25823132,4
+90115301,25823132,4
+sisyphos,25823132,3
+125789242,25823132,5
+55836686,25823132,4
+34544680,25823132,5
+55715149,25823132,3
+60504195,25823132,4
+124810357,25823132,4
+8449145,25823132,5
+77586152,25823132,4
+136757933,25823132,4
+Jhon_Lou,25823132,4
+lainey1006,25823132,4
+99542809,25823132,4
+104433254,25823132,5
+66967732,25823132,4
+Popdai,25823132,5
+91117590,25823132,5
+59535372,25823132,4
+59535372,25823132,4
+liujunhe123,25823132,3
+26715515,25823132,5
+72030816,25823132,4
+44832442,25823132,5
+44066080,25823132,4
+34532073,25823132,4
+linxhe,25823132,5
+59135946,25823132,4
+4544241,25823132,4
+130934404,25823132,4
+topxpp,25823132,5
+45681861,25823132,5
+alanis,25823132,4
+4582318,25823132,3
+54664894,25823132,4
+YAH1003,25823132,4
+63565801,25823132,4
+67220317,25823132,4
+1888516,25823132,5
+134499178,25823132,4
+134498032,25823132,4
+59197305,25823132,3
+42069458,25823132,5
+old-playboy,25823132,3
+4110485,25823132,5
+45319686,25823132,3
+ffx1201,25823132,-1
+51557756,25823132,3
+49906170,25823132,-1
+erobin,25823132,3
+videe,25823132,4
+beckham7,25823132,2
+43632851,25823132,4
+70307710,25823132,4
+49897508,25823132,5
+50752972,25823132,4
+69244531,25823132,5
+136206078,25823132,4
+2428233,25823132,3
+79963490,25823132,3
+4528157,25823132,3
+hejianjian,25823132,5
+49673011,25823132,3
+50934867,25823132,4
+55916506,25823132,3
+48694579,25823132,-1
+clockworkrabbit,25823132,3
+76964531,25823132,4
+62699217,25823132,4
+benjune,25823132,3
+81418362,25823132,3
+84109824,25823132,4
+75322883,25823132,4
+2567602,25823132,3
+36339118,25823132,3
+68607460,25823132,4
+124869665,25823132,-1
+136019111,25823132,-1
+85132490,25823132,4
+85132490,25823132,4
+62153097,25823132,4
+81593591,25823132,4
+ps716,25823132,4
+90543489,25823132,4
+fessi,25823132,4
+3279804,25823132,3
+49288532,25823132,5
+55556011,25823132,4
+50118479,25823132,5
+119416612,25823132,4
+53242249,25823132,3
+W18523342562,25823132,3
+42293953,25823132,2
+samtino,25823132,3
+48549830,25823132,5
+48418593,25823132,4
+monsterkill,25823132,4
+4643817,25823132,3
+xong,25823132,3
+132370483,25823132,4
+44290165,25823132,2
+4315200,25823132,3
+88071858,25823132,3
+syh622,25823132,-1
+66650981,25823132,2
+74883045,25823132,4
+neverbutterfly,25823132,3
+136691019,25823132,4
+53847386,25823132,3
+130526552,25823132,4
+meganonline,25823132,4
+39525440,25823132,4
+37336269,25823132,4
+52389655,25823132,4
+icyqh,25823132,4
+3488671,25823132,5
+lecsi,25823132,-1
+45473293,25823132,4
+84799106,25823132,5
+51865230,25823132,5
+demoncat,25823132,3
+ninilovekaikai,25823132,4
+48817278,25823132,4
+3143683,25823132,4
+53791841,25823132,4
+4679551,25823132,3
+DKfeixiang,25823132,4
+zhangleyuan,25823132,4
+duoxingxing,25823132,3
+46742218,25823132,5
+48857925,25823132,2
+xxschou,25823132,4
+3249318,25823132,4
+49532139,25823132,-1
+3130809,25823132,4
+xyxyxyxyxy1995,25823132,5
+69197339,25823132,3
+72800521,25823132,5
+3437600,25823132,5
+121945022,25823132,5
+85948759,25823132,3
+80942237,25823132,5
+myn28,25823132,5
+90217144,25823132,4
+dd54,25823132,5
+135290961,25823132,5
+60191465,25823132,3
+91473851,25823132,5
+wangeasy,25823132,4
+or_child,25823132,3
+52633603,25823132,4
+135833975,25823132,5
+78533472,25823132,4
+120889281,25823132,5
+136658455,25823132,-1
+131039743,25823132,3
+seattlerein,25823132,3
+Corrinne,25823132,4
+komos,25823132,3
+ivypa,25823132,4
+64576871,25823132,4
+38736772,25823132,3
+136654188,25823132,5
+31555036,25823132,5
+121557775,25823132,4
+80466104,25823132,-1
+93235533,25823132,4
+121819431,25823132,3
+18360610,25823132,3
+2569425,25823132,4
+54336102,25823132,3
+YSAZA,25823132,5
+sniperchris,25823132,3
+49327073,25823132,4
+xixi9000,25823132,4
+54100046,25823132,5
+124257806,25823132,4
+48821627,25823132,5
+2404986,25823132,5
+48959511,25823132,5
+51302979,25823132,3
+136639292,25823132,4
+96146816,25823132,3
+36601365,25823132,4
+74499406,25823132,4
+48028421,25823132,4
+48661159,25823132,4
+60421947,25823132,5
+zhengxianmin,25823132,3
+53736200,25823132,4
+50399168,25823132,5
+30322114,25823132,3
+raeji,25823132,5
+58900173,25823132,5
+87691265,25823132,2
+49607126,25823132,4
+jiajia1130,25823132,5
+116551398,25823132,3
+30641768,25823132,4
+1773126,25823132,3
+127695510,25823132,4
+18088237,25823132,3
+62534948,25823132,5
+majoselyqiujuan,25823132,4
+42309326,25823132,4
+130920695,25823132,4
+52218684,25823132,5
+68879069,25823132,5
+howhappy,25823132,3
+54082963,25823132,5
+119644008,25823132,4
+53395539,25823132,4
+jasonai,25823132,4
+40237768,25823132,3
+76283809,25823132,4
+57633355,25823132,4
+4657541,25823132,4
+57663972,25823132,5
+glax,25823132,3
+130989918,25823132,4
+2423100,25823132,2
+3884732,25823132,5
+lanmichelle,25823132,4
+65635790,25823132,4
+68166983,25823132,5
+2233352,25823132,4
+lilittleV,25823132,4
+x_____________p,25823132,4
+45505109,25823132,4
+kingiknow,25823132,5
+lpf1990,25823132,5
+xiongweilin,25823132,5
+66178513,25823132,4
+125226021,25823132,4
+134318408,25823132,3
+johnny174,25823132,4
+33762856,25823132,4
+91917385,25823132,4
+53948411,25823132,4
+117307392,25823132,5
+84750944,25823132,-1
+coldcall,25823132,3
+3939279,25823132,3
+136593391,25823132,2
+l726,25823132,4
+45446401,25823132,4
+92442460,25823132,3
+cescshen,25823132,4
+51226277,25823132,5
+3687712,25823132,5
+78795036,25823132,4
+inout,25823132,3
+51525177,25823132,5
+70335483,25823132,4
+eto,25823132,2
+53090809,25823132,4
+imachild,25823132,4
+32853386,25823132,4
+75906877,25823132,4
+52243098,25823132,3
+joyworld,25823132,4
+126239848,25823132,3
+pingfandeshabi,25823132,3
+12949814,25823132,4
+4586261,25823132,5
+gossip3micky,25823132,5
+34120415,25823132,3
+3646019,25823132,3
+sircayden,25823132,5
+46721798,25823132,4
+1693893,25823132,5
+3936069,25823132,4
+3024636,25823132,3
+59538037,25823132,4
+Xinxin,25823132,5
+113905668,25823132,5
+ooolinda,25823132,4
+57819875,25823132,4
+2846709,25823132,2
+boycester,25823132,4
+xyzxun,25823132,4
+27518977,25823132,2
+41785476,25823132,4
+135349165,25823132,5
+43188072,25823132,5
+42373741,25823132,4
+1444649,25823132,5
+flycondor,25823132,4
+2625374,25823132,4
+67072789,25823132,5
+yizhiyu11,25823132,4
+58310222,25823132,4
+75332089,25823132,4
+monica_ning,25823132,5
+ghostneng,25823132,4
+3878971,25823132,4
+spf,25823132,5
+mhkm,25823132,3
+2420853,25823132,4
+marlonlieshere,25823132,3
+67563224,25823132,5
+Bebefore,25823132,3
+FilmYan,25823132,4
+CloudRiver,25823132,5
+56766936,25823132,4
+34104531,25823132,3
+73161188,25823132,3
+59390060,25823132,2
+sweetmisscat,25823132,5
+126513997,25823132,4
+Celiac,25823132,5
+58919934,25823132,4
+67007418,25823132,4
+4290135,25823132,3
+62601567,25823132,5
+48055339,25823132,4
+91291247,25823132,5
+bunny-say,25823132,3
+peridot,25823132,-1
+68037572,25823132,5
+104167946,25823132,3
+jinjidexiong,25823132,2
+1727444,25823132,4
+81198978,25823132,-1
+2266577,25823132,4
+123645823,25823132,3
+55563514,25823132,5
+11083255,25823132,3
+noeee_j,25823132,4
+Stanleyhai,25823132,3
+80936991,25823132,4
+4134812,25823132,4
+ilovefashion,25823132,4
+Fedsay,25823132,3
+58027563,25823132,5
+61779592,25823132,4
+12573860,25823132,4
+53560863,25823132,4
+mikarly,25823132,4
+63579179,25823132,4
+74329329,25823132,5
+modouvictoria,25823132,5
+amilyzz,25823132,5
+129274650,25823132,4
+wennan_z,25823132,4
+on1ooker,25823132,3
+64076320,25823132,4
+yuxiangyun,25823132,5
+22077242,25823132,4
+zuozuoxi,25823132,4
+23416699,25823132,3
+augustlost,25823132,4
+41825095,25823132,5
+ho000,25823132,5
+27253308,25823132,4
+97181253,25823132,4
+127448556,25823132,5
+43910063,25823132,4
+3213308,25823132,2
+131881210,25823132,5
+103735356,25823132,4
+58706786,25823132,-1
+136494814,25823132,1
+136519546,25823132,5
+62455186,25823132,4
+vest,25823132,5
+65664176,25823132,2
+x18304373131,25823132,4
+64101308,25823132,3
+128330149,25823132,5
+73749265,25823132,5
+62034201,25823132,5
+throughtherock,25823132,5
+danie7,25823132,4
+51911319,25823132,2
+126775069,25823132,5
+63462794,25823132,5
+69066592,25823132,3
+67275814,25823132,4
+67570635,25823132,3
+54757798,25823132,5
+131708713,25823132,4
+42987621,25823132,3
+71463470,25823132,4
+72719551,25823132,4
+3410857,25823132,4
+79452838,25823132,4
+53126915,25823132,3
+hichai,25823132,4
+don_C,25823132,3
+2311789,25823132,3
+53362350,25823132,3
+97279852,25823132,3
+72640748,25823132,-1
+90485552,25823132,4
+pal1,25823132,3
+81998298,25823132,3
+58783502,25823132,5
+37620368,25823132,4
+59043123,25823132,5
+58929848,25823132,4
+136351240,25823132,3
+97645479,25823132,3
+Jessica_Nangong,25823132,4
+yuelumm,25823132,5
+59291130,25823132,5
+51015476,25823132,4
+a83848400,25823132,3
+WN-ninja,25823132,4
+57756222,25823132,4
+2915862,25823132,3
+72086305,25823132,3
+2694391,25823132,4
+12650289,25823132,5
+4245980,25823132,5
+3548787,25823132,4
+copkop,25823132,5
+47603209,25823132,4
+i.m.yours,25823132,5
+60317466,25823132,5
+80183664,25823132,4
+119243560,25823132,4
+59563272,25823132,3
+parfum_qian,25823132,5
+48396212,25823132,2
+70930463,25823132,4
+58411499,25823132,4
+55828960,25823132,3
+2622237,25823132,5
+61985462,25823132,4
+3198993,25823132,2
+115827848,25823132,4
+81911390,25823132,5
+69314418,25823132,4
+130633898,25823132,3
+41833171,25823132,2
+4455168,25823132,3
+1411336,25823132,3
+63044059,25823132,3
+31679098,25823132,4
+toodles,25823132,3
+lyning,25823132,3
+73552244,25823132,4
+136112927,25823132,4
+44592602,25823132,-1
+16873537,25823132,3
+fayeyes,25823132,3
+83412988,25823132,4
+61323163,25823132,5
+2865307,25823132,4
+myhoneyzjy,25823132,4
+65468438,25823132,4
+4428736,25823132,4
+bearhao1976,25823132,3
+72257329,25823132,5
+52901753,25823132,5
+121055436,25823132,4
+yojoisgod,25823132,3
+80860113,25823132,3
+80860113,25823132,3
+56079454,25823132,4
+Quester,25823132,4
+57156729,25823132,4
+136184241,25823132,3
+sev7n777,25823132,4
+simisimigai,25823132,-1
+5439991,25823132,4
+waiwaixiaohei,25823132,3
+103039257,25823132,3
+65830621,25823132,3
+55430358,25823132,5
+frosteeeee,25823132,4
+Hanamizuki,25823132,3
+lilong4174,25823132,3
+yore.,25823132,5
+40572113,25823132,5
+124953430,25823132,5
+53868725,25823132,-1
+laomo,25823132,4
+simpledrunk,25823132,4
+54092051,25823132,4
+49854579,25823132,3
+jtt622,25823132,5
+116908080,25823132,3
+45892109,25823132,4
+136421859,25823132,4
+vampireelm,25823132,5
+82834599,25823132,4
+93151927,25823132,5
+46347058,25823132,5
+50826750,25823132,3
+76615274,25823132,3
+36621283,25823132,4
+35364683,25823132,5
+oak1890,25823132,4
+94966849,25823132,4
+76964275,25823132,5
+linziyang,25823132,5
+vaneren,25823132,4
+67368575,25823132,4
+51784561,25823132,4
+80826623,25823132,4
+masaikejun,25823132,3
+46306629,25823132,5
+126829630,25823132,4
+49411913,25823132,-1
+68020683,25823132,4
+65136878,25823132,3
+134574897,25823132,4
+3184101,25823132,4
+1280092,25823132,3
+62862861,25823132,4
+51385232,25823132,4
+zero_zaki,25823132,4
+37667663,25823132,4
+40494271,25823132,3
+micmoo,25823132,5
+snowlydouban,25823132,2
+darling99,25823132,4
+popgarden,25823132,4
+2679276,25823132,3
+kelvinshaw,25823132,3
+27969524,25823132,3
+52961960,25823132,4
+48711342,25823132,4
+63849510,25823132,3
+47810404,25823132,3
+jorson.kwok,25823132,4
+45339515,25823132,4
+45646209,25823132,5
+zuoshoudezuo,25823132,4
+81247992,25823132,-1
+2797211,25823132,3
+3768406,25823132,4
+1519946,25823132,4
+76852341,25823132,5
+ynlyp,25823132,5
+Magicians,25823132,3
+darkcolorstar,25823132,4
+lucifermi,25823132,4
+wangqihaha,25823132,4
+48159178,25823132,5
+57025348,25823132,2
+leiii,25823132,3
+48559757,25823132,5
+FuckUrMother,25823132,5
+bodd,25823132,5
+47796650,25823132,3
+67653468,25823132,3
+49416713,25823132,3
+56976495,25823132,5
+68203246,25823132,3
+sharrie,25823132,4
+1156375,25823132,3
+40687803,25823132,4
+crazygrave,25823132,4
+45324744,25823132,5
+83942238,25823132,4
+2582296,25823132,2
+55849765,25823132,3
+48037393,25823132,-1
+59397449,25823132,4
+lanyingxiang,25823132,4
+63397034,25823132,3
+46754344,25823132,4
+37019836,25823132,4
+zhengminlive,25823132,3
+4244381,25823132,4
+127803773,25823132,5
+121419838,25823132,4
+88324576,25823132,5
+128063349,25823132,3
+114422491,25823132,4
+35342792,25823132,4
+cabrite,25823132,3
+91140332,25823132,3
+42428473,25823132,5
+67644854,25823132,2
+ahoaki,25823132,5
+YangXueYFH,25823132,4
+50199295,25823132,5
+1693083,25823132,4
+3307476,25823132,4
+teasung,25823132,4
+waisel,25823132,4
+zeal_she,25823132,5
+benmutou,25823132,3
+62871612,25823132,4
+52878748,25823132,5
+59144379,25823132,4
+48119914,25823132,5
+71543587,25823132,3
+54984584,25823132,4
+yihengxi,25823132,4
+4024346,25823132,5
+3994132,25823132,3
+67638498,25823132,5
+135694361,25823132,4
+57278963,25823132,4
+rock_lin,25823132,5
+roseforu,25823132,4
+Jienishuilema,25823132,3
+60079529,25823132,4
+68418663,25823132,4
+nealwzn,25823132,3
+54926735,25823132,5
+73856461,25823132,4
+73734497,25823132,4
+2256093,25823132,3
+31713107,25823132,5
+4607006,25823132,2
+Yubk111111,25823132,3
+fayyuki,25823132,5
+83456365,25823132,4
+135179267,25823132,4
+51602608,25823132,2
+57405167,25823132,3
+48956654,25823132,3
+53248531,25823132,4
+34674400,25823132,4
+jane921111,25823132,4
+128263134,25823132,4
+yuxiaodi1988,25823132,4
+1947490,25823132,4
+67235309,25823132,4
+hejiaqiqi,25823132,4
+82320533,25823132,4
+16166133,25823132,4
+chenhuayang,25823132,4
+63266479,25823132,4
+2787344,25823132,5
+1831746,25823132,4
+44275428,25823132,5
+136312954,25823132,4
+newbear,25823132,3
+42803233,25823132,5
+136290817,25823132,4
+skysnow5201314,25823132,4
+Lreckle,25823132,3
+49550156,25823132,4
+81962971,25823132,4
+74848025,25823132,3
+halfyoyo,25823132,5
+55933493,25823132,4
+tshane,25823132,3
+48078859,25823132,4
+52334443,25823132,4
+4766893,25823132,4
+102572566,25823132,5
+xyiyi,25823132,4
+88127829,25823132,5
+43377923,25823132,4
+lingfriendly,25823132,4
+87558213,25823132,4
+44587302,25823132,5
+35506270,25823132,3
+67975507,25823132,4
+133557137,25823132,4
+35929918,25823132,4
+40558804,25823132,4
+yanmingsky,25823132,4
+130610060,25823132,5
+44436573,25823132,3
+125775996,25823132,4
+chuleiwu,25823132,4
+76630020,25823132,4
+103454751,25823132,4
+81403687,25823132,5
+59040075,25823132,4
+liancheng,25823132,5
+65915611,25823132,3
+1061597,25823132,3
+42653275,25823132,5
+jidecengjing,25823132,3
+4114969,25823132,3
+62536526,25823132,5
+101738421,25823132,3
+31818291,25823132,-1
+54384397,25823132,1
+xiaoxintu,25823132,3
+XTian0806,25823132,3
+103717477,25823132,5
+35076658,25823132,4
+57910322,25823132,4
+88927471,25823132,4
+2143062,25823132,4
+58830313,25823132,3
+62308831,25823132,3
+48743724,25823132,4
+1322481,25823132,3
+xx0301ll,25823132,4
+68835395,25823132,5
+13826202,25823132,3
+132347906,25823132,4
+shadow627,25823132,4
+103175114,25823132,3
+124093629,25823132,4
+ShoneSpeaking,25823132,5
+3254520,25823132,4
+cyberpenk,25823132,5
+64677693,25823132,5
+clc,25823132,5
+35776291,25823132,4
+35421582,25823132,3
+49326502,25823132,3
+jennyseath,25823132,3
+Makoto614,25823132,3
+4342517,25823132,4
+52046312,25823132,4
+53646130,25823132,4
+iammagic,25823132,4
+83147387,25823132,5
+4342827,25823132,2
+42832142,25823132,5
+53935985,25823132,4
+58466744,25823132,5
+Car1116,25823132,3
+65417028,25823132,4
+4462311,25823132,3
+99309307,25823132,5
+ProfThunder,25823132,4
+1426157,25823132,4
+51582662,25823132,3
+60201729,25823132,4
+85112204,25823132,5
+94715443,25823132,3
+65224437,25823132,5
+59202996,25823132,4
+67758880,25823132,5
+veraaa,25823132,4
+dyinggg,25823132,5
+2913325,25823132,4
+126878647,25823132,4
+3501606,25823132,4
+69049149,25823132,3
+63870030,25823132,4
+74775337,25823132,5
+62529217,25823132,5
+90562526,25823132,5
+62489919,25823132,4
+5772280,25823132,5
+4563516,25823132,5
+125040121,25823132,3
+52656841,25823132,3
+funz_7,25823132,4
+122711085,25823132,4
+51358310,25823132,5
+120790874,25823132,-1
+luluyunxiao,25823132,5
+73603686,25823132,3
+126217193,25823132,3
+62235932,25823132,3
+imoioi,25823132,4
+80724336,25823132,4
+3301661,25823132,3
+135145248,25823132,5
+hxhj,25823132,5
+74418627,25823132,3
+1743223,25823132,5
+kenheart_ccxuan,25823132,3
+128578300,25823132,4
+9775754,25823132,2
+44525790,25823132,4
+49626330,25823132,5
+52498795,25823132,4
+57288421,25823132,5
+136216464,25823132,3
+58035376,25823132,-1
+vincent2010,25823132,2
+67985857,25823132,4
+47295944,25823132,3
+2209447,25823132,2
+129051527,25823132,3
+sevenbeans,25823132,4
+josephliu37,25823132,4
+2364299,25823132,4
+37226632,25823132,5
+48135842,25823132,4
+yutingamy,25823132,3
+kevin5,25823132,3
+floragrx,25823132,5
+tongziyam,25823132,5
+81628764,25823132,4
+48591429,25823132,4
+1492653,25823132,5
+50888167,25823132,5
+1525882,25823132,4
+3440203,25823132,4
+love_forever,25823132,5
+44441839,25823132,5
+61816824,25823132,3
+enjoyfreedom,25823132,4
+120828757,25823132,4
+63014642,25823132,4
+huapiqiu,25823132,5
+134563962,25823132,5
+125760534,25823132,5
+IamV,25823132,4
+64345409,25823132,4
+69513707,25823132,4
+127299151,25823132,2
+gh13singer,25823132,3
+tongflower,25823132,5
+sonyean,25823132,5
+47757400,25823132,3
+56035155,25823132,3
+129158063,25823132,5
+1845398,25823132,3
+50644195,25823132,5
+44134802,25823132,4
+catamy2,25823132,5
+81468340,25823132,5
+49767479,25823132,4
+133794602,25823132,4
+littleshy,25823132,3
+42028639,25823132,4
+42658773,25823132,4
+124717846,25823132,4
+57398318,25823132,3
+136100094,25823132,4
+iqueen9,25823132,2
+Sqiku,25823132,3
+ccpizzadaisuki,25823132,3
+tenspace,25823132,3
+78170465,25823132,5
+65306635,25823132,5
+55519511,25823132,5
+66361908,25823132,2
+50112537,25823132,5
+2520901,25823132,5
+72340572,25823132,5
+78806633,25823132,3
+71400865,25823132,4
+Ray_W,25823132,4
+72781855,25823132,3
+58901835,25823132,3
+63090822,25823132,4
+51772148,25823132,4
+pengyaos,25823132,4
+103214078,25823132,3
+49698871,25823132,5
+51675110,25823132,5
+hi_blue,25823132,4
+56524561,25823132,4
+90638184,25823132,4
+1159857,25823132,5
+rebecca-luxueya,25823132,5
+4297674,25823132,4
+50541233,25823132,3
+23159155,25823132,4
+haidonsun,25823132,2
+princess921129,25823132,5
+59038247,25823132,2
+deathlegend,25823132,5
+4116226,25823132,3
+enralphle,25823132,5
+62927689,25823132,4
+38971714,25823132,5
+50376148,25823132,2
+65242715,25823132,5
+49191008,25823132,4
+42458136,25823132,5
+3431557,25823132,3
+xiaobai_zw,25823132,3
+sukixiaojie,25823132,5
+82096379,25823132,3
+124694550,25823132,2
+53682563,25823132,4
+131665257,25823132,3
+55447460,25823132,3
+2849700,25823132,3
+4520667,25823132,4
+96410540,25823132,5
+49731648,25823132,4
+122879836,25823132,3
+94353228,25823132,5
+50144933,25823132,3
+Georgewen,25823132,4
+31622009,25823132,4
+58913556,25823132,4
+zhaoyu1222,25823132,4
+sharon.jin,25823132,5
+90547930,25823132,3
+1189560,25823132,4
+129652201,25823132,2
+129988582,25823132,5
+qinchongayo,25823132,5
+59629692,25823132,3
+gongyansong,25823132,4
+lubinfan,25823132,4
+fkimi,25823132,3
+54553103,25823132,5
+yangziqiang,25823132,4
+42646716,25823132,4
+cs314765478,25823132,4
+daonian_1990,25823132,5
+60421761,25823132,4
+ssdomoto,25823132,4
+87818830,25823132,5
+benbenmuxi,25823132,2
+djinn77,25823132,4
+91479707,25823132,4
+49921904,25823132,4
+1482191,25823132,4
+134758585,25823132,-1
+kidify,25823132,4
+62776173,25823132,5
+52586242,25823132,5
+54083120,25823132,5
+53708555,25823132,5
+108111137,25823132,3
+76335653,25823132,4
+136150603,25823132,5
+58094874,25823132,4
+49750852,25823132,3
+50154536,25823132,4
+62712229,25823132,4
+48069693,25823132,4
+jinyunzi,25823132,3
+jinyunzi,25823132,3
+75952866,25823132,4
+chenruan,25823132,4
+50250057,25823132,3
+1461112,25823132,3
+58739294,25823132,3
+99942273,25823132,3
+63454014,25823132,3
+93195803,25823132,3
+72642943,25823132,3
+kp81ndlf,25823132,4
+70892372,25823132,4
+4259768,25823132,5
+masaike,25823132,3
+46712687,25823132,3
+FM7086,25823132,5
+102905031,25823132,5
+2249428,25823132,3
+54817318,25823132,4
+luojia214,25823132,4
+62842608,25823132,4
+fandarin,25823132,4
+66798155,25823132,4
+46735351,25823132,5
+55405486,25823132,5
+killeren,25823132,3
+quyang19930607,25823132,5
+sosoJean,25823132,5
+60372009,25823132,4
+44208606,25823132,5
+robinlb,25823132,3
+moverh,25823132,4
+liux5520,25823132,4
+sannqi,25823132,4
+SILENT7,25823132,4
+tyyaxuan,25823132,5
+131557392,25823132,5
+113171403,25823132,4
+eva01,25823132,5
+AAAHHHAAA,25823132,4
+106928682,25823132,4
+longnel,25823132,4
+64035077,25823132,5
+liqiyao8931,25823132,1
+xiaoxinjessica,25823132,5
+FinalFantasy,25823132,4
+127375314,25823132,5
+1552160,25823132,3
+darktravelor,25823132,4
+40081722,25823132,5
+sungminlee,25823132,5
+38072263,25823132,4
+90551682,25823132,5
+91143167,25823132,-1
+61935443,25823132,4
+4706549,25823132,-1
+122161339,25823132,1
+132859823,25823132,3
+longsuiyun,25823132,4
+2355408,25823132,4
+idoris,25823132,3
+70453072,25823132,3
+80319931,25823132,4
+102164266,25823132,4
+62351550,25823132,4
+1493686,25823132,4
+57142558,25823132,3
+77676888,25823132,5
+59524621,25823132,3
+136091730,25823132,4
+49529143,25823132,3
+133542871,25823132,4
+83739647,25823132,5
+64110948,25823132,3
+67852175,25823132,4
+50054232,25823132,4
+68835916,25823132,5
+michelleliu31,25823132,4
+fxx1498420,25823132,5
+49467804,25823132,5
+4380901,25823132,4
+45308089,25823132,4
+16959294,25823132,3
+poros,25823132,4
+44610838,25823132,3
+64884887,25823132,4
+sunnyhk,25823132,2
+sslclz,25823132,4
+83659881,25823132,3
+4107737,25823132,-1
+China.He,25823132,4
+maonv,25823132,4
+93375016,25823132,4
+49367100,25823132,3
+artlin,25823132,4
+63989347,25823132,5
+95817419,25823132,3
+zuoxiaoan45,25823132,4
+loveleo,25823132,4
+66578884,25823132,4
+116035367,25823132,3
+laceless,25823132,3
+28398689,25823132,2
+wuyanghuxi,25823132,4
+a-Joel,25823132,4
+1437339,25823132,4
+xuehaotian,25823132,4
+2695259,25823132,3
+124697172,25823132,4
+56908941,25823132,4
+Xia0_K,25823132,5
+64926044,25823132,3
+64801860,25823132,4
+3947110,25823132,4
+88393319,25823132,4
+moonbird39,25823132,4
+44186565,25823132,3
+54873886,25823132,4
+120619243,25823132,4
+38980912,25823132,4
+51067589,25823132,3
+54704732,25823132,4
+veverlee,25823132,3
+43830625,25823132,4
+47257885,25823132,4
+moyia,25823132,4
+tianzaifeibaba,25823132,4
+114333216,25823132,5
+1437680,25823132,4
+58079231,25823132,1
+134593324,25823132,3
+sanhao_love,25823132,4
+51183805,25823132,4
+LoveRaul77,25823132,4
+103362730,25823132,3
+vva_,25823132,4
+hello.7ime,25823132,4
+80748751,25823132,5
+55405960,25823132,4
+xiaopang1106,25823132,4
+121557291,25823132,4
+nizhenhua1981,25823132,4
+gjx189,25823132,4
+74797419,25823132,-1
+57217580,25823132,4
+45848079,25823132,4
+62318523,25823132,4
+3895814,25823132,4
+81804473,25823132,3
+127569899,25823132,3
+135761559,25823132,5
+idida,25823132,3
+54721365,25823132,4
+akalion,25823132,5
+wangholic,25823132,3
+jiuchen21,25823132,3
+48092800,25823132,5
+41109416,25823132,3
+80161356,25823132,3
+doubandengjian,25823132,4
+wxhsolo,25823132,4
+44125552,25823132,5
+woshigejilao,25823132,5
+brallow,25823132,4
+56739185,25823132,4
+graciesy,25823132,4
+jiang66,25823132,5
+21606016,25823132,4
+125849315,25823132,-1
+Regina2007,25823132,4
+63281322,25823132,4
+49340190,25823132,3
+mountainriver,25823132,3
+81003990,25823132,4
+83925397,25823132,4
+cicizhaowei,25823132,4
+kitor,25823132,4
+56922790,25823132,4
+jpdong,25823132,5
+dzone,25823132,3
+hniyxx,25823132,4
+3282401,25823132,3
+50587615,25823132,5
+131485100,25823132,-1
+42724768,25823132,2
+sudouya,25823132,-1
+83876707,25823132,4
+48509446,25823132,4
+48907529,25823132,3
+54842656,25823132,2
+JudahXIII,25823132,3
+Jerusalem,25823132,5
+67370965,25823132,5
+inb612,25823132,4
+fenglai,25823132,3
+48164798,25823132,3
+1848756,25823132,5
+75118667,25823132,4
+79305249,25823132,5
+diedie218,25823132,5
+vivifyvivi,25823132,3
+42678241,25823132,5
+3495234,25823132,1
+53374667,25823132,4
+benben76,25823132,5
+rokkumu,25823132,3
+57463070,25823132,2
+12198403,25823132,3
+45697233,25823132,5
+51224776,25823132,3
+53734415,25823132,3
+60994756,25823132,5
+QQY,25823132,4
+wunie,25823132,3
+1805745,25823132,2
+68776201,25823132,3
+netsurfe,25823132,4
+sunviro,25823132,4
+62608491,25823132,4
+1665848,25823132,2
+jasonscat,25823132,4
+109433835,25823132,5
+66904097,25823132,5
+mereth,25823132,-1
+joybang,25823132,4
+121682845,25823132,4
+monetsun,25823132,5
+jiatianhui,25823132,5
+64631694,25823132,3
+Dcynic,25823132,4
+hakuhaku,25823132,4
+46177546,25823132,4
+2449818,25823132,4
+35224666,25823132,3
+liuhuanluoyang,25823132,5
+47260881,25823132,4
+76798161,25823132,4
+20213088,25823132,3
+1965120,25823132,4
+2437974,25823132,3
+seventhworkshop,25823132,5
+43303626,25823132,3
+1943946,25823132,4
+62721036,25823132,4
+2178406,25823132,4
+61739872,25823132,4
+btone0808,25823132,2
+Rainman2015,25823132,3
+x-inter,25823132,3
+lilithyi,25823132,3
+46193203,25823132,4
+1767400,25823132,4
+46603705,25823132,4
+wangzhy,25823132,3
+lianmaomi,25823132,4
+59738934,25823132,4
+44485632,25823132,4
+andreamomozby,25823132,5
+90847508,25823132,4
+62288453,25823132,5
+62288453,25823132,5
+53738178,25823132,4
+125384763,25823132,5
+48852517,25823132,5
+55438034,25823132,5
+sanjingshu,25823132,5
+83495567,25823132,4
+97977278,25823132,4
+zwj514235,25823132,3
+47633821,25823132,5
+44048302,25823132,3
+46394662,25823132,3
+42712093,25823132,4
+35904729,25823132,4
+134537950,25823132,4
+VampirX,25823132,4
+58801998,25823132,4
+renmeng,25823132,4
+55796583,25823132,4
+solavre,25823132,-1
+81351219,25823132,3
+37390884,25823132,2
+131019210,25823132,4
+1514019,25823132,3
+59083968,25823132,4
+135802167,25823132,4
+78601907,25823132,3
+73784914,25823132,2
+dobima,25823132,3
+wanwan______,25823132,1
+51500342,25823132,4
+49417223,25823132,4
+CWQ1030,25823132,3
+27498320,25823132,4
+88078787,25823132,4
+1265169,25823132,2
+ddforever233,25823132,3
+muzifuyou,25823132,4
+108481476,25823132,4
+46899693,25823132,3
+59220835,25823132,2
+kkbear,25823132,4
+81628425,25823132,3
+37318998,25823132,4
+3815475,25823132,4
+91688422,25823132,-1
+120510985,25823132,2
+59805999,25823132,5
+3394942,25823132,5
+48290769,25823132,4
+29623344,25823132,3
+yingluncheng,25823132,3
+4731274,25823132,5
+59672994,25823132,4
+2483074,25823132,3
+91546287,25823132,3
+71625816,25823132,5
+47570599,25823132,3
+59129484,25823132,5
+42663693,25823132,4
+53617228,25823132,3
+54228014,25823132,3
+67953662,25823132,2
+84708478,25823132,1
+wangxiaonizi,25823132,5
+71985811,25823132,4
+60732201,25823132,3
+BlackRainbow,25823132,4
+60701551,25823132,4
+33538904,25823132,5
+62304049,25823132,4
+virginieds,25823132,4
+82317907,25823132,3
+50073903,25823132,5
+48216088,25823132,4
+theresa13,25823132,5
+52048045,25823132,5
+guoooo,25823132,4
+65108877,25823132,4
+pdleo,25823132,5
+126283294,25823132,3
+60435322,25823132,4
+83210440,25823132,4
+55807035,25823132,3
+gzzzzzz,25823132,4
+113864020,25823132,4
+yinxingongzi,25823132,4
+120092571,25823132,4
+52550764,25823132,5
+128115257,25823132,5
+135970181,25823132,5
+132683835,25823132,4
+70569834,25823132,4
+130960542,25823132,4
+53322141,25823132,4
+73366579,25823132,3
+2362361,25823132,3
+104706942,25823132,5
+kbs---ak,25823132,3
+135077478,25823132,4
+135077478,25823132,4
+68132922,25823132,4
+4856520,25823132,5
+38975117,25823132,3
+3809778,25823132,4
+133011616,25823132,4
+106497872,25823132,3
+Yunsta,25823132,4
+layne33,25823132,2
+135211181,25823132,4
+62703414,25823132,4
+sofans,25823132,4
+76851962,25823132,4
+69673873,25823132,4
+84252695,25823132,5
+ft5239328,25823132,5
+deadcolour,25823132,5
+cloudy20011128,25823132,3
+KarlSchneider,25823132,3
+angelmagic,25823132,4
+44973722,25823132,5
+3890631,25823132,4
+4295298,25823132,4
+iyuge,25823132,4
+ETSUKO.Z,25823132,5
+microogle,25823132,4
+antee,25823132,3
+107408120,25823132,-1
+64797594,25823132,4
+3171388,25823132,3
+51981466,25823132,3
+88522948,25823132,3
+135799063,25823132,4
+helloivan,25823132,3
+99202413,25823132,3
+29613426,25823132,4
+39898726,25823132,5
+53467813,25823132,5
+Exaiy,25823132,4
+52840916,25823132,3
+67843385,25823132,3
+81149989,25823132,5
+103247038,25823132,3
+49997537,25823132,4
+xingyinfa,25823132,5
+67561107,25823132,4
+muniuxiaoquan,25823132,5
+60182684,25823132,5
+2921812,25823132,4
+43628275,25823132,5
+elenayanyu,25823132,5
+ououing,25823132,5
+faiel,25823132,4
+41083928,25823132,4
+70011209,25823132,5
+me2shy,25823132,4
+60377456,25823132,2
+58774315,25823132,5
+ramsestwo,25823132,4
+82229229,25823132,4
+thecrespo,25823132,4
+rockred,25823132,4
+50568364,25823132,4
+55964278,25823132,4
+75400416,25823132,3
+33753832,25823132,4
+52244457,25823132,5
+108153765,25823132,1
+61169740,25823132,4
+adamwangs,25823132,2
+67777087,25823132,4
+1066031,25823132,3
+54116882,25823132,3
+samsyu,25823132,3
+121057597,25823132,5
+120008046,25823132,3
+115714696,25823132,5
+20886546,25823132,4
+59572879,25823132,4
+68219887,25823132,4
+120948560,25823132,4
+sentexiaohu,25823132,3
+61088148,25823132,4
+53485894,25823132,4
+122340180,25823132,4
+weiwei1020,25823132,4
+lucydeer,25823132,4
+Azexi,25823132,-1
+33819207,25823132,3
+102902179,25823132,5
+kong_bai_ge,25823132,5
+babyfishjj,25823132,4
+50469035,25823132,4
+57581825,25823132,4
+xianyunfei,25823132,5
+79379701,25823132,4
+33509749,25823132,4
+49921497,25823132,4
+47241007,25823132,3
+58066035,25823132,4
+65948183,25823132,4
+70013242,25823132,5
+4382802,25823132,5
+56684398,25823132,3
+64249051,25823132,2
+58859992,25823132,3
+2106137,25823132,4
+87387635,25823132,4
+huotian,25823132,3
+snowman-clover,25823132,5
+wa1974vv1130,25823132,4
+41517741,25823132,4
+fangxiaotang,25823132,5
+69008426,25823132,3
+61309406,25823132,5
+133264793,25823132,4
+Simplelove_,25823132,4
+kiffiz,25823132,5
+heydzi,25823132,3
+115560708,25823132,4
+65133684,25823132,3
+72041646,25823132,4
+45610248,25823132,3
+xuman,25823132,4
+124249667,25823132,5
+1384884,25823132,3
+56491270,25823132,5
+ADmoviemtime,25823132,4
+midautumnsong,25823132,3
+fanyichao,25823132,4
+katerzo,25823132,4
+yili993,25823132,4
+heibaituzi,25823132,5
+92522884,25823132,4
+47471768,25823132,3
+rainbowhongye,25823132,4
+2053084,25823132,4
+yyy1240,25823132,5
+33245540,25823132,4
+1068182,25823132,-1
+17355189,25823132,5
+babbye,25823132,4
+colorwind,25823132,3
+98273529,25823132,4
+45944885,25823132,3
+papadaixiong,25823132,4
+47618855,25823132,-1
+Hxy1996221,25823132,4
+45518170,25823132,5
+19734042,25823132,3
+67004906,25823132,5
+silent_island,25823132,4
+39520405,25823132,5
+64467057,25823132,3
+59849279,25823132,4
+3530134,25823132,4
+4341731,25823132,3
+huyouyou,25823132,4
+93861419,25823132,5
+juwujian,25823132,3
+36962430,25823132,4
+L_LAWLIET,25823132,-1
+LUCKYLYB,25823132,5
+71561935,25823132,3
+70308764,25823132,5
+47325319,25823132,3
+blacktea077,25823132,4
+Arielcong,25823132,4
+57938004,25823132,4
+45238478,25823132,3
+kalinin,25823132,5
+10040083,25823132,-1
+60914731,25823132,4
+34953545,25823132,3
+16060423,25823132,3
+123373729,25823132,5
+51723266,25823132,-1
+4146586,25823132,2
+liljoker,25823132,3
+64755839,25823132,3
+62709413,25823132,5
+53443769,25823132,5
+57375454,25823132,5
+checy,25823132,5
+67916936,25823132,4
+metkee,25823132,3
+tuirt,25823132,4
+2187326,25823132,3
+102938445,25823132,5
+114172344,25823132,4
+68213997,25823132,3
+4896156,25823132,4
+miqiao,25823132,5
+92975823,25823132,3
+78066054,25823132,4
+69768465,25823132,4
+sugarkid,25823132,5
+120505140,25823132,4
+Lqm107,25823132,5
+49108399,25823132,4
+43153098,25823132,4
+vvvkellyvvv,25823132,5
+123229585,25823132,4
+yfqc24pippo,25823132,3
+39363264,25823132,5
+63275945,25823132,4
+131364833,25823132,3
+104559183,25823132,4
+34011648,25823132,4
+1593742,25823132,3
+46338692,25823132,4
+3592617,25823132,4
+54008688,25823132,3
+3632651,25823132,4
+58079597,25823132,4
+67352190,25823132,5
+58139142,25823132,5
+1885351,25823132,4
+64056125,25823132,3
+jfshy,25823132,5
+78724440,25823132,3
+sooora,25823132,5
+43556775,25823132,4
+66979855,25823132,4
+48441373,25823132,4
+2187951,25823132,3
+62880392,25823132,3
+sunyugo,25823132,3
+2663035,25823132,4
+46939628,25823132,4
+34727533,25823132,4
+41651079,25823132,4
+50094689,25823132,4
+71946766,25823132,4
+59522375,25823132,3
+2656956,25823132,5
+41437311,25823132,3
+2923091,25823132,4
+57065086,25823132,4
+3874094,25823132,4
+43144589,25823132,3
+xiaoxinadd,25823132,5
+ccguodong,25823132,4
+2438025,25823132,4
+changchangxian,25823132,5
+10851412,25823132,5
+bixia,25823132,4
+70055114,25823132,3
+muyu125,25823132,4
+27713698,25823132,5
+Kevin3,25823132,2
+boonup,25823132,3
+122603381,25823132,4
+53644977,25823132,3
+56871206,25823132,3
+60536729,25823132,5
+45390521,25823132,4
+2376365,25823132,-1
+42866518,25823132,4
+aivnce,25823132,4
+2186089,25823132,4
+51513944,25823132,4
+92908596,25823132,5
+113437204,25823132,5
+yiliaobailiao,25823132,4
+banyinxie,25823132,3
+91498001,25823132,4
+54488759,25823132,4
+48143172,25823132,4
+ursyoyo,25823132,4
+81752466,25823132,4
+2596903,25823132,4
+54838318,25823132,3
+52518211,25823132,4
+84866154,25823132,5
+135067568,25823132,3
+sylar_chan,25823132,3
+51443474,25823132,4
+69345358,25823132,3
+24943431,25823132,5
+34070573,25823132,4
+60248767,25823132,5
+35407270,25823132,3
+25982397,25823132,5
+57795857,25823132,4
+43256131,25823132,4
+126500017,25823132,3
+elcm,25823132,5
+54783483,25823132,3
+62632229,25823132,4
+88452602,25823132,4
+55867399,25823132,4
+65724655,25823132,-1
+47182696,25823132,5
+91567656,25823132,4
+75330539,25823132,4
+30494481,25823132,3
+52074740,25823132,3
+45509766,25823132,4
+2284784,25823132,3
+127563675,25823132,4
+131044103,25823132,5
+56177384,25823132,4
+yhn33,25823132,5
+126621481,25823132,4
+30899866,25823132,4
+cabbage_chou,25823132,3
+49808652,25823132,4
+27675083,25823132,4
+43966741,25823132,4
+38252612,25823132,3
+50700305,25823132,-1
+77830555,25823132,4
+59782027,25823132,4
+3512598,25823132,5
+motou0328,25823132,3
+65825466,25823132,5
+4270273,25823132,4
+1110575,25823132,3
+2498717,25823132,4
+59027708,25823132,4
+44105688,25823132,3
+wugouzhejuntuan,25823132,5
+64881542,25823132,3
+hnnyzxh,25823132,4
+96490824,25823132,4
+97386152,25823132,4
+sam_smile,25823132,4
+tom926,25823132,3
+60421809,25823132,4
+hingyyq,25823132,3
+68597292,25823132,5
+120978925,25823132,3
+renshaoqun,25823132,5
+127649705,25823132,4
+50663434,25823132,3
+56128182,25823132,4
+45074872,25823132,5
+gunsky,25823132,3
+kulapika,25823132,4
+kulapika,25823132,4
+49888583,25823132,5
+59228956,25823132,2
+133465535,25823132,3
+130384856,25823132,4
+hljmsfy,25823132,3
+zhengkangkang,25823132,3
+72657219,25823132,4
+xml1112,25823132,4
+130024032,25823132,3
+2458174,25823132,4
+134414658,25823132,4
+57367354,25823132,4
+40924538,25823132,3
+amber-tear,25823132,4
+87308057,25823132,4
+134525513,25823132,3
+50330876,25823132,4
+smumy,25823132,4
+ivygreen06,25823132,4
+ivygreen06,25823132,4
+59901599,25823132,5
+55977360,25823132,4
+50499996,25823132,4
+edgeyeung,25823132,3
+illiteracy,25823132,2
+40067511,25823132,3
+52009323,25823132,5
+81923930,25823132,4
+51482803,25823132,-1
+51898920,25823132,2
+41680643,25823132,4
+48644057,25823132,4
+46722209,25823132,4
+61069242,25823132,4
+3564648,25823132,5
+DGF_Olivia,25823132,5
+54334174,25823132,5
+38514261,25823132,4
+76244481,25823132,3
+76244481,25823132,3
+3640801,25823132,5
+bons,25823132,4
+71966924,25823132,4
+81278452,25823132,3
+49929215,25823132,5
+126895739,25823132,3
+builove,25823132,3
+1671301,25823132,5
+37001447,25823132,5
+zhanghanha,25823132,3
+37809200,25823132,4
+65832475,25823132,4
+zuobei30,25823132,4
+zxt1219,25823132,5
+51606142,25823132,3
+50433074,25823132,5
+49116416,25823132,4
+3109810,25823132,5
+ys1013,25823132,2
+ys1013,25823132,2
+malijun,25823132,4
+yiqingzhang,25823132,2
+77092352,25823132,3
+63923908,25823132,1
+126949865,25823132,5
+69856173,25823132,3
+xyc1987,25823132,5
+guojianchao,25823132,3
+luhua,25823132,2
+92154450,25823132,5
+hejingyi0803,25823132,5
+mouq,25823132,4
+1927696,25823132,5
+38206972,25823132,4
+40337501,25823132,4
+psycheeee,25823132,4
+swedishwolf,25823132,5
+shadowshame,25823132,4
+34848237,25823132,5
+29326394,25823132,5
+135610617,25823132,5
+59290556,25823132,4
+55678526,25823132,5
+dongxie1994,25823132,5
+81445026,25823132,4
+68244610,25823132,4
+57950573,25823132,3
+Dr.StrangeLove,25823132,4
+fenshoudashi,25823132,3
+2579882,25823132,3
+michael66,25823132,4
+43953033,25823132,5
+101792652,25823132,5
+27432217,25823132,4
+57589094,25823132,4
+Tahir_tian,25823132,2
+63171651,25823132,5
+lauer,25823132,3
+4531781,25823132,3
+132217575,25823132,4
+moredarkwhite,25823132,3
+63075072,25823132,5
+91985440,25823132,5
+81171116,25823132,5
+yesterday0812,25823132,4
+93500334,25823132,4
+spaceli,25823132,4
+freak-zoe,25823132,4
+44499287,25823132,3
+98622958,25823132,-1
+GMDY,25823132,4
+Lost_Atlantis,25823132,5
+58603812,25823132,4
+120443847,25823132,4
+1631968,25823132,3
+kongxinzei,25823132,5
+zoechou128,25823132,4
+lazymule,25823132,4
+longxsen,25823132,4
+52214552,25823132,4
+14149496,25823132,5
+49587231,25823132,3
+47845902,25823132,3
+61999151,25823132,4
+bobdu,25823132,4
+120327562,25823132,3
+yanqingchen,25823132,4
+54041008,25823132,-1
+AkaSedative,25823132,5
+51653649,25823132,5
+lfyaya,25823132,3
+74943239,25823132,4
+48955317,25823132,3
+56856472,25823132,5
+49145683,25823132,4
+42243165,25823132,4
+foleyfan,25823132,5
+4597338,25823132,3
+lipengfeng2007,25823132,2
+55457012,25823132,5
+XuanguaiART,25823132,4
+bardfox,25823132,4
+49261340,25823132,5
+51863917,25823132,4
+3306133,25823132,3
+venhow,25823132,5
+50372208,25823132,3
+fanxiaodong,25823132,3
+44848574,25823132,5
+lb-fighting,25823132,5
+beckhong,25823132,4
+fqlv5,25823132,4
+68846996,25823132,5
+133083146,25823132,3
+127024293,25823132,4
+42006560,25823132,3
+133470445,25823132,5
+66440574,25823132,4
+Raymond.PF,25823132,3
+49319979,25823132,3
+38826920,25823132,4
+88140661,25823132,4
+68559686,25823132,4
+87909103,25823132,4
+44373773,25823132,5
+1793084,25823132,3
+28643180,25823132,5
+43602749,25823132,-1
+79381189,25823132,4
+15587710,25823132,5
+134284057,25823132,4
+50570726,25823132,4
+54540638,25823132,5
+91480587,25823132,5
+66112477,25823132,3
+angelhyacinth,25823132,5
+28693684,25823132,5
+yuranyi,25823132,3
+44226147,25823132,3
+77369349,25823132,4
+xihahaha,25823132,3
+4285342,25823132,3
+Jodiezhang,25823132,4
+wusiyi,25823132,3
+82722362,25823132,3
+2174443,25823132,4
+41922022,25823132,4
+sujijiu,25823132,4
+73075482,25823132,4
+hansondon,25823132,5
+qiqihhappy,25823132,5
+125111991,25823132,4
+VZ---LZW,25823132,4
+53710950,25823132,4
+59217273,25823132,4
+48950150,25823132,5
+powerfultony,25823132,4
+58460764,25823132,4
+everisle,25823132,3
+85472462,25823132,4
+shgy,25823132,3
+122336700,25823132,3
+70855502,25823132,-1
+58197963,25823132,5
+42174355,25823132,5
+133995843,25823132,5
+85356798,25823132,5
+38428830,25823132,4
+71330808,25823132,4
+132560934,25823132,3
+superrain,25823132,4
+16792916,25823132,4
+1844596,25823132,4
+14363390,25823132,4
+66745395,25823132,5
+3471791,25823132,5
+hutianyi,25823132,4
+M.iya,25823132,3
+72362309,25823132,3
+xiluodedouban,25823132,4
+4129696,25823132,4
+fengqingyuexia,25823132,3
+4100649,25823132,4
+132261128,25823132,3
+cccpusahonor,25823132,5
+34601221,25823132,3
+121289283,25823132,4
+69991974,25823132,4
+stefon,25823132,5
+51126355,25823132,5
+34484262,25823132,4
+57569538,25823132,3
+xellgio,25823132,3
+junqli86,25823132,3
+1958420,25823132,-1
+82065950,25823132,4
+62743858,25823132,4
+56225727,25823132,5
+81222828,25823132,5
+54340462,25823132,5
+71833696,25823132,4
+58285537,25823132,5
+60767824,25823132,5
+74073932,25823132,3
+62677139,25823132,4
+48751444,25823132,3
+101889689,25823132,3
+123073450,25823132,5
+86003490,25823132,5
+anniehoneys,25823132,4
+103550111,25823132,4
+55617091,25823132,3
+71502534,25823132,4
+1205451,25823132,4
+40870953,25823132,3
+96290717,25823132,5
+102603343,25823132,5
+72781778,25823132,5
+99473768,25823132,4
+zooyam,25823132,4
+124467661,25823132,4
+52221602,25823132,3
+51309872,25823132,3
+4614026,25823132,4
+yanmoaizc,25823132,5
+badaalle,25823132,3
+128265644,25823132,3
+62503467,25823132,3
+74015810,25823132,4
+49654924,25823132,4
+72012626,25823132,4
+lucilleduan,25823132,5
+jiong7,25823132,4
+79516932,25823132,4
+37462874,25823132,5
+saintkaka,25823132,3
+dhtcwd,25823132,4
+48095943,25823132,3
+133564346,25823132,4
+charlene-q,25823132,5
+luhang363,25823132,4
+51736421,25823132,4
+3479695,25823132,4
+3971708,25823132,4
+121540770,25823132,4
+tree-MJ,25823132,4
+sangdafa,25823132,5
+78680128,25823132,4
+9274036,25823132,4
+45241922,25823132,4
+78216114,25823132,5
+87536796,25823132,5
+1979010,25823132,3
+6243740,25823132,4
+1326010,25823132,3
+jasmine0821,25823132,4
+27036800,25823132,5
+114854164,25823132,5
+hana0707,25823132,4
+2672889,25823132,4
+76026872,25823132,3
+oksklok,25823132,3
+64302220,25823132,5
+63257431,25823132,5
+4192759,25823132,3
+48801010,25823132,3
+69300648,25823132,5
+77531616,25823132,-1
+allblue,25823132,4
+65981408,25823132,4
+50353681,25823132,3
+4478995,25823132,3
+69499815,25823132,4
+127728111,25823132,4
+xilouchen,25823132,3
+134171030,25823132,4
+59561773,25823132,4
+4348683,25823132,4
+3575164,25823132,1
+xiiiiiiian,25823132,5
+caocaoa,25823132,3
+128615153,25823132,4
+99067701,25823132,4
+49069432,25823132,4
+summer9186,25823132,4
+cangbaicanku,25823132,4
+53584866,25823132,2
+48660501,25823132,3
+shingle,25823132,4
+2265138,25823132,5
+wyjfl,25823132,3
+131616351,25823132,5
+yangui,25823132,4
+55850316,25823132,4
+129387167,25823132,4
+60038262,25823132,4
+mufengqin,25823132,4
+mianni,25823132,3
+41634233,25823132,5
+68270832,25823132,4
+serab1tch720,25823132,-1
+outsider-hk,25823132,5
+4008035,25823132,5
+127734680,25823132,1
+64476746,25823132,5
+31102423,25823132,3
+35780501,25823132,4
+65663691,25823132,4
+77288161,25823132,4
+longyueye,25823132,5
+20194870,25823132,4
+56318477,25823132,4
+51312252,25823132,3
+3500331,25823132,4
+37162990,25823132,4
+49338971,25823132,4
+kezhoulife,25823132,4
+73942722,25823132,5
+78885050,25823132,5
+51104226,25823132,4
+11012424,25823132,3
+93606686,25823132,4
+63559969,25823132,3
+resurgam92dawn,25823132,5
+48885741,25823132,3
+67957141,25823132,5
+90736306,25823132,4
+2224281,25823132,5
+67330713,25823132,3
+zhangjian_1q26,25823132,3
+Alice.Z,25823132,4
+115660168,25823132,3
+37168028,25823132,4
+58768499,25823132,5
+35095860,25823132,3
+kiki204629,25823132,4
+45641492,25823132,3
+1369113,25823132,4
+57949283,25823132,4
+2202819,25823132,3
+mountaindew,25823132,5
+67723584,25823132,5
+74486548,25823132,3
+44849027,25823132,5
+doexist,25823132,3
+85296243,25823132,4
+kiryoYNG,25823132,4
+115593440,25823132,4
+46970893,25823132,4
+Ciangie,25823132,3
+55488423,25823132,4
+1297044,25823132,3
+88272921,25823132,4
+56981196,25823132,5
+64886603,25823132,5
+123331677,25823132,4
+liqiru1110,25823132,5
+61606236,25823132,3
+rolemodel,25823132,3
+yuantown,25823132,3
+65907866,25823132,3
+45464563,25823132,-1
+leonardzhu,25823132,3
+66698052,25823132,4
+133471355,25823132,4
+54034056,25823132,3
+luoyanbella,25823132,5
+mlcf,25823132,5
+57702848,25823132,5
+47808773,25823132,3
+palomine,25823132,4
+67888545,25823132,3
+69178821,25823132,4
+airborneliao,25823132,4
+39146215,25823132,5
+29725427,25823132,4
+shanehsiang,25823132,5
+3668071,25823132,3
+2452358,25823132,4
+2452358,25823132,4
+1378503,25823132,4
+74145154,25823132,5
+couple1314,25823132,4
+4294774,25823132,5
+eternalsummer87,25823132,4
+55500335,25823132,5
+zhl19741130520,25823132,5
+18045809,25823132,3
+36372446,25823132,5
+52335309,25823132,3
+fafnir5251,25823132,4
+3606264,25823132,3
+48763298,25823132,3
+njtintin,25823132,4
+Lisa.L,25823132,3
+61292565,25823132,4
+55836962,25823132,5
+whateverrr,25823132,3
+supersleeper,25823132,3
+supersleeper,25823132,3
+66057217,25823132,4
+37424688,25823132,3
+37552777,25823132,3
+59757838,25823132,4
+53655128,25823132,5
+64128291,25823132,3
+62852599,25823132,5
+62312357,25823132,4
+72602343,25823132,5
+71365804,25823132,5
+61241050,25823132,4
+miao_1,25823132,4
+115032485,25823132,4
+1414261,25823132,3
+133179065,25823132,5
+miaomi,25823132,4
+46528708,25823132,4
+3397745,25823132,3
+48812180,25823132,3
+61245435,25823132,4
+dewar,25823132,3
+91319965,25823132,4
+3507752,25823132,5
+41823915,25823132,4
+81006298,25823132,4
+49106276,25823132,5
+122832846,25823132,5
+fanshuren,25823132,3
+119463229,25823132,3
+52343530,25823132,4
+49762208,25823132,5
+53968686,25823132,5
+57886651,25823132,3
+jakehkj,25823132,3
+79560195,25823132,3
+61845850,25823132,4
+41980752,25823132,5
+1088676,25823132,3
+kingoftheword,25823132,4
+zhangliqi,25823132,5
+53914922,25823132,5
+78413869,25823132,2
+G-Dear,25823132,4
+sjt641100358,25823132,3
+49917088,25823132,3
+44412475,25823132,3
+131984957,25823132,5
+68699271,25823132,3
+dbsays,25823132,5
+1489663,25823132,4
+122232090,25823132,3
+102607701,25823132,3
+4370087,25823132,3
+60088640,25823132,2
+atomlkit,25823132,4
+48195937,25823132,4
+81325605,25823132,4
+78065496,25823132,4
+46818877,25823132,3
+zengruiyan,25823132,4
+74536227,25823132,5
+mycio,25823132,4
+Yoeshorre,25823132,3
+nalusea,25823132,4
+48707415,25823132,4
+49056997,25823132,3
+121268267,25823132,4
+4010201,25823132,4
+2914132,25823132,5
+133598281,25823132,4
+5955160,25823132,4
+46534834,25823132,4
+41483799,25823132,3
+87590197,25823132,5
+80319590,25823132,4
+131088408,25823132,4
+64725454,25823132,4
+fishfeimi,25823132,5
+sxy921026,25823132,3
+27545760,25823132,4
+3305024,25823132,4
+68338997,25823132,4
+57086582,25823132,3
+Youoen,25823132,3
+18586571,25823132,3
+89852120,25823132,3
+59110325,25823132,4
+vivien_princess,25823132,5
+qianqianfei,25823132,5
+78502935,25823132,3
+lijin606,25823132,4
+26818314,25823132,4
+53378505,25823132,4
+little_cupid,25823132,2
+naniso,25823132,4
+gagaye,25823132,4
+67260007,25823132,4
+52999504,25823132,5
+63571575,25823132,4
+53990289,25823132,4
+windyolivia,25823132,4
+marco_0708,25823132,4
+liangtong,25823132,5
+3078958,25823132,-1
+73600166,25823132,4
+2677448,25823132,5
+1056656,25823132,4
+63531003,25823132,4
+57605115,25823132,3
+67330888,25823132,3
+97062329,25823132,4
+2543575,25823132,3
+61162296,25823132,-1
+67863005,25823132,3
+61536847,25823132,3
+37751161,25823132,4
+1082879,25823132,4
+stan24,25823132,2
+62222417,25823132,5
+53307722,25823132,4
+47681702,25823132,4
+1795295,25823132,5
+2870958,25823132,-1
+54878876,25823132,3
+32705581,25823132,4
+64223729,25823132,4
+yaole,25823132,5
+116717024,25823132,3
+122285833,25823132,5
+3818276,25823132,4
+51641705,25823132,5
+114991834,25823132,4
+36060435,25823132,2
+130144262,25823132,4
+arranya,25823132,4
+stariveer,25823132,3
+48047032,25823132,4
+huxzhao,25823132,4
+58480998,25823132,3
+80290185,25823132,3
+jjjjjjjjasmine,25823132,4
+4856168,25823132,4
+37045614,25823132,3
+gluttony6,25823132,4
+sangou,25823132,3
+4377389,25823132,5
+81819960,25823132,2
+3117299,25823132,4
+46890032,25823132,-1
+wangfei1122,25823132,4
+4879557,25823132,5
+99806468,25823132,4
+1651604,25823132,4
+52284149,25823132,3
+3142312,25823132,3
+77390993,25823132,5
+68951432,25823132,4
+jcstar,25823132,4
+46828936,25823132,4
+3439393,25823132,3
+3791953,25823132,5
+lcghere,25823132,5
+42270002,25823132,3
+64332284,25823132,5
+43886305,25823132,3
+120806096,25823132,1
+nangle,25823132,3
+57605745,25823132,4
+47162155,25823132,5
+ljwcurry,25823132,5
+87651171,25823132,1
+2457734,25823132,1
+77771379,25823132,5
+80098161,25823132,5
+yaliedu,25823132,3
+62671989,25823132,4
+xiaoye780621,25823132,2
+51100692,25823132,4
+71107908,25823132,4
+thoris,25823132,3
+tt1426,25823132,4
+craneink,25823132,4
+3053849,25823132,3
+92945557,25823132,3
+45408474,25823132,3
+58596058,25823132,4
+41482074,25823132,5
+46411162,25823132,5
+individualj,25823132,4
+46436685,25823132,-1
+ranwei,25823132,4
+130770428,25823132,3
+glasstar,25823132,4
+57088195,25823132,4
+lilylau,25823132,3
+3588917,25823132,1
+3033835,25823132,5
+4516843,25823132,4
+122317247,25823132,1
+120336940,25823132,4
+abin520918,25823132,3
+heylian,25823132,5
+83610296,25823132,3
+mulittlerice,25823132,-1
+75328137,25823132,3
+18080670,25823132,3
+65257168,25823132,3
+130868382,25823132,4
+xuaoling,25823132,5
+58515646,25823132,5
+sunny-lj,25823132,5
+2983020,25823132,4
+50201051,25823132,4
+2718336,25823132,4
+131921881,25823132,4
+48459404,25823132,3
+67002094,25823132,5
+64589338,25823132,4
+57200771,25823132,5
+57200771,25823132,5
+oldyu,25823132,4
+56590853,25823132,4
+kimhwa,25823132,5
+2714941,25823132,4
+aniya320,25823132,4
+q168,25823132,3
+13147316,25823132,3
+68160893,25823132,4
+121666382,25823132,4
+songyao,25823132,5
+39553070,25823132,4
+122536695,25823132,4
+132732533,25823132,4
+134542917,25823132,4
+luerdelphic,25823132,5
+mongwook,25823132,4
+72411684,25823132,3
+55770977,25823132,4
+95377922,25823132,3
+121959506,25823132,4
+46672186,25823132,5
+130271779,25823132,4
+alice-cat,25823132,5
+52991191,25823132,2
+45271252,25823132,4
+120263255,25823132,4
+yue007,25823132,5
+50891004,25823132,5
+newfm,25823132,4
+37757920,25823132,5
+89270889,25823132,5
+cyygigig,25823132,4
+1162046,25823132,2
+childream,25823132,5
+69054448,25823132,5
+35805626,25823132,3
+15071816,25823132,4
+80060249,25823132,5
+61123670,25823132,5
+60131423,25823132,4
+39913411,25823132,4
+45703382,25823132,4
+senyoung,25823132,3
+32051853,25823132,4
+4054446,25823132,3
+xiangs,25823132,4
+126186349,25823132,5
+3246025,25823132,3
+81336001,25823132,5
+50747236,25823132,3
+51618749,25823132,5
+3852877,25823132,5
+57543745,25823132,3
+iyeah,25823132,4
+57831051,25823132,3
+67681966,25823132,4
+128642433,25823132,5
+135647354,25823132,3
+63781325,25823132,5
+lanchong03,25823132,4
+LogicLady,25823132,4
+30693923,25823132,4
+132076381,25823132,3
+47345174,25823132,4
+26539835,25823132,4
+64981286,25823132,3
+123042042,25823132,5
+blankscreen,25823132,2
+4640701,25823132,5
+66974866,25823132,5
+paraj,25823132,4
+61550476,25823132,3
+57604209,25823132,4
+allei,25823132,-1
+yum0808,25823132,3
+48434496,25823132,4
+wangboyuan,25823132,4
+zoeybatman,25823132,5
+59335490,25823132,4
+FEDERICO123,25823132,3
+79855798,25823132,4
+71176894,25823132,3
+66581377,25823132,5
+2882324,25823132,4
+49147828,25823132,3
+98473521,25823132,4
+59917153,25823132,5
+53247764,25823132,3
+4372138,25823132,5
+15854310,25823132,4
+39695667,25823132,4
+3170513,25823132,4
+32906170,25823132,4
+47434041,25823132,3
+lingdesign,25823132,-1
+xingxiaoxin,25823132,4
+49341385,25823132,5
+37445047,25823132,4
+springl31120,25823132,3
+74420370,25823132,5
+ivylal,25823132,4
+88932203,25823132,5
+xiaoxingxing,25823132,4
+135458402,25823132,5
+6670456,25823132,4
+51476913,25823132,5
+dongdayou,25823132,4
+47846363,25823132,4
+haha654,25823132,4
+84947801,25823132,2
+69210293,25823132,5
+3818190,25823132,5
+ufofay,25823132,3
+135604751,25823132,5
+54884820,25823132,4
+48280227,25823132,4
+68470868,25823132,4
+yuki_mo,25823132,4
+chauyeelee,25823132,5
+2077590,25823132,4
+100422638,25823132,4
+waynehume,25823132,5
+chutian_8986,25823132,4
+58047710,25823132,3
+KyoQueen,25823132,4
+jensen8985,25823132,3
+2260384,25823132,3
+3503344,25823132,4
+zhangezra,25823132,4
+35276844,25823132,5
+99897272,25823132,4
+110172016,25823132,3
+135378115,25823132,-1
+53486650,25823132,5
+135585747,25823132,4
+lewis_zzc,25823132,3
+mocean,25823132,5
+zizicatloveyou,25823132,-1
+wikimedia,25823132,2
+55280126,25823132,4
+fly55,25823132,3
+46175639,25823132,4
+68878726,25823132,4
+133070891,25823132,4
+57698084,25823132,4
+mr.slow,25823132,5
+39729270,25823132,4
+3010281,25823132,5
+44976122,25823132,-1
+99483183,25823132,3
+122048396,25823132,4
+49922437,25823132,5
+40696071,25823132,4
+camwood,25823132,-1
+63740935,25823132,3
+134495648,25823132,4
+2623464,25823132,4
+59956259,25823132,3
+3562998,25823132,4
+66302726,25823132,3
+86093744,25823132,3
+78936814,25823132,3
+61717566,25823132,4
+81544162,25823132,5
+smokedoublered,25823132,3
+75375560,25823132,4
+65239324,25823132,5
+3170937,25823132,4
+51047654,25823132,4
+kmoving,25823132,5
+130100257,25823132,4
+strawman81,25823132,4
+80655381,25823132,4
+2700013,25823132,4
+boffin,25823132,3
+daisyly007,25823132,4
+49963574,25823132,5
+smg,25823132,4
+homesweet,25823132,3
+homesweet,25823132,3
+62370377,25823132,5
+Iamfull,25823132,4
+67990351,25823132,5
+socary,25823132,5
+happinessspace,25823132,5
+55986370,25823132,5
+53317988,25823132,3
+130280555,25823132,5
+melon1001,25823132,4
+64593772,25823132,4
+lepd,25823132,4
+3673232,25823132,5
+dcydb,25823132,5
+wanls,25823132,4
+44508827,25823132,4
+3994599,25823132,4
+48427684,25823132,4
+58988950,25823132,4
+cozy421,25823132,3
+2721912,25823132,4
+41533340,25823132,4
+2361739,25823132,4
+wang07,25823132,-1
+am7061222224,25823132,4
+27933062,25823132,4
+48100528,25823132,4
+43378862,25823132,4
+134463446,25823132,4
+zhaoyuchun,25823132,3
+aimaibumai,25823132,4
+mamy,25823132,4
+44909153,25823132,4
+84749284,25823132,3
+82305871,25823132,4
+63008806,25823132,3
+59802133,25823132,4
+47189582,25823132,4
+lxhunter,25823132,5
+deany,25823132,4
+69594936,25823132,5
+50020191,25823132,4
+47134164,25823132,4
+Septembres,25823132,4
+74483760,25823132,5
+129678455,25823132,4
+47212245,25823132,5
+41932394,25823132,5
+vicky83,25823132,5
+42413148,25823132,2
+134506095,25823132,4
+xiongxiaoqin912,25823132,4
+monkeycupl,25823132,5
+58847654,25823132,4
+2194320,25823132,5
+michaelcissy,25823132,5
+135499743,25823132,4
+42168964,25823132,4
+Aries-in-douban,25823132,4
+zhaoliqun,25823132,4
+63175477,25823132,5
+3905412,25823132,5
+81042933,25823132,5
+cq60,25823132,5
+1530396,25823132,3
+69440151,25823132,5
+4412898,25823132,4
+46402600,25823132,4
+59416830,25823132,5
+50933473,25823132,5
+henryz7654,25823132,5
+zeroflowing,25823132,4
+78579005,25823132,4
+Miss-Ling,25823132,5
+134506577,25823132,1
+50219893,25823132,4
+43748947,25823132,3
+4325552,25823132,4
+2588717,25823132,5
+rikkiwan,25823132,4
+36470859,25823132,5
+64825748,25823132,4
+41287969,25823132,4
+Septrois,25823132,4
+irabbitj,25823132,4
+2302405,25823132,5
+Doven,25823132,4
+51468288,25823132,5
+vivianlovesun,25823132,5
+27091040,25823132,5
+58433028,25823132,3
+35361792,25823132,4
+51992165,25823132,5
+greatabel,25823132,3
+62745611,25823132,4
+70109063,25823132,4
+nondezerve,25823132,5
+68102977,25823132,5
+eeagle,25823132,4
+dragonfly870316,25823132,3
+70665705,25823132,5
+Razzmatazz,25823132,4
+60160104,25823132,5
+130949529,25823132,5
+baiyuanbao,25823132,5
+liligin,25823132,4
+82498439,25823132,5
+29753984,25823132,4
+53836712,25823132,4
+54538602,25823132,4
+81923941,25823132,4
+45108010,25823132,5
+49065066,25823132,4
+4747719,25823132,-1
+easternmoon,25823132,4
+joy-lin,25823132,4
+alwaysbestrong,25823132,3
+35087113,25823132,3
+4652194,25823132,3
+vain223,25823132,5
+vain223,25823132,5
+129837323,25823132,4
+131823411,25823132,3
+4648608,25823132,-1
+30219531,25823132,5
+76581500,25823132,5
+shuaziwang,25823132,5
+102647493,25823132,5
+127265847,25823132,4
+41511009,25823132,4
+134580402,25823132,4
+46371689,25823132,4
+47073167,25823132,5
+PANRICO,25823132,5
+50817948,25823132,4
+52017448,25823132,4
+1122562,25823132,4
+iorange,25823132,3
+greapanda,25823132,2
+vinnsy,25823132,3
+135175472,25823132,5
+52160935,25823132,5
+2420665,25823132,5
+Dison-cheng,25823132,4
+94514917,25823132,4
+winter-h,25823132,3
+80055631,25823132,2
+123469699,25823132,4
+2339752,25823132,3
+121362164,25823132,5
+87532340,25823132,3
+76872047,25823132,4
+48468316,25823132,4
+135425885,25823132,5
+puppy812,25823132,5
+abelleba,25823132,4
+OuTalK,25823132,5
+4629743,25823132,4
+NullPointer,25823132,4
+53971929,25823132,2
+1760922,25823132,4
+47331387,25823132,4
+83694969,25823132,5
+68564015,25823132,4
+119464425,25823132,5
+3608738,25823132,5
+135274775,25823132,4
+39663881,25823132,5
+has5211314,25823132,5
+bancy510,25823132,5
+Rainlivelin,25823132,4
+129331938,25823132,4
+56682460,25823132,4
+Benchencheng,25823132,3
+2891105,25823132,5
+51606888,25823132,5
+48229219,25823132,5
+51439533,25823132,5
+25276718,25823132,4
+sulphurlee,25823132,4
+72494827,25823132,3
+58280028,25823132,4
+88007027,25823132,4
+74257902,25823132,4
+bzys,25823132,5
+116271195,25823132,4
+2572624,25823132,3
+59731496,25823132,3
+3303499,25823132,3
+18746695,25823132,3
+36109432,25823132,4
+heraunty,25823132,3
+FK621,25823132,4
+75076684,25823132,3
+78413454,25823132,5
+42188775,25823132,4
+62483503,25823132,4
+45133421,25823132,5
+47323555,25823132,4
+55931553,25823132,4
+48873217,25823132,4
+p.aeon.c,25823132,5
+lianlian0626,25823132,5
+zhaoyuzhaoyu,25823132,5
+athousand,25823132,3
+73937499,25823132,-1
+84475486,25823132,4
+53248408,25823132,4
+97057870,25823132,4
+72661721,25823132,5
+pandaxk001,25823132,4
+87603831,25823132,4
+91718479,25823132,3
+miss0you,25823132,5
+36862106,25823132,4
+4383003,25823132,3
+75310522,25823132,5
+suzheer,25823132,4
+4362013,25823132,3
+41307480,25823132,4
+90465571,25823132,5
+59946746,25823132,4
+3245265,25823132,5
+97017536,25823132,5
+29390471,25823132,4
+4068988,25823132,5
+Erinalin,25823132,4
+wadb,25823132,5
+47717016,25823132,3
+dorothyzhang,25823132,5
+27300376,25823132,5
+raehide,25823132,3
+4712087,25823132,5
+63229273,25823132,3
+l2morrow,25823132,4
+1758433,25823132,3
+61146756,25823132,4
+48524640,25823132,3
+douban0805,25823132,5
+lmx1220,25823132,5
+78240226,25823132,4
+45295722,25823132,-1
+2182012,25823132,5
+68141214,25823132,5
+62629078,25823132,4
+53071214,25823132,4
+135279955,25823132,4
+25673026,25823132,4
+novkey,25823132,4
+34284665,25823132,4
+azuremoon0118,25823132,-1
+53561059,25823132,3
+lucifer024,25823132,4
+KathyChin,25823132,-1
+115786111,25823132,4
+50062156,25823132,4
+62877515,25823132,5
+16718270,25823132,4
+shimmey,25823132,4
+124720796,25823132,2
+53392958,25823132,3
+48725265,25823132,5
+71821737,25823132,5
+3426138,25823132,4
+119428310,25823132,4
+v_xunyicao_v,25823132,4
+xiaoxiaodeyuanz,25823132,3
+122594677,25823132,3
+1313926,25823132,5
+caoenjian,25823132,5
+63675297,25823132,4
+44428139,25823132,5
+54605196,25823132,3
+doraeimo,25823132,3
+snowsays,25823132,3
+57058120,25823132,3
+xiawu1130,25823132,4
+107284336,25823132,5
+64968243,25823132,4
+sherryice,25823132,4
+62993339,25823132,3
+62628758,25823132,4
+huisekongjian,25823132,4
+131483262,25823132,5
+phejohnwang,25823132,4
+49519192,25823132,-1
+2909317,25823132,4
+34174318,25823132,4
+Hans_Du,25823132,3
+weizaia,25823132,4
+xiaomengqiuyue,25823132,3
+hasejun,25823132,5
+134163547,25823132,5
+maviswang,25823132,4
+2121794,25823132,3
+53350576,25823132,4
+xixidongdong37,25823132,4
+34614797,25823132,4
+tkf024,25823132,5
+48542981,25823132,4
+69125708,25823132,4
+63173862,25823132,5
+52777826,25823132,3
+41864568,25823132,3
+yangziche,25823132,4
+50363542,25823132,5
+MR.YAO,25823132,3
+125002776,25823132,4
+shiteng,25823132,4
+2510758,25823132,5
+zuiaidaluobo,25823132,5
+68416685,25823132,5
+44908756,25823132,4
+1159377,25823132,5
+44358201,25823132,3
+56647089,25823132,4
+49316755,25823132,4
+enchanter1993,25823132,5
+40591271,25823132,4
+62374245,25823132,4
+dxdydz,25823132,4
+68872792,25823132,4
+curvanord,25823132,3
+errylee,25823132,3
+chiu-chiu,25823132,4
+89554555,25823132,4
+59457983,25823132,4
+tomipayne,25823132,5
+121998810,25823132,4
+43042569,25823132,5
+mississluu,25823132,5
+paeonia19,25823132,4
+122304933,25823132,5
+103500023,25823132,5
+sweetxyy,25823132,4
+4160222,25823132,4
+4449663,25823132,4
+121304224,25823132,5
+46469157,25823132,5
+mirroreva,25823132,4
+67323231,25823132,5
+46424200,25823132,4
+40938196,25823132,4
+chouchou35,25823132,4
+LLLLLei,25823132,-1
+43837570,25823132,5
+Erishia,25823132,4
+135317139,25823132,5
+johnnyzhu,25823132,4
+lution,25823132,4
+72712114,25823132,4
+Cheshier,25823132,4
+dizzyzzy,25823132,4
+39132503,25823132,5
+41065952,25823132,5
+47755926,25823132,4
+yulehe,25823132,5
+ameibush9799,25823132,3
+48973217,25823132,4
+wxjas,25823132,4
+83674616,25823132,4
+ligil,25823132,4
+syyw88,25823132,3
+declared,25823132,4
+87374629,25823132,2
+rainynut,25823132,4
+wuweizhe,25823132,3
+saner58,25823132,3
+51093087,25823132,3
+57796261,25823132,5
+3337310,25823132,5
+133372996,25823132,5
+48281759,25823132,5
+joyce_zhx504,25823132,4
+58428725,25823132,4
+93394632,25823132,5
+2955357,25823132,3
+worseup,25823132,-1
+liliean,25823132,3
+129828454,25823132,4
+54067198,25823132,5
+guangying0211,25823132,5
+2494468,25823132,4
+49537187,25823132,5
+75117264,25823132,5
+4266482,25823132,3
+54366340,25823132,4
+boringsly,25823132,5
+71465294,25823132,4
+63755832,25823132,5
+59016139,25823132,-1
+esony121,25823132,5
+120524665,25823132,5
+63714261,25823132,4
+35373128,25823132,4
+82463994,25823132,5
+91397100,25823132,4
+55374511,25823132,4
+mimosalan,25823132,4
+Ironduck,25823132,5
+tinysean,25823132,3
+47029300,25823132,-1
+41471449,25823132,5
+121885852,25823132,4
+135260479,25823132,-1
+51369754,25823132,-1
+LuckyStrikeNero,25823132,-1
+90704708,25823132,4
+59681706,25823132,4
+131928875,25823132,5
+Basten,25823132,4
+jijiayu,25823132,4
+45351288,25823132,4
+yukmin,25823132,4
+46418286,25823132,4
+107556145,25823132,3
+121342307,25823132,4
+131439287,25823132,3
+62497317,25823132,3
+88135973,25823132,5
+quyi1012,25823132,4
+81732078,25823132,-1
+52174423,25823132,5
+bmkg,25823132,4
+nolazhao,25823132,5
+2857621,25823132,3
+58544664,25823132,4
+114331044,25823132,4
+84303160,25823132,3
+luckycat_,25823132,5
+63606817,25823132,4
+70694742,25823132,4
+44094136,25823132,5
+3791482,25823132,5
+ruilixiurui,25823132,3
+57723043,25823132,5
+tadada,25823132,-1
+72692620,25823132,3
+63513932,25823132,4
+peggy_3,25823132,5
+leedoris,25823132,4
+105811040,25823132,4
+rita-star,25823132,3
+4527873,25823132,3
+10969265,25823132,4
+shanelean,25823132,4
+41761191,25823132,5
+skytree1025,25823132,4
+37569925,25823132,-1
+Weiming,25823132,4
+suzyfine,25823132,4
+53510559,25823132,-1
+lucifer-.,25823132,4
+sunxiaomeisun,25823132,5
+deepsnow,25823132,4
+mistwalker,25823132,3
+14088916,25823132,4
+shushizhenliu,25823132,4
+4026585,25823132,4
+76048904,25823132,-1
+46287830,25823132,-1
+nico.heng.Y,25823132,4
+roseandwater,25823132,-1
+aaronfighting,25823132,5
+84060429,25823132,1
+97840419,25823132,4
+53243920,25823132,4
+60692884,25823132,4
+ov_beeshoot,25823132,5
+crazyxiangyan,25823132,4
+why20061108,25823132,4
+MLGB-MLGB,25823132,4
+57314586,25823132,3
+anoTherTeezy,25823132,5
+49637787,25823132,4
+66590810,25823132,5
+junejasmine,25823132,-1
+2462577,25823132,4
+hawords,25823132,4
+maggieloveshow,25823132,4
+47814886,25823132,4
+134888389,25823132,1
+57965497,25823132,5
+85180680,25823132,5
+48845332,25823132,5
+yueyue718,25823132,4
+13301536,25823132,4
+yang0826,25823132,4
+zcx1990,25823132,5
+1317876,25823132,4
+missmoony,25823132,3
+sinzer.,25823132,4
+28274934,25823132,4
+36678476,25823132,5
+58609577,25823132,5
+sunnyleaves,25823132,4
+knightingale,25823132,4
+48877194,25823132,4
+41420170,25823132,5
+80766328,25823132,4
+misswmm,25823132,5
+93027619,25823132,4
+smartsz,25823132,5
+2089364,25823132,4
+2721426,25823132,3
+yhc0515,25823132,5
+37693865,25823132,5
+119166720,25823132,3
+102674631,25823132,4
+48007426,25823132,5
+3505458,25823132,5
+125166025,25823132,5
+42099390,25823132,5
+hectorpu,25823132,3
+lhpwjj,25823132,4
+rayll,25823132,4
+33759229,25823132,5
+56383208,25823132,4
+Dyouknow,25823132,4
+withlymm,25823132,5
+3575116,25823132,5
+iamfucked,25823132,5
+120201514,25823132,3
+65498515,25823132,3
+76236179,25823132,3
+2761343,25823132,-1
+14352801,25823132,3
+66552525,25823132,4
+53352167,25823132,4
+stickyi,25823132,5
+mikiwdy,25823132,5
+54356096,25823132,4
+45099462,25823132,4
+44258193,25823132,4
+Lebby,25823132,4
+127480277,25823132,4
+3055121,25823132,5
+lelexiaomifeng,25823132,3
+133690949,25823132,4
+3566462,25823132,5
+4135777,25823132,4
+2370135,25823132,3
+1901217,25823132,-1
+58587564,25823132,5
+132574736,25823132,4
+star027,25823132,5
+105631790,25823132,4
+90433807,25823132,5
+32033776,25823132,4
+50813433,25823132,5
+52140378,25823132,4
+115078834,25823132,4
+ccccccIty,25823132,4
+92301412,25823132,5
+simple_v,25823132,4
+37019955,25823132,5
+muyuezhusijun,25823132,5
+105736560,25823132,4
+wheel,25823132,3
+17861505,25823132,5
+fecal,25823132,4
+44951032,25823132,4
+BigSullivan,25823132,5
+58802831,25823132,4
+lloydoctpus,25823132,4
+54065051,25823132,5
+2119013,25823132,3
+109025568,25823132,5
+moryfor,25823132,3
+59944601,25823132,3
+zhusiyang,25823132,4
+1633981,25823132,4
+134288385,25823132,5
+2030403,25823132,4
+67861218,25823132,4
+greeenred,25823132,4
+2999981,25823132,3
+59537499,25823132,4
+122273764,25823132,4
+63120961,25823132,4
+48764110,25823132,4
+4842718,25823132,5
+126201751,25823132,5
+mangoboi,25823132,5
+76595603,25823132,5
+finle,25823132,3
+4876430,25823132,4
+yjhsherry,25823132,4
+Monica999xkw,25823132,5
+m.Blacky,25823132,3
+1403770,25823132,3
+tweety778,25823132,4
+marlborosin,25823132,3
+62478487,25823132,-1
+68014946,25823132,4
+2982114,25823132,4
+mirror11,25823132,5
+47357292,25823132,3
+53890917,25823132,4
+BackToNight,25823132,5
+YeshuaComm,25823132,4
+2759778,25823132,4
+shinjong,25823132,4
+radia,25823132,5
+blunting,25823132,5
+3975278,25823132,4
+47459656,25823132,4
+2561289,25823132,4
+hunhunsui,25823132,4
+47556778,25823132,4
+67048173,25823132,5
+135211263,25823132,4
+72285722,25823132,5
+46724815,25823132,4
+DFHU,25823132,5
+lovemetomato,25823132,4
+106597439,25823132,4
+yyj7,25823132,5
+61797796,25823132,4
+lucifoer,25823132,-1
+css,25823132,5
+2431231,25823132,4
+91940704,25823132,4
+77280364,25823132,4
+bloodrate,25823132,4
+50284935,25823132,5
+22187637,25823132,5
+JC921004,25823132,3
+129735347,25823132,4
+59573485,25823132,3
+50179673,25823132,4
+49358081,25823132,5
+57111626,25823132,4
+nightlord7,25823132,5
+69061983,25823132,4
+52272868,25823132,5
+blueshadow30,25823132,4
+leftpomelo,25823132,4
+Link0406,25823132,4
+17106986,25823132,4
+2777892,25823132,4
+58581987,25823132,5
+48998812,25823132,3
+67551894,25823132,3
+missssssing,25823132,5
+56591615,25823132,4
+34990836,25823132,3
+daisy1213,25823132,-1
+132809518,25823132,4
+68561607,25823132,3
+65072386,25823132,5
+treee,25823132,5
+58323329,25823132,3
+58423983,25823132,5
+2184780,25823132,4
+yqp1987,25823132,4
+71203011,25823132,3
+zard21,25823132,3
+jiangmingji,25823132,3
+91317144,25823132,3
+34710237,25823132,4
+2039225,25823132,4
+12674669,25823132,3
+50455314,25823132,5
+cuisandy,25823132,5
+51620794,25823132,3
+48087670,25823132,3
+64392574,25823132,4
+38981886,25823132,3
+62011098,25823132,5
+115125689,25823132,4
+50590434,25823132,5
+zhirunze,25823132,5
+61485916,25823132,4
+1083198,25823132,5
+61093919,25823132,3
+freakfreakfreak,25823132,5
+WXbmouth,25823132,4
+Kristy_Cheung,25823132,4
+4143335,25823132,4
+37591049,25823132,4
+49046809,25823132,3
+41150727,25823132,3
+iris29,25823132,4
+46179117,25823132,4
+54860840,25823132,5
+134498765,25823132,3
+jeelychair,25823132,5
+69842524,25823132,5
+58351753,25823132,4
+fishish,25823132,4
+Junekira,25823132,5
+38494732,25823132,4
+maggieisanangel,25823132,4
+49948992,25823132,4
+65546282,25823132,4
+134522325,25823132,4
+97305087,25823132,4
+52944642,25823132,3
+3800028,25823132,3
+56347233,25823132,4
+Littlecattle,25823132,3
+Metalheads,25823132,4
+122943812,25823132,3
+54268047,25823132,5
+wsgstrike,25823132,4
+57597596,25823132,5
+xjehan,25823132,3
+82454010,25823132,3
+4691374,25823132,4
+lululovexiah,25823132,-1
+jun0824,25823132,5
+timbbm,25823132,3
+51760780,25823132,4
+echo__,25823132,5
+48071996,25823132,4
+5755075,25823132,5
+zfer,25823132,4
+120694997,25823132,4
+win2012,25823132,3
+2686879,25823132,4
+108663216,25823132,3
+60026277,25823132,5
+2618753,25823132,4
+jeady2311,25823132,4
+hollydoyle,25823132,4
+57842249,25823132,3
+51876413,25823132,2
+bonny1111,25823132,4
+57598534,25823132,5
+clairez,25823132,3
+Iayours,25823132,5
+storax,25823132,4
+xzfd,25823132,4
+92881561,25823132,5
+46655664,25823132,5
+46913971,25823132,3
+62720771,25823132,4
+47024160,25823132,4
+5936649,25823132,5
+4348122,25823132,4
+nafertari,25823132,4
+33370936,25823132,5
+133715770,25823132,4
+grimmauld13,25823132,4
+82745428,25823132,4
+93595508,25823132,5
+louieeeee,25823132,4
+30872266,25823132,4
+50028019,25823132,4
+3882080,25823132,4
+iadjani,25823132,3
+Daraloveaug,25823132,5
+78651241,25823132,3
+57981890,25823132,4
+tongxiaonian,25823132,5
+130533154,25823132,4
+66084157,25823132,3
+66803513,25823132,4
+61515355,25823132,5
+58065568,25823132,4
+susimai,25823132,4
+54200755,25823132,4
+64880714,25823132,4
+126961893,25823132,5
+delricardo,25823132,4
+zzi,25823132,5
+89741075,25823132,4
+22167947,25823132,5
+wpjkatrina,25823132,4
+piggy007,25823132,4
+starry_liu,25823132,4
+64852339,25823132,4
+41198675,25823132,5
+eric-ma,25823132,4
+92267089,25823132,4
+morning.garden,25823132,5
+zhangsunset,25823132,3
+msjoyce,25823132,4
+77296894,25823132,3
+midochan,25823132,-1
+59511099,25823132,4
+27194011,25823132,5
+70981661,25823132,5
+d8day,25823132,5
+Victory_V,25823132,4
+63835684,25823132,3
+Ryu_9320,25823132,5
+penaltyxx,25823132,5
+waixiaoke,25823132,5
+7134514,25823132,3
+1456910,25823132,3
+63377708,25823132,5
+OnlyCoffee,25823132,4
+48040831,25823132,5
+73649367,25823132,5
+1491950,25823132,4
+szfilm,25823132,5
+52911845,25823132,4
+47882268,25823132,4
+43375121,25823132,4
+brutwater,25823132,3
+58836054,25823132,4
+2690637,25823132,5
+chengll,25823132,5
+103277074,25823132,4
+cqyyAyy,25823132,5
+56834550,25823132,4
+29683146,25823132,1
+capricornprince,25823132,4
+xgtmy95,25823132,4
+83263798,25823132,5
+7510013,25823132,4
+72155995,25823132,4
+128492091,25823132,3
+4412861,25823132,4
+xohen,25823132,4
+jia931218,25823132,3
+92698798,25823132,2
+120963459,25823132,4
+67316449,25823132,4
+130563631,25823132,4
+2562419,25823132,4
+exploremore,25823132,5
+falsefish,25823132,4
+Javian,25823132,4
+103149314,25823132,3
+reneeeee,25823132,4
+2600677,25823132,4
+rehin,25823132,4
+1746585,25823132,4
+2020855,25823132,3
+zhuyuejun,25823132,4
+116902692,25823132,4
+mitoooooooooooo,25823132,4
+lihouyuan,25823132,5
+130138879,25823132,5
+summerboom,25823132,4
+134541627,25823132,5
+ohchara,25823132,4
+dingxx,25823132,3
+49027405,25823132,3
+114420146,25823132,4
+69477344,25823132,5
+61398424,25823132,3
+ruiye,25823132,4
+1811724,25823132,4
+133493079,25823132,4
+83192314,25823132,5
+47496712,25823132,4
+3716043,25823132,4
+44969749,25823132,4
+ihaveafreeheart,25823132,5
+sureiamsure,25823132,3
+yaoyaolu,25823132,4
+77847494,25823132,5
+88020154,25823132,5
+61461484,25823132,4
+122753398,25823132,3
+43215155,25823132,3
+43215155,25823132,3
+122716451,25823132,5
+claireloveyou,25823132,5
+2816673,25823132,4
+72423299,25823132,5
+71619415,25823132,4
+102581208,25823132,4
+70296365,25823132,3
+leave614,25823132,4
+AuRevoir7,25823132,4
+ccinder,25823132,4
+yeyinger,25823132,5
+47760602,25823132,5
+twofatttttttt,25823132,4
+70023173,25823132,4
+Yann.A.S,25823132,2
+3467832,25823132,3
+40823380,25823132,4
+42842033,25823132,4
+ziqian,25823132,3
+bihusama,25823132,4
+linda740,25823132,4
+49298107,25823132,4
+96782721,25823132,4
+ivybryant,25823132,5
+92110044,25823132,4
+70328585,25823132,3
+53512949,25823132,5
+Daisy53137668,25823132,4
+47853825,25823132,4
+78651584,25823132,4
+83837319,25823132,4
+3595293,25823132,4
+46043867,25823132,4
+November1990,25823132,4
+101718625,25823132,5
+127587816,25823132,5
+ledt,25823132,3
+83809414,25823132,4
+34668649,25823132,3
+34668649,25823132,3
+52840437,25823132,2
+arnohuang,25823132,4
+Scorpionfish,25823132,5
+cocolinx,25823132,3
+carlebee,25823132,3
+moondrifting,25823132,3
+34846798,25823132,5
+1605000,25823132,4
+61920379,25823132,4
+64031370,25823132,5
+82336545,25823132,4
+43278259,25823132,4
+83188339,25823132,5
+62737718,25823132,5
+JJSJJ,25823132,3
+cika,25823132,5
+47359205,25823132,4
+hester-chan,25823132,4
+yiba,25823132,4
+shengxiacanlan,25823132,5
+daisylau,25823132,5
+imcaoli,25823132,3
+129692137,25823132,5
+alangalang,25823132,5
+52943807,25823132,5
+52003906,25823132,4
+133266692,25823132,5
+43506224,25823132,5
+superdupp,25823132,5
+97184237,25823132,4
+78850337,25823132,4
+97740179,25823132,4
+90961062,25823132,4
+93492854,25823132,4
+BurningSoul,25823132,3
+15188529,25823132,3
+Rotta,25823132,3
+ariellau,25823132,2
+50583394,25823132,4
+xiaobai2046,25823132,4
+accidently,25823132,4
+amytsai,25823132,4
+67400745,25823132,4
+1923916,25823132,3
+3802231,25823132,4
+chiling0824,25823132,-1
+121946368,25823132,5
+mzvic,25823132,5
+bigpumpkin,25823132,5
+70990098,25823132,5
+99441700,25823132,4
+Eileen-Adagio,25823132,-1
+71862680,25823132,5
+31108272,25823132,5
+3764516,25823132,5
+86139429,25823132,5
+antonia422,25823132,3
+28713525,25823132,4
+theyear,25823132,5
+Alicia_Y,25823132,4
+cskywalker,25823132,4
+doveshala,25823132,5
+2465250,25823132,4
+115553730,25823132,3
+59347352,25823132,4
+121881237,25823132,4
+54728119,25823132,3
+34823102,25823132,5
+1426301,25823132,4
+firecome7,25823132,4
+chidaoshu,25823132,4
+24274750,25823132,2
+ameliefei,25823132,4
+lajambo,25823132,5
+kerrylee621,25823132,5
+manchukhan,25823132,2
+45796709,25823132,5
+mrtall,25823132,3
+zhangkvi,25823132,3
+shen3yang,25823132,4
+1609951,25823132,4
+49170151,25823132,5
+foxbaby_1104,25823132,4
+99193832,25823132,2
+50994095,25823132,5
+ElyseLee,25823132,5
+43087902,25823132,2
+vincent0007,25823132,4
+53434144,25823132,5
+80250339,25823132,5
+78776420,25823132,5
+su27,25823132,4
+tzhou730,25823132,4
+yisuilife,25823132,4
+76653168,25823132,4
+shiyezi8877,25823132,4
+xiaojiaheng,25823132,4
+69404620,25823132,5
+116607290,25823132,5
+4391066,25823132,4
+sweetcamel,25823132,4
+79934332,25823132,4
+1602396,25823132,5
+rex2xt,25823132,4
+76307011,25823132,5
+93104938,25823132,4
+61349784,25823132,5
+1178759,25823132,4
+57683355,25823132,4
+4657028,25823132,4
+daisyhantt,25823132,4
+4158163,25823132,4
+43609343,25823132,5
+lijin329,25823132,5
+47351813,25823132,4
+chaoren124,25823132,3
+3519432,25823132,4
+45347825,25823132,4
+47650145,25823132,4
+134160760,25823132,4
+14348215,25823132,4
+vinniezhao,25823132,3
+123273988,25823132,4
+davidgu,25823132,4
+houicetint,25823132,5
+48419960,25823132,5
+127551200,25823132,3
+68984410,25823132,4
+70284743,25823132,5
+syfins,25823132,4
+113761818,25823132,4
+LillianLeelll,25823132,4
+ibluepurple,25823132,5
+yeox,25823132,4
+71260850,25823132,5
+urml,25823132,5
+30492787,25823132,5
+fanyamin,25823132,3
+57411563,25823132,5
+pussycat100,25823132,4
+eightsbar,25823132,4
+maggie594522,25823132,4
+98344279,25823132,5
+40479430,25823132,4
+54625709,25823132,4
+jh072,25823132,4
+jiangchongzhi,25823132,4
+gengyushu,25823132,5
+46519128,25823132,4
+cyndio,25823132,5
+58141531,25823132,3
+51110047,25823132,4
+69429649,25823132,3
+4441196,25823132,4
+1774091,25823132,4
+windcream,25823132,4
+99075022,25823132,5
+blinglu,25823132,3
+hllgreen,25823132,5
+67103497,25823132,5
+37694449,25823132,-1
+freemagic1988,25823132,4
+61196519,25823132,3
+justholic,25823132,5
+74551006,25823132,5
+brightwsx,25823132,3
+antoniagreen,25823132,4
+jakartaxie,25823132,4
+53941925,25823132,5
+47807328,25823132,4
+35877038,25823132,4
+mushishisora,25823132,4
+85428939,25823132,5
+127680038,25823132,4
+Daryl,25823132,3
+ivvvvvvvvy,25823132,5
+43517175,25823132,3
+49755333,25823132,3
+44893410,25823132,4
+78957039,25823132,4
+pylee,25823132,4
+lunababe,25823132,5
+1087321,25823132,3
+61319449,25823132,5
+shaoying,25823132,5
+66521777,25823132,3
+X-Vin,25823132,4
+HBtemptation,25823132,5
+1532624,25823132,3
+59788799,25823132,4
+65850343,25823132,4
+nicoyan,25823132,5
+84257030,25823132,5
+61861749,25823132,4
+seaneight,25823132,4
+71270602,25823132,5
+chaimengjie,25823132,4
+mua244,25823132,4
+48937128,25823132,5
+48937128,25823132,5
+61985343,25823132,4
+4427458,25823132,4
+tracycw618,25823132,4
+xiahkim,25823132,5
+90598022,25823132,4
+77039342,25823132,5
+46665128,25823132,3
+montee_D,25823132,4
+74719967,25823132,4
+youmuyishu,25823132,4
+95794515,25823132,5
+47368327,25823132,4
+zhuangbixia,25823132,5
+1536123,25823132,-1
+C_Perk,25823132,4
+1411518,25823132,4
+58288224,25823132,5
+xiaobaohys,25823132,3
+3383915,25823132,5
+tangputao,25823132,5
+3943602,25823132,5
+iwtvampire,25823132,4
+2751179,25823132,5
+46175747,25823132,4
+48324038,25823132,4
+71790709,25823132,5
+63647666,25823132,5
+sanzhiling,25823132,4
+1809252,25823132,5
+xiamishi,25823132,4
+55956958,25823132,3
+48864124,25823132,3
+110040852,25823132,3
+99833271,25823132,4
+lavicong,25823132,3
+79893626,25823132,5
+117360867,25823132,3
+63089184,25823132,2
+52246931,25823132,4
+32590013,25823132,4
+75714203,25823132,5
+63878167,25823132,5
+yerrick,25823132,4
+kiwi_cc,25823132,5
+cjshangbuqi,25823132,4
+lydiapy,25823132,4
+1656255,25823132,3
+4236071,25823132,3
+james0769,25823132,2
+92578989,25823132,3
+121352269,25823132,4
+1033926,25823132,4
+ritalu,25823132,5
+63471811,25823132,5
+51303010,25823132,5
+37150686,25823132,-1
+4872425,25823132,4
+54914078,25823132,4
+2030775,25823132,3
+65369148,25823132,3
+2311976,25823132,4
+xiaoweiwang,25823132,4
+2024868,25823132,5
+Chilwoo,25823132,4
+royin.chao,25823132,2
+42086535,25823132,5
+57910521,25823132,5
+106481252,25823132,5
+52057602,25823132,4
+bingoooooo,25823132,5
+59367965,25823132,3
+2844275,25823132,5
+2239773,25823132,4
+48924653,25823132,5
+4096669,25823132,3
+1209155,25823132,4
+iamlotte,25823132,5
+54492768,25823132,4
+xejn,25823132,5
+64547560,25823132,4
+krddovs,25823132,4
+70481744,25823132,3
+Cc4911,25823132,5
+suo.gu,25823132,4
+58212317,25823132,3
+samleq,25823132,4
+dasung,25823132,-1
+3851739,25823132,5
+2242910,25823132,5
+120780634,25823132,4
+74890087,25823132,5
+63154393,25823132,4
+56136648,25823132,5
+snipersteve,25823132,5
+125281406,25823132,4
+45637576,25823132,3
+44995539,25823132,3
+vane0109,25823132,-1
+forevershy,25823132,4
+81159938,25823132,3
+32746698,25823132,4
+45073998,25823132,5
+89660387,25823132,4
+131713125,25823132,5
+liujintong,25823132,5
+51701885,25823132,5
+62818720,25823132,5
+132058883,25823132,4
+wudiamao,25823132,4
+133106464,25823132,3
+41051630,25823132,4
+81619869,25823132,4
+120736861,25823132,4
+eugne,25823132,4
+61602922,25823132,4
+yuxuancoslilith,25823132,3
+leeva,25823132,5
+zyzyzythl,25823132,3
+54424447,25823132,3
+1443838,25823132,4
+blindcat1989,25823132,4
+2705335,25823132,3
+vincentfuyu,25823132,5
+6345441,25823132,5
+3880942,25823132,5
+122635365,25823132,5
+1702693,25823132,4
+54537877,25823132,4
+120402077,25823132,4
+14594315,25823132,4
+kekedina,25823132,4
+lin2jie,25823132,4
+80513106,25823132,4
+uhziel,25823132,4
+wangzhanhei,25823132,4
+124286936,25823132,5
+54943644,25823132,4
+dashdot,25823132,5
+122586428,25823132,5
+51077975,25823132,5
+echo7forest,25823132,3
+80505580,25823132,4
+sunnyshd,25823132,5
+freyafan,25823132,5
+46720130,25823132,5
+91217287,25823132,4
+50144135,25823132,4
+zzp767,25823132,3
+60760507,25823132,5
+31755732,25823132,2
+127526905,25823132,5
+tanguohong,25823132,5
+29947405,25823132,4
+53868140,25823132,4
+littlerow,25823132,4
+54262110,25823132,5
+2069523,25823132,4
+TMMelody,25823132,4
+36038385,25823132,3
+SimonHsiao,25823132,4
+bnueppmsl,25823132,4
+25537188,25823132,5
+126035091,25823132,4
+3683994,25823132,4
+134893668,25823132,5
+46047412,25823132,5
+yolanda_kin,25823132,4
+51269285,25823132,5
+51068875,25823132,4
+130353620,25823132,4
+123036643,25823132,4
+61511872,25823132,5
+4489482,25823132,3
+54011582,25823132,4
+66848309,25823132,3
+2495913,25823132,5
+132831512,25823132,4
+71389371,25823132,3
+50403764,25823132,3
+nickelxie,25823132,1
+3546579,25823132,5
+gxyvonne,25823132,4
+yuanzi123,25823132,4
+73706521,25823132,5
+123270343,25823132,4
+67769734,25823132,3
+12320986,25823132,4
+39770268,25823132,5
+54113299,25823132,4
+sobbinglife,25823132,-1
+46209502,25823132,4
+pandatou,25823132,3
+2618181,25823132,5
+130960149,25823132,4
+liaojiafen,25823132,4
+90715533,25823132,4
+zhtianyu,25823132,5
+34945593,25823132,4
+120566516,25823132,3
+wangmuya,25823132,4
+114759212,25823132,5
+pangdashen,25823132,4
+116054988,25823132,4
+58583668,25823132,4
+72385276,25823132,5
+130599917,25823132,3
+72703239,25823132,4
+65784611,25823132,3
+JLiu77,25823132,4
+65373356,25823132,4
+62230987,25823132,4
+48495296,25823132,3
+48555554,25823132,4
+126665036,25823132,5
+127322008,25823132,4
+101945887,25823132,4
+115470061,25823132,4
+wendymabel,25823132,3
+53743649,25823132,5
+Babybabygirl,25823132,2
+68804843,25823132,3
+my_landscape,25823132,5
+38897761,25823132,3
+99172297,25823132,4
+howbecky,25823132,4
+latml,25823132,3
+97306162,25823132,4
+56044350,25823132,5
+planty,25823132,5
+70201706,25823132,4
+61520831,25823132,5
+rearee.r,25823132,5
+122896285,25823132,4
+93961418,25823132,4
+fengyuanli,25823132,5
+57104969,25823132,3
+isolated,25823132,4
+53437305,25823132,4
+2708531,25823132,5
+43804267,25823132,5
+51669831,25823132,5
+4039412,25823132,3
+74168799,25823132,4
+partingkadaj,25823132,3
+51155851,25823132,4
+bora2547,25823132,4
+3572546,25823132,5
+53353189,25823132,4
+EavenTao,25823132,4
+53927357,25823132,5
+akilee614,25823132,4
+54033630,25823132,4
+2416471,25823132,4
+43742933,25823132,5
+35586325,25823132,4
+119288749,25823132,5
+51208677,25823132,4
+63226691,25823132,5
+45487500,25823132,3
+17839542,25823132,4
+50301048,25823132,4
+chloeti,25823132,5
+52352034,25823132,5
+lovingly,25823132,4
+66234722,25823132,4
+3113435,25823132,5
+121002348,25823132,4
+102289527,25823132,4
+132161257,25823132,5
+abezhang,25823132,5
+65641173,25823132,4
+61318658,25823132,-1
+youaredead,25823132,3
+moesolo,25823132,3
+44150272,25823132,5
+47688021,25823132,4
+emotion7,25823132,4
+birdieeos,25823132,3
+2809964,25823132,5
+youwanttobe,25823132,4
+40300209,25823132,4
+90618593,25823132,5
+allentear,25823132,5
+lazzaro,25823132,3
+79207793,25823132,4
+3390494,25823132,4
+37943825,25823132,3
+128247907,25823132,5
+glogilo,25823132,5
+crimson84,25823132,4
+allenwangzihan,25823132,4
+63953878,25823132,5
+doddlegone,25823132,4
+93674466,25823132,4
+savage_Howl,25823132,4
+33538876,25823132,4
+sishangduwu,25823132,5
+peachwen,25823132,5
+zhawk008,25823132,4
+36360632,25823132,4
+46249272,25823132,4
+3187313,25823132,4
+102981930,25823132,2
+2780974,25823132,2
+44356747,25823132,4
+turingsj,25823132,4
+45384664,25823132,4
+weigege,25823132,3
+63892714,25823132,4
+beramode,25823132,4
+42678961,25823132,3
+venusvictorwong,25823132,4
+54065220,25823132,4
+stingroger,25823132,4
+16820487,25823132,4
+45099103,25823132,5
+leileisunshine,25823132,4
+36840213,25823132,5
+85007814,25823132,5
+59370247,25823132,5
+52831736,25823132,4
+43215145,25823132,4
+suikame,25823132,5
+2543161,25823132,5
+79351921,25823132,5
+39945172,25823132,3
+82460624,25823132,4
+43586326,25823132,4
+53077082,25823132,3
+ankui,25823132,4
+malianmiss,25823132,5
+50422639,25823132,4
+82349696,25823132,5
+DorisM,25823132,4
+76076225,25823132,5
+128099844,25823132,5
+hon,25823132,4
+32341882,25823132,4
+41353092,25823132,5
+60407456,25823132,4
+59606439,25823132,3
+4816694,25823132,4
+46942165,25823132,4
+lovingmomo,25823132,4
+3419883,25823132,4
+85113803,25823132,4
+48149577,25823132,4
+58154691,25823132,5
+1811661,25823132,5
+54083400,25823132,5
+45849090,25823132,4
+BPTM,25823132,4
+37115563,25823132,4
+63787326,25823132,5
+Eudemonia-moon,25823132,4
+46276510,25823132,4
+67029502,25823132,5
+mengtianjun,25823132,-1
+36008103,25823132,3
+yuannyin,25823132,4
+alisa_lea,25823132,4
+46949718,25823132,4
+74567017,25823132,5
+wangyiqiu,25823132,3
+4132864,25823132,3
+43107357,25823132,4
+53507443,25823132,5
+3442243,25823132,-1
+4207391,25823132,-1
+62712830,25823132,4
+2012335,25823132,-1
+posuoluo,25823132,4
+JackHChan,25823132,4
+68079880,25823132,4
+Lolita1881,25823132,4
+leilimo,25823132,4
+81259545,25823132,4
+53356593,25823132,5
+Deirdre95,25823132,5
+3299443,25823132,5
+53474097,25823132,5
+61464429,25823132,5
+smokingchou,25823132,4
+55769919,25823132,5
+sirs,25823132,5
+languheshang,25823132,5
+2858394,25823132,4
+41493191,25823132,5
+sunxuhang,25823132,2
+91785401,25823132,5
+58489855,25823132,4
+11035464,25823132,3
+45478417,25823132,5
+36288413,25823132,5
+28659402,25823132,-1
+48316025,25823132,5
+phonexu,25823132,4
+daisydoo,25823132,5
+huster-lion,25823132,4
+83497810,25823132,-1
+cristina2002,25823132,5
+127154004,25823132,5
+54422865,25823132,3
+1362647,25823132,4
+LauraLi1989,25823132,2
+49301222,25823132,3
+60119095,25823132,5
+59820461,25823132,2
+46308834,25823132,5
+76393487,25823132,5
+Jake52592,25823132,4
+29984544,25823132,5
+60155135,25823132,3
+47862106,25823132,4
+76553742,25823132,5
+103739242,25823132,5
+1175480,25823132,4
+K1nnnn,25823132,3
+53085336,25823132,3
+jaltahiti,25823132,-1
+125433332,25823132,5
+rainbow220,25823132,4
+creekseven,25823132,4
+3730460,25823132,4
+57688571,25823132,4
+donglaixia,25823132,5
+54570567,25823132,4
+caizixuan,25823132,3
+71975757,25823132,4
+2772729,25823132,4
+42919297,25823132,4
+4254640,25823132,4
+76082574,25823132,3
+52117227,25823132,4
+sheiscandy,25823132,3
+baiguopi,25823132,4
+1898022,25823132,3
+68227361,25823132,5
+59301158,25823132,4
+68227361,25823132,5
+59301158,25823132,4
+100328938,25823132,5
+meteora,25823132,5
+41403989,25823132,4
+csee1121,25823132,5
+59404195,25823132,5
+wwwsxst,25823132,5
+58539257,25823132,5
+tzhuang,25823132,4
+5012885,25823132,5
+110063984,25823132,3
+cyrille,25823132,-1
+47725759,25823132,4
+54173340,25823132,3
+tsinglight,25823132,4
+100497038,25823132,5
+105737828,25823132,3
+1663187,25823132,3
+126220956,25823132,4
+3880012,25823132,4
+sasa522,25823132,5
+54028610,25823132,4
+remenbercc,25823132,5
+teliduxingdegou,25823132,4
+jinniuxiansheng,25823132,4
+63294351,25823132,4
+62796389,25823132,4
+48238044,25823132,4
+3531317,25823132,-1
+91515979,25823132,3
+48488105,25823132,5
+84718748,25823132,5
+jy89110,25823132,4
+mindechoing,25823132,4
+38597414,25823132,4
+buleddoll,25823132,3
+122493414,25823132,4
+48433802,25823132,4
+70007681,25823132,5
+28959917,25823132,4
+freedomandlove,25823132,4
+3978018,25823132,4
+3911272,25823132,5
+73729558,25823132,4
+yiliangsan,25823132,5
+60127464,25823132,5
+2107606,25823132,5
+34937499,25823132,3
+ayouyoucats,25823132,4
+50388021,25823132,5
+66705172,25823132,5
+WXFAN,25823132,4
+52463415,25823132,4
+63730928,25823132,3
+78881537,25823132,4
+zsuredrain,25823132,5
+75678243,25823132,3
+dingdaiwei,25823132,4
+59013874,25823132,5
+41236968,25823132,4
+68479471,25823132,5
+47568379,25823132,5
+chuqihua,25823132,4
+1394142,25823132,3
+4901199,25823132,4
+78857918,25823132,4
+55480683,25823132,5
+52530490,25823132,4
+56360766,25823132,5
+Qianlumanman,25823132,3
+57280262,25823132,5
+133913550,25823132,3
+85562867,25823132,5
+122587004,25823132,3
+yiqiquyuanfang,25823132,4
+55406228,25823132,4
+2144139,25823132,5
+69510965,25823132,5
+kicker10,25823132,4
+74044673,25823132,3
+xiaotuo,25823132,3
+jessicahuang,25823132,4
+29211262,25823132,4
+4282689,25823132,5
+15032209,25823132,3
+amberaway,25823132,4
+57643998,25823132,5
+vivi.sunny,25823132,5
+63920180,25823132,4
+79006919,25823132,5
+2029651,25823132,-1
+68072626,25823132,3
+44379063,25823132,3
+45598200,25823132,3
+50644881,25823132,2
+virginiaboat,25823132,-1
+69122757,25823132,4
+62559581,25823132,5
+yan7478,25823132,4
+Dasiycat,25823132,5
+2247401,25823132,4
+runhawker,25823132,5
+62337711,25823132,4
+42540527,25823132,5
+51152974,25823132,4
+2968572,25823132,4
+77201294,25823132,5
+34422499,25823132,3
+122000864,25823132,4
+zzzzzmc,25823132,4
+lanlantian,25823132,4
+88695508,25823132,4
+WWW920225,25823132,4
+behavivian,25823132,3
+amandaccforever,25823132,4
+42810636,25823132,5
+3170874,25823132,4
+2380878,25823132,3
+verahiahia,25823132,5
+ydzxt,25823132,4
+64164296,25823132,4
+KFdaxiong,25823132,4
+77186305,25823132,4
+83547057,25823132,5
+54744192,25823132,5
+106636051,25823132,5
+nanshuo,25823132,4
+57468138,25823132,4
+1806258,25823132,3
+62472993,25823132,5
+cookiewu,25823132,3
+43281124,25823132,5
+92673816,25823132,4
+2462340,25823132,4
+cool123cool,25823132,4
+celia550,25823132,5
+50394173,25823132,4
+61715230,25823132,3
+44777109,25823132,4
+mudingcatshere,25823132,-1
+41215821,25823132,4
+IKEAUO,25823132,4
+47232282,25823132,4
+45965937,25823132,4
+57266286,25823132,4
+gongwei,25823132,5
+ranke0129,25823132,4
+69000298,25823132,3
+64692515,25823132,4
+101860406,25823132,4
+49565536,25823132,-1
+jeyhello,25823132,3
+4097004,25823132,4
+127536739,25823132,5
+2238497,25823132,5
+120035398,25823132,5
+sunnyujia,25823132,5
+40017309,25823132,5
+54784875,25823132,4
+sssa1,25823132,5
+zhouefengting,25823132,4
+108247778,25823132,3
+2010576,25823132,5
+116053893,25823132,4
+36256022,25823132,4
+cheexx7,25823132,5
+felinoshuffle,25823132,5
+49294423,25823132,4
+sevenlucky,25823132,2
+53998675,25823132,4
+yinmushroom,25823132,5
+43809399,25823132,4
+28775103,25823132,3
+C-Plus,25823132,2
+54543639,25823132,5
+1631812,25823132,3
+maryzhao,25823132,4
+54429158,25823132,5
+lbxxzn,25823132,4
+4337944,25823132,3
+60678806,25823132,5
+11017625,25823132,4
+132171936,25823132,4
+3167564,25823132,5
+47364181,25823132,5
+snowintheheaven,25823132,3
+65352682,25823132,5
+72828410,25823132,4
+lianlianma,25823132,2
+sizuka3n,25823132,5
+43199610,25823132,4
+ambercandy,25823132,4
+aharley,25823132,4
+40616713,25823132,3
+69302580,25823132,4
+57639200,25823132,4
+mufanxuanji,25823132,4
+ikmisje,25823132,5
+agnes223,25823132,4
+46714118,25823132,3
+winniewong021,25823132,5
+50716714,25823132,1
+36742621,25823132,4
+34558131,25823132,4
+82628734,25823132,4
+52873802,25823132,4
+ziting002,25823132,4
+kokoyu,25823132,3
+73114101,25823132,4
+78801731,25823132,5
+47904693,25823132,4
+syuuki630,25823132,-1
+54869945,25823132,4
+guaipilele,25823132,4
+kenzo11,25823132,4
+boomXXboomXX,25823132,4
+4690316,25823132,5
+1081613,25823132,4
+daniel_gao,25823132,4
+24219882,25823132,4
+76804621,25823132,5
+98721061,25823132,4
+64091286,25823132,4
+52933680,25823132,5
+63995854,25823132,4
+4680361,25823132,1
+3065583,25823132,4
+64287168,25823132,4
+13903375,25823132,4
+113073174,25823132,2
+haman,25823132,4
+liyixuanorz,25823132,4
+58622210,25823132,5
+1008482,25823132,5
+72786209,25823132,5
+Jennie_ding,25823132,5
+smilehuhu,25823132,4
+1632912,25823132,3
+insomniajxy,25823132,-1
+spritefall,25823132,4
+lostheart,25823132,-1
+2830223,25823132,4
+cenxi,25823132,4
+linlinhuajiao,25823132,5
+MattB,25823132,4
+83215592,25823132,4
+1766764,25823132,3
+47004535,25823132,4
+67388709,25823132,5
+52708319,25823132,4
+48098094,25823132,5
+64248794,25823132,4
+2430400,25823132,5
+41148862,25823132,4
+kimsunny,25823132,4
+49481846,25823132,4
+44525636,25823132,3
+imauve,25823132,4
+58596965,25823132,4
+JNGL,25823132,4
+iansu,25823132,5
+iyyhua,25823132,4
+staywithcc,25823132,3
+53023463,25823132,4
+bx,25823132,3
+90203786,25823132,5
+3519059,25823132,3
+3154561,25823132,5
+40396294,25823132,5
+66129401,25823132,5
+46542897,25823132,4
+75835017,25823132,5
+hanxiaonuan,25823132,5
+119997789,25823132,4
+sophiejiang,25823132,4
+48183944,25823132,5
+ohagur,25823132,4
+52779392,25823132,4
+77576075,25823132,3
+77576075,25823132,3
+40659159,25823132,4
+88444727,25823132,4
+pmeizi,25823132,5
+58399918,25823132,3
+127508395,25823132,5
+3488281,25823132,4
+46692711,25823132,4
+touya0229,25823132,4
+54289383,25823132,5
+75905205,25823132,3
+30019637,25823132,3
+justdomyself,25823132,5
+vinkingking,25823132,4
+52781294,25823132,4
+amazingsusan,25823132,5
+EricYing,25823132,4
+70249511,25823132,5
+63530283,25823132,5
+feelzyl,25823132,4
+64821728,25823132,3
+jjcarolyn0609,25823132,5
+lovermmkk,25823132,5
+33400757,25823132,4
+69064967,25823132,4
+rainy525,25823132,5
+46182813,25823132,5
+78380925,25823132,5
+67483108,25823132,4
+43327058,25823132,-1
+superstitious,25823132,3
+92427949,25823132,5
+4674424,25823132,4
+73958470,25823132,4
+48207518,25823132,4
+miaonica,25823132,5
+hqqsxinxin,25823132,4
+min1,25823132,4
+1818595,25823132,5
+133886774,25823132,4
+129611474,25823132,4
+54983344,25823132,5
+49923430,25823132,4
+53936236,25823132,5
+52056943,25823132,4
+Artist777,25823132,5
+mikea,25823132,4
+59658127,25823132,3
+73478164,25823132,3
+umbrella722,25823132,4
+85207439,25823132,4
+xiaoling1218,25823132,5
+25378672,25823132,4
+ironCC,25823132,4
+74141389,25823132,4
+rionysus,25823132,5
+huadian,25823132,4
+a.lili,25823132,4
+1275109,25823132,4
+1345191,25823132,4
+68156660,25823132,5
+zsq0028347,25823132,4
+49155452,25823132,5
+sebasverm,25823132,5
+1867292,25823132,5
+ishtarie,25823132,4
+yaozhilan,25823132,4
+chumin201111,25823132,5
+45800962,25823132,4
+47853230,25823132,3
+48958561,25823132,3
+33107275,25823132,4
+1271102,25823132,4
+52558781,25823132,-1
+49345312,25823132,5
+61095536,25823132,4
+vernica,25823132,5
+rkyy,25823132,5
+fishlu,25823132,3
+54973100,25823132,5
+54973100,25823132,5
+77626905,25823132,4
+46753092,25823132,4
+60054131,25823132,4
+65676827,25823132,5
+52553005,25823132,4
+31922532,25823132,3
+40673634,25823132,5
+weimengxiao,25823132,4
+52233629,25823132,4
+132764273,25823132,3
+aircrow,25823132,4
+48133263,25823132,4
+67649121,25823132,4
+132576251,25823132,4
+70660754,25823132,3
+64688710,25823132,4
+65266454,25823132,3
+120094445,25823132,5
+11118617,25823132,4
+67392975,25823132,4
+2139184,25823132,-1
+58874671,25823132,5
+43362064,25823132,5
+shinaya,25823132,5
+lynn0128,25823132,-1
+maoxiaomao,25823132,5
+meijiangshi,25823132,4
+74771823,25823132,4
+53784570,25823132,5
+tuzidan,25823132,4
+56957975,25823132,4
+Sking_lq,25823132,5
+125055300,25823132,5
+99223327,25823132,4
+CyberKnight,25823132,3
+45042581,25823132,4
+51094479,25823132,5
+71405332,25823132,4
+4369602,25823132,2
+125334017,25823132,3
+2760612,25823132,5
+58332166,25823132,4
+maxiaoyin,25823132,4
+kyokul,25823132,3
+49863961,25823132,5
+3520940,25823132,3
+65550886,25823132,4
+alphard0615,25823132,4
+62892368,25823132,4
+44345468,25823132,3
+rainelf1215,25823132,3
+93299177,25823132,4
+58131642,25823132,5
+66860468,25823132,3
+1306187,25823132,4
+wilhelmina,25823132,5
+56655457,25823132,5
+oceaneyes,25823132,3
+67509576,25823132,1
+67509576,25823132,1
+42796530,25823132,5
+49219935,25823132,5
+3788179,25823132,3
+58109706,25823132,5
+43026697,25823132,4
+48421988,25823132,1
+46157311,25823132,1
+Obtson,25823132,3
+silenceeeee,25823132,5
+52190451,25823132,4
+79268233,25823132,3
+sunyu_5499,25823132,4
+vc,25823132,4
+53122155,25823132,5
+L_kid,25823132,4
+huangxiaoqiu,25823132,5
+72594786,25823132,4
+18030717,25823132,3
+130599574,25823132,4
+85269486,25823132,3
+zajm,25823132,4
+cynthia7755,25823132,4
+yuetianxian,25823132,3
+79105910,25823132,4
+83229059,25823132,5
+120784937,25823132,4
+35914058,25823132,5
+130521789,25823132,4
+will0604,25823132,4
+3548835,25823132,4
+lvchencf,25823132,4
+3425802,25823132,4
+rajorAn,25823132,4
+2814598,25823132,5
+128679548,25823132,-1
+superwwll,25823132,5
+37280239,25823132,5
+60336002,25823132,5
+Monica__Wang,25823132,4
+hibiscusmh,25823132,5
+DVforever,25823132,4
+joker619,25823132,5
+54533341,25823132,4
+63230793,25823132,3
+45182456,25823132,4
+62334007,25823132,4
+try09,25823132,5
+jnyysh,25823132,5
+lovesunny,25823132,3
+xslidian,25823132,3
+antebellum,25823132,3
+1162708,25823132,4
+50212998,25823132,4
+4367517,25823132,4
+29839643,25823132,4
+a-rui,25823132,4
+66740319,25823132,3
+34315445,25823132,5
+L0ve-zL,25823132,4
+44823994,25823132,4
+66547713,25823132,4
+singlesinger,25823132,4
+1519013,25823132,4
+greyelf,25823132,4
+34255258,25823132,4
+MarsOrMoon,25823132,5
+5355596,25823132,5
+chenjiaqi1008,25823132,5
+53932937,25823132,5
+46282005,25823132,3
+imlyc,25823132,4
+77914968,25823132,4
+83667346,25823132,3
+40373197,25823132,5
+44555140,25823132,4
+lukeyu,25823132,5
+44034206,25823132,4
+64163746,25823132,4
+3382458,25823132,5
+69383984,25823132,5
+70933374,25823132,5
+keainvrenever,25823132,5
+49686732,25823132,4
+43716096,25823132,3
+yummyW,25823132,3
+54703119,25823132,5
+3567808,25823132,5
+125648446,25823132,1
+59725036,25823132,4
+8240576,25823132,4
+JJ-JIANG,25823132,5
+caojiang,25823132,5
+43752137,25823132,3
+yz501,25823132,4
+132868544,25823132,4
+46738902,25823132,4
+qieer_422,25823132,4
+AaronCheung,25823132,3
+bay2fun,25823132,4
+20807282,25823132,4
+changkxs,25823132,4
+47279331,25823132,4
+ukindergarten,25823132,5
+87776926,25823132,4
+33799860,25823132,5
+104630878,25823132,5
+lukaka,25823132,4
+45447780,25823132,4
+82639384,25823132,5
+Ronnie816,25823132,3
+Vivida,25823132,5
+Lycc,25823132,5
+45305916,25823132,5
+39034881,25823132,4
+willsofshatter,25823132,4
+72371496,25823132,3
+3671533,25823132,3
+kidadida,25823132,4
+yeskor,25823132,4
+luot,25823132,5
+44034935,25823132,4
+4217605,25823132,3
+132959097,25823132,4
+ikezhao,25823132,4
+onionhear,25823132,4
+74007490,25823132,5
+41275504,25823132,5
+vivian1204,25823132,3
+slcws,25823132,4
+50588044,25823132,4
+47289236,25823132,3
+VAY-RS,25823132,5
+123948134,25823132,4
+micstrap,25823132,4
+qiushengtang,25823132,4
+41541704,25823132,5
+68909177,25823132,5
+baozha,25823132,4
+71654816,25823132,3
+3981876,25823132,5
+84741578,25823132,4
+63223538,25823132,4
+kaixing123,25823132,4
+65878913,25823132,4
+67606836,25823132,5
+wendy86,25823132,5
+lesones,25823132,4
+37840696,25823132,3
+together1018,25823132,4
+54770830,25823132,4
+120909510,25823132,4
+94563993,25823132,5
+possion007,25823132,4
+mavishebelsie,25823132,4
+41939078,25823132,4
+vitajj,25823132,4
+2240680,25823132,4
+17595129,25823132,5
+62936069,25823132,5
+73696070,25823132,4
+40456478,25823132,5
+mockingko,25823132,4
+chabuduochabudu,25823132,5
+Aifishtank,25823132,-1
+25588497,25823132,5
+dearestjoe,25823132,4
+2510654,25823132,4
+62748915,25823132,3
+70039420,25823132,5
+51014734,25823132,4
+94343814,25823132,2
+justD,25823132,4
+57984448,25823132,5
+74762251,25823132,5
+122791785,25823132,4
+46206481,25823132,5
+50462691,25823132,4
+1308850,25823132,4
+49206550,25823132,4
+63029583,25823132,4
+54706735,25823132,4
+themissingken,25823132,3
+yizhao,25823132,4
+116617620,25823132,5
+78482102,25823132,3
+xin0725,25823132,4
+58408279,25823132,5
+59890729,25823132,5
+3073495,25823132,3
+4600089,25823132,4
+ecnumeng,25823132,4
+45652831,25823132,4
+2437069,25823132,5
+coctelxw,25823132,4
+xiaofeipedia,25823132,4
+4016597,25823132,5
+78858017,25823132,4
+69065443,25823132,4
+crystal12345678,25823132,4
+chouchouMQ1010,25823132,5
+48492345,25823132,5
+1373363,25823132,4
+4083554,25823132,4
+76818492,25823132,4
+1711540,25823132,5
+mulin_111,25823132,3
+53802087,25823132,5
+hwf254,25823132,2
+meysure,25823132,5
+64216875,25823132,5
+karupisu,25823132,4
+8213200,25823132,4
+73763567,25823132,5
+1222692,25823132,5
+le076,25823132,3
+iimozart,25823132,4
+81903104,25823132,5
+niu513,25823132,-1
+45225326,25823132,4
+71156044,25823132,4
+lingJessie,25823132,5
+1464431,25823132,5
+134528559,25823132,5
+garfieldnotcat,25823132,3
+j303,25823132,4
+namu,25823132,5
+49079570,25823132,2
+17512518,25823132,3
+61979261,25823132,5
+lilmi13,25823132,3
+67722006,25823132,4
+52110233,25823132,4
+lovelyekin,25823132,3
+47781006,25823132,4
+56809223,25823132,5
+maydaythering,25823132,4
+mickyxj,25823132,3
+Elvis-lx3,25823132,5
+xishy,25823132,4
+50413289,25823132,4
+45534837,25823132,4
+1366522,25823132,4
+57927833,25823132,4
+Strangefamiliar,25823132,4
+tourstory,25823132,5
+sincerity615,25823132,4
+69955145,25823132,5
+78931639,25823132,4
+SoCrazyNemo,25823132,3
+69968862,25823132,4
+58506046,25823132,5
+network,25823132,5
+58242884,25823132,4
+2390982,25823132,5
+119296720,25823132,5
+71298339,25823132,4
+53339781,25823132,4
+43200056,25823132,5
+32561607,25823132,3
+1345496,25823132,4
+oakhui,25823132,5
+53996515,25823132,4
+flycolorice,25823132,-1
+54277282,25823132,3
+70849512,25823132,-1
+75756405,25823132,3
+soarchane,25823132,4
+liwujiu,25823132,4
+kyleul,25823132,5
+53740988,25823132,4
+sunking_fish,25823132,4
+stephany,25823132,5
+60860847,25823132,3
+queen-tiffany,25823132,5
+Roguet,25823132,4
+47903791,25823132,4
+62334058,25823132,1
+73614049,25823132,5
+106730683,25823132,4
+45436450,25823132,4
+68640061,25823132,4
+70149072,25823132,3
+68490361,25823132,5
+kidrun,25823132,4
+88742882,25823132,4
+103097591,25823132,5
+42616654,25823132,4
+67575567,25823132,2
+twoerer,25823132,4
+IrishRouge,25823132,3
+78609614,25823132,1
+67565594,25823132,4
+90812716,25823132,4
+68673184,25823132,5
+69028639,25823132,2
+49785601,25823132,3
+44539538,25823132,4
+127331732,25823132,5
+53404103,25823132,5
+manaren,25823132,4
+47621269,25823132,4
+antique9248,25823132,5
+57251364,25823132,4
+lovely_love,25823132,4
+133141228,25823132,4
+48206747,25823132,4
+123688744,25823132,4
+92786775,25823132,5
+53668460,25823132,3
+121700755,25823132,4
+79372078,25823132,5
+mengjiewu,25823132,3
+70173493,25823132,5
+55444870,25823132,5
+52399993,25823132,4
+47424203,25823132,4
+cecideng,25823132,4
+45505797,25823132,4
+liuguilin,25823132,5
+51245049,25823132,4
+74275798,25823132,5
+52284138,25823132,5
+He.Loves.QKL,25823132,3
+103030810,25823132,4
+punzy,25823132,5
+47297112,25823132,4
+42144339,25823132,4
+61233140,25823132,4
+59361957,25823132,3
+64979240,25823132,3
+49128378,25823132,5
+67876533,25823132,3
+120374570,25823132,4
+78944211,25823132,5
+EBO,25823132,5
+84010010,25823132,4
+Swangshu,25823132,3
+64919965,25823132,5
+63087628,25823132,5
+109055681,25823132,5
+79717292,25823132,4
+124253429,25823132,4
+46381775,25823132,4
+meganlee,25823132,4
+108137914,25823132,4
+79773701,25823132,4
+65653930,25823132,4
+2324863,25823132,5
+hh55555,25823132,4
+dayandnights,25823132,4
+78284260,25823132,5
+4361447,25823132,3
+120943212,25823132,4
+love523,25823132,5
+47319867,25823132,5
+1133756,25823132,4
+58623061,25823132,5
+45197584,25823132,4
+74550936,25823132,5
+bearmum,25823132,5
+48841040,25823132,4
+64347644,25823132,3
+134269871,25823132,5
+beyo213,25823132,5
+52470011,25823132,4
+65675536,25823132,5
+51067587,25823132,5
+47029323,25823132,4
+127917109,25823132,4
+47190086,25823132,3
+90492672,25823132,5
+29771283,25823132,3
+71108776,25823132,5
+67415851,25823132,1
+43585255,25823132,3
+121064013,25823132,4
+peterhq,25823132,4
+52424511,25823132,3
+3797336,25823132,4
+73064038,25823132,4
+who_knows,25823132,4
+77762504,25823132,5
+47740453,25823132,4
+2227798,25823132,5
+52005532,25823132,4
+83188680,25823132,4
+131479331,25823132,5
+fre7dom,25823132,4
+52762105,25823132,4
+kangshuying,25823132,3
+surpass0demon,25823132,3
+122392735,25823132,4
+126248170,25823132,5
+134530385,25823132,4
+129106127,25823132,4
+50880780,25823132,3
+59156949,25823132,5
+1401916,25823132,5
+72134977,25823132,4
+52384624,25823132,4
+grammarbai,25823132,3
+51583738,25823132,4
+sunaiyue,25823132,3
+1357759,25823132,3
+51683273,25823132,4
+kuangren79,25823132,3
+61326336,25823132,3
+aaaaaas,25823132,5
+man7shuo,25823132,5
+1586971,25823132,4
+SINCE1988,25823132,4
+66872229,25823132,4
+50909085,25823132,5
+sumkid,25823132,-1
+2224035,25823132,4
+momopink,25823132,4
+133402651,25823132,4
+yhhj,25823132,5
+126994808,25823132,4
+126994808,25823132,4
+48236459,25823132,5
+58727241,25823132,5
+59025385,25823132,3
+god151,25823132,4
+yesbuters,25823132,1
+beannyontheroad,25823132,4
+33954327,25823132,-1
+romanbaby,25823132,3
+86941493,25823132,4
+54965375,25823132,5
+61479485,25823132,5
+ainda423,25823132,4
+miyuwen,25823132,5
+40125031,25823132,4
+102599770,25823132,4
+58937014,25823132,4
+65184093,25823132,4
+127118502,25823132,3
+36831690,25823132,4
+59290404,25823132,5
+Talushen,25823132,3
+74532668,25823132,5
+41289155,25823132,5
+2754902,25823132,4
+mysky,25823132,5
+132021080,25823132,3
+52349246,25823132,4
+124707187,25823132,5
+eider,25823132,5
+41627268,25823132,3
+78691419,25823132,-1
+lihen,25823132,3
+51149079,25823132,4
+81588706,25823132,5
+119804879,25823132,4
+133074819,25823132,5
+jojo2046,25823132,3
+56043280,25823132,5
+2447540,25823132,4
+44187248,25823132,4
+51799436,25823132,3
+53990985,25823132,4
+47595964,25823132,4
+84891221,25823132,4
+71061897,25823132,3
+64865282,25823132,5
+1679480,25823132,5
+4493785,25823132,3
+44249721,25823132,5
+129696567,25823132,4
+3835994,25823132,4
+cindyhello,25823132,3
+jimmy_8785,25823132,4
+angusfox,25823132,5
+yizizhiming,25823132,3
+49060307,25823132,4
+134862117,25823132,4
+yt1215,25823132,4
+83854069,25823132,5
+119276614,25823132,5
+57465510,25823132,5
+33830687,25823132,4
+shenxueying,25823132,4
+33914811,25823132,-1
+37666139,25823132,5
+48774532,25823132,2
+hippowitz,25823132,5
+Cancer_x,25823132,4
+46427546,25823132,4
+74249669,25823132,3
+58833110,25823132,4
+cherrytiaotiao,25823132,4
+wjiandan,25823132,4
+134180658,25823132,4
+3226233,25823132,3
+33649081,25823132,5
+gbracelet,25823132,4
+littlecar,25823132,4
+83401102,25823132,5
+lswawabao,25823132,5
+64149038,25823132,4
+6987390,25823132,4
+72098495,25823132,4
+50543598,25823132,4
+huacanghua,25823132,5
+59210685,25823132,4
+55484274,25823132,3
+sasaxi7,25823132,5
+76742267,25823132,5
+ningning9164,25823132,-1
+53242545,25823132,5
+to1900,25823132,5
+wyfar,25823132,4
+50942013,25823132,4
+52918139,25823132,4
+44479177,25823132,5
+92064878,25823132,5
+lockrock,25823132,5
+night.,25823132,-1
+96769747,25823132,4
+68332314,25823132,3
+67285298,25823132,4
+ann8282555,25823132,5
+eve22ven,25823132,4
+62664539,25823132,5
+yu_yuan,25823132,4
+qingjuesikong,25823132,5
+far_away,25823132,4
+62662906,25823132,4
+48057004,25823132,5
+46289707,25823132,4
+Demo21,25823132,4
+53591524,25823132,5
+fuckinboy,25823132,4
+sinetian,25823132,5
+edwardtroy,25823132,4
+se7xn,25823132,4
+68015443,25823132,5
+59765953,25823132,4
+39373896,25823132,4
+withlulu,25823132,5
+weipengcheng,25823132,3
+59540342,25823132,-1
+kobekb,25823132,5
+68498461,25823132,4
+xyqqq,25823132,4
+aben,25823132,4
+adamhu,25823132,5
+Rventric,25823132,4
+3623779,25823132,5
+34623045,25823132,3
+icy_,25823132,5
+xmcog,25823132,4
+69152913,25823132,4
+melittawang,25823132,4
+28530130,25823132,5
+37824700,25823132,4
+ximutudan,25823132,4
+aprisliver,25823132,4
+babymisszc,25823132,5
+lovelyyuchen,25823132,4
+baiwuya,25823132,4
+3277636,25823132,3
+54014204,25823132,3
+chinesean,25823132,3
+ivis1989,25823132,5
+choushabi,25823132,4
+44271862,25823132,4
+120703585,25823132,5
+3790160,25823132,3
+64069487,25823132,4
+4451710,25823132,5
+115631382,25823132,4
+78810397,25823132,3
+88844052,25823132,3
+47495374,25823132,5
+62318575,25823132,4
+38815134,25823132,4
+wenliangno1,25823132,3
+wenliangno1,25823132,3
+97468014,25823132,4
+127399419,25823132,3
+rainjill,25823132,5
+4753243,25823132,-1
+48789683,25823132,5
+39698078,25823132,4
+75611903,25823132,5
+dmw_1201,25823132,3
+69833440,25823132,4
+eucommia,25823132,-1
+48165079,25823132,3
+2679279,25823132,4
+samadhi,25823132,5
+yanziniguang,25823132,4
+PulpPaprika,25823132,4
+j2dream,25823132,4
+71177487,25823132,4
+95817312,25823132,4
+mymx,25823132,4
+cilar,25823132,4
+28357214,25823132,5
+99414276,25823132,3
+69838036,25823132,3
+49875686,25823132,3
+IntoPython,25823132,5
+yasenluobin,25823132,3
+shhry,25823132,4
+bigbei,25823132,5
+lovewx3,25823132,4
+66824195,25823132,3
+jiaosally,25823132,4
+T.V.Zoe,25823132,4
+77283735,25823132,5
+4010903,25823132,4
+122901371,25823132,5
+runcastor,25823132,5
+45608534,25823132,4
+desa,25823132,5
+62532715,25823132,5
+Ira_Jing,25823132,5
+huangxie,25823132,4
+activecherry,25823132,4
+aipa,25823132,4
+3427401,25823132,4
+132209525,25823132,5
+14014568,25823132,3
+3955654,25823132,4
+104823115,25823132,4
+51790573,25823132,5
+tatsu,25823132,4
+67466072,25823132,5
+zmm02,25823132,5
+50400133,25823132,4
+pinkcity,25823132,4
+babyzhaolu,25823132,4
+134586200,25823132,5
+61304869,25823132,4
+51628420,25823132,4
+52554533,25823132,5
+canopy,25823132,4
+fishzero,25823132,4
+66902350,25823132,4
+damon3liz,25823132,3
+bluelynn,25823132,4
+37551097,25823132,5
+casper2fly,25823132,3
+70027321,25823132,5
+83060870,25823132,5
+2320060,25823132,4
+48634684,25823132,3
+17004593,25823132,4
+58957122,25823132,5
+2848425,25823132,3
+69621575,25823132,3
+happyhour007,25823132,4
+znrpiggey,25823132,3
+45855864,25823132,4
+51834846,25823132,3
+bulijite,25823132,4
+xianlovezhi,25823132,4
+Lena-Ho,25823132,5
+50969962,25823132,4
+86115607,25823132,4
+49198911,25823132,5
+124847125,25823132,5
+116901535,25823132,4
+70781968,25823132,5
+49022279,25823132,4
+qingzai,25823132,5
+62141852,25823132,4
+53368191,25823132,4
+15146438,25823132,5
+84019906,25823132,5
+68741121,25823132,3
+12822970,25823132,4
+73847256,25823132,4
+76544055,25823132,5
+46534906,25823132,3
+41089034,25823132,5
+1239706,25823132,5
+58133063,25823132,5
+127741400,25823132,5
+63300955,25823132,4
+77848216,25823132,4
+81215779,25823132,4
+nuannuancyl,25823132,-1
+55585297,25823132,4
+48995436,25823132,5
+partynight,25823132,5
+lemonyue,25823132,5
+linpcha,25823132,3
+131704250,25823132,5
+ihee1995,25823132,5
+130647398,25823132,5
+68616466,25823132,4
+zhuzaixuanyabia,25823132,4
+luerraluerra,25823132,5
+60013985,25823132,5
+62257629,25823132,1
+40201382,25823132,3
+3796746,25823132,5
+hyocheong,25823132,4
+34174487,25823132,5
+lynnstefanie,25823132,4
+69563005,25823132,3
+77774632,25823132,5
+124749541,25823132,4
+85191711,25823132,5
+61849167,25823132,5
+hanavsalice,25823132,5
+71188390,25823132,5
+80239706,25823132,4
+L-muyan,25823132,4
+50566408,25823132,4
+skydiscover,25823132,5
+59414293,25823132,4
+43210581,25823132,4
+49146355,25823132,3
+71574131,25823132,4
+kuizhizhu,25823132,3
+d.brown,25823132,4
+129468631,25823132,5
+50129534,25823132,4
+67232116,25823132,4
+48312397,25823132,4
+69223309,25823132,3
+58399217,25823132,4
+HR-vivi,25823132,3
+49609016,25823132,5
+58337655,25823132,5
+82163616,25823132,5
+52214087,25823132,5
+raul7mayday5,25823132,4
+60648596,25823132,5
+2379190,25823132,4
+orsule,25823132,4
+Sherry0ai88,25823132,5
+35438123,25823132,4
+vipzole,25823132,4
+45665949,25823132,4
+50418625,25823132,4
+49390111,25823132,5
+62067881,25823132,4
+114520935,25823132,5
+62371973,25823132,4
+130193728,25823132,3
+SuperWMY,25823132,5
+gaopengyuan,25823132,4
+GrEy4ai,25823132,4
+114361347,25823132,5
+62446851,25823132,4
+68401259,25823132,3
+preciseness,25823132,5
+yiyedu,25823132,4
+eggy,25823132,4
+hypnoticboy,25823132,4
+52583553,25823132,5
+Uni_zz,25823132,3
+5466368,25823132,5
+54896584,25823132,3
+93347677,25823132,3
+2696668,25823132,5
+kedoumili,25823132,5
+122048600,25823132,4
+1052133,25823132,4
+55754517,25823132,2
+jesterselby,25823132,4
+44510588,25823132,4
+56823011,25823132,4
+100279661,25823132,4
+91139241,25823132,4
+35586402,25823132,5
+130020039,25823132,5
+cuiyueshi,25823132,2
+xxms,25823132,4
+73956892,25823132,4
+9951042,25823132,4
+54422637,25823132,5
+adlhblj,25823132,5
+40104674,25823132,4
+PIERO1208,25823132,4
+2056209,25823132,3
+53351588,25823132,3
+43156949,25823132,4
+4627477,25823132,5
+69369704,25823132,4
+83713331,25823132,4
+4525795,25823132,4
+53377628,25823132,5
+52259960,25823132,4
+dinglinsusu,25823132,5
+115467690,25823132,4
+57717837,25823132,5
+72970549,25823132,3
+36289402,25823132,4
+lihan19970726,25823132,5
+130940590,25823132,4
+wangjim,25823132,5
+2483415,25823132,3
+52480348,25823132,5
+64037596,25823132,4
+78190173,25823132,4
+57423264,25823132,4
+39923615,25823132,4
+36805272,25823132,5
+2866973,25823132,3
+60988503,25823132,4
+47418045,25823132,4
+50923233,25823132,4
+67104840,25823132,2
+79285043,25823132,4
+cecaazhang,25823132,3
+50071467,25823132,3
+85282507,25823132,5
+67288880,25823132,4
+HesperShen,25823132,4
+45935605,25823132,4
+dearruby,25823132,4
+59341894,25823132,4
+83488893,25823132,4
+57646854,25823132,4
+62419320,25823132,5
+xwzcds,25823132,5
+41740929,25823132,4
+enough,25823132,4
+60119754,25823132,4
+sho2mon4e4y,25823132,4
+3274566,25823132,4
+39131272,25823132,-1
+quxiaoli,25823132,4
+futurecoke,25823132,3
+littleteatea,25823132,5
+cxykelly,25823132,5
+xlaiyq,25823132,5
+emmazhangxx,25823132,4
+kansing,25823132,4
+3950178,25823132,5
+134687140,25823132,4
+weimoo,25823132,5
+xuxinleo,25823132,4
+CLOWN9527521,25823132,4
+Robotme,25823132,3
+quzhe,25823132,4
+47151726,25823132,4
+1577518,25823132,5
+41636718,25823132,4
+130945059,25823132,4
+true-xiaomai,25823132,4
+51126215,25823132,-1
+4211620,25823132,5
+Ruby-0917,25823132,5
+sure1101,25823132,4
+40325889,25823132,5
+74959611,25823132,4
+Excellence,25823132,5
+51234730,25823132,4
+66581892,25823132,5
+Shiely,25823132,4
+2292590,25823132,5
+63400230,25823132,3
+130804068,25823132,4
+61982601,25823132,3
+64244966,25823132,5
+unclelonglegs,25823132,4
+vmile,25823132,5
+2164129,25823132,4
+43397816,25823132,4
+65046941,25823132,-1
+125231431,25823132,4
+47090408,25823132,5
+44218367,25823132,1
+115474584,25823132,5
+esperanza311,25823132,5
+51125398,25823132,5
+36458786,25823132,5
+64245734,25823132,5
+130540529,25823132,-1
+59413586,25823132,4
+sweet2wingsky,25823132,5
+imagefly,25823132,4
+52247250,25823132,5
+30710603,25823132,4
+120043182,25823132,5
+2529003,25823132,4
+62831329,25823132,5
+67742018,25823132,4
+55303586,25823132,5
+4296925,25823132,5
+jacoxu,25823132,4
+49866554,25823132,4
+jijillwang,25823132,4
+73909736,25823132,4
+yangyuefang,25823132,4
+36888465,25823132,5
+65764407,25823132,4
+72102386,25823132,3
+withoutbe,25823132,4
+77609153,25823132,4
+71947752,25823132,4
+102780178,25823132,4
+98321949,25823132,1
+touch1986summer,25823132,4
+51830574,25823132,4
+100991294,25823132,3
+13026676,25823132,4
+sunlin0,25823132,4
+minroro,25823132,4
+80734293,25823132,4
+4628716,25823132,5
+sylcrannog,25823132,4
+124299373,25823132,3
+qingfengpushang,25823132,4
+45543286,25823132,3
+66741192,25823132,4
+wjj1,25823132,5
+130851961,25823132,5
+53886253,25823132,5
+varshaJ,25823132,3
+119428504,25823132,4
+SummerDuan,25823132,3
+iceleehom,25823132,3
+seamouse,25823132,4
+skyjadebear,25823132,4
+samuel_liu,25823132,5
+Rouwell,25823132,4
+120980814,25823132,5
+54532227,25823132,4
+urielwang,25823132,4
+63981568,25823132,4
+48007103,25823132,5
+yo911217,25823132,5
+doreen1215,25823132,5
+mustundead,25823132,3
+59012758,25823132,5
+48973065,25823132,-1
+bluefaith_,25823132,5
+dingtian911,25823132,4
+40482611,25823132,4
+43908432,25823132,5
+87515196,25823132,5
+57371510,25823132,4
+1884591,25823132,5
+65042146,25823132,4
+56159025,25823132,4
+originhuman,25823132,3
+57491258,25823132,3
+46629937,25823132,4
+52371666,25823132,3
+32001555,25823132,3
+43348247,25823132,4
+124935841,25823132,5
+un-do,25823132,4
+90421174,25823132,4
+55769530,25823132,5
+miga_sophia,25823132,4
+70269903,25823132,5
+2431790,25823132,4
+129629477,25823132,5
+littleisle,25823132,4
+VivienneHoo,25823132,4
+kakasissi,25823132,4
+47302179,25823132,3
+2067915,25823132,5
+34707868,25823132,4
+Kei-ko,25823132,4
+kefeng1988,25823132,3
+49953838,25823132,4
+73080100,25823132,4
+kishibe123,25823132,5
+Vanilla.Y,25823132,5
+65661180,25823132,4
+synynyn,25823132,4
+Just_vv,25823132,5
+bixiuli,25823132,5
+78089832,25823132,-1
+domisol,25823132,5
+j5533882,25823132,5
+49702943,25823132,3
+csprite,25823132,4
+huanghuang0227,25823132,3
+131055900,25823132,4
+yoky,25823132,4
+imidazole,25823132,4
+3908249,25823132,4
+5687564,25823132,5
+37521103,25823132,4
+mixi456,25823132,4
+61207902,25823132,5
+79856999,25823132,4
+132919344,25823132,3
+3534752,25823132,4
+49036730,25823132,3
+tuboshumama,25823132,5
+sunjunhuang,25823132,4
+59368060,25823132,2
+39138192,25823132,4
+50039358,25823132,4
+78194519,25823132,4
+3980916,25823132,5
+44335994,25823132,3
+acousma,25823132,3
+june07,25823132,4
+69613822,25823132,3
+76934101,25823132,4
+2475904,25823132,5
+snoopynirvana,25823132,4
+53247306,25823132,4
+zhangdayang,25823132,3
+64124886,25823132,4
+53105432,25823132,4
+21338461,25823132,5
+57850618,25823132,4
+53479153,25823132,4
+hello2931837,25823132,4
+4118218,25823132,-1
+47073005,25823132,5
+ovezhao,25823132,3
+63045020,25823132,4
+zlzzoe,25823132,5
+65166974,25823132,5
+momoko_huang,25823132,4
+39270011,25823132,5
+littlesmartness,25823132,5
+104823188,25823132,4
+120725190,25823132,3
+ukimuknow,25823132,4
+prague2046,25823132,3
+3828576,25823132,4
+caspianwky,25823132,1
+MygawaTalk,25823132,4
+119078211,25823132,4
+ilovekyoko,25823132,5
+131194167,25823132,5
+78997303,25823132,5
+peilic1020,25823132,3
+3640079,25823132,5
+edisonmotata,25823132,4
+43156253,25823132,4
+42907481,25823132,4
+lazyfish,25823132,4
+58489825,25823132,3
+79526047,25823132,5
+1664141,25823132,4
+zjy1222,25823132,3
+caijiazhan,25823132,4
+stranger-7,25823132,4
+61389722,25823132,4
+69631083,25823132,5
+47101317,25823132,5
+sogoodbye,25823132,4
+85341093,25823132,5
+50406839,25823132,5
+134281979,25823132,5
+chancechance,25823132,4
+2818823,25823132,5
+47054399,25823132,4
+swan93,25823132,4
+80021363,25823132,3
+72092433,25823132,4
+akkabby,25823132,4
+loveBJuncle,25823132,5
+jiayi6616,25823132,4
+dancealone,25823132,4
+49123021,25823132,5
+119338818,25823132,4
+109022269,25823132,5
+misssummer27,25823132,3
+131837034,25823132,4
+sekijiang,25823132,4
+bunnyzizi,25823132,5
+15528507,25823132,3
+133433124,25823132,5
+46669786,25823132,5
+60829180,25823132,5
+52540412,25823132,4
+cdmy818,25823132,5
+119184686,25823132,5
+66993627,25823132,4
+3167300,25823132,4
+29515987,25823132,4
+54686261,25823132,4
+jingshuixian,25823132,4
+51879316,25823132,5
+59458875,25823132,3
+128661562,25823132,4
+cicititi,25823132,4
+59906784,25823132,4
+fourteendepp,25823132,4
+3242438,25823132,4
+49443595,25823132,4
+52416505,25823132,3
+134087511,25823132,5
+125263804,25823132,4
+46678115,25823132,4
+80197452,25823132,4
+48506304,25823132,5
+55446081,25823132,4
+34187825,25823132,3
+48668173,25823132,3
+114614912,25823132,4
+doublepersona,25823132,4
+43106443,25823132,4
+131064576,25823132,5
+71093640,25823132,4
+67529255,25823132,5
+72677574,25823132,4
+2756995,25823132,5
+3474242,25823132,4
+hedaxia,25823132,4
+Arenas4.-_-Hreo,25823132,3
+zxl321,25823132,3
+2594481,25823132,4
+73857948,25823132,5
+57729353,25823132,2
+43891940,25823132,4
+51367308,25823132,5
+huanhua,25823132,4
+imxiao,25823132,4
+33266508,25823132,5
+46714901,25823132,3
+coconutZii,25823132,4
+houyeah,25823132,4
+78952997,25823132,5
+76663522,25823132,4
+ballteda,25823132,4
+131856439,25823132,5
+sssssstutter,25823132,5
+48844163,25823132,5
+ISABELLA88123,25823132,4
+3770234,25823132,4
+34266139,25823132,5
+53126913,25823132,4
+134856737,25823132,4
+34170843,25823132,5
+123756141,25823132,4
+yanxuanyi,25823132,3
+43608619,25823132,5
+39518332,25823132,4
+115787332,25823132,4
+115787332,25823132,4
+50546540,25823132,5
+44537137,25823132,4
+kevinzhang21,25823132,4
+sleety,25823132,4
+96305246,25823132,4
+60583715,25823132,5
+27693437,25823132,5
+1775965,25823132,4
+bobluvpop,25823132,5
+46871806,25823132,5
+ktr,25823132,4
+melatielian,25823132,5
+orangeock,25823132,5
+zhenmafan2nd,25823132,4
+youyou3709,25823132,5
+1736294,25823132,5
+45417298,25823132,4
+pixie,25823132,4
+34161257,25823132,5
+Do-my-self,25823132,5
+67781678,25823132,3
+51257639,25823132,4
+2946021,25823132,5
+77501042,25823132,3
+Rmiaoer,25823132,4
+1338530,25823132,3
+3629598,25823132,5
+50443109,25823132,5
+52826626,25823132,4
+whuzhangli,25823132,3
+57360419,25823132,5
+3689558,25823132,5
+105196709,25823132,4
+62674682,25823132,5
+Dreaming1989712,25823132,5
+62150747,25823132,4
+130328147,25823132,4
+pedant,25823132,3
+83491146,25823132,4
+65044584,25823132,4
+54463600,25823132,5
+3906030,25823132,4
+67733438,25823132,5
+1744631,25823132,4
+june.q,25823132,3
+54506320,25823132,4
+2556700,25823132,5
+jean_zx,25823132,5
+stknight,25823132,3
+gin-schizo,25823132,4
+120963975,25823132,5
+meng326598,25823132,5
+2701338,25823132,5
+a1234567,25823132,3
+43228715,25823132,4
+summersugarb,25823132,4
+125655857,25823132,4
+ravinenoravine,25823132,4
+48662310,25823132,5
+109166654,25823132,5
+onew,25823132,4
+3161053,25823132,4
+2760131,25823132,4
+63688559,25823132,5
+chihee,25823132,4
+59740753,25823132,4
+79483975,25823132,5
+31601923,25823132,4
+92897764,25823132,4
+tiaoyu,25823132,4
+75984184,25823132,2
+61633382,25823132,3
+61312247,25823132,4
+ellie1501240013,25823132,5
+4807458,25823132,4
+59264164,25823132,5
+102413399,25823132,5
+yuyangaiyang,25823132,4
+rumba,25823132,5
+DayoChaplin,25823132,3
+38761258,25823132,5
+yanala,25823132,5
+120102643,25823132,5
+22842369,25823132,4
+tmp2,25823132,3
+67831727,25823132,3
+renjiananhuo,25823132,3
+115483881,25823132,4
+26044083,25823132,5
+102462888,25823132,4
+134159627,25823132,4
+dark-otaku,25823132,5
+46020433,25823132,3
+54067845,25823132,5
+maxrins,25823132,5
+125751709,25823132,5
+35233003,25823132,4
+s_sc1,25823132,4
+63351212,25823132,5
+wolf2046,25823132,5
+128307157,25823132,4
+3869053,25823132,5
+121629069,25823132,5
+80834580,25823132,5
+towelcatryna,25823132,2
+76611008,25823132,3
+2461589,25823132,4
+10848778,25823132,5
+71929336,25823132,4
+95443736,25823132,4
+53711612,25823132,4
+zhangzhangzhang,25823132,4
+25674163,25823132,4
+2910620,25823132,5
+56224870,25823132,4
+35106539,25823132,4
+130164378,25823132,5
+72206292,25823132,3
+47776036,25823132,5
+52649059,25823132,4
+zyw19870917,25823132,3
+58624199,25823132,5
+63717322,25823132,4
+56405377,25823132,5
+55373134,25823132,3
+K_Kaito,25823132,3
+2314590,25823132,4
+78377948,25823132,3
+2058011,25823132,4
+16992419,25823132,5
+72620241,25823132,5
+alicenana,25823132,4
+65722669,25823132,5
+41657759,25823132,3
+76909039,25823132,4
+CelineTan,25823132,4
+13295115,25823132,4
+44379366,25823132,3
+jxcc,25823132,4
+83484959,25823132,3
+53322275,25823132,3
+sunhuaning,25823132,5
+liujiao808,25823132,4
+52774723,25823132,4
+55958594,25823132,5
+mcdull11,25823132,4
+easystyle,25823132,4
+46560781,25823132,5
+49241776,25823132,-1
+43901244,25823132,5
+1544332,25823132,3
+chaochao123,25823132,5
+2306229,25823132,4
+80768830,25823132,5
+2422505,25823132,4
+linlinlove5,25823132,5
+sufangfang,25823132,5
+jinzimiao,25823132,5
+feel_sorrow,25823132,4
+53268504,25823132,1
+YYDEE,25823132,4
+rosalie1984,25823132,4
+120241385,25823132,4
+3843442,25823132,4
+63314716,25823132,5
+120267137,25823132,5
+97195140,25823132,5
+sure5004,25823132,4
+mickey_.,25823132,5
+45541495,25823132,3
+2752290,25823132,4
+18313578,25823132,4
+21927784,25823132,5
+godmako,25823132,4
+69030705,25823132,5
+laozo,25823132,4
+126381836,25823132,4
+73780688,25823132,5
+42974933,25823132,5
+63871984,25823132,5
+2720332,25823132,4
+joyestin,25823132,4
+132331485,25823132,4
+60372310,25823132,5
+clijsterssophia,25823132,4
+48361122,25823132,4
+duoluowenren,25823132,5
+45069239,25823132,5
+anyuancat,25823132,4
+46982420,25823132,4
+67387013,25823132,4
+lovedayo,25823132,4
+sherry5241,25823132,3
+foxnake,25823132,5
+3444758,25823132,4
+dong33382,25823132,5
+49273431,25823132,4
+52079252,25823132,4
+xieetuzi,25823132,5
+hal-end,25823132,4
+34017621,25823132,4
+H897120417,25823132,5
+131479104,25823132,5
+chouchou0707,25823132,4
+47329281,25823132,4
+62134225,25823132,5
+62708720,25823132,5
+DreamHouse,25823132,5
+53734471,25823132,3
+RaphaelDeng,25823132,4
+65896805,25823132,4
+dotcon,25823132,4
+1584930,25823132,5
+62604002,25823132,3
+winna91,25823132,4
+Microka,25823132,5
+58462202,25823132,4
+43944690,25823132,4
+estellejoshua,25823132,5
+quill,25823132,4
+mary27,25823132,4
+55607390,25823132,5
+60707243,25823132,5
+52176942,25823132,5
+78656769,25823132,4
+km,25823132,4
+riyueming024,25823132,5
+120046148,25823132,4
+84142287,25823132,4
+QIYIYI,25823132,3
+60396256,25823132,4
+84086649,25823132,4
+1095652,25823132,4
+4885011,25823132,5
+3954052,25823132,4
+98393786,25823132,3
+51591369,25823132,3
+103458789,25823132,-1
+56980157,25823132,5
+wmywbgz,25823132,3
+alphatown,25823132,4
+DaRin6,25823132,-1
+seekken,25823132,3
+hi-sunshin,25823132,4
+vexit,25823132,-1
+112794810,25823132,5
+3617977,25823132,4
+koway,25823132,3
+4417183,25823132,3
+99214986,25823132,4
+hitent,25823132,5
+50204008,25823132,4
+lionbiscuit,25823132,4
+lucyn,25823132,5
+jingknight,25823132,5
+zhangreeki,25823132,4
+92032476,25823132,3
+66530015,25823132,5
+104109976,25823132,3
+68402408,25823132,3
+49432192,25823132,4
+minglemingle,25823132,4
+63744940,25823132,5
+39104472,25823132,4
+yunyunk,25823132,4
+50308243,25823132,5
+linyer,25823132,4
+2073098,25823132,4
+luanjunyi,25823132,5
+4485928,25823132,4
+47175598,25823132,4
+duanxiu,25823132,5
+131958766,25823132,5
+60595638,25823132,5
+122335329,25823132,5
+2471156,25823132,5
+doskevin407,25823132,5
+61366288,25823132,4
+changle0605,25823132,4
+56534946,25823132,5
+41502689,25823132,4
+60223940,25823132,4
+christine1006,25823132,4
+4143635,25823132,5
+2145670,25823132,4
+28152891,25823132,2
+54810722,25823132,3
+56556616,25823132,5
+43508209,25823132,4
+haozi20,25823132,4
+47818652,25823132,4
+biptwjw,25823132,4
+might_morning,25823132,5
+57328342,25823132,4
+85142259,25823132,4
+37521902,25823132,3
+wongzayoi,25823132,4
+hjhhappy,25823132,4
+47546589,25823132,4
+45812383,25823132,5
+ilovehouyi,25823132,3
+44656032,25823132,4
+verdure77,25823132,3
+46276304,25823132,3
+70637195,25823132,5
+TalkChan,25823132,3
+2581765,25823132,4
+heysummer,25823132,4
+Caijiajian,25823132,5
+89835512,25823132,4
+hualianxiaozhu,25823132,5
+55408361,25823132,5
+76624368,25823132,4
+lovelaa,25823132,5
+65526333,25823132,5
+83571302,25823132,5
+49449526,25823132,3
+67342694,25823132,5
+33392120,25823132,5
+33392120,25823132,5
+istas,25823132,4
+44939590,25823132,5
+chenxinhuang,25823132,5
+3613563,25823132,5
+hhhs,25823132,5
+83344597,25823132,5
+52408878,25823132,4
+moranlover,25823132,4
+zzqinxx,25823132,4
+51105174,25823132,4
+23073485,25823132,5
+93091639,25823132,5
+40252318,25823132,4
+59741091,25823132,5
+68091356,25823132,4
+39220654,25823132,5
+viling,25823132,4
+mullerlahm,25823132,4
+3053086,25823132,3
+graceinjune,25823132,3
+54090532,25823132,4
+66314549,25823132,5
+69173173,25823132,4
+2179847,25823132,5
+52197155,25823132,5
+69675656,25823132,4
+YJC_LOVE_4EVER,25823132,5
+47060979,25823132,3
+69253315,25823132,4
+68550848,25823132,4
+68870851,25823132,5
+62961782,25823132,5
+scorndefeat,25823132,5
+56141450,25823132,4
+imsatan,25823132,3
+34704440,25823132,3
+131917894,25823132,5
+wulebuzuo,25823132,4
+10045748,25823132,4
+49072248,25823132,5
+spx,25823132,5
+zizon,25823132,3
+43756834,25823132,4
+2789604,25823132,5
+75691865,25823132,4
+4159676,25823132,4
+59376214,25823132,5
+66178804,25823132,5
+103617417,25823132,5
+73709425,25823132,5
+75548648,25823132,5
+yolandityb,25823132,5
+57354872,25823132,5
+qiuniao1982,25823132,4
+88871523,25823132,4
+Aviator.1990113,25823132,5
+amosteng,25823132,3
+guoerer,25823132,4
+frostshuang1989,25823132,5
+49316177,25823132,4
+36348999,25823132,5
+104519003,25823132,4
+63996791,25823132,5
+123071160,25823132,4
+3722910,25823132,4
+Suuun,25823132,4
+24543063,25823132,4
+78511044,25823132,5
+54164106,25823132,5
+58454071,25823132,5
+juxi,25823132,4
+zhangqihao,25823132,4
+hhy2013,25823132,4
+Likea,25823132,5
+67750143,25823132,5
+1733203,25823132,4
+130792302,25823132,5
+orangly,25823132,5
+72468752,25823132,5
+72468752,25823132,5
+102858753,25823132,4
+97757646,25823132,4
+129236747,25823132,5
+39625057,25823132,4
+103122769,25823132,3
+56526640,25823132,5
+41786270,25823132,3
+61671045,25823132,4
+49724831,25823132,3
+121880026,25823132,5
+bluestereo,25823132,4
+1240620,25823132,4
+U.YO,25823132,4
+58295393,25823132,5
+127378341,25823132,5
+52241991,25823132,4
+45789022,25823132,3
+93423717,25823132,4
+52582150,25823132,5
+67029274,25823132,5
+53027731,25823132,4
+icefishe,25823132,4
+fan_tuan,25823132,4
+131473143,25823132,4
+75624333,25823132,5
+40966373,25823132,4
+69529350,25823132,5
+83127130,25823132,4
+miemiefever,25823132,4
+49390067,25823132,3
+84064538,25823132,5
+97088153,25823132,4
+34753066,25823132,5
+130989210,25823132,3
+25140645,25823132,4
+copy6,25823132,5
+119487629,25823132,4
+keepsake,25823132,4
+126887950,25823132,5
+n745967340,25823132,5
+132099750,25823132,4
+70951210,25823132,4
+60411524,25823132,-1
+blueandgreen,25823132,4
+59275049,25823132,5
+daisylq,25823132,5
+27157362,25823132,5
+113119005,25823132,5
+55355100,25823132,5
+difeijing,25823132,3
+56398520,25823132,4
+127704028,25823132,3
+myasuka,25823132,3
+57620266,25823132,4
+62091486,25823132,5
+46032671,25823132,3
+59040514,25823132,3
+4588310,25823132,5
+59902961,25823132,5
+45268716,25823132,4
+wanlili520,25823132,5
+40819535,25823132,4
+ask4more,25823132,3
+barboon,25823132,5
+49699769,25823132,5
+73002179,25823132,4
+2890910,25823132,4
+zqdqzx,25823132,4
+45485577,25823132,4
+duzhouchi,25823132,4
+10892176,25823132,4
+78263023,25823132,4
+3315331,25823132,4
+dddf0920,25823132,5
+2165121,25823132,5
+41206033,25823132,5
+52923018,25823132,4
+55817697,25823132,3
+108243039,25823132,4
+85323930,25823132,3
+wudiqiangpi,25823132,5
+call_me_1900,25823132,5
+qijiejieblue,25823132,5
+61907684,25823132,4
+48398238,25823132,4
+52763172,25823132,4
+didiaosummer,25823132,4
+luohuangertao,25823132,4
+samkaka,25823132,4
+Andy9,25823132,2
+63170647,25823132,4
+3438528,25823132,4
+nangongmocheng,25823132,4
+Mandychai,25823132,3
+NysUn,25823132,4
+3874583,25823132,5
+elci,25823132,5
+raytao,25823132,4
+122887171,25823132,4
+SheRrySweets,25823132,5
+46342757,25823132,4
+fun-lv,25823132,4
+sidfify,25823132,5
+46588781,25823132,5
+130309969,25823132,5
+50269699,25823132,4
+36138367,25823132,4
+46830081,25823132,5
+62717357,25823132,4
+hen_43,25823132,5
+Scorpio_lxs,25823132,4
+46967065,25823132,4
+93161752,25823132,5
+L_memo,25823132,4
+34183802,25823132,5
+52244645,25823132,5
+65510626,25823132,4
+44585968,25823132,4
+christopherlin,25823132,3
+m19900714,25823132,4
+1545634,25823132,3
+puppy33,25823132,4
+nwl1991,25823132,4
+4617671,25823132,5
+guoguangming,25823132,4
+killerose,25823132,3
+102104781,25823132,4
+60715104,25823132,5
+4315821,25823132,3
+2890081,25823132,3
+58314106,25823132,5
+yingtaozi07,25823132,4
+44724666,25823132,4
+48976051,25823132,4
+50596601,25823132,5
+1075678,25823132,4
+ViamoLee,25823132,3
+56792528,25823132,4
+Yinaly,25823132,4
+henry929,25823132,5
+2857340,25823132,4
+somnor,25823132,5
+134137352,25823132,4
+54862869,25823132,4
+hplwl,25823132,5
+102433139,25823132,5
+izaijin,25823132,4
+126188328,25823132,5
+63177196,25823132,4
+57030274,25823132,3
+adamx,25823132,4
+133188364,25823132,4
+62690697,25823132,5
+121235168,25823132,4
+4190834,25823132,4
+63255258,25823132,5
+59164249,25823132,4
+vivileesun,25823132,4
+125316227,25823132,4
+ops-out,25823132,4
+63012050,25823132,4
+52033116,25823132,3
+43873778,25823132,5
+131337124,25823132,4
+66066845,25823132,4
+65363487,25823132,4
+64121528,25823132,5
+41314472,25823132,4
+g_success,25823132,3
+zhaoyuner,25823132,4
+cyan-syy,25823132,-1
+x7summer,25823132,4
+1520223,25823132,4
+96662969,25823132,2
+lozer,25823132,3
+48971557,25823132,5
+45038508,25823132,4
+chixixiaoyu228,25823132,4
+54449997,25823132,4
+76356031,25823132,4
+su_viaje,25823132,4
+niuruiyao,25823132,5
+57553454,25823132,4
+metaljacket,25823132,3
+57365117,25823132,3
+53396330,25823132,4
+52956842,25823132,2
+47336635,25823132,4
+47227699,25823132,4
+xiaojiuser,25823132,5
+102446060,25823132,5
+131514121,25823132,3
+56074823,25823132,3
+79194135,25823132,4
+45549076,25823132,4
+HoldonBoxer,25823132,5
+48253364,25823132,4
+102718430,25823132,3
+51607995,25823132,5
+81448512,25823132,-1
+VIPP,25823132,4
+46099371,25823132,5
+66140949,25823132,4
+peanut2007,25823132,4
+DY9174,25823132,5
+zayaza,25823132,4
+36964868,25823132,1
+61551903,25823132,3
+shiningkid,25823132,5
+agentying,25823132,4
+tolyi,25823132,1
+106794129,25823132,3
+113286915,25823132,4
+feixianggod,25823132,5
+cijunbutileng,25823132,4
+130940806,25823132,5
+myangel_aj,25823132,5
+49091198,25823132,5
+45650024,25823132,4
+134503726,25823132,4
+nekozamurai,25823132,5
+41534595,25823132,4
+3851929,25823132,3
+72180654,25823132,4
+jieyaren,25823132,3
+75441561,25823132,4
+45123579,25823132,4
+36716093,25823132,5
+Lou-yingying,25823132,5
+Jerry-feng,25823132,4
+60944387,25823132,5
+rap_hael,25823132,5
+58059702,25823132,5
+4841197,25823132,4
+39996045,25823132,4
+38533992,25823132,4
+2222172,25823132,4
+67119457,25823132,-1
+luzhiyu,25823132,4
+67559637,25823132,5
+neotoboy,25823132,5
+nancy8787,25823132,5
+53642273,25823132,4
+39364578,25823132,4
+Ryan-Z,25823132,3
+58159662,25823132,4
+48193233,25823132,5
+63306444,25823132,4
+zixixiangxiang,25823132,4
+51289323,25823132,3
+2828062,25823132,5
+88099677,25823132,4
+84512686,25823132,4
+76216989,25823132,5
+4105021,25823132,4
+51935472,25823132,4
+qstc12345,25823132,4
+89768114,25823132,4
+53061128,25823132,4
+IcbM,25823132,4
+60208186,25823132,3
+loneblog,25823132,-1
+2601089,25823132,4
+cucnmql,25823132,4
+nian-an,25823132,4
+October21,25823132,4
+34948612,25823132,4
+jzhsu,25823132,4
+hlinwang,25823132,4
+76186940,25823132,5
+80914640,25823132,5
+51049860,25823132,4
+91844775,25823132,5
+53868679,25823132,4
+Vo.,25823132,2
+60082922,25823132,3
+SOMOMOKO,25823132,3
+26803264,25823132,5
+60954463,25823132,5
+69101082,25823132,4
+chrisloveleslie,25823132,4
+bigmiao,25823132,4
+AtJuly,25823132,3
+darkaka,25823132,5
+43251708,25823132,4
+59510725,25823132,4
+tiffanyji,25823132,5
+85239246,25823132,4
+80082149,25823132,5
+Losyah,25823132,3
+2783565,25823132,-1
+80999122,25823132,1
+68957542,25823132,5
+32162865,25823132,3
+windwolfyy,25823132,4
+57885335,25823132,5
+57901422,25823132,3
+48369193,25823132,4
+103951444,25823132,5
+crazy0527,25823132,3
+DoCoMo6,25823132,5
+66948108,25823132,3
+35252346,25823132,3
+52739241,25823132,3
+54298835,25823132,5
+TXS0331,25823132,4
+52932994,25823132,4
+windflower18,25823132,5
+2097598,25823132,4
+40299768,25823132,5
+Han-Lyn,25823132,4
+izhangzhu,25823132,5
+fsdrwe,25823132,3
+62004006,25823132,5
+qianqian0929,25823132,4
+Coolslight,25823132,4
+49283723,25823132,4
+2615897,25823132,4
+xr118_,25823132,4
+129283684,25823132,4
+ellestmorte,25823132,4
+54989899,25823132,4
+60389754,25823132,5
+61036613,25823132,5
+kfc2005,25823132,4
+shenxuzhu,25823132,3
+1937304,25823132,4
+twinslt,25823132,5
+66613325,25823132,4
+xiaowangzi1984,25823132,4
+10743426,25823132,5
+131240259,25823132,5
+49073345,25823132,3
+ruudfu,25823132,5
+zq8870690207,25823132,3
+3830976,25823132,3
+53893192,25823132,4
+anxel,25823132,-1
+Csq1994106,25823132,4
+i_wanna,25823132,4
+moquin,25823132,3
+78539431,25823132,5
+120481840,25823132,4
+13836451,25823132,4
+wu.,25823132,4
+43783147,25823132,4
+4521703,25823132,4
+4766836,25823132,4
+41596083,25823132,4
+bingjie,25823132,3
+summerguagua,25823132,3
+40447673,25823132,5
+51933984,25823132,1
+68250216,25823132,4
+128596881,25823132,5
+67462964,25823132,4
+raintingfan,25823132,5
+125961419,25823132,4
+82032675,25823132,3
+liuhan1213,25823132,5
+55362027,25823132,5
+70150082,25823132,4
+Machobabe347,25823132,5
+eill,25823132,3
+seclock,25823132,5
+aprilwind_shi,25823132,5
+56814340,25823132,4
+2787996,25823132,4
+MYtachikoma,25823132,4
+50351028,25823132,3
+49488588,25823132,4
+50048603,25823132,5
+63575195,25823132,4
+2162982,25823132,5
+47243761,25823132,4
+jerrysong,25823132,4
+52279505,25823132,4
+2933879,25823132,4
+xueshanfeitu,25823132,5
+41010757,25823132,5
+57437837,25823132,4
+3192663,25823132,4
+xelnnaga,25823132,5
+4468477,25823132,-1
+exingxin,25823132,5
+yt0310,25823132,5
+65948631,25823132,5
+33329266,25823132,4
+12594639,25823132,5
+49435636,25823132,5
+walinee,25823132,5
+78410323,25823132,5
+78347009,25823132,3
+127934825,25823132,5
+zxjtmac,25823132,5
+48471753,25823132,4
+71455965,25823132,4
+45869001,25823132,5
+55536216,25823132,5
+76316294,25823132,4
+36961026,25823132,3
+liusbing,25823132,4
+3569506,25823132,5
+49983823,25823132,3
+alamao,25823132,5
+starkingstar,25823132,5
+124631835,25823132,3
+59429603,25823132,4
+41833499,25823132,4
+3010194,25823132,5
+75015059,25823132,-1
+1030614,25823132,5
+84849322,25823132,4
+panda919,25823132,3
+121586775,25823132,4
+62182479,25823132,4
+90693032,25823132,4
+53656219,25823132,4
+4269560,25823132,3
+jessie1989,25823132,5
+summer000000,25823132,5
+huanghongyang,25823132,5
+79306162,25823132,5
+cl411,25823132,4
+67980899,25823132,4
+68977947,25823132,5
+4431102,25823132,5
+4675303,25823132,4
+25464691,25823132,5
+xwj86,25823132,5
+31743160,25823132,4
+74061622,25823132,5
+99933659,25823132,3
+32995807,25823132,3
+wangweijie,25823132,4
+wuzhuan105,25823132,4
+4389847,25823132,3
+52918110,25823132,4
+1971155,25823132,5
+45838830,25823132,5
+birdersky,25823132,4
+3863337,25823132,4
+50047548,25823132,-1
+48795907,25823132,5
+62457534,25823132,5
+65930256,25823132,3
+50193718,25823132,5
+48278787,25823132,-1
+yueningxin,25823132,4
+78569938,25823132,5
+dongxuanlan,25823132,4
+2110865,25823132,3
+64180484,25823132,3
+48657704,25823132,5
+7922500,25823132,5
+38811434,25823132,4
+45660957,25823132,5
+91573235,25823132,5
+58090967,25823132,4
+4454692,25823132,4
+58038404,25823132,5
+zhang117,25823132,5
+130988431,25823132,4
+ercan,25823132,4
+domire,25823132,4
+123231401,25823132,4
+52430897,25823132,5
+jeansolove,25823132,3
+zhaoyingjia,25823132,4
+36688591,25823132,5
+fallistuzi,25823132,4
+89024356,25823132,4
+60593481,25823132,4
+2221354,25823132,4
+83881122,25823132,5
+moranyushi,25823132,5
+45840537,25823132,4
+cyrial,25823132,4
+liux516,25823132,3
+caesarphoenix,25823132,4
+69248100,25823132,4
+2666968,25823132,4
+87659310,25823132,5
+48909711,25823132,5
+74937470,25823132,5
+120250612,25823132,4
+58762404,25823132,5
+63004636,25823132,4
+aqinxia,25823132,4
+allancat,25823132,5
+70507408,25823132,5
+58005580,25823132,4
+39913165,25823132,4
+givindream,25823132,5
+56054406,25823132,4
+xx218,25823132,4
+76684306,25823132,4
+xinlinguer,25823132,-1
+34794492,25823132,5
+1011787,25823132,3
+51219877,25823132,4
+uinne,25823132,5
+83133983,25823132,5
+3937689,25823132,4
+akilal,25823132,5
+83658918,25823132,-1
+SmilingJune,25823132,3
+shalala41390,25823132,2
+levitating,25823132,3
+107200905,25823132,5
+4524238,25823132,5
+69211517,25823132,4
+3368328,25823132,4
+4590914,25823132,5
+fish6058,25823132,5
+62500466,25823132,5
+76185877,25823132,5
+73111916,25823132,5
+43887086,25823132,4
+1132028,25823132,5
+50011415,25823132,4
+81061970,25823132,3
+44006708,25823132,5
+55885423,25823132,5
+65137697,25823132,5
+59471293,25823132,5
+62282689,25823132,4
+qianzhuo,25823132,5
+fxl0977,25823132,4
+115919297,25823132,4
+pinkskin,25823132,4
+53768020,25823132,4
+2859857,25823132,4
+AnNnNnNnNnA,25823132,4
+biskup,25823132,5
+61080306,25823132,5
+96514775,25823132,5
+51346390,25823132,5
+Bugbear1,25823132,-1
+13569368,25823132,4
+73640215,25823132,4
+50023585,25823132,4
+kk_22,25823132,4
+shoufy,25823132,4
+51592058,25823132,4
+44066476,25823132,4
+41069819,25823132,3
+loooli,25823132,4
+56028399,25823132,5
+deepe,25823132,3
+3539441,25823132,4
+baoqiddpp,25823132,4
+56411907,25823132,3
+58603704,25823132,3
+39759739,25823132,5
+48953772,25823132,3
+sl19910727,25823132,5
+angelmagazine,25823132,4
+83389859,25823132,4
+23733715,25823132,4
+2472751,25823132,4
+65687089,25823132,4
+57213151,25823132,3
+2116998,25823132,4
+suxiaopo,25823132,3
+49087198,25823132,5
+Vanessa.,25823132,4
+siyuexia,25823132,5
+36633049,25823132,4
+82583986,25823132,4
+95213691,25823132,5
+naiveal,25823132,3
+35330234,25823132,3
+quite-yacca,25823132,4
+Halbert-Sun,25823132,4
+14264766,25823132,4
+zouzouwanwan,25823132,4
+2922353,25823132,3
+91649977,25823132,5
+daisy_0629,25823132,5
+48354152,25823132,4
+jocelyn1213,25823132,4
+4026169,25823132,4
+kongyan15,25823132,4
+34568653,25823132,5
+Amymy,25823132,4
+4077141,25823132,4
+zzmynn,25823132,3
+2740339,25823132,3
+52597615,25823132,4
+purple_kenny,25823132,4
+1068202,25823132,4
+126189333,25823132,5
+3105123,25823132,5
+im-zhuang,25823132,-1
+beikou,25823132,-1
+lunaa,25823132,5
+downstream,25823132,5
+48581520,25823132,4
+2485814,25823132,4
+51241750,25823132,4
+renzrxly,25823132,4
+khuntracie,25823132,3
+78706605,25823132,3
+67679868,25823132,3
+14484123,25823132,3
+3428812,25823132,5
+sugarman638,25823132,3
+50880028,25823132,4
+1708899,25823132,4
+91108237,25823132,5
+80676300,25823132,5
+louis15yao,25823132,4
+47161223,25823132,4
+46507893,25823132,4
+craystal,25823132,4
+43784506,25823132,4
+honestydudu,25823132,4
+meiyulin,25823132,4
+69986931,25823132,4
+49531953,25823132,5
+96730730,25823132,5
+38327139,25823132,3
+55511378,25823132,4
+nianlu,25823132,2
+47995436,25823132,5
+songofmomo,25823132,5
+peoplehlj,25823132,4
+23832452,25823132,4
+kilts,25823132,4
+YvonneGQ,25823132,4
+XXXXXmian,25823132,3
+King-master,25823132,5
+16413081,25823132,5
+atian0613,25823132,4
+77644475,25823132,4
+58956740,25823132,4
+ricechow,25823132,4
+62426044,25823132,4
+alianhei,25823132,4
+65013902,25823132,3
+53603990,25823132,5
+119248717,25823132,5
+108797239,25823132,5
+41648161,25823132,4
+2471325,25823132,5
+nocturnetian,25823132,4
+13366907,25823132,4
+nicdone,25823132,4
+4543724,25823132,5
+35499398,25823132,5
+wshan,25823132,2
+1295507,25823132,4
+55761413,25823132,3
+60717435,25823132,4
+xudi,25823132,4
+60119370,25823132,4
+48586700,25823132,5
+evan.liew,25823132,3
+kiwizhao,25823132,4
+128719565,25823132,4
+4839057,25823132,3
+105901752,25823132,1
+49188433,25823132,4
+40013410,25823132,3
+cooiky,25823132,-1
+60002715,25823132,3
+62276848,25823132,4
+52762831,25823132,4
+82261308,25823132,5
+44937867,25823132,4
+127008939,25823132,5
+52739687,25823132,3
+59102121,25823132,5
+lazyariel,25823132,5
+monster1000,25823132,4
+54807019,25823132,4
+jessica106,25823132,5
+69320589,25823132,4
+qq120286102030,25823132,5
+3540030,25823132,4
+COKAINGZ,25823132,5
+mikadu,25823132,5
+75332945,25823132,5
+15183757,25823132,3
+charmine913,25823132,4
+quzheng1986,25823132,5
+83209029,25823132,5
+3662890,25823132,5
+lunxian414,25823132,3
+88045076,25823132,4
+63412313,25823132,4
+100324027,25823132,5
+2892582,25823132,5
+46920813,25823132,4
+lvwenzhi,25823132,4
+47708669,25823132,4
+sammi_koo,25823132,5
+edward1988,25823132,2
+Gorjess3,25823132,4
+51902559,25823132,-1
+babyroll,25823132,5
+ameliuge,25823132,5
+moontooth,25823132,5
+tintin_yu,25823132,3
+znnancy,25823132,4
+84261396,25823132,4
+11630561,25823132,4
+13823787,25823132,4
+49969778,25823132,4
+3845956,25823132,5
+81607262,25823132,4
+71450042,25823132,5
+62879463,25823132,4
+123156411,25823132,5
+49041095,25823132,5
+wlpfeiyang,25823132,4
+47212439,25823132,4
+1459659,25823132,5
+giacintaxx,25823132,4
+Joyce1031,25823132,4
+xtnancyly,25823132,5
+Bleaker,25823132,4
+85807048,25823132,5
+lxklzy,25823132,4
+wengxiaolan,25823132,5
+Chayhaw,25823132,5
+missbean1993,25823132,4
+63659583,25823132,3
+121180696,25823132,5
+123361030,25823132,5
+41951732,25823132,4
+ffliens,25823132,4
+45065016,25823132,5
+yue1992,25823132,4
+49585135,25823132,2
+67001432,25823132,4
+54977613,25823132,4
+2063974,25823132,3
+56445432,25823132,5
+teikamouse,25823132,4
+46256555,25823132,3
+32433633,25823132,4
+131849470,25823132,3
+55771467,25823132,3
+3951378,25823132,4
+78270101,25823132,2
+58934607,25823132,4
+46279722,25823132,5
+128681917,25823132,5
+70630808,25823132,5
+90497185,25823132,4
+75174851,25823132,5
+86208688,25823132,4
+3131808,25823132,4
+62502651,25823132,4
+diwuphoto,25823132,5
+wondereveryway,25823132,5
+4058668,25823132,4
+108210499,25823132,3
+68936327,25823132,5
+54915299,25823132,5
+60826235,25823132,5
+Anny1209,25823132,5
+torreslee,25823132,4
+36429054,25823132,4
+69569015,25823132,4
+linngallery,25823132,5
+mercla,25823132,3
+zlpEcho,25823132,4
+3005993,25823132,3
+33940050,25823132,4
+127073783,25823132,5
+lovexiaoyan,25823132,4
+lophiexu,25823132,5
+fydi,25823132,4
+89542438,25823132,5
+123473233,25823132,4
+1530502,25823132,4
+83143182,25823132,5
+114413870,25823132,5
+60947985,25823132,4
+52712691,25823132,5
+3969420,25823132,4
+3287454,25823132,3
+akilaa,25823132,4
+62744692,25823132,5
+zephyrliu,25823132,4
+33662084,25823132,4
+64517652,25823132,4
+54647803,25823132,5
+52201112,25823132,5
+hmily0316,25823132,5
+61462956,25823132,4
+cynthia3922,25823132,3
+shutantan,25823132,5
+99329704,25823132,4
+christinacyy,25823132,4
+67958148,25823132,4
+3256263,25823132,4
+46228308,25823132,5
+66900616,25823132,5
+53430385,25823132,5
+133634181,25823132,4
+cutelucky,25823132,5
+VliBig,25823132,5
+10918942,25823132,4
+47457564,25823132,3
+1351226,25823132,4
+68635736,25823132,5
+kekeying,25823132,5
+69068594,25823132,4
+stardust1030,25823132,3
+63528456,25823132,5
+antony1994,25823132,5
+jellysmiling,25823132,4
+122061245,25823132,4
+bxg555,25823132,-1
+groupie,25823132,3
+76395595,25823132,4
+51762574,25823132,4
+2826756,25823132,3
+82889509,25823132,5
+3559769,25823132,4
+phoebe211,25823132,4
+132438473,25823132,3
+82496421,25823132,4
+133486624,25823132,5
+misswatermelon,25823132,4
+49332508,25823132,4
+64038122,25823132,3
+2235528,25823132,4
+shinpiea,25823132,4
+36707138,25823132,3
+VenusDoom,25823132,4
+59456445,25823132,5
+3430593,25823132,5
+95929567,25823132,4
+84311404,25823132,4
+84311404,25823132,4
+132348134,25823132,3
+79089179,25823132,5
+dearza01,25823132,4
+xuansunjipu,25823132,5
+buchimifan,25823132,3
+48972319,25823132,4
+2538688,25823132,5
+61111185,25823132,4
+47647061,25823132,4
+11514890,25823132,4
+83360787,25823132,4
+38487515,25823132,5
+4660466,25823132,4
+69441778,25823132,5
+115324297,25823132,3
+71867547,25823132,4
+65062440,25823132,5
+G20100425nivel,25823132,4
+78696619,25823132,3
+74799167,25823132,5
+59997800,25823132,4
+63287228,25823132,5
+Bingbing.,25823132,5
+3478406,25823132,3
+95670618,25823132,4
+34549773,25823132,5
+131811211,25823132,4
+75909451,25823132,4
+11508993,25823132,4
+105599956,25823132,3
+134128447,25823132,4
+hans_berdych,25823132,3
+51994220,25823132,5
+53810195,25823132,5
+49086461,25823132,5
+34234049,25823132,5
+3612252,25823132,4
+sunxujjack,25823132,4
+43891260,25823132,4
+41855603,25823132,4
+kylingu,25823132,4
+44006704,25823132,3
+1363336,25823132,4
+4157643,25823132,4
+53994755,25823132,3
+46856853,25823132,4
+82089919,25823132,4
+3506880,25823132,4
+70341874,25823132,2
+90752833,25823132,5
+iGatsby,25823132,5
+97114018,25823132,4
+45937211,25823132,5
+1504581,25823132,4
+41486823,25823132,4
+89567046,25823132,4
+liyunhui,25823132,4
+49772004,25823132,4
+yoxi222,25823132,5
+angle223,25823132,3
+Creep_,25823132,4
+55324515,25823132,3
+63423532,25823132,5
+134289154,25823132,4
+63603619,25823132,4
+48167301,25823132,4
+91994560,25823132,4
+ggqgu,25823132,4
+xboncher233,25823132,4
+115772568,25823132,3
+kimixu1017,25823132,4
+32541255,25823132,5
+62650109,25823132,4
+128391075,25823132,5
+CeciliaQueen,25823132,5
+guobingyao728,25823132,4
+45480122,25823132,5
+68318202,25823132,5
+wangjia0702,25823132,5
+2107434,25823132,2
+131495477,25823132,5
+moliao,25823132,4
+50405161,25823132,3
+monsterbaby,25823132,5
+wangliran,25823132,4
+41127888,25823132,4
+vitamin27,25823132,5
+4213368,25823132,5
+ILWTFT,25823132,3
+68583073,25823132,4
+loserisit,25823132,5
+103717318,25823132,4
+perseus2009,25823132,3
+41686939,25823132,5
+Kishimushroom,25823132,4
+f91_82,25823132,5
+54770734,25823132,3
+ceh19930603,25823132,3
+78914788,25823132,4
+45463396,25823132,4
+4283595,25823132,5
+mimosa_tara,25823132,4
+w_weixing,25823132,5
+32541723,25823132,5
+63247781,25823132,5
+50657559,25823132,5
+holynight,25823132,3
+59929388,25823132,3
+xiaojingyush,25823132,4
+46836947,25823132,4
+45982097,25823132,5
+88719109,25823132,5
+74601156,25823132,3
+3693808,25823132,5
+130599620,25823132,4
+merengue,25823132,4
+kofee,25823132,5
+62351705,25823132,5
+4318512,25823132,4
+132728475,25823132,4
+56670282,25823132,3
+54090244,25823132,4
+130938555,25823132,4
+54845592,25823132,4
+kikyo531,25823132,5
+xiangdahai,25823132,4
+43187124,25823132,5
+68990799,25823132,5
+27085704,25823132,5
+grinch,25823132,2
+59805346,25823132,4
+129087038,25823132,5
+74932520,25823132,4
+swimming7891,25823132,4
+122296517,25823132,4
+shouhulantian,25823132,4
+66339819,25823132,5
+47452659,25823132,4
+4241910,25823132,4
+44182899,25823132,4
+92331243,25823132,4
+47294835,25823132,5
+60878801,25823132,4
+59005410,25823132,3
+princesssyn,25823132,4
+3522119,25823132,4
+sumisumi,25823132,4
+130044129,25823132,4
+21407911,25823132,5
+55286449,25823132,5
+maomaomaoyl,25823132,5
+1653522,25823132,5
+leosy,25823132,4
+2799911,25823132,5
+119942879,25823132,3
+gexiarong,25823132,3
+laomi92,25823132,4
+14042957,25823132,5
+niki7564,25823132,3
+69428274,25823132,5
+71596124,25823132,4
+29345085,25823132,5
+119583854,25823132,5
+79534450,25823132,4
+56721088,25823132,2
+52836731,25823132,5
+3791471,25823132,5
+104823216,25823132,4
+qiaowu2,25823132,5
+1991085,25823132,4
+62762871,25823132,4
+32875200,25823132,5
+8401919,25823132,4
+62063835,25823132,3
+73687210,25823132,4
+52889400,25823132,3
+25685225,25823132,3
+62401840,25823132,5
+ruoruomia,25823132,5
+2266961,25823132,5
+3783132,25823132,4
+poetchou,25823132,4
+ruudgoal,25823132,4
+39890237,25823132,5
+121021780,25823132,4
+71023450,25823132,3
+59556078,25823132,5
+65520788,25823132,4
+46281534,25823132,4
+130735639,25823132,4
+onlyck,25823132,3
+79666954,25823132,3
+134494053,25823132,5
+80734129,25823132,3
+sodasue,25823132,3
+35552022,25823132,5
+fengjiansun,25823132,3
+61271737,25823132,4
+126980247,25823132,5
+132958067,25823132,4
+62377440,25823132,4
+81080319,25823132,5
+130603786,25823132,5
+48523065,25823132,3
+fenlanbingyan,25823132,4
+45194143,25823132,3
+yuuu,25823132,4
+66880325,25823132,5
+sugustmac,25823132,5
+akizou,25823132,4
+mazedcity,25823132,4
+jammy48,25823132,3
+65075320,25823132,5
+veiko,25823132,4
+134520468,25823132,3
+akin11,25823132,4
+60221654,25823132,4
+48827946,25823132,5
+79108534,25823132,3
+jiqingyi,25823132,4
+133695436,25823132,3
+74807963,25823132,4
+58114577,25823132,4
+58284443,25823132,4
+3581002,25823132,5
+70884450,25823132,4
+89308454,25823132,4
+121736995,25823132,4
+92147297,25823132,5
+81916130,25823132,5
+YounG52009,25823132,3
+34034650,25823132,3
+3850256,25823132,5
+15923288,25823132,4
+55622517,25823132,1
+104056203,25823132,4
+39863904,25823132,5
+45957568,25823132,5
+41521035,25823132,3
+illusy,25823132,5
+3497982,25823132,5
+lotus_yc,25823132,5
+121612994,25823132,4
+107635262,25823132,4
+75909471,25823132,4
+3598072,25823132,4
+83493569,25823132,4
+67984945,25823132,4
+126838227,25823132,4
+120151337,25823132,5
+cookiemadam,25823132,4
+44789325,25823132,5
+15497319,25823132,-1
+2298833,25823132,2
+33688715,25823132,4
+53431261,25823132,5
+yueyuebetty,25823132,-1
+kirahome,25823132,2
+38770333,25823132,5
+Jobszhuisui9,25823132,5
+130692853,25823132,4
+88260020,25823132,4
+4173758,25823132,5
+61544139,25823132,5
+orangeorange6,25823132,3
+50694781,25823132,3
+y_XO,25823132,5
+11658942,25823132,4
+73958247,25823132,5
+70539132,25823132,5
+57925126,25823132,5
+51171341,25823132,3
+104056990,25823132,-1
+addff,25823132,3
+eason0210,25823132,2
+LeonJunki,25823132,3
+superkite,25823132,4
+13024588,25823132,5
+53942243,25823132,4
+Sigrid_Lu,25823132,3
+answer0545716,25823132,5
+115662069,25823132,5
+wangsmoly,25823132,4
+24792867,25823132,5
+60357094,25823132,4
+44316758,25823132,4
+3397020,25823132,4
+46630645,25823132,5
+maohei,25823132,3
+wmsdaishu,25823132,5
+zydaydream,25823132,5
+zhangluning,25823132,4
+27898838,25823132,3
+67125371,25823132,4
+58605674,25823132,5
+hotaru925,25823132,4
+14415630,25823132,4
+marvelwei,25823132,4
+62658973,25823132,4
+alfiestudio,25823132,5
+69819504,25823132,4
+SMC,25823132,-1
+58938467,25823132,5
+merryliang,25823132,4
+3865857,25823132,1
+126469352,25823132,3
+bergy10,25823132,4
+simonpeter,25823132,5
+83989454,25823132,5
+maxmaya,25823132,4
+52384106,25823132,4
+61824176,25823132,5
+96331633,25823132,5
+tonie,25823132,4
+leftsun0923,25823132,5
+zr8359,25823132,4
+quande,25823132,5
+48929842,25823132,4
+dahuanghxm,25823132,4
+38448469,25823132,5
+59794216,25823132,4
+8459513,25823132,3
+48725322,25823132,5
+133053658,25823132,5
+2340389,25823132,4
+94872079,25823132,5
+1148225,25823132,4
+dai0927,25823132,3
+36576530,25823132,4
+55624184,25823132,3
+44412936,25823132,4
+28979759,25823132,-1
+82249256,25823132,5
+49139242,25823132,5
+81822817,25823132,3
+2774956,25823132,4
+82770763,25823132,4
+ynian2011,25823132,4
+52286623,25823132,4
+whorubb,25823132,4
+121892686,25823132,2
+12962566,25823132,4
+dorayo,25823132,5
+69822780,25823132,3
+spicymilk,25823132,4
+73421771,25823132,4
+ludi0511,25823132,4
+morekai,25823132,5
+41930212,25823132,4
+reader_racer,25823132,4
+twochow,25823132,4
+2787490,25823132,4
+113591698,25823132,5
+44072732,25823132,4
+winson8883,25823132,4
+42149787,25823132,3
+45484861,25823132,3
+45034440,25823132,4
+Hiedra,25823132,3
+2233142,25823132,4
+Melo-sf,25823132,5
+Kay.X,25823132,4
+119270472,25823132,4
+57221305,25823132,5
+51756800,25823132,5
+zod798,25823132,3
+86204468,25823132,3
+huti,25823132,5
+77644996,25823132,4
+47755264,25823132,3
+1876785,25823132,4
+121763704,25823132,5
+67534702,25823132,4
+2310617,25823132,5
+129691770,25823132,5
+56567872,25823132,5
+104600854,25823132,5
+4826633,25823132,5
+50451911,25823132,4
+shallwe07,25823132,3
+luisella,25823132,5
+4075540,25823132,4
+gushenshen,25823132,4
+67280333,25823132,5
+104364581,25823132,4
+38781616,25823132,5
+129101053,25823132,2
+35369841,25823132,4
+Tumemanques,25823132,4
+49586478,25823132,4
+72100141,25823132,5
+sjzqzkn,25823132,4
+xiaopinshan,25823132,5
+38300211,25823132,4
+xxe,25823132,5
+daisy6270,25823132,3
+37914560,25823132,4
+69998360,25823132,4
+haejia,25823132,4
+wuzouhuanghun,25823132,4
+82582719,25823132,4
+65002965,25823132,5
+injune,25823132,5
+34142242,25823132,5
+28839183,25823132,3
+julia1231,25823132,5
+131538725,25823132,4
+47532440,25823132,5
+49166988,25823132,4
+134183599,25823132,4
+61722322,25823132,4
+109867334,25823132,5
+70251175,25823132,4
+119145690,25823132,3
+69350997,25823132,5
+cicihappy,25823132,5
+maidangdang,25823132,4
+53238172,25823132,5
+40787821,25823132,5
+justinnext,25823132,3
+63454756,25823132,3
+52890425,25823132,4
+131009254,25823132,3
+48476618,25823132,5
+56132213,25823132,5
+sophie_Han,25823132,5
+66580589,25823132,4
+mangomangotree,25823132,4
+70918450,25823132,5
+42290775,25823132,5
+ballwen,25823132,4
+2202052,25823132,5
+56104621,25823132,2
+cherryfeng,25823132,4
+kjslove,25823132,2
+aikki27,25823132,-1
+olivia1016,25823132,4
+58547520,25823132,5
+Peiyixuan,25823132,4
+84250645,25823132,4
+71336529,25823132,3
+79582390,25823132,5
+wutheringshi,25823132,4
+79302633,25823132,5
+52036087,25823132,4
+121568939,25823132,3
+June_1,25823132,4
+finalcab,25823132,5
+59406381,25823132,4
+josephine1982,25823132,5
+zebrapang,25823132,5
+xiaoyutoufengla,25823132,4
+58158315,25823132,4
+dvddvd,25823132,5
+4470750,25823132,5
+48499071,25823132,3
+q5240689,25823132,4
+sunnyisle,25823132,4
+emmalty,25823132,3
+emmalty,25823132,3
+75741734,25823132,4
+nightSue,25823132,3
+cantona_x,25823132,3
+78679982,25823132,3
+liuweilian,25823132,5
+moonillusion,25823132,-1
+phoebechin,25823132,4
+49558819,25823132,5
+61308087,25823132,4
+97042268,25823132,5
+58863257,25823132,5
+36620883,25823132,4
+momojasper,25823132,5
+34227574,25823132,4
+changeable123,25823132,4
+weixiaobaobao,25823132,5
+56019586,25823132,5
+130706971,25823132,5
+44146004,25823132,5
+1138243,25823132,4
+53437976,25823132,5
+63950350,25823132,5
+48949607,25823132,4
+2309689,25823132,4
+46428362,25823132,5
+46333291,25823132,5
+63643182,25823132,4
+Irish0625,25823132,3
+62517955,25823132,-1
+79847046,25823132,4
+2256967,25823132,5
+121182825,25823132,5
+52883078,25823132,4
+chinhao,25823132,3
+jimoxing,25823132,5
+blackcoder,25823132,3
+67730092,25823132,5
+61273725,25823132,5
+missneuf,25823132,4
+65970423,25823132,4
+1761319,25823132,4
+evvvyyyy,25823132,4
+81626321,25823132,5
+43671696,25823132,4
+122729888,25823132,5
+62434188,25823132,5
+134103385,25823132,4
+85285625,25823132,4
+Suki_N,25823132,4
+123818120,25823132,3
+51342796,25823132,5
+76990051,25823132,5
+yinghu,25823132,5
+76781309,25823132,5
+82367083,25823132,5
+132410493,25823132,5
+132681108,25823132,5
+akanetx,25823132,4
+frontboy,25823132,3
+geniuswan,25823132,3
+130591545,25823132,5
+zero520,25823132,4
+Phoebe_oovoo,25823132,5
+annieaiannie,25823132,3
+60370348,25823132,3
+75025238,25823132,3
+nbyuan,25823132,3
+15097830,25823132,3
+55887689,25823132,5
+urslee,25823132,5
+88098533,25823132,5
+44632827,25823132,2
+49207665,25823132,4
+lanxiaxia,25823132,5
+130497320,25823132,4
+27951374,25823132,3
+133995878,25823132,5
+97190938,25823132,3
+91038932,25823132,5
+51713363,25823132,4
+130692591,25823132,5
+53276845,25823132,5
+85901553,25823132,4
+dmyra1011,25823132,5
+46225547,25823132,4
+luoqiuyue,25823132,4
+49382185,25823132,3
+57980305,25823132,4
+53094976,25823132,4
+46659356,25823132,5
+Jash1118,25823132,5
+over-young,25823132,4
+17672710,25823132,3
+73031414,25823132,4
+4742483,25823132,-1
+81312576,25823132,4
+daangel,25823132,3
+58231376,25823132,4
+71887540,25823132,5
+37848161,25823132,4
+59716419,25823132,5
+47172452,25823132,3
+62020982,25823132,5
+78192927,25823132,5
+79625860,25823132,4
+76239452,25823132,4
+51881228,25823132,4
+2238966,25823132,4
+27627449,25823132,3
+nimonnwang,25823132,5
+131016761,25823132,5
+52132683,25823132,5
+44709379,25823132,5
+49913221,25823132,5
+xiaojirou007,25823132,4
+68177304,25823132,5
+84195999,25823132,5
+Guardianangel,25823132,5
+69680398,25823132,5
+48119351,25823132,4
+121120829,25823132,5
+61326844,25823132,5
+47372422,25823132,5
+130362078,25823132,4
+baishibaihu,25823132,3
+84675514,25823132,5
+74818677,25823132,3
+108394568,25823132,3
+34546789,25823132,-1
+peace_lee,25823132,4
+37250784,25823132,5
+chimianbaodemao,25823132,3
+yixiujie,25823132,4
+3617275,25823132,4
+Freya-ice,25823132,5
+67677954,25823132,4
+harukimlee,25823132,5
+115695650,25823132,4
+55024300,25823132,5
+shuonidaye,25823132,4
+26419001,25823132,5
+63627403,25823132,5
+50275536,25823132,2
+11561453,25823132,4
+69857353,25823132,4
+109169757,25823132,4
+71057399,25823132,4
+shuizhimuhua,25823132,5
+childdream,25823132,5
+2914496,25823132,5
+124454581,25823132,4
+123504720,25823132,5
+maertaren,25823132,4
+127145817,25823132,4
+calypso29,25823132,4
+57833598,25823132,5
+Larkspurlazarus,25823132,-1
+tender_night,25823132,-1
+vradica,25823132,4
+55529322,25823132,5
+swell1019,25823132,4
+EiffelSunrise,25823132,5
+2374450,25823132,5
+50293215,25823132,4
+58886429,25823132,4
+92230776,25823132,4
+132954430,25823132,4
+46329546,25823132,4
+unknown-place,25823132,5
+55970012,25823132,4
+102331795,25823132,4
+2233454,25823132,5
+2691100,25823132,3
+127112078,25823132,4
+maydayclouds,25823132,4
+2229038,25823132,3
+75222442,25823132,5
+lfj1016,25823132,4
+91545129,25823132,5
+3717542,25823132,4
+119151261,25823132,4
+71950308,25823132,4
+Katharine205,25823132,4
+Emily723,25823132,5
+classical622,25823132,5
+4186658,25823132,3
+2985135,25823132,4
+75220452,25823132,5
+75829238,25823132,5
+AlexYJ,25823132,4
+120781613,25823132,3
+AliceZ,25823132,4
+116649672,25823132,5
+82321138,25823132,4
+81042721,25823132,5
+2417136,25823132,5
+48695154,25823132,4
+84608070,25823132,4
+57214683,25823132,4
+122873308,25823132,5
+19848707,25823132,3
+122048990,25823132,5
+53169248,25823132,4
+35007149,25823132,4
+47835044,25823132,4
+100303280,25823132,4
+128353754,25823132,3
+57161995,25823132,5
+maixiaochun,25823132,4
+45107841,25823132,1
+129533543,25823132,4
+69320250,25823132,4
+54826965,25823132,5
+57726967,25823132,4
+84564093,25823132,4
+jinzeyu007,25823132,4
+TaTaxxxx,25823132,4
+43767898,25823132,5
+misssusie,25823132,4
+sachi227,25823132,5
+100294226,25823132,-1
+iear,25823132,4
+bihan,25823132,4
+83938738,25823132,5
+38497653,25823132,5
+60029856,25823132,3
+53778664,25823132,2
+2295492,25823132,4
+120287477,25823132,4
+51840690,25823132,4
+130365524,25823132,5
+qiabeibei314,25823132,4
+delchisio,25823132,4
+131466194,25823132,4
+4560593,25823132,4
+57580353,25823132,5
+fivero,25823132,5
+125182895,25823132,5
+78898515,25823132,5
+qiaomai,25823132,3
+97623200,25823132,3
+shinesday,25823132,5
+109040050,25823132,4
+131208902,25823132,4
+1182787,25823132,1
+mrsrost,25823132,3
+49711912,25823132,4
+jewelshao,25823132,4
+everlastingEGO,25823132,4
+4518731,25823132,4
+122526882,25823132,5
+liuxiangyu,25823132,5
+63606511,25823132,3
+45574013,25823132,4
+82817173,25823132,5
+50867193,25823132,5
+46767086,25823132,5
+ibx,25823132,4
+85250768,25823132,-1
+17354448,25823132,2
+68031960,25823132,-1
+winderwing,25823132,4
+69388549,25823132,4
+Sheeplady,25823132,4
+islandmeng,25823132,-1
+63436872,25823132,3
+4753861,25823132,3
+2678642,25823132,4
+53817584,25823132,5
+3887543,25823132,4
+52271834,25823132,5
+babyxy006,25823132,5
+rarabbit,25823132,5
+theasir,25823132,5
+sfroompp,25823132,4
+78350906,25823132,2
+qino,25823132,4
+1352823,25823132,4
+3113509,25823132,4
+athenasaga,25823132,4
+4313714,25823132,4
+44669432,25823132,5
+qbdog,25823132,5
+clytzesmile,25823132,5
+57449856,25823132,3
+pgdzhua,25823132,3
+14836914,25823132,4
+heyunchao007,25823132,5
+2761640,25823132,4
+yypudding,25823132,5
+50629676,25823132,4
+45242330,25823132,4
+134503446,25823132,5
+babywineer,25823132,4
+chanel0214,25823132,4
+SteelZhao,25823132,4
+16917021,25823132,3
+53554219,25823132,4
+41471656,25823132,4
+50667385,25823132,3
+justinran,25823132,4
+Ekhome,25823132,5
+41212756,25823132,4
+52447788,25823132,3
+mirror-y,25823132,4
+shuaishuaia,25823132,4
+121478447,25823132,4
+saosaoxy,25823132,5
+4429031,25823132,4
+58109745,25823132,4
+dashixiaoshi,25823132,4
+120069048,25823132,4
+57285886,25823132,4
+InTheShadowOfLo,25823132,4
+csp,25823132,3
+26438724,25823132,4
+DrRay,25823132,3
+sodayanzi,25823132,4
+100460859,25823132,3
+44386404,25823132,5
+45355870,25823132,4
+npe,25823132,3
+fafashit,25823132,4
+110901020,25823132,4
+101773163,25823132,4
+flower4me,25823132,5
+beijinglife,25823132,4
+62619587,25823132,5
+3442167,25823132,3
+70619574,25823132,5
+2195767,25823132,4
+81444301,25823132,5
+64134033,25823132,4
+48689695,25823132,5
+119078867,25823132,5
+sethyoung,25823132,4
+54122143,25823132,4
+44437052,25823132,5
+66919459,25823132,4
+134528233,25823132,2
+64359754,25823132,5
+withharrypotter,25823132,5
+91495186,25823132,5
+qianqianaini,25823132,1
+44371183,25823132,5
+73194653,25823132,5
+zhchtcm,25823132,5
+orochimaru94264,25823132,5
+131471616,25823132,3
+3663654,25823132,3
+79698960,25823132,4
+niuxiaohei,25823132,3
+arrogantcolonel,25823132,4
+wxenia9189,25823132,4
+70021353,25823132,5
+3574079,25823132,4
+enjoyleelife,25823132,4
+37110802,25823132,5
+51421184,25823132,4
+130452965,25823132,5
+100582359,25823132,4
+miss7yucki,25823132,5
+82623937,25823132,3
+1370341,25823132,5
+2034934,25823132,4
+kim899,25823132,5
+11788292,25823132,4
+45849847,25823132,5
+2349366,25823132,4
+37146120,25823132,3
+78208494,25823132,4
+124703569,25823132,2
+42841681,25823132,4
+49110008,25823132,3
+38359787,25823132,3
+1783337,25823132,4
+Augustine2015,25823132,4
+parkxiahky,25823132,4
+68085124,25823132,4
+98775139,25823132,5
+44191691,25823132,5
+jasonliu0315,25823132,2
+sugarli,25823132,2
+michaelcc,25823132,4
+74810496,25823132,5
+33382680,25823132,-1
+cos2xhps,25823132,5
+43161702,25823132,2
+KINGRUNRUN,25823132,4
+40040649,25823132,5
+70860940,25823132,3
+68963965,25823132,5
+79567337,25823132,4
+120860718,25823132,4
+papa1968,25823132,5
+tintintsang,25823132,3
+54805128,25823132,5
+DERRICK_ROSE,25823132,4
+49294840,25823132,4
+qd724945697,25823132,4
+onless,25823132,4
+60413316,25823132,4
+91906703,25823132,4
+34059998,25823132,4
+yunqiu,25823132,5
+30267706,25823132,5
+78352623,25823132,5
+72273685,25823132,4
+yakiang,25823132,5
+tuturen,25823132,4
+73863177,25823132,4
+129981670,25823132,4
+yingxxxxx,25823132,-1
+79669043,25823132,5
+2831834,25823132,5
+91066042,25823132,5
+YuNdAoLa,25823132,3
+chenxiangworld,25823132,4
+harriet,25823132,4
+tianyue,25823132,4
+69305068,25823132,3
+jimmyxu1,25823132,5
+1302983,25823132,4
+housecatch123,25823132,5
+seafans,25823132,5
+41706695,25823132,5
+2740592,25823132,4
+sail308,25823132,-1
+qiqiqi1219,25823132,4
+64949949,25823132,4
+viviwin,25823132,4
+chenhaoyuan,25823132,5
+69037881,25823132,3
+40970313,25823132,4
+fumihiko1985,25823132,4
+36507254,25823132,4
+luwenting0110,25823132,4
+70954003,25823132,5
+pure0918,25823132,4
+pgezhu,25823132,3
+69824529,25823132,4
+4115987,25823132,4
+67272740,25823132,4
+Syuan,25823132,5
+4427457,25823132,4
+duduxiongzhifu,25823132,4
+dxq1216,25823132,4
+wangxiaoerhehe,25823132,3
+6169099,25823132,5
+45047336,25823132,3
+unbounder,25823132,4
+75244611,25823132,5
+fupp1119,25823132,5
+3597938,25823132,3
+li_1314,25823132,3
+mayday_apple,25823132,5
+73866765,25823132,4
+MovieL,25823132,4
+61302654,25823132,4
+62716748,25823132,5
+oldclean,25823132,5
+113050393,25823132,5
+xly7788,25823132,4
+75427447,25823132,3
+83927943,25823132,5
+cjc112,25823132,4
+49063613,25823132,5
+33010059,25823132,3
+44345461,25823132,4
+66860143,25823132,4
+yoforyo,25823132,5
+ms0604,25823132,4
+62518074,25823132,4
+81436563,25823132,4
+30270054,25823132,5
+45504245,25823132,4
+fps40,25823132,4
+115725912,25823132,3
+69816487,25823132,1
+48821655,25823132,5
+75812054,25823132,4
+qi-shao-shang,25823132,2
+24900499,25823132,5
+44614198,25823132,5
+Heyimwalker,25823132,5
+49855278,25823132,4
+120216633,25823132,4
+xiaoyuhen,25823132,4
+64463407,25823132,5
+77809977,25823132,5
+1019579,25823132,3
+115547734,25823132,3
+50930270,25823132,5
+46895881,25823132,4
+signal,25823132,5
+stephenyaocn,25823132,5
+74519826,25823132,5
+45974387,25823132,4
+43214194,25823132,4
+60164301,25823132,4
+40177253,25823132,5
+4392294,25823132,4
+58404696,25823132,5
+Ryanzeng,25823132,5
+2906253,25823132,5
+josephinechan,25823132,5
+102958157,25823132,5
+128234602,25823132,5
+58188727,25823132,5
+4370686,25823132,4
+89187307,25823132,5
+3334629,25823132,5
+69236289,25823132,3
+51338179,25823132,5
+53256552,25823132,5
+59555735,25823132,5
+34342480,25823132,5
+48608212,25823132,5
+97936654,25823132,4
+44887235,25823132,4
+49991288,25823132,-1
+toddzhou,25823132,4
+54096060,25823132,4
+78340149,25823132,4
+64757557,25823132,5
+Incognito,25823132,4
+F1vese7enone,25823132,5
+niguize,25823132,3
+51434637,25823132,5
+EMonica,25823132,4
+3173085,25823132,4
+34901213,25823132,4
+woniu0125,25823132,4
+63822026,25823132,5
+lovevision,25823132,4
+79805335,25823132,3
+59544158,25823132,4
+83601520,25823132,5
+14699938,25823132,4
+66355794,25823132,4
+3670661,25823132,3
+daheiluozi,25823132,4
+48217298,25823132,5
+58628338,25823132,5
+60392839,25823132,3
+Eugene07,25823132,4
+Rurutia7,25823132,4
+84657105,25823132,3
+48932419,25823132,4
+128167486,25823132,3
+qiao517,25823132,4
+bonniecheung926,25823132,4
+75325570,25823132,4
+mayday23,25823132,4
+fifa10,25823132,4
+1001195,25823132,4
+Mulholland,25823132,3
+94032593,25823132,4
+shen1,25823132,4
+45467820,25823132,-1
+70294430,25823132,5
+67619742,25823132,3
+73675216,25823132,5
+reave,25823132,4
+63377431,25823132,4
+98224759,25823132,5
+41130036,25823132,3
+3846319,25823132,4
+69616363,25823132,3
+egnus,25823132,4
+80062653,25823132,4
+96936825,25823132,5
+52196517,25823132,5
+49115725,25823132,3
+76368408,25823132,4
+91604108,25823132,4
+14965275,25823132,4
+46897119,25823132,5
+92468807,25823132,3
+86025873,25823132,5
+37402473,25823132,3
+MLLEfanfan,25823132,5
+stomach_ache,25823132,5
+87338384,25823132,3
+66657271,25823132,4
+57825875,25823132,4
+89723194,25823132,4
+4839409,25823132,4
+57844859,25823132,4
+yoonholic,25823132,3
+3905808,25823132,5
+49539687,25823132,4
+60956192,25823132,4
+46011907,25823132,4
+3416063,25823132,4
+90168995,25823132,5
+ice_pudding,25823132,4
+qfmeng,25823132,4
+89269194,25823132,5
+54340888,25823132,3
+43783540,25823132,5
+58810279,25823132,4
+jiangwei199204,25823132,5
+yeyinihao,25823132,4
+67522798,25823132,4
+WAZYZ1115,25823132,5
+47473847,25823132,3
+63752065,25823132,5
+42709375,25823132,5
+darlingtudai,25823132,3
+50953723,25823132,4
+65873693,25823132,5
+71995699,25823132,5
+96233634,25823132,3
+alantsai,25823132,3
+67952869,25823132,5
+57409597,25823132,4
+shosony,25823132,5
+126252523,25823132,5
+36341358,25823132,-1
+68139311,25823132,5
+58594415,25823132,4
+listenmumu,25823132,5
+3276784,25823132,4
+79695986,25823132,5
+wangpeiying,25823132,4
+34557052,25823132,4
+57827177,25823132,5
+F0317,25823132,-1
+58660815,25823132,3
+70446017,25823132,5
+76777443,25823132,2
+59100804,25823132,1
+63612050,25823132,4
+53455992,25823132,3
+43766729,25823132,4
+52143519,25823132,4
+61707984,25823132,5
+2842505,25823132,4
+60729529,25823132,5
+47931130,25823132,5
+Walt_W,25823132,4
+xiaoyao8583,25823132,5
+43290072,25823132,5
+44130742,25823132,5
+102960018,25823132,5
+cindol,25823132,-1
+2803203,25823132,-1
+49740490,25823132,4
+82404312,25823132,4
+49854531,25823132,2
+gongzitian,25823132,3
+107554806,25823132,5
+34132575,25823132,3
+134145147,25823132,5
+louix,25823132,2
+duanziyu,25823132,3
+y19940504,25823132,4
+zaozi,25823132,4
+71859163,25823132,5
+15716080,25823132,5
+62475317,25823132,4
+61445283,25823132,-1
+52917026,25823132,3
+Ruolinleng,25823132,4
+132001770,25823132,3
+daryann,25823132,5
+125852701,25823132,4
+53784803,25823132,4
+3346015,25823132,3
+xiaosongqu,25823132,4
+57545593,25823132,4
+2476748,25823132,4
+121345919,25823132,5
+45476132,25823132,4
+126375178,25823132,4
+134500343,25823132,4
+78955356,25823132,5
+130069802,25823132,5
+51188157,25823132,5
+83505394,25823132,5
+25586254,25823132,5
+65232993,25823132,4
+qingwood,25823132,4
+57947049,25823132,5
+LLsupportsJIM,25823132,5
+65009709,25823132,3
+54906300,25823132,5
+125543859,25823132,5
+73961921,25823132,4
+wtforz,25823132,3
+54756616,25823132,5
+58523222,25823132,3
+xinnii,25823132,5
+90787039,25823132,4
+jiangli1988,25823132,4
+91808189,25823132,4
+1613774,25823132,4
+3418984,25823132,5
+130098092,25823132,5
+65162136,25823132,5
+58798464,25823132,4
+134667518,25823132,4
+1569342,25823132,4
+52862784,25823132,4
+62605833,25823132,5
+bearblindman,25823132,4
+126693961,25823132,4
+RicoCC,25823132,5
+3599865,25823132,5
+52889197,25823132,5
+3640752,25823132,4
+peggyhuang26,25823132,3
+44816197,25823132,4
+67240379,25823132,3
+58379589,25823132,3
+121544957,25823132,4
+130276654,25823132,-1
+3035586,25823132,3
+2986990,25823132,4
+65021113,25823132,4
+81691649,25823132,1
+130115210,25823132,5
+2940018,25823132,4
+lolitahanhan,25823132,4
+84607799,25823132,4
+68869311,25823132,5
+yeslie,25823132,4
+79372510,25823132,5
+Simonsaye,25823132,3
+53050903,25823132,5
+4411528,25823132,5
+60870044,25823132,4
+41576647,25823132,5
+130248738,25823132,4
+65106857,25823132,5
+seaskyLK,25823132,4
+35192408,25823132,4
+honey-honey,25823132,5
+loveloki913,25823132,5
+imoviekobe,25823132,3
+74700188,25823132,5
+47471992,25823132,4
+67953627,25823132,1
+3540779,25823132,-1
+momoD,25823132,5
+maqingyun,25823132,5
+farewell_119,25823132,5
+62743500,25823132,5
+75555636,25823132,5
+60307464,25823132,4
+braquentin,25823132,3
+49277470,25823132,5
+103178426,25823132,4
+4154813,25823132,4
+104427009,25823132,3
+67742715,25823132,4
+zhaoyao0919,25823132,4
+48158663,25823132,5
+48158663,25823132,5
+sharn,25823132,4
+104274348,25823132,5
+2935013,25823132,3
+57090877,25823132,5
+RRspace,25823132,4
+54633281,25823132,5
+130569137,25823132,4
+reika_scar,25823132,4
+119806823,25823132,5
+1892627,25823132,3
+qixuelun,25823132,4
+124254697,25823132,5
+70549270,25823132,5
+121516783,25823132,4
+65274866,25823132,4
+33323456,25823132,4
+fenglianjun,25823132,3
+78190212,25823132,3
+darrenism,25823132,5
+4030321,25823132,3
+45220416,25823132,4
+73061172,25823132,4
+71099135,25823132,5
+2052146,25823132,-1
+irislxxx,25823132,4
+58044228,25823132,3
+wanghaoze,25823132,1
+48911984,25823132,5
+52712122,25823132,4
+81404706,25823132,4
+6019648,25823132,4
+yimairen,25823132,5
+xnywrite2009,25823132,3
+79746301,25823132,4
+76825676,25823132,3
+fan_1220,25823132,4
+kuraaaaa,25823132,5
+elice,25823132,2
+57542378,25823132,4
+87910708,25823132,5
+53168109,25823132,5
+53794054,25823132,4
+smile19890207,25823132,5
+89451365,25823132,4
+29360462,25823132,2
+45804814,25823132,3
+63089726,25823132,5
+76154947,25823132,5
+orangesuan,25823132,3
+67015862,25823132,4
+jj-lee,25823132,4
+69675369,25823132,5
+xu779147197,25823132,4
+49855743,25823132,4
+51202453,25823132,5
+mowenxia,25823132,4
+3982398,25823132,4
+fangbin0516,25823132,3
+103078059,25823132,1
+122517698,25823132,5
+SinceNow1999,25823132,5
+58927939,25823132,4
+122052846,25823132,4
+84698699,25823132,5
+46345138,25823132,4
+49825242,25823132,2
+84593268,25823132,4
+99550697,25823132,1
+93892137,25823132,4
+Fxlly3,25823132,4
+62562678,25823132,4
+57148360,25823132,4
+2829310,25823132,4
+126727200,25823132,-1
+79571053,25823132,4
+guyi87,25823132,5
+ainiruyanjing,25823132,3
+dadafanhe,25823132,4
+130944929,25823132,4
+50450766,25823132,5
+55875465,25823132,5
+warmgun7,25823132,5
+zlqll,25823132,4
+36839358,25823132,5
+yprenkouer,25823132,4
+73766860,25823132,1
+61559703,25823132,5
+108944187,25823132,4
+103374377,25823132,5
+38567114,25823132,4
+108289552,25823132,-1
+121920760,25823132,4
+63547117,25823132,3
+41855333,25823132,4
+1730018,25823132,4
+71126772,25823132,3
+sarahshishui,25823132,4
+59237362,25823132,4
+cecixmas,25823132,5
+1340085,25823132,5
+eleven_11,25823132,5
+48646694,25823132,3
+103163383,25823132,4
+75043360,25823132,3
+103498359,25823132,4
+2213309,25823132,3
+121967825,25823132,4
+66606663,25823132,4
+Leoky,25823132,4
+54417681,25823132,5
+44284036,25823132,4
+2610640,25823132,4
+hvangwei,25823132,5
+yeeeeeee,25823132,3
+3060891,25823132,5
+124640229,25823132,4
+71214465,25823132,4
+53829658,25823132,5
+qX9n,25823132,4
+76841664,25823132,5
+1599200,25823132,4
+radiooo,25823132,3
+122258109,25823132,4
+chenru_liu,25823132,5
+90967014,25823132,5
+63211106,25823132,4
+124142241,25823132,3
+43800629,25823132,4
+63084049,25823132,5
+piaoweier,25823132,4
+alvinchan1226,25823132,4
+1587535,25823132,4
+65029025,25823132,3
+xiaozhubaobao,25823132,4
+x1Ao_y,25823132,5
+50062390,25823132,3
+gdragon-ily,25823132,5
+80817324,25823132,3
+goodmushroom,25823132,5
+yhrchong,25823132,4
+49145944,25823132,4
+46010081,25823132,4
+earlyzaozao,25823132,3
+40727949,25823132,4
+annho,25823132,5
+52583509,25823132,3
+16150430,25823132,4
+63767330,25823132,4
+50926960,25823132,4
+amhuming,25823132,3
+73084756,25823132,4
+40401113,25823132,4
+57105566,25823132,3
+46053347,25823132,5
+45489324,25823132,4
+a55h01e,25823132,5
+ellie0314,25823132,5
+realien,25823132,4
+33783341,25823132,4
+gu_yan,25823132,4
+122039396,25823132,4
+cyrus_wong,25823132,4
+73827929,25823132,5
+46815070,25823132,3
+richer725,25823132,3
+122974709,25823132,5
+61654063,25823132,4
+45441570,25823132,4
+zuiaiyanda,25823132,2
+mylittletower,25823132,5
+fangxinse,25823132,5
+fearlessfuture,25823132,4
+90564869,25823132,4
+37682814,25823132,5
+67695770,25823132,5
+VLR,25823132,5
+68453321,25823132,5
+xumhandy,25823132,4
+elisha_gai,25823132,5
+elisha_gai,25823132,5
+101723048,25823132,5
+130939164,25823132,4
+71033259,25823132,4
+GreenL,25823132,4
+53621220,25823132,5
+raising_dawn,25823132,2
+stupidoor2floor,25823132,5
+58149878,25823132,5
+ioott,25823132,4
+mysupers,25823132,4
+50278650,25823132,4
+vaie,25823132,5
+2507612,25823132,4
+61688125,25823132,4
+65440660,25823132,4
+57830328,25823132,2
+2650205,25823132,4
+ngqmtm,25823132,1
+wan1991m,25823132,4
+PrincyinPeking,25823132,4
+62672201,25823132,4
+1212139,25823132,3
+LizShen,25823132,4
+wangxhtt,25823132,5
+tonyleung2046,25823132,-1
+34575902,25823132,3
+bais0630,25823132,3
+rianneli,25823132,-1
+misteror,25823132,5
+pajamania,25823132,3
+36282621,25823132,5
+zhiyaotiankong,25823132,-1
+62462968,25823132,5
+orangexc621,25823132,4
+62370156,25823132,4
+65403671,25823132,4
+63672355,25823132,3
+65607463,25823132,4
+yytaizi,25823132,4
+103151915,25823132,5
+39255754,25823132,3
+lidadan,25823132,5
+3540441,25823132,4
+4709468,25823132,5
+TZX119WADE,25823132,3
+54166163,25823132,3
+129032954,25823132,4
+1632116,25823132,3
+jinlinyuyu,25823132,4
+64450294,25823132,4
+destinyzhao,25823132,5
+65036885,25823132,5
+63426175,25823132,5
+3379883,25823132,4
+elevenfang11,25823132,5
+senses058,25823132,3
+127392524,25823132,5
+vip_chang,25823132,4
+43831100,25823132,4
+82796715,25823132,4
+lovelikenico,25823132,5
+Liew_qing,25823132,4
+45012026,25823132,3
+49824578,25823132,4
+happyencai,25823132,3
+anearl,25823132,5
+toda0607,25823132,4
+Sophie0401,25823132,4
+feqinfan,25823132,5
+norlesamourai,25823132,-1
+57303621,25823132,4
+Lelio090101,25823132,5
+tonyuanChen,25823132,3
+120497933,25823132,3
+56711007,25823132,4
+2505733,25823132,4
+2465698,25823132,4
+83017283,25823132,5
+6075587,25823132,4
+mrgoodnight,25823132,5
+4447333,25823132,4
+soul92114,25823132,4
+2596592,25823132,5
+h1057015905,25823132,3
+47585455,25823132,4
+moth,25823132,4
+SweetCoffee,25823132,4
+darkdio,25823132,4
+mogujunmomo,25823132,4
+1687247,25823132,4
+wondershine,25823132,4
+xwangl213,25823132,3
+anjia617,25823132,5
+weexf,25823132,4
+shanguicheng,25823132,5
+phoenix43,25823132,4
+cappuccino5026,25823132,4
+p2165,25823132,3
+qijiuzhiyue,25823132,3
+48919627,25823132,4
+83694704,25823132,4
+84109084,25823132,4
+Dreamermimzy,25823132,4
+snowbusy,25823132,-1
+59155713,25823132,5
+55945559,25823132,4
+55837000,25823132,5
+62455169,25823132,5
+1595106,25823132,5
+lunargoddess,25823132,5
+yourblossom,25823132,4
+milkbook,25823132,4
+sunnyareas,25823132,3
+pigeye,25823132,3
+75809533,25823132,3
+hudali,25823132,3
+50060410,25823132,3
+tjz230,25823132,4
+59224843,25823132,4
+shoushouan,25823132,-1
+50963579,25823132,3
+llh9277,25823132,5
+tarorez,25823132,5
+FrankWasabi,25823132,3
+59020272,25823132,5
+60841792,25823132,-1
+51061132,25823132,3
+1668414,25823132,4
+crystaldrr,25823132,4
+7542909,25823132,3
+bullshitforever,25823132,3
+luka90123,25823132,4
+49576050,25823132,4
+68424830,25823132,4
+xiaochanzi,25823132,4
+50943462,25823132,5
+akwanjq,25823132,4
+3182859,25823132,4
+3738868,25823132,4
+46892616,25823132,3
+45405907,25823132,5
+willow_0319,25823132,4
+41242318,25823132,4
+seraphzz,25823132,5
+yoyo-v,25823132,5
+pitianhong,25823132,-1
+54308994,25823132,3
+OMGD,25823132,4
+43996429,25823132,5
+wanpunleo,25823132,5
+shanl,25823132,3
+120427833,25823132,4
+shiwuri,25823132,4
+57896440,25823132,5
+enanm,25823132,4
+idorothy,25823132,4
+44445592,25823132,5
+80261788,25823132,5
+72683607,25823132,5
+yiweicoffee,25823132,5
+liuzhejimmy,25823132,5
+4239908,25823132,5
+forever_val,25823132,5
+mxmxmxxx,25823132,4
+56655497,25823132,5
+shuimudeyu1990,25823132,4
+heming_way,25823132,5
+elinnao,25823132,3
+seluti,25823132,4
+kakaloveu,25823132,4
+46430549,25823132,4
+50609656,25823132,5
+4104001,25823132,4
+57597976,25823132,5
+92853414,25823132,4
+yihongmeilan,25823132,4
+46429312,25823132,4
+69311501,25823132,5
+115506087,25823132,5
+115506087,25823132,5
+13646967,25823132,4
+90904421,25823132,4
+gardeniasky,25823132,4
+59597451,25823132,5
+89796820,25823132,5
+beansa,25823132,3
+51077683,25823132,4
+53476410,25823132,4
+Iamapoem,25823132,5
+42901891,25823132,5
+63910386,25823132,5
+66036408,25823132,5
+83739220,25823132,1
+vvvvv5,25823132,5
+42049184,25823132,3
+4694061,25823132,5
+73585315,25823132,4
+wj8198026,25823132,4
+51833331,25823132,3
+8097574,25823132,4
+Linqiny,25823132,3
+72538808,25823132,4
+63875799,25823132,5
+66613730,25823132,5
+rainyu,25823132,5
+52371871,25823132,3
+songmeng1216,25823132,4
+shen120,25823132,5
+48349431,25823132,3
+4401259,25823132,4
+56638281,25823132,4
+60380024,25823132,5
+leecyril,25823132,4
+jue0208,25823132,4
+54740979,25823132,5
+sky428,25823132,5
+78414144,25823132,4
+58691394,25823132,4
+roseyan_lxy,25823132,5
+78571536,25823132,5
+yangsansannimei,25823132,3
+flyfrankenstein,25823132,4
+130813425,25823132,-1
+JokulAlba,25823132,-1
+9386243,25823132,5
+elliry,25823132,4
+ew94kmd,25823132,5
+xd880820,25823132,5
+66691912,25823132,5
+40081078,25823132,5
+61921759,25823132,4
+82080479,25823132,4
+79330359,25823132,3
+woohly,25823132,4
+44145594,25823132,3
+16234584,25823132,4
+61967626,25823132,4
+jieou1984,25823132,4
+92364458,25823132,5
+41869870,25823132,5
+silverslivers,25823132,4
+suxiaoxia,25823132,4
+karsa,25823132,4
+83495033,25823132,5
+volantisff,25823132,4
+33663451,25823132,4
+loftywain,25823132,3
+58179366,25823132,4
+yangjianmeiyang,25823132,3
+lingrui1995,25823132,4
+44387904,25823132,4
+15012448,25823132,4
+84899568,25823132,3
+64243172,25823132,4
+xiaohe5210,25823132,4
+48167750,25823132,4
+41532813,25823132,5
+62113425,25823132,4
+53771308,25823132,4
+10345879,25823132,3
+88327789,25823132,4
+55444668,25823132,4
+terry_f,25823132,3
+66006323,25823132,4
+caprice_vvn,25823132,4
+cuoyiban,25823132,4
+88345379,25823132,5
+128992913,25823132,4
+2230826,25823132,3
+44178660,25823132,3
+47822831,25823132,4
+59604055,25823132,5
+dfzxqqian,25823132,4
+3965428,25823132,4
+SPANCERDUAN,25823132,5
+JJ88pig,25823132,3
+53939822,25823132,4
+casablanca0912,25823132,3
+jeonwoo,25823132,4
+sunflowerqi,25823132,4
+61852645,25823132,4
+Siegismund,25823132,5
+49714270,25823132,5
+49419366,25823132,3
+baicaitai,25823132,5
+sidneylumet,25823132,4
+flowervirus,25823132,5
+D.Scarlett,25823132,3
+ericatdoll,25823132,5
+102623663,25823132,4
+fang0079,25823132,4
+48192795,25823132,4
+PHLucy,25823132,4
+kerrytt,25823132,5
+55540473,25823132,5
+3716766,25823132,4
+76824704,25823132,5
+46845668,25823132,3
+76288538,25823132,5
+17271034,25823132,4
+50473728,25823132,5
+1271021,25823132,5
+MisschicRea,25823132,5
+50846350,25823132,4
+nowrock,25823132,5
+qiluoluo,25823132,5
+yu1538007,25823132,5
+121933047,25823132,4
+60871322,25823132,3
+leexiang,25823132,5
+48863239,25823132,5
+lingjue,25823132,4
+62687217,25823132,5
+68615984,25823132,5
+taugenichts,25823132,4
+57077807,25823132,2
+41277351,25823132,5
+froggie,25823132,5
+37160658,25823132,4
+jiatianyu1,25823132,4
+102812397,25823132,4
+2387348,25823132,3
+alicewithoutyou,25823132,3
+126959567,25823132,5
+4320404,25823132,4
+se7en8736,25823132,4
+37646652,25823132,5
+64700587,25823132,4
+68792801,25823132,4
+47929210,25823132,5
+allmyheartair,25823132,5
+43901070,25823132,5
+baisechengai,25823132,4
+121173575,25823132,4
+83638503,25823132,5
+2808581,25823132,4
+shshshadow,25823132,5
+kiddy_kiddy,25823132,4
+56914134,25823132,5
+daisy_41,25823132,3
+Kiwi1126,25823132,5
+51457792,25823132,5
+gentlejoker,25823132,5
+fenglimuren,25823132,3
+62386997,25823132,4
+stefaniesays422,25823132,5
+73669959,25823132,4
+dingdanglbh,25823132,4
+furore,25823132,4
+23692831,25823132,3
+53602254,25823132,5
+49891610,25823132,4
+51231937,25823132,4
+Plutoyw,25823132,4
+kekexilijiu,25823132,4
+56857349,25823132,4
+Eayo,25823132,4
+stellalula,25823132,4
+59623092,25823132,3
+119681197,25823132,5
+flyxzz,25823132,4
+62309781,25823132,5
+2824723,25823132,3
+48051561,25823132,4
+47458734,25823132,4
+fabregas04,25823132,5
+1762955,25823132,4
+wjgq0722,25823132,5
+acepatrick,25823132,3
+49836781,25823132,-1
+62678962,25823132,4
+69550899,25823132,4
+HAYATE-RIN,25823132,5
+Candy_Can,25823132,3
+V-anilla,25823132,5
+3350852,25823132,4
+17342003,25823132,5
+1516524,25823132,5
+44725365,25823132,5
+iamnian,25823132,5
+paulgerchen,25823132,5
+proband,25823132,4
+33378843,25823132,3
+49164545,25823132,3
+75636877,25823132,4
+3731614,25823132,5
+52279416,25823132,-1
+3146733,25823132,3
+61070118,25823132,4
+30491049,25823132,5
+63161507,25823132,5
+yaeldeyn,25823132,5
+59113427,25823132,5
+n_iy,25823132,3
+fishjiushiyu,25823132,5
+stabrid,25823132,5
+85143816,25823132,5
+65400706,25823132,5
+4402728,25823132,5
+63422177,25823132,3
+49734653,25823132,5
+jluy,25823132,3
+59774628,25823132,4
+simonyao,25823132,4
+SoyQueenaTse,25823132,5
+2139321,25823132,4
+48542605,25823132,2
+pipi1226,25823132,3
+imedi,25823132,3
+cijfer,25823132,3
+lysagdgl,25823132,4
+yiddypiddypoo,25823132,4
+2049714,25823132,3
+3202437,25823132,4
+zybxixi,25823132,4
+4102187,25823132,4
+2044887,25823132,4
+isabelguan,25823132,4
+33282308,25823132,5
+61591842,25823132,4
+3801810,25823132,4
+133125055,25823132,4
+67711452,25823132,4
+likeabird,25823132,5
+108077404,25823132,3
+42680639,25823132,4
+120555899,25823132,4
+toby_7,25823132,4
+65723913,25823132,3
+48976619,25823132,5
+104445642,25823132,4
+93940379,25823132,4
+50766549,25823132,1
+Corpsegrinder,25823132,4
+oldwolfnwf,25823132,4
+58696033,25823132,5
+75182939,25823132,5
+dengxian123,25823132,4
+64708060,25823132,5
+evaying,25823132,4
+79935599,25823132,5
+3006833,25823132,4
+56200146,25823132,5
+lemonomel,25823132,4
+29844884,25823132,4
+2175508,25823132,4
+49196755,25823132,3
+tangxg,25823132,5
+19469713,25823132,4
+95592443,25823132,4
+36321216,25823132,5
+60112538,25823132,-1
+52335106,25823132,5
+60338101,25823132,4
+46936355,25823132,5
+4259607,25823132,5
+nathaneil,25823132,4
+47426974,25823132,4
+61014013,25823132,4
+28984071,25823132,5
+severus,25823132,5
+130496328,25823132,2
+3535148,25823132,5
+99215743,25823132,4
+liluoliluo,25823132,4
+ding1yi,25823132,4
+44589835,25823132,5
+52623078,25823132,5
+toosweet,25823132,5
+jiazi1216,25823132,4
+62960950,25823132,5
+dandangobelieve,25823132,-1
+44592229,25823132,5
+5355133,25823132,5
+68596231,25823132,3
+hushibookstore,25823132,5
+1462255,25823132,5
+68825025,25823132,4
+83737381,25823132,4
+83737381,25823132,4
+a_Yuan,25823132,5
+54607623,25823132,5
+120219887,25823132,5
+68933107,25823132,5
+79915546,25823132,5
+einru,25823132,4
+52838594,25823132,4
+121086581,25823132,3
+pinxue,25823132,4
+1107239,25823132,4
+62205836,25823132,5
+36995031,25823132,5
+62667107,25823132,5
+tildali1214,25823132,4
+43232986,25823132,5
+59281167,25823132,5
+twinsyy,25823132,4
+65370065,25823132,4
+49500956,25823132,3
+3386344,25823132,4
+66519377,25823132,4
+Soniawoolf,25823132,4
+66794531,25823132,5
+50782420,25823132,5
+gozn,25823132,4
+yuonline,25823132,4
+85054280,25823132,4
+jerring,25823132,4
+51929329,25823132,4
+anna012,25823132,4
+lephemera,25823132,4
+50077498,25823132,5
+68366606,25823132,3
+zyt_69,25823132,4
+gfw419,25823132,4
+33907274,25823132,4
+54115340,25823132,5
+2571757,25823132,3
+mingyue525,25823132,4
+maggiemars,25823132,4
+WelfareHealth,25823132,3
+46163023,25823132,-1
+120198349,25823132,4
+61403829,25823132,5
+airgraceful,25823132,-1
+cazze,25823132,4
+52930428,25823132,5
+duanzizai,25823132,4
+sif7,25823132,4
+46856487,25823132,5
+55380431,25823132,5
+quanzhouren,25823132,3
+morphinerouge,25823132,4
+81373304,25823132,4
+116614076,25823132,4
+miracle1025,25823132,4
+echoningning,25823132,4
+Grace_Xuliang,25823132,4
+57784183,25823132,5
+80634044,25823132,4
+69469805,25823132,5
+lotua,25823132,3
+63011235,25823132,3
+35066546,25823132,4
+Journey_007,25823132,5
+67291314,25823132,-1
+96873313,25823132,4
+60378678,25823132,5
+73901440,25823132,4
+2349644,25823132,4
+sharplhl,25823132,5
+59749392,25823132,4
+117348494,25823132,4
+imlove,25823132,5
+62192019,25823132,4
+edisonme,25823132,4
+65038272,25823132,4
+4108180,25823132,5
+97402740,25823132,5
+stetehe,25823132,3
+ichee,25823132,5
+55365789,25823132,5
+50811466,25823132,5
+85811535,25823132,4
+61426958,25823132,3
+109964855,25823132,5
+48997081,25823132,4
+rurucat,25823132,4
+fcuki,25823132,4
+kahinng,25823132,4
+AugustSeven,25823132,5
+30457423,25823132,5
+46309610,25823132,5
+2075426,25823132,5
+53771423,25823132,3
+yalindongdong,25823132,3
+4546005,25823132,5
+68123525,25823132,4
+65372022,25823132,4
+catherine_koo,25823132,3
+shinyhjx,25823132,5
+TERRYBEAR,25823132,4
+simplelifer,25823132,5
+weecy,25823132,4
+1333942,25823132,3
+MihoKomatsu,25823132,4
+81249023,25823132,4
+64277319,25823132,5
+74723978,25823132,4
+58686580,25823132,1
+48349929,25823132,5
+72133915,25823132,3
+39122664,25823132,3
+1346719,25823132,4
+fufu28,25823132,4
+130717797,25823132,4
+44618919,25823132,5
+dafaci,25823132,5
+49298846,25823132,5
+65714390,25823132,4
+oops_mie,25823132,4
+tsoo416,25823132,3
+Rabbitoe,25823132,4
+52199185,25823132,5
+45929722,25823132,5
+64093040,25823132,4
+39310626,25823132,4
+71961119,25823132,5
+55983096,25823132,4
+56650321,25823132,5
+chishu,25823132,4
+47053575,25823132,4
+52718923,25823132,5
+76708282,25823132,4
+herohaha,25823132,5
+4165611,25823132,4
+58343870,25823132,5
+4532340,25823132,5
+cherrywasthere,25823132,4
+119559372,25823132,4
+Tipi.C,25823132,4
+48029998,25823132,5
+malu,25823132,4
+tangstar27,25823132,4
+114606951,25823132,4
+52870951,25823132,4
+106341534,25823132,5
+121471027,25823132,3
+66585349,25823132,4
+93332466,25823132,4
+76553080,25823132,5
+65776181,25823132,5
+travel_yuong,25823132,3
+88338755,25823132,5
+mingtianqt,25823132,-1
+3035447,25823132,5
+dogeli,25823132,5
+ruo1996,25823132,4
+chenzhuoqing,25823132,5
+goodbyelenin,25823132,3
+tedlixin,25823132,-1
+sissistar,25823132,4
+131812075,25823132,5
+126842438,25823132,4
+68732725,25823132,5
+4871637,25823132,4
+56776280,25823132,5
+44901258,25823132,5
+47081544,25823132,5
+qingruoli,25823132,5
+58867801,25823132,4
+62582526,25823132,4
+youngtoo,25823132,4
+gaolina,25823132,3
+46466406,25823132,5
+64166028,25823132,4
+sandimu,25823132,3
+49128296,25823132,5
+1414083,25823132,4
+58003006,25823132,5
+45712857,25823132,5
+HanHi,25823132,4
+Nicolelingji,25823132,4
+48765818,25823132,3
+121757659,25823132,-1
+sakura_liu,25823132,5
+28808683,25823132,4
+asdzheng,25823132,3
+23105719,25823132,4
+62438264,25823132,5
+1614995,25823132,4
+kg1898,25823132,5
+76332063,25823132,4
+68894222,25823132,5
+64780091,25823132,3
+Curry_Egg,25823132,3
+65679049,25823132,5
+68476661,25823132,5
+77040171,25823132,-1
+76220009,25823132,4
+125298994,25823132,4
+49893438,25823132,4
+119903956,25823132,3
+2258556,25823132,4
+86929992,25823132,5
+26545118,25823132,5
+43071963,25823132,3
+gaogaopark,25823132,5
+101539483,25823132,4
+84299996,25823132,3
+58179619,25823132,3
+lilyzhou2012,25823132,4
+2923778,25823132,4
+1378999,25823132,3
+75987958,25823132,4
+pplife,25823132,4
+66836438,25823132,3
+MOVIE--KO,25823132,4
+54145427,25823132,4
+74855673,25823132,4
+78396760,25823132,4
+winmaxangle,25823132,5
+yscysc803,25823132,3
+helene9933,25823132,3
+2743603,25823132,3
+64276762,25823132,5
+hanqiu1995,25823132,4
+78602807,25823132,5
+71580986,25823132,4
+2220298,25823132,3
+baijixing,25823132,5
+46585688,25823132,5
+46920683,25823132,4
+114358395,25823132,3
+62917415,25823132,5
+RITABMW,25823132,4
+Youandi4,25823132,5
+45491031,25823132,4
+41039099,25823132,5
+41039099,25823132,5
+42962790,25823132,4
+88425798,25823132,5
+85316491,25823132,5
+iwei,25823132,5
+46310239,25823132,4
+3334448,25823132,5
+74599483,25823132,4
+3594852,25823132,4
+41315332,25823132,4
+chenjiamorealme,25823132,3
+dahuilang15656,25823132,4
+dmxy,25823132,4
+84484396,25823132,5
+56160592,25823132,4
+39015644,25823132,4
+43211032,25823132,5
+87684831,25823132,5
+50833916,25823132,3
+72110829,25823132,5
+RemoteTr,25823132,4
+96044338,25823132,4
+58317125,25823132,5
+101568749,25823132,5
+64001099,25823132,4
+30568962,25823132,5
+53854187,25823132,4
+bfa1950,25823132,4
+89108079,25823132,4
+63463854,25823132,3
+ya19910907,25823132,5
+alien-wo,25823132,4
+53659864,25823132,3
+58280400,25823132,5
+62297944,25823132,4
+4123019,25823132,4
+70915171,25823132,5
+mayday_anne,25823132,3
+55321453,25823132,5
+65911258,25823132,5
+53010578,25823132,-1
+3029693,25823132,5
+51138955,25823132,4
+moooke,25823132,4
+74573393,25823132,4
+47675907,25823132,5
+60856758,25823132,4
+63035269,25823132,5
+75874484,25823132,3
+3322566,25823132,2
+nyandjm,25823132,4
+flxjp,25823132,3
+49632759,25823132,4
+56702437,25823132,3
+53477720,25823132,5
+ruhualucky,25823132,5
+137618389,25823132,4
+71220393,25823132,4
+60351223,25823132,4
+40361971,25823132,5
+60474207,25823132,5
+133869109,25823132,5
+88675299,25823132,3
+100055142,25823132,4
+53340916,25823132,5
+chemicalromance,25823132,4
+1714674,25823132,4
+coco921,25823132,5
+xmausp,25823132,5
+84042964,25823132,4
+45705639,25823132,4
+decemfirst,25823132,5
+9833904,25823132,5
+lovin12,25823132,3
+71609046,25823132,4
+51010843,25823132,4
+67479654,25823132,5
+Dear_Corny,25823132,4
+50514282,25823132,4
+122857735,25823132,4
+102268180,10533913,4
+64092114,10533913,5
+iamyzgf,10533913,3
+81774069,10533913,5
+51136126,10533913,5
+iRayc,10533913,4
+68794405,10533913,5
+64516697,10533913,3
+124456282,10533913,4
+66803034,10533913,4
+crvigne,10533913,5
+58175019,10533913,5
+rola_heart,10533913,5
+eefee,10533913,5
+hinna,10533913,3
+125140417,10533913,5
+79155379,10533913,5
+strawberryever,10533913,4
+135255660,10533913,4
+fufei,10533913,5
+NosyBunny,10533913,5
+Sijin-Yu,10533913,3
+131380048,10533913,4
+46949718,10533913,3
+1933600,10533913,4
+52406175,10533913,5
+64288458,10533913,5
+126092428,10533913,2
+31988500,10533913,4
+65134438,10533913,5
+130051507,10533913,4
+51266077,10533913,5
+58189944,10533913,5
+65987456,10533913,4
+amosintaipei,10533913,5
+panfangjie,10533913,3
+43726923,10533913,5
+aideu,10533913,4
+67338134,10533913,5
+teateagarden,10533913,3
+65053075,10533913,5
+59805840,10533913,5
+76404609,10533913,4
+2142898,10533913,5
+44218727,10533913,5
+122258109,10533913,4
+128012079,10533913,5
+nicaland,10533913,4
+grimy,10533913,4
+wuyunoy,10533913,4
+64535817,10533913,3
+twtuitui,10533913,4
+90480927,10533913,5
+chouyao,10533913,5
+60211609,10533913,5
+treedoctor,10533913,5
+75706045,10533913,4
+45123579,10533913,5
+74106453,10533913,-1
+64763460,10533913,3
+krisleung,10533913,5
+littleruo,10533913,3
+70308764,10533913,5
+4823525,10533913,5
+1225334,10533913,4
+80804597,10533913,5
+51057847,10533913,5
+lemonchen310,10533913,4
+4209214,10533913,5
+50268324,10533913,5
+browneyedalina,10533913,5
+88268903,10533913,4
+bittter,10533913,3
+78237245,10533913,5
+71276414,10533913,4
+hellobabysa,10533913,5
+30346697,10533913,4
+54135294,10533913,2
+81516701,10533913,5
+57421160,10533913,4
+57421160,10533913,4
+129636483,10533913,5
+64036271,10533913,4
+57988123,10533913,5
+52622488,10533913,5
+yuanliu,10533913,4
+54055888,10533913,-1
+76428013,10533913,3
+50065002,10533913,5
+28494028,10533913,3
+55803883,10533913,5
+43784582,10533913,5
+45613020,10533913,5
+91851250,10533913,4
+chendax,10533913,4
+53325239,10533913,4
+102069788,10533913,5
+marsdream,10533913,4
+4032411,10533913,3
+53953725,10533913,5
+66722106,10533913,5
+44417635,10533913,4
+zqnpz,10533913,3
+79030834,10533913,4
+46583947,10533913,4
+qizixi,10533913,4
+132237127,10533913,4
+fmiu,10533913,5
+92670176,10533913,-1
+121684653,10533913,5
+kabi,10533913,5
+2592170,10533913,4
+90983705,10533913,5
+68991888,10533913,5
+33532944,10533913,4
+57656194,10533913,4
+anuluna,10533913,4
+wltao,10533913,5
+99027512,10533913,5
+72451264,10533913,5
+130433536,10533913,4
+1893736,10533913,5
+chenjiusan,10533913,2
+57278963,10533913,4
+48938261,10533913,5
+35069880,10533913,3
+40159279,10533913,5
+60963394,10533913,5
+50433409,10533913,3
+Rovin,10533913,-1
+134913642,10533913,4
+amoric_sang,10533913,5
+62341894,10533913,4
+63228083,10533913,5
+aijin1011,10533913,5
+MMMFish,10533913,4
+62585916,10533913,5
+3569090,10533913,5
+83282570,10533913,3
+45953798,10533913,4
+86926721,10533913,3
+76986820,10533913,4
+48115281,10533913,4
+3498321,10533913,4
+82087372,10533913,4
+heydon13,10533913,5
+61319755,10533913,5
+46066822,10533913,4
+134440390,10533913,4
+51368936,10533913,5
+cokasusu,10533913,4
+54954708,10533913,5
+rabbit.doll,10533913,5
+icethan,10533913,5
+WhoRU,10533913,5
+84289821,10533913,5
+65521219,10533913,5
+hoicy,10533913,5
+sonnenshein,10533913,5
+29262337,10533913,5
+101978260,10533913,4
+48825512,10533913,4
+80685538,10533913,5
+linyumi7,10533913,5
+57899095,10533913,5
+givindream,10533913,5
+sushunai,10533913,3
+crazy.zheng,10533913,5
+131233204,10533913,4
+47787216,10533913,5
+bhikkhuni,10533913,4
+49334857,10533913,4
+Haley.Z,10533913,5
+55827930,10533913,4
+lish0001,10533913,-1
+loafingnick,10533913,4
+1198944,10533913,5
+ruruholic,10533913,4
+81158905,10533913,4
+ttnspike,10533913,4
+THIS-IS-MAOYU,10533913,4
+L-6206,10533913,3
+2814849,10533913,5
+60570203,10533913,3
+wll789ly,10533913,5
+45476449,10533913,4
+83261887,10533913,3
+tianmuxian,10533913,4
+Ms.ZzZz,10533913,5
+127225715,10533913,3
+74973391,10533913,5
+ldzy,10533913,5
+134417330,10533913,4
+66345679,10533913,5
+123279152,10533913,5
+3187343,10533913,5
+lanyangyangdecc,10533913,4
+1452888,10533913,4
+haimianstone,10533913,5
+127997663,10533913,5
+jidoudou,10533913,5
+41352480,10533913,5
+2242668,10533913,4
+68675748,10533913,4
+nuannuanmo,10533913,5
+135498457,10533913,4
+jimmyzhang1989,10533913,4
+90681003,10533913,5
+zyztonorrow,10533913,5
+58941553,10533913,5
+88926842,10533913,5
+100734380,10533913,5
+62323512,10533913,5
+121754243,10533913,5
+68280727,10533913,4
+keall,10533913,5
+73964031,10533913,5
+seasidecity,10533913,3
+aptx869,10533913,4
+64879609,10533913,2
+123945021,10533913,5
+chelsea_baker,10533913,5
+52061855,10533913,3
+taropie,10533913,4
+may-may,10533913,3
+52903037,10533913,2
+9784009,10533913,3
+med1cine,10533913,4
+4234937,10533913,5
+59849090,10533913,3
+EvelynReese,10533913,4
+136509793,10533913,4
+cherishcrystal,10533913,4
+61810953,10533913,5
+56810105,10533913,4
+79236287,10533913,4
+57864238,10533913,4
+JaceJing,10533913,4
+xuanxuan1209,10533913,5
+78471852,10533913,5
+131254424,10533913,3
+65424287,10533913,5
+66240833,10533913,5
+74589582,10533913,5
+mmmmf,10533913,4
+77001369,10533913,5
+ChaseHu,10533913,5
+69398734,10533913,4
+79431360,10533913,5
+28219717,10533913,5
+ninjaliu,10533913,5
+jurgenzn,10533913,5
+54329271,10533913,5
+60768165,10533913,5
+weilo,10533913,4
+philette,10533913,5
+71570603,10533913,-1
+58151244,10533913,4
+116741743,10533913,4
+morus,10533913,4
+79528433,10533913,3
+light_in_fog,10533913,5
+137541196,10533913,3
+65769663,10533913,5
+53375456,10533913,4
+EavenTao,10533913,5
+48335260,10533913,5
+88327391,10533913,1
+55550016,10533913,4
+osaka-,10533913,4
+62978653,10533913,5
+llllsy1991,10533913,4
+78906906,10533913,4
+4501560,10533913,5
+HERE,10533913,3
+134625303,10533913,4
+4733166,10533913,5
+29777178,10533913,5
+80098161,10533913,5
+mulin_111,10533913,4
+mulin_111,10533913,4
+66035182,10533913,4
+zl1237,10533913,5
+3959210,10533913,5
+undertherose,10533913,5
+apoorguitar,10533913,4
+59221485,10533913,5
+56705427,10533913,5
+50992070,10533913,4
+50180510,10533913,5
+65055212,10533913,4
+48191805,10533913,5
+Qiao929,10533913,3
+Aurore.C,10533913,3
+55835825,10533913,3
+elkkkkk,10533913,5
+56519940,10533913,4
+3278681,10533913,3
+50759873,10533913,4
+43820792,10533913,4
+135857763,10533913,3
+3679450,10533913,5
+16331608,10533913,-1
+54270482,10533913,4
+40811083,10533913,3
+66794531,10533913,4
+59465835,10533913,4
+50344545,10533913,5
+45791294,10533913,4
+55024300,10533913,5
+greenhe,10533913,5
+93505964,10533913,5
+43298120,10533913,4
+ckomy115,10533913,4
+114057522,10533913,4
+53074596,10533913,4
+speakingroger,10533913,4
+102148082,10533913,5
+angie0715,10533913,4
+137728472,10533913,5
+74978586,10533913,5
+61539163,10533913,5
+50773825,10533913,5
+50034582,10533913,-1
+102164266,10533913,5
+ol_l,10533913,4
+xin623,10533913,5
+3582364,10533913,3
+94556650,10533913,3
+94932551,10533913,4
+49111347,10533913,4
+115143793,10533913,5
+2327694,10533913,5
+display,10533913,5
+3646381,10533913,5
+43414229,10533913,3
+chloethegirl,10533913,4
+49210030,10533913,4
+121905439,10533913,5
+3310337,10533913,3
+63864214,10533913,5
+57848317,10533913,4
+susi_yang,10533913,5
+54239245,10533913,5
+80196193,10533913,3
+44436792,10533913,5
+ynlemo,10533913,4
+lucifer7th,10533913,5
+1296067,10533913,5
+108816754,10533913,4
+4629060,10533913,4
+43354228,10533913,3
+meimeimoi,10533913,3
+Bookthief,10533913,5
+47647880,10533913,5
+hou-z,10533913,3
+ntz521,10533913,5
+49581027,10533913,5
+61110036,10533913,4
+63475975,10533913,5
+58229275,10533913,5
+3661228,10533913,5
+sunhaoxiang,10533913,5
+frankfankai,10533913,5
+1444451,10533913,4
+GameCEO,10533913,5
+51180631,10533913,5
+123270343,10533913,4
+56448548,10533913,4
+3465796,10533913,5
+62945273,10533913,5
+13156041,10533913,5
+1971105,10533913,5
+lovinest,10533913,4
+2616668,10533913,5
+istrings,10533913,5
+ciseibian,10533913,5
+28028631,10533913,5
+barontree,10533913,5
+48956654,10533913,5
+2198085,10533913,-1
+121875755,10533913,5
+YiiiiiLu,10533913,4
+40398992,10533913,5
+114326236,10533913,4
+81126169,10533913,5
+52905046,10533913,5
+127762081,10533913,5
+64069869,10533913,5
+Sub___,10533913,5
+Coky.M,10533913,5
+2008327,10533913,4
+lisayang,10533913,5
+2079162,10533913,5
+49107356,10533913,4
+90585988,10533913,5
+3654230,10533913,4
+baicaidundoufu,10533913,4
+52555096,10533913,3
+83161147,10533913,5
+63093559,10533913,4
+97312448,10533913,4
+ivy_lmj,10533913,4
+3341865,10533913,4
+1391193,10533913,3
+Tina.qian,10533913,5
+uuuoioi,10533913,5
+3892198,10533913,5
+50438233,10533913,4
+45312368,10533913,5
+48161587,10533913,5
+zi34lang,10533913,5
+oyxp,10533913,4
+52745181,10533913,4
+zangtianfly,10533913,5
+47418311,10533913,5
+76460934,10533913,4
+sibylwang,10533913,4
+104088049,10533913,4
+ducksu,10533913,4
+woodyallen_1935,10533913,5
+62273973,10533913,5
+80589934,10533913,4
+61265213,10533913,3
+58739148,10533913,5
+Michellekids,10533913,5
+43618482,10533913,4
+3129978,10533913,4
+ailinyang,10533913,3
+4508900,10533913,5
+4221499,10533913,5
+qiujing0305,10533913,5
+127180672,10533913,5
+49115709,10533913,5
+122932689,10533913,4
+jessie811,10533913,-1
+YUE0825,10533913,5
+fanqu,10533913,4
+79558591,10533913,4
+luxe,10533913,5
+60164183,10533913,4
+immmmm,10533913,5
+63760706,10533913,5
+lovemusic007,10533913,4
+60662901,10533913,5
+34978816,10533913,5
+54516872,10533913,4
+133628416,10533913,5
+zoezhangzz,10533913,5
+weirz,10533913,4
+82361074,10533913,4
+Sylary,10533913,5
+67520406,10533913,5
+52847392,10533913,5
+121536238,10533913,5
+mostephanie58,10533913,3
+3415449,10533913,4
+yangisyang,10533913,5
+47586629,10533913,4
+60585416,10533913,3
+81840973,10533913,5
+58890158,10533913,5
+64305932,10533913,5
+102763391,10533913,5
+136096909,10533913,5
+109102464,10533913,1
+61528185,10533913,3
+jessietam,10533913,4
+1590586,10533913,5
+64598652,10533913,5
+Christinezmy,10533913,4
+2030775,10533913,4
+45108609,10533913,5
+65912201,10533913,5
+61247946,10533913,3
+xunnn,10533913,5
+4722795,10533913,4
+59158892,10533913,5
+hi_blue,10533913,5
+77640366,10533913,4
+85770148,10533913,5
+mamalin,10533913,5
+Gabriel_Mars,10533913,5
+40527777,10533913,4
+ztreez,10533913,5
+sevenready,10533913,5
+2743090,10533913,5
+1548541,10533913,4
+34040552,10533913,5
+tasria,10533913,5
+a632157547,10533913,4
+4603559,10533913,4
+1534250,10533913,5
+130599574,10533913,5
+52396155,10533913,4
+deepdesire,10533913,5
+amy219,10533913,-1
+52477186,10533913,5
+16486933,10533913,5
+50342310,10533913,4
+68881946,10533913,4
+88285360,10533913,5
+66858038,10533913,5
+116935437,10533913,1
+yuehairong,10533913,5
+70013273,10533913,4
+summer0706,10533913,5
+2058011,10533913,5
+97269963,10533913,4
+52368554,10533913,4
+122871112,10533913,5
+45473293,10533913,4
+VickyMonster,10533913,4
+89449772,10533913,5
+6121464,10533913,5
+12901941,10533913,5
+137947771,10533913,5
+3936749,10533913,5
+63033488,10533913,1
+duyishi,10533913,5
+134916252,10533913,4
+50883641,10533913,5
+losteden,10533913,5
+137941433,10533913,5
+55767927,10533913,4
+57005339,10533913,5
+langxiaoyu1990,10533913,5
+cenxiaoceng,10533913,-1
+lelechang,10533913,5
+Cp0204,10533913,4
+91073792,10533913,4
+kainsown,10533913,4
+essally,10533913,5
+anniebridge,10533913,5
+89602947,10533913,4
+PasS__bY,10533913,5
+stream_wang,10533913,5
+resurrection,10533913,5
+3798345,10533913,4
+61613181,10533913,4
+47364324,10533913,5
+82733508,10533913,5
+2214325,10533913,5
+74879885,10533913,4
+129670010,10533913,5
+ocean11,10533913,5
+foamwhisper,10533913,3
+yun96,10533913,-1
+122789808,10533913,4
+62817547,10533913,5
+36499688,10533913,5
+61922996,10533913,5
+44587158,10533913,4
+Bryan_westtown,10533913,3
+dmcrgiye,10533913,5
+97957511,10533913,5
+91026407,10533913,4
+monkeydshinki,10533913,5
+50284567,10533913,-1
+45682348,10533913,4
+shaoyi,10533913,5
+hazelhan,10533913,4
+64902546,10533913,-1
+radia,10533913,3
+lyy1112,10533913,5
+43554712,10533913,5
+yanzi1214,10533913,5
+67580787,10533913,4
+beckham4ever,10533913,5
+convallaria7,10533913,4
+ellie911,10533913,5
+lhyendless,10533913,4
+136675201,10533913,5
+beforetomorrow,10533913,4
+sleepymio,10533913,5
+49409314,10533913,-1
+32318266,10533913,3
+53323494,10533913,4
+3461641,10533913,5
+TomboyJoe,10533913,5
+59968700,10533913,1
+122195421,10533913,3
+55844421,10533913,4
+102997764,10533913,5
+67947664,10533913,4
+137874424,10533913,4
+76818492,10533913,5
+64197994,10533913,4
+136685521,10533913,5
+clairegyy,10533913,2
+peigong,10533913,4
+108222983,10533913,4
+65385294,10533913,5
+134905591,10533913,5
+artwalk,10533913,5
+YUEYUYUE,10533913,4
+Demoter,10533913,5
+2161404,10533913,4
+kikiya,10533913,4
+101476950,10533913,3
+51445817,10533913,4
+130445057,10533913,4
+99119028,10533913,5
+53169238,10533913,4
+2376689,10533913,-1
+24473673,10533913,5
+58482034,10533913,4
+devil_JunN,10533913,4
+love.jay,10533913,4
+2857340,10533913,-1
+turtur,10533913,3
+51689962,10533913,3
+57404631,10533913,3
+120962539,10533913,5
+holy-fishman,10533913,3
+Haze1,10533913,4
+evil1008,10533913,3
+39362601,10533913,4
+41758293,10533913,3
+3629692,10533913,4
+3629692,10533913,4
+123111535,10533913,4
+45406153,10533913,5
+131838063,10533913,4
+tlgn0430,10533913,4
+kiwikiwifruit,10533913,4
+81412709,10533913,5
+49791122,10533913,5
+angelliujiayun,10533913,4
+kefeng1988,10533913,3
+137755432,10533913,5
+134483925,10533913,4
+2526442,10533913,5
+1565567,10533913,5
+njuhmj,10533913,5
+wushengming000,10533913,5
+130718602,10533913,4
+61707424,10533913,5
+fabrique1987,10533913,5
+62136596,10533913,4
+65087582,10533913,4
+xiaowhatwhat,10533913,5
+SR2000,10533913,5
+52596376,10533913,5
+54224355,10533913,3
+71918561,10533913,5
+shenmadoumeiyou,10533913,4
+3413987,10533913,5
+61775961,10533913,3
+137669101,10533913,5
+70273921,10533913,5
+sasakievia,10533913,5
+ssos,10533913,5
+47595964,10533913,5
+57749235,10533913,4
+73259473,10533913,5
+40223789,10533913,5
+ceciliajiao,10533913,5
+2854070,10533913,5
+46640524,10533913,4
+zhuyaoyao,10533913,4
+130449076,10533913,4
+sunnygreendayer,10533913,4
+104764228,10533913,4
+Tammy_fish,10533913,3
+69058007,10533913,3
+chaikuan,10533913,-1
+137814359,10533913,5
+desperad0,10533913,4
+45355870,10533913,5
+135096530,10533913,4
+66103395,10533913,4
+128025495,10533913,4
+marina08,10533913,5
+jiaxintuanzi,10533913,4
+57121022,10533913,5
+61315630,10533913,4
+39006881,10533913,4
+130541613,10533913,5
+1066031,10533913,5
+16903025,10533913,4
+120854619,10533913,5
+2264556,10533913,4
+kobe_steak,10533913,3
+crazymelon,10533913,4
+84527951,10533913,4
+wt1112,10533913,5
+136326612,10533913,4
+dan1103,10533913,4
+lh_amber,10533913,4
+113289658,10533913,5
+52520976,10533913,5
+63700001,10533913,5
+2384173,10533913,4
+63959089,10533913,4
+134937890,10533913,5
+38702982,10533913,5
+Saintevans,10533913,5
+68457984,10533913,4
+52750268,10533913,5
+tobecontinued,10533913,-1
+127268669,10533913,4
+44428652,10533913,3
+leeyzh,10533913,4
+50984634,10533913,4
+3550468,10533913,5
+51766031,10533913,4
+t-bag11,10533913,5
+zjy564896041,10533913,5
+kweer,10533913,3
+60023659,10533913,5
+79171936,10533913,3
+flyinghero,10533913,4
+LucienLorca,10533913,4
+52835847,10533913,5
+bravedom,10533913,5
+137206904,10533913,4
+71902536,10533913,5
+48443053,10533913,5
+62271024,10533913,3
+120940336,10533913,5
+48145179,10533913,5
+75503461,10533913,4
+z30473,10533913,4
+zhaohanyue,10533913,5
+44664939,10533913,5
+65937993,10533913,-1
+68893935,10533913,5
+2912475,10533913,5
+42657229,10533913,5
+clover02,10533913,5
+pihou,10533913,5
+IvyTsai,10533913,5
+bluevivien,10533913,5
+24139618,10533913,5
+66351945,10533913,5
+114681097,10533913,5
+geminehoo,10533913,4
+shenshenet,10533913,3
+29783892,10533913,5
+29783892,10533913,5
+1712187,10533913,5
+2984029,10533913,5
+87558213,10533913,2
+72944170,10533913,4
+cy-yeah,10533913,5
+4525630,10533913,4
+34614797,10533913,4
+biketo,10533913,3
+kovin8888,10533913,4
+63734932,10533913,3
+105433262,10533913,5
+47236193,10533913,5
+51343908,10533913,4
+35289140,10533913,5
+67419325,10533913,5
+73818368,10533913,5
+51120293,10533913,3
+36877826,10533913,4
+56241501,10533913,5
+46435584,10533913,4
+kakaitachi,10533913,3
+lantianxia,10533913,5
+30552839,10533913,4
+nknymphet,10533913,4
+33845603,10533913,5
+46963738,10533913,5
+51277491,10533913,5
+74416708,10533913,5
+63022122,10533913,5
+65277179,10533913,5
+fallfallfalls,10533913,3
+NinaAobi,10533913,5
+62825162,10533913,5
+91268300,10533913,1
+marthachan,10533913,3
+58542371,10533913,-1
+daisyshappiness,10533913,-1
+58802831,10533913,4
+69675369,10533913,5
+youye2046,10533913,4
+135228314,10533913,5
+78713846,10533913,4
+49025271,10533913,5
+87082148,10533913,3
+tsebb,10533913,3
+43730319,10533913,5
+42898231,10533913,5
+14367746,10533913,3
+pomelo.mo,10533913,5
+66889726,10533913,5
+evernever,10533913,4
+134785054,10533913,4
+yushan33,10533913,5
+42380844,10533913,4
+ILOVEMANYEA,10533913,5
+dieonTV,10533913,3
+18814360,10533913,4
+88033603,10533913,4
+36867618,10533913,4
+claudexin,10533913,5
+54071930,10533913,5
+48499071,10533913,4
+63145913,10533913,5
+89928823,10533913,4
+49875686,10533913,5
+61145820,10533913,4
+wangjian0019,10533913,5
+57872112,10533913,4
+50873721,10533913,5
+67623868,10533913,3
+gzttt1,10533913,5
+55343487,10533913,3
+4694620,10533913,4
+76733820,10533913,3
+LieblingCL,10533913,3
+45884477,10533913,3
+67840454,10533913,4
+136671375,10533913,5
+xiaoshi0212,10533913,4
+delonka,10533913,4
+124333866,10533913,5
+orangesuan,10533913,3
+68655104,10533913,5
+yeqing611,10533913,5
+kyo85,10533913,4
+wendy47,10533913,4
+kkjoy2617,10533913,5
+103350106,10533913,5
+40839121,10533913,5
+63550302,10533913,3
+49832106,10533913,5
+yueyarom,10533913,4
+73466244,10533913,4
+80561643,10533913,5
+93179604,10533913,4
+55793019,10533913,4
+3992918,10533913,5
+62754758,10533913,5
+43621478,10533913,5
+137555231,10533913,4
+49684901,10533913,4
+51419805,10533913,5
+mi-hang,10533913,4
+47818066,10533913,5
+63413340,10533913,5
+62874039,10533913,5
+136501726,10533913,5
+parislover,10533913,5
+55833894,10533913,5
+49190092,10533913,3
+magiahaoking,10533913,4
+skycrow,10533913,5
+51463765,10533913,3
+piccl,10533913,3
+61619787,10533913,5
+sushengkun,10533913,5
+55886618,10533913,5
+135610617,10533913,5
+cloverwhite,10533913,4
+lotusbleu,10533913,4
+66239370,10533913,3
+131627562,10533913,5
+han_sy,10533913,4
+shuo3dao4,10533913,5
+2678762,10533913,5
+ho000,10533913,3
+69454263,10533913,5
+luohuazhu,10533913,4
+59802133,10533913,5
+68703413,10533913,5
+53082027,10533913,4
+120479663,10533913,5
+77026559,10533913,5
+benimaru97,10533913,5
+odding,10533913,3
+tink_leung,10533913,4
+lovage0402,10533913,3
+54431295,10533913,5
+mignon0515,10533913,4
+mignon0515,10533913,4
+47542838,10533913,3
+47480391,10533913,4
+81937532,10533913,4
+50747504,10533913,2
+60000524,10533913,5
+102858753,10533913,5
+51592058,10533913,5
+74232483,10533913,3
+48078575,10533913,4
+137673680,10533913,4
+69685647,10533913,4
+137221434,10533913,5
+45528332,10533913,5
+yichu1222,10533913,5
+94390156,10533913,5
+Andromedashun,10533913,-1
+1309486,10533913,5
+134858278,10533913,5
+69878645,10533913,-1
+131909298,10533913,4
+87650836,10533913,5
+59807933,10533913,5
+2762300,10533913,4
+5318547,10533913,3
+1953044,10533913,4
+84965549,10533913,4
+60781321,10533913,5
+121766750,10533913,4
+Serena.du,10533913,4
+4128845,10533913,4
+48381492,10533913,5
+4586959,10533913,3
+61541011,10533913,-1
+10277954,10533913,5
+112278711,10533913,4
+81351219,10533913,5
+48966304,10533913,5
+49852947,10533913,5
+1432887,10533913,5
+1432887,10533913,5
+53159454,10533913,4
+126720927,10533913,4
+88585490,10533913,4
+124810357,10533913,5
+Pengjianjun,10533913,5
+bozzvalen,10533913,4
+Catforest33,10533913,4
+41838234,10533913,5
+1237489,10533913,5
+miauwww,10533913,5
+barkerhjj,10533913,5
+88719109,10533913,5
+27352868,10533913,4
+sumkid,10533913,-1
+90051465,10533913,3
+60509699,10533913,5
+136528829,10533913,5
+61327300,10533913,5
+64707906,10533913,5
+4434079,10533913,4
+80453139,10533913,5
+chandler821,10533913,4
+55457496,10533913,4
+47496790,10533913,1
+30251701,10533913,4
+130078321,10533913,4
+alaxos,10533913,5
+64110948,10533913,4
+48496460,10533913,4
+59203729,10533913,5
+dashdot,10533913,5
+hecategk,10533913,3
+4575064,10533913,2
+53183199,10533913,4
+1264827,10533913,5
+chestericc,10533913,4
+46818877,10533913,5
+68941642,10533913,5
+66824818,10533913,4
+levelart,10533913,5
+73750059,10533913,3
+quanzhouren,10533913,5
+77850068,10533913,4
+60721268,10533913,4
+63084049,10533913,5
+liubida,10533913,5
+liushuangning,10533913,5
+zommy,10533913,4
+45933152,10533913,5
+fdid,10533913,5
+castle_leon,10533913,5
+55771467,10533913,5
+43334680,10533913,5
+3493699,10533913,3
+asyanyang,10533913,4
+125000015,10533913,5
+sarah59,10533913,5
+sona302,10533913,5
+63062317,10533913,4
+luanweiwei,10533913,3
+70255132,10533913,3
+wena,10533913,5
+saradipity,10533913,5
+137676553,10533913,4
+Elaine-sa,10533913,5
+127185122,10533913,4
+47671749,10533913,5
+64793059,10533913,5
+4411863,10533913,4
+52193336,10533913,5
+66557005,10533913,5
+134148719,10533913,5
+agreedoes,10533913,5
+51355598,10533913,3
+58310754,10533913,3
+yolanda_kin,10533913,5
+53030860,10533913,5
+3372021,10533913,5
+34526603,10533913,4
+59707316,10533913,4
+konglinghuanyin,10533913,5
+2544330,10533913,5
+89431473,10533913,5
+jjjjjjjoice,10533913,5
+1286114,10533913,4
+64996012,10533913,4
+120092472,10533913,5
+67535571,10533913,4
+42821103,10533913,5
+61315252,10533913,5
+Uroboros,10533913,3
+summerbear,10533913,5
+57876228,10533913,5
+121740137,10533913,4
+79399657,10533913,4
+115474584,10533913,5
+Never_mind,10533913,5
+75086193,10533913,5
+zxmys,10533913,5
+44518903,10533913,5
+48495423,10533913,5
+120642083,10533913,3
+40740426,10533913,5
+137665032,10533913,4
+131749198,10533913,4
+85423346,10533913,5
+54742736,10533913,5
+70534967,10533913,4
+blackjason,10533913,4
+3213833,10533913,4
+69975950,10533913,5
+82685125,10533913,4
+71712133,10533913,5
+70650158,10533913,4
+74199863,10533913,5
+45179970,10533913,5
+gwmq,10533913,5
+51779600,10533913,3
+25917087,10533913,4
+25917087,10533913,4
+115329516,10533913,4
+62360601,10533913,5
+45969996,10533913,4
+62582404,10533913,4
+108693709,10533913,4
+4495640,10533913,4
+133851177,10533913,5
+32643655,10533913,5
+63927154,10533913,4
+liuqiyu,10533913,5
+37567693,10533913,2
+Echo-Jose,10533913,4
+luvhardy,10533913,3
+3943251,10533913,5
+82562378,10533913,4
+hupple,10533913,5
+134773896,10533913,5
+ABQK,10533913,5
+zhangxiaxia007,10533913,4
+120508779,10533913,4
+eeeeek,10533913,5
+yangfu,10533913,4
+Crystal_Dcy,10533913,5
+Lovejingdianyu,10533913,4
+jollyworm,10533913,3
+3244009,10533913,4
+57854872,10533913,5
+58456907,10533913,3
+Nirvanakafka,10533913,3
+53685870,10533913,4
+nakamoz,10533913,5
+49578698,10533913,5
+handsome23,10533913,4
+92253265,10533913,4
+137580781,10533913,5
+yaqian,10533913,4
+3804260,10533913,5
+SilverZhan,10533913,3
+121974231,10533913,4
+zooooooj,10533913,4
+43864936,10533913,4
+xxberny,10533913,3
+97570215,10533913,4
+68446356,10533913,-1
+75117514,10533913,5
+xiaoludeng,10533913,5
+foradaisy,10533913,5
+90798972,10533913,5
+56732738,10533913,5
+62836423,10533913,5
+72970549,10533913,4
+fsjack,10533913,5
+sinry,10533913,4
+1978971,10533913,4
+48774489,10533913,5
+68592556,10533913,5
+3440574,10533913,4
+nancyzyn,10533913,5
+46118219,10533913,5
+41347620,10533913,4
+ducklucy,10533913,5
+58821009,10533913,4
+69091213,10533913,5
+121945022,10533913,5
+43921829,10533913,5
+60131423,10533913,5
+52382273,10533913,4
+Florence_L,10533913,5
+shaku_hanako,10533913,3
+53883791,10533913,4
+60144175,10533913,5
+58340906,10533913,5
+135795811,10533913,4
+73263102,10533913,4
+127934369,10533913,5
+58856682,10533913,5
+65371460,10533913,5
+133020185,10533913,5
+30982627,10533913,5
+62462373,10533913,5
+83769444,10533913,4
+53377652,10533913,5
+135906739,10533913,4
+99630135,10533913,4
+59874685,10533913,5
+4050170,10533913,5
+53080124,10533913,5
+47081544,10533913,5
+44032131,10533913,5
+46823718,10533913,3
+lhx,10533913,5
+56957417,10533913,4
+16237835,10533913,3
+xuecong,10533913,5
+94391686,10533913,3
+mickyququ,10533913,4
+56557788,10533913,4
+76532996,10533913,3
+43645225,10533913,5
+36049101,10533913,5
+hana0707,10533913,5
+fangpeishi,10533913,4
+127978116,10533913,5
+4028097,10533913,4
+2087622,10533913,5
+51629310,10533913,-1
+1994967,10533913,4
+lomata,10533913,5
+62288515,10533913,5
+takuyasue,10533913,4
+zi.yin,10533913,4
+zo3c,10533913,4
+31689638,10533913,5
+Shirleywjz,10533913,5
+65209475,10533913,5
+92298233,10533913,4
+freemanlau,10533913,5
+125282375,10533913,4
+38808960,10533913,4
+75217622,10533913,5
+125310228,10533913,4
+49711704,10533913,5
+130083039,10533913,4
+137353380,10533913,4
+60961304,10533913,4
+63474927,10533913,5
+57687641,10533913,5
+4429329,10533913,3
+memox,10533913,4
+34922032,10533913,5
+52494906,10533913,5
+Tfish,10533913,5
+46147212,10533913,5
+51853124,10533913,5
+53942992,10533913,5
+linshang,10533913,5
+68921619,10533913,5
+liz_anna,10533913,5
+48766335,10533913,4
+velldo,10533913,5
+norah6964,10533913,3
+45461182,10533913,5
+foamOOO,10533913,3
+128782904,10533913,4
+49153230,10533913,5
+63997678,10533913,4
+phoebekwam,10533913,4
+43667614,10533913,5
+aking,10533913,5
+72576153,10533913,3
+137581849,10533913,4
+74169906,10533913,5
+26748709,10533913,5
+3824469,10533913,4
+71569447,10533913,5
+TooYoungToosP,10533913,5
+53541389,10533913,5
+3711527,10533913,4
+47243834,10533913,5
+leo518,10533913,5
+clearhappy7,10533913,4
+34285521,10533913,5
+69152346,10533913,3
+2279647,10533913,4
+4026585,10533913,5
+1041979,10533913,5
+hihai,10533913,4
+gracegsmile,10533913,5
+65121798,10533913,5
+53111467,10533913,4
+27251657,10533913,5
+google-plus,10533913,5
+4251816,10533913,5
+82334443,10533913,5
+50137334,10533913,4
+31749291,10533913,5
+40904904,10533913,5
+54176828,10533913,5
+iDH,10533913,5
+125655628,10533913,4
+1762951,10533913,-1
+70759577,10533913,4
+79195615,10533913,4
+uncle,10533913,3
+strange_kid,10533913,5
+64382489,10533913,5
+51588465,10533913,4
+liuwen,10533913,5
+82308347,10533913,4
+121148066,10533913,5
+58064521,10533913,3
+49588596,10533913,5
+55760527,10533913,5
+93267198,10533913,5
+63961193,10533913,4
+honeyoyo,10533913,4
+asshole1987,10533913,4
+71202281,10533913,4
+ViviaChen,10533913,4
+71943777,10533913,4
+sunnieme,10533913,5
+119416612,10533913,4
+3853719,10533913,3
+zimu1990,10533913,5
+loulou-mae,10533913,5
+wengwt,10533913,4
+58901835,10533913,4
+xiaobeinier,10533913,4
+40654523,10533913,5
+136320790,10533913,4
+3491491,10533913,5
+lizhe05,10533913,4
+132499191,10533913,5
+shuyali,10533913,5
+dianman,10533913,4
+32645204,10533913,3
+44411218,10533913,3
+cuixuelei,10533913,5
+130886915,10533913,4
+alan5x,10533913,4
+nate_xu,10533913,5
+ypppp,10533913,3
+120619243,10533913,4
+136893612,10533913,5
+45354414,10533913,4
+85635101,10533913,4
+53290134,10533913,5
+gelsey1992,10533913,5
+fangxiaotang,10533913,5
+66535614,10533913,4
+137543599,10533913,5
+vera.m,10533913,4
+52190451,10533913,5
+1588264,10533913,5
+2427450,10533913,4
+catroubing,10533913,5
+106137917,10533913,4
+qingjinzhi,10533913,-1
+48470366,10533913,3
+3483430,10533913,5
+peace_canoe,10533913,2
+eiris,10533913,5
+fastkill,10533913,4
+3601002,10533913,5
+Annie3,10533913,5
+28898917,10533913,5
+zoewen1984,10533913,4
+clandia,10533913,4
+wild-kid,10533913,5
+37371040,10533913,5
+68107218,10533913,5
+43871044,10533913,4
+syveen,10533913,5
+1312162,10533913,4
+xiaoyaozizai,10533913,5
+48094958,10533913,4
+47748158,10533913,4
+71121390,10533913,2
+dolphinna,10533913,5
+dolphinna,10533913,5
+sirkee,10533913,5
+arlmy,10533913,4
+63243620,10533913,5
+joyousjoy,10533913,3
+cristiana,10533913,4
+h1805331722,10533913,3
+62718942,10533913,4
+39829339,10533913,4
+44312858,10533913,5
+gorse,10533913,5
+103290412,10533913,5
+65371902,10533913,4
+44927626,10533913,5
+74835284,10533913,5
+vvuvv,10533913,4
+69874247,10533913,3
+120503563,10533913,5
+imhechang,10533913,5
+46937278,10533913,5
+49107061,10533913,4
+sdnatural,10533913,5
+91584698,10533913,5
+46752636,10533913,4
+34311576,10533913,3
+QChen,10533913,5
+28493840,10533913,4
+46707086,10533913,4
+45647958,10533913,3
+beforeleave,10533913,5
+134431620,10533913,5
+4223711,10533913,4
+72858627,10533913,5
+dolphinshotel,10533913,5
+67342694,10533913,4
+64461339,10533913,5
+48163178,10533913,-1
+52305498,10533913,5
+119795456,10533913,4
+74621511,10533913,4
+74621511,10533913,4
+littleylittleyy,10533913,4
+1099666,10533913,5
+sharonsama,10533913,4
+xisochakaihuale,10533913,5
+83413120,10533913,3
+magieq,10533913,5
+45368819,10533913,5
+120885239,10533913,5
+jccycj,10533913,5
+1341903,10533913,5
+29732898,10533913,5
+wen1228,10533913,4
+70317561,10533913,4
+64833909,10533913,5
+shiningmonkey,10533913,4
+131800557,10533913,5
+13901089,10533913,4
+53996515,10533913,3
+49815623,10533913,4
+WildMeteor,10533913,5
+LL333,10533913,-1
+e9studio,10533913,5
+45831323,10533913,5
+87082940,10533913,3
+64064709,10533913,4
+94074204,10533913,5
+lagrangeisright,10533913,-1
+hj_laoxie,10533913,5
+40625984,10533913,5
+2406760,10533913,4
+matata522,10533913,4
+rongpeng,10533913,5
+78634802,10533913,3
+98956070,10533913,4
+43783521,10533913,4
+xiaochi2,10533913,4
+133743909,10533913,5
+fluorinespark,10533913,5
+dbsbks_wy,10533913,5
+69295551,10533913,5
+2828074,10533913,4
+53233343,10533913,5
+nebula.nuby,10533913,-1
+36059562,10533913,5
+stigie,10533913,4
+137398525,10533913,4
+haolloyin,10533913,4
+89178219,10533913,5
+princessfrog,10533913,4
+120374057,10533913,5
+gaoxiafang,10533913,5
+133081185,10533913,-1
+47705439,10533913,4
+jessiedgr,10533913,5
+42074061,10533913,4
+55969190,10533913,5
+yayun920,10533913,5
+41780535,10533913,5
+53271762,10533913,5
+56480795,10533913,5
+1688865,10533913,4
+wjiandan,10533913,5
+3466253,10533913,4
+rgwmnzyq,10533913,3
+54308994,10533913,5
+50673336,10533913,4
+64245643,10533913,4
+dufe_yuka,10533913,5
+52045091,10533913,5
+57416043,10533913,4
+40681472,10533913,5
+sep1221,10533913,5
+40696316,10533913,5
+136715644,10533913,4
+Becky223,10533913,5
+58922706,10533913,5
+96098508,10533913,3
+angiangeng,10533913,5
+gintokiyin,10533913,5
+14327084,10533913,4
+pangzineng,10533913,5
+lmoung,10533913,5
+53393312,10533913,4
+blueninght,10533913,5
+rext,10533913,5
+lovemycats,10533913,3
+46668318,10533913,5
+wqmeoe,10533913,5
+85114697,10533913,4
+62525951,10533913,5
+32001555,10533913,4
+34140064,10533913,5
+47405010,10533913,4
+fyearsdoit,10533913,5
+52770052,10533913,5
+whitefortunecat,10533913,5
+69892402,10533913,5
+71016890,10533913,5
+49081343,10533913,4
+58141044,10533913,4
+56111522,10533913,5
+zichuanxiao,10533913,5
+4265969,10533913,5
+49259090,10533913,5
+Huangyun716,10533913,5
+myheartisfree,10533913,4
+67205440,10533913,5
+116481214,10533913,5
+68575125,10533913,4
+134580402,10533913,4
+63406324,10533913,5
+3562848,10533913,5
+2076867,10533913,4
+3353584,10533913,5
+137365506,10533913,-1
+jhgAmy,10533913,4
+47517431,10533913,5
+120178108,10533913,5
+132348134,10533913,5
+59464689,10533913,5
+ivywell,10533913,5
+68750895,10533913,5
+ranljron,10533913,5
+maoguer,10533913,5
+cindylionel,10533913,5
+59367397,10533913,4
+2677256,10533913,5
+60808695,10533913,5
+wangmian0729,10533913,4
+zdoctorj,10533913,-1
+IMP837860367,10533913,-1
+131619623,10533913,5
+kuma919,10533913,4
+watanabecoffee,10533913,2
+47684731,10533913,4
+77013637,10533913,5
+anana-shan,10533913,4
+58641999,10533913,4
+62588625,10533913,-1
+46152001,10533913,5
+6549258,10533913,5
+fishtheobscure,10533913,5
+48487140,10533913,5
+101337641,10533913,5
+132429541,10533913,5
+shengyiw,10533913,3
+36457443,10533913,3
+comicsuperman,10533913,5
+zebaoa,10533913,5
+tongbaojia,10533913,4
+69926544,10533913,3
+14587316,10533913,5
+49297870,10533913,4
+xixymonkey,10533913,3
+xqtsss,10533913,4
+cindyzhe,10533913,5
+68640061,10533913,5
+33990008,10533913,4
+seriousz,10533913,5
+1367998,10533913,4
+58719132,10533913,5
+4730490,10533913,4
+69438436,10533913,5
+35994067,10533913,5
+MMMangojz,10533913,4
+37266138,10533913,4
+102987982,10533913,5
+jodis,10533913,5
+63689594,10533913,5
+95442218,10533913,5
+68352338,10533913,3
+71132041,10533913,5
+75479318,10533913,5
+doubaning,10533913,5
+aleung,10533913,2
+55936024,10533913,3
+67682492,10533913,5
+90805572,10533913,3
+82075343,10533913,4
+zybxixi,10533913,5
+131192669,10533913,4
+xiaoyushudai,10533913,5
+yaoly0709,10533913,4
+3202509,10533913,4
+2883655,10533913,3
+liaofei,10533913,5
+92232299,10533913,5
+68771576,10533913,4
+134842363,10533913,-1
+47795407,10533913,4
+3639221,10533913,5
+98568975,10533913,5
+4620614,10533913,4
+58927452,10533913,5
+3062697,10533913,4
+47037959,10533913,5
+60997769,10533913,5
+135615366,10533913,4
+supercow,10533913,5
+56095656,10533913,5
+62996817,10533913,4
+58957770,10533913,3
+57230631,10533913,5
+71205321,10533913,5
+54267898,10533913,4
+80011707,10533913,4
+53498954,10533913,5
+69255956,10533913,5
+37005827,10533913,4
+57654704,10533913,5
+120805092,10533913,5
+125827809,10533913,3
+52021826,10533913,5
+73195946,10533913,5
+tt2792654,10533913,3
+3720406,10533913,5
+49115725,10533913,4
+67333061,10533913,3
+3962795,10533913,5
+3217100,10533913,4
+53260595,10533913,1
+lynn5217,10533913,5
+xiaofei508,10533913,5
+41651433,10533913,3
+jerrycan,10533913,5
+44350691,10533913,5
+iaiao,10533913,5
+raaven,10533913,3
+46627349,10533913,5
+lucifer8790,10533913,5
+64750790,10533913,3
+56827696,10533913,5
+14753496,10533913,5
+bbass,10533913,3
+48333772,10533913,3
+tangerinex,10533913,3
+gooxx,10533913,4
+misscoke,10533913,4
+66064130,10533913,5
+csf,10533913,4
+airinsky,10533913,5
+54170909,10533913,4
+2586114,10533913,5
+york_wu,10533913,5
+huhu227,10533913,5
+julian_lu,10533913,5
+cattyiyoungeoon,10533913,4
+monan221,10533913,5
+just_yeat,10533913,4
+zx8713,10533913,4
+lalarain,10533913,5
+66328593,10533913,4
+62605597,10533913,4
+1713797,10533913,5
+3314389,10533913,4
+jamiehoo,10533913,5
+3454112,10533913,5
+35367131,10533913,5
+mollymouth,10533913,5
+Aralezejuan,10533913,4
+104701659,10533913,5
+74117962,10533913,5
+50406444,10533913,5
+62918601,10533913,5
+94328046,10533913,5
+hyacinthiris,10533913,5
+46068341,10533913,5
+abluepig,10533913,4
+chenrui333,10533913,5
+29827748,10533913,5
+128509659,10533913,5
+78885050,10533913,5
+88658178,10533913,3
+40474663,10533913,5
+38984888,10533913,4
+ratbat,10533913,5
+63205792,10533913,4
+ccaokunn,10533913,5
+49126351,10533913,5
+STANDING-O,10533913,3
+58896946,10533913,5
+55701734,10533913,5
+60117515,10533913,5
+102834327,10533913,5
+nununi,10533913,5
+122858781,10533913,4
+134312513,10533913,3
+petitejoie,10533913,4
+Doctory,10533913,5
+77013688,10533913,3
+90858692,10533913,4
+53646911,10533913,5
+58001500,10533913,4
+68509387,10533913,4
+67798060,10533913,2
+4323578,10533913,5
+50720620,10533913,5
+demo_3,10533913,5
+53913514,10533913,5
+74115192,10533913,4
+57586307,10533913,4
+97647405,10533913,4
+Hanry7,10533913,5
+choryyu,10533913,5
+heatherhx,10533913,4
+insecthome,10533913,3
+ericawang,10533913,5
+daniayoyo,10533913,5
+130599620,10533913,5
+YH222,10533913,4
+1746842,10533913,5
+69495099,10533913,5
+freakyoyo,10533913,4
+58484149,10533913,5
+1607843,10533913,5
+nogard,10533913,5
+35330234,10533913,4
+dear.still,10533913,4
+136489190,10533913,5
+uahneqbu,10533913,4
+72993383,10533913,5
+48164798,10533913,5
+sangele,10533913,3
+65479938,10533913,4
+134537950,10533913,5
+blueapple0099,10533913,5
+126959230,10533913,4
+appeal,10533913,4
+vivian870629,10533913,4
+2590542,10533913,3
+59017371,10533913,3
+41559583,10533913,5
+becky-me,10533913,4
+6745246,10533913,3
+40067511,10533913,5
+62942210,10533913,5
+2765583,10533913,5
+135932861,10533913,2
+dingjiandoris,10533913,5
+48999552,10533913,5
+51513008,10533913,4
+Alice-Mu,10533913,5
+53345657,10533913,4
+57467616,10533913,5
+36669166,10533913,3
+3262644,10533913,3
+yisibugua,10533913,5
+45534837,10533913,4
+47142801,10533913,5
+134498032,10533913,5
+50006756,10533913,5
+62963853,10533913,5
+73334494,10533913,5
+Yolanda7,10533913,5
+49187859,10533913,5
+j2012bydz,10533913,5
+134532132,10533913,4
+44821238,10533913,4
+32505572,10533913,5
+32505572,10533913,5
+2750884,10533913,5
+claireV,10533913,5
+92695241,10533913,5
+71227303,10533913,5
+lantianxin,10533913,5
+yusquid,10533913,5
+whatsjasmin,10533913,3
+4453893,10533913,5
+54624081,10533913,5
+58564617,10533913,5
+4509975,10533913,4
+115375109,10533913,4
+69189478,10533913,5
+thriller32,10533913,5
+69336085,10533913,3
+kingiknow,10533913,5
+58168997,10533913,-1
+62917977,10533913,3
+kuroda_sakaki,10533913,4
+53561667,10533913,2
+invierno,10533913,4
+goldenslumber,10533913,4
+53349812,10533913,5
+3475246,10533913,4
+72654856,10533913,5
+59311627,10533913,3
+chenjihao,10533913,4
+cokecoal,10533913,5
+onlyblue16,10533913,5
+135243629,10533913,4
+92351225,10533913,5
+50908026,10533913,5
+127118502,10533913,4
+carrotlalala,10533913,4
+108168194,10533913,5
+wanwanxiaojie,10533913,5
+yuedawei,10533913,3
+2571322,10533913,4
+doldol,10533913,3
+63318962,10533913,-1
+55405486,10533913,5
+50222808,10533913,4
+4906772,10533913,4
+daniboy,10533913,3
+ILOVEMOVIES,10533913,4
+61795649,10533913,5
+WZYU-96,10533913,3
+63201957,10533913,4
+66689671,10533913,5
+80469066,10533913,4
+3921724,10533913,5
+85084871,10533913,5
+3134070,10533913,5
+oumyoumy,10533913,4
+pandaz23,10533913,4
+62249946,10533913,5
+15724007,10533913,5
+43829769,10533913,5
+JW_taoY,10533913,4
+calamusrain,10533913,5
+nachtkern,10533913,5
+eiffel009,10533913,4
+pedant,10533913,4
+82805165,10533913,5
+97465230,10533913,5
+58069856,10533913,4
+49703092,10533913,4
+49045557,10533913,4
+ruiye,10533913,2
+42213473,10533913,4
+134156002,10533913,3
+NN99,10533913,5
+62377536,10533913,4
+73471625,10533913,5
+klpz,10533913,5
+32767121,10533913,4
+43276883,10533913,3
+COTOPE,10533913,5
+furien,10533913,2
+25694661,10533913,4
+76552950,10533913,5
+zhudasu,10533913,5
+46183982,10533913,5
+115687997,10533913,3
+6239142,10533913,4
+38272326,10533913,5
+137240912,10533913,5
+l2morrow,10533913,5
+2645974,10533913,4
+2859691,10533913,5
+mpof357,10533913,5
+59336433,10533913,4
+leunghiutung,10533913,4
+2236027,10533913,5
+sylin,10533913,3
+corner1225,10533913,4
+69507945,10533913,5
+liwanjun,10533913,4
+59110325,10533913,4
+47721355,10533913,5
+1859823,10533913,-1
+vacodia,10533913,4
+70162864,10533913,4
+3438313,10533913,4
+127071131,10533913,5
+huamochu,10533913,3
+68146250,10533913,5
+zq8870690207,10533913,4
+48518515,10533913,5
+49247233,10533913,3
+82357316,10533913,4
+88317701,10533913,5
+60072437,10533913,4
+67820201,10533913,4
+xuancaidanqing,10533913,4
+47440795,10533913,5
+kingofjungleo,10533913,4
+Sweetietao,10533913,4
+75156006,10533913,4
+75156006,10533913,4
+samwang,10533913,5
+ravingrabbid,10533913,4
+133232175,10533913,5
+qianmoch,10533913,4
+52545422,10533913,4
+4484031,10533913,5
+62371973,10533913,5
+80923328,10533913,5
+50802370,10533913,5
+72786325,10533913,5
+80063493,10533913,4
+61689441,10533913,2
+lapertefaye,10533913,-1
+127433083,10533913,4
+56484043,10533913,5
+liangtong,10533913,3
+yogi2,10533913,4
+120461858,10533913,3
+gtmz,10533913,4
+gtmz,10533913,4
+137279679,10533913,5
+zcsyzdln,10533913,5
+4513407,10533913,4
+lidesheng,10533913,5
+lulu123,10533913,-1
+38258402,10533913,5
+xiaoyao8705,10533913,3
+netsurfe,10533913,5
+134222368,10533913,4
+2840499,10533913,3
+132032794,10533913,4
+4490210,10533913,5
+blurting,10533913,5
+fengxinhe,10533913,3
+72454425,10533913,4
+60498667,10533913,5
+Cappe,10533913,4
+103651770,10533913,5
+andrewle,10533913,5
+4469134,10533913,4
+48276312,10533913,5
+68795343,10533913,5
+44990923,10533913,4
+45812371,10533913,4
+67810919,10533913,5
+64790470,10533913,5
+54069821,10533913,4
+wendong262,10533913,5
+29875138,10533913,5
+67162659,10533913,2
+13424583,10533913,5
+2768259,10533913,3
+uncleyang,10533913,3
+ccw051746,10533913,4
+51855182,10533913,5
+34509096,10533913,3
+76725764,10533913,5
+50221817,10533913,5
+guoerer,10533913,5
+eliana0125,10533913,5
+sherrytu,10533913,4
+3979432,10533913,4
+chapter2,10533913,3
+shallow.M,10533913,5
+124548457,10533913,5
+2224920,10533913,3
+clockworkrabbit,10533913,5
+wu.,10533913,5
+dongworui,10533913,5
+54443064,10533913,-1
+94886676,10533913,4
+60736257,10533913,3
+39607607,10533913,4
+orangelee,10533913,5
+81387176,10533913,4
+81863885,10533913,5
+49568187,10533913,4
+55006462,10533913,5
+30066915,10533913,5
+53253499,10533913,4
+lx1nyu,10533913,4
+36617894,10533913,5
+44150563,10533913,5
+125630908,10533913,4
+3585677,10533913,4
+EI_wei,10533913,4
+Shynezzrui,10533913,3
+64333231,10533913,4
+liarb,10533913,5
+50398781,10533913,5
+50892549,10533913,5
+wutongsuliang,10533913,5
+127619617,10533913,5
+moonandstar1017,10533913,4
+j.,10533913,3
+104700864,10533913,4
+57088195,10533913,4
+jessica_21,10533913,4
+45938786,10533913,5
+2483011,10533913,3
+iskl,10533913,5
+123645263,10533913,4
+104265782,10533913,4
+131527494,10533913,5
+52139708,10533913,5
+57819875,10533913,-1
+viteless,10533913,3
+27749034,10533913,4
+48313221,10533913,5
+104529925,10533913,5
+dai_tt,10533913,5
+63417834,10533913,5
+124555801,10533913,4
+60447144,10533913,4
+126101069,10533913,5
+3307428,10533913,3
+68632804,10533913,4
+62987205,10533913,4
+133080033,10533913,4
+50979998,10533913,5
+afrasakurai,10533913,4
+2728631,10533913,4
+liaozhongchao,10533913,4
+51947048,10533913,5
+72530950,10533913,4
+imqiankai,10533913,4
+122944258,10533913,4
+65808735,10533913,5
+Ellie_sy,10533913,5
+NeilGuo521,10533913,5
+83451720,10533913,5
+68550514,10533913,5
+50275832,10533913,5
+stayfoolishstay,10533913,5
+53808953,10533913,5
+xiaoyufan569801,10533913,4
+Jan111,10533913,4
+130944083,10533913,3
+126349945,10533913,5
+57409425,10533913,5
+63674628,10533913,5
+onceomega,10533913,4
+84716681,10533913,4
+83195313,10533913,4
+moonmumumu,10533913,5
+vanie,10533913,4
+3104835,10533913,4
+121848300,10533913,4
+punaisilvia,10533913,4
+chaiochang,10533913,3
+3471541,10533913,5
+53405110,10533913,5
+125709319,10533913,4
+11459354,10533913,5
+RF181920,10533913,4
+48501324,10533913,5
+123948134,10533913,4
+jiayouqiufeng,10533913,5
+6260234,10533913,4
+67456292,10533913,5
+130369122,10533913,5
+81519024,10533913,4
+78577486,10533913,4
+55754517,10533913,3
+sundancingkid,10533913,4
+imKuku,10533913,4
+tianqiyong,10533913,5
+58580494,10533913,4
+drkc,10533913,5
+78066054,10533913,5
+37260591,10533913,5
+48998348,10533913,5
+96241491,10533913,4
+lyla11,10533913,5
+queensa,10533913,3
+2030641,10533913,5
+53456180,10533913,5
+crossatnight,10533913,4
+doooob,10533913,4
+crossatnight,10533913,4
+doooob,10533913,4
+53853976,10533913,5
+127224312,10533913,4
+6469458,10533913,4
+mxydhd,10533913,3
+64172361,10533913,5
+1246797,10533913,3
+121997108,10533913,5
+47368327,10533913,4
+27017814,10533913,5
+dongyaohui,10533913,5
+75851343,10533913,5
+76980448,10533913,5
+110716103,10533913,4
+103584497,10533913,4
+mikermiller,10533913,4
+53721065,10533913,5
+67661678,10533913,4
+rabbitpu,10533913,4
+YolaZhang,10533913,5
+67225577,10533913,4
+131465314,10533913,4
+spicymilk,10533913,4
+2436948,10533913,5
+128102502,10533913,5
+2206161,10533913,5
+115555926,10533913,5
+137129598,10533913,5
+4582130,10533913,4
+53916327,10533913,3
+heiyingtao,10533913,5
+linyoho,10533913,5
+46431893,10533913,5
+100390920,10533913,5
+1122926,10533913,5
+104479479,10533913,5
+beautysheng,10533913,5
+51723838,10533913,3
+80727161,10533913,5
+vmao730,10533913,5
+jeansgarden,10533913,3
+125038920,10533913,4
+98538969,10533913,4
+2309684,10533913,3
+68551392,10533913,5
+chenzhuo,10533913,5
+74365776,10533913,5
+53307722,10533913,5
+3915429,10533913,4
+116420053,10533913,3
+shibiebie,10533913,4
+mystonesmy,10533913,5
+beachboyzx,10533913,3
+40645830,10533913,4
+125373467,10533913,5
+77029353,10533913,5
+104842273,10533913,4
+45268716,10533913,4
+137136099,10533913,5
+44603618,10533913,3
+134574897,10533913,5
+51138872,10533913,5
+15497319,10533913,4
+76047428,10533913,4
+68666528,10533913,4
+115838732,10533913,3
+55653553,10533913,5
+anteruna,10533913,4
+5246713,10533913,4
+shinexyt,10533913,5
+102819340,10533913,5
+65532755,10533913,4
+JackHiddleston,10533913,4
+38884692,10533913,5
+sky7va,10533913,5
+anyone,10533913,5
+astrogirl1028,10533913,5
+53278965,10533913,5
+4200336,10533913,4
+2838561,10533913,4
+91325840,10533913,4
+ke-ke,10533913,5
+53817584,10533913,3
+66575578,10533913,4
+54119781,10533913,1
+32007076,10533913,5
+TAIGOUA,10533913,5
+xisahala,10533913,4
+jooyi,10533913,4
+72596766,10533913,5
+55016503,10533913,5
+zhangyangan,10533913,5
+14093841,10533913,4
+77723902,10533913,4
+ceciliamuzi,10533913,5
+45922646,10533913,4
+47826669,10533913,4
+39568642,10533913,4
+38646416,10533913,4
+57325323,10533913,4
+47655212,10533913,5
+62843075,10533913,4
+134258996,10533913,5
+68992870,10533913,3
+jiuriyuwen,10533913,3
+137058479,10533913,4
+130192486,10533913,5
+88256455,10533913,5
+5467957,10533913,4
+afou,10533913,5
+4464121,10533913,4
+45354123,10533913,3
+changeable123,10533913,5
+moggyga,10533913,5
+3766385,10533913,4
+miaomiaomiao321,10533913,3
+131020888,10533913,3
+creamo,10533913,4
+133486848,10533913,5
+46398519,10533913,4
+winnie0032,10533913,4
+67214035,10533913,4
+xellgio,10533913,5
+136594496,10533913,4
+121627285,10533913,4
+xiaopingzi,10533913,5
+98956225,10533913,4
+38780906,10533913,4
+108361623,10533913,5
+mayka,10533913,5
+93375016,10533913,5
+lxngzen,10533913,3
+1717629,10533913,5
+115631382,10533913,4
+51772918,10533913,5
+49968268,10533913,5
+136172875,10533913,3
+47258009,10533913,4
+119626499,10533913,5
+s-h-eet,10533913,3
+130419426,10533913,5
+Pytro,10533913,3
+56281076,10533913,4
+134588423,10533913,3
+Yan.er..dyn,10533913,5
+43129996,10533913,4
+124753438,10533913,4
+130563496,10533913,4
+58076873,10533913,5
+2051711,10533913,5
+127119228,10533913,4
+gezi921054,10533913,3
+69365887,10533913,4
+114517843,10533913,5
+52117309,10533913,4
+137121432,10533913,4
+SEVEN_HEAVEN,10533913,5
+caixiaoqiang,10533913,5
+67479654,10533913,5
+67479654,10533913,5
+xingren912,10533913,3
+63214398,10533913,5
+sun-happy,10533913,3
+sxk,10533913,5
+momon1900,10533913,4
+spirit.seraph,10533913,4
+wiwie,10533913,5
+57572100,10533913,3
+53297892,10533913,5
+69578591,10533913,4
+70923979,10533913,5
+85621966,10533913,5
+62705311,10533913,3
+warm_or_cool,10533913,5
+lowbroadway,10533913,-1
+52506105,10533913,3
+50706220,10533913,5
+boys_dont_cry,10533913,4
+53450077,10533913,3
+huangqiang_,10533913,4
+116138651,10533913,5
+74520364,10533913,4
+43310692,10533913,5
+2026896,10533913,3
+99436003,10533913,5
+68666799,10533913,4
+106514817,10533913,4
+90413201,10533913,4
+115504725,10533913,5
+50299686,10533913,5
+tuochacha,10533913,4
+4143335,10533913,4
+Laoyuelife,10533913,4
+lemonshuki,10533913,5
+54621010,10533913,5
+freemagic1988,10533913,3
+kmei,10533913,5
+48589119,10533913,4
+weiyuanzhang518,10533913,5
+130225502,10533913,4
+131343395,10533913,5
+the3000,10533913,5
+1981762,10533913,5
+Sunny.S,10533913,4
+133846679,10533913,4
+4185694,10533913,5
+59307428,10533913,4
+64056530,10533913,4
+49849512,10533913,5
+2482936,10533913,4
+51854366,10533913,5
+jieup,10533913,5
+stellaong,10533913,5
+131025711,10533913,4
+135996759,10533913,5
+42375246,10533913,5
+1216302,10533913,4
+83461403,10533913,5
+82499122,10533913,-1
+40683858,10533913,3
+shane1004,10533913,5
+60432937,10533913,5
+solabu,10533913,5
+yuyang0815,10533913,4
+alexDlee,10533913,5
+132859823,10533913,5
+livewhite,10533913,3
+mian11,10533913,3
+49803548,10533913,4
+59457349,10533913,4
+83140683,10533913,4
+4450899,10533913,5
+124848293,10533913,4
+linkkingjay,10533913,3
+57890138,10533913,5
+1948576,10533913,-1
+3491773,10533913,3
+54643955,10533913,5
+68630108,10533913,3
+64359754,10533913,5
+88428743,10533913,5
+3703670,10533913,5
+44810732,10533913,5
+51940752,10533913,4
+81979742,10533913,3
+57562576,10533913,5
+wubudingyang,10533913,5
+137076197,10533913,5
+32193900,10533913,3
+136926154,10533913,4
+2830413,10533913,4
+51387244,10533913,5
+Vivi17,10533913,5
+FUMANCHU,10533913,3
+32383822,10533913,4
+50178808,10533913,5
+126683480,10533913,5
+137073841,10533913,4
+Qixiaoqiang,10533913,5
+98985570,10533913,4
+48195937,10533913,4
+2218798,10533913,5
+jingeng,10533913,5
+74580493,10533913,3
+2618961,10533913,5
+89165660,10533913,3
+41107629,10533913,3
+notha,10533913,5
+61524961,10533913,4
+nimenime,10533913,4
+134599372,10533913,5
+108296832,10533913,4
+56899985,10533913,5
+137070872,10533913,3
+48088054,10533913,4
+Magicians,10533913,4
+137071730,10533913,5
+71070026,10533913,5
+60233121,10533913,4
+wqlotus,10533913,4
+siberialiu,10533913,5
+48094617,10533913,5
+137058497,10533913,4
+33940774,10533913,5
+3966971,10533913,3
+79214635,10533913,5
+79506720,10533913,5
+Juice.,10533913,4
+justleeee,10533913,5
+71651744,10533913,4
+134271856,10533913,5
+121236294,10533913,5
+130426117,10533913,4
+49712271,10533913,4
+45397702,10533913,4
+128767774,10533913,5
+loveaholic,10533913,5
+75490431,10533913,5
+57229004,10533913,3
+melodychung,10533913,5
+127275047,10533913,4
+ayuandeDB,10533913,5
+victoria1024,10533913,5
+AmberArch,10533913,4
+66967732,10533913,5
+90213289,10533913,3
+2506054,10533913,5
+36627836,10533913,4
+suitsue0504,10533913,4
+56872460,10533913,5
+howhappy,10533913,4
+59353616,10533913,5
+54484555,10533913,5
+3939740,10533913,5
+3449193,10533913,5
+53877844,10533913,3
+wantyourmore,10533913,5
+60302594,10533913,3
+2425322,10533913,-1
+103081300,10533913,4
+50264214,10533913,3
+50301331,10533913,5
+lightu,10533913,5
+70053575,10533913,4
+imoioi,10533913,5
+48137780,10533913,5
+59554628,10533913,5
+84697306,10533913,4
+33726772,10533913,5
+48093431,10533913,4
+iCinderella721,10533913,4
+53397908,10533913,4
+2857621,10533913,4
+icolouryou,10533913,3
+129577798,10533913,4
+msvalentine,10533913,4
+68409461,10533913,-1
+caker,10533913,5
+cherryhood,10533913,5
+56450349,10533913,4
+51303010,10533913,4
+130166144,10533913,4
+89761511,10533913,4
+123002309,10533913,4
+kumonokage,10533913,4
+53718083,10533913,2
+lizny921,10533913,4
+57615935,10533913,4
+55303586,10533913,4
+Alexdouble,10533913,5
+124762676,10533913,4
+1806185,10533913,4
+sleeper0803,10533913,3
+68191014,10533913,4
+27350321,10533913,5
+yyangle,10533913,5
+76420498,10533913,4
+74665978,10533913,4
+42046990,10533913,3
+62348293,10533913,5
+65095857,10533913,5
+wille,10533913,5
+1635123,10533913,5
+133319509,10533913,5
+66382241,10533913,4
+44922872,10533913,5
+60047782,10533913,5
+34794492,10533913,3
+51210267,10533913,5
+3252036,10533913,5
+64425214,10533913,5
+62369006,10533913,5
+46030549,10533913,3
+75567988,10533913,5
+75434556,10533913,3
+1802279,10533913,3
+52631968,10533913,5
+4684950,10533913,5
+vigilgt,10533913,3
+leiii,10533913,4
+56111594,10533913,5
+27852981,10533913,-1
+58089982,10533913,4
+4421543,10533913,3
+53612354,10533913,5
+2622237,10533913,4
+mLTl,10533913,4
+114090542,10533913,5
+fivero,10533913,4
+sysustephy,10533913,4
+ddsto,10533913,5
+127159580,10533913,5
+fruit_,10533913,5
+mpower007,10533913,3
+78999560,10533913,4
+119313402,10533913,5
+58231376,10533913,5
+49170151,10533913,5
+57442857,10533913,4
+licinda,10533913,4
+4594496,10533913,4
+63985739,10533913,3
+64332038,10533913,5
+48276999,10533913,5
+122656795,10533913,4
+zhurou,10533913,4
+52995236,10533913,4
+114635463,10533913,5
+108836700,10533913,5
+68699271,10533913,4
+34243551,10533913,5
+48832815,10533913,5
+53454251,10533913,4
+lanlande,10533913,4
+olive9,10533913,-1
+134909380,10533913,5
+75914022,10533913,5
+lingbo,10533913,5
+47285151,10533913,3
+xiaowumei,10533913,5
+sakiring,10533913,5
+puggy,10533913,3
+48676614,10533913,4
+120964759,10533913,4
+130792302,10533913,4
+akpe,10533913,5
+64725454,10533913,5
+54773691,10533913,5
+pioneerchang,10533913,5
+cjtracey,10533913,5
+69195695,10533913,3
+successlessness,10533913,-1
+4448227,10533913,3
+104462145,10533913,5
+4113112,10533913,5
+69434822,10533913,5
+57274562,10533913,4
+28467614,10533913,4
+tong0803,10533913,5
+3277928,10533913,4
+seala,10533913,4
+122868077,10533913,4
+62130444,10533913,5
+36558966,10533913,3
+68744286,10533913,5
+46318785,10533913,4
+yoory,10533913,-1
+30427515,10533913,5
+layne37,10533913,5
+79030496,10533913,5
+88345829,10533913,4
+79939000,10533913,3
+48126534,10533913,5
+1407652,10533913,5
+crony09,10533913,4
+lulushine,10533913,5
+2167030,10533913,5
+lindadarling,10533913,4
+41440625,10533913,5
+Sinept,10533913,5
+CheeZcn,10533913,5
+yincesc,10533913,5
+44578870,10533913,4
+littleflowwer,10533913,5
+102152688,10533913,5
+printf_ll_,10533913,5
+46230886,10533913,5
+4008035,10533913,5
+79074513,10533913,4
+77619808,10533913,5
+lovedtomma,10533913,4
+54228014,10533913,3
+cplcs,10533913,5
+47022625,10533913,5
+black9_eleven,10533913,3
+starsslicence,10533913,-1
+2848557,10533913,4
+impossible_ww,10533913,5
+72129082,10533913,3
+84544522,10533913,5
+115496664,10533913,4
+46592439,10533913,5
+37037810,10533913,4
+52097068,10533913,5
+49041524,10533913,4
+iamdzn,10533913,5
+ni0712,10533913,5
+1274005,10533913,4
+24112539,10533913,5
+136426002,10533913,5
+126136101,10533913,5
+cabonari,10533913,5
+123179414,10533913,4
+laundry,10533913,4
+60209728,10533913,5
+4528486,10533913,5
+42573116,10533913,5
+50971658,10533913,5
+4077370,10533913,5
+120708259,10533913,5
+51888801,10533913,5
+wuzhebupt,10533913,5
+qianqianfei,10533913,4
+69068097,10533913,3
+48314960,10533913,5
+hyuk35zm,10533913,5
+36829206,10533913,5
+2846758,10533913,4
+120566787,10533913,4
+59769605,10533913,5
+36825112,10533913,5
+4059598,10533913,4
+liyuanli0824,10533913,5
+feizhuangzhuang,10533913,4
+yexuanyulinxi,10533913,4
+56783392,10533913,4
+131479104,10533913,5
+49259810,10533913,5
+124076510,10533913,4
+73165513,10533913,2
+129278118,10533913,5
+61462956,10533913,4
+61111185,10533913,4
+134893369,10533913,4
+58338006,10533913,5
+127731912,10533913,5
+13889436,10533913,5
+94220348,10533913,4
+136650795,10533913,4
+zhaoda,10533913,4
+11392511,10533913,4
+maimufei,10533913,5
+50264396,10533913,2
+57937486,10533913,5
+51105174,10533913,5
+50416947,10533913,4
+58829197,10533913,5
+liquor,10533913,3
+2620783,10533913,5
+shushudabaoz,10533913,5
+133067591,10533913,5
+45276725,10533913,5
+missplay,10533913,4
+48192795,10533913,4
+54387661,10533913,4
+Tony_MuYuan,10533913,5
+PEACE,10533913,-1
+Joycejingtong,10533913,5
+iatihs,10533913,3
+ramonachan,10533913,5
+49308671,10533913,5
+136409582,10533913,4
+129051527,10533913,4
+35261395,10533913,4
+1069770,10533913,4
+89778884,10533913,5
+3678474,10533913,5
+fluid_time,10533913,4
+45245030,10533913,5
+45245030,10533913,5
+64477174,10533913,3
+46439498,10533913,4
+joaquina,10533913,3
+sunhuaning,10533913,5
+48880866,10533913,4
+leechambo,10533913,4
+53515051,10533913,5
+78177021,10533913,5
+93758972,10533913,5
+39991969,10533913,4
+47029600,10533913,5
+55015204,10533913,4
+peterfdt,10533913,5
+125136196,10533913,5
+3626195,10533913,4
+52908275,10533913,5
+42862890,10533913,5
+49359847,10533913,4
+Qyaoyao,10533913,-1
+16048346,10533913,5
+96545513,10533913,5
+tt1122,10533913,5
+75851842,10533913,4
+58549374,10533913,5
+74104010,10533913,5
+lihanbin,10533913,5
+wang2mu,10533913,-1
+54129779,10533913,5
+xiaoshuiliuqiao,10533913,4
+difeijing,10533913,4
+136211430,10533913,5
+83853096,10533913,5
+xyzzecho,10533913,3
+2639245,10533913,5
+10813882,10533913,5
+47361549,10533913,5
+momojenny,10533913,4
+4338846,10533913,5
+1413100,10533913,4
+gatcn,10533913,5
+15439490,10533913,5
+catandjay,10533913,4
+8597530,10533913,5
+99940075,10533913,5
+44903919,10533913,5
+127298095,10533913,4
+114435379,10533913,5
+115590990,10533913,5
+73189680,10533913,5
+acseleon,10533913,4
+maggiexiao,10533913,4
+41309833,10533913,5
+88789846,10533913,5
+136888863,10533913,4
+79168814,10533913,4
+sxhour,10533913,5
+50672411,10533913,4
+86140576,10533913,5
+4146399,10533913,4
+48559229,10533913,5
+104985254,10533913,3
+120327562,10533913,5
+79071322,10533913,5
+cherry_ocean,10533913,4
+124754239,10533913,4
+92919500,10533913,5
+2414226,10533913,5
+122274250,10533913,4
+zhanghuaxin,10533913,3
+32767730,10533913,4
+springdies,10533913,4
+129543968,10533913,5
+yinmouren,10533913,4
+67683358,10533913,4
+127448783,10533913,5
+flykarry,10533913,5
+62693203,10533913,5
+jolinxian,10533913,4
+4712087,10533913,5
+132016475,10533913,5
+64639835,10533913,4
+qiqiuping,10533913,3
+44149376,10533913,5
+dxiaomi,10533913,4
+1098195,10533913,4
+60365345,10533913,4
+helenhong,10533913,3
+darkstars,10533913,3
+black1110,10533913,5
+67469687,10533913,4
+43978557,10533913,5
+wyw-o-,10533913,4
+1165894,10533913,5
+82224797,10533913,5
+4113894,10533913,5
+33750138,10533913,5
+50296022,10533913,5
+Devilhunter,10533913,5
+63805238,10533913,5
+65417028,10533913,2
+3151445,10533913,3
+128131396,10533913,5
+3446950,10533913,5
+pingchengweixin,10533913,4
+skyfreely,10533913,5
+fmxiaofei,10533913,5
+68585121,10533913,5
+73742260,10533913,4
+stella_zhou,10533913,4
+1538371,10533913,4
+59695133,10533913,4
+1780152,10533913,4
+2717266,10533913,5
+77081051,10533913,3
+65530128,10533913,-1
+63432491,10533913,3
+68093704,10533913,5
+jukiloveu,10533913,5
+122139957,10533913,4
+2208862,10533913,5
+Amppppppp,10533913,4
+2853103,10533913,5
+imantique,10533913,5
+nengyinyibeiwu,10533913,5
+kiyosun,10533913,4
+Auror_mars,10533913,5
+1603683,10533913,4
+craftman,10533913,-1
+ruoruomia,10533913,5
+50782612,10533913,3
+lianjin,10533913,5
+lamianaiai,10533913,4
+44578565,10533913,5
+50884822,10533913,5
+50618978,10533913,5
+120201514,10533913,4
+130045954,10533913,4
+108285360,10533913,3
+112178752,10533913,5
+4415376,10533913,4
+55634387,10533913,5
+graceguolinjing,10533913,5
+4161317,10533913,4
+48053814,10533913,4
+83486677,10533913,3
+54366590,10533913,5
+53646130,10533913,5
+62979030,10533913,5
+plawyer,10533913,4
+superxiaoqi123,10533913,4
+2172840,10533913,4
+50353544,10533913,5
+wyfar,10533913,5
+69430764,10533913,4
+ii53231323,10533913,4
+liuemei,10533913,5
+zengrcsth,10533913,3
+128569083,10533913,4
+75182939,10533913,4
+59774310,10533913,5
+funkyheresy,10533913,5
+52462524,10533913,5
+2628019,10533913,5
+m.1234567,10533913,3
+136896872,10533913,5
+zifeiyu1995,10533913,3
+superyyrrzz,10533913,3
+57566252,10533913,5
+4023400,10533913,4
+97062397,10533913,5
+50926271,10533913,5
+2432383,10533913,4
+119189786,10533913,5
+80663628,10533913,5
+Belater_Waitman,10533913,5
+68521572,10533913,5
+vexit,10533913,-1
+4558486,10533913,4
+houx,10533913,5
+houx,10533913,5
+117348494,10533913,3
+69513707,10533913,5
+4811365,10533913,5
+chrisdo,10533913,5
+coldmist,10533913,3
+102746063,10533913,5
+129002163,10533913,3
+133944092,10533913,5
+bmw.lili,10533913,5
+61701584,10533913,5
+weblinder,10533913,5
+87988872,10533913,4
+penguin_re,10533913,4
+69848404,10533913,5
+57370195,10533913,4
+4282110,10533913,5
+83139552,10533913,5
+49487093,10533913,3
+53742648,10533913,5
+70581894,10533913,5
+liuyuxing,10533913,5
+48650510,10533913,5
+16395064,10533913,4
+4447712,10533913,3
+woodenstar,10533913,5
+levycycca,10533913,3
+88526252,10533913,3
+93527647,10533913,4
+133855591,10533913,5
+1658796,10533913,3
+xiaohundaban,10533913,4
+jxzq007,10533913,5
+52823341,10533913,5
+74475497,10533913,5
+74033673,10533913,3
+73339051,10533913,4
+53169860,10533913,4
+40626862,10533913,5
+74044673,10533913,3
+78667352,10533913,5
+56430618,10533913,4
+64628791,10533913,4
+janedanger,10533913,5
+34208278,10533913,5
+93672714,10533913,5
+OnionTara,10533913,3
+zhengkangkang,10533913,3
+2570198,10533913,4
+62052341,10533913,5
+4464633,10533913,5
+48194135,10533913,5
+cx9146,10533913,5
+27091040,10533913,5
+73929184,10533913,4
+136872877,10533913,5
+61301677,10533913,5
+yigesong,10533913,3
+132320734,10533913,3
+arrowkey,10533913,3
+53577893,10533913,5
+76236179,10533913,3
+62628758,10533913,5
+muouzaiweixiao,10533913,5
+55341093,10533913,5
+40488240,10533913,5
+66991726,10533913,3
+71946766,10533913,4
+54413129,10533913,5
+beibeiyu,10533913,5
+sheldonC,10533913,5
+64076867,10533913,5
+lan.chan,10533913,4
+AkiranoAsahi,10533913,5
+1307157,10533913,5
+3249391,10533913,5
+63054099,10533913,5
+28776614,10533913,5
+tankdream,10533913,5
+131060612,10533913,5
+111493695,10533913,4
+zling--HE,10533913,5
+71988580,10533913,3
+32475683,10533913,3
+tyx033333,10533913,5
+28773874,10533913,5
+mimimojo,10533913,5
+tbchange,10533913,4
+gb333,10533913,5
+32019059,10533913,4
+guanyiton,10533913,5
+1749137,10533913,5
+61011795,10533913,5
+51001959,10533913,5
+hayleybabe,10533913,5
+98921786,10533913,4
+1742977,10533913,4
+74927236,10533913,5
+127947406,10533913,4
+40913424,10533913,4
+76118152,10533913,5
+hekahuiqu,10533913,5
+48990139,10533913,5
+103271136,10533913,5
+1383913,10533913,4
+7433094,10533913,4
+83651306,10533913,5
+jie523,10533913,5
+76994083,10533913,3
+zhangjc223,10533913,5
+1201160,10533913,5
+46754080,10533913,5
+63151667,10533913,5
+35645925,10533913,4
+95450000,10533913,4
+134546006,10533913,5
+dahdumiedu,10533913,3
+68385418,10533913,5
+83306370,10533913,5
+36594932,10533913,-1
+xipingchangnata,10533913,4
+2327781,10533913,3
+fying,10533913,3
+lihen,10533913,5
+Lucy.Wang,10533913,5
+4158579,10533913,4
+lelexiaomifeng,10533913,4
+zhanshenzhy,10533913,4
+46103242,10533913,4
+Olive1,10533913,5
+piaoyull,10533913,4
+41717444,10533913,4
+133371688,10533913,5
+4657541,10533913,5
+3978591,10533913,5
+1952871,10533913,4
+67680906,10533913,5
+elva_M,10533913,5
+bigsnaky,10533913,-1
+28319088,10533913,-1
+yefengwei,10533913,4
+44005154,10533913,3
+42555541,10533913,4
+flowerway,10533913,-1
+MoviesandI,10533913,3
+63679165,10533913,4
+42116635,10533913,5
+rachelff,10533913,5
+wjxhzh,10533913,5
+55887072,10533913,5
+yttx,10533913,4
+loverainbow_sun,10533913,5
+zementary,10533913,4
+scarface,10533913,5
+47470464,10533913,5
+55977195,10533913,4
+67268296,10533913,5
+Wenqian,10533913,4
+132841407,10533913,5
+xuyuansundae,10533913,4
+85104639,10533913,5
+2785136,10533913,4
+ucrone,10533913,5
+38752361,10533913,5
+122420292,10533913,5
+62608961,10533913,4
+64563247,10533913,5
+97526060,10533913,4
+103042585,10533913,4
+66519184,10533913,5
+38632557,10533913,5
+50444806,10533913,5
+PicturePerfect,10533913,5
+80816818,10533913,5
+47969171,10533913,4
+41573793,10533913,5
+17881602,10533913,4
+49081579,10533913,5
+91457550,10533913,5
+soarchane,10533913,4
+36811646,10533913,3
+jessiesumer,10533913,5
+mavisys,10533913,4
+49642517,10533913,4
+49218440,10533913,5
+33325547,10533913,5
+73410392,10533913,4
+brenda816,10533913,5
+120556473,10533913,5
+43256737,10533913,3
+54715138,10533913,3
+mimashuo,10533913,5
+121249680,10533913,5
+61811132,10533913,4
+nrz1101,10533913,5
+60812524,10533913,5
+67967186,10533913,4
+zzyzeal,10533913,4
+82405870,10533913,4
+leonyounger,10533913,4
+yukinomi,10533913,3
+56143102,10533913,5
+51636486,10533913,5
+68505371,10533913,5
+136863526,10533913,5
+60919975,10533913,4
+2388812,10533913,4
+55860560,10533913,5
+77607736,10533913,4
+47093146,10533913,5
+13704942,10533913,5
+63283519,10533913,3
+3182137,10533913,5
+72276993,10533913,5
+yele,10533913,5
+nathanxcc,10533913,5
+wjww2128,10533913,5
+jasonmraz_,10533913,5
+chenchensu,10533913,3
+fightfincher,10533913,4
+46565536,10533913,5
+SharonShining,10533913,5
+41125061,10533913,5
+2903739,10533913,5
+72002197,10533913,5
+54725975,10533913,5
+136857424,10533913,4
+50479628,10533913,5
+Lukappa,10533913,3
+jchen777,10533913,5
+48886320,10533913,5
+135618648,10533913,5
+soupmoon,10533913,4
+43390539,10533913,4
+feiyangwuyunli,10533913,5
+nighteye1123,10533913,5
+lvtory,10533913,5
+41022109,10533913,5
+sunnycawb,10533913,-1
+Subwaiy,10533913,5
+Subwaiy,10533913,5
+kindlethesky,10533913,5
+romancycy,10533913,5
+81962971,10533913,4
+41441330,10533913,4
+65341751,10533913,4
+80027002,10533913,4
+70051066,10533913,4
+65635790,10533913,5
+peter-pen,10533913,3
+68913100,10533913,5
+36565635,10533913,5
+47894136,10533913,3
+nopeepin,10533913,5
+3042073,10533913,4
+50770418,10533913,4
+97188131,10533913,4
+122259457,10533913,4
+37340433,10533913,4
+58578065,10533913,4
+Riky-555,10533913,3
+62666104,10533913,3
+64729781,10533913,1
+120451194,10533913,5
+jiaowodlam,10533913,5
+heyan0225,10533913,4
+54334991,10533913,4
+51103959,10533913,5
+rurusilver,10533913,5
+60044039,10533913,5
+74910963,10533913,5
+39013689,10533913,4
+longgouhugo,10533913,4
+133155707,10533913,5
+69670097,10533913,5
+ingie,10533913,4
+55496858,10533913,5
+benbig,10533913,5
+42307079,10533913,4
+wxgigi0617,10533913,5
+53052178,10533913,5
+53559432,10533913,4
+45234987,10533913,5
+virgin,10533913,4
+1609757,10533913,4
+66269083,10533913,5
+76587254,10533913,4
+leafvsleaf,10533913,4
+3679808,10533913,4
+56444754,10533913,5
+bandengniu,10533913,3
+colorfullion,10533913,5
+50860943,10533913,4
+58575244,10533913,5
+magicxiaobi,10533913,5
+135185270,10533913,4
+68674122,10533913,5
+135746121,10533913,5
+80425280,10533913,4
+46067722,10533913,4
+4434835,10533913,5
+39419609,10533913,5
+49296258,10533913,4
+89575571,10533913,5
+69367982,10533913,4
+2514777,10533913,4
+46686249,10533913,3
+heechul007,10533913,5
+bubbbble,10533913,4
+Holidayczz,10533913,4
+4247303,10533913,3
+48816440,10533913,5
+52739987,10533913,4
+120581904,10533913,4
+133184119,10533913,4
+45382410,10533913,5
+56812940,10533913,5
+1526106,10533913,5
+81275158,10533913,5
+52463415,10533913,3
+Boomer,10533913,4
+61346101,10533913,4
+62843919,10533913,5
+3549913,10533913,5
+cleonrui,10533913,4
+77178661,10533913,5
+drxdrxdrxdrx,10533913,5
+38839495,10533913,5
+52443906,10533913,5
+6678345,10533913,5
+63912359,10533913,5
+3435038,10533913,3
+youngjie999,10533913,3
+lvdao,10533913,4
+46667318,10533913,5
+pigeon-komatsu,10533913,4
+50490367,10533913,4
+57698822,10533913,4
+3969292,10533913,3
+HJS_L,10533913,4
+134693673,10533913,4
+33724221,10533913,5
+34174788,10533913,-1
+76626415,10533913,4
+9614176,10533913,2
+69434990,10533913,5
+48421988,10533913,2
+62984615,10533913,5
+45790746,10533913,5
+65672659,10533913,5
+127397854,10533913,5
+119120514,10533913,5
+37567847,10533913,4
+4337367,10533913,5
+cherry_catfish,10533913,5
+27068945,10533913,3
+tiputin,10533913,5
+redrabbit,10533913,4
+Artha,10533913,4
+48747141,10533913,5
+46607373,10533913,5
+firepr,10533913,5
+4634144,10533913,4
+dingning83,10533913,5
+50292036,10533913,4
+dhflockyer00,10533913,3
+annho,10533913,5
+4104399,10533913,4
+42252873,10533913,5
+134969713,10533913,4
+124210070,10533913,5
+4395089,10533913,5
+for_love,10533913,5
+53868609,10533913,5
+rollin,10533913,3
+LadySandra,10533913,5
+57041571,10533913,5
+120050034,10533913,4
+gsmusician,10533913,5
+66089131,10533913,4
+66089131,10533913,4
+52787854,10533913,3
+56017394,10533913,4
+136754802,10533913,5
+lzt,10533913,3
+107863421,10533913,3
+calafalas,10533913,5
+62237283,10533913,4
+fangyuan1987,10533913,3
+64954125,10533913,4
+cc5832354,10533913,4
+53920626,10533913,4
+53608326,10533913,5
+68512611,10533913,4
+51286043,10533913,5
+42834387,10533913,5
+2776455,10533913,4
+3701919,10533913,5
+2858772,10533913,5
+leader4,10533913,3
+prostate,10533913,4
+56861848,10533913,5
+69406009,10533913,5
+68982698,10533913,4
+sissistar,10533913,4
+EricYing,10533913,5
+121146638,10533913,3
+36199638,10533913,5
+121912883,10533913,4
+4858378,10533913,5
+freedom4ever_L,10533913,4
+caicaisweat,10533913,4
+61918664,10533913,4
+32616279,10533913,5
+56863483,10533913,3
+4522359,10533913,5
+ohmymicky,10533913,5
+68075765,10533913,5
+62952005,10533913,5
+61046466,10533913,3
+92773892,10533913,5
+64165773,10533913,4
+WANG861666865,10533913,4
+59600162,10533913,4
+54794006,10533913,5
+120137287,10533913,5
+88302269,10533913,4
+1357146,10533913,5
+3277994,10533913,5
+50980636,10533913,5
+134063330,10533913,5
+84912149,10533913,5
+41206383,10533913,5
+ouliuliu,10533913,5
+70238336,10533913,4
+asldrf,10533913,4
+3166954,10533913,4
+2993049,10533913,-1
+2349154,10533913,3
+65445656,10533913,5
+45807096,10533913,4
+maohei,10533913,5
+41726005,10533913,5
+120524385,10533913,4
+43671128,10533913,5
+34964485,10533913,5
+pandachain,10533913,4
+135417989,10533913,5
+DellaZ,10533913,5
+121318701,10533913,4
+40660064,10533913,5
+2421625,10533913,4
+121059369,10533913,4
+dark_knight,10533913,4
+hrm880716,10533913,4
+49053207,10533913,5
+1929758,10533913,4
+chending,10533913,3
+lifeo2,10533913,4
+70680016,10533913,5
+Mikyung,10533913,5
+71867547,10533913,3
+51476835,10533913,3
+81480860,10533913,5
+3471923,10533913,5
+hudi911217,10533913,5
+99692207,10533913,3
+lyning,10533913,4
+vikshare,10533913,4
+ypl525,10533913,5
+76148620,10533913,5
+63305149,10533913,4
+45278845,10533913,4
+xlei130,10533913,3
+107502099,10533913,4
+58289096,10533913,5
+48899019,10533913,5
+52054159,10533913,4
+47772344,10533913,4
+miaoruomu,10533913,5
+xiaozhengzz,10533913,4
+125618871,10533913,5
+vv-ness,10533913,5
+yazi3.15,10533913,5
+mimosa93,10533913,4
+easyfeel,10533913,4
+suixi,10533913,4
+64234839,10533913,5
+herrfay,10533913,4
+57648568,10533913,5
+36688591,10533913,5
+2126475,10533913,5
+tzytime,10533913,4
+42144253,10533913,4
+59880067,10533913,4
+PLP,10533913,5
+bohemiann,10533913,4
+48790837,10533913,5
+51503621,10533913,4
+11760447,10533913,4
+40140527,10533913,4
+134684988,10533913,4
+niumingzhe,10533913,3
+alunnihao,10533913,5
+2417785,10533913,4
+jzhsu,10533913,5
+62515119,10533913,4
+65085646,10533913,4
+2827733,10533913,4
+zebramomo,10533913,4
+68528163,10533913,4
+56074823,10533913,5
+yuchenfeng,10533913,5
+agnes223,10533913,4
+4588595,10533913,5
+70055114,10533913,4
+loki-649,10533913,5
+4010095,10533913,5
+47209214,10533913,5
+losiuhong,10533913,5
+losiuhong,10533913,5
+singing4u,10533913,5
+108394568,10533913,5
+43891940,10533913,4
+35934602,10533913,-1
+61698998,10533913,5
+49520759,10533913,4
+62751828,10533913,4
+krugwoman,10533913,5
+1923660,10533913,4
+48165388,10533913,5
+39126171,10533913,5
+2700013,10533913,4
+121780577,10533913,3
+77040171,10533913,-1
+oldfivewang,10533913,5
+66064522,10533913,4
+shijinqi,10533913,5
+Zhizhiye,10533913,4
+57291384,10533913,4
+WSSWHL,10533913,4
+47542620,10533913,-1
+lijianbinxp,10533913,4
+47602699,10533913,4
+iwa0115,10533913,5
+uniradio,10533913,4
+3480174,10533913,5
+xxhappy,10533913,5
+miuzc.pei,10533913,5
+136757933,10533913,4
+dream09104,10533913,5
+1722069,10533913,3
+4096669,10533913,3
+53639900,10533913,5
+wangys82,10533913,3
+63383008,10533913,5
+shiiirley,10533913,4
+qjy,10533913,3
+134223488,10533913,5
+67173543,10533913,5
+30748732,10533913,3
+63194711,10533913,5
+128836726,10533913,5
+59005410,10533913,3
+63371877,10533913,5
+39636174,10533913,5
+3287385,10533913,5
+120740966,10533913,3
+lc_galaxy,10533913,5
+78786637,10533913,5
+46218794,10533913,2
+49921068,10533913,4
+4136302,10533913,5
+62209116,10533913,4
+43372151,10533913,4
+3797336,10533913,5
+whosKady,10533913,4
+57418562,10533913,5
+76190876,10533913,4
+green912,10533913,5
+chenhuayang,10533913,4
+68941794,10533913,4
+115714696,10533913,5
+53968686,10533913,5
+aiolia,10533913,5
+tinaxuang,10533913,4
+sophiamaomao,10533913,5
+73845983,10533913,5
+3116272,10533913,4
+65537849,10533913,5
+50865043,10533913,5
+changxia,10533913,3
+people2,10533913,4
+2624503,10533913,5
+newzaiku,10533913,-1
+mousemouse,10533913,5
+4588859,10533913,5
+3496385,10533913,5
+58503450,10533913,3
+dianawh,10533913,3
+127064109,10533913,5
+curiousyue,10533913,4
+122425673,10533913,4
+passinio,10533913,5
+10321693,10533913,5
+39813056,10533913,4
+53059732,10533913,5
+greyknowsblue,10533913,2
+1569021,10533913,5
+zjss,10533913,4
+1138243,10533913,3
+cherrysakura,10533913,4
+yuzizahui,10533913,5
+54836169,10533913,5
+32653092,10533913,3
+49617731,10533913,5
+79207793,10533913,4
+44066080,10533913,4
+Daniel-Cheung,10533913,5
+sisyphos,10533913,5
+1498974,10533913,4
+73635439,10533913,5
+87866144,10533913,5
+67715281,10533913,5
+Joacy19900902,10533913,-1
+zkztnxq,10533913,5
+88989024,10533913,5
+HugoBaker,10533913,4
+90551682,10533913,5
+honeyforest,10533913,4
+65982936,10533913,5
+shaofa,10533913,4
+Saggezza,10533913,4
+ashley.zl,10533913,4
+78303309,10533913,5
+topxpp,10533913,5
+wmjun,10533913,5
+43649933,10533913,4
+belliedmonkey,10533913,5
+unimaginablec,10533913,4
+66707094,10533913,5
+120383320,10533913,3
+56244786,10533913,4
+62560000,10533913,5
+82359103,10533913,5
+40841235,10533913,5
+45623690,10533913,4
+80566761,10533913,5
+lapeido,10533913,5
+1491610,10533913,2
+81157731,10533913,4
+lozer,10533913,3
+42069458,10533913,4
+126372246,10533913,5
+csaver,10533913,5
+57497039,10533913,4
+imtf521,10533913,5
+zdjsmile,10533913,5
+lipo,10533913,4
+126656529,10533913,4
+68102477,10533913,5
+1879970,10533913,4
+40273043,10533913,5
+4156800,10533913,5
+50677372,10533913,4
+geniekitty,10533913,5
+erruzhu,10533913,3
+louisyoung1026,10533913,3
+49421412,10533913,4
+58707835,10533913,5
+15726816,10533913,5
+46038354,10533913,3
+50131666,10533913,5
+59927608,10533913,5
+huxzhao,10533913,5
+luvsoon,10533913,5
+vanmic,10533913,4
+55021237,10533913,4
+122302727,10533913,4
+47737974,10533913,5
+120878915,10533913,4
+YiShine,10533913,4
+alyssadu,10533913,4
+sharon731,10533913,4
+57983580,10533913,3
+shuoshuoshuo111,10533913,5
+amigo4978,10533913,4
+enriqueiglesias,10533913,2
+ORBR,10533913,4
+youyuanshanren,10533913,5
+51965431,10533913,5
+yway1101,10533913,5
+myasuka,10533913,4
+banxiabuzhichun,10533913,5
+2619483,10533913,4
+134528233,10533913,4
+51557756,10533913,4
+twinslt,10533913,5
+44465848,10533913,4
+6455488,10533913,5
+123714793,10533913,4
+xiaomo828,10533913,4
+heartinsky,10533913,4
+53896807,10533913,4
+57210088,10533913,4
+119731964,10533913,4
+34706621,10533913,5
+dogfish,10533913,4
+55847546,10533913,4
+56282257,10533913,4
+3592617,10533913,5
+mypal,10533913,4
+44642367,10533913,4
+79278811,10533913,3
+aeris511,10533913,5
+1605613,10533913,5
+3797778,10533913,3
+63830890,10533913,5
+57590168,10533913,5
+85660971,10533913,5
+48275353,10533913,5
+kyd77,10533913,5
+17767456,10533913,5
+49719620,10533913,5
+marsmosquito,10533913,5
+59147323,10533913,5
+3082916,10533913,4
+1580733,10533913,4
+crea,10533913,3
+38924619,10533913,3
+58993842,10533913,4
+36638409,10533913,5
+3282548,10533913,-1
+wood0913,10533913,4
+52539615,10533913,5
+GodAssassin,10533913,4
+1299948,10533913,3
+54100207,10533913,-1
+135921283,10533913,5
+75741734,10533913,4
+peixinzhu,10533913,4
+136206078,10533913,4
+heyeast,10533913,5
+7801839,10533913,4
+Carman.Feng,10533913,4
+40081609,10533913,5
+litsunny,10533913,4
+46383318,10533913,5
+122452558,10533913,5
+54094049,10533913,5
+57275706,10533913,4
+54646551,10533913,4
+2385429,10533913,5
+113999648,10533913,4
+ilovejenny,10533913,5
+4736613,10533913,5
+cxycxy19930520,10533913,5
+shirley317,10533913,5
+3407154,10533913,5
+yyx342501,10533913,4
+72972634,10533913,3
+73856461,10533913,4
+lsadalin,10533913,4
+xseac,10533913,5
+bigsword,10533913,5
+57880373,10533913,5
+leantong,10533913,2
+47395813,10533913,3
+136323962,10533913,5
+dearing,10533913,5
+Bebefore,10533913,4
+sleeper_arashi,10533913,3
+53580673,10533913,5
+omgjingjing,10533913,5
+puredoudou,10533913,4
+hzloli,10533913,-1
+viCkeysweetie,10533913,3
+76239452,10533913,5
+mabeysomeday,10533913,4
+48898994,10533913,5
+1845330,10533913,5
+52692342,10533913,4
+45158897,10533913,5
+2121850,10533913,3
+sabel,10533913,5
+FindingDory,10533913,5
+53715801,10533913,5
+aileenchen925,10533913,5
+48694579,10533913,-1
+61078362,10533913,5
+maomaoshell,10533913,5
+55661989,10533913,5
+4339165,10533913,4
+8469986,10533913,4
+52883078,10533913,4
+soultaker,10533913,5
+lancelot-gao,10533913,5
+73108314,10533913,5
+4657116,10533913,4
+jujuzhh,10533913,-1
+60822788,10533913,4
+shac,10533913,5
+3749468,10533913,5
+83304262,10533913,5
+qi2xue,10533913,4
+seatbelts,10533913,3
+lihan19970726,10533913,5
+posuoluo,10533913,5
+loreleishanny,10533913,5
+joewice,10533913,3
+2401613,10533913,5
+yoyo5411,10533913,5
+hasuki523,10533913,5
+elegantwww,10533913,3
+2800848,10533913,4
+136708207,10533913,4
+1077771,10533913,4
+49442913,10533913,4
+87578866,10533913,5
+63848074,10533913,4
+63116888,10533913,5
+mingming1124530,10533913,3
+73683661,10533913,3
+51559906,10533913,5
+48973217,10533913,5
+120305816,10533913,5
+Vikey7play,10533913,5
+62798977,10533913,4
+arista9,10533913,4
+48035505,10533913,5
+69334784,10533913,4
+37720840,10533913,5
+justsmaki,10533913,4
+YxL_laughing,10533913,5
+31449811,10533913,5
+48545446,10533913,3
+39169946,10533913,3
+129480991,10533913,3
+48050176,10533913,3
+129633404,10533913,5
+52777499,10533913,4
+Desperatio_God,10533913,4
+55556011,10533913,4
+53312629,10533913,5
+1480836,10533913,4
+dhlingchi,10533913,3
+57126994,10533913,4
+sherry-he,10533913,3
+4141698,10533913,5
+121939265,10533913,5
+51402564,10533913,5
+47185791,10533913,4
+59204697,10533913,4
+93960099,10533913,5
+59638655,10533913,5
+83975590,10533913,3
+74677364,10533913,5
+48549830,10533913,4
+michaelxu1205,10533913,5
+Lynnxj,10533913,4
+49141997,10533913,5
+arys-mao,10533913,4
+81143853,10533913,3
+tedfan,10533913,4
+52530490,10533913,4
+52103391,10533913,5
+ihana,10533913,5
+ikezhao,10533913,5
+67205848,10533913,5
+48664391,10533913,4
+xiaocibayberry,10533913,5
+yoyomei,10533913,5
+136695075,10533913,5
+monilen,10533913,4
+51657289,10533913,5
+120336134,10533913,5
+124042651,10533913,4
+flybluer,10533913,5
+69739114,10533913,5
+131340441,10533913,5
+44122696,10533913,3
+50941682,10533913,5
+shuizhimuhua,10533913,5
+54076866,10533913,5
+4082532,10533913,5
+47468103,10533913,5
+48121857,10533913,3
+131375761,10533913,4
+Renovatio84,10533913,4
+32853386,10533913,5
+nemooO,10533913,3
+53769380,10533913,5
+grandmoon,10533913,3
+Oraen_,10533913,-1
+yiri,10533913,5
+44537605,10533913,5
+karasu419,10533913,5
+cinong,10533913,4
+corina0717,10533913,5
+KarlSchneider,10533913,5
+61763898,10533913,5
+xianyu719,10533913,4
+1530125,10533913,4
+andy5,10533913,4
+44183342,10533913,4
+chiarachan,10533913,5
+mpor2,10533913,5
+xiaopihaierya,10533913,4
+auntiejuno,10533913,3
+2187326,10533913,3
+43842293,10533913,4
+icyqh,10533913,3
+70042257,10533913,5
+gaiasmile,10533913,4
+pilipalapong,10533913,3
+92827831,10533913,5
+31316353,10533913,4
+63576135,10533913,5
+10788342,10533913,4
+56553176,10533913,4
+Alice_sea,10533913,5
+marvin42,10533913,4
+70392138,10533913,5
+99623872,10533913,5
+58946652,10533913,5
+131854669,10533913,5
+emor-hwang,10533913,5
+allen_wang0567,10533913,4
+92337255,10533913,5
+darchang,10533913,4
+81430185,10533913,5
+69944887,10533913,4
+62421890,10533913,5
+121086500,10533913,5
+87940237,10533913,5
+45059307,10533913,3
+88652488,10533913,4
+simoondb,10533913,5
+132580285,10533913,5
+136677899,10533913,4
+ymj718,10533913,2
+102911668,10533913,5
+4791286,10533913,5
+Hariseldon,10533913,4
+facetosky,10533913,5
+77074010,10533913,5
+69164754,10533913,4
+39945690,10533913,5
+136485466,10533913,4
+85341093,10533913,4
+135937339,10533913,5
+57063267,10533913,5
+4679551,10533913,4
+myarale,10533913,5
+49865900,10533913,4
+gagafans,10533913,5
+hanwin216,10533913,5
+lefine923,10533913,5
+xy8087,10533913,3
+XHY4,10533913,4
+69770129,10533913,5
+Tobar,10533913,5
+103355322,10533913,4
+67992127,10533913,2
+bruin1018,10533913,4
+67862373,10533913,5
+baiqitun,10533913,5
+carrot8587,10533913,4
+52624380,10533913,3
+136674767,10533913,5
+kalla,10533913,4
+nicdone,10533913,4
+2247745,10533913,4
+hiddenIris,10533913,3
+2331806,10533913,4
+mariaaa,10533913,5
+schritt,10533913,5
+52418713,10533913,4
+Charlie.Lee,10533913,3
+sweethurts,10533913,5
+119710944,10533913,4
+3836832,10533913,5
+54092051,10533913,5
+puzzlingfish,10533913,5
+50935316,10533913,4
+50325766,10533913,5
+135094006,10533913,4
+3647468,10533913,5
+47768622,10533913,4
+myself7,10533913,4
+yiaer,10533913,5
+44355487,10533913,5
+lazygalaxy,10533913,4
+65075198,10533913,4
+miki_ai,10533913,5
+foxgarden,10533913,4
+2677247,10533913,4
+xxxxsxxxx,10533913,5
+50472589,10533913,5
+q296579068,10533913,5
+136666408,10533913,3
+81217259,10533913,5
+69221648,10533913,4
+46348198,10533913,4
+84994751,10533913,4
+63932302,10533913,4
+119865328,10533913,3
+tears_rainbow,10533913,5
+sinbel,10533913,3
+1976070,10533913,5
+134511914,10533913,2
+58520151,10533913,5
+37173044,10533913,5
+lucifer024,10533913,5
+misslillian1993,10533913,4
+43195130,10533913,5
+135426117,10533913,5
+68656126,10533913,5
+99910728,10533913,4
+48054921,10533913,4
+1977618,10533913,4
+70241183,10533913,5
+twoflowers,10533913,5
+ming_203344,10533913,5
+54265487,10533913,4
+35197924,10533913,5
+123389443,10533913,3
+shaylazeng,10533913,5
+123834119,10533913,4
+1346384,10533913,5
+35051547,10533913,5
+starry_ripple,10533913,5
+hsyh1989,10533913,5
+120889281,10533913,5
+rasler,10533913,5
+40709967,10533913,5
+seychelles,10533913,5
+68000398,10533913,5
+ioiolulu,10533913,4
+32025786,10533913,4
+32025786,10533913,4
+131039743,10533913,-1
+129620267,10533913,5
+124602530,10533913,4
+127338813,10533913,4
+47373224,10533913,5
+77439567,10533913,3
+53557631,10533913,5
+47977808,10533913,5
+jagpumpkin,10533913,3
+56722370,10533913,5
+Evelyn-7-,10533913,4
+93004540,10533913,5
+29336911,10533913,4
+63027509,10533913,3
+norns_13,10533913,5
+weiwei1020,10533913,4
+67489382,10533913,5
+sinext,10533913,4
+29685065,10533913,5
+yanlee17,10533913,5
+day-break,10533913,4
+115556906,10533913,5
+44436573,10533913,3
+57549294,10533913,5
+54627862,10533913,5
+shuoshuochong,10533913,5
+aprilsunshine,10533913,4
+65641754,10533913,4
+84174348,10533913,5
+136601824,10533913,2
+40310299,10533913,4
+46637165,10533913,4
+46370067,10533913,1
+lolita822,10533913,4
+31531015,10533913,5
+54139363,10533913,4
+121557775,10533913,4
+42243364,10533913,5
+wangliuchi,10533913,5
+libertyer,10533913,4
+4424185,10533913,5
+2919840,10533913,5
+missmici,10533913,-1
+sE_Lc7,10533913,4
+starry_liu,10533913,3
+netkr,10533913,5
+2569425,10533913,5
+49243535,10533913,5
+dianat,10533913,4
+48845332,10533913,5
+136646822,10533913,5
+paiii,10533913,5
+2227185,10533913,-1
+xiaoshiliushu,10533913,5
+joycema,10533913,-1
+130663859,10533913,5
+51418267,10533913,4
+takahashili,10533913,4
+huster-lion,10533913,5
+55412293,10533913,4
+sniperchris,10533913,5
+58064954,10533913,5
+byandong,10533913,4
+67833038,10533913,5
+46522785,10533913,5
+55484274,10533913,3
+3298219,10533913,5
+musicbears,10533913,5
+ingwerstein,10533913,5
+51056550,10533913,5
+55491094,10533913,3
+gaokai3091354,10533913,4
+Lotus511,10533913,3
+131533540,10533913,3
+wxcQluotuo,10533913,5
+seditionary,10533913,5
+35888113,10533913,4
+4691374,10533913,4
+69836590,10533913,5
+121043192,10533913,4
+127058988,10533913,5
+sincerelysophia,10533913,4
+119330514,10533913,3
+119484400,10533913,5
+71062611,10533913,4
+babbye,10533913,5
+72291192,10533913,5
+yokotang,10533913,5
+3168552,10533913,5
+AeroAnte,10533913,5
+60767824,10533913,5
+littlebeans,10533913,5
+sophie1214,10533913,3
+zhongxin987,10533913,5
+64238881,10533913,3
+1721938,10533913,5
+1689876,10533913,4
+52010271,10533913,2
+46891374,10533913,-1
+46891374,10533913,-1
+pretender007,10533913,5
+iamnotpotato,10533913,5
+90548476,10533913,5
+59904891,10533913,5
+70454803,10533913,4
+guojiaqi1015,10533913,3
+136629723,10533913,5
+3779908,10533913,4
+ymm,10533913,5
+5854721,10533913,5
+58810422,10533913,4
+rominakata,10533913,3
+45716667,10533913,4
+47480428,10533913,5
+58437435,10533913,5
+43409918,10533913,3
+XAR,10533913,5
+2826239,10533913,4
+4643138,10533913,5
+122826547,10533913,5
+17661600,10533913,5
+69388549,10533913,5
+78251252,10533913,5
+12850086,10533913,5
+hezhuyi,10533913,4
+asaka0102,10533913,5
+59016764,10533913,3
+awesomz,10533913,5
+86911673,10533913,5
+55797857,10533913,4
+52337312,10533913,5
+40979216,10533913,4
+44124671,10533913,2
+anyijietuili,10533913,5
+52640944,10533913,4
+everlike,10533913,4
+130347315,10533913,5
+55993143,10533913,4
+67913939,10533913,5
+kat.is.kathy,10533913,4
+48048906,10533913,5
+zhhongbo,10533913,5
+66460349,10533913,4
+3608789,10533913,5
+134171425,10533913,4
+jasongreen,10533913,5
+43863882,10533913,5
+dakimo,10533913,5
+demondeng,10533913,2
+52750876,10533913,4
+db247259337,10533913,5
+maerta,10533913,4
+serab1tch720,10533913,1
+fu-yu,10533913,5
+55997229,10533913,5
+silentforce,10533913,4
+49139036,10533913,-1
+yeorion,10533913,5
+57169604,10533913,5
+1693232,10533913,4
+59236369,10533913,3
+40105087,10533913,4
+130554186,10533913,5
+52649497,10533913,5
+39673614,10533913,5
+36499503,10533913,3
+2760131,10533913,5
+yaochunpeng,10533913,5
+53256552,10533913,5
+124673449,10533913,5
+viling,10533913,4
+98293560,10533913,5
+132957841,10533913,5
+10724871,10533913,5
+49009869,10533913,5
+127365822,10533913,5
+80933545,10533913,5
+pretendor,10533913,5
+31316457,10533913,5
+53959125,10533913,5
+Rutty,10533913,4
+foxcraneleo,10533913,5
+31331684,10533913,5
+64658435,10533913,4
+47621269,10533913,5
+43269770,10533913,5
+11989579,10533913,4
+2707760,10533913,4
+77210486,10533913,4
+52227918,10533913,4
+53210651,10533913,4
+mmissfreak,10533913,5
+46171104,10533913,5
+liangyan999,10533913,5
+32920328,10533913,5
+windyzhu3949,10533913,3
+sheep29,10533913,4
+AngelikaSigrid,10533913,5
+57122585,10533913,5
+fan0208,10533913,4
+59664988,10533913,5
+47822950,10533913,5
+2942680,10533913,-1
+81700350,10533913,5
+21182277,10533913,5
+eri,10533913,3
+58244101,10533913,5
+2400333,10533913,4
+59236586,10533913,4
+Torence,10533913,4
+komato,10533913,3
+133186729,10533913,4
+LoveHugo,10533913,5
+skyvsland,10533913,4
+47786256,10533913,5
+63733109,10533913,5
+ooosky,10533913,4
+1765291,10533913,5
+lapand,10533913,5
+4286666,10533913,5
+124387754,10533913,5
+59783688,10533913,4
+kcog,10533913,5
+doloress,10533913,5
+42625255,10533913,5
+2954995,10533913,5
+jackalthe,10533913,4
+1213577,10533913,5
+66741568,10533913,4
+129834051,10533913,5
+2003211,10533913,5
+kerrylee621,10533913,4
+37026248,10533913,5
+4502707,10533913,3
+3035586,10533913,3
+81476013,10533913,4
+chocolor,10533913,5
+gutt727,10533913,3
+49582119,10533913,3
+sidneybig,10533913,5
+2570265,10533913,5
+yihengxi,10533913,5
+68882429,10533913,5
+46992157,10533913,4
+135042340,10533913,5
+mouhua,10533913,5
+andymaruko,10533913,5
+39704745,10533913,5
+44559687,10533913,5
+caceywd,10533913,5
+68593933,10533913,5
+55310143,10533913,4
+superdj,10533913,5
+36817857,10533913,4
+lovefaith,10533913,4
+mogu1008,10533913,3
+hayden001,10533913,4
+linmq,10533913,4
+9292090,10533913,3
+qinyun,10533913,5
+43127616,10533913,5
+TaipeiWalker,10533913,4
+37803671,10533913,3
+48509446,10533913,3
+52784441,10533913,5
+luyanan1943,10533913,4
+57981494,10533913,5
+50907165,10533913,5
+50950772,10533913,5
+bluesky1314,10533913,5
+55828960,10533913,4
+inic,10533913,5
+miaomiao1213,10533913,4
+48491192,10533913,4
+70202233,10533913,3
+lilliantao,10533913,4
+2213454,10533913,3
+116394640,10533913,5
+35578162,10533913,4
+byzod,10533913,5
+44602426,10533913,4
+Erika1988,10533913,5
+49396544,10533913,4
+kikilili006,10533913,4
+3884732,10533913,5
+62558245,10533913,4
+42221402,10533913,4
+KyoQueen,10533913,4
+50750779,10533913,4
+howoldareyou,10533913,5
+101126607,10533913,5
+3880844,10533913,3
+7292654,10533913,4
+xqyamour,10533913,5
+lovekahn2002,10533913,3
+3480125,10533913,4
+125985788,10533913,4
+maxine_9395,10533913,4
+98851164,10533913,4
+misstiming,10533913,5
+77656352,10533913,4
+hellodj,10533913,5
+67321190,10533913,3
+49181094,10533913,5
+60168447,10533913,4
+angelineni,10533913,4
+depressheart,10533913,4
+3622707,10533913,4
+49921904,10533913,5
+3577491,10533913,5
+67851427,10533913,3
+50819738,10533913,4
+57090877,10533913,4
+37827461,10533913,4
+92261017,10533913,4
+51462997,10533913,4
+1471855,10533913,5
+43822211,10533913,4
+50180272,10533913,4
+My_Little_World,10533913,4
+103316074,10533913,5
+88429697,10533913,5
+50616281,10533913,2
+48530731,10533913,5
+53715739,10533913,5
+smallbai406,10533913,5
+84962977,10533913,4
+yaoxingjia,10533913,4
+34507670,10533913,4
+stangelovems,10533913,4
+68911927,10533913,5
+sqdlx,10533913,3
+clear_wang,10533913,4
+75132103,10533913,3
+4098717,10533913,5
+83842649,10533913,4
+tracyxing,10533913,5
+dynsky2011,10533913,4
+kkkkaylee,10533913,5
+53056312,10533913,5
+4535772,10533913,3
+shadyjia,10533913,5
+loneblog,10533913,5
+biti.vector,10533913,4
+48160969,10533913,4
+58513319,10533913,4
+130160589,10533913,3
+endli_kazu203,10533913,5
+127506443,10533913,4
+48396212,10533913,3
+1817816,10533913,5
+4667240,10533913,4
+86840728,10533913,5
+127867030,10533913,5
+48777727,10533913,5
+47475734,10533913,5
+octopusjs96,10533913,5
+43342824,10533913,5
+xyy_1214,10533913,5
+72700363,10533913,4
+51284540,10533913,4
+wanyuejane,10533913,5
+moxueyun,10533913,5
+103247038,10533913,4
+49171184,10533913,4
+78793402,10533913,5
+45800687,10533913,5
+71335687,10533913,3
+arashilee,10533913,5
+52128416,10533913,5
+70242437,10533913,4
+60461731,10533913,5
+130391371,10533913,4
+25826665,10533913,2
+53815086,10533913,5
+69024870,10533913,4
+4295298,10533913,5
+58310222,10533913,4
+3605330,10533913,5
+49647604,10533913,3
+37183583,10533913,4
+3264938,10533913,5
+134224197,10533913,4
+44398603,10533913,5
+xihe_33,10533913,4
+48770075,10533913,4
+73666911,10533913,5
+48411049,10533913,5
+50150642,10533913,5
+tomatobear,10533913,5
+67707969,10533913,4
+124171387,10533913,4
+48700876,10533913,5
+48972272,10533913,4
+Echo.Wang,10533913,4
+121986674,10533913,4
+45980221,10533913,4
+mly117,10533913,5
+eedc,10533913,5
+like9225,10533913,5
+83297028,10533913,5
+50335410,10533913,5
+dailynini,10533913,5
+60417212,10533913,5
+dee4ever,10533913,4
+88101207,10533913,4
+62048623,10533913,4
+64816861,10533913,4
+44776262,10533913,4
+6601360,10533913,5
+sarayixin,10533913,5
+90460111,10533913,5
+hey_saosao,10533913,5
+luoandqian,10533913,5
+47342696,10533913,5
+36868422,10533913,5
+134522325,10533913,2
+65646732,10533913,5
+luffy828,10533913,5
+luffy828,10533913,5
+4280909,10533913,4
+57617460,10533913,3
+48164029,10533913,5
+136593943,10533913,4
+53381423,10533913,5
+88738198,10533913,4
+103348980,10533913,5
+55010232,10533913,5
+104312412,10533913,4
+josephgyal,10533913,4
+128114712,10533913,5
+yan920131,10533913,5
+38770627,10533913,5
+34063715,10533913,4
+48998927,10533913,1
+cuixinhai88,10533913,5
+67943970,10533913,5
+XX210,10533913,4
+stuart-choice,10533913,5
+121137821,10533913,4
+73131462,10533913,5
+78373153,10533913,5
+yamaaibani,10533913,4
+121842815,10533913,5
+48977746,10533913,5
+4111351,10533913,3
+48165098,10533913,4
+Heyimwalker,10533913,5
+3005065,10533913,5
+135092660,10533913,4
+82498439,10533913,3
+64772450,10533913,5
+cherry901117,10533913,4
+raemyu,10533913,4
+56328565,10533913,5
+melynda,10533913,2
+55622517,10533913,5
+choushabi,10533913,5
+37344756,10533913,5
+87578435,10533913,5
+56340290,10533913,4
+54853345,10533913,3
+45080512,10533913,5
+68042727,10533913,4
+43719208,10533913,4
+70578459,10533913,5
+gooddayalways,10533913,5
+nadiawoo,10533913,4
+49838718,10533913,4
+52243098,10533913,5
+1914931,10533913,4
+oliva,10533913,5
+2785212,10533913,5
+NapCote,10533913,4
+64008968,10533913,4
+41872275,10533913,5
+Zoe-MU,10533913,5
+68843343,10533913,3
+mrtall,10533913,5
+Raining421,10533913,2
+126076199,10533913,4
+zhang91823,10533913,-1
+54845592,10533913,4
+yueyuedad1972,10533913,4
+jasleen,10533913,5
+135463251,10533913,4
+134242130,10533913,4
+xsbbbb,10533913,5
+23525886,10533913,5
+62761738,10533913,3
+72471422,10533913,5
+62363490,10533913,4
+1969441,10533913,-1
+1962344,10533913,3
+59954859,10533913,3
+49456596,10533913,4
+quills,10533913,3
+87855088,10533913,5
+54112368,10533913,5
+28315646,10533913,4
+huiling,10533913,4
+60892465,10533913,2
+haruka87,10533913,5
+81306422,10533913,5
+74882794,10533913,5
+113791333,10533913,5
+87156689,10533913,5
+kiruto,10533913,5
+61797911,10533913,3
+lucia21,10533913,5
+52300652,10533913,5
+121481681,10533913,4
+ondineyi,10533913,3
+lwymilky,10533913,4
+rocker0313,10533913,5
+cherrywasthere,10533913,4
+kiffiz,10533913,5
+vincent_chen,10533913,5
+52021990,10533913,5
+48445532,10533913,5
+38808424,10533913,5
+65152253,10533913,5
+39518332,10533913,4
+49321684,10533913,5
+32399067,10533913,4
+wangyi2011,10533913,3
+madamadadane,10533913,3
+2869651,10533913,-1
+jessetw,10533913,4
+48712788,10533913,5
+54323000,10533913,5
+zhongda925,10533913,4
+2849700,10533913,4
+blusia4,10533913,5
+23951335,10533913,-1
+missinlove,10533913,5
+Jeanette_Xu,10533913,4
+wen1028,10533913,-1
+guierzidegandie,10533913,5
+122529370,10533913,4
+jennystar,10533913,4
+133564346,10533913,4
+120729297,10533913,5
+123368007,10533913,5
+yjren,10533913,5
+52041002,10533913,5
+play0829,10533913,4
+53581844,10533913,4
+60822663,10533913,4
+8678883,10533913,5
+131932102,10533913,5
+qiqi227,10533913,5
+83267893,10533913,5
+54268700,10533913,4
+58290750,10533913,5
+Super.Loogie,10533913,4
+91371841,10533913,5
+xyyelfin,10533913,5
+damon3liz,10533913,5
+MeyouYu,10533913,5
+48071996,10533913,4
+85063664,10533913,4
+80470441,10533913,5
+45032378,10533913,5
+yvoria,10533913,4
+paulahoffman,10533913,5
+qqyy402,10533913,4
+45510439,10533913,5
+luziyujiang,10533913,4
+4409616,10533913,3
+Cindy_Nick,10533913,4
+57471580,10533913,5
+72442359,10533913,5
+thespencer,10533913,5
+128160386,10533913,5
+lokimicky,10533913,5
+94514917,10533913,4
+68192173,10533913,4
+mintake,10533913,4
+72996484,10533913,5
+Microka,10533913,4
+134085839,10533913,5
+50217070,10533913,5
+71157955,10533913,5
+dreamofduoduo,10533913,3
+5957736,10533913,3
+1333785,10533913,4
+79534422,10533913,4
+wsq1117,10533913,5
+8242631,10533913,3
+jiushigesuren,10533913,4
+crazylazz,10533913,5
+81042708,10533913,4
+58988950,10533913,5
+3524450,10533913,3
+50197826,10533913,4
+36884802,10533913,5
+57472498,10533913,5
+DoDoangell,10533913,5
+yzy16,10533913,4
+74932520,10533913,4
+3849316,10533913,4
+w2jmoe,10533913,5
+75555205,10533913,4
+42385473,10533913,3
+57700479,10533913,5
+48795907,10533913,5
+hy2015,10533913,3
+17004593,10533913,2
+81464535,10533913,2
+elyn6616,10533913,5
+71861591,10533913,3
+xiaxj,10533913,3
+4366766,10533913,4
+universe_7,10533913,5
+43391985,10533913,4
+67209695,10533913,5
+fat_dragon,10533913,5
+45250315,10533913,5
+evastone,10533913,4
+2432104,10533913,5
+83300481,10533913,4
+104329459,10533913,5
+68420280,10533913,5
+4514078,10533913,5
+82908629,10533913,5
+66517587,10533913,5
+aukry,10533913,4
+34936131,10533913,5
+40964890,10533913,5
+40334840,10533913,1
+46700100,10533913,4
+23599955,10533913,3
+57401508,10533913,5
+42274147,10533913,5
+2667767,10533913,4
+york_hust,10533913,5
+15182824,10533913,5
+myfan,10533913,4
+134142938,10533913,5
+7768202,10533913,5
+86613715,10533913,5
+2659195,10533913,5
+jxxyych,10533913,4
+49422565,10533913,5
+blue-Petit,10533913,4
+zjia,10533913,4
+anoTherTeezy,10533913,5
+36446265,10533913,4
+daisy702,10533913,4
+61989466,10533913,4
+wuyuruo,10533913,5
+125770398,10533913,5
+sunmiaoran,10533913,4
+87902611,10533913,5
+85205230,10533913,3
+Free-cat,10533913,5
+73906021,10533913,4
+chewin,10533913,5
+121518881,10533913,4
+61492149,10533913,4
+65340387,10533913,5
+Notting,10533913,4
+14247291,10533913,4
+126829630,10533913,5
+103769558,10533913,3
+94579843,10533913,4
+3510245,10533913,5
+39930373,10533913,5
+3705182,10533913,4
+48248177,10533913,4
+2201230,10533913,4
+78971867,10533913,5
+dobima,10533913,4
+69477344,10533913,4
+mengmengleo,10533913,5
+70284743,10533913,5
+raintingfan,10533913,5
+59859119,10533913,5
+2984695,10533913,5
+billhome,10533913,3
+48089294,10533913,5
+1805712,10533913,-1
+73761450,10533913,5
+57589094,10533913,5
+80050017,10533913,4
+68936553,10533913,4
+121316363,10533913,5
+56926782,10533913,5
+56054406,10533913,5
+forest_desert,10533913,3
+56035155,10533913,5
+fxxxfancy,10533913,5
+4106173,10533913,4
+61233140,10533913,5
+aisa395,10533913,5
+54762015,10533913,5
+2799911,10533913,5
+jiaorenya,10533913,5
+13413028,10533913,5
+49157213,10533913,4
+126260186,10533913,5
+29723781,10533913,4
+58981483,10533913,5
+134034047,10533913,4
+tinyno7,10533913,4
+49367655,10533913,4
+eyeinhand,10533913,4
+76536277,10533913,-1
+34894274,10533913,4
+47129931,10533913,4
+39817838,10533913,5
+49618072,10533913,5
+67387872,10533913,5
+cherryonsale,10533913,4
+zhangrihe,10533913,4
+29678096,10533913,5
+homecat1983,10533913,3
+swordx,10533913,5
+swordx,10533913,5
+colorpurple,10533913,5
+132461589,10533913,3
+121641170,10533913,5
+45396039,10533913,-1
+48479692,10533913,3
+xiaohuaxiaocao,10533913,5
+79515371,10533913,5
+93113085,10533913,5
+AJDENOLE-,10533913,4
+56104621,10533913,4
+58572424,10533913,-1
+38000940,10533913,5
+chengyue888,10533913,5
+83629190,10533913,5
+kgbbeer,10533913,4
+lovedust,10533913,3
+39014074,10533913,4
+BarjackQ,10533913,5
+76395595,10533913,4
+viola-x,10533913,4
+chuck0jessie,10533913,5
+4427458,10533913,5
+49201790,10533913,5
+65177104,10533913,5
+48717993,10533913,5
+larry1695,10533913,5
+PatYoung,10533913,5
+64009809,10533913,5
+9813696,10533913,5
+senlintu,10533913,4
+iamloco,10533913,3
+33293861,10533913,5
+97342015,10533913,4
+38837868,10533913,3
+atomicxxx,10533913,5
+mjtang,10533913,4
+40219614,10533913,4
+58730830,10533913,5
+76556131,10533913,5
+4715393,10533913,5
+67804762,10533913,4
+4023497,10533913,4
+avall0n,10533913,5
+134521236,10533913,3
+twinklingm,10533913,-1
+75749309,10533913,4
+2556700,10533913,5
+3879960,10533913,5
+sanji7700,10533913,4
+tlbin1989,10533913,4
+81939398,10533913,3
+39768482,10533913,4
+gooooooooooohe,10533913,5
+4507715,10533913,4
+108821133,10533913,5
+77523023,10533913,5
+124822296,10533913,5
+135491689,10533913,4
+3043901,10533913,3
+lemed,10533913,5
+57970496,10533913,4
+doubeirenyongle,10533913,4
+2532339,10533913,5
+68401918,10533913,4
+7669558,10533913,4
+56886614,10533913,5
+silkworm-lucy,10533913,5
+56833994,10533913,4
+yunxin92,10533913,5
+36120993,10533913,4
+alj,10533913,3
+2386302,10533913,5
+mouliangliang,10533913,4
+cat_yr,10533913,5
+122136126,10533913,4
+henry2004,10533913,5
+44304522,10533913,5
+pandakun,10533913,5
+59143830,10533913,3
+103178758,10533913,5
+4190834,10533913,4
+62862855,10533913,5
+63603619,10533913,4
+singing15,10533913,5
+6713361,10533913,4
+Stanleyhai,10533913,4
+65718942,10533913,5
+LinuxPlusPlus,10533913,3
+2382233,10533913,5
+hwhollywu,10533913,-1
+3226240,10533913,3
+xiongjixiaojie,10533913,4
+37250221,10533913,4
+74866244,10533913,5
+Fucking_hell,10533913,4
+83779485,10533913,5
+LOHANSYANG,10533913,4
+turandot0815,10533913,4
+aquapanda,10533913,4
+66277108,10533913,4
+justgin,10533913,5
+48203677,10533913,5
+1097543,10533913,5
+amilkbox,10533913,5
+47309128,10533913,5
+91958040,10533913,5
+93423717,10533913,5
+bogjebote,10533913,4
+63920180,10533913,4
+63156510,10533913,5
+120764157,10533913,5
+3972045,10533913,4
+2431779,10533913,2
+127760481,10533913,5
+44412254,10533913,4
+loria,10533913,4
+68616795,10533913,4
+63676625,10533913,3
+53795201,10533913,5
+59377987,10533913,5
+103297087,10533913,5
+84969413,10533913,3
+47586585,10533913,5
+lane1031,10533913,5
+4643328,10533913,4
+67732575,10533913,2
+malalt,10533913,4
+120931613,10533913,2
+95352347,10533913,5
+on1ooker,10533913,5
+34835512,10533913,5
+yeon15,10533913,4
+49748358,10533913,5
+67283403,10533913,4
+63849809,10533913,4
+96738155,10533913,5
+4636544,10533913,5
+50527578,10533913,4
+socketkai,10533913,5
+120043439,10533913,3
+wangmuyang,10533913,3
+50351476,10533913,5
+zzfznp,10533913,3
+33688715,10533913,5
+lostoldboy,10533913,4
+banzaleno,10533913,4
+48097979,10533913,5
+103995448,10533913,3
+nalakahn,10533913,4
+41655130,10533913,4
+84513545,10533913,4
+wangsmoly,10533913,5
+85384480,10533913,5
+48181727,10533913,5
+swwol32,10533913,5
+39695667,10533913,3
+qqb143,10533913,3
+51904993,10533913,3
+92913612,10533913,5
+aone_718,10533913,4
+48221347,10533913,5
+131881210,10533913,5
+51243076,10533913,3
+1080194,10533913,5
+82913743,10533913,4
+58042557,10533913,5
+bunnyyz,10533913,5
+19579481,10533913,5
+48554960,10533913,5
+77169093,10533913,4
+Fairytale_Tok,10533913,5
+136521207,10533913,3
+57969665,10533913,4
+120652563,10533913,5
+35106539,10533913,4
+godismyye,10533913,3
+goldendali,10533913,4
+quinten,10533913,5
+yanjie0310,10533913,5
+51909421,10533913,3
+51937003,10533913,3
+99710074,10533913,5
+73770188,10533913,5
+76332063,10533913,2
+104699208,10533913,3
+hui_112233,10533913,5
+minamy1227,10533913,5
+27655283,10533913,5
+60181393,10533913,4
+63409763,10533913,3
+82173854,10533913,5
+46893629,10533913,5
+57660315,10533913,4
+wstczy,10533913,4
+52316433,10533913,3
+luoluomicky,10533913,5
+36721192,10533913,3
+3831169,10533913,5
+77724993,10533913,5
+liuyuntianma,10533913,5
+73832904,10533913,5
+77263108,10533913,4
+136514739,10533913,5
+93208688,10533913,5
+62209386,10533913,5
+96800376,10533913,5
+45397286,10533913,5
+Algaeme,10533913,4
+53009307,10533913,5
+29126479,10533913,3
+67371305,10533913,5
+49983823,10533913,5
+48471753,10533913,5
+133238790,10533913,5
+vivi112,10533913,4
+qiongdong,10533913,4
+62034201,10533913,5
+63654793,10533913,5
+61905540,10533913,3
+49115680,10533913,5
+zhadee,10533913,5
+2099374,10533913,3
+nilinli,10533913,5
+pppretty,10533913,5
+baigao,10533913,5
+guanyuluxixi,10533913,4
+120860718,10533913,4
+60646694,10533913,-1
+ciciywg,10533913,5
+69735820,10533913,4
+128563781,10533913,5
+61836437,10533913,4
+summermayfly,10533913,3
+52851525,10533913,5
+99093340,10533913,4
+echota,10533913,4
+3477296,10533913,4
+37306803,10533913,4
+governorofwuxi,10533913,4
+63044059,10533913,4
+48096896,10533913,4
+17480239,10533913,5
+50913544,10533913,4
+92319009,10533913,-1
+Nolicier,10533913,-1
+60411524,10533913,-1
+81680542,10533913,3
+never_missing,10533913,4
+rangoon_yan,10533913,5
+134026402,10533913,4
+oooooi,10533913,5
+82245250,10533913,5
+81566298,10533913,5
+47153711,10533913,4
+Swing105,10533913,5
+Jouree,10533913,-1
+65078128,10533913,5
+silver_X,10533913,5
+11568582,10533913,4
+121628678,10533913,5
+w-leaf,10533913,5
+65820268,10533913,5
+59979647,10533913,3
+2344307,10533913,5
+84398440,10533913,5
+96798086,10533913,3
+34062081,10533913,5
+117339283,10533913,5
+128272674,10533913,5
+84782971,10533913,5
+53768020,10533913,4
+68912465,10533913,4
+4342719,10533913,4
+42349679,10533913,4
+57698084,10533913,4
+40710431,10533913,5
+67943015,10533913,5
+65565016,10533913,4
+50597852,10533913,4
+59140445,10533913,5
+luckyanc,10533913,2
+79452838,10533913,4
+kaneshivo,10533913,2
+63438574,10533913,5
+amour,10533913,5
+4252298,10533913,5
+36575109,10533913,5
+56362540,10533913,5
+3669328,10533913,5
+mayoke,10533913,5
+53980581,10533913,3
+71928655,10533913,3
+87490266,10533913,4
+76566444,10533913,4
+smg,10533913,4
+97279852,10533913,3
+54428123,10533913,4
+37551097,10533913,3
+wangyumeng,10533913,5
+2233781,10533913,3
+50179203,10533913,3
+archiechan,10533913,3
+49501055,10533913,4
+69223309,10533913,3
+62492302,10533913,4
+fineyou,10533913,5
+53144206,10533913,5
+48324038,10533913,5
+92637851,10533913,4
+132341755,10533913,4
+bais0630,10533913,3
+55314641,10533913,5
+lemonice520,10533913,3
+jtjm,10533913,5
+braunschweigen,10533913,4
+80393914,10533913,1
+4065013,10533913,-1
+littlesugar,10533913,3
+huang0329,10533913,4
+83385888,10533913,3
+3561748,10533913,5
+126895739,10533913,5
+57790852,10533913,4
+ChangeQ,10533913,5
+78389609,10533913,5
+yyt0105,10533913,5
+ielit,10533913,5
+48415827,10533913,3
+122327681,10533913,5
+12289929,10533913,5
+helen_freespace,10533913,4
+spx,10533913,2
+dragoncao,10533913,-1
+66507526,10533913,5
+hoshiino,10533913,3
+49043660,10533913,5
+tianreta,10533913,5
+1442141,10533913,5
+51716279,10533913,4
+88539374,10533913,4
+54814792,10533913,4
+yunl988,10533913,4
+37620368,10533913,4
+42383694,10533913,5
+38968734,10533913,5
+81285027,10533913,4
+135985786,10533913,4
+zzfuck,10533913,3
+133402651,10533913,5
+61486728,10533913,5
+106570148,10533913,4
+vicliia,10533913,4
+38371308,10533913,5
+28631660,10533913,4
+Sunny851020,10533913,4
+coryzh,10533913,5
+YNKM,10533913,5
+ruyibuzairuyi,10533913,3
+44628811,10533913,5
+49827426,10533913,5
+dashebei,10533913,5
+34507488,10533913,5
+skyzhong003294,10533913,5
+121937876,10533913,4
+nevertry,10533913,4
+2307241,10533913,5
+75667669,10533913,4
+muiy,10533913,4
+59014235,10533913,5
+50410993,10533913,5
+60320238,10533913,5
+53795437,10533913,5
+53035444,10533913,5
+3127754,10533913,5
+41083928,10533913,5
+Melbourner,10533913,5
+121649452,10533913,5
+1570580,10533913,3
+119392686,10533913,3
+leslie-zay,10533913,4
+35739179,10533913,5
+130400247,10533913,4
+3086105,10533913,4
+wendyeverafter,10533913,4
+superabigail,10533913,5
+lovekym,10533913,3
+49963574,10533913,5
+50590783,10533913,5
+zhanglinge,10533913,4
+3729819,10533913,4
+minikuso,10533913,4
+37673954,10533913,5
+tofrom,10533913,5
+76881504,10533913,5
+loverdo,10533913,5
+123252296,10533913,5
+35852291,10533913,4
+chaotang,10533913,5
+53425694,10533913,5
+xingxin6,10533913,5
+130888340,10533913,5
+85245609,10533913,4
+16166133,10533913,5
+62121031,10533913,4
+rhymeli,10533913,5
+3555700,10533913,5
+baby4inlove,10533913,5
+107860207,10533913,4
+phoenixlee,10533913,5
+pineappletu,10533913,5
+53059926,10533913,5
+3837692,10533913,4
+102790365,10533913,4
+51977450,10533913,5
+Delfifi,10533913,4
+lqqsama,10533913,5
+soyiker,10533913,4
+3633723,10533913,5
+iris714,10533913,3
+64564754,10533913,5
+yipiandanxin,10533913,4
+78623858,10533913,5
+desa,10533913,5
+62528741,10533913,5
+2378377,10533913,5
+95824640,10533913,4
+78176902,10533913,5
+59141735,10533913,3
+3416514,10533913,5
+4005934,10533913,5
+pxyushu,10533913,5
+32569158,10533913,3
+53776899,10533913,4
+51361935,10533913,5
+yyfcp123456,10533913,5
+vivilida,10533913,4
+97334739,10533913,4
+136078726,10533913,4
+winmaxangle,10533913,4
+67143504,10533913,4
+91670770,10533913,5
+69875903,10533913,5
+dayi5,10533913,5
+125775996,10533913,5
+NINEYR,10533913,5
+35990150,10533913,5
+49490666,10533913,5
+48417342,10533913,5
+2307180,10533913,5
+3741660,10533913,4
+131564218,10533913,5
+aquariankitty,10533913,4
+Georgewen,10533913,-1
+xuyansong,10533913,5
+102203140,10533913,4
+132082727,10533913,5
+59694571,10533913,4
+happy178,10533913,5
+4199524,10533913,5
+65931842,10533913,3
+130648493,10533913,4
+laihahayixia,10533913,4
+2965888,10533913,5
+44962745,10533913,5
+49886917,10533913,5
+qiubutong,10533913,3
+91253707,10533913,5
+53561059,10533913,3
+vivimao128,10533913,5
+95264069,10533913,5
+2561289,10533913,5
+Maggie_Liao,10533913,5
+101405936,10533913,5
+2546239,10533913,4
+ayurine,10533913,5
+73222054,10533913,4
+46266125,10533913,4
+CAORussell,10533913,3
+53453967,10533913,5
+lingdu_zora,10533913,5
+64882417,10533913,4
+hustfangshuai,10533913,5
+Lambda-q,10533913,5
+54622662,10533913,3
+39786572,10533913,4
+yaya102,10533913,4
+Illbeamyouup,10533913,4
+elinning,10533913,4
+64106739,10533913,5
+hong526653838,10533913,4
+xiaoyatoufengzi,10533913,4
+46203965,10533913,5
+41690409,10533913,5
+81792271,10533913,5
+53477720,10533913,4
+107719993,10533913,5
+kericw,10533913,5
+73311977,10533913,4
+52788947,10533913,5
+58040507,10533913,4
+40670150,10533913,4
+57996084,10533913,4
+daisymouse,10533913,5
+104148244,10533913,5
+chainvqianxue,10533913,4
+48849603,10533913,5
+Do-my-self,10533913,5
+66848949,10533913,5
+125599557,10533913,5
+jersey0821,10533913,4
+133379386,10533913,4
+53362350,10533913,3
+JiuGu,10533913,4
+ghostneng,10533913,5
+73972149,10533913,4
+35805832,10533913,4
+12468955,10533913,4
+49143390,10533913,4
+miku,10533913,4
+44373773,10533913,5
+102627576,10533913,5
+amor27,10533913,5
+121716470,10533913,3
+49752957,10533913,4
+Melissa_Fung,10533913,4
+125604846,10533913,5
+gougou_lass,10533913,4
+chonger,10533913,3
+59574771,10533913,5
+dionysian,10533913,3
+62842608,10533913,3
+49663103,10533913,5
+64342708,10533913,4
+suifengzhuying,10533913,5
+3325882,10533913,4
+maimai251,10533913,4
+abysselysion,10533913,5
+xzhrboy,10533913,4
+Chusy,10533913,5
+47116857,10533913,4
+35518301,10533913,5
+136394220,10533913,5
+folkbaba,10533913,4
+136455099,10533913,5
+57982992,10533913,5
+47837264,10533913,4
+133439975,10533913,5
+54811367,10533913,5
+53008518,10533913,4
+136454222,10533913,5
+102986629,10533913,5
+128129404,10533913,4
+72630623,10533913,5
+yororo,10533913,4
+58295896,10533913,5
+67700979,10533913,4
+46766109,10533913,5
+48822023,10533913,5
+44645874,10533913,3
+Zizou_Vam,10533913,5
+83094433,10533913,3
+49983396,10533913,4
+Mandy0619,10533913,2
+124626577,10533913,5
+eugenewilber,10533913,5
+jiangmingji,10533913,4
+zz556677,10533913,5
+130223322,10533913,3
+42556657,10533913,5
+kafaka,10533913,5
+mxlzyd,10533913,5
+1374694,10533913,5
+52247156,10533913,5
+raptor,10533913,4
+54034056,10533913,4
+rainada,10533913,4
+47021295,10533913,4
+ChalmersC,10533913,5
+60606413,10533913,4
+zhqi11,10533913,3
+87681382,10533913,-1
+96523797,10533913,4
+alfiestudio,10533913,3
+CLOWN9527521,10533913,4
+lenciel,10533913,4
+121679794,10533913,5
+petitenianni,10533913,3
+131496500,10533913,4
+58484976,10533913,4
+61485774,10533913,5
+64618863,10533913,4
+62222208,10533913,4
+132034967,10533913,5
+119428504,10533913,4
+2973153,10533913,4
+hua621321,10533913,5
+80017178,10533913,5
+47473847,10533913,4
+36942754,10533913,4
+36942754,10533913,4
+122603381,10533913,5
+83507458,10533913,5
+4582318,10533913,2
+83202177,10533913,3
+121055436,10533913,5
+64083865,10533913,3
+65275818,10533913,2
+128409852,10533913,4
+68564015,10533913,4
+48459304,10533913,4
+130758637,10533913,5
+2752525,10533913,5
+33195651,10533913,4
+96342252,10533913,4
+76964275,10533913,5
+114499538,10533913,5
+memorymare,10533913,5
+midautumnsong,10533913,4
+97365571,10533913,5
+59640195,10533913,5
+6270415,10533913,3
+103536040,10533913,5
+49191760,10533913,3
+Burglar932,10533913,4
+46934692,10533913,5
+68989213,10533913,3
+70914565,10533913,3
+fouras,10533913,5
+56030854,10533913,5
+IVAN-Z,10533913,4
+112840392,10533913,4
+shurui,10533913,4
+85527494,10533913,4
+pantao1990,10533913,5
+48614999,10533913,4
+miaow,10533913,5
+78730817,10533913,3
+48786722,10533913,5
+zc_726,10533913,4
+47095353,10533913,4
+45631854,10533913,4
+Mulholland,10533913,4
+peRFect1012,10533913,4
+74207601,10533913,5
+41998379,10533913,3
+58195982,10533913,5
+55488423,10533913,4
+119468081,10533913,4
+antony1994,10533913,5
+49083228,10533913,2
+35886249,10533913,4
+Faithy26,10533913,4
+73416826,10533913,3
+132773025,10533913,5
+48997081,10533913,2
+uranusmegumi,10533913,-1
+2202605,10533913,4
+121197543,10533913,5
+tanktank,10533913,5
+60304820,10533913,4
+48320560,10533913,5
+cheerwee,10533913,5
+77675267,10533913,5
+RosemaryChou,10533913,5
+84255418,10533913,4
+Freedomlove,10533913,5
+totorocy,10533913,3
+78893576,10533913,4
+adamhu,10533913,5
+52179978,10533913,3
+gabrielle0822,10533913,4
+JIANININI,10533913,5
+48172073,10533913,4
+2849436,10533913,5
+136429512,10533913,4
+72086305,10533913,3
+44531163,10533913,5
+37879706,10533913,3
+2910842,10533913,5
+mimijoe,10533913,5
+120094361,10533913,3
+108808730,10533913,4
+gayly,10533913,4
+2644622,10533913,5
+69757574,10533913,4
+3742785,10533913,5
+47838456,10533913,4
+3510364,10533913,5
+35694775,10533913,4
+54074211,10533913,5
+17407986,10533913,5
+94380874,10533913,3
+43986034,10533913,5
+56720909,10533913,5
+5439991,10533913,5
+setsail89,10533913,4
+monsterlost,10533913,4
+52671704,10533913,4
+qianjin615,10533913,5
+50644881,10533913,4
+i.m.yours,10533913,4
+68179093,10533913,5
+yao0509,10533913,-1
+51049554,10533913,4
+47572959,10533913,5
+4617038,10533913,5
+sailnirvana,10533913,5
+51449484,10533913,5
+61651911,10533913,5
+49362198,10533913,4
+36135879,10533913,5
+4158908,10533913,4
+69711546,10533913,5
+54989820,10533913,5
+28820949,10533913,5
+114734252,10533913,4
+13424749,10533913,5
+gavin13,10533913,3
+hungchiu,10533913,5
+115740561,10533913,5
+90729667,10533913,4
+76815966,10533913,5
+63413033,10533913,5
+earven,10533913,4
+94034456,10533913,4
+ccmuzi,10533913,4
+jessie.sun,10533913,-1
+secrettie,10533913,4
+3198566,10533913,4
+106759801,10533913,5
+57991654,10533913,5
+3766473,10533913,4
+52573795,10533913,4
+qqforeverqueen,10533913,5
+50451911,10533913,3
+june29,10533913,3
+36735867,10533913,4
+54984127,10533913,5
+jdrop,10533913,4
+Riskey,10533913,4
+69383984,10533913,5
+34707868,10533913,4
+sijinzi,10533913,4
+98650658,10533913,4
+marco_0708,10533913,3
+49935499,10533913,5
+72316189,10533913,4
+128681923,10533913,5
+33693061,10533913,3
+ccguodong,10533913,5
+74235699,10533913,5
+94806979,10533913,5
+51244649,10533913,5
+120287477,10533913,5
+1876785,10533913,4
+choushanzi,10533913,3
+BenGlen,10533913,5
+44109266,10533913,5
+82195777,10533913,4
+yinzaixi,10533913,4
+lxsiji,10533913,5
+72354881,10533913,5
+130748422,10533913,4
+nbyidao,10533913,5
+hhred,10533913,3
+4716205,10533913,5
+78891799,10533913,4
+87884169,10533913,5
+changuang7,10533913,4
+60295233,10533913,4
+72854219,10533913,4
+75074409,10533913,5
+ianwatson,10533913,5
+bingoyy,10533913,5
+66458815,10533913,5
+AdorableMe,10533913,3
+62400100,10533913,3
+38770333,10533913,5
+josielove13,10533913,5
+2746761,10533913,5
+1828898,10533913,4
+58185791,10533913,5
+44406151,10533913,5
+58004852,10533913,4
+67664731,10533913,4
+Orchendor,10533913,4
+74888364,10533913,5
+lihaijing,10533913,5
+41650939,10533913,4
+57336670,10533913,5
+77105796,10533913,5
+42815667,10533913,5
+ljjchn,10533913,5
+128005787,10533913,4
+66043535,10533913,4
+49979829,10533913,5
+125980978,10533913,5
+53773134,10533913,1
+rivering,10533913,4
+onionhear,10533913,4
+57931932,10533913,4
+52268964,10533913,4
+67539758,10533913,5
+1280092,10533913,4
+thxai,10533913,4
+lotuschen,10533913,5
+3095652,10533913,5
+64000134,10533913,5
+qiuyuning,10533913,5
+mm_ww,10533913,5
+36276299,10533913,5
+66066828,10533913,5
+135372483,10533913,4
+37926741,10533913,4
+46857287,10533913,-1
+2705335,10533913,3
+44698105,10533913,5
+96140309,10533913,3
+57943340,10533913,4
+amilo,10533913,5
+63133189,10533913,3
+pupuxiang,10533913,5
+47021231,10533913,2
+aRmstrong-Kiss,10533913,3
+54616457,10533913,5
+1762234,10533913,5
+57754572,10533913,5
+66785665,10533913,4
+32844110,10533913,5
+104818700,10533913,5
+56561314,10533913,-1
+snowlydouban,10533913,2
+128811063,10533913,4
+47025092,10533913,5
+41864568,10533913,3
+61069338,10533913,5
+tongshang,10533913,4
+82404312,10533913,5
+yny23,10533913,3
+weixiaojia,10533913,5
+52638193,10533913,5
+54454466,10533913,4
+kaysummer,10533913,3
+62185643,10533913,5
+wiwikuang,10533913,4
+43873778,10533913,5
+65263408,10533913,5
+89024568,10533913,5
+132511009,10533913,5
+jj-lee,10533913,4
+pengpengyue,10533913,3
+xiaosaorui,10533913,3
+57955889,10533913,4
+huiverci,10533913,4
+1083198,10533913,3
+136050492,10533913,4
+zhegxha,10533913,4
+48317152,10533913,4
+48524156,10533913,4
+42781255,10533913,5
+49187387,10533913,4
+Vielsamkeit,10533913,5
+51667296,10533913,5
+35364683,10533913,4
+queenmaria,10533913,5
+83244806,10533913,4
+luanma1977,10533913,5
+38785285,10533913,3
+Z0707,10533913,-1
+104674523,10533913,5
+52635539,10533913,4
+49553456,10533913,5
+45646209,10533913,5
+WOW444321,10533913,5
+57869732,10533913,3
+64830849,10533913,5
+67437110,10533913,-1
+4078015,10533913,5
+60752953,10533913,-1
+59048783,10533913,5
+zhijunyo,10533913,5
+peggy1031,10533913,5
+39857951,10533913,4
+57137451,10533913,5
+catinshoe,10533913,5
+tjvicwong,10533913,4
+maikocyan,10533913,4
+seodler,10533913,4
+75874006,10533913,5
+126980086,10533913,4
+94835110,10533913,4
+hongna,10533913,4
+52624708,10533913,4
+killeren,10533913,4
+84207817,10533913,4
+yuuuuuki,10533913,5
+72944780,10533913,5
+dearrbb,10533913,5
+89792510,10533913,5
+68315635,10533913,4
+61151240,10533913,5
+fengmarx,10533913,5
+BuckyBarnes,10533913,3
+miss_dian,10533913,5
+71992377,10533913,3
+63063946,10533913,4
+jacoxu,10533913,4
+Mrssin,10533913,5
+3613680,10533913,5
+yaoapp,10533913,5
+92775477,10533913,5
+asato,10533913,5
+zoooooh,10533913,4
+136337190,10533913,5
+49818287,10533913,3
+52145035,10533913,5
+zxmgx,10533913,5
+stingroger,10533913,5
+cabrite,10533913,5
+45661529,10533913,5
+snow-drop,10533913,2
+46032825,10533913,3
+37809200,10533913,3
+TomatoDevil,10533913,5
+129760491,10533913,5
+49145848,10533913,5
+stefana,10533913,4
+fakedrum,10533913,4
+72098495,10533913,5
+loveecho668,10533913,5
+124408864,10533913,4
+42609258,10533913,5
+1219037,10533913,5
+127080428,10533913,5
+3539294,10533913,5
+54330575,10533913,5
+14747203,10533913,4
+56111773,10533913,5
+francisray,10533913,4
+52652829,10533913,5
+AaronJemm,10533913,5
+u2bb,10533913,4
+komusou,10533913,4
+47653456,10533913,5
+44699537,10533913,5
+58519184,10533913,4
+littletraveler,10533913,4
+lovingsister,10533913,4
+mangggggg,10533913,5
+Mszombie,10533913,5
+54351544,10533913,4
+119814853,10533913,4
+66495218,10533913,4
+87225089,10533913,5
+58865216,10533913,4
+52606273,10533913,5
+43726684,10533913,4
+Dawnogard,10533913,5
+m19900714,10533913,3
+2232531,10533913,-1
+1375311,10533913,4
+3673751,10533913,4
+49306276,10533913,5
+49342454,10533913,4
+mingyaback,10533913,5
+92521858,10533913,5
+iceyvonne,10533913,5
+LFmexiao25,10533913,4
+jackchen,10533913,5
+junenmajunen,10533913,5
+69788935,10533913,4
+115645606,10533913,5
+43354957,10533913,5
+miaojike,10533913,5
+75992903,10533913,5
+68988452,10533913,3
+coolluo_zw,10533913,4
+2296297,10533913,4
+emnery,10533913,5
+memeko,10533913,5
+67287207,10533913,5
+60520622,10533913,5
+129937511,10533913,5
+3907593,10533913,5
+summerisabel,10533913,4
+62352485,10533913,4
+53567005,10533913,4
+134930896,10533913,5
+58310803,10533913,4
+xdianbao,10533913,3
+69753307,10533913,5
+nana53o,10533913,5
+3299693,10533913,5
+131865529,10533913,5
+jiajunzhi,10533913,4
+51947951,10533913,3
+36832783,10533913,5
+78497624,10533913,5
+lionelwait,10533913,4
+79398772,10533913,4
+68878530,10533913,-1
+28785708,10533913,5
+bzfdu,10533913,4
+96042250,10533913,4
+12925578,10533913,5
+theaxell,10533913,3
+45324744,10533913,4
+H897120417,10533913,5
+73314721,10533913,5
+74513536,10533913,4
+Jessica.clr,10533913,4
+60946203,10533913,5
+55953352,10533913,5
+sophie_chan,10533913,3
+4439996,10533913,5
+74582706,10533913,5
+lifewithbeauty,10533913,5
+59397449,10533913,5
+liuxiang67,10533913,5
+120250612,10533913,5
+50095584,10533913,5
+72642943,10533913,3
+55849765,10533913,4
+73134068,10533913,4
+yY.,10533913,5
+127704028,10533913,4
+sioux-sie,10533913,5
+Corpsegrinder,10533913,4
+135882446,10533913,4
+54107765,10533913,5
+cyeeing,10533913,5
+zaozi,10533913,4
+mirroree,10533913,4
+75956787,10533913,3
+83143884,10533913,4
+3500331,10533913,5
+47052897,10533913,4
+127933926,10533913,5
+6968778,10533913,4
+58765705,10533913,4
+134516282,10533913,4
+rainhounsel,10533913,5
+78445664,10533913,5
+55011354,10533913,2
+46945318,10533913,4
+120955775,10533913,5
+2744514,10533913,4
+57972087,10533913,4
+35546848,10533913,3
+3417250,10533913,5
+84866154,10533913,4
+131184477,10533913,4
+50699782,10533913,4
+oversensitive,10533913,5
+leoony,10533913,5
+60151849,10533913,4
+67087300,10533913,5
+66696808,10533913,5
+62513691,10533913,5
+34297672,10533913,5
+57144002,10533913,4
+129015324,10533913,5
+70806910,10533913,5
+120119799,10533913,4
+74825137,10533913,5
+42119262,10533913,5
+Dyouknow,10533913,5
+65532452,10533913,5
+celldweller,10533913,5
+45838830,10533913,4
+56628364,10533913,5
+abuwangzi,10533913,3
+55799828,10533913,4
+3234640,10533913,5
+casper2fly,10533913,5
+amruta,10533913,4
+67618719,10533913,5
+99329704,10533913,4
+120551719,10533913,3
+134905637,10533913,4
+3140118,10533913,4
+4324772,10533913,4
+51098227,10533913,5
+43978378,10533913,3
+4568924,10533913,5
+35192408,10533913,4
+65233252,10533913,4
+44445592,10533913,3
+lanhl,10533913,4
+128443906,10533913,5
+49541349,10533913,5
+37162990,10533913,2
+Little09Captain,10533913,5
+53945903,10533913,5
+83034260,10533913,4
+63981139,10533913,4
+1465852,10533913,4
+chenzhemu,10533913,5
+81645668,10533913,5
+Blacksevenshow,10533913,4
+evennn55555999,10533913,5
+Jerusalem,10533913,5
+shadowshmily,10533913,5
+1222025,10533913,5
+3307476,10533913,4
+68446613,10533913,5
+nirvana0330,10533913,5
+ccye,10533913,5
+36930975,10533913,4
+mojibai,10533913,4
+63064889,10533913,4
+g_success,10533913,5
+96761951,10533913,4
+FennyFu,10533913,2
+60290035,10533913,5
+42525996,10533913,5
+highmore91,10533913,4
+1988523,10533913,4
+136012818,10533913,5
+41386230,10533913,4
+121744384,10533913,5
+43171172,10533913,5
+63522902,10533913,5
+zasu1100412,10533913,2
+49337423,10533913,3
+rarabbit,10533913,4
+PIERO1208,10533913,5
+3783012,10533913,5
+qiyuemuxu,10533913,5
+59235428,10533913,5
+3782895,10533913,5
+47976319,10533913,5
+44282848,10533913,5
+54984584,10533913,5
+3139782,10533913,5
+125523961,10533913,5
+akert,10533913,5
+53901222,10533913,5
+2237292,10533913,4
+99372325,10533913,5
+34976631,10533913,5
+47113198,10533913,5
+96336225,10533913,5
+3567588,10533913,4
+49824578,10533913,4
+London1,10533913,5
+47263713,10533913,5
+thewaves,10533913,5
+uniking,10533913,5
+sirius_zhang,10533913,5
+13993361,10533913,3
+3907290,10533913,5
+2204181,10533913,5
+45651390,10533913,5
+55357697,10533913,5
+dormancy,10533913,5
+117360867,10533913,4
+BigLo,10533913,5
+A-Marvin-T,10533913,5
+Warrgon,10533913,4
+58594728,10533913,5
+45906911,10533913,5
+Annie-gu,10533913,3
+3625673,10533913,5
+renminling,10533913,5
+3071518,10533913,5
+134018980,10533913,5
+40509189,10533913,5
+flicker1973,10533913,5
+70951210,10533913,5
+130071542,10533913,5
+langlangtalent,10533913,5
+24040752,10533913,4
+Ruty1985,10533913,4
+situxx,10533913,5
+57456072,10533913,5
+chenxiaozi,10533913,4
+ivydreamer17,10533913,3
+64832487,10533913,5
+64832487,10533913,5
+cjcn,10533913,5
+35969014,10533913,4
+rodi,10533913,4
+122483306,10533913,2
+houjingmeng,10533913,5
+63593976,10533913,5
+liujinjie,10533913,4
+cheEng,10533913,5
+71085689,10533913,5
+117359316,10533913,4
+Xpirits,10533913,5
+97501403,10533913,4
+47406224,10533913,1
+53968004,10533913,5
+69585851,10533913,4
+mimiefenqiu,10533913,5
+3119825,10533913,3
+73734497,10533913,5
+evil_se7en,10533913,-1
+jianghan1217,10533913,3
+47755264,10533913,4
+60079529,10533913,5
+3670070,10533913,5
+hhy890809,10533913,4
+sharpayliu,10533913,4
+128429139,10533913,5
+Vanness94,10533913,4
+2096731,10533913,5
+66207797,10533913,5
+zkxloveytt,10533913,5
+3034073,10533913,5
+121762241,10533913,4
+wyj1990,10533913,4
+2210703,10533913,4
+yongzou,10533913,5
+49307033,10533913,5
+52008660,10533913,5
+connieyu,10533913,4
+mengliying,10533913,5
+dly009928,10533913,5
+75826878,10533913,5
+MOON_CHUNG,10533913,5
+2696668,10533913,5
+Kkumako,10533913,5
+theykilledbill,10533913,4
+94030694,10533913,5
+57599139,10533913,4
+4421474,10533913,4
+120004083,10533913,5
+mayuki,10533913,5
+jay2645,10533913,4
+TheLittlePrince,10533913,4
+caixiaofeng1992,10533913,5
+OYJZ,10533913,5
+douxiaokou,10533913,4
+86194720,10533913,5
+8073151,10533913,5
+liuziruo,10533913,5
+38453085,10533913,5
+33684021,10533913,5
+43251077,10533913,5
+52562694,10533913,4
+lamovrevx,10533913,5
+50926664,10533913,5
+tigermian,10533913,5
+55281741,10533913,5
+51454938,10533913,4
+35595897,10533913,4
+38483429,10533913,4
+135543815,10533913,5
+61749408,10533913,5
+90127295,10533913,4
+82847948,10533913,5
+85117057,10533913,5
+4415716,10533913,4
+4607844,10533913,5
+2366867,10533913,5
+135340486,10533913,5
+117808839,10533913,5
+63202867,10533913,5
+elnys,10533913,5
+41610301,10533913,5
+83366568,10533913,5
+1642385,10533913,4
+bluebellforest,10533913,4
+58581778,10533913,5
+49986348,10533913,5
+63092352,10533913,5
+59205597,10533913,5
+un-surface,10533913,5
+muqiushan,10533913,5
+52468739,10533913,4
+babylon2000,10533913,2
+44966176,10533913,5
+yeepy,10533913,3
+chl199093,10533913,4
+126583712,10533913,4
+Rocklover_cr,10533913,4
+64247507,10533913,5
+61352820,10533913,5
+116908080,10533913,3
+Alexistding,10533913,5
+sylviaxwoo,10533913,4
+sawakoluo,10533913,4
+33598055,10533913,5
+bubblesofchata,10533913,5
+flowerish,10533913,4
+faydao,10533913,4
+callmev,10533913,4
+3751886,10533913,4
+58049381,10533913,4
+55404773,10533913,4
+heidiholic,10533913,4
+miyavikame,10533913,5
+44275428,10533913,4
+muz_style,10533913,4
+31679098,10533913,4
+IRENE_JSNNU,10533913,5
+baibailin,10533913,5
+51999705,10533913,5
+74948535,10533913,5
+96146816,10533913,5
+2115709,10533913,4
+adalion,10533913,5
+46469157,10533913,4
+42216945,10533913,5
+59220835,10533913,3
+hazelhsu,10533913,5
+jangyang1992,10533913,4
+102429851,10533913,5
+skdjzt,10533913,4
+125663520,10533913,4
+37303827,10533913,5
+50021701,10533913,5
+71014294,10533913,5
+120646386,10533913,4
+94391270,10533913,5
+wbb45,10533913,5
+38984362,10533913,-1
+58762290,10533913,3
+firewingwong,10533913,5
+45220416,10533913,3
+dusk.xiyang,10533913,5
+33021000,10533913,3
+64694278,10533913,2
+bigspringonion,10533913,5
+41234171,10533913,4
+izane,10533913,5
+2423121,10533913,5
+wxstar,10533913,5
+45137235,10533913,4
+102162546,10533913,3
+celia_xy,10533913,5
+53872605,10533913,5
+113834252,10533913,4
+40296024,10533913,4
+50734415,10533913,3
+Nur,10533913,3
+51095448,10533913,5
+49272831,10533913,3
+119863705,10533913,5
+Star1225,10533913,4
+135614057,10533913,5
+58041448,10533913,5
+50785163,10533913,5
+51229713,10533913,4
+xianxianchen,10533913,4
+breadforest,10533913,4
+zq629,10533913,5
+fotoz,10533913,5
+Doglee110,10533913,-1
+49489943,10533913,3
+37108716,10533913,5
+13294183,10533913,4
+jhy007,10533913,5
+54076009,10533913,-1
+clover77,10533913,5
+cocolinx,10533913,5
+73715669,10533913,4
+103265619,10533913,3
+80058466,10533913,5
+sulphurlee,10533913,5
+princess921129,10533913,4
+130562665,10533913,5
+73011629,10533913,4
+cdz0516,10533913,4
+summer-v,10533913,5
+135031272,10533913,3
+xiaobai_zw,10533913,3
+yomaybe,10533913,5
+61413214,10533913,5
+rakasha,10533913,5
+2059031,10533913,4
+94214893,10533913,5
+64511208,10533913,1
+88151197,10533913,4
+jinggo,10533913,5
+43869534,10533913,5
+88097347,10533913,4
+21110490,10533913,5
+sissi0209,10533913,5
+59340784,10533913,5
+bukuwanzi,10533913,3
+52364655,10533913,5
+marukowz,10533913,4
+66462551,10533913,5
+134516953,10533913,4
+samantha129,10533913,5
+48510715,10533913,4
+64532388,10533913,4
+3934959,10533913,5
+cloris32,10533913,5
+39961322,10533913,4
+catundertree,10533913,5
+shimengyan0326,10533913,5
+56103922,10533913,3
+81998298,10533913,5
+hutiehua,10533913,5
+geminige,10533913,5
+63642878,10533913,-1
+81697410,10533913,3
+ranke0129,10533913,5
+1665848,10533913,4
+59855986,10533913,4
+76227940,10533913,5
+jiujiuprincess,10533913,4
+4906139,10533913,4
+72257329,10533913,5
+39381148,10533913,4
+35296764,10533913,4
+1392797,10533913,5
+jinyatou,10533913,5
+farmland1988,10533913,5
+amaranth_i,10533913,4
+133592760,10533913,5
+54266422,10533913,4
+linayan,10533913,5
+41662587,10533913,5
+35051709,10533913,4
+llabria,10533913,5
+51277324,10533913,5
+kaolashuo,10533913,-1
+132770225,10533913,5
+xubeisi,10533913,4
+TinyLens1990,10533913,5
+82378885,10533913,5
+wangshiqian1024,10533913,3
+64784968,10533913,-1
+63963645,10533913,5
+shudoku,10533913,2
+sibylluo,10533913,4
+imzj,10533913,4
+134867156,10533913,5
+57915393,10533913,5
+15367255,10533913,4
+44486984,10533913,3
+wyest,10533913,-1
+32551454,10533913,4
+anya2011,10533913,2
+anya2011,10533913,2
+51563212,10533913,5
+rayta,10533913,4
+41583177,10533913,4
+131431957,10533913,5
+tracytraztse,10533913,4
+6681296,10533913,4
+luoluojiayou,10533913,-1
+62840293,10533913,5
+1217040,10533913,5
+4160222,10533913,4
+SHDA,10533913,5
+40505511,10533913,3
+90581117,10533913,4
+FrancisM,10533913,5
+40915671,10533913,4
+30705587,10533913,5
+86116363,10533913,4
+isbai,10533913,5
+64715321,10533913,5
+77279823,10533913,5
+4499022,10533913,5
+kema,10533913,3
+76319059,10533913,4
+63645835,10533913,5
+101773163,10533913,4
+30221434,10533913,4
+sdanlin,10533913,3
+dreamhands,10533913,5
+51641705,10533913,5
+lifeofkar,10533913,5
+bluelsd,10533913,4
+Sunray0807,10533913,5
+lenber,10533913,4
+amyammy,10533913,5
+48252359,10533913,5
+pengpeng0308,10533913,5
+xiaosummer,10533913,5
+iammagic,10533913,5
+62510506,10533913,4
+52323343,10533913,5
+34459109,10533913,4
+Tiara0211,10533913,4
+mono,10533913,5
+65722778,10533913,5
+47807328,10533913,5
+1844596,10533913,5
+heathersiner,10533913,5
+paradise624,10533913,4
+cianshijie,10533913,5
+usagikuma,10533913,5
+48643381,10533913,3
+22246157,10533913,5
+132806311,10533913,5
+32019435,10533913,4
+togilj,10533913,3
+72785773,10533913,5
+41786241,10533913,5
+119447313,10533913,5
+Cindylam,10533913,3
+122720481,10533913,4
+agathasky,10533913,5
+dabingzi1990,10533913,5
+56902514,10533913,4
+42661364,10533913,5
+Dandelion369,10533913,5
+50335786,10533913,4
+Ken,10533913,5
+dorian-grey,10533913,5
+52841977,10533913,3
+kelvin7mj,10533913,5
+cindyayumilee,10533913,-1
+tt0523_hitomi,10533913,5
+58376934,10533913,5
+83994709,10533913,5
+54201659,10533913,5
+zuoqingh,10533913,4
+101765371,10533913,3
+SaneWoo,10533913,5
+alvie,10533913,4
+89078162,10533913,4
+37226632,10533913,5
+63880097,10533913,3
+ashelly0905,10533913,4
+63343289,10533913,5
+132138696,10533913,4
+11012424,10533913,5
+maorabbit,10533913,4
+lea_x,10533913,4
+40905460,10533913,-1
+45865408,10533913,5
+50511976,10533913,5
+63685423,10533913,4
+1974706,10533913,5
+fuckinboy,10533913,5
+DJwalawala,10533913,5
+1505921,10533913,3
+41472309,10533913,3
+66613325,10533913,4
+76447430,10533913,4
+76447430,10533913,4
+47849453,10533913,4
+3509998,10533913,5
+54612022,10533913,2
+faunus,10533913,3
+48260659,10533913,5
+seeder0121,10533913,3
+136275151,10533913,5
+vesyinz,10533913,5
+64020328,10533913,5
+120167569,10533913,5
+65521358,10533913,4
+4545627,10533913,4
+allul,10533913,4
+kalthusad,10533913,4
+74241382,10533913,4
+136265610,10533913,4
+3541298,10533913,5
+xqsmao,10533913,4
+56578863,10533913,5
+54041697,10533913,4
+singalongsong,10533913,4
+48098094,10533913,4
+48743724,10533913,4
+2280761,10533913,3
+61981962,10533913,5
+pineappledog,10533913,4
+nemopapa,10533913,5
+60781966,10533913,4
+zyx1991313,10533913,5
+radish,10533913,5
+61260966,10533913,5
+136114998,10533913,4
+xx0301ll,10533913,4
+132347906,10533913,4
+cretek,10533913,4
+iametsuko,10533913,3
+anita198888,10533913,4
+39231477,10533913,5
+tangmenxiaosan,10533913,5
+apple4520,10533913,4
+M.N.,10533913,4
+133564344,10533913,5
+45855864,10533913,4
+49735209,10533913,5
+44618919,10533913,5
+34674400,10533913,4
+69265363,10533913,5
+xiaodoufu,10533913,5
+SHSMJ-Z,10533913,3
+85035991,10533913,5
+64901268,10533913,5
+69056312,10533913,5
+103446699,10533913,4
+SPIRITUA,10533913,4
+63623744,10533913,4
+50997906,10533913,5
+33531555,10533913,5
+4223395,10533913,5
+zacklee,10533913,4
+2451603,10533913,5
+89753683,10533913,3
+3208300,10533913,5
+elegantcrazer,10533913,4
+3826833,10533913,5
+vivian_yi,10533913,4
+3487458,10533913,4
+75020931,10533913,5
+mecerdes,10533913,3
+balabara,10533913,2
+Ke-_-vin,10533913,5
+29828337,10533913,5
+57437837,10533913,5
+cotton,10533913,4
+81770301,10533913,5
+41605259,10533913,4
+136040892,10533913,5
+33020607,10533913,5
+xingyun1012,10533913,5
+3520935,10533913,4
+65595562,10533913,5
+35348647,10533913,4
+4051797,10533913,4
+foreversleepy,10533913,5
+2029657,10533913,5
+55833673,10533913,4
+congshuli,10533913,5
+51320337,10533913,4
+54536018,10533913,4
+104608789,10533913,4
+angel_wang,10533913,4
+56722636,10533913,5
+80820907,10533913,5
+sijizhp,10533913,3
+Luozixia,10533913,3
+53505174,10533913,4
+15612441,10533913,4
+autumnsun,10533913,3
+vivimiaoer,10533913,5
+61791330,10533913,5
+136101964,10533913,4
+17979531,10533913,5
+32659501,10533913,5
+65162153,10533913,3
+lazymule,10533913,5
+39449677,10533913,4
+felixqiqi,10533913,5
+49826646,10533913,4
+42296899,10533913,1
+115370500,10533913,4
+45795420,10533913,5
+2361739,10533913,4
+36302037,10533913,5
+sakuras1412,10533913,-1
+72602963,10533913,5
+29220326,10533913,5
+2060825,10533913,3
+49291444,10533913,5
+128158516,10533913,4
+yhn0535,10533913,4
+live-my-life,10533913,5
+103456182,10533913,5
+attutu,10533913,4
+yvonneliu,10533913,4
+V.J.,10533913,5
+45586906,10533913,4
+wren,10533913,5
+crystal12345678,10533913,4
+132168348,10533913,4
+88048268,10533913,4
+djlike,10533913,5
+4563516,10533913,5
+48100528,10533913,5
+sigridshuo,10533913,3
+milovejt_,10533913,5
+2468582,10533913,4
+iswear_4ever,10533913,5
+66512641,10533913,4
+smile2491,10533913,2
+34495275,10533913,5
+92881561,10533913,4
+127345355,10533913,5
+pandawin,10533913,5
+80568483,10533913,5
+eyrecat,10533913,4
+liuruomei,10533913,4
+72820166,10533913,5
+lidusa,10533913,4
+vitaminsunshine,10533913,5
+45375152,10533913,3
+lucyshang,10533913,4
+37025309,10533913,5
+56970543,10533913,3
+46524183,10533913,5
+savage_Howl,10533913,5
+rachelyi23,10533913,4
+franklinton,10533913,5
+122855833,10533913,5
+chjjuly0118,10533913,5
+4111954,10533913,4
+4111954,10533913,4
+102400331,10533913,5
+3269865,10533913,4
+kongong,10533913,3
+60495529,10533913,3
+sakurax7,10533913,5
+3183207,10533913,-1
+39603909,10533913,4
+84968325,10533913,4
+missingworld,10533913,5
+assavern,10533913,5
+foun,10533913,3
+83313626,10533913,5
+54991939,10533913,3
+79269644,10533913,5
+81378961,10533913,3
+49985202,10533913,5
+53726776,10533913,4
+1359302,10533913,4
+cherybeckham,10533913,4
+66813486,10533913,5
+weini0410,10533913,5
+59740753,10533913,4
+HughCapet,10533913,3
+37355445,10533913,5
+1577735,10533913,5
+ann8282555,10533913,5
+xiaoguai2098,10533913,4
+11192863,10533913,4
+xiaozhumomo,10533913,4
+2443990,10533913,4
+seeing...,10533913,3
+betty5940,10533913,4
+103016444,10533913,4
+67027216,10533913,5
+45519575,10533913,-1
+twalnut,10533913,5
+rangdream,10533913,4
+55297781,10533913,4
+40373085,10533913,5
+29123460,10533913,5
+50268348,10533913,4
+foreverred,10533913,4
+102236551,10533913,4
+68079918,10533913,4
+wjy419762524,10533913,5
+46370564,10533913,5
+58557255,10533913,5
+71829281,10533913,5
+1635161,10533913,5
+66303598,10533913,5
+Youmans,10533913,4
+nobodyfind,10533913,5
+74693421,10533913,5
+47776464,10533913,5
+51048738,10533913,3
+86621646,10533913,5
+48476618,10533913,3
+xiaoiou,10533913,5
+70214186,10533913,5
+4804117,10533913,5
+73569982,10533913,4
+53456687,10533913,3
+63275937,10533913,4
+bibiko7,10533913,5
+94417936,10533913,4
+131984239,10533913,5
+38397417,10533913,5
+zhuakuangshitai,10533913,2
+127051370,10533913,5
+8316667,10533913,4
+79770724,10533913,4
+nikkichou,10533913,5
+54666620,10533913,5
+wangzhanhei,10533913,4
+57041893,10533913,5
+70541374,10533913,5
+3188293,10533913,2
+41823520,10533913,4
+amor1028,10533913,5
+127323198,10533913,4
+121876200,10533913,5
+47756739,10533913,5
+134854783,10533913,5
+zengkun100,10533913,5
+45588600,10533913,4
+lishidai93,10533913,4
+51774232,10533913,4
+99337614,10533913,4
+101618998,10533913,5
+66999913,10533913,4
+95592443,10533913,4
+44993179,10533913,5
+76719047,10533913,4
+2604080,10533913,2
+64692199,10533913,4
+130488268,10533913,5
+48269477,10533913,4
+Lucifer_89,10533913,5
+3758190,10533913,5
+shaochong,10533913,4
+1525048,10533913,4
+34628274,10533913,4
+shoufy,10533913,5
+3503445,10533913,5
+59105095,10533913,5
+71025729,10533913,5
+1462255,10533913,5
+crazyfamily,10533913,5
+49545873,10533913,4
+lunapurple,10533913,5
+48271739,10533913,4
+wannafat,10533913,5
+48357583,10533913,3
+69010258,10533913,5
+69126111,10533913,4
+61340165,10533913,4
+103208454,10533913,5
+oneplusmoon,10533913,4
+47978030,10533913,5
+58794531,10533913,5
+stygian,10533913,4
+papa_guo,10533913,4
+121228834,10533913,5
+4427457,10533913,3
+60854174,10533913,5
+lidiot,10533913,2
+30314693,10533913,5
+daying,10533913,5
+1232602,10533913,4
+hikkii,10533913,4
+9556755,10533913,4
+weiliang1023,10533913,5
+135414017,10533913,5
+minilhj,10533913,4
+fishyuyue,10533913,5
+comewinni,10533913,5
+49147828,10533913,3
+52932994,10533913,3
+54806925,10533913,5
+maerdaifu,10533913,4
+124585989,10533913,4
+127014101,10533913,5
+45057209,10533913,5
+AllenHarris,10533913,5
+zxin94264,10533913,3
+jasmine0821,10533913,5
+86025873,10533913,5
+1315666,10533913,4
+jocelyn710,10533913,5
+77898629,10533913,5
+wendysunny,10533913,4
+4750288,10533913,5
+linsleyzhou,10533913,5
+80227581,10533913,4
+lalalaho,10533913,5
+67612774,10533913,4
+125801421,10533913,5
+45527990,10533913,5
+milkcolor,10533913,4
+m2cky,10533913,4
+30084869,10533913,4
+124496919,10533913,5
+samle--,10533913,4
+85398836,10533913,5
+63278150,10533913,5
+melanie_je,10533913,4
+kinderbaby,10533913,4
+49539143,10533913,4
+cucaoxu,10533913,4
+lihaozhou,10533913,-1
+45291333,10533913,4
+76238756,10533913,5
+63399051,10533913,3
+85130256,10533913,5
+levin815,10533913,5
+66572006,10533913,5
+SHANGYIMOMO,10533913,5
+134096966,10533913,5
+wudai2,10533913,5
+39095645,10533913,4
+44522199,10533913,2
+59366583,10533913,5
+52470011,10533913,4
+134446098,10533913,4
+66927151,10533913,5
+renshaoqun,10533913,5
+53055726,10533913,3
+114622036,10533913,4
+aoi_1030,10533913,4
+54056952,10533913,5
+68512252,10533913,5
+lilianzly,10533913,5
+67948455,10533913,3
+jessiejessie,10533913,5
+ruudgoal,10533913,5
+54000871,10533913,4
+1602645,10533913,5
+129575965,10533913,5
+66104614,10533913,5
+134476648,10533913,5
+breakawaycs,10533913,5
+80133214,10533913,4
+OneiLulu,10533913,4
+132356265,10533913,5
+6821770,10533913,5
+38412947,10533913,5
+zy911,10533913,5
+51578679,10533913,4
+34500753,10533913,4
+68384121,10533913,3
+taochongshaozhu,10533913,4
+wutongtree,10533913,3
+6246829,10533913,5
+haima8824,10533913,4
+57964854,10533913,5
+musicman1991,10533913,5
+63977549,10533913,5
+zuozichu,10533913,4
+kun_kun,10533913,5
+68686014,10533913,5
+K-Child,10533913,5
+100765973,10533913,5
+74237278,10533913,4
+76051077,10533913,5
+36617215,10533913,4
+80724336,10533913,5
+fandarin,10533913,4
+xxclorisxx,10533913,5
+Keemen,10533913,5
+131837471,10533913,4
+44263595,10533913,5
+64969828,10533913,5
+49065066,10533913,4
+50836475,10533913,5
+1159296,10533913,5
+132830109,10533913,5
+wxh818,10533913,4
+54635444,10533913,5
+59602774,10533913,5
+61715230,10533913,4
+whitefeather,10533913,5
+78645703,10533913,5
+1117300,10533913,4
+1545367,10533913,3
+77031732,10533913,5
+qinsword521,10533913,4
+TJ36,10533913,5
+shaleejia,10533913,5
+evilQin,10533913,3
+yvonnefan,10533913,4
+48997423,10533913,5
+54753971,10533913,5
+73770976,10533913,4
+63884743,10533913,5
+121602316,10533913,4
+1827756,10533913,5
+hupocry,10533913,5
+90055270,10533913,5
+miyaorion,10533913,3
+136193418,10533913,5
+4186070,10533913,2
+50238914,10533913,4
+peapod_y,10533913,5
+timejin,10533913,5
+43588127,10533913,4
+123591194,10533913,4
+1428057,10533913,5
+hanuit,10533913,3
+porkwen,10533913,3
+miaonica,10533913,4
+3122712,10533913,4
+48634684,10533913,5
+121204173,10533913,5
+51057351,10533913,4
+38452487,10533913,5
+soundless618,10533913,5
+45347825,10533913,4
+overlovetravel,10533913,5
+67334357,10533913,5
+zllcih,10533913,-1
+74745339,10533913,4
+kylefun,10533913,5
+innocentethan,10533913,5
+45949533,10533913,5
+76426376,10533913,3
+48441373,10533913,3
+danzilee,10533913,4
+windirt,10533913,4
+Flower-tea,10533913,5
+68027802,10533913,3
+92871519,10533913,5
+134103439,10533913,5
+2705619,10533913,5
+43288736,10533913,4
+61703383,10533913,4
+81666344,10533913,3
+erin_yyi,10533913,5
+ooooooo7,10533913,4
+1391038,10533913,5
+120149502,10533913,4
+3971838,10533913,4
+4011962,10533913,4
+timeispassing,10533913,4
+poria,10533913,4
+2145215,10533913,5
+67330888,10533913,4
+63605240,10533913,5
+46843516,10533913,5
+63401093,10533913,4
+55001545,10533913,5
+guyuemuziye2,10533913,4
+128541386,10533913,5
+81131709,10533913,5
+83617900,10533913,5
+Simone_smile,10533913,5
+jimmy037,10533913,5
+50878855,10533913,3
+31683243,10533913,5
+sansyx,10533913,5
+16921073,10533913,5
+2964283,10533913,4
+Reina1234,10533913,4
+101633858,10533913,5
+abby0109,10533913,4
+133737109,10533913,4
+Rocky_neverland,10533913,4
+48219213,10533913,4
+huangti,10533913,5
+mgmyz,10533913,5
+soasbefore,10533913,4
+briggtta,10533913,4
+1767863,10533913,4
+126140067,10533913,5
+68818342,10533913,5
+58258651,10533913,4
+64026152,10533913,5
+xiaolaimiao,10533913,4
+122675776,10533913,5
+30022643,10533913,5
+Sttaan,10533913,5
+2704869,10533913,4
+qncs,10533913,4
+55755674,10533913,5
+42038071,10533913,5
+wangxhtt,10533913,5
+43420239,10533913,5
+43406564,10533913,4
+30621998,10533913,5
+rim0821,10533913,4
+momoaamomo,10533913,4
+69441215,10533913,4
+64121971,10533913,5
+40591919,10533913,5
+40017309,10533913,5
+69460784,10533913,5
+corinnecnjp,10533913,5
+3440203,10533913,3
+oodiamondoo,10533913,5
+88592914,10533913,4
+3941641,10533913,5
+48258273,10533913,5
+1092960,10533913,5
+cup-whent,10533913,5
+tomzhi,10533913,5
+2106137,10533913,5
+125229716,10533913,5
+39452521,10533913,4
+50403240,10533913,4
+baladong123,10533913,5
+38061358,10533913,5
+62502151,10533913,5
+133794602,10533913,5
+48166739,10533913,5
+61272937,10533913,5
+52901753,10533913,4
+4621183,10533913,5
+chenny515,10533913,5
+51853424,10533913,5
+2863429,10533913,5
+2417185,10533913,5
+mizang,10533913,5
+drinkme,10533913,5
+willese,10533913,4
+jiiing,10533913,5
+89313000,10533913,4
+1892627,10533913,2
+xxfelix,10533913,5
+88161315,10533913,5
+2737013,10533913,5
+1448991,10533913,4
+missgemini,10533913,5
+IamV,10533913,4
+45408474,10533913,4
+129540471,10533913,5
+77200765,10533913,5
+61551903,10533913,5
+64345409,10533913,4
+115849578,10533913,4
+133033142,10533913,4
+133033142,10533913,4
+2003868,10533913,5
+64648218,10533913,5
+yumoxin,10533913,4
+77048663,10533913,5
+cviva,10533913,5
+gh13singer,10533913,4
+holly_cerise,10533913,4
+giseleYAO,10533913,4
+52348153,10533913,5
+42907481,10533913,4
+60469455,10533913,5
+lips,10533913,3
+llms,10533913,5
+4405006,10533913,-1
+127299151,10533913,5
+mar42,10533913,5
+somehoow,10533913,4
+1792548,10533913,4
+58993802,10533913,5
+58993802,10533913,5
+sunsizhe,10533913,5
+57115166,10533913,4
+1089032,10533913,5
+60876399,10533913,5
+136127858,10533913,4
+1601219,10533913,4
+dave_m,10533913,4
+135975588,10533913,5
+bubblexyd,10533913,5
+63755124,10533913,5
+85183443,10533913,5
+chenxiangworld,10533913,4
+3786096,10533913,5
+viona,10533913,5
+81815749,10533913,3
+arvinsho,10533913,5
+Y_yujia,10533913,5
+jessicawater,10533913,-1
+1403754,10533913,5
+summerking23,10533913,5
+haxiepeia,10533913,4
+83833965,10533913,4
+classicalsoul,10533913,5
+36633049,10533913,4
+57459956,10533913,5
+63300404,10533913,5
+dear001,10533913,5
+Collins1995,10533913,4
+57449150,10533913,5
+nina415,10533913,4
+91093296,10533913,5
+zy04154,10533913,5
+yasonyyx,10533913,5
+61713856,10533913,5
+78599391,10533913,5
+55286449,10533913,5
+just4lily,10533913,4
+4163129,10533913,4
+84541245,10533913,5
+kennychuang,10533913,5
+4211678,10533913,5
+3671744,10533913,3
+3651501,10533913,5
+dodododoxhu,10533913,5
+55747854,10533913,3
+eiji218837,10533913,5
+35241807,10533913,5
+68083180,10533913,5
+Hnanmao,10533913,5
+43912671,10533913,5
+1556137,10533913,4
+76770413,10533913,4
+alwaysbestrong,10533913,3
+47534198,10533913,4
+jakehkj,10533913,5
+loveZMS,10533913,2
+miemiemind,10533913,5
+73654644,10533913,5
+phoebefly,10533913,5
+58462075,10533913,4
+62154568,10533913,5
+xianrenwj,10533913,4
+56660352,10533913,4
+132974606,10533913,5
+50761421,10533913,5
+63924223,10533913,5
+60981662,10533913,4
+54158519,10533913,5
+2893669,10533913,5
+119951362,10533913,4
+peerless14,10533913,4
+jetrain,10533913,5
+StarAnice,10533913,5
+58542880,10533913,4
+qylp,10533913,5
+86941493,10533913,5
+62522931,10533913,4
+66278129,10533913,5
+123277373,10533913,4
+123277373,10533913,4
+tychebian,10533913,4
+102446060,10533913,4
+jackiesbackbone,10533913,3
+xchill,10533913,5
+63635904,10533913,5
+3328964,10533913,5
+75995018,10533913,5
+55438232,10533913,5
+5652081,10533913,5
+56975242,10533913,5
+stacieee,10533913,5
+53695453,10533913,5
+ciweiqiqi,10533913,5
+133195565,10533913,4
+53497780,10533913,3
+cheechea,10533913,5
+overlysilly,10533913,4
+135511267,10533913,4
+120032242,10533913,5
+66088686,10533913,5
+July_AuE,10533913,4
+53903897,10533913,5
+94168906,10533913,5
+36547066,10533913,5
+answer0545716,10533913,3
+47060979,10533913,5
+127085141,10533913,5
+44690899,10533913,5
+50249730,10533913,5
+42088638,10533913,5
+90612337,10533913,5
+68454681,10533913,4
+50259221,10533913,4
+102701875,10533913,5
+2927014,10533913,4
+3427535,10533913,3
+27562730,10533913,4
+57591311,10533913,5
+42469083,10533913,5
+3568788,10533913,5
+65471463,10533913,5
+amber-shadow,10533913,3
+52110233,10533913,5
+hommy,10533913,4
+52981185,10533913,5
+56091106,10533913,3
+35303799,10533913,4
+42171316,10533913,4
+119290611,10533913,5
+55648856,10533913,5
+4105210,10533913,5
+90097591,10533913,2
+Aianita,10533913,4
+ibbioiohjly,10533913,5
+2298495,10533913,5
+nss1w1,10533913,4
+3580907,10533913,5
+66686350,10533913,5
+1951463,10533913,3
+2286075,10533913,5
+blue4light,10533913,5
+83360600,10533913,4
+2910534,10533913,3
+61468698,10533913,5
+65745378,10533913,5
+51772148,10533913,5
+124246405,10533913,4
+83391483,10533913,4
+17790607,10533913,4
+RabitAmen,10533913,4
+118883751,10533913,5
+122612759,10533913,5
+cynthiazhang_,10533913,5
+dust_bug,10533913,5
+4658692,10533913,5
+31023505,10533913,1
+64515928,10533913,3
+65137697,10533913,4
+4007831,10533913,3
+136053872,10533913,5
+49382185,10533913,4
+51921097,10533913,5
+bearhearted,10533913,5
+60408213,10533913,5
+arielwong,10533913,5
+1264598,10533913,5
+beifighting,10533913,3
+hicode,10533913,3
+sopin,10533913,3
+81985285,10533913,5
+22666513,10533913,5
+surebesure,10533913,5
+123469699,10533913,5
+47189582,10533913,5
+81539389,10533913,5
+haji,10533913,5
+the_z,10533913,5
+65692300,10533913,5
+38698116,10533913,5
+stardust1900,10533913,4
+Sai,10533913,5
+43621378,10533913,5
+3685431,10533913,5
+102676508,10533913,4
+134620993,10533913,5
+100532908,10533913,5
+sweettalk5205,10533913,5
+pumba92simba,10533913,4
+89050593,10533913,4
+zombiekid,10533913,3
+63045020,10533913,-1
+67875277,10533913,5
+6752200,10533913,4
+44741698,10533913,2
+57420118,10533913,4
+42132888,10533913,5
+49930481,10533913,5
+michiyojun,10533913,5
+yangDAyun,10533913,5
+songya247,10533913,4
+54693017,10533913,2
+daidai1346,10533913,3
+2987938,10533913,4
+73721096,10533913,5
+120197221,10533913,5
+51247678,10533913,5
+semenov,10533913,5
+xiaoyuzhe,10533913,2
+83025872,10533913,5
+27933062,10533913,4
+65144246,10533913,5
+salome-lee,10533913,5
+41649419,10533913,4
+45803275,10533913,5
+127587816,10533913,5
+119833132,10533913,4
+43375121,10533913,5
+48877110,10533913,4
+115669572,10533913,4
+115669572,10533913,4
+78846445,10533913,4
+betterhan,10533913,5
+57859400,10533913,4
+48377628,10533913,5
+56301809,10533913,5
+132392850,10533913,5
+71722491,10533913,5
+csi910,10533913,5
+68476661,10533913,5
+48361122,10533913,3
+62577484,10533913,5
+MYtachikoma,10533913,5
+52923865,10533913,5
+yinmengtan,10533913,3
+cera,10533913,4
+songkangjing,10533913,5
+67104374,10533913,1
+antony221,10533913,5
+63885118,10533913,5
+tttuan,10533913,4
+vera0902,10533913,5
+51709724,10533913,5
+burclover,10533913,5
+59426898,10533913,4
+4523082,10533913,4
+maoyang,10533913,5
+featherfancy,10533913,5
+81163129,10533913,3
+bananayuan,10533913,5
+28939207,10533913,4
+Chauvetina,10533913,4
+49587231,10533913,4
+70336535,10533913,5
+shen120,10533913,4
+lushrene,10533913,4
+cacawhu,10533913,5
+teuhyuk,10533913,5
+81316047,10533913,5
+1998442,10533913,5
+clever528,10533913,5
+44973722,10533913,5
+wunie,10533913,4
+54067198,10533913,3
+4567182,10533913,5
+52739507,10533913,4
+60736687,10533913,4
+41159418,10533913,5
+2376645,10533913,4
+2504741,10533913,4
+76194476,10533913,5
+76603396,10533913,5
+4589325,10533913,4
+31422090,10533913,5
+87230484,10533913,5
+120625991,10533913,4
+32594098,10533913,5
+58524083,10533913,5
+32973620,10533913,5
+youmingwu,10533913,5
+fengqingyuexia,10533913,5
+41964570,10533913,5
+piaoyi,10533913,5
+53291556,10533913,5
+53173007,10533913,5
+53372388,10533913,5
+49487758,10533913,5
+128492091,10533913,3
+119663785,10533913,5
+127102772,10533913,5
+andersonyue,10533913,5
+26764204,10533913,5
+59999741,10533913,3
+66636246,10533913,5
+41287969,10533913,4
+99206914,10533913,5
+51132496,10533913,4
+131614604,10533913,5
+135419353,10533913,4
+14333996,10533913,4
+76929963,10533913,4
+skeeter007,10533913,4
+enralphle,10533913,5
+3887848,10533913,4
+qq83114569,10533913,4
+24068635,10533913,5
+57084794,10533913,5
+Cokaholic,10533913,5
+2302405,10533913,4
+46161138,10533913,4
+49172161,10533913,4
+48849498,10533913,5
+wangxin76ers,10533913,3
+lilian-tian,10533913,5
+49877008,10533913,4
+47331864,10533913,5
+gnituw1986,10533913,5
+54174425,10533913,5
+3194373,10533913,5
+47603916,10533913,4
+48608024,10533913,2
+fenglingcp,10533913,5
+lorenmt,10533913,5
+66828121,10533913,5
+dellama,10533913,4
+chloeleung,10533913,3
+121029402,10533913,5
+74353904,10533913,5
+52850914,10533913,4
+87284079,10533913,5
+63903749,10533913,5
+49760010,10533913,5
+khuntracie,10533913,4
+82729736,10533913,5
+mkbl,10533913,5
+80483587,10533913,5
+pengyaos,10533913,5
+54614500,10533913,4
+liminzhang,10533913,5
+109381843,10533913,4
+2437900,10533913,5
+markspotting,10533913,4
+4026275,10533913,5
+135671467,10533913,5
+57882904,10533913,4
+Cesart,10533913,5
+130510359,10533913,4
+jinjidexiong,10533913,3
+57597596,10533913,5
+126206725,10533913,5
+yaoez,10533913,4
+51761359,10533913,5
+2364299,10533913,5
+57455972,10533913,5
+tiaoyu,10533913,4
+66250308,10533913,5
+4615634,10533913,5
+lagrandeillusio,10533913,5
+53474498,10533913,3
+gloriakiki,10533913,3
+onegirl,10533913,3
+102369970,10533913,4
+135366618,10533913,4
+2574435,10533913,5
+112290913,10533913,3
+70860940,10533913,4
+41758984,10533913,5
+2284835,10533913,4
+hjhmusic,10533913,4
+maoyufreng,10533913,5
+52698885,10533913,4
+40950202,10533913,3
+chanelluo,10533913,4
+90217144,10533913,3
+oooweirooo,10533913,3
+97200408,10533913,4
+clytzeyue,10533913,5
+raven1916,10533913,5
+58854842,10533913,4
+52330687,10533913,5
+souring,10533913,5
+35497511,10533913,5
+2541809,10533913,5
+yanoooo,10533913,5
+MillayWang,10533913,5
+linsio,10533913,5
+45111580,10533913,4
+myvonne,10533913,4
+poopoohead,10533913,5
+yujiuwei,10533913,4
+122104513,10533913,4
+51474271,10533913,4
+57134212,10533913,1
+hu82667775,10533913,5
+yangqihang,10533913,5
+62868573,10533913,5
+41037171,10533913,5
+107481201,10533913,3
+panpan_lovelife,10533913,4
+ella0124,10533913,5
+76240599,10533913,4
+123857159,10533913,5
+49184496,10533913,5
+46437629,10533913,4
+61942054,10533913,4
+36545873,10533913,5
+63871803,10533913,3
+53508256,10533913,3
+62993339,10533913,5
+zhchtcm,10533913,4
+4872425,10533913,4
+couple1314,10533913,5
+6407298,10533913,4
+62224087,10533913,5
+81860027,10533913,5
+104167946,10533913,2
+40424921,10533913,5
+93372123,10533913,4
+49180179,10533913,4
+130268519,10533913,5
+109884640,10533913,5
+94028247,10533913,5
+PinkyL,10533913,5
+xing3171,10533913,4
+26636901,10533913,5
+48267009,10533913,5
+xellossking,10533913,4
+59629692,10533913,4
+12571373,10533913,-1
+huangxuzhe,10533913,4
+54015533,10533913,5
+flowerbaobao,10533913,5
+73614049,10533913,5
+fairy.sun,10533913,5
+57724049,10533913,4
+63447172,10533913,5
+127295564,10533913,5
+qi-shao-shang,10533913,3
+52702832,10533913,5
+52832866,10533913,3
+moquin,10533913,4
+jiao.s,10533913,4
+62778442,10533913,4
+readonlyfile,10533913,5
+looma,10533913,4
+trumpetshell,10533913,5
+louie628,10533913,4
+42781557,10533913,4
+48320059,10533913,5
+56788441,10533913,5
+lyijo,10533913,5
+53759633,10533913,4
+56771343,10533913,4
+69702764,10533913,3
+55454823,10533913,4
+nadesico,10533913,5
+64315063,10533913,4
+64978409,10533913,5
+77357692,10533913,5
+babybluebb,10533913,5
+essencexi,10533913,5
+75927333,10533913,4
+50592811,10533913,4
+LeeMar,10533913,5
+oulichen,10533913,5
+czj950615,10533913,3
+49358081,10533913,5
+129245052,10533913,5
+121976150,10533913,4
+44326808,10533913,5
+xiaochener,10533913,5
+43785559,10533913,4
+74243951,10533913,5
+candylyt,10533913,5
+63250313,10533913,4
+50506429,10533913,4
+Y1990,10533913,-1
+foryoungheart,10533913,5
+susidai,10533913,4
+66650981,10533913,4
+66650981,10533913,4
+75638886,10533913,4
+61497577,10533913,4
+LillianLeelll,10533913,3
+47818182,10533913,5
+126201751,10533913,3
+56065743,10533913,5
+allblue,10533913,4
+jiroleng,10533913,4
+mabysomebody,10533913,4
+62775210,10533913,5
+49004528,10533913,5
+47603768,10533913,5
+58267868,10533913,4
+woainilyb,10533913,5
+63395887,10533913,5
+108111137,10533913,3
+39360207,10533913,5
+49748567,10533913,4
+60188579,10533913,4
+129012253,10533913,2
+136101337,10533913,5
+51865230,10533913,5
+1818595,10533913,4
+seanseal,10533913,5
+grass_tree,10533913,5
+92085198,10533913,5
+NicoleCrowe,10533913,4
+plasmaism,10533913,5
+92887313,10533913,5
+30513861,10533913,4
+57405925,10533913,3
+3687412,10533913,5
+91405945,10533913,5
+49750852,10533913,5
+2413295,10533913,4
+97163496,10533913,4
+snowallsky,10533913,5
+thenea,10533913,5
+67332045,10533913,4
+3588825,10533913,4
+49002564,10533913,4
+violain,10533913,4
+123588338,10533913,5
+25350324,10533913,4
+89787162,10533913,5
+maxiaoyin,10533913,3
+HCY510,10533913,5
+carinatsu,10533913,4
+50939073,10533913,4
+119864973,10533913,5
+135694361,10533913,5
+3640052,10533913,4
+51260993,10533913,4
+52872697,10533913,4
+nianlu,10533913,4
+125592796,10533913,3
+allenyao,10533913,3
+89383568,10533913,4
+72943545,10533913,3
+65800978,10533913,5
+2923243,10533913,5
+68669440,10533913,5
+Monkeyhere,10533913,4
+47981838,10533913,5
+48165079,10533913,5
+xu.xu,10533913,5
+42293953,10533913,5
+4463287,10533913,4
+34908196,10533913,5
+SH51244,10533913,5
+3950589,10533913,4
+57765859,10533913,4
+moonjourney,10533913,4
+68711924,10533913,4
+shengqingyue,10533913,5
+124317961,10533913,5
+52106062,10533913,5
+puxy,10533913,5
+76234081,10533913,4
+31555036,10533913,5
+51807191,10533913,5
+125694010,10533913,5
+Popdai,10533913,5
+75696184,10533913,5
+warden_cauc,10533913,5
+18049709,10533913,5
+63454014,10533913,4
+gaoyf,10533913,5
+mikea,10533913,3
+curemyself,10533913,4
+izzie,10533913,4
+42636733,10533913,5
+40447897,10533913,3
+79425472,10533913,5
+135413775,10533913,4
+3497237,10533913,3
+59361957,10533913,4
+11014776,10533913,-1
+woodsman,10533913,4
+vickyfanyan,10533913,4
+50367027,10533913,5
+62590377,10533913,5
+43808911,10533913,4
+88452602,10533913,5
+5894610,10533913,5
+57784370,10533913,4
+93741024,10533913,5
+lovepants,10533913,4
+131844202,10533913,4
+wanyuqing330,10533913,5
+59949751,10533913,4
+junod,10533913,3
+pvo,10533913,4
+45510848,10533913,5
+1529544,10533913,5
+sssssstutter,10533913,5
+xiguapei,10533913,4
+iceberg.B,10533913,3
+50703946,10533913,5
+82361798,10533913,5
+shxhkun,10533913,5
+84755665,10533913,4
+79604654,10533913,5
+lovesolo,10533913,5
+shuyedaxigua,10533913,3
+Stream1115,10533913,5
+58975463,10533913,5
+52710825,10533913,4
+55820297,10533913,5
+53370460,10533913,5
+60282020,10533913,5
+14168896,10533913,5
+43965914,10533913,4
+17828275,10533913,5
+53829796,10533913,5
+120545083,10533913,3
+hisheny,10533913,4
+Alcor,10533913,3
+FILANIEYOTE,10533913,5
+62324966,10533913,5
+63119714,10533913,4
+121456273,10533913,5
+zhz2568027860,10533913,5
+4823337,10533913,5
+nicole7,10533913,5
+135302519,10533913,4
+57583046,10533913,4
+68406681,10533913,5
+77911523,10533913,4
+84472857,10533913,5
+2642171,10533913,4
+Kotori,10533913,5
+92512012,10533913,5
+3923634,10533913,5
+52765670,10533913,5
+wokson,10533913,4
+1442801,10533913,5
+sweetcamel,10533913,4
+lvshuyip,10533913,4
+joicyvane,10533913,4
+1495717,10533913,5
+122288316,10533913,5
+46004647,10533913,5
+amberhl,10533913,5
+NameDale,10533913,5
+1795919,10533913,4
+hellomybluelife,10533913,5
+nuannuangyy,10533913,5
+2584840,10533913,5
+94131092,10533913,5
+51640558,10533913,3
+68787653,10533913,5
+lixiaofu,10533913,4
+cimuhu,10533913,-1
+122368219,10533913,5
+bloodsasha,10533913,4
+sumisumi,10533913,3
+1542578,10533913,3
+Princewhiteme,10533913,4
+Princewhiteme,10533913,4
+agoraphobia,10533913,3
+38676304,10533913,5
+1643495,10533913,5
+89924744,10533913,4
+54500977,10533913,4
+63027817,10533913,3
+songdajia,10533913,4
+xiluodedouban,10533913,5
+124847125,10533913,5
+2107434,10533913,4
+51126064,10533913,5
+2807823,10533913,5
+shijinxue,10533913,5
+76783989,10533913,4
+28739019,10533913,4
+127863845,10533913,5
+135749481,10533913,5
+ChinTran,10533913,5
+44888841,10533913,3
+49624513,10533913,4
+duzhuo,10533913,4
+3801481,10533913,5
+shanbaby,10533913,4
+3807127,10533913,3
+muxichahua,10533913,5
+cherryhj,10533913,4
+lizzy2005,10533913,4
+fccindy,10533913,3
+48494874,10533913,5
+76416655,10533913,5
+40298274,10533913,5
+72933315,10533913,3
+blackeleven,10533913,5
+1831746,10533913,4
+120046148,10533913,4
+101604435,10533913,5
+119292344,10533913,5
+53511350,10533913,5
+3263678,10533913,5
+piggy007,10533913,4
+supersaul,10533913,5
+yangyin827,10533913,5
+michaelhuan,10533913,5
+5440395,10533913,5
+49722560,10533913,5
+47709338,10533913,4
+rutanilla07,10533913,-1
+92569558,10533913,4
+80744107,10533913,3
+46856859,10533913,5
+4431102,10533913,4
+yy91228,10533913,4
+47319867,10533913,5
+3282045,10533913,5
+meathill,10533913,5
+Ana1221,10533913,5
+129453211,10533913,4
+134494053,10533913,5
+59138637,10533913,5
+49789173,10533913,5
+36616417,10533913,5
+47888739,10533913,-1
+Song1183,10533913,5
+pipi1226,10533913,3
+83210440,10533913,4
+renxiaoheng,10533913,4
+67720268,10533913,4
+50687070,10533913,5
+JL-Nobody,10533913,5
+74541142,10533913,4
+33959216,10533913,5
+zhouloveyun,10533913,5
+46091388,10533913,5
+stayreal8,10533913,3
+66741252,10533913,4
+steinyxu,10533913,5
+liususu,10533913,3
+39382938,10533913,4
+4174442,10533913,5
+lily_fa,10533913,5
+83040147,10533913,4
+Isabella0712,10533913,5
+chenxi0355,10533913,3
+78147325,10533913,5
+92559363,10533913,-1
+75823417,10533913,4
+68362683,10533913,4
+15044978,10533913,3
+crystalnura,10533913,5
+121565821,10533913,5
+104230982,10533913,4
+48999675,10533913,5
+38981287,10533913,4
+67346668,10533913,5
+2894547,10533913,5
+65354608,10533913,4
+120454531,10533913,5
+suzyfine,10533913,5
+41919176,10533913,4
+8244005,10533913,3
+kinokoneko,10533913,5
+doublecheeseJ,10533913,4
+stina_may,10533913,3
+102840288,10533913,5
+81729720,10533913,4
+43848298,10533913,5
+102099688,10533913,1
+venus3255,10533913,5
+X-forest,10533913,5
+127329113,10533913,4
+31792415,10533913,5
+102776994,10533913,5
+qieer_422,10533913,4
+tshane,10533913,3
+1081613,10533913,5
+60815590,10533913,3
+3462078,10533913,5
+fushushuailuoli,10533913,4
+135716700,10533913,5
+108753844,10533913,5
+99736785,10533913,5
+imbpw,10533913,5
+78619480,10533913,4
+127687337,10533913,5
+132959097,10533913,4
+doney88,10533913,4
+gluttony6,10533913,4
+shmilyyan,10533913,4
+chaoszt,10533913,2
+Jerryxuch,10533913,4
+135270384,10533913,5
+zhuzi_33,10533913,5
+36621771,10533913,3
+75968056,10533913,5
+64039684,10533913,5
+65396178,10533913,4
+la_ficine,10533913,5
+4037947,10533913,5
+51602037,10533913,4
+88032160,10533913,5
+bettermeloveme,10533913,4
+54540243,10533913,4
+yamina_won,10533913,5
+48395509,10533913,3
+128373341,10533913,3
+61723144,10533913,5
+44284522,10533913,4
+trista-lam,10533913,5
+1380204,10533913,4
+135751000,10533913,5
+OnlyCoffee,10533913,4
+YAMAHA_GO,10533913,3
+121109357,10533913,5
+53654019,10533913,4
+nanazou,10533913,5
+54887591,10533913,4
+46253376,10533913,4
+Mrs.wrong,10533913,5
+53927357,10533913,5
+Discontrol,10533913,5
+62351550,10533913,5
+88256583,10533913,3
+59886797,10533913,5
+44604392,10533913,5
+giantchen,10533913,2
+45069650,10533913,3
+NKscar,10533913,4
+102364931,10533913,5
+73039194,10533913,5
+8572795,10533913,5
+Jack_Yan,10533913,4
+OrangeWeiei,10533913,4
+xiangkayi,10533913,4
+132357464,10533913,4
+45629639,10533913,3
+136100094,10533913,5
+136091730,10533913,4
+leatles,10533913,5
+129289203,10533913,4
+qiusechun,10533913,4
+72677574,10533913,5
+124093629,10533913,4
+130024032,10533913,5
+clynch,10533913,5
+nightdreamer,10533913,5
+Cao-Wei,10533913,4
+59745943,10533913,5
+2833363,10533913,5
+82266049,10533913,5
+GSP2006,10533913,5
+34846798,10533913,5
+78906900,10533913,5
+52108070,10533913,4
+antivirus,10533913,4
+48182921,10533913,5
+84475486,10533913,4
+shaxiong,10533913,3
+90952983,10533913,5
+x_c,10533913,3
+huayuan619,10533913,5
+103545145,10533913,5
+67007418,10533913,5
+2660582,10533913,5
+129967050,10533913,3
+65517569,10533913,5
+whatareyoufor,10533913,5
+hetaodeyanjing,10533913,5
+lotusworld,10533913,5
+50709951,10533913,4
+63443426,10533913,5
+quinyu,10533913,5
+tere-yao,10533913,5
+81420973,10533913,4
+60054131,10533913,5
+daisy1024,10533913,4
+67561366,10533913,4
+l97183025,10533913,3
+Minimalis,10533913,4
+1403770,10533913,3
+46654545,10533913,4
+hailstorm,10533913,5
+49545340,10533913,5
+kiki924,10533913,4
+54217393,10533913,5
+62288453,10533913,4
+61095376,10533913,5
+91689529,10533913,4
+1109113,10533913,4
+59760298,10533913,4
+3677550,10533913,5
+119296664,10533913,4
+134965660,10533913,5
+52762831,10533913,5
+kasimsophie,10533913,5
+53035035,10533913,2
+1343126,10533913,5
+47566185,10533913,4
+Cycneverstop,10533913,5
+sunnyleaves,10533913,5
+2567170,10533913,5
+yitingyanyu,10533913,5
+helenzhao0512,10533913,4
+laputaw,10533913,4
+56596051,10533913,5
+blossomyy,10533913,5
+63170647,10533913,4
+1956415,10533913,5
+50880780,10533913,4
+qiushengtang,10533913,3
+55987528,10533913,5
+40103412,10533913,5
+summer94,10533913,4
+61490354,10533913,5
+63236633,10533913,4
+49467804,10533913,5
+69790989,10533913,4
+70599201,10533913,5
+74890087,10533913,4
+44203780,10533913,5
+2284784,10533913,5
+3228456,10533913,4
+51749125,10533913,4
+winnizhu,10533913,5
+135981815,10533913,3
+life2x,10533913,4
+miucather,10533913,5
+121683298,10533913,4
+84530034,10533913,3
+2317327,10533913,4
+49199204,10533913,5
+fan_tuan,10533913,5
+3394528,10533913,2
+sunnyhk,10533913,4
+zhouruopei,10533913,5
+64884887,10533913,5
+101629689,10533913,4
+74720152,10533913,5
+64351070,10533913,5
+memorystream,10533913,5
+81061045,10533913,1
+64501772,10533913,5
+66521777,10533913,5
+60980785,10533913,3
+37751161,10533913,5
+fumihiko1985,10533913,4
+2946471,10533913,5
+kimi-seven,10533913,5
+100423615,10533913,3
+99812463,10533913,5
+61038892,10533913,5
+jimmy78801,10533913,5
+49614386,10533913,4
+balelovesqian,10533913,4
+77824438,10533913,5
+seren,10533913,4
+53956955,10533913,5
+pandapie,10533913,5
+xy1232123,10533913,5
+53023463,10533913,3
+73737341,10533913,3
+evangeline.h,10533913,4
+64114079,10533913,5
+36964868,10533913,3
+4125258,10533913,4
+liusicong,10533913,5
+72365862,10533913,5
+47167494,10533913,4
+1743223,10533913,4
+oranicge,10533913,5
+65830621,10533913,5
+47525843,10533913,4
+shishiamz,10533913,5
+89320570,10533913,5
+dingdangneko,10533913,5
+46709909,10533913,5
+47893657,10533913,5
+psychecrow,10533913,5
+loveajiang,10533913,5
+72023596,10533913,5
+72023596,10533913,5
+66799655,10533913,3
+51238374,10533913,4
+creepNIBA,10533913,4
+53416381,10533913,5
+47230684,10533913,5
+Hi-summer,10533913,5
+40767713,10533913,-1
+48917306,10533913,4
+47097255,10533913,4
+36638272,10533913,5
+81424278,10533913,5
+mary3049,10533913,4
+38090828,10533913,5
+24219882,10533913,4
+xiejiaxin1209,10533913,5
+4114969,10533913,4
+103028393,10533913,-1
+136087116,10533913,4
+millylyu,10533913,3
+62498909,10533913,4
+yerryr,10533913,4
+132954979,10533913,5
+36109432,10533913,3
+cogitoergosum,10533913,5
+49919460,10533913,5
+62834139,10533913,4
+50094689,10533913,5
+54704732,10533913,3
+88867964,10533913,5
+126772263,10533913,4
+44556273,10533913,5
+74428090,10533913,4
+131147743,10533913,4
+53594562,10533913,3
+135248605,10533913,3
+bewhoiam,10533913,4
+85008792,10533913,3
+2061565,10533913,5
+70586420,10533913,4
+49101414,10533913,4
+49124802,10533913,5
+sai27,10533913,5
+37501692,10533913,5
+1493144,10533913,5
+136037294,10533913,5
+siva,10533913,5
+71981162,10533913,5
+65551028,10533913,3
+123830246,10533913,3
+67240733,10533913,4
+wjferic,10533913,5
+129764969,10533913,4
+75288450,10533913,5
+98524765,10533913,4
+57445769,10533913,5
+50141061,10533913,4
+summerday510,10533913,5
+62491933,10533913,2
+wangchenroc,10533913,4
+39273953,10533913,4
+80922094,10533913,4
+CalvinAzure,10533913,5
+ruyuwong,10533913,5
+51205034,10533913,4
+69242656,10533913,5
+93900680,10533913,5
+58131642,10533913,4
+3305632,10533913,4
+mandy087,10533913,4
+48086861,10533913,3
+132171936,10533913,4
+milara,10533913,5
+110328259,10533913,5
+49298107,10533913,2
+61461484,10533913,4
+fishfeimi,10533913,4
+100303280,10533913,4
+76099210,10533913,5
+joy4,10533913,4
+tosummer,10533913,4
+haidonsun,10533913,5
+48380446,10533913,3
+126219233,10533913,5
+4454692,10533913,3
+57406085,10533913,4
+127064384,10533913,4
+33392120,10533913,5
+papermoon_niky,10533913,4
+53257612,10533913,3
+watercolor823,10533913,4
+rikkuwang,10533913,5
+59591751,10533913,5
+84114738,10533913,4
+siyunz,10533913,3
+63300955,10533913,4
+77212205,10533913,4
+78683544,10533913,5
+49513730,10533913,5
+1082879,10533913,5
+Turkeyears,10533913,4
+50520329,10533913,4
+2201311,10533913,5
+44186565,10533913,4
+josephine1982,10533913,4
+curlooo,10533913,5
+firstcause,10533913,4
+58211668,10533913,1
+49813578,10533913,5
+44030739,10533913,4
+13474998,10533913,5
+zylovenic,10533913,5
+12909191,10533913,5
+weizi07,10533913,5
+liajoy,10533913,5
+modas,10533913,3
+armitt,10533913,5
+lesc,10533913,4
+45340268,10533913,5
+83250285,10533913,4
+56957975,10533913,5
+camcam,10533913,4
+lilypepper,10533913,5
+33323138,10533913,4
+rayll,10533913,5
+arthurwen,10533913,5
+51508482,10533913,5
+79861493,10533913,5
+bulbosa,10533913,5
+63537960,10533913,5
+130592757,10533913,3
+135970045,10533913,4
+58863205,10533913,4
+3529577,10533913,3
+90985737,10533913,5
+65750183,10533913,3
+48353538,10533913,4
+haveyouever,10533913,4
+67385694,10533913,4
+103807559,10533913,5
+103807559,10533913,5
+Xmelie,10533913,-1
+tmp2,10533913,3
+38341224,10533913,4
+MissNight,10533913,4
+55990410,10533913,4
+yelloworange,10533913,5
+76477435,10533913,5
+89559624,10533913,5
+gw0906,10533913,5
+mero_fox,10533913,4
+40779185,10533913,4
+13871057,10533913,5
+119987605,10533913,5
+104252458,10533913,4
+34753066,10533913,5
+xiaohai0521,10533913,5
+79417839,10533913,5
+43777566,10533913,5
+64643929,10533913,4
+62409548,10533913,4
+clby,10533913,3
+133556437,10533913,4
+130617817,10533913,5
+1495292,10533913,5
+wolf_m,10533913,5
+61482064,10533913,4
+46272390,10533913,2
+35224934,10533913,5
+64450294,10533913,4
+laiquziyouIris,10533913,5
+52693663,10533913,4
+jiiiiiaaaa,10533913,5
+discipline,10533913,5
+imjinjin,10533913,3
+68762213,10533913,4
+49029143,10533913,3
+3217439,10533913,3
+huasonlee,10533913,3
+sanhao_love,10533913,5
+sanhao_love,10533913,5
+dreamchris,10533913,4
+134888389,10533913,5
+wfay,10533913,4
+jieyaren,10533913,4
+withshane,10533913,3
+1331333,10533913,4
+2007634,10533913,5
+1463503,10533913,3
+47230693,10533913,4
+85423506,10533913,3
+128142501,10533913,5
+salahdou,10533913,5
+daaaawn,10533913,5
+2191624,10533913,5
+fufufufuxk,10533913,5
+56912705,10533913,5
+1105862,10533913,4
+79089179,10533913,4
+60592207,10533913,5
+84869771,10533913,5
+50632205,10533913,5
+89301190,10533913,3
+61383419,10533913,5
+135448441,10533913,3
+hbshuo,10533913,4
+91917385,10533913,5
+46711552,10533913,5
+119129227,10533913,3
+michelq,10533913,3
+michelq,10533913,3
+qimengmm,10533913,5
+48342025,10533913,4
+zzxuan,10533913,5
+33519322,10533913,5
+73314976,10533913,3
+102006673,10533913,4
+2257312,10533913,5
+2706993,10533913,3
+fafashit,10533913,5
+fafashit,10533913,5
+54910464,10533913,4
+evgeni1955,10533913,5
+17424606,10533913,4
+nizhenhua1981,10533913,4
+45717339,10533913,4
+chuzhengcn,10533913,5
+63306713,10533913,5
+43452126,10533913,3
+changle0605,10533913,5
+voyager1019,10533913,5
+saraystang,10533913,5
+3446661,10533913,4
+47054399,10533913,5
+1283425,10533913,5
+51825084,10533913,2
+zhemi,10533913,4
+136062789,10533913,5
+48898979,10533913,4
+96190802,10533913,3
+62318523,10533913,4
+paodan,10533913,5
+64091286,10533913,4
+littlelambofgod,10533913,4
+58603704,10533913,4
+secretdeer,10533913,5
+52363177,10533913,5
+65367917,10533913,4
+SpanishAnt,10533913,5
+70968887,10533913,-1
+49855743,10533913,4
+39739074,10533913,4
+50409116,10533913,4
+Monster.,10533913,4
+jiyuanwai,10533913,3
+46580490,10533913,5
+67111553,10533913,5
+3179740,10533913,4
+nvxiahxx,10533913,5
+104823204,10533913,4
+1271102,10533913,5
+48764110,10533913,4
+47748422,10533913,5
+67944529,10533913,5
+53726625,10533913,4
+41567119,10533913,1
+53482752,10533913,4
+powerdog,10533913,5
+kuma1020,10533913,5
+Aubreyxx,10533913,-1
+64149040,10533913,5
+wangholic,10533913,4
+44843168,10533913,5
+43818366,10533913,5
+christna,10533913,4
+58376944,10533913,4
+rsdch,10533913,3
+66192057,10533913,5
+52129512,10533913,5
+fanfanfantansy,10533913,4
+longway771,10533913,3
+1553175,10533913,4
+67626687,10533913,5
+soberldly,10533913,4
+71863067,10533913,4
+newslizi,10533913,3
+134500343,10533913,5
+27698600,10533913,4
+amazinfiona,10533913,5
+62339561,10533913,5
+59356620,10533913,4
+duanxiu,10533913,2
+79080942,10533913,5
+minishine,10533913,5
+artmisia,10533913,4
+80430212,10533913,5
+amibubai,10533913,3
+alexs,10533913,5
+132539627,10533913,3
+102675224,10533913,5
+nanarun,10533913,4
+yeahgreen,10533913,5
+Jiang_jss,10533913,4
+62983821,10533913,5
+65421333,10533913,1
+anpanteng,10533913,5
+marmotgo,10533913,4
+40559858,10533913,4
+mxl1988,10533913,4
+Sissi-Goor,10533913,4
+jaward,10533913,5
+67509576,10533913,2
+66639180,10533913,5
+65615098,10533913,5
+lovetowns,10533913,5
+31453107,10533913,4
+6819694,10533913,2
+14765417,10533913,4
+82915328,10533913,4
+theninthmonth,10533913,4
+4111389,10533913,5
+mafeiyxq,10533913,5
+77557122,10533913,4
+61509749,10533913,5
+14355410,10533913,5
+71654816,10533913,5
+53075236,10533913,5
+2512441,10533913,5
+graciesy,10533913,4
+33636281,10533913,4
+9793481,10533913,5
+53140569,10533913,5
+108301651,10533913,5
+mosquitoBoA,10533913,5
+73834908,10533913,5
+CptHaddock,10533913,4
+54252667,10533913,5
+july0007,10533913,5
+kuangjieyu,10533913,5
+16820487,10533913,5
+121340954,10533913,4
+hope3,10533913,5
+oosunshine,10533913,5
+88661415,10533913,3
+2914496,10533913,5
+134173332,10533913,4
+68874282,10533913,5
+122857735,10533913,4
+errorpig,10533913,-1
+120793472,10533913,5
+39708814,10533913,5
+12019710,10533913,5
+raindawn,10533913,5
+59842125,10533913,5
+purple_kenny,10533913,3
+71502424,10533913,4
+71813073,10533913,5
+4283595,10533913,5
+88193100,10533913,5
+14341331,10533913,4
+yinianbuxiangsi,10533913,5
+68778355,10533913,3
+62882653,10533913,4
+1948010,10533913,4
+43628615,10533913,5
+79499233,10533913,5
+79841047,10533913,5
+57001880,10533913,3
+85451111,10533913,5
+113287715,10533913,5
+61805831,10533913,5
+46381775,10533913,5
+chunfenghuayu23,10533913,4
+graceworm,10533913,5
+fullmoonzhou,10533913,5
+52246931,10533913,4
+cicizhaowei,10533913,3
+50886291,10533913,5
+52573676,10533913,5
+125334017,10533913,3
+2036063,10533913,5
+hisass,10533913,5
+78377948,10533913,3
+50763809,10533913,5
+beiii,10533913,-1
+54521254,10533913,5
+75952866,10533913,5
+65199849,10533913,4
+haimian1077,10533913,4
+leosis,10533913,5
+54869945,10533913,4
+sammi1124,10533913,4
+25885626,10533913,5
+xuanmg,10533913,4
+chen08,10533913,4
+3610351,10533913,4
+72277272,10533913,5
+50629690,10533913,4
+134803863,10533913,5
+115593440,10533913,2
+115593440,10533913,2
+hniyxx,10533913,4
+zhaochenrui123,10533913,4
+1327654,10533913,-1
+masterv,10533913,5
+82520014,10533913,4
+crystalalili,10533913,5
+66557828,10533913,4
+d8day,10533913,4
+doremi7719,10533913,5
+2374763,10533913,5
+2280920,10533913,3
+47776036,10533913,5
+57626136,10533913,5
+3573467,10533913,5
+69133798,10533913,4
+2166021,10533913,4
+46943216,10533913,5
+1421222,10533913,5
+everscot,10533913,5
+Lee_Will,10533913,5
+57440805,10533913,5
+xiaomujunjun,10533913,4
+61779592,10533913,4
+nizuoshena,10533913,4
+1274832,10533913,4
+KarenC12,10533913,5
+49813166,10533913,4
+verastar,10533913,5
+70518359,10533913,3
+123361030,10533913,5
+benmak,10533913,4
+88726475,10533913,5
+michelle890513,10533913,5
+81147489,10533913,4
+51126355,10533913,4
+17006018,10533913,5
+freeandwind,10533913,5
+36751744,10533913,4
+50690264,10533913,5
+57517262,10533913,5
+4480754,10533913,3
+46348139,10533913,5
+56898241,10533913,3
+51016662,10533913,5
+shanyuping,10533913,5
+44005787,10533913,5
+63223538,10533913,5
+vince717,10533913,5
+maimaibupang,10533913,5
+97786845,10533913,4
+49440731,10533913,5
+130345686,10533913,4
+tanlin8711,10533913,4
+124697172,10533913,4
+129379900,10533913,5
+61702958,10533913,4
+inameless,10533913,5
+2305028,10533913,4
+juyi214,10533913,5
+51125398,10533913,3
+1079289,10533913,4
+38609942,10533913,4
+lostgraduate,10533913,5
+4617488,10533913,4
+Sherryprince,10533913,3
+56988998,10533913,4
+vastyin,10533913,5
+vinciwang,10533913,4
+55869736,10533913,4
+67370965,10533913,5
+liuningba,10533913,4
+65211347,10533913,5
+zouzouwanwan,10533913,4
+44997032,10533913,5
+56198518,10533913,4
+133270096,10533913,5
+81206390,10533913,5
+1669108,10533913,4
+69232328,10533913,3
+47988873,10533913,4
+80602343,10533913,3
+deepwhite8,10533913,5
+Georgehong,10533913,5
+83361236,10533913,4
+131021845,10533913,5
+2626566,10533913,5
+3397745,10533913,4
+yubingqiangwei,10533913,4
+71140874,10533913,4
+28709669,10533913,4
+62192972,10533913,-1
+82716366,10533913,5
+42678241,10533913,5
+jessck,10533913,3
+YUYII,10533913,4
+66754527,10533913,4
+53931864,10533913,5
+benben76,10533913,3
+50186647,10533913,5
+50186647,10533913,5
+91948912,10533913,3
+122193967,10533913,5
+et-evelyn,10533913,4
+88325772,10533913,5
+55606165,10533913,5
+dannarice,10533913,5
+54159008,10533913,5
+52591024,10533913,5
+luwuqian,10533913,3
+48311498,10533913,4
+shelley8334,10533913,3
+llh9277,10533913,3
+52333838,10533913,5
+bettybaby312,10533913,5
+1305846,10533913,5
+nn35,10533913,-1
+63647766,10533913,5
+74115491,10533913,4
+73478164,10533913,5
+47433754,10533913,4
+47391200,10533913,4
+3246057,10533913,5
+superzoukang,10533913,4
+Tackie,10533913,4
+flower_thalia,10533913,4
+60862702,10533913,3
+40258007,10533913,5
+nancyci,10533913,5
+53441866,10533913,-1
+sonyaya,10533913,4
+50911453,10533913,4
+129283951,10533913,4
+1077086,10533913,3
+checcazou,10533913,4
+119569575,10533913,5
+baby861708,10533913,5
+loffe0429,10533913,5
+76777443,10533913,3
+58959346,10533913,4
+5936649,10533913,5
+102824142,10533913,5
+Freckles_QQ,10533913,-1
+36641683,10533913,5
+jijillwang,10533913,4
+36999894,10533913,4
+52356528,10533913,5
+sunviro,10533913,5
+72100909,10533913,4
+115553730,10533913,5
+34885746,10533913,4
+3383129,10533913,5
+julia_duan,10533913,5
+vnoonv,10533913,-1
+54119413,10533913,4
+88408019,10533913,3
+cherbing,10533913,4
+60994756,10533913,5
+cissy198703,10533913,5
+48072909,10533913,5
+120518242,10533913,4
+edgeyeung,10533913,3
+lovevipbigbang,10533913,5
+114257816,10533913,5
+52620435,10533913,5
+lijingmei,10533913,5
+luoer,10533913,4
+december.L,10533913,1
+38428830,10533913,4
+62871612,10533913,4
+69569015,10533913,5
+FionaDai,10533913,5
+30569827,10533913,5
+84799106,10533913,5
+136025185,10533913,5
+skull54,10533913,5
+77323492,10533913,-1
+whisperstone,10533913,5
+48905575,10533913,4
+56383208,10533913,5
+yiquanennyo,10533913,4
+53906378,10533913,5
+75485328,10533913,5
+50702384,10533913,5
+46395501,10533913,5
+82881716,10533913,5
+58439498,10533913,5
+78849630,10533913,5
+48950860,10533913,5
+41088876,10533913,5
+sophiejiang,10533913,5
+39646892,10533913,5
+54641947,10533913,4
+82890862,10533913,3
+10918942,10533913,4
+callmeshallow,10533913,4
+122748747,10533913,5
+81407852,10533913,4
+57141156,10533913,5
+49133007,10533913,3
+50680474,10533913,-1
+45299688,10533913,5
+46022160,10533913,4
+zodiacstyx,10533913,4
+dayu-nan,10533913,5
+58369888,10533913,4
+61007953,10533913,-1
+Creep_,10533913,5
+101653337,10533913,5
+nilreb,10533913,3
+17586082,10533913,5
+DangerRose,10533913,4
+sleepinyoursong,10533913,5
+Immafrady,10533913,5
+89880672,10533913,5
+allenzn125,10533913,5
+3884472,10533913,3
+muzidingyi,10533913,3
+1773168,10533913,5
+67246770,10533913,4
+20213088,10533913,5
+50861104,10533913,4
+37264633,10533913,4
+huanzai,10533913,3
+4711240,10533913,5
+72491929,10533913,5
+102674631,10533913,5
+just2006,10533913,5
+creamxxy,10533913,4
+44286887,10533913,5
+63211767,10533913,4
+loveyu0725,10533913,5
+27710094,10533913,5
+52476178,10533913,5
+4158664,10533913,5
+2171561,10533913,4
+moni_sun,10533913,5
+InTheShadowOfLo,10533913,5
+63572086,10533913,5
+127489630,10533913,5
+2620278,10533913,5
+seventhworkshop,10533913,4
+50139701,10533913,5
+64981585,10533913,3
+69822507,10533913,4
+dssunshineer,10533913,5
+91365822,10533913,4
+weiweianna,10533913,5
+48873217,10533913,4
+Formosaxxx,10533913,4
+37279664,10533913,5
+4481063,10533913,5
+absdee,10533913,5
+2110961,10533913,4
+90433807,10533913,5
+Rouwell,10533913,4
+133401752,10533913,5
+AthenaAtlas,10533913,2
+66302894,10533913,1
+erjan03,10533913,5
+erjan03,10533913,5
+65046838,10533913,4
+56535276,10533913,4
+mengxixi,10533913,3
+Ekhome,10533913,4
+53862196,10533913,5
+Kya,10533913,5
+48650911,10533913,3
+linger37,10533913,4
+penjing1026,10533913,5
+un-do,10533913,3
+97351313,10533913,5
+babywineer,10533913,5
+3288195,10533913,5
+xkiiller,10533913,4
+4075064,10533913,4
+48826254,10533913,5
+yintianxiaozhu,10533913,-1
+52958278,10533913,3
+4204928,10533913,5
+3344118,10533913,5
+yiwangtianshi,10533913,5
+Windbroken,10533913,5
+68217500,10533913,5
+74944832,10533913,5
+jinyuanhan,10533913,4
+4340874,10533913,5
+51491547,10533913,4
+47357292,10533913,5
+122942569,10533913,5
+51928627,10533913,5
+2847777,10533913,5
+36939317,10533913,5
+51426219,10533913,4
+4386130,10533913,4
+SealedShield,10533913,4
+128255313,10533913,5
+nopharos,10533913,3
+adonisle,10533913,4
+76153860,10533913,3
+hp_can77,10533913,5
+65766829,10533913,3
+55335484,10533913,5
+jiushitime,10533913,5
+SheenaM,10533913,5
+48783970,10533913,5
+59699452,10533913,5
+63252169,10533913,4
+67176964,10533913,3
+lovehidemo,10533913,4
+59524621,10533913,4
+bravefish,10533913,4
+121457828,10533913,4
+57855892,10533913,4
+sogenannte,10533913,3
+64004989,10533913,5
+46010081,10533913,5
+63627308,10533913,3
+wgj4,10533913,3
+wtd1994,10533913,5
+monsterkill,10533913,5
+sjzsdswzx,10533913,5
+65850343,10533913,5
+talentygw,10533913,4
+11769509,10533913,3
+134476986,10533913,5
+80609092,10533913,5
+47269712,10533913,5
+92152108,10533913,5
+135030304,10533913,5
+77334326,10533913,5
+2022222,10533913,5
+85007814,10533913,5
+seczeng,10533913,5
+53801856,10533913,5
+84655152,10533913,5
+50008496,10533913,4
+idiotestidiot,10533913,5
+might_morning,10533913,4
+hellovikki,10533913,5
+18746695,10533913,3
+83217907,10533913,4
+ppxoxqq,10533913,5
+53392958,10533913,4
+44072171,10533913,4
+68445549,10533913,5
+49123021,10533913,5
+asnito,10533913,5
+2372515,10533913,4
+1391137,10533913,4
+91613205,10533913,5
+mulittlerice,10533913,-1
+vincente,10533913,4
+gracepeng,10533913,5
+tenspace,10533913,5
+1825867,10533913,5
+2638253,10533913,4
+fanfouxiong,10533913,4
+54884820,10533913,5
+2076700,10533913,5
+devilpuff,10533913,4
+2020855,10533913,5
+67680383,10533913,4
+48542605,10533913,5
+62687217,10533913,5
+aurden,10533913,5
+iceleehom,10533913,4
+58038251,10533913,5
+tingky,10533913,4
+renmeng,10533913,4
+axio,10533913,4
+84835775,10533913,4
+83459700,10533913,3
+aircentee,10533913,4
+67436507,10533913,3
+3519752,10533913,4
+76420579,10533913,4
+pp3288,10533913,5
+wanhoo,10533913,4
+narcisusss,10533913,4
+supersarah,10533913,4
+djinn77,10533913,4
+sophie2009,10533913,4
+Rafe0323,10533913,5
+89567046,10533913,5
+2343743,10533913,4
+68647916,10533913,5
+47630086,10533913,4
+senseangeldb,10533913,4
+4007829,10533913,3
+131019210,10533913,4
+toyshen,10533913,4
+zp913,10533913,5
+cindyqiu90,10533913,4
+5845118,10533913,4
+cokacoka,10533913,4
+cgy0330,10533913,5
+86139437,10533913,5
+63376089,10533913,4
+64854561,10533913,5
+76298418,10533913,5
+77809977,10533913,5
+meeker24,10533913,4
+zhaoyusan,10533913,5
+103187008,10533913,5
+44217355,10533913,5
+momohei,10533913,4
+rockrujing,10533913,5
+36067055,10533913,4
+cissy_cissy,10533913,5
+33900366,10533913,4
+51477454,10533913,3
+130044129,10533913,4
+Ilovemypapa,10533913,3
+132618483,10533913,5
+51006273,10533913,4
+4509908,10533913,5
+72602686,10533913,5
+sleepythom,10533913,5
+z773863656,10533913,3
+34986236,10533913,5
+1757021,10533913,4
+3838722,10533913,5
+44244784,10533913,5
+60016523,10533913,3
+Prague920510,10533913,5
+128739482,10533913,4
+55592172,10533913,5
+46779063,10533913,5
+jaens,10533913,4
+44249875,10533913,4
+68058633,10533913,5
+hedyss,10533913,5
+54116882,10533913,4
+zsq0028347,10533913,4
+2229038,10533913,4
+51500342,10533913,4
+2429836,10533913,5
+3469841,10533913,4
+TaTaxxxx,10533913,5
+onionzoooo,10533913,5
+59013874,10533913,4
+dark_glede,10533913,5
+42761507,10533913,3
+76299602,10533913,5
+4545349,10533913,4
+134894278,10533913,5
+57037379,10533913,5
+59125453,10533913,4
+spiritmax,10533913,3
+58556474,10533913,5
+melody0512,10533913,5
+4740160,10533913,5
+millie,10533913,5
+fangbin0516,10533913,5
+113593585,10533913,4
+128099098,10533913,4
+leftpomelo,10533913,5
+TimePieces,10533913,4
+46843344,10533913,4
+55869856,10533913,4
+63150711,10533913,5
+lomoyang,10533913,5
+zyaiyoko,10533913,4
+bodysun,10533913,3
+kingszar,10533913,5
+55868951,10533913,2
+62714490,10533913,5
+89525142,10533913,5
+61184354,10533913,5
+63547117,10533913,5
+50309175,10533913,5
+mongrue,10533913,5
+doll88,10533913,4
+PsychoMissSo,10533913,5
+blackpanther,10533913,5
+62562678,10533913,2
+42975055,10533913,5
+66177306,10533913,5
+landelanle,10533913,5
+aileen880401,10533913,5
+cqyyAyy,10533913,5
+68855269,10533913,5
+54983344,10533913,5
+kwokchloe,10533913,4
+44426331,10533913,5
+individualj,10533913,5
+raintree00,10533913,4
+cyan-syy,10533913,-1
+FrozenToilet,10533913,-1
+122526882,10533913,4
+44316758,10533913,5
+skyisquiet,10533913,4
+62191711,10533913,3
+14265657,10533913,5
+1864146,10533913,4
+18555862,10533913,5
+Sherryego,10533913,5
+63069201,10533913,5
+Q__,10533913,5
+89587704,10533913,4
+131209560,10533913,5
+65616591,10533913,3
+70862123,10533913,5
+possion007,10533913,5
+JosephineY,10533913,5
+119883443,10533913,5
+cxl951404897,10533913,3
+foreverjc,10533913,4
+61727790,10533913,4
+zoeisadoll,10533913,4
+65086608,10533913,4
+xiatian722,10533913,4
+121943500,10533913,5
+fin07,10533913,5
+sui2,10533913,4
+43874632,10533913,4
+57545593,10533913,4
+duanziyu,10533913,2
+73016853,10533913,4
+2374847,10533913,4
+gavinturkey,10533913,5
+timbbm,10533913,4
+65045632,10533913,4
+64211454,10533913,4
+sherayang,10533913,4
+qijiejieblue,10533913,5
+62895879,10533913,5
+36719105,10533913,5
+40850252,10533913,3
+echosanmao,10533913,3
+serra,10533913,2
+59380890,10533913,5
+49041095,10533913,4
+3257961,10533913,4
+ansontree33,10533913,4
+Monte.L,10533913,5
+liong,10533913,5
+xiaohesophia,10533913,5
+77642030,10533913,5
+YanY,10533913,5
+chufanyan,10533913,4
+52244996,10533913,5
+tyy,10533913,5
+xiaokongji,10533913,5
+78694136,10533913,5
+lovelcl,10533913,3
+77613125,10533913,4
+Believes7,10533913,4
+mycio,10533913,3
+83209029,10533913,4
+caopier,10533913,5
+88114103,10533913,3
+samixuan.,10533913,5
+gnihton,10533913,5
+80370344,10533913,5
+52395760,10533913,4
+spig,10533913,5
+71337437,10533913,5
+xk13,10533913,5
+74392239,10533913,4
+40241549,10533913,5
+79352949,10533913,4
+sphinx16,10533913,5
+65970423,10533913,3
+84056178,10533913,3
+chulditector,10533913,5
+71625816,10533913,5
+81174599,10533913,4
+48514176,10533913,5
+3943144,10533913,5
+seaskyLK,10533913,3
+Rolls-Royce,10533913,5
+25504280,10533913,5
+51576505,10533913,5
+SmilingJune,10533913,3
+fleapet,10533913,5
+2462947,10533913,2
+64303470,10533913,4
+guoooo,10533913,4
+91559501,10533913,4
+66165217,10533913,4
+HanaANDcat,10533913,4
+noheeyeon,10533913,-1
+124389328,10533913,5
+1897420,10533913,4
+mimehe,10533913,5
+46876577,10533913,5
+48102279,10533913,5
+autumndream,10533913,4
+47633821,10533913,2
+82038597,10533913,4
+xuyimeng,10533913,4
+Sking_lq,10533913,5
+s1ngleMan,10533913,5
+3457596,10533913,5
+3051599,10533913,5
+131124236,10533913,1
+98165549,10533913,4
+47121634,10533913,5
+126937145,10533913,4
+62503467,10533913,4
+qino,10533913,4
+62709413,10533913,4
+16223471,10533913,5
+49634368,10533913,5
+remenbercc,10533913,5
+39789924,10533913,3
+chapu,10533913,5
+44589602,10533913,5
+48188874,10533913,5
+TitiCaca,10533913,5
+6615487,10533913,4
+hxiaoyang,10533913,5
+69616241,10533913,5
+62652374,10533913,5
+46735351,10533913,5
+44032446,10533913,3
+43347140,10533913,5
+63520102,10533913,2
+46265261,10533913,5
+BobMing,10533913,2
+79875260,10533913,4
+woruo,10533913,4
+dizen,10533913,5
+55429218,10533913,3
+47747519,10533913,5
+83740879,10533913,3
+dingtan,10533913,4
+reappear,10533913,3
+64777908,10533913,5
+stonehh,10533913,5
+22839446,10533913,5
+58160746,10533913,5
+3520940,10533913,3
+yustone,10533913,4
+81253472,10533913,2
+119013202,10533913,4
+63786695,10533913,5
+120666244,10533913,2
+31507629,10533913,5
+zyj2nd,10533913,5
+Anne1003,10533913,4
+sanzang007,10533913,3
+45255401,10533913,-1
+2777892,10533913,4
+50015970,10533913,4
+102956805,10533913,4
+2809412,10533913,5
+66171138,10533913,5
+pipasway,10533913,4
+52571798,10533913,4
+4238469,10533913,4
+sabrinamac,10533913,5
+forevernan,10533913,5
+63381866,10533913,1
+108212384,10533913,5
+zdy33,10533913,4
+66581901,10533913,2
+66314549,10533913,4
+62579633,10533913,5
+princesss,10533913,5
+shgy,10533913,4
+101896152,10533913,5
+lilypure,10533913,4
+65191313,10533913,4
+121693868,10533913,5
+winterbreak,10533913,5
+1865210,10533913,4
+57984276,10533913,5
+73378499,10533913,5
+apple-dudu,10533913,5
+130115967,10533913,4
+rebry,10533913,5
+gravi,10533913,4
+15188556,10533913,4
+35004043,10533913,5
+70481744,10533913,4
+tanhuiwendy,10533913,5
+49444266,10533913,3
+81660446,10533913,4
+4773109,10533913,3
+54764511,10533913,5
+83883222,10533913,5
+3943602,10533913,5
+1158377,10533913,5
+Miss.Hyacinth,10533913,5
+45394648,10533913,3
+76146142,10533913,4
+50668498,10533913,4
+55350236,10533913,3
+74404471,10533913,5
+111584714,10533913,3
+53126562,10533913,5
+sylvielanlan,10533913,4
+58479235,10533913,3
+tapir_yi,10533913,5
+69265548,10533913,4
+1732445,10533913,5
+2117824,10533913,3
+2117824,10533913,3
+x7-2,10533913,-1
+51503805,10533913,5
+44284036,10533913,3
+54403769,10533913,5
+48130433,10533913,4
+104580788,10533913,4
+qqmomo,10533913,5
+48536169,10533913,5
+emmaxu,10533913,5
+60470640,10533913,4
+3497198,10533913,4
+82570789,10533913,3
+102647493,10533913,5
+proband,10533913,3
+43623325,10533913,4
+78603493,10533913,3
+49466976,10533913,4
+47331203,10533913,5
+ibanyan,10533913,5
+mualifeo0,10533913,5
+2544534,10533913,5
+135970181,10533913,5
+45097114,10533913,4
+54613586,10533913,4
+3921078,10533913,5
+119997789,10533913,5
+chenyaya,10533913,5
+Lorrie,10533913,4
+60071743,10533913,4
+weldon,10533913,4
+69257163,10533913,5
+48185025,10533913,5
+47434041,10533913,3
+83429427,10533913,4
+44546728,10533913,5
+Robotme,10533913,4
+2166867,10533913,4
+46656559,10533913,4
+krator,10533913,5
+65710892,10533913,5
+Lareinelee,10533913,5
+121334018,10533913,5
+65001720,10533913,5
+50414826,10533913,4
+104706942,10533913,5
+121881237,10533913,4
+ZeryForL,10533913,4
+74374705,10533913,5
+tiffanyangel,10533913,5
+29374473,10533913,4
+79588093,10533913,5
+84168657,10533913,5
+mrmary_43,10533913,3
+3332733,10533913,5
+wednesday.coffe,10533913,4
+jsjtsecret,10533913,4
+74744187,10533913,4
+kimeshichan,10533913,-1
+shaochaowen,10533913,5
+xueyugaoyuan,10533913,5
+44291286,10533913,4
+j823,10533913,-1
+52668487,10533913,3
+68132922,10533913,5
+bihu,10533913,5
+69165207,10533913,4
+56191812,10533913,5
+naizhengtan,10533913,5
+57002877,10533913,5
+demi1949,10533913,4
+childsf,10533913,4
+miyamiyawei,10533913,5
+119061026,10533913,3
+3536775,10533913,5
+45673380,10533913,4
+98730295,10533913,4
+Lisa.L,10533913,3
+38700017,10533913,5
+90618963,10533913,2
+2836651,10533913,3
+66424224,10533913,5
+EndAndEnd,10533913,5
+131361061,10533913,3
+49478990,10533913,5
+44361784,10533913,4
+zhuzaixuanyabia,10533913,5
+cocozhao,10533913,4
+53692479,10533913,5
+yinjianfa,10533913,5
+shadow_y,10533913,5
+48794309,10533913,5
+3404943,10533913,5
+77869883,10533913,5
+Lommy,10533913,5
+a131351634,10533913,3
+82018179,10533913,4
+strawer,10533913,3
+119593236,10533913,4
+fengyanjujing,10533913,4
+71624097,10533913,5
+yeluocike,10533913,4
+4311473,10533913,5
+55543301,10533913,5
+1105624,10533913,4
+15485620,10533913,3
+49145944,10533913,5
+25282878,10533913,4
+3918507,10533913,5
+45078275,10533913,5
+101832527,10533913,4
+31305546,10533913,5
+1437339,10533913,5
+45890616,10533913,4
+22154717,10533913,5
+2340389,10533913,5
+gilian,10533913,3
+Lindsay_rabbit,10533913,3
+132220720,10533913,3
+59367965,10533913,4
+1033653,10533913,4
+peiaxi,10533913,4
+Cherry.Pluto,10533913,3
+Gaspard,10533913,4
+quriola,10533913,5
+59071108,10533913,5
+47182866,10533913,4
+52057602,10533913,5
+Ste_corleone,10533913,4
+35961722,10533913,4
+62326407,10533913,5
+54982572,10533913,4
+62368850,10533913,4
+121689080,10533913,5
+63236309,10533913,5
+55538609,10533913,4
+syrahshiraz,10533913,5
+44865600,10533913,5
+50620373,10533913,5
+lovelyekin,10533913,4
+tricky_V,10533913,2
+miyo5,10533913,4
+letu,10533913,3
+42967910,10533913,5
+68231015,10533913,3
+woshixiaoyatou,10533913,3
+67968689,10533913,5
+66214833,10533913,3
+68596231,10533913,4
+53812644,10533913,5
+48717924,10533913,5
+85057811,10533913,5
+76993603,10533913,5
+56617946,10533913,5
+23981651,10533913,5
+RayForce,10533913,5
+laotiee,10533913,3
+1179798,10533913,3
+45536018,10533913,4
+7549744,10533913,5
+71143154,10533913,4
+31205863,10533913,4
+evelynliyunyi,10533913,5
+68914311,10533913,4
+53230906,10533913,4
+75919955,10533913,3
+1079284,10533913,4
+ellie0314,10533913,5
+wodeshudong,10533913,5
+tmj3,10533913,4
+135951795,10533913,-1
+130540529,10533913,4
+3043359,10533913,5
+4309765,10533913,5
+46939628,10533913,5
+114614912,10533913,5
+2215113,10533913,5
+yurenxiaofeng,10533913,3
+83855853,10533913,2
+80933554,10533913,5
+huanm,10533913,5
+4192759,10533913,4
+shhouni,10533913,4
+132626524,10533913,-1
+cherrytiaotiao,10533913,5
+lieerli,10533913,3
+69350997,10533913,3
+2364223,10533913,5
+65063068,10533913,3
+102024870,10533913,4
+125384763,10533913,5
+44386033,10533913,5
+68263919,10533913,5
+45305916,10533913,1
+dearvera,10533913,5
+47863932,10533913,5
+duokuluo,10533913,4
+helloivan,10533913,4
+liu_feng,10533913,5
+51290757,10533913,4
+YoungWind,10533913,5
+chaseLD,10533913,5
+49585616,10533913,3
+134495648,10533913,4
+56053205,10533913,3
+60203877,10533913,4
+104582980,10533913,5
+124033490,10533913,4
+mecey,10533913,5
+126899663,10533913,5
+1068125,10533913,3
+confuzzle,10533913,4
+siggiruru,10533913,5
+chercherlukia,10533913,5
+120957146,10533913,4
+B-B-B-Side,10533913,3
+48950333,10533913,3
+84384668,10533913,4
+85992392,10533913,5
+44608963,10533913,4
+62949401,10533913,4
+1742602,10533913,5
+3632876,10533913,3
+andrewyu,10533913,5
+ido_idoing,10533913,4
+93920997,10533913,5
+suyuruo,10533913,5
+waylybaye,10533913,5
+57111626,10533913,5
+Tracy1230,10533913,3
+jiany,10533913,4
+manxiaoyi,10533913,5
+56033876,10533913,5
+rainlin,10533913,4
+cc3ee,10533913,4
+50657559,10533913,4
+2345634,10533913,5
+4652776,10533913,4
+dxtsonice,10533913,5
+3737377,10533913,5
+Jillian,10533913,-1
+Blue-Gray,10533913,5
+odin_chen,10533913,5
+akin11,10533913,4
+imarilyn,10533913,5
+lyx906,10533913,4
+4214564,10533913,4
+25195048,10533913,5
+13480447,10533913,3
+1110643,10533913,5
+51583738,10533913,5
+61717566,10533913,5
+wws4158,10533913,4
+tianranzijiegou,10533913,4
+77182257,10533913,4
+evelyn_only,10533913,4
+aaaai,10533913,4
+128956153,10533913,5
+63167875,10533913,4
+4702334,10533913,5
+4702334,10533913,5
+moxiaoguo,10533913,4
+103251122,10533913,5
+96764185,10533913,4
+126469352,10533913,4
+14140341,10533913,5
+51514734,10533913,3
+88566153,10533913,4
+66365821,10533913,5
+yrpkkxx,10533913,5
+supersheep,10533913,5
+134171030,10533913,5
+1357759,10533913,5
+madgirl,10533913,4
+48639899,10533913,5
+leoglory,10533913,5
+33747314,10533913,5
+47048376,10533913,4
+2449818,10533913,5
+41089034,10533913,4
+85482709,10533913,5
+sixteen616,10533913,4
+71262182,10533913,5
+coto,10533913,4
+toby0910,10533913,4
+55312326,10533913,4
+1265651,10533913,2
+48398238,10533913,5
+4015914,10533913,5
+59414293,10533913,5
+91746178,10533913,3
+51636160,10533913,5
+53411317,10533913,5
+73074984,10533913,3
+131147318,10533913,3
+55374511,10533913,4
+72963062,10533913,5
+120352953,10533913,5
+18033893,10533913,4
+Not.W.Sad,10533913,3
+4725392,10533913,5
+49585135,10533913,5
+76553742,10533913,5
+88605317,10533913,5
+daomeidi,10533913,4
+53772865,10533913,5
+caramelmacchia,10533913,5
+45143162,10533913,5
+carol1990,10533913,5
+4842930,10533913,4
+petit-poisson,10533913,5
+61183081,10533913,4
+zhenziren,10533913,4
+51432008,10533913,4
+48057080,10533913,3
+chinadoll_xenia,10533913,4
+52269719,10533913,5
+vcherry,10533913,5
+graygem,10533913,4
+41130036,10533913,4
+yzr8979,10533913,4
+hfguren,10533913,3
+52299764,10533913,-1
+KUBRICK2OO1,10533913,5
+xixiT_T0907,10533913,4
+62927562,10533913,5
+73445722,10533913,5
+121304224,10533913,5
+akilee614,10533913,5
+brightwsx,10533913,4
+FinalFantasy,10533913,5
+47454676,10533913,5
+rbhuanxiong,10533913,5
+hannibalzy,10533913,5
+yzzlovezj,10533913,3
+49521977,10533913,5
+dante8977,10533913,4
+bestkfx,10533913,4
+MandyinSunshine,10533913,5
+cocacolacat,10533913,4
+cocacolacat,10533913,4
+arielwdl,10533913,4
+maomiwang809,10533913,4
+luciajoe,10533913,5
+2416498,10533913,-1
+lugeast,10533913,4
+harlanlee,10533913,3
+110712209,10533913,5
+vividance,10533913,4
+94277693,10533913,4
+49285712,10533913,5
+19835187,10533913,4
+52244457,10533913,4
+79963490,10533913,4
+61898774,10533913,5
+55446081,10533913,5
+50600162,10533913,3
+75327882,10533913,5
+13991347,10533913,5
+45183610,10533913,4
+xiaodi27,10533913,4
+pussybear,10533913,5
+Iamdoraemon,10533913,5
+29822921,10533913,4
+35005590,10533913,5
+canitryagain,10533913,5
+49918615,10533913,4
+57679372,10533913,5
+1771263,10533913,4
+acupoftequila,10533913,5
+Sue0815,10533913,5
+70066110,10533913,4
+nealwzn,10533913,4
+AsukaakusA,10533913,3
+67777087,10533913,5
+75487013,10533913,4
+45204341,10533913,5
+59885277,10533913,5
+38920427,10533913,-1
+40100770,10533913,3
+3722910,10533913,5
+48332506,10533913,5
+wilsonliu,10533913,3
+yilanyilan,10533913,4
+67280624,10533913,4
+52396662,10533913,5
+60356224,10533913,4
+54532227,10533913,5
+48788198,10533913,4
+3874583,10533913,3
+54000531,10533913,5
+4753861,10533913,5
+mercyjj,10533913,5
+4650728,10533913,4
+Lanaliu,10533913,-1
+111461811,10533913,5
+52273132,10533913,5
+1821069,10533913,1
+Verocia,10533913,5
+51067589,10533913,4
+79695986,10533913,5
+3812836,10533913,3
+misaer,10533913,5
+129815984,10533913,5
+64739308,10533913,5
+39217507,10533913,4
+qazqaz,10533913,4
+chloelone,10533913,5
+lyriczn,10533913,4
+smilingelaine,10533913,4
+73158261,10533913,5
+klinken,10533913,5
+22525155,10533913,5
+zzzwing,10533913,5
+127245295,10533913,5
+xmausp,10533913,4
+db924519251,10533913,5
+song1227,10533913,3
+130980100,10533913,4
+stewartsun,10533913,5
+Dr.leelee,10533913,4
+shanghai11,10533913,5
+48767459,10533913,5
+rainbowjae,10533913,5
+youranlan,10533913,4
+ruoxudeng,10533913,4
+126209354,10533913,5
+who_jean,10533913,5
+4066750,10533913,5
+63843063,10533913,5
+cuicuisay,10533913,5
+69730287,10533913,4
+4217792,10533913,4
+51031281,10533913,5
+76767700,10533913,4
+47310524,10533913,4
+doubanMichelle,10533913,5
+59752375,10533913,5
+sydsun,10533913,5
+40052924,10533913,5
+2974918,10533913,4
+68708613,10533913,4
+zhanzhan8871,10533913,3
+135868666,10533913,5
+90859526,10533913,4
+79092669,10533913,5
+53036105,10533913,5
+121808699,10533913,4
+fayeforever,10533913,5
+134963788,10533913,4
+jetamit,10533913,3
+38949414,10533913,5
+53620030,10533913,5
+133179065,10533913,5
+41317902,10533913,5
+yiyi9love,10533913,5
+120450417,10533913,4
+61376673,10533913,4
+sukijuri,10533913,3
+SZH19920707,10533913,4
+uwani,10533913,3
+57860593,10533913,4
+kiyono9,10533913,5
+black_gundam,10533913,4
+warm_fan,10533913,4
+41620486,10533913,5
+124554880,10533913,4
+56998996,10533913,4
+65720947,10533913,4
+46035799,10533913,4
+83116719,10533913,5
+xianyunfei,10533913,5
+shboom,10533913,4
+ylqin,10533913,3
+kisscat890505,10533913,5
+41480013,10533913,5
+92175258,10533913,3
+shanl,10533913,4
+134738478,10533913,4
+lmelva,10533913,3
+lmelva,10533913,3
+EBO,10533913,4
+fiorenbati,10533913,5
+InvisibleViper,10533913,5
+53533608,10533913,5
+102630086,10533913,4
+Just-My-Luck.,10533913,4
+42327957,10533913,4
+2381427,10533913,5
+121517314,10533913,5
+131013584,10533913,5
+134586200,10533913,5
+52931536,10533913,5
+4423376,10533913,4
+35827809,10533913,2
+130072814,10533913,4
+suealone,10533913,-1
+37521902,10533913,4
+39915402,10533913,4
+47160783,10533913,4
+47160783,10533913,4
+47564941,10533913,5
+29104235,10533913,5
+Mov1e-Clan,10533913,4
+58129248,10533913,5
+jianguogogo,10533913,5
+gamejie,10533913,4
+67353177,10533913,4
+4382802,10533913,5
+3629483,10533913,3
+allchild,10533913,4
+135207841,10533913,5
+41522528,10533913,4
+yangjiemomo,10533913,5
+Kateya,10533913,5
+63894811,10533913,4
+44327436,10533913,4
+49921497,10533913,5
+128444897,10533913,5
+129106127,10533913,5
+64740791,10533913,5
+starHSE,10533913,5
+115540808,10533913,5
+47869637,10533913,5
+2860675,10533913,5
+119171762,10533913,4
+54033607,10533913,-1
+24888847,10533913,5
+102659140,10533913,5
+73948805,10533913,4
+1701673,10533913,3
+46792617,10533913,5
+50444681,10533913,4
+lovat,10533913,5
+34710237,10533913,4
+tinglan2010,10533913,5
+49199240,10533913,4
+61403829,10533913,4
+50266764,10533913,5
+Ghost1987,10533913,4
+49832249,10533913,4
+41924523,10533913,5
+47679432,10533913,4
+4664693,10533913,4
+doudoumenhenjia,10533913,4
+68175783,10533913,3
+131597292,10533913,5
+xiyibixia,10533913,5
+lanxi9107,10533913,5
+bonnie920311,10533913,3
+58571573,10533913,4
+2929780,10533913,5
+bikibiki,10533913,4
+110974026,10533913,5
+sally_she,10533913,5
+54380713,10533913,5
+journeyboy,10533913,3
+60734053,10533913,5
+61309406,10533913,4
+40311454,10533913,5
+72973893,10533913,4
+3127403,10533913,4
+1609997,10533913,5
+93710126,10533913,5
+movieview,10533913,4
+hooklt,10533913,5
+3573377,10533913,5
+blurrrrr,10533913,5
+57972218,10533913,3
+ichaos,10533913,5
+3590101,10533913,5
+100629086,10533913,5
+44392983,10533913,4
+111198015,10533913,5
+Zenodotus,10533913,5
+63629111,10533913,4
+josephinexe,10533913,-1
+47425487,10533913,5
+laotang,10533913,4
+51796463,10533913,4
+lesong,10533913,5
+upning,10533913,5
+2401351,10533913,-1
+chief1417,10533913,5
+summeric,10533913,5
+xiaoerfuxie,10533913,5
+4031814,10533913,5
+73159539,10533913,3
+Neoeyes,10533913,5
+50001721,10533913,4
+xml1112,10533913,5
+hellnana,10533913,5
+102727851,10533913,4
+Bai-Bbai,10533913,5
+62613227,10533913,5
+tako88,10533913,3
+zaohe,10533913,4
+cupandrabbit,10533913,5
+2376300,10533913,4
+98415041,10533913,5
+dodo6060,10533913,4
+73619940,10533913,5
+1623664,10533913,3
+linfang0086,10533913,4
+elinoryi,10533913,5
+51609833,10533913,4
+65885307,10533913,5
+130353620,10533913,4
+shenbaijun,10533913,5
+youyu1229,10533913,4
+67297999,10533913,3
+deany,10533913,3
+135211181,10533913,3
+62632051,10533913,4
+55810244,10533913,4
+mixloli,10533913,5
+lastminute03,10533913,5
+cranky5555,10533913,5
+90787314,10533913,5
+qingfengpushang,10533913,5
+qingfengpushang,10533913,5
+3687958,10533913,4
+colorwind,10533913,4
+38975117,10533913,4
+81149989,10533913,4
+4574850,10533913,5
+55970012,10533913,3
+30710603,10533913,4
+3008682,10533913,5
+2308650,10533913,5
+3824548,10533913,3
+keh1124,10533913,3
+51862225,10533913,5
+2569358,10533913,3
+1708512,10533913,5
+127065515,10533913,4
+28967859,10533913,5
+wendyfield,10533913,4
+displacement12,10533913,5
+58057340,10533913,5
+lish5621,10533913,4
+134171382,10533913,2
+132425949,10533913,5
+guangxia413,10533913,4
+alexguo,10533913,5
+41725416,10533913,4
+zzzzzmc,10533913,5
+miss23,10533913,5
+4242728,10533913,4
+44724062,10533913,5
+50077498,10533913,5
+lincheng_,10533913,4
+3092731,10533913,3
+46540591,10533913,5
+dearerxia,10533913,4
+41615125,10533913,5
+ludengludeng6,10533913,-1
+60233136,10533913,4
+1793748,10533913,5
+1211087,10533913,5
+92522884,10533913,5
+64497662,10533913,4
+57583180,10533913,5
+ovivio,10533913,5
+48113232,10533913,4
+44866153,10533913,5
+131427089,10533913,4
+63877279,10533913,3
+xibanyayidong,10533913,4
+4500361,10533913,5
+wb_mike10,10533913,5
+51144730,10533913,4
+joyzhuang,10533913,-1
+25685225,10533913,5
+76485432,10533913,4
+36412946,10533913,4
+klose_y,10533913,3
+52484586,10533913,5
+budong2010,10533913,4
+36545488,10533913,5
+3811853,10533913,5
+47309621,10533913,5
+yuuto,10533913,4
+71092051,10533913,5
+51436464,10533913,5
+53256209,10533913,4
+1068182,10533913,-1
+maidangdang,10533913,5
+75231611,10533913,4
+48009809,10533913,5
+skyearthone,10533913,5
+ldmay2010,10533913,4
+70809185,10533913,5
+45133346,10533913,5
+1792502,10533913,5
+Momo-at1615,10533913,5
+63358788,10533913,4
+3571623,10533913,4
+53691373,10533913,4
+107140803,10533913,5
+122352972,10533913,4
+lanl,10533913,4
+47458734,10533913,5
+3542501,10533913,4
+3178646,10533913,5
+LunaticPandora,10533913,4
+55474748,10533913,4
+131860652,10533913,4
+zlpEcho,10533913,4
+dandan0451,10533913,5
+4269560,10533913,5
+54074624,10533913,3
+65174941,10533913,3
+snowyhowe,10533913,5
+2435646,10533913,-1
+75608204,10533913,5
+shsf-sharon,10533913,4
+45419889,10533913,4
+50199295,10533913,5
+cirice,10533913,5
+evilecho,10533913,3
+50154536,10533913,5
+miong,10533913,5
+60089109,10533913,5
+38633281,10533913,5
+suliu,10533913,5
+momojasper,10533913,5
+31778691,10533913,4
+50639499,10533913,4
+109365835,10533913,3
+bayueliusu,10533913,5
+33511835,10533913,5
+58466235,10533913,5
+minami2,10533913,-1
+yidoudou,10533913,4
+78941157,10533913,2
+yyy1240,10533913,5
+63255619,10533913,4
+kidify,10533913,5
+Nicky007,10533913,4
+100503233,10533913,5
+64010178,10533913,5
+throughtherock,10533913,4
+129964938,10533913,4
+54586836,10533913,5
+45252963,10533913,5
+51792270,10533913,3
+66689341,10533913,4
+3848544,10533913,5
+1510862,10533913,5
+116416248,10533913,5
+38761258,10533913,5
+youngoceano,10533913,4
+55924944,10533913,4
+37280239,10533913,5
+2144442,10533913,5
+2752550,10533913,5
+4313303,10533913,4
+81416350,10533913,5
+50260924,10533913,5
+space_junk,10533913,4
+82760754,10533913,3
+52318521,10533913,4
+56070301,10533913,5
+87495078,10533913,5
+One_apple,10533913,4
+52838594,10533913,4
+tuviel,10533913,3
+34070573,10533913,5
+yummy1986,10533913,5
+62244065,10533913,5
+michelleliu31,10533913,5
+31004958,10533913,5
+dogsaner,10533913,5
+mayee1121,10533913,5
+130692853,10533913,5
+121570619,10533913,3
+seeuyuki,10533913,4
+JustStayReal,10533913,5
+saiostar,10533913,5
+48491570,10533913,4
+60536729,10533913,5
+sunflower1988,10533913,4
+119404591,10533913,5
+2220445,10533913,4
+122938233,10533913,5
+Sk.Young,10533913,5
+menkoumahu,10533913,5
+53366469,10533913,5
+62529217,10533913,5
+4568311,10533913,2
+Martin-Zhang,10533913,5
+34544159,10533913,5
+yolanda0416,10533913,5
+Alittlelittle,10533913,-1
+jiangjiang1214,10533913,4
+krmushang,10533913,4
+73669959,10533913,5
+3349587,10533913,3
+Huxuan0522,10533913,4
+mushroom2011,10533913,5
+abezhang,10533913,4
+42022756,10533913,3
+TiAmoGuaibaobao,10533913,-1
+amydsr,10533913,5
+53910261,10533913,4
+81143099,10533913,5
+132024010,10533913,5
+79856999,10533913,5
+104592207,10533913,3
+mfslalala,10533913,5
+leaf0831,10533913,5
+noangel05,10533913,4
+iamaprilm,10533913,3
+x18304373131,10533913,4
+3512976,10533913,4
+64748860,10533913,5
+57938004,10533913,5
+bebesummer,10533913,4
+32728165,10533913,5
+44504599,10533913,4
+2861355,10533913,4
+20194870,10533913,4
+monk,10533913,5
+1829241,10533913,4
+ylrenee,10533913,4
+jovanni,10533913,4
+sept,10533913,4
+epon,10533913,5
+Kenny_Lau,10533913,4
+72523304,10533913,5
+iamyi,10533913,4
+wreckitzak,10533913,4
+icemankobe,10533913,4
+49721814,10533913,4
+74827424,10533913,5
+36910596,10533913,4
+82193333,10533913,4
+85727948,10533913,5
+morvin,10533913,4
+43212336,10533913,5
+yylovekhalil,10533913,4
+2029651,10533913,4
+52425578,10533913,5
+crownowl,10533913,4
+51790573,10533913,5
+131514121,10533913,4
+1794910,10533913,3
+just-being-me,10533913,5
+metkee,10533913,5
+luquanchan,10533913,3
+zhaifei-movie,10533913,4
+t33th,10533913,5
+1381497,10533913,5
+49695891,10533913,3
+pettydog,10533913,5
+44225857,10533913,5
+katrinamu,10533913,4
+laura13,10533913,-1
+tarapanda,10533913,4
+ephraimdw,10533913,4
+50428442,10533913,5
+gancao,10533913,5
+ahomushbiu,10533913,5
+cheng4496,10533913,4
+Monderian,10533913,4
+67353115,10533913,4
+74773211,10533913,5
+53828611,10533913,5
+57193722,10533913,5
+JennyDingding,10533913,5
+alice_tea,10533913,3
+60269516,10533913,5
+94276610,10533913,4
+119953772,10533913,5
+sugarkid,10533913,4
+92975823,10533913,4
+2679279,10533913,5
+53721569,10533913,5
+58051571,10533913,5
+A.Plus,10533913,5
+122004304,10533913,5
+shingle,10533913,5
+45705723,10533913,5
+Chenyeye55555,10533913,5
+55694899,10533913,5
+go2hell,10533913,4
+56090737,10533913,4
+sanggolden,10533913,5
+51845720,10533913,5
+5768610,10533913,5
+maydayclouds,10533913,3
+2639021,10533913,5
+belovedme,10533913,3
+48377465,10533913,5
+131780411,10533913,5
+109040050,10533913,4
+46639477,10533913,3
+userl1,10533913,4
+himissvivian,10533913,5
+iamyu,10533913,5
+77288583,10533913,5
+implicitallure,10533913,5
+70659345,10533913,4
+82460624,10533913,5
+flower_N,10533913,4
+48261192,10533913,5
+4839154,10533913,5
+Baoberlln,10533913,5
+penny5,10533913,5
+100292598,10533913,5
+38603316,10533913,4
+80442790,10533913,4
+66242700,10533913,4
+Mun.,10533913,4
+jane921111,10533913,4
+34256626,10533913,5
+43801109,10533913,5
+65117604,10533913,4
+53007276,10533913,4
+130395100,10533913,5
+66985613,10533913,5
+Ariascat,10533913,4
+36347096,10533913,5
+135799063,10533913,4
+119843686,10533913,3
+84612888,10533913,4
+cherrywang0118,10533913,4
+126682168,10533913,5
+49364044,10533913,5
+52995521,10533913,4
+1521470,10533913,4
+38914648,10533913,5
+35331418,10533913,4
+75545538,10533913,4
+JosephineQv,10533913,5
+xiaoguli,10533913,4
+yueyue718,10533913,4
+sjmx,10533913,5
+68399606,10533913,5
+zhangzhai,10533913,4
+48698083,10533913,5
+71790709,10533913,4
+LunaSunny,10533913,4
+kevindai,10533913,5
+weakness,10533913,5
+56976495,10533913,5
+53375345,10533913,4
+27652633,10533913,5
+morachen,10533913,5
+zhuxiansheng,10533913,1
+97319028,10533913,3
+1801545,10533913,5
+53516691,10533913,5
+122324225,10533913,5
+63120961,10533913,4
+45320268,10533913,5
+qingxi52vv,10533913,3
+Psychoanalysis,10533913,3
+lunababe,10533913,5
+47345174,10533913,5
+podolski,10533913,5
+Plus10Percent,10533913,5
+49087198,10533913,5
+73689655,10533913,4
+68541291,10533913,5
+yxgn,10533913,4
+79744808,10533913,5
+46338692,10533913,5
+48919879,10533913,4
+60408856,10533913,5
+53898523,10533913,5
+1499246,10533913,3
+lydcc,10533913,5
+44229220,10533913,1
+61693641,10533913,5
+114515480,10533913,5
+133814929,10533913,5
+zhuo1993,10533913,3
+DaisyYo,10533913,4
+10750432,10533913,3
+46129892,10533913,5
+61177812,10533913,5
+53971254,10533913,5
+83649919,10533913,5
+lvmeansdonkey,10533913,5
+91446742,10533913,4
+57864955,10533913,5
+63044773,10533913,5
+vinnsy,10533913,4
+2794559,10533913,3
+feel_sorrow,10533913,4
+66340674,10533913,4
+liyah,10533913,5
+97987100,10533913,5
+mintangel,10533913,5
+52396951,10533913,3
+3121598,10533913,5
+fengwanlu,10533913,4
+76869908,10533913,5
+135696371,10533913,5
+26539835,10533913,5
+simple_v,10533913,4
+12822970,10533913,4
+69307403,10533913,5
+oatgnik,10533913,4
+WEWE7UP,10533913,4
+74449417,10533913,5
+83913811,10533913,5
+2743603,10533913,3
+1875861,10533913,4
+44494066,10533913,4
+Alan_7,10533913,5
+2351247,10533913,5
+fanny_lingf,10533913,5
+zalazala,10533913,3
+EDawn,10533913,5
+94763902,10533913,5
+rrrrravi,10533913,5
+Allina,10533913,5
+Allina,10533913,5
+70780407,10533913,5
+2275556,10533913,4
+43474774,10533913,4
+saddyla,10533913,5
+bolijiao,10533913,4
+48006997,10533913,5
+90817930,10533913,5
+wonderer,10533913,4
+23154088,10533913,4
+35178265,10533913,5
+BonnieB,10533913,5
+48508304,10533913,5
+58280088,10533913,5
+fannytracyshine,10533913,5
+121818648,10533913,5
+wishmuhaha,10533913,5
+qinduo,10533913,5
+2565255,10533913,3
+36359450,10533913,5
+candyhorse,10533913,5
+dchaochao,10533913,3
+71755062,10533913,4
+40339642,10533913,4
+63150042,10533913,5
+dou4y,10533913,5
+67544902,10533913,4
+68901113,10533913,5
+zhouqiao,10533913,4
+68864457,10533913,3
+49523501,10533913,5
+3518592,10533913,4
+61706837,10533913,5
+45753459,10533913,5
+44201606,10533913,4
+55467676,10533913,5
+121346678,10533913,5
+stella930,10533913,5
+41353092,10533913,4
+46017359,10533913,5
+tracycat,10533913,5
+flycolorice,10533913,-1
+flied,10533913,4
+cibeles3715,10533913,4
+74220901,10533913,5
+58466744,10533913,5
+ggx29225692,10533913,5
+40982141,10533913,3
+48304899,10533913,3
+zh369ao,10533913,-1
+92894015,10533913,5
+woshisijia,10533913,4
+xirenju,10533913,5
+3729384,10533913,5
+xbl911,10533913,5
+102600793,10533913,5
+52554731,10533913,-1
+57262521,10533913,4
+47186001,10533913,4
+airqueen,10533913,4
+131884478,10533913,5
+juliekathy,10533913,5
+froggrandpa,10533913,5
+May_T,10533913,5
+74820092,10533913,2
+jiugedian,10533913,5
+dramatic150,10533913,4
+55807482,10533913,5
+81822817,10533913,3
+55282581,10533913,4
+lucida117,10533913,4
+43448765,10533913,5
+Renee_Lee,10533913,5
+115185041,10533913,4
+biaoshuxieema,10533913,5
+49261340,10533913,-1
+kilruk,10533913,4
+61553411,10533913,4
+129473035,10533913,5
+56376401,10533913,5
+49076335,10533913,5
+dengdee,10533913,4
+72043459,10533913,5
+Luinrandr,10533913,5
+53339487,10533913,5
+dintxer,10533913,3
+sallymour,10533913,5
+83301316,10533913,5
+132690366,10533913,4
+Dennisguan,10533913,3
+cano,10533913,5
+80312542,10533913,4
+58741495,10533913,5
+54503244,10533913,5
+38449346,10533913,4
+4491930,10533913,4
+xyzxun,10533913,4
+seraphhoo,10533913,4
+56925526,10533913,3
+ricardoHE,10533913,4
+kathytop,10533913,5
+70177724,10533913,5
+58992430,10533913,5
+4632760,10533913,3
+43618252,10533913,4
+63101856,10533913,5
+lemoo0733,10533913,5
+80121770,10533913,3
+69422415,10533913,5
+41032130,10533913,5
+miantanjie,10533913,4
+yujianengyi,10533913,3
+lazyrobot,10533913,3
+39965559,10533913,4
+kikiyo,10533913,5
+43539810,10533913,5
+foolishrabbit,10533913,5
+EricBiao,10533913,5
+23450183,10533913,4
+53195089,10533913,5
+cheeringo,10533913,4
+summonercarl,10533913,5
+musicer03,10533913,5
+Evansance,10533913,2
+53796875,10533913,3
+121585763,10533913,5
+patchwork,10533913,5
+49196234,10533913,5
+2185742,10533913,5
+71400865,10533913,5
+caijiazhan,10533913,4
+56847004,10533913,3
+SpringLamb,10533913,5
+47548390,10533913,5
+127741400,10533913,5
+3073495,10533913,2
+59466056,10533913,5
+56085825,10533913,5
+jimmy198360,10533913,5
+engel17,10533913,5
+butina,10533913,4
+yz501,10533913,4
+funnyducky,10533913,5
+13356942,10533913,4
+43124157,10533913,4
+silanruoxi,10533913,5
+87930236,10533913,4
+51236215,10533913,5
+BluePudge,10533913,5
+54146602,10533913,5
+vidania,10533913,3
+70981661,10533913,4
+amycc,10533913,5
+waixiaoke,10533913,5
+69518357,10533913,4
+53134415,10533913,5
+zhangqiyu_0202,10533913,5
+73109328,10533913,5
+49457592,10533913,1
+47810945,10533913,5
+134971882,10533913,4
+50362657,10533913,5
+ccccccIty,10533913,5
+62546651,10533913,4
+49164545,10533913,5
+2511809,10533913,5
+hdrsdgd,10533913,3
+121057270,10533913,5
+goodbyelenin,10533913,3
+2292568,10533913,5
+soffie,10533913,5
+vivilinezaixu,10533913,4
+bunnydai,10533913,5
+PARIADISE,10533913,5
+61750855,10533913,5
+essemoon,10533913,4
+46401879,10533913,4
+1450381,10533913,4
+bauerzhang,10533913,3
+79669816,10533913,5
+terryoy,10533913,5
+maychendaxu,10533913,5
+43086179,10533913,5
+68979870,10533913,5
+jiajia1130,10533913,5
+131726078,10533913,5
+beibeilaner,10533913,5
+skyshen10,10533913,4
+51598057,10533913,5
+Lucifer_0,10533913,5
+35406657,10533913,5
+68034921,10533913,5
+sixer1005,10533913,5
+71760114,10533913,4
+68726944,10533913,5
+2780164,10533913,5
+76800713,10533913,5
+70507408,10533913,5
+1921806,10533913,5
+62334757,10533913,5
+28582386,10533913,5
+qianhuibaizhuan,10533913,5
+achoti,10533913,-1
+maiscar,10533913,-1
+62407563,10533913,4
+82589091,10533913,5
+onless,10533913,5
+4272051,10533913,5
+68905253,10533913,5
+kedoumili,10533913,5
+darlinfish,10533913,-1
+43111391,10533913,4
+64538102,10533913,5
+zwbhappy,10533913,5
+avrilyian,10533913,4
+54706735,10533913,3
+37619405,10533913,5
+49283694,10533913,5
+65257168,10533913,5
+green_sophie,10533913,-1
+zhouqianyun,10533913,4
+61648064,10533913,5
+52518211,10533913,5
+mandylu2010,10533913,5
+doxdox,10533913,3
+71972126,10533913,5
+79596092,10533913,5
+71843483,10533913,5
+66178804,10533913,5
+133887142,10533913,5
+53395141,10533913,5
+51938653,10533913,4
+3922229,10533913,4
+46082327,10533913,5
+58158245,10533913,5
+51104226,10533913,5
+cloverwish,10533913,4
+45754770,10533913,5
+62650109,10533913,5
+2107509,10533913,4
+48958931,10533913,4
+xcorange,10533913,5
+datudoudatudou,10533913,5
+58615356,10533913,4
+114809892,10533913,3
+afang92,10533913,5
+60166330,10533913,5
+Leslie_ontheway,10533913,5
+kinas04,10533913,4
+bihaiqing,10533913,-1
+61602605,10533913,4
+jolinalbert,10533913,5
+antoniagreen,10533913,4
+rainielo,10533913,5
+132190479,10533913,5
+34919139,10533913,5
+cynthia3922,10533913,4
+50639683,10533913,5
+allancat,10533913,4
+79423456,10533913,5
+63107139,10533913,5
+nighthanwei,10533913,5
+3392902,10533913,4
+27088353,10533913,5
+77420474,10533913,5
+SAWEI,10533913,5
+80769810,10533913,5
+60304248,10533913,5
+halk,10533913,4
+Aldrberan,10533913,4
+Lucian_Liu,10533913,4
+64682658,10533913,5
+xxs127,10533913,3
+55536180,10533913,3
+li_1314,10533913,5
+56200284,10533913,4
+mhyigeren,10533913,5
+75739095,10533913,4
+53559369,10533913,5
+1110575,10533913,3
+50093878,10533913,5
+summertime727,10533913,-1
+3278899,10533913,2
+wxljoanna,10533913,3
+75426992,10533913,5
+54382034,10533913,5
+lionyoo,10533913,4
+E-huang,10533913,5
+vfish,10533913,5
+64191038,10533913,5
+jessica0316,10533913,5
+lewtone,10533913,5
+4707398,10533913,4
+Ertu,10533913,5
+facteur,10533913,4
+77577342,10533913,5
+120636923,10533913,5
+34881096,10533913,5
+junylovejuny,10533913,4
+16943300,10533913,5
+enjoyrachel,10533913,4
+heyidi,10533913,5
+directorLOIS,10533913,4
+geshengmeiying,10533913,4
+3311402,10533913,5
+54443004,10533913,5
+51764558,10533913,5
+1840916,10533913,5
+68959419,10533913,5
+3483729,10533913,4
+53752220,10533913,5
+slwilliam,10533913,3
+45392185,10533913,5
+48613771,10533913,3
+34111959,10533913,4
+GoldenCompass,10533913,4
+55460674,10533913,5
+ailaoshan,10533913,5
+44127474,10533913,-1
+68608061,10533913,4
+46060990,10533913,5
+4023510,10533913,3
+82299258,10533913,5
+42836131,10533913,5
+hustzsc,10533913,5
+chongtong,10533913,5
+1151029,10533913,4
+82575834,10533913,5
+66673687,10533913,5
+53268951,10533913,4
+whoab,10533913,5
+quzheng1986,10533913,5
+63030178,10533913,5
+cirrus,10533913,3
+soulchang,10533913,5
+49893874,10533913,3
+4445748,10533913,4
+4485928,10533913,5
+54164791,10533913,5
+zyy1026,10533913,4
+102254201,10533913,4
+28079955,10533913,4
+119027967,10533913,5
+83547057,10533913,5
+loveormore,10533913,4
+53854743,10533913,5
+49108524,10533913,5
+jennyadolf,10533913,5
+xiaolanzzz,10533913,3
+48420105,10533913,5
+twinkletears,10533913,3
+Andy_Shan,10533913,5
+42996081,10533913,5
+43840425,10533913,4
+bilis,10533913,4
+yunxin,10533913,4
+3177593,10533913,3
+sueneko,10533913,5
+48647582,10533913,3
+crowsz,10533913,3
+crowsz,10533913,3
+anyvin,10533913,5
+thoris,10533913,4
+132676591,10533913,5
+SBtripleplus,10533913,5
+53533011,10533913,5
+47821454,10533913,1
+1101526,10533913,5
+68498461,10533913,4
+121486273,10533913,5
+3119464,10533913,5
+70918450,10533913,5
+35064724,10533913,5
+80044238,10533913,5
+132870303,10533913,5
+joy2theworldyea,10533913,5
+47754362,10533913,5
+gstone1723,10533913,4
+70514763,10533913,2
+51885129,10533913,3
+cocojamboo,10533913,3
+Since,10533913,5
+85382563,10533913,4
+kaname,10533913,4
+75444425,10533913,5
+50207980,10533913,4
+119950155,10533913,5
+45537891,10533913,4
+2760210,10533913,5
+beaux,10533913,4
+smumy,10533913,5
+44436266,10533913,4
+ekuwang,10533913,5
+16960582,10533913,3
+53662568,10533913,3
+101196248,10533913,4
+joycelinking,10533913,3
+47561470,10533913,4
+49934262,10533913,4
+Ray_Liao,10533913,3
+46227672,10533913,5
+IBlues,10533913,5
+41853036,10533913,4
+131969516,10533913,5
+53621487,10533913,5
+HanCheung,10533913,4
+132247688,10533913,5
+4882930,10533913,5
+56493831,10533913,5
+116695354,10533913,4
+28853372,10533913,5
+45295442,10533913,4
+42725072,10533913,5
+49917435,10533913,5
+94559005,10533913,4
+63825948,10533913,5
+63423532,10533913,4
+yuanzailv,10533913,4
+67570635,10533913,5
+yinchuanfu,10533913,3
+92868619,10533913,5
+66714330,10533913,4
+64926044,10533913,5
+imjack,10533913,4
+daladida,10533913,5
+37791405,10533913,5
+48304556,10533913,4
+129857824,10533913,5
+34751637,10533913,4
+2056209,10533913,3
+70290609,10533913,5
+68802617,10533913,4
+gexiaoshang,10533913,4
+63412313,10533913,4
+sanzhiling,10533913,4
+45849213,10533913,5
+54588016,10533913,1
+60149016,10533913,3
+134863795,10533913,3
+jeth,10533913,3
+56977069,10533913,5
+80882131,10533913,4
+54782824,10533913,3
+2440173,10533913,4
+88730050,10533913,3
+77162594,10533913,5
+62333494,10533913,4
+91809497,10533913,5
+Bloodworks,10533913,4
+icelfen,10533913,5
+59038571,10533913,5
+41728393,10533913,5
+lanmons,10533913,4
+51760780,10533913,4
+sanxo,10533913,5
+74448596,10533913,4
+70464788,10533913,5
+secretofmemory,10533913,3
+38567771,10533913,4
+80681000,10533913,4
+34337518,10533913,5
+52140771,10533913,4
+69819504,10533913,4
+87745634,10533913,5
+49437518,10533913,5
+1284659,10533913,4
+yin-gang,10533913,5
+hawords,10533913,5
+weiminglu,10533913,5
+zggdzssaq,10533913,5
+73125867,10533913,5
+62760636,10533913,5
+powanzai,10533913,5
+69857353,10533913,4
+94671887,10533913,4
+35667000,10533913,4
+Deeper.Dark,10533913,4
+xsyds,10533913,4
+96149760,10533913,5
+41855603,10533913,5
+vittek,10533913,4
+akanishi_0704,10533913,4
+41030554,10533913,4
+56444863,10533913,5
+121369705,10533913,5
+54036678,10533913,5
+thinking_lvyy,10533913,5
+62030418,10533913,2
+aguis,10533913,5
+90747535,10533913,5
+melatielian,10533913,5
+sosofly,10533913,5
+ruiqigreen,10533913,5
+3157228,10533913,3
+48354669,10533913,4
+51478034,10533913,4
+TCTF,10533913,4
+56526640,10533913,4
+25911106,10533913,5
+july10,10533913,5
+62575629,10533913,3
+BELOW-the-MOON,10533913,1
+51951428,10533913,4
+ClaireL,10533913,3
+63481518,10533913,5
+d.brown,10533913,3
+charlottemjiang,10533913,5
+yoanayy,10533913,5
+univercen,10533913,5
+60870044,10533913,2
+conansense,10533913,5
+shadowboxer,10533913,4
+63744940,10533913,3
+62844762,10533913,5
+louis15yao,10533913,5
+62309566,10533913,4
+135886269,10533913,4
+58204299,10533913,3
+tmz1127,10533913,5
+68014906,10533913,4
+xxx1234,10533913,3
+42576668,10533913,4
+bhg,10533913,5
+3581002,10533913,5
+121084045,10533913,5
+fallistuzi,10533913,5
+4578112,10533913,5
+50126982,10533913,5
+47178568,10533913,4
+3030951,10533913,5
+ellencc,10533913,5
+64857350,10533913,5
+waityoualex,10533913,5
+3283524,10533913,4
+79877334,10533913,5
+67645499,10533913,5
+54985855,10533913,3
+123322108,10533913,5
+51156082,10533913,5
+fyyxf,10533913,3
+39115751,10533913,5
+52974893,10533913,4
+75058618,10533913,3
+hulumei,10533913,4
+elaine14,10533913,5
+aka-dian,10533913,5
+manuela,10533913,5
+1103554,10533913,5
+jiaping53,10533913,5
+115755717,10533913,5
+51806871,10533913,3
+2723511,10533913,5
+twxpda,10533913,4
+9213181,10533913,4
+45480015,10533913,4
+freyarashi,10533913,3
+ayint,10533913,5
+85733818,10533913,3
+sevendream129,10533913,4
+stevenssonny,10533913,3
+8872886,10533913,4
+hidora,10533913,5
+nothingwell,10533913,4
+4303543,10533913,4
+36553351,10533913,5
+simplelifexixi,10533913,4
+64959073,10533913,5
+benbenzo,10533913,4
+rosemaryii,10533913,4
+joyfish0912,10533913,4
+zisic,10533913,5
+61918071,10533913,5
+44975625,10533913,3
+49295731,10533913,5
+52054013,10533913,5
+74783952,10533913,5
+momodeshang,10533913,5
+4303354,10533913,5
+103214078,10533913,3
+55275802,10533913,5
+tinysean,10533913,3
+73542789,10533913,5
+Cancer_x,10533913,4
+120394443,10533913,5
+zkn911,10533913,5
+2292966,10533913,4
+14433242,10533913,3
+askingwindy,10533913,5
+2319090,10533913,5
+flawless,10533913,4
+63943180,10533913,5
+3402078,10533913,5
+aki-lee,10533913,1
+MrKny,10533913,5
+45355348,10533913,5
+104803328,10533913,5
+134948887,10533913,5
+yal624,10533913,5
+mumumi31618,10533913,4
+z13956476856,10533913,5
+izune,10533913,4
+58899374,10533913,3
+freebox,10533913,5
+64569742,10533913,3
+56075427,10533913,5
+mrschan,10533913,5
+1520336,10533913,5
+68427316,10533913,5
+mkfinch,10533913,5
+bdnet,10533913,5
+bzlin,10533913,4
+chauyeelee,10533913,5
+93326085,10533913,5
+130778242,10533913,5
+zeal,10533913,5
+dasherry,10533913,4
+63643182,10533913,5
+87947108,10533913,5
+69173173,10533913,5
+37886516,10533913,5
+85472462,10533913,4
+3734035,10533913,5
+52862784,10533913,5
+zv_____,10533913,5
+elingwu,10533913,5
+kxfen,10533913,5
+37513501,10533913,5
+45066097,10533913,3
+tttttttemble,10533913,5
+131628245,10533913,4
+phoebeliu,10533913,5
+2730322,10533913,4
+zhilanas,10533913,4
+1456910,10533913,4
+122686185,10533913,4
+67477422,10533913,5
+HoneyDuke,10533913,3
+52533161,10533913,5
+lovesay,10533913,5
+lutos1778,10533913,5
+44155260,10533913,3
+42888514,10533913,4
+VampirX,10533913,5
+duduxiongzhifu,10533913,5
+2809964,10533913,4
+39378921,10533913,4
+cheriecherie,10533913,5
+2711621,10533913,5
+61024335,10533913,5
+130680494,10533913,5
+71179615,10533913,5
+rou3lives,10533913,5
+132835611,10533913,5
+1098294,10533913,5
+tkjune,10533913,5
+43880604,10533913,5
+57197807,10533913,5
+27783640,10533913,5
+42280718,10533913,5
+lankaiyin,10533913,5
+look,10533913,5
+27927536,10533913,4
+xiaoyusuying,10533913,4
+dourface,10533913,4
+131337124,10533913,4
+38648875,10533913,5
+45056058,10533913,5
+76453097,10533913,5
+50848466,10533913,5
+131733366,10533913,5
+eugne,10533913,5
+76081150,10533913,5
+71973683,10533913,5
+80635442,10533913,5
+57411039,10533913,3
+61911395,10533913,3
+66178513,10533913,4
+50571822,10533913,5
+s0ap,10533913,5
+hehe2day,10533913,5
+52845120,10533913,4
+52183902,10533913,5
+37204068,10533913,4
+66114359,10533913,2
+handankaikai,10533913,3
+springggg,10533913,5
+violetawong,10533913,5
+28194529,10533913,4
+129853005,10533913,4
+2304557,10533913,5
+3138370,10533913,4
+ginny_sc,10533913,5
+yangqiju,10533913,4
+1442997,10533913,3
+34319416,10533913,4
+49488269,10533913,5
+3325711,10533913,5
+35504548,10533913,4
+80075061,10533913,5
+yintianyi420,10533913,5
+53812143,10533913,4
+41750471,10533913,4
+82847789,10533913,4
+71776556,10533913,3
+sevenshaw,10533913,5
+Chayhaw,10533913,5
+48025965,10533913,5
+teenybrook,10533913,3
+126876806,10533913,3
+caiwoshishei,10533913,4
+1386311,10533913,4
+basu,10533913,5
+107493773,10533913,3
+ssxl,10533913,5
+timorrowmain,10533913,3
+113992757,10533913,4
+70990506,10533913,5
+songxuancheng,10533913,5
+53385154,10533913,5
+132636257,10533913,5
+sep23,10533913,4
+50330876,10533913,4
+FuckUrMother,10533913,5
+irene826,10533913,4
+46175639,10533913,4
+27036800,10533913,5
+59384667,10533913,5
+wmsgg,10533913,5
+99172120,10533913,5
+girliris,10533913,5
+AzureFeeling,10533913,3
+bearyumi,10533913,5
+75175463,10533913,5
+53919202,10533913,4
+an491033958,10533913,4
+2340314,10533913,5
+60592214,10533913,5
+chinhao,10533913,5
+38494486,10533913,5
+133690949,10533913,5
+102838934,10533913,4
+AFroThinda,10533913,4
+62469991,10533913,5
+35068096,10533913,4
+47004535,10533913,5
+Ms.G,10533913,5
+46184375,10533913,5
+127298823,10533913,4
+95453829,10533913,5
+114617164,10533913,5
+124869246,10533913,4
+74797419,10533913,-1
+changkxs,10533913,4
+32314297,10533913,5
+57695371,10533913,4
+easyLyc,10533913,5
+back2back,10533913,3
+133493079,10533913,4
+yoicy,10533913,5
+destroy0326,10533913,4
+12198403,10533913,5
+52029633,10533913,-1
+1388185,10533913,5
+79642235,10533913,5
+Dasiycat,10533913,5
+49196106,10533913,5
+60259252,10533913,5
+28722432,10533913,5
+43640903,10533913,5
+zhouyuzhi,10533913,5
+qianmop,10533913,4
+stillyou,10533913,5
+131914536,10533913,3
+gaojianchong,10533913,5
+brutwater,10533913,3
+slimseven,10533913,4
+45053582,10533913,4
+silverstro,10533913,5
+77282488,10533913,5
+orangelynn,10533913,4
+49261275,10533913,5
+49764228,10533913,4
+49455574,10533913,5
+asukayoshioka,10533913,3
+dugumy,10533913,5
+uyuyhhyhhy,10533913,5
+wakaka1986,10533913,5
+38226162,10533913,4
+48621117,10533913,5
+51658777,10533913,3
+121622673,10533913,5
+2437069,10533913,4
+65383649,10533913,4
+87855895,10533913,4
+130823206,10533913,5
+johannesthomas,10533913,3
+127950412,10533913,5
+73790083,10533913,4
+118096038,10533913,4
+67593873,10533913,5
+78484453,10533913,3
+woodstar,10533913,5
+49884893,10533913,3
+66229243,10533913,5
+charlielee,10533913,5
+1792819,10533913,5
+hongfuyeben93,10533913,5
+63582451,10533913,-1
+ez2dier,10533913,5
+4582518,10533913,5
+27517816,10533913,5
+4657884,10533913,5
+36940575,10533913,5
+victoria_zyx,10533913,5
+66366500,10533913,5
+ccbadger,10533913,4
+46932816,10533913,5
+quai,10533913,5
+yixiaoyan_,10533913,4
+caixiaonong,10533913,5
+tiffanyji,10533913,4
+128178367,10533913,5
+ashli,10533913,5
+59944601,10533913,3
+135202426,10533913,4
+125316227,10533913,5
+tarostaro,10533913,5
+60082922,10533913,4
+52481316,10533913,4
+mrsdarce,10533913,3
+ipzone,10533913,5
+58544505,10533913,5
+kakasissi,10533913,5
+OGGGG,10533913,3
+rie_fu,10533913,4
+2488726,10533913,5
+1605000,10533913,5
+padme,10533913,5
+3300434,10533913,5
+3686271,10533913,4
+indiemind,10533913,5
+58521633,10533913,5
+1530155,10533913,5
+46319885,10533913,5
+47813307,10533913,5
+48942164,10533913,5
+56237172,10533913,-1
+46692711,10533913,4
+henhenlove,10533913,5
+yukuai,10533913,-1
+oldnikki,10533913,5
+121850887,10533913,5
+aaaaaas,10533913,4
+62671989,10533913,5
+luhua,10533913,3
+25575565,10533913,5
+4234539,10533913,3
+RedSnowRose,10533913,5
+Scarlett...,10533913,5
+115547734,10533913,3
+maryormarry,10533913,3
+43437430,10533913,5
+76526396,10533913,3
+115751800,10533913,5
+59453880,10533913,4
+102436486,10533913,3
+weiweiweiwei,10533913,4
+85981309,10533913,4
+littlevivi,10533913,4
+jingyajun,10533913,4
+131484513,10533913,5
+2670451,10533913,5
+quitelisten,10533913,5
+tffzuochuan,10533913,5
+lichade,10533913,5
+103107095,10533913,5
+ninomae,10533913,4
+lqs0420,10533913,4
+gxyvonne,10533913,4
+cynth,10533913,4
+58249010,10533913,4
+59274268,10533913,5
+47212245,10533913,5
+54350141,10533913,5
+71270529,10533913,5
+105737828,10533913,4
+1162708,10533913,4
+76716477,10533913,5
+43684937,10533913,5
+56804902,10533913,5
+60221654,10533913,5
+3641686,10533913,5
+41570843,10533913,5
+KennySiliver,10533913,5
+2777743,10533913,-1
+38979539,10533913,3
+andy-channel,10533913,5
+57436067,10533913,5
+48909711,10533913,5
+41786270,10533913,4
+jozenky,10533913,5
+51945136,10533913,4
+61861380,10533913,3
+gin_gin,10533913,5
+51732025,10533913,5
+tom926,10533913,4
+16807244,10533913,5
+3766371,10533913,5
+hugjm,10533913,3
+99078833,10533913,4
+Bonnie_me,10533913,5
+45511772,10533913,4
+81895960,10533913,5
+crystaldrr,10533913,5
+myworld523,10533913,4
+bunnytoothed,10533913,4
+54868319,10533913,3
+4248478,10533913,5
+119608603,10533913,5
+130464213,10533913,4
+130464213,10533913,4
+60798203,10533913,2
+134266415,10533913,4
+2320325,10533913,5
+89021640,10533913,5
+46788119,10533913,4
+54068370,10533913,4
+59336552,10533913,5
+63599263,10533913,4
+2126025,10533913,5
+obliviosage,10533913,5
+56339363,10533913,4
+monbenben,10533913,4
+yuntaoc,10533913,4
+63580159,10533913,5
+doratora,10533913,5
+55334790,10533913,4
+69152913,10533913,5
+82150919,10533913,5
+vampiredyx,10533913,4
+4889475,10533913,3
+73321447,10533913,5
+vegenious,10533913,-1
+yeddahy,10533913,5
+50694634,10533913,5
+63230793,10533913,5
+63721318,10533913,5
+79092004,10533913,5
+128605000,10533913,5
+46369676,10533913,5
+54592717,10533913,4
+109038183,10533913,5
+65224437,10533913,5
+pausew,10533913,4
+sisiwang,10533913,5
+39337478,10533913,5
+plant,10533913,5
+31595515,10533913,5
+101956762,10533913,5
+Fienix,10533913,-1
+elvawang,10533913,-1
+134195975,10533913,5
+Quester,10533913,3
+64047703,10533913,4
+26889158,10533913,4
+cheesechee,10533913,5
+chaocai,10533913,2
+134203222,10533913,4
+yuanjin1011,10533913,5
+Balebeng,10533913,5
+48253364,10533913,3
+sodayui,10533913,5
+53737275,10533913,5
+titibird,10533913,4
+R.Samsara,10533913,-1
+mason0128,10533913,5
+colormoon,10533913,4
+lovefilms,10533913,3
+53393620,10533913,5
+43739807,10533913,5
+61875054,10533913,5
+44162461,10533913,4
+61131487,10533913,5
+qimiao0423,10533913,5
+encorepanda,10533913,4
+61016995,10533913,5
+mangoman,10533913,5
+shelleya,10533913,5
+51490849,10533913,3
+52233629,10533913,4
+mangomaluko,10533913,5
+joyveela,10533913,5
+yinhun,10533913,5
+felinoshuffle,10533913,5
+15909016,10533913,5
+bigbei,10533913,5
+summerguagua,10533913,3
+y_XO,10533913,5
+lafeegao,10533913,5
+61222157,10533913,3
+54449997,10533913,5
+38850701,10533913,3
+47781014,10533913,5
+96204394,10533913,3
+fangxiulei,10533913,4
+G-Dear,10533913,4
+58511967,10533913,5
+mishideai,10533913,5
+edisonqin,10533913,4
+supernuo,10533913,4
+jimmyusher,10533913,3
+1430148,10533913,-1
+zhusiyang,10533913,3
+67727072,10533913,4
+toool,10533913,5
+1314610,10533913,5
+123549763,10533913,5
+biglisten,10533913,4
+36206497,10533913,5
+93916065,10533913,5
+zooissad,10533913,4
+38625392,10533913,5
+47057330,10533913,4
+62163111,10533913,4
+gooxoo,10533913,5
+42743639,10533913,5
+62390040,10533913,5
+25481348,10533913,5
+river-ff,10533913,3
+2352053,10533913,4
+46466887,10533913,2
+58987913,10533913,5
+sayatou,10533913,5
+chuntiandejiuca,10533913,5
+101470489,10533913,5
+91227853,10533913,4
+lil_red,10533913,5
+43200549,10533913,5
+132842672,10533913,5
+doris19921203,10533913,3
+39981148,10533913,5
+43213326,10533913,4
+caosen,10533913,5
+48752205,10533913,4
+82046429,10533913,4
+swinger,10533913,5
+imusiq,10533913,5
+violetljj,10533913,3
+Nokia95,10533913,5
+xin19930622,10533913,4
+maviswang,10533913,5
+4479198,10533913,4
+dreamersjcat,10533913,5
+52979491,10533913,5
+61222395,10533913,5
+qinchongayo,10533913,5
+38721043,10533913,5
+Yokizyz,10533913,3
+holmes520,10533913,5
+sherrybecks,10533913,4
+chelseason,10533913,5
+thwmk,10533913,-1
+GATIK,10533913,5
+yidakefacaishu,10533913,5
+cheerychang,10533913,4
+40398105,10533913,5
+65085377,10533913,4
+strikeman,10533913,4
+supermagua,10533913,5
+drxxuan,10533913,5
+aruga,10533913,4
+49055690,10533913,3
+94988945,10533913,5
+107827183,10533913,3
+3975807,10533913,5
+40373197,10533913,5
+3683994,10533913,5
+shxdyd,10533913,5
+2968859,10533913,5
+104344457,10533913,5
+wenbo2003,10533913,5
+87693385,10533913,5
+83721381,10533913,5
+4590914,10533913,5
+skytree1025,10533913,5
+43549148,10533913,5
+85122693,10533913,4
+jacklqw,10533913,5
+64107417,10533913,4
+45421724,10533913,5
+80919001,10533913,5
+31778239,10533913,3
+ningjuntao,10533913,4
+52214552,10533913,5
+24543063,10533913,5
+fishzero,10533913,4
+57823249,10533913,5
+mr10ne1y,10533913,5
+sinceiloveu,10533913,3
+52806271,10533913,5
+seven-y,10533913,4
+andy12007,10533913,5
+66339819,10533913,4
+nanbunny,10533913,-1
+BurningSoul,10533913,2
+40014667,10533913,5
+47291101,10533913,5
+ragnarok1028,10533913,5
+43282525,10533913,5
+ty2012,10533913,5
+tomyiyun,10533913,4
+glorid,10533913,4
+yyza16,10533913,5
+126816085,10533913,4
+jeaiad,10533913,4
+heycinderella,10533913,4
+82463994,10533913,5
+little22douban,10533913,5
+koonwah,10533913,4
+thedharmabum,10533913,5
+127024293,10533913,4
+1439857,10533913,-1
+76497080,10533913,5
+58625918,10533913,4
+25572888,10533913,4
+85112204,10533913,5
+46763977,10533913,5
+66603540,10533913,5
+57730258,10533913,5
+orcagoal,10533913,5
+OwenChow,10533913,4
+69233835,10533913,4
+56474762,10533913,5
+72682579,10533913,4
+53982356,10533913,5
+90687010,10533913,4
+64719018,10533913,4
+48505839,10533913,4
+wanglinfei,10533913,4
+44307950,10533913,5
+45097131,10533913,5
+zsqsophy,10533913,4
+vradica,10533913,5
+132332994,10533913,4
+48976051,10533913,4
+brallow,10533913,5
+48419666,10533913,5
+3442593,10533913,5
+80908008,10533913,5
+gretchen_n,10533913,5
+116380975,10533913,5
+49254231,10533913,5
+bardfox,10533913,5
+alicelotus,10533913,3
+120479164,10533913,5
+salmonvicky,10533913,4
+47716640,10533913,5
+120695517,10533913,5
+65907866,10533913,2
+49166988,10533913,4
+49166988,10533913,4
+50068065,10533913,3
+ricebb,10533913,3
+phoenix43,10533913,-1
+ranxing,10533913,4
+wruo,10533913,2
+50431026,10533913,2
+60835831,10533913,4
+42689691,10533913,5
+131169136,10533913,4
+beherca,10533913,5
+Kensnow,10533913,4
+dancychou,10533913,5
+56604899,10533913,5
+60834579,10533913,5
+yinjie04,10533913,5
+41606282,10533913,5
+51188157,10533913,4
+52906969,10533913,3
+manjiu,10533913,4
+leexiaoxiao,10533913,5
+3966093,10533913,5
+tommy00000,10533913,5
+39551885,10533913,5
+zhuroushitianai,10533913,5
+chengmingxia,10533913,5
+133044244,10533913,5
+44431235,10533913,5
+131814242,10533913,3
+sjzqzkn,10533913,5
+myice,10533913,4
+54075539,10533913,4
+heidongdiantai,10533913,5
+lhnlyons,10533913,5
+56003950,10533913,2
+46096823,10533913,4
+2291546,10533913,4
+55873737,10533913,5
+135588947,10533913,5
+4518695,10533913,5
+59602716,10533913,4
+75561690,10533913,4
+ohmygod813,10533913,5
+74422444,10533913,5
+lvhobbitdarren,10533913,5
+cdmy818,10533913,5
+54654221,10533913,5
+131125342,10533913,5
+autumnginger,10533913,5
+mercury0302,10533913,4
+37310626,10533913,5
+80176061,10533913,5
+microogle,10533913,4
+46009484,10533913,4
+34216133,10533913,4
+superrao,10533913,4
+wentaoxie,10533913,5
+1511035,10533913,5
+83254530,10533913,5
+47297112,10533913,4
+Casiopea_yh,10533913,5
+74971861,10533913,5
+coooooooool,10533913,5
+48443406,10533913,5
+63773386,10533913,5
+52036087,10533913,4
+real_spain,10533913,5
+ghostlite,10533913,5
+2205198,10533913,4
+3099644,10533913,5
+119632712,10533913,5
+HYW,10533913,4
+49569915,10533913,5
+2812801,10533913,5
+77046292,10533913,5
+10402342,10533913,4
+57056613,10533913,5
+68614466,10533913,4
+48859035,10533913,4
+62374245,10533913,5
+21133666,10533913,4
+4585764,10533913,5
+76858046,10533913,5
+tongtongabc,10533913,5
+122394659,10533913,5
+63485325,10533913,4
+58747615,10533913,4
+3963414,10533913,5
+36620883,10533913,5
+73849647,10533913,5
+66576261,10533913,5
+liyixuanorz,10533913,5
+chidaoshu,10533913,5
+131194167,10533913,5
+xiao8888,10533913,5
+42981208,10533913,4
+he1990,10533913,5
+sunshinergp,10533913,5
+51888216,10533913,5
+2449614,10533913,-1
+joyxu,10533913,5
+61994901,10533913,5
+linkisterock,10533913,5
+Cathay_Wong,10533913,4
+63291664,10533913,5
+2590915,10533913,5
+82387187,10533913,4
+Kevin3,10533913,3
+54341660,10533913,5
+74890755,10533913,5
+43005536,10533913,5
+zyzloveair,10533913,5
+wentrue,10533913,5
+70476793,10533913,5
+khalil-chili,10533913,5
+34800119,10533913,3
+46590028,10533913,5
+3189855,10533913,5
+46747029,10533913,5
+RwZu,10533913,5
+66735359,10533913,5
+60563094,10533913,4
+67589382,10533913,5
+83434254,10533913,3
+missingmaggie,10533913,5
+dixiaofeng,10533913,5
+Liz426,10533913,5
+104003575,10533913,5
+61822233,10533913,4
+1762029,10533913,5
+36108304,10533913,4
+131497305,10533913,5
+34417366,10533913,4
+4182845,10533913,4
+Skin.C,10533913,3
+126465508,10533913,5
+dengdengbuai,10533913,5
+aurawang95,10533913,5
+lj-family,10533913,4
+55930699,10533913,5
+lanup,10533913,4
+54268454,10533913,5
+131335028,10533913,4
+43470149,10533913,3
+25560643,10533913,4
+W3IQ7,10533913,4
+ryogon,10533913,5
+QiangL,10533913,5
+AndyYue,10533913,5
+63030961,10533913,4
+46630645,10533913,5
+wawanghuan,10533913,4
+52033080,10533913,5
+cathrynlv,10533913,5
+55984951,10533913,5
+godbewithme,10533913,3
+33828391,10533913,5
+76529709,10533913,3
+efscpig,10533913,5
+4376826,10533913,3
+Sulla_Zhou,10533913,4
+4196701,10533913,4
+StandOnLifE,10533913,4
+kloccd,10533913,5
+30386926,10533913,4
+yeox,10533913,4
+christopherlin,10533913,4
+61424106,10533913,4
+guaikahahaha,10533913,4
+54220607,10533913,5
+eleven32cc,10533913,-1
+caizixuan,10533913,5
+frankxumomo,10533913,5
+vane37,10533913,3
+57756886,10533913,5
+75993500,10533913,5
+122709202,10533913,5
+129214543,10533913,3
+zaraatnike,10533913,3
+67915177,10533913,5
+67915177,10533913,5
+132621595,10533913,5
+sujijiu,10533913,5
+Sophie0401,10533913,5
+69350050,10533913,5
+wishtree,10533913,4
+50149289,10533913,5
+61738638,10533913,5
+82970730,10533913,5
+102718430,10533913,5
+yeanyun,10533913,5
+72122656,10533913,5
+101905187,10533913,4
+dreams_be_dream,10533913,5
+Ranfeg,10533913,-1
+xnh01,10533913,5
+clemencechow,10533913,4
+52415244,10533913,5
+49335664,10533913,4
+LogicLady,10533913,5
+crucify,10533913,5
+82765955,10533913,4
+60261428,10533913,-1
+64124886,10533913,3
+HiggsBos0n,10533913,5
+Before37,10533913,5
+Aurora707,10533913,5
+52959454,10533913,5
+tianxkong,10533913,4
+35296853,10533913,5
+68102977,10533913,5
+40003537,10533913,5
+buzhiyuba,10533913,3
+134800314,10533913,4
+59794523,10533913,5
+103385070,10533913,5
+84429954,10533913,5
+53248861,10533913,5
+NeverLate,10533913,4
+69368196,10533913,4
+75560215,10533913,5
+48224071,10533913,5
+129548672,10533913,4
+17637612,10533913,4
+134150089,10533913,3
+56739185,10533913,5
+akhexiaobai,10533913,5
+lingci,10533913,4
+39730031,10533913,5
+sunny11fish,10533913,5
+64069651,10533913,4
+65557756,10533913,4
+hypnosdung,10533913,5
+67569927,10533913,4
+78260740,10533913,5
+73983245,10533913,5
+71918297,10533913,5
+cccj.box,10533913,5
+philoInSH,10533913,5
+78957039,10533913,5
+ulricazz,10533913,3
+74799167,10533913,4
+58741014,10533913,5
+iampromise,10533913,3
+xbutterflyx,10533913,5
+53171053,10533913,5
+54309416,10533913,4
+48206848,10533913,4
+Maybo-Chang,10533913,3
+119353813,10533913,5
+hatsu803,10533913,5
+120338818,10533913,4
+2529632,10533913,4
+46713517,10533913,5
+crystal53451,10533913,4
+49028309,10533913,4
+iheng,10533913,4
+94766000,10533913,5
+melodyshu,10533913,4
+43199610,10533913,4
+46099971,10533913,5
+40241805,10533913,4
+3937672,10533913,3
+1132028,10533913,5
+orgel,10533913,4
+53031165,10533913,3
+up117,10533913,5
+57543745,10533913,4
+43285698,10533913,5
+74337684,10533913,4
+yolandami,10533913,4
+58930883,10533913,3
+82484416,10533913,5
+29839010,10533913,5
+ricechow,10533913,5
+41127479,10533913,4
+luoyunxiang72,10533913,4
+EiffelSunrise,10533913,5
+43811088,10533913,4
+66602695,10533913,4
+pearltear,10533913,5
+stevense,10533913,4
+2331276,10533913,5
+18080670,10533913,4
+shix,10533913,5
+30865457,10533913,4
+Anny1209,10533913,4
+dreaming66,10533913,4
+ZPSan,10533913,5
+42224337,10533913,5
+yangshu1991,10533913,4
+90693032,10533913,5
+supersun1005,10533913,4
+sidneylumet,10533913,5
+63352248,10533913,4
+57311033,10533913,3
+liumao,10533913,4
+44452876,10533913,4
+76203879,10533913,3
+116769767,10533913,5
+56734943,10533913,3
+mwa,10533913,4
+1179745,10533913,3
+nanshuo,10533913,5
+121572873,10533913,5
+isabella2524,10533913,5
+48829574,10533913,5
+75220452,10533913,5
+paradoxox,10533913,4
+carmen8498,10533913,4
+60149752,10533913,5
+124266239,10533913,5
+70615998,10533913,2
+54090532,10533913,4
+41766735,10533913,5
+wxhsolo,10533913,4
+64861312,10533913,5
+120251370,10533913,3
+59123210,10533913,3
+46491957,10533913,5
+gekisoul,10533913,-1
+53173594,10533913,4
+1250982,10533913,4
+lisianl,10533913,4
+teenytinygenius,10533913,5
+58709526,10533913,5
+49756466,10533913,3
+63095265,10533913,4
+16792916,10533913,5
+Candy_Ghost,10533913,5
+oceancloud,10533913,5
+58004886,10533913,4
+47029300,10533913,5
+lovepeter,10533913,4
+guyuejiayu,10533913,5
+49604173,10533913,-1
+58863257,10533913,5
+vczhong,10533913,3
+83802681,10533913,5
+papizza,10533913,5
+91339343,10533913,5
+67436635,10533913,4
+34847203,10533913,4
+36549223,10533913,4
+2585729,10533913,5
+125773849,10533913,4
+64620630,10533913,4
+dongba_puppet,10533913,5
+82267820,10533913,3
+79452257,10533913,4
+45133421,10533913,5
+yokoo630,10533913,4
+90769441,10533913,4
+54463600,10533913,3
+45529514,10533913,4
+polo-bear,10533913,4
+55375385,10533913,5
+yumengya,10533913,5
+71680452,10533913,3
+51275993,10533913,5
+2031014,10533913,5
+bebabay,10533913,3
+75611903,10533913,4
+89542438,10533913,5
+51224776,10533913,4
+wilhelmina,10533913,3
+leargirl,10533913,4
+26830263,10533913,4
+62968482,10533913,5
+san_qianfeng,10533913,5
+3311509,10533913,5
+2474699,10533913,4
+claireGuoDH,10533913,4
+49353802,10533913,5
+47357159,10533913,2
+44669432,10533913,5
+33893684,10533913,4
+69729743,10533913,4
+126014934,10533913,4
+bunnydoll,10533913,4
+msyaojing,10533913,4
+35776944,10533913,4
+liulijay,10533913,5
+49856775,10533913,5
+131473143,10533913,5
+uf0,10533913,4
+68816783,10533913,5
+77762504,10533913,5
+37371711,10533913,5
+45016565,10533913,5
+3869053,10533913,5
+mikarg,10533913,4
+4313535,10533913,5
+131622596,10533913,5
+58005758,10533913,5
+66670492,10533913,3
+nbot,10533913,5
+cheiry,10533913,4
+15923288,10533913,3
+52103092,10533913,4
+NO-doubanjiang,10533913,4
+52907345,10533913,4
+spc1992,10533913,3
+av13,10533913,3
+97415424,10533913,4
+abelleba,10533913,4
+yangchenlingstr,10533913,4
+lestayiran,10533913,5
+119296720,10533913,5
+shuiqi,10533913,5
+2126779,10533913,5
+132151907,10533913,3
+3618983,10533913,4
+leeva,10533913,4
+66647394,10533913,5
+119359941,10533913,5
+125748282,10533913,5
+chinabeta,10533913,4
+alicerobin,10533913,4
+3631042,10533913,4
+longislandiced,10533913,4
+67388709,10533913,5
+3437464,10533913,-1
+32836711,10533913,4
+134688476,10533913,5
+lly950412,10533913,4
+53295619,10533913,5
+69886132,10533913,5
+54783483,10533913,4
+2833136,10533913,4
+daoguangzi,10533913,3
+yoyopopo_325,10533913,5
+58207796,10533913,3
+periswallow,10533913,5
+beijingstone,10533913,5
+Misha-BesideYou,10533913,5
+46057903,10533913,5
+60020875,10533913,5
+62456672,10533913,5
+milkcandy,10533913,3
+44129318,10533913,5
+88449358,10533913,3
+41912100,10533913,4
+saintxi,10533913,4
+cinderella87.-_,10533913,5
+64805331,10533913,5
+3993595,10533913,5
+4776566,10533913,5
+110616918,10533913,4
+naschris,10533913,4
+63953878,10533913,5
+79734997,10533913,3
+52236886,10533913,5
+4261138,10533913,5
+59055667,10533913,5
+ryozth,10533913,4
+10918686,10533913,5
+yukikaoru,10533913,5
+voyasuki,10533913,5
+105864771,10533913,5
+1809252,10533913,5
+56225727,10533913,4
+3337362,10533913,5
+83177067,10533913,3
+chixixiaoyu228,10533913,4
+34969112,10533913,5
+Chenallen,10533913,5
+Scavengers1121,10533913,5
+54551463,10533913,5
+1806463,10533913,5
+128276358,10533913,5
+bebest,10533913,4
+Mirvv,10533913,5
+102289527,10533913,4
+132599218,10533913,5
+62466428,10533913,4
+131120554,10533913,5
+51183805,10533913,4
+61612027,10533913,5
+zjnsas,10533913,4
+2726151,10533913,5
+2605893,10533913,4
+HaLoveTeHoMe,10533913,5
+44453004,10533913,5
+70160255,10533913,5
+82454010,10533913,5
+48486077,10533913,4
+51090157,10533913,5
+46334603,10533913,2
+57449856,10533913,5
+68799111,10533913,4
+74286225,10533913,4
+107718660,10533913,4
+120579850,10533913,5
+2658903,10533913,5
+swy929,10533913,4
+fengxiaohelaoli,10533913,5
+1133756,10533913,4
+63349480,10533913,4
+FatladySlim,10533913,3
+59393765,10533913,4
+SunLiLiSun,10533913,5
+45463396,10533913,3
+115134728,10533913,5
+94213641,10533913,5
+3170874,10533913,4
+70057422,10533913,4
+lyq121140192,10533913,5
+58262603,10533913,2
+1460180,10533913,3
+55890778,10533913,5
+4496644,10533913,4
+79153013,10533913,5
+63820149,10533913,5
+81444373,10533913,5
+CyberKnight,10533913,4
+67351841,10533913,4
+moszz,10533913,5
+vivien_princess,10533913,4
+44121177,10533913,3
+59245915,10533913,3
+xujinjing,10533913,2
+Daruke,10533913,5
+BLuuuuE,10533913,3
+zhl19741130520,10533913,4
+58400700,10533913,4
+130978369,10533913,4
+69773402,10533913,3
+sair,10533913,4
+48160759,10533913,5
+YUN...,10533913,5
+followmyfaith,10533913,5
+hijikataT,10533913,4
+ifuya,10533913,4
+3529035,10533913,3
+122921919,10533913,5
+4044749,10533913,4
+joybang,10533913,5
+mistwalker,10533913,3
+121085525,10533913,5
+62345841,10533913,4
+48542981,10533913,3
+47754305,10533913,5
+3182859,10533913,3
+82620534,10533913,5
+mobikarl,10533913,2
+1923438,10533913,5
+102603343,10533913,5
+lovehyun,10533913,5
+zooyam,10533913,4
+55010409,10533913,4
+xunnight,10533913,5
+fannysalsa,10533913,5
+58547901,10533913,5
+montemou,10533913,4
+44976171,10533913,4
+liujinlin,10533913,4
+4210996,10533913,2
+jolie14,10533913,5
+47758915,10533913,5
+caoxudong818,10533913,4
+chihuoo,10533913,5
+42832142,10533913,4
+32535279,10533913,4
+69609271,10533913,5
+nineC,10533913,3
+seabelhsu,10533913,4
+84849322,10533913,5
+102530220,10533913,4
+53566385,10533913,5
+Obtson,10533913,4
+132424913,10533913,5
+129789094,10533913,4
+53431725,10533913,4
+131329189,10533913,-1
+lemon2010,10533913,5
+sssoul,10533913,-1
+3974458,10533913,4
+30158344,10533913,3
+55287270,10533913,4
+arzoo,10533913,3
+83229059,10533913,4
+pengyuwa,10533913,3
+77068892,10533913,4
+38736772,10533913,3
+90796911,10533913,5
+cheerjia,10533913,4
+cockerel,10533913,1
+58422964,10533913,4
+1714967,10533913,4
+56260072,10533913,5
+12320986,10533913,4
+66794476,10533913,5
+42292299,10533913,5
+mokop,10533913,5
+oisa,10533913,5
+3161053,10533913,4
+billryan,10533913,4
+swimming7891,10533913,4
+76624951,10533913,4
+77163427,10533913,5
+lyych,10533913,4
+62115196,10533913,5
+SHOUYOU,10533913,4
+87498159,10533913,5
+kingdoucloud,10533913,3
+13441174,10533913,5
+zipaiwang,10533913,3
+babyzhaolu,10533913,4
+57211554,10533913,4
+Dogma90,10533913,5
+yo35,10533913,-1
+jinsy,10533913,4
+43130115,10533913,4
+xiao8981,10533913,5
+dujiachen,10533913,5
+103356349,10533913,5
+44538646,10533913,5
+41837755,10533913,4
+50963591,10533913,5
+dearanonymity,10533913,2
+115164997,10533913,-1
+49917797,10533913,4
+2155168,10533913,4
+61455222,10533913,4
+51242802,10533913,5
+52678874,10533913,4
+hangecho,10533913,5
+31043480,10533913,5
+TIMTIM1105,10533913,4
+60874704,10533913,5
+84076381,10533913,5
+104918473,10533913,5
+katochiyo,10533913,4
+48475794,10533913,4
+44022921,10533913,5
+magilee0608,10533913,4
+as_shmily,10533913,4
+dyz_McAvoy,10533913,5
+134901053,10533913,5
+54270820,10533913,4
+shoushouan,10533913,5
+virginiaboat,10533913,-1
+130564437,10533913,5
+toboany,10533913,5
+50039035,10533913,5
+65785338,10533913,4
+lolita912331,10533913,5
+69532674,10533913,5
+55445917,10533913,5
+wuyulun1211,10533913,4
+lilong4174,10533913,4
+131535153,10533913,4
+fangyu0701,10533913,5
+supernic,10533913,5
+yufei707,10533913,4
+49079570,10533913,3
+49894875,10533913,4
+58071000,10533913,3
+qq530898920,10533913,5
+120066819,10533913,5
+flydreamer,10533913,5
+2420665,10533913,3
+4355562,10533913,5
+Vicia,10533913,5
+2370135,10533913,4
+68655237,10533913,5
+livingfly,10533913,5
+40704995,10533913,5
+126656579,10533913,5
+2421448,10533913,5
+vliangfrank,10533913,3
+48165389,10533913,-1
+2569676,10533913,5
+75437667,10533913,5
+luhome,10533913,5
+2239773,10533913,4
+athousand,10533913,4
+130930909,10533913,5
+jofanie,10533913,5
+131878841,10533913,5
+69929034,10533913,5
+57847785,10533913,4
+thomsonkoo,10533913,5
+48481117,10533913,4
+78679982,10533913,3
+vivi.sunny,10533913,5
+insomniaway,10533913,5
+53908763,10533913,4
+67958148,10533913,4
+2579882,10533913,4
+hyjstc,10533913,3
+64519164,10533913,5
+47199948,10533913,4
+52763361,10533913,5
+mylittleairport,10533913,4
+changbaobao,10533913,5
+74548173,10533913,4
+91930759,10533913,5
+66004905,10533913,5
+aolantuo7,10533913,3
+xmcog,10533913,5
+116614076,10533913,4
+37959469,10533913,5
+3658319,10533913,4
+53813339,10533913,5
+marchT,10533913,-1
+48512996,10533913,5
+gl56770978,10533913,4
+51354667,10533913,4
+49024860,10533913,3
+wangluling,10533913,4
+60599665,10533913,5
+enterzhu,10533913,5
+83031623,10533913,4
+122352396,10533913,4
+zizzyzizz,10533913,4
+53535524,10533913,4
+54556670,10533913,4
+53735204,10533913,5
+60735225,10533913,3
+HEYHo,10533913,5
+kikutani,10533913,4
+41787565,10533913,5
+53507443,10533913,4
+steamed_bun,10533913,4
+59537499,10533913,5
+zhawl,10533913,5
+78686717,10533913,4
+pangzimiao,10533913,4
+xiemingyuan,10533913,5
+45487670,10533913,5
+133499151,10533913,-1
+57812993,10533913,4
+50555792,10533913,4
+37133098,10533913,5
+51583306,10533913,5
+momoko_huang,10533913,4
+53308031,10533913,5
+30703512,10533913,5
+4272147,10533913,4
+44995539,10533913,3
+105938526,10533913,5
+72387002,10533913,5
+53914126,10533913,4
+SummerDuan,10533913,4
+48433802,10533913,5
+czdjl,10533913,5
+65720842,10533913,4
+69586673,10533913,5
+91515979,10533913,3
+89489154,10533913,5
+deasil,10533913,4
+wuqilong,10533913,5
+jiupai,10533913,4
+2843086,10533913,5
+70912234,10533913,4
+52708319,10533913,3
+52823077,10533913,5
+49470212,10533913,5
+99448103,10533913,4
+59586784,10533913,5
+qcdx013,10533913,5
+48692134,10533913,5
+xingzhe2011,10533913,5
+30268116,10533913,3
+58314106,10533913,5
+38821099,10533913,3
+in551w1,10533913,5
+shinysun,10533913,4
+bloodleopard,10533913,4
+87783060,10533913,4
+88539587,10533913,5
+97017536,10533913,5
+inrelief,10533913,5
+ColinRebirth,10533913,5
+60364408,10533913,5
+MagaraC,10533913,4
+newgnaw,10533913,5
+70315903,10533913,5
+70315903,10533913,5
+120285443,10533913,5
+2404986,10533913,5
+83847714,10533913,4
+DizzyFox,10533913,4
+1856131,10533913,5
+49141660,10533913,4
+58580022,10533913,5
+2265138,10533913,5
+smileforever,10533913,3
+56795809,10533913,5
+baijia1900,10533913,5
+maggiexu,10533913,5
+80902505,10533913,5
+59363812,10533913,5
+garconne,10533913,4
+98649579,10533913,5
+shanhuchuan,10533913,4
+55549573,10533913,5
+chen_cao,10533913,5
+keino-malus,10533913,5
+90532402,10533913,5
+56678240,10533913,5
+35668888,10533913,4
+4655496,10533913,4
+49191008,10533913,3
+59830157,10533913,5
+6243740,10533913,4
+1736294,10533913,5
+zMuer,10533913,4
+xhide,10533913,4
+42724768,10533913,3
+39611534,10533913,5
+carlo_,10533913,5
+zbar1234,10533913,5
+sugarjojo,10533913,5
+55835081,10533913,5
+44257922,10533913,4
+sunjinrui,10533913,5
+52206432,10533913,5
+42927631,10533913,3
+ELSIE627,10533913,5
+48183944,10533913,5
+xx218,10533913,4
+35200039,10533913,5
+oldmanriver,10533913,5
+malianmiss,10533913,4
+53777590,10533913,3
+63245856,10533913,5
+hdjjys,10533913,4
+64071683,10533913,4
+83829939,10533913,4
+58963446,10533913,4
+14363390,10533913,4
+2681017,10533913,3
+44483583,10533913,5
+Lizyjs,10533913,4
+sweeper,10533913,5
+133809272,10533913,-1
+50086182,10533913,5
+LasciatemiMorir,10533913,3
+49253215,10533913,4
+atomziyu,10533913,5
+77037611,10533913,3
+Bettylsb,10533913,5
+seeker_,10533913,5
+6576481,10533913,5
+81301720,10533913,4
+26633627,10533913,5
+dyinsun,10533913,5
+135551793,10533913,4
+GQY,10533913,4
+zhongxueli,10533913,1
+63819525,10533913,5
+98344279,10533913,5
+47873866,10533913,4
+82269158,10533913,4
+puppy33,10533913,5
+56206646,10533913,5
+Who.care.,10533913,4
+72938023,10533913,5
+52562065,10533913,4
+127449662,10533913,3
+dbpigeeyore,10533913,4
+youtian815,10533913,5
+59354182,10533913,5
+FIONAMOK,10533913,5
+122287111,10533913,4
+61160709,10533913,5
+49853837,10533913,3
+132466611,10533913,-1
+maying,10533913,4
+qianlijun,10533913,5
+67717597,10533913,5
+33330297,10533913,4
+51279827,10533913,4
+Yichun_D,10533913,5
+zzgpyfz,10533913,4
+sentexiaohu,10533913,4
+69457010,10533913,5
+107704699,10533913,5
+4459976,10533913,4
+97649336,10533913,4
+47495254,10533913,3
+15368535,10533913,4
+71121278,10533913,5
+liuweilian,10533913,5
+121736995,10533913,5
+55683912,10533913,4
+Beth0204,10533913,4
+54474181,10533913,5
+Gerrard_8,10533913,4
+56814340,10533913,3
+shuimudeyu1990,10533913,4
+eason0210,10533913,4
+6314014,10533913,4
+54457207,10533913,4
+44823829,10533913,5
+tracyshin,10533913,4
+109113938,10533913,5
+largind,10533913,5
+1913258,10533913,4
+yangyiwen,10533913,4
+3377445,10533913,4
+CobbWalt,10533913,5
+52269289,10533913,4
+60583715,10533913,5
+3481292,10533913,4
+devfeature,10533913,4
+juuarashi,10533913,5
+58096445,10533913,4
+3561318,10533913,5
+2218484,10533913,5
+yuphymiachin,10533913,4
+48875971,10533913,4
+16073149,10533913,5
+3803467,10533913,-1
+alla,10533913,4
+67831727,10533913,4
+94579920,10533913,5
+4132864,10533913,5
+siorjot,10533913,5
+wclov,10533913,5
+47583222,10533913,5
+113418380,10533913,5
+69095910,10533913,5
+1145700,10533913,4
+OpheliaL,10533913,3
+cris7ss,10533913,5
+speechlessdd,10533913,5
+3957439,10533913,4
+50204008,10533913,5
+ishtarie,10533913,4
+78997134,10533913,5
+126971318,10533913,5
+58956706,10533913,5
+bunnyzizi,10533913,5
+53126913,10533913,5
+hippokun,10533913,4
+62880392,10533913,-1
+120357976,10533913,5
+alisa_lea,10533913,5
+2593133,10533913,4
+65369148,10533913,3
+36676686,10533913,5
+Raisin,10533913,4
+AlBiKlose,10533913,5
+68511299,10533913,3
+connie.cheung,10533913,4
+104605800,10533913,5
+93201445,10533913,5
+132092156,10533913,5
+73892674,10533913,5
+92809978,10533913,5
+closeyoureyes,10533913,4
+17499641,10533913,4
+zhixiangtian,10533913,5
+41497994,10533913,5
+58068960,10533913,5
+48047755,10533913,4
+44272314,10533913,4
+125275470,10533913,3
+71897174,10533913,5
+2183610,10533913,3
+86807524,10533913,5
+68215557,10533913,4
+132025988,10533913,4
+48349431,10533913,5
+68531336,10533913,4
+58702398,10533913,5
+70614930,10533913,5
+boilingcc,10533913,5
+stk7033,10533913,5
+50257103,10533913,5
+Koko_head,10533913,5
+Lumiere5200,10533913,4
+hm512,10533913,3
+chongchong1990,10533913,-1
+kiddingme,10533913,5
+75938815,10533913,5
+sophiemay,10533913,-1
+sockbabyclaire,10533913,4
+lovely_love,10533913,3
+roentgen,10533913,5
+4200326,10533913,3
+JamesPound,10533913,5
+63345058,10533913,5
+sirs,10533913,5
+14633719,10533913,4
+79215325,10533913,5
+hejinsomething,10533913,5
+elevenzhang,10533913,3
+54931017,10533913,4
+94782987,10533913,4
+Sun15,10533913,5
+3982610,10533913,5
+hawa1214,10533913,5
+81732078,10533913,5
+2195388,10533913,3
+106584887,10533913,5
+yimaima,10533913,4
+128111484,10533913,-1
+3772330,10533913,4
+72699591,10533913,4
+42228146,10533913,4
+63391208,10533913,4
+siying541,10533913,5
+108277867,10533913,5
+pandasleepy,10533913,4
+55512950,10533913,-1
+Fish_Fish_,10533913,5
+hollyhui,10533913,5
+61489588,10533913,4
+istas,10533913,5
+124948670,10533913,4
+Rencee,10533913,5
+aggieme11,10533913,3
+63998046,10533913,4
+4013665,10533913,4
+wutheringshi,10533913,1
+AAAhua,10533913,2
+48841040,10533913,4
+35095860,10533913,4
+s1219snow,10533913,5
+130404781,10533913,5
+weremanutd123,10533913,5
+121629494,10533913,5
+justinnext,10533913,5
+2721426,10533913,5
+hanbingxue,10533913,5
+69302580,10533913,5
+53851569,10533913,4
+132640037,10533913,3
+1820379,10533913,5
+66616733,10533913,5
+47175904,10533913,4
+48036288,10533913,5
+cloverllx,10533913,2
+4291484,10533913,4
+takoyaki,10533913,4
+87939753,10533913,5
+xuyuhaouriz,10533913,5
+triple3,10533913,4
+3044425,10533913,5
+laurawang,10533913,4
+muziadao,10533913,5
+youngton,10533913,4
+1319544,10533913,4
+69045210,10533913,4
+57543847,10533913,4
+88260020,10533913,5
+2740917,10533913,5
+loftywain,10533913,4
+66948108,10533913,5
+83662798,10533913,4
+37058834,10533913,5
+PoooZz,10533913,5
+weexf,10533913,5
+2495913,10533913,4
+zhuangdikun,10533913,5
+80726886,10533913,4
+2293401,10533913,4
+47150701,10533913,5
+fengjiansun,10533913,5
+Sophie.,10533913,5
+46899693,10533913,4
+38538166,10533913,4
+129293724,10533913,5
+34187825,10533913,4
+1717660,10533913,5
+53010578,10533913,-1
+4307095,10533913,4
+68869311,10533913,4
+121044112,10533913,4
+Reignian,10533913,5
+Hello-Momoko,10533913,5
+77691678,10533913,4
+brucas,10533913,3
+54731797,10533913,4
+pangdashen,10533913,3
+4284029,10533913,5
+4040316,10533913,5
+77644475,10533913,5
+134915437,10533913,4
+60406508,10533913,4
+42663693,10533913,5
+36360632,10533913,3
+65301397,10533913,4
+56137069,10533913,5
+2571425,10533913,4
+babyfishjj,10533913,4
+57605115,10533913,5
+18209533,10533913,5
+43239441,10533913,5
+1050739,10533913,4
+56912820,10533913,4
+2837832,10533913,4
+63321494,10533913,5
+4747719,10533913,5
+Dcynic,10533913,5
+72808838,10533913,5
+25795086,10533913,5
+57246795,10533913,5
+53467813,10533913,4
+13707133,10533913,5
+115697810,10533913,5
+122635365,10533913,4
+3687786,10533913,4
+48328968,10533913,5
+52708584,10533913,2
+93122537,10533913,4
+ycy19870313,10533913,4
+69838036,10533913,4
+ywyjennifer,10533913,5
+76392901,10533913,5
+69556914,10533913,5
+79844827,10533913,4
+53957821,10533913,4
+128450167,10533913,4
+shire,10533913,3
+hanaling,10533913,4
+81926873,10533913,5
+an-sirens,10533913,4
+nbyuan,10533913,4
+1918584,10533913,5
+imellie,10533913,3
+62352557,10533913,5
+64202455,10533913,4
+45791353,10533913,5
+aiyos,10533913,3
+34864713,10533913,4
+62705115,10533913,5
+terryji,10533913,5
+63064615,10533913,5
+4145186,10533913,5
+31102423,10533913,4
+127515504,10533913,5
+Bainan,10533913,4
+bluelemon,10533913,4
+61289790,10533913,5
+Elisa.ma,10533913,4
+astrology11,10533913,5
+66996353,10533913,5
+bamboonie,10533913,-1
+cwyalpha,10533913,5
+fzlinyanxia,10533913,2
+78945703,10533913,4
+liaojiafen,10533913,4
+1340085,10533913,5
+30714456,10533913,4
+45598227,10533913,5
+46234987,10533913,5
+89709568,10533913,3
+2327763,10533913,5
+pengpeng,10533913,5
+132813456,10533913,3
+1366592,10533913,5
+131055900,10533913,5
+43688314,10533913,5
+64167564,10533913,5
+64167564,10533913,5
+Qianlumanman,10533913,5
+jixixi,10533913,5
+bluebluefish,10533913,5
+33133224,10533913,5
+50480717,10533913,4
+56044350,10533913,5
+34728183,10533913,5
+51926666,10533913,4
+dingdanglbh,10533913,3
+133816961,10533913,5
+48506705,10533913,5
+65700849,10533913,5
+53740100,10533913,4
+77394245,10533913,5
+dcly,10533913,5
+15146438,10533913,4
+85665063,10533913,4
+55637099,10533913,3
+summerwoods,10533913,5
+leocas,10533913,5
+orchid714,10533913,4
+104511788,10533913,5
+36463636,10533913,-1
+4287880,10533913,5
+19848707,10533913,5
+niler,10533913,3
+Mrscorpio,10533913,5
+Creep_v,10533913,5
+eagleeye,10533913,5
+53669377,10533913,5
+50404313,10533913,4
+2216486,10533913,3
+45574013,10533913,4
+liluoliluo,10533913,4
+77862080,10533913,5
+1971155,10533913,3
+2613863,10533913,3
+57668007,10533913,-1
+millerwong,10533913,5
+3922341,10533913,5
+52468126,10533913,5
+3430040,10533913,-1
+4674424,10533913,4
+91427481,10533913,5
+haizeiq,10533913,4
+pixie,10533913,3
+79680480,10533913,5
+53829658,10533913,5
+62515963,10533913,3
+layu,10533913,2
+53823418,10533913,5
+gray1210,10533913,-1
+89187307,10533913,3
+88740388,10533913,5
+2099027,10533913,5
+Her_Mione,10533913,3
+59813466,10533913,5
+47029323,10533913,5
+quatre33,10533913,5
+badbye,10533913,4
+Y.ever,10533913,-1
+53601519,10533913,3
+huoniu,10533913,4
+44286506,10533913,5
+zangbianxuegu,10533913,4
+2798198,10533913,4
+41236968,10533913,5
+6606600,10533913,-1
+51171341,10533913,3
+65489493,10533913,5
+caesarphoenix,10533913,-1
+Juno14,10533913,4
+71808498,10533913,4
+94273870,10533913,4
+130851961,10533913,5
+1783093,10533913,4
+4372093,10533913,5
+49515750,10533913,5
+95243004,10533913,5
+101931076,10533913,5
+57542378,10533913,5
+kid007spy,10533913,4
+wcy1997,10533913,5
+124257806,10533913,5
+kylingu,10533913,3
+87602683,10533913,4
+cheeseflower,10533913,4
+134257829,10533913,4
+127466089,10533913,4
+somewhere,10533913,5
+57880300,10533913,5
+june1111,10533913,5
+132576897,10533913,3
+1011787,10533913,5
+60799185,10533913,4
+1378503,10533913,4
+55770977,10533913,5
+131616351,10533913,2
+david880614,10533913,5
+4654940,10533913,-1
+57348921,10533913,4
+119284862,10533913,4
+mikadu,10533913,4
+77890563,10533913,4
+92311657,10533913,5
+49891253,10533913,5
+36339118,10533913,4
+24571201,10533913,5
+72180654,10533913,5
+4294774,10533913,5
+70729984,10533913,4
+47413356,10533913,4
+48181580,10533913,-1
+me2shy,10533913,5
+2565519,10533913,5
+55406228,10533913,4
+1575077,10533913,4
+Hopee,10533913,5
+43303495,10533913,5
+93142720,10533913,4
+coffeeshop,10533913,4
+summerose,10533913,3
+thezealer,10533913,5
+48441251,10533913,4
+65309880,10533913,3
+38949842,10533913,4
+58797277,10533913,5
+94585757,10533913,4
+Shane-SISU,10533913,3
+42279482,10533913,3
+Grubby0126,10533913,5
+46258886,10533913,5
+48046895,10533913,-1
+38629632,10533913,4
+46811981,10533913,2
+tcheng,10533913,4
+52335309,10533913,3
+nikita0424,10533913,4
+99075022,10533913,3
+4361447,10533913,4
+67613066,10533913,5
+4019961,10533913,3
+1937088,10533913,5
+dustybaby,10533913,4
+78182755,10533913,5
+sky428,10533913,5
+JoshLee525,10533913,4
+Just_vv,10533913,5
+72596442,10533913,4
+43767898,10533913,5
+miaomiaomiaomad,10533913,3
+122990703,10533913,4
+49164975,10533913,4
+littleshy,10533913,3
+36031855,10533913,4
+has5211314,10533913,5
+mainemay,10533913,5
+121716592,10533913,1
+49866554,10533913,5
+sophie.sue,10533913,4
+howardgy,10533913,5
+r20085,10533913,4
+52522134,10533913,5
+128422906,10533913,5
+88211283,10533913,5
+44535286,10533913,2
+4469476,10533913,-1
+violet412,10533913,3
+wagobian,10533913,4
+55575289,10533913,5
+fm4714,10533913,3
+81927453,10533913,4
+77830555,10533913,4
+58188727,10533913,5
+28312683,10533913,2
+88200565,10533913,2
+niu513,10533913,-1
+32806849,10533913,5
+3059063,10533913,5
+schumibati,10533913,5
+Eough,10533913,5
+27764324,10533913,5
+seizeup,10533913,4
+shadowall,10533913,5
+54860587,10533913,5
+M_,10533913,4
+mafially,10533913,3
+76903484,10533913,4
+61992166,10533913,4
+3387308,10533913,4
+126500017,10533913,4
+93404395,10533913,4
+everisle,10533913,-1
+vanjuta,10533913,3
+52915843,10533913,3
+julynse,10533913,3
+leoye,10533913,-1
+mianlaonan,10533913,5
+2861869,10533913,3
+83264508,10533913,5
+54570567,10533913,5
+RIVERT,10533913,3
+2238497,10533913,5
+Jessun,10533913,4
+57726967,10533913,5
+eastern,10533913,4
+mr.slow,10533913,4
+wmwm,10533913,4
+38595603,10533913,4
+54234447,10533913,4
+Nickhsu,10533913,3
+52840916,10533913,4
+lcx79,10533913,4
+48483774,10533913,5
+58878500,10533913,3
+63358932,10533913,5
+44055234,10533913,5
+blacktea077,10533913,5
+42835041,10533913,5
+25420581,10533913,4
+FFLonestar,10533913,5
+1915708,10533913,4
+37390884,10533913,4
+78763010,10533913,5
+53074797,10533913,5
+fionaseven7,10533913,5
+CAROHANNAH,10533913,5
+pm,10533913,5
+2049714,10533913,4
+55844039,10533913,5
+67285298,10533913,4
+71062374,10533913,5
+eddeeee,10533913,5
+yinxiang,10533913,5
+Dadaspurs,10533913,3
+61134398,10533913,4
+54790827,10533913,5
+87569634,10533913,5
+108893834,10533913,4
+59901599,10533913,5
+allentear,10533913,4
+49879597,10533913,5
+123977133,10533913,5
+44919145,10533913,4
+68152466,10533913,3
+48985833,10533913,5
+daydayfree,10533913,5
+31563326,10533913,5
+104396401,10533913,3
+49265279,10533913,5
+1510920,10533913,5
+84044865,10533913,5
+128958875,10533913,1
+75274306,10533913,4
+highlightxing,10533913,5
+21338461,10533913,4
+61241050,10533913,5
+R10050820,10533913,5
+36627775,10533913,-1
+15716080,10533913,4
+63822026,10533913,5
+14167253,10533913,4
+phunny,10533913,3
+119427193,10533913,4
+45236466,10533913,3
+3340201,10533913,4
+4292582,10533913,4
+135754076,10533913,4
+63924842,10533913,4
+49626330,10533913,5
+135746994,10533913,5
+ni484sa,10533913,3
+ztjlscm,10533913,5
+71325468,10533913,4
+128099844,10533913,5
+miaomi,10533913,4
+cougar51,10533913,5
+vienna76,10533913,4
+2399727,10533913,4
+63208019,10533913,5
+79708662,10533913,4
+yellowquiet,10533913,5
+74954730,10533913,4
+63007484,10533913,4
+131927527,10533913,4
+58337655,10533913,5
+41629334,10533913,5
+4014678,10533913,4
+UncleTS,10533913,3
+lalimaomao,10533913,3
+46534906,10533913,4
+53893183,10533913,4
+dafufu,10533913,5
+90688889,10533913,5
+Fadeagony,10533913,5
+4028163,10533913,5
+54462951,10533913,4
+5466368,10533913,4
+45008619,10533913,4
+59872286,10533913,5
+133900665,10533913,4
+101462888,10533913,4
+47864365,10533913,5
+2298209,10533913,4
+maryzhao,10533913,5
+72556877,10533913,4
+91994560,10533913,4
+44267163,10533913,4
+108241953,10533913,5
+113924103,10533913,4
+116277759,10533913,5
+49441461,10533913,5
+3667311,10533913,4
+panrunni,10533913,5
+67286401,10533913,5
+1511879,10533913,-1
+ttcucu,10533913,5
+nemofishhome,10533913,5
+32569876,10533913,5
+72382152,10533913,5
+78801731,10533913,5
+75045017,10533913,5
+yueyuebetty,10533913,-1
+A-Cat,10533913,4
+63458600,10533913,4
+zoe315,10533913,4
+51836771,10533913,5
+michaelcc,10533913,5
+17991181,10533913,4
+benbenmuxi,10533913,3
+47297505,10533913,5
+70950521,10533913,5
+jiujiufan,10533913,4
+CINDY_YL,10533913,4
+53303549,10533913,5
+silverlee,10533913,2
+35233003,10533913,5
+82406719,10533913,3
+1728191,10533913,3
+1475172,10533913,4
+Ronicalee,10533913,5
+thegreatkoala,10533913,4
+SECKY,10533913,5
+25970354,10533913,5
+irislovelfie,10533913,4
+78667857,10533913,5
+110172016,10533913,3
+51887534,10533913,4
+41815717,10533913,-1
+firew0rk,10533913,5
+122605310,10533913,4
+114841876,10533913,5
+52153576,10533913,4
+chaosconst,10533913,5
+hljmsfy,10533913,5
+ZhuYeah,10533913,5
+Sola.Philo,10533913,5
+javy,10533913,5
+saemahr,10533913,3
+42301539,10533913,5
+64203397,10533913,5
+36034980,10533913,5
+jeffmsu,10533913,5
+55507630,10533913,5
+84269014,10533913,5
+huibaofighting,10533913,5
+122879836,10533913,5
+yoky,10533913,5
+27323715,10533913,4
+98566963,10533913,5
+FlowerCharlotte,10533913,4
+CINDYCINDY,10533913,4
+leikea,10533913,5
+ivyfly,10533913,5
+emily0016,10533913,5
+2198591,10533913,5
+sirroy,10533913,5
+idoris,10533913,5
+57488053,10533913,5
+131610219,10533913,5
+56218882,10533913,5
+80275782,10533913,5
+53344172,10533913,5
+djoko,10533913,5
+yixiaoxiao,10533913,5
+tudouniba,10533913,4
+wtforz,10533913,3
+gaomars,10533913,5
+3533069,10533913,5
+3531317,10533913,-1
+69000298,10533913,5
+2550908,10533913,4
+49199639,10533913,4
+65010225,10533913,4
+freezinggl,10533913,5
+longxsen,10533913,5
+yamilove,10533913,5
+66241350,10533913,4
+ibx,10533913,4
+Y.muffin,10533913,5
+39015968,10533913,4
+jimuwawa,10533913,5
+lee0402,10533913,5
+53682563,10533913,4
+kkguagangqin,10533913,3
+113285477,10533913,4
+guitar_poker,10533913,5
+anygned,10533913,5
+78713550,10533913,3
+53001575,10533913,5
+chrisyx,10533913,4
+88292094,10533913,3
+cskywalker,10533913,3
+benbenxjy,10533913,3
+Niro-Zeng,10533913,5
+132956553,10533913,4
+ToscanaSole,10533913,5
+12744553,10533913,5
+103985636,10533913,-1
+February,10533913,4
+41090517,10533913,5
+isabell520,10533913,5
+3663683,10533913,5
+129582003,10533913,5
+paandpa,10533913,5
+96305246,10533913,5
+mikiya,10533913,5
+renth,10533913,5
+mobaix,10533913,5
+movie007wn,10533913,5
+53854833,10533913,5
+134342824,10533913,5
+59136619,10533913,4
+62872014,10533913,4
+tonyzhao,10533913,4
+essies,10533913,5
+1926820,10533913,5
+122315157,10533913,5
+43580067,10533913,5
+59858658,10533913,5
+1585106,10533913,4
+iyyhua,10533913,4
+52381121,10533913,3
+1213382,10533913,4
+41629007,10533913,4
+39953503,10533913,3
+ninewords,10533913,5
+97011307,10533913,5
+13879032,10533913,4
+61934550,10533913,5
+zilan11,10533913,4
+103979483,10533913,4
+suck-man,10533913,5
+1259506,10533913,4
+Beta-Juliet,10533913,5
+57928041,10533913,5
+vivifly,10533913,5
+35342792,10533913,4
+tea123,10533913,4
+78352623,10533913,5
+50374697,10533913,5
+132794710,10533913,4
+92969971,10533913,5
+lingdesign,10533913,-1
+joyotone,10533913,5
+68568891,10533913,4
+60223940,10533913,5
+63777506,10533913,5
+daheiluozi,10533913,5
+56965643,10533913,5
+62764426,10533913,4
+62658973,10533913,5
+54856887,10533913,4
+69163080,10533913,5
+caizichen,10533913,5
+LancySiu,10533913,5
+ft5239328,10533913,5
+119327333,10533913,4
+xiaodao102,10533913,5
+47170402,10533913,5
+52235575,10533913,5
+103380368,10533913,5
+sixsea,10533913,4
+48981791,10533913,4
+134522617,10533913,3
+102885531,10533913,5
+76943413,10533913,2
+17871243,10533913,4
+37757378,10533913,5
+13833588,10533913,4
+2787490,10533913,5
+50969962,10533913,4
+30446054,10533913,5
+vilasecret,10533913,4
+63444910,10533913,3
+65691295,10533913,5
+123449328,10533913,4
+52358087,10533913,4
+dodolxy,10533913,4
+duolamaoxian,10533913,5
+122127116,10533913,4
+65719691,10533913,5
+marlborosin,10533913,4
+43667084,10533913,5
+moby132,10533913,4
+52051860,10533913,4
+muyunattitude,10533913,5
+52935293,10533913,5
+vianbar,10533913,5
+123097653,10533913,4
+57024094,10533913,5
+46424200,10533913,4
+58253013,10533913,5
+49133883,10533913,-1
+3213321,10533913,5
+cindyrabit,10533913,5
+58109203,10533913,5
+99291502,10533913,3
+90415514,10533913,5
+90415514,10533913,5
+46567371,10533913,5
+122891503,10533913,5
+sophiayou,10533913,5
+leah-lee,10533913,5
+onemach,10533913,5
+92468807,10533913,5
+3601408,10533913,5
+73096568,10533913,5
+52069287,10533913,5
+XixiQ,10533913,5
+63493367,10533913,4
+56955441,10533913,5
+48481364,10533913,4
+62210177,10533913,5
+2799788,10533913,5
+yjab777,10533913,4
+39863904,10533913,5
+40931837,10533913,4
+easonkoko,10533913,5
+pylee,10533913,5
+movie8,10533913,5
+iamzcd,10533913,5
+CreamBaoBao,10533913,4
+98379378,10533913,3
+konie,10533913,3
+66860925,10533913,5
+ling0816,10533913,4
+83747530,10533913,5
+123543090,10533913,5
+miffyyoung,10533913,5
+3890315,10533913,5
+3063479,10533913,4
+4244492,10533913,5
+64396292,10533913,5
+56244191,10533913,5
+57973989,10533913,4
+zhujiao,10533913,5
+128616912,10533913,5
+4370207,10533913,5
+ohagur,10533913,5
+8718496,10533913,5
+74679165,10533913,5
+120487042,10533913,5
+83188009,10533913,5
+popzoe,10533913,3
+48707415,10533913,4
+45226797,10533913,4
+nalusea,10533913,4
+4905483,10533913,-1
+zeph1462,10533913,5
+yingtaozi07,10533913,4
+z.i.c.,10533913,5
+49206730,10533913,5
+DianyLee,10533913,5
+23598335,10533913,5
+46480705,10533913,3
+haibei_solo,10533913,5
+changzheng,10533913,4
+57947049,10533913,4
+57947049,10533913,4
+elsolmysun,10533913,5
+58158842,10533913,5
+119877759,10533913,4
+PhilZH,10533913,5
+2870381,10533913,3
+ftium4,10533913,5
+yezihanxu,10533913,4
+Uni_zz,10533913,5
+52846746,10533913,5
+60624598,10533913,4
+hthj,10533913,5
+75707444,10533913,4
+60727909,10533913,5
+77405783,10533913,5
+92321464,10533913,5
+rokuko1859,10533913,5
+133978729,10533913,4
+FORDOOf4,10533913,-1
+louleihui,10533913,5
+84775325,10533913,4
+63669349,10533913,5
+suren11,10533913,4
+little_cupid,10533913,4
+122869293,10533913,4
+Thangka,10533913,5
+leonalewis,10533913,5
+xiaodou52,10533913,4
+mathilda_4606,10533913,5
+mcbird3017,10533913,5
+46672889,10533913,3
+4337658,10533913,4
+11561453,10533913,5
+55292823,10533913,2
+haihouzhi,10533913,5
+hhy2013,10533913,4
+chichimiao,10533913,3
+114616367,10533913,5
+Flipped_Judy,10533913,5
+33523138,10533913,5
+73507935,10533913,5
+50169799,10533913,4
+43617047,10533913,5
+81798239,10533913,5
+zzsilence,10533913,5
+58132844,10533913,4
+59684689,10533913,5
+135228152,10533913,3
+BIRDBRAIN,10533913,5
+1230019,10533913,4
+vividzjr,10533913,4
+caiduo7,10533913,5
+81326728,10533913,5
+57597976,10533913,5
+45489324,10533913,3
+102611296,10533913,5
+JanC,10533913,3
+72571807,10533913,5
+sophia-xiao,10533913,5
+57698231,10533913,4
+85430048,10533913,5
+zsuredrain,10533913,5
+52103871,10533913,5
+51992165,10533913,5
+lpjxc,10533913,5
+86136547,10533913,5
+47375462,10533913,4
+1227418,10533913,3
+57262819,10533913,4
+4114315,10533913,5
+91114065,10533913,5
+3950260,10533913,5
+lockrock,10533913,5
+135671469,10533913,5
+niazion,10533913,5
+65136878,10533913,4
+34005046,10533913,4
+xiaomu0813,10533913,4
+45925639,10533913,4
+smilemiaomiao,10533913,4
+nothing7139,10533913,3
+Ujara,10533913,5
+50050245,10533913,5
+1033926,10533913,4
+benjemin,10533913,5
+2472187,10533913,4
+62498401,10533913,5
+3481297,10533913,4
+59890530,10533913,5
+lijin606,10533913,5
+1559062,10533913,4
+121480587,10533913,4
+43332807,10533913,4
+imlyc,10533913,5
+42808435,10533913,4
+3769878,10533913,4
+43887470,10533913,4
+132619002,10533913,5
+103122769,10533913,5
+45779217,10533913,5
+96000077,10533913,5
+cyyzzz,10533913,5
+74558929,10533913,4
+46817011,10533913,5
+coldtealast,10533913,5
+39364196,10533913,4
+Hans_Du,10533913,4
+62884241,10533913,5
+82687720,10533913,4
+50733014,10533913,5
+46333291,10533913,5
+NINA0220,10533913,5
+1494780,10533913,4
+49149323,10533913,4
+93651159,10533913,5
+45198943,10533913,3
+akanetx,10533913,5
+gagaye,10533913,5
+47058104,10533913,5
+tuirt,10533913,5
+sacwr,10533913,5
+134310076,10533913,5
+81760284,10533913,5
+18747582,10533913,4
+skyofhaley,10533913,4
+79148662,10533913,-1
+kitsch2013,10533913,4
+60486798,10533913,3
+18984732,10533913,5
+70955640,10533913,-1
+xiaofeixia1108,10533913,5
+111014208,10533913,4
+dstingting,10533913,5
+53909997,10533913,5
+127048497,10533913,5
+56364233,10533913,5
+46068027,10533913,5
+bessiej,10533913,5
+4217605,10533913,4
+48941229,10533913,4
+64480930,10533913,4
+134198569,10533913,5
+57479148,10533913,5
+fan_1220,10533913,3
+1963507,10533913,5
+126911292,10533913,4
+takuyayueyue,10533913,5
+119084031,10533913,5
+52765669,10533913,4
+minox,10533913,3
+79127642,10533913,5
+119273544,10533913,3
+54437511,10533913,5
+51840690,10533913,5
+49294423,10533913,4
+2402657,10533913,5
+rainloveyy,10533913,5
+90161175,10533913,5
+87237465,10533913,4
+opheliafeeling,10533913,5
+mitianle,10533913,5
+sbbisabel,10533913,-1
+103894071,10533913,4
+1550135,10533913,5
+55999327,10533913,5
+Georginaxx,10533913,5
+94625759,10533913,5
+gengzi,10533913,5
+68227361,10533913,5
+1369113,10533913,5
+62517955,10533913,-1
+1956749,10533913,3
+66880325,10533913,5
+6532656,10533913,5
+70569522,10533913,5
+62879204,10533913,2
+4161489,10533913,5
+cloudlandlord,10533913,3
+GUYU7,10533913,4
+4287326,10533913,4
+rehina,10533913,5
+120735552,10533913,5
+68617708,10533913,4
+2219911,10533913,5
+singdraw,10533913,4
+weizen,10533913,4
+wooya,10533913,5
+1056656,10533913,4
+litian19890502,10533913,5
+sinkerone,10533913,4
+hollyjun,10533913,5
+71478394,10533913,5
+bluered,10533913,4
+100582359,10533913,5
+62069375,10533913,5
+nanadong,10533913,5
+Shelly0623,10533913,4
+82022775,10533913,4
+jpjc222,10533913,4
+beebeandewr,10533913,5
+beebeandewr,10533913,5
+133315176,10533913,5
+languheshang,10533913,5
+37584896,10533913,4
+snowkit,10533913,5
+135559997,10533913,4
+MaggieFA,10533913,5
+BlairZ2010,10533913,5
+81850559,10533913,5
+130762415,10533913,3
+mrsrost,10533913,5
+74575002,10533913,5
+miniville,10533913,-1
+2274906,10533913,5
+dingtian911,10533913,3
+dentist,10533913,5
+57842655,10533913,4
+37003743,10533913,4
+4104001,10533913,5
+58040832,10533913,4
+95670618,10533913,5
+myfreedom13,10533913,5
+eastease,10533913,5
+minoindemo,10533913,5
+2248587,10533913,4
+cappuccino-jl,10533913,5
+shunong,10533913,4
+lss0811,10533913,5
+derek8356,10533913,5
+47273453,10533913,4
+willdawn,10533913,5
+azuremoon0118,10533913,-1
+tidotuantuan,10533913,4
+53574617,10533913,5
+77186305,10533913,4
+59433731,10533913,5
+2314752,10533913,5
+Draco-w,10533913,3
+8466521,10533913,5
+61533902,10533913,-1
+zhuweina,10533913,5
+2082288,10533913,5
+46142725,10533913,4
+16620964,10533913,5
+45490622,10533913,5
+81765406,10533913,4
+131500891,10533913,4
+57981890,10533913,3
+92122621,10533913,5
+Mrs_Dalloway,10533913,4
+84800146,10533913,5
+56076845,10533913,4
+46119315,10533913,-1
+ThroughTheNever,10533913,5
+wangyuezuiai,10533913,5
+3815024,10533913,5
+95760379,10533913,1
+59752532,10533913,5
+65283286,10533913,5
+foreverroad,10533913,5
+43069509,10533913,5
+2247430,10533913,4
+120547538,10533913,4
+tykm,10533913,3
+ile,10533913,4
+4623641,10533913,4
+65162469,10533913,5
+53857925,10533913,4
+126123688,10533913,2
+68561607,10533913,3
+2973220,10533913,4
+44208359,10533913,5
+59748193,10533913,5
+c12064,10533913,4
+56223706,10533913,5
+84762957,10533913,4
+81757410,10533913,5
+58308697,10533913,5
+35408803,10533913,5
+47127791,10533913,5
+wubingheng,10533913,4
+misue,10533913,5
+52762105,10533913,4
+56875123,10533913,2
+55410872,10533913,4
+59660757,10533913,5
+99384776,10533913,5
+48463460,10533913,5
+44191956,10533913,5
+53581376,10533913,5
+54740080,10533913,4
+jinzeyu007,10533913,5
+74249669,10533913,5
+66400318,10533913,4
+51606142,10533913,5
+iamfine3q,10533913,3
+26265440,10533913,5
+2186544,10533913,5
+2653727,10533913,5
+30285418,10533913,3
+30285418,10533913,3
+rabbityear,10533913,5
+lmlwahaha,10533913,5
+130644933,10533913,5
+52726464,10533913,4
+4750129,10533913,5
+kobe3324108,10533913,1
+53746304,10533913,3
+lernm,10533913,3
+75576104,10533913,5
+momo_722,10533913,4
+43191706,10533913,5
+Jobszhuisui9,10533913,5
+40325873,10533913,5
+62949960,10533913,5
+H-huan,10533913,5
+74573393,10533913,4
+102247423,10533913,5
+61999162,10533913,5
+79849225,10533913,4
+xhm,10533913,4
+48920065,10533913,5
+elephant0823,10533913,5
+luezhuan,10533913,4
+4853521,10533913,5
+nuoweibai11,10533913,5
+wuzhuan105,10533913,4
+64767578,10533913,5
+55937351,10533913,4
+45786589,10533913,3
+108481476,10533913,5
+lrq92livecn,10533913,5
+candy_maoshijia,10533913,5
+60891750,10533913,5
+82578171,10533913,5
+50028709,10533913,3
+3322308,10533913,4
+132718277,10533913,5
+dove219,10533913,5
+47467920,10533913,3
+47467920,10533913,3
+58193839,10533913,5
+26728897,10533913,5
+38151651,10533913,5
+3806312,10533913,3
+40684892,10533913,5
+76076225,10533913,5
+88181408,10533913,5
+surgdy1008,10533913,5
+2248138,10533913,5
+49533141,10533913,4
+129503817,10533913,3
+AstrianZheng,10533913,5
+80357218,10533913,3
+4883944,10533913,4
+StanleyCheung,10533913,4
+61695974,10533913,4
+121748858,10533913,5
+YWC,10533913,5
+49424373,10533913,3
+carolsy22,10533913,5
+42292941,10533913,5
+4255750,10533913,3
+37064545,10533913,5
+3163781,10533913,5
+ihardy,10533913,5
+colinwong,10533913,3
+48269530,10533913,5
+63278789,10533913,5
+onlysaybye,10533913,4
+76169652,10533913,5
+zard21,10533913,3
+connieqiao,10533913,5
+3344824,10533913,4
+44132837,10533913,5
+elva_yu,10533913,3
+duckdan,10533913,4
+1468992,10533913,3
+127131340,10533913,3
+76589400,10533913,5
+teliduxingdegou,10533913,3
+3215021,10533913,5
+1240191,10533913,4
+candytown25,10533913,4
+114991834,10533913,5
+xiaomomo,10533913,3
+4292817,10533913,4
+66848309,10533913,5
+89742845,10533913,5
+ycwong,10533913,4
+caspertang,10533913,5
+1496371,10533913,5
+rayza,10533913,5
+114242546,10533913,5
+4260903,10533913,4
+zchou,10533913,5
+54912532,10533913,5
+74983017,10533913,4
+61520625,10533913,4
+41423361,10533913,5
+41423361,10533913,5
+crazydu,10533913,4
+Clatyz-Sun,10533913,5
+45417298,10533913,4
+imagefly,10533913,5
+60191465,10533913,5
+ilosemyself,10533913,5
+54757562,10533913,4
+82275664,10533913,5
+53378505,10533913,5
+orrisia,10533913,3
+4525795,10533913,4
+xiaofenzi,10533913,5
+aibamoe,10533913,4
+1237533,10533913,5
+83982465,10533913,5
+48007103,10533913,4
+3771616,10533913,3
+60621560,10533913,4
+99833271,10533913,3
+125762409,10533913,5
+47385181,10533913,5
+110142217,10533913,5
+twtomcat,10533913,5
+60358204,10533913,5
+62635497,10533913,4
+normanjr,10533913,4
+shuimoweiwei,10533913,5
+chaochaobro,10533913,5
+l309788500,10533913,5
+59378291,10533913,5
+liux5520,10533913,4
+4355421,10533913,3
+44137619,10533913,5
+46019435,10533913,4
+zech,10533913,4
+71405332,10533913,5
+58315873,10533913,4
+aki0726,10533913,3
+ensi,10533913,4
+4146586,10533913,4
+psiam,10533913,5
+38695828,10533913,4
+37229684,10533913,3
+81913192,10533913,5
+49415138,10533913,4
+lighthouseman-L,10533913,5
+51219877,10533913,5
+2792727,10533913,3
+56693883,10533913,4
+37922395,10533913,5
+28802478,10533913,5
+3494816,10533913,4
+91304159,10533913,5
+ostara,10533913,5
+bramblesinwind,10533913,4
+61531110,10533913,4
+naiveal,10533913,5
+39996045,10533913,5
+57240144,10533913,5
+jingmowu,10533913,5
+5723001,10533913,5
+riyueming024,10533913,4
+69842524,10533913,5
+jessedong,10533913,4
+30166860,10533913,4
+2050459,10533913,5
+51860822,10533913,4
+71455965,10533913,5
+131845858,10533913,4
+64003870,10533913,5
+53879029,10533913,4
+39950464,10533913,5
+xiaohundexiaoba,10533913,5
+35086930,10533913,5
+heydzi,10533913,3
+2404348,10533913,4
+54285089,10533913,3
+57684790,10533913,5
+81294259,10533913,5
+48354230,10533913,5
+25207902,10533913,5
+14914580,10533913,4
+70390842,10533913,5
+61933771,10533913,4
+40195749,10533913,5
+nromandy,10533913,4
+38908493,10533913,4
+mikarly,10533913,5
+72232539,10533913,5
+53170578,10533913,4
+lucykamui,10533913,4
+v5boss,10533913,4
+2069523,10533913,4
+99668636,10533913,4
+35273342,10533913,5
+116073490,10533913,5
+36112089,10533913,5
+36931470,10533913,5
+14408491,10533913,1
+76258520,10533913,5
+43115240,10533913,4
+chenbing,10533913,4
+Scorpio0203,10533913,4
+beomi,10533913,4
+128616856,10533913,4
+46834053,10533913,5
+60876982,10533913,5
+cutelucky,10533913,5
+32511723,10533913,5
+yypudding,10533913,5
+55712357,10533913,5
+45127907,10533913,5
+51774042,10533913,3
+41117408,10533913,5
+f_floria,10533913,4
+89984750,10533913,4
+42128136,10533913,5
+yukinoqishi,10533913,4
+68599558,10533913,5
+52948477,10533913,3
+rachelpp,10533913,5
+yimairen,10533913,5
+39628553,10533913,5
+60208186,10533913,4
+caffee_cup,10533913,5
+25341660,10533913,5
+85271571,10533913,4
+4601153,10533913,4
+wh396011051,10533913,5
+flw890301,10533913,-1
+4488382,10533913,5
+134523911,10533913,5
+loveabuforever,10533913,5
+iEels,10533913,5
+49515602,10533913,5
+45099441,10533913,3
+50755079,10533913,4
+heitao-1991,10533913,4
+Sibier,10533913,3
+1317876,10533913,5
+65784611,10533913,4
+1061046,10533913,4
+qinxiaoyiqu,10533913,3
+zhaoyu1222,10533913,4
+130671137,10533913,4
+jbecks,10533913,4
+127722422,10533913,3
+59993904,10533913,5
+Leibnio,10533913,-1
+hippowitz,10533913,5
+122079973,10533913,5
+29594909,10533913,5
+134341434,10533913,3
+fancy77,10533913,5
+50576927,10533913,5
+saint.sebastian,10533913,4
+Cherryzuo,10533913,3
+biganws,10533913,5
+54807019,10533913,5
+79805335,10533913,5
+1752320,10533913,4
+49993320,10533913,4
+2450408,10533913,-1
+80658200,10533913,5
+lovejason87,10533913,5
+6442650,10533913,4
+xslidian,10533913,5
+42604000,10533913,3
+55978897,10533913,4
+67011634,10533913,3
+79813607,10533913,3
+antamy,10533913,4
+62182942,10533913,3
+64841580,10533913,4
+47230580,10533913,5
+39688070,10533913,4
+122081749,10533913,5
+53489403,10533913,5
+68873403,10533913,5
+TERRYBEAR,10533913,5
+WeezyShady,10533913,5
+TTTevolt,10533913,5
+47847363,10533913,5
+67561364,10533913,5
+rukia-ichigo,10533913,4
+ovosophia,10533913,5
+53876925,10533913,4
+18571046,10533913,5
+42270002,10533913,2
+demonawang,10533913,5
+54233501,10533913,4
+fudengmckey,10533913,5
+little.m,10533913,4
+45117838,10533913,4
+anxel,10533913,-1
+yvonnexiong,10533913,4
+81787067,10533913,4
+2211361,10533913,5
+61697258,10533913,5
+61697258,10533913,5
+didi_mai,10533913,2
+missair,10533913,5
+psycheeee,10533913,4
+31600047,10533913,4
+47882268,10533913,5
+47892204,10533913,5
+46788822,10533913,5
+54976113,10533913,5
+44937724,10533913,5
+60111124,10533913,4
+60180314,10533913,4
+62681207,10533913,5
+134374898,10533913,5
+58497726,10533913,5
+momoko-rabbit,10533913,4
+60826004,10533913,5
+stillfyou,10533913,5
+60418860,10533913,5
+Re.beL,10533913,4
+Re.beL,10533913,4
+60043373,10533913,4
+55824609,10533913,4
+14042957,10533913,4
+120871752,10533913,4
+chanel0214,10533913,5
+3176938,10533913,5
+72536335,10533913,5
+bunny-_-,10533913,5
+54701567,10533913,5
+86253613,10533913,5
+57276771,10533913,5
+59341894,10533913,3
+yihanlin,10533913,2
+2507258,10533913,4
+2344931,10533913,4
+roaring90h,10533913,5
+innocentwarm,10533913,5
+dongguac10,10533913,5
+134716974,10533913,4
+124653543,10533913,5
+127820828,10533913,5
+82802978,10533913,5
+59399193,10533913,4
+85739611,10533913,3
+73649626,10533913,4
+60370348,10533913,4
+68597225,10533913,5
+82564566,10533913,3
+63119058,10533913,4
+break5,10533913,5
+paintaking,10533913,5
+81134195,10533913,4
+64635860,10533913,5
+3113509,10533913,5
+hoomjac,10533913,3
+85631980,10533913,4
+117836887,10533913,4
+13826202,10533913,3
+4160305,10533913,4
+3202207,10533913,3
+65053754,10533913,5
+amytsai,10533913,5
+44484994,10533913,5
+83749765,10533913,5
+65317550,10533913,4
+66966914,10533913,5
+61312247,10533913,4
+54375575,10533913,5
+b_b_,10533913,5
+cyy9828,10533913,3
+57486378,10533913,5
+ml0684727,10533913,5
+SkYbLuEPInKxxxx,10533913,4
+4438579,10533913,5
+13263646,10533913,4
+115220323,10533913,3
+kkand77,10533913,4
+Curlylin,10533913,5
+91223833,10533913,4
+91223833,10533913,4
+135703346,10533913,2
+64122854,10533913,5
+104321451,10533913,5
+66706402,10533913,4
+sullivan_lee,10533913,4
+56867346,10533913,4
+29398491,10533913,4
+48369193,10533913,5
+36591569,10533913,4
+iceanjing,10533913,4
+134540692,10533913,5
+maggie.wxy,10533913,5
+nanshengism,10533913,5
+45986040,10533913,5
+2447684,10533913,5
+DrRay,10533913,4
+queenayip,10533913,4
+vmbai,10533913,3
+2548730,10533913,5
+61888159,10533913,5
+SunRiseV,10533913,5
+45648190,10533913,5
+65739692,10533913,5
+67489519,10533913,4
+68635821,10533913,4
+121342307,10533913,5
+65678886,10533913,5
+57751540,10533913,5
+ting_shark,10533913,-1
+71954939,10533913,5
+31507086,10533913,4
+hjl0312,10533913,5
+49745549,10533913,5
+53957330,10533913,5
+47181400,10533913,5
+yoyocui,10533913,5
+126009401,10533913,5
+58485840,10533913,4
+wangjun1900,10533913,5
+C.YEll,10533913,4
+dashengeng,10533913,5
+41879004,10533913,3
+wz0822,10533913,2
+iclover1314,10533913,5
+53080002,10533913,5
+78127343,10533913,5
+leann1217,10533913,5
+48411235,10533913,4
+122247183,10533913,5
+62916813,10533913,5
+Jensen4ever,10533913,4
+cheerhana,10533913,5
+42477053,10533913,5
+46804098,10533913,5
+66979226,10533913,4
+himarkcn,10533913,5
+49565536,10533913,5
+SheRrySweets,10533913,4
+64035077,10533913,5
+RockxxPunk,10533913,3
+72279651,10533913,5
+56272874,10533913,3
+57580353,10533913,4
+3328294,10533913,4
+58212317,10533913,5
+59540342,10533913,5
+thelovebones,10533913,5
+120963459,10533913,5
+5023543,10533913,5
+45607426,10533913,3
+57132937,10533913,5
+48167301,10533913,4
+32022704,10533913,5
+leeXD22,10533913,5
+Sarah33,10533913,5
+qiuyoungto22,10533913,5
+lesadieu,10533913,3
+LeonFeng,10533913,5
+44140767,10533913,4
+wj8198026,10533913,4
+52411063,10533913,5
+2742057,10533913,4
+2670740,10533913,5
+50242355,10533913,5
+seaskky,10533913,5
+82232966,10533913,4
+zhaozihan1029,10533913,5
+64071503,10533913,5
+doubana,10533913,5
+30740764,10533913,5
+92945557,10533913,5
+wen_Schwartz,10533913,3
+28410778,10533913,4
+49191528,10533913,4
+jijijie,10533913,4
+never1and,10533913,4
+emma0729,10533913,5
+32340360,10533913,5
+50459772,10533913,5
+wdxc999999,10533913,5
+119263813,10533913,5
+52548060,10533913,4
+98044777,10533913,5
+tiffanyco,10533913,4
+ROYA,10533913,4
+tylerlv,10533913,4
+2569268,10533913,4
+131416608,10533913,4
+115202720,10533913,3
+maynardleung,10533913,4
+50835991,10533913,5
+tbddm,10533913,5
+googollee,10533913,5
+nearjones,10533913,3
+73294772,10533913,5
+Soso-L,10533913,5
+67243233,10533913,3
+103771999,10533913,5
+Mibowen611,10533913,5
+65602766,10533913,5
+kame-sho,10533913,3
+41065419,10533913,5
+ochy,10533913,5
+65832475,10533913,4
+71063649,10533913,4
+imthewind,10533913,5
+msuper,10533913,5
+ANYEWEI,10533913,5
+ubiter,10533913,5
+74125240,10533913,5
+F-X-MAN,10533913,4
+wenjin_chen,10533913,5
+f91_82,10533913,5
+124632958,10533913,5
+127889355,10533913,5
+longdan,10533913,5
+64880714,10533913,4
+26713841,10533913,4
+4153237,10533913,5
+17672710,10533913,5
+cschester,10533913,4
+1256699,10533913,3
+KuBurden,10533913,5
+60853996,10533913,5
+60092575,10533913,5
+42039153,10533913,4
+mouzhi,10533913,4
+103622140,10533913,5
+11508329,10533913,4
+49273270,10533913,4
+9811104,10533913,3
+76181175,10533913,5
+50748825,10533913,5
+69028639,10533913,5
+59596431,10533913,4
+lidayuanly,10533913,5
+52994115,10533913,3
+36621116,10533913,5
+angelmissu,10533913,4
+mmmy,10533913,5
+48685889,10533913,4
+83571302,10533913,5
+pussyyy,10533913,4
+xmusicandy,10533913,4
+45718170,10533913,5
+3596469,10533913,3
+cindytintin,10533913,4
+1932670,10533913,4
+65032980,10533913,4
+ms2ni,10533913,4
+63849240,10533913,4
+echoningning,10533913,5
+MoGu_chun,10533913,5
+62134225,10533913,5
+aiwosuoai55,10533913,5
+plants,10533913,3
+teenteenteen,10533913,4
+51766927,10533913,5
+55668412,10533913,5
+xiaoM,10533913,5
+58944079,10533913,5
+56396911,10533913,4
+dreamoslo,10533913,4
+partybird,10533913,5
+130846662,10533913,5
+78428870,10533913,5
+85317436,10533913,4
+68947670,10533913,5
+JTimberlake,10533913,4
+79451845,10533913,5
+55801990,10533913,5
+49270267,10533913,5
+130613342,10533913,2
+124951495,10533913,5
+62354616,10533913,5
+shinysky,10533913,4
+50988051,10533913,5
+zl99,10533913,3
+69573255,10533913,5
+69573255,10533913,5
+CuteLhr,10533913,5
+shorechain,10533913,5
+masochiste,10533913,5
+44394014,10533913,4
+qingxin623,10533913,3
+96388706,10533913,4
+55616558,10533913,4
+irislingism,10533913,5
+57566137,10533913,4
+60307464,10533913,4
+1028731,10533913,4
+74103020,10533913,4
+48307162,10533913,4
+cumming,10533913,5
+44741261,10533913,5
+ameibush9799,10533913,4
+65383456,10533913,-1
+guihuazhouzi,10533913,5
+4587143,10533913,4
+hughll,10533913,5
+zhxyuh,10533913,5
+xusisu,10533913,1
+cosmtrek,10533913,5
+3142248,10533913,4
+AriesSusan,10533913,5
+124467661,10533913,4
+49581171,10533913,4
+61845850,10533913,5
+53317988,10533913,4
+40492677,10533913,5
+74418627,10533913,5
+54306143,10533913,3
+2801179,10533913,3
+4019279,10533913,5
+aimiruki,10533913,5
+wamgzc1004,10533913,5
+51814592,10533913,4
+1270364,10533913,4
+GOEVERYWHERE,10533913,4
+mashangjian5,10533913,5
+69048288,10533913,5
+vicking,10533913,3
+53420942,10533913,5
+109840625,10533913,3
+49983197,10533913,5
+88425662,10533913,3
+shor,10533913,3
+yeai3,10533913,4
+10345879,10533913,5
+nico.heng.Y,10533913,4
+3421868,10533913,5
+lime_summer,10533913,5
+okship,10533913,4
+67848471,10533913,5
+52117227,10533913,5
+xxxxxoxxxxx,10533913,4
+67943735,10533913,4
+78065496,10533913,5
+66715334,10533913,4
+4752519,10533913,3
+76496998,10533913,5
+58332166,10533913,5
+2753727,10533913,4
+63260508,10533913,5
+letmetalk,10533913,4
+58913556,10533913,5
+Syxnx,10533913,5
+kennan,10533913,5
+53582924,10533913,4
+43909634,10533913,5
+bltee,10533913,5
+niels,10533913,5
+44166324,10533913,5
+50104880,10533913,4
+starchaser,10533913,5
+4332278,10533913,5
+44292349,10533913,5
+40027917,10533913,5
+63281299,10533913,5
+Tramyzzp,10533913,4
+sophia_plover,10533913,5
+131364833,10533913,4
+6352011,10533913,4
+54989899,10533913,5
+62215499,10533913,5
+ajang,10533913,5
+74771823,10533913,3
+IRIDESCENT.ONE,10533913,5
+zoe0315,10533913,5
+134866133,10533913,1
+chengzer,10533913,5
+87495095,10533913,3
+13575931,10533913,5
+18169695,10533913,3
+131975363,10533913,5
+60407456,10533913,5
+ohohblue,10533913,5
+juno_wang,10533913,3
+3588521,10533913,3
+3588521,10533913,3
+52321375,10533913,5
+realdeal,10533913,4
+miracleq0614,10533913,5
+65438741,10533913,4
+johndoex,10533913,4
+133106464,10533913,3
+2325689,10533913,5
+8592550,10533913,4
+41874215,10533913,4
+aprilpear,10533913,4
+38615886,10533913,5
+46912803,10533913,3
+47485602,10533913,4
+122273764,10533913,4
+laq22,10533913,5
+52606660,10533913,5
+91046092,10533913,4
+82511491,10533913,5
+69616363,10533913,4
+wishna,10533913,5
+62297944,10533913,4
+49857976,10533913,4
+imcorrect,10533913,4
+52243920,10533913,5
+56628925,10533913,5
+tavi0529,10533913,4
+liujiao808,10533913,5
+aivnce,10533913,4
+ilovehongkou,10533913,4
+58198637,10533913,4
+53947728,10533913,5
+116602815,10533913,4
+3328022,10533913,4
+85356798,10533913,5
+46913971,10533913,5
+1975902,10533913,5
+dxq1216,10533913,5
+chichengle,10533913,5
+55548424,10533913,5
+50543598,10533913,5
+66787683,10533913,-1
+42787363,10533913,4
+xudi,10533913,3
+119190302,10533913,4
+50757842,10533913,5
+woodwool,10533913,5
+ya19910907,10533913,5
+harryuharryu,10533913,5
+115900561,10533913,4
+66579976,10533913,5
+maomixiaosu,10533913,5
+36254263,10533913,5
+y19940504,10533913,5
+59528107,10533913,3
+2206999,10533913,5
+77377807,10533913,5
+Vanessa.,10533913,5
+45238478,10533913,2
+cowgirlfanny,10533913,5
+50588044,10533913,5
+artech3608,10533913,4
+sid005,10533913,4
+misssunshinerr,10533913,5
+40692512,10533913,5
+inearlysummer,10533913,5
+75763564,10533913,4
+67334410,10533913,5
+73419369,10533913,5
+3313195,10533913,4
+47784827,10533913,4
+63256318,10533913,5
+1534963,10533913,3
+33762856,10533913,5
+m-n,10533913,5
+4204545,10533913,4
+16038998,10533913,4
+62172512,10533913,5
+41260318,10533913,3
+77266400,10533913,4
+125942088,10533913,5
+61722748,10533913,5
+81870071,10533913,4
+45996774,10533913,5
+bb0708,10533913,4
+jiqiuqiu,10533913,5
+58246566,10533913,3
+toprocku,10533913,4
+37129050,10533913,5
+Jewelyxy,10533913,4
+jess1cal,10533913,4
+sln58,10533913,5
+yan6,10533913,4
+bxg555,10533913,-1
+2238966,10533913,3
+62644533,10533913,2
+100541029,10533913,4
+73749265,10533913,5
+conelia1989,10533913,5
+80319931,10533913,3
+80319931,10533913,3
+130442588,10533913,4
+35233612,10533913,3
+68453321,10533913,5
+46206481,10533913,4
+69407378,10533913,4
+46721845,10533913,4
+129599627,10533913,5
+55619717,10533913,4
+43226989,10533913,5
+3195572,10533913,4
+zhangbohun,10533913,4
+44141060,10533913,3
+121544957,10533913,-1
+Fesvia,10533913,4
+84343760,10533913,1
+47751677,10533913,5
+yangbaofeng,10533913,5
+46430154,10533913,4
+52807266,10533913,5
+1655091,10533913,4
+xiaojiaheng,10533913,5
+3116796,10533913,4
+41418851,10533913,4
+F1vese7enone,10533913,5
+52338823,10533913,4
+2226886,10533913,3
+63746510,10533913,5
+whntalent,10533913,5
+43315131,10533913,5
+37196055,10533913,5
+owenhoney,10533913,3
+39175181,10533913,5
+zhangyanwen,10533913,3
+62684666,10533913,5
+48034586,10533913,4
+71779079,10533913,2
+67225686,10533913,4
+magicsoda712,10533913,5
+58515646,10533913,5
+xuanxiaofu,10533913,5
+linglongwunv,10533913,-1
+mansono,10533913,1
+97184237,10533913,4
+nilaomei,10533913,5
+95382029,10533913,5
+28978843,10533913,5
+bellewang,10533913,3
+73150810,10533913,5
+97531934,10533913,5
+4804994,10533913,3
+1857885,10533913,5
+3585809,10533913,5
+54848736,10533913,5
+94254038,10533913,4
+risenh,10533913,4
+58141531,10533913,3
+kdslim,10533913,4
+yuehen1111,10533913,5
+127262027,10533913,4
+4159668,10533913,4
+91333149,10533913,5
+basketdai,10533913,5
+88878838,10533913,5
+72532382,10533913,5
+80127380,10533913,4
+superzhaolihuan,10533913,5
+wyjlwyy,10533913,5
+leixe,10533913,4
+13009847,10533913,3
+50942280,10533913,5
+3297168,10533913,5
+immissc,10533913,5
+kuangren79,10533913,3
+39200780,10533913,5
+5955160,10533913,4
+78468587,10533913,5
+wuxipaopao,10533913,5
+87411768,10533913,4
+lancaoqin,10533913,5
+69928262,10533913,5
+45300768,10533913,4
+60080171,10533913,3
+50169026,10533913,5
+laozo,10533913,4
+JONI-K,10533913,4
+3615093,10533913,5
+78238348,10533913,4
+4528935,10533913,4
+liberal-,10533913,4
+echo__,10533913,4
+73747958,10533913,4
+65979615,10533913,5
+59421721,10533913,4
+56083517,10533913,5
+56832705,10533913,5
+Knight9,10533913,4
+2943288,10533913,4
+75618123,10533913,5
+121569917,10533913,3
+43326393,10533913,5
+ahasay,10533913,5
+82582719,10533913,5
+axknightroad,10533913,4
+4347889,10533913,5
+honestydudu,10533913,4
+61162296,10533913,-1
+2664010,10533913,5
+41515044,10533913,3
+3569506,10533913,5
+danielhu,10533913,5
+miki119,10533913,5
+3501312,10533913,4
+2333342,10533913,4
+51204884,10533913,5
+93160401,10533913,4
+64035112,10533913,5
+59082461,10533913,5
+xmsalem,10533913,5
+73189108,10533913,3
+97057870,10533913,5
+ztx1210,10533913,4
+RBMILAN-zwy,10533913,5
+36507254,10533913,4
+88687842,10533913,4
+unwillingly,10533913,3
+laneddy,10533913,4
+4603294,10533913,4
+jinduoduo,10533913,5
+84475436,10533913,4
+58820411,10533913,5
+20054715,10533913,3
+44525790,10533913,5
+68468748,10533913,5
+75312380,10533913,5
+2718336,10533913,5
+58134949,10533913,3
+83974267,10533913,4
+Amico,10533913,5
+62524580,10533913,4
+33328526,10533913,5
+43896457,10533913,5
+44724487,10533913,5
+Aimovie,10533913,4
+sinolambda,10533913,5
+50561433,10533913,4
+48657704,10533913,5
+mcdull11,10533913,5
+4067480,10533913,5
+tuotuodetuo,10533913,3
+2655191,10533913,4
+62079416,10533913,5
+48062280,10533913,5
+lovetree521,10533913,5
+76418910,10533913,4
+Eudemonia-moon,10533913,4
+64563559,10533913,5
+58474530,10533913,5
+129387167,10533913,4
+bluetracy0113,10533913,5
+bluetracy0113,10533913,5
+93848272,10533913,5
+maryhanqing,10533913,5
+Moanin,10533913,3
+Miss-Ling,10533913,5
+6186981,10533913,4
+76808256,10533913,5
+79426082,10533913,5
+acacia_acacia,10533913,5
+Taniwha,10533913,5
+veraaa,10533913,4
+49305149,10533913,3
+yanxuanyi,10533913,5
+55613939,10533913,5
+129021776,10533913,4
+zhangpengtao,10533913,4
+76373102,10533913,5
+57251364,10533913,5
+37771316,10533913,3
+moshou,10533913,5
+MoriartyL,10533913,5
+116689898,10533913,3
+44011336,10533913,5
+83059994,10533913,3
+yangcosta,10533913,4
+he21,10533913,5
+60016426,10533913,4
+10128811,10533913,5
+78273526,10533913,5
+Zoe_Lois_Ora,10533913,5
+46721798,10533913,4
+48473875,10533913,5
+63367486,10533913,4
+52740644,10533913,4
+53088245,10533913,5
+4315821,10533913,5
+134528559,10533913,5
+133864523,10533913,5
+James70s,10533913,4
+75311522,10533913,3
+42062370,10533913,4
+54862869,10533913,5
+54762662,10533913,2
+45231536,10533913,5
+52014537,10533913,5
+53152941,10533913,4
+128635364,10533913,3
+71107908,10533913,4
+51663220,10533913,5
+60348245,10533913,5
+48309167,10533913,4
+62708823,10533913,4
+53932616,10533913,3
+Eazyc,10533913,-1
+60051498,10533913,4
+49873483,10533913,4
+49257150,10533913,5
+3598072,10533913,4
+132099750,10533913,5
+126731826,10533913,5
+levitating,10533913,5
+81628425,10533913,5
+motou0328,10533913,5
+91127070,10533913,5
+idreammrs,10533913,4
+shiori,10533913,3
+78614678,10533913,5
+103298508,10533913,4
+48459404,10533913,4
+90771245,10533913,5
+44129141,10533913,4
+rebeccasen,10533913,4
+60246470,10533913,5
+73731153,10533913,4
+4549309,10533913,4
+49345528,10533913,5
+89951799,10533913,3
+47717336,10533913,5
+69323349,10533913,4
+42368352,10533913,5
+75096112,10533913,5
+joyceyuen,10533913,4
+131704250,10533913,3
+84675514,10533913,5
+120521050,10533913,4
+3296630,10533913,5
+ahuasist,10533913,3
+135682333,10533913,5
+yamfesoul,10533913,5
+72683607,10533913,5
+10338909,10533913,5
+Rainlivelin,10533913,4
+2538688,10533913,4
+75375560,10533913,4
+youknow810,10533913,4
+MaxHwang,10533913,5
+73585315,10533913,4
+classical622,10533913,4
+chevalier7,10533913,5
+luwenting0110,10533913,5
+109446676,10533913,4
+4370686,10533913,5
+93340836,10533913,4
+48514608,10533913,5
+fay_.,10533913,-1
+scant,10533913,4
+3824863,10533913,5
+ElleXiah,10533913,4
+63989462,10533913,5
+44420749,10533913,5
+QueenLee-0619,10533913,4
+flydolphin,10533913,4
+aprilwind_shi,10533913,5
+47588699,10533913,5
+130860796,10533913,5
+108313440,10533913,4
+74779260,10533913,5
+liaoruochenxing,10533913,4
+1162046,10533913,4
+2562419,10533913,5
+75310522,10533913,3
+125010605,10533913,4
+109055681,10533913,3
+wangfendou1,10533913,2
+74007490,10533913,5
+sheepoy,10533913,5
+72705326,10533913,3
+69546651,10533913,5
+56914134,10533913,4
+76970051,10533913,4
+48286955,10533913,-1
+iLifestyle,10533913,5
+56590853,10533913,1
+Sigrid_Lu,10533913,4
+3911272,10533913,3
+80768830,10533913,5
+jzk,10533913,4
+49713007,10533913,3
+125223492,10533913,5
+133715770,10533913,4
+51628887,10533913,5
+LeeKitWing,10533913,3
+eluv,10533913,5
+lyojue,10533913,5
+54910657,10533913,5
+30587036,10533913,3
+Cricketsong,10533913,4
+2580551,10533913,5
+83019485,10533913,4
+66568520,10533913,5
+fylq,10533913,3
+71269156,10533913,5
+tuimaoshu,10533913,3
+zhtianyu,10533913,3
+ElyseLee,10533913,5
+xly7788,10533913,5
+nicos,10533913,4
+58622210,10533913,5
+64326764,10533913,4
+97949514,10533913,5
+4145491,10533913,5
+52029412,10533913,4
+56990656,10533913,4
+wyjfl,10533913,3
+134194471,10533913,4
+4246390,10533913,3
+67976109,10533913,4
+eddy_charlie,10533913,5
+125934212,10533913,5
+52473311,10533913,5
+54379104,10533913,5
+73665578,10533913,4
+59571520,10533913,4
+afra1028,10533913,5
+47022062,10533913,3
+60786130,10533913,4
+60850375,10533913,5
+cainroziel,10533913,4
+34081979,10533913,-1
+AchlysL,10533913,3
+130440504,10533913,5
+Acinom,10533913,5
+63922807,10533913,5
+wan1991m,10533913,5
+72735482,10533913,5
+zoe_john,10533913,5
+2291572,10533913,5
+wongzayoi,10533913,5
+40254571,10533913,3
+cect,10533913,4
+129595269,10533913,3
+80183664,10533913,3
+49586478,10533913,4
+51803624,10533913,4
+leungweichao,10533913,3
+PrinceLu,10533913,3
+71108776,10533913,5
+54083120,10533913,5
+63294351,10533913,5
+heartlesstree,10533913,5
+49230178,10533913,5
+asswjl,10533913,1
+torrywong,10533913,4
+53068716,10533913,5
+59820675,10533913,5
+76933633,10533913,5
+hongdoushanuomi,10533913,5
+53247306,10533913,5
+killrec,10533913,-1
+xiaoyuan_0310,10533913,5
+4404036,10533913,5
+digdug,10533913,5
+iamprds,10533913,3
+hakuouki,10533913,5
+4641353,10533913,5
+4590533,10533913,5
+60552303,10533913,5
+33484328,10533913,5
+43154995,10533913,4
+Emily723,10533913,5
+55656322,10533913,4
+132540342,10533913,5
+littlegreeeeen,10533913,5
+57758135,10533913,5
+51573307,10533913,-1
+zenlee,10533913,4
+47220302,10533913,3
+jafey1,10533913,5
+54183993,10533913,5
+50900048,10533913,4
+67298685,10533913,4
+binglanxier,10533913,5
+hoaxstar,10533913,5
+81475548,10533913,5
+akumaero,10533913,-1
+ant313,10533913,5
+Lethe8,10533913,3
+71947752,10533913,4
+91805285,10533913,4
+4058668,10533913,4
+saosaoxy,10533913,5
+132291529,10533913,5
+Chappell.Wat,10533913,5
+51754900,10533913,5
+68655879,10533913,5
+45812383,10533913,4
+ashwind,10533913,4
+107437673,10533913,4
+26044083,10533913,5
+51490972,10533913,5
+53787602,10533913,5
+63981568,10533913,5
+46223615,10533913,4
+2882690,10533913,5
+flyfred,10533913,5
+2738015,10533913,4
+50191994,10533913,5
+4112138,10533913,5
+47939693,10533913,4
+40956109,10533913,4
+NTkyrie,10533913,5
+53784803,10533913,3
+97448037,10533913,-1
+7510013,10533913,4
+frogchild,10533913,3
+yang0826,10533913,5
+tweener,10533913,5
+32672668,10533913,5
+anotherballack,10533913,1
+merryliang,10533913,3
+im-zhuang,10533913,5
+beiliya6261,10533913,4
+59380375,10533913,5
+135501678,10533913,5
+mklop2008,10533913,5
+Shanglinyuan,10533913,4
+yyyye,10533913,5
+naomilee,10533913,5
+6382501,10533913,4
+64118312,10533913,4
+29418031,10533913,4
+yukileung,10533913,4
+67200749,10533913,3
+81443543,10533913,4
+118036743,10533913,3
+3065272,10533913,5
+64009987,10533913,5
+73307715,10533913,5
+2552181,10533913,5
+68993346,10533913,5
+64012001,10533913,5
+xxe,10533913,5
+69164353,10533913,5
+125111991,10533913,5
+69672670,10533913,3
+52728173,10533913,5
+65760507,10533913,4
+2434047,10533913,-1
+87599661,10533913,5
+cecaazhang,10533913,5
+2601973,10533913,5
+magicpencil,10533913,4
+46967065,10533913,3
+67796824,10533913,5
+Astro-Ho,10533913,4
+moxiaoyin,10533913,5
+76193646,10533913,4
+27970714,10533913,5
+1427744,10533913,4
+47202062,10533913,4
+32781872,10533913,3
+132326708,10533913,5
+84567562,10533913,5
+114086034,10533913,5
+105736560,10533913,5
+58178362,10533913,5
+QUEBO,10533913,4
+jakartaxie,10533913,4
+cat23love,10533913,3
+huanghongyang,10533913,2
+2310497,10533913,4
+fei13,10533913,4
+45403214,10533913,5
+hidemyhead,10533913,5
+phevoshoo,10533913,5
+125583691,10533913,5
+40201911,10533913,5
+126761989,10533913,3
+2221120,10533913,5
+yeyinihao,10533913,-1
+vera-cyw,10533913,5
+49902245,10533913,4
+126818106,10533913,5
+56008918,10533913,5
+19921711,10533913,5
+44045443,10533913,4
+36576530,10533913,4
+74542067,10533913,5
+30200244,10533913,5
+52247452,10533913,4
+52247452,10533913,4
+135681079,10533913,5
+54896883,10533913,4
+121152580,10533913,4
+4909186,10533913,4
+simple545,10533913,5
+92427949,10533913,5
+41790904,10533913,5
+3970076,10533913,4
+64325413,10533913,5
+114270381,10533913,3
+SuperWMY,10533913,2
+52771481,10533913,4
+55603094,10533913,3
+50677224,10533913,5
+83340997,10533913,5
+xzfd,10533913,4
+xiaoyasecond,10533913,5
+129724079,10533913,4
+rener,10533913,5
+emeline,10533913,3
+3298336,10533913,4
+36742818,10533913,4
+66151732,10533913,4
+37883393,10533913,5
+mazing,10533913,4
+3625223,10533913,5
+JunKun,10533913,5
+80849363,10533913,5
+123371542,10533913,5
+58112577,10533913,5
+nana_007,10533913,4
+42709350,10533913,4
+78638741,10533913,5
+M.Rino,10533913,4
+taylor_fu,10533913,5
+nycharline,10533913,5
+128755138,10533913,2
+48494718,10533913,5
+juniorguo,10533913,2
+stay_night,10533913,5
+tzerol,10533913,4
+smileybabe,10533913,4
+kp81ndlf,10533913,5
+87530030,10533913,5
+126202371,10533913,5
+cantona_x,10533913,4
+amberasharon,10533913,3
+liulull,10533913,4
+hanwenxu,10533913,5
+56566809,10533913,5
+47034969,10533913,4
+x1Ao_y,10533913,5
+47599716,10533913,5
+73471222,10533913,5
+98893495,10533913,5
+yangjianguo,10533913,4
+54444481,10533913,4
+48094869,10533913,4
+libaosheng,10533913,4
+60685526,10533913,5
+sunking_fish,10533913,4
+sarinalee,10533913,3
+84601671,10533913,1
+hakkaking,10533913,3
+YYDEE,10533913,5
+52120890,10533913,5
+65450414,10533913,4
+61551663,10533913,5
+47021316,10533913,5
+1377546,10533913,5
+AzuresongWarden,10533913,5
+51264867,10533913,4
+47924060,10533913,4
+51629650,10533913,5
+135677694,10533913,3
+3323718,10533913,5
+50119044,10533913,5
+33091901,10533913,4
+randomforever,10533913,5
+enhengheng,10533913,5
+Suuun,10533913,4
+joyestin,10533913,5
+53734415,10533913,5
+3550233,10533913,5
+4152314,10533913,5
+61682333,10533913,5
+61982601,10533913,4
+fearlessfuture,10533913,5
+74960024,10533913,5
+MaclovenZD,10533913,5
+41680643,10533913,4
+57884796,10533913,5
+44951032,10533913,5
+126599373,10533913,5
+54601280,10533913,5
+51915169,10533913,2
+77235154,10533913,5
+WillZz,10533913,3
+1430718,10533913,2
+1430718,10533913,2
+zly117,10533913,5
+gmq0520,10533913,5
+byshine999,10533913,5
+60678806,10533913,5
+LeonJunki,10533913,5
+33329266,10533913,4
+lemoncan,10533913,5
+114361347,10533913,2
+Pius,10533913,5
+67772051,10533913,5
+coolshine,10533913,5
+luxiaoyan,10533913,4
+52655756,10533913,-1
+PranChen,10533913,5
+45255137,10533913,4
+Illiteracyyy,10533913,5
+Talushen,10533913,2
+48369698,10533913,4
+aeeyajie,10533913,5
+62999603,10533913,4
+47084530,10533913,5
+3280518,10533913,5
+summercaimin,10533913,4
+130988539,10533913,5
+55447460,10533913,5
+94135073,10533913,4
+73952321,10533913,5
+68692876,10533913,4
+119583854,10533913,5
+61331357,10533913,4
+zydaydream,10533913,5
+121948087,10533913,5
+57049124,10533913,3
+kelvinshaw,10533913,4
+40517030,10533913,5
+114284723,10533913,4
+120443847,10533913,5
+43736593,10533913,4
+57837456,10533913,4
+133141228,10533913,5
+73847256,10533913,4
+66802525,10533913,4
+63406200,10533913,5
+50235608,10533913,4
+88085556,10533913,5
+4199523,10533913,3
+38675688,10533913,5
+58061567,10533913,5
+1182787,10533913,3
+1155091,10533913,3
+66770179,10533913,5
+53015845,10533913,4
+60845528,10533913,5
+miuk,10533913,3
+lukemdk,10533913,4
+ween339,10533913,5
+67678379,10533913,5
+72685963,10533913,4
+89750609,10533913,5
+65976416,10533913,3
+71900698,10533913,4
+2571757,10533913,3
+alice-cat,10533913,5
+JDevonshire,10533913,4
+17913616,10533913,5
+74679175,10533913,5
+tintintsang,10533913,4
+82834599,10533913,5
+63659583,10533913,3
+sfroompp,10533913,5
+jesus_marychain,10533913,5
+53142631,10533913,4
+zizon,10533913,3
+poline,10533913,4
+1196601,10533913,4
+72110829,10533913,5
+47292684,10533913,4
+Evarnold,10533913,5
+128948999,10533913,3
+53630241,10533913,5
+2087096,10533913,4
+Korever,10533913,5
+3256263,10533913,4
+moqulss,10533913,5
+77576075,10533913,5
+Rottenmudpit,10533913,5
+34114796,10533913,1
+sherryhikari,10533913,4
+132299108,10533913,4
+jpdong,10533913,5
+53562080,10533913,4
+duzhouchi,10533913,5
+darlingtudai,10533913,2
+smnag,10533913,5
+4506434,10533913,2
+1443838,10533913,5
+46702896,10533913,4
+jchguo,10533913,5
+4886463,10533913,5
+4886463,10533913,5
+vincent41,10533913,5
+133634181,10533913,5
+jolestar,10533913,5
+summerr628,10533913,5
+74721875,10533913,5
+103222146,10533913,4
+1871649,10533913,5
+flowertide,10533913,3
+1664251,10533913,-1
+2510125,10533913,5
+cathyhere,10533913,5
+25464691,10533913,5
+47529528,10533913,4
+holly_xu,10533913,5
+126151029,10533913,5
+2292590,10533913,5
+hermit90,10533913,5
+48160463,10533913,5
+132409397,10533913,4
+64806214,10533913,4
+63305339,10533913,4
+wantjoin,10533913,5
+chongguichenji,10533913,5
+49058335,10533913,4
+echozhan,10533913,5
+91437515,10533913,5
+milanmao,10533913,4
+47914559,10533913,5
+2187951,10533913,3
+24602898,10533913,4
+coolgun,10533913,5
+3705118,10533913,5
+39105874,10533913,4
+54010420,10533913,5
+103751698,10533913,5
+3886797,10533913,5
+jayelhy,10533913,4
+qunlangzhishou,10533913,5
+mywayalone,10533913,5
+kazuki_,10533913,4
+zyjsunk,10533913,5
+54950938,10533913,5
+fun-lv,10533913,4
+4158163,10533913,4
+61588323,10533913,5
+47331030,10533913,5
+63861679,10533913,5
+40519102,10533913,4
+houjianjun,10533913,4
+jaywooh,10533913,4
+90371905,10533913,4
+pengranpku,10533913,5
+Tgoblint,10533913,4
+56870852,10533913,3
+99352636,10533913,4
+3532653,10533913,4
+boiya,10533913,5
+miexiaoyang422,10533913,5
+4630026,10533913,4
+23960810,10533913,5
+58783403,10533913,5
+lolitahanhan,10533913,5
+3183520,10533913,4
+batongyang,10533913,3
+65292706,10533913,5
+52494189,10533913,5
+12528508,10533913,5
+83880297,10533913,4
+84947801,10533913,5
+35155184,10533913,5
+ifthereisoneday,10533913,4
+2890087,10533913,5
+103612102,10533913,3
+XiaXiaokuan,10533913,5
+canopy,10533913,5
+72629481,10533913,4
+loveblues,10533913,5
+BDX,10533913,-1
+calohuang,10533913,5
+62678652,10533913,5
+pandorapple,10533913,5
+71966545,10533913,5
+unabian,10533913,5
+115975099,10533913,5
+caitlynd,10533913,4
+gongzitian,10533913,5
+80763196,10533913,5
+3518333,10533913,4
+76163964,10533913,5
+jr.mushroom,10533913,5
+89270889,10533913,4
+68842437,10533913,5
+cocowool,10533913,4
+67641940,10533913,5
+sunzeya,10533913,5
+jiaguwen,10533913,3
+80079876,10533913,4
+54896584,10533913,5
+2871622,10533913,5
+Romainroll,10533913,5
+100953233,10533913,5
+Sunbowinrain,10533913,4
+44776734,10533913,5
+3410512,10533913,5
+64139791,10533913,5
+sephilish,10533913,3
+imPluto,10533913,5
+1101928,10533913,4
+Ponderon,10533913,5
+31427645,10533913,4
+summer12whisper,10533913,3
+135180720,10533913,4
+53002549,10533913,3
+63346469,10533913,5
+41511009,10533913,3
+80665810,10533913,4
+laoziiii,10533913,4
+68201979,10533913,3
+60282929,10533913,4
+a1234567,10533913,5
+50966554,10533913,5
+130743803,10533913,5
+Y_yucheng,10533913,4
+60096366,10533913,4
+92462355,10533913,3
+65811526,10533913,5
+52970998,10533913,5
+115560712,10533913,5
+51628420,10533913,4
+57895334,10533913,5
+fre7dom,10533913,4
+jia2012,10533913,5
+131466194,10533913,5
+betty3,10533913,3
+heavenlight,10533913,5
+94017410,10533913,5
+zykino,10533913,5
+84698699,10533913,4
+cheerful,10533913,4
+cheerful,10533913,4
+schizobird,10533913,4
+ceachother,10533913,5
+18360610,10533913,5
+llrebecca,10533913,4
+62446851,10533913,5
+76917831,10533913,5
+xiaojiongxia,10533913,4
+guiwuu,10533913,5
+Jake52592,10533913,5
+69753373,10533913,3
+capri19901231,10533913,4
+52443957,10533913,5
+67876533,10533913,5
+81159938,10533913,3
+COCOCOQUEEN,10533913,4
+1596435,10533913,5
+summerpea,10533913,5
+wanglei0326,10533913,5
+122052846,10533913,3
+67220293,10533913,5
+58927939,10533913,5
+74008803,10533913,5
+56800653,10533913,3
+31281892,10533913,5
+42585603,10533913,4
+57912090,10533913,3
+121471027,10533913,2
+89382029,10533913,5
+2118507,10533913,4
+mml3774,10533913,4
+saintlove,10533913,5
+68538553,10533913,5
+65227513,10533913,5
+50778763,10533913,5
+47794724,10533913,5
+46167382,10533913,5
+runtofreedom,10533913,3
+58643220,10533913,5
+braquentin,10533913,5
+cruisechan,10533913,4
+14306980,10533913,4
+60764174,10533913,4
+cageyz,10533913,5
+133493380,10533913,5
+47846363,10533913,5
+darendaren,10533913,5
+poppy7777,10533913,3
+50574309,10533913,5
+1070044,10533913,4
+stranger820,10533913,5
+44529408,10533913,4
+40938196,10533913,4
+dear7,10533913,5
+55570949,10533913,5
+nicocosama,10533913,4
+3711668,10533913,5
+52568253,10533913,3
+83389859,10533913,5
+120597236,10533913,5
+53721122,10533913,5
+126785151,10533913,5
+allthesame,10533913,4
+93807265,10533913,5
+123250951,10533913,5
+4560204,10533913,4
+49294840,10533913,2
+42532242,10533913,5
+72181533,10533913,5
+spicysummer,10533913,4
+135317067,10533913,4
+64096688,10533913,5
+115483881,10533913,5
+1130880,10533913,4
+yuyusuper2,10533913,5
+3427693,10533913,5
+135664793,10533913,3
+78362081,10533913,4
+56064358,10533913,4
+4666166,10533913,4
+58908611,10533913,4
+135274775,10533913,4
+3845576,10533913,5
+nangongmocheng,10533913,5
+rudolfwhe,10533913,5
+appleyy9,10533913,-1
+51460943,10533913,5
+41883587,10533913,5
+MiaMia97823,10533913,5
+66442933,10533913,-1
+gua_lml,10533913,5
+119100807,10533913,5
+103492790,10533913,4
+52084634,10533913,5
+qinqinluotuo,10533913,3
+viviensong,10533913,4
+132463662,10533913,4
+49255582,10533913,4
+yulehe,10533913,5
+55585297,10533913,5
+60348521,10533913,4
+gaxiaomi,10533913,5
+3681552,10533913,2
+74615402,10533913,5
+131769782,10533913,5
+56371381,10533913,5
+57598637,10533913,5
+damaimmm,10533913,-1
+79105910,10533913,5
+69070007,10533913,4
+snoopypark,10533913,2
+mi.even.live,10533913,4
+zeoh,10533913,5
+bmw,10533913,5
+15019258,10533913,5
+58955452,10533913,5
+49776648,10533913,4
+puccaandhippo,10533913,4
+DavidbyGrace,10533913,5
+2997234,10533913,3
+sxforever,10533913,5
+127632434,10533913,5
+130055833,10533913,5
+Uhey_Song,10533913,5
+47843890,10533913,5
+veveve,10533913,5
+33797943,10533913,5
+76211935,10533913,5
+imjerry,10533913,4
+vivienvb,10533913,3
+47198938,10533913,4
+2241625,10533913,-1
+jessiewang84,10533913,3
+46312104,10533913,2
+135254330,10533913,4
+62779631,10533913,3
+jackguo,10533913,5
+tarotarotaro,10533913,4
+67240595,10533913,5
+mayhi,10533913,4
+21990858,10533913,5
+28178860,10533913,5
+bidhole,10533913,5
+47423392,10533913,5
+108705565,10533913,5
+72378755,10533913,5
+61542149,10533913,4
+67619742,10533913,5
+25216946,10533913,5
+UchihaObito,10533913,5
+aiyohu,10533913,3
+H-Akane,10533913,5
+3843671,10533913,5
+JC921004,10533913,5
+116754255,10533913,5
+48467780,10533913,4
+95074857,10533913,5
+lpoihy,10533913,4
+zhouyun19910131,10533913,-1
+90585850,10533913,4
+32051853,10533913,3
+61086605,10533913,4
+81223352,10533913,3
+84158576,10533913,5
+3534752,10533913,4
+82414014,10533913,4
+59716189,10533913,5
+61334084,10533913,5
+65072386,10533913,4
+75651763,10533913,4
+53142647,10533913,4
+pengze840128,10533913,5
+52138435,10533913,5
+2329944,10533913,4
+56887114,10533913,5
+65623054,10533913,3
+89830791,10533913,5
+4596560,10533913,3
+seclock,10533913,4
+WyBaby,10533913,3
+1766794,10533913,3
+fengge1990,10533913,5
+ninuga-710sss,10533913,5
+viaggiatore,10533913,5
+55984609,10533913,5
+44420768,10533913,5
+1801052,10533913,5
+72111097,10533913,4
+81283209,10533913,5
+hayeke2325156,10533913,3
+69441778,10533913,5
+46032671,10533913,3
+x-inter,10533913,5
+monsoon,10533913,5
+daisychung,10533913,5
+131103445,10533913,5
+56552029,10533913,5
+63849001,10533913,4
+1598012,10533913,5
+51660372,10533913,5
+44594188,10533913,5
+60190763,10533913,5
+85155782,10533913,5
+1001195,10533913,5
+69008622,10533913,5
+69066592,10533913,-1
+cherry1108,10533913,4
+39845819,10533913,5
+pandaxk001,10533913,4
+34094574,10533913,4
+yiyufl,10533913,4
+81391261,10533913,5
+61721922,10533913,5
+68465865,10533913,5
+50694975,10533913,4
+115815894,10533913,4
+3039896,10533913,5
+willshen,10533913,5
+35890579,10533913,5
+miaotuanzi,10533913,5
+4067420,10533913,4
+71573163,10533913,3
+laudee,10533913,4
+3014394,10533913,3
+47583585,10533913,5
+J_Seraph,10533913,4
+42957757,10533913,4
+sundabei,10533913,5
+bluewqq,10533913,5
+111273600,10533913,5
+63099220,10533913,3
+35877941,10533913,4
+70187438,10533913,5
+18274942,10533913,5
+yuikkk,10533913,5
+45239947,10533913,4
+6733231,10533913,4
+74172753,10533913,5
+49277470,10533913,5
+96782721,10533913,4
+96782721,10533913,4
+deseijily,10533913,4
+blueside,10533913,4
+75416666,10533913,4
+coradevil,10533913,4
+58047710,10533913,4
+51937634,10533913,1
+yutingamy,10533913,4
+alicerabbit,10533913,4
+3637289,10533913,5
+Howen,10533913,5
+duax,10533913,5
+komatsumiho,10533913,5
+54101519,10533913,3
+51442836,10533913,5
+129063206,10533913,5
+EternityTT,10533913,-1
+jean627,10533913,4
+1051503,10533913,4
+73719753,10533913,3
+74217594,10533913,4
+49191117,10533913,4
+MissSL,10533913,5
+poissons19,10533913,5
+everpassenger,10533913,4
+57844859,10533913,5
+108419935,10533913,5
+51841459,10533913,5
+74013127,10533913,3
+120002421,10533913,5
+davidtian,10533913,5
+51381782,10533913,5
+gylin,10533913,-1
+47601578,10533913,3
+DeanK,10533913,4
+56357426,10533913,5
+28783620,10533913,4
+53612447,10533913,5
+52560941,10533913,5
+zayaza,10533913,4
+2339752,10533913,4
+1783337,10533913,4
+4618269,10533913,5
+57040262,10533913,5
+hibi,10533913,4
+dreamlysh,10533913,-1
+79746301,10533913,5
+2763828,10533913,4
+Kumamonnn,10533913,5
+133742198,10533913,4
+superharryfan7,10533913,5
+79740335,10533913,5
+41720872,10533913,5
+schery,10533913,5
+53936044,10533913,5
+preconscious,10533913,4
+47546589,10533913,4
+burymyhead,10533913,4
+84001859,10533913,5
+52889197,10533913,5
+2411985,10533913,5
+yuki_kaze,10533913,5
+nuannuan827,10533913,4
+xuewx,10533913,5
+76742267,10533913,5
+zixu117,10533913,5
+74932273,10533913,4
+lolalireader,10533913,5
+87911212,10533913,4
+3717542,10533913,5
+catbuild,10533913,5
+47509216,10533913,5
+2483608,10533913,4
+48936480,10533913,5
+Jellyfish1993,10533913,5
+57831051,10533913,5
+2910620,10533913,4
+SueZhao,10533913,4
+32251971,10533913,4
+32271392,10533913,5
+spsara,10533913,5
+zdoudou,10533913,3
+35864691,10533913,4
+lansetonglizi,10533913,4
+Su33er,10533913,4
+130642973,10533913,5
+suzon_deedee,10533913,4
+44549735,10533913,5
+leopardflying,10533913,-1
+eazi2,10533913,4
+wd,10533913,5
+tianamber,10533913,4
+title,10533913,5
+58587564,10533913,4
+QQ3BlueRose,10533913,5
+viyayaya,10533913,5
+pipimarvin,10533913,5
+fsivyneof4,10533913,5
+114082783,10533913,4
+31673634,10533913,5
+goodull,10533913,5
+4341727,10533913,3
+cy7130,10533913,5
+jolyne,10533913,5
+sophie125,10533913,4
+58913273,10533913,5
+tinny71619,10533913,5
+37373558,10533913,4
+53050998,10533913,4
+49015850,10533913,5
+14594315,10533913,4
+1775965,10533913,5
+62711685,10533913,5
+52187036,10533913,5
+49659191,10533913,4
+peterpan1004,10533913,-1
+46771775,10533913,5
+83885196,10533913,4
+4558738,10533913,5
+66632216,10533913,5
+lovehh0921,10533913,4
+rosacia,10533913,5
+littlepuppet,10533913,5
+48454383,10533913,5
+45283092,10533913,5
+moritahc,10533913,5
+lesleylui,10533913,5
+karen-wh.y,10533913,4
+68887897,10533913,5
+121540770,10533913,2
+Rebekka,10533913,5
+66688383,10533913,-1
+65623952,10533913,4
+xgtmy95,10533913,5
+xiaobenma,10533913,5
+46262431,10533913,4
+63205590,10533913,5
+58185506,10533913,5
+asa-yan,10533913,4
+56782849,10533913,5
+73335242,10533913,5
+Democan,10533913,5
+23853027,10533913,3
+babykor,10533913,5
+sean229,10533913,4
+honeyFrida,10533913,5
+45476063,10533913,4
+1669785,10533913,5
+duduben1861,10533913,4
+miomiomeng,10533913,4
+nwl1991,10533913,5
+MovieL,10533913,4
+whisper,10533913,5
+littlepip,10533913,3
+83691770,10533913,5
+122578622,10533913,5
+tobewith0216,10533913,4
+45164185,10533913,5
+stonemoonbee,10533913,5
+monster52531,10533913,5
+Swangshu,10533913,4
+92897764,10533913,4
+hakino,10533913,4
+51022467,10533913,5
+50882578,10533913,4
+55348613,10533913,5
+haozi1990,10533913,5
+63215029,10533913,5
+92295600,10533913,4
+aikeyinpluto,10533913,5
+78511074,10533913,3
+100090079,10533913,5
+37448218,10533913,4
+3198997,10533913,5
+19136693,10533913,5
+128561388,10533913,5
+57980704,10533913,4
+wc117722,10533913,4
+17549723,10533913,2
+51505905,10533913,3
+63318425,10533913,4
+25683860,10533913,4
+marvelwei,10533913,5
+49297086,10533913,5
+135145215,10533913,3
+65806272,10533913,4
+iadjani,10533913,4
+shelockcrc,10533913,4
+rumo,10533913,5
+nimei0329,10533913,4
+3355786,10533913,4
+2454604,10533913,5
+flower_ryoo,10533913,3
+80766879,10533913,5
+54762005,10533913,3
+48073983,10533913,5
+49635484,10533913,5
+miykok,10533913,5
+82871013,10533913,5
+53652105,10533913,4
+92966403,10533913,3
+45048645,10533913,5
+miaoxiaof,10533913,4
+nabiki1003,10533913,5
+125229784,10533913,4
+7401596,10533913,-1
+89232519,10533913,3
+90697037,10533913,4
+51938291,10533913,5
+yeyayu,10533913,4
+51071699,10533913,5
+jj2332,10533913,4
+65809636,10533913,4
+55978838,10533913,5
+131771988,10533913,4
+3383915,10533913,3
+68294915,10533913,5
+bdch,10533913,4
+131130976,10533913,5
+39007288,10533913,5
+120795158,10533913,5
+joycedevil,10533913,5
+22077242,10533913,3
+chengzhongke,10533913,5
+50335163,10533913,-1
+guanjunyan,10533913,-1
+zixixiangxiang,10533913,4
+46310239,10533913,5
+128821686,10533913,5
+sunnytonight,10533913,5
+4032758,10533913,4
+20216566,10533913,5
+keita1,10533913,5
+lemoon9,10533913,3
+75115688,10533913,5
+43671403,10533913,4
+87381547,10533913,5
+49649488,10533913,3
+127378341,10533913,5
+52387336,10533913,5
+52387336,10533913,5
+50389330,10533913,5
+88856291,10533913,5
+54203324,10533913,5
+105792969,10533913,5
+zwbbob,10533913,5
+50598564,10533913,5
+Ivvip,10533913,5
+79285043,10533913,4
+3934733,10533913,5
+maryoasis,10533913,4
+60717435,10533913,5
+nimezt,10533913,5
+vulgarianvv,10533913,5
+suekz,10533913,4
+58614276,10533913,4
+76198157,10533913,4
+pbc0615,10533913,4
+1553532,10533913,5
+52017448,10533913,5
+cueb,10533913,3
+67679868,10533913,5
+49351921,10533913,4
+62140644,10533913,4
+3322909,10533913,5
+2898955,10533913,3
+MRCellardoor,10533913,5
+meilang.,10533913,4
+69736847,10533913,5
+29667351,10533913,4
+daangel,10533913,4
+58565562,10533913,5
+58078105,10533913,4
+50133185,10533913,3
+sanmigo,10533913,4
+mississluu,10533913,4
+44349387,10533913,5
+dokiii,10533913,3
+gold401,10533913,2
+61920947,10533913,4
+61232502,10533913,5
+wyqstar,10533913,4
+2629275,10533913,5
+jessica0118,10533913,2
+myclover_luo,10533913,4
+dulllennon,10533913,5
+78575214,10533913,5
+little18jo,10533913,4
+thenewhope,10533913,5
+49270206,10533913,5
+119024126,10533913,5
+ibty,10533913,5
+joy_loves_joy,10533913,4
+QINGFENGDIEWU,10533913,5
+40201382,10533913,5
+79342106,10533913,5
+2364795,10533913,4
+foreverjenny,10533913,5
+everfreeneciel,10533913,4
+28241734,10533913,5
+85060926,10533913,5
+rurukyo,10533913,5
+phoebe_wo,10533913,5
+115669845,10533913,4
+3670661,10533913,4
+64459545,10533913,4
+mufanxuanji,10533913,4
+59268516,10533913,4
+fdshanqun,10533913,5
+shizizi,10533913,4
+3382542,10533913,5
+flykyle,10533913,5
+50628636,10533913,5
+luoqiuyue,10533913,5
+66513837,10533913,5
+65562790,10533913,3
+weixiaol,10533913,3
+1321241,10533913,5
+moveqiu,10533913,5
+JHSDOUBAN,10533913,4
+41991102,10533913,5
+53855491,10533913,3
+44001440,10533913,4
+63334997,10533913,5
+61679169,10533913,5
+36735477,10533913,5
+liusongandy,10533913,5
+greencottonrose,10533913,5
+wz1031h,10533913,4
+81668154,10533913,5
+51705193,10533913,5
+109016629,10533913,5
+63714796,10533913,5
+116213668,10533913,4
+46979178,10533913,5
+1340751,10533913,4
+61722322,10533913,4
+62475317,10533913,5
+64658457,10533913,4
+122594677,10533913,5
+132076381,10533913,5
+130755105,10533913,3
+songsida,10533913,4
+callmemrcoolman,10533913,5
+stevenduo,10533913,5
+IncredibleWoody,10533913,5
+dvddvd,10533913,5
+114420146,10533913,4
+60880769,10533913,5
+44658384,10533913,5
+louix,10533913,5
+Beginstosee,10533913,4
+42539278,10533913,4
+fifadcl,10533913,4
+67048173,10533913,5
+96492695,10533913,4
+2569857,10533913,4
+77283735,10533913,5
+115185293,10533913,4
+ankui,10533913,4
+jiezimao,10533913,5
+49206550,10533913,5
+xyhen,10533913,4
+13463341,10533913,5
+biskup,10533913,5
+49266005,10533913,5
+47977266,10533913,5
+wolfboar,10533913,5
+8523675,10533913,4
+113977777,10533913,5
+43596686,10533913,5
+88077335,10533913,5
+bearbebop,10533913,3
+2123728,10533913,5
+35533635,10533913,5
+bh1994,10533913,5
+hyhmq,10533913,5
+liumiaokai,10533913,5
+57288121,10533913,5
+43127897,10533913,5
+3851739,10533913,5
+winterleo,10533913,5
+66980915,10533913,3
+2008667,10533913,5
+41896370,10533913,5
+threesun,10533913,5
+59172226,10533913,5
+125474588,10533913,4
+95246636,10533913,5
+52918110,10533913,5
+lslgreen,10533913,4
+58836054,10533913,5
+57674769,10533913,5
+chilliza,10533913,4
+2746630,10533913,3
+briefyyq,10533913,5
+jason-shi,10533913,3
+51030434,10533913,5
+xanadu2004,10533913,1
+xieetuzi,10533913,4
+54387469,10533913,5
+36862106,10533913,5
+96383885,10533913,5
+119314336,10533913,5
+39024048,10533913,4
+87448827,10533913,5
+jjunfan,10533913,3
+MoretzH,10533913,5
+1439659,10533913,5
+52113084,10533913,5
+mlgbpirate,10533913,5
+Eaonjustice,10533913,5
+81478198,10533913,1
+43671696,10533913,4
+43732585,10533913,4
+xuchaoigo,10533913,4
+24387412,10533913,4
+37509961,10533913,5
+42443171,10533913,4
+54240662,10533913,5
+119296421,10533913,5
+crowdedstars,10533913,4
+70934431,10533913,5
+74097394,10533913,5
+46064508,10533913,4
+egnus,10533913,5
+63672355,10533913,5
+xiaoyuhen,10533913,5
+rajorAn,10533913,5
+baiyuanbao,10533913,3
+130504774,10533913,5
+sevpridra,10533913,5
+47746018,10533913,5
+61490761,10533913,5
+grammarbai,10533913,3
+55554310,10533913,4
+cnsjw,10533913,5
+sewer-d,10533913,4
+53128064,10533913,5
+42517559,10533913,5
+shirley115,10533913,3
+62476143,10533913,-1
+amuer,10533913,5
+49117233,10533913,5
+3385352,10533913,5
+54033995,10533913,5
+88611960,10533913,5
+8444736,10533913,5
+v0627,10533913,5
+cindyrabbit,10533913,5
+34851656,10533913,4
+49948273,10533913,4
+become,10533913,4
+57842249,10533913,5
+LuvLifeJune,10533913,5
+2071869,10533913,-1
+Ann,10533913,4
+80732468,10533913,4
+wouldntitbenice,10533913,5
+45484861,10533913,4
+61302654,10533913,4
+saintdump,10533913,3
+63987683,10533913,4
+64248794,10533913,5
+35889806,10533913,5
+122178478,10533913,4
+meteora,10533913,5
+45631897,10533913,5
+knightingreen,10533913,5
+zqt0,10533913,5
+70779185,10533913,4
+60974953,10533913,5
+71588552,10533913,5
+49188433,10533913,4
+zaoyiwanglewo,10533913,5
+59030523,10533913,5
+75652747,10533913,5
+33177895,10533913,4
+55491979,10533913,5
+3002217,10533913,4
+why051370,10533913,5
+35252346,10533913,4
+evanglion,10533913,5
+RoronoaLuffy,10533913,5
+krista_ran,10533913,5
+56408861,10533913,5
+48308518,10533913,3
+42778669,10533913,5
+mrbrooks,10533913,4
+43270152,10533913,4
+41648161,10533913,4
+39520405,10533913,4
+callmefabar,10533913,4
+83433400,10533913,3
+3920336,10533913,5
+LittleMoxa,10533913,5
+alinna_yun,10533913,4
+Makoto614,10533913,3
+70397135,10533913,5
+2310617,10533913,5
+yixi7,10533913,4
+42709375,10533913,5
+levid,10533913,5
+46911355,10533913,5
+123313543,10533913,5
+81499693,10533913,4
+48774263,10533913,5
+Vincent0829,10533913,1
+2255714,10533913,5
+47243761,10533913,5
+116600876,10533913,5
+queen70,10533913,4
+104056990,10533913,4
+ring_ring,10533913,4
+36253346,10533913,4
+1557525,10533913,5
+Yanna_z,10533913,4
+50507097,10533913,5
+hanxudaydayup,10533913,5
+134088482,10533913,5
+2272740,10533913,-1
+1845398,10533913,5
+xiaoxinadd,10533913,5
+34017621,10533913,4
+65132102,10533913,4
+65126364,10533913,5
+75421983,10533913,3
+114329710,10533913,5
+56796153,10533913,5
+66362602,10533913,4
+Coast0to0coast,10533913,4
+laozhang0626,10533913,4
+67145366,10533913,5
+79952072,10533913,3
+1412545,10533913,4
+dayandnights,10533913,4
+45563249,10533913,5
+1909194,10533913,5
+Aquariums,10533913,5
+3761305,10533913,4
+2960404,10533913,4
+zqy931213,10533913,4
+wakahoo,10533913,5
+51464562,10533913,4
+sherly0710,10533913,5
+41792966,10533913,3
+mylittlechul_c,10533913,5
+70699443,10533913,4
+63675297,10533913,3
+107556145,10533913,5
+50589086,10533913,5
+moesolo,10533913,3
+touya0229,10533913,4
+41369322,10533913,4
+89723194,10533913,3
+puxiancheng,10533913,4
+34638358,10533913,5
+13993334,10533913,5
+jzhang1610,10533913,4
+1494376,10533913,3
+6011104,10533913,3
+67184394,10533913,5
+15571904,10533913,5
+94574301,10533913,5
+Davidcyclone,10533913,-1
+3812638,10533913,-1
+129135232,10533913,5
+83619054,10533913,5
+50096685,10533913,5
+62221934,10533913,4
+qyqgpower,10533913,4
+liulenju,10533913,4
+anliye,10533913,5
+33250269,10533913,4
+59018880,10533913,4
+65166974,10533913,5
+103106457,10533913,4
+shouhulantian,10533913,5
+lostintheairr,10533913,4
+sophrene,10533913,4
+61550476,10533913,4
+39580475,10533913,5
+biggod,10533913,4
+49303961,10533913,5
+53778664,10533913,5
+74913423,10533913,5
+LEE0222,10533913,5
+69360513,10533913,5
+13203922,10533913,5
+78680128,10533913,4
+Madaotaku,10533913,4
+89062167,10533913,4
+70011740,10533913,5
+59159384,10533913,5
+viiaan,10533913,5
+46169347,10533913,5
+Fascinne,10533913,5
+hyocheong,10533913,5
+90847864,10533913,5
+4047603,10533913,5
+rosecheery,10533913,4
+atangxiong,10533913,3
+henry-va-parle,10533913,5
+69037881,10533913,5
+43828485,10533913,5
+36682196,10533913,4
+102901525,10533913,3
+66974866,10533913,5
+sevenVSseven,10533913,5
+64978016,10533913,4
+61704460,10533913,5
+Jodiezhang,10533913,5
+xylose,10533913,4
+79371301,10533913,5
+3943264,10533913,5
+63086434,10533913,5
+2217112,10533913,4
+58689534,10533913,5
+3178442,10533913,3
+75756405,10533913,4
+greatMRZ,10533913,5
+1221938,10533913,5
+53907528,10533913,5
+3547067,10533913,2
+41254222,10533913,5
+stillsanshan,10533913,4
+53591666,10533913,5
+42622088,10533913,-1
+45104299,10533913,4
+93158337,10533913,5
+83075828,10533913,5
+giantpanda,10533913,4
+61753661,10533913,5
+58536535,10533913,5
+71093640,10533913,5
+69031976,10533913,5
+102960018,10533913,5
+54643617,10533913,5
+49044832,10533913,4
+2845886,10533913,3
+theyear,10533913,4
+79047836,10533913,5
+80884901,10533913,4
+134600773,10533913,3
+75843968,10533913,4
+60655749,10533913,5
+wyc198765,10533913,4
+94845988,10533913,5
+130671534,10533913,5
+94032593,10533913,5
+87863086,10533913,5
+kevinward,10533913,5
+80999703,10533913,5
+51580622,10533913,5
+i0,10533913,5
+33399271,10533913,4
+tomhu,10533913,2
+2842455,10533913,5
+hqwxyz,10533913,5
+52766215,10533913,-1
+82776171,10533913,5
+61788705,10533913,5
+ixerol,10533913,5
+57901422,10533913,3
+78571536,10533913,5
+76790888,10533913,3
+destney,10533913,4
+66329057,10533913,5
+gdhdun,10533913,4
+swanwise,10533913,4
+71697872,10533913,4
+aipa,10533913,5
+eriol1987,10533913,5
+53368191,10533913,3
+134146156,10533913,5
+dodoll,10533913,3
+tengteng58,10533913,4
+2641158,10533913,5
+46394662,10533913,4
+4618089,10533913,4
+38500219,10533913,5
+43464899,10533913,5
+cara-roamer,10533913,4
+bagpipesyu,10533913,5
+75863554,10533913,5
+64123749,10533913,5
+43662496,10533913,4
+50063625,10533913,4
+snakesarah,10533913,4
+69427113,10533913,5
+teikamouse,10533913,5
+121516783,10533913,5
+93690274,10533913,5
+50036735,10533913,5
+62282689,10533913,5
+novasu,10533913,4
+55871433,10533913,4
+109530447,10533913,4
+67779954,10533913,5
+lastzoo,10533913,2
+81371751,10533913,4
+SpenceAguilar,10533913,5
+danmark_cuber,10533913,4
+zuoshoudezuo,10533913,5
+84142287,10533913,5
+125151032,10533913,4
+AJIONG119,10533913,5
+adayaway,10533913,4
+1423262,10533913,4
+122900035,10533913,5
+zht391,10533913,5
+48217121,10533913,4
+72662018,10533913,5
+57003770,10533913,5
+8932433,10533913,5
+imyoyo1116,10533913,4
+57195945,10533913,4
+46360796,10533913,4
+127998296,10533913,5
+70131254,10533913,4
+57059547,10533913,5
+71741571,10533913,-1
+102606012,10533913,5
+jung106,10533913,4
+65274866,10533913,5
+69004931,10533913,2
+waitinz,10533913,5
+135315015,10533913,5
+122068136,10533913,5
+echoabc0409,10533913,4
+1943869,10533913,4
+115725912,10533913,5
+fqlv5,10533913,3
+Mignonette-W,10533913,4
+65134309,10533913,5
+79537393,10533913,4
+49317045,10533913,5
+104629005,10533913,5
+lucyn,10533913,5
+121353064,10533913,5
+82531582,10533913,4
+60377456,10533913,5
+wanran8,10533913,5
+roysama,10533913,5
+liosha_bfsu,10533913,5
+giacintaxx,10533913,5
+41122541,10533913,4
+80209748,10533913,5
+critus1110,10533913,5
+119203760,10533913,4
+rebecca.psy,10533913,5
+april420,10533913,5
+79372510,10533913,5
+eggpant,10533913,5
+liwujiu,10533913,4
+115660168,10533913,4
+65199152,10533913,3
+45631732,10533913,1
+52876797,10533913,5
+hl7,10533913,3
+43235070,10533913,3
+59089460,10533913,5
+EnolaGay,10533913,5
+77060018,10533913,4
+60380024,10533913,5
+34493482,10533913,4
+effyu,10533913,4
+119533372,10533913,5
+62527850,10533913,5
+49329563,10533913,4
+suhuiyige,10533913,5
+122336700,10533913,5
+lymh,10533913,4
+bearble,10533913,5
+fyl00,10533913,-1
+sugertk,10533913,5
+reave,10533913,5
+76406733,10533913,5
+tigerwu,10533913,4
+Eie10_9,10533913,4
+beibei5558,10533913,1
+2599607,10533913,4
+lumins,10533913,3
+HarryBabel,10533913,5
+kaylynn,10533913,5
+62111760,10533913,4
+YuleWu,10533913,4
+135634294,10533913,5
+70440245,10533913,5
+toddzhou,10533913,5
+neneha,10533913,4
+1481649,10533913,4
+57968864,10533913,3
+moyuxxoomaomao,10533913,4
+4856520,10533913,5
+shuyingtingdi,10533913,4
+88174425,10533913,5
+71552496,10533913,5
+42759061,10533913,5
+132611804,10533913,4
+60028208,10533913,5
+bendanguangguan,10533913,5
+treesun173,10533913,5
+Yinaly,10533913,4
+84785338,10533913,4
+nicolelan,10533913,5
+waterskop,10533913,5
+127515076,10533913,5
+DarkKate,10533913,5
+shenalpha,10533913,5
+liujunhe123,10533913,5
+43903711,10533913,5
+rock0323,10533913,5
+43506224,10533913,5
+miqu,10533913,3
+adamhsieh,10533913,5
+wuxiaocao,10533913,4
+67014670,10533913,3
+QQY,10533913,5
+lesoleil29,10533913,4
+quanquan5885,10533913,5
+buwubuhui,10533913,4
+121033172,10533913,5
+43156253,10533913,4
+99350699,10533913,5
+51248598,10533913,5
+47691790,10533913,3
+37899965,10533913,4
+68029503,10533913,4
+53364915,10533913,4
+60410320,10533913,5
+78414144,10533913,5
+45633556,10533913,5
+appleweiwei,10533913,4
+70844899,10533913,5
+90037986,10533913,5
+70052197,10533913,5
+55817767,10533913,4
+liyawoo,10533913,4
+33370952,10533913,5
+40481062,10533913,3
+makebelieve,10533913,5
+127378719,10533913,4
+jopees,10533913,5
+61649425,10533913,5
+glasstar,10533913,5
+67184008,10533913,5
+3688568,10533913,4
+52585329,10533913,5
+steve647,10533913,5
+61366288,10533913,5
+blunder,10533913,5
+FEDERICO123,10533913,5
+29696256,10533913,5
+120091522,10533913,5
+65075320,10533913,5
+Mogywai,10533913,4
+68675820,10533913,5
+91152583,10533913,5
+51812632,10533913,4
+79562041,10533913,5
+izhukai,10533913,1
+existtoevendead,10533913,5
+46634841,10533913,5
+wangjijuzi,10533913,5
+49411986,10533913,5
+130132099,10533913,4
+91504508,10533913,5
+130744180,10533913,4
+JustYellow,10533913,5
+1310260,10533913,5
+Jaytaoo,10533913,4
+120365683,10533913,5
+2472751,10533913,4
+81211425,10533913,4
+62579315,10533913,5
+128587734,10533913,5
+1326095,10533913,4
+countcrows,10533913,5
+mylbj,10533913,4
+qiyingrunhua,10533913,5
+34889740,10533913,4
+58438773,10533913,5
+sodafan,10533913,4
+56858678,10533913,4
+hailuo,10533913,5
+mumcy,10533913,4
+44706331,10533913,5
+amet_0,10533913,5
+flowermumu,10533913,4
+52422400,10533913,5
+64290310,10533913,5
+41343112,10533913,2
+112979772,10533913,5
+joyceshan,10533913,5
+ideyes,10533913,3
+unclecake,10533913,5
+zqbj,10533913,5
+129495494,10533913,4
+4826633,10533913,3
+Like_zsy,10533913,4
+55817697,10533913,3
+115706838,10533913,5
+59627608,10533913,3
+40567146,10533913,5
+laurel-nanr,10533913,5
+121933130,10533913,4
+chesterchoi,10533913,3
+yishenmanli,10533913,5
+kenshinssz,10533913,4
+bunny636,10533913,5
+3725119,10533913,5
+58550778,10533913,5
+46665128,10533913,3
+70160400,10533913,4
+65084443,10533913,4
+littleisle,10533913,5
+124660941,10533913,4
+15005083,10533913,4
+73067284,10533913,4
+Blureen,10533913,5
+86208688,10533913,4
+102644288,10533913,-1
+BabySchumi,10533913,5
+53945006,10533913,3
+103500023,10533913,5
+41307480,10533913,5
+tenr,10533913,5
+wuzouhuanghun,10533913,4
+88439681,10533913,4
+65079823,10533913,5
+14965275,10533913,4
+mogu_,10533913,5
+kyleul,10533913,5
+85401515,10533913,3
+54844787,10533913,5
+dogbus,10533913,4
+57907537,10533913,4
+vianann,10533913,4
+42805727,10533913,5
+67551969,10533913,5
+rangxiao,10533913,4
+119997164,10533913,5
+36610260,10533913,5
+103149314,10533913,4
+50629676,10533913,5
+58521972,10533913,5
+missssssing,10533913,4
+47100950,10533913,4
+88345379,10533913,5
+38803170,10533913,3
+55886490,10533913,5
+yangziche,10533913,5
+tuyoudesign,10533913,5
+may5,10533913,4
+69930229,10533913,3
+Bingbing.,10533913,3
+121666382,10533913,3
+51441681,10533913,5
+52925540,10533913,5
+vedaland,10533913,3
+87982146,10533913,5
+45099341,10533913,3
+69349654,10533913,5
+27028067,10533913,5
+56492985,10533913,5
+82353804,10533913,4
+49589057,10533913,3
+30441986,10533913,5
+71812966,10533913,5
+athensmay,10533913,-1
+50116920,10533913,5
+91995423,10533913,3
+2415644,10533913,4
+4100649,10533913,4
+yanya,10533913,5
+39955982,10533913,4
+kellyelbe,10533913,5
+3351455,10533913,4
+nolanjr,10533913,5
+121115542,10533913,5
+severus,10533913,5
+115795239,10533913,3
+dengxile,10533913,5
+2923156,10533913,5
+tudounvjue,10533913,5
+62664539,10533913,5
+59272939,10533913,5
+77577340,10533913,5
+89855162,10533913,5
+53564451,10533913,4
+82431278,10533913,4
+xiki.m,10533913,5
+cometlulu,10533913,5
+32433633,10533913,5
+4538817,10533913,2
+3391941,10533913,4
+46342568,10533913,5
+52605679,10533913,5
+37558127,10533913,4
+68534357,10533913,5
+3164355,10533913,5
+ZHUZHU111,10533913,5
+52087392,10533913,4
+65542569,10533913,4
+danrui,10533913,5
+14040750,10533913,2
+93153537,10533913,5
+tonyii06,10533913,5
+79210098,10533913,4
+132568807,10533913,4
+lithilda,10533913,5
+63110579,10533913,4
+brofox,10533913,5
+83891521,10533913,4
+75453804,10533913,5
+ilovetaylor,10533913,5
+nintendog,10533913,-1
+135073358,10533913,5
+49366823,10533913,4
+pengzhou,10533913,5
+99025591,10533913,5
+77052440,10533913,4
+3449578,10533913,3
+caoenjian,10533913,1
+75057746,10533913,4
+malcolmyu,10533913,5
+4211495,10533913,5
+89908127,10533913,4
+42016293,10533913,4
+73979703,10533913,4
+65216675,10533913,4
+kkorange,10533913,5
+53591524,10533913,4
+3846319,10533913,4
+65392736,10533913,4
+43585255,10533913,5
+64467057,10533913,4
+wwwsxst,10533913,1
+84710865,10533913,5
+130654365,10533913,5
+Caoxiao,10533913,5
+51546106,10533913,5
+59063636,10533913,5
+zuiaiyanda,10533913,5
+42535832,10533913,5
+Goo0ooD,10533913,3
+54096060,10533913,4
+evaniscoming,10533913,5
+73735858,10533913,5
+45590222,10533913,5
+76128853,10533913,5
+lukeyu,10533913,5
+zhuyayun,10533913,5
+mirror3636,10533913,2
+3600589,10533913,5
+129470292,10533913,4
+92340097,10533913,-1
+hzx9991,10533913,4
+46085016,10533913,5
+37370038,10533913,5
+calypso29,10533913,4
+clh7,10533913,5
+diylove,10533913,3
+52484761,10533913,5
+82771388,10533913,5
+54411960,10533913,5
+oasisercher,10533913,4
+103951444,10533913,5
+1297671,10533913,5
+silvanyu,10533913,5
+45935605,10533913,4
+sora203,10533913,5
+52350359,10533913,5
+49258398,10533913,5
+59263792,10533913,4
+4523741,10533913,4
+93892137,10533913,4
+kejinlong,10533913,3
+52912743,10533913,4
+ouyazhaozha,10533913,5
+79142901,10533913,5
+58510231,10533913,5
+78914788,10533913,5
+63359487,10533913,5
+62415146,10533913,5
+2109472,10533913,5
+17436432,10533913,5
+Yoooyoung,10533913,4
+37897776,10533913,3
+34009269,10533913,4
+128928954,10533913,2
+127083032,10533913,5
+Lennon_zhuwei,10533913,5
+98522536,10533913,5
+103045657,10533913,5
+kiwigwj,10533913,4
+49269031,10533913,4
+48906452,10533913,5
+Debby.Q,10533913,5
+BLprince,10533913,4
+Chivar,10533913,5
+masterbuyuan,10533913,5
+miqiao,10533913,5
+yujianwo49,10533913,4
+53656219,10533913,4
+YukiYou,10533913,4
+56273353,10533913,4
+fiona751,10533913,5
+ifesherry,10533913,5
+bearlost,10533913,5
+56783238,10533913,3
+3450662,10533913,4
+58896741,10533913,5
+asterialeto,10533913,4
+81391880,10533913,4
+120833883,10533913,4
+73061172,10533913,5
+Xingda,10533913,3
+35183435,10533913,5
+ccinder,10533913,4
+BackToNight,10533913,5
+121479444,10533913,5
+67741872,10533913,5
+liyuanhui,10533913,5
+89640678,10533913,5
+62532021,10533913,3
+JumperM,10533913,4
+79534450,10533913,5
+6539111,10533913,4
+violan,10533913,5
+121479059,10533913,5
+48306003,10533913,5
+132865344,10533913,4
+46915487,10533913,4
+64104549,10533913,5
+67179244,10533913,5
+birdieeos,10533913,4
+76356022,10533913,5
+133703531,10533913,3
+50062156,10533913,5
+suxiaobu,10533913,5
+BuddhaTree,10533913,5
+4138330,10533913,5
+41823915,10533913,3
+131288571,10533913,4
+6987390,10533913,4
+xboncher233,10533913,4
+52399993,10533913,4
+47719447,10533913,5
+he3764,10533913,4
+garymaycry,10533913,3
+yunwaizhizhi,10533913,3
+koukouxuanhe,10533913,4
+27037345,10533913,4
+36115057,10533913,5
+hwh,10533913,3
+58034264,10533913,4
+89807150,10533913,5
+kekexilijiu,10533913,4
+kekexilijiu,10533913,4
+36078455,10533913,5
+91031128,10533913,4
+57080555,10533913,3
+49160139,10533913,-1
+135410614,10533913,5
+57969399,10533913,5
+108480827,10533913,4
+94260167,10533913,5
+49893647,10533913,4
+89171319,10533913,4
+17385540,10533913,4
+43388025,10533913,5
+127066563,10533913,4
+wsbaihu,10533913,5
+eazycreep,10533913,5
+130539334,10533913,5
+80526466,10533913,4
+73034014,10533913,5
+75283214,10533913,4
+Sapporo,10533913,4
+aoaoaoaoaoaoao,10533913,5
+woshionion,10533913,5
+44010009,10533913,5
+johnsontsai,10533913,5
+74658279,10533913,5
+52961960,10533913,3
+edwardtroy,10533913,1
+65734199,10533913,3
+120978925,10533913,4
+58067735,10533913,5
+liuchan2011,10533913,5
+mengmengh,10533913,3
+daly0520,10533913,5
+82874810,10533913,4
+SunnyLuo,10533913,5
+star-b612,10533913,5
+guaitai19960115,10533913,5
+129087038,10533913,5
+4866014,10533913,5
+homepackage,10533913,-1
+Miralte,10533913,5
+tjz230,10533913,5
+135430603,10533913,2
+123625456,10533913,4
+81916004,10533913,5
+22704847,10533913,5
+Desiree,10533913,5
+91239382,10533913,4
+58463155,10533913,5
+HL0919,10533913,5
+59032148,10533913,3
+44708171,10533913,4
+55886831,10533913,5
+jenny0624,10533913,5
+tabisaikou,10533913,3
+82994452,10533913,1
+echofrancis,10533913,4
+3491467,10533913,5
+79598588,10533913,5
+dengwf91,10533913,5
+130692591,10533913,5
+63588779,10533913,5
+ATONNN,10533913,4
+2444385,10533913,5
+55624781,10533913,5
+71348074,10533913,5
+58186855,10533913,5
+82437320,10533913,4
+3502559,10533913,5
+49786872,10533913,5
+49493827,10533913,5
+127323071,10533913,3
+xiaoshan0201,10533913,5
+52593489,10533913,4
+70042269,10533913,5
+62610096,10533913,4
+2126869,10533913,4
+82106008,10533913,5
+66950057,10533913,5
+twoherb,10533913,-1
+catswho,10533913,5
+73827929,10533913,3
+Kingnima,10533913,4
+33388180,10533913,5
+69972569,10533913,5
+47193126,10533913,4
+79559178,10533913,4
+133542070,10533913,5
+135585747,10533913,5
+2961232,10533913,3
+34182992,10533913,5
+49913221,10533913,5
+68433891,10533913,5
+3977584,10533913,5
+janelcc777,10533913,4
+67511465,10533913,5
+66902287,10533913,5
+snowbubblelf,10533913,5
+2909779,10533913,5
+ruck,10533913,5
+xxxcici123,10533913,4
+48519318,10533913,4
+SKTM,10533913,4
+121920760,10533913,5
+38811434,10533913,3
+81297479,10533913,5
+wangguibao,10533913,3
+SafeHaven,10533913,5
+53932937,10533913,5
+52119631,10533913,5
+57881792,10533913,5
+witchmignon,10533913,5
+FrankWasabi,10533913,4
+specialvera,10533913,5
+88338755,10533913,3
+35684219,10533913,4
+122228928,10533913,5
+uniqueaw,10533913,5
+erjing,10533913,5
+davyjones,10533913,3
+46688999,10533913,5
+77021678,10533913,5
+45940438,10533913,5
+40970313,10533913,5
+122941400,10533913,4
+xiaoyu315,10533913,4
+51584881,10533913,4
+goubaba,10533913,5
+freeup157,10533913,5
+3854746,10533913,4
+53342408,10533913,5
+37848161,10533913,4
+Stopcasting,10533913,5
+missguo3,10533913,5
+55306149,10533913,5
+121738119,10533913,2
+tmrai,10533913,5
+star-,10533913,5
+wangdoudou20,10533913,5
+liubin192,10533913,5
+58505480,10533913,5
+81936466,10533913,5
+42507473,10533913,3
+125760534,10533913,4
+62743500,10533913,4
+107495405,10533913,4
+134499972,10533913,5
+81551351,10533913,5
+52242741,10533913,4
+sircayden,10533913,5
+54885866,10533913,4
+41317103,10533913,5
+71467734,10533913,5
+56243256,10533913,4
+79498937,10533913,5
+130164378,10533913,3
+119226922,10533913,5
+60810849,10533913,4
+2986133,10533913,5
+17245901,10533913,5
+70173493,10533913,5
+chenchunru,10533913,5
+115665873,10533913,5
+57947466,10533913,5
+28212620,10533913,4
+4640701,10533913,4
+84430794,10533913,5
+yeslie,10533913,4
+graceinjune,10533913,4
+68366606,10533913,5
+79311625,10533913,5
+RosePooh,10533913,5
+oweuuu,10533913,-1
+79741169,10533913,4
+59884270,10533913,5
+74601156,10533913,4
+wodemu,10533913,4
+JaneCooper,10533913,5
+50517025,10533913,5
+62869919,10533913,5
+champernova0507,10533913,5
+2190029,10533913,5
+121680939,10533913,5
+130692811,10533913,4
+summergazing,10533913,-1
+53823594,10533913,5
+wicca1025,10533913,5
+36579827,10533913,5
+2444430,10533913,5
+27237693,10533913,5
+snakefly,10533913,5
+xuansushine,10533913,5
+vivisnbb,10533913,4
+51422581,10533913,3
+130506104,10533913,3
+69914528,10533913,4
+51848351,10533913,5
+2783407,10533913,4
+122219958,10533913,5
+Alvin0414,10533913,4
+126976480,10533913,5
+coldlife,10533913,5
+47155914,10533913,3
+91081139,10533913,4
+81410150,10533913,5
+50195035,10533913,5
+69680398,10533913,5
+67742715,10533913,5
+liyan1011,10533913,5
+1486502,10533913,3
+99806468,10533913,4
+yu830,10533913,5
+30492787,10533913,5
+shushizhenliu,10533913,3
+42232123,10533913,-1
+alianhei,10533913,5
+60484980,10533913,5
+niki2wynn,10533913,5
+seekyo,10533913,5
+84569100,10533913,3
+131183374,10533913,5
+78548715,10533913,5
+66602650,10533913,5
+2277888,10533913,5
+67958578,10533913,5
+johnyang,10533913,5
+pea_sandy,10533913,5
+75332945,10533913,5
+YVANFUS,10533913,5
+72101661,10533913,5
+silentsilas,10533913,4
+121655383,10533913,4
+64854726,10533913,5
+135401156,10533913,5
+iear,10533913,5
+47977269,10533913,5
+68015443,10533913,5
+85022173,10533913,5
+92393333,10533913,5
+33602395,10533913,5
+68013076,10533913,5
+57368289,10533913,5
+wdcvivi,10533913,-1
+jc33,10533913,5
+54688343,10533913,5
+63575195,10533913,5
+57775883,10533913,5
+79862222,10533913,5
+87529198,10533913,5
+74818677,10533913,4
+103277074,10533913,5
+antmujue,10533913,5
+46715327,10533913,5
+50244103,10533913,3
+73107117,10533913,5
+Phyllis5,10533913,4
+lichulei,10533913,4
+jianinglee,10533913,4
+67404240,10533913,4
+71950308,10533913,5
+94332326,10533913,5
+2737420,10533913,5
+lucienhuang,10533913,5
+13527027,10533913,5
+80354020,10533913,5
+38246464,10533913,3
+40588464,10533913,5
+45313742,10533913,5
+ccmaycry,10533913,3
+musicaholicM,10533913,5
+62659146,10533913,4
+127508395,10533913,5
+123688744,10533913,4
+tenderhearted,10533913,3
+around_theworld,10533913,4
+115287712,10533913,4
+77648355,10533913,5
+67930185,10533913,5
+30857176,10533913,5
+57314870,10533913,4
+2576970,10533913,5
+73458864,10533913,5
+97977376,10533913,4
+64253762,10533913,5
+114935667,10533913,4
+3024123,10533913,5
+CharlesChou,10533913,5
+shifted,10533913,4
+85404250,10533913,3
+66332693,10533913,4
+50641998,10533913,4
+57479988,10533913,3
+43712749,10533913,5
+123460619,10533913,5
+127496421,10533913,4
+3880942,10533913,5
+120527866,10533913,5
+46943365,10533913,4
+shenpo333,10533913,4
+misawang,10533913,3
+68486206,10533913,4
+2600693,10533913,5
+26298804,10533913,5
+54919823,10533913,3
+56196085,10533913,5
+lingxishuyu,10533913,4
+45978474,10533913,5
+69186562,10533913,4
+53244433,10533913,5
+84055341,10533913,5
+59458875,10533913,4
+60432635,10533913,5
+Knox,10533913,4
+1522607,10533913,5
+72984075,10533913,5
+izzn,10533913,4
+aprisliver,10533913,5
+87532340,10533913,4
+65458998,10533913,5
+feiyang,10533913,5
+karif,10533913,3
+65181695,10533913,5
+meltyice,10533913,5
+61166849,10533913,5
+132790620,10533913,5
+78413011,10533913,5
+41307413,10533913,5
+1175666,10533913,5
+51275874,10533913,3
+ballteda,10533913,5
+53291817,10533913,5
+124299373,10533913,4
+41947526,10533913,5
+fattyme,10533913,5
+45595430,10533913,4
+81003990,10533913,5
+12244253,10533913,4
+49002380,10533913,5
+69094998,10533913,5
+62668036,10533913,5
+44537655,10533913,3
+77218169,10533913,4
+73878048,10533913,5
+54596610,10533913,5
+loveloki913,10533913,5
+i80hou,10533913,5
+ashleyzla,10533913,4
+pandaouka,10533913,4
+platon_doyle,10533913,4
+typezero,10533913,5
+4750967,10533913,3
+oycl,10533913,4
+sirk,10533913,5
+94444600,10533913,5
+124737964,10533913,-1
+76933799,10533913,5
+58489855,10533913,5
+49499844,10533913,5
+52075541,10533913,4
+tanowen,10533913,5
+49065754,10533913,5
+56237449,10533913,3
+37194628,10533913,3
+84244952,10533913,5
+76417903,10533913,5
+116782951,10533913,5
+43475473,10533913,5
+45796251,10533913,5
+xiaosongqu,10533913,4
+EddieCurre,10533913,5
+gexiarong,10533913,3
+109084248,10533913,5
+119695950,10533913,5
+58020700,10533913,5
+pekoisagirl,10533913,5
+52561499,10533913,5
+56070920,10533913,4
+2244671,10533913,4
+61621959,10533913,4
+62113425,10533913,5
+45577366,10533913,5
+69556893,10533913,5
+84158526,10533913,5
+66353833,10533913,5
+dannytheking,10533913,3
+71837063,10533913,5
+RRspace,10533913,4
+68242891,10533913,4
+76165337,10533913,5
+47396719,10533913,5
+6149977,10533913,-1
+51763291,10533913,4
+102034206,10533913,5
+xingbienan,10533913,5
+127799599,10533913,5
+54873138,10533913,5
+yaya_1990,10533913,4
+14157576,10533913,3
+2663646,10533913,5
+2663646,10533913,5
+58283647,10533913,4
+54584070,10533913,5
+1379137,10533913,5
+52146606,10533913,4
+xiaozhudejia,10533913,5
+74420370,10533913,4
+49134204,10533913,5
+75015059,10533913,5
+60311898,10533913,5
+4692603,10533913,5
+Ophelia14,10533913,5
+littlevanny,10533913,3
+53050903,10533913,4
+78857427,10533913,5
+marysays,10533913,-1
+sherry0425,10533913,5
+69840641,10533913,5
+listenmumu,10533913,5
+kogoromori,10533913,3
+aiyouwoca,10533913,5
+82219188,10533913,5
+51139979,10533913,5
+38585330,10533913,5
+mobymarry,10533913,5
+61076987,10533913,5
+24274750,10533913,4
+glassywitch,10533913,4
+126320838,10533913,5
+51152974,10533913,5
+58161520,10533913,5
+angelstone,10533913,5
+kikyo531,10533913,4
+Sandorothy,10533913,3
+80240498,10533913,5
+leonardodicapri,10533913,5
+74551171,10533913,5
+doremicowcow,10533913,5
+honey-honey,10533913,5
+suprun,10533913,5
+50073903,10533913,3
+2780577,10533913,5
+63403641,10533913,4
+129478508,10533913,3
+60798326,10533913,3
+92154012,10533913,5
+57028649,10533913,5
+mengqingjiao,10533913,4
+67182363,10533913,5
+49854531,10533913,4
+46661734,10533913,4
+54770734,10533913,5
+51271683,10533913,5
+58175838,10533913,5
+52984450,10533913,5
+3471398,10533913,5
+Gabrie,10533913,3
+43340338,10533913,5
+120378701,10533913,5
+129288424,10533913,5
+76414184,10533913,4
+129365030,10533913,4
+59995660,10533913,5
+73699015,10533913,5
+48217590,10533913,5
+33538024,10533913,5
+xiezhamawei,10533913,3
+liamcai,10533913,5
+50341396,10533913,5
+phoenixfannie,10533913,4
+4016925,10533913,5
+53905800,10533913,5
+26757948,10533913,4
+raquelycidas,10533913,4
+127690553,10533913,3
+yipiankongbai,10533913,5
+46439800,10533913,5
+41214988,10533913,5
+56062808,10533913,5
+franklyn1210,10533913,5
+103727305,10533913,4
+62222653,10533913,5
+chenzihan,10533913,5
+taoqianmo,10533913,5
+GreenAdam,10533913,4
+71057399,10533913,3
+Cello7_11,10533913,-1
+63873621,10533913,5
+89399541,10533913,5
+120467898,10533913,5
+66147865,10533913,4
+qiantuo0508,10533913,5
+56099441,10533913,4
+130603786,10533913,5
+58197963,10533913,5
+3112705,10533913,5
+68227584,10533913,3
+62072231,10533913,5
+65995981,10533913,3
+62930321,10533913,5
+mfary,10533913,5
+qijiuzhiyue,10533913,4
+14406293,10533913,5
+nanm_ridiculous,10533913,4
+52726255,10533913,5
+octobia,10533913,5
+49072653,10533913,5
+133913550,10533913,5
+sailorcooper,10533913,5
+65108877,10533913,5
+3917363,10533913,4
+58847654,10533913,5
+nmsfan,10533913,5
+97114018,10533913,5
+89726078,10533913,2
+fujunyi,10533913,1
+57146749,10533913,4
+57826492,10533913,5
+71465294,10533913,5
+43256131,10533913,5
+82198158,10533913,3
+52477984,10533913,5
+28357214,10533913,4
+77341171,10533913,5
+82980188,10533913,5
+jiachangting,10533913,5
+zhaoyao0919,10533913,4
+27287283,10533913,5
+3562057,10533913,5
+Jones1986,10533913,5
+111572690,10533913,4
+itzhaoxiangyu,10533913,5
+115602293,10533913,5
+44780498,10533913,5
+48689695,10533913,5
+aegeanguo,10533913,5
+huliwang,10533913,5
+fenlanbingyan,10533913,4
+58223460,10533913,5
+4312733,10533913,5
+4312733,10533913,5
+62498014,10533913,5
+52928685,10533913,5
+44049794,10533913,5
+66831193,10533913,5
+2536656,10533913,5
+35914058,10533913,5
+53143088,10533913,3
+102906934,10533913,5
+32541723,10533913,5
+HandsomePrince,10533913,4
+130360774,10533913,5
+51378582,10533913,4
+wanghuzou,10533913,4
+maggieloveshow,10533913,5
+58373774,10533913,4
+59164249,10533913,5
+135475929,10533913,3
+119090951,10533913,5
+artistri,10533913,5
+3531316,10533913,5
+ceh19930603,10533913,4
+93202185,10533913,5
+74805050,10533913,5
+69926566,10533913,5
+48280227,10533913,5
+103312506,10533913,-1
+119992317,10533913,5
+jiawangdong,10533913,5
+nleydy,10533913,5
+44437052,10533913,5
+YvonneGQ,10533913,4
+Emily_witch,10533913,5
+anicelv,10533913,5
+Cheshier,10533913,5
+44260265,10533913,4
+51756127,10533913,5
+99989883,10533913,4
+hexuanpomon,10533913,5
+53065744,10533913,5
+ijuli,10533913,5
+onlyjoy09,10533913,5
+131634247,10533913,5
+36148411,10533913,4
+somnor,10533913,5
+3143567,10533913,4
+118090358,10533913,5
+121468237,10533913,5
+83576575,10533913,4
+119404798,10533913,5
+119891353,10533913,5
+29965674,10533913,5
+22056950,10533913,4
+2392193,10533913,4
+54772245,10533913,5
+58631812,10533913,5
+sujutotheme,10533913,5
+54760150,10533913,4
+77595746,10533913,5
+stone-ron,10533913,3
+13728402,10533913,5
+48497184,10533913,5
+yuki_mo,10533913,4
+86714653,10533913,5
+34245713,10533913,5
+AndiChiao,10533913,4
+xiaojingjj,10533913,3
+88273996,10533913,4
+2785610,10533913,5
+3501858,10533913,-1
+94394247,10533913,5
+119484113,10533913,5
+130295773,10533913,4
+3816104,10533913,5
+2134366,10533913,4
+38502274,10533913,5
+costar,10533913,5
+87636985,10533913,5
+KathyChao,10533913,5
+4105021,10533913,4
+60020373,10533913,5
+60858206,10533913,5
+43858841,10533913,4
+38184816,10533913,3
+70970974,10533913,5
+134890086,10533913,-1
+Cidane1991,10533913,5
+48103080,10533913,5
+48724718,10533913,3
+44661693,10533913,4
+2919418,10533913,5
+1751335,10533913,5
+huangxinyionly,10533913,3
+frances-6,10533913,4
+wade,10533913,5
+43682836,10533913,3
+78966790,10533913,5
+84864246,10533913,5
+57534338,10533913,3
+53620031,10533913,4
+FreedomFearless,10533913,4
+73830337,10533913,4
+4692009,10533913,5
+ironCC,10533913,4
+32657657,10533913,5
+annow,10533913,3
+70707218,10533913,5
+2166366,10533913,5
+115688081,10533913,5
+1167276,10533913,4
+75940485,10533913,5
+ylyat,10533913,3
+46430952,10533913,3
+78529584,10533913,3
+52409439,10533913,5
+70402577,10533913,5
+97306162,10533913,5
+steph6luna,10533913,5
+63422353,10533913,3
+rxxm,10533913,5
+61673952,10533913,5
+119482459,10533913,5
+jensen8985,10533913,3
+59929388,10533913,4
+57871266,10533913,5
+4163899,10533913,5
+apple01,10533913,4
+47914580,10533913,5
+2260384,10533913,5
+40280658,10533913,4
+63839731,10533913,5
+shaonvc,10533913,3
+dora-dora,10533913,4
+63928677,10533913,5
+pierrewrs,10533913,4
+qiabeibei314,10533913,5
+dumplinface,10533913,4
+awayway,10533913,5
+3646602,10533913,3
+minisle,10533913,4
+53269895,10533913,5
+65303423,10533913,4
+33635879,10533913,5
+ohahahu,10533913,5
+eill,10533913,2
+karmamay,10533913,5
+126252523,10533913,3
+49571609,10533913,5
+54230070,10533913,5
+matchl,10533913,5
+61348330,10533913,5
+Nanari_1019,10533913,5
+67649340,10533913,5
+a_lying_eight,10533913,5
+52731672,10533913,5
+58696336,10533913,5
+treelulu,10533913,5
+74984713,10533913,5
+sunxujjack,10533913,3
+58482024,10533913,4
+80734129,10533913,5
+yym3yearsold,10533913,5
+masaikejun,10533913,4
+xiamubeishi,10533913,5
+jean4you,10533913,4
+56388358,10533913,5
+64694528,10533913,5
+SummerRyanShu,10533913,4
+57881217,10533913,5
+135211263,10533913,4
+18508363,10533913,5
+baibi,10533913,5
+67575009,10533913,5
+55296496,10533913,5
+94563993,10533913,4
+dxy2010,10533913,4
+Stephen2046,10533913,4
+DeiDWang,10533913,5
+108075042,10533913,5
+mascotchen,10533913,5
+mascotchen,10533913,5
+3216288,10533913,5
+lushimizu,10533913,5
+31829657,10533913,3
+zuohengheng,10533913,3
+49833007,10533913,3
+58634950,10533913,5
+mengwei0205,10533913,5
+62934471,10533913,5
+95672053,10533913,5
+67795566,10533913,1
+kualo,10533913,5
+59647725,10533913,4
+looktwice,10533913,5
+Fdiori,10533913,5
+60016722,10533913,4
+fireflyxin,10533913,5
+chancyTVXQ,10533913,5
+56827109,10533913,4
+Betty_king,10533913,4
+1563945,10533913,2
+115467690,10533913,4
+xiusezhitiao,10533913,5
+51284624,10533913,5
+133739060,10533913,4
+135586021,10533913,5
+48396736,10533913,4
+flyfishman,10533913,5
+51289436,10533913,5
+54974829,10533913,5
+64804313,10533913,5
+47052162,10533913,5
+Belial1989,10533913,4
+121761822,10533913,3
+penaltyxx,10533913,5
+halang2012,10533913,4
+4540425,10533913,5
+whj623185136,10533913,5
+120358782,10533913,5
+zzy8688608,10533913,5
+34727533,10533913,4
+92441723,10533913,5
+54493645,10533913,4
+sofahuang,10533913,5
+Renee101,10533913,3
+83135902,10533913,5
+danzi0105,10533913,5
+3254418,10533913,3
+Jacky_L,10533913,5
+thierryhenry,10533913,5
+66016685,10533913,4
+44392002,10533913,5
+yuxiaodi1988,10533913,4
+izaijin,10533913,5
+62507198,10533913,5
+2300644,10533913,4
+williamfan,10533913,5
+2915387,10533913,5
+3868293,10533913,5
+tessai,10533913,5
+tessai,10533913,5
+77676134,10533913,3
+nancy8787,10533913,5
+133839811,10533913,4
+heycathy,10533913,5
+IcyloveSeraphy,10533913,4
+baoweijun,10533913,4
+45055967,10533913,4
+43342466,10533913,3
+104043833,10533913,4
+47785072,10533913,5
+58016445,10533913,4
+36216598,10533913,5
+132342981,10533913,5
+46020433,10533913,3
+80606571,10533913,5
+46538858,10533913,5
+54277204,10533913,3
+youngsky,10533913,5
+52336873,10533913,5
+121928647,10533913,5
+1282175,10533913,3
+2857006,10533913,5
+zugarholic,10533913,4
+mr_rabbit,10533913,5
+53827874,10533913,5
+a357152028,10533913,4
+36378160,10533913,5
+68156660,10533913,3
+65418503,10533913,5
+38514261,10533913,4
+momoko11510,10533913,3
+Jason.Su,10533913,5
+alanwu28,10533913,5
+wangdeuqna,10533913,5
+91117590,10533913,5
+2568764,10533913,5
+50601199,10533913,5
+37969517,10533913,5
+airan712,10533913,3
+66331142,10533913,4
+102751214,10533913,5
+HengGeZaiMa,10533913,5
+dirtydung,10533913,5
+27891262,10533913,4
+126804729,10533913,4
+woainikakashi,10533913,4
+yikouerren,10533913,4
+98014856,10533913,4
+3690205,10533913,5
+46942165,10533913,5
+50427971,10533913,5
+demoncat,10533913,4
+30852407,10533913,4
+124812731,10533913,4
+oozhu,10533913,4
+80010727,10533913,5
+MaiZiJie95,10533913,5
+60787717,10533913,5
+ngtgz,10533913,4
+52667302,10533913,4
+1519355,10533913,5
+125668189,10533913,3
+54618725,10533913,5
+dailypop,10533913,5
+15655185,10533913,3
+53799192,10533913,4
+powerfultony,10533913,4
+wangshi_he,10533913,5
+61542214,10533913,4
+51653649,10533913,4
+haodan91918,10533913,5
+64166028,10533913,5
+112941907,10533913,3
+45509766,10533913,5
+37586252,10533913,5
+81374206,10533913,5
+122545234,10533913,5
+69681020,10533913,4
+131039568,10533913,5
+43522470,10533913,5
+88171857,10533913,4
+2668037,10533913,5
+72962930,10533913,4
+57402036,10533913,5
+joycow,10533913,5
+magma,10533913,5
+94715443,10533913,5
+68967658,10533913,5
+52255874,10533913,3
+Mrsmilence,10533913,4
+134829129,10533913,-1
+64192829,10533913,5
+5750489,10533913,4
+1879022,10533913,3
+cora_lu,10533913,5
+yihongmeilan,10533913,5
+musesmelpomene,10533913,4
+nancywon,10533913,4
+35224402,10533913,5
+50638011,10533913,5
+Riverdance,10533913,4
+2161078,10533913,5
+91238295,10533913,4
+67579094,10533913,5
+85083807,10533913,5
+13301536,10533913,5
+hrj21,10533913,3
+1061597,10533913,4
+Lycc,10533913,5
+42643544,10533913,3
+53642273,10533913,4
+49266863,10533913,5
+61435009,10533913,5
+1381065,10533913,4
+wanerwanerwaner,10533913,5
+65123381,10533913,4
+62822850,10533913,4
+windy.lin,10533913,5
+88087325,10533913,5
+39003448,10533913,5
+elynsu,10533913,4
+4242024,10533913,5
+qianyanseu,10533913,4
+52499368,10533913,4
+119694219,10533913,4
+43087251,10533913,4
+CYU1520,10533913,4
+81771803,10533913,5
+46163556,10533913,5
+59259544,10533913,4
+4520580,10533913,5
+5122074,10533913,4
+47674697,10533913,4
+69356155,10533913,5
+bjmiss,10533913,5
+Dolphinlin,10533913,5
+51856482,10533913,4
+46315141,10533913,4
+64894018,10533913,5
+64894018,10533913,5
+lvchencf,10533913,5
+78902350,10533913,3
+bigmiao,10533913,4
+1170526,10533913,5
+66344319,10533913,3
+48608212,10533913,5
+zhanghanha,10533913,4
+128896754,10533913,5
+57850884,10533913,4
+71997866,10533913,5
+guobingyao728,10533913,5
+81958013,10533913,4
+45956471,10533913,4
+Ihuiyao,10533913,5
+90875805,10533913,5
+57139809,10533913,5
+127554011,10533913,4
+PaineField,10533913,5
+69192844,10533913,4
+mrlp,10533913,3
+114493517,10533913,5
+Rebecca_yu,10533913,4
+55874346,10533913,5
+66739600,10533913,5
+59576952,10533913,5
+INTERSECTION,10533913,4
+xuylu,10533913,4
+62762871,10533913,3
+calamus22,10533913,4
+hateflash,10533913,5
+16531942,10533913,5
+cl20lc,10533913,4
+2220514,10533913,5
+tobekalorce,10533913,5
+Zsaraj,10533913,4
+68139311,10533913,5
+133471355,10533913,1
+63713209,10533913,4
+48198502,10533913,4
+54783024,10533913,5
+58955147,10533913,5
+43583166,10533913,5
+48848721,10533913,5
+lellex,10533913,2
+ji2uu,10533913,2
+123000223,10533913,4
+HowardRoark,10533913,4
+30830778,10533913,5
+princesssyn,10533913,5
+imguigui,10533913,5
+82294419,10533913,3
+46686280,10533913,5
+123961251,10533913,5
+45362948,10533913,4
+70734436,10533913,4
+75659126,10533913,4
+shallwe07,10533913,5
+33649081,10533913,5
+trysta_lyu,10533913,4
+58888075,10533913,5
+dovm,10533913,4
+2994648,10533913,3
+x-13,10533913,5
+echoditto,10533913,5
+64801860,10533913,3
+36282621,10533913,5
+44761018,10533913,4
+4549412,10533913,5
+44222331,10533913,5
+3480532,10533913,5
+50328213,10533913,5
+68855550,10533913,5
+131866254,10533913,5
+2442187,10533913,3
+67200006,10533913,4
+121270653,10533913,5
+121757659,10533913,-1
+celinedsam,10533913,3
+60377102,10533913,5
+55617091,10533913,5
+50489557,10533913,5
+40921927,10533913,5
+48625929,10533913,5
+1392335,10533913,5
+jin.paopao,10533913,4
+43914505,10533913,5
+36945830,10533913,5
+81061970,10533913,5
+BlackOpIum,10533913,4
+55374994,10533913,3
+ghlznh,10533913,-1
+59044334,10533913,3
+lrshmily,10533913,5
+dorayao,10533913,5
+48845864,10533913,4
+43716176,10533913,5
+szhiji,10533913,3
+54002427,10533913,-1
+47732306,10533913,5
+119263777,10533913,4
+bulijite,10533913,4
+57367354,10533913,5
+jiuchen21,10533913,2
+1886453,10533913,5
+2674873,10533913,3
+45804814,10533913,4
+42797473,10533913,5
+76801382,10533913,5
+47206940,10533913,4
+72219224,10533913,5
+1140113,10533913,-1
+leo2009-12,10533913,3
+46175747,10533913,5
+2393231,10533913,4
+wzh1995,10533913,5
+52622213,10533913,3
+edithloving,10533913,4
+54786055,10533913,5
+65663691,10533913,4
+75699562,10533913,5
+99942273,10533913,4
+49020270,10533913,5
+Jandeaux,10533913,4
+59217273,10533913,4
+tatanolove,10533913,3
+87603831,10533913,5
+3293932,10533913,5
+hexybaby,10533913,4
+64477491,10533913,4
+longfei39,10533913,5
+47005130,10533913,-1
+59721065,10533913,5
+2233963,10533913,5
+white_sophia,10533913,-1
+64771060,10533913,4
+80163980,10533913,4
+8447509,10533913,4
+2095236,10533913,5
+116406928,10533913,4
+deafbear,10533913,5
+kanrenao,10533913,4
+52350227,10533913,5
+fishgor,10533913,5
+49056997,10533913,5
+66948883,10533913,5
+61783140,10533913,5
+ohgoogjump,10533913,-1
+45242330,10533913,4
+49262338,10533913,5
+74780656,10533913,5
+76996269,10533913,-1
+52689721,10533913,4
+Mackintosh,10533913,5
+durandalk,10533913,4
+45099103,10533913,5
+49220225,10533913,5
+72368775,10533913,5
+122517698,10533913,5
+SJzzy314,10533913,4
+57609060,10533913,5
+51472613,10533913,5
+46162518,10533913,4
+57580969,10533913,3
+54853596,10533913,5
+velmafei,10533913,5
+akihiosatog,10533913,5
+mrearth,10533913,5
+supereleven,10533913,3
+xyc1987,10533913,5
+71513680,10533913,5
+violetsnow,10533913,5
+67235309,10533913,4
+qilekod,10533913,3
+cajiln,10533913,5
+133718009,10533913,4
+34151620,10533913,5
+3621482,10533913,3
+little-wen,10533913,4
+1711540,10533913,4
+yeeye,10533913,4
+46282005,10533913,5
+stanup,10533913,5
+38513029,10533913,3
+44837247,10533913,4
+108573841,10533913,4
+61415856,10533913,4
+78169012,10533913,3
+65917801,10533913,3
+hitomiorange,10533913,4
+80240044,10533913,5
+1527521,10533913,4
+avro,10533913,4
+3089552,10533913,5
+115711204,10533913,5
+30532525,10533913,4
+jekyll,10533913,4
+2940152,10533913,5
+48468316,10533913,4
+30323334,10533913,5
+64571969,10533913,4
+48421106,10533913,5
+115231190,10533913,5
+41555500,10533913,5
+57405167,10533913,5
+48190133,10533913,4
+66461284,10533913,4
+lingerer,10533913,4
+NingeYu,10533913,4
+chin-nakiha,10533913,5
+98277632,10533913,5
+31817174,10533913,5
+51060145,10533913,5
+57217580,10533913,5
+35156084,10533913,5
+Longinuss,10533913,4
+61132884,10533913,4
+1346449,10533913,5
+2677937,10533913,5
+116902692,10533913,3
+49882814,10533913,5
+xiayichuan,10533913,4
+47362335,10533913,5
+81374641,10533913,5
+52696742,10533913,5
+joelove,10533913,4
+81059128,10533913,5
+99615618,10533913,5
+2526378,10533913,4
+126116154,10533913,4
+51736844,10533913,4
+71593445,10533913,4
+30179341,10533913,4
+119684657,10533913,4
+selenesun,10533913,5
+haiyannina,10533913,5
+vanwhebin,10533913,5
+44034935,10533913,5
+pinpining,10533913,4
+4310321,10533913,3
+4310321,10533913,3
+115499943,10533913,4
+avielwong,10533913,3
+85830142,10533913,5
+zhangake,10533913,4
+88259412,10533913,4
+odelete,10533913,4
+Edward-Lockwood,10533913,5
+tabitha,10533913,5
+28678505,10533913,5
+113037019,10533913,5
+bicha,10533913,4
+33465966,10533913,5
+65915294,10533913,5
+flora0013,10533913,4
+maybeland,10533913,3
+50374282,10533913,5
+86010283,10533913,4
+90525586,10533913,5
+1647062,10533913,4
+hwjnbmyx,10533913,5
+istrangers,10533913,4
+61292506,10533913,4
+39108497,10533913,4
+54467510,10533913,4
+binmusiq,10533913,5
+45583268,10533913,4
+57474326,10533913,5
+hanqiu1995,10533913,3
+58179712,10533913,4
+81042933,10533913,4
+35409946,10533913,3
+3803915,10533913,5
+3519575,10533913,5
+yvetterowe_away,10533913,5
+96390757,10533913,5
+nearlloveyou,10533913,3
+59535372,10533913,4
+55364280,10533913,5
+49307986,10533913,3
+qisasa,10533913,-1
+63699428,10533913,5
+qsf,10533913,5
+cherrychan918,10533913,4
+121065420,10533913,5
+65670813,10533913,3
+abeishishabi,10533913,5
+46812658,10533913,5
+50478596,10533913,4
+setilis,10533913,5
+dogsang,10533913,5
+71806570,10533913,5
+yomika,10533913,5
+37488201,10533913,-1
+cyeon,10533913,5
+91545129,10533913,4
+mrcoolchina,10533913,4
+deactivate,10533913,5
+fantasychang,10533913,4
+57616259,10533913,5
+49879341,10533913,5
+71141044,10533913,5
+3009345,10533913,5
+xuxu2333,10533913,5
+lanbignsu,10533913,5
+ameliefei,10533913,5
+dkjune,10533913,4
+KeithMoon,10533913,5
+96790280,10533913,5
+bestbxt,10533913,4
+64825748,10533913,5
+62692147,10533913,5
+doa,10533913,5
+leisurelee,10533913,5
+33976222,10533913,5
+124107116,10533913,5
+83328709,10533913,5
+61823164,10533913,5
+114358395,10533913,4
+83491146,10533913,4
+derekderek,10533913,4
+wuxiduo,10533913,5
+51227412,10533913,5
+64404438,10533913,5
+67654598,10533913,4
+58596058,10533913,5
+43625639,10533913,4
+elenadivita,10533913,5
+genevayyk,10533913,5
+62139918,10533913,5
+Q9,10533913,3
+130657915,10533913,3
+elephantjun,10533913,4
+kenji0102,10533913,3
+46722646,10533913,5
+baishibaihu,10533913,3
+lisaxingxing,10533913,5
+4664430,10533913,4
+46968893,10533913,4
+23964620,10533913,5
+23964620,10533913,5
+31849844,10533913,4
+120061371,10533913,5
+53194031,10533913,4
+57419591,10533913,3
+129988582,10533913,5
+4574811,10533913,4
+52298238,10533913,5
+4231664,10533913,5
+guominhua,10533913,4
+45631544,10533913,5
+1823227,10533913,3
+1437680,10533913,5
+sport1124,10533913,5
+66957526,10533913,4
+sweetxyy,10533913,5
+95002456,10533913,5
+talk2linx,10533913,5
+RemyAnderson,10533913,-1
+deargod123,10533913,5
+pearl.lu,10533913,5
+JoooNE,10533913,5
+51300433,10533913,5
+42775906,10533913,3
+49326623,10533913,5
+holystar,10533913,-1
+135140470,10533913,5
+icatcat,10533913,5
+littlesweets,10533913,5
+liancheng,10533913,5
+foleyfan,10533913,5
+23505166,10533913,5
+littleinn,10533913,4
+130510398,10533913,4
+50055726,10533913,5
+cookiesssss,10533913,5
+46387207,10533913,4
+69130681,10533913,4
+124675687,10533913,5
+52801855,10533913,4
+4521975,10533913,5
+41755719,10533913,4
+serein27,10533913,4
+tuantuandoudou,10533913,4
+74648071,10533913,4
+127691807,10533913,5
+orangeumoon,10533913,4
+Ranice,10533913,4
+66168101,10533913,4
+54099325,10533913,5
+3936900,10533913,2
+majolica,10533913,4
+daizy_10,10533913,5
+53616337,10533913,4
+77799876,10533913,3
+69417205,10533913,5
+121424085,10533913,5
+67238808,10533913,4
+beckham7,10533913,4
+51448409,10533913,5
+50769986,10533913,5
+60146829,10533913,5
+magic1029,10533913,-1
+solavre,10533913,5
+54936166,10533913,4
+43905279,10533913,5
+49249135,10533913,2
+55782908,10533913,4
+passerbyv,10533913,5
+66802637,10533913,5
+eye-side,10533913,4
+lianzixin,10533913,4
+119652558,10533913,5
+nowingcolorful,10533913,5
+70108831,10533913,4
+83550216,10533913,5
+itsuki11,10533913,4
+roro0306,10533913,4
+GTS0428,10533913,4
+52430897,10533913,5
+tayee,10533913,5
+drawtang,10533913,4
+93484113,10533913,5
+1569872,10533913,5
+73161188,10533913,3
+ll02200416,10533913,4
+17589484,10533913,4
+41304325,10533913,4
+weitianze,10533913,4
+62582526,10533913,5
+33973051,10533913,5
+94479704,10533913,5
+Ray_u,10533913,4
+casoon,10533913,5
+53156777,10533913,5
+54795644,10533913,4
+mewsays,10533913,3
+63774339,10533913,5
+2166091,10533913,3
+EmmaQiu,10533913,5
+EmmaQiu,10533913,5
+47417998,10533913,4
+3650818,10533913,5
+48132735,10533913,5
+41550313,10533913,5
+55872205,10533913,5
+33415384,10533913,5
+vinniezhao,10533913,4
+59570753,10533913,4
+90717862,10533913,5
+129645509,10533913,5
+59997067,10533913,4
+33885446,10533913,5
+91509056,10533913,5
+40119117,10533913,5
+120604736,10533913,5
+JimmyLien,10533913,4
+43713017,10533913,4
+nach,10533913,5
+Awewonderland,10533913,5
+Awewonderland,10533913,5
+45858265,10533913,4
+91543549,10533913,5
+4115987,10533913,5
+yh123,10533913,5
+3691040,10533913,3
+obepkgmm,10533913,4
+lovepeople,10533913,4
+43645928,10533913,4
+sand,10533913,5
+silver_F,10533913,3
+noaccident,10533913,3
+127297970,10533913,4
+75003253,10533913,-1
+fanshuchen,10533913,4
+shadowshame,10533913,5
+1550127,10533913,5
+smilingfish21,10533913,5
+lucky77,10533913,5
+Skybehindme,10533913,5
+31319988,10533913,4
+hedgehog,10533913,-1
+liarelaw,10533913,3
+122738024,10533913,5
+48821799,10533913,5
+67843385,10533913,4
+a0585,10533913,5
+4074165,10533913,5
+mrockfire,10533913,5
+52523730,10533913,5
+84739561,10533913,3
+yakiang,10533913,5
+71835684,10533913,5
+50256249,10533913,4
+Anitavivi,10533913,4
+94773780,10533913,4
+47427585,10533913,5
+deltadawns,10533913,3
+minquan,10533913,4
+94830928,10533913,5
+94830928,10533913,5
+58064955,10533913,3
+ydyie,10533913,4
+nolita_bola,10533913,4
+1334269,10533913,4
+67880800,10533913,5
+60783143,10533913,5
+47515047,10533913,5
+7223165,10533913,5
+52951780,10533913,4
+135274415,10533913,4
+70001053,10533913,5
+73729558,10533913,4
+zmyBattier,10533913,4
+flytomilan,10533913,4
+34694249,10533913,4
+60357094,10533913,5
+duoran,10533913,5
+63837750,10533913,5
+57723908,10533913,5
+38206972,10533913,5
+Son47,10533913,5
+shine1219,10533913,5
+51387684,10533913,4
+limianmian,10533913,3
+106663926,10533913,5
+hanlu219,10533913,4
+vincent2010,10533913,5
+45681506,10533913,4
+hahatedan,10533913,4
+45485577,10533913,5
+wz.sweet,10533913,5
+121084172,10533913,5
+134494328,10533913,3
+may6913,10533913,5
+33724759,10533913,5
+68237085,10533913,5
+70242419,10533913,5
+3323980,10533913,4
+kevin5,10533913,4
+65164486,10533913,5
+51603332,10533913,5
+41640240,10533913,4
+3655806,10533913,5
+58545738,10533913,5
+67888545,10533913,5
+yummyhere,10533913,5
+104777463,10533913,5
+seanvan,10533913,5
+63224562,10533913,5
+44880621,10533913,5
+YTT_LS,10533913,4
+68420935,10533913,3
+52933680,10533913,4
+2407582,10533913,5
+1491950,10533913,5
+yifanElle,10533913,4
+1149341,10533913,5
+ying029,10533913,-1
+36791649,10533913,5
+tev,10533913,5
+lexhappy,10533913,-1
+65981408,10533913,5
+Cloud1993,10533913,5
+54951412,10533913,5
+81506415,10533913,5
+2574869,10533913,4
+wangxiaoyou,10533913,5
+65029025,10533913,3
+L_islander,10533913,4
+52345284,10533913,5
+jiang66,10533913,4
+SUrou,10533913,4
+1236338,10533913,5
+AlejandroX,10533913,5
+99994720,10533913,5
+Beardnan,10533913,4
+roooo,10533913,5
+86807674,10533913,5
+35623829,10533913,4
+cheng_Ting,10533913,5
+4584444,10533913,3
+4134812,10533913,4
+83638503,10533913,5
+littlecar,10533913,5
+2597570,10533913,5
+43725091,10533913,5
+murryto,10533913,4
+109284403,10533913,5
+73866765,10533913,4
+adeshen,10533913,4
+54339291,10533913,4
+104890958,10533913,5
+54721365,10533913,4
+95768578,10533913,5
+47323555,10533913,5
+79694642,10533913,-1
+59129484,10533913,5
+76548979,10533913,5
+84840141,10533913,5
+49222803,10533913,5
+lilcccc,10533913,5
+20657820,10533913,5
+joker619,10533913,5
+41634233,10533913,5
+2483074,10533913,1
+suekyshi,10533913,5
+VendettaChild,10533913,-1
+55595655,10533913,-1
+leozhangbing,10533913,4
+Ink_Regina,10533913,5
+childdream,10533913,5
+1178759,10533913,3
+72871706,10533913,2
+33509749,10533913,4
+2640194,10533913,4
+diysad,10533913,-1
+33245540,10533913,5
+77921722,10533913,5
+50060410,10533913,4
+4698494,10533913,5
+58689768,10533913,3
+61862403,10533913,5
+mickey0725,10533913,5
+angelinedaily,10533913,5
+folgeru,10533913,5
+81102769,10533913,4
+126558199,10533913,5
+lorrainelsy,10533913,4
+34557052,10533913,5
+61855067,10533913,5
+4481826,10533913,4
+53765771,10533913,5
+64780259,10533913,4
+30332676,10533913,5
+89852120,10533913,3
+zhangzhiwen,10533913,5
+flowermoon,10533913,5
+MY1231,10533913,5
+VLR,10533913,4
+44345461,10533913,5
+laodao9527,10533913,4
+67850004,10533913,4
+78600580,10533913,5
+48491449,10533913,5
+61621650,10533913,5
+54764633,10533913,5
+54664894,10533913,4
+63217901,10533913,5
+64223729,10533913,4
+88535863,10533913,5
+39079545,10533913,5
+2438025,10533913,5
+1424695,10533913,4
+q164511490,10533913,5
+34087859,10533913,3
+53190622,10533913,5
+73243540,10533913,4
+lokaven,10533913,5
+59446610,10533913,3
+87338273,10533913,4
+129169061,10533913,4
+56694630,10533913,5
+3930387,10533913,5
+57280262,10533913,5
+102030240,10533913,-1
+43612401,10533913,4
+53908274,10533913,5
+53644623,10533913,4
+52579051,10533913,5
+45182133,10533913,4
+kingkongofkhan,10533913,3
+cfqjw,10533913,5
+123009579,10533913,5
+49891918,10533913,5
+spleenloene,10533913,5
+ioy,10533913,4
+50566666,10533913,5
+53937396,10533913,5
+1073807,10533913,5
+amir0320,10533913,4
+33576458,10533913,4
+47737663,10533913,5
+fakeyouout,10533913,5
+Lost_Atlantis,10533913,5
+dreamcorner,10533913,5
+45455917,10533913,5
+61984344,10533913,4
+52735577,10533913,5
+2424010,10533913,5
+49216647,10533913,-1
+qiusheng,10533913,5
+62848275,10533913,5
+71561935,10533913,4
+lepd,10533913,4
+counting_crows,10533913,3
+116977972,10533913,4
+schauer,10533913,5
+yzfayxj,10533913,5
+2531032,10533913,5
+49681638,10533913,5
+92633728,10533913,5
+70394248,10533913,4
+52275129,10533913,5
+135382616,10533913,5
+birdicat,10533913,4
+aihepin,10533913,5
+43141236,10533913,5
+120828757,10533913,5
+47856322,10533913,5
+73901440,10533913,5
+132333560,10533913,5
+Devil.Q,10533913,5
+zhouxiaoou,10533913,5
+46121551,10533913,5
+67126761,10533913,5
+S8,10533913,4
+126758242,10533913,4
+73125936,10533913,5
+61573582,10533913,5
+wallaceLee,10533913,5
+19627331,10533913,5
+121460001,10533913,5
+54497020,10533913,5
+3442846,10533913,5
+66877401,10533913,5
+119281931,10533913,5
+103735356,10533913,3
+134048364,10533913,5
+52433144,10533913,4
+71221227,10533913,4
+45192723,10533913,5
+55842990,10533913,4
+leebins,10533913,4
+123683000,10533913,4
+lucifan,10533913,5
+66051233,10533913,5
+74279577,10533913,3
+badaalle,10533913,4
+61732554,10533913,4
+61732554,10533913,4
+88984296,10533913,5
+wbx,10533913,5
+43383547,10533913,5
+62312357,10533913,5
+53063719,10533913,4
+45789849,10533913,5
+helloc7c,10533913,5
+63923908,10533913,3
+Nofeelings,10533913,4
+47539461,10533913,5
+49631776,10533913,5
+3898618,10533913,5
+58330763,10533913,5
+nn1987814,10533913,5
+65285164,10533913,4
+owenclv,10533913,4
+3511814,10533913,5
+43132253,10533913,4
+ben0813,10533913,5
+bingyudeng,10533913,4
+53061128,10533913,5
+lalamie,10533913,5
+genez,10533913,4
+coffeedog,10533913,3
+3249318,10533913,5
+fuzyu,10533913,5
+75069329,10533913,4
+70996341,10533913,5
+122232090,10533913,2
+litesoar,10533913,5
+yulelong,10533913,4
+51296756,10533913,5
+4442564,10533913,4
+48776959,10533913,4
+4254864,10533913,5
+62198966,10533913,5
+Joie,10533913,4
+25618688,10533913,3
+75325570,10533913,4
+Mickey-Cai,10533913,3
+49382503,10533913,4
+3513677,10533913,4
+62649334,10533913,5
+25972265,10533913,4
+45697598,10533913,5
+77168395,10533913,4
+2738420,10533913,3
+Esax,10533913,5
+smallsugar,10533913,5
+43122698,10533913,4
+9033618,10533913,3
+lazydesigner,10533913,3
+66578884,10533913,4
+94868646,10533913,5
+122147419,10533913,4
+PatrickMYK,10533913,5
+47201590,10533913,4
+freddie,10533913,5
+45520368,10533913,5
+memoricry,10533913,5
+89707711,10533913,5
+92541865,10533913,2
+43788388,10533913,3
+41694650,10533913,4
+50042577,10533913,5
+yzone,10533913,4
+130248738,10533913,5
+134896642,10533913,3
+80791412,10533913,5
+raising_dawn,10533913,4
+77430587,10533913,4
+dorky,10533913,2
+4592023,10533913,4
+masterobert,10533913,3
+OrianneLau,10533913,4
+78925849,10533913,4
+131811211,10533913,5
+tequila7,10533913,4
+60608137,10533913,5
+60608137,10533913,5
+51841872,10533913,4
+togetherwe,10533913,5
+132808408,10533913,4
+zhzy09,10533913,4
+zhankezk,10533913,-1
+sheldonkao,10533913,5
+mna,10533913,5
+1782017,10533913,5
+4568910,10533913,5
+unusualli,10533913,4
+134434591,10533913,3
+gilyun,10533913,4
+85239246,10533913,4
+chaokunwang,10533913,4
+83123138,10533913,5
+121844395,10533913,5
+79779762,10533913,5
+82882772,10533913,5
+63927330,10533913,5
+4869541,10533913,4
+45797451,10533913,5
+62877248,10533913,4
+3345648,10533913,4
+62504399,10533913,3
+63195661,10533913,5
+63531003,10533913,5
+102797351,10533913,5
+14453874,10533913,5
+muxieyes,10533913,5
+51299721,10533913,5
+132082715,10533913,5
+33787878,10533913,4
+viking7117,10533913,4
+3933358,10533913,5
+72783015,10533913,4
+43787285,10533913,4
+8752115,10533913,5
+doryrue,10533913,2
+123020002,10533913,5
+1886385,10533913,3
+60396256,10533913,4
+suh5213,10533913,5
+4465654,10533913,5
+114689592,10533913,5
+melentao,10533913,5
+127980934,10533913,5
+cypsh,10533913,5
+74971419,10533913,5
+1998897,10533913,4
+43099627,10533913,5
+87909103,10533913,4
+57886275,10533913,3
+88167623,10533913,5
+48808520,10533913,4
+42186574,10533913,4
+monica_1224,10533913,4
+70851991,10533913,-1
+128589286,10533913,5
+gardeniasky,10533913,4
+102643843,10533913,5
+108113381,10533913,5
+3899360,10533913,4
+120159216,10533913,5
+7605327,10533913,5
+77785733,10533913,5
+4716984,10533913,4
+ileonwii,10533913,4
+52951268,10533913,5
+131632042,10533913,5
+101287383,10533913,5
+49288075,10533913,4
+nangle,10533913,4
+97709203,10533913,5
+3439248,10533913,5
+35436010,10533913,4
+135076039,10533913,5
+aaronfighting,10533913,5
+69152007,10533913,5
+121557587,10533913,4
+hahahahahahah,10533913,5
+120291697,10533913,5
+70726919,10533913,4
+4433400,10533913,3
+uruk60kg,10533913,5
+63612050,10533913,5
+130954450,10533913,5
+v1wanghuang,10533913,5
+65408583,10533913,5
+71929336,10533913,5
+amhuming,10533913,5
+84057160,10533913,5
+6955816,10533913,5
+nanhualyq,10533913,5
+littlemarss,10533913,4
+82391952,10533913,4
+3328450,10533913,5
+58774315,10533913,5
+leexiaomu,10533913,5
+47914662,10533913,5
+heathercone,10533913,5
+58123651,10533913,5
+W_wanna_Show,10533913,3
+shelia0714,10533913,4
+xgaoyu,10533913,5
+2440792,10533913,4
+achering,10533913,4
+silentjava,10533913,4
+39307000,10533913,5
+doraeman,10533913,5
+123222453,10533913,5
+fantasyui,10533913,5
+seafans,10533913,5
+51965596,10533913,5
+aliciavamos,10533913,-1
+FiveStrong,10533913,5
+55921426,10533913,5
+ZY-Monster,10533913,4
+81042721,10533913,4
+53578475,10533913,4
+pkbraveheart,10533913,5
+59648249,10533913,3
+xyl19900815,10533913,4
+U-Know-Who,10533913,5
+65306635,10533913,4
+49344280,10533913,-1
+valiantwarrior,10533913,4
+51781269,10533913,5
+68620338,10533913,3
+98794202,10533913,5
+adrian.chai.au,10533913,5
+135270390,10533913,4
+pjcs,10533913,3
+ashleystella,10533913,4
+35087242,10533913,5
+48232992,10533913,5
+DamonCoxon,10533913,2
+yinhedang,10533913,5
+1650837,10533913,5
+128121188,10533913,5
+vincen1208,10533913,5
+104559183,10533913,4
+135330991,10533913,5
+borrower,10533913,5
+sunshinean2000,10533913,4
+56291828,10533913,5
+44006704,10533913,5
+58606725,10533913,4
+2584631,10533913,4
+zhuxinyi,10533913,4
+68490361,10533913,5
+48624306,10533913,4
+1316648,10533913,2
+65133684,10533913,4
+127693171,10533913,5
+eatonzh,10533913,5
+65366516,10533913,4
+51399202,10533913,4
+53717841,10533913,5
+62690697,10533913,5
+rudygiraffe,10533913,4
+38075884,10533913,5
+45623540,10533913,5
+zhangjian_1q26,10533913,4
+44412475,10533913,4
+3623604,10533913,-1
+46572945,10533913,5
+wish21,10533913,5
+67782007,10533913,5
+luhuimin,10533913,5
+dbsays,10533913,5
+45390521,10533913,5
+131474595,10533913,4
+80826623,10533913,4
+63123198,10533913,5
+62343652,10533913,5
+60526786,10533913,5
+130658738,10533913,5
+like-a-star,10533913,5
+henshss,10533913,5
+133522204,10533913,5
+49268204,10533913,5
+2184780,10533913,3
+60134596,10533913,5
+99296692,10533913,4
+kyth,10533913,5
+44848574,10533913,5
+7683143,10533913,5
+55328158,10533913,3
+buyiding2011,10533913,5
+79940249,10533913,5
+wywe,10533913,4
+73604115,10533913,5
+102862890,10533913,4
+dodoo7,10533913,4
+70469575,10533913,5
+48244794,10533913,-1
+70440738,10533913,5
+74941713,10533913,5
+1517235,10533913,5
+51297351,10533913,5
+49755333,10533913,5
+oblterator,10533913,5
+42630408,10533913,5
+135209955,10533913,5
+73626689,10533913,5
+65323285,10533913,5
+67677954,10533913,4
+59237362,10533913,5
+127008939,10533913,5
+j1angvei,10533913,5
+43521036,10533913,5
+65293424,10533913,5
+brightchai,10533913,5
+Monster_004,10533913,4
+125282020,10533913,4
+Fifi0731,10533913,4
+43867607,10533913,3
+lovewaiter,10533913,5
+ca5h,10533913,5
+102651290,10533913,2
+mrzeng1993,10533913,5
+121925432,10533913,5
+64529500,10533913,4
+81530706,10533913,4
+hakuhaku,10533913,4
+56529814,10533913,5
+50874756,10533913,4
+evey42,10533913,5
+34070623,10533913,4
+76697306,10533913,5
+48874322,10533913,3
+99977887,10533913,5
+34310442,10533913,5
+63941479,10533913,5
+38897761,10533913,5
+71961235,10533913,5
+120197329,10533913,5
+93464410,10533913,-1
+127480277,10533913,4
+libra-nai,10533913,5
+71180219,10533913,5
+119078211,10533913,5
+64260595,10533913,5
+93451657,10533913,5
+icefishe,10533913,5
+chitb,10533913,5
+65766110,10533913,5
+4537211,10533913,5
+commonalley,10533913,5
+65042146,10533913,4
+45839023,10533913,4
+119803705,10533913,4
+79951527,10533913,-1
+parisyu,10533913,4
+56580928,10533913,4
+73100857,10533913,4
+47227699,10533913,-1
+41579519,10533913,5
+MayaDey,10533913,3
+csp,10533913,4
+55284427,10533913,4
+mmlovelaugher,10533913,4
+2052146,10533913,-1
+xd880820,10533913,5
+62974265,10533913,5
+91604108,10533913,5
+58155275,10533913,4
+guoxiaolu1447,10533913,5
+tommylin,10533913,-1
+60270558,10533913,-1
+66915476,10533913,5
+hscolumbia,10533913,3
+colintide,10533913,-1
+51663254,10533913,5
+oscarknvb,10533913,5
+xipo,10533913,5
+90130073,10533913,3
+135290784,10533913,5
+50353681,10533913,5
+laragreen,10533913,-1
+42368147,10533913,3
+to-be-natural,10533913,-1
+53484226,10533913,4
+74768790,10533913,4
+stacy-agony,10533913,3
+Shanna_Q,10533913,3
+81930957,10533913,5
+68631195,10533913,5
+yyuan9372,10533913,4
+duanzizai,10533913,5
+zhousophia,10533913,5
+shenliyang,10533913,4
+chabaochabao,10533913,4
+99448311,10533913,5
+46736455,10533913,4
+wwnoah,10533913,5
+cheng911002,10533913,4
+57886651,10533913,5
+wish430,10533913,5
+AuRevoir7,10533913,4
+hallelujah4rae,10533913,4
+faiel,10533913,5
+profond,10533913,5
+xiaopang1106,10533913,5
+84526752,10533913,5
+66716197,10533913,5
+83587515,10533913,-1
+oathkeeper,10533913,5
+lukaka,10533913,4
+64009647,10533913,4
+55832822,10533913,-1
+1781929,10533913,5
+1328765,10533913,5
+69228709,10533913,-1
+2788057,10533913,-1
+alex.tseng,10533913,4
+anchor1978,10533913,4
+59575585,10533913,5
+3142312,10533913,5
+59421436,10533913,4
+chenkefeng,10533913,4
+49622516,10533913,3
+55850316,10533913,4
+jasonscat,10533913,5
+48826965,10533913,4
+60392839,10533913,3
+91357531,10533913,5
+42861826,10533913,5
+mackalex,10533913,3
+4841197,10533913,-1
+1373185,10533913,5
+129028198,10533913,5
+81804473,10533913,5
+130952703,10533913,4
+chowmo,10533913,-1
+45848548,10533913,5
+84281755,10533913,5
+126868088,10533913,-1
+122317247,10533913,-1
+121758259,10533913,5
+64124840,10533913,1
+78447440,10533913,5
+author,10533913,5
+amberaway,10533913,3
+flxjp,10533913,3
+52683154,10533913,5
+gentlepuppy,10533913,4
+63760065,10533913,5
+stillm,10533913,4
+76413878,10533913,5
+minoyi,10533913,4
+120008046,10533913,5
+28448565,10533913,4
+134402728,10533913,5
+3510022,10533913,5
+92571087,10533913,4
+90598022,10533913,5
+36936880,10533913,5
+2783035,10533913,5
+43133361,10533913,5
+47463766,10533913,5
+63681764,10533913,5
+myq19920503,10533913,5
+1386491,10533913,5
+kharkov,10533913,5
+calidream,10533913,2
+1458725,10533913,5
+syuuki630,10533913,5
+deppdeep,10533913,4
+82582111,10533913,5
+73538837,10533913,3
+1159670,10533913,4
+mylittletower,10533913,5
+lpf1990,10533913,5
+L.D.king,10533913,4
+37736612,10533913,5
+61014893,10533913,5
+pigerbaba,10533913,4
+1532624,10533913,5
+50813433,10533913,5
+3044565,10533913,2
+135239450,10533913,3
+quaner1126,10533913,-1
+4667045,10533913,4
+11189422,10533913,5
+75678243,10533913,4
+49402699,10533913,4
+111228213,10533913,4
+49143837,10533913,4
+wmk114,10533913,5
+3374391,10533913,4
+JeffHoo,10533913,5
+54815197,10533913,5
+48168328,10533913,3
+52403253,10533913,5
+114540983,10533913,5
+53175256,10533913,4
+57424312,10533913,5
+DVforever,10533913,4
+3957251,10533913,4
+summerwith,10533913,4
+135067568,10533913,4
+Twinkling.S,10533913,3
+2039225,10533913,5
+49639270,10533913,3
+chenyinrei,10533913,5
+79284978,10533913,4
+charleneqq,10533913,5
+3346015,10533913,4
+40425769,10533913,5
+SINOFU,10533913,5
+51841332,10533913,5
+3573130,10533913,5
+43590001,10533913,4
+heylittlej,10533913,5
+lucine_gao,10533913,3
+caq9,10533913,4
+ixiaomaye,10533913,4
+2966484,10533913,5
+47537834,10533913,5
+31409369,10533913,5
+49840079,10533913,5
+56445943,10533913,4
+82990219,10533913,5
+60891393,10533913,4
+78588109,10533913,5
+4587293,10533913,4
+shengdoushiba,10533913,-1
+47850777,10533913,5
+alessiagu,10533913,5
+41970599,10533913,5
+46395602,10533913,5
+1280213,10533913,3
+lailai_tu,10533913,5
+4137118,10533913,5
+103424753,10533913,4
+lovelovecat,10533913,4
+71865681,10533913,5
+2562294,10533913,5
+75803122,10533913,5
+126514473,10533913,4
+49110008,10533913,5
+84479986,10533913,5
+42787791,10533913,5
+129798303,10533913,5
+57558861,10533913,5
+sheeppark,10533913,4
+indigo,10533913,5
+82629572,10533913,4
+127675582,10533913,2
+55850435,10533913,4
+kylin216,10533913,5
+65449858,10533913,5
+24451966,10533913,3
+gillianxi,10533913,2
+3243275,10533913,4
+62275045,10533913,4
+67785924,10533913,5
+2328580,10533913,4
+48646659,10533913,5
+linyanyanyan,10533913,5
+fishpjr,10533913,4
+81258030,10533913,3
+Rolin,10533913,3
+42006560,10533913,2
+Latias,10533913,4
+94353228,10533913,5
+Grey1128,10533913,4
+sigurros,10533913,5
+75476246,10533913,4
+yinni1990,10533913,5
+62793073,10533913,5
+69547285,10533913,5
+61515355,10533913,5
+88267631,10533913,5
+foxbaby_1104,10533913,4
+47745204,10533913,5
+69344472,10533913,5
+crystalmy1027,10533913,4
+71267771,10533913,3
+myfairytale,10533913,-1
+47902744,10533913,5
+lijin329,10533913,4
+81680781,10533913,3
+134498309,10533913,5
+Sharling,10533913,5
+30172210,10533913,3
+53871159,10533913,5
+Lelio090101,10533913,5
+106564763,10533913,5
+60149646,10533913,4
+88052391,10533913,5
+59428826,10533913,5
+130084772,10533913,5
+45394138,10533913,5
+houpinchao,10533913,3
+cheshiredoc,10533913,5
+wenguochen,10533913,2
+88171131,10533913,4
+bfm843104158,10533913,5
+xiaojingyush,10533913,5
+johnnybai,10533913,-1
+120148116,10533913,4
+lynnjyl,10533913,5
+41675106,10533913,5
+cescshen,10533913,5
+62120599,10533913,2
+45746626,10533913,5
+7829388,10533913,5
+53868410,10533913,4
+131024844,10533913,5
+82978093,10533913,5
+69023963,10533913,5
+listentomelody,10533913,5
+Libertas.,10533913,4
+64972514,10533913,5
+52284219,10533913,4
+16234584,10533913,5
+2271381,10533913,4
+48198672,10533913,3
+4392505,10533913,5
+xiaoyuhekeer,10533913,4
+72538808,10533913,4
+zephyrliu,10533913,5
+45743155,10533913,5
+ospopi,10533913,5
+2599660,10533913,4
+59275049,10533913,5
+1522003,10533913,4
+80317889,10533913,4
+50269699,10533913,5
+tammysoso,10533913,5
+47305840,10533913,5
+sissix,10533913,-1
+78663925,10533913,4
+mojiwhat,10533913,5
+wzdradon,10533913,5
+134161390,10533913,4
+lyragosa,10533913,5
+lyragosa,10533913,5
+48979950,10533913,4
+3890631,10533913,5
+juneminazuki,10533913,4
+54474146,10533913,4
+43775545,10533913,3
+hmchuchu,10533913,5
+79560195,10533913,4
+63606817,10533913,5
+48204509,10533913,5
+joyeecheung,10533913,4
+69325397,10533913,5
+133619820,10533913,5
+46445015,10533913,4
+121074324,10533913,5
+70595414,10533913,5
+92836075,10533913,-1
+MeloTheFisher,10533913,4
+74168799,10533913,5
+56856472,10533913,5
+caijiewen,10533913,5
+wangying2325,10533913,5
+66931955,10533913,4
+crowtina,10533913,4
+87495306,10533913,5
+35200825,10533913,4
+45406348,10533913,5
+3425312,10533913,5
+67630487,10533913,4
+120361026,10533913,-1
+duidao,10533913,3
+82016905,10533913,5
+hxp1989,10533913,4
+ao_m,10533913,-1
+seal4,10533913,5
+115551507,10533913,4
+fromelf,10533913,5
+june.q,10533913,5
+shadowkid,10533913,4
+jussy,10533913,-1
+4154905,10533913,5
+79904841,10533913,5
+37031042,10533913,4
+JiejieHuhu,10533913,5
+59715109,10533913,5
+63869528,10533913,2
+82817173,10533913,5
+27898838,10533913,4
+yanbigflower,10533913,3
+tongche,10533913,5
+135012811,10533913,4
+h7766,10533913,-1
+raphaelife,10533913,5
+WXFAN,10533913,4
+Miss.NoLonging,10533913,-1
+57453449,10533913,3
+53404103,10533913,5
+1580985,10533913,3
+64876484,10533913,5
+134094707,10533913,4
+83948967,10533913,5
+45947023,10533913,4
+46996397,10533913,5
+24806813,10533913,4
+78387852,10533913,4
+45635139,10533913,4
+4088278,10533913,3
+maoamao,10533913,4
+63287141,10533913,5
+yqp1987,10533913,5
+35348441,10533913,4
+aaate,10533913,2
+Eggy_egg,10533913,5
+getawayfromme,10533913,5
+54994533,10533913,4
+shirleycapri,10533913,4
+52446548,10533913,4
+102006715,10533913,4
+102472299,10533913,3
+65641173,10533913,3
+28398689,10533913,5
+47853022,10533913,5
+43717763,10533913,5
+52116951,10533913,3
+78208494,10533913,5
+bianmengso,10533913,5
+115288809,10533913,5
+48091031,10533913,5
+1614995,10533913,5
+47704379,10533913,-1
+45340915,10533913,4
+58074573,10533913,5
+48516280,10533913,5
+raye.b,10533913,4
+EliNagy,10533913,4
+66298502,10533913,5
+xuweigrace,10533913,4
+4105472,10533913,5
+13903375,10533913,5
+69856173,10533913,4
+78757579,10533913,4
+iamyourdream,10533913,4
+qingjuesikong,10533913,5
+82494304,10533913,5
+52447788,10533913,2
+47117931,10533913,5
+lyy19,10533913,4
+4738444,10533913,5
+MissCaptain,10533913,5
+dearruby,10533913,4
+66758358,10533913,5
+72564988,10533913,4
+29564013,10533913,5
+4771102,10533913,3
+57671679,10533913,1
+3783693,10533913,5
+47178705,10533913,4
+48511722,10533913,-1
+51951271,10533913,4
+manyucastle,10533913,4
+dodorene,10533913,5
+55770448,10533913,4
+S1990,10533913,3
+Amelie1990,10533913,5
+120734681,10533913,4
+tinaq,10533913,4
+46585910,10533913,5
+Miss.Panda,10533913,5
+81317162,10533913,4
+3967225,10533913,5
+jesterselby,10533913,5
+mjxlyc,10533913,5
+48300631,10533913,5
+57553879,10533913,3
+40589331,10533913,5
+62506738,10533913,5
+30674711,10533913,5
+2301865,10533913,3
+46087498,10533913,5
+54096811,10533913,4
+xiaoyujiejie,10533913,4
+Chilwoo,10533913,5
+72507397,10533913,5
+55319553,10533913,3
+ChocoRum,10533913,5
+35465619,10533913,5
+jiajiaxie,10533913,4
+judeli,10533913,5
+ang0326,10533913,3
+1530964,10533913,4
+sylvanalee,10533913,4
+48862073,10533913,4
+xiaoxuealice,10533913,3
+61921759,10533913,4
+119225207,10533913,4
+KK22,10533913,3
+novocaine,10533913,2
+44204441,10533913,5
+80536863,10533913,4
+65135842,10533913,5
+37914560,10533913,5
+lubinfan,10533913,5
+basaya,10533913,4
+happyzkl,10533913,5
+54452935,10533913,4
+crazygrave,10533913,4
+134873920,10533913,5
+48329538,10533913,5
+83152977,10533913,4
+43393053,10533913,4
+chishu,10533913,4
+2198462,10533913,5
+64681992,10533913,5
+Black_Star,10533913,1
+55769530,10533913,4
+56602222,10533913,3
+boffin,10533913,3
+61227548,10533913,5
+68288048,10533913,4
+54778746,10533913,4
+54778746,10533913,4
+3007499,10533913,5
+yyy18n,10533913,3
+sky7115,10533913,3
+53794075,10533913,5
+melodyruan,10533913,4
+Royeka.Es,10533913,4
+4110596,10533913,5
+56981380,10533913,4
+104397819,10533913,4
+qinyouxuan,10533913,5
+jacky.v.c,10533913,4
+43970229,10533913,-1
+NysUn,10533913,4
+3543090,10533913,5
+Lucyceng,10533913,5
+48707537,10533913,5
+lobey,10533913,5
+sonicyang,10533913,5
+44431964,10533913,5
+95230860,10533913,4
+RonaNg,10533913,5
+1760922,10533913,4
+moxiaomindouban,10533913,4
+Summer_zhou7,10533913,4
+50566506,10533913,5
+fidotoy,10533913,4
+15920466,10533913,5
+alv1023,10533913,5
+oojooo,10533913,5
+cindyyj,10533913,3
+suvenee0715,10533913,4
+73807448,10533913,5
+6679580,10533913,4
+bainiqiu,10533913,-1
+xlxiaolei,10533913,5
+SoyQueenaTse,10533913,4
+haman,10533913,5
+Papa423,10533913,3
+82775065,10533913,5
+70698244,10533913,4
+amyiwlyf,10533913,2
+28760394,10533913,5
+xita,10533913,5
+41869870,10533913,5
+50415463,10533913,-1
+k6unica,10533913,5
+1663187,10533913,4
+xujunhui,10533913,5
+jlbean,10533913,4
+48554456,10533913,5
+53794095,10533913,5
+128063403,10533913,4
+lucyhuang21,10533913,4
+caac,10533913,5
+52268031,10533913,3
+aprilray,10533913,4
+fuloli,10533913,4
+47084665,10533913,4
+50043116,10533913,5
+50043116,10533913,5
+3478406,10533913,4
+67854963,10533913,4
+3823320,10533913,5
+janeyuan,10533913,5
+frieda1227,10533913,4
+108571226,10533913,5
+41741395,10533913,5
+leosy,10533913,4
+43012209,10533913,3
+CNToria617,10533913,5
+75328137,10533913,4
+61393582,10533913,4
+102919100,10533913,4
+61294090,10533913,4
+30710412,10533913,5
+2318837,10533913,4
+39012867,10533913,3
+foreverwait,10533913,3
+74290800,10533913,1
+wondershine,10533913,4
+132182651,10533913,5
+53390564,10533913,4
+57968508,10533913,3
+29589327,10533913,5
+84406810,10533913,5
+EtionT,10533913,5
+mandyyuan,10533913,4
+shanguicheng,10533913,5
+ChloeJoyce,10533913,5
+64240656,10533913,4
+69236111,10533913,4
+83673135,10533913,4
+69253645,10533913,1
+lstarss,10533913,5
+61640481,10533913,5
+3371479,10533913,5
+fengzaifei,10533913,3
+alivenotdead,10533913,4
+1893912,10533913,5
+tounye,10533913,4
+2935013,10533913,2
+37341494,10533913,4
+allwordswrong,10533913,4
+Godot0108,10533913,4
+56427814,10533913,2
+45107933,10533913,5
+77086576,10533913,5
+d_minor,10533913,5
+122604864,10533913,5
+61419341,10533913,4
+halfling,10533913,4
+lingbaoboy,10533913,5
+94563474,10533913,5
+zajm,10533913,4
+39384615,10533913,5
+mousse_,10533913,2
+applewendy,10533913,5
+shirleyishere,10533913,3
+34347136,10533913,5
+3675253,10533913,3
+pplanet,10533913,4
+cappuccino5026,10533913,4
+Nalam,10533913,5
+bill86101,10533913,5
+talltale,10533913,5
+Razzmatazz,10533913,4
+47994797,10533913,5
+48883093,10533913,-1
+47565175,10533913,4
+wpy114,10533913,3
+56755911,10533913,4
+Joan_J,10533913,5
+VIPP,10533913,4
+elliry,10533913,4
+74538779,10533913,4
+54811800,10533913,5
+4353368,10533913,4
+41925163,10533913,5
+101503219,10533913,5
+bola-hui,10533913,5
+130940103,10533913,4
+77571393,10533913,5
+58919117,10533913,5
+enjoymyjoy,10533913,5
+cukia,10533913,4
+candydaisy,10533913,4
+wuxuqian,10533913,5
+mowenxia,10533913,5
+Katherinexiaoya,10533913,5
+wangyujia520,10533913,5
+70242855,10533913,4
+39515803,10533913,5
+vermouth,10533913,4
+79389019,10533913,4
+NinevehQ,10533913,3
+51688901,10533913,5
+90500870,10533913,5
+48434528,10533913,5
+36390210,10533913,5
+57964231,10533913,4
+60025613,10533913,5
+FOOL624,10533913,5
+3540779,10533913,5
+59101445,10533913,5
+2192381,10533913,-1
+122484981,10533913,4
+83116335,10533913,5
+moudianzhang,10533913,4
+geniuskathy,10533913,5
+ngc4151,10533913,4
+audreysy,10533913,3
+35473568,10533913,3
+55621323,10533913,4
+87942128,10533913,5
+sickboy,10533913,5
+irini_lee,10533913,3
+zidary,10533913,5
+63281322,10533913,5
+heihuawu,10533913,4
+yvone1220,10533913,4
+frankxiafan,10533913,5
+46988073,10533913,5
+61116917,10533913,5
+45743439,10533913,5
+orchild0517,10533913,5
+134612955,10533913,5
+60988503,10533913,4
+missdonglian,10533913,5
+bryna,10533913,5
+pumpkinplanet,10533913,4
+56206778,10533913,5
+shevjensen,10533913,5
+ZJ1231,10533913,5
+132686664,10533913,5
+67885647,10533913,5
+59990067,10533913,5
+49258293,10533913,5
+59958389,10533913,5
+69280679,10533913,5
+69280679,10533913,5
+C-Plus,10533913,5
+53800868,10533913,5
+4391066,10533913,5
+iker-estrella,10533913,5
+83879581,10533913,5
+51392005,10533913,5
+iH426,10533913,5
+126008793,10533913,5
+134562153,10533913,4
+58101535,10533913,4
+yinhaitian,10533913,4
+PandaRing,10533913,3
+44359880,10533913,5
+woaa,10533913,4
+3199596,10533913,4
+2668237,10533913,3
+13856427,10533913,5
+74572703,10533913,4
+45787212,10533913,5
+62507044,10533913,5
+huiha,10533913,5
+nocturne11,10533913,3
+81241683,10533913,5
+64883992,10533913,5
+wongelephant,10533913,5
+89646324,10533913,4
+58180925,10533913,4
+61712114,10533913,5
+84406429,10533913,5
+duoran_,10533913,5
+shenxiaoxu,10533913,4
+45207350,10533913,5
+72959112,10533913,4
+memejoo,10533913,4
+gsh1215,10533913,5
+35477330,10533913,4
+3422449,10533913,5
+1557359,10533913,5
+Little-Shaily,10533913,4
+feellings,10533913,5
+chevrol,10533913,-1
+90470774,10533913,5
+wendyrain,10533913,4
+mikloo,10533913,5
+3733528,10533913,4
+122401708,10533913,5
+120556407,10533913,3
+63080132,10533913,5
+79354740,10533913,4
+ameba,10533913,5
+61345635,10533913,2
+mamistar,10533913,3
+62405288,10533913,3
+yikexin12,10533913,4
+52524732,10533913,5
+janaldlam,10533913,5
+1514019,10533913,5
+serendip,10533913,4
+kalashnikov,10533913,5
+kalashnikov,10533913,5
+52519025,10533913,4
+122974709,10533913,4
+87693266,10533913,5
+52449680,10533913,4
+wowcecilia,10533913,5
+121966622,10533913,4
+3939279,10533913,5
+blinginlife,10533913,5
+73060642,10533913,4
+movingcastal,10533913,5
+piggy_sunrise,10533913,5
+3851601,10533913,5
+48568251,10533913,5
+hongzhouche,10533913,5
+oliviapalermo,10533913,5
+JohnnyLi,10533913,3
+DonCorleone,10533913,5
+shiyiforever,10533913,5
+2122074,10533913,5
+50833058,10533913,5
+78850337,10533913,5
+38572458,10533913,5
+46361986,10533913,3
+samii,10533913,4
+132226147,10533913,5
+psyche213,10533913,5
+133914507,10533913,4
+yuchenyuan,10533913,4
+2963229,10533913,5
+3678658,10533913,4
+zhenshubizheng,10533913,5
+chengnanxuan,10533913,3
+129611474,10533913,5
+1439250,10533913,5
+ppu07,10533913,5
+vivaviva,10533913,4
+2690637,10533913,4
+johnnietomay,10533913,5
+50278650,10533913,4
+syukaku,10533913,2
+82232833,10533913,4
+ishra,10533913,3
+70007681,10533913,5
+darrenism,10533913,5
+57875109,10533913,4
+miiyuro,10533913,4
+soildsnake,10533913,4
+zhuobielin,10533913,4
+14277787,10533913,3
+earthchild,10533913,4
+Yoyo_Yvette,10533913,5
+63410162,10533913,5
+48704882,10533913,5
+58004310,10533913,5
+VivianGoodchild,10533913,4
+114079849,10533913,5
+Tweff,10533913,5
+aryan,10533913,5
+53220311,10533913,5
+2738218,10533913,4
+93186844,10533913,5
+imarco,10533913,5
+meilixiaoyao,10533913,5
+1651604,10533913,4
+Carmeliano,10533913,3
+Kayon,10533913,4
+muchamucha,10533913,5
+1949431,10533913,5
+ele30tin,10533913,5
+128255192,10533913,-1
+2512704,10533913,-1
+3758730,10533913,4
+floragarfield,10533913,4
+petitespot,10533913,5
+Gally,10533913,3
+xutianxi,10533913,5
+bunny_Shen,10533913,3
+lilacmoon,10533913,4
+62534657,10533913,5
+shireenzhu,10533913,5
+jack_eminem,10533913,3
+87576742,10533913,5
+43802399,10533913,4
+112083584,10533913,5
+iwhatever,10533913,5
+qi_candy,10533913,4
+3444801,10533913,4
+whateverrr,10533913,4
+kirsten7,10533913,5
+littlebaozi,10533913,1
+65573986,10533913,4
+3899663,10533913,4
+stepnine,10533913,5
+jx45-14,10533913,5
+61866931,10533913,-1
+shawnNK,10533913,3
+38139628,10533913,4
+121595559,10533913,5
+54864472,10533913,-1
+imimi,10533913,4
+63824068,10533913,5
+1558709,10533913,4
+knighttcwsy,10533913,4
+88425798,10533913,4
+72873381,10533913,5
+zhouxin95,10533913,4
+12962566,10533913,4
+cindycoo,10533913,5
+xyxyxyxyxy1995,10533913,4
+xiao.ye,10533913,4
+2866796,10533913,5
+dreamheartfly,10533913,5
+45964771,10533913,3
+35063229,10533913,5
+54942314,10533913,4
+Kodama,10533913,5
+78656769,10533913,5
+35780501,10533913,5
+Matt_Zhe,10533913,-1
+79463991,10533913,5
+spancercheng,10533913,3
+Greenlemonngeow,10533913,5
+126825775,10533913,5
+1861971,10533913,3
+julyfish,10533913,3
+alice_witch,10533913,4
+41785476,10533913,4
+42057184,10533913,4
+6303192,10533913,1
+jinlinyuyu,10533913,5
+47169625,10533913,5
+77194286,10533913,4
+skerrysky,10533913,4
+joycejoycejoyce,10533913,4
+2462353,10533913,4
+DrGonzo,10533913,3
+eYeMeteor,10533913,5
+cherikie,10533913,4
+41917575,10533913,5
+52800878,10533913,5
+zi,10533913,4
+2635175,10533913,5
+126843454,10533913,5
+65901691,10533913,4
+carrieme,10533913,4
+63513932,10533913,3
+ericandlisa,10533913,3
+Lplanet,10533913,5
+55800838,10533913,5
+60836654,10533913,5
+54562055,10533913,5
+1058726,10533913,5
+Stilll,10533913,5
+paopaoing,10533913,3
+SoniaLu-douban,10533913,5
+Walt_W,10533913,4
+58402026,10533913,5
+54383012,10533913,5
+JJSJJ,10533913,3
+108942456,10533913,3
+44258193,10533913,4
+71181943,10533913,4
+wendygong,10533913,3
+justico,10533913,3
+Tobyone,10533913,5
+71515996,10533913,3
+64865370,10533913,5
+jolllllly,10533913,5
+24853995,10533913,4
+imqxq,10533913,-1
+guanjianhong,10533913,5
+qingxp9,10533913,5
+3981876,10533913,4
+wangyueb,10533913,-1
+3353989,10533913,4
+dtmql,10533913,5
+3239241,10533913,3
+RivenZhong,10533913,4
+39228377,10533913,5
+xy_sailors,10533913,-1
+2853604,10533913,3
+45698347,10533913,3
+lovelyJ,10533913,5
+babybottle,10533913,5
+testimony,10533913,5
+34739546,10533913,5
+ppa007hot,10533913,5
+Bening,10533913,5
+zhangzhangzhang,10533913,3
+87888275,10533913,5
+heydenny,10533913,5
+kianfish,10533913,5
+11080929,10533913,5
+55764073,10533913,5
+wxw1900,10533913,5
+49025616,10533913,4
+misscellophane,10533913,5
+69805658,10533913,5
+54415662,10533913,5
+91473851,10533913,5
+46973130,10533913,5
+mikanfly,10533913,5
+52392093,10533913,4
+Mirac1e,10533913,4
+lilaaah,10533913,4
+63322369,10533913,4
+3495848,10533913,5
+38669590,10533913,5
+seeonly,10533913,4
+41142807,10533913,5
+62293051,10533913,2
+61816824,10533913,4
+suzy-with-u,10533913,5
+houge666,10533913,5
+jodiesun,10533913,5
+JCJC,10533913,4
+58216177,10533913,4
+PanPlusone,10533913,3
+lilymoonlight,10533913,5
+37007389,10533913,3
+89993946,10533913,5
+91912832,10533913,5
+musicyue21,10533913,4
+36601365,10533913,3
+BritpopStarFeel,10533913,5
+60183259,10533913,4
+65021113,10533913,3
+33538142,10533913,4
+ttpssf,10533913,4
+44145594,10533913,3
+36395354,10533913,5
+34914532,10533913,2
+49319979,10533913,5
+87095553,10533913,5
+37832420,10533913,5
+anjia617,10533913,5
+51679757,10533913,5
+60491386,10533913,4
+68804843,10533913,4
+love-99,10533913,5
+68199229,10533913,5
+121829507,10533913,3
+wrdouban,10533913,4
+iam7,10533913,5
+40436997,10533913,5
+yukiyuko,10533913,4
+accessking,10533913,4
+foreveryoung09,10533913,5
+49763880,10533913,4
+34431376,10533913,4
+50357025,10533913,4
+GnemDriew,10533913,4
+76085199,10533913,5
+zhangsisi333,10533913,4
+129369858,10533913,4
+hellochensasa,10533913,3
+beibeiyuan,10533913,4
+heibaituzi,10533913,5
+121655638,10533913,5
+wxranne,10533913,5
+parachutony,10533913,4
+45912977,10533913,3
+25733220,10533913,5
+42426766,10533913,5
+85395736,10533913,2
+32747546,10533913,5
+68732725,10533913,4
+33061751,10533913,5
+54113299,10533913,5
+70682305,10533913,4
+SamuelYan,10533913,5
+76170749,10533913,5
+2915517,10533913,5
+1358728,10533913,5
+68027669,10533913,4
+133190465,10533913,4
+60027417,10533913,4
+warmhouse,10533913,4
+85386005,10533913,3
+61742449,10533913,4
+ypl52111,10533913,5
+cathyzcl,10533913,3
+49103516,10533913,4
+KINGRUNRUN,10533913,3
+xiaoyubaobao,10533913,5
+henzen,10533913,4
+joyzhai,10533913,5
+dancealone,10533913,4
+35930999,10533913,4
+43778462,10533913,-1
+foreverlee,10533913,4
+mubin,10533913,5
+40401323,10533913,5
+AgiHan0221,10533913,5
+fabulousczj,10533913,5
+73615666,10533913,5
+ziliang,10533913,5
+blur4love,10533913,4
+cynthiaY0717,10533913,5
+52163063,10533913,4
+mrsmsr,10533913,3
+lovecatsandbear,10533913,5
+53605408,10533913,5
+Zoeeoz,10533913,4
+inspirationjay3,10533913,5
+ayake,10533913,3
+4545187,10533913,4
+8490514,10533913,5
+stansphere,10533913,5
+67349938,10533913,5
+tjmelody,10533913,5
+mymydemon,10533913,3
+killastrawberry,10533913,4
+91528806,10533913,5
+4324357,10533913,5
+71732006,10533913,3
+huangyuhao,10533913,5
+bluebamboo,10533913,3
+57258853,10533913,4
+75704681,10533913,5
+summer_rock,10533913,3
+37364562,10533913,-1
+46393158,10533913,5
+55845400,10533913,5
+cindyhao,10533913,3
+8068484,10533913,3
+64776955,10533913,5
+60222551,10533913,5
+92231929,10533913,5
+53951435,10533913,4
+luvis1499,10533913,3
+4453892,10533913,-1
+liuzelei,10533913,5
+57477853,10533913,5
+61946723,10533913,3
+68770353,10533913,-1
+cyan_xi,10533913,5
+7255952,10533913,5
+mintcoconut,10533913,5
+2592459,10533913,1
+61499382,10533913,5
+DereyantChan,10533913,5
+65079342,10533913,5
+90551968,10533913,5
+beatrice_solo,10533913,4
+49507832,10533913,4
+DryEar,10533913,4
+47448827,10533913,4
+guoyandao,10533913,3
+hui226,10533913,5
+45995133,10533913,4
+47106191,10533913,5
+Evenray,10533913,4
+50264493,10533913,5
+49595588,10533913,4
+enchanted13,10533913,5
+49261794,10533913,5
+116687709,10533913,5
+74499406,10533913,4
+freekami,10533913,5
+lenglen,10533913,4
+3501606,10533913,4
+Colin_Wang,10533913,4
+35357066,10533913,-1
+62379540,10533913,5
+56603661,10533913,4
+lst_lovetvxq,10533913,5
+zouhuzm,10533913,3
+donaldwu,10533913,4
+ur.little.girl.,10533913,5
+99969448,10533913,5
+75940391,10533913,5
+luanxueqiong,10533913,5
+83836566,10533913,5
+51058811,10533913,4
+nightw1sh,10533913,5
+huoxiaoliang,10533913,3
+4516843,10533913,4
+sweet-lily,10533913,3
+baorenyuan,10533913,5
+2110060,10533913,5
+jiqn,10533913,5
+Loveneverfail,10533913,4
+rr317,10533913,4
+ktysnow,10533913,5
+ripplelien,10533913,4
+43430222,10533913,5
+1520497,10533913,5
+38774242,10533913,3
+dadou417,10533913,4
+48661159,10533913,4
+49346952,10533913,4
+67099663,10533913,4
+2176215,10533913,5
+superegg.,10533913,4
+3170513,10533913,5
+4491309,10533913,5
+babylon14,10533913,3
+15012448,10533913,5
+andless,10533913,-1
+landcontinent,10533913,5
+edocsil,10533913,4
+panda11,10533913,5
+yumeria,10533913,5
+59794185,10533913,4
+102883589,10533913,5
+1615455,10533913,5
+sif7,10533913,5
+vanvan07,10533913,4
+18664682,10533913,4
+61752391,10533913,4
+58671992,10533913,5
+MoQin,10533913,4
+67137878,10533913,5
+39294617,10533913,3
+3574430,10533913,-1
+49891610,10533913,4
+70541250,10533913,3
+120971246,10533913,5
+65638659,10533913,5
+popfeng,10533913,4
+51463036,10533913,4
+48354152,10533913,5
+adrian-tsai,10533913,5
+82817836,10533913,5
+65165270,10533913,4
+35137327,10533913,4
+55866534,10533913,5
+Felven,10533913,5
+anison,10533913,3
+rechyo,10533913,4
+59886067,10533913,3
+83298227,10533913,4
+3350852,10533913,5
+konghanlei,10533913,5
+64038122,10533913,5
+HINSun,10533913,4
+ddj814,10533913,4
+fhlan,10533913,5
+43326904,10533913,5
+11501508,10533913,5
+2177082,10533913,4
+travelaway,10533913,5
+hawkingwang,10533913,5
+53431261,10533913,5
+Jigsaw709,10533913,4
+zuochangyu,10533913,4
+one0827,10533913,5
+59281167,10533913,5
+watever_lan,10533913,3
+vermouthsama,10533913,4
+seayo,10533913,5
+84131231,10533913,5
+duanduankong,10533913,5
+57301508,10533913,5
+64173822,10533913,5
+piglet-z,10533913,5
+56925135,10533913,4
+64677693,10533913,5
+64677693,10533913,5
+AmySpecial,10533913,5
+juzi1117,10533913,5
+stelladingding,10533913,4
+LotteMars,10533913,4
+4537875,10533913,5
+sapphria,10533913,-1
+59372106,10533913,3
+flyingbria,10533913,5
+loveljfoever,10533913,5
+121057597,10533913,5
+69162144,10533913,5
+53500463,10533913,4
+willingnotto,10533913,4
+Qearl7,10533913,5
+34544680,10533913,5
+49116772,10533913,3
+133648079,10533913,5
+132438473,10533913,5
+67316449,10533913,5
+57824649,10533913,4
+darkphoenix,10533913,4
+life44sunset,10533913,4
+69016984,10533913,5
+62812139,10533913,4
+2290613,10533913,4
+greensylviaq,10533913,4
+53085669,10533913,3
+yobeko,10533913,-1
+hustzxf,10533913,4
+45922244,10533913,3
+Erva,10533913,4
+fuye,10533913,5
+63119071,10533913,5
+48521258,10533913,5
+133538535,10533913,4
+DansMonile,10533913,5
+52852194,10533913,5
+zhanyangying,10533913,3
+81930052,10533913,5
+59574683,10533913,5
+albeedesert,10533913,4
+54717954,10533913,5
+flower-flower25,10533913,5
+43956642,10533913,5
+liuanan0606,10533913,5
+36982718,10533913,4
+FTDxiaowukong,10533913,5
+64713233,10533913,5
+58268396,10533913,5
+95425841,10533913,4
+anotheronexia,10533913,5
+81905394,10533913,5
+124953430,10533913,5
+1385455,10533913,5
+smallhare,10533913,4
+47070736,10533913,4
+43550130,10533913,5
+dasyure,10533913,5
+51013883,10533913,5
+starwan,10533913,5
+86091558,10533913,5
+53885262,10533913,4
+46002739,10533913,5
+47540163,10533913,5
+67008431,10533913,5
+iwtbfems,10533913,5
+92978277,10533913,5
+61554500,10533913,4
+depressioncat,10533913,5
+115949877,10533913,5
+treeplanting,10533913,5
+61930978,10533913,5
+haize,10533913,5
+126351457,10533913,5
+43039629,10533913,5
+yueguangszy,10533913,4
+38811874,10533913,5
+42367831,10533913,4
+tikanonatu,10533913,5
+1149126,10533913,4
+2745937,10533913,5
+dick8045,10533913,5
+2401213,10533913,3
+4896156,10533913,5
+68728325,10533913,4
+lin7128jin,10533913,5
+61788564,10533913,5
+BlueMoonshine,10533913,4
+56948968,10533913,5
+67978593,10533913,4
+jeonwoo,10533913,5
+eveshi,10533913,5
+92830730,10533913,5
+49943756,10533913,5
+37959667,10533913,5
+69835584,10533913,5
+rosyryo,10533913,-1
+21064111,10533913,5
+79913596,10533913,4
+46897119,10533913,3
+84522058,10533913,5
+103707463,10533913,5
+64898125,10533913,2
+sinxu,10533913,4
+76601155,10533913,5
+2194320,10533913,5
+55342702,10533913,4
+debrah,10533913,4
+zachzhou,10533913,5
+88078787,10533913,4
+wzshere,10533913,4
+59604055,10533913,4
+phoenixbox,10533913,5
+80065462,10533913,2
+68255096,10533913,4
+conetoiles,10533913,5
+dear77,10533913,4
+43289725,10533913,5
+whatsuplaura,10533913,4
+130871768,10533913,5
+79713942,10533913,4
+chihee,10533913,3
+sickroom305,10533913,5
+83215549,10533913,5
+63102197,10533913,5
+55479330,10533913,5
+43088933,10533913,5
+sunflowerqi,10533913,5
+44561459,10533913,3
+45325169,10533913,4
+shannonsummer,10533913,4
+tammysky,10533913,4
+jisixue0111,10533913,3
+121933047,10533913,5
+57915368,10533913,5
+joynee,10533913,5
+hypnoticboy,10533913,3
+angalny,10533913,4
+43859610,10533913,5
+73948612,10533913,5
+Perfume_,10533913,5
+hawkingur,10533913,5
+DLZ0724,10533913,4
+60369036,10533913,5
+FANFan-ER,10533913,3
+zihaozai0407,10533913,5
+liuyuzen,10533913,4
+42886985,10533913,4
+2766948,10533913,3
+kelinda,10533913,5
+1569518,10533913,4
+czhou,10533913,5
+91024874,10533913,5
+82088870,10533913,5
+viola1990mm,10533913,4
+42757817,10533913,5
+55603347,10533913,3
+HyoA,10533913,4
+55919249,10533913,4
+yumj,10533913,3
+rokkumu,10533913,4
+wwwhilary,10533913,4
+76452322,10533913,5
+byebyehaku,10533913,4
+1378720,10533913,5
+guo4901,10533913,4
+wind_field,10533913,4
+acepatrick,10533913,4
+64239106,10533913,5
+silent_island,10533913,5
+st.yuee,10533913,5
+24502706,10533913,5
+60386467,10533913,4
+59864726,10533913,5
+CheeseTree,10533913,5
+yuanziwei,10533913,5
+45420804,10533913,5
+rainbow-fish,10533913,4
+xiaosonger,10533913,5
+sinapple,10533913,4
+120241385,10533913,5
+128917939,10533913,5
+margaret-lor,10533913,5
+44104954,10533913,5
+67952037,10533913,4
+53370793,10533913,5
+25982397,10533913,3
+133589292,10533913,3
+30938218,10533913,5
+allusioni,10533913,4
+69146144,10533913,5
+Lancelot365,10533913,5
+97474180,10533913,4
+61611060,10533913,4
+39605411,10533913,5
+48270927,10533913,5
+46190149,10533913,5
+3726027,10533913,4
+camelia,10533913,4
+camelia,10533913,4
+Sh1neYuan,10533913,3
+67968935,10533913,5
+Loota,10533913,4
+47386345,10533913,5
+bernadettttttte,10533913,3
+neverlander,10533913,5
+Pathon,10533913,4
+27713698,10533913,5
+133849522,10533913,3
+stopnowon,10533913,-1
+103503223,10533913,5
+48807966,10533913,4
+ruocun123,10533913,5
+63227671,10533913,5
+1462465,10533913,4
+jermen,10533913,4
+NarcissusMomo,10533913,3
+sukiffff,10533913,4
+vivizhang,10533913,5
+vivizhang,10533913,5
+34986694,10533913,4
+tuoxiaotu,10533913,5
+2266030,10533913,4
+120418587,10533913,4
+46149652,10533913,5
+47331387,10533913,4
+huangyibin,10533913,5
+50075764,10533913,3
+shanshanyouli,10533913,5
+76789340,10533913,3
+misslune,10533913,4
+53373767,10533913,5
+formosante,10533913,4
+skloveshaka,10533913,3
+49778804,10533913,5
+61030127,10533913,5
+3815475,10533913,4
+xiawu1130,10533913,5
+2309537,10533913,3
+74913567,10533913,5
+Sohai,10533913,5
+29905943,10533913,4
+vagetables,10533913,5
+davidttmam,10533913,4
+83223876,10533913,5
+70294430,10533913,5
+amenda1,10533913,5
+44359808,10533913,4
+45415136,10533913,4
+boxxx,10533913,4
+3403834,10533913,5
+2375740,10533913,4
+MihoKomatsu,10533913,5
+120797263,10533913,5
+96490951,10533913,5
+snowbusy,10533913,5
+cijfer,10533913,5
+57873488,10533913,-1
+yagamigenko,10533913,3
+yagamigenko,10533913,3
+littlezhisandra,10533913,2
+132148305,10533913,4
+antchen88,10533913,5
+2359029,10533913,-1
+jianyadaodao,10533913,4
+Dr.StrangeLove,10533913,5
+48835764,10533913,4
+68700662,10533913,5
+parkxiahky,10533913,5
+libinhan,10533913,5
+45119759,10533913,5
+leisily,10533913,5
+wenjingbaba,10533913,4
+maeho,10533913,5
+48689412,10533913,5
+Howme,10533913,5
+89844147,10533913,5
+57124272,10533913,4
+evilynq,10533913,3
+78934649,10533913,5
+102830761,10533913,5
+1895030,10533913,4
+Vanessa...,10533913,5
+98693358,10533913,4
+IvyGiggs,10533913,5
+eddychaw,10533913,4
+79970005,10533913,-1
+13766976,10533913,3
+76531316,10533913,5
+3512045,10533913,5
+lushan2866,10533913,5
+75347251,10533913,4
+49073345,10533913,2
+Neversummer,10533913,5
+43370431,10533913,4
+71378283,10533913,3
+55676658,10533913,5
+charissanama,10533913,5
+GAYHOUSE,10533913,-1
+XinwenCheng,10533913,5
+brbaarlab,10533913,4
+la_double_vie,10533913,4
+5355133,10533913,5
+kkkwhite,10533913,5
+93961949,10533913,5
+edward2wong,10533913,4
+ZJX1989,10533913,5
+gliuxiaofan119,10533913,5
+73516473,10533913,4
+39045216,10533913,5
+mrwumao,10533913,5
+53024139,10533913,4
+74003656,10533913,3
+62469238,10533913,5
+51264470,10533913,4
+huangtoufa,10533913,5
+Madao_D,10533913,5
+49120309,10533913,4
+solanachen,10533913,5
+zhaimozi,10533913,4
+dearabbyabby,10533913,4
+sinbone,10533913,4
+50762572,10533913,5
+69608520,10533913,4
+shinjong,10533913,5
+78658574,10533913,4
+3783132,10533913,5
+2013478,10533913,5
+56405753,10533913,5
+samkaka,10533913,5
+2431455,10533913,4
+65550886,10533913,4
+sunshineautumn,10533913,4
+TL-toupan512,10533913,5
+58133135,10533913,5
+129293584,10533913,5
+salad-days,10533913,5
+67852674,10533913,5
+1643126,10533913,3
+lovebenedict,10533913,3
+aiyuo,10533913,4
+48800025,10533913,5
+lordbaker,10533913,5
+3311212,10533913,4
+felixsmli,10533913,5
+suntianyang,10533913,5
+1816108,10533913,2
+1842094,10533913,5
+Lauren1010,10533913,5
+oldwolfnwf,10533913,3
+4441543,10533913,5
+72123222,10533913,4
+KathyChin,10533913,5
+1834922,10533913,5
+ximenqing_,10533913,5
+49576050,10533913,4
+patti113,10533913,4
+madridzp007,10533913,4
+126695347,10533913,5
+flyfrankenstein,10533913,5
+startalker,10533913,5
+wild_lsak,10533913,5
+110718557,10533913,5
+lovesebby,10533913,5
+jinghanxing,10533913,5
+133654392,10533913,5
+sundayikel,10533913,-1
+40853957,10533913,5
+87546829,10533913,5
+lyzbeishida,10533913,5
+49476132,10533913,5
+4116226,10533913,4
+50938886,10533913,4
+fayi77,10533913,5
+wwyihuayishijie,10533913,5
+1174148,10533913,4
+121537266,10533913,5
+133637171,10533913,5
+56328149,10533913,4
+44121250,10533913,3
+128396353,10533913,5
+2076258,10533913,3
+73415569,10533913,5
+dakusaido,10533913,3
+71478408,10533913,4
+52392787,10533913,5
+63557771,10533913,5
+65187145,10533913,4
+morpheus5,10533913,2
+70026418,10533913,3
+50565787,10533913,5
+yibojiang,10533913,5
+NicoleSuking,10533913,3
+rvlt,10533913,4
+66840226,10533913,5
+83842502,10533913,5
+58547520,10533913,5
+43263362,10533913,5
+cote,10533913,4
+51423276,10533913,5
+justlikesue,10533913,5
+y2even,10533913,5
+3538758,10533913,5
+1900968,10533913,5
+74935838,10533913,4
+84975793,10533913,4
+pillboxie,10533913,5
+2338448,10533913,3
+sandrawyy,10533913,4
+104823188,10533913,5
+49106125,10533913,5
+nextdawn,10533913,4
+moviecafe,10533913,5
+nigelcrane,10533913,3
+50775339,10533913,4
+133588089,10533913,-1
+64214244,10533913,5
+yan_fang,10533913,5
+65448112,10533913,4
+38750920,10533913,4
+64866923,10533913,5
+59771378,10533913,2
+Dunstan13,10533913,4
+84744874,10533913,3
+zhukeke,10533913,5
+huirua,10533913,5
+49445326,10533913,4
+lubyson,10533913,5
+rightshadow,10533913,5
+4828520,10533913,-1
+75957964,10533913,5
+mengaxin,10533913,4
+50043159,10533913,5
+51470907,10533913,5
+76273078,10533913,5
+69712659,10533913,5
+59370142,10533913,5
+42463723,10533913,4
+46706414,10533913,5
+68918586,10533913,5
+47821826,10533913,4
+127208725,10533913,5
+83550377,10533913,5
+2104017,10533913,3
+81373304,10533913,4
+haiserlu,10533913,3
+29898737,10533913,5
+43930540,10533913,5
+68277580,10533913,5
+didijia,10533913,4
+57319762,10533913,4
+81130802,10533913,5
+53945299,10533913,-1
+babyroll,10533913,5
+xiaoqianquan,10533913,5
+piao_yao_,10533913,5
+cai1st,10533913,5
+49515197,10533913,5
+J7N,10533913,5
+kidrabbit,10533913,5
+xiongbear01,10533913,5
+82262914,10533913,4
+28681555,10533913,3
+lavendercx,10533913,5
+4638543,10533913,4
+cynthia8974,10533913,5
+2944300,10533913,5
+traylor,10533913,4
+greengrey,10533913,5
+roseandwater,10533913,5
+121887405,10533913,4
+45258018,10533913,4
+junoqi,10533913,5
+3306133,10533913,5
+35754076,10533913,5
+pluto0318,10533913,5
+palooney,10533913,5
+hashtable,10533913,4
+57032677,10533913,5
+57651178,10533913,5
+53532629,10533913,5
+48108254,10533913,5
+VINCENTVCHAN,10533913,4
+54655578,10533913,3
+6961377,10533913,5
+58399849,10533913,5
+2521209,10533913,5
+57422037,10533913,4
+38498557,10533913,4
+77699429,10533913,5
+willydu,10533913,4
+zz4syz,10533913,4
+hohosweet,10533913,4
+beijinglife,10533913,5
+55389424,10533913,4
+132175237,10533913,5
+22871754,10533913,5
+legend06p12,10533913,5
+65662824,10533913,5
+1364576,10533913,4
+3296176,10533913,4
+47182604,10533913,5
+80687112,10533913,5
+60159674,10533913,5
+66904097,10533913,5
+freebird619,10533913,5
+3745695,10533913,5
+104823216,10533913,5
+44824748,10533913,4
+45665171,10533913,4
+50410160,10533913,4
+SeanShepherd,10533913,5
+2428233,10533913,4
+suzihan,10533913,4
+62740578,10533913,4
+hugolee,10533913,4
+55321453,10533913,4
+dazhao,10533913,3
+87559103,10533913,4
+caocaoDC,10533913,-1
+4575449,10533913,5
+cindyncindy,10533913,4
+58088013,10533913,5
+130464866,10533913,3
+60046891,10533913,5
+48167450,10533913,5
+fantastic1021,10533913,5
+Reuben.zhen,10533913,3
+133439262,10533913,5
+84828143,10533913,4
+45416494,10533913,5
+queenbean,10533913,5
+candyff123,10533913,5
+xiamudemao,10533913,3
+fanyi0109,10533913,4
+idolt,10533913,4
+sarabilau2,10533913,4
+tinychen,10533913,4
+51168066,10533913,4
+39553070,10533913,-1
+65173707,10533913,5
+2588019,10533913,5
+41963538,10533913,5
+50036042,10533913,5
+58313990,10533913,4
+81833605,10533913,-1
+leecyril,10533913,4
+79948176,10533913,5
+58759122,10533913,3
+125598800,10533913,5
+Utopia.YY,10533913,5
+47400969,10533913,-1
+LauFun,10533913,4
+52823989,10533913,5
+65438415,10533913,5
+65452477,10533913,2
+84872284,10533913,4
+88713337,10533913,5
+96183045,10533913,5
+68792801,10533913,4
+aliceliang0907,10533913,5
+lunaluo7,10533913,5
+67297551,10533913,-1
+52888296,10533913,3
+47576659,10533913,5
+ccj0212,10533913,5
+91659747,10533913,4
+lohill,10533913,4
+tiamo_c,10533913,5
+operaticfrances,10533913,5
+debbie_han,10533913,5
+tarimusi,10533913,-1
+spacekat,10533913,5
+xiaoxu820,10533913,5
+56071242,10533913,3
+57667810,10533913,5
+fiona_DQ,10533913,5
+50187661,10533913,4
+76999762,10533913,5
+57214869,10533913,3
+55943262,10533913,4
+59354411,10533913,5
+66121478,10533913,5
+liussdy,10533913,5
+77123373,10533913,5
+bombbombbombbom,10533913,3
+5594345,10533913,5
+94165453,10533913,4
+louing,10533913,5
+82080479,10533913,5
+74959611,10533913,5
+reira_jxy,10533913,4
+38448078,10533913,5
+3363790,10533913,5
+133039983,10533913,4
+121562470,10533913,4
+3202437,10533913,5
+stabrid,10533913,5
+44418908,10533913,5
+122981729,10533913,5
+60310377,10533913,4
+vivifyvivi,10533913,5
+qqmhao,10533913,5
+sylviecx,10533913,4
+3294642,10533913,4
+62456347,10533913,5
+4402728,10533913,5
+71678016,10533913,4
+64293567,10533913,5
+60421761,10533913,5
+miraclegd,10533913,5
+4503980,10533913,4
+HandsomeJack,10533913,4
+99697107,10533913,4
+1412024,10533913,5
+61570296,10533913,5
+walnut__,10533913,3
+32727331,10533913,5
+iadamlambert,10533913,4
+75361006,10533913,1
+80585311,10533913,5
+37405681,10533913,5
+fiona-cin,10533913,5
+lanhui,10533913,5
+40719787,10533913,5
+yushuhang,10533913,4
+LarryCC,10533913,4
+90205716,10533913,5
+84719637,10533913,5
+68992474,10533913,5
+132295742,10533913,3
+50663566,10533913,5
+55571572,10533913,4
+50867193,10533913,5
+mrgoodnight,10533913,5
+50930270,10533913,5
+62817881,10533913,5
+49862758,10533913,5
+bensdiary,10533913,5
+elainemumu,10533913,5
+beary,10533913,4
+59011955,10533913,4
+ge383203180xin,10533913,5
+orbit,10533913,4
+67313637,10533913,3
+78616781,10533913,5
+mumucha,10533913,4
+yijuns89,10533913,4
+46904289,10533913,5
+miraculousu,10533913,4
+53042572,10533913,5
+34592122,10533913,4
+40506777,10533913,5
+65723626,10533913,5
+1503417,10533913,4
+122972711,10533913,4
+80327675,10533913,5
+joyceshen3,10533913,5
+68145483,10533913,5
+3978018,10533913,5
+44946309,10533913,4
+vanilla666,10533913,5
+65321007,10533913,4
+3319103,10533913,4
+52278256,10533913,5
+kobelover,10533913,3
+willorz,10533913,3
+73644036,10533913,4
+54348295,10533913,5
+snailnim,10533913,5
+56871206,10533913,4
+76982240,10533913,4
+99349662,10533913,4
+54419821,10533913,3
+75179640,10533913,4
+zhibiaoshi,10533913,4
+linchuzhuang,10533913,5
+35135916,10533913,4
+40395158,10533913,2
+d690859110,10533913,4
+yueyan23,10533913,4
+90854543,10533913,5
+56252551,10533913,4
+xiao33319,10533913,5
+65397009,10533913,4
+Shuimu3,10533913,5
+A-sun,10533913,4
+wackyan,10533913,5
+55885677,10533913,2
+41294131,10533913,3
+3846941,10533913,4
+1631968,10533913,4
+2386045,10533913,5
+monicayun,10533913,3
+echovoice,10533913,4
+63091718,10533913,4
+65595818,10533913,5
+dribble,10533913,5
+tszwingtong,10533913,5
+tszwingtong,10533913,5
+30463094,10533913,5
+julysummerer,10533913,4
+92934548,10533913,5
+65357988,10533913,1
+lipinqing0423,10533913,4
+entendu,10533913,5
+Taci,10533913,4
+36709953,10533913,4
+Karilyn,10533913,4
+40934646,10533913,4
+1830723,10533913,4
+76515207,10533913,5
+15035026,10533913,4
+39849703,10533913,5
+54814677,10533913,5
+49529006,10533913,1
+screamcity,10533913,5
+40452255,10533913,4
+3850532,10533913,5
+73921978,10533913,5
+fawaixiaoyao,10533913,5
+3253588,10533913,5
+xss0791,10533913,5
+36650366,10533913,4
+Castieal,10533913,4
+35751326,10533913,5
+62237138,10533913,4
+barbie_ye,10533913,5
+69272123,10533913,5
+54366340,10533913,5
+graylucky,10533913,5
+yoxi222,10533913,5
+10648336,10533913,4
+2829310,10533913,5
+127606527,10533913,3
+4509449,10533913,4
+2596592,10533913,5
+dfzxqqian,10533913,5
+67570964,10533913,4
+16040985,10533913,3
+70019854,10533913,5
+90868187,10533913,-1
+50642846,10533913,5
+79044284,10533913,5
+88214341,10533913,5
+klakt,10533913,4
+onlyck,10533913,3
+lasiaz,10533913,5
+maomao19901108,10533913,4
+3433511,10533913,4
+cristian,10533913,5
+66025844,10533913,4
+59210685,10533913,4
+63704631,10533913,4
+scaren,10533913,3
+57791239,10533913,2
+noisyphone,10533913,4
+elise901,10533913,5
+ayohan,10533913,5
+52424511,10533913,5
+4017228,10533913,3
+qingmuwu,10533913,4
+4311991,10533913,4
+66266382,10533913,4
+jyfang07,10533913,4
+65442139,10533913,5
+lovepoison,10533913,4
+51414722,10533913,4
+ally11,10533913,5
+79470377,10533913,5
+51086058,10533913,4
+60844082,10533913,4
+jeensk,10533913,4
+amiaaso,10533913,3
+67083640,10533913,3
+Kemuid,10533913,5
+64109076,10533913,5
+80786128,10533913,4
+summerlinnine,10533913,5
+iori70599,10533913,5
+deirdra,10533913,4
+1225013,10533913,-1
+happylun,10533913,4
+128418401,10533913,5
+52530638,10533913,5
+GL-LOLI,10533913,5
+125371262,10533913,4
+65468696,10533913,5
+2361078,10533913,4
+maggiexls,10533913,4
+80797429,10533913,5
+cowbie,10533913,4
+beyondcen,10533913,5
+58797753,10533913,4
+56844373,10533913,5
+43870659,10533913,5
+jimmyfallon,10533913,5
+69695174,10533913,-1
+46012928,10533913,5
+Eudaimonia,10533913,4
+2642301,10533913,5
+53271347,10533913,5
+122722882,10533913,5
+1687306,10533913,5
+1920409,10533913,3
+45332811,10533913,4
+mocoa,10533913,4
+ovspianist,10533913,5
+subuuti,10533913,4
+queenchelsea,10533913,5
+64455771,10533913,5
+67013615,10533913,5
+47218828,10533913,4
+lishushu,10533913,4
+54841008,10533913,5
+shanyoyo,10533913,5
+lovelyle,10533913,5
+1617367,10533913,5
+66585349,10533913,4
+6910069,10533913,3
+61569566,10533913,5
+saaaaaaa,10533913,4
+dnarna_vicky,10533913,-1
+jingjingmao,10533913,4
+ejing,10533913,4
+34145664,10533913,5
+75344428,10533913,5
+50118479,10533913,3
+foreversylvia,10533913,5
+2544651,10533913,4
+46714118,10533913,5
+47054813,10533913,5
+jouk,10533913,4
+49892383,10533913,5
+irisyours,10533913,4
+miemiefever,10533913,4
+102747303,10533913,2
+zhou33,10533913,5
+54713128,10533913,5
+103124319,10533913,5
+4404766,10533913,4
+80914640,10533913,5
+74801562,10533913,5
+83949510,10533913,5
+chloecin,10533913,4
+55864380,10533913,-1
+2322487,10533913,3
+2934232,10533913,4
+Alejandro0929,10533913,5
+68906822,10533913,3
+Linkinport,10533913,5
+magic_kid,10533913,5
+Cheney__,10533913,4
+121721693,10533913,5
+1346719,10533913,4
+KatoShigeaki,10533913,4
+dyq930211,10533913,4
+gobbychan,10533913,5
+2233142,10533913,3
+laguna,10533913,4
+Gaowill,10533913,5
+Ada_quan,10533913,5
+woshizengjiujiu,10533913,4
+PriscillaLSH,10533913,5
+51664645,10533913,5
+tttif,10533913,4
+joanecho,10533913,5
+65933344,10533913,4
+1239061,10533913,5
+1633981,10533913,5
+3442167,10533913,4
+nolike,10533913,4
+53650868,10533913,4
+Sapphire7011,10533913,5
+arrojwa,10533913,5
+115128718,10533913,3
+55442751,10533913,4
+dengxian123,10533913,5
+artofloving,10533913,4
+71002924,10533913,5
+tessss,10533913,5
+hannat,10533913,4
+yi_yang,10533913,4
+31713107,10533913,5
+lillianxiong,10533913,3
+45833897,10533913,4
+4345264,10533913,3
+yixuananana,10533913,5
+blindye,10533913,5
+froggie,10533913,5
+56270845,10533913,4
+75188314,10533913,5
+74851993,10533913,5
+52540412,10533913,3
+jx0517,10533913,5
+lizihevip,10533913,3
+royin.chao,10533913,4
+3802312,10533913,-1
+45182883,10533913,4
+nicoleparis,10533913,5
+josiezs,10533913,3
+He.Loves.QKL,10533913,4
+48748065,10533913,5
+49691795,10533913,-1
+truth3204,10533913,4
+clean12,10533913,5
+53492499,10533913,5
+mythmok,10533913,3
+67644854,10533913,4
+24001036,10533913,3
+zypq,10533913,5
+73696070,10533913,4
+69277440,10533913,5
+yoteamomucho,10533913,5
+inawuyou,10533913,4
+68080412,10533913,5
+nadjacho,10533913,4
+9386243,10533913,5
+54336845,10533913,5
+whisaly,10533913,2
+82435721,10533913,5
+mollukax3,10533913,5
+Chliztian,10533913,2
+serene_sh,10533913,5
+101464428,10533913,5
+4624578,10533913,5
+besify,10533913,5
+49871021,10533913,5
+15456074,10533913,4
+71700227,10533913,4
+a_Yuan,10533913,5
+81773475,10533913,4
+xiao__F,10533913,4
+1840162,10533913,4
+51992445,10533913,4
+68608640,10533913,3
+Woody58,10533913,4
+shutupfreud,10533913,5
+48941780,10533913,4
+xcser,10533913,5
+tianchuan,10533913,5
+catmints,10533913,5
+erinnnire,10533913,5
+juliannie,10533913,-1
+15183757,10533913,5
+44725365,10533913,4
+88162927,10533913,3
+donodono,10533913,5
+47777105,10533913,3
+a55h01e,10533913,3
+51440227,10533913,4
+1038194,10533913,4
+cjlchaos,10533913,5
+71381094,10533913,5
+47587724,10533913,4
+4327168,10533913,5
+fancyflo,10533913,5
+53589909,10533913,5
+63188330,10533913,5
+ravencx,10533913,5
+chanstinkai,10533913,4
+28867276,10533913,4
+74154243,10533913,3
+49900100,10533913,-1
+1333942,10533913,3
+ChenMelon,10533913,5
+aimiludemao,10533913,5
+71127427,10533913,5
+52962046,10533913,3
+122223735,10533913,5
+love-xu,10533913,3
+dancylon,10533913,5
+87590424,10533913,5
+55310845,10533913,5
+102627656,10533913,5
+23725217,10533913,4
+3431847,10533913,5
+119030495,10533913,5
+xwjaney,10533913,4
+57835629,10533913,5
+75475788,10533913,5
+wangmuse,10533913,5
+50151167,10533913,5
+74698401,10533913,5
+sharmpian,10533913,5
+83743070,10533913,-1
+1582961,10533913,5
+82238487,10533913,3
+34558419,10533913,5
+62827558,10533913,4
+vsunan,10533913,4
+chenxizi,10533913,5
+47728571,10533913,3
+fifa10,10533913,5
+132972754,10533913,5
+lxc550207638,10533913,3
+yummy0526,10533913,4
+nancyasuka,10533913,4
+53058637,10533913,5
+53058637,10533913,5
+127649705,10533913,5
+greenflowersea,10533913,5
+miluoya,10533913,5
+KooK-Psycho,10533913,5
+yolkcheung,10533913,5
+54443476,10533913,5
+Chaldean,10533913,5
+62615176,10533913,4
+60055945,10533913,5
+15263432,10533913,5
+2180985,10533913,5
+48511248,10533913,5
+kickyourleg,10533913,4
+46056630,10533913,5
+juliazhuli,10533913,4
+58106727,10533913,5
+58085348,10533913,5
+41923387,10533913,3
+127292563,10533913,-1
+TaylorAlisonSwi,10533913,5
+53997661,10533913,3
+79096888,10533913,5
+sevengin,10533913,5
+57686562,10533913,5
+kimyeol,10533913,3
+2096340,10533913,4
+yukicl,10533913,4
+ooVickYoo,10533913,5
+115351276,10533913,5
+suwa,10533913,5
+46861379,10533913,4
+reneelv,10533913,5
+lovelyyuchen,10533913,5
+darkscorpion,10533913,4
+chubbyduke,10533913,5
+67878115,10533913,5
+zjy1222,10533913,4
+hanyiran,10533913,4
+adamyoung1518,10533913,5
+44549010,10533913,5
+mia777,10533913,3
+elsieb,10533913,3
+wineyre,10533913,5
+yamaki,10533913,5
+49578244,10533913,4
+inprogress,10533913,5
+53584260,10533913,4
+huahuos,10533913,5
+ericdo,10533913,5
+56013791,10533913,4
+46192114,10533913,4
+62915355,10533913,5
+shipan,10533913,4
+4842786,10533913,4
+yzk2237084,10533913,5
+57436180,10533913,3
+2922610,10533913,4
+bluetides,10533913,3
+audreyc,10533913,5
+92032476,10533913,5
+RBT229ToT,10533913,5
+xiaojirou007,10533913,5
+bigev5,10533913,3
+31306878,10533913,5
+52101882,10533913,5
+dairytea,10533913,4
+58822324,10533913,5
+43911195,10533913,3
+88951785,10533913,4
+63458360,10533913,4
+66448083,10533913,4
+bessie10105101,10533913,4
+ameliewang,10533913,5
+54197858,10533913,5
+hualalahaha,10533913,5
+70214878,10533913,4
+47760602,10533913,5
+52051492,10533913,5
+49893680,10533913,3
+59107827,10533913,5
+130856040,10533913,4
+mangomangotree,10533913,4
+Rebecca_618,10533913,2
+45748052,10533913,5
+wangleku0310,10533913,-1
+58881939,10533913,3
+kanghao413,10533913,5
+65021672,10533913,5
+guosiyao,10533913,4
+62971762,10533913,4
+36406989,10533913,5
+a-Joel,10533913,3
+32722540,10533913,4
+castlefloating,10533913,5
+spottedowl,10533913,4
+53134091,10533913,-1
+cachecache,10533913,4
+40326661,10533913,5
+75842929,10533913,5
+31951077,10533913,4
+1543139,10533913,5
+ste0815,10533913,5
+hilotus,10533913,3
+jennieyoung,10533913,5
+3617275,10533913,4
+36321216,10533913,4
+Iris0107,10533913,5
+14406150,10533913,5
+55819818,10533913,4
+60112538,10533913,5
+76681041,10533913,5
+46754344,10533913,5
+2148773,10533913,3
+57084684,10533913,4
+36260283,10533913,4
+iamtough,10533913,4
+1710549,10533913,5
+1320248,10533913,4
+2085950,10533913,-1
+2085950,10533913,-1
+59372484,10533913,5
+4021192,10533913,5
+2401872,10533913,4
+53181549,10533913,5
+2404315,10533913,5
+yuexiaokan,10533913,-1
+92988194,10533913,5
+58036895,10533913,5
+52739316,10533913,3
+53031430,10533913,5
+53886643,10533913,4
+zhuyantong,10533913,5
+52800930,10533913,5
+80752202,10533913,5
+cheese47,10533913,4
+59621398,10533913,4
+50841520,10533913,4
+46287830,10533913,-1
+fairyhui521,10533913,5
+fairyhui521,10533913,5
+TOMATE,10533913,5
+2073049,10533913,4
+60760442,10533913,4
+jiyingsysu,10533913,5
+wendyhsu,10533913,4
+49219935,10533913,5
+seven_beginning,10533913,5
+nianmin,10533913,3
+Ciamy,10533913,4
+53173969,10533913,4
+Liangkui,10533913,5
+a.lay,10533913,5
+66234722,10533913,5
+27396956,10533913,5
+2190556,10533913,5
+62710638,10533913,5
+45448846,10533913,5
+49558005,10533913,4
+noioso,10533913,5
+39888720,10533913,5
+SANDMANECW,10533913,3
+Kiwi1126,10533913,5
+misamore,10533913,5
+achrista,10533913,4
+lydiaxanthe,10533913,5
+1975440,10533913,3
+cmmmmmm,10533913,5
+1284677,10533913,5
+caihongxiguamei,10533913,5
+star027,10533913,2
+132208597,10533913,4
+71644727,10533913,4
+40296913,10533913,5
+hugowai,10533913,5
+75169318,10533913,4
+81175608,10533913,5
+55540473,10533913,5
+51781734,10533913,4
+cocageng,10533913,3
+47730892,10533913,4
+43164701,10533913,4
+42421580,10533913,5
+66441737,10533913,5
+minqi,10533913,4
+3212628,10533913,5
+54049800,10533913,3
+15565943,10533913,5
+54187301,10533913,5
+notexistatall,10533913,5
+63672153,10533913,5
+78747224,10533913,3
+consequencer,10533913,4
+tennenpa-ma,10533913,5
+tiffany33,10533913,4
+zking1,10533913,5
+rouroudong,10533913,4
+126831966,10533913,5
+42748490,10533913,5
+64060084,10533913,5
+revelation,10533913,5
+61316156,10533913,5
+16301105,10533913,5
+49907411,10533913,3
+xcoral,10533913,4
+89451365,10533913,4
+74715074,10533913,5
+128001412,10533913,5
+47151726,10533913,4
+Celethy,10533913,5
+JusticeSunny,10533913,5
+1026510,10533913,5
+LEEYanwen,10533913,5
+woruili,10533913,4
+2275412,10533913,5
+21407911,10533913,5
+xiaoshuyi123,10533913,4
+2879898,10533913,4
+132126693,10533913,4
+58518290,10533913,5
+2756490,10533913,4
+47547767,10533913,4
+nolita527,10533913,5
+62206199,10533913,5
+61715617,10533913,5
+57965497,10533913,5
+bellaG,10533913,4
+62106919,10533913,5
+67088127,10533913,5
+xin77xing,10533913,4
+66663254,10533913,4
+56164676,10533913,5
+81528436,10533913,4
+zp090915,10533913,5
+3932603,10533913,4
+47832666,10533913,5
+63873567,10533913,5
+wang346591260,10533913,5
+cinkie,10533913,5
+2515260,10533913,5
+L-U-N-A,10533913,5
+13753094,10533913,3
+3864613,10533913,5
+12232981,10533913,5
+christine_lee,10533913,5
+chuchucarol,10533913,4
+mjpx0510,10533913,5
+67503021,10533913,5
+freakbody,10533913,4
+gaoyuhan,10533913,4
+yycat,10533913,5
+1535538,10533913,3
+zhangyunji,10533913,5
+29341299,10533913,5
+jackxyc,10533913,5
+92423237,10533913,4
+mustundead,10533913,4
+qdy67oky57,10533913,5
+nanday,10533913,4
+yonita_yang,10533913,5
+RossoneriViola,10533913,4
+50112413,10533913,4
+catherinecheung,10533913,5
+kissclover,10533913,3
+kekeximi,10533913,4
+35595189,10533913,4
+52001200,10533913,5
+73095977,10533913,5
+bifangxiaoC,10533913,2
+39463332,10533913,4
+4391247,10533913,4
+1358167,10533913,4
+scarling,10533913,4
+sisi36,10533913,4
+iceout,10533913,5
+61297365,10533913,1
+fansherlocked,10533913,5
+62960950,10533913,4
+91432391,10533913,5
+linxiaoleng,10533913,4
+linxiaoleng,10533913,4
+57602836,10533913,5
+58704040,10533913,5
+66993627,10533913,5
+richer725,10533913,3
+7400552,10533913,5
+61184196,10533913,4
+iisakura,10533913,4
+64981286,10533913,4
+40446795,10533913,5
+131983908,10533913,5
+xiaochanzi,10533913,3
+53288868,10533913,-1
+64173169,10533913,5
+50300036,10533913,5
+47725759,10533913,5
+66997852,10533913,5
+3174793,10533913,5
+40760358,10533913,4
+43648335,10533913,5
+102221538,10533913,5
+iamswan,10533913,5
+55480143,10533913,4
+53362229,10533913,5
+19734042,10533913,4
+4368925,10533913,4
+4284841,10533913,5
+IrishRouge,10533913,5
+99340754,10533913,4
+ann_justory,10533913,4
+xxhhcc,10533913,4
+huangsiqi21,10533913,4
+122756916,10533913,5
+122110836,10533913,5
+2309931,10533913,5
+1383301,10533913,3
+2097252,10533913,-1
+54631466,10533913,5
+125226021,10533913,5
+yyumen,10533913,5
+121148510,10533913,5
+echodtatu,10533913,5
+63121383,10533913,4
+44633339,10533913,4
+vanessa_zeng,10533913,3
+3671869,10533913,3
+80121316,10533913,4
+47514336,10533913,5
+41573245,10533913,5
+124514675,10533913,5
+poet540,10533913,5
+4057118,10533913,4
+84542712,10533913,5
+YiquigZhao,10533913,4
+chendian,10533913,5
+4420483,10533913,5
+Rennay,10533913,5
+Bioart,10533913,5
+63371846,10533913,4
+DJeliza,10533913,4
+zei,10533913,3
+73132535,10533913,4
+2149921,10533913,4
+david_xmz,10533913,5
+hawaiii,10533913,5
+124010047,10533913,4
+paparika,10533913,5
+60338101,10533913,4
+121817489,10533913,4
+50290697,10533913,5
+1291946,10533913,5
+61246082,10533913,5
+89528523,10533913,5
+8402557,10533913,3
+40735647,10533913,3
+fenxinyu,10533913,3
+61735676,10533913,5
+40544595,10533913,5
+4068403,10533913,5
+64595804,10533913,5
+24874842,10533913,4
+43752216,10533913,4
+63458976,10533913,5
+43413298,10533913,4
+50558551,10533913,4
+celiaoutsider,10533913,5
+63720554,10533913,5
+Diane_myl,10533913,4
+46168021,10533913,5
+spaceli,10533913,5
+vkinoko,10533913,4
+60667221,10533913,5
+47055120,10533913,5
+44851952,10533913,5
+Feibie,10533913,5
+mlll,10533913,5
+36008103,10533913,4
+47496594,10533913,4
+miracle1025,10533913,5
+caocaoa,10533913,3
+caocaoa,10533913,3
+xiaoweigang,10533913,4
+kuoxen,10533913,5
+43662887,10533913,5
+Jonathan_Sea,10533913,5
+53287418,10533913,3
+72030393,10533913,4
+duc_k,10533913,5
+102862602,10533913,4
+42263664,10533913,5
+29211262,10533913,4
+sambolero,10533913,4
+Gmosquito,10533913,5
+2206866,10533913,5
+2420853,10533913,4
+liuyushu,10533913,3
+misswell,10533913,5
+shaodong,10533913,5
+tezuka15,10533913,4
+65925279,10533913,5
+50212998,10533913,5
+simonyao,10533913,2
+AWESOME0813,10533913,4
+SebastianeTsui,10533913,5
+afreetsophia,10533913,4
+75196233,10533913,5
+53496104,10533913,2
+66203352,10533913,4
+Rosier,10533913,4
+Sun1205,10533913,5
+120537895,10533913,2
+48254437,10533913,5
+namik_ercan,10533913,4
+34600175,10533913,4
+60046415,10533913,2
+99924032,10533913,5
+104600854,10533913,5
+120500737,10533913,5
+85643943,10533913,5
+catyue,10533913,5
+linnjil,10533913,5
+Jewon,10533913,4
+132633082,10533913,5
+93884659,10533913,3
+yfqc24pippo,10533913,3
+iloveqiong,10533913,4
+55325883,10533913,4
+83100044,10533913,3
+3856901,10533913,5
+57459077,10533913,5
+45648843,10533913,4
+42903485,10533913,5
+49161384,10533913,4
+69252247,10533913,5
+4720392,10533913,5
+68775691,10533913,4
+54352313,10533913,4
+lixiaoshall,10533913,4
+anna012,10533913,4
+64886603,10533913,5
+54160566,10533913,5
+daijun1988,10533913,5
+96856511,10533913,4
+jasper1312,10533913,5
+2402223,10533913,4
+lq9633,10533913,4
+dianxuechaoren,10533913,5
+58012559,10533913,5
+3826970,10533913,-1
+2225196,10533913,5
+tinasum,10533913,4
+wxydx00,10533913,3
+gretchenshu,10533913,5
+84049230,10533913,4
+80722034,10533913,5
+hhriver,10533913,3
+130384856,10533913,4
+Cincky.XiN,10533913,5
+hay12ley,10533913,-1
+toby_7,10533913,5
+67763944,10533913,5
+caoxuanjun,10533913,5
+walkingtime,10533913,5
+132592664,10533913,4
+xiaoyememories,10533913,5
+66550666,10533913,5
+50477541,10533913,4
+56181037,10533913,5
+58403764,10533913,3
+112285998,10533913,4
+123689430,10533913,-1
+125148047,10533913,3
+80346808,10533913,5
+61060923,10533913,5
+48163421,10533913,4
+ling_chen,10533913,-1
+68209023,10533913,4
+65466495,10533913,5
+50636566,10533913,4
+Eunyul,10533913,5
+131803552,10533913,5
+56143225,10533913,5
+132224795,10533913,5
+3129085,10533913,4
+30034362,10533913,5
+yuyutuo,10533913,5
+93294162,10533913,5
+atti0,10533913,5
+88199581,10533913,5
+49270565,10533913,3
+4687562,10533913,5
+127161571,10533913,5
+fuxiu,10533913,4
+83188361,10533913,4
+eternalblue,10533913,5
+123114574,10533913,5
+10587913,10533913,5
+ksp,10533913,5
+3473845,10533913,3
+63280608,10533913,4
+sosljw123,10533913,5
+1420335,10533913,5
+3351778,10533913,5
+31885459,10533913,5
+csprite,10533913,4
+1747503,10533913,4
+mocnabuodouhs,10533913,4
+45431775,10533913,5
+kaolla,10533913,4
+given0709,10533913,5
+33657845,10533913,5
+lujin,10533913,-1
+kalahere,10533913,4
+M7gnon,10533913,5
+56783583,10533913,5
+amay1023,10533913,4
+55990119,10533913,5
+57313770,10533913,5
+fallwater,10533913,5
+siukel,10533913,5
+76290826,10533913,5
+lemmoy,10533913,5
+71976284,10533913,4
+winkyia,10533913,3
+48357134,10533913,5
+1920062,10533913,5
+13587445,10533913,5
+1968389,10533913,5
+sherryvi,10533913,5
+totozhang,10533913,5
+70804320,10533913,5
+63511913,10533913,4
+126152053,10533913,4
+mirrorjing,10533913,4
+Achocolate,10533913,5
+akinotsubasa,10533913,4
+61384734,10533913,4
+snokin,10533913,5
+with.stranger,10533913,5
+aptx1010,10533913,4
+aptx1010,10533913,4
+64461922,10533913,3
+hjn21111,10533913,5
+ILWTFT,10533913,4
+Showga,10533913,5
+shunjun,10533913,4
+80032869,10533913,4
+70455730,10533913,4
+52112521,10533913,4
+73958247,10533913,4
+minus16,10533913,5
+tzhou730,10533913,5
+mumuki,10533913,5
+53453211,10533913,3
+48740274,10533913,5
+ice41322,10533913,5
+morain1010,10533913,5
+105451131,10533913,5
+heyi705,10533913,-1
+an_girl,10533913,4
+33911061,10533913,5
+amberose,10533913,5
+michelle88411,10533913,5
+Phinie,10533913,5
+56839601,10533913,5
+30641768,10533913,5
+45586124,10533913,3
+smiduo,10533913,-1
+kid131,10533913,5
+123783477,10533913,4
+Mflower,10533913,5
+57017329,10533913,5
+laxiaomian,10533913,5
+84983123,10533913,5
+1891993,10533913,4
+kiddo0930,10533913,5
+4307749,10533913,4
+51369912,10533913,4
+q1qiqiqi,10533913,4
+2615897,10533913,4
+120427833,10533913,5
+bubblelam,10533913,5
+angusfox,10533913,5
+kimmo,10533913,4
+jinweishen,10533913,5
+cecideng,10533913,4
+2713839,10533913,5
+66945260,10533913,5
+45399130,10533913,5
+2147839,10533913,4
+3795782,10533913,3
+queenaj,10533913,5
+55545848,10533913,5
+77497039,10533913,5
+sahsiao,10533913,4
+49567226,10533913,5
+wycl0913,10533913,5
+lamber,10533913,5
+orchid926,10533913,5
+SophiaCGuo,10533913,4
+glorymanutd,10533913,5
+97416681,10533913,4
+43455276,10533913,5
+shih,10533913,-1
+47852349,10533913,5
+thisworld2night,10533913,5
+29844884,10533913,4
+71421238,10533913,5
+4069363,10533913,4
+69404019,10533913,5
+starrynightforu,10533913,5
+tanblin,10533913,5
+nekozamurai,10533913,5
+sophie1900,10533913,5
+54458358,10533913,5
+63461045,10533913,4
+73247503,10533913,5
+92409264,10533913,5
+80775732,10533913,5
+69424948,10533913,5
+2472036,10533913,5
+69464561,10533913,5
+60514515,10533913,5
+Ancore,10533913,-1
+DAI_YELIE,10533913,5
+kidadida,10533913,4
+49848992,10533913,4
+60237257,10533913,5
+45351288,10533913,4
+wy5151,10533913,4
+9091191,10533913,3
+59781288,10533913,5
+dawnyan,10533913,5
+69144722,10533913,4
+52671677,10533913,4
+foreveraegeanse,10533913,5
+130851910,10533913,5
+samadhi,10533913,4
+33043177,10533913,5
+40237768,10533913,5
+sophiasue,10533913,2
+mickeyshufe,10533913,5
+49645185,10533913,-1
+lucksam,10533913,4
+shirleychien,10533913,4
+foreverleaves,10533913,-1
+icwk,10533913,4
+122200445,10533913,5
+29818764,10533913,5
+50718671,10533913,5
+73587524,10533913,5
+37216410,10533913,3
+pi3_14159265358,10533913,4
+67678601,10533913,5
+jix,10533913,5
+46737279,10533913,4
+61935443,10533913,4
+ooohhh,10533913,4
+10208605,10533913,5
+102916412,10533913,5
+102916412,10533913,5
+xixixiaoye,10533913,5
+ntchoujerry,10533913,4
+shadow_break,10533913,4
+3333349,10533913,5
+45345873,10533913,4
+1919476,10533913,5
+55320320,10533913,5
+41520378,10533913,4
+mr81,10533913,4
+Lucky_zx,10533913,5
+apieceofpaper,10533913,4
+jadexyy,10533913,4
+hmmux,10533913,5
+55338407,10533913,4
+49237528,10533913,4
+yamap9thApr.,10533913,5
+39959377,10533913,4
+slowslowzhang,10533913,4
+68424058,10533913,5
+adododo,10533913,5
+50235296,10533913,4
+izume,10533913,5
+geontn,10533913,5
+25546658,10533913,5
+33410397,10533913,5
+banruoliuli,10533913,5
+sunnykisskins,10533913,5
+anaking,10533913,5
+56431218,10533913,5
+65649890,10533913,5
+3537100,10533913,5
+65607463,10533913,5
+ET-Jac,10533913,5
+130319108,10533913,5
+46430549,10533913,5
+zoethree,10533913,5
+Isa1996,10533913,5
+64471334,10533913,5
+48168437,10533913,5
+city04,10533913,5
+57786267,10533913,4
+34342480,10533913,3
+snowball09,10533913,4
+61332759,10533913,5
+tt1426,10533913,5
+33177940,10533913,5
+dearFreundin,10533913,5
+Google.de,10533913,4
+54497011,10533913,4
+kidaliu,10533913,4
+Lovelesssssss,10533913,5
+48043918,10533913,5
+4511323,10533913,3
+103487988,10533913,4
+Bloodleee,10533913,5
+49380138,10533913,4
+87972286,10533913,4
+VRoss,10533913,5
+99550697,10533913,5
+windy_y,10533913,4
+54607623,10533913,4
+CNatural,10533913,5
+2039097,10533913,5
+racheal0711,10533913,-1
+Candy_Can,10533913,5
+79091050,10533913,3
+medusa707,10533913,5
+52175149,10533913,3
+foreverdannie,10533913,3
+3112824,10533913,4
+Ozu,10533913,5
+4270149,10533913,2
+JOCK,10533913,5
+xiaobei1116,10533913,4
+pzaiqueen,10533913,5
+126828053,10533913,4
+olovc,10533913,4
+coffeehao,10533913,5
+secha,10533913,5
+secha,10533913,5
+imlove,10533913,4
+61278455,10533913,5
+1361853,10533913,5
+4534557,10533913,4
+lokka,10533913,5
+81192470,10533913,5
+47593124,10533913,4
+8507013,10533913,5
+54166163,10533913,3
+lanodg,10533913,4
+asen_shi,10533913,5
+3202447,10533913,5
+mints739,10533913,5
+hellosuperfish,10533913,4
+95749827,10533913,4
+koalalalalala,10533913,5
+yanala,10533913,4
+Vanessaisajoke,10533913,4
+61511872,10533913,3
+AllanBen,10533913,4
+crscholes,10533913,4
+youngtoo,10533913,3
+69475039,10533913,4
+spring-.-,10533913,5
+90662596,10533913,5
+51329457,10533913,5
+128675043,10533913,4
+81742698,10533913,5
+71038565,10533913,5
+46014273,10533913,3
+132170962,10533913,4
+66528852,10533913,5
+124833218,10533913,-1
+lisichen,10533913,3
+minty-val,10533913,5
+vivianlovesun,10533913,5
+33396944,10533913,5
+emilywang,10533913,5
+48044328,10533913,4
+passerby2,10533913,5
+35929918,10533913,4
+95238880,10533913,5
+2850261,10533913,5
+Vitus16,10533913,5
+rocksun,10533913,5
+hayney,10533913,5
+claraye,10533913,5
+A674863256,10533913,5
+ryancoder,10533913,5
+pillbug,10533913,5
+lygirl989193,10533913,4
+42292957,10533913,4
+takacmon,10533913,5
+102408048,10533913,3
+Bocahontas,10533913,5
+53192672,10533913,4
+caicaihuang,10533913,5
+62222417,10533913,5
+BlueePrins,10533913,3
+55769747,10533913,4
+zorrozj,10533913,5
+59651696,10533913,4
+126849700,10533913,4
+3205834,10533913,4
+49673011,10533913,5
+3051483,10533913,5
+74390608,10533913,5
+3248812,10533913,5
+JNGL,10533913,-1
+46163023,10533913,-1
+44387904,10533913,3
+sunny1992,10533913,5
+3858718,10533913,3
+68730794,10533913,5
+taurusdgcr,10533913,3
+51393445,10533913,4
+MaccyLiu,10533913,4
+83215592,10533913,5
+jaycee103,10533913,4
+49181189,10533913,5
+harpsichord7,10533913,5
+jammy48,10533913,4
+67695770,10533913,5
+lleiou,10533913,5
+58840542,10533913,4
+jszh,10533913,5
+70119569,10533913,5
+58696214,10533913,5
+45642222,10533913,5
+22625157,10533913,3
+77790120,10533913,5
+2610938,10533913,4
+97185474,10533913,5
+bearnne,10533913,5
+2845890,10533913,4
+jinbu,10533913,4
+74814512,10533913,5
+wanyaozhe,10533913,5
+niuchen0288,10533913,5
+mamamafalda,10533913,5
+45641492,10533913,5
+69529988,10533913,3
+66475895,10533913,4
+57745088,10533913,5
+90688581,10533913,5
+yeahzisue,10533913,5
+tangmm,10533913,4
+68092386,10533913,5
+hypochondria,10533913,5
+ibluepurple,10533913,5
+63595507,10533913,5
+63766051,10533913,5
+3576339,10533913,-1
+cynthia1155,10533913,5
+1673897,10533913,-1
+amylmf,10533913,5
+49923430,10533913,4
+72560129,10533913,5
+lulush,10533913,4
+54272292,10533913,4
+qiaowu2,10533913,5
+jiatianyu1,10533913,4
+43677962,10533913,5
+32117558,10533913,-1
+lutaozi,10533913,5
+lnmeng_9823,10533913,5
+FightclubTTK,10533913,5
+lucifer-.,10533913,5
+132356139,10533913,5
+32334286,10533913,5
+58801678,10533913,5
+ZiZhan-Aaron,10533913,5
+DreamOnBuddy,10533913,3
+4776678,10533913,5
+finalrisk,10533913,5
+cca2222223,10533913,5
+joecharade,10533913,5
+perfect14,10533913,4
+stupidoor2floor,10533913,4
+luerdelphic,10533913,5
+113050393,10533913,5
+samoyed0310,10533913,5
+renyouy,10533913,5
+BeDying,10533913,4
+nocturnelee,10533913,5
+41949292,10533913,5
+49730004,10533913,5
+29613060,10533913,3
+shiningspring,10533913,5
+damnm,10533913,3
+43783147,10533913,5
+umeboshi,10533913,4
+47529878,10533913,5
+4799920,10533913,5
+51953999,10533913,5
+53679520,10533913,5
+Wsuansuan,10533913,5
+70291149,10533913,5
+35367949,10533913,3
+79108534,10533913,3
+77216393,10533913,5
+beatrice_bei,10533913,4
+92155502,10533913,5
+64164384,10533913,4
+aftiancai,10533913,5
+44579499,10533913,5
+62182093,10533913,5
+vividtime,10533913,4
+62842401,10533913,5
+zoeyi,10533913,4
+130154428,10533913,5
+jinjingjing,10533913,4
+walkinginthesun,10533913,4
+49718559,10533913,4
+59099811,10533913,3
+Muha,10533913,4
+61343947,10533913,5
+44879738,10533913,5
+TrueBit,10533913,5
+1077635,10533913,5
+55436217,10533913,4
+61216437,10533913,4
+2092765,10533913,4
+126340291,10533913,3
+miaoxiao123,10533913,5
+103583567,10533913,4
+sosxisang,10533913,5
+70475698,10533913,4
+56377011,10533913,5
+62701121,10533913,5
+1576826,10533913,4
+4573696,10533913,5
+Francisway,10533913,5
+2019069,10533913,5
+consheep,10533913,4
+xixizxl,10533913,5
+lylayh,10533913,3
+67591050,10533913,5
+XIAOTUTONG,10533913,5
+46264744,10533913,5
+andyhaveadream,10533913,5
+rabbit_forest,10533913,3
+yycznh0520,10533913,5
+screem2046,10533913,5
+velox,10533913,3
+58630944,10533913,3
+59251112,10533913,4
+68768851,10533913,5
+caiziu,10533913,5
+xilouchen,10533913,5
+27008930,10533913,4
+brainwashed,10533913,5
+XXXXKKKK,10533913,3
+38734787,10533913,4
+baidudotcom,10533913,5
+jasontodd,10533913,5
+38508819,10533913,4
+rednoodles,10533913,4
+1800854,10533913,4
+73644922,10533913,5
+62375548,10533913,2
+38012408,10533913,5
+loooli,10533913,4
+80923059,10533913,4
+2448513,10533913,4
+47874303,10533913,4
+50430721,10533913,5
+52504487,10533913,5
+kkbecca66,10533913,5
+64067029,10533913,5
+godlandskypiea,10533913,5
+34550540,10533913,4
+46158467,10533913,5
+slyLeopard,10533913,5
+50538503,10533913,5
+67398488,10533913,4
+61845685,10533913,5
+xiajing,10533913,5
+vaie,10533913,4
+jennychang,10533913,4
+belyone,10533913,5
+58602323,10533913,4
+lunamu,10533913,4
+sansanzy,10533913,3
+hyper_z,10533913,4
+2700292,10533913,3
+gomorrha,10533913,3
+3312608,10533913,3
+32847832,10533913,4
+iamsyh,10533913,5
+77922789,10533913,5
+dizzyluke,10533913,5
+cristinali,10533913,5
+61105278,10533913,4
+84551349,10533913,4
+xmlovett,10533913,5
+119407405,10533913,4
+1169348,10533913,4
+49836065,10533913,4
+49836065,10533913,4
+107581698,10533913,5
+someoneunknown,10533913,3
+chengjw,10533913,4
+bearwinner,10533913,5
+BethBubbly,10533913,5
+56809529,10533913,5
+liqiyao8931,10533913,4
+rainypie,10533913,5
+64913092,10533913,5
+derek_major,10533913,5
+2275057,10533913,-1
+67729273,10533913,5
+51945032,10533913,3
+samxlu,10533913,5
+qiseguodu,10533913,5
+dylanzh,10533913,5
+honeyzst,10533913,4
+mikimake,10533913,4
+lovets,10533913,4
+49298846,10533913,5
+39408600,10533913,4
+yaluluz,10533913,5
+show06254444,10533913,3
+48231836,10533913,5
+66400312,10533913,5
+Daixi-ru,10533913,5
+sandywhite,10533913,5
+49183240,10533913,5
+3676447,10533913,4
+92399399,10533913,5
+Iamwanghaha,10533913,4
+2352547,10533913,4
+blackboard0215,10533913,3
+49207665,10533913,3
+RAINYF,10533913,3
+4324223,10533913,3
+Morceau,10533913,5
+brucetown,10533913,5
+takahashiharuki,10533913,5
+flexin,10533913,4
+46511566,10533913,5
+ark_Rosie,10533913,4
+2744950,10533913,5
+71712974,10533913,5
+liweiheng,10533913,5
+31755732,10533913,5
+48594787,10533913,3
+becauseofthou,10533913,4
+2438329,10533913,5
+iampamela,10533913,5
+kurikuri,10533913,5
+3619392,10533913,4
+2324627,10533913,5
+hcii1022,10533913,4
+km_mutt,10533913,5
+aspoon,10533913,5
+50144933,10533913,3
+luvlena,10533913,5
+56286419,10533913,5
+1354076,10533913,3
+35769554,10533913,4
+HaoChao,10533913,5
+120313404,10533913,4
+57882288,10533913,4
+92129486,10533913,3
+54479915,10533913,5
+58062803,10533913,5
+54347126,10533913,5
+3484320,10533913,5
+brandnewstart,10533913,4
+swanlunar,10533913,5
+2691573,10533913,5
+52057607,10533913,5
+2140159,10533913,5
+choris,10533913,5
+77765189,10533913,5
+29998862,10533913,5
+6681586,10533913,5
+18607275,10533913,5
+bontemps,10533913,5
+75416768,10533913,4
+4533540,10533913,5
+65578714,10533913,5
+lulu_sheep,10533913,4
+tildali1214,10533913,5
+seoyoungeun,10533913,4
+49074527,10533913,4
+57105566,10533913,5
+2195494,10533913,5
+130338838,10533913,5
+41366816,10533913,3
+52636837,10533913,5
+38426766,10533913,3
+57570871,10533913,5
+44196996,10533913,4
+69116114,10533913,5
+papa1968,10533913,5
+36888094,10533913,4
+4358926,10533913,4
+xuaoling,10533913,5
+38080849,10533913,5
+1121093,10533913,5
+tracytao,10533913,5
+49433442,10533913,5
+A_Sam,10533913,3
+37861913,10533913,5
+fadairongrongtu,10533913,4
+58728195,10533913,5
+cazze,10533913,5
+luzula,10533913,4
+awenawen,10533913,5
+4916602,10533913,4
+28738686,10533913,3
+whereislove,10533913,3
+evalinezhou,10533913,4
+2670240,10533913,5
+tiffanylxc,10533913,5
+36121962,10533913,5
+shinenico,10533913,4
+63022230,10533913,5
+lengyi,10533913,4
+lin2jie,10533913,4
+70285411,10533913,5
+rainbow0815,10533913,3
+49995537,10533913,4
+vaccinated,10533913,5
+jishibo,10533913,4
+nieblalan,10533913,4
+toltolt,10533913,5
+AliceYmz,10533913,5
+3130327,10533913,5
+51879316,10533913,5
+haidaisisi,10533913,-1
+aikki27,10533913,-1
+CTT696,10533913,5
+76101689,10533913,5
+souldestroyin,10533913,5
+sussylee,10533913,5
+weirdoToC,10533913,4
+lulululu,10533913,4
+dragonplanet,10533913,5
+53961104,10533913,3
+ooohhhrrr,10533913,5
+oviedoprince,10533913,5
+forever_val,10533913,5
+58630530,10533913,5
+ponyo1229,10533913,5
+61939090,10533913,5
+luly_xy,10533913,5
+4712419,10533913,5
+racheldb,10533913,5
+fairygarden,10533913,5
+45727227,10533913,5
+WatanabeSumire,10533913,2
+brownieliu,10533913,5
+124632875,10533913,4
+janeythai,10533913,4
+52894891,10533913,5
+aevolution,10533913,-1
+48763298,10533913,3
+he0214,10533913,4
+54506320,10533913,5
+catfood,10533913,5
+LumenisOnejay,10533913,5
+wusequanwei,10533913,5
+63915564,10533913,5
+83662044,10533913,5
+44480779,10533913,5
+80570322,10533913,4
+wendy426,10533913,5
+76364366,10533913,5
+57923940,10533913,3
+Ryan-Z,10533913,4
+80126415,10533913,4
+132194541,10533913,5
+MissFebruary,10533913,5
+panda0402,10533913,5
+1762955,10533913,4
+58708776,10533913,5
+46047111,10533913,4
+55604474,10533913,5
+50581824,10533913,5
+83411107,10533913,5
+32390009,10533913,3
+59139081,10533913,5
+willfd,10533913,3
+29985951,10533913,5
+MOKUZJY,10533913,5
+Tigerag,10533913,4
+red98,10533913,3
+34571461,10533913,4
+puddingqin,10533913,5
+Corrinne,10533913,5
+mabbit,10533913,-1
+34508483,10533913,5
+73122939,10533913,5
+83184870,10533913,3
+duhuitang,10533913,5
+92182742,10533913,5
+iaubry,10533913,5
+SYRR,10533913,5
+lcc328,10533913,4
+35967033,10533913,5
+52944852,10533913,5
+sweeroty,10533913,4
+44676967,10533913,5
+lena0517,10533913,4
+66717642,10533913,5
+sunnianyu,10533913,4
+lintianjiao,10533913,-1
+82643561,10533913,5
+128389549,10533913,5
+3274950,10533913,-1
+mophia,10533913,4
+65014224,10533913,5
+53942259,10533913,3
+29847715,10533913,4
+130496028,10533913,3
+hengacheung,10533913,5
+PSYmonkey,10533913,4
+46973538,10533913,5
+36905457,10533913,5
+33042240,10533913,5
+2230395,10533913,4
+missvivid,10533913,5
+Aaronyy,10533913,4
+4256233,10533913,4
+remixchao,10533913,3
+55549387,10533913,5
+1001637,10533913,5
+XwLKellyShieh,10533913,4
+119631821,10533913,5
+58785462,10533913,5
+51416132,10533913,4
+114172344,10533913,5
+ravinenoravine,10533913,5
+66358226,10533913,5
+33364584,10533913,-1
+hellojuly,10533913,4
+121365508,10533913,5
+tytony890115,10533913,5
+61119503,10533913,3
+longzuxin,10533913,5
+48773692,10533913,5
+63477660,10533913,4
+61428660,10533913,-1
+92580665,10533913,4
+smilehuhu,10533913,5
+xxxdorisxxx,10533913,4
+31407826,10533913,5
+3280103,10533913,5
+2304029,10533913,-1
+PC_Mancola,10533913,4
+16959294,10533913,4
+58364159,10533913,5
+mikanical,10533913,4
+shjolin,10533913,4
+52287609,10533913,5
+Plutoyw,10533913,4
+51256449,10533913,5
+momo077,10533913,5
+32465562,10533913,5
+wongbur,10533913,5
+aspirin-m,10533913,4
+50410126,10533913,5
+wutianxiang,10533913,5
+92316334,10533913,5
+4154813,10533913,5
+3025123,10533913,5
+jeremy-won,10533913,5
+qinluowei,10533913,4
+zest,10533913,5
+116044095,10533913,4
+35519663,10533913,5
+Unibong,10533913,3
+46815070,10533913,5
+130138879,10533913,5
+75621811,10533913,4
+50560714,10533913,5
+giantguo,10533913,5
+copenlee,10533913,5
+moyia,10533913,4
+imking666,10533913,5
+74069940,10533913,5
+49356152,10533913,5
+42136243,10533913,5
+electric_chao,10533913,5
+69674172,10533913,3
+jkk0620,10533913,5
+47022632,10533913,4
+reneew,10533913,4
+4293968,10533913,5
+60435322,10533913,5
+jinying,10533913,4
+felixfelicis,10533913,5
+49498523,10533913,3
+lesleyxu,10533913,5
+48484027,10533913,5
+linlinzoo,10533913,3
+lovea_ten,10533913,5
+49190112,10533913,4
+37424688,10533913,4
+glayo0,10533913,5
+34186094,10533913,4
+ninalili,10533913,-1
+3677825,10533913,4
+29988044,10533913,5
+59733385,10533913,5
+54769561,10533913,4
+1897616,10533913,3
+131807022,10533913,5
+13766549,10533913,5
+34623045,10533913,4
+avisj,10533913,5
+31673779,10533913,4
+checy,10533913,4
+85002998,10533913,5
+vigshane,10533913,4
+49069432,10533913,4
+71911927,10533913,5
+Sherlock.B,10533913,5
+manalindros,10533913,5
+28869490,10533913,4
+62178164,10533913,4
+doreending,10533913,5
+34476599,10533913,-1
+shooting_woo,10533913,4
+1237270,10533913,5
+14523458,10533913,5
+Curry_Egg,10533913,5
+56072564,10533913,5
+Sheeplady,10533913,4
+Helene.H,10533913,5
+xielizhi,10533913,5
+69164185,10533913,5
+52835573,10533913,5
+babyxy006,10533913,5
+82481394,10533913,4
+59734711,10533913,5
+119739719,10533913,5
+hlung,10533913,5
+51206699,10533913,5
+genglihui,10533913,5
+47540119,10533913,4
+65372022,10533913,5
+47320573,10533913,5
+hiFlora,10533913,5
+xieyuhan1988,10533913,3
+Vivian77,10533913,5
+60536752,10533913,3
+cxykelly,10533913,5
+94207382,10533913,5
+hearleung,10533913,4
+62019095,10533913,5
+64933961,10533913,4
+101335096,10533913,3
+63413586,10533913,4
+46738902,10533913,5
+14044230,10533913,4
+54365638,10533913,5
+jerryzou,10533913,5
+3489125,10533913,4
+63356616,10533913,5
+89108079,10533913,5
+helianthus249,10533913,5
+moonwater,10533913,4
+2842891,10533913,4
+justsay,10533913,4
+TangJing1229,10533913,5
+54131075,10533913,5
+lizzy813813,10533913,4
+48941785,10533913,4
+CaptBastard,10533913,4
+travelpegion,10533913,5
+aixiaoke,10533913,4
+landcrosser,10533913,4
+unpig,10533913,5
+70535180,10533913,3
+mikeylau,10533913,5
+3982398,10533913,4
+yokooong,10533913,5
+68865370,10533913,5
+the-last-alien,10533913,5
+115092605,10533913,5
+bunny622,10533913,5
+48795051,10533913,3
+FK621,10533913,5
+33175060,10533913,5
+3727771,10533913,5
+49363520,10533913,5
+56534538,10533913,5
+55942870,10533913,5
+xsy2020,10533913,-1
+lanben,10533913,5
+70321611,10533913,5
+meijiangshi,10533913,4
+cherub235,10533913,4
+7921485,10533913,5
+34722246,10533913,4
+bigway,10533913,4
+liudiudiu,10533913,3
+xiangsijing,10533913,5
+93180377,10533913,3
+47713342,10533913,5
+50397398,10533913,5
+takaramono,10533913,5
+kidpt,10533913,4
+49002577,10533913,5
+tina0330,10533913,5
+70298027,10533913,4
+sunny_S,10533913,5
+aayccm,10533913,5
+Chris.Wu,10533913,5
+procxu,10533913,5
+vitrine,10533913,5
+49103701,10533913,5
+y.u,10533913,5
+40559165,10533913,5
+jessie1456,10533913,5
+jessie1456,10533913,5
+3305440,10533913,-1
+3254520,10533913,4
+48066975,10533913,5
+joyceamigo,10533913,3
+29988563,10533913,5
+mad_apple,10533913,5
+zhujifan,10533913,4
+66723680,10533913,5
+ami6328007,10533913,5
+73597591,10533913,5
+71547837,10533913,5
+64757557,10533913,5
+52056943,10533913,4
+58956224,10533913,3
+2508743,10533913,4
+57111606,10533913,4
+51583782,10533913,4
+LuciaEvans,10533913,5
+55014846,10533913,5
+oldcandle,10533913,4
+shitgo,10533913,3
+52832980,10533913,4
+summerwang,10533913,5
+pasaxeiro,10533913,-1
+61797915,10533913,4
+73660377,10533913,5
+43328284,10533913,4
+sdkl,10533913,5
+2563929,10533913,4
+38651346,10533913,5
+Lf1387,10533913,4
+lxlkey,10533913,5
+marmar,10533913,5
+1143584,10533913,5
+75007342,10533913,4
+32144547,10533913,5
+luocha,10533913,5
+2911268,10533913,5
+xiaopo,10533913,3
+xiaopo,10533913,3
+1386174,10533913,-1
+49005223,10533913,5
+115927427,10533913,3
+Sparkyue,10533913,5
+80590065,10533913,4
+60303119,10533913,5
+nonowhy,10533913,5
+123232321,10533913,5
+laperseus,10533913,4
+xinxinlyx,10533913,5
+Echo-Z,10533913,5
+77868057,10533913,5
+49902714,10533913,4
+50870712,10533913,5
+55503026,10533913,3
+3284948,10533913,5
+63600934,10533913,5
+53060922,10533913,5
+77065352,10533913,5
+9411327,10533913,5
+119683375,10533913,5
+poly_mind,10533913,5
+73836108,10533913,5
+51156864,10533913,5
+fooox,10533913,5
+49836781,10533913,-1
+Taurus_Flora,10533913,5
+VeeThao,10533913,5
+Lianyutou,10533913,5
+wmsdaishu,10533913,5
+2384837,10533913,5
+3508861,10533913,3
+vivi-dan19,10533913,5
+2348564,10533913,5
+clareleung,10533913,4
+virlee,10533913,3
+SylviaWang,10533913,5
+90904421,10533913,4
+Tianyangyang,10533913,3
+Tianyangyang,10533913,3
+yeeeeeee,10533913,5
+4207280,10533913,4
+68966981,10533913,5
+mogu_s,10533913,5
+zfz583443214,10533913,5
+70401181,10533913,5
+71896826,10533913,5
+69129498,10533913,5
+34733138,10533913,4
+kiara1988,10533913,5
+30280100,10533913,5
+eternityyuli,10533913,5
+alan_fanfan,10533913,5
+71498553,10533913,5
+3564797,10533913,4
+47729298,10533913,5
+mixmx,10533913,5
+tabaaway,10533913,5
+yoyo1991,10533913,5
+2220298,10533913,5
+yuanyuanshu,10533913,5
+zoe_dabai,10533913,3
+6644981,10533913,2
+yaozhujun,10533913,5
+3634203,10533913,5
+j-u-n-e,10533913,3
+51622953,10533913,5
+MarquisX,10533913,5
+kemoaye,10533913,5
+Star4u,10533913,4
+2701375,10533913,4
+64755839,10533913,3
+alienyoyo,10533913,-1
+jyu314,10533913,4
+imkly,10533913,5
+131838639,10533913,4
+68100167,10533913,4
+1393472,10533913,5
+studyzy,10533913,5
+3588360,10533913,4
+jewelshao,10533913,5
+92133935,10533913,5
+littlecy,10533913,5
+mauvey,10533913,5
+65937174,10533913,5
+49076396,10533913,5
+122604724,10533913,4
+antee,10533913,5
+66057217,10533913,5
+60093239,10533913,3
+55276073,10533913,5
+fayyuki,10533913,5
+winterwilly,10533913,5
+tianhan4,10533913,5
+9274036,10533913,4
+79425986,10533913,5
+taugenichts,10533913,4
+yoocat,10533913,4
+queeenababy,10533913,4
+51445023,10533913,4
+MelodyGrass,10533913,5
+cenalarz,10533913,5
+8802832,10533913,5
+Dream-Sky,10533913,5
+36092326,10533913,3
+65714390,10533913,5
+AudelRom,10533913,5
+49910264,10533913,4
+yangmianyang,10533913,5
+79748428,10533913,1
+82820975,10533913,4
+49074611,10533913,4
+2505517,10533913,5
+35165687,10533913,4
+51867437,10533913,5
+rubyxr1028,10533913,5
+53914537,10533913,4
+63011235,10533913,5
+jianjianer,10533913,5
+61601559,10533913,5
+ino_wyn,10533913,5
+futurejoy,10533913,4
+103559115,10533913,4
+littlekidzouzou,10533913,4
+80161354,10533913,4
+34575902,10533913,5
+Smileysnow,10533913,5
+85665002,10533913,5
+69605901,10533913,4
+ythsxz,10533913,4
+54732272,10533913,4
+52136470,10533913,5
+jaylia,10533913,5
+michellemcy,10533913,5
+48616110,10533913,5
+61398424,10533913,5
+131977440,10533913,5
+zzhang020,10533913,4
+zsy19910228,10533913,5
+49198491,10533913,3
+onlyYH,10533913,4
+32103502,10533913,4
+daisylook,10533913,5
+14791938,10533913,5
+78455570,10533913,5
+jackiejo,10533913,5
+shingo,10533913,5
+50338654,10533913,5
+48673809,10533913,5
+Zukunft,10533913,5
+46429312,10533913,5
+49038928,10533913,4
+3811273,10533913,5
+MarshallPen,10533913,4
+48200221,10533913,5
+1727444,10533913,5
+53623002,10533913,5
+zhengweiran,10533913,5
+2441160,10533913,5
+3857479,10533913,4
+69068312,10533913,5
+58147574,10533913,5
+50976313,10533913,5
+I009,10533913,5
+2980674,10533913,4
+44253861,10533913,5
+50952518,10533913,4
+alcat,10533913,5
+chuleiwu,10533913,3
+mlgbbbb,10533913,5
+Coolslight,10533913,5
+francishan,10533913,5
+silentbean,10533913,5
+RafaelaLO,10533913,5
+58121967,10533913,4
+53794132,10533913,4
+lisa-l,10533913,4
+ninjiushinin,10533913,5
+13038312,10533913,5
+zhuxuwen,10533913,4
+3588917,10533913,5
+2254195,10533913,5
+43473868,10533913,5
+fenglimuren,10533913,5
+57892875,10533913,-1
+11566740,10533913,5
+63307477,10533913,3
+47730670,10533913,5
+YuRAY,10533913,4
+janice5680,10533913,5
+Kallita,10533913,5
+yancm,10533913,5
+kangtadlt,10533913,4
+78753463,10533913,5
+58836160,10533913,4
+37228673,10533913,5
+79874579,10533913,5
+Lycheeciel,10533913,4
+lassiedusky,10533913,4
+3348318,10533913,3
+lyt777,10533913,5
+28856648,10533913,3
+86202635,10533913,5
+50203852,10533913,5
+74855673,10533913,4
+47696979,10533913,5
+Iamapoem,10533913,3
+52464224,10533913,4
+dinkwok,10533913,5
+seancheung,10533913,5
+septimals,10533913,4
+35591333,10533913,5
+1863179,10533913,3
+callmecrazy,10533913,4
+xiaolilili,10533913,3
+52910373,10533913,4
+dreamownlove,10533913,4
+1421869,10533913,-1
+50027948,10533913,5
+nianyike,10533913,5
+74566437,10533913,5
+55705224,10533913,5
+timothy89,10533913,3
+123503132,10533913,3
+34097164,10533913,5
+37335288,10533913,5
+79757878,10533913,4
+1335533,10533913,5
+52046312,10533913,4
+59253003,10533913,5
+35980602,10533913,4
+liangjinyi2013,10533913,5
+63639535,10533913,5
+57127166,10533913,5
+peach99,10533913,4
+102816814,10533913,5
+51257333,10533913,5
+51202453,10533913,5
+48626964,10533913,4
+48626964,10533913,4
+2373395,10533913,5
+joyce19920111,10533913,3
+1447849,10533913,-1
+midochan,10533913,5
+35433628,10533913,5
+45496268,10533913,5
+anthea_me,10533913,5
+aries23,10533913,4
+4663105,10533913,5
+68336768,10533913,5
+lycinspire,10533913,5
+sunsun0222,10533913,5
+102823150,10533913,4
+63017284,10533913,5
+32934464,10533913,5
+em_mushroom,10533913,5
+68020683,10533913,5
+shanshanshanqin,10533913,4
+ckafka,10533913,5
+53339781,10533913,3
+loveirina,10533913,5
+sea-lucky,10533913,4
+47852493,10533913,5
+69454563,10533913,4
+roy325,10533913,5
+56900288,10533913,5
+58434981,10533913,5
+130983822,10533913,3
+hegelian,10533913,4
+41197149,10533913,3
+31698933,10533913,5
+Tiffay-fxy,10533913,4
+doriskojima,10533913,3
+80722428,10533913,3
+75266929,10533913,4
+thisisdaisy,10533913,5
+reeboir,10533913,5
+39369770,10533913,4
+64821728,10533913,4
+3072724,10533913,4
+bobowudi,10533913,4
+81924497,10533913,5
+71864970,10533913,5
+75168640,10533913,5
+87298656,10533913,5
+3122796,10533913,5
+45775524,10533913,5
+66604481,10533913,4
+66718384,10533913,5
+tenkappa,10533913,-1
+88262083,10533913,4
+halouwai,10533913,5
+sofans,10533913,5
+108077404,10533913,5
+yyihgfb,10533913,5
+122077133,10533913,5
+season-ho,10533913,5
+edsionte,10533913,5
+121688414,10533913,5
+iiimo,10533913,5
+53257768,10533913,5
+80689279,10533913,5
+allahking,10533913,5
+68379103,10533913,5
+120545050,10533913,3
+91643745,10533913,5
+92027453,10533913,5
+61282710,10533913,4
+buobo,10533913,4
+LupusZhang,10533913,4
+58728864,10533913,5
+27308826,10533913,5
+janisjanice,10533913,5
+boatsummer,10533913,4
+lovelesswings,10533913,5
+hichai,10533913,4
+silviachan,10533913,5
+maixiaohuang,10533913,5
+ihola,10533913,4
+nimabidozhanyon,10533913,4
+4700776,10533913,4
+52843468,10533913,5
+42550528,10533913,5
+2594549,10533913,-1
+53159276,10533913,3
+dustblue,10533913,5
+59280889,10533913,3
+3609679,10533913,5
+88312845,10533913,5
+4694061,10533913,5
+58110414,10533913,5
+kev1989,10533913,5
+3800028,10533913,3
+34168497,10533913,4
+ytismile,10533913,5
+babyron,10533913,4
+riverbrother,10533913,4
+aellr,10533913,5
+130787417,10533913,5
+40074179,10533913,-1
+56533866,10533913,4
+wasaia,10533913,5
+64004502,10533913,5
+61485977,10533913,5
+56922790,10533913,5
+Cecil.,10533913,4
+AngelaDayday,10533913,5
+peggplant,10533913,4
+3278476,10533913,5
+52576698,10533913,5
+jinghengnan,10533913,5
+sez,10533913,5
+78529339,10533913,3
+73787415,10533913,5
+44440835,10533913,4
+50258293,10533913,5
+30218761,10533913,5
+ALee301302,10533913,4
+Sataaaaaan,10533913,5
+Sataaaaaan,10533913,5
+XIUXIUMAIMAI,10533913,5
+58017981,10533913,4
+be-my-mirror,10533913,5
+elegantxx,10533913,5
+angelic,10533913,5
+PennyCCC,10533913,5
+120779558,10533913,4
+52291505,10533913,5
+34587187,10533913,5
+cuikunjia,10533913,-1
+131898558,10533913,4
+46673618,10533913,5
+7632975,10533913,3
+54140096,10533913,5
+53900618,10533913,-1
+orsule,10533913,5
+42338087,10533913,5
+swell1019,10533913,5
+35963638,10533913,5
+35963638,10533913,5
+KyraYang,10533913,5
+102458348,10533913,5
+60863493,10533913,5
+mikowhite,10533913,4
+43621388,10533913,3
+52697083,10533913,5
+misuiru,10533913,5
+67817372,10533913,5
+elevenge,10533913,5
+aginny,10533913,5
+meifannao,10533913,5
+flowermoi,10533913,5
+Sophieless,10533913,5
+chichiro,10533913,5
+53432720,10533913,4
+braxin2007,10533913,5
+annxin19,10533913,5
+3216654,10533913,5
+42927229,10533913,5
+42927229,10533913,5
+dongdayou,10533913,5
+belle,10533913,5
+28736860,10533913,5
+3071504,10533913,5
+131882477,10533913,5
+daylily1016,10533913,5
+undeadmonster,10533913,5
+ekling,10533913,4
+67244165,10533913,5
+66612367,10533913,5
+48507399,10533913,5
+92118420,10533913,5
+Night_shadow,10533913,4
+49783661,10533913,5
+50519870,10533913,3
+Kristenhay,10533913,5
+reader-shuo,10533913,-1
+dapao7738,10533913,5
+49397696,10533913,5
+youyeqiuxin,10533913,5
+1013761,10533913,4
+Ann1969nnA,10533913,5
+131687078,10533913,5
+2258556,10533913,4
+61953901,10533913,5
+paper,10533913,3
+40659159,10533913,5
+46534834,10533913,3
+56636321,10533913,4
+su27,10533913,5
+st_fiore,10533913,5
+govgouviiiiiiii,10533913,5
+zzzyao19960706,10533913,5
+128163061,10533913,5
+120943212,10533913,4
+35554276,10533913,5
+51401098,10533913,4
+3514906,10533913,4
+tiantanguk,10533913,5
+47554684,10533913,5
+lilacdays,10533913,3
+ztl-poppy,10533913,5
+AstridL411,10533913,3
+46417664,10533913,5
+varshaJ,10533913,5
+53721830,10533913,4
+essy,10533913,5
+amunli,10533913,5
+4148082,10533913,4
+64120728,10533913,5
+nate0710,10533913,5
+LHone,10533913,5
+60209158,10533913,5
+yangchunnuan,10533913,5
+64273735,10533913,5
+49418955,10533913,4
+1860311,10533913,4
+3852778,10533913,5
+Antonia-17,10533913,5
+69085964,10533913,4
+lesones,10533913,4
+58691394,10533913,4
+4246871,10533913,5
+JLeee,10533913,4
+49269799,10533913,5
+cynthia01501,10533913,5
+nal,10533913,4
+72867351,10533913,4
+71026194,10533913,5
+osmanthus1989,10533913,5
+68437259,10533913,5
+4630769,10533913,3
+ricy-rice,10533913,5
+93476152,10533913,5
+hpjoe,10533913,5
+121491917,10533913,-1
+susan103,10533913,4
+47999352,10533913,5
+46589297,10533913,4
+56526840,10533913,5
+71821737,10533913,5
+52293862,10533913,4
+Liew_qing,10533913,5
+62344639,10533913,5
+4255850,10533913,5
+3307804,10533913,4
+justinwu0129,10533913,5
+rafael1986,10533913,5
+19463611,10533913,3
+48877341,10533913,4
+sharonz,10533913,5
+fairyluohua,10533913,5
+34875842,10533913,4
+52828296,10533913,4
+cassiewang,10533913,4
+52285742,10533913,5
+heraunty,10533913,3
+54433785,10533913,4
+flora_xp,10533913,3
+75984184,10533913,5
+sinfulwolf,10533913,5
+cwyjsw,10533913,5
+2924921,10533913,5
+104261144,10533913,4
+bjpig,10533913,5
+53300404,10533913,5
+50210563,10533913,5
+DERRICK_ROSE,10533913,5
+48132711,10533913,5
+58986889,10533913,5
+49214895,10533913,5
+58783819,10533913,4
+fatfatbird,10533913,5
+2186902,10533913,-1
+heck,10533913,5
+48639175,10533913,5
+3400297,10533913,5
+61424734,10533913,4
+4825602,10533913,4
+guenet,10533913,4
+43891249,10533913,5
+twitodd,10533913,5
+43832986,10533913,3
+everlastingblue,10533913,5
+47352478,10533913,5
+cworange,10533913,4
+ysding,10533913,5
+yre,10533913,5
+64226724,10533913,5
+mickypuff,10533913,5
+61136338,10533913,4
+Lieutenant_Lu,10533913,4
+102661444,10533913,5
+92318310,10533913,5
+52724535,10533913,4
+126077709,10533913,4
+jasoncx,10533913,5
+60624243,10533913,5
+afa1021,10533913,4
+46209502,10533913,5
+87651171,10533913,5
+64975249,10533913,5
+jite,10533913,4
+Grace_Xuliang,10533913,5
+77033669,10533913,4
+51715999,10533913,5
+yeung123,10533913,3
+skylabay,10533913,5
+104144015,10533913,5
+53982181,10533913,5
+Forrestgary,10533913,5
+q1105418678,10533913,5
+miko0409,10533913,5
+yooogurt,10533913,5
+45693911,10533913,4
+3712644,10533913,5
+115222096,10533913,5
+119559372,10533913,5
+lene1207,10533913,4
+60618604,10533913,5
+liusashmily,10533913,4
+lalunefay,10533913,4
+83739647,10533913,5
+70446008,10533913,4
+114669964,10533913,4
+lucaa,10533913,-1
+68503636,10533913,5
+105011179,10533913,5
+75869572,10533913,5
+28013682,10533913,5
+68931689,10533913,3
+Daniel-Luo159,10533913,5
+yekie_yue,10533913,5
+so-it-is,10533913,5
+2298833,10533913,3
+38981591,10533913,5
+55629625,10533913,4
+xxndmj,10533913,-1
+46390167,10533913,3
+maoyu,10533913,5
+andrewrhao,10533913,4
+75994627,10533913,3
+83513831,10533913,5
+53248408,10533913,5
+spoon20110424,10533913,5
+Memorial_Sue,10533913,5
+48946440,10533913,3
+shynic89,10533913,4
+48521109,10533913,4
+56684398,10533913,3
+1296624,10533913,5
+37322815,10533913,-1
+who_knows,10533913,5
+73260608,10533913,5
+61514882,10533913,5
+pscjanet,10533913,4
+65590622,10533913,5
+satanprince,10533913,4
+2711254,10533913,4
+52770411,10533913,5
+42455197,10533913,3
+hany2212,10533913,4
+keira0308,10533913,3
+dingbang,10533913,5
+67335995,10533913,5
+47542425,10533913,5
+mujinshun,10533913,-1
+3329619,10533913,5
+1396295,10533913,-1
+2664199,10533913,5
+63592658,10533913,5
+StephaniYan,10533913,3
+volCANo455,10533913,5
+rogermodel,10533913,5
+souryu,10533913,5
+zuoyouyoyo,10533913,5
+diorsunrise,10533913,5
+rememberjuly,10533913,4
+89480416,10533913,5
+64457111,10533913,4
+47696504,10533913,5
+70701564,10533913,4
+33476481,10533913,5
+madwithu,10533913,5
+130808289,10533913,4
+caosancat,10533913,4
+sawakoluvian,10533913,5
+3097986,10533913,-1
+50003038,10533913,5
+120375835,10533913,5
+53577786,10533913,5
+ice_pudding,10533913,5
+51587730,10533913,4
+fkimi,10533913,5
+OldKingdom,10533913,4
+Ginny1s,10533913,4
+124694624,10533913,5
+yoyoinlove,10533913,5
+yanniyanni,10533913,5
+Luxiyalu,10533913,5
+45593428,10533913,5
+geoffero,10533913,5
+3509692,10533913,4
+51477715,10533913,5
+liux516,10533913,4
+36927005,10533913,5
+47426974,10533913,4
+loveraymond,10533913,3
+TualatriX,10533913,5
+106347535,10533913,5
+erosxx,10533913,5
+Youoen,10533913,5
+96513847,10533913,5
+48480567,10533913,5
+xx2086,10533913,3
+122757661,10533913,5
+79865158,10533913,5
+sclpanda,10533913,4
+53724452,10533913,3
+zhaigonglue,10533913,4
+silvanelf,10533913,5
+50945725,10533913,5
+xulu_films,10533913,5
+Pearls,10533913,5
+66104038,10533913,5
+59129237,10533913,5
+39945133,10533913,4
+53539927,10533913,5
+a3615,10533913,4
+3555189,10533913,4
+62498352,10533913,5
+achotec,10533913,5
+60002715,10533913,4
+53395539,10533913,5
+52556384,10533913,5
+65059952,10533913,5
+zhongdaieva,10533913,3
+cyblocker,10533913,5
+41798049,10533913,5
+63404258,10533913,5
+54116667,10533913,5
+CharlotteKo,10533913,3
+62716748,10533913,5
+42008064,10533913,5
+49384394,10533913,5
+yscysc803,10533913,4
+73709289,10533913,5
+4001333,10533913,5
+momocengceng2,10533913,4
+47370505,10533913,3
+AhLang,10533913,5
+52863011,10533913,5
+116391652,10533913,4
+Albertlzs,10533913,4
+70950231,10533913,3
+blueslyrist,10533913,4
+farawayfromhome,10533913,4
+joycerabbit,10533913,5
+102015485,10533913,5
+qiao1123,10533913,5
+longestname,10533913,4
+Swallow0908,10533913,5
+rainred,10533913,5
+oakhui,10533913,4
+babyana,10533913,4
+Hiv,10533913,4
+2326027,10533913,4
+121154422,10533913,5
+61654063,10533913,5
+53602254,10533913,5
+bluebiti,10533913,5
+amber0517,10533913,5
+laijintao,10533913,5
+jjkkfive,10533913,4
+junwuchen,10533913,5
+liujingqiheihei,10533913,5
+4056276,10533913,5
+blueboy2212,10533913,5
+winniewong021,10533913,4
+82262295,10533913,5
+60894533,10533913,5
+meme727,10533913,4
+35986570,10533913,5
+delphiash,10533913,5
+lazyg,10533913,5
+122349203,10533913,5
+perisher,10533913,5
+119772383,10533913,5
+cloverkiki,10533913,5
+hester-chan,10533913,5
+candy_littrell,10533913,3
+1493686,10533913,4
+50570726,10533913,4
+60650202,10533913,4
+47191946,10533913,5
+102638537,10533913,1
+2099122,10533913,5
+81752466,10533913,4
+46579498,10533913,5
+99603636,10533913,4
+sharrie,10533913,4
+time2night,10533913,5
+61426958,10533913,4
+Dpudding,10533913,5
+2678412,10533913,3
+34305909,10533913,4
+75270004,10533913,5
+2828111,10533913,3
+btone0808,10533913,4
+p2165,10533913,4
+124232379,10533913,4
+48502563,10533913,4
+violette,10533913,4
+55677796,10533913,5
+loveangelalove,10533913,5
+mechant,10533913,4
+5617300,10533913,5
+missxiang,10533913,4
+jomey,10533913,4
+29516587,10533913,4
+56416143,10533913,5
+lukelueng,10533913,5
+1548405,10533913,5
+iamdengdeng,10533913,5
+2325587,10533913,5
+48363016,10533913,5
+viatina,10533913,5
+ashleyliu,10533913,5
+2492062,10533913,4
+121532564,10533913,4
+sirene,10533913,5
+hawaiiwind,10533913,3
+2009122,10533913,3
+4320404,10533913,4
+48558495,10533913,5
+limabixiaojie,10533913,5
+42637645,10533913,3
+62793517,10533913,3
+zhoujunfan,10533913,4
+63059985,10533913,5
+83816838,10533913,5
+zhongxueyin,10533913,5
+47317180,10533913,5
+119132994,10533913,5
+32995807,10533913,3
+61223246,10533913,5
+47776681,10533913,5
+Orchid,10533913,3
+84334911,10533913,3
+rhythmfish,10533913,5
+imoviekobe,10533913,4
+124470674,10533913,3
+IMINCR,10533913,-1
+58626973,10533913,3
+3738868,10533913,3
+89700756,10533913,5
+37694229,10533913,5
+jazzark,10533913,5
+46038574,10533913,3
+bannaibanjiu,10533913,5
+Ultimeteor,10533913,5
+alianzhao,10533913,-1
+85375875,10533913,5
+61602134,10533913,3
+yangbo_md,10533913,5
+harrymoon,10533913,4
+81680581,10533913,4
+48028421,10533913,5
+thinkxer,10533913,5
+milkysusu,10533913,4
+62034584,10533913,5
+33547006,10533913,4
+3308006,10533913,4
+therecomy,10533913,5
+62104224,10533913,5
+Simplelove_,10533913,5
+45549330,10533913,5
+lost-kaine,10533913,5
+57980305,10533913,5
+82054541,10533913,3
+34956783,10533913,5
+yovng,10533913,5
+s_issi,10533913,4
+47707866,10533913,5
+suyanz,10533913,4
+69158289,10533913,2
+CookieCrumbler,10533913,4
+69454424,10533913,5
+4576566,10533913,5
+ifuseekayu,10533913,-1
+raecc,10533913,4
+lamslee,10533913,4
+isisiris,10533913,5
+superpowerspace,10533913,4
+1636017,10533913,5
+57087219,10533913,5
+moonstyle000,10533913,5
+yangyi52,10533913,4
+51287343,10533913,4
+33328418,10533913,5
+junojuno,10533913,5
+blueglacier,10533913,4
+polarday,10533913,5
+barpie,10533913,3
+35518271,10533913,5
+LorraineC,10533913,4
+lylian,10533913,4
+73923502,10533913,4
+60913555,10533913,5
+73474090,10533913,4
+Garbowho,10533913,5
+59856519,10533913,4
+2476748,10533913,4
+42165209,10533913,5
+46550458,10533913,5
+76839665,10533913,5
+france_lj,10533913,5
+Shiely,10533913,5
+lynnesay,10533913,4
+45484403,10533913,5
+76841664,10533913,4
+37160547,10533913,5
+47941742,10533913,4
+102819112,10533913,5
+48772570,10533913,4
+lolypop,10533913,4
+53176363,10533913,5
+56487740,10533913,5
+3983967,10533913,5
+lch_amo,10533913,5
+chinesean,10533913,3
+79334573,10533913,4
+90564869,10533913,5
+21032255,10533913,5
+121722324,10533913,5
+85098746,10533913,5
+58202638,10533913,5
+takifugu,10533913,4
+45794051,10533913,5
+qxx15,10533913,5
+baniujun,10533913,5
+juwujian,10533913,4
+36470321,10533913,4
+53366138,10533913,5
+oliviaorsino,10533913,5
+virginieds,10533913,4
+67297808,10533913,5
+raraphael,10533913,5
+52917026,10533913,5
+57920897,10533913,5
+feixianggod,10533913,5
+lion,10533913,4
+kuafujingmeng,10533913,4
+crazzzydirt,10533913,5
+1197799,10533913,5
+fionasocool,10533913,4
+49628529,10533913,5
+52197489,10533913,5
+58542369,10533913,5
+58542369,10533913,5
+48042943,10533913,3
+92392303,10533913,5
+4032421,10533913,5
+nemoye,10533913,4
+59135946,10533913,5
+StillAliveLoL,10533913,5
+69110012,10533913,5
+4597338,10533913,4
+travel_yuong,10533913,5
+moodymooday,10533913,5
+131663027,10533913,3
+4584624,10533913,5
+chamori,10533913,4
+shoiihoibjk,10533913,5
+65930256,10533913,5
+4097408,10533913,5
+126880203,10533913,3
+timerainer,10533913,5
+44160866,10533913,4
+44160866,10533913,4
+50769743,10533913,5
+52033116,10533913,2
+iceboal,10533913,5
+catails,10533913,5
+51136492,10533913,4
+67587735,10533913,4
+LWamo,10533913,4
+tangtang28767,10533913,5
+you3white,10533913,4
+66767946,10533913,4
+aotui,10533913,4
+73031414,10533913,5
+farmostwood,10533913,5
+48636560,10533913,5
+76935104,10533913,5
+60332808,10533913,4
+41829211,10533913,4
+131218585,10533913,5
+christinexuanzi,10533913,5
+dawnlight-joe,10533913,5
+diudiu0802,10533913,5
+fangkuan0511,10533913,3
+51402290,10533913,5
+fkeer,10533913,-1
+3922372,10533913,5
+anncloudy,10533913,4
+datouma,10533913,3
+1363176,10533913,5
+10723764,10533913,5
+54186627,10533913,4
+hellobangu,10533913,3
+49421395,10533913,5
+lingrui1995,10533913,4
+77267201,10533913,5
+67758880,10533913,4
+lovestrena,10533913,5
+rttcat,10533913,4
+tracy77899,10533913,5
+charrme,10533913,3
+69412790,10533913,5
+2197494,10533913,5
+liyinqi,10533913,5
+48996305,10533913,5
+15277249,10533913,-1
+ovanisho,10533913,5
+3483902,10533913,5
+37968335,10533913,5
+36474870,10533913,4
+54731687,10533913,4
+4198339,10533913,5
+holandbean,10533913,5
+34295625,10533913,5
+lijun_,10533913,4
+121917998,10533913,4
+57026267,10533913,3
+j780417605,10533913,4
+4516503,10533913,4
+99004931,10533913,4
+kiki204629,10533913,5
+kiki204629,10533913,5
+4221659,10533913,5
+60382121,10533913,5
+hellolittlestar,10533913,5
+36621770,10533913,5
+keiiii,10533913,3
+Sixteensteps,10533913,5
+3066956,10533913,4
+65400706,10533913,5
+90214054,10533913,4
+120038071,10533913,5
+61268751,10533913,5
+51974653,10533913,5
+3895425,10533913,5
+3189114,10533913,5
+67517097,10533913,3
+36029307,10533913,5
+48049196,10533913,4
+henryxuzimo,10533913,4
+122888716,10533913,5
+50766544,10533913,5
+IceKey,10533913,3
+59581904,10533913,5
+85868315,10533913,5
+68361818,10533913,5
+64477541,10533913,5
+78231413,10533913,4
+40727949,10533913,5
+43301248,10533913,4
+tracy4u,10533913,3
+Winky_R,10533913,5
+3731614,10533913,5
+GraceBinbin,10533913,5
+67560502,10533913,5
+daiginnko,10533913,5
+56136845,10533913,5
+Cynthiajjz,10533913,4
+38789187,10533913,5
+halay,10533913,5
+xuyinaxxxxxxx,10533913,5
+xuyinaxxxxxxx,10533913,5
+114422467,10533913,5
+59283400,10533913,4
+58120258,10533913,4
+myfantasy,10533913,5
+45543286,10533913,4
+68835916,10533913,5
+115552732,10533913,4
+73959584,10533913,5
+huadian,10533913,5
+88600705,10533913,5
+znrpiggey,10533913,4
+50943462,10533913,5
+39224869,10533913,5
+120322125,10533913,5
+41640054,10533913,-1
+52259960,10533913,3
+48081150,10533913,5
+1121196,10533913,3
+Ston3s,10533913,5
+newbear,10533913,4
+lucyintheocean,10533913,5
+dandanxiansheng,10533913,5
+11347329,10533913,3
+35580171,10533913,4
+amyzane,10533913,5
+3464028,10533913,5
+liangzhuzaoshu,10533913,4
+62882981,10533913,4
+manzhan,10533913,5
+ritz,10533913,5
+46248376,10533913,5
+49284367,10533913,4
+socalledgin,10533913,5
+milanlee,10533913,5
+48278440,10533913,4
+67202155,10533913,4
+Weeeeeeeeeeds,10533913,3
+57596577,10533913,5
+chunxiaoniubi,10533913,4
+chunxiaoniubi,10533913,4
+40581527,10533913,5
+131056318,10533913,5
+2329298,10533913,4
+74418129,10533913,5
+riceseedling,10533913,4
+baixg,10533913,-1
+haozi20,10533913,4
+hlicemilk,10533913,5
+vivacto,10533913,5
+12873508,10533913,3
+48078859,10533913,5
+57460299,10533913,4
+89763899,10533913,4
+HYGUY,10533913,4
+3716043,10533913,5
+kingkongbarbie,10533913,5
+wb890504,10533913,5
+ElephantBoy,10533913,5
+54192615,10533913,4
+54192615,10533913,4
+3617977,10533913,5
+59725036,10533913,4
+75912744,10533913,5
+2982114,10533913,5
+53554219,10533913,5
+MiaZWY,10533913,5
+kimikochan,10533913,5
+shine2,10533913,3
+51833254,10533913,5
+fifiyard,10533913,3
+47200046,10533913,4
+Vantt,10533913,5
+44182814,10533913,4
+75322883,10533913,4
+93772248,10533913,5
+15338047,10533913,4
+vikawang,10533913,4
+yu_sogood,10533913,5
+yumiaowater,10533913,3
+yu_sogood,10533913,5
+yumiaowater,10533913,3
+raysole,10533913,5
+abin520918,10533913,4
+113602700,10533913,5
+39945204,10533913,5
+58486784,10533913,5
+lovingmomo,10533913,5
+daxiwanzi,10533913,4
+50661722,10533913,5
+LoveJHart,10533913,5
+2174443,10533913,4
+53887998,10533913,5
+weichengluanma,10533913,4
+88236856,10533913,4
+68185689,10533913,5
+adaylanie,10533913,5
+82615703,10533913,-1
+76624368,10533913,5
+von71224,10533913,5
+von71224,10533913,5
+49922437,10533913,5
+9697337,10533913,5
+brokencat,10533913,4
+52789187,10533913,2
+67515639,10533913,3
+48226644,10533913,-1
+jessezheng,10533913,5
+weizheren,10533913,5
+44313962,10533913,5
+mairl,10533913,5
+4737971,10533913,4
+43232986,10533913,5
+7880093,10533913,2
+56194836,10533913,5
+winterzone,10533913,4
+zmiya,10533913,5
+kid_jianyi,10533913,4
+helenrain553,10533913,3
+55915138,10533913,5
+41687639,10533913,5
+97277841,10533913,5
+62672201,10533913,5
+voler,10533913,5
+ukulelelila,10533913,4
+yianran,10533913,5
+rakobi,10533913,4
+101393970,10533913,4
+1278309,10533913,5
+89098735,10533913,5
+45786010,10533913,3
+58703315,10533913,4
+mavicle,10533913,4
+45164060,10533913,5
+50574950,10533913,4
+4325552,10533913,5
+82913731,10533913,5
+takemeasiam,10533913,4
+locking,10533913,4
+59202996,10533913,5
+59202996,10533913,5
+72718715,10533913,5
+46830605,10533913,5
+43576863,10533913,5
+62122112,10533913,4
+51231937,10533913,4
+shouting0,10533913,4
+64547560,10533913,4
+qiao517,10533913,5
+blueskyfly,10533913,5
+Conniezhang,10533913,5
+cunzeg,10533913,5
+Rinyee,10533913,5
+bobbygd,10533913,5
+51287977,10533913,5
+windytown,10533913,4
+2234264,10533913,3
+beanod,10533913,5
+dreammydream,10533913,5
+44982186,10533913,5
+wangchenqd,10533913,-1
+53031868,10533913,5
+99307152,10533913,5
+44633309,10533913,5
+Erman-Wei,10533913,5
+47471554,10533913,5
+nivel,10533913,5
+58155946,10533913,4
+shirena,10533913,4
+1282298,10533913,4
+ARTHURU,10533913,5
+qstc12345,10533913,5
+64923655,10533913,5
+53981944,10533913,4
+51855205,10533913,3
+53872177,10533913,5
+22781132,10533913,3
+SusieP,10533913,-1
+mrHeakles,10533913,5
+26950131,10533913,4
+48509984,10533913,5
+1662765,10533913,3
+Ryanmagic,10533913,5
+42402116,10533913,5
+32835447,10533913,3
+princeeeee,10533913,5
+BA92101,10533913,5
+i9zer,10533913,4
+54287320,10533913,4
+lovedujuan,10533913,4
+69722979,10533913,5
+yoyo_ran,10533913,5
+33320870,10533913,5
+fifihon,10533913,4
+nanoButterMint,10533913,4
+calvingaga,10533913,5
+lidianxi1990,10533913,5
+raindr0p,10533913,5
+Asteria,10533913,4
+43237878,10533913,-1
+neveragain,10533913,5
+bigtreeyanger,10533913,5
+42841681,10533913,3
+80466570,10533913,4
+96774487,10533913,5
+4380586,10533913,5
+1811474,10533913,5
+tatoo,10533913,3
+41532813,10533913,5
+cindy_x,10533913,5
+MatinetHP,10533913,5
+39813889,10533913,4
+47190086,10533913,5
+36185739,10533913,4
+rainerrilke,10533913,5
+60010752,10533913,4
+babyplume,10533913,4
+littledonkey5,10533913,5
+7332849,10533913,4
+lxu,10533913,5
+darasiu,10533913,3
+wskhandsome,10533913,4
+96658819,10533913,5
+33309594,10533913,-1
+124732876,10533913,5
+104128172,10533913,5
+53807344,10533913,3
+filmvivi,10533913,4
+75743298,10533913,5
+10040083,10533913,-1
+suisui214,10533913,-1
+75206156,10533913,5
+2537827,10533913,5
+58011320,10533913,3
+Betty818,10533913,5
+63424113,10533913,5
+ispinzhang,10533913,4
+50183995,10533913,4
+appreciate,10533913,5
+53321679,10533913,5
+35736877,10533913,5
+blackbanana3Y,10533913,4
+3519238,10533913,5
+58905615,10533913,5
+21767774,10533913,4
+Avril_99,10533913,4
+47593725,10533913,4
+wangqt,10533913,4
+45934338,10533913,3
+48792587,10533913,5
+nathaneil,10533913,4
+38950564,10533913,4
+38465519,10533913,5
+minglemingle,10533913,5
+104297581,10533913,5
+50023640,10533913,4
+dengzhuo,10533913,5
+77207004,10533913,3
+DOLEIMI,10533913,4
+thunderous,10533913,4
+lijsh,10533913,4
+2061198,10533913,5
+3816364,10533913,5
+75301981,10533913,5
+90479501,10533913,5
+58478831,10533913,5
+39981864,10533913,5
+37495463,10533913,3
+Menphis,10533913,5
+51134125,10533913,4
+yangzhiqiao,10533913,4
+PASSMEBY,10533913,4
+53742632,10533913,4
+69386924,10533913,5
+y1ngbb,10533913,5
+BareTree,10533913,3
+1324290,10533913,4
+56198749,10533913,4
+49997537,10533913,4
+69445301,10533913,5
+50045202,10533913,5
+bx,10533913,5
+36654308,10533913,4
+TRULYSHELTON,10533913,4
+69636879,10533913,5
+41008835,10533913,5
+49287269,10533913,4
+32722318,10533913,5
+45886049,10533913,4
+2190268,10533913,5
+65873693,10533913,3
+shepherded,10533913,5
+2259073,10533913,5
+3673640,10533913,4
+larisali,10533913,5
+Miracle0616,10533913,4
+noleeshan,10533913,5
+Youandi4,10533913,-1
+jmn_white,10533913,4
+Niaofei618,10533913,4
+Niaofei618,10533913,4
+gq0513,10533913,5
+Ask,10533913,4
+55380431,10533913,5
+foreverjoy,10533913,5
+Emmahasbigbelly,10533913,3
+AnneWong,10533913,5
+m1ss_q,10533913,5
+64746643,10533913,5
+charlottehare,10533913,5
+51280941,10533913,5
+28344177,10533913,5
+charlottey,10533913,5
+jessica_joy5,10533913,5
+cxyzs7,10533913,5
+43635070,10533913,4
+34398672,10533913,4
+2728833,10533913,5
+47368525,10533913,5
+2148283,10533913,-1
+43892960,10533913,5
+65440807,10533913,4
+AfterElev,10533913,5
+artjam,10533913,5
+67024367,10533913,5
+3603324,10533913,5
+RicoCC,10533913,5
+vivianxal,10533913,4
+margaret_wmx,10533913,4
+62179197,10533913,5
+suertelore,10533913,5
+1080642,10533913,-1
+36250262,10533913,3
+marilyn9l,10533913,3
+jwhmayday,10533913,4
+enderstar,10533913,5
+erin-cl,10533913,5
+dingxx,10533913,4
+77646030,10533913,4
+edward1988,10533913,5
+yingzicao4869,10533913,4
+53132648,10533913,4
+iSaw11021,10533913,5
+119270472,10533913,3
+jjforever,10533913,5
+49125980,10533913,5
+elisamore,10533913,4
+4554090,10533913,4
+58287082,10533913,-1
+dinoel,10533913,5
+36988039,10533913,5
+n19htmare,10533913,5
+ennevida,10533913,5
+3914295,10533913,5
+landystar,10533913,4
+wzptoby,10533913,5
+52987923,10533913,4
+yozoh96119,10533913,4
+49297822,10533913,5
+60952768,10533913,5
+55356495,10533913,5
+babeblue,10533913,5
+50957337,10533913,4
+milkynbird,10533913,3
+50855912,10533913,4
+4188935,10533913,5
+2908018,10533913,5
+sophytao,10533913,4
+lostgirl,10533913,4
+57585289,10533913,3
+Yefengchuiri,10533913,4
+luciddreamlq,10533913,5
+52077451,10533913,4
+28984071,10533913,5
+RITABMW,10533913,4
+followyourwind,10533913,5
+angelfromhell,10533913,5
+59894468,10533913,3
+mythjill,10533913,5
+forneo,10533913,5
+sdayor,10533913,5
+tq010or,10533913,5
+kellangamp,10533913,3
+joey12255555,10533913,4
+50605102,10533913,4
+eleutherak,10533913,5
+3421143,10533913,5
+rackylo,10533913,5
+28882625,10533913,5
+80289474,10533913,4
+stephanieyy,10533913,4
+69104253,10533913,5
+68668703,10533913,5
+62445798,10533913,5
+70870817,10533913,5
+2116608,10533913,-1
+46845668,10533913,4
+30943019,10533913,5
+2825155,10533913,3
+ruilixiurui,10533913,5
+ruilixiurui,10533913,5
+41349908,10533913,5
+45826317,10533913,5
+31480062,10533913,3
+2784323,10533913,5
+lihenghui,10533913,3
+xinxinya,10533913,5
+kenleezzzccc,10533913,5
+4251957,10533913,-1
+61932917,10533913,4
+ecane,10533913,5
+56684242,10533913,5
+43710853,10533913,3
+Sedom,10533913,4
+62712229,10533913,4
+34594200,10533913,5
+mickyxj,10533913,5
+74139024,10533913,5
+robin83,10533913,5
+if.eve,10533913,3
+51638198,10533913,5
+rie-,10533913,5
+54995802,10533913,4
+lunaticsarah,10533913,5
+54405784,10533913,5
+3508304,10533913,5
+63422177,10533913,5
+50145189,10533913,4
+XUYUN-,10533913,5
+evaliu2000,10533913,5
+willlove,10533913,5
+88189488,10533913,5
+firecome7,10533913,5
+44214335,10533913,5
+47329757,10533913,5
+tracyprx,10533913,4
+elephanthuihui,10533913,4
+65549716,10533913,5
+Amandaland,10533913,4
+fionakeyan,10533913,5
+53312858,10533913,5
+softpur,10533913,5
+44182899,10533913,4
+107635262,10533913,5
+chidoufuma,10533913,5
+2029040,10533913,5
+108146303,10533913,5
+juanjuanhenjuan,10533913,5
+FunnyBike,10533913,4
+xyjprc,10533913,4
+35184516,10533913,5
+fanty,10533913,5
+121778312,10533913,4
+1600743,10533913,5
+79639802,10533913,4
+37924793,10533913,4
+mouzhu,10533913,5
+115212595,10533913,4
+NatsuSea,10533913,5
+101443784,10533913,4
+85811535,10533913,4
+SukiJin,10533913,4
+ithilien,10533913,5
+crazybunny666,10533913,4
+mangomunky,10533913,5
+116033722,10533913,5
+octopus0831,10533913,3
+aquarelle12c,10533913,5
+msghost,10533913,5
+74351574,10533913,5
+121807969,10533913,5
+66493866,10533913,5
+69653798,10533913,5
+Edvar,10533913,4
+3710625,10533913,5
+2012057,10533913,5
+Dushanbe,10533913,4
+evaying,10533913,5
+3356601,10533913,5
+nodaira,10533913,3
+21967116,10533913,5
+54167217,10533913,4
+Linqiny,10533913,4
+62346879,10533913,4
+80936991,10533913,4
+51413524,10533913,5
+63226211,10533913,5
+jhqmelody,10533913,5
+LiDaLoVe,10533913,5
+lowai,10533913,5
+37050423,10533913,5
+1411968,10533913,4
+FreakLao,10533913,5
+TheFoo,10533913,5
+55695831,10533913,5
+shusai,10533913,5
+53661945,10533913,4
+29458018,10533913,5
+91957409,10533913,5
+34929495,10533913,4
+91957409,10533913,5
+34929495,10533913,4
+ECbunny,10533913,5
+5755075,10533913,4
+sssuryy,10533913,5
+FORYUKI,10533913,4
+runaway6161,10533913,5
+zicheng05,10533913,3
+85728564,10533913,4
+46987936,10533913,5
+fallenshaman,10533913,5
+manyandandan,10533913,4
+Nathancai,10533913,5
+57076226,10533913,5
+65750204,10533913,4
+ChrisNoth,10533913,5
+1509677,10533913,5
+61741541,10533913,4
+simplepig,10533913,5
+gloriabrigida,10533913,5
+3395057,10533913,5
+34691129,10533913,4
+foreverlethe,10533913,4
+3100525,10533913,5
+wackdudu,10533913,5
+66395869,10533913,4
+36841439,10533913,-1
+gracebaobao,10533913,5
+YeLLow_qst,10533913,5
+76829874,10533913,5
+33491311,10533913,5
+77288161,10533913,4
+binben,10533913,5
+4531198,10533913,5
+85112816,10533913,4
+akxs,10533913,5
+plastictreeman,10533913,5
+kinchan,10533913,5
+griko,10533913,5
+gpsupergp,10533913,5
+35005323,10533913,5
+84593268,10533913,4
+59101282,10533913,5
+121950359,10533913,5
+49714270,10533913,5
+2595020,10533913,5
+130743785,10533913,4
+saparilla,10533913,4
+aprildaisy,10533913,5
+50398793,10533913,5
+92081294,10533913,4
+eleluna,10533913,5
+leonh,10533913,5
+xingmie,10533913,5
+2557763,10533913,5
+51328750,10533913,5
+45233873,10533913,5
+azlin0707,10533913,5
+hana7sandy,10533913,5
+mizuki313,10533913,5
+ringcarter,10533913,4
+fischer1111,10533913,5
+72788387,10533913,-1
+46550061,10533913,4
+130581811,10533913,4
+4242859,10533913,5
+57794823,10533913,4
+47512500,10533913,5
+51393119,10533913,4
+xuxiaoxi,10533913,5
+johnqz874,10533913,4
+jackiekuo,10533913,4
+zhoyoyo,10533913,5
+booow,10533913,5
+64227759,10533913,5
+57673530,10533913,5
+57723007,10533913,4
+2005598,10533913,5
+38324807,10533913,5
+hiyangtao,10533913,5
+65009709,10533913,5
+4161339,10533913,5
+65516017,10533913,4
+share_Abu,10533913,5
+rdjtmntrl,10533913,5
+55823373,10533913,5
+3212190,10533913,4
+1849096,10533913,4
+58951524,10533913,4
+68862914,10533913,5
+blair77,10533913,5
+49139643,10533913,-1
+126348691,10533913,4
+julypoem,10533913,5
+ameliejia,10533913,5
+estrelafan,10533913,5
+28903343,10533913,5
+listentowind,10533913,5
+47222520,10533913,5
+58044228,10533913,4
+lauretta2acm,10533913,5
+56403979,10533913,4
+50887988,10533913,4
+iyouyou2011,10533913,5
+luluforever,10533913,4
+2976165,10533913,5
+1172084,10533913,5
+45874648,10533913,4
+annihiland,10533913,5
+45845721,10533913,4
+54293267,10533913,4
+Moretoless,10533913,-1
+80634044,10533913,5
+chocochocolat,10533913,-1
+sunlightC,10533913,4
+only1mmmouse,10533913,3
+Etoilefilante,10533913,5
+tsubasaimai,10533913,4
+47609007,10533913,5
+greenday1112,10533913,5
+parala,10533913,5
+land1314,10533913,4
+44398126,10533913,5
+thehours_lxx,10533913,3
+58386111,10533913,4
+32911120,10533913,5
+jocellen,10533913,-1
+lyliaris,10533913,4
+xguozi,10533913,5
+runrun,10533913,5
+Septembres,10533913,5
+97757646,10533913,5
+120828432,10533913,4
+szqnova,10533913,5
+lucywang53,10533913,4
+56160592,10533913,3
+57580056,10533913,5
+115777239,10533913,3
+50826750,10533913,4
+lujcmss,10533913,5
+hanjingjing,10533913,5
+yupian,10533913,5
+summerious,10533913,5
+42632136,10533913,4
+46894377,10533913,4
+sysonchen,10533913,4
+chuyuanju,10533913,5
+perfm0n,10533913,5
+pinkopink,10533913,4
+hechaozhe,10533913,5
+4913356,10533913,4
+ChubbyCheek,10533913,5
+65851349,10533913,5
+lyuri,10533913,5
+blueskd,10533913,5
+52598445,10533913,4
+54810610,10533913,5
+43364606,10533913,4
+Summer_passion,10533913,4
+slyi,10533913,5
+49041999,10533913,4
+17786192,10533913,5
+woskxn666,10533913,4
+48194650,10533913,4
+leejinyu,10533913,5
+wuyifat,10533913,4
+solidgal,10533913,5
+littlelu,10533913,3
+baipang,10533913,4
+4896950,10533913,5
+38854651,10533913,4
+53277175,10533913,3
+an_lee1107,10533913,4
+boiling-silence,10533913,5
+34922072,10533913,5
+52326435,10533913,-1
+62135529,10533913,5
+5216325,10533913,5
+supermelon,10533913,5
+the_last_leaf,10533913,4
+59188959,10533913,5
+50650526,10533913,5
+45244208,10533913,5
+122104657,10533913,5
+2452972,10533913,5
+100036032,10533913,4
+52878748,10533913,5
+63429727,10533913,1
+123434945,10533913,5
+74491212,10533913,5
+summerboom,10533913,5
+vividodo,10533913,4
+hjfuykx,10533913,5
+70587570,10533913,4
+2069295,10533913,5
+xiexian,10533913,4
+jabriel90,10533913,5
+62917415,10533913,5
+hualuowushengsi,10533913,5
+46615940,10533913,4
+Bellanica,10533913,3
+Wait_decade,10533913,2
+124822199,10533913,5
+61504169,10533913,5
+75860030,10533913,4
+1889026,10533913,4
+sweetiantian,10533913,5
+Qinxiao47,10533913,5
+chancechance,10533913,3
+55922564,10533913,4
+3712505,10533913,5
+shunicole,10533913,4
+acedamic,10533913,4
+gothickid,10533913,4
+41742715,10533913,5
+point1to1,10533913,5
+73875283,10533913,5
+mwf,10533913,5
+2461115,10533913,5
+57550343,10533913,4
+82722362,10533913,4
+mrfofo,10533913,5
+35379091,10533913,4
+48501189,10533913,5
+vicky-bai,10533913,4
+lena_yue,10533913,4
+8582710,10533913,4
+spookyfox,10533913,5
+cyrus7,10533913,4
+67781678,10533913,5
+vickychen110,10533913,5
+FinnieXu,10533913,5
+Tinyk,10533913,5
+missapple,10533913,-1
+archikiki,10533913,5
+7542909,10533913,5
+sijilao,10533913,4
+weyal,10533913,5
+fireattack,10533913,5
+monlina,10533913,4
+monlina,10533913,4
+yourblossom,10533913,5
+hedachunzi,10533913,2
+46040413,10533913,5
+ellestmorte,10533913,4
+78486968,10533913,5
+90586395,10533913,4
+hanzhang9037,10533913,5
+90702836,10533913,5
+wenyuan_li,10533913,4
+Greewii,10533913,4
+yoite7,10533913,4
+silviapan,10533913,5
+9623777,10533913,4
+mfishoo,10533913,3
+ningning9164,10533913,-1
+xrfeifei,10533913,5
+ice-c,10533913,4
+84524937,10533913,5
+fly-007,10533913,5
+fly-007,10533913,5
+60788989,10533913,3
+1830523,10533913,4
+59884060,10533913,4
+55602793,10533913,5
+seraphzz,10533913,5
+57996759,10533913,5
+32008707,10533913,5
+47284793,10533913,5
+3472636,10533913,4
+62742561,10533913,4
+playon,10533913,5
+Teejayu,10533913,5
+yededi8821,10533913,4
+64259939,10533913,5
+40281384,10533913,3
+1032604,10533913,5
+ayueshuo,10533913,4
+Hunter2046,10533913,5
+perro101,10533913,4
+redwestnoodles,10533913,5
+elijahh,10533913,5
+Joyce94,10533913,5
+trista1202,10533913,4
+lbridge,10533913,5
+zhenkeai,10533913,5
+rantiankat,10533913,5
+2043000,10533913,5
+54525580,10533913,4
+wjf3121,10533913,5
+hutianyi,10533913,5
+1184336,10533913,3
+1320747,10533913,5
+1763578,10533913,4
+lin17,10533913,4
+neverbutterfly,10533913,3
+53830411,10533913,3
+veranoverana,10533913,5
+62607499,10533913,5
+xs2019,10533913,5
+hecaba,10533913,5
+48877194,10533913,4
+8603145,10533913,3
+78955356,10533913,4
+2048927,10533913,-1
+winterrain816,10533913,4
+towelie,10533913,5
+jiong7,10533913,5
+JollyMah,10533913,4
+48169411,10533913,-1
+tinnyjj,10533913,5
+guotong,10533913,4
+39129481,10533913,4
+apple_jody,10533913,5
+44413010,10533913,4
+silverleaforz,10533913,5
+HystericBlue,10533913,5
+RosyLzY,10533913,5
+aprilfoollee,10533913,4
+2424158,10533913,4
+curayukie,10533913,5
+58767866,10533913,5
+78448254,10533913,5
+4439510,10533913,3
+hellomaggie,10533913,5
+1815039,10533913,4
+sherryzala,10533913,5
+TwistedZ,10533913,5
+emilycou,10533913,4
+62294102,10533913,5
+fancynotgrow,10533913,5
+Lu.,10533913,4
+shuiduocao,10533913,4
+81133859,10533913,4
+musiclass3,10533913,5
+35073852,10533913,5
+83767002,10533913,5
+zouy1216,10533913,4
+jiajun14,10533913,5
+anzhenyunyou,10533913,5
+32603348,10533913,5
+vinkingking,10533913,5
+1942614,10533913,5
+zeeta,10533913,5
+3561552,10533913,5
+2842762,10533913,5
+4117565,10533913,5
+yakomoz,10533913,5
+71732495,10533913,5
+brahms49,10533913,4
+49420713,10533913,5
+stevecarell,10533913,5
+4009151,10533913,5
+3495111,10533913,4
+2185655,10533913,3
+MancunianJor,10533913,5
+Scorpio_1001,10533913,5
+departed_,10533913,5
+dalitso,10533913,5
+Jkoim,10533913,5
+eleanorgoround,10533913,4
+41604448,10533913,5
+3561547,10533913,4
+liszt_pp,10533913,5
+2189989,10533913,5
+3675326,10533913,4
+60853182,10533913,5
+green198641,10533913,4
+2500244,10533913,4
+hhzzz6912,10533913,5
+bunnyshinoda,10533913,5
+80297393,10533913,5
+50951864,10533913,3
+49322454,10533913,3
+49423690,10533913,5
+2605445,10533913,5
+zhangxiaoyuesy,10533913,4
+45194143,10533913,3
+77308324,10533913,4
+57892747,10533913,5
+Eassie.Chen.,10533913,4
+48936817,10533913,5
+blue_stone,10533913,5
+4340710,10533913,4
+4299219,10533913,5
+58148727,10533913,5
+47379145,10533913,5
+crazycathr,10533913,5
+44622653,10533913,5
+groupiez,10533913,3
+wendy1de,10533913,5
+3416468,10533913,4
+ZouseIV,10533913,1
+56203117,10533913,4
+supermalin,10533913,5
+xxyilun,10533913,5
+62690762,10533913,3
+58480998,10533913,5
+44917242,10533913,5
+Moulin,10533913,4
+Moulin,10533913,4
+103619776,10533913,5
+naomi724,10533913,4
+32616281,10533913,5
+paradoxofTM,10533913,5
+jerring,10533913,4
+123921828,10533913,5
+33036728,10533913,3
+4521508,10533913,4
+shiyun.sherry,10533913,4
+sentsuki,10533913,4
+1985403,10533913,5
+73403895,10533913,5
+79163764,10533913,5
+52143519,10533913,4
+drunktv,10533913,5
+moziyue,10533913,5
+30796197,10533913,5
+2531033,10533913,5
+joyque,10533913,5
+2855227,10533913,-1
+49185719,10533913,4
+fullofvitamin,10533913,3
+59367358,10533913,5
+35066546,10533913,5
+Ikergzy,10533913,4
+anyu1029,10533913,4
+li620toyfly,10533913,5
+33392381,10533913,5
+qianricao,10533913,4
+1963086,10533913,4
+3345473,10533913,5
+85143816,10533913,5
+4775119,10533913,5
+3579800,10533913,3
+33663451,10533913,4
+olivia_wwj,10533913,5
+1679048,10533913,5
+88215135,10533913,5
+34461821,10533913,5
+50423338,10533913,5
+jennylee0402,10533913,4
+2650987,10533913,5
+carried,10533913,4
+gungunyuan,10533913,5
+13976232,10533913,5
+44576253,10533913,5
+cinvro,10533913,5
+39526350,10533913,3
+xiangL,10533913,4
+angelaxue,10533913,-1
+3006805,10533913,3
+joechu,10533913,4
+etsdie,10533913,4
+softshock,10533913,-1
+2938267,10533913,4
+xwang0624,10533913,5
+kathyminwoo,10533913,5
+taichele,10533913,4
+lexiaoqi,10533913,5
+98591040,10533913,3
+3721664,10533913,5
+liseahy,10533913,5
+xi_1483,10533913,5
+88564672,10533913,4
+74545384,10533913,4
+ciaoxu,10533913,5
+70006548,10533913,5
+sam112895,10533913,5
+9915911,10533913,4
+caihx,10533913,5
+terry_f,10533913,-1
+64128291,10533913,5
+moniquehahaha,10533913,5
+57807205,10533913,4
+Luckid,10533913,3
+56264708,10533913,3
+47897406,10533913,5
+53304881,10533913,5
+misspill,10533913,5
+haa,10533913,5
+yokawao,10533913,4
+45362004,10533913,4
+joysu,10533913,4
+50304732,10533913,5
+logest,10533913,5
+16531117,10533913,5
+iwei,10533913,5
+5899417,10533913,4
+6626093,10533913,5
+arapallas,10533913,4
+maxililyn,10533913,5
+53485302,10533913,5
+harry731,10533913,4
+rabbitcai,10533913,5
+angela.dashen,10533913,5
+youngmykw,10533913,5
+2213588,10533913,5
+julia_qi,10533913,5
+66919459,10533913,5
+84250012,10533913,5
+71472531,10533913,5
+PureAsWater,10533913,5
+djlinza,10533913,5
+yuanzideweiba,10533913,5
+53447982,10533913,3
+Lethe.Lee,10533913,5
+2127487,10533913,3
+82254270,10533913,5
+parfumo,10533913,3
+10078954,10533913,5
+Pabalee,10533913,4
+RingoYeung,10533913,5
+liuruqin,10533913,3
+57390567,10533913,3
+kourosity,10533913,5
+markshi425,10533913,5
+WizardLee,10533913,5
+3305904,10533913,-1
+48839347,10533913,4
+46603705,10533913,4
+37677418,10533913,4
+huacanghua,10533913,4
+zhenzhen07,10533913,4
+4517861,10533913,-1
+4537806,10533913,5
+planeyang,10533913,5
+M.Roseline,10533913,4
+vincet,10533913,5
+furrybunny121,10533913,5
+1714845,10533913,5
+mary27,10533913,4
+july8903,10533913,5
+Leoky,10533913,4
+51686088,10533913,4
+56526826,10533913,5
+hellokimi,10533913,5
+C_Perk,10533913,4
+ZackorZac,10533913,5
+44806640,10533913,5
+omoyidey,10533913,2
+laylasn,10533913,5
+some_Ji,10533913,5
+57876075,10533913,3
+3509096,10533913,5
+mescal_zoo,10533913,5
+41836759,10533913,4
+10534038,10533913,4
+4150144,10533913,5
+z-shan,10533913,5
+luna17sea,10533913,5
+ipodmelody,10533913,5
+nebulamax,10533913,5
+milkbook,10533913,4
+48119983,10533913,5
+83415261,10533913,5
+57831543,10533913,-1
+45251073,10533913,2
+LincolnSixEcho,10533913,3
+51157596,10533913,3
+sashaxx,10533913,5
+40994633,10533913,5
+alcudish,10533913,5
+57475766,10533913,5
+bielimoshengren,10533913,5
+silenceandtears,10533913,-1
+80024991,10533913,5
+41851992,10533913,5
+surejia,10533913,5
+hxlnelson,10533913,5
+26822185,10533913,5
+alisontsai,10533913,5
+tropicalfiiish,10533913,5
+63989347,10533913,3
+mufishchi,10533913,3
+Marybigday,10533913,4
+dunkies,10533913,5
+emilydakota,10533913,5
+45231724,10533913,5
+andserendipity,10533913,5
+chrisWen,10533913,4
+3623173,10533913,4
+Nenya,10533913,4
+empty_icer,10533913,5
+laespoirao,10533913,5
+FellSpirit,10533913,4
+37599552,10533913,4
+2024133,10533913,5
+egg886_1986,10533913,5
+3424286,10533913,5
+43948244,10533913,5
+MarsOrMoon,10533913,5
+26039197,10533913,5
+WeAreGolden,10533913,5
+60094901,10533913,4
+marsenvoy,10533913,5
+33575961,10533913,5
+ruoruojerry,10533913,4
+4635910,10533913,5
+rockyblur,10533913,3
+rockyblur,10533913,3
+outtatheblues,10533913,4
+flywings,10533913,5
+51888816,10533913,5
+StringAlice,10533913,2
+lishirley,10533913,5
+lemons,10533913,5
+48249333,10533913,5
+borbo,10533913,5
+onlyzero,10533913,5
+1634482,10533913,4
+53592125,10533913,5
+ruyu,10533913,5
+kovivida,10533913,5
+riceman225,10533913,4
+49761983,10533913,5
+69622575,10533913,5
+ysz0115,10533913,4
+tinsariel,10533913,5
+Yanchao,10533913,5
+26605757,10533913,4
+mp4_20,10533913,5
+tipseek,10533913,2
+50376775,10533913,3
+xinbuzaiyan,10533913,5
+SHENCHIFENG,10533913,5
+37216484,10533913,5
+loner_drn,10533913,3
+65535805,10533913,4
+1416692,10533913,3
+60088640,10533913,4
+1417391,10533913,4
+Sam_in_Fangzi,10533913,5
+81404706,10533913,4
+doraeomon0620,10533913,5
+46919006,10533913,4
+peri_yi,10533913,5
+cyrus_wong,10533913,5
+36738202,10533913,5
+51098652,10533913,4
+eugene1909,10533913,5
+66550848,10533913,5
+49226452,10533913,5
+Clarke,10533913,3
+46264698,10533913,4
+53518939,10533913,5
+87542949,10533913,5
+yhelxx,10533913,5
+wintercoldrain,10533913,3
+sunshine2.0,10533913,5
+dawdle,10533913,4
+winterjane,10533913,4
+MisaPhantomhive,10533913,5
+51911319,10533913,5
+49057685,10533913,3
+yuyiheng,10533913,3
+40730943,10533913,-1
+kristyzcq,10533913,5
+babude,10533913,4
+75418722,10533913,3
+oTiffanYo,10533913,4
+superman-cici,10533913,5
+littlepussy_wf,10533913,-1
+tiamopippo,10533913,5
+wu_dbpersonal,10533913,4
+1857975,10533913,3
+2852627,10533913,5
+grbzywg,10533913,3
+u-know17,10533913,-1
+JeffreyWu,10533913,5
+46491501,10533913,5
+31324984,10533913,4
+3000438,10533913,5
+windson7,10533913,5
+60623717,10533913,4
+40211763,10533913,5
+teghl,10533913,5
+58291702,10533913,5
+chsophie325,10533913,5
+2401454,10533913,5
+48404339,10533913,3
+lunachen,10533913,4
+74385868,10533913,5
+mayahaday,10533913,5
+2273373,10533913,-1
+annieangel,10533913,4
+dolliet,10533913,5
+ivyforone,10533913,4
+Naxtsu,10533913,5
+ledg,10533913,5
+xyan0320,10533913,5
+himekyoro,10533913,5
+2135192,10533913,5
+2229062,10533913,5
+lin127,10533913,4
+49636760,10533913,5
+andy87819,10533913,5
+MentalDisorder,10533913,4
+yangcht,10533913,4
+shadow.u,10533913,5
+3643871,10533913,5
+Sophieven,10533913,5
+51967154,10533913,2
+babynumb,10533913,4
+eaufavor,10533913,5
+elevenrobin,10533913,4
+52054072,10533913,5
+fionacaiqi,10533913,5
+3638788,10533913,5
+4115794,10533913,5
+bctc,10533913,5
+hwf254,10533913,5
+25941181,10533913,5
+43017535,10533913,4
+ivy_xu1992,10533913,4
+inkhkkk,10533913,4
+shamkle,10533913,4
+46897570,10533913,4
+53633250,10533913,5
+nebgnahz,10533913,5
+kimidou,10533913,4
+zsyks,10533913,4
+icy_u,10533913,5
+3663654,10533913,5
+72985710,10533913,5
+MATTZ,10533913,5
+53458096,10533913,5
+4108180,10533913,5
+sprite-y,10533913,5
+2633400,10533913,5
+xiaoyaoworm,10533913,5
+Pill_GZ,10533913,5
+newcastle,10533913,5
+odeya,10533913,5
+62658708,10533913,4
+yoli,10533913,4
+khalilbaby,10533913,4
+clairekk,10533913,5
+fengyalan,10533913,5
+4668466,10533913,5
+khalilfongmlg,10533913,1
+xiankanhualuo,10533913,4
+oldstreetlight,10533913,5
+2829909,10533913,5
+3435212,10533913,2
+rachelray83,10533913,5
+68229713,10533913,4
+inwonderland,10533913,5
+42841809,10533913,5
+4860409,10533913,5
+60785904,10533913,5
+evenone,10533913,5
+6931905,10533913,-1
+jerry1992,10533913,5
+68788637,10533913,5
+lemonshammy,10533913,5
+33973764,10533913,5
+ldf320,10533913,-1
+2764251,10533913,-1
+li3guan,10533913,-1
+wanwanlu,10533913,5
+frozenwind,10533913,5
+4487892,10533913,5
+46133817,10533913,4
+1634975,10533913,3
+qwishu,10533913,5
+niuniubaodoudou,10533913,5
+ypvip,10533913,3
+44290930,10533913,5
+ggqgu,10533913,3
+xlee,10533913,5
+changelin,10533913,5
+satellitecity,10533913,5
+44822608,10533913,5
+56523090,10533913,3
+57906332,10533913,4
+1159054,10533913,5
+petercat,10533913,3
+Sean__Wang,10533913,5
+doomedlover,10533913,3
+Irice,10533913,3
+2853059,10533913,5
+smallove816,10533913,-1
+2193400,10533913,4
+55954435,10533913,2
+44753815,10533913,5
+76246373,10533913,5
+61448696,10533913,5
+54371431,10533913,4
+sususuya,10533913,5
+38955500,10533913,3
+suchengmo,10533913,5
+gf19900406,10533913,3
+cobbcheng,10533913,5
+55972392,10533913,5
+sodacat,10533913,3
+74195273,10533913,5
+wwwwind,10533913,4
+SwimGood,10533913,1
+84899568,10533913,3
+KiraisMaker,10533913,4
+weiranwei,10533913,4
+65758167,10533913,4
+L5.P4,10533913,4
+Jira,10533913,5
+35432414,10533913,5
+starrynite,10533913,5
+69859774,10533913,3
+Alma-Lee,10533913,4
+neilchi,10533913,4
+67089360,10533913,4
+115943900,10533913,4
+yaomiao,10533913,5
+cynthia.li,10533913,5
+ioaxis,10533913,5
+1368768,10533913,5
+maikhan,10533913,2
+siyannnn,10533913,5
+40303756,10533913,3
+joejoeli,10533913,5
+4467798,10533913,5
+15912473,10533913,5
+4037341,10533913,4
+76431600,10533913,5
+3683910,10533913,4
+ticketdealer,10533913,4
+danger8413,10533913,3
+7550423,10533913,5
+ler22,10533913,5
+44046836,10533913,5
+dandan_910123,10533913,5
+papaduty,10533913,5
+zhuaigen,10533913,5
+wonderfultimes,10533913,5
+41370734,10533913,5
+sade1996,10533913,4
+kaya_flowers,10533913,5
+acha13,10533913,5
+51121274,10533913,5
+zhcrobert,10533913,3
+50352423,10533913,4
+79151265,10533913,4
+geniustar,10533913,5
+2119013,10533913,3
+17247716,10533913,4
+hilca,10533913,5
+91868202,10533913,5
+mr_han1991,10533913,5
+62450111,10533913,4
+superpanv,10533913,4
+SmellyDong,10533913,4
+supermikam,10533913,4
+36964319,10533913,5
+idiotxu,10533913,5
+76460569,10533913,5
+gavinwang931128,10533913,5
+34789541,10533913,5
+58014974,10533913,4
+inez,10533913,5
+palindrome,10533913,5
+affidavit1,10533913,4
+miaooooo,10533913,4
+goblue,10533913,5
+iliuweiming,10533913,4
+interskh,10533913,4
+80907430,10533913,5
+rainyface,10533913,4
+4280640,10533913,5
+3805082,10533913,4
+48735350,10533913,5
+53373068,10533913,3
+80823041,10533913,5
+35051373,10533913,5
+se7enmary,10533913,3
+ann-in-april,10533913,5
+flowervirus,10533913,4
+ET.papillon,10533913,4
+zhibo1992,10533913,4
+3756667,10533913,-1
+2691011,10533913,4
+4335554,10533913,4
+orangerye,10533913,5
+3894700,10533913,5
+oralm,10533913,4
+madnessorlove,10533913,5
+mazzyoo,10533913,5
+46118793,10533913,2
+75033795,10533913,5
+azureINBLUR,10533913,3
+romanticist,10533913,4
+wanwan824,10533913,5
+shelleyhsu,10533913,5
+4108269,10533913,4
+14991491,10533913,4
+kbs---ak,10533913,5
+sodaorchid,10533913,4
+62221399,10533913,5
+larrycane,10533913,3
+Waiting.,10533913,4
+soya45,10533913,5
+29107256,10533913,5
+70862713,10533913,5
+icetone96,10533913,4
+xumhandy,10533913,5
+35467908,10533913,5
+bingbingaloe,10533913,5
+48156038,10533913,3
+44532857,10533913,5
+37288438,10533913,5
+59435031,10533913,5
+kamegemma,10533913,4
+momoshuo,10533913,4
+uligli,10533913,5
+carinawang,10533913,4
+pinkhq,10533913,5
+raingong,10533913,5
+shir23,10533913,5
+wcngsjb,10533913,5
+kongweihan,10533913,3
+67400098,10533913,5
+gillianhe,10533913,5
+DearRichard,10533913,5
+douding1024,10533913,4
+32108727,10533913,4
+110930122,10533913,5
+cindy738963892,10533913,5
+nathanyun,10533913,5
+stupidcat7652,10533913,-1
+2232976,10533913,5
+46202201,10533913,5
+cheanopig,10533913,5
+nancy425,10533913,3
+anyno,10533913,5
+lengxf_jx,10533913,4
+36176471,10533913,4
+46849811,10533913,5
+xu77,10533913,5
+jodiefan,10533913,3
+58134202,10533913,5
+face_off,10533913,5
+oncemultiverse,10533913,3
+Kallen_jiajia,10533913,5
+duoduo5159,10533913,4
+39355167,10533913,5
+jaro.,10533913,-1
+yellow_shell,10533913,5
+Emoie.,10533913,4
+freeeeeeee,10533913,4
+66878450,10533913,4
+53061557,10533913,5
+65565428,10533913,4
+taotaomvp,10533913,3
+gmrxfx,10533913,5
+49268784,10533913,4
+fishy,10533913,4
+G--er,10533913,5
+2015317,10533913,4
+48354236,10533913,4
+5580630,10533913,5
+14683656,10533913,5
+23904361,10533913,4
+39191647,10533913,5
+sophie-z,10533913,4
+amazingta,10533913,-1
+121627094,10533913,5
+walktodream,10533913,5
+29819963,10533913,5
+53909669,10533913,3
+TeenageDream,10533913,5
+huangzhn,10533913,4
+silvenyszmanda,10533913,5
+abcclk,10533913,5
+46100540,10533913,4
+1780860,10533913,4
+ofRaphael,10533913,3
+hhhhhhhhhhhh,10533913,4
+jihong,10533913,5
+LJ_OuO,10533913,5
+43516388,10533913,5
+xiannn,10533913,3
+andsay,10533913,5
+30725262,10533913,5
+66967830,10533913,5
+4147254,10533913,5
+59376067,10533913,-1
+4398857,10533913,4
+number814,10533913,5
+2876506,10533913,5
+2913201,10533913,5
+backinblack,10533913,5
+Houdong,10533913,4
+65741899,10533913,4
+ringogo,10533913,4
+52515848,10533913,5
+annvivienne,10533913,5
+3447044,10533913,5
+heixxj,10533913,2
+teashit,10533913,4
+2024868,10533913,4
+qfuga,10533913,4
+veronica0607,10533913,5
+deepkid,10533913,5
+saryta,10533913,4
+21395164,10533913,4
+92982249,10533913,4
+2822373,10533913,-1
+hzwang95,10533913,5
+lancer04,10533913,5
+Artystayshungry,10533913,5
+88603758,10533913,5
+77092352,10533913,4
+woshuoshuoshuo,10533913,3
+32028224,10533913,5
+89972315,10533913,5
+2737585,10533913,-1
+71873825,10533913,4
+yuntun,10533913,4
+happyhealthy,10533913,5
+42084433,10533913,4
+somelolitas,10533913,4
+hopewewe,10533913,5
+darthpanda,10533913,5
+94678422,10533913,5
+13569936,10533913,4
+50213452,10533913,5
+27242927,10533913,5
+terrubunny,10533913,4
+3529919,10533913,5
+45897266,10533913,5
+phinoda,10533913,4
+shyanntalk,10533913,3
+jzcatherine1990,10533913,5
+53735887,10533913,5
+flamen_,10533913,2
+64354015,10533913,5
+etsbin12,10533913,4
+48847270,10533913,5
+lozzy,10533913,5
+70043510,10533913,5
+129896137,10533913,5
+silverysword,10533913,5
+54756499,10533913,4
+66770871,10533913,5
+70230585,10533913,5
+54400244,10533913,5
+61538847,10533913,4
+45725575,10533913,5
+4123019,10533913,4
+angelmagazine,10533913,5
+anniedear,10533913,5
+lzblack,10533913,4
+75209751,10533913,5
+48832813,10533913,4
+3680323,10533913,3
+desperado_czy,10533913,4
+65113652,10533913,3
+2424742,10533913,5
+susimai,10533913,5
+50083570,10533913,5
+hana-neverland,10533913,5
+2912846,10533913,5
+cheersdarlin,10533913,3
+56686931,10533913,5
+binkicee,10533913,5
+sindyfan,10533913,5
+42360628,10533913,5
+2917148,10533913,4
+kuangbi,10533913,5
+noguchi,10533913,4
+48853437,10533913,5
+oimonkey,10533913,4
+green0313,10533913,5
+Rivo_Boondock,10533913,5
+ice_bloom,10533913,5
+burninghugehead,10533913,5
+55596314,10533913,3
+AsleepOrDead,10533913,5
+stefaniesays,10533913,5
+BlackChalk,10533913,5
+threeyears,10533913,4
+wildkidpk,10533913,4
+Cicipo44,10533913,3
+JasmineYu,10533913,5
+4544241,10533913,5
+shine531,10533913,-1
+mintring,10533913,5
+cherrytrees_dot,10533913,5
+zhuangjiahan,10533913,5
+tenko,10533913,1
+47612067,10533913,5
+yrftx,10533913,4
+malu,10533913,3
+2596903,10533913,3
+51435361,10533913,5
+nemomoc,10533913,4
+siniang,10533913,5
+52746574,10533913,5
+2485313,10533913,3
+2387348,10533913,3
+4320074,10533913,5
+1874049,10533913,5
+2978891,10533913,4
+2896376,10533913,4
+53823312,10533913,5
+39649962,10533913,5
+4414323,10533913,5
+14904352,10533913,4
+yanrunze,10533913,4
+matengfei27,10533913,5
+65123072,10533913,4
+62298442,10533913,3
+71051752,10533913,4
+jaimeerica,10533913,5
+zechewang007,10533913,5
+43302206,10533913,5
+43948105,10533913,3
+65190817,10533913,5
+will_u,10533913,4
+puhuahua,10533913,5
+arbingee,10533913,5
+46628514,10533913,5
+iris77here,10533913,4
+lil1314,10533913,3
+annie-bean,10533913,4
+76393487,10533913,5
+romoy,10533913,5
+sundongge,10533913,4
+47991605,10533913,4
+45013102,10533913,5
+60289458,10533913,2
+44957387,10533913,4
+2220763,10533913,4
+57818188,10533913,5
+mjinga,10533913,4
+119852340,10533913,5
+2221777,10533913,5
+4239908,10533913,4
+samantha-jy,10533913,3
+irenelgrandma,10533913,5
+45267287,10533913,5
+1010302,10533913,3
+73929218,10533913,5
+68851724,10533913,5
+loveanimals,10533913,3
+dir,10533913,4
+honey10151106,10533913,5
+51721466,10533913,4
+dirtywest,10533913,5
+58099043,10533913,2
+sakurairo,10533913,3
+59774628,10533913,4
+bellayy,10533913,3
+68497565,10533913,5
+2105801,10533913,3
+Neoo0,10533913,4
+110386319,10533913,5
+49295547,10533913,5
+36185142,10533913,4
+47782519,10533913,4
+44199764,10533913,5
+quadoooo,10533913,5
+stupidant,10533913,5
+tiebin223,10533913,5
+89525445,10533913,5
+26545118,10533913,5
+54845025,10533913,5
+inspiredxx,10533913,4
+wunching,10533913,5
+1226511,10533913,5
+126980247,10533913,5
+HikaruL,10533913,5
+UNVS,10533913,4
+52154847,10533913,5
+5964944,10533913,5
+jasonchou13,10533913,5
+2843167,10533913,4
+37296535,10533913,5
+Mizleave,10533913,5
+dydyd_douban,10533913,4
+73868761,10533913,4
+edwardpanda,10533913,5
+81083696,10533913,5
+gilbertglaze,10533913,5
+wildold,10533913,4
+78166009,10533913,5
+Liluw,10533913,5
+2578076,10533913,5
+2803147,10533913,4
+4161702,10533913,5
+Teresa.O_O,10533913,4
+AaronMix,10533913,4
+3689952,10533913,5
+choletter,10533913,4
+29623344,10533913,5
+baixiaoleng,10533913,5
+foreversusie,10533913,5
+scorpiogirljill,10533913,5
+54217571,10533913,3
+2770592,10533913,5
+s_3,10533913,5
+48143172,10533913,4
+1105357,10533913,4
+56776280,10533913,2
+castsoup,10533913,5
+ivygreen06,10533913,4
+66973670,10533913,4
+diafarona,10533913,5
+pluskid,10533913,5
+51166745,10533913,5
+69056740,10533913,4
+82669426,10533913,4
+77289829,10533913,5
+119626702,10533913,5
+hansondon,10533913,5
+49241696,10533913,4
+kaka_arctic,10533913,5
+35677289,10533913,4
+75215757,10533913,5
+1144701,10533913,4
+56769973,10533913,3
+82553066,10533913,4
+3310354,10533913,5
+stevenzhaodl,10533913,4
+52853662,10533913,5
+39255754,10533913,5
+48202928,10533913,4
+2231082,10533913,4
+inf.,10533913,4
+zhugl,10533913,5
+61258936,10533913,2
+catvoldemort,10533913,3
+mydearlinda,10533913,5
+miaogusensai,10533913,5
+41486823,10533913,5
+1811212,10533913,5
+21771687,10533913,2
+huan19494114,10533913,3
+65058502,10533913,5
+yangziqiang,10533913,5
+dorislee63,10533913,4
+3890374,10533913,5
+70927104,10533913,4
+4608800,10533913,5
+yangyucn,10533913,5
+MissLeft,10533913,5
+4335163,10533913,5
+xin_,10533913,-1
+RainingDemo,10533913,5
+zellux,10533913,5
+33729929,10533913,4
+74372603,10533913,4
+53030747,10533913,5
+79262344,10533913,4
+canon125,10533913,5
+49057443,10533913,4
+19660347,10533913,5
+2548986,10533913,3
+1428027,10533913,5
+59553766,10533913,3
+superacademic,10533913,4
+63553338,10533913,5
+dearmaya,10533913,-1
+102644530,10533913,4
+unarcenciel,10533913,3
+3391624,10533913,5
+50865096,10533913,5
+20760667,10533913,5
+morningzz,10533913,4
+59731344,10533913,4
+33552856,10533913,5
+BenRun,10533913,5
+39299123,10533913,4
+68190360,10533913,3
+nianshaozi,10533913,3
+57818309,10533913,4
+121897109,10533913,5
+savagett,10533913,5
+52151546,10533913,5
+51092958,10533913,2
+lostinfire,10533913,5
+xyx1219,10533913,-1
+thandiwe,10533913,4
+75691865,10533913,4
+52819229,10533913,5
+49761291,10533913,3
+64245948,10533913,5
+Pincent,10533913,5
+64708561,10533913,4
+75612172,10533913,-1
+i7COLORS,10533913,4
+48990593,10533913,5
+2741490,10533913,4
+GhostBan,10533913,5
+22263173,10533913,4
+wushuyunb,10533913,5
+36768577,10533913,5
+fangyuan1mi,10533913,3
+57451673,10533913,5
+gtianp,10533913,3
+51273572,10533913,5
+3976831,10533913,5
+lovelessdavy,10533913,4
+kellyouka,10533913,5
+36458457,10533913,4
+63271231,10533913,5
+chilldream,10533913,4
+42144339,10533913,4
+yurited,10533913,5
+Pm_wanderlust,10533913,5
+41956646,10533913,4
+xpisces24,10533913,5
+icerabbitbaby,10533913,5
+txiaomiao,10533913,5
+lymanc,10533913,4
+32670743,10533913,5
+ilovelusi,10533913,5
+85324202,10533913,5
+19676752,10533913,4
+better-man,10533913,5
+kaolaxing,10533913,5
+appreciation,10533913,5
+arsenallau,10533913,5
+cornuacervi,10533913,4
+cassiopeiaxiah,10533913,5
+60430092,10533913,3
+2210223,10533913,4
+2538567,10533913,4
+spark0601,10533913,4
+2982307,10533913,4
+24192874,10533913,4
+Ivy_bramble,10533913,5
+49576668,10533913,4
+66910521,10533913,5
+ink1020,10533913,4
+lwx624,10533913,5
+maxyuan,10533913,5
+trekkerT,10533913,4
+3690549,10533913,5
+46053347,10533913,3
+yuwenshuo,10533913,5
+peppermint.m,10533913,4
+49945525,10533913,5
+mimihu,10533913,5
+sallycastle,10533913,5
+2732455,10533913,5
+84296545,10533913,5
+babe_of_pisces,10533913,5
+77379822,10533913,5
+punkshen,10533913,5
+alacrity516,10533913,3
+26053558,10533913,4
+3763502,10533913,4
+rav4ever,10533913,5
+48787100,10533913,4
+67137952,10533913,3
+37160658,10533913,4
+AquaStyx,10533913,5
+winter-h,10533913,5
+1380354,10533913,4
+jiduohuanle,10533913,4
+82339454,10533913,5
+60021134,10533913,5
+jiangziwen,10533913,3
+erickyee,10533913,5
+kii-hong,10533913,4
+4266952,10533913,5
+1422362,10533913,5
+43260783,10533913,3
+superanna9302,10533913,4
+xiayun,10533913,5
+pigpie,10533913,4
+66189087,10533913,5
+128799458,10533913,5
+LuckybBamboo,10533913,4
+1344334,10533913,4
+hwashever,10533913,5
+61955471,10533913,5
+xguo,10533913,5
+53654985,10533913,5
+32941683,10533913,4
+75189651,10533913,4
+lux1119,10533913,4
+1890331,10533913,4
+48349929,10533913,2
+lucyseven,10533913,4
+2248658,10533913,5
+shenhanyansisi,10533913,5
+47533995,10533913,5
+sisleycheerup,10533913,5
+58929132,10533913,5
+1158392,10533913,5
+XinZee,10533913,5
+xingli89,10533913,5
+ant-me,10533913,5
+4585815,10533913,5
+bearblindman,10533913,5
+deepwaves,10533913,4
+4098434,10533913,4
+123851520,10533913,4
+25742902,10533913,3
+2039887,10533913,5
+frifriday,10533913,5
+lynnliao,10533913,3
+128583623,10533913,5
+51549155,10533913,5
+dgtdgb,10533913,5
+hua400,10533913,-1
+4236071,10533913,4
+mimighost,10533913,4
+laihiukei,10533913,5
+50887625,10533913,5
+4256942,10533913,5
+57676648,10533913,5
+53639789,10533913,5
+beatricehzp,10533913,5
+donaldduck92,10533913,4
+Albatross,10533913,5
+dreamde,10533913,5
+zhenghuiwen,10533913,5
+theflyingjamie,10533913,5
+ValentineQ,10533913,3
+46039604,10533913,4
+dukeadele,10533913,5
+2172401,10533913,4
+45060818,10533913,4
+55485806,10533913,4
+comebabycome,10533913,5
+ydlxiaolong,10533913,5
+69665312,10533913,5
+57260722,10533913,5
+FTS,10533913,5
+diana,10533913,5
+liujieruo,10533913,5
+crab802,10533913,5
+7013428,10533913,4
+Foxie717,10533913,5
+54278419,10533913,4
+Ryansher,10533913,5
+52466190,10533913,4
+seraphimzhao,10533913,5
+Luciferre,10533913,5
+67331748,10533913,3
+2257637,10533913,-1
+69105248,10533913,5
+chloe_huang,10533913,4
+aaronlikecheese,10533913,5
+31622009,10533913,5
+et2o,10533913,4
+46267191,10533913,5
+aicbgyihai,10533913,3
+31530097,10533913,5
+79412322,10533913,5
+bayer04040404,10533913,5
+AppleTREE4014,10533913,5
+82832477,10533913,4
+1233635,10533913,4
+zillyromantic,10533913,5
+64035088,10533913,5
+david-kwok,10533913,4
+Mwt0708,10533913,4
+mrdriver,10533913,5
+yiulingyik,10533913,3
+Julinawang,10533913,5
+46340614,10533913,3
+elinnao,10533913,3
+callmetracy,10533913,4
+evolhjt,10533913,4
+54709319,10533913,5
+minwoowife,10533913,5
+44600352,10533913,5
+41847122,10533913,4
+91431955,10533913,3
+45581073,10533913,3
+Love_Beta_V0.9,10533913,5
+zhangbook,10533913,5
+lemonquizas,10533913,5
+46920718,10533913,3
+85366942,10533913,5
+53268123,10533913,-1
+61268126,10533913,5
+1403812,10533913,5
+brosnail,10533913,4
+pumpkin_s,10533913,5
+peilic1020,10533913,4
+se7enbao,10533913,5
+65417437,10533913,5
+32023588,10533913,5
+55564890,10533913,4
+ys1013,10533913,3
+andriylin,10533913,5
+missguo2,10533913,5
+xiaxidaye,10533913,5
+xw0525,10533913,5
+xiaoxiao9061,10533913,4
+phoebe9982,10533913,5
+DuckLee,10533913,5
+7975719,10533913,5
+49419366,10533913,4
+langsusu,10533913,5
+60639132,10533913,5
+summertail,10533913,5
+fxoc,10533913,4
+Brad_King,10533913,5
+WangWei1995,10533913,4
+78164697,10533913,5
+119903956,10533913,5
+ekamiao,10533913,3
+26633445,10533913,5
+tofuchico,10533913,4
+77017255,10533913,3
+lxhtin,10533913,5
+39823985,10533913,3
+50598130,10533913,5
+sc1752,10533913,5
+hippopotamusir,10533913,5
+momomosuck,10533913,4
+47639252,10533913,5
+36634678,10533913,3
+tristasmile,10533913,5
+50753084,10533913,4
+1061640,10533913,5
+38008208,10533913,5
+27704994,10533913,5
+shanhuashan,10533913,4
+jumaomao,10533913,5
+41419698,10533913,5
+lhs,10533913,5
+76699672,10533913,5
+57856953,10533913,5
+58679862,10533913,5
+4347027,10533913,5
+47974584,10533913,5
+2262469,10533913,4
+34040685,10533913,5
+4390181,10533913,3
+hushabyy,10533913,5
+59114459,10533913,4
+Tavico,10533913,4
+3540441,10533913,5
+66399464,10533913,5
+dr_new,10533913,4
+MLKGOD,10533913,4
+moi.s,10533913,5
+76726550,10533913,5
+1935824,10533913,5
+4165611,10533913,4
+57181252,10533913,4
+cat_rs,10533913,4
+45513879,10533913,5
+watiler,10533913,4
+62601567,10533913,4
+127728111,10533913,4
+49988944,10533913,5
+piaoweier,10533913,4
+ajchen,10533913,4
+Nakaiaoi,10533913,5
+128785994,10533913,5
+74106602,10533913,5
+35003294,10533913,5
+46196075,10533913,5
+68984410,10533913,5
+53441725,10533913,4
+miloz0908,10533913,5
+67711452,10533913,4
+poselen,10533913,5
+hot_air_balloon,10533913,5
+tiziw,10533913,4
+126702436,10533913,4
+bfa1950,10533913,5
+singlesinger,10533913,4
+16313678,10533913,5
+ruthchai,10533913,5
+3403979,10533913,5
+69044224,10533913,5
+cancerlies,10533913,4
+52036602,10533913,-1
+55384259,10533913,5
+ceruleanice,10533913,5
+2039569,10533913,4
+mihoutuan,10533913,4
+Ashtrayyyyy,10533913,5
+meifyrt,10533913,5
+arleneshelly,10533913,5
+EosIcyGreen,10533913,3
+ChidLee,10533913,5
+jujuxiii,10533913,4
+59412896,10533913,4
+46220008,10533913,5
+edisonme,10533913,4
+alwaysforyou,10533913,5
+Www0137,10533913,3
+lamwithme,10533913,5
+gallria,10533913,3
+CKyan,10533913,3
+60344800,10533913,5
+FFFFFFantasy,10533913,5
+47361455,10533913,4
+noaharc,10533913,5
+dancingsue,10533913,5
+46920813,10533913,5
+vane0109,10533913,5
+59556078,10533913,5
+54045751,10533913,5
+sunnie.j,10533913,4
+48260143,10533913,5
+50933206,10533913,4
+69405633,10533913,5
+zhangxingshen,10533913,5
+mericandy,10533913,4
+47165433,10533913,5
+lewuleyi,10533913,5
+115599687,10533913,5
+100292053,10533913,5
+ooyoo,10533913,4
+1021243,10533913,4
+2761343,10533913,-1
+123004306,10533913,3
+78985673,10533913,5
+cabaret,10533913,5
+79329899,10533913,5
+96992534,10533913,5
+piangpiangpiang,10533913,5
+79420813,10533913,5
+46839557,10533913,5
+51607336,10533913,5
+4198519,10533913,4
+1477764,10533913,5
+104373100,10533913,4
+10710034,10533913,5
+MOVIE--KO,10533913,4
+56920148,10533913,5
+63742684,10533913,5
+57224796,10533913,5
+kwasii,10533913,5
+62749551,10533913,5
+bunnylalala,10533913,5
+2640849,10533913,5
+60908358,10533913,5
+48687824,10533913,5
+71717101,10533913,5
+64780091,10533913,5
+51297889,10533913,4
+72792251,10533913,5
+danielyangli,10533913,4
+119312199,10533913,5
+BBmachtalles,10533913,4
+2209141,10533913,5
+linruoru,10533913,4
+2802817,10533913,4
+arrogantcolonel,10533913,3
+potatoblack,10533913,5
+61389067,10533913,5
+aquar25,10533913,5
+4590078,10533913,4
+hgn2007,10533913,5
+82228274,10533913,5
+aralebox,10533913,4
+Sissi-fei,10533913,5
+usewelltheday,10533913,5
+1168375,10533913,5
+44468738,10533913,5
+gjr,10533913,4
+70034039,10533913,4
+4811269,10533913,5
+30186731,10533913,5
+Shin7KYO,10533913,4
+feqinfan,10533913,5
+huxiaotian,10533913,4
+Genjo,10533913,5
+69469727,10533913,5
+45558720,10533913,5
+deepsnow,10533913,4
+Simonsaye,10533913,2
+anniehoneys,10533913,3
+heatherheather,10533913,5
+erhuyouxuan,10533913,5
+shuangeryu,10533913,4
+Sparta233,10533913,5
+81886735,10533913,5
+findmusic,10533913,5
+65370065,10533913,5
+zhaotian26,10533913,4
+constancef,10533913,4
+53810031,10533913,5
+71166963,10533913,4
+22593878,10533913,5
+51342796,10533913,5
+2445967,10533913,5
+65038272,10533913,5
+64700587,10533913,5
+3648785,10533913,5
+luojianxun,10533913,1
+champignon_lou,10533913,5
+45219094,10533913,5
+126632521,10533913,5
+77369972,10533913,4
+71811123,10533913,5
+ketsuk0,10533913,5
+75473004,10533913,5
+43144589,10533913,4
+LansingKam,10533913,4
+59236889,10533913,5
+a1830996698,10533913,5
+55355100,10533913,5
+cody555,10533913,4
+126513997,10533913,4
+watermemory,10533913,5
+pinkmouse,10533913,5
+2759466,10533913,5
+18586571,10533913,5
+tuzichiluobo,10533913,4
+51534915,10533913,5
+HugoVince,10533913,4
+supremetooto,10533913,4
+2362910,10533913,5
+71985811,10533913,4
+suckling,10533913,5
+blinglu,10533913,4
+2349644,10533913,5
+70986797,10533913,5
+huir,10533913,4
+61123177,10533913,5
+augusttt,10533913,4
+1440157,10533913,5
+2480872,10533913,5
+NG,10533913,4
+wtfisthis,10533913,5
+82846844,10533913,4
+luka90123,10533913,4
+71543587,10533913,4
+slothbug,10533913,5
+63730928,10533913,4
+zhaosuyue,10533913,4
+gesundheit,10533913,5
+Innerplant,10533913,4
+michaeliama,10533913,5
+56895326,10533913,5
+fuckinghate,10533913,-1
+sugarcube,10533913,5
+darkerthanwhite,10533913,5
+48407248,10533913,4
+72133915,10533913,2
+sxe,10533913,5
+70694742,10533913,5
+summersugarb,10533913,5
+xuhailong87,10533913,5
+60863980,10533913,4
+sam_smile,10533913,4
+yizhao,10533913,5
+fxl0977,10533913,5
+errena,10533913,3
+44652353,10533913,3
+55373134,10533913,4
+43962345,10533913,4
+ivy722,10533913,-1
+miao19890818,10533913,5
+60860847,10533913,5
+conanemily,10533913,5
+Richardzsj-FA,10533913,4
+26149046,10533913,5
+67182027,10533913,4
+63631634,10533913,3
+Latefordrama,10533913,4
+2336151,10533913,5
+3278392,10533913,3
+tracycw618,10533913,5
+87209971,10533913,5
+songzer,10533913,5
+61511708,10533913,5
+moneylatem,10533913,4
+bakubinen,10533913,5
+werder100,10533913,5
+lululovexiah,10533913,-1
+karo1993,10533913,4
+1923916,10533913,3
+4449010,10533913,5
+yukinari999,10533913,5
+1552306,10533913,5
+52369165,10533913,5
+York29,10533913,5
+fei2046,10533913,5
+liyijuan,10533913,4
+laoshudeshijie,10533913,4
+jywpl,10533913,4
+14627562,10533913,5
+lightreus,10533913,4
+ethan.zhang,10533913,5
+moredarkwhite,10533913,5
+52384106,10533913,5
+66273295,10533913,5
+baimuli,10533913,4
+39414781,10533913,4
+stknight,10533913,5
+hzfsdjf,10533913,5
+clementinetsu,10533913,4
+troublemakerjoy,10533913,4
+78697717,10533913,3
+96044338,10533913,5
+4733352,10533913,5
+mumurose,10533913,3
+Sammyzheng,10533913,5
+41799258,10533913,4
+63527236,10533913,5
+judy0420,10533913,5
+92185128,10533913,4
+64972660,10533913,4
+pigeye,10533913,3
+60883239,10533913,4
+ningyaogezhi,10533913,5
+68738740,10533913,4
+sho2mon4e4y,10533913,5
+xiza,10533913,4
+41703158,10533913,4
+yangqiaohe,10533913,3
+thistle_,10533913,5
+53247764,10533913,5
+2490612,10533913,5
+lazzaro,10533913,5
+samsyu,10533913,5
+43356588,10533913,3
+kongzong,10533913,4
+IantoJones,10533913,3
+yangshuangblue,10533913,5
+qingwood,10533913,3
+particles,10533913,4
+126513771,10533913,4
+75043360,10533913,5
+92364458,10533913,5
+74872914,10533913,3
+70915171,10533913,5
+gulunmu,10533913,4
+55802778,10533913,5
+35339976,10533913,5
+sanzanglx,10533913,5
+imjanette,10533913,5
+AspireY,10533913,5
+yatuifan,10533913,-1
+66325431,10533913,5
+46891725,10533913,5
+justinran,10533913,5
+60858827,10533913,4
+cloudyxiaoxiang,10533913,5
+zhegejiale,10533913,4
+limpidness,10533913,5
+skyllla,10533913,5
+4615558,10533913,5
+58399217,10533913,5
+kydwang,10533913,5
+vitamisa,10533913,4
+sk4ever,10533913,4
+illiteracy,10533913,4
+shezaizuyi,10533913,4
+lingyun93,10533913,5
+yalindongdong,10533913,5
+4527041,10533913,5
+67812928,10533913,4
+hellowind,10533913,4
+maniacmolecules,10533913,4
+9164431,10533913,5
+Rolls,10533913,5
+54150368,10533913,4
+51061132,10533913,5
+ValJester,10533913,5
+candywong,10533913,3
+terenceyibo,10533913,4
+58107870,10533913,5
+61504628,10533913,3
+31528814,10533913,4
+72432038,10533913,4
+doralupin,10533913,5
+62862861,10533913,5
+wmjzdb,10533913,4
+KayeFiennes,10533913,-1
+73678720,10533913,4
+yihuiw,10533913,5
+2170266,10533913,4
+zhr19951204,10533913,5
+rex2xt,10533913,4
+greenlinkin,10533913,5
+63765493,10533913,5
+hexiaoqin,10533913,3
+zhangyired,10533913,5
+56712686,10533913,5
+dong0621,10533913,4
+62312013,10533913,4
+Vol.de.nuit,10533913,3
+muxiaoxu,10533913,5
+panicsun,10533913,5
+45572942,10533913,5
+79519421,10533913,5
+49108399,10533913,4
+50703649,10533913,4
+53644977,10533913,4
+52529736,10533913,5
+48787128,10533913,5
+60871322,10533913,5
+2856696,10533913,3
+96398339,10533913,5
+4583369,10533913,5
+nainainainai,10533913,5
+luzhiyu,10533913,5
+44642517,10533913,5
+94000337,10533913,5
+sherrykingna,10533913,4
+33075480,10533913,5
+23730457,10533913,3
+51838419,10533913,4
+54940586,10533913,5
+gruel_,10533913,4
+cangjie1900,10533913,5
+sparkylee,10533913,4
+claireqq,10533913,4
+102288030,10533913,-1
+17810133,10533913,5
+102666107,10533913,5
+adaxinyi,10533913,5
+62345168,10533913,5
+ruo1996,10533913,5
+Bollin,10533913,5
+102997750,10533913,5
+40868820,10533913,5
+124454581,10533913,4
+Janone,10533913,4
+80063534,10533913,5
+tsubomi_sun,10533913,4
+41014466,10533913,5
+weekqin,10533913,5
+homene,10533913,5
+1454015,10533913,5
+62637901,10533913,3
+69272743,10533913,5
+49232578,10533913,5
+reika_scar,10533913,4
+3483493,10533913,-1
+yonghengyanggua,10533913,5
+77631133,10533913,5
+simpledeer,10533913,4
+42859187,10533913,5
+cmisland,10533913,3
+Lreckle,10533913,5
+83188680,10533913,5
+33439516,10533913,3
+12859609,10533913,5
+41601894,10533913,5
+97396333,10533913,4
+1256832,10533913,5
+Arche0528barney,10533913,4
+Crux,10533913,5
+63614573,10533913,4
+62489520,10533913,4
+3972030,10533913,5
+72712114,10533913,5
+Deerhorn,10533913,5
+92200318,10533913,5
+ask4more,10533913,-1
+47637789,10533913,5
+8312118,10533913,3
+chelseawangqin,10533913,3
+doris1992,10533913,5
+iamnian,10533913,5
+39760597,10533913,4
+49228448,10533913,5
+70379849,10533913,5
+53319331,10533913,5
+Solv,10533913,4
+57743813,10533913,4
+18033783,10533913,5
+55772953,10533913,5
+51771447,10533913,5
+3488671,10533913,5
+xixiai,10533913,5
+fr33k,10533913,5
+88371415,10533913,5
+57630254,10533913,5
+sqxmy,10533913,4
+jinsongjianren,10533913,5
+zitang,10533913,4
+46106251,10533913,4
+53904124,10533913,5
+43748947,10533913,5
+Coldkey_Yun,10533913,5
+46711642,10533913,5
+sdp1037,10533913,5
+helicopter,10533913,5
+y-3y17,10533913,4
+bimbo,10533913,4
+37259247,10533913,3
+61096170,10533913,5
+3830901,10533913,5
+AlonsoQuijano,10533913,5
+47845902,10533913,5
+47847703,10533913,5
+65303828,10533913,5
+55340250,10533913,5
+81812897,10533913,4
+91670876,10533913,5
+reneemiemie,10533913,4
+74937470,10533913,5
+83932735,10533913,5
+67941529,10533913,4
+120736500,10533913,5
+hela,10533913,4
+75251795,10533913,5
+84093369,10533913,5
+goson,10533913,5
+ambershi,10533913,4
+wuyanziyixiuzhu,10533913,5
+fli93,10533913,5
+57845284,10533913,2
+jesuisQ,10533913,5
+Maydaylily,10533913,5
+mantoW3,10533913,4
+85245250,10533913,4
+2471335,10533913,4
+115299290,10533913,5
+moneybear,10533913,5
+sesey,10533913,4
+79829494,10533913,3
+Ray_W,10533913,4
+1095652,25766754,4
+119699596,25766754,4
+Iamzhexuan,25766754,4
+79970005,25766754,5
+88997815,25766754,1
+elainefish,25766754,4
+54083120,25766754,4
+eefee,25766754,3
+50075764,25766754,3
+1339249,25766754,4
+wllh2345,25766754,3
+63174933,25766754,4
+changxiaobuzhi,25766754,-1
+88033603,25766754,4
+qinyouxuan,25766754,5
+bzfdu,25766754,4
+63283343,25766754,5
+29267155,25766754,5
+128106765,25766754,4
+75869572,25766754,4
+shoonior,25766754,-1
+83469606,25766754,5
+1511879,25766754,5
+56533866,25766754,5
+45377052,25766754,5
+TYM,25766754,-1
+55941253,25766754,-1
+47802475,25766754,5
+36834058,25766754,5
+85958266,25766754,4
+134503726,25766754,4
+5691697,25766754,4
+frozenwind,25766754,5
+3023030,25766754,-1
+Pengjianjun,25766754,4
+49915240,25766754,4
+124548457,25766754,5
+80017178,25766754,4
+68469162,25766754,4
+63027509,25766754,5
+evasees,25766754,4
+newjiayi,25766754,5
+64929024,25766754,3
+88386627,25766754,4
+tequila7,25766754,4
+1799409,25766754,5
+65361718,25766754,4
+70470057,25766754,4
+119446065,25766754,3
+silence_queen,25766754,4
+119644008,25766754,4
+33737693,25766754,5
+46184375,25766754,3
+51920499,25766754,-1
+4200336,25766754,4
+48523065,25766754,1
+takuyayueyue,25766754,4
+49272831,25766754,4
+vanexu,25766754,5
+42820544,25766754,5
+45842646,25766754,5
+1164443,25766754,3
+59538557,25766754,5
+Leo.Outsider,25766754,5
+soncurn,25766754,5
+47574517,25766754,3
+forjinger,25766754,4
+51976916,25766754,4
+Thrloverock,25766754,4
+121129598,25766754,3
+130822517,25766754,2
+128468373,25766754,3
+47321536,25766754,5
+35211592,25766754,5
+25350324,25766754,-1
+66632216,25766754,4
+67967186,25766754,2
+3137688,25766754,4
+61335632,25766754,5
+82500899,25766754,4
+133822939,25766754,3
+50186807,25766754,5
+70829890,25766754,5
+74169906,25766754,3
+65104985,25766754,5
+15439490,25766754,4
+96000077,25766754,2
+131233204,25766754,3
+2978891,25766754,3
+4011970,25766754,5
+54749090,25766754,4
+121228834,25766754,3
+milesaway,25766754,4
+alicie,25766754,5
+DustGear,25766754,3
+kilo_echo,25766754,-1
+zhanggongzi,25766754,3
+83152126,25766754,4
+60623717,25766754,4
+25960765,25766754,5
+snowyhowe,25766754,3
+66552525,25766754,3
+ruyi0529,25766754,3
+65179482,25766754,5
+lucifermi,25766754,5
+48541726,25766754,4
+lianhuaroad,25766754,5
+4042513,25766754,4
+47593124,25766754,4
+63889015,25766754,3
+54090532,25766754,5
+ceoimon,25766754,3
+51331609,25766754,3
+moveqiu,25766754,5
+128867670,25766754,4
+luohuangertao,25766754,3
+90213289,25766754,4
+19266682,25766754,5
+tino_zyj,25766754,5
+3277636,25766754,5
+60882915,25766754,4
+39294617,25766754,5
+jluy,25766754,5
+zhibiaoshi,25766754,3
+27580999,25766754,1
+1689876,25766754,4
+30449502,25766754,3
+28953793,25766754,3
+Annie3,25766754,4
+81773475,25766754,4
+yushi,25766754,4
+AshtonCooper,25766754,4
+119685812,25766754,4
+spall,25766754,5
+35992976,25766754,5
+42958804,25766754,5
+54768768,25766754,5
+69806466,25766754,5
+siyuano,25766754,5
+85948759,25766754,3
+43335695,25766754,4
+INTERVENTION,25766754,-1
+lydialovelee,25766754,3
+luly_xy,25766754,3
+bulijite,25766754,4
+allenmarceau,25766754,-1
+69232328,25766754,5
+1922653,25766754,5
+nleydy,25766754,4
+51855205,25766754,4
+millylyu,25766754,3
+youyougo,25766754,4
+1782474,25766754,4
+82320533,25766754,4
+ffei593,25766754,4
+81134195,25766754,4
+34071855,25766754,5
+120712105,25766754,3
+fujunyi,25766754,5
+3518798,25766754,5
+67740915,25766754,4
+58338006,25766754,3
+45242330,25766754,5
+punk90,25766754,4
+Exaiy,25766754,4
+55821264,25766754,5
+evgeni1955,25766754,4
+elkkkkk,25766754,4
+liruochong,25766754,4
+31622009,25766754,4
+kisscat890505,25766754,5
+Recianov,25766754,5
+82643605,25766754,3
+kiralove00,25766754,4
+1385012,25766754,4
+cheapchic,25766754,4
+bearhao1976,25766754,4
+pennylueng,25766754,4
+killian9999,25766754,3
+68685051,25766754,4
+71478959,25766754,5
+79903899,25766754,4
+59901599,25766754,4
+wodetade,25766754,5
+35149263,25766754,4
+119341040,25766754,5
+38228503,25766754,5
+57079509,25766754,5
+96241491,25766754,3
+36757912,25766754,5
+jane-leaf,25766754,5
+1278172,25766754,4
+2296297,25766754,-1
+39863972,25766754,4
+Michellekids,25766754,5
+Sumia,25766754,5
+134057557,25766754,4
+Dasiycat,25766754,4
+CT19950923,25766754,4
+115258566,25766754,3
+callmefabar,25766754,5
+8449145,25766754,2
+meilixiao,25766754,-1
+52777997,25766754,5
+61506654,25766754,3
+38258402,25766754,4
+huoxiaoliang,25766754,5
+daisy702,25766754,3
+rachelyi23,25766754,3
+65145767,25766754,3
+58372248,25766754,3
+shushudabaoz,25766754,5
+63929108,25766754,4
+4453892,25766754,-1
+1464431,25766754,5
+77577342,25766754,4
+51060168,25766754,5
+45933152,25766754,3
+136891005,25766754,4
+52080305,25766754,5
+xiongweilin,25766754,3
+Bang-Bang,25766754,4
+rollschild,25766754,4
+26237008,25766754,4
+flying_sword,25766754,5
+122932689,25766754,3
+64748860,25766754,-1
+Zoey423,25766754,5
+130558450,25766754,5
+4287011,25766754,3
+27518977,25766754,5
+39414781,25766754,4
+3509096,25766754,4
+lluucckkyy,25766754,5
+83975444,25766754,5
+58559629,25766754,5
+chieng,25766754,3
+2039887,25766754,5
+58897478,25766754,4
+62120599,25766754,-1
+3592617,25766754,4
+louis4498,25766754,4
+thanksdanny,25766754,4
+5921287,25766754,-1
+andrpirl,25766754,5
+Quark_Ingle,25766754,5
+134036415,25766754,4
+haji,25766754,4
+37945803,25766754,3
+66973670,25766754,3
+actor2019,25766754,4
+Decadeff,25766754,4
+zzfuck,25766754,5
+64320633,25766754,4
+53978560,25766754,5
+Sonntag,25766754,5
+lovecimi,25766754,3
+68588893,25766754,5
+leucex,25766754,5
+MightyAtom,25766754,4
+48959774,25766754,5
+51422581,25766754,5
+121920760,25766754,2
+50130752,25766754,5
+kalinin,25766754,3
+3502492,25766754,3
+45080512,25766754,5
+hooklt,25766754,3
+1981762,25766754,3
+66626196,25766754,5
+97348317,25766754,4
+1759173,25766754,3
+55325883,25766754,4
+18360610,25766754,4
+69874247,25766754,4
+irislxxx,25766754,5
+51803315,25766754,4
+3537863,25766754,3
+54006868,25766754,4
+37344756,25766754,4
+amandacalled,25766754,5
+brennteiskalt,25766754,3
+79087170,25766754,3
+119081444,25766754,4
+61721467,25766754,4
+49144614,25766754,3
+56281995,25766754,3
+60812524,25766754,5
+2265138,25766754,5
+41107629,25766754,1
+sixsea,25766754,4
+Bryan_westtown,25766754,3
+thesillyone,25766754,2
+zxjtmac,25766754,5
+82927281,25766754,4
+81930957,25766754,4
+ya-vivien,25766754,5
+49287269,25766754,4
+3818284,25766754,5
+137281873,25766754,-1
+45479973,25766754,-1
+islander,25766754,4
+135096530,25766754,4
+61101184,25766754,5
+satanprince,25766754,5
+57239712,25766754,5
+yscysc803,25766754,4
+79583588,25766754,4
+64902546,25766754,5
+62710318,25766754,5
+81685996,25766754,4
+54334174,25766754,5
+63261736,25766754,5
+2310497,25766754,4
+136296573,25766754,4
+1101928,25766754,3
+90543489,25766754,4
+2543390,25766754,-1
+41991102,25766754,3
+meimeimoi,25766754,5
+35076658,25766754,4
+75972068,25766754,4
+felinoshuffle,25766754,4
+jiezi20,25766754,4
+candicechang,25766754,5
+71863067,25766754,3
+XIAOTAIYANG,25766754,5
+26265440,25766754,5
+45573967,25766754,2
+80209748,25766754,4
+68238165,25766754,2
+83188009,25766754,4
+81222828,25766754,5
+Aries-in-douban,25766754,5
+hey.nanzhuang,25766754,3
+benyang,25766754,5
+63127179,25766754,4
+lampard,25766754,5
+adelebleu,25766754,5
+masaikejun,25766754,4
+poselen,25766754,5
+freshstart,25766754,4
+3783693,25766754,3
+92118420,25766754,5
+gooo111,25766754,4
+1369113,25766754,3
+46022957,25766754,5
+59807933,25766754,5
+2750417,25766754,3
+54546849,25766754,3
+41644891,25766754,4
+35145856,25766754,3
+77385767,25766754,4
+60570793,25766754,3
+25329087,25766754,4
+30074350,25766754,3
+lumins,25766754,4
+thomsonkoo,25766754,4
+116044095,25766754,4
+2241168,25766754,5
+58544371,25766754,5
+yc_0619,25766754,-1
+120427833,25766754,4
+1643126,25766754,5
+joyeteyoj,25766754,4
+ca04132,25766754,4
+11189422,25766754,5
+108296832,25766754,1
+69337188,25766754,5
+q962265267,25766754,5
+125675802,25766754,5
+moryfor,25766754,4
+50919323,25766754,3
+theyear,25766754,4
+49088363,25766754,5
+1196187,25766754,2
+47583585,25766754,5
+1133756,25766754,3
+milkbook,25766754,5
+50451911,25766754,3
+73222054,25766754,3
+kangroons,25766754,5
+52246931,25766754,5
+128991169,25766754,3
+cwyjsw,25766754,5
+3045450,25766754,5
+95571541,25766754,4
+66178804,25766754,5
+angalny,25766754,3
+120488823,25766754,3
+132951000,25766754,4
+dh28105,25766754,5
+49468020,25766754,5
+65502815,25766754,4
+bmrlb,25766754,5
+89804270,25766754,4
+2273276,25766754,4
+54119533,25766754,3
+ruoshuiwunian,25766754,5
+atyrant,25766754,5
+moyuezhang,25766754,-1
+feqinfan,25766754,4
+53396330,25766754,5
+moosee,25766754,5
+32383822,25766754,3
+2338448,25766754,3
+wakin1707,25766754,5
+92926800,25766754,4
+ctrl-moon,25766754,3
+keyilibie,25766754,5
+120830012,25766754,5
+45784891,25766754,3
+84390206,25766754,4
+127426227,25766754,4
+amazingcamel,25766754,4
+59276802,25766754,4
+49875686,25766754,5
+40237768,25766754,5
+58609856,25766754,3
+1522300,25766754,3
+xlei130,25766754,3
+hoboland,25766754,5
+47037959,25766754,4
+60876982,25766754,4
+126037645,25766754,5
+Chenallen,25766754,3
+monkey_dick,25766754,5
+Clarke,25766754,1
+inout,25766754,4
+60344800,25766754,4
+ideyes,25766754,4
+76635599,25766754,2
+8752115,25766754,4
+cay_gene,25766754,5
+42069458,25766754,4
+48965557,25766754,2
+47818066,25766754,4
+cyberpwz2002,25766754,5
+55624184,25766754,5
+49343894,25766754,4
+49168365,25766754,3
+53112248,25766754,5
+14587316,25766754,4
+markshi425,25766754,5
+33042240,25766754,5
+114143891,25766754,5
+72030393,25766754,4
+MirrorImage,25766754,5
+47297203,25766754,4
+62414047,25766754,3
+xylor,25766754,4
+60385415,25766754,3
+haitan39,25766754,-1
+zyd0527,25766754,5
+3617454,25766754,3
+133599006,25766754,4
+xiaojiongxia,25766754,4
+92995487,25766754,5
+xygoing,25766754,5
+whisperstone,25766754,5
+1411336,25766754,3
+103222605,25766754,5
+53550866,25766754,4
+N44,25766754,4
+66574557,25766754,5
+kkguagangqin,25766754,5
+136366122,25766754,3
+76916583,25766754,5
+Harry-haohao,25766754,5
+103277074,25766754,4
+zhushinemovie,25766754,3
+48323200,25766754,4
+gilyun,25766754,4
+93484113,25766754,4
+D-cherry,25766754,3
+kuroneko2002,25766754,4
+fanyiduo,25766754,5
+85831631,25766754,5
+79151265,25766754,5
+69730287,25766754,4
+51061137,25766754,4
+56766936,25766754,3
+43471822,25766754,4
+64137441,25766754,4
+70469575,25766754,3
+cczcharles,25766754,4
+120985349,25766754,5
+HanaChang,25766754,4
+josie5dance,25766754,5
+43814043,25766754,2
+81152446,25766754,3
+96175707,25766754,4
+cianshijie,25766754,4
+3510413,25766754,5
+2809747,25766754,-1
+59604055,25766754,4
+Kerry121,25766754,4
+45431775,25766754,1
+Formosaxxx,25766754,4
+51836053,25766754,5
+124953430,25766754,4
+anotherds,25766754,4
+Arielcong,25766754,4
+63939883,25766754,5
+regalo,25766754,4
+eudora-26,25766754,3
+ospopi,25766754,5
+Aretha,25766754,4
+49411913,25766754,-1
+chidaoshu,25766754,5
+goodbyelenin,25766754,4
+51945032,25766754,4
+kolodo,25766754,4
+54096140,25766754,2
+76716477,25766754,1
+37390884,25766754,5
+58596058,25766754,4
+veverlee,25766754,4
+113809979,25766754,5
+niguize,25766754,4
+48815881,25766754,5
+45252963,25766754,3
+53197529,25766754,5
+selyoyi,25766754,5
+nobodyhome,25766754,4
+84628411,25766754,3
+lixlong,25766754,5
+whoiswho,25766754,5
+3173862,25766754,4
+44371183,25766754,5
+62028090,25766754,3
+61387419,25766754,5
+83143884,25766754,4
+11630561,25766754,5
+seaneight,25766754,4
+41634233,25766754,4
+121148510,25766754,4
+Cheung11,25766754,5
+132126693,25766754,3
+JeremyJeremy,25766754,4
+JeremyJeremy,25766754,4
+37402473,25766754,-1
+pangjiansheng,25766754,-1
+82049060,25766754,4
+120780634,25766754,5
+54494232,25766754,4
+gonny,25766754,5
+121460001,25766754,5
+nebgnahz,25766754,5
+89528523,25766754,5
+51868895,25766754,4
+69594701,25766754,3
+Yufeiizhang,25766754,4
+114270381,25766754,4
+1864180,25766754,4
+2982307,25766754,5
+4122117,25766754,4
+Mrs_Dalloway,25766754,4
+48817278,25766754,5
+47850098,25766754,3
+48817278,25766754,5
+47850098,25766754,3
+1582961,25766754,4
+126467467,25766754,4
+41662344,25766754,5
+50353681,25766754,5
+65138658,25766754,5
+lotus47,25766754,5
+pariseros,25766754,5
+kevin5,25766754,4
+49194390,25766754,5
+damonhao-cs,25766754,5
+valleyeagle,25766754,4
+1780152,25766754,4
+1943610,25766754,4
+96336225,25766754,2
+136582638,25766754,5
+Ozu,25766754,4
+cocoon92,25766754,5
+62582467,25766754,3
+62582467,25766754,3
+66594885,25766754,1
+45102242,25766754,4
+mayliyife,25766754,4
+74106602,25766754,4
+jokerli,25766754,5
+cain69,25766754,3
+45051628,25766754,5
+50831360,25766754,4
+BruceBack,25766754,3
+70983014,25766754,5
+60731189,25766754,4
+1945427,25766754,5
+83192271,25766754,5
+jxc945,25766754,5
+lieye,25766754,4
+59149005,25766754,4
+84586790,25766754,-1
+65434971,25766754,5
+78966790,25766754,3
+43674596,25766754,5
+97977376,25766754,4
+53523221,25766754,3
+Wyl.,25766754,4
+1845398,25766754,5
+75189651,25766754,3
+hshl2011,25766754,4
+risyo,25766754,5
+115483881,25766754,4
+fx--hanshu,25766754,5
+isabellagala,25766754,5
+conquer-me,25766754,5
+snowcolour,25766754,5
+Chingshun,25766754,4
+52167289,25766754,5
+seayo,25766754,4
+wingthelie,25766754,5
+mousse_,25766754,5
+132388146,25766754,4
+lizhaowarm,25766754,5
+56008028,25766754,4
+dmcmh,25766754,4
+LSQNZX,25766754,4
+Rukia,25766754,4
+62370156,25766754,4
+2187326,25766754,4
+2849700,25766754,4
+65642376,25766754,5
+58158290,25766754,3
+35475264,25766754,5
+48330549,25766754,5
+49917861,25766754,5
+46394662,25766754,3
+fyl00,25766754,4
+Ryan-Z,25766754,4
+90807462,25766754,4
+54537877,25766754,3
+72086305,25766754,2
+80732468,25766754,5
+83484959,25766754,5
+96080324,25766754,5
+70149072,25766754,4
+dailypop,25766754,4
+63482919,25766754,-1
+64543856,25766754,4
+21929051,25766754,4
+46728603,25766754,5
+hughwong,25766754,5
+liweiheng,25766754,4
+58332166,25766754,5
+43685156,25766754,5
+120050114,25766754,5
+49312818,25766754,5
+83123138,25766754,3
+Nichtsmoines,25766754,3
+alexizm,25766754,5
+49266863,25766754,4
+50579250,25766754,3
+3617275,25766754,4
+82674531,25766754,5
+60808695,25766754,2
+saosaoxy,25766754,4
+95968737,25766754,4
+Georgewen,25766754,5
+59390060,25766754,3
+119913627,25766754,5
+flower_hui,25766754,-1
+jinandtoma,25766754,4
+136344222,25766754,4
+77419257,25766754,5
+128533983,25766754,4
+60274677,25766754,3
+3690549,25766754,4
+58094874,25766754,4
+MC.Zi,25766754,5
+Doctory,25766754,5
+135247004,25766754,3
+119489543,25766754,4
+130353620,25766754,3
+tanya_yan,25766754,5
+50144933,25766754,4
+45362948,25766754,3
+castletian,25766754,5
+56252937,25766754,5
+y111222,25766754,4
+57908212,25766754,5
+58042424,25766754,5
+126596372,25766754,4
+77850068,25766754,4
+68521104,25766754,3
+4158163,25766754,5
+36252674,25766754,5
+40626304,25766754,5
+Sparkyue,25766754,5
+csaver,25766754,4
+83089085,25766754,5
+56022280,25766754,4
+2833298,25766754,4
+121986758,25766754,3
+84250012,25766754,5
+43723717,25766754,4
+killsusie,25766754,5
+64926044,25766754,4
+4192759,25766754,4
+56755911,25766754,4
+daisylook,25766754,4
+49703092,25766754,5
+38399919,25766754,5
+69439267,25766754,4
+119874761,25766754,5
+87863001,25766754,3
+zjcyk,25766754,5
+87942128,25766754,5
+133350413,25766754,4
+wangjia0702,25766754,3
+67998952,25766754,5
+4583092,25766754,5
+43187104,25766754,4
+58276184,25766754,4
+66967732,25766754,3
+122458396,25766754,4
+Nur,25766754,4
+47907507,25766754,4
+skj,25766754,3
+3394942,25766754,5
+48907408,25766754,4
+48191747,25766754,5
+32540198,25766754,4
+mengmengleo,25766754,5
+53387777,25766754,4
+60392839,25766754,2
+Heartrouble,25766754,4
+51898920,25766754,4
+61076987,25766754,4
+puhonglei,25766754,3
+argoowz,25766754,1
+49550734,25766754,5
+61183826,25766754,3
+yuhanxi,25766754,4
+seventhworkshop,25766754,4
+114102247,25766754,4
+43783147,25766754,5
+paopaoing,25766754,4
+tea123,25766754,5
+51965596,25766754,4
+85992392,25766754,4
+luhua,25766754,5
+68936553,25766754,4
+4577694,25766754,5
+iisakura,25766754,3
+116138651,25766754,5
+73600166,25766754,4
+shahua,25766754,4
+L5.P4,25766754,5
+longmaoaiwan,25766754,4
+linshang,25766754,5
+dinoel,25766754,4
+57925125,25766754,5
+huafenlan,25766754,4
+heimi1028,25766754,5
+52695995,25766754,3
+52007831,25766754,4
+70413922,25766754,3
+2934232,25766754,3
+wangyao1982,25766754,3
+68569079,25766754,4
+yoyopig,25766754,4
+102910233,25766754,4
+jude_chen,25766754,4
+51996013,25766754,5
+58096357,25766754,5
+64441475,25766754,5
+acidrain,25766754,4
+54806925,25766754,4
+sinceiloveu,25766754,4
+3541486,25766754,4
+dannytheking,25766754,4
+59802133,25766754,4
+flowermumu,25766754,3
+60088640,25766754,4
+92615342,25766754,5
+84698224,25766754,4
+54229245,25766754,4
+1831746,25766754,3
+70214878,25766754,5
+53912838,25766754,4
+4394605,25766754,4
+76873283,25766754,4
+zbw6,25766754,5
+flowertide,25766754,5
+liovoicee,25766754,5
+simple_living,25766754,3
+71833015,25766754,4
+3435038,25766754,4
+haimian1077,25766754,4
+91304159,25766754,3
+72098495,25766754,5
+117808839,25766754,5
+70024677,25766754,3
+134486742,25766754,1
+48171385,25766754,-1
+nbyuan,25766754,4
+49957448,25766754,3
+33946730,25766754,4
+84943776,25766754,4
+79452257,25766754,4
+39690585,25766754,5
+59524621,25766754,3
+y.caddie,25766754,4
+3252036,25766754,2
+Riverdance,25766754,5
+Leibnio,25766754,4
+izpk,25766754,4
+kimliuzaixi,25766754,5
+41657334,25766754,-1
+57561635,25766754,5
+2809402,25766754,5
+134417369,25766754,4
+76737626,25766754,4
+78925849,25766754,4
+40572936,25766754,4
+imscaty,25766754,3
+48247472,25766754,5
+scorates1984,25766754,-1
+102099688,25766754,2
+50235107,25766754,3
+63793789,25766754,4
+135690867,25766754,5
+48164798,25766754,3
+catfacegirl,25766754,4
+98956225,25766754,3
+57716769,25766754,5
+irisyours,25766754,4
+kejinlong,25766754,4
+1929758,25766754,5
+49624621,25766754,4
+3510608,25766754,5
+shuman90,25766754,-1
+zhouhang1104,25766754,5
+3674593,25766754,4
+aisang,25766754,5
+2380878,25766754,3
+23904361,25766754,-1
+43335184,25766754,4
+122893908,25766754,3
+faith7,25766754,-1
+77492957,25766754,5
+74825137,25766754,5
+3571623,25766754,4
+59012758,25766754,5
+57373643,25766754,5
+52103391,25766754,3
+137129598,25766754,5
+131125229,25766754,3
+yukino,25766754,4
+yuntun,25766754,5
+75621811,25766754,4
+gongqiong,25766754,3
+34575902,25766754,4
+68353669,25766754,4
+2183091,25766754,4
+60295233,25766754,4
+84872284,25766754,4
+61627142,25766754,5
+57405167,25766754,5
+25560643,25766754,5
+ft5239328,25766754,5
+59109053,25766754,5
+72471422,25766754,5
+bdnet,25766754,3
+yaoyaoxiaozhan,25766754,3
+wxhsolo,25766754,5
+44345461,25766754,2
+74123608,25766754,-1
+126980247,25766754,3
+31393869,25766754,4
+51492381,25766754,4
+tianjinwangai,25766754,3
+60895094,25766754,4
+YolaZhang,25766754,4
+xiaoyushudai,25766754,3
+2049622,25766754,3
+lealealea,25766754,4
+14247291,25766754,-1
+68855550,25766754,4
+36943871,25766754,5
+42016293,25766754,4
+53454251,25766754,4
+120091522,25766754,5
+48884325,25766754,3
+1066031,25766754,4
+32767730,25766754,4
+64425214,25766754,3
+49684268,25766754,4
+85245609,25766754,5
+lxngzen,25766754,3
+3217100,25766754,-1
+63941479,25766754,5
+59597248,25766754,4
+65123773,25766754,5
+52817036,25766754,4
+89451365,25766754,4
+shingle,25766754,5
+66904861,25766754,4
+loverwenzi22,25766754,4
+dutianxiong,25766754,2
+2092765,25766754,4
+woshidoudoudou,25766754,4
+fufu28,25766754,5
+glasstar,25766754,3
+131909298,25766754,3
+a.c.h.e.n,25766754,4
+J7N,25766754,3
+48853220,25766754,5
+69162144,25766754,5
+70953750,25766754,4
+petitejoie21,25766754,4
+57172393,25766754,5
+69692149,25766754,5
+ramonachan,25766754,4
+79026958,25766754,4
+55754517,25766754,4
+1997569,25766754,3
+44398603,25766754,5
+61302881,25766754,4
+45491031,25766754,5
+sheldonkao,25766754,3
+50679453,25766754,4
+47546589,25766754,3
+115220924,25766754,-1
+shibiebie,25766754,4
+jiaodianyuchao,25766754,5
+70296365,25766754,3
+2842455,25766754,5
+3706515,25766754,4
+76996269,25766754,5
+65309880,25766754,4
+3858718,25766754,4
+xuweihua,25766754,5
+120832097,25766754,4
+67763944,25766754,5
+57733341,25766754,3
+4242728,25766754,4
+suge1209,25766754,5
+53811842,25766754,5
+chenmoon,25766754,5
+enderstar,25766754,3
+42775906,25766754,-1
+TiAmoWangQiXin,25766754,3
+4349563,25766754,4
+44381485,25766754,5
+45982463,25766754,5
+58899374,25766754,4
+19481906,25766754,4
+missssspink,25766754,5
+1201924,25766754,4
+52395760,25766754,5
+136570090,25766754,4
+meworld,25766754,4
+marcoooo,25766754,4
+w_j_y,25766754,4
+65646732,25766754,5
+51222661,25766754,-1
+50219833,25766754,4
+3598072,25766754,4
+75184056,25766754,4
+122738024,25766754,3
+33906135,25766754,5
+75117567,25766754,5
+Ophelia14,25766754,4
+70855287,25766754,3
+iver,25766754,5
+75513285,25766754,5
+qo_op,25766754,4
+38869266,25766754,3
+81752466,25766754,3
+3880844,25766754,4
+mustundead,25766754,4
+1828898,25766754,4
+49376492,25766754,4
+meltykisszhy,25766754,5
+55419617,25766754,4
+60390807,25766754,4
+65152157,25766754,5
+79559178,25766754,4
+1372441,25766754,-1
+115976556,25766754,4
+76509928,25766754,3
+45329595,25766754,5
+56143225,25766754,3
+lokaven,25766754,4
+71457288,25766754,5
+2122074,25766754,3
+134171030,25766754,4
+3575164,25766754,4
+vickysunday,25766754,-1
+137293914,25766754,5
+43662496,25766754,4
+18043877,25766754,5
+72087317,25766754,4
+roke128,25766754,3
+136837238,25766754,5
+1567784,25766754,4
+34794249,25766754,5
+50659341,25766754,5
+sirius_sky,25766754,-1
+CatPrince,25766754,4
+fenxinyu,25766754,4
+58305570,25766754,4
+yimoyoulan916,25766754,3
+laneddy,25766754,3
+40335342,25766754,3
+74346817,25766754,5
+29710703,25766754,5
+71269156,25766754,4
+50222808,25766754,4
+Rouwell,25766754,5
+3144882,25766754,4
+liuyuzen,25766754,5
+79684723,25766754,5
+79684723,25766754,5
+131113749,25766754,1
+natureandreal,25766754,4
+124142241,25766754,4
+Lemonsir,25766754,5
+58930883,25766754,1
+55677796,25766754,3
+4295298,25766754,5
+50287067,25766754,3
+38498557,25766754,3
+ggiggle,25766754,5
+2429292,25766754,3
+seodler,25766754,4
+50620996,25766754,3
+49428588,25766754,4
+zazaza,25766754,-1
+61823510,25766754,4
+58055008,25766754,5
+61196519,25766754,-1
+79506720,25766754,5
+64328354,25766754,4
+62793517,25766754,4
+88097347,25766754,4
+beckham7,25766754,3
+59236586,25766754,4
+114353086,25766754,4
+dogeli,25766754,4
+furien,25766754,4
+57984537,25766754,5
+der_Baum,25766754,4
+7542909,25766754,3
+39378921,25766754,5
+on1ooker,25766754,4
+72721459,25766754,3
+67290417,25766754,4
+zhubeilife,25766754,-1
+88951785,25766754,5
+101334259,25766754,-1
+fumihiko1985,25766754,5
+52399993,25766754,4
+zhangnuq,25766754,4
+cathy1987,25766754,4
+aiwengfan,25766754,3
+68012467,25766754,4
+110155302,25766754,4
+77648355,25766754,3
+120378701,25766754,5
+jlam174170,25766754,4
+4856520,25766754,2
+lithiumz,25766754,-1
+blackiwhite,25766754,5
+1029394,25766754,2
+59013721,25766754,3
+jackguo,25766754,3
+43409918,25766754,3
+Peter0365,25766754,-1
+92516233,25766754,3
+cilar,25766754,3
+1240037,25766754,4
+51587083,25766754,4
+47847363,25766754,5
+aipa,25766754,5
+68427316,25766754,4
+1933600,25766754,5
+60156776,25766754,5
+92061156,25766754,3
+42014041,25766754,4
+104570842,25766754,5
+60020985,25766754,3
+50108979,25766754,4
+icewoodlau,25766754,5
+yangyihu,25766754,1
+51771885,25766754,4
+caligula114,25766754,4
+iRayc,25766754,4
+45319686,25766754,4
+huskie,25766754,1
+46890032,25766754,5
+3971708,25766754,4
+no1907,25766754,4
+no1907,25766754,4
+78500828,25766754,3
+95403251,25766754,5
+2859857,25766754,5
+38397417,25766754,4
+115669845,25766754,5
+iear,25766754,4
+126248170,25766754,5
+62331563,25766754,5
+annko,25766754,4
+anliucom,25766754,4
+60859503,25766754,5
+60793244,25766754,3
+67514689,25766754,4
+47781830,25766754,5
+42006560,25766754,4
+40185288,25766754,4
+53650868,25766754,4
+abc1985,25766754,5
+58180925,25766754,3
+3007182,25766754,4
+evanlee2018,25766754,4
+37751161,25766754,5
+xiaoxiaodeyuanz,25766754,4
+58726406,25766754,4
+53476786,25766754,5
+119942879,25766754,5
+121754503,25766754,4
+63796277,25766754,5
+110718557,25766754,4
+51881494,25766754,5
+mirror-y,25766754,3
+52373314,25766754,-1
+50892549,25766754,4
+63391208,25766754,4
+119918603,25766754,4
+8708200,25766754,3
+65025231,25766754,5
+lelala,25766754,5
+41976054,25766754,4
+3177593,25766754,4
+needair,25766754,5
+45321512,25766754,-1
+122944258,25766754,4
+67489382,25766754,5
+87603533,25766754,3
+83899962,25766754,4
+51787481,25766754,4
+QQQQQQQla,25766754,3
+70390842,25766754,5
+deirdra,25766754,4
+2258556,25766754,3
+resurrection,25766754,4
+yaner189,25766754,4
+52864366,25766754,5
+78731933,25766754,4
+hichai,25766754,3
+130319108,25766754,5
+suntongxie,25766754,5
+40027917,25766754,5
+1920409,25766754,4
+58542527,25766754,5
+1547393,25766754,2
+JOESATRIANI,25766754,4
+kerenfang,25766754,3
+christopherlin,25766754,3
+Yamaai,25766754,5
+57820507,25766754,5
+75231611,25766754,4
+43354228,25766754,4
+128694474,25766754,4
+missleexx,25766754,3
+53854833,25766754,4
+3120655,25766754,4
+1133720,25766754,4
+73570998,25766754,4
+Minimalis,25766754,4
+65369148,25766754,3
+suealone,25766754,5
+doubandengjian,25766754,4
+70202233,25766754,4
+43396822,25766754,5
+117234787,25766754,4
+76295495,25766754,3
+124717846,25766754,5
+11566740,25766754,4
+85122693,25766754,5
+78645703,25766754,5
+68182058,25766754,4
+50054232,25766754,4
+134224702,25766754,5
+3421868,25766754,5
+1804203,25766754,5
+wanglinfei,25766754,4
+tix,25766754,4
+2883655,25766754,4
+62517035,25766754,-1
+alamao,25766754,-1
+liqiyao8931,25766754,1
+60664918,25766754,3
+46999271,25766754,3
+3873893,25766754,5
+25982397,25766754,3
+50769743,25766754,4
+75776370,25766754,5
+36850334,25766754,-1
+AeroAnte,25766754,4
+caocaoa,25766754,4
+lionking198176,25766754,4
+78971867,25766754,4
+DvinityOutflow,25766754,4
+61506971,25766754,3
+x.sunday,25766754,3
+136293291,25766754,-1
+59378291,25766754,2
+2387348,25766754,4
+popyanglihao,25766754,3
+32737561,25766754,3
+qiaomai,25766754,5
+heyeast,25766754,5
+18635744,25766754,5
+49316835,25766754,3
+1396295,25766754,2
+35066546,25766754,4
+131632042,25766754,3
+133795191,25766754,3
+wuzouhuanghun,25766754,5
+85324202,25766754,4
+qingnianluoke,25766754,-1
+Anh.zz,25766754,5
+78533472,25766754,4
+131533540,25766754,5
+riceseedling,25766754,3
+119262714,25766754,4
+cecearsu,25766754,5
+J-Tax,25766754,4
+49220911,25766754,4
+dadou417,25766754,5
+glorymanutd,25766754,5
+65710892,25766754,5
+81445026,25766754,2
+xxs127,25766754,3
+75251795,25766754,4
+chenchangxing,25766754,4
+58484149,25766754,4
+losiuhong,25766754,3
+121475864,25766754,4
+derelict_cynic,25766754,5
+127466089,25766754,5
+lion,25766754,4
+68542833,25766754,5
+Madao_D,25766754,4
+Youoen,25766754,4
+120239157,25766754,4
+69961635,25766754,3
+14860141,25766754,5
+57026267,25766754,5
+32650866,25766754,4
+ruilixiurui,25766754,3
+137058479,25766754,3
+42495125,25766754,4
+1795295,25766754,4
+1389557,25766754,4
+61162296,25766754,-1
+3715304,25766754,-1
+36463636,25766754,-1
+37160658,25766754,4
+38780906,25766754,3
+lingdongling,25766754,4
+67330888,25766754,4
+94148888,25766754,4
+136594496,25766754,5
+dewar,25766754,3
+62922305,25766754,4
+Jash1118,25766754,5
+122447269,25766754,5
+nathanyun,25766754,4
+137058497,25766754,3
+45174381,25766754,5
+49577279,25766754,-1
+AuRevoir7,25766754,4
+59458875,25766754,4
+123404476,25766754,3
+2588271,25766754,4
+cunzeg,25766754,3
+122605310,25766754,4
+wuyexingstars,25766754,5
+bbfary,25766754,3
+2214342,25766754,4
+1319464,25766754,3
+49319979,25766754,5
+68666799,25766754,4
+137061387,25766754,4
+45268716,25766754,4
+60570203,25766754,3
+nofer,25766754,4
+43703010,25766754,5
+61681574,25766754,4
+1265797,25766754,4
+coldestwind,25766754,4
+coldestwind,25766754,4
+70361131,25766754,4
+eiffel009,25766754,3
+44594663,25766754,4
+58602175,25766754,5
+77186305,25766754,5
+74752187,25766754,5
+viana,25766754,-1
+68630108,25766754,3
+46679729,25766754,4
+leiii,25766754,5
+68630098,25766754,3
+orangehahaha,25766754,3
+28312683,25766754,4
+134625303,25766754,4
+103551705,25766754,5
+chinabeta,25766754,3
+73830337,25766754,4
+LincolnSixEcho,25766754,5
+4770647,25766754,4
+86728823,25766754,5
+71561935,25766754,4
+63409961,25766754,5
+60553638,25766754,5
+dearmaya,25766754,5
+67681966,25766754,4
+3941641,25766754,4
+castsoup,25766754,5
+3418984,25766754,4
+2788057,25766754,3
+61260966,25766754,4
+wulanliuli,25766754,5
+sicksoul,25766754,4
+rsdch,25766754,4
+imstupid,25766754,5
+46888824,25766754,1
+dandyvalentine,25766754,5
+62842401,25766754,4
+64713560,25766754,4
+zbar1234,25766754,4
+VIKOyao,25766754,4
+137076197,25766754,3
+4361447,25766754,4
+3202437,25766754,4
+E_whitesmoke,25766754,4
+16807244,25766754,5
+53411317,25766754,5
+4501745,25766754,4
+62944813,25766754,4
+2769574,25766754,5
+43004579,25766754,4
+favezhihao,25766754,5
+73634799,25766754,4
+61491842,25766754,3
+64881542,25766754,4
+137073841,25766754,4
+chrisocean,25766754,5
+135615366,25766754,4
+48380480,25766754,3
+Barfuss,25766754,5
+naratan,25766754,2
+call.mily,25766754,5
+137073195,25766754,5
+46696173,25766754,4
+125758030,25766754,3
+90525586,25766754,4
+hj_laoxie,25766754,5
+114435379,25766754,4
+ASpace,25766754,5
+58552525,25766754,5
+133445534,25766754,3
+angiangeng,25766754,4
+1033751,25766754,5
+55287270,25766754,4
+dalychau,25766754,5
+renymartin,25766754,4
+achen29,25766754,3
+2598729,25766754,5
+133128355,25766754,5
+50851987,25766754,4
+19136693,25766754,4
+134758585,25766754,-1
+121540770,25766754,5
+68089671,25766754,4
+Cicinnurus,25766754,5
+50455314,25766754,4
+monikalife,25766754,4
+127111031,25766754,3
+93951315,25766754,4
+lucyhu,25766754,2
+sentexiaohu,25766754,4
+83162641,25766754,5
+kakai0u,25766754,4
+shirleyrenoyuto,25766754,4
+3540441,25766754,3
+83295870,25766754,1
+y19940504,25766754,5
+2040298,25766754,3
+2231320,25766754,4
+1376657,25766754,5
+76236179,25766754,2
+chaosi,25766754,-1
+sofarpluto,25766754,5
+44486984,25766754,3
+1250982,25766754,5
+83994709,25766754,3
+57126994,25766754,5
+gerandy,25766754,5
+122868077,25766754,3
+43508209,25766754,4
+fio3,25766754,3
+133906973,25766754,5
+50109915,25766754,4
+lianmaomi,25766754,5
+elizabeth123,25766754,5
+Thesummerhaze,25766754,4
+27396956,25766754,5
+calla,25766754,3
+ferrari_4cats,25766754,4
+1327109,25766754,5
+47199948,25766754,2
+79835731,25766754,4
+89698495,25766754,5
+LeeMar,25766754,5
+makiyo0809,25766754,5
+82687720,25766754,4
+120700138,25766754,4
+62352485,25766754,4
+7510013,25766754,3
+71755062,25766754,4
+53872605,25766754,4
+52179978,25766754,5
+lostinfire,25766754,4
+4839154,25766754,4
+59038571,25766754,5
+inearlysummer,25766754,3
+132226147,25766754,4
+80681000,25766754,4
+55850316,25766754,4
+solye,25766754,-1
+6270415,25766754,3
+53317988,25766754,3
+52583509,25766754,4
+3006385,25766754,4
+jyngoing1990,25766754,-1
+ada1911,25766754,5
+96967794,25766754,5
+83853096,25766754,4
+liuxiuqi,25766754,5
+foreverjc,25766754,4
+ifimeetyou,25766754,5
+12794807,25766754,4
+102618812,25766754,4
+52074740,25766754,4
+131746301,25766754,3
+76227467,25766754,5
+45028245,25766754,4
+1363290,25766754,5
+IMINCR,25766754,-1
+78564459,25766754,4
+43383848,25766754,4
+3522119,25766754,5
+59217273,25766754,5
+120383320,25766754,2
+83723594,25766754,4
+63760065,25766754,5
+muthologikos,25766754,2
+119287600,25766754,4
+120156023,25766754,5
+irissui,25766754,4
+121468237,25766754,4
+43778462,25766754,-1
+104050982,25766754,4
+Tinynana,25766754,4
+135964291,25766754,3
+49137557,25766754,5
+48544553,25766754,4
+shirleycore,25766754,5
+46046729,25766754,5
+76413878,25766754,3
+pepperannn,25766754,5
+yoory,25766754,-1
+49223192,25766754,4
+51774770,25766754,-1
+eggs,25766754,5
+suwangchuan,25766754,3
+formeswong,25766754,5
+thehours_lxx,25766754,5
+17672710,25766754,4
+54814792,25766754,4
+100971207,25766754,4
+lovedtomma,25766754,3
+fengzhongyeer,25766754,5
+3379883,25766754,5
+PUNKKONG,25766754,-1
+52779392,25766754,5
+63249970,25766754,5
+65187145,25766754,4
+xuxinleo,25766754,3
+2913672,25766754,3
+2913672,25766754,3
+qweerew,25766754,5
+2298833,25766754,4
+dong0621,25766754,3
+50368015,25766754,4
+3456645,25766754,5
+58059498,25766754,4
+12074004,25766754,5
+74491212,25766754,4
+4454517,25766754,5
+77026559,25766754,3
+78473890,25766754,-1
+40727949,25766754,5
+58930966,25766754,-1
+megansyr,25766754,4
+115775129,25766754,5
+47336635,25766754,5
+122336700,25766754,4
+hana0811,25766754,5
+53548921,25766754,5
+successlessness,25766754,3
+1935613,25766754,4
+45543286,25766754,4
+fatcatfatact,25766754,1
+htaedlzn,25766754,4
+doingcando,25766754,5
+3964079,25766754,4
+119192622,25766754,4
+Hunjianxia,25766754,4
+51342675,25766754,5
+tuxiaoxiaoxiao,25766754,-1
+89455749,25766754,4
+108285360,25766754,3
+58956706,25766754,5
+guyewuzhe,25766754,2
+54094049,25766754,4
+lave,25766754,4
+ricbabe,25766754,3
+darkness211,25766754,4
+duanzizai,25766754,4
+64326764,25766754,5
+59808282,25766754,5
+37382236,25766754,4
+1865210,25766754,5
+124483467,25766754,4
+xiaoshizhan,25766754,3
+mooreweicheng,25766754,5
+1233038,25766754,4
+51997514,25766754,3
+54069821,25766754,4
+69814261,25766754,3
+babbye,25766754,4
+87909103,25766754,3
+otherheaven,25766754,4
+41370734,25766754,4
+84480272,25766754,5
+humluv,25766754,4
+52456095,25766754,4
+98104030,25766754,4
+73983729,25766754,5
+eznf,25766754,5
+COCOCOQUEEN,25766754,5
+picnicskins,25766754,4
+2338228,25766754,5
+83596429,25766754,5
+oximi,25766754,3
+132707391,25766754,4
+oulichen,25766754,4
+youlookfabulous,25766754,2
+69838036,25766754,3
+61486120,25766754,5
+52637584,25766754,4
+Sh1neYuan,25766754,5
+58520151,25766754,4
+3812678,25766754,5
+44587302,25766754,5
+4535772,25766754,5
+83082532,25766754,5
+84652846,25766754,5
+SadTomato,25766754,4
+sulian6415,25766754,4
+2810818,25766754,5
+yeslie,25766754,4
+46781917,25766754,-1
+66745395,25766754,4
+63506712,25766754,5
+84093369,25766754,5
+2772927,25766754,4
+LyO-n,25766754,5
+pepermint,25766754,5
+RemyAnderson,25766754,-1
+sukijuri,25766754,2
+Amppppppp,25766754,5
+allofartandlife,25766754,5
+l648328226,25766754,5
+42221402,25766754,3
+Green_chestnut,25766754,5
+feichang920,25766754,-1
+Dreaming1989712,25766754,3
+39878848,25766754,4
+120841522,25766754,4
+Renaissance_w,25766754,5
+anqian,25766754,3
+101747409,25766754,5
+lynnesay,25766754,4
+9815076,25766754,4
+creamxxy,25766754,3
+1631968,25766754,4
+cynthia3922,25766754,4
+57832272,25766754,5
+40024021,25766754,-1
+Gos_mirror,25766754,5
+31319988,25766754,4
+oscarwp,25766754,5
+wildold,25766754,4
+128661562,25766754,5
+80704682,25766754,4
+42803233,25766754,3
+mengaxin,25766754,4
+49023228,25766754,5
+3183207,25766754,-1
+xuyimeng,25766754,5
+76407774,25766754,4
+121074324,25766754,5
+claireqq,25766754,3
+46038064,25766754,4
+1892627,25766754,5
+133380603,25766754,3
+42646716,25766754,5
+Cliaoliao,25766754,4
+62582526,25766754,4
+48774263,25766754,3
+twooneseven,25766754,4
+chenjinjin,25766754,5
+littleshy,25766754,4
+70990506,25766754,4
+133572043,25766754,4
+45935605,25766754,4
+Yo-Yo-Hoo,25766754,5
+shelleyhsu,25766754,4
+kfchu,25766754,4
+34524908,25766754,4
+77629279,25766754,4
+56421063,25766754,4
+laikunhuang,25766754,5
+63005451,25766754,4
+41651647,25766754,5
+68277125,25766754,3
+2203673,25766754,-1
+56376401,25766754,5
+127569899,25766754,5
+51479811,25766754,4
+junefirst,25766754,5
+95760379,25766754,5
+50249739,25766754,5
+pannzh,25766754,4
+ys1013,25766754,3
+136887989,25766754,4
+3898330,25766754,4
+cocojamboo,25766754,5
+53833067,25766754,4
+48855413,25766754,4
+momoD,25766754,4
+47717336,25766754,5
+134198005,25766754,4
+damobao,25766754,3
+64859489,25766754,5
+1105624,25766754,4
+LucienLorca,25766754,4
+49898736,25766754,4
+58982615,25766754,4
+67235309,25766754,4
+89793235,25766754,5
+49107061,25766754,5
+46920813,25766754,4
+yangqiaohe,25766754,3
+neo_provence,25766754,5
+82990219,25766754,5
+isheldon,25766754,5
+3410802,25766754,5
+63531003,25766754,5
+2733941,25766754,3
+kelvinshaw,25766754,3
+cangbaicanku,25766754,5
+59442791,25766754,4
+pipi413,25766754,4
+38924619,25766754,5
+avro,25766754,4
+55817697,25766754,4
+58141531,25766754,5
+zasu1100412,25766754,2
+81404706,25766754,4
+MaxinAn,25766754,3
+75118769,25766754,5
+69196405,25766754,4
+43708089,25766754,4
+62210177,25766754,5
+wanfangyinanzi,25766754,3
+whisaly,25766754,3
+zementary,25766754,2
+2614125,25766754,4
+61175135,25766754,5
+eris,25766754,5
+84418105,25766754,-1
+54389613,25766754,4
+pussyyy,25766754,4
+wackdudu,25766754,5
+2174443,25766754,5
+xiaopang1106,25766754,4
+109381843,25766754,4
+66057217,25766754,4
+47849453,25766754,3
+xianxianchen,25766754,3
+52867875,25766754,5
+63565906,25766754,4
+Cherry.Pluto,25766754,5
+laomo,25766754,4
+67364205,25766754,5
+2414691,25766754,4
+evahsu,25766754,4
+wangzhy,25766754,3
+102938445,25766754,4
+celile,25766754,5
+2140159,25766754,5
+mountainriver,25766754,3
+1900968,25766754,5
+echo7forest,25766754,3
+50774706,25766754,3
+124107116,25766754,5
+43297403,25766754,5
+4369388,25766754,5
+46060990,25766754,5
+HYGUY,25766754,4
+68664261,25766754,4
+tildali1214,25766754,5
+wayneZ_z,25766754,5
+YuSu,25766754,4
+49308797,25766754,4
+katiachen,25766754,5
+3290815,25766754,5
+63033488,25766754,5
+59353238,25766754,4
+abbyrong,25766754,4
+90961062,25766754,4
+kiki204629,25766754,4
+KUBRICK2OO1,25766754,3
+53722280,25766754,4
+136454222,25766754,4
+35342547,25766754,5
+76599061,25766754,5
+66178513,25766754,3
+64880714,25766754,3
+wyfar,25766754,5
+52561499,25766754,4
+joecharade,25766754,5
+110121611,25766754,4
+Grey1128,25766754,-1
+68699271,25766754,4
+54770734,25766754,4
+juwujian,25766754,4
+29624274,25766754,5
+48690655,25766754,3
+51939738,25766754,4
+starstargoo,25766754,5
+HL0919,25766754,4
+63723763,25766754,4
+67843912,25766754,3
+xusisu,25766754,3
+67615408,25766754,4
+41686939,25766754,1
+70278597,25766754,3
+46983520,25766754,5
+JustStayReal,25766754,5
+4190834,25766754,4
+4082427,25766754,5
+yoaremysunshine,25766754,4
+Smeagol,25766754,4
+70794815,25766754,2
+allblue,25766754,3
+guavashine,25766754,3
+45522327,25766754,5
+46570535,25766754,4
+52433144,25766754,3
+130464213,25766754,4
+82243464,25766754,5
+104008588,25766754,5
+134103385,25766754,4
+oweuuu,25766754,-1
+biteorange,25766754,5
+28170509,25766754,4
+39945204,25766754,4
+2106137,25766754,-1
+48286955,25766754,4
+2761282,25766754,3
+huamogu,25766754,-1
+77774632,25766754,4
+56024205,25766754,5
+2670240,25766754,4
+66016685,25766754,-1
+59553409,25766754,5
+59553409,25766754,5
+wolovefreedom,25766754,3
+81316047,25766754,4
+yomaybe,25766754,4
+nimonnwang,25766754,4
+7971587,25766754,5
+75043360,25766754,3
+58119895,25766754,4
+89700756,25766754,4
+63166175,25766754,5
+sxy921026,25766754,4
+51592058,25766754,3
+ka15ir,25766754,5
+66174740,25766754,-1
+sherry058,25766754,4
+xu77,25766754,4
+45396935,25766754,5
+yujinwen,25766754,4
+4896950,25766754,3
+106570148,25766754,4
+106570148,25766754,4
+16522114,25766754,5
+lanup,25766754,4
+wsyzoscar,25766754,5
+41031427,25766754,5
+kevin_lu1001,25766754,4
+54166163,25766754,4
+134864468,25766754,4
+74438094,25766754,4
+liushengjing,25766754,4
+122128201,25766754,5
+48945215,25766754,5
+yi-zi,25766754,5
+christear,25766754,4
+toonan,25766754,5
+52622213,25766754,5
+2085918,25766754,4
+weexf,25766754,4
+kalashnikov,25766754,5
+128090900,25766754,3
+60131064,25766754,5
+58040832,25766754,5
+115623103,25766754,4
+45982566,25766754,5
+122648938,25766754,5
+63965908,25766754,-1
+iceak,25766754,-1
+116284858,25766754,4
+71929336,25766754,3
+matchbox,25766754,4
+88439681,25766754,4
+102607701,25766754,1
+58012559,25766754,4
+Ranfeg,25766754,-1
+125218552,25766754,4
+59571520,25766754,3
+chris_Cody,25766754,5
+40223789,25766754,5
+67226794,25766754,3
+61797915,25766754,5
+Armande,25766754,4
+32867787,25766754,4
+57367354,25766754,4
+xiaoiou,25766754,4
+70586246,25766754,3
+121946361,25766754,5
+1587535,25766754,5
+57489804,25766754,5
+tianranzijiegou,25766754,4
+57607047,25766754,5
+naturalvoice,25766754,5
+88236856,25766754,4
+58888075,25766754,5
+104261144,25766754,3
+Musaiki,25766754,-1
+Charlotte.Q,25766754,4
+bearblindman,25766754,5
+Cheeranita,25766754,5
+106663926,25766754,5
+114422491,25766754,5
+nanzang,25766754,5
+evernever,25766754,4
+hljmsfy,25766754,5
+nevertori,25766754,3
+foleyfan,25766754,4
+cazze,25766754,-1
+20811878,25766754,5
+33462697,25766754,5
+clever_trick,25766754,5
+60406508,25766754,4
+ELSIE627,25766754,3
+42539686,25766754,5
+62420028,25766754,4
+70930463,25766754,4
+3682487,25766754,3
+56711007,25766754,2
+3759700,25766754,4
+airan712,25766754,4
+45238478,25766754,4
+50587917,25766754,5
+136772622,25766754,4
+78966902,25766754,4
+44041767,25766754,5
+68366606,25766754,4
+aspira,25766754,5
+89313005,25766754,4
+101504179,25766754,4
+csp,25766754,-1
+carytrading,25766754,3
+Nokia95,25766754,4
+54612022,25766754,5
+52333341,25766754,3
+leanjon,25766754,5
+7987819,25766754,5
+kp81ndlf,25766754,4
+3529035,25766754,4
+63612050,25766754,4
+62498830,25766754,5
+52529736,25766754,5
+p2165,25766754,4
+lesc,25766754,5
+xuyinaxxxxxxx,25766754,4
+77092352,25766754,4
+tuzichiluobo,25766754,3
+128915580,25766754,4
+3845314,25766754,4
+57139809,25766754,4
+zooyam,25766754,5
+4203960,25766754,4
+54688945,25766754,5
+takahashili,25766754,4
+53269895,25766754,4
+113050393,25766754,5
+14407650,25766754,5
+aircentee,25766754,5
+3409499,25766754,4
+3547067,25766754,4
+supermodified,25766754,3
+124640229,25766754,3
+58217178,25766754,4
+51477202,25766754,4
+tdrdmad,25766754,4
+57723007,25766754,-1
+hanhancool,25766754,4
+28170948,25766754,4
+36980568,25766754,4
+mingming1124530,25766754,4
+62442761,25766754,5
+55700551,25766754,4
+124288748,25766754,4
+47529528,25766754,5
+btone0808,25766754,2
+feiqilin,25766754,5
+peiyue,25766754,5
+D_mon.,25766754,4
+nemoprincess,25766754,-1
+65916785,25766754,4
+56002676,25766754,-1
+45048645,25766754,4
+46895845,25766754,5
+dumplinface,25766754,5
+61272579,25766754,5
+wearewewere,25766754,5
+51462538,25766754,3
+xiaoxintu,25766754,4
+106347535,25766754,4
+128169347,25766754,5
+63622302,25766754,5
+67297999,25766754,5
+yeeeeeee,25766754,4
+2760910,25766754,4
+iuheuxnehc,25766754,4
+qlvtu,25766754,5
+vinra,25766754,3
+42951565,25766754,5
+65907866,25766754,4
+hikirres,25766754,5
+vagui,25766754,4
+44652454,25766754,5
+119281931,25766754,3
+24274750,25766754,5
+52840366,25766754,4
+58759380,25766754,5
+50378172,25766754,5
+blueraindrop,25766754,4
+tangsongsong,25766754,4
+132206217,25766754,5
+111863017,25766754,4
+1806463,25766754,4
+2317013,25766754,5
+99117906,25766754,4
+64068628,25766754,4
+83140683,25766754,4
+hahatedan,25766754,3
+45484348,25766754,4
+48770075,25766754,5
+53908274,25766754,5
+jbecks,25766754,3
+52810889,25766754,4
+50570726,25766754,5
+63372250,25766754,-1
+54410090,25766754,4
+szk13731584239,25766754,4
+65366516,25766754,3
+36617014,25766754,5
+134362348,25766754,4
+99932920,25766754,5
+40195954,25766754,3
+heylilywu,25766754,5
+sarahvong,25766754,4
+25740506,25766754,4
+silvanelf,25766754,4
+49519192,25766754,5
+1898022,25766754,5
+8523675,25766754,5
+53418739,25766754,5
+81850559,25766754,4
+104453172,25766754,5
+116718171,25766754,5
+onlyjtl,25766754,4
+Huxinghang510,25766754,4
+42368147,25766754,3
+47413356,25766754,5
+Oliver_Lu,25766754,4
+57180102,25766754,3
+87035372,25766754,4
+kejialin,25766754,5
+AutismMANDY,25766754,4
+89972315,25766754,5
+87651171,25766754,2
+47845902,25766754,5
+2191672,25766754,5
+71806570,25766754,3
+80797429,25766754,5
+xingbienan,25766754,5
+cyansugar,25766754,3
+flanker27,25766754,4
+cijfer,25766754,5
+115786111,25766754,3
+Wsuansuan,25766754,4
+detruire,25766754,5
+2600693,25766754,3
+75812054,25766754,4
+8459513,25766754,4
+41083928,25766754,3
+3671533,25766754,4
+80691452,25766754,4
+77531616,25766754,-1
+1159296,25766754,3
+67575009,25766754,4
+julingshen,25766754,5
+45286644,25766754,4
+deactivate,25766754,5
+2237357,25766754,5
+51047226,25766754,5
+aprilbluesky,25766754,4
+96044338,25766754,4
+92298233,25766754,4
+62478487,25766754,4
+85559516,25766754,4
+2596592,25766754,2
+cqyyAyy,25766754,5
+121002205,25766754,3
+2228783,25766754,4
+acidream,25766754,5
+136738123,25766754,-1
+63685423,25766754,4
+80319931,25766754,4
+136736172,25766754,3
+73312122,25766754,4
+1923438,25766754,5
+124819645,25766754,5
+54926735,25766754,5
+96514775,25766754,4
+tang516,25766754,5
+68016906,25766754,5
+65442139,25766754,3
+57853791,25766754,-1
+duduxiongzhifu,25766754,5
+chulditector,25766754,5
+59774628,25766754,3
+50028709,25766754,3
+101206978,25766754,5
+MuddyKing,25766754,5
+seven7orange,25766754,4
+127606527,25766754,5
+FanTastic-Y,25766754,4
+56922790,25766754,5
+91504508,25766754,4
+cappuccino-jl,25766754,2
+qinxiaoyiqu,25766754,5
+ameba,25766754,-1
+luciddreamlq,25766754,5
+4617038,25766754,4
+4208005,25766754,4
+50900048,25766754,3
+yancaotian,25766754,3
+Youandi4,25766754,-1
+ILWTFT,25766754,5
+psychodying,25766754,5
+60222551,25766754,4
+67679868,25766754,4
+mumurose,25766754,3
+iSaw11021,25766754,5
+58369888,25766754,4
+nangle,25766754,3
+84526752,25766754,4
+muxiaoxu,25766754,4
+fanfouxiong,25766754,4
+coldmountain_,25766754,3
+100582359,25766754,4
+difeijing,25766754,1
+ninquelote,25766754,5
+ceh19930603,25766754,4
+46891725,25766754,5
+71624097,25766754,4
+44844360,25766754,5
+48944601,25766754,4
+classical622,25766754,4
+3832060,25766754,-1
+89984750,25766754,5
+xilouchen,25766754,5
+46815070,25766754,3
+RIVERT,25766754,4
+37551097,25766754,4
+66409658,25766754,5
+56160592,25766754,4
+An.s,25766754,5
+89852120,25766754,4
+63422177,25766754,4
+winnie0212,25766754,3
+2716560,25766754,5
+4590078,25766754,4
+46738101,25766754,3
+43072400,25766754,-1
+Hekki,25766754,4
+57869776,25766754,5
+48198502,25766754,5
+ZY-Monster,25766754,2
+dengxian123,25766754,4
+neverland_qq,25766754,5
+61014893,25766754,4
+vividtime,25766754,4
+anthony1123,25766754,5
+heptahedron,25766754,4
+28681555,25766754,4
+2223397,25766754,5
+bartender,25766754,-1
+ecane,25766754,4
+61426958,25766754,4
+Edward_Elric,25766754,5
+Librebing,25766754,-1
+LunaticSothis,25766754,4
+wangdoudou20,25766754,4
+yinkun,25766754,5
+mrfofo,25766754,4
+63046201,25766754,4
+zhuerba1,25766754,4
+51564570,25766754,5
+101332587,25766754,3
+101332587,25766754,3
+mackalex,25766754,3
+18586571,25766754,4
+49539687,25766754,4
+44232292,25766754,4
+33528664,25766754,4
+55439926,25766754,4
+47897617,25766754,3
+70870817,25766754,3
+58847654,25766754,5
+mrtall,25766754,2
+68710052,25766754,4
+1845330,25766754,3
+66224726,25766754,3
+72792251,25766754,3
+3319103,25766754,4
+troublemakerjoy,25766754,5
+92468807,25766754,4
+74814512,25766754,3
+kekeximi,25766754,5
+47874303,25766754,5
+66992293,25766754,4
+2272740,25766754,5
+34381919,25766754,5
+119883443,25766754,4
+aerosky,25766754,3
+unarcenciel,25766754,4
+beatrice_bei,25766754,4
+50782420,25766754,5
+74475236,25766754,4
+56523090,25766754,4
+Richardzsj-FA,25766754,4
+ruanshusheng,25766754,3
+72685963,25766754,4
+bloodykiss,25766754,4
+plastictreeman,25766754,3
+bigmiao,25766754,5
+37571281,25766754,-1
+et2o,25766754,4
+3226958,25766754,3
+zhangxingshen,25766754,4
+67580337,25766754,-1
+Gerrard_8,25766754,4
+48161525,25766754,3
+wywapple,25766754,4
+btr,25766754,3
+45345873,25766754,5
+53453211,25766754,3
+2692827,25766754,5
+YuRAY,25766754,3
+fakeyouout,25766754,5
+cloverpipo,25766754,5
+56596051,25766754,-1
+34342480,25766754,5
+49411879,25766754,5
+vividodo,25766754,4
+viona,25766754,5
+51974103,25766754,3
+joywuyan,25766754,5
+alan_fanfan,25766754,4
+alan_fanfan,25766754,4
+lovelikecissy,25766754,4
+loveandfreedom,25766754,-1
+Suixinsin,25766754,3
+t_--_,25766754,5
+tricky_V,25766754,3
+48453695,25766754,4
+samantha-jy,25766754,4
+anchorhere,25766754,5
+ayeyyluoo,25766754,4
+49733637,25766754,3
+pogostar,25766754,3
+18851959,25766754,3
+Sonique_Pierre,25766754,5
+47591131,25766754,5
+blueleaf,25766754,5
+52567562,25766754,-1
+dddoushabao,25766754,4
+fxvivian,25766754,4
+Sammyzheng,25766754,4
+bihan,25766754,3
+petercat,25766754,2
+AkiranoAsahi,25766754,5
+89763899,25766754,3
+vermouth,25766754,4
+erickyee,25766754,4
+zhounanshen,25766754,5
+strawberryhater,25766754,5
+117836887,25766754,4
+61173294,25766754,4
+58905615,25766754,5
+lemons,25766754,4
+59556078,25766754,4
+30885179,25766754,4
+oursonkuma,25766754,4
+53229994,25766754,4
+36964319,25766754,5
+earthroom,25766754,4
+Wegmarken27,25766754,4
+2510654,25766754,3
+44862479,25766754,3
+43909634,25766754,5
+55694141,25766754,5
+Jigsaw709,25766754,3
+68406313,25766754,3
+laylasn,25766754,5
+ciaoxu,25766754,5
+54668301,25766754,4
+heywendi,25766754,-1
+81637377,25766754,5
+4141310,25766754,-1
+Pabalee,25766754,4
+mrbrightside,25766754,5
+yangyixiu1218,25766754,5
+binben,25766754,5
+44482309,25766754,5
+79865158,25766754,4
+52540982,25766754,5
+49893438,25766754,5
+67878115,25766754,4
+49324662,25766754,4
+57437712,25766754,3
+68798188,25766754,4
+misssisi,25766754,2
+74054203,25766754,4
+35364683,25766754,5
+79272694,25766754,4
+63403641,25766754,4
+downisup,25766754,4
+loveirina,25766754,4
+39628944,25766754,-1
+88652488,25766754,4
+alessiagu,25766754,4
+bluewindDiDi,25766754,2
+Scorpio_lxs,25766754,4
+66485054,25766754,5
+cynyhia,25766754,3
+youngtoo,25766754,3
+75953505,25766754,4
+59253003,25766754,-1
+45712857,25766754,2
+eddeeee,25766754,5
+Jacandrews,25766754,5
+53339781,25766754,4
+moesolo,25766754,5
+69247286,25766754,5
+diorsunrise,25766754,4
+ipodmelody,25766754,4
+clarice0406,25766754,5
+62749551,25766754,4
+conanemily,25766754,4
+4239908,25766754,4
+66625967,25766754,5
+58107870,25766754,-1
+4154905,25766754,5
+57923940,25766754,4
+jaslee,25766754,3
+52649596,25766754,5
+47974584,25766754,5
+shizhewenmonica,25766754,2
+79770724,25766754,3
+82227481,25766754,5
+sai27,25766754,5
+MOVIE--KO,25766754,4
+119270472,25766754,5
+80164004,25766754,3
+spleenloene,25766754,3
+4335163,25766754,4
+bugsula,25766754,5
+BillyBones,25766754,4
+102891153,25766754,4
+orsettp,25766754,4
+Candy_Can,25766754,4
+3228228,25766754,-1
+yeyinihao,25766754,-1
+fortblk,25766754,4
+piafei,25766754,3
+41419698,25766754,4
+CaptBastard,25766754,4
+clementinetsu,25766754,4
+39299123,25766754,3
+53559432,25766754,4
+66766065,25766754,5
+babydog,25766754,-1
+27675083,25766754,4
+pigeye,25766754,4
+erhuyouxuan,25766754,5
+Bittersweetlove,25766754,4
+ChicWeirdo,25766754,4
+samsyu,25766754,3
+56194836,25766754,4
+champignon_lou,25766754,4
+1080372,25766754,4
+61492149,25766754,4
+aixiaoni,25766754,5
+rajorAn,25766754,3
+53247764,25766754,5
+BBmachtalles,25766754,-1
+magic1029,25766754,4
+michaelswift,25766754,5
+michaelswift,25766754,5
+TERRYBEAR,25766754,4
+lengleng,25766754,4
+4221061,25766754,4
+yangshuangblue,25766754,4
+kydwang,25766754,4
+51660372,25766754,5
+nbot,25766754,5
+yangui,25766754,4
+RainySahara,25766754,3
+51830149,25766754,-1
+terenceyibo,25766754,5
+yuantown,25766754,4
+reiwureka,25766754,5
+everlastingEGO,25766754,5
+1867292,25766754,-1
+96062684,25766754,4
+62312013,25766754,2
+35575281,25766754,3
+tree-on-feet,25766754,5
+80082541,25766754,4
+67516737,25766754,5
+45536018,25766754,3
+52554533,25766754,5
+53644977,25766754,5
+2979840,25766754,5
+66968677,25766754,4
+34347136,25766754,4
+raychau,25766754,5
+lywang,25766754,5
+helenhong,25766754,3
+47066484,25766754,3
+justdust,25766754,5
+zhongshanaoli,25766754,4
+58283106,25766754,4
+leon_howe,25766754,-1
+49958643,25766754,3
+psycheeee,25766754,4
+eamontoday,25766754,5
+enchanted13,25766754,5
+stella_zhou,25766754,5
+34009269,25766754,4
+flxjp,25766754,5
+5754772,25766754,-1
+46033668,25766754,4
+36755564,25766754,-1
+73629720,25766754,5
+78577740,25766754,-1
+85058604,25766754,4
+48520263,25766754,4
+135893024,25766754,4
+roobaozi,25766754,5
+1271079,25766754,4
+75262190,25766754,5
+80004400,25766754,3
+50557378,25766754,5
+sangjiao,25766754,4
+lorraine7,25766754,2
+lily_leung,25766754,4
+luo_zi,25766754,4
+1095652,25766754,4
+119699596,25766754,4
+Iamzhexuan,25766754,4
+79970005,25766754,5
+88997815,25766754,1
+elainefish,25766754,4
+54083120,25766754,4
+eefee,25766754,3
+50075764,25766754,3
+1339249,25766754,4
+wllh2345,25766754,3
+63174933,25766754,4
+changxiaobuzhi,25766754,-1
+88033603,25766754,4
+qinyouxuan,25766754,5
+bzfdu,25766754,4
+63283343,25766754,5
+29267155,25766754,5
+128106765,25766754,4
+75869572,25766754,4
+tristanfree,26393561,4
+46789389,26393561,-1
+80429780,26393561,5
+58105572,26393561,4
+77583980,26393561,4
+sinclair,26393561,4
+73418795,26393561,5
+silenthinker,26393561,4
+CHEN-JC,26393561,5
+benbenxjy,26393561,2
+63989347,26393561,5
+2268415,26393561,5
+1651604,26393561,4
+56187274,26393561,4
+90736306,26393561,5
+wakin1707,26393561,4
+32643655,26393561,5
+60046251,26393561,-1
+33020235,26393561,3
+72914221,26393561,5
+130370822,26393561,5
+68491765,26393561,4
+1688106,26393561,5
+72866809,26393561,5
+137626428,26393561,5
+127283930,26393561,5
+xianzz,26393561,5
+83357048,26393561,4
+48771939,26393561,5
+76543597,26393561,4
+64598652,26393561,5
+34217360,26393561,3
+61898774,26393561,4
+132132858,26393561,5
+61775961,26393561,4
+121679794,26393561,4
+cloudcity,26393561,5
+133253077,26393561,5
+gjx189,26393561,5
+35400019,26393561,5
+77868082,26393561,-1
+99707810,26393561,5
+41813819,26393561,-1
+waynezw,26393561,5
+curemyself,26393561,4
+60977504,26393561,5
+77586152,26393561,5
+yelling2012,26393561,2
+54604226,26393561,5
+88327391,26393561,5
+deerpark,26393561,5
+65361718,26393561,4
+sheisj,26393561,5
+liao_le,26393561,3
+king4solomon,26393561,4
+52800930,26393561,5
+48742114,26393561,4
+3089552,26393561,5
+x-inter,26393561,3
+64884887,26393561,5
+41860349,26393561,5
+28291656,26393561,5
+laurellake,26393561,4
+hechenxi,26393561,5
+19266682,26393561,5
+43982125,26393561,4
+yuanliu,26393561,3
+50065002,26393561,5
+laurayyw,26393561,3
+57791239,26393561,4
+58764888,26393561,4
+Senhide,26393561,5
+hyhmq,26393561,5
+102069788,26393561,5
+w-leaf,26393561,4
+48856056,26393561,5
+90559300,26393561,5
+89016961,26393561,3
+135662436,26393561,5
+52769292,26393561,5
+42958804,26393561,3
+praguenight,26393561,4
+77001369,26393561,5
+40141522,26393561,4
+45947231,26393561,4
+3535619,26393561,4
+89725563,26393561,5
+62646421,26393561,5
+2770592,26393561,5
+93866634,26393561,4
+3571898,26393561,4
+79558591,26393561,4
+40401323,26393561,5
+62291982,26393561,5
+69572287,26393561,4
+stellacc,26393561,2
+33042240,26393561,5
+81445026,26393561,4
+131496810,26393561,5
+138176843,26393561,5
+towne,26393561,5
+48148912,26393561,4
+2629202,26393561,4
+45005125,26393561,3
+cuacfxx,26393561,4
+59101445,26393561,4
+michaelhuan,26393561,5
+78795036,26393561,5
+paradise624,26393561,4
+93500334,26393561,4
+sachi227,26393561,2
+122258109,26393561,5
+sinxu,26393561,5
+64707906,26393561,4
+53789124,26393561,4
+91893507,26393561,2
+59741946,26393561,1
+70006917,26393561,5
+104462145,26393561,-1
+21767774,26393561,4
+69807491,26393561,5
+phoebeface,26393561,-1
+4087422,26393561,5
+72381227,26393561,4
+pi3_14159265358,26393561,4
+127199111,26393561,5
+bennyjoon,26393561,4
+48226644,26393561,5
+63244878,26393561,4
+3392902,26393561,-1
+84462607,26393561,5
+79718486,26393561,5
+106548711,26393561,5
+57024226,26393561,4
+62608491,26393561,4
+47294835,26393561,4
+1909194,26393561,5
+42939013,26393561,5
+69610684,26393561,5
+62667852,26393561,4
+125849315,26393561,4
+chidaoshu,26393561,5
+40924538,26393561,5
+67681966,26393561,1
+35999889,26393561,5
+45148627,26393561,5
+70805035,26393561,5
+62667107,26393561,4
+3130809,26393561,4
+4096494,26393561,3
+64124886,26393561,3
+46718288,26393561,4
+68675748,26393561,4
+47480391,26393561,5
+68100167,26393561,4
+49987495,26393561,5
+74877561,26393561,4
+137966992,26393561,5
+123554239,26393561,5
+61443956,26393561,5
+39360207,26393561,5
+50341327,26393561,5
+55929307,26393561,5
+120625036,26393561,5
+sunset1208,26393561,3
+2725757,26393561,4
+4100649,26393561,4
+daixia,26393561,5
+68941794,26393561,4
+2015317,26393561,3
+atitata,26393561,4
+punk90,26393561,5
+amyammy,26393561,4
+121809992,26393561,5
+kid007spy,26393561,5
+1454015,26393561,4
+47543330,26393561,5
+59398879,26393561,4
+63183447,26393561,4
+40116755,26393561,5
+shepherded,26393561,2
+jin_yu,26393561,4
+82220902,26393561,5
+xiaoxu820,26393561,4
+77549180,26393561,5
+some_Ji,26393561,5
+52125579,26393561,4
+53426437,26393561,3
+papa1968,26393561,5
+90751149,26393561,4
+youeqian,26393561,4
+68632804,26393561,4
+77691678,26393561,4
+63249970,26393561,5
+a5045402,26393561,3
+jackoldbear,26393561,4
+48003781,26393561,5
+47583585,26393561,4
+63636223,26393561,5
+candy_gg,26393561,5
+40207458,26393561,5
+66858038,26393561,5
+102413399,26393561,5
+gary3000,26393561,5
+52462524,26393561,5
+66423049,26393561,4
+jilltomato,26393561,5
+vivi112,26393561,5
+AdaDream,26393561,3
+68746215,26393561,4
+miss.h,26393561,4
+43120723,26393561,5
+72061303,26393561,4
+vinjun,26393561,4
+64578424,26393561,5
+kedoumili,26393561,4
+68238165,26393561,5
+biduan,26393561,5
+51766367,26393561,5
+104433254,26393561,5
+Kumamonnn,26393561,4
+lbc21,26393561,5
+130817915,26393561,5
+130419426,26393561,5
+29662178,26393561,5
+128991169,26393561,3
+langdd_002,26393561,5
+liuyuntianma,26393561,5
+dorothylee0406,26393561,3
+Dasiycat,26393561,4
+viviwanghoho,26393561,3
+shaoyi,26393561,4
+98716199,26393561,4
+41986432,26393561,4
+2401613,26393561,3
+veronicavee,26393561,5
+linloxxi,26393561,5
+yejin,26393561,4
+67266475,26393561,5
+70467256,26393561,5
+96869610,26393561,5
+127161571,26393561,4
+4913683,26393561,2
+46854076,26393561,5
+59158037,26393561,4
+xiaocaomeifay,26393561,5
+gdzdb,26393561,5
+5834460,26393561,5
+love-99,26393561,5
+kisscat890505,26393561,5
+60994756,26393561,5
+daomeidi,26393561,4
+Eros0922,26393561,5
+50614819,26393561,5
+3447044,26393561,5
+82501377,26393561,4
+anyi1314,26393561,5
+68959419,26393561,5
+62309312,26393561,5
+ttoohh,26393561,2
+25817965,26393561,5
+72752391,26393561,5
+KuanmA,26393561,4
+54984584,26393561,5
+59047174,26393561,4
+133162014,26393561,5
+66696917,26393561,4
+51874201,26393561,5
+79684723,26393561,4
+75905195,26393561,5
+68197730,26393561,3
+tiantianyicheng,26393561,5
+teaword,26393561,5
+qgw2050,26393561,5
+55933493,26393561,5
+71890378,26393561,4
+2426372,26393561,3
+whiteout,26393561,5
+91851250,26393561,5
+3309771,26393561,5
+yandyandy,26393561,5
+59606439,26393561,5
+72791420,26393561,5
+68167260,26393561,4
+59433731,26393561,5
+88659862,26393561,4
+67387391,26393561,4
+63118459,26393561,4
+urhero,26393561,4
+2812599,26393561,5
+4098529,26393561,5
+50679453,26393561,4
+125495885,26393561,3
+48849885,26393561,5
+lyntsubasa,26393561,5
+ilearner,26393561,4
+akxs,26393561,4
+47786256,26393561,5
+55617883,26393561,5
+2526442,26393561,5
+90455856,26393561,5
+76635599,26393561,3
+84721407,26393561,5
+Smeagol,26393561,5
+28373638,26393561,5
+61624373,26393561,5
+nightw1sh,26393561,4
+oyxp,26393561,4
+79744808,26393561,5
+78895910,26393561,3
+xiaofeixia1108,26393561,4
+1817816,26393561,4
+3862252,26393561,4
+wish430,26393561,4
+4005082,26393561,4
+61413214,26393561,5
+130295473,26393561,4
+51688901,26393561,5
+74772518,26393561,5
+53049553,26393561,4
+84961343,26393561,5
+78370041,26393561,5
+57821710,26393561,4
+foreverjc,26393561,4
+84453825,26393561,5
+3880844,26393561,5
+3439529,26393561,5
+daijun1988,26393561,5
+135409026,26393561,4
+3341865,26393561,4
+68592556,26393561,5
+hill__,26393561,4
+37959469,26393561,4
+MoviesandI,26393561,3
+41930212,26393561,5
+108087724,26393561,4
+30378348,26393561,4
+98249073,26393561,5
+6474153,26393561,4
+122932689,26393561,4
+15131029,26393561,5
+luxe,26393561,4
+ususrefen,26393561,5
+48048904,26393561,5
+sunflowersp,26393561,3
+129149711,26393561,4
+92853414,26393561,5
+41574927,26393561,5
+53301589,26393561,3
+57762260,26393561,5
+67351514,26393561,5
+4611498,26393561,5
+yi713q,26393561,5
+42646716,26393561,4
+46997070,26393561,5
+70932292,26393561,4
+mysdes,26393561,5
+53562935,26393561,5
+20885358,26393561,5
+zhy650218,26393561,5
+alianhei,26393561,5
+114689592,26393561,4
+66339819,26393561,5
+44292314,26393561,5
+57903046,26393561,4
+niushansuan313,26393561,4
+ziquan827,26393561,5
+54161411,26393561,4
+2510758,26393561,5
+flyindance_fei,26393561,5
+59995660,26393561,5
+qingruoli,26393561,5
+64189382,26393561,3
+2107509,26393561,5
+2467246,26393561,5
+75205786,26393561,5
+50702384,26393561,4
+50878855,26393561,5
+59205597,26393561,5
+59158892,26393561,3
+53382678,26393561,5
+79349178,26393561,5
+50709158,26393561,5
+84755665,26393561,4
+65014224,26393561,5
+hooichueng,26393561,5
+51774042,26393561,5
+50015344,26393561,5
+133538535,26393561,5
+DKfeixiang,26393561,5
+21355250,26393561,5
+ddkkh,26393561,3
+93602980,26393561,5
+58086381,26393561,5
+4396937,26393561,4
+38606728,26393561,5
+124435221,26393561,4
+doremicowcow,26393561,5
+walktodream,26393561,4
+36138229,26393561,5
+74368485,26393561,5
+53187686,26393561,5
+aiwengfan,26393561,5
+5642184,26393561,5
+vivianbeauty,26393561,5
+67720268,26393561,4
+83089085,26393561,5
+85356798,26393561,5
+116054829,26393561,5
+3533040,26393561,4
+heyflower,26393561,5
+36669166,26393561,3
+128643925,26393561,4
+2030903,26393561,5
+24943431,26393561,3
+71121390,26393561,5
+longnel,26393561,4
+41855483,26393561,-1
+72144789,26393561,5
+underthebridge,26393561,4
+45822820,26393561,4
+3641686,26393561,5
+mmmisa,26393561,4
+akiisajunk,26393561,5
+47593124,26393561,3
+28183442,26393561,5
+43730319,26393561,3
+124573261,26393561,5
+82022775,26393561,4
+43777483,26393561,5
+2933839,26393561,3
+136720070,26393561,4
+kinobear,26393561,4
+QL_lucky12,26393561,5
+76356233,26393561,5
+67791533,26393561,5
+95571541,26393561,5
+119224522,26393561,4
+zod798,26393561,5
+72356597,26393561,4
+57027781,26393561,3
+4606888,26393561,5
+108972448,26393561,5
+45820206,26393561,4
+137206904,26393561,3
+44312238,26393561,5
+95358957,26393561,5
+Jacqueline.,26393561,3
+3605831,26393561,5
+48041444,26393561,5
+jakehkj,26393561,3
+athenasaga,26393561,5
+hetaodeyanjing,26393561,5
+54430945,26393561,4
+51855205,26393561,4
+pianohood,26393561,4
+58954455,26393561,5
+minminye,26393561,5
+61015297,26393561,5
+87719224,26393561,4
+dreamed,26393561,5
+39108497,26393561,4
+84872284,26393561,5
+49132390,26393561,4
+90695698,26393561,4
+40307616,26393561,4
+57443989,26393561,5
+2787180,26393561,5
+136715644,26393561,4
+63781183,26393561,4
+52269289,26393561,2
+snowyzhe,26393561,5
+3730936,26393561,5
+51265951,26393561,4
+56652624,26393561,5
+caicai1005,26393561,4
+71117694,26393561,5
+fishlittle,26393561,4
+44706331,26393561,5
+50348086,26393561,5
+Aamina-memory,26393561,5
+62591677,26393561,4
+80860113,26393561,4
+131560812,26393561,4
+130768840,26393561,5
+13871057,26393561,4
+81099804,26393561,5
+Show-_-,26393561,3
+Twdrop,26393561,5
+71575681,26393561,5
+moszz,26393561,5
+62571454,26393561,4
+Clarke,26393561,-1
+90543489,26393561,5
+99119028,26393561,5
+duguyuze,26393561,4
+tychebian,26393561,4
+qijiejieblue,26393561,5
+102328012,26393561,3
+50275832,26393561,5
+63454756,26393561,5
+seven35,26393561,5
+DEMO23,26393561,5
+65975444,26393561,4
+61223246,26393561,5
+23328638,26393561,5
+3028605,26393561,5
+tlgn0430,26393561,4
+4270186,26393561,5
+53890211,26393561,4
+sukuangllp,26393561,5
+12846871,26393561,5
+43576863,26393561,4
+shoose2525,26393561,5
+79852634,26393561,4
+77389927,26393561,5
+58318026,26393561,5
+121607916,26393561,1
+47362335,26393561,5
+ask4more,26393561,-1
+2218798,26393561,4
+2326661,26393561,5
+1867121,26393561,4
+132956245,26393561,4
+hughll,26393561,4
+SeanShepherd,26393561,5
+46039475,26393561,5
+72737390,26393561,4
+sheldonkao,26393561,4
+116027920,26393561,4
+jiaozhu2,26393561,5
+54350141,26393561,3
+58372248,26393561,5
+128156169,26393561,4
+wangchengji47,26393561,5
+3943144,26393561,5
+64770864,26393561,5
+44102290,26393561,4
+zhou33,26393561,4
+81998298,26393561,4
+40223789,26393561,3
+80066409,26393561,5
+MrsCC,26393561,3
+shdibas,26393561,5
+86248756,26393561,4
+61235459,26393561,3
+128643809,26393561,5
+120156023,26393561,5
+fpe99,26393561,5
+53652021,26393561,4
+47902744,26393561,5
+71202281,26393561,5
+67823605,26393561,5
+L.ccnightcat,26393561,4
+52480937,26393561,5
+50558551,26393561,5
+67205440,26393561,5
+61169740,26393561,5
+54162190,26393561,-1
+131187465,26393561,5
+4230441,26393561,5
+2908374,26393561,5
+hakuhaku,26393561,3
+67661678,26393561,5
+92355817,26393561,5
+2623711,26393561,4
+1768350,26393561,4
+33770789,26393561,5
+tianamber,26393561,5
+64083865,26393561,2
+55491733,26393561,3
+39491713,26393561,5
+136355734,26393561,5
+49568187,26393561,4
+59898887,26393561,5
+135643960,26393561,5
+59341748,26393561,5
+49550876,26393561,5
+73272016,26393561,5
+86955055,26393561,5
+58544371,26393561,5
+74169906,26393561,4
+89565486,26393561,4
+2364127,26393561,5
+emchan,26393561,4
+ceoimon,26393561,3
+nicdone,26393561,3
+mouliangliang,26393561,5
+hermesder,26393561,-1
+t-bag11,26393561,5
+teenteenteen,26393561,4
+51086058,26393561,4
+134674209,26393561,5
+62256684,26393561,5
+15183757,26393561,4
+33525277,26393561,4
+2752525,26393561,4
+pengBornToWin,26393561,5
+2742984,26393561,-1
+80157681,26393561,5
+Pinnsvin,26393561,5
+imatetsu,26393561,4
+35224934,26393561,5
+91473851,26393561,5
+56654883,26393561,4
+48502467,26393561,5
+37672067,26393561,4
+49358861,26393561,3
+liux5520,26393561,5
+IvyTsai,26393561,3
+11726147,26393561,-1
+101699165,26393561,4
+54272292,26393561,5
+89804270,26393561,4
+53405110,26393561,5
+69970746,26393561,5
+45477393,26393561,4
+2038447,26393561,-1
+32501368,26393561,4
+paparika,26393561,4
+Renaissance_w,26393561,4
+78730817,26393561,3
+4366766,26393561,4
+116138651,26393561,3
+Blue-Newair,26393561,3
+135393696,26393561,4
+47327312,26393561,4
+81130700,26393561,4
+133533083,26393561,3
+103734757,26393561,5
+antee,26393561,5
+22805239,26393561,5
+136910570,26393561,4
+42535832,26393561,4
+46113187,26393561,3
+50402097,26393561,4
+52098739,26393561,5
+67695770,26393561,5
+81999363,26393561,2
+108705565,26393561,5
+127973052,26393561,5
+65173707,26393561,5
+QQQQQQQla,26393561,5
+huahuo0612,26393561,5
+82629572,26393561,4
+shamoshuiping,26393561,3
+58358756,26393561,5
+122327681,26393561,5
+4157509,26393561,4
+72207702,26393561,4
+54926735,26393561,5
+49760036,26393561,5
+62504399,26393561,2
+chilla,26393561,5
+hljmsfy,26393561,3
+xinsunflower,26393561,5
+4500361,26393561,4
+103032395,26393561,4
+47037959,26393561,4
+shumilejo,26393561,4
+83675754,26393561,4
+babyron,26393561,5
+68551392,26393561,4
+56484149,26393561,3
+76508824,26393561,5
+kiffiz,26393561,4
+57281919,26393561,4
+44150563,26393561,5
+126349945,26393561,5
+4341731,26393561,3
+114398895,26393561,5
+98211226,26393561,5
+121047015,26393561,4
+73247451,26393561,4
+53154595,26393561,3
+100971207,26393561,5
+liajoy,26393561,5
+87469999,26393561,5
+cmhloveukulele,26393561,-1
+pandoranavi,26393561,4
+56766936,26393561,4
+70960863,26393561,4
+62874039,26393561,5
+81630912,26393561,5
+KGyeer,26393561,5
+53749024,26393561,4
+68521104,26393561,4
+encorepanda,26393561,3
+56223706,26393561,4
+47173504,26393561,4
+47632786,26393561,5
+1473191,26393561,5
+135610617,26393561,5
+62926087,26393561,5
+57775883,26393561,5
+120689172,26393561,4
+78589161,26393561,4
+55886490,26393561,5
+freebox,26393561,4
+124663073,26393561,5
+Sep.1,26393561,5
+renchang,26393561,3
+53560863,26393561,4
+124253429,26393561,5
+panda222,26393561,5
+shuang331,26393561,4
+66333721,26393561,5
+Ahang05,26393561,5
+1599051,26393561,5
+youtubunsei,26393561,5
+80999703,26393561,5
+soffie,26393561,4
+51999591,26393561,4
+soya43464983,26393561,5
+flower_hui,26393561,-1
+4058622,26393561,5
+xiaosaorui,26393561,5
+134097604,26393561,5
+119340847,26393561,5
+88097347,26393561,4
+88097347,26393561,4
+cocacolacat,26393561,3
+muzimisneil,26393561,2
+71997866,26393561,5
+136842545,26393561,4
+137221434,26393561,4
+70996426,26393561,3
+25927417,26393561,5
+60822457,26393561,4
+137505055,26393561,5
+45513879,26393561,5
+51965596,26393561,4
+120394498,26393561,5
+vincehwangcc,26393561,5
+120566787,26393561,4
+MA123456789,26393561,5
+130445057,26393561,3
+55457012,26393561,3
+90460111,26393561,4
+53275472,26393561,5
+64258587,26393561,5
+27035727,26393561,4
+45431775,26393561,4
+96799379,26393561,4
+48966304,26393561,5
+shadowshame,26393561,4
+57983938,26393561,5
+57629601,26393561,4
+3217100,26393561,4
+41959776,26393561,4
+dongguac10,26393561,5
+16452382,26393561,4
+pershingsay,26393561,4
+Ms.ZzZz,26393561,5
+2571976,26393561,5
+4594496,26393561,4
+92427949,26393561,5
+Iamzhexuan,26393561,5
+70296365,26393561,5
+la_ficine,26393561,3
+hanqiu1995,26393561,4
+130078321,26393561,4
+iamlidot,26393561,5
+liluoliluo,26393561,4
+4200336,26393561,4
+36556180,26393561,5
+qiangqiangzhang,26393561,4
+110929955,26393561,5
+49826646,26393561,5
+forever.yaya,26393561,4
+GIGILENUG,26393561,5
+100582359,26393561,2
+naigely,26393561,2
+mymiss,26393561,5
+6278260,26393561,5
+yihuiw,26393561,5
+41236968,26393561,5
+lyivy9032,26393561,3
+42237517,26393561,5
+kathychu,26393561,4
+2774375,26393561,4
+67059149,26393561,3
+strikeman,26393561,4
+zengmouren,26393561,4
+yny1014,26393561,4
+zerone1,26393561,5
+Jodiezhang,26393561,4
+nanashuai,26393561,4
+xl_douban,26393561,5
+DiannaZhang,26393561,4
+3745695,26393561,5
+137228882,26393561,5
+70406347,26393561,5
+137671530,26393561,5
+123273988,26393561,4
+87209971,26393561,4
+2677247,26393561,4
+4420210,26393561,5
+54749079,26393561,5
+green198641,26393561,3
+98015375,26393561,1
+51284624,26393561,5
+135928273,26393561,-1
+137679329,26393561,5
+unarcenciel,26393561,4
+104777463,26393561,5
+46655241,26393561,4
+50054232,26393561,4
+125988139,26393561,5
+49897445,26393561,5
+61874628,26393561,5
+45707909,26393561,4
+60474639,26393561,5
+81510171,26393561,5
+132994131,26393561,4
+luanweiwei,26393561,5
+62318575,26393561,5
+milkteaLayla,26393561,4
+4805946,26393561,5
+49283643,26393561,5
+135585747,26393561,5
+52337312,26393561,5
+42629232,26393561,5
+homedrama,26393561,3
+66437241,26393561,4
+go-marc,26393561,4
+48225270,26393561,5
+56035155,26393561,4
+40368947,26393561,4
+sonicyang,26393561,5
+63399051,26393561,5
+56506584,26393561,5
+40012594,26393561,5
+97515933,26393561,5
+115185041,26393561,5
+4475163,26393561,5
+love52zht,26393561,5
+57340680,26393561,4
+123250951,26393561,5
+dongkuichen,26393561,4
+linglongwunv,26393561,4
+49270804,26393561,5
+52950213,26393561,5
+fm4714,26393561,3
+124618424,26393561,4
+43910063,26393561,4
+50217070,26393561,5
+68091051,26393561,2
+67561366,26393561,4
+4324027,26393561,5
+34557052,26393561,3
+126065071,26393561,5
+DKJessica,26393561,5
+89870657,26393561,5
+53316547,26393561,4
+51909890,26393561,5
+57468138,26393561,5
+54584583,26393561,4
+48288705,26393561,5
+cuishuang,26393561,-1
+50201051,26393561,5
+47209079,26393561,5
+53476786,26393561,5
+45969996,26393561,3
+106340048,26393561,5
+116462152,26393561,5
+43002843,26393561,5
+77657525,26393561,5
+59348702,26393561,5
+137583678,26393561,4
+1066031,26393561,4
+120333158,26393561,4
+nebgnahz,26393561,5
+95891176,26393561,4
+51445817,26393561,4
+lixin123dongli,26393561,4
+73014832,26393561,4
+91402535,26393561,5
+xdy1990,26393561,4
+zhaoyu1222,26393561,5
+58456907,26393561,3
+47755926,26393561,5
+Van37,26393561,5
+46570537,26393561,5
+cherryoung,26393561,-1
+2630742,26393561,4
+47126344,26393561,5
+48091031,26393561,5
+16903025,26393561,4
+76359081,26393561,3
+haiyuan1832,26393561,5
+44428554,26393561,4
+77151897,26393561,4
+rip626,26393561,4
+1943610,26393561,4
+47889203,26393561,5
+3483358,26393561,5
+gulupao,26393561,5
+kim899,26393561,5
+62308831,26393561,5
+yelisi,26393561,4
+44719295,26393561,-1
+nancy8787,26393561,5
+124971974,26393561,4
+ywx100407,26393561,-1
+CheeseTree,26393561,5
+3323980,26393561,4
+80395827,26393561,4
+12257938,26393561,4
+Miracle41,26393561,5
+SuzyMao,26393561,4
+131761032,26393561,4
+50586889,26393561,5
+82569258,26393561,5
+95148578,26393561,-1
+66601327,26393561,5
+faiel,26393561,5
+125672751,26393561,5
+actor2019,26393561,5
+4265133,26393561,5
+48354152,26393561,4
+79914885,26393561,5
+62776173,26393561,5
+58827419,26393561,5
+84146098,26393561,5
+124558052,26393561,2
+L5.P4,26393561,3
+vipdayu,26393561,5
+57350477,26393561,5
+adi,26393561,4
+121540770,26393561,5
+genez,26393561,5
+2818639,26393561,3
+72276993,26393561,5
+128422906,26393561,5
+4527041,26393561,3
+54173979,26393561,5
+113550327,26393561,5
+60701395,26393561,5
+52199961,26393561,5
+4833625,26393561,4
+caesarphoenix,26393561,-1
+hshl2011,26393561,4
+85451111,26393561,5
+Clatyz-Sun,26393561,5
+Ron1230,26393561,3
+4267389,26393561,4
+79323547,26393561,5
+booboo777,26393561,4
+3432362,26393561,4
+2088587,26393561,3
+48885291,26393561,5
+FlowerCharlotte,26393561,4
+43845160,26393561,4
+137437939,26393561,4
+70043510,26393561,5
+68304173,26393561,4
+1760922,26393561,5
+62210177,26393561,4
+67072789,26393561,5
+67072789,26393561,5
+137353380,26393561,4
+116540697,26393561,4
+124548457,26393561,5
+54899516,26393561,4
+52267466,26393561,5
+3379883,26393561,5
+135096530,26393561,5
+70049579,26393561,5
+24862706,26393561,5
+rockymei,26393561,5
+73871573,26393561,3
+waitting_alone,26393561,4
+4295298,26393561,5
+117235320,26393561,4
+123097653,26393561,5
+buyimuchen,26393561,5
+53477398,26393561,4
+91746178,26393561,4
+slm,26393561,4
+feiyangxzy,26393561,4
+43184960,26393561,5
+47047240,26393561,5
+78831074,26393561,5
+2738872,26393561,4
+120327562,26393561,5
+57848312,26393561,5
+79875260,26393561,3
+jpdong,26393561,5
+14408023,26393561,5
+41675106,26393561,5
+43984924,26393561,5
+weizi07,26393561,5
+4383003,26393561,4
+48572387,26393561,5
+zoe_dl,26393561,4
+saddyla,26393561,5
+60420315,26393561,5
+sjch,26393561,4
+annaxingxin,26393561,4
+48271739,26393561,4
+129857824,26393561,4
+65317550,26393561,4
+kikiya,26393561,4
+67313637,26393561,5
+Mlecho,26393561,5
+123689430,26393561,-1
+marco_0708,26393561,2
+46668318,26393561,5
+54096811,26393561,4
+91607712,26393561,-1
+2253369,26393561,5
+sharrie,26393561,4
+sxy921026,26393561,4
+110810799,26393561,4
+65110384,26393561,4
+50141200,26393561,4
+52975858,26393561,3
+59464689,26393561,5
+dearpluto,26393561,3
+lucifer024,26393561,4
+75940485,26393561,5
+TLcecilia,26393561,5
+60274677,26393561,3
+asseya,26393561,-1
+3957139,26393561,4
+58094874,26393561,3
+57136016,26393561,5
+72870354,26393561,5
+shingle,26393561,4
+felo,26393561,4
+41538696,26393561,4
+58211668,26393561,5
+59516134,26393561,4
+71539697,26393561,5
+103277074,26393561,5
+dianbou,26393561,5
+71576870,26393561,5
+49037811,26393561,4
+53524764,26393561,5
+53524764,26393561,5
+muse111,26393561,4
+78130123,26393561,3
+114257816,26393561,5
+100453044,26393561,5
+26809513,26393561,3
+52956455,26393561,5
+ChicWeirdo,26393561,4
+yourblossom,26393561,4
+130988539,26393561,4
+4369154,26393561,5
+95312413,26393561,5
+63092578,26393561,5
+53975020,26393561,5
+47790392,26393561,5
+99598599,26393561,4
+54543581,26393561,4
+Taiup,26393561,4
+55376177,26393561,5
+57418698,26393561,5
+67769734,26393561,4
+67918582,26393561,4
+3772715,26393561,5
+jiubadaoxiahun,26393561,5
+103271136,26393561,5
+allenyip,26393561,4
+46754344,26393561,4
+51836053,26393561,5
+79900116,26393561,5
+54931017,26393561,5
+97163496,26393561,5
+mrzeng1993,26393561,4
+69170773,26393561,5
+56922790,26393561,5
+113285477,26393561,4
+63843063,26393561,5
+120978798,26393561,-1
+77245854,26393561,5
+gaopengyuan,26393561,4
+47285151,26393561,4
+92027453,26393561,5
+52810889,26393561,3
+3904908,26393561,5
+47341225,26393561,2
+52098312,26393561,5
+43083123,26393561,4
+stillwaters123,26393561,5
+wepkshen,26393561,3
+53709847,26393561,4
+60385357,26393561,3
+53536298,26393561,5
+114143891,26393561,-1
+89698495,26393561,5
+chinjee,26393561,5
+119460712,26393561,5
+1885662,26393561,4
+119415852,26393561,3
+134580402,26393561,4
+128915580,26393561,5
+123945021,26393561,5
+hyskoamm,26393561,5
+HanaANDcat,26393561,5
+suren11,26393561,4
+34753066,26393561,5
+58602175,26393561,4
+119446065,26393561,5
+78656769,26393561,4
+andy-channel,26393561,4
+56499192,26393561,5
+48313280,26393561,4
+44045443,26393561,3
+45594123,26393561,4
+124694624,26393561,5
+bluecigar,26393561,4
+40848331,26393561,5
+136509793,26393561,5
+52119694,26393561,4
+72226360,26393561,5
+87862615,26393561,5
+46397046,26393561,4
+4138330,26393561,4
+119152640,26393561,5
+58133135,26393561,5
+110447556,26393561,3
+airinsky,26393561,4
+Dushanbe,26393561,4
+hihimogu,26393561,-1
+26921092,26393561,-1
+37853313,26393561,4
+26039197,26393561,4
+Dannylynn,26393561,4
+1548541,26393561,3
+83237050,26393561,5
+1808143,26393561,5
+xiaoweihandsome,26393561,5
+creamxxy,26393561,5
+4291484,26393561,3
+45099103,26393561,5
+66837193,26393561,5
+renqiran,26393561,-1
+renqiran,26393561,-1
+69128706,26393561,5
+superrao,26393561,4
+bxhOTZ,26393561,3
+65664176,26393561,4
+114179686,26393561,4
+cskywalker,26393561,3
+67489382,26393561,5
+77092352,26393561,4
+robinbird,26393561,4
+87978530,26393561,5
+xasen,26393561,5
+98956070,26393561,4
+128013541,26393561,5
+96336225,26393561,5
+zuo1989,26393561,5
+whj623185136,26393561,5
+45484403,26393561,5
+irenezzy,26393561,5
+127797249,26393561,5
+43864644,26393561,3
+132186892,26393561,5
+princessfrog,26393561,5
+gaoxiafang,26393561,4
+zhangjian_1q26,26393561,5
+19627331,26393561,5
+63119659,26393561,4
+biketo,26393561,4
+11472770,26393561,5
+chenling_1011,26393561,3
+37681594,26393561,5
+flyyyyyy,26393561,5
+53819334,26393561,3
+1480836,26393561,5
+86253613,26393561,5
+1314588,26393561,4
+1942770,26393561,4
+84943776,26393561,4
+47817686,26393561,5
+17407986,26393561,3
+47201590,26393561,4
+3450880,26393561,-1
+54494232,26393561,4
+61300490,26393561,3
+53656219,26393561,4
+xiaoyufan569801,26393561,3
+pangzineng,26393561,5
+73901440,26393561,4
+40687803,26393561,5
+95442218,26393561,5
+northyluvhkbad,26393561,3
+Longinuss,26393561,3
+48247472,26393561,5
+54306906,26393561,5
+77061932,26393561,5
+135573450,26393561,1
+Young.forU,26393561,5
+51410491,26393561,5
+53477720,26393561,4
+kero.dai,26393561,4
+changeable123,26393561,5
+82275422,26393561,5
+tix,26393561,5
+124028516,26393561,4
+61151666,26393561,4
+49409314,26393561,-1
+80346808,26393561,5
+59719545,26393561,5
+1369113,26393561,4
+c243,26393561,5
+71861591,26393561,4
+98956225,26393561,4
+49145848,26393561,5
+84237452,26393561,5
+137441755,26393561,5
+doeia,26393561,3
+greenlifehi,26393561,4
+80072095,26393561,4
+spc1992,26393561,5
+123997632,26393561,4
+62690762,26393561,2
+polkadancing,26393561,4
+1929758,26393561,4
+guyewuzhe,26393561,3
+snowyhowe,26393561,4
+66174769,26393561,3
+shuman90,26393561,4
+68598933,26393561,5
+120322125,26393561,3
+3981445,26393561,-1
+31102423,26393561,4
+Hayvic,26393561,3
+stickman,26393561,5
+jinguo928,26393561,4
+58774315,26393561,4
+4161600,26393561,5
+75667669,26393561,4
+83899962,26393561,4
+G--er,26393561,4
+nagi_echo-king,26393561,4
+u_lullaby,26393561,5
+63858929,26393561,4
+3969339,26393561,4
+littleaprilfool,26393561,5
+avall0n,26393561,4
+73647085,26393561,5
+xiao715,26393561,5
+127589944,26393561,4
+55924610,26393561,5
+73856461,26393561,5
+78668658,26393561,5
+137129598,26393561,4
+pmq0806,26393561,5
+3857532,26393561,4
+yueyuedad1972,26393561,5
+ADmoviemtime,26393561,5
+asuvea,26393561,5
+68631195,26393561,3
+garbovisa,26393561,5
+61387419,26393561,2
+104713983,26393561,5
+41184553,26393561,5
+119991897,26393561,4
+84270133,26393561,5
+Vehicle0102,26393561,5
+2946787,26393561,4
+58179712,26393561,4
+3541486,26393561,4
+issy644,26393561,5
+75118396,26393561,1
+50868040,26393561,4
+heaven851102,26393561,5
+16771121,26393561,4
+felmoon,26393561,5
+fanyichao,26393561,5
+107554806,26393561,5
+134535776,26393561,5
+62732851,26393561,5
+77048663,26393561,5
+lumins,26393561,4
+40681472,26393561,5
+43037534,26393561,4
+zo3c,26393561,4
+47481448,26393561,3
+4155258,26393561,4
+26730334,26393561,5
+dingxiang_4537,26393561,5
+68002540,26393561,5
+82075343,26393561,4
+134384066,26393561,4
+csaver,26393561,5
+icefishe,26393561,4
+guppyfish,26393561,4
+48164798,26393561,4
+84334911,26393561,4
+wuhuihong1992,26393561,4
+58911521,26393561,4
+MissCaptain,26393561,5
+124823100,26393561,4
+57880300,26393561,5
+57880300,26393561,5
+82306642,26393561,5
+72737639,26393561,5
+a1991,26393561,5
+92580665,26393561,4
+28738686,26393561,4
+intofilm,26393561,4
+catfacegirl,26393561,4
+52452838,26393561,4
+62987205,26393561,5
+62360669,26393561,5
+59129484,26393561,5
+wangjijuzi,26393561,4
+yq1ng,26393561,4
+2295894,26393561,4
+80072126,26393561,5
+45265763,26393561,4
+faye.zxf,26393561,4
+Qiao929,26393561,3
+135317139,26393561,5
+135317139,26393561,5
+85174401,26393561,5
+30274807,26393561,5
+55885423,26393561,5
+haihaili,26393561,4
+3477296,26393561,-1
+50947870,26393561,5
+63397034,26393561,5
+idiot.child,26393561,5
+2364299,26393561,5
+76364366,26393561,5
+72097640,26393561,5
+134574897,26393561,4
+39694394,26393561,4
+inout,26393561,5
+56143225,26393561,5
+sukijuri,26393561,4
+61569380,26393561,4
+47542838,26393561,5
+deactivate,26393561,5
+136727796,26393561,4
+44896000,26393561,5
+12030272,26393561,-1
+3390494,26393561,4
+gooxx,26393561,4
+48102259,26393561,5
+137273110,26393561,5
+48290457,26393561,5
+98730295,26393561,5
+hayden001,26393561,4
+Patricia1117,26393561,5
+43354228,26393561,3
+37226242,26393561,5
+78652852,26393561,5
+46575470,26393561,4
+122893908,26393561,5
+61959488,26393561,4
+65663691,26393561,5
+86807674,26393561,4
+54406386,26393561,5
+52729956,26393561,5
+121869943,26393561,5
+47243761,26393561,5
+104592207,26393561,4
+sleepinapril,26393561,4
+132216519,26393561,5
+46453522,26393561,5
+55540547,26393561,5
+62153097,26393561,4
+ivy_lmj,26393561,4
+3641022,26393561,2
+120835880,26393561,4
+lovelovecat,26393561,4
+willydu,26393561,4
+56896270,26393561,5
+2472740,26393561,4
+mrsfed,26393561,5
+53317988,26393561,3
+poosimsom,26393561,4
+66831677,26393561,5
+chimneyqueen,26393561,4
+donaldwu,26393561,5
+52338601,26393561,4
+qimaoyu,26393561,5
+51004726,26393561,4
+Helianthustree,26393561,5
+90168995,26393561,5
+26414737,26393561,5
+51886121,26393561,5
+87498473,26393561,4
+xdnh,26393561,4
+57317558,26393561,4
+season-ho,26393561,5
+3895814,26393561,4
+3555189,26393561,4
+120119799,26393561,4
+75328137,26393561,4
+32515645,26393561,5
+mpower007,26393561,4
+manymanyny,26393561,5
+61602134,26393561,3
+diva.by,26393561,4
+56055511,26393561,5
+3116575,26393561,5
+GDLGDZ,26393561,5
+2528575,26393561,2
+forright,26393561,5
+eugne,26393561,5
+58005722,26393561,5
+64506925,26393561,5
+85245609,26393561,5
+mika8611,26393561,5
+14247291,26393561,4
+tzkeer,26393561,4
+61752391,26393561,3
+64884896,26393561,5
+64110948,26393561,4
+129764944,26393561,5
+rlc,26393561,5
+65339606,26393561,5
+55636618,26393561,5
+lijianbinxp,26393561,5
+2597570,26393561,5
+48547507,26393561,5
+4266454,26393561,5
+67941529,26393561,4
+64680311,26393561,2
+60848897,26393561,5
+annie-bean,26393561,-1
+68523936,26393561,4
+128153765,26393561,5
+52537420,26393561,5
+48491192,26393561,4
+4106454,26393561,5
+29771014,26393561,5
+xiaozizi13,26393561,4
+67143245,26393561,5
+smumy,26393561,4
+2342419,26393561,5
+Ronicalee,26393561,3
+vilasecret,26393561,5
+4132596,26393561,3
+82120021,26393561,5
+35806544,26393561,5
+69586800,26393561,4
+2750884,26393561,4
+45482570,26393561,5
+102364800,26393561,5
+74386723,26393561,5
+49988006,26393561,3
+44284522,26393561,5
+46816630,26393561,4
+135092660,26393561,5
+huangqinghq,26393561,4
+2420665,26393561,5
+92919500,26393561,5
+bigmiao,26393561,4
+35951375,26393561,4
+zhaxiaohan,26393561,4
+29211262,26393561,4
+shushanshao,26393561,4
+71835476,26393561,4
+70041845,26393561,5
+56975242,26393561,4
+67083640,26393561,2
+49308867,26393561,4
+xiaohundaban,26393561,5
+60392839,26393561,4
+56812940,26393561,4
+sherry31,26393561,5
+fenxinyu,26393561,5
+48990593,26393561,5
+45425732,26393561,5
+MMAOCOOL,26393561,5
+78473890,26393561,-1
+feng-AT---,26393561,4
+53126913,26393561,5
+Shod,26393561,5
+49074711,26393561,5
+x5,26393561,5
+tailj,26393561,4
+65183183,26393561,4
+53370793,26393561,5
+50400348,26393561,5
+78903709,26393561,3
+45833897,26393561,5
+80180666,26393561,5
+56424238,26393561,5
+68091203,26393561,5
+59175592,26393561,4
+mason33,26393561,5
+71931742,26393561,5
+48286955,26393561,4
+cjdowson,26393561,4
+87956504,26393561,5
+futurejoy,26393561,3
+philllin,26393561,4
+bravehlp,26393561,4
+59560227,26393561,5
+60311898,26393561,4
+44855834,26393561,5
+damonhao-cs,26393561,4
+133252547,26393561,5
+102621793,26393561,5
+1000545,26393561,3
+hotaru0223,26393561,4
+103480987,26393561,5
+103481912,26393561,5
+MuddyKing,26393561,5
+4680837,26393561,4
+81152446,26393561,4
+48335803,26393561,5
+130319108,26393561,4
+137302798,26393561,5
+leeang,26393561,-1
+zway,26393561,5
+75346076,26393561,3
+qianlongwu,26393561,5
+podolski,26393561,4
+yazizi77,26393561,3
+68664986,26393561,5
+51226041,26393561,5
+fatoat,26393561,4
+wch2020,26393561,4
+humechan,26393561,4
+78634802,26393561,4
+32222992,26393561,5
+nnyxian,26393561,5
+47546589,26393561,4
+95691068,26393561,5
+43183540,26393561,3
+3451536,26393561,5
+npe,26393561,4
+60145877,26393561,5
+JIANININI,26393561,4
+81939398,26393561,4
+87860015,26393561,5
+61797915,26393561,3
+36057289,26393561,4
+lutosdan,26393561,3
+60631421,26393561,5
+2187326,26393561,4
+52218248,26393561,5
+furien,26393561,4
+newbear,26393561,5
+71567101,26393561,5
+4321081,26393561,4
+as-clamp,26393561,3
+132541787,26393561,5
+39579431,26393561,5
+46276304,26393561,4
+tangmm,26393561,4
+76273078,26393561,4
+96473280,26393561,4
+72118040,26393561,5
+54140134,26393561,4
+76964275,26393561,4
+50743687,26393561,4
+135237999,26393561,3
+71648483,26393561,5
+72354881,26393561,5
+64879609,26393561,5
+3281088,26393561,4
+60861914,26393561,5
+29839643,26393561,5
+YUNZIAH4Y,26393561,4
+59568327,26393561,5
+rinsola,26393561,3
+58919934,26393561,5
+48547442,26393561,5
+24364692,26393561,5
+60246470,26393561,5
+81217259,26393561,5
+70730906,26393561,5
+61328119,26393561,3
+50203852,26393561,5
+78214422,26393561,3
+72764244,26393561,5
+celestetang,26393561,4
+75322883,26393561,4
+137122181,26393561,5
+2242325,26393561,5
+lvwenzhi,26393561,4
+65628788,26393561,4
+36627836,26393561,4
+38654828,26393561,4
+93007927,26393561,5
+Juno_Summer,26393561,4
+47100950,26393561,4
+l601512254,26393561,5
+liangtong,26393561,5
+thunderous,26393561,4
+8312118,26393561,4
+135012811,26393561,5
+77152937,26393561,5
+48851408,26393561,5
+michaelmine,26393561,5
+79383062,26393561,5
+69691925,26393561,5
+zhuobielin,26393561,4
+114734252,26393561,4
+119353813,26393561,5
+2182116,26393561,3
+41196257,26393561,5
+pengyaos,26393561,3
+52616588,26393561,-1
+77013688,26393561,3
+LoveHugo,26393561,4
+karmairis,26393561,5
+128277585,26393561,5
+58180925,26393561,3
+sdhjl2000,26393561,3
+39584121,26393561,5
+1736553,26393561,5
+markshi425,26393561,5
+sickist,26393561,1
+47849453,26393561,5
+47852349,26393561,4
+75874006,26393561,5
+78798672,26393561,5
+31755732,26393561,4
+minjielu,26393561,5
+avrilee,26393561,5
+cjj0726,26393561,5
+108481476,26393561,5
+littlemac,26393561,5
+Adnachiel,26393561,5
+3812678,26393561,4
+lovesheng,26393561,5
+66785665,26393561,5
+33751808,26393561,5
+91982055,26393561,4
+Bening,26393561,5
+1530155,26393561,3
+62705311,26393561,3
+63325811,26393561,4
+2470206,26393561,5
+62489520,26393561,5
+123268013,26393561,5
+93621596,26393561,4
+92068041,26393561,4
+53455347,26393561,5
+73799881,26393561,5
+134054475,26393561,5
+isabelking,26393561,5
+25553362,26393561,4
+100020528,26393561,3
+47933054,26393561,3
+ecstasybird,26393561,-1
+monkeek,26393561,4
+80654901,26393561,5
+ForeverMoon,26393561,5
+44587302,26393561,4
+xuweijun0916,26393561,4
+fengjiansun,26393561,5
+7132062,26393561,2
+bettyDX,26393561,5
+58497726,26393561,4
+eddy_charlie,26393561,3
+4724531,26393561,-1
+58752829,26393561,5
+66175630,26393561,4
+2229995,26393561,4
+127563675,26393561,5
+61506971,26393561,2
+49624513,26393561,4
+51655064,26393561,5
+76295495,26393561,5
+39089723,26393561,5
+shahua,26393561,3
+rachel19940329,26393561,5
+somnor,26393561,3
+1130880,26393561,5
+xiaomeijun,26393561,-1
+mrkingdom,26393561,-1
+kgbbeer,26393561,3
+46932791,26393561,5
+69442632,26393561,5
+50611156,26393561,-1
+1182787,26393561,3
+56341447,26393561,4
+Aroma.11,26393561,4
+39454615,26393561,5
+122944258,26393561,4
+64425214,26393561,5
+59752055,26393561,5
+69197532,26393561,5
+131909298,26393561,3
+70507408,26393561,5
+56528486,26393561,5
+zk_0707,26393561,4
+53077082,26393561,3
+ilt,26393561,4
+48072881,26393561,5
+58338006,26393561,4
+90470774,26393561,4
+57142558,26393561,4
+46190025,26393561,4
+56447812,26393561,3
+59378291,26393561,3
+135236232,26393561,4
+50217092,26393561,4
+58249010,26393561,4
+69232328,26393561,5
+46981462,26393561,1
+zhchtcm,26393561,4
+28493840,26393561,4
+45278107,26393561,5
+leizicn,26393561,5
+109530447,26393561,3
+65306635,26393561,4
+79016211,26393561,5
+XterCollins,26393561,4
+85339597,26393561,4
+119182928,26393561,5
+2323154,26393561,4
+1356234,26393561,5
+63912359,26393561,4
+2769574,26393561,5
+50701865,26393561,5
+64771060,26393561,3
+duanziyu,26393561,3
+56836925,26393561,5
+XSizuka,26393561,5
+high_jeff,26393561,3
+83532316,26393561,5
+52408716,26393561,4
+131020888,26393561,2
+bzfdu,26393561,5
+88426430,26393561,5
+3251456,26393561,-1
+3980521,26393561,5
+130648493,26393561,5
+13424583,26393561,5
+downbeats,26393561,4
+3537100,26393561,5
+summernight1cn,26393561,4
+55780099,26393561,5
+52922533,26393561,5
+76452322,26393561,5
+69757574,26393561,5
+59066202,26393561,4
+1666477,26393561,5
+62942210,26393561,5
+53872605,26393561,5
+3427693,26393561,3
+83210440,26393561,4
+88690250,26393561,3
+52235575,26393561,4
+52872697,26393561,3
+Aspirin129,26393561,4
+121641170,26393561,5
+123232321,26393561,3
+48042607,26393561,4
+52883078,26393561,5
+129380721,26393561,5
+flowertide,26393561,4
+awp625691500,26393561,5
+48853220,26393561,4
+136293291,26393561,-1
+70918450,26393561,5
+yojoisgod,26393561,4
+132493750,26393561,5
+zhai5flowers,26393561,4
+leapmonth,26393561,5
+Sennir,26393561,5
+58947104,26393561,5
+lstarss,26393561,-1
+44121250,26393561,4
+41257004,26393561,4
+62593630,26393561,5
+91005322,26393561,5
+52325322,26393561,4
+64535817,26393561,5
+53395539,26393561,4
+48481364,26393561,5
+cherryhj,26393561,3
+75913868,26393561,4
+61872443,26393561,5
+16928498,26393561,4
+137150355,26393561,4
+125827809,26393561,4
+Y19950422,26393561,4
+136333363,26393561,5
+3422749,26393561,5
+71946766,26393561,4
+cappuccino-jl,26393561,3
+3002942,26393561,4
+35296764,26393561,5
+samomos,26393561,4
+119802660,26393561,5
+34486036,26393561,4
+star_llx,26393561,4
+amao1412,26393561,5
+71133496,26393561,3
+Sandorothy,26393561,3
+agnes223,26393561,5
+131033417,26393561,4
+1621748,26393561,1
+62710318,26393561,5
+Taili,26393561,5
+43978378,26393561,3
+48025965,26393561,4
+53381468,26393561,4
+anjingledanle,26393561,5
+50243934,26393561,4
+130488268,26393561,4
+3561549,26393561,5
+83853096,26393561,4
+84642768,26393561,5
+InveRno,26393561,4
+you-jian,26393561,5
+2385429,26393561,4
+57468187,26393561,5
+6972638,26393561,4
+salmonMing,26393561,5
+137058479,26393561,3
+4036193,26393561,5
+65612991,26393561,1
+52398049,26393561,4
+52398049,26393561,4
+50467988,26393561,5
+62798977,26393561,4
+60585416,26393561,4
+carrieluo,26393561,5
+65366516,26393561,1
+55643387,26393561,5
+63250544,26393561,5
+54011582,26393561,4
+82191110,26393561,5
+leamenlee,26393561,5
+131068311,26393561,5
+Amy1012838842,26393561,5
+fyxx101,26393561,4
+80667366,26393561,4
+poppy0219,26393561,5
+49143221,26393561,4
+130563496,26393561,5
+137058497,26393561,3
+134314096,26393561,5
+50865043,26393561,5
+65025231,26393561,5
+123404476,26393561,3
+92364458,26393561,5
+xiaoshan0201,26393561,5
+57411563,26393561,3
+onlyjtl,26393561,5
+lesc,26393561,3
+51578168,26393561,5
+46338692,26393561,5
+69838036,26393561,4
+93026596,26393561,5
+69367982,26393561,5
+voyager1019,26393561,4
+58479235,26393561,5
+gezi921054,26393561,3
+quanquan517,26393561,4
+135694361,26393561,4
+77350146,26393561,4
+60731189,26393561,4
+60731189,26393561,4
+57617460,26393561,4
+69259241,26393561,5
+1840162,26393561,4
+73958470,26393561,4
+61681574,26393561,3
+87997485,26393561,4
+78389609,26393561,3
+3934927,26393561,5
+68831518,26393561,5
+55467676,26393561,3
+lingdongling,26393561,3
+48090771,26393561,4
+meizu2016,26393561,3
+57882904,26393561,4
+60132042,26393561,3
+2866973,26393561,3
+66766065,26393561,5
+60481380,26393561,5
+131025711,26393561,3
+celine_nic,26393561,5
+shushudabaoz,26393561,5
+16520390,26393561,5
+73074411,26393561,5
+67390489,26393561,3
+anniebridge,26393561,4
+67673869,26393561,5
+Niancien,26393561,5
+50389330,26393561,4
+136957186,26393561,5
+51171341,26393561,3
+68630108,26393561,3
+57947049,26393561,5
+114469289,26393561,5
+yuting526,26393561,5
+shadowlover0816,26393561,4
+81170982,26393561,3
+137076197,26393561,5
+laycher,26393561,5
+79214635,26393561,4
+8701005,26393561,5
+49362198,26393561,4
+57421635,26393561,4
+63352492,26393561,5
+120161233,26393561,5
+131878915,26393561,4
+mzm1016,26393561,5
+133472825,26393561,5
+43595031,26393561,3
+137073841,26393561,4
+1074069,26393561,5
+48338436,26393561,5
+52085176,26393561,5
+62956939,26393561,4
+narrowjiu,26393561,5
+lisianl,26393561,5
+64685627,26393561,5
+1189560,26393561,5
+wym97819,26393561,5
+36250262,26393561,4
+121475864,26393561,4
+ksa,26393561,5
+nyssa712,26393561,5
+134758585,26393561,-1
+68354174,26393561,5
+25982397,26393561,3
+51387244,26393561,5
+Cyder,26393561,4
+134785054,26393561,5
+58332166,26393561,4
+128822231,26393561,5
+50003411,26393561,4
+59220835,26393561,5
+85288278,26393561,4
+131186363,26393561,4
+49444605,26393561,4
+suitsue0504,26393561,3
+46350498,26393561,5
+119710944,26393561,4
+127111031,26393561,4
+97277841,26393561,5
+g_success,26393561,5
+82365180,26393561,5
+airouyiyi,26393561,2
+103415530,26393561,5
+120958781,26393561,5
+28009926,26393561,5
+48985348,26393561,5
+48976619,26393561,4
+catsama77,26393561,4
+1595315,26393561,4
+suNny.,26393561,5
+bankeed,26393561,5
+5318547,26393561,1
+HugoVince,26393561,5
+y19940504,26393561,5
+2194320,26393561,5
+70094249,26393561,4
+45686083,26393561,5
+simple_living,26393561,4
+simple_living,26393561,4
+49298107,26393561,3
+32908344,26393561,3
+56252551,26393561,4
+68193326,26393561,3
+83300481,26393561,4
+wille,26393561,5
+133252175,26393561,4
+122868077,26393561,4
+suixipijian,26393561,5
+43416259,26393561,5
+33328876,26393561,5
+3941641,26393561,5
+79053164,26393561,4
+ganlu58,26393561,4
+133380603,26393561,3
+50527578,26393561,3
+carrollon,26393561,5
+sjt641100358,26393561,4
+63136995,26393561,4
+spaceli,26393561,4
+46673283,26393561,4
+maxxue1994,26393561,5
+53387777,26393561,5
+63094180,26393561,5
+50231783,26393561,4
+3783012,26393561,5
+60485170,26393561,5
+132224232,26393561,5
+yoaremysunshine,26393561,4
+KIDSZZY,26393561,3
+55466621,26393561,4
+49319979,26393561,3
+108212384,26393561,5
+73791401,26393561,5
+55786926,26393561,5
+Answer-xx,26393561,5
+mustundead,26393561,3
+103058145,26393561,5
+133858603,26393561,5
+58733696,26393561,5
+6270415,26393561,4
+SunandShadow,26393561,3
+41815717,26393561,-1
+43068881,26393561,5
+97977278,26393561,5
+130860796,26393561,4
+45970738,26393561,4
+cleochan,26393561,5
+114833164,26393561,5
+95158239,26393561,5
+ikari,26393561,5
+78772769,26393561,3
+75941536,26393561,4
+60002715,26393561,3
+65716303,26393561,5
+50197149,26393561,3
+zhqi11,26393561,3
+54159008,26393561,5
+88503506,26393561,5
+24639587,26393561,3
+82095351,26393561,5
+135358641,26393561,3
+122933889,26393561,4
+35892009,26393561,4
+50601214,26393561,5
+42202741,26393561,3
+37551097,26393561,3
+108821133,26393561,5
+selfishJin,26393561,4
+icetyle,26393561,5
+1205451,26393561,5
+ladevan,26393561,5
+sentexiaohu,26393561,4
+Nibia,26393561,4
+gis,26393561,5
+shanbaby,26393561,5
+purple_kenny,26393561,5
+123092442,26393561,4
+75804317,26393561,-1
+87864590,26393561,5
+40645830,26393561,3
+35363595,26393561,3
+48137969,26393561,5
+67658502,26393561,5
+50846350,26393561,4
+130184512,26393561,4
+46499475,26393561,5
+132127399,26393561,5
+66585195,26393561,5
+132190479,26393561,4
+52163750,26393561,5
+125457220,26393561,4
+alen_chy11344,26393561,4
+fu_sion,26393561,5
+102407184,26393561,5
+1343130,26393561,5
+134901053,26393561,5
+Samletwu,26393561,5
+froggie,26393561,5
+92775477,26393561,3
+94765491,26393561,5
+auntiejuno,26393561,4
+68020683,26393561,5
+47852493,26393561,5
+1845398,26393561,3
+4430908,26393561,5
+autumnReels,26393561,-1
+83192703,26393561,4
+76170749,26393561,5
+42582644,26393561,5
+81550400,26393561,5
+95661023,26393561,5
+20296906,26393561,5
+VampirX,26393561,5
+61197777,26393561,4
+56074109,26393561,5
+66625967,26393561,3
+43671696,26393561,2
+NeverEver1987,26393561,5
+60962268,26393561,5
+46992157,26393561,5
+61461484,26393561,5
+87599661,26393561,3
+1988384,26393561,5
+45784891,26393561,4
+57980305,26393561,5
+60732201,26393561,5
+91537543,26393561,4
+45646209,26393561,4
+56960014,26393561,5
+loveljj100days,26393561,5
+39015968,26393561,4
+37160658,26393561,4
+1233038,26393561,4
+46184375,26393561,5
+122339967,26393561,5
+longya,26393561,5
+44141060,26393561,4
+34894274,26393561,4
+48187928,26393561,4
+3633723,26393561,5
+129278118,26393561,5
+54129779,26393561,4
+1028676,26393561,5
+HBHelena,26393561,4
+50826750,26393561,4
+128782904,26393561,4
+49162054,26393561,5
+52636646,26393561,3
+45908198,26393561,5
+97042268,26393561,4
+Grubby0126,26393561,5
+45379301,26393561,4
+4643813,26393561,4
+4557738,26393561,5
+65269166,26393561,5
+34507670,26393561,4
+4134812,26393561,4
+122394659,26393561,5
+135425839,26393561,5
+68294915,26393561,5
+72720004,26393561,5
+40623975,26393561,5
+114330697,26393561,5
+2035001,26393561,5
+103028552,26393561,4
+51126355,26393561,5
+carrie_c.,26393561,5
+49555547,26393561,4
+52835573,26393561,5
+zbar1234,26393561,5
+3887086,26393561,3
+grace-z,26393561,4
+84055341,26393561,5
+DustGear,26393561,4
+iloveEminem,26393561,5
+4292817,26393561,4
+townlet,26393561,4
+123984235,26393561,5
+4563516,26393561,5
+donnie,26393561,4
+48396212,26393561,3
+115375109,26393561,4
+64886603,26393561,5
+neofree,26393561,4
+37382236,26393561,4
+63927330,26393561,3
+4001291,26393561,5
+1538371,26393561,5
+64465114,26393561,3
+followmydreams,26393561,4
+69573255,26393561,3
+56260072,26393561,4
+4352057,26393561,3
+132333627,26393561,4
+58766276,26393561,5
+3762024,26393561,5
+alternative,26393561,4
+127295660,26393561,5
+roadliu,26393561,5
+fying,26393561,5
+56627146,26393561,5
+76623488,26393561,5
+39255754,26393561,4
+51193977,26393561,-1
+bfm843104158,26393561,5
+momoko_huang,26393561,4
+136454222,26393561,5
+96992534,26393561,4
+84278334,26393561,5
+46721798,26393561,4
+zengrcsth,26393561,4
+2258983,26393561,5
+Vivi17,26393561,5
+61921715,26393561,5
+94000337,26393561,3
+75555205,26393561,3
+lilcccc,26393561,5
+4159690,26393561,4
+62584349,26393561,-1
+longestname,26393561,4
+wlwl1010,26393561,4
+goodjelly,26393561,4
+136624895,26393561,5
+50452092,26393561,4
+48415827,26393561,5
+1381065,26393561,3
+Du_sunflower,26393561,4
+78415219,26393561,5
+134340529,26393561,4
+97000059,26393561,4
+peae,26393561,5
+miki_leung001,26393561,5
+59886067,26393561,4
+52829342,26393561,5
+33064145,26393561,5
+thinson,26393561,4
+windirt,26393561,4
+25676059,26393561,4
+25676059,26393561,4
+73940131,26393561,3
+zhouqb,26393561,5
+127299151,26393561,4
+79834547,26393561,4
+sevenBB,26393561,5
+alamao,26393561,-1
+50124945,26393561,3
+67880800,26393561,3
+62416822,26393561,4
+68608640,26393561,5
+64954125,26393561,5
+71843483,26393561,4
+djinn77,26393561,4
+48861105,26393561,5
+weihuadlut,26393561,5
+4433484,26393561,4
+101792652,26393561,5
+sulavie,26393561,5
+youyou110205,26393561,4
+4918742,26393561,5
+122709202,26393561,-1
+micelia,26393561,5
+35008425,26393561,4
+79829494,26393561,5
+colacat,26393561,5
+1981762,26393561,5
+60168447,26393561,4
+xiao8888,26393561,4
+niazion,26393561,4
+81693071,26393561,5
+vhinjklblue,26393561,5
+bdnet,26393561,5
+seaunt,26393561,5
+48477485,26393561,5
+60650660,26393561,5
+2359029,26393561,-1
+hehe2day,26393561,5
+54008688,26393561,5
+51698835,26393561,5
+61489786,26393561,5
+128568817,26393561,4
+103979483,26393561,5
+3314389,26393561,4
+61992166,26393561,5
+q296579068,26393561,5
+59195846,26393561,4
+wyyssa,26393561,5
+127725727,26393561,5
+102916412,26393561,3
+60734053,26393561,5
+54121495,26393561,5
+35135981,26393561,4
+130166144,26393561,4
+4108727,26393561,4
+99692207,26393561,4
+82872608,26393561,3
+miexiaoyang422,26393561,4
+mintake,26393561,4
+1450381,26393561,4
+1450381,26393561,4
+33245540,26393561,4
+67826211,26393561,5
+bozil,26393561,3
+flydolphin,26393561,3
+3431847,26393561,5
+52944731,26393561,5
+120524672,26393561,-1
+46169817,26393561,5
+jojo716716,26393561,4
+2498717,26393561,5
+1681508,26393561,5
+BakerHong,26393561,4
+cynicalness,26393561,4
+131039743,26393561,5
+51836771,26393561,5
+qq15203492,26393561,5
+yoyo5411,26393561,4
+50696669,26393561,4
+54601280,26393561,5
+freekami,26393561,4
+55851508,26393561,4
+aaaaaaalice,26393561,4
+44333556,26393561,5
+66064592,26393561,5
+72438301,26393561,4
+128472388,26393561,4
+44811426,26393561,5
+44687673,26393561,5
+6711612,26393561,5
+fjlxcs,26393561,5
+3501606,26393561,4
+69998360,26393561,4
+131632042,26393561,5
+Ryan-Z,26393561,3
+mikuheart,26393561,4
+62608961,26393561,4
+73711889,26393561,4
+leoglory,26393561,4
+HYGUY,26393561,4
+HYGUY,26393561,4
+77074010,26393561,5
+spf,26393561,5
+4918236,26393561,3
+hher,26393561,1
+43840425,26393561,5
+hela,26393561,2
+126605030,26393561,5
+84250012,26393561,5
+70202233,26393561,5
+81639579,26393561,4
+liudiudiu,26393561,4
+2642171,26393561,4
+130024032,26393561,5
+102997764,26393561,5
+44631026,26393561,4
+74446199,26393561,4
+ypppp,26393561,5
+2652338,26393561,4
+131708713,26393561,4
+104347602,26393561,4
+136339168,26393561,5
+63641192,26393561,5
+63648787,26393561,4
+vince_1216,26393561,4
+55430358,26393561,5
+52094693,26393561,5
+3446661,26393561,5
+4405260,26393561,2
+41922022,26393561,3
+52345284,26393561,4
+cai1st,26393561,5
+JohnnyJiong,26393561,4
+91304159,26393561,4
+53858902,26393561,4
+nafil,26393561,3
+2518207,26393561,3
+starry_liu,26393561,5
+133159113,26393561,5
+why051370,26393561,5
+why051370,26393561,5
+81760284,26393561,4
+kevin_lu1001,26393561,3
+72035913,26393561,4
+60228734,26393561,4
+I-look,26393561,5
+41644891,26393561,5
+rsywx,26393561,5
+Tecsun,26393561,4
+enriqueiglesias,26393561,5
+lingrui1995,26393561,4
+mayxoxo,26393561,5
+67843385,26393561,4
+97757646,26393561,3
+blusia4,26393561,5
+71879067,26393561,4
+gloria1102,26393561,3
+recyclebiner,26393561,4
+55850316,26393561,5
+32650866,26393561,5
+alex227,26393561,5
+blackmeajump,26393561,5
+souring,26393561,5
+77216634,26393561,5
+136817967,26393561,4
+116902692,26393561,4
+47199948,26393561,5
+44836011,26393561,5
+76146142,26393561,5
+64718772,26393561,5
+52160935,26393561,5
+63698161,26393561,5
+61059314,26393561,4
+64122386,26393561,4
+68277125,26393561,5
+2085469,26393561,4
+52546383,26393561,5
+122879836,26393561,5
+73123286,26393561,5
+yyx342501,26393561,5
+46371660,26393561,5
+mr81,26393561,4
+66278129,26393561,5
+vicid,26393561,4
+2428233,26393561,4
+87488566,26393561,4
+64772450,26393561,5
+57405167,26393561,4
+xuaoling,26393561,5
+121545558,26393561,5
+3678670,26393561,5
+53897092,26393561,4
+51084713,26393561,5
+ckrainy,26393561,4
+71911927,26393561,4
+57928250,26393561,5
+62582526,26393561,5
+1011721,26393561,4
+55675710,26393561,5
+90491995,26393561,5
+55803883,26393561,5
+hwyyj,26393561,5
+71421150,26393561,5
+49078783,26393561,4
+53920626,26393561,4
+81564048,26393561,2
+DGF_Olivia,26393561,5
+43437430,26393561,5
+50703649,26393561,4
+65445656,26393561,4
+133471355,26393561,5
+89399541,26393561,4
+59625510,26393561,5
+53898523,26393561,4
+122838666,26393561,5
+54703119,26393561,5
+ruyi0529,26393561,4
+90699969,26393561,5
+43030795,26393561,4
+jiekchenid,26393561,5
+jiekchenid,26393561,5
+42368352,26393561,5
+62129593,26393561,5
+HJS_L,26393561,5
+3704080,26393561,5
+mono1886,26393561,5
+44349387,26393561,5
+Dream-Sky,26393561,4
+jiongcaicai,26393561,4
+58290785,26393561,2
+yanyansu,26393561,5
+68201628,26393561,5
+zoeisadoll,26393561,4
+58701815,26393561,5
+23750536,26393561,5
+133577405,26393561,5
+39126171,26393561,4
+58401311,26393561,5
+114189005,26393561,4
+qiangzhuang,26393561,5
+qiangzhuang,26393561,5
+88213659,26393561,5
+135795752,26393561,4
+2189292,26393561,4
+31914408,26393561,5
+1485351,26393561,4
+2172514,26393561,4
+74959611,26393561,5
+136768505,26393561,4
+63127179,26393561,5
+76018485,26393561,4
+29822208,26393561,2
+84093369,26393561,4
+136630044,26393561,5
+51638198,26393561,4
+39187610,26393561,5
+musicer03,26393561,4
+17672710,26393561,4
+76294839,26393561,5
+76272908,26393561,4
+76272908,26393561,4
+94471728,26393561,4
+59943822,26393561,5
+49382503,26393561,5
+49190043,26393561,5
+71734782,26393561,4
+53346531,26393561,5
+68172681,26393561,4
+66974866,26393561,4
+joyjay,26393561,5
+europ,26393561,5
+102129178,26393561,5
+96472990,26393561,3
+50833916,26393561,4
+nangongyao,26393561,4
+CrazyChan,26393561,5
+62719535,26393561,-1
+75144901,26393561,3
+1250982,26393561,5
+117238091,26393561,5
+51830058,26393561,4
+71680452,26393561,5
+88078787,26393561,4
+73381117,26393561,5
+57248096,26393561,4
+alanerer,26393561,5
+64552518,26393561,5
+GMDY,26393561,5
+65009709,26393561,5
+52183902,26393561,5
+71254966,26393561,5
+shijuming,26393561,5
+47522420,26393561,4
+68469162,26393561,5
+luanwuCAT,26393561,5
+127894179,26393561,5
+April1st,26393561,5
+40383640,26393561,5
+62269193,26393561,5
+83402921,26393561,5
+83402921,26393561,5
+windfromthesea,26393561,5
+goi59121,26393561,5
+45069650,26393561,4
+zptxwd,26393561,4
+79497371,26393561,5
+kgqb622,26393561,4
+12769559,26393561,5
+119284862,26393561,5
+40572936,26393561,4
+phpqzq,26393561,3
+42785964,26393561,4
+93908300,26393561,5
+52316433,26393561,5
+45761304,26393561,5
+4040058,26393561,4
+45641492,26393561,5
+61076911,26393561,5
+32850523,26393561,4
+1988523,26393561,3
+131168132,26393561,5
+54989126,26393561,5
+abaobao,26393561,3
+jiqiuqiu,26393561,5
+64062822,26393561,5
+136460394,26393561,4
+49813677,26393561,4
+75189651,26393561,4
+134476648,26393561,3
+87855088,26393561,5
+56040613,26393561,5
+59968700,26393561,5
+61748227,26393561,3
+Oo0o0o0,26393561,5
+62764168,26393561,5
+45220607,26393561,5
+1667625,26393561,4
+48146801,26393561,4
+waka7,26393561,4
+75795997,26393561,5
+54183087,26393561,4
+eto,26393561,3
+dolores_p,26393561,5
+67727072,26393561,5
+62745983,26393561,5
+51395459,26393561,3
+45139557,26393561,4
+87991331,26393561,4
+3012688,26393561,4
+4404354,26393561,3
+1997569,26393561,5
+ohohblue,26393561,5
+shling1900,26393561,4
+33598055,26393561,5
+56273766,26393561,5
+mymydemon,26393561,5
+FrancisM,26393561,5
+49107061,26393561,4
+lukaka,26393561,4
+Ranfeg,26393561,-1
+60316441,26393561,5
+95968737,26393561,5
+121354261,26393561,5
+135079919,26393561,5
+3481297,26393561,5
+Howareyoudoing,26393561,5
+vianann,26393561,4
+61706956,26393561,4
+51985669,26393561,5
+madgoogle,26393561,5
+lovetatum,26393561,4
+3534571,26393561,5
+YNKM,26393561,5
+48116810,26393561,5
+36666356,26393561,4
+66717059,26393561,3
+122901063,26393561,4
+66798898,26393561,3
+gameboy72,26393561,5
+42252873,26393561,4
+79506720,26393561,5
+135751000,26393561,5
+vegenious,26393561,5
+abby0109,26393561,4
+112278711,26393561,4
+45391669,26393561,5
+2875295,26393561,5
+25486756,26393561,5
+qj0824,26393561,5
+136372182,26393561,5
+97320573,26393561,4
+ayumiH,26393561,4
+no1907,26393561,5
+Shanglinyuan,26393561,2
+56767696,26393561,-1
+lephemera,26393561,4
+loveleo,26393561,5
+castletian,26393561,3
+cdcoffeeboy,26393561,4
+51653649,26393561,4
+50629676,26393561,4
+cianshijie,26393561,5
+4804072,26393561,-1
+54277204,26393561,4
+69438632,26393561,5
+31449811,26393561,5
+84564093,26393561,5
+53751262,26393561,2
+57062967,26393561,5
+4290608,26393561,4
+123229585,26393561,5
+41051783,26393561,4
+52048045,26393561,5
+36265929,26393561,-1
+shuimudeyu1990,26393561,4
+superonie,26393561,4
+133006558,26393561,3
+119632712,26393561,5
+42440335,26393561,5
+79887691,26393561,5
+79887691,26393561,5
+43773144,26393561,4
+46370564,26393561,5
+justgin,26393561,3
+post-rocker,26393561,3
+64673199,26393561,5
+126076199,26393561,4
+45418355,26393561,4
+62882981,26393561,4
+83954325,26393561,3
+funvee,26393561,5
+st_jack,26393561,5
+3974202,26393561,5
+61959364,26393561,5
+136323962,26393561,5
+flyinhigh,26393561,5
+94964788,26393561,5
+43176716,26393561,4
+136627406,26393561,5
+17052139,26393561,4
+125760534,26393561,3
+50564389,26393561,4
+59620866,26393561,5
+64780091,26393561,3
+fengzhiying1314,26393561,5
+51712880,26393561,5
+37662798,26393561,4
+qingnianluoke,26393561,4
+23730457,26393561,4
+58078430,26393561,5
+63015769,26393561,4
+SnoopyVan,26393561,5
+38869266,26393561,4
+134841241,26393561,5
+88172434,26393561,5
+springliu,26393561,4
+foleyfan,26393561,5
+lovelyladys,26393561,4
+85347919,26393561,2
+4864609,26393561,4
+75096447,26393561,4
+so-it-is,26393561,5
+norbbytao,26393561,5
+ludj_007,26393561,5
+83842649,26393561,3
+nianlu,26393561,2
+xjrm,26393561,5
+44122824,26393561,5
+59556078,26393561,3
+78413454,26393561,5
+61584024,26393561,5
+81316047,26393561,4
+121468237,26393561,3
+2987938,26393561,5
+67847671,26393561,5
+50174936,26393561,5
+76666669,26393561,5
+wind-stone,26393561,5
+40348362,26393561,5
+87373773,26393561,5
+87373773,26393561,5
+37653990,26393561,4
+1956056,26393561,5
+15338047,26393561,4
+72297194,26393561,5
+chinabeta,26393561,5
+diana_sunny,26393561,5
+37793108,26393561,5
+53362350,26393561,4
+3601408,26393561,5
+53105156,26393561,5
+77912193,26393561,5
+Little-Shaily,26393561,5
+6549258,26393561,5
+102475979,26393561,5
+76227995,26393561,5
+72672635,26393561,5
+90616646,26393561,4
+74913222,26393561,4
+71231764,26393561,5
+50669136,26393561,5
+60608137,26393561,5
+27297656,26393561,5
+MashiMaro-L,26393561,4
+39877849,26393561,4
+leroyzhf,26393561,5
+daisylook,26393561,5
+earthchild,26393561,3
+73953145,26393561,5
+65534750,26393561,4
+120820995,26393561,5
+57967189,26393561,-1
+1077635,26393561,-1
+61708505,26393561,5
+SEVENTATTOO,26393561,5
+vivo,26393561,-1
+49640193,26393561,5
+Hunjianxia,26393561,4
+happyclam,26393561,5
+78601907,26393561,4
+2670240,26393561,3
+59832941,26393561,4
+63592658,26393561,3
+80681000,26393561,4
+iampearl,26393561,4
+chentuo,26393561,5
+2429292,26393561,3
+56755911,26393561,4
+xingxingming,26393561,3
+92261017,26393561,-1
+57756886,26393561,5
+34674400,26393561,5
+jacky.v.c,26393561,5
+boycester,26393561,5
+72852558,26393561,5
+44561459,26393561,4
+56675092,26393561,4
+59923496,26393561,4
+claudeck,26393561,5
+Sparta233,26393561,5
+rong179,26393561,5
+computerdim,26393561,5
+45536018,26393561,5
+63531003,26393561,3
+shenxuzhu,26393561,4
+49255582,26393561,4
+52499368,26393561,3
+liujunhe123,26393561,5
+suxiaoqian007,26393561,4
+59993815,26393561,5
+84790765,26393561,5
+4226601,26393561,4
+72640748,26393561,5
+53272974,26393561,4
+52226268,26393561,4
+131219917,26393561,4
+whisaly,26393561,3
+51245229,26393561,5
+3712644,26393561,2
+89847136,26393561,5
+50079024,26393561,5
+changkxs,26393561,4
+119867722,26393561,4
+120187893,26393561,4
+nanacancer,26393561,5
+73906021,26393561,4
+102784163,26393561,4
+49455938,26393561,3
+88840337,26393561,4
+49827426,26393561,5
+134234379,26393561,5
+47724316,26393561,4
+134503726,26393561,4
+yfqc24pippo,26393561,4
+44005098,26393561,5
+66200911,26393561,5
+52852194,26393561,5
+50387411,26393561,5
+121829507,26393561,3
+92569558,26393561,-1
+66087282,26393561,5
+68710052,26393561,5
+87383835,26393561,4
+2513289,26393561,5
+41370734,26393561,5
+oktuou,26393561,5
+2073013,26393561,2
+132804317,26393561,4
+61116622,26393561,5
+35051709,26393561,4
+87035372,26393561,4
+NaplesGreen,26393561,5
+1915324,26393561,5
+128760790,26393561,4
+127992449,26393561,5
+2298833,26393561,4
+48984512,26393561,5
+43507289,26393561,5
+66803513,26393561,5
+59594032,26393561,4
+1226511,26393561,4
+91117590,26393561,5
+66552525,26393561,5
+1386491,26393561,5
+28514348,26393561,4
+47633821,26393561,3
+129577459,26393561,3
+134612955,26393561,5
+65924127,26393561,4
+62675898,26393561,4
+73696070,26393561,4
+61595300,26393561,5
+49500956,26393561,4
+senseangeldb,26393561,5
+50829980,26393561,5
+134528233,26393561,5
+67275814,26393561,5
+on1ooker,26393561,5
+60874752,26393561,5
+CKyan,26393561,5
+97921350,26393561,4
+92147297,26393561,5
+74393097,26393561,5
+51937003,26393561,4
+88574021,26393561,3
+58213815,26393561,5
+alar,26393561,5
+134224702,26393561,5
+hey.nanzhuang,26393561,3
+37228673,26393561,5
+ben_nsr,26393561,5
+joybang,26393561,4
+49957499,26393561,5
+4070623,26393561,5
+53257291,26393561,4
+123593065,26393561,4
+121340549,26393561,5
+48662493,26393561,2
+87825054,26393561,5
+102744158,26393561,4
+nhjieme,26393561,5
+80763196,26393561,5
+40170307,26393561,5
+53362229,26393561,4
+62379184,26393561,5
+134486742,26393561,5
+70310265,26393561,4
+22105037,26393561,5
+xyq1995,26393561,4
+62198966,26393561,4
+evilQin,26393561,3
+4099053,26393561,4
+2913672,26393561,4
+39387083,26393561,4
+john90,26393561,5
+61591842,26393561,5
+moca87,26393561,5
+37620368,26393561,4
+62774885,26393561,3
+hongyuzhao,26393561,5
+64037870,26393561,4
+55366144,26393561,4
+64297776,26393561,4
+115819915,26393561,3
+ice41322,26393561,1
+cristinali,26393561,5
+4668347,26393561,5
+1480415,26393561,4
+2054540,26393561,5
+yuntun,26393561,3
+mengaxin,26393561,3
+lylechao,26393561,4
+qinxiaoyiqu,26393561,4
+42787743,26393561,-1
+damadama,26393561,5
+45661291,26393561,4
+57615243,26393561,5
+clytzesmile,26393561,5
+2760210,26393561,5
+momojenny,26393561,5
+ruudgoal,26393561,4
+102581208,26393561,4
+shanxr,26393561,5
+shjolin,26393561,3
+2990377,26393561,5
+miaotuanzi,26393561,4
+emily0016,26393561,4
+desa,26393561,5
+soul21g,26393561,4
+61196519,26393561,4
+64892439,26393561,4
+49691795,26393561,-1
+69794140,26393561,3
+61779592,26393561,5
+105087746,26393561,5
+hereyy,26393561,5
+justsay,26393561,5
+iamyouryk,26393561,5
+erduo,26393561,3
+73552244,26393561,3
+35767869,26393561,5
+120094445,26393561,5
+18360610,26393561,3
+queenolivia,26393561,5
+zhenziren,26393561,4
+sxh249,26393561,5
+34169309,26393561,4
+43409918,26393561,4
+Slyviaaa,26393561,4
+51781307,26393561,3
+66348303,26393561,5
+zuoshoudezuo,26393561,5
+52779199,26393561,4
+51713363,26393561,4
+49491678,26393561,5
+52318521,26393561,5
+YWC,26393561,4
+110396643,26393561,5
+63662567,26393561,5
+lostinfire,26393561,3
+lostinfire,26393561,3
+nkqz,26393561,5
+135248605,26393561,5
+38821099,26393561,5
+Awezhang,26393561,4
+70914565,26393561,5
+82387095,26393561,5
+72723779,26393561,5
+47867750,26393561,4
+OneiLulu,26393561,3
+juliazhuli,26393561,3
+52046312,26393561,3
+44160866,26393561,4
+54770734,26393561,5
+74573283,26393561,4
+103113444,26393561,5
+34499999,26393561,5
+45588600,26393561,4
+3107715,26393561,4
+bLue.C,26393561,4
+117339283,26393561,3
+79334007,26393561,5
+64881839,26393561,5
+55416040,26393561,5
+2170638,26393561,3
+3443645,26393561,4
+52201835,26393561,5
+134463446,26393561,4
+36721828,26393561,5
+32941683,26393561,4
+63395887,26393561,5
+2658043,26393561,5
+79236287,26393561,4
+79352949,26393561,4
+119081444,26393561,4
+baiyuanbao,26393561,5
+43301248,26393561,5
+44724666,26393561,5
+49724572,26393561,4
+ziyuyouyou,26393561,5
+qinyouxuan,26393561,5
+coralforest,26393561,5
+1804203,26393561,5
+63011235,26393561,3
+aichendouban,26393561,4
+48671713,26393561,-1
+governorofwuxi,26393561,5
+57137451,26393561,5
+lionblum,26393561,5
+46655518,26393561,5
+4123019,26393561,4
+Kingnima,26393561,4
+min1,26393561,4
+129287014,26393561,4
+yangbl,26393561,5
+92721405,26393561,4
+72987657,26393561,5
+yanxianxian,26393561,5
+DZTL,26393561,4
+wangzhibin,26393561,4
+wangzhibin,26393561,4
+jujuxiii,26393561,-1
+41482074,26393561,5
+46054766,26393561,-1
+82219188,26393561,3
+75579156,26393561,5
+2890229,26393561,4
+33914811,26393561,-1
+48042943,26393561,4
+shirleychien,26393561,5
+2411293,26393561,5
+55839788,26393561,-1
+candicechang,26393561,4
+2745956,26393561,4
+58055008,26393561,5
+eurypholis,26393561,5
+3204513,26393561,4
+48171385,26393561,4
+37369275,26393561,4
+snowlydouban,26393561,5
+h7766,26393561,5
+51563584,26393561,4
+134907491,26393561,5
+wangsmoly,26393561,4
+nana53o,26393561,5
+70140026,26393561,5
+102627576,26393561,5
+65488479,26393561,5
+x1Ao_y,26393561,5
+maodou_,26393561,5
+62069415,26393561,5
+57377510,26393561,5
+13441174,26393561,4
+eededfcd,26393561,5
+51784275,26393561,5
+PP_wei,26393561,3
+guoguo07,26393561,-1
+134417369,26393561,4
+63672153,26393561,5
+rukia-ichigo,26393561,3
+4231432,26393561,3
+103536040,26393561,5
+50255375,26393561,3
+61602605,26393561,5
+yinruzhi,26393561,-1
+tintin0321,26393561,5
+136379856,26393561,5
+41327515,26393561,5
+islander,26393561,4
+hengyunyixiang,26393561,4
+qingjuesikong,26393561,4
+56232715,26393561,4
+134500343,26393561,5
+60630888,26393561,4
+61726273,26393561,5
+126183742,26393561,4
+52408842,26393561,5
+47838456,26393561,5
+21606016,26393561,4
+killer9110,26393561,4
+killer9110,26393561,4
+HON_XSXS,26393561,4
+akblue,26393561,5
+pretendor,26393561,4
+kun1109,26393561,5
+48767459,26393561,3
+54795000,26393561,5
+socordia,26393561,4
+52273132,26393561,5
+64776955,26393561,5
+75043360,26393561,3
+4287011,26393561,4
+HanHi,26393561,4
+23520450,26393561,5
+MoQin,26393561,4
+49417223,26393561,4
+sunflower87,26393561,5
+SUMOylation,26393561,5
+43605260,26393561,5
+72606790,26393561,3
+3972229,26393561,4
+54631466,26393561,4
+3394942,26393561,-1
+3774190,26393561,5
+yui00jay,26393561,4
+showeryoung,26393561,5
+75607691,26393561,5
+66677598,26393561,4
+47472746,26393561,4
+42680639,26393561,5
+91548416,26393561,4
+1973953,26393561,5
+unnanae,26393561,4
+48866000,26393561,5
+61292565,26393561,3
+fan_1220,26393561,4
+elephantjun,26393561,4
+72086305,26393561,2
+pearltear,26393561,3
+136113347,26393561,5
+136113347,26393561,5
+k739635067,26393561,5
+89928823,26393561,3
+106260389,26393561,5
+68366606,26393561,4
+58899374,26393561,4
+karain,26393561,4
+123280530,26393561,5
+47404227,26393561,5
+xygoing,26393561,4
+oops5p4,26393561,4
+3091057,26393561,5
+Vanness94,26393561,4
+133475672,26393561,5
+27068945,26393561,5
+3033835,26393561,5
+62285111,26393561,5
+120625991,26393561,4
+64345409,26393561,5
+isabellagala,26393561,5
+115885281,26393561,5
+62610096,26393561,5
+76994083,26393561,5
+74123608,26393561,-1
+feizhuangzhuang,26393561,4
+feller,26393561,5
+51722209,26393561,3
+chowmo,26393561,5
+130154428,26393561,4
+laiquziyouIris,26393561,5
+trampbowang,26393561,4
+65710892,26393561,5
+55755674,26393561,4
+62515963,26393561,4
+2658903,26393561,3
+77881939,26393561,3
+2600693,26393561,4
+28393178,26393561,5
+44498430,26393561,5
+Bollin,26393561,4
+51283005,26393561,5
+loveVinjeremy,26393561,4
+102162546,26393561,4
+2858394,26393561,3
+73160841,26393561,5
+Y_yujia,26393561,5
+63223538,26393561,5
+ElephantBoy,26393561,5
+lyzbeishida,26393561,4
+yueryu,26393561,5
+124694550,26393561,5
+124629682,26393561,5
+duoduoshuwu,26393561,4
+58783819,26393561,4
+58535825,26393561,1
+72902533,26393561,5
+ranke0129,26393561,5
+54635444,26393561,3
+3954136,26393561,4
+vivienvb,26393561,5
+65157272,26393561,5
+xibeigua,26393561,3
+121602316,26393561,5
+FuckoffJinMu,26393561,4
+82306803,26393561,5
+47049662,26393561,5
+119644008,26393561,5
+33686484,26393561,4
+56988998,26393561,4
+lesong,26393561,4
+49583310,26393561,5
+52424511,26393561,5
+102099688,26393561,5
+60222551,26393561,5
+yangyixiu1218,26393561,3
+78925849,26393561,4
+105153848,26393561,5
+dreamsafari,26393561,5
+wusuowei102,26393561,5
+36811609,26393561,4
+36811609,26393561,4
+veronica1013,26393561,-1
+73575584,26393561,5
+57102566,26393561,5
+84029887,26393561,5
+76203879,26393561,4
+3772330,26393561,4
+103717477,26393561,5
+DCBinseven,26393561,4
+40531790,26393561,5
+94391270,26393561,5
+1771263,26393561,4
+xrain,26393561,4
+67393945,26393561,5
+45797451,26393561,4
+56897677,26393561,5
+twotwo,26393561,4
+3242605,26393561,5
+Bobby320415,26393561,5
+StanleyLiu,26393561,4
+47913481,26393561,5
+1801052,26393561,4
+63257932,26393561,4
+63413586,26393561,4
+52615960,26393561,2
+paopao_2011,26393561,5
+136216464,26393561,5
+iyuge,26393561,5
+inmessy,26393561,5
+128063403,26393561,4
+123461714,26393561,5
+68146250,26393561,5
+84117668,26393561,5
+57880193,26393561,5
+132788317,26393561,5
+53959941,26393561,-1
+zhaozhibin226,26393561,5
+3340797,26393561,5
+63099215,26393561,4
+54706735,26393561,5
+50167002,26393561,3
+131129670,26393561,5
+75325570,26393561,5
+38913690,26393561,4
+74807280,26393561,5
+84800557,26393561,4
+122877472,26393561,3
+k2,26393561,-1
+55534067,26393561,4
+landcontinent,26393561,4
+30814435,26393561,3
+31465151,26393561,4
+121154422,26393561,4
+Leo_Pan,26393561,5
+59244982,26393561,5
+zeroiris,26393561,4
+120233886,26393561,5
+115100313,26393561,5
+60296110,26393561,5
+31306878,26393561,5
+81102769,26393561,5
+64810171,26393561,5
+91752589,26393561,3
+dengxian123,26393561,5
+54915058,26393561,4
+39121054,26393561,3
+62960485,26393561,5
+conglin2537,26393561,-1
+78690191,26393561,5
+2546239,26393561,5
+nolita_bola,26393561,4
+2813595,26393561,5
+lonelysin,26393561,4
+louis4498,26393561,5
+52726734,26393561,5
+101447033,26393561,5
+102268509,26393561,5
+81278452,26393561,5
+97431474,26393561,4
+czy940903,26393561,5
+83513831,26393561,5
+qiao1123,26393561,4
+17436432,26393561,5
+myshowfan,26393561,5
+93300402,26393561,4
+132269051,26393561,5
+morechou,26393561,5
+84462068,26393561,5
+43265583,26393561,5
+Sophieless,26393561,3
+old_baby,26393561,3
+109055681,26393561,3
+luxixi99,26393561,4
+56252937,26393561,5
+CrystalSleeper,26393561,4
+49384394,26393561,3
+123738666,26393561,5
+119247583,26393561,5
+3211358,26393561,5
+134642033,26393561,5
+54119339,26393561,3
+67516737,26393561,5
+61247385,26393561,4
+2453784,26393561,5
+1378732,26393561,5
+regerjay,26393561,5
+vincent2010,26393561,4
+120828757,26393561,5
+77607736,26393561,5
+44709496,26393561,4
+89903001,26393561,5
+wwei89,26393561,3
+xintong212,26393561,5
+134256865,26393561,5
+2614660,26393561,5
+IRIDESCENT.ONE,26393561,4
+mxturing,26393561,5
+50253550,26393561,5
+huohuo1314,26393561,5
+89313000,26393561,5
+89313000,26393561,5
+123379059,26393561,4
+131044103,26393561,5
+61315672,26393561,4
+46551095,26393561,5
+46656528,26393561,4
+33177895,26393561,4
+44218001,26393561,5
+80769810,26393561,4
+20672891,26393561,3
+4829013,26393561,5
+27383917,26393561,5
+59418689,26393561,5
+chyidan,26393561,4
+45126273,26393561,5
+68871883,26393561,5
+gudaobaiyun,26393561,5
+123386745,26393561,5
+53344657,26393561,4
+jiandanjiuhaio,26393561,-1
+jiandanjiuhaio,26393561,-1
+121920760,26393561,4
+2227903,26393561,5
+56628364,26393561,5
+51342675,26393561,5
+2520901,26393561,5
+66716197,26393561,3
+132192126,26393561,4
+68424766,26393561,4
+3766371,26393561,3
+50931510,26393561,5
+mynarcissus,26393561,5
+db924519251,26393561,5
+52807688,26393561,4
+zhongshanaoli,26393561,4
+76914341,26393561,5
+53681764,26393561,5
+81836452,26393561,5
+135128946,26393561,4
+kingiknow,26393561,5
+121594259,26393561,4
+65256757,26393561,5
+122213757,26393561,5
+46969586,26393561,5
+64204777,26393561,5
+104230732,26393561,5
+93582909,26393561,5
+mishi,26393561,5
+56645472,26393561,5
+bravefish,26393561,5
+134195975,26393561,5
+lokaven,26393561,4
+122757661,26393561,4
+linudada,26393561,4
+92878802,26393561,4
+121043192,26393561,5
+1495216,26393561,5
+52055708,26393561,5
+53998675,26393561,4
+4688576,26393561,4
+40075996,26393561,4
+87910708,26393561,5
+62614786,26393561,5
+133180724,26393561,5
+124697172,26393561,5
+hayney,26393561,5
+1091236,26393561,4
+57303793,26393561,4
+pal1,26393561,5
+1125905,26393561,5
+54475855,26393561,2
+yvtoutou,26393561,5
+57088195,26393561,4
+81312576,26393561,5
+54000993,26393561,5
+33564019,26393561,5
+TaTaxxxx,26393561,5
+48540834,26393561,3
+Ang.,26393561,4
+74932273,26393561,5
+1567784,26393561,4
+95026029,26393561,5
+40605101,26393561,5
+57955489,26393561,5
+80523939,26393561,4
+hedgehog,26393561,5
+104167946,26393561,5
+45291333,26393561,4
+casoon,26393561,5
+53107666,26393561,5
+65976596,26393561,5
+119858082,26393561,4
+cyushu,26393561,-1
+London1,26393561,3
+51350191,26393561,5
+63941479,26393561,5
+willese,26393561,4
+62139918,26393561,5
+54853221,26393561,5
+73731178,26393561,5
+funyifan,26393561,4
+moonjourney,26393561,5
+vvvvv5,26393561,4
+119997789,26393561,5
+49266863,26393561,5
+relaxfree,26393561,5
+49798956,26393561,3
+33977432,26393561,5
+135143930,26393561,4
+xyc86,26393561,5
+steinyxu,26393561,4
+rui_y,26393561,5
+8244005,26393561,4
+50732923,26393561,5
+126613880,26393561,5
+2754612,26393561,5
+98767873,26393561,4
+qinxinzhu,26393561,4
+qingmuwu,26393561,5
+46920813,26393561,4
+66533252,26393561,4
+47297203,26393561,5
+50179073,26393561,5
+wengmeilingai,26393561,5
+TulipDuke,26393561,5
+ttlovett,26393561,5
+135758634,26393561,5
+6440487,26393561,5
+yuexiaokan,26393561,-1
+135868396,26393561,5
+127496421,26393561,4
+46064508,26393561,3
+yuni192,26393561,5
+an-sirens,26393561,5
+withliancheng,26393561,4
+132277009,26393561,5
+54156535,26393561,5
+127398878,26393561,5
+40488240,26393561,5
+93384271,26393561,5
+54536018,26393561,4
+lensliao,26393561,5
+125799422,26393561,3
+71400865,26393561,4
+27340248,26393561,5
+4242859,26393561,4
+43127616,26393561,4
+Vivian77,26393561,3
+smell00,26393561,5
+alapeach,26393561,4
+1418248,26393561,5
+qingxi52vv,26393561,2
+42221402,26393561,1
+51422581,26393561,4
+63136253,26393561,5
+58040567,26393561,5
+panyoubing,26393561,-1
+2125225,26393561,5
+82335684,26393561,5
+chedan-NB,26393561,5
+46888824,26393561,5
+adamhsieh,26393561,3
+84593268,26393561,4
+39228377,26393561,4
+17748095,26393561,4
+90812716,26393561,5
+43359124,26393561,4
+6345314,26393561,3
+devilnue,26393561,5
+ilovedog,26393561,5
+89108079,26393561,5
+130888340,26393561,5
+60230223,26393561,5
+121057597,26393561,5
+chenjiaqi1008,26393561,5
+tom926,26393561,3
+37968335,26393561,4
+63014642,26393561,5
+123124520,26393561,4
+sherry99th,26393561,5
+sherry99th,26393561,5
+liqiyao8931,26393561,4
+Makoto614,26393561,3
+66192057,26393561,5
+34704072,26393561,4
+71332667,26393561,5
+wangjia0702,26393561,5
+48958561,26393561,5
+135570170,26393561,4
+zxtcsdb,26393561,5
+mashushu,26393561,4
+131838639,26393561,4
+72547163,26393561,4
+135812328,26393561,5
+poppysuen,26393561,5
+127690553,26393561,3
+135383494,26393561,5
+wendy426,26393561,5
+56908941,26393561,3
+47191946,26393561,4
+90546251,26393561,5
+56270845,26393561,3
+89451365,26393561,4
+mxing,26393561,5
+liu_rin,26393561,4
+2005598,26393561,4
+135451199,26393561,5
+75314020,26393561,5
+bulijite,26393561,3
+76509928,26393561,5
+59999741,26393561,1
+47022062,26393561,4
+38072263,26393561,5
+4481063,26393561,5
+91140332,26393561,3
+27802113,26393561,5
+Aulicaxoxo,26393561,-1
+81732788,26393561,5
+70680125,26393561,5
+48379365,26393561,4
+GongPu,26393561,-1
+127917109,26393561,5
+130583862,26393561,5
+mengxiangzhidi,26393561,4
+btone0808,26393561,3
+4146399,26393561,5
+60210500,26393561,4
+38150776,26393561,5
+bell-wind,26393561,-1
+42556657,26393561,5
+59311641,26393561,5
+yeeeeeee,26393561,4
+49949826,26393561,5
+133795191,26393561,2
+56838918,26393561,4
+46605189,26393561,4
+gsherwin,26393561,5
+72602686,26393561,5
+Irampage,26393561,5
+1458725,26393561,4
+gracepeople,26393561,5
+44552200,26393561,5
+65675496,26393561,5
+58617905,26393561,3
+54551242,26393561,4
+66916695,26393561,5
+cazze,26393561,4
+67615408,26393561,5
+53722280,26393561,3
+74193285,26393561,5
+81061045,26393561,4
+45543286,26393561,4
+85213640,26393561,3
+47561224,26393561,5
+3478406,26393561,5
+23665796,26393561,5
+L0591,26393561,5
+3100517,26393561,4
+71492907,26393561,4
+53485894,26393561,5
+82404312,26393561,3
+66776645,26393561,5
+63997678,26393561,5
+1319464,26393561,5
+melanctha,26393561,5
+eedc,26393561,3
+99309307,26393561,5
+70195839,26393561,4
+119362745,26393561,5
+63367893,26393561,5
+54327177,26393561,3
+4453892,26393561,-1
+49983823,26393561,3
+ruilixiurui,26393561,5
+1631968,26393561,3
+staryanxing,26393561,5
+48300402,26393561,4
+4841197,26393561,4
+60759610,26393561,5
+yangliening,26393561,5
+68129112,26393561,3
+61491842,26393561,-1
+7106437,26393561,5
+53483615,26393561,4
+79560195,26393561,3
+snowbusy,26393561,-1
+54127643,26393561,5
+50364994,26393561,4
+linchuzhuang,26393561,4
+120558131,26393561,5
+69386924,26393561,4
+iorizci,26393561,4
+1849096,26393561,5
+57128387,26393561,5
+49433742,26393561,4
+53890773,26393561,4
+53456687,26393561,5
+winnie0212,26393561,3
+80526714,26393561,4
+1381698,26393561,5
+evich,26393561,1
+133385458,26393561,5
+hustfisher,26393561,5
+kangroons,26393561,5
+44699537,26393561,5
+120480108,26393561,5
+2820792,26393561,5
+45390521,26393561,5
+131780411,26393561,5
+40081722,26393561,5
+4818608,26393561,5
+41831787,26393561,5
+lengleng2025,26393561,-1
+120957146,26393561,5
+84526752,26393561,4
+73945531,26393561,5
+catandjay,26393561,5
+37751161,26393561,4
+119740230,26393561,5
+3625223,26393561,4
+pjjdehao2,26393561,5
+josephgyal,26393561,3
+daisy702,26393561,5
+daiqiu920,26393561,5
+79508890,26393561,5
+122925510,26393561,5
+121947827,26393561,4
+3722910,26393561,5
+keytoworld,26393561,4
+53040458,26393561,5
+52175149,26393561,3
+104559183,26393561,4
+103533221,26393561,5
+47037056,26393561,5
+66991726,26393561,4
+79034042,26393561,4
+83836566,26393561,4
+jzk,26393561,5
+2106145,26393561,5
+1780319,26393561,4
+133942692,26393561,5
+weexf,26393561,4
+mangooooo,26393561,5
+46606804,26393561,4
+2116608,26393561,-1
+zwcrystal,26393561,5
+chanbc,26393561,5
+chenzihan,26393561,5
+2341945,26393561,4
+134171382,26393561,4
+36678476,26393561,5
+115322215,26393561,5
+53378505,26393561,4
+40310299,26393561,5
+4353368,26393561,4
+79856660,26393561,4
+2769218,26393561,5
+motou0328,26393561,5
+iliuweiming,26393561,5
+90532402,26393561,3
+lkunkun,26393561,5
+77357087,26393561,5
+122095905,26393561,4
+61375666,26393561,4
+61024335,26393561,5
+shengxihua_yan,26393561,5
+78378658,26393561,5
+macroideal,26393561,5
+2421659,26393561,4
+44196996,26393561,4
+48852517,26393561,5
+1259506,26393561,5
+94033941,26393561,5
+65114344,26393561,5
+kiki204629,26393561,5
+133604626,26393561,5
+94263598,26393561,5
+35929918,26393561,2
+67942569,26393561,5
+103735356,26393561,4
+yuhuaizi,26393561,2
+NNNNNian-,26393561,5
+52583509,26393561,3
+51901085,26393561,4
+4624578,26393561,5
+116049427,26393561,4
+46722209,26393561,4
+gaoshuai,26393561,4
+97057870,26393561,5
+mnoodle,26393561,4
+58364140,26393561,3
+79583588,26393561,4
+69064967,26393561,3
+100734380,26393561,4
+83520823,26393561,2
+56475433,26393561,4
+sunwiner,26393561,3
+wmk114,26393561,5
+guangyue1,26393561,4
+72391986,26393561,5
+70521921,26393561,3
+65262873,26393561,5
+79719410,26393561,5
+45491031,26393561,5
+76935104,26393561,5
+68007629,26393561,5
+4774837,26393561,5
+lovets,26393561,3
+46415287,26393561,5
+123617593,26393561,5
+wongzayoi,26393561,4
+4190834,26393561,4
+52435281,26393561,5
+49944175,26393561,-1
+81325605,26393561,4
+128410748,26393561,5
+122942737,26393561,-1
+46009385,26393561,4
+43105216,26393561,5
+85345440,26393561,5
+61993240,26393561,5
+4686486,26393561,5
+2319342,26393561,5
+52529736,26393561,3
+47425487,26393561,5
+49893647,26393561,4
+37619405,26393561,5
+89528523,26393561,5
+63945467,26393561,5
+afumini,26393561,4
+czj950615,26393561,3
+arthurwen,26393561,5
+bearble,26393561,5
+bbbg,26393561,5
+49312393,26393561,5
+70812373,26393561,5
+vinra,26393561,5
+49115709,26393561,5
+71188390,26393561,5
+56218882,26393561,5
+Fienix,26393561,5
+venoy,26393561,5
+59901599,26393561,5
+shinkouyin,26393561,-1
+73868761,26393561,4
+55383324,26393561,4
+2387426,26393561,4
+Jackandfoureyes,26393561,4
+2717266,26393561,4
+3705182,26393561,4
+jxzq007,26393561,5
+41532813,26393561,5
+127871993,26393561,-1
+69223309,26393561,5
+51620794,26393561,3
+41287926,26393561,5
+2737013,26393561,5
+15525708,26393561,5
+77107926,26393561,4
+56398939,26393561,5
+54090244,26393561,5
+mylili,26393561,5
+48027316,26393561,-1
+92300351,26393561,5
+kingkongofkhan,26393561,4
+sunnyleaves,26393561,5
+RockU,26393561,4
+114419146,26393561,5
+49967051,26393561,4
+joyveela,26393561,5
+cherry.cherry,26393561,5
+wy320,26393561,5
+65167478,26393561,4
+92629215,26393561,5
+3148085,26393561,5
+64536394,26393561,5
+Redolence,26393561,5
+hss18384939520,26393561,5
+64128291,26393561,4
+3171232,26393561,4
+46708015,26393561,3
+65531183,26393561,3
+fansherlocked,26393561,2
+134034353,26393561,5
+williamfan,26393561,4
+3868293,26393561,5
+58044228,26393561,4
+xiaopang1106,26393561,5
+puhonglei,26393561,5
+everisle,26393561,-1
+43529469,26393561,5
+96000077,26393561,5
+45957514,26393561,5
+66484066,26393561,4
+53207085,26393561,4
+125038920,26393561,4
+eveshi,26393561,4
+134171030,26393561,4
+65178146,26393561,5
+58484149,26393561,5
+53185750,26393561,4
+79266042,26393561,5
+76860234,26393561,4
+65291556,26393561,5
+58886429,26393561,5
+58490823,26393561,5
+122778853,26393561,5
+79516932,26393561,3
+2428631,26393561,3
+16235886,26393561,2
+119836922,26393561,5
+Fiona-Choo,26393561,5
+dizzle,26393561,5
+WanGenius,26393561,5
+3670661,26393561,3
+53602254,26393561,4
+92081294,26393561,4
+56608210,26393561,4
+92021039,26393561,5
+hiFlora,26393561,4
+lanup,26393561,4
+taolitianxia,26393561,5
+56411907,26393561,5
+42880272,26393561,5
+45261585,26393561,5
+43978103,26393561,-1
+96233628,26393561,5
+133121205,26393561,5
+sannqi,26393561,4
+67260007,26393561,5
+58617464,26393561,4
+daoguangzi,26393561,3
+hudali,26393561,5
+60191465,26393561,4
+88853288,26393561,5
+3509692,26393561,4
+tessai,26393561,5
+132686664,26393561,4
+72432038,26393561,4
+yalindongdong,26393561,3
+83267893,26393561,4
+2270098,26393561,4
+qixian1125,26393561,3
+120332872,26393561,4
+1353806,26393561,5
+51047476,26393561,5
+dmyra1011,26393561,5
+58618323,26393561,5
+buwubuhui,26393561,5
+helloajun,26393561,5
+28481892,26393561,5
+88236856,26393561,4
+haman,26393561,5
+49308862,26393561,5
+72153259,26393561,3
+63275020,26393561,5
+49083776,26393561,5
+Arvis,26393561,5
+68865370,26393561,5
+32433633,26393561,3
+2981373,26393561,5
+2119013,26393561,5
+woshimasi,26393561,5
+29894151,26393561,4
+132277209,26393561,4
+64725454,26393561,4
+65054483,26393561,5
+121795248,26393561,5
+25740506,26393561,4
+sarabilau2,26393561,4
+105892231,26393561,5
+JJ88pig,26393561,5
+hechengxiaozi,26393561,5
+lover_zyy,26393561,5
+8026660,26393561,5
+129150853,26393561,5
+baozha,26393561,5
+87979590,26393561,5
+chenkefeng,26393561,4
+83250000,26393561,5
+121282615,26393561,5
+54036678,26393561,5
+51496241,26393561,5
+Sheeplady,26393561,5
+TYM,26393561,-1
+iiibuwan,26393561,5
+126980247,26393561,5
+seriousz,26393561,5
+acbc115,26393561,3
+85285625,26393561,5
+chinalnkn,26393561,5
+73122939,26393561,5
+watcher_actor,26393561,5
+hephan,26393561,4
+51559890,26393561,5
+58343870,26393561,5
+59774628,26393561,5
+63422177,26393561,4
+4749312,26393561,4
+iwei,26393561,4
+74679165,26393561,5
+73959584,26393561,5
+FENGXXXXX,26393561,5
+53874586,26393561,4
+120496189,26393561,5
+2231082,26393561,4
+49287283,26393561,2
+68656765,26393561,5
+35428065,26393561,5
+3218379,26393561,5
+59217273,26393561,4
+42459901,26393561,5
+yj8058,26393561,5
+kingkongbarbie,26393561,4
+1767558,26393561,4
+58197963,26393561,3
+9386655,26393561,4
+50293538,26393561,5
+77869650,26393561,5
+76086734,26393561,4
+65764407,26393561,5
+biglazy,26393561,4
+60015294,26393561,4
+everlastingEGO,26393561,3
+cameleon,26393561,3
+53935985,26393561,4
+103452314,26393561,5
+zhmcyake,26393561,5
+81930021,26393561,3
+62113049,26393561,4
+sweetxyy,26393561,4
+46712687,26393561,1
+135690272,26393561,5
+sho2mon4e4y,26393561,4
+gBlueBird,26393561,5
+131166222,26393561,5
+xiaoshizhan,26393561,4
+blanchexiao,26393561,5
+74172753,26393561,5
+131104086,26393561,4
+2859552,26393561,4
+49483832,26393561,5
+81404706,26393561,5
+65957374,26393561,1
+53567005,26393561,3
+52322276,26393561,5
+127606527,26393561,5
+14234896,26393561,5
+fuzyu,26393561,5
+122290574,26393561,4
+applesan,26393561,5
+33939241,26393561,5
+71953415,26393561,3
+doraeman,26393561,4
+43558241,26393561,4
+81752466,26393561,4
+hooklt,26393561,4
+96044338,26393561,4
+47821826,26393561,5
+alphaforward,26393561,5
+alphaforward,26393561,5
+54821248,26393561,5
+127595410,26393561,4
+58204448,26393561,5
+gloryjohnny,26393561,5
+jjjeans,26393561,2
+wklappt,26393561,3
+53573790,26393561,4
+lingbaoboy,26393561,5
+1033629,26393561,3
+121491917,26393561,-1
+99340754,26393561,-1
+CharlesLC,26393561,3
+105188554,26393561,5
+39245426,26393561,5
+66340563,26393561,5
+zidaneozil,26393561,4
+129459821,26393561,5
+135893024,26393561,4
+126292148,26393561,4
+130162828,26393561,4
+93332045,26393561,4
+tristanfree,26393561,4
+46789389,26393561,-1
+80429780,26393561,5
+58105572,26393561,4
+77583980,26393561,4
+sinclair,26393561,4
+73418795,26393561,5
+silenthinker,26393561,4
+CHEN-JC,26393561,5
+benbenxjy,26393561,2
+63989347,26393561,5
+2268415,26393561,5
+1651604,26393561,4
+56187274,26393561,4
+90736306,26393561,5
+wakin1707,26393561,4
+32643655,26393561,5
+60046251,26393561,-1
+43459033,26326395,4
+131068311,26326395,1
+3214496,26326395,5
+monstersimon,26326395,1
+4318592,26326395,-1
+82980188,26326395,2
+sif7,26326395,3
+120984888,26326395,3
+50414826,26326395,2
+kokia233,26326395,1
+dailypop,26326395,2
+SUNSAD,26326395,3
+1890331,26326395,4
+44485871,26326395,2
+44671906,26326395,4
+56121769,26326395,4
+102530220,26326395,2
+Fangodar,26326395,4
+49506058,26326395,1
+june.q,26326395,1
+june.q,26326395,1
+spaceli,26326395,2
+35904729,26326395,2
+heydenny,26326395,3
+115665330,26326395,1
+Reita.Y,26326395,4
+48687824,26326395,4
+64482829,26326395,4
+59451032,26326395,2
+kulapika,26326395,4
+71561935,26326395,2
+chengchen0121,26326395,3
+deartintin,26326395,2
+61779592,26326395,2
+73114968,26326395,4
+chaochao85mao,26326395,-1
+131787614,26326395,2
+34347136,26326395,2
+celysej,26326395,2
+50534285,26326395,5
+88452602,26326395,2
+49136927,26326395,3
+dnarna_vicky,26326395,-1
+fantasychang,26326395,4
+4442990,26326395,1
+ffantuan,26326395,4
+51636486,26326395,2
+58901835,26326395,3
+52284149,26326395,3
+84047449,26326395,2
+irislulu,26326395,2
+68794405,26326395,1
+57387149,26326395,2
+84622836,26326395,5
+30022643,26326395,4
+63275332,26326395,3
+agraynel,26326395,3
+105436862,26326395,3
+136969391,26326395,4
+90904421,26326395,2
+90904421,26326395,2
+44302422,26326395,3
+76365309,26326395,1
+3969292,26326395,1
+1169942,26326395,2
+mmmmmin,26326395,1
+57287738,26326395,3
+Babyroser,26326395,4
+45118292,26326395,5
+52568986,26326395,3
+55585638,26326395,3
+sissysays,26326395,5
+27507760,26326395,3
+42952627,26326395,3
+53778713,26326395,4
+3725907,26326395,3
+6170863,26326395,4
+RP86,26326395,2
+33518792,26326395,2
+46338692,26326395,2
+51410819,26326395,3
+132529083,26326395,1
+84526752,26326395,2
+izaijin,26326395,3
+snapeloveyou,26326395,5
+dbhungry,26326395,2
+4656823,26326395,2
+69247286,26326395,2
+58255325,26326395,3
+79134435,26326395,2
+68887897,26326395,3
+lenehang,26326395,3
+rinalee,26326395,3
+71821737,26326395,2
+lilylee1023,26326395,2
+monkeek,26326395,3
+neverknewme,26326395,2
+11380026,26326395,4
+63202867,26326395,3
+2181749,26326395,2
+oscarwp,26326395,3
+96370254,26326395,1
+IMINCR,26326395,-1
+53659864,26326395,3
+53891666,26326395,4
+79861164,26326395,2
+49543241,26326395,3
+yichunchunshili,26326395,2
+4564647,26326395,5
+2247807,26326395,4
+87672326,26326395,1
+pizipang,26326395,1
+108361623,26326395,3
+sam112895,26326395,3
+2280920,26326395,3
+84530034,26326395,3
+42646716,26326395,3
+winnie0212,26326395,3
+chesterchoi,26326395,2
+54342431,26326395,3
+48999950,26326395,4
+particles,26326395,2
+78065496,26326395,1
+3624928,26326395,1
+tianyajie,26326395,1
+115999678,26326395,4
+snail_may,26326395,1
+35506270,26326395,1
+carrieloveless,26326395,2
+85661202,26326395,4
+hongshulin,26326395,3
+1708683,26326395,2
+glowxi,26326395,4
+sharonbao,26326395,4
+mekrey,26326395,4
+polypeptide,26326395,3
+64996012,26326395,2
+125668189,26326395,3
+3691040,26326395,2
+solli,26326395,4
+heeland,26326395,2
+NNLLT,26326395,2
+45379301,26326395,2
+49116416,26326395,1
+waiwaibang,26326395,4
+99206914,26326395,3
+61316939,26326395,1
+13984024,26326395,1
+liutengzhi,26326395,3
+momosan,26326395,3
+45484861,26326395,1
+134503726,26326395,2
+jite,26326395,3
+yuyu427,26326395,3
+kidwong,26326395,1
+56090186,26326395,4
+136342459,26326395,1
+66345165,26326395,4
+hejuefei,26326395,3
+66794531,26326395,3
+55613831,26326395,3
+133232846,26326395,4
+chiharu,26326395,1
+15497319,26326395,2
+1421869,26326395,3
+annbabyyan,26326395,-1
+Obtson,26326395,2
+62753939,26326395,4
+DoDoangell,26326395,3
+kejinlong,26326395,1
+Seuysiro,26326395,1
+43612401,26326395,2
+3587701,26326395,4
+78458638,26326395,4
+83942238,26326395,3
+2238966,26326395,3
+Dorothy321,26326395,-1
+amy0303,26326395,3
+60883211,26326395,1
+57230680,26326395,3
+48541726,26326395,5
+62121101,26326395,1
+guyuejiayu,26326395,3
+chapter2,26326395,3
+jayscien,26326395,4
+2191893,26326395,3
+kidsboom,26326395,2
+58093736,26326395,2
+57818955,26326395,5
+1172546,26326395,2
+viviastraea,26326395,1
+wakahoo,26326395,2
+63223538,26326395,2
+62843075,26326395,2
+55937351,26326395,1
+66277108,26326395,2
+48959327,26326395,2
+125863067,26326395,3
+125553548,26326395,3
+31776574,26326395,-1
+50036042,26326395,3
+btone0808,26326395,3
+48467780,26326395,1
+50416947,26326395,3
+bestayu,26326395,3
+50207696,26326395,5
+yy137276207,26326395,3
+shenhaoyuan,26326395,2
+QingAIAliur,26326395,2
+akisama,26326395,1
+48359509,26326395,3
+54421856,26326395,2
+54706735,26326395,3
+57420250,26326395,4
+67353177,26326395,2
+somaliayaswan,26326395,2
+2923115,26326395,4
+135076550,26326395,-1
+marco_0708,26326395,4
+77622733,26326395,3
+66379988,26326395,3
+61718141,26326395,3
+48396212,26326395,1
+AspireY,26326395,3
+119224182,26326395,1
+wuhuihong1992,26326395,2
+66038878,26326395,1
+44834038,26326395,2
+tenspace,26326395,2
+89103199,26326395,2
+3547067,26326395,1
+sliaobellamy,26326395,3
+54726075,26326395,2
+zhaomingfei,26326395,4
+60725332,26326395,3
+70621815,26326395,3
+db924519251,26326395,2
+xizhijun,26326395,3
+48866539,26326395,5
+44660108,26326395,1
+i_7lin,26326395,2
+50878855,26326395,4
+yilihome,26326395,3
+leon_howe,26326395,5
+58799560,26326395,4
+67742715,26326395,2
+myparadise118,26326395,5
+61086227,26326395,4
+50242355,26326395,3
+80598638,26326395,-1
+122066717,26326395,1
+1211087,26326395,3
+xiaozhudejia,26326395,2
+51959545,26326395,2
+77868082,26326395,-1
+84522058,26326395,5
+70138570,26326395,3
+68377661,26326395,3
+67952397,26326395,2
+2305028,26326395,3
+huxy1983,26326395,2
+47845902,26326395,3
+135968711,26326395,2
+120503563,26326395,-1
+zianzhao,26326395,4
+63635904,26326395,3
+74106981,26326395,4
+42539278,26326395,2
+nashinashi,26326395,3
+53829796,26326395,1
+45004745,26326395,2
+46367127,26326395,3
+cmtqz1gxfdr,26326395,2
+123004306,26326395,2
+lemo4ever,26326395,2
+huanniaobu,26326395,4
+65923850,26326395,5
+fanclrice,26326395,3
+33132526,26326395,3
+50902906,26326395,-1
+59695133,26326395,2
+71181418,26326395,2
+62773794,26326395,2
+kloccd,26326395,2
+samanthafun,26326395,1
+66120167,26326395,2
+57231514,26326395,3
+48166739,26326395,3
+29844884,26326395,2
+57026267,26326395,2
+62140009,26326395,5
+36452184,26326395,1
+muzimisneil,26326395,3
+4741504,26326395,1
+savemypride,26326395,5
+66063255,26326395,2
+51901036,26326395,3
+awaylovey,26326395,1
+jideknight,26326395,2
+92878802,26326395,3
+115083844,26326395,2
+69228709,26326395,1
+45522216,26326395,3
+UKi_000,26326395,3
+shenlewuwu,26326395,3
+81839691,26326395,1
+4520667,26326395,2
+pariseros,26326395,4
+garyzhang,26326395,4
+AutismMANDY,26326395,2
+62387817,26326395,3
+87681382,26326395,-1
+2210399,26326395,2
+2599607,26326395,4
+79044274,26326395,1
+54034056,26326395,3
+73784914,26326395,1
+47990318,26326395,4
+10828318,26326395,3
+sharkspeare,26326395,2
+61111185,26326395,2
+127257204,26326395,4
+49319979,26326395,2
+40982141,26326395,1
+64247507,26326395,3
+Tiara0211,26326395,3
+50434812,26326395,3
+52100772,26326395,3
+mengmeng393,26326395,3
+wangdoudou20,26326395,2
+34507934,26326395,2
+qy4869,26326395,5
+67640260,26326395,-1
+44849027,26326395,3
+48815834,26326395,3
+78087662,26326395,3
+25240448,26326395,1
+reneew,26326395,4
+41776399,26326395,2
+49022002,26326395,3
+115902289,26326395,4
+RockGirl,26326395,4
+deirdra,26326395,5
+rywbl,26326395,2
+ymj718,26326395,2
+78977506,26326395,2
+sunviro,26326395,1
+mrfengge,26326395,3
+cokasusu,26326395,3
+ricechow,26326395,4
+lixiaomeng,26326395,2
+light0817,26326395,4
+shanliang-,26326395,-1
+63307905,26326395,1
+duoxingxing,26326395,2
+65516017,26326395,2
+132207282,26326395,4
+98956225,26326395,1
+55320874,26326395,5
+85226504,26326395,4
+killmystery,26326395,5
+78967317,26326395,3
+classical622,26326395,1
+singing15,26326395,4
+YewChing,26326395,4
+39640609,26326395,3
+neversummerxx,26326395,3
+53822122,26326395,4
+112133874,26326395,2
+Eleonora96,26326395,5
+sigoyiyang,26326395,3
+4582318,26326395,2
+3645377,26326395,2
+playinglife,26326395,2
+62764168,26326395,3
+kevin_lu1001,26326395,2
+dianbou,26326395,1
+82974666,26326395,2
+kong_bai_ge,26326395,2
+wilsonliu,26326395,4
+javai,26326395,2
+FENGXXXXX,26326395,2
+53073700,26326395,2
+81445026,26326395,3
+64803329,26326395,3
+4475648,26326395,4
+97365571,26326395,3
+76900884,26326395,4
+ke-ke,26326395,3
+jane_ZQ,26326395,2
+97409290,26326395,4
+LittleTalks,26326395,2
+44435715,26326395,1
+tintintsang,26326395,2
+gluttony6,26326395,1
+44345461,26326395,3
+4267240,26326395,3
+xiaozhenzi_zz,26326395,4
+40684892,26326395,3
+121129598,26326395,3
+loriwithme,26326395,2
+jidecengjing,26326395,3
+90338227,26326395,2
+2561289,26326395,2
+bozil,26326395,3
+roxanneshiong,26326395,1
+miyaliang,26326395,2
+mullerlahm,26326395,4
+Pabalee,26326395,4
+kii-hong,26326395,3
+67007947,26326395,4
+88331189,26326395,1
+58909768,26326395,4
+55023020,26326395,1
+132951000,26326395,5
+drinkme,26326395,3
+moviecafe,26326395,3
+58878500,26326395,2
+136283276,26326395,3
+70806588,26326395,4
+szeman,26326395,3
+3569090,26326395,1
+60422616,26326395,3
+119883443,26326395,3
+lovingsister,26326395,3
+gtxyxyz,26326395,3
+82876812,26326395,3
+8903991,26326395,4
+2987938,26326395,2
+jeffchuwei,26326395,3
+blue_dq,26326395,-1
+3322566,26326395,1
+anitalovebieber,26326395,5
+owenclv,26326395,2
+shables,26326395,-1
+sunyangchina,26326395,4
+77316354,26326395,3
+74353904,26326395,3
+57650145,26326395,2
+27452429,26326395,1
+27452429,26326395,1
+30945631,26326395,2
+sophie1900,26326395,4
+43998194,26326395,2
+70675972,26326395,5
+pansmia,26326395,-1
+56143225,26326395,1
+63245856,26326395,4
+Engray,26326395,2
+38876439,26326395,5
+53477720,26326395,2
+59910226,26326395,4
+125739150,26326395,4
+wasky,26326395,3
+appleweiwei,26326395,1
+marvindi,26326395,5
+suzichong,26326395,3
+kiraikirai,26326395,5
+75972068,26326395,-1
+2960929,26326395,2
+64535817,26326395,4
+123386745,26326395,2
+mopean,26326395,3
+41193009,26326395,3
+anywayi,26326395,3
+1756794,26326395,2
+dkjune,26326395,2
+59383084,26326395,3
+47969171,26326395,4
+dancylon,26326395,3
+62134358,26326395,3
+59084050,26326395,1
+53262397,26326395,1
+61806342,26326395,1
+laozhang0626,26326395,3
+137555231,26326395,1
+50582816,26326395,2
+47195997,26326395,3
+74913423,26326395,2
+lycanthropy,26326395,3
+91140332,26326395,2
+35672658,26326395,3
+13872529,26326395,3
+eason0210,26326395,2
+133759870,26326395,3
+JackHChan,26326395,2
+50275832,26326395,2
+26318012,26326395,3
+122838666,26326395,4
+61415736,26326395,2
+A-Marvin-T,26326395,2
+43411609,26326395,1
+lutosdan,26326395,1
+76514252,26326395,1
+2094226,26326395,1
+f91_82,26326395,2
+yxm8854,26326395,1
+chyidan,26326395,2
+50219833,26326395,3
+jj-lee,26326395,2
+57187581,26326395,4
+96638998,26326395,3
+62776173,26326395,2
+Tanzi0928,26326395,1
+caiwoshishei,26326395,-1
+135844833,26326395,3
+zechewang007,26326395,2
+70055114,26326395,1
+double_a,26326395,4
+crystal_nice,26326395,2
+qiushimao,26326395,4
+leonardzhu,26326395,3
+62910705,26326395,3
+79823689,26326395,1
+blacksora,26326395,2
+133191270,26326395,3
+46419448,26326395,2
+summermayfly,26326395,3
+MaxxieLU,26326395,4
+137541196,26326395,2
+4021338,26326395,4
+75913868,26326395,2
+131025711,26326395,3
+49154510,26326395,2
+arthur104d,26326395,3
+53988920,26326395,3
+standbyyou,26326395,4
+122868077,26326395,2
+72485230,26326395,4
+Jienishuilema,26326395,3
+71867993,26326395,4
+82882772,26326395,4
+59560104,26326395,2
+der_Baum,26326395,3
+50490367,26326395,3
+47588877,26326395,2
+49254231,26326395,3
+120069048,26326395,2
+54953231,26326395,3
+dio1129,26326395,2
+58759061,26326395,5
+76236179,26326395,3
+skyw510,26326395,2
+137275420,26326395,2
+124754239,26326395,2
+40762850,26326395,1
+74420414,26326395,3
+68598855,26326395,1
+larou,26326395,1
+47200046,26326395,3
+92872879,26326395,3
+31757691,26326395,2
+49663981,26326395,2
+problemchildren,26326395,3
+govgouviiiiiiii,26326395,4
+4051797,26326395,2
+Vinno22,26326395,3
+yadnomeulb,26326395,3
+83704374,26326395,2
+iamliving,26326395,4
+susimai,26326395,2
+3365504,26326395,1
+49434698,26326395,2
+36100413,26326395,3
+83162641,26326395,3
+66770422,26326395,3
+49249122,26326395,1
+1433006,26326395,3
+37340433,26326395,4
+33625985,26326395,3
+hutt,26326395,1
+92636246,26326395,3
+vanillalife,26326395,-1
+57924433,26326395,3
+a3615,26326395,1
+90460111,26326395,3
+skyiris-kinoko,26326395,-1
+56596051,26326395,4
+41798049,26326395,2
+wei123,26326395,3
+74015810,26326395,2
+cloudlandlord,26326395,3
+48877067,26326395,-1
+vincitea,26326395,4
+fanmengya,26326395,3
+59640195,26326395,2
+67781077,26326395,3
+75096370,26326395,3
+103321955,26326395,3
+toppphy,26326395,4
+1235455,26326395,5
+121888064,26326395,2
+4657787,26326395,1
+53271347,26326395,3
+wsph123,26326395,1
+122232090,26326395,3
+39061280,26326395,-1
+yoyoj,26326395,2
+Jessie_liao,26326395,1
+xiangjiaopian,26326395,2
+xiangjiaopian,26326395,2
+59796581,26326395,5
+E-175th,26326395,5
+54893530,26326395,1
+Congy1,26326395,1
+Lauriston,26326395,1
+52822911,26326395,3
+erika-3104,26326395,3
+pipopipapipi,26326395,3
+70427822,26326395,2
+1580104,26326395,3
+letyoufindme,26326395,3
+45382410,26326395,5
+2215214,26326395,2
+3690205,26326395,2
+34780057,26326395,2
+131665257,26326395,1
+sunhaoren,26326395,2
+88171857,26326395,3
+yzone,26326395,2
+carytrading,26326395,3
+stanza,26326395,3
+102938445,26326395,2
+52991857,26326395,3
+43430222,26326395,-1
+46865330,26326395,3
+hmohy,26326395,3
+62591677,26326395,2
+wtforz,26326395,3
+54783024,26326395,2
+63319802,26326395,2
+57523056,26326395,2
+48148912,26326395,2
+46333291,26326395,4
+sylvi,26326395,1
+16254232,26326395,2
+125281406,26326395,2
+122556292,26326395,3
+50041894,26326395,3
+45569084,26326395,3
+TERRYBEAR,26326395,1
+57217044,26326395,3
+46906827,26326395,4
+somehoow,26326395,3
+mklop2008,26326395,2
+zongzongzong,26326395,1
+88077187,26326395,4
+54555433,26326395,4
+66462551,26326395,3
+RagingFiRe,26326395,1
+4571269,26326395,-1
+134968495,26326395,4
+32008707,26326395,1
+47503984,26326395,3
+holy-fishman,26326395,3
+XSizuka,26326395,3
+65224694,26326395,2
+39041629,26326395,2
+121656702,26326395,-1
+SK8_frank,26326395,2
+32019435,26326395,3
+74031504,26326395,4
+35409946,26326395,3
+strawman81,26326395,2
+gabrielle7,26326395,-1
+andy-channel,26326395,3
+54158411,26326395,2
+71963716,26326395,2
+wildold,26326395,2
+119803705,26326395,4
+64741757,26326395,2
+michaelzsl,26326395,5
+wanwanxiaojie,26326395,4
+evisu.wu,26326395,4
+cllee,26326395,-1
+4323147,26326395,2
+tucaomalisu,26326395,2
+dy_idle,26326395,3
+xiaopin19,26326395,2
+115849578,26326395,1
+likecake,26326395,3
+130764132,26326395,1
+17841543,26326395,3
+41854617,26326395,3
+40737758,26326395,3
+56474762,26326395,3
+52716682,26326395,4
+threeday,26326395,3
+fattyme,26326395,-1
+79696640,26326395,1
+51081547,26326395,2
+94030694,26326395,1
+74872914,26326395,1
+44272314,26326395,2
+43491020,26326395,3
+47331203,26326395,3
+78476188,26326395,1
+65709225,26326395,1
+90496189,26326395,3
+66197208,26326395,2
+84626538,26326395,3
+119695958,26326395,1
+Iris2366,26326395,1
+baby0geek,26326395,3
+midorikoannie,26326395,2
+120828432,26326395,3
+53846503,26326395,1
+33960706,26326395,3
+48715814,26326395,4
+48561660,26326395,2
+lizheyuan,26326395,2
+121722324,26326395,2
+67994594,26326395,3
+sky_shadow,26326395,5
+W3IQ7,26326395,3
+dangdang1027,26326395,3
+133000264,26326395,3
+88154137,26326395,3
+120466803,26326395,3
+88097347,26326395,2
+onemushroom,26326395,2
+yujinwen,26326395,3
+68270910,26326395,1
+36939720,26326395,2
+53656219,26326395,3
+56130323,26326395,3
+metalfan666,26326395,5
+58683224,26326395,-1
+2516894,26326395,3
+54254029,26326395,5
+fbndragona,26326395,3
+46854076,26326395,4
+52371666,26326395,2
+2031014,26326395,1
+68864754,26326395,3
+67016418,26326395,-1
+heartandsoul,26326395,3
+130724928,26326395,1
+67334410,26326395,3
+80755814,26326395,3
+2248619,26326395,4
+59114201,26326395,3
+67848471,26326395,1
+46881200,26326395,4
+117804515,26326395,1
+65113075,26326395,3
+lumins,26326395,2
+Cloud1993,26326395,3
+14264174,26326395,3
+49375167,26326395,4
+9054621,26326395,2
+87956504,26326395,3
+24598372,26326395,1
+16897419,26326395,4
+73150810,26326395,2
+78857918,26326395,5
+ultraviolet,26326395,-1
+fan_tuan,26326395,1
+72034078,26326395,1
+3808156,26326395,2
+linseylovescats,26326395,3
+99508404,26326395,3
+2985135,26326395,4
+snotman,26326395,2
+63757609,26326395,3
+secondbaby,26326395,4
+maggiemars,26326395,2
+68821666,26326395,3
+yoyofun,26326395,5
+69186562,26326395,2
+46836735,26326395,2
+cowcow99,26326395,3
+60392839,26326395,1
+sjs214470918,26326395,-1
+Mr.rawness,26326395,1
+wangyao1982,26326395,3
+134410343,26326395,1
+104261144,26326395,1
+sara39aiba,26326395,3
+42593438,26326395,4
+73238001,26326395,1
+59066202,26326395,1
+33177895,26326395,2
+52408414,26326395,3
+102446060,26326395,3
+74244968,26326395,1
+71434788,26326395,-1
+70250727,26326395,3
+48006238,26326395,3
+43846454,26326395,1
+42477053,26326395,3
+v0Id0,26326395,1
+84708478,26326395,1
+64639835,26326395,2
+Kkarimaa,26326395,3
+89829356,26326395,2
+25676059,26326395,3
+wangshibanban,26326395,3
+19579481,26326395,2
+akakiwong,26326395,3
+hjyyl,26326395,3
+SokSolon,26326395,2
+fightim,26326395,1
+yiannislee,26326395,3
+qbits,26326395,5
+50619132,26326395,2
+42368147,26326395,2
+55648856,26326395,1
+14113539,26326395,2
+52744528,26326395,2
+52079369,26326395,3
+63565906,26326395,3
+4374610,26326395,3
+54141112,26326395,4
+fuzyu,26326395,4
+50422639,26326395,2
+108189029,26326395,3
+4598522,26326395,4
+dongdiandaxue,26326395,3
+90884547,26326395,3
+90884547,26326395,3
+shadowlover0816,26326395,2
+endlishock,26326395,4
+41764429,26326395,2
+66967497,26326395,2
+3518493,26326395,2
+caocaoa,26326395,2
+catchkafka,26326395,4
+noahhhh,26326395,1
+59276802,26326395,2
+62275636,26326395,3
+32931583,26326395,4
+dooom,26326395,1
+84393372,26326395,5
+gunnmxzy,26326395,2
+2075231,26326395,-1
+58035013,26326395,3
+duzhouchi,26326395,2
+36138367,26326395,1
+103222605,26326395,-1
+popzoe,26326395,1
+130227138,26326395,2
+yuannyin,26326395,2
+54215499,26326395,5
+45105329,26326395,1
+yiyedu,26326395,1
+62153097,26326395,3
+42205929,26326395,2
+76515029,26326395,2
+49902216,26326395,2
+49174267,26326395,4
+69875694,26326395,2
+26065158,26326395,2
+95884206,26326395,1
+50144135,26326395,5
+50400133,26326395,3
+ruilixiurui,26326395,3
+keywoodzone,26326395,1
+dandankittybaby,26326395,3
+119595701,26326395,1
+yao1yao,26326395,1
+67117129,26326395,2
+109463525,26326395,3
+61888241,26326395,3
+SuzyMao,26326395,3
+71600350,26326395,1
+100996286,26326395,1
+74801562,26326395,2
+nkkun,26326395,3
+xemo,26326395,1
+62915355,26326395,2
+jeremywan,26326395,3
+60223940,26326395,3
+88659862,26326395,1
+mariahbfly,26326395,3
+62295049,26326395,1
+yanxiaoan,26326395,4
+47458523,26326395,3
+crucifix_fox,26326395,2
+time2359,26326395,-1
+wildboy,26326395,-1
+niazion,26326395,2
+79034042,26326395,2
+cindy547288,26326395,1
+77698200,26326395,3
+35042843,26326395,1
+49672172,26326395,3
+dzl15,26326395,3
+128661562,26326395,3
+whohoo,26326395,3
+62153005,26326395,-1
+3671835,26326395,1
+fucktbag,26326395,3
+33131948,26326395,2
+70571291,26326395,2
+11054187,26326395,2
+3502559,26326395,2
+sitila8187,26326395,3
+dmdm,26326395,-1
+tang516,26326395,4
+50245903,26326395,3
+57751660,26326395,4
+takahashili,26326395,2
+99917102,26326395,4
+56682127,26326395,-1
+76933554,26326395,2
+seanxftkesha,26326395,3
+103320681,26326395,1
+zeroooccc,26326395,2
+53920626,26326395,2
+ginapoppy,26326395,4
+100020528,26326395,3
+120697250,26326395,3
+27406418,26326395,3
+gunjoubiyori,26326395,-1
+lalolo,26326395,-1
+51513008,26326395,4
+66663285,26326395,4
+57488189,26326395,2
+nuannuan827,26326395,2
+2621318,26326395,1
+53467195,26326395,3
+102546806,26326395,1
+83188680,26326395,2
+rakbumps,26326395,3
+57032941,26326395,2
+arieselvira,26326395,3
+54277204,26326395,2
+yujiuwei,26326395,2
+58929132,26326395,3
+mjli,26326395,2
+yeslie,26326395,3
+tongnixcv,26326395,1
+poesymur,26326395,2
+elechi_55,26326395,-1
+dr_floyd,26326395,-1
+Ciriny,26326395,4
+Hearthbreaker,26326395,3
+31613621,26326395,2
+45055967,26326395,1
+37242209,26326395,1
+EelNot,26326395,3
+nicdone,26326395,3
+2248463,26326395,3
+huangwei0079,26326395,1
+127059947,26326395,2
+wenbo2003,26326395,3
+119604142,26326395,3
+62688110,26326395,1
+xiaosaorui,26326395,4
+65701335,26326395,3
+53021898,26326395,3
+xiaochongshan,26326395,3
+66439720,26326395,2
+4706306,26326395,1
+neuront,26326395,3
+GodAssassin,26326395,2
+94416522,26326395,4
+gwr,26326395,2
+43542310,26326395,2
+luhua,26326395,3
+alwaysat,26326395,3
+tiger2008,26326395,2
+51255983,26326395,2
+88412250,26326395,1
+69532674,26326395,4
+kane7,26326395,3
+79933408,26326395,2
+68860037,26326395,3
+78414144,26326395,1
+54639922,26326395,3
+qijiuzhiyue,26326395,2
+53392958,26326395,2
+hangecho,26326395,4
+airro,26326395,1
+Rae.Y,26326395,4
+14342921,26326395,2
+59069195,26326395,4
+58617905,26326395,2
+59951804,26326395,3
+53230563,26326395,3
+52561544,26326395,3
+35754265,26326395,-1
+doukoku,26326395,2
+e108,26326395,4
+foun,26326395,2
+3440740,26326395,3
+jason-shi,26326395,2
+naturesun,26326395,3
+46830605,26326395,3
+49808307,26326395,2
+jing_radio,26326395,2
+abin520918,26326395,3
+4095323,26326395,1
+am2.5,26326395,-1
+70160255,26326395,1
+qunimagebi,26326395,2
+Mr.KNight,26326395,1
+76789340,26326395,-1
+53530868,26326395,4
+65670261,26326395,3
+barkerhjj,26326395,2
+47873866,26326395,4
+78601907,26326395,3
+lesleylove,26326395,4
+2227082,26326395,2
+Vash.,26326395,2
+10026373,26326395,3
+90847864,26326395,1
+zxman386,26326395,3
+119382347,26326395,1
+1886385,26326395,3
+sweetjune,26326395,3
+fuckoffpussy,26326395,5
+1389249,26326395,2
+55292763,26326395,3
+51265293,26326395,1
+Laoyuelife,26326395,3
+xuaoling,26326395,2
+68067081,26326395,3
+43891260,26326395,2
+Sxixi,26326395,3
+snowintheheaven,26326395,2
+fujunyi,26326395,4
+1495292,26326395,3
+austinswift,26326395,3
+47515047,26326395,3
+tanronghong,26326395,1
+3517710,26326395,1
+79539449,26326395,4
+xiaojingjj,26326395,3
+36740289,26326395,2
+kamisunagawa,26326395,2
+3189855,26326395,4
+78645703,26326395,2
+49162813,26326395,2
+114504989,26326395,4
+4509681,26326395,2
+52810314,26326395,3
+66178639,26326395,2
+1439418,26326395,2
+45342718,26326395,2
+74499406,26326395,1
+monkeyjung,26326395,3
+69826402,26326395,2
+vensia,26326395,1
+62148442,26326395,3
+115131162,26326395,2
+67163006,26326395,3
+4295513,26326395,3
+47209079,26326395,3
+viling,26326395,3
+sujutotheme,26326395,4
+44685216,26326395,3
+63030961,26326395,1
+Susan1224,26326395,2
+123383877,26326395,-1
+senlintu,26326395,3
+e45e32,26326395,4
+czj950615,26326395,3
+picnicskins,26326395,2
+lian1110,26326395,3
+etherhejia,26326395,-1
+jessicapan,26326395,3
+84955242,26326395,2
+3313195,26326395,3
+46913971,26326395,2
+58094531,26326395,1
+70620691,26326395,3
+rayzhou,26326395,4
+54556696,26326395,1
+82624638,26326395,1
+93606686,26326395,2
+31068073,26326395,3
+79011283,26326395,2
+45549330,26326395,1
+himesamala,26326395,3
+sissixiong,26326395,3
+38184357,26326395,4
+evansastre,26326395,4
+xxxJJ13,26326395,3
+4100649,26326395,2
+63006566,26326395,2
+2720430,26326395,1
+96066844,26326395,5
+70315903,26326395,4
+58691001,26326395,3
+44664939,26326395,4
+81215873,26326395,4
+2224920,26326395,2
+40934646,26326395,-1
+reave,26326395,4
+fanxiaodong,26326395,4
+hupozhu,26326395,2
+douyashuo,26326395,5
+56054009,26326395,1
+tt1426,26326395,3
+136063439,26326395,1
+3111680,26326395,4
+46847805,26326395,3
+stardust1030,26326395,1
+qinxuanzi,26326395,2
+64162059,26326395,3
+49569966,26326395,1
+52088142,26326395,3
+1892627,26326395,1
+48930507,26326395,2
+cnxh,26326395,2
+59040514,26326395,3
+amwtt,26326395,2
+43801109,26326395,2
+51547266,26326395,4
+91397625,26326395,3
+orchialgia,26326395,2
+48198537,26326395,2
+Phyllis5,26326395,3
+77901527,26326395,3
+62843301,26326395,2
+33549498,26326395,-1
+nonopa,26326395,3
+58513154,26326395,-1
+57900084,26326395,4
+114361347,26326395,2
+76943413,26326395,1
+Baronera,26326395,3
+kiwiit,26326395,4
+evooone,26326395,4
+70571885,26326395,1
+Immafrady,26326395,2
+qingnianluoke,26326395,4
+53744550,26326395,3
+47556732,26326395,1
+osssan,26326395,3
+2756953,26326395,3
+34901213,26326395,3
+lianciyin,26326395,1
+superbin1014,26326395,2
+alexsommer,26326395,3
+62906196,26326395,2
+summer4525,26326395,-1
+kinchan,26326395,-1
+urpk,26326395,1
+Alice.c.c,26326395,2
+3053513,26326395,1
+79731878,26326395,3
+7788588,26326395,3
+50499996,26326395,3
+69466241,26326395,2
+47877808,26326395,1
+63193528,26326395,2
+1721507,26326395,4
+mosama7,26326395,2
+samsarabai,26326395,5
+goodmushroom,26326395,3
+lzk,26326395,4
+miauwww,26326395,2
+76293662,26326395,-1
+120057391,26326395,3
+kazuya223602,26326395,3
+57871767,26326395,-1
+49273541,26326395,3
+25142486,26326395,3
+57899222,26326395,1
+46393481,26326395,1
+122891449,26326395,3
+ILWTFT,26326395,3
+60620572,26326395,2
+126719955,26326395,4
+73516473,26326395,1
+nut_wonderland,26326395,1
+130648005,26326395,4
+alla,26326395,3
+goodzsj,26326395,3
+lolypop,26326395,2
+yefengwei,26326395,1
+50148532,26326395,2
+128578300,26326395,5
+81412725,26326395,3
+93036792,26326395,3
+lynxmao,26326395,2
+newbear,26326395,2
+UsagiYilia,26326395,3
+3836230,26326395,-1
+49628220,26326395,2
+47604910,26326395,2
+typezero,26326395,1
+58526787,26326395,3
+clockorange,26326395,2
+jieyaren,26326395,1
+57968864,26326395,-1
+50020191,26326395,1
+54231597,26326395,1
+108663216,26326395,2
+134625303,26326395,1
+27028067,26326395,-1
+61414429,26326395,3
+94546976,26326395,1
+49663773,26326395,-1
+57719173,26326395,3
+leaflee,26326395,-1
+fivestrips,26326395,3
+goldencoin,26326395,3
+cute-candyan,26326395,1
+rainhao,26326395,1
+47193126,26326395,2
+93679084,26326395,1
+135723160,26326395,-1
+59387155,26326395,-1
+4683967,26326395,2
+70788416,26326395,2
+zhangyanwen,26326395,1
+66676801,26326395,3
+lingdongling,26326395,3
+1958405,26326395,3
+103960212,26326395,-1
+83484430,26326395,2
+3772330,26326395,2
+87651171,26326395,2
+b19921224,26326395,2
+125134563,26326395,3
+fantasykx,26326395,4
+sxy921026,26326395,3
+yangui,26326395,3
+Angel.Tracy,26326395,2
+tonicbupt,26326395,5
+sjymike,26326395,1
+56732658,26326395,3
+xbaba,26326395,1
+115974574,26326395,1
+Tinyk,26326395,1
+gameboy72,26326395,3
+misen,26326395,2
+sacwr,26326395,3
+49848634,26326395,2
+62498830,26326395,1
+87909103,26326395,3
+woodhouse,26326395,5
+63730928,26326395,2
+127268669,26326395,4
+66331142,26326395,3
+hana0811,26326395,1
+Paranoidc,26326395,3
+132216519,26326395,3
+hxlhxl1202,26326395,3
+ys1013,26326395,2
+6239310,26326395,2
+choushabi,26326395,5
+yscysc803,26326395,3
+72226360,26326395,2
+87035372,26326395,4
+119165527,26326395,3
+63485325,26326395,3
+121247346,26326395,-1
+53949979,26326395,3
+64442165,26326395,-1
+127302539,26326395,2
+53036681,26326395,4
+46788062,26326395,-1
+49775406,26326395,5
+anyijietuili,26326395,3
+4251957,26326395,-1
+dyalan,26326395,2
+51981466,26326395,1
+notyetdone,26326395,2
+tildali1214,26326395,3
+47218828,26326395,2
+51974103,26326395,4
+OnePiece0505,26326395,2
+wnovic,26326395,4
+fandongzhuantou,26326395,2
+jinzim,26326395,4
+134312513,26326395,3
+saint.sebastian,26326395,3
+53602254,26326395,3
+iamshen-sherry,26326395,-1
+84390206,26326395,3
+50495988,26326395,3
+fuxiu,26326395,3
+djinnee_heng,26326395,5
+cheng4496,26326395,4
+baiwuya,26326395,1
+SANDMANECW,26326395,1
+aspira,26326395,-1
+3586869,26326395,4
+58691394,26326395,3
+59592907,26326395,1
+53559432,26326395,2
+kagakuka,26326395,3
+edward1988,26326395,1
+50600162,26326395,3
+chieng,26326395,5
+evergreen26,26326395,2
+BLUEFIREPLUS,26326395,1
+41220794,26326395,3
+zhanba,26326395,-1
+xxhhcc,26326395,4
+31301735,26326395,2
+48188220,26326395,3
+yuuryo,26326395,5
+shiqimei,26326395,3
+shiqimei,26326395,3
+89786314,26326395,4
+51783956,26326395,4
+xxyilun,26326395,2
+83070272,26326395,3
+luna17sea,26326395,3
+3063479,26326395,2
+33327367,26326395,4
+axlcore,26326395,2
+ngtgz,26326395,3
+66836438,26326395,2
+cooper1989,26326395,3
+chengxxx,26326395,3
+78914788,26326395,2
+64249671,26326395,2
+lzzzzzfbee,26326395,4
+49326623,26326395,3
+SwimGood,26326395,-1
+65607463,26326395,3
+hollyvan,26326395,3
+43459033,26326395,4
+131068311,26326395,1
+3214496,26326395,5
+monstersimon,26326395,1
+4318592,26326395,-1
+82980188,26326395,2
+sif7,26326395,3
+120984888,26326395,3
+50414826,26326395,2
+kokia233,26326395,1
+dailypop,26326395,2
+SUNSAD,26326395,3
+1890331,26326395,4
+44485871,26326395,2
+44671906,26326395,4
+56121769,26326395,4
+102530220,26326395,2
+Fangodar,26326395,4
+49506058,26326395,1
+june.q,26326395,1
+53908274,25955491,5
+aloneplayer,25955491,4
+68813324,25955491,4
+mllt,25955491,5
+49201790,25955491,4
+J19,25955491,5
+114582318,25955491,5
+82054541,25955491,5
+68630000,25955491,3
+eefee,25955491,3
+59555735,25955491,5
+69727866,25955491,3
+64821728,25955491,4
+4156800,25955491,3
+6091736,25955491,5
+edgeyeung,25955491,5
+66624462,25955491,5
+xhlaxhla,25955491,4
+132326708,25955491,4
+65911136,25955491,5
+65911136,25955491,5
+120712105,25955491,4
+65902578,25955491,4
+53437305,25955491,3
+53144206,25955491,5
+3493145,25955491,3
+F1vese7enone,25955491,4
+84586790,25955491,-1
+orange-44,25955491,3
+lyy19,25955491,4
+80568483,25955491,5
+49316177,25955491,4
+134503726,25955491,4
+kocymars,25955491,5
+2657791,25955491,5
+39520405,25955491,4
+2199140,25955491,3
+empty5,25955491,4
+127587816,25955491,3
+31829297,25955491,2
+31829297,25955491,2
+60369056,25955491,5
+yelling2012,25955491,4
+yoyoleung,25955491,-1
+113150909,25955491,5
+2588629,25955491,2
+chuqihua,25955491,5
+49556648,25955491,5
+imoviekobe,25955491,4
+79955875,25955491,4
+2754399,25955491,2
+89725563,25955491,3
+warm_fan,25955491,4
+xiaojiongxia,25955491,4
+46847736,25955491,4
+137513342,25955491,5
+63708637,25955491,4
+127797249,25955491,5
+97171614,25955491,5
+102069788,25955491,5
+63372886,25955491,5
+babezeno,25955491,3
+56311207,25955491,4
+59040075,25955491,5
+soulgreen,25955491,4
+timorrowmain,25955491,3
+119407405,25955491,5
+58088013,25955491,4
+Paranoid.L,25955491,-1
+gning,25955491,5
+49568187,25955491,4
+49394637,25955491,4
+68387367,25955491,4
+stellacc,25955491,3
+helloldq,25955491,4
+134146375,25955491,5
+tianyi1020,25955491,4
+hohoyuhu,25955491,4
+59665595,25955491,4
+71231764,25955491,5
+71231764,25955491,5
+sevenplus,25955491,5
+48441373,25955491,4
+34241450,25955491,4
+62699217,25955491,4
+104582980,25955491,5
+TenkyAn,25955491,5
+72988204,25955491,5
+4083751,25955491,4
+6681296,25955491,4
+Mlecho,25955491,-1
+132803114,25955491,4
+3281477,25955491,2
+faydao,25955491,4
+konnomakoto,25955491,4
+47364324,25955491,3
+64038122,25955491,4
+104462145,25955491,-1
+37521902,25955491,4
+50307120,25955491,4
+franklc,25955491,4
+christineM,25955491,3
+103277074,25955491,4
+macchinto,25955491,4
+55968360,25955491,4
+130438496,25955491,5
+90586395,25955491,3
+asanjiamomo,25955491,4
+xuanron,25955491,5
+64707906,25955491,5
+67231468,25955491,4
+60865772,25955491,4
+49703092,25955491,5
+54664894,25955491,5
+54022186,25955491,5
+60421761,25955491,4
+rahrah,25955491,5
+67328720,25955491,5
+136517754,25955491,5
+57947049,25955491,5
+57947049,25955491,5
+60259320,25955491,1
+52124270,25955491,4
+79337395,25955491,4
+41007086,25955491,5
+29662178,25955491,4
+70406347,25955491,5
+zhibiaoshi,25955491,4
+39584121,25955491,5
+15262776,25955491,5
+84174348,25955491,5
+tqwang,25955491,5
+linyumi7,25955491,5
+fendandan,25955491,4
+aki0726,25955491,3
+57411563,25955491,4
+ilea,25955491,3
+58927939,25955491,5
+69874247,25955491,3
+53185750,25955491,5
+Renaissance_w,25955491,4
+silent_island,25955491,4
+53331026,25955491,4
+79703370,25955491,4
+71576870,25955491,4
+123172810,25955491,5
+93571827,25955491,5
+45914122,25955491,5
+josephine2able,25955491,5
+Madao_D,25955491,4
+51063521,25955491,5
+67653468,25955491,5
+80319931,25955491,5
+55803883,25955491,5
+57445447,25955491,5
+sseeaann,25955491,5
+kkfan,25955491,3
+93602980,25955491,5
+50992070,25955491,4
+49590410,25955491,5
+46579498,25955491,4
+30535234,25955491,3
+ventured,25955491,2
+3468574,25955491,4
+39913122,25955491,4
+68058633,25955491,3
+achen17,25955491,3
+66227064,25955491,4
+120758907,25955491,5
+fredakaizokuban,25955491,5
+2092765,25955491,5
+91243092,25955491,4
+78358396,25955491,5
+102626556,25955491,3
+1806463,25955491,4
+114257816,25955491,5
+42366275,25955491,3
+lightionight,25955491,5
+80304181,25955491,4
+vivichris,25955491,4
+60836654,25955491,4
+68894222,25955491,4
+50614819,25955491,5
+64173169,25955491,5
+9463369,25955491,4
+Mercedes,25955491,-1
+36855612,25955491,4
+47218828,25955491,4
+62251070,25955491,5
+feellings,25955491,5
+veiko,25955491,4
+68685051,25955491,4
+67385694,25955491,5
+yanniyanni,25955491,4
+79423689,25955491,5
+3341865,25955491,4
+137555231,25955491,5
+77394245,25955491,5
+123270343,25955491,5
+49261275,25955491,5
+Dragon13,25955491,5
+zadma,25955491,4
+qqb143,25955491,5
+samsyu,25955491,2
+Dream-Runner,25955491,5
+A-Marvin-T,25955491,4
+39789924,25955491,2
+57561635,25955491,5
+79720313,25955491,4
+46998959,25955491,4
+3155340,25955491,5
+48011144,25955491,4
+swapoer,25955491,5
+134137352,25955491,4
+64514671,25955491,2
+oyxp,25955491,5
+aviva5216,25955491,5
+xihahaha,25955491,3
+annlan31,25955491,4
+61086605,25955491,5
+47338150,25955491,5
+2963699,25955491,5
+119867722,25955491,2
+3521983,25955491,4
+64598652,25955491,5
+68283213,25955491,2
+78370041,25955491,5
+120632957,25955491,5
+cyanu,25955491,4
+47220020,25955491,5
+flydolphin,25955491,4
+husiyuan6,25955491,4
+56435930,25955491,3
+51855205,25955491,5
+4318512,25955491,5
+51098227,25955491,4
+dzjtwdr,25955491,5
+122932689,25955491,4
+39543914,25955491,4
+53244285,25955491,5
+73901440,25955491,4
+gawain,25955491,5
+4529884,25955491,5
+liubida,25955491,5
+47780213,25955491,5
+1701828,25955491,5
+19243879,25955491,4
+56533866,25955491,4
+50581741,25955491,4
+125630908,25955491,4
+78823235,25955491,3
+4483405,25955491,5
+73859647,25955491,5
+77074010,25955491,4
+92770269,25955491,4
+124156376,25955491,5
+Sandal,25955491,4
+lovecimi,25955491,2
+58371683,25955491,4
+pancakes,25955491,5
+guyuejiayu,25955491,4
+52399993,25955491,2
+103178477,25955491,5
+73144387,25955491,4
+48590382,25955491,4
+84961343,25955491,4
+50642394,25955491,4
+58396559,25955491,4
+49133159,25955491,4
+134222368,25955491,3
+64242774,25955491,5
+65160662,25955491,5
+halouwai,25955491,4
+lengyueeros,25955491,4
+137669101,25955491,4
+56369104,25955491,4
+82823554,25955491,5
+49535116,25955491,5
+wangjia0702,25955491,5
+solycoco,25955491,5
+46067806,25955491,5
+47593124,25955491,5
+orangehahaha,25955491,4
+79087170,25955491,3
+109314414,25955491,5
+3729467,25955491,5
+huangtoufa,25955491,5
+2210574,25955491,4
+61721467,25955491,4
+cjj0726,25955491,5
+49437443,25955491,3
+1623065,25955491,5
+28509267,25955491,4
+jacky.v.c,25955491,4
+35758117,25955491,5
+liuxiaoxiao6,25955491,3
+1276233,25955491,5
+xingren912,25955491,3
+cat_king,25955491,5
+49733253,25955491,5
+31555036,25955491,4
+5592925,25955491,4
+57218785,25955491,4
+52588994,25955491,3
+125102922,25955491,4
+schwamm,25955491,4
+miaomi,25955491,4
+73552244,25955491,4
+diorsunrise,25955491,4
+68580898,25955491,4
+luka90123,25955491,3
+shamoyandeyu,25955491,4
+112934055,25955491,3
+82881790,25955491,5
+52759309,25955491,3
+84836327,25955491,5
+1207173,25955491,5
+dwkfreedom,25955491,3
+seraph-ding,25955491,3
+86621646,25955491,4
+62728215,25955491,5
+85621966,25955491,5
+126680069,25955491,3
+3798488,25955491,4
+vansays,25955491,5
+64245784,25955491,4
+53316539,25955491,4
+137107411,25955491,3
+luvndisaster,25955491,5
+wrdeam,25955491,4
+2481028,25955491,5
+imagefly,25955491,4
+97348317,25955491,4
+131923764,25955491,4
+76509928,25955491,5
+2227016,25955491,4
+12078668,25955491,5
+67769734,25955491,5
+103415530,25955491,4
+72788853,25955491,5
+72873381,25955491,5
+53907528,25955491,5
+dzone,25955491,3
+vonanfa,25955491,4
+51910958,25955491,4
+seafans,25955491,4
+wplee,25955491,4
+60486561,25955491,5
+3943144,25955491,4
+laozhang0626,25955491,5
+mangoboi,25955491,5
+121679794,25955491,4
+75270793,25955491,4
+74277295,25955491,5
+1658796,25955491,4
+woshijiangxinju,25955491,5
+47681627,25955491,4
+135076039,25955491,5
+50337627,25955491,3
+81149170,25955491,4
+88170955,25955491,4
+vicy,25955491,4
+55677796,25955491,3
+119540883,25955491,5
+2789304,25955491,4
+130541613,25955491,4
+57460299,25955491,5
+59367397,25955491,4
+4462311,25955491,4
+fyvonne,25955491,4
+49104566,25955491,5
+wangjingyin,25955491,1
+121534057,25955491,5
+80079876,25955491,4
+69805658,25955491,4
+ifanmu,25955491,5
+121088664,25955491,5
+princess921129,25955491,4
+q962265267,25955491,4
+56506584,25955491,5
+77532413,25955491,3
+28424258,25955491,4
+1530502,25955491,5
+44309121,25955491,3
+liutianhong1992,25955491,5
+1793084,25955491,5
+81061045,25955491,5
+79171936,25955491,4
+2272118,25955491,5
+Repression,25955491,5
+3340201,25955491,4
+Before37,25955491,3
+Warrenz,25955491,5
+137814359,25955491,4
+33553111,25955491,4
+48945780,25955491,4
+cassiek_miaow,25955491,4
+robertjuve,25955491,4
+84698699,25955491,4
+2580831,25955491,4
+4315200,25955491,4
+39732146,25955491,-1
+bmrlb,25955491,5
+88997815,25955491,1
+never_missing,25955491,4
+2273276,25955491,4
+52606809,25955491,4
+69757574,25955491,3
+strawman81,25955491,5
+134631211,25955491,5
+IlyceeIstrue,25955491,5
+73995122,25955491,5
+vivicky320,25955491,4
+109407129,25955491,4
+amytsai,25955491,4
+130937021,25955491,5
+30776774,25955491,5
+130445057,25955491,3
+53505227,25955491,2
+bambibabie,25955491,4
+52652829,25955491,4
+47583585,25955491,5
+2759466,25955491,5
+65183183,25955491,4
+49573253,25955491,5
+Do-my-self,25955491,5
+41372399,25955491,5
+31814688,25955491,5
+pkbraveheart,25955491,3
+133795191,25955491,4
+AlphaChai,25955491,5
+2119698,25955491,4
+132788317,25955491,5
+78667352,25955491,5
+lokimicky,25955491,5
+3147255,25955491,4
+66715908,25955491,4
+137305184,25955491,4
+56103306,25955491,5
+137235653,25955491,4
+87122642,25955491,1
+22338643,25955491,3
+lmx1220,25955491,5
+49959307,25955491,2
+49875686,25955491,3
+52883078,25955491,4
+47037959,25955491,4
+45726467,25955491,5
+3217100,25955491,5
+rockymei,25955491,4
+131187465,25955491,5
+116977972,25955491,5
+49162672,25955491,5
+4610385,25955491,4
+yushi,25955491,4
+68123525,25955491,4
+135702188,25955491,5
+zhai5flowers,25955491,4
+74162453,25955491,4
+mingbaianna,25955491,5
+bougainvillea,25955491,-1
+Cicinnurus,25955491,5
+18360610,25955491,4
+danger8413,25955491,3
+mullerlahm,25955491,4
+67936265,25955491,-1
+57424312,25955491,5
+Obtson,25955491,4
+nolike,25955491,4
+72606790,25955491,4
+68197730,25955491,5
+Jessica_Nangong,25955491,4
+45484261,25955491,5
+70214878,25955491,5
+halcyon0,25955491,4
+77762504,25955491,5
+84390206,25955491,5
+49134940,25955491,4
+leiii,25955491,4
+yuhanxi,25955491,3
+4098434,25955491,4
+67575009,25955491,5
+pandapie,25955491,4
+pretendor,25955491,4
+49691015,25955491,5
+50452092,25955491,4
+43713017,25955491,4
+58935563,25955491,5
+53680946,25955491,5
+37402473,25955491,4
+59684689,25955491,4
+bimbo,25955491,4
+4500361,25955491,3
+Mickey_yang9,25955491,5
+chenchensu,25955491,5
+suxiaoqian007,25955491,4
+56128579,25955491,5
+71125053,25955491,4
+57756886,25955491,5
+JUNmatun,25955491,5
+JUNmatun,25955491,5
+134498309,25955491,4
+54383012,25955491,5
+ps2xboxgbaxbox,25955491,4
+137324110,25955491,4
+68478979,25955491,5
+75322883,25955491,4
+40674382,25955491,4
+73696070,25955491,5
+127973052,25955491,5
+51997514,25955491,4
+4378228,25955491,5
+89092816,25955491,4
+2361128,25955491,5
+Blackcrow,25955491,4
+131746301,25955491,4
+83170366,25955491,5
+2107134,25955491,4
+55321548,25955491,4
+53858902,25955491,4
+chelnosea,25955491,2
+3571623,25955491,4
+88345455,25955491,5
+92448910,25955491,4
+62658444,25955491,4
+136810733,25955491,5
+51073562,25955491,4
+yutingamy,25955491,4
+54004738,25955491,5
+126239848,25955491,4
+romantictoad,25955491,5
+1068125,25955491,2
+3646602,25955491,4
+sulphurlee,25955491,5
+53059732,25955491,5
+45441727,25955491,5
+130078321,25955491,3
+66688383,25955491,-1
+4411528,25955491,5
+136591988,25955491,3
+50592672,25955491,4
+50249739,25955491,5
+vivianlovesun,25955491,4
+32650866,25955491,3
+58484149,25955491,5
+76552950,25955491,4
+1795295,25955491,3
+58776763,25955491,4
+2449818,25955491,4
+62118386,25955491,5
+58225512,25955491,5
+44498578,25955491,4
+70680447,25955491,5
+47300313,25955491,5
+54434386,25955491,4
+gongyansong,25955491,4
+136357894,25955491,5
+coldestwind,25955491,5
+34992298,25955491,4
+28990027,25955491,3
+3782193,25955491,5
+2428233,25955491,4
+52777499,25955491,4
+ToniKroos8,25955491,4
+72984075,25955491,4
+nannanloves,25955491,5
+125010605,25955491,4
+doris13,25955491,5
+66250308,25955491,4
+50883641,25955491,4
+fastkill,25955491,3
+81484263,25955491,5
+bLue.C,25955491,4
+45851335,25955491,5
+65623054,25955491,4
+60347813,25955491,2
+130328147,25955491,5
+cangjie1900,25955491,4
+LEE0222,25955491,4
+72827871,25955491,3
+4896156,25955491,4
+125200763,25955491,5
+127115937,25955491,5
+74776784,25955491,3
+hyocheong,25955491,3
+130860796,25955491,5
+60172474,25955491,5
+printa,25955491,5
+58480998,25955491,4
+87230484,25955491,4
+49065754,25955491,5
+4535772,25955491,3
+2089491,25955491,4
+91537188,25955491,5
+3478406,25955491,5
+79558591,25955491,4
+chenruan,25955491,5
+why051370,25955491,5
+sjy78110,25955491,4
+1417391,25955491,5
+35978096,25955491,5
+yangyixiu1218,25955491,4
+49762109,25955491,5
+51845356,25955491,2
+117339283,25955491,4
+49523343,25955491,-1
+108113381,25955491,5
+petitespot,25955491,4
+134506577,25955491,4
+maomiwang809,25955491,4
+1943610,25955491,5
+wendy86,25955491,4
+70148892,25955491,3
+134459339,25955491,3
+56655738,25955491,5
+ilibby,25955491,4
+53477398,25955491,4
+joybang,25955491,5
+124812731,25955491,4
+3367309,25955491,4
+56430618,25955491,5
+59244982,25955491,5
+49585135,25955491,4
+70435217,25955491,3
+59317426,25955491,5
+58023617,25955491,4
+48090771,25955491,4
+4051797,25955491,5
+81752466,25955491,4
+3602718,25955491,4
+128492091,25955491,3
+yien,25955491,4
+twooneseven,25955491,5
+74368485,25955491,3
+PsychoMissSo,25955491,3
+64648218,25955491,5
+jesuslovebanana,25955491,5
+54306906,25955491,5
+87608735,25955491,5
+4023510,25955491,5
+2642301,25955491,4
+47267694,25955491,5
+51183805,25955491,5
+threeyuan,25955491,5
+49266863,25955491,5
+piglin,25955491,5
+113981067,25955491,4
+65498024,25955491,4
+41680643,25955491,3
+62442761,25955491,3
+82049060,25955491,5
+N44,25955491,4
+56386044,25955491,5
+130702415,25955491,5
+70049579,25955491,5
+63172677,25955491,4
+58489825,25955491,5
+43354228,25955491,4
+rockyaozi,25955491,3
+LBJKKK,25955491,5
+Murray-sg,25955491,3
+3972229,25955491,5
+84250012,25955491,5
+WillZz,25955491,5
+67843385,25955491,3
+Neverlandor,25955491,5
+81404706,25955491,5
+137061442,25955491,4
+61681574,25955491,5
+39708814,25955491,5
+58352034,25955491,3
+aku0323,25955491,4
+61584024,25955491,5
+76777443,25955491,5
+lenber,25955491,3
+att2046,25955491,5
+39192898,25955491,5
+48318864,25955491,3
+gaopengyuan,25955491,4
+limicm,25955491,4
+limicm,25955491,4
+lovemj4ever,25955491,5
+yaogaosheng,25955491,3
+summerhope,25955491,5
+44939590,25955491,5
+zangbianxuegu,25955491,4
+53721431,25955491,5
+135458402,25955491,5
+62842608,25955491,4
+z30473,25955491,5
+103735356,25955491,4
+55558648,25955491,5
+79779762,25955491,4
+14622412,25955491,4
+42637645,25955491,5
+txiaomiao,25955491,4
+41886533,25955491,4
+zhangrihe,25955491,4
+66550666,25955491,4
+kangting,25955491,4
+kakasissi,25955491,4
+3671903,25955491,5
+60560120,25955491,5
+69439267,25955491,4
+castletian,25955491,2
+when3memory7,25955491,4
+43646576,25955491,5
+1935824,25955491,5
+68521104,25955491,3
+wosyizhiqq,25955491,4
+dhrgxf,25955491,5
+54158411,25955491,4
+l.don,25955491,3
+61111185,25955491,5
+56871206,25955491,5
+1392553,25955491,1
+104985254,25955491,5
+91268300,25955491,5
+46818877,25955491,4
+119415852,25955491,4
+66794531,25955491,5
+evich,25955491,4
+56922790,25955491,5
+44005693,25955491,4
+75173381,25955491,4
+59901599,25955491,5
+qingnianluoke,25955491,5
+48379365,25955491,5
+yangui,25955491,5
+43083123,25955491,5
+54693337,25955491,5
+27545760,25955491,3
+1225334,25955491,5
+35123281,25955491,4
+Hannover96,25955491,3
+74509582,25955491,4
+shushudabaoz,25955491,5
+like-a-rock,25955491,4
+114398895,25955491,5
+84675514,25955491,5
+84675514,25955491,5
+49082695,25955491,3
+95968737,25955491,4
+45368819,25955491,4
+wangyiwangyi,25955491,4
+A-OK,25955491,5
+37853313,25955491,4
+btone0808,25955491,4
+11648827,25955491,4
+AmadHatter,25955491,4
+liushengjing,25955491,5
+58924080,25955491,1
+129617606,25955491,5
+49126351,25955491,3
+82223749,25955491,5
+zoooooh,25955491,3
+50206708,25955491,5
+61861749,25955491,5
+115504341,25955491,3
+39587317,25955491,4
+98956070,25955491,4
+whj623185136,25955491,4
+Youandi4,25955491,-1
+63410203,25955491,3
+lopstin,25955491,4
+87651171,25955491,2
+44587302,25955491,4
+laishizhou,25955491,5
+43172737,25955491,4
+83146288,25955491,-1
+10277954,25955491,4
+98956225,25955491,3
+135302519,25955491,4
+43845160,25955491,3
+49897445,25955491,4
+45042581,25955491,5
+105436862,25955491,5
+134528559,25955491,5
+72866539,25955491,4
+aaaaaalex,25955491,3
+88213659,25955491,5
+36943871,25955491,4
+66967732,25955491,5
+62477393,25955491,3
+4826633,25955491,5
+115590835,25955491,3
+85245609,25955491,3
+68983048,25955491,5
+60385357,25955491,4
+mamie88,25955491,5
+kidbbmm,25955491,-1
+52470011,25955491,5
+64535817,25955491,5
+4239908,25955491,5
+57420250,25955491,5
+yyuan9372,25955491,4
+84943776,25955491,4
+houdana,25955491,3
+110396643,25955491,5
+cianshijie,25955491,4
+czy940903,25955491,3
+55658909,25955491,4
+137129598,25955491,4
+1793618,25955491,4
+62668317,25955491,5
+posuoluo,25955491,5
+heartandsoul,25955491,3
+doremicowcow,25955491,3
+sharon_p,25955491,4
+44361116,25955491,4
+37225215,25955491,5
+57643998,25955491,5
+34600682,25955491,4
+65635790,25955491,5
+53454251,25955491,3
+islandmeng,25955491,-1
+sixprecepts,25955491,4
+62069415,25955491,5
+51514321,25955491,4
+40164532,25955491,4
+1689876,25955491,5
+BETTERMANYXZ,25955491,3
+85327528,25955491,5
+53672963,25955491,5
+79560195,25955491,4
+136727796,25955491,4
+3390494,25955491,4
+67278708,25955491,5
+33906890,25955491,4
+TiffanyBrisset,25955491,4
+58332166,25955491,4
+56586044,25955491,5
+49028309,25955491,4
+aphemia,25955491,4
+92616438,25955491,5
+62418513,25955491,5
+55624184,25955491,3
+33994049,25955491,5
+68630108,25955491,3
+51965596,25955491,4
+51965596,25955491,4
+72674980,25955491,5
+PuNaDSmile,25955491,3
+lhxww,25955491,5
+51947048,25955491,4
+73765169,25955491,5
+114605491,25955491,5
+137350820,25955491,-1
+41468232,25955491,5
+ziv_yll,25955491,5
+55977195,25955491,4
+55799828,25955491,5
+29579112,25955491,4
+45059307,25955491,4
+67077471,25955491,3
+43761473,25955491,4
+64886603,25955491,5
+51222661,25955491,4
+35726529,25955491,5
+121816351,25955491,5
+43761875,25955491,5
+4082427,25955491,5
+134968905,25955491,5
+78314737,25955491,5
+mustundead,25955491,4
+do13,25955491,5
+94227961,25955491,3
+44976171,25955491,3
+Charlotte.Q,25955491,4
+35546848,25955491,4
+80193020,25955491,4
+62507198,25955491,5
+Mflower,25955491,5
+yitian_zyt,25955491,5
+mouqingyang,25955491,4
+1274020,25955491,4
+sd0101chlf,25955491,5
+yuhaoyun,25955491,5
+59168779,25955491,4
+blackbanana3Y,25955491,5
+59168779,25955491,4
+blackbanana3Y,25955491,5
+crucify,25955491,3
+108168194,25955491,5
+3425257,25955491,5
+69337188,25955491,5
+71890378,25955491,5
+126108971,25955491,5
+97501403,25955491,4
+94968931,25955491,4
+130154874,25955491,4
+135332332,25955491,5
+137305294,25955491,-1
+137244496,25955491,4
+50054232,25955491,5
+57929179,25955491,4
+wondersue,25955491,5
+134057557,25955491,3
+63875799,25955491,5
+57512376,25955491,5
+57512376,25955491,5
+59237633,25955491,5
+44937867,25955491,5
+51505905,25955491,4
+92254946,25955491,5
+123746304,25955491,4
+1839952,25955491,3
+54602090,25955491,5
+serendipitor,25955491,5
+63933567,25955491,5
+aspira,25955491,5
+58552525,25955491,3
+11542932,25955491,5
+65321007,25955491,4
+dreamhands,25955491,5
+47029437,25955491,5
+yixiaoyan_,25955491,5
+77820849,25955491,5
+132099238,25955491,5
+liujinlin,25955491,4
+66575578,25955491,4
+43934329,25955491,5
+caixiaomi,25955491,4
+64218065,25955491,5
+79383062,25955491,4
+63008915,25955491,4
+nancyyan,25955491,4
+48012745,25955491,5
+30322114,25955491,4
+pizipang,25955491,5
+netsurfe,25955491,5
+xutianxi,25955491,4
+100020528,25955491,3
+2206615,25955491,4
+4681805,25955491,4
+39306601,25955491,5
+carerina,25955491,4
+shidayuan,25955491,5
+55961606,25955491,5
+62842401,25955491,5
+yolanda_kin,25955491,4
+135425839,25955491,5
+38924619,25955491,4
+29282642,25955491,4
+shuimudeyu1990,25955491,5
+68564015,25955491,5
+47198318,25955491,3
+ydlxiaolong,25955491,4
+kongchanzhimeng,25955491,5
+45648843,25955491,3
+alexda1da2da3,25955491,5
+3794173,25955491,3
+75105516,25955491,5
+51490972,25955491,4
+58215483,25955491,5
+sunzeya,25955491,5
+93158337,25955491,4
+135378177,25955491,4
+51543196,25955491,3
+znrpiggey,25955491,4
+znrpiggey,25955491,4
+120272196,25955491,5
+tina_bingyaya,25955491,5
+57251364,25955491,5
+kenc,25955491,3
+zhangaozhan,25955491,1
+49022307,25955491,4
+122944258,25955491,4
+Embrace.,25955491,4
+15321915,25955491,5
+45099103,25955491,5
+49063054,25955491,4
+rainy525,25955491,5
+77336532,25955491,5
+52728063,25955491,4
+122966703,25955491,3
+55930112,25955491,5
+qianqian0504,25955491,5
+46375333,25955491,4
+L_LAWLIET,25955491,-1
+philette,25955491,4
+3254520,25955491,5
+99704114,25955491,4
+mowo,25955491,5
+70313709,25955491,-1
+68203246,25955491,5
+1369129,25955491,5
+dadademi,25955491,5
+50868122,25955491,5
+58487973,25955491,4
+28493840,25955491,4
+83402921,25955491,5
+liqiyao8931,25955491,5
+134887971,25955491,5
+103771999,25955491,3
+xiaoxiaodeyuanz,25955491,3
+57281919,25955491,5
+queenolivia,25955491,4
+60588371,25955491,4
+136293291,25955491,-1
+131909298,25955491,4
+HYGUY,25955491,3
+lvmeng214,25955491,5
+120117514,25955491,5
+91252045,25955491,5
+62879204,25955491,5
+4688576,25955491,4
+115669845,25955491,4
+3045450,25955491,5
+125827809,25955491,4
+53024139,25955491,4
+1953044,25955491,2
+54322482,25955491,5
+wangyao1982,25955491,5
+121765872,25955491,5
+39579431,25955491,3
+127219953,25955491,4
+PUNKKONG,25955491,-1
+65916785,25955491,5
+91317144,25955491,4
+137058479,25955491,3
+65725947,25955491,5
+1038289,25955491,3
+59109118,25955491,5
+75310522,25955491,4
+Paradox_Q,25955491,4
+115051698,25955491,4
+103191068,25955491,5
+2387348,25955491,3
+vermeer-dust,25955491,5
+57874487,25955491,4
+bring-it,25955491,5
+130563496,25955491,4
+48062280,25955491,2
+114517843,25955491,4
+137058497,25955491,4
+98980389,25955491,4
+134540507,25955491,5
+137121432,25955491,4
+1805745,25955491,4
+sinceiloveu,25955491,3
+2523763,25955491,-1
+46030549,25955491,-1
+135466412,25955491,4
+127111031,25955491,4
+41786241,25955491,4
+doodler,25955491,4
+3957102,25955491,5
+50319429,25955491,4
+131088732,25955491,3
+himarkcn,25955491,4
+78455506,25955491,3
+66794675,25955491,3
+131025711,25955491,3
+134625303,25955491,4
+withoutleaving,25955491,-1
+60132042,25955491,4
+75699782,25955491,4
+48119351,25955491,5
+137009471,25955491,3
+137005028,25955491,5
+137076197,25955491,4
+48854947,25955491,3
+100083138,25955491,4
+leinov,25955491,5
+52098739,25955491,3
+6972638,25955491,3
+137073841,25955491,4
+bons,25955491,4
+xuancaidanqing,25955491,4
+60089917,25955491,5
+43401352,25955491,2
+123404476,25955491,3
+44910359,25955491,5
+82235882,25955491,4
+wxhsolo,25955491,2
+suitsue0504,25955491,4
+72285427,25955491,5
+90097591,25955491,4
+105892231,25955491,5
+y19940504,25955491,5
+81601608,25955491,4
+gerandy,25955491,3
+wille,25955491,4
+122868077,25955491,5
+64917317,25955491,-1
+gagaGu,25955491,3
+zazarasgo,25955491,5
+122016263,25955491,4
+61921715,25955491,4
+anko2626,25955491,4
+123001004,25955491,4
+olabaobao,25955491,4
+87854539,25955491,5
+114090542,25955491,5
+85339597,25955491,5
+131408932,25955491,4
+121573417,25955491,5
+49369904,25955491,4
+25742902,25955491,2
+60002715,25955491,4
+65039420,25955491,5
+50499996,25955491,4
+52995236,25955491,4
+nicaland,25955491,3
+91809497,25955491,5
+manyipeng,25955491,1
+51879316,25955491,3
+130428066,25955491,4
+80653338,25955491,4
+73568250,25955491,5
+133375008,25955491,4
+wooksae,25955491,5
+3852877,25955491,5
+mivan,25955491,4
+44322726,25955491,-1
+sherrykoo,25955491,5
+seoyoungeun,25955491,5
+54740080,25955491,5
+maysum,25955491,4
+maysum,25955491,4
+Dasiycat,25955491,5
+51387244,25955491,5
+mi-hang,25955491,3
+2483074,25955491,-1
+127118502,25955491,3
+51620794,25955491,3
+66793622,25955491,4
+shadowshame,25955491,4
+3964565,25955491,1
+65907866,25955491,4
+58290785,25955491,5
+regalo,25955491,4
+43542523,25955491,5
+53411317,25955491,5
+79452838,25955491,4
+2182911,25955491,5
+showmeet111,25955491,5
+Thangka,25955491,5
+85079143,25955491,5
+4116226,25955491,4
+69735820,25955491,4
+78214422,25955491,2
+futuo,25955491,5
+edenhsu,25955491,2
+2528575,25955491,3
+4557738,25955491,5
+16313678,25955491,5
+54011582,25955491,3
+77722334,25955491,-1
+47010023,25955491,5
+2493346,25955491,5
+4518695,25955491,5
+55341093,25955491,5
+4333851,25955491,5
+4789722,25955491,5
+thisisgap,25955491,5
+76185877,25955491,4
+anison,25955491,3
+iamliving,25955491,3
+5525460,25955491,3
+61398424,25955491,4
+44485871,25955491,4
+ishra,25955491,4
+107392859,25955491,4
+84311404,25955491,2
+53474498,25955491,4
+3948207,25955491,4
+58126470,25955491,5
+yiyislife,25955491,5
+90130330,25955491,4
+134858358,25955491,5
+118862756,25955491,5
+59686218,25955491,5
+47653561,25955491,5
+5318547,25955491,4
+38083634,25955491,5
+gatsby78,25955491,3
+132333627,25955491,4
+7221416,25955491,4
+3748337,25955491,-1
+quaner1126,25955491,-1
+hdjjys,25955491,3
+50558551,25955491,5
+67658502,25955491,5
+76297258,25955491,4
+130150805,25955491,3
+43614255,25955491,5
+Ivettezaq,25955491,4
+67311979,25955491,-1
+51938291,25955491,5
+littlevanny,25955491,5
+milkbook,25955491,5
+62528741,25955491,4
+136420600,25955491,2
+67055972,25955491,4
+28846484,25955491,5
+zcsyzdln,25955491,4
+earthchild,25955491,4
+51696794,25955491,5
+2341369,25955491,5
+litian19890502,25955491,4
+45066097,25955491,5
+122340180,25955491,4
+35162201,25955491,4
+feller,25955491,4
+luohuazhu,25955491,5
+49487093,25955491,5
+pranksterJ,25955491,3
+63454756,25955491,5
+55743188,25955491,5
+114645921,25955491,4
+78656769,25955491,4
+42859187,25955491,5
+68588893,25955491,3
+leayingly,25955491,5
+48029943,25955491,4
+134546006,25955491,5
+3879960,25955491,5
+136570167,25955491,5
+136570167,25955491,5
+robot_d,25955491,3
+84419481,25955491,5
+65719413,25955491,5
+wayneZ_z,25955491,3
+46794642,25955491,4
+sade1996,25955491,5
+3322566,25955491,3
+131135417,25955491,3
+possion007,25955491,4
+62497317,25955491,4
+90272032,25955491,5
+3906105,25955491,5
+csprite,25955491,5
+66602650,25955491,5
+53810483,25955491,5
+77691678,25955491,5
+CrystaDD,25955491,5
+LadyMavis,25955491,4
+xisahala,25955491,2
+1671301,25955491,5
+91756102,25955491,5
+67220317,25955491,4
+haji,25955491,3
+61497577,25955491,4
+81962971,25955491,3
+bilibili01,25955491,3
+91882469,25955491,4
+58723630,25955491,5
+43667084,25955491,4
+yscysc803,25955491,4
+68933969,25955491,5
+maomao19901108,25955491,3
+128063403,25955491,4
+47576659,25955491,3
+johnsnow,25955491,5
+74446199,25955491,5
+34217360,25955491,4
+49173412,25955491,5
+39781506,25955491,2
+130488268,25955491,3
+kimimi,25955491,5
+maimai251,25955491,4
+136454222,25955491,3
+90546251,25955491,5
+shirleyrenoyuto,25955491,4
+62148442,25955491,5
+121305318,25955491,4
+44600004,25955491,4
+62120599,25955491,3
+55457012,25955491,5
+120556473,25955491,4
+129577459,25955491,1
+hh-ming,25955491,5
+jolllllly,25955491,5
+69015372,25955491,3
+53403999,25955491,4
+52864878,25955491,4
+57509113,25955491,2
+133762700,25955491,5
+fyf719,25955491,4
+68277125,25955491,4
+mousethe8,25955491,5
+59033325,25955491,5
+105864771,25955491,3
+123593065,25955491,-1
+hou_yuting,25955491,-1
+pianohood,25955491,5
+33730062,25955491,5
+59956259,25955491,3
+43671696,25955491,4
+77086576,25955491,5
+6877388,25955491,3
+46370067,25955491,4
+1678343,25955491,4
+95884206,25955491,4
+66502007,25955491,5
+52529736,25955491,5
+57449856,25955491,5
+132463662,25955491,4
+33684021,25955491,4
+54507832,25955491,3
+65445656,25955491,5
+90543489,25955491,5
+iD415,25955491,4
+muxiaoxu,25955491,5
+Asukaluo,25955491,4
+ljwcurry,25955491,4
+sept7,25955491,2
+71266039,25955491,5
+4411166,25955491,4
+75549366,25955491,5
+cwalet,25955491,4
+mira_yukin,25955491,5
+17775259,25955491,4
+HENAI,25955491,5
+90412571,25955491,4
+qylp,25955491,5
+39126171,25955491,4
+lebendoudou,25955491,5
+37371725,25955491,5
+53362350,25955491,3
+kejinlong,25955491,4
+46666090,25955491,5
+82500899,25955491,4
+yukiloh,25955491,4
+67503021,25955491,5
+47601578,25955491,4
+1934678,25955491,5
+yolanda1920,25955491,4
+59464689,25955491,5
+46874810,25955491,5
+satan1988,25955491,4
+34753066,25955491,5
+65012771,25955491,4
+77222475,25955491,5
+austinxw,25955491,4
+crt,25955491,2
+67967186,25955491,5
+42603367,25955491,4
+41990953,25955491,-1
+luffliu,25955491,5
+1280092,25955491,4
+3642691,25955491,4
+50188986,25955491,5
+LOVEFEIR,25955491,5
+49105517,25955491,5
+51863917,25955491,4
+47853230,25955491,3
+136738123,25955491,-1
+CraziLaura,25955491,5
+127893299,25955491,4
+goi59121,25955491,4
+44564068,25955491,4
+52192124,25955491,5
+68779428,25955491,4
+HugoVince,25955491,3
+84042964,25955491,5
+134224702,25955491,5
+papa1968,25955491,5
+60848115,25955491,5
+shenggxhz,25955491,5
+60994756,25955491,5
+ccinder,25955491,-1
+54374464,25955491,5
+46766450,25955491,4
+longya,25955491,4
+14093841,25955491,5
+Bebefore,25955491,5
+48906452,25955491,5
+48694579,25955491,-1
+luanwuCAT,25955491,4
+96000077,25955491,5
+40027917,25955491,4
+3523793,25955491,4
+126829630,25955491,4
+39104472,25955491,4
+58347054,25955491,4
+92871854,25955491,2
+37355445,25955491,5
+125689704,25955491,4
+53426587,25955491,5
+cristinali,25955491,4
+xs2019,25955491,2
+usay,25955491,4
+53554219,25955491,3
+47852493,25955491,5
+xong,25955491,5
+52926805,25955491,-1
+nemooO,25955491,4
+52004251,25955491,5
+65319841,25955491,3
+rociowyc,25955491,5
+73958470,25955491,5
+115897834,25955491,4
+wumengyu,25955491,4
+80470441,25955491,5
+58414355,25955491,5
+jluy,25955491,4
+laodao9527,25955491,4
+laodao9527,25955491,4
+VirginiaHsu,25955491,5
+huoLayfeng,25955491,4
+83082532,25955491,4
+128993428,25955491,4
+33357810,25955491,4
+101745561,25955491,5
+49115709,25955491,5
+87226531,25955491,5
+64244763,25955491,5
+37620368,25955491,4
+64143096,25955491,5
+Pincent,25955491,4
+42252873,25955491,4
+60908358,25955491,4
+102093187,25955491,4
+3273111,25955491,3
+53126915,25955491,4
+132172419,25955491,5
+emisyse,25955491,5
+61134150,25955491,5
+64062822,25955491,4
+54736283,25955491,5
+57217354,25955491,3
+2913672,25955491,4
+71130403,25955491,4
+yimingdan,25955491,5
+61713711,25955491,-1
+121557775,25955491,5
+48055064,25955491,4
+sevenready,25955491,3
+yi713q,25955491,5
+60889822,25955491,-1
+85497199,25955491,4
+131533540,25955491,5
+48313436,25955491,4
+59075788,25955491,3
+44725365,25955491,3
+54286772,25955491,4
+37226632,25955491,4
+36359450,25955491,5
+65830621,25955491,5
+133533044,25955491,5
+75096447,25955491,4
+56966752,25955491,3
+101792652,25955491,5
+YuSu,25955491,5
+48242154,25955491,5
+nealwzn,25955491,4
+61569566,25955491,5
+3789079,25955491,2
+82333155,25955491,4
+52750876,25955491,4
+mousemouse,25955491,5
+2846709,25955491,2
+43835451,25955491,5
+4712087,25955491,4
+liujunhe123,25955491,5
+26545118,25955491,5
+imato,25955491,5
+imato,25955491,5
+39772273,25955491,4
+terminadora,25955491,4
+61162296,25955491,-1
+77061952,25955491,3
+heliumchen,25955491,5
+wusiyi,25955491,4
+82820975,25955491,4
+cecilelover,25955491,5
+4042513,25955491,3
+84077935,25955491,4
+3924193,25955491,4
+Pius,25955491,4
+ipodmelody,25955491,4
+34457375,25955491,4
+50061483,25955491,4
+58262603,25955491,4
+1381065,25955491,4
+53592649,25955491,5
+91525117,25955491,5
+91525117,25955491,5
+54090532,25955491,4
+75215757,25955491,5
+63858329,25955491,5
+fgui,25955491,5
+52408414,25955491,4
+82623937,25955491,4
+78755479,25955491,3
+59964725,25955491,4
+truthyfarr,25955491,4
+dearruin,25955491,3
+dawk42,25955491,3
+3612868,25955491,5
+lucyhuang21,25955491,3
+lovetatum,25955491,4
+17791320,25955491,3
+schumibati,25955491,5
+53220313,25955491,3
+58219667,25955491,5
+Hunjianxia,25955491,5
+64833909,25955491,5
+43773144,25955491,5
+49724572,25955491,5
+64259816,25955491,3
+moca87,25955491,4
+48816803,25955491,4
+93758972,25955491,5
+49863332,25955491,5
+futurejoy,25955491,3
+Ando.L,25955491,3
+50919323,25955491,3
+2803619,25955491,5
+min1,25955491,4
+63981734,25955491,4
+56755911,25955491,5
+7510013,25955491,4
+xiaosongstory,25955491,5
+thesillyone,25955491,5
+honestydudu,25955491,4
+19790770,25955491,5
+19790770,25955491,5
+121433358,25955491,5
+48278440,25955491,4
+44386404,25955491,5
+66766065,25955491,5
+agentying,25955491,4
+44966176,25955491,5
+135645457,25955491,2
+missingworld,25955491,4
+97655546,25955491,5
+128144955,25955491,4
+131610704,25955491,4
+phihead,25955491,4
+3003169,25955491,5
+2846988,25955491,4
+48179852,25955491,5
+58249428,25955491,4
+K.chan,25955491,4
+45673380,25955491,5
+49298846,25955491,5
+65166974,25955491,5
+59390060,25955491,3
+61328119,25955491,3
+122648938,25955491,5
+twinklingm,25955491,-1
+GreenL,25955491,4
+79127642,25955491,5
+52878748,25955491,5
+57079509,25955491,5
+jinjidexiong,25955491,4
+sjt641100358,25955491,4
+hichai,25955491,3
+121460001,25955491,5
+2255666,25955491,4
+135248605,25955491,5
+xlei130,25955491,2
+81322557,25955491,4
+AliceYmz,25955491,5
+3132362,25955491,4
+70296365,25955491,5
+96290717,25774051,4
+50414826,25774051,3
+mustundead,25774051,3
+eefee,25774051,4
+1187053,25774051,4
+waldo0121,25774051,4
+70990506,25774051,3
+127478888,25774051,5
+59665595,25774051,2
+55714302,25774051,3
+65031005,25774051,4
+sho-week,25774051,4
+26727621,25774051,4
+54342431,25774051,3
+56164676,25774051,3
+39728715,25774051,3
+howlformousai,25774051,4
+bigsword,25774051,3
+59285776,25774051,5
+cicia_lee,25774051,4
+vagetables,25774051,4
+63744273,25774051,3
+63579771,25774051,3
+la739212322,25774051,5
+leesyxx,25774051,3
+77531616,25774051,-1
+69406009,25774051,4
+45242330,25774051,2
+pigmiura,25774051,3
+OpenSpaces,25774051,3
+a130738,25774051,3
+136342242,25774051,4
+littleO,25774051,2
+64182296,25774051,5
+32911120,25774051,4
+huanm,25774051,3
+Kevin3,25774051,3
+59559950,25774051,3
+humechan,25774051,4
+jennylove,25774051,4
+36352996,25774051,2
+qiantuo0508,25774051,3
+67609353,25774051,4
+58310222,25774051,4
+stuyannnnnnnnnn,25774051,3
+72257329,25774051,2
+watiler,25774051,3
+69170719,25774051,1
+53868140,25774051,4
+45402904,25774051,3
+51490972,25774051,3
+40643745,25774051,4
+137409901,25774051,5
+22338643,25774051,4
+67330888,25774051,4
+52706531,25774051,3
+lfyaya,25774051,3
+qiusechun,25774051,4
+66077816,25774051,5
+59741946,25774051,3
+132979100,25774051,4
+135907100,25774051,4
+1807664,25774051,-1
+53644623,25774051,3
+l726,25774051,4
+54116667,25774051,3
+loafingnick,25774051,3
+72485230,25774051,4
+58472013,25774051,3
+onlyforny,25774051,3
+jozenky,25774051,3
+52142068,25774051,4
+48541726,25774051,4
+47331203,25774051,3
+L-Meditation,25774051,3
+48712788,25774051,3
+dangdang1027,25774051,4
+lalapq,25774051,3
+zxswan,25774051,5
+4280640,25774051,3
+yeming727,25774051,3
+51424042,25774051,3
+82910448,25774051,3
+130728708,25774051,3
+xiaomujunjun,25774051,3
+dashe,25774051,4
+59106111,25774051,4
+97396333,25774051,3
+88926842,25774051,4
+52246931,25774051,2
+64123295,25774051,4
+4657116,25774051,3
+lovehebey,25774051,2
+tongnixcv,25774051,2
+lingnian,25774051,3
+Flora1119,25774051,3
+sharkspeare,25774051,3
+39817838,25774051,4
+HBHelena,25774051,3
+26265440,25774051,4
+52971236,25774051,4
+1355863,25774051,2
+57479148,25774051,3
+64833909,25774051,2
+56143102,25774051,5
+53721569,25774051,4
+44691353,25774051,2
+66112477,25774051,3
+mian11,25774051,2
+4140462,25774051,-1
+59290556,25774051,2
+9360035,25774051,4
+46014273,25774051,4
+2300914,25774051,-1
+50797675,25774051,3
+1929074,25774051,4
+78399714,25774051,3
+51138955,25774051,3
+125406541,25774051,2
+44758132,25774051,5
+fighting-yamap,25774051,4
+3982089,25774051,3
+52112521,25774051,4
+53682563,25774051,4
+129488626,25774051,3
+liyuanhui,25774051,3
+137728472,25774051,5
+bxc1988yiderky,25774051,4
+69529350,25774051,4
+roseforu,25774051,4
+3722910,25774051,3
+46524183,25774051,5
+80157681,25774051,5
+Orange_Milk,25774051,3
+summer0607,25774051,4
+momoko_huang,25774051,3
+115368831,25774051,3
+hcsh,25774051,2
+48470895,25774051,3
+119263813,25774051,3
+119263813,25774051,3
+joker619,25774051,4
+Ziya,25774051,3
+Collins1995,25774051,3
+66404994,25774051,2
+happysadop,25774051,3
+130488268,25774051,2
+87705662,25774051,3
+65187145,25774051,3
+23826255,25774051,3
+138017764,25774051,-1
+56533866,25774051,2
+46988809,25774051,3
+kristong,25774051,4
+51815099,25774051,4
+94868646,25774051,4
+51661693,25774051,3
+122868077,25774051,4
+pretendor,25774051,3
+62320375,25774051,4
+55942870,25774051,4
+67823219,25774051,5
+58158290,25774051,3
+4402048,25774051,3
+MeyouYu,25774051,3
+dewar,25774051,3
+71181418,25774051,4
+76028703,25774051,4
+74115900,25774051,4
+1322481,25774051,2
+shanghairen,25774051,3
+1544332,25774051,2
+miki119,25774051,4
+54324041,25774051,3
+64136344,25774051,3
+cuizixi,25774051,5
+75667669,25774051,4
+131208902,25774051,3
+108287560,25774051,5
+lantianhaomiao,25774051,4
+27507760,25774051,3
+1056656,25774051,3
+50450766,25774051,3
+1019579,25774051,3
+75598962,25774051,3
+65545100,25774051,3
+m-n,25774051,3
+128012079,25774051,5
+55550016,25774051,4
+luzhiyu,25774051,2
+greengreendeer,25774051,2
+56086830,25774051,3
+63739864,25774051,4
+andrpirl,25774051,5
+51967154,25774051,3
+2338228,25774051,2
+maomouren,25774051,4
+48167301,25774051,3
+fish6058,25774051,4
+74033673,25774051,4
+73471648,25774051,5
+wangmuse,25774051,3
+52918200,25774051,3
+128669332,25774051,4
+51256449,25774051,3
+70055114,25774051,3
+Ranfeg,25774051,-1
+85770148,25774051,3
+69255956,25774051,3
+46923422,25774051,5
+bikibiki,25774051,2
+4601153,25774051,4
+seven-day,25774051,-1
+63431252,25774051,4
+64771060,25774051,3
+53526243,25774051,4
+125196459,25774051,3
+2112561,25774051,3
+64628791,25774051,3
+db00goal,25774051,3
+Sharpay0405,25774051,3
+56435930,25774051,2
+45177549,25774051,3
+1567784,25774051,4
+82312414,25774051,4
+51909421,25774051,3
+68630000,25774051,4
+52591024,25774051,2
+103271136,25774051,4
+66590810,25774051,5
+41651433,25774051,5
+cainroziel,25774051,4
+xxlisten,25774051,4
+2014779,25774051,2
+63399051,25774051,4
+130541613,25774051,4
+3014602,25774051,3
+natsume1127,25774051,4
+47593124,25774051,2
+Fuck_need_U.,25774051,3
+59451032,25774051,4
+3969292,25774051,3
+musicyue21,25774051,3
+xinxuqi,25774051,4
+jupengorall,25774051,1
+2265138,25774051,5
+myself920,25774051,4
+dydyd_douban,25774051,2
+74818677,25774051,3
+gogowa,25774051,3
+52321375,25774051,4
+44005693,25774051,4
+59838683,25774051,3
+53464389,25774051,-1
+43458075,25774051,5
+3446335,25774051,5
+54018069,25774051,3
+93892137,25774051,3
+ayumiH,25774051,4
+zhanshenzhy,25774051,4
+32222992,25774051,3
+Iris_Ukiyoe,25774051,4
+meiweimusic,25774051,4
+68228749,25774051,3
+60806669,25774051,4
+NAGISHO,25774051,3
+65800533,25774051,3
+shihuayiduo,25774051,4
+ideyes,25774051,1
+66980915,25774051,3
+2330272,25774051,3
+128991169,25774051,5
+119262734,25774051,4
+kusakareno,25774051,-1
+65890025,25774051,5
+45665171,25774051,2
+24245217,25774051,3
+66965988,25774051,2
+ai7love,25774051,3
+steveliux,25774051,3
+ertianyiliu,25774051,4
+64082591,25774051,2
+angeiyc,25774051,4
+59348979,25774051,4
+92318310,25774051,3
+63778440,25774051,5
+115509459,25774051,4
+83119838,25774051,3
+4842930,25774051,3
+62210177,25774051,3
+qiuqiu0619,25774051,4
+nicenicenic,25774051,3
+38996035,25774051,3
+53233343,25774051,2
+57654653,25774051,4
+79400267,25774051,3
+peggyzhu,25774051,5
+utopialand,25774051,3
+71298339,25774051,4
+102911668,25774051,3
+57488053,25774051,4
+lavende,25774051,4
+100631304,25774051,5
+typezero,25774051,2
+136272758,25774051,3
+42781255,25774051,4
+CYPAAAAA,25774051,4
+35572328,25774051,3
+3769878,25774051,4
+aibamoe,25774051,3
+CatherXiao,25774051,3
+81374641,25774051,3
+48593382,25774051,3
+xuyansong,25774051,4
+137839195,25774051,3
+59951804,25774051,3
+52215790,25774051,4
+fallenisland,25774051,3
+100179635,25774051,4
+114115384,25774051,3
+67544902,25774051,3
+75792815,25774051,4
+3455527,25774051,3
+hegelian,25774051,4
+db924519251,25774051,4
+shuang331,25774051,3
+kqzhu,25774051,3
+120161233,25774051,4
+4876430,25774051,4
+127268669,25774051,3
+108296832,25774051,1
+45820206,25774051,4
+80273592,25774051,4
+65466493,25774051,5
+88285360,25774051,3
+134269225,25774051,3
+4077370,25774051,3
+65284900,25774051,4
+huangyuanmoyan,25774051,5
+58304353,25774051,4
+93484113,25774051,4
+zianzhao,25774051,4
+56969754,25774051,5
+2600480,25774051,4
+67182363,25774051,4
+callyc,25774051,5
+46696173,25774051,3
+59408878,25774051,1
+109657209,25774051,4
+58865216,25774051,4
+55886831,25774051,4
+43215145,25774051,3
+68893935,25774051,-1
+134503726,25774051,3
+62383479,25774051,4
+66209180,25774051,3
+33414273,25774051,3
+PringlesLinB,25774051,3
+10828318,25774051,3
+48188220,25774051,4
+Sylar10,25774051,3
+44112284,25774051,3
+57646854,25774051,3
+wuxi4945,25774051,4
+21139926,25774051,3
+48854859,25774051,3
+52917026,25774051,5
+45522373,25774051,4
+kyo85,25774051,3
+joyfish0912,25774051,3
+135724867,25774051,4
+77378264,25774051,4
+vivichris,25774051,3
+49567226,25774051,4
+2106137,25774051,3
+wiwikuang,25774051,3
+50353681,25774051,2
+axio,25774051,4
+gisela_fan,25774051,4
+43832986,25774051,1
+1068125,25774051,4
+zzgpyfz,25774051,2
+136910570,25774051,3
+62626398,25774051,4
+128111484,25774051,-1
+1525882,25774051,5
+125741123,25774051,4
+landy0514,25774051,2
+leeyzh,25774051,4
+nicdone,25774051,3
+Amo621,25774051,1
+robinchenjiang,25774051,4
+tianranzijiegou,25774051,3
+37095412,25774051,4
+42149787,25774051,3
+126168366,25774051,3
+4305669,25774051,3
+50760323,25774051,4
+52758719,25774051,2
+wangyi2011,25774051,3
+66686811,25774051,4
+47576659,25774051,3
+64879609,25774051,3
+1412545,25774051,-1
+58064521,25774051,3
+77520220,25774051,4
+68174256,25774051,4
+56484149,25774051,4
+47209079,25774051,4
+126643597,25774051,4
+108077404,25774051,3
+2658903,25774051,4
+100953233,25774051,5
+115263014,25774051,3
+Creep_,25774051,3
+55937351,25774051,3
+69976018,25774051,3
+47037959,25774051,3
+60724447,25774051,3
+75673672,25774051,3
+43393007,25774051,2
+135754076,25774051,4
+37853313,25774051,2
+71868009,25774051,5
+arashiran,25774051,5
+87387635,25774051,4
+63170647,25774051,3
+63292425,25774051,4
+adidasisallin,25774051,2
+37437361,25774051,4
+54467510,25774051,4
+touch1986summer,25774051,3
+51445023,25774051,4
+134938707,25774051,4
+79239508,25774051,3
+IronCock,25774051,5
+Mary-jasmine,25774051,4
+68037802,25774051,4
+1973189,25774051,4
+58614276,25774051,4
+67695770,25774051,3
+unakao,25774051,4
+62515963,25774051,2
+90681003,25774051,3
+lichade,25774051,3
+134417369,25774051,3
+bailinlin,25774051,-1
+81645668,25774051,3
+58862112,25774051,4
+freak-zoe,25774051,2
+sosofly,25774051,4
+80058700,25774051,3
+68607460,25774051,3
+GMDY,25774051,3
+96000077,25774051,4
+69730287,25774051,2
+70415985,25774051,4
+115731110,25774051,3
+75937419,25774051,3
+49900100,25774051,-1
+yuanyang1100,25774051,4
+89852120,25774051,3
+lollybomb,25774051,3
+metkee,25774051,3
+61569380,25774051,4
+44564068,25774051,4
+koiwai0908,25774051,4
+philette,25774051,4
+chedan-NB,25774051,3
+137555231,25774051,2
+Sennir,25774051,4
+48057625,25774051,3
+70074306,25774051,5
+Joest,25774051,3
+134310076,25774051,3
+96799379,25774051,3
+36412946,25774051,3
+59378291,25774051,3
+55950775,25774051,3
+47832961,25774051,3
+j_exe,25774051,4
+a-nie,25774051,3
+66485054,25774051,2
+56091903,25774051,3
+62275045,25774051,3
+125040121,25774051,3
+88452602,25774051,3
+84955242,25774051,5
+orangeT,25774051,4
+sujin6041,25774051,4
+luohuazhu,25774051,3
+122173068,25774051,3
+71974219,25774051,3
+49712766,25774051,4
+aragakki,25774051,3
+127426227,25774051,3
+77922789,25774051,5
+easonkoko,25774051,3
+tamanegichan,25774051,4
+36554914,25774051,5
+spnda,25774051,4
+61093612,25774051,5
+74990413,25774051,3
+68277125,25774051,3
+63531003,25774051,3
+a476583825,25774051,3
+49371871,25774051,4
+69251373,25774051,4
+GayScript,25774051,3
+91252299,25774051,3
+wena,25774051,3
+homedrama,25774051,4
+78169762,25774051,4
+61415856,25774051,2
+76552950,25774051,3
+38770627,25774051,3
+50263067,25774051,3
+46221574,25774051,4
+nyx0115,25774051,4
+yuyang1990720,25774051,5
+genjikei,25774051,4
+Llewoen,25774051,3
+playtoy,25774051,3
+73064038,25774051,3
+nengyinyibeiwu,25774051,3
+2210399,25774051,2
+47818066,25774051,3
+123463627,25774051,3
+50865043,25774051,2
+52451378,25774051,3
+3088700,25774051,3
+ensi,25774051,4
+wxcQluotuo,25774051,3
+102930164,25774051,4
+2588629,25774051,2
+allaguo,25774051,3
+4784880,25774051,3
+65669179,25774051,3
+sai27,25774051,3
+hefayisixiusi,25774051,4
+81884634,25774051,3
+wmwm,25774051,4
+cbeam,25774051,3
+84238663,25774051,3
+47100012,25774051,4
+49074611,25774051,4
+annho,25774051,3
+63879603,25774051,-1
+120566516,25774051,3
+47246915,25774051,3
+64173512,25774051,3
+chouchou0707,25774051,4
+idalblack,25774051,-1
+71534592,25774051,5
+75437667,25774051,4
+62897451,25774051,4
+42125701,25774051,-1
+3114580,25774051,3
+43603952,25774051,3
+102744158,25774051,4
+etchitaro,25774051,5
+foofights,25774051,4
+zlljxm,25774051,2
+35892009,25774051,3
+jessemoon,25774051,3
+45968027,25774051,3
+51227412,25774051,3
+44435715,25774051,5
+61223246,25774051,3
+68630108,25774051,3
+104777463,25774051,4
+kongkong7,25774051,4
+62774430,25774051,4
+2599660,25774051,3
+47647880,25774051,3
+57616259,25774051,3
+kiwimomo,25774051,3
+lovemj4ever,25774051,3
+59667285,25774051,3
+58484149,25774051,3
+48251188,25774051,3
+lazymn,25774051,3
+52307083,25774051,4
+fly0222,25774051,3
+darkness211,25774051,3
+82267820,25774051,4
+47764376,25774051,3
+wenbo2003,25774051,3
+finle,25774051,3
+1943610,25774051,3
+115803435,25774051,2
+100338185,25774051,3
+73678720,25774051,3
+4469131,25774051,4
+DERRICK_ROSE,25774051,4
+126804729,25774051,3
+114284723,25774051,4
+jore1102,25774051,4
+83836566,25774051,4
+35224934,25774051,4
+wakaka1986,25774051,3
+2305028,25774051,4
+likecake,25774051,3
+53370159,25774051,3
+60002715,25774051,2
+marage,25774051,5
+zooyam,25774051,3
+40236199,25774051,3
+123235799,25774051,-1
+3420891,25774051,2
+eternitydarling,25774051,5
+sakimay,25774051,3
+71946766,25774051,4
+koonom,25774051,4
+emeline,25774051,2
+3951378,25774051,4
+65872380,25774051,4
+81245114,25774051,3
+68592556,25774051,4
+1849986,25774051,3
+43344167,25774051,3
+lhs,25774051,2
+csp,25774051,3
+kiki0616,25774051,2
+sakurahao,25774051,3
+63033488,25774051,3
+20657820,25774051,4
+36950087,25774051,-1
+CTT696,25774051,4
+2266030,25774051,3
+43181086,25774051,3
+46055019,25774051,5
+3680251,25774051,4
+49419366,25774051,3
+3410802,25774051,3
+63559969,25774051,4
+68776201,25774051,4
+calmlygod,25774051,5
+58487163,25774051,3
+72820019,25774051,5
+57501453,25774051,3
+ZRWei,25774051,3
+lieye,25774051,3
+momo077,25774051,3
+bamboojdiandian,25774051,3
+66207629,25774051,4
+75826878,25774051,3
+karasu419,25774051,4
+49191008,25774051,2
+Uvo,25774051,2
+i13nocry,25774051,4
+75555205,25774051,4
+3686271,25774051,3
+2492855,25774051,4
+xin_,25774051,3
+VampirX,25774051,4
+jinjidexiong,25774051,3
+Neo_chill,25774051,4
+131551681,25774051,2
+63270983,25774051,3
+60406508,25774051,2
+48167450,25774051,3
+116540697,25774051,3
+17871243,25774051,4
+87786678,25774051,4
+helvinyang,25774051,4
+136875339,25774051,3
+45184630,25774051,3
+edward4th,25774051,4
+INTERVENTION,25774051,4
+48315386,25774051,3
+73871573,25774051,3
+75625244,25774051,-1
+CharlieXiaoxiao,25774051,2
+12822970,25774051,4
+119495221,25774051,3
+133380603,25774051,4
+82691525,25774051,3
+benjune,25774051,3
+aiJC,25774051,4
+luvsoon,25774051,3
+4134812,25774051,3
+TAIGOUA,25774051,4
+47263713,25774051,1
+caixiaoqiang,25774051,4
+lingojj,25774051,3
+92775477,25774051,2
+agnes223,25774051,4
+sherrychris,25774051,3
+81628425,25774051,3
+movieview,25774051,3
+ohahahu,25774051,3
+ibstone,25774051,3
+2185681,25774051,3
+DellaZ,25774051,3
+Rihaulin,25774051,4
+56922790,25774051,3
+81845294,25774051,4
+38461766,25774051,3
+22991326,25774051,3
+58135379,25774051,4
+102938445,25774051,3
+54653189,25774051,5
+78389609,25774051,3
+1074069,25774051,3
+yoyo3105,25774051,2
+1369113,25774051,3
+53416381,25774051,5
+68446356,25774051,-1
+102220840,25774051,3
+Stephen2046,25774051,2
+3365504,25774051,5
+67061409,25774051,2
+33836504,25774051,5
+60020781,25774051,3
+4129696,25774051,3
+wangyanjun,25774051,3
+41634233,25774051,3
+46444197,25774051,3
+ys1013,25774051,3
+57896440,25774051,3
+63136995,25774051,3
+ajuews,25774051,4
+77176909,25774051,4
+115593440,25774051,4
+10149854,25774051,4
+izaijin,25774051,3
+baixiaoleng,25774051,5
+57370195,25774051,3
+56524460,25774051,4
+3579800,25774051,4
+mowo,25774051,3
+andyzhang1995,25774051,4
+96856511,25774051,2
+4841197,25774051,3
+48938261,25774051,5
+58428725,25774051,4
+yykenny,25774051,5
+hellokimi,25774051,3
+66159119,25774051,3
+58051077,25774051,4
+2323600,25774051,4
+79901120,25774051,4
+mumu2017,25774051,4
+108540094,25774051,2
+Finnegans,25774051,4
+Wegmarken27,25774051,4
+ORBR,25774051,2
+myweekend,25774051,3
+62688110,25774051,3
+sophie1900,25774051,4
+78412332,25774051,3
+Sigrid_Lu,25774051,2
+72219224,25774051,3
+45536018,25774051,4
+asvra,25774051,4
+Awezhang,25774051,3
+81845055,25774051,3
+iknowzxc,25774051,3
+shf993,25774051,3
+135906739,25774051,4
+3621482,25774051,4
+44276090,25774051,2
+61681574,25774051,3
+64348087,25774051,3
+136359567,25774051,3
+Cyrusli,25774051,4
+134318408,25774051,4
+92878802,25774051,3
+duanmurong,25774051,3
+64359754,25774051,4
+yuyucara,25774051,3
+caoyuanyue,25774051,4
+99022280,25774051,3
+102530220,25774051,3
+46818877,25774051,3
+120445293,25774051,3
+zuozichu,25774051,3
+39015968,25774051,4
+65639781,25774051,3
+79900116,25774051,-1
+hqwxyz,25774051,2
+80850838,25774051,2
+dongxuanlan,25774051,4
+44483182,25774051,3
+lovewaiter,25774051,3
+SpinStop,25774051,3
+37402473,25774051,4
+81351219,25774051,3
+59752375,25774051,4
+32019435,25774051,3
+2030641,25774051,3
+raychau,25774051,3
+76428013,25774051,3
+2092765,25774051,3
+61468605,25774051,4
+wooksae,25774051,4
+52873640,25774051,3
+4733166,25774051,3
+62735594,25774051,3
+87558213,25774051,3
+32144547,25774051,2
+mrockfire,25774051,3
+emilychoy,25774051,4
+14352147,25774051,3
+126467467,25774051,3
+orangecheung,25774051,4
+66456284,25774051,3
+lingqingchun,25774051,-1
+49645185,25774051,3
+58901835,25774051,4
+tuosai,25774051,4
+cookiecutter,25774051,4
+53920626,25774051,3
+cecilia9624,25774051,5
+65496704,25774051,3
+43335184,25774051,4
+60732201,25774051,4
+53719859,25774051,5
+chobit.w,25774051,3
+bearblindman,25774051,3
+67962053,25774051,4
+professor,25774051,3
+dailypop,25774051,3
+104842273,25774051,4
+72086305,25774051,2
+68528163,25774051,3
+90168995,25774051,5
+lcghere,25774051,3
+51689078,25774051,3
+134062078,25774051,4
+ellegardenn,25774051,3
+79075918,25774051,3
+96632957,25774051,3
+113982394,25774051,2
+AAAHHHAAA,25774051,3
+3230078,25774051,4
+75914022,25774051,3
+eleanor-xia,25774051,4
+106190306,25774051,3
+25350324,25774051,3
+phunny,25774051,4
+Plumed__Serpent,25774051,3
+tracycw618,25774051,4
+50405161,25774051,3
+60304638,25774051,3
+41438322,25774051,3
+seriousz,25774051,3
+1421869,25774051,3
+choushabi,25774051,4
+yangui,25774051,4
+103247038,25774051,3
+67061542,25774051,3
+55566255,25774051,4
+yxm8854,25774051,2
+66745395,25774051,3
+99977887,25774051,5
+54083120,25774051,4
+47580309,25774051,4
+DawnGreen,25774051,3
+58569504,25774051,4
+126076199,25774051,3
+116056901,25774051,5
+84708478,25774051,1
+celinedsam,25774051,3
+xyc1987,25774051,3
+66168101,25774051,4
+75328137,25774051,3
+ruo1996,25774051,3
+yuanqing630,25774051,4
+65313383,25774051,4
+119685812,25774051,4
+lingfriendly,25774051,4
+PunksNotDead,25774051,4
+60107866,25774051,3
+Mulholland,25774051,3
+85476027,25774051,4
+sentexiaohu,25774051,3
+erobin,25774051,3
+61223588,25774051,1
+97299651,25774051,3
+1530155,25774051,3
+59876080,25774051,4
+136887390,25774051,-1
+11566740,25774051,4
+59135946,25774051,5
+44121177,25774051,3
+xiaodou52,25774051,3
+40684892,25774051,4
+52408878,25774051,2
+veiko,25774051,3
+54277204,25774051,4
+66802637,25774051,3
+102611391,25774051,4
+120912258,25774051,3
+136235287,25774051,5
+bxg555,25774051,-1
+vexit,25774051,-1
+124812731,25774051,2
+moomoom,25774051,5
+moomoom,25774051,5
+3082576,25774051,3
+51602185,25774051,4
+48290856,25774051,2
+54693337,25774051,4
+iamdzn,25774051,5
+84781945,25774051,4
+133824957,25774051,3
+49308797,25774051,3
+71188390,25774051,4
+50348086,25774051,2
+53129472,25774051,3
+guoyunya,25774051,4
+gtxyxyz,25774051,4
+Sparta233,25774051,1
+63927330,25774051,4
+xsky1988,25774051,3
+AlienSuger,25774051,3
+47034969,25774051,3
+122556292,25774051,3
+vermouthsama,25774051,4
+131364833,25774051,5
+82974666,25774051,3
+nbyuan,25774051,3
+5129531,25774051,4
+15183757,25774051,3
+colinhayashi,25774051,4
+1458482,25774051,2
+50629676,25774051,4
+66178513,25774051,3
+44699537,25774051,3
+suzichong,25774051,3
+59842125,25774051,3
+MaSir,25774051,4
+43522692,25774051,3
+50451093,25774051,3
+2847341,25774051,4
+Ces7,25774051,3
+120828432,25774051,4
+ShoneSpeaking,25774051,5
+80602343,25774051,3
+83455232,25774051,4
+104507499,25774051,4
+ariellau,25774051,3
+funk,25774051,4
+119883443,25774051,4
+98956225,25774051,3
+47190086,25774051,4
+catngrass,25774051,4
+letriple,25774051,3
+Sk.Young,25774051,4
+75288450,25774051,3
+dabyrowe,25774051,2
+36537385,25774051,3
+55649933,25774051,4
+jestem1994,25774051,3
+55617091,25774051,3
+45055967,25774051,3
+61497577,25774051,3
+chaochao85mao,25774051,-1
+1929758,25774051,2
+92842822,25774051,4
+46686249,25774051,4
+1420335,25774051,5
+vicky_vampire,25774051,4
+46830605,25774051,3
+hichai,25774051,3
+weixiaoP,25774051,3
+seventhworkshop,25774051,3
+51721466,25774051,2
+jeonwoo,25774051,4
+cccpusahonor,25774051,2
+luocaoyaoyao,25774051,3
+3514261,25774051,3
+wtforz,25774051,3
+53378505,25774051,3
+32251971,25774051,4
+24806813,25774051,3
+colintide,25774051,2
+110718557,25774051,4
+annerabbit1127,25774051,3
+48359819,25774051,3
+2335013,25774051,3
+69532674,25774051,5
+Jerry-Zeng,25774051,3
+eva1221,25774051,4
+122725527,25774051,3
+40395158,25774051,3
+yoory,25774051,-1
+2654144,25774051,3
+SZH19920707,25774051,3
+72101237,25774051,4
+50157745,25774051,3
+62192972,25774051,4
+2309931,25774051,4
+Pabalee,25774051,3
+76025225,25774051,2
+lozer,25774051,4
+115849578,25774051,3
+wf2031830,25774051,4
+Lan.die,25774051,3
+cazze,25774051,4
+51784692,25774051,2
+54158411,25774051,2
+romanbaby,25774051,3
+71121472,25774051,4
+81899049,25774051,3
+120099521,25774051,3
+17841543,25774051,3
+120689172,25774051,3
+39024744,25774051,4
+rikkuwang,25774051,3
+83141101,25774051,3
+46837075,25774051,5
+45580580,25774051,5
+NysUn,25774051,3
+39627284,25774051,3
+sniperchris,25774051,4
+46728642,25774051,4
+hyuk7,25774051,4
+55312255,25774051,3
+46516486,25774051,4
+102747303,25774051,2
+61169740,25774051,4
+Betty_king,25774051,4
+jason-shi,25774051,5
+54107765,25774051,4
+32920328,25774051,4
+mingming1124530,25774051,3
+xiguaguagua,25774051,3
+4597338,25774051,3
+71878737,25774051,3
+killmystery,25774051,5
+cloverllx,25774051,3
+2820792,25774051,3
+i.nightwind,25774051,4
+2187951,25774051,3
+hanlu1991,25774051,4
+68020683,25774051,3
+AeroAnte,25774051,3
+liajoy,25774051,3
+fanxiaodong,25774051,2
+tsoo416,25774051,3
+52831736,25774051,3
+78914788,25774051,2
+Vanessa.,25774051,3
+lionel_stewart,25774051,5
+132800251,25774051,3
+frank1992,25774051,5
+tengteng58,25774051,4
+4201884,25774051,3
+55875465,25774051,4
+49807065,25774051,3
+1831746,25774051,3
+50060410,25774051,3
+43866584,25774051,3
+121132351,25774051,3
+FiveStrong,25774051,3
+67238808,25774051,3
+51416132,25774051,3
+addff,25774051,3
+chinriya,25774051,3
+togawa,25774051,3
+sixprecepts,25774051,3
+56035155,25774051,3
+jimmy037,25774051,3
+59105676,25774051,3
+zhangjian_1q26,25774051,2
+63612050,25774051,3
+lordbaker,25774051,4
+winkido,25774051,3
+siutakk,25774051,3
+1164137,25774051,4
+yujiuwei,25774051,3
+laojiaoshou,25774051,3
+bone314,25774051,4
+sirk,25774051,2
+76379695,25774051,3
+42724768,25774051,3
+121633982,25774051,3
+67742715,25774051,3
+4350779,25774051,3
+EloiseL,25774051,4
+1541668,25774051,-1
+61619787,25774051,4
+55872000,25774051,3
+57030523,25774051,3
+66575578,25774051,3
+119392686,25774051,4
+1211087,25774051,3
+131909298,25774051,5
+36185277,25774051,4
+50663434,25774051,2
+xuancaidanqing,25774051,3
+NINEYR,25774051,3
+meiamour,25774051,4
+86840728,25774051,3
+Xia0_K,25774051,4
+130845579,25774051,3
+honey10151106,25774051,3
+48379365,25774051,3
+xiaohei0919,25774051,4
+deshley,25774051,4
+14327084,25774051,4
+49284769,25774051,4
+eertdik,25774051,4
+kejinlong,25774051,1
+Moanin,25774051,2
+icaizhuo,25774051,3
+46230886,25774051,4
+llbreeze,25774051,4
+62296200,25774051,5
+56895506,25774051,-1
+53126913,25774051,3
+2099122,25774051,3
+NapCote,25774051,3
+okship,25774051,3
+3510245,25774051,3
+soundless618,25774051,3
+130024032,25774051,3
+Madao_D,25774051,4
+YeLLow_qst,25774051,3
+3142312,25774051,4
+74499406,25774051,3
+55479724,25774051,3
+meijiangshi,25774051,3
+40351422,25774051,5
+reorou,25774051,3
+69688835,25774051,3
+ayuandeDB,25774051,4
+80040060,25774051,2
+2244671,25774051,5
+Joeking.xiao,25774051,3
+millylyu,25774051,3
+32008707,25774051,5
+kokia233,25774051,5
+55603094,25774051,3
+88658178,25774051,3
+ponds,25774051,3
+58164147,25774051,3
+8012655,25774051,3
+64110948,25774051,3
+47319771,25774051,2
+62582526,25774051,3
+63874245,25774051,2
+cgy0330,25774051,3
+65408583,25774051,3
+38399919,25774051,-1
+70308638,25774051,4
+13053957,25774051,4
+43966741,25774051,3
+NosyBunny,25774051,3
+stardust1030,25774051,3
+angelababy_,25774051,3
+72781855,25774051,3
+62023518,25774051,3
+StillAliveLoL,25774051,4
+flytomilan,25774051,3
+119079844,25774051,3
+poooooop,25774051,4
+sjbni,25774051,4
+52537849,25774051,4
+mingfeng1988,25774051,4
+fuzyu,25774051,3
+54782743,25774051,2
+echoat1995,25774051,2
+gintokiyin,25774051,3
+57080555,25774051,2
+51772148,25774051,3
+soltyfreedom,25774051,4
+52167842,25774051,-1
+guitarain,25774051,4
+53544035,25774051,3
+gdhdun,25774051,3
+withsurui,25774051,3
+41193009,25774051,3
+yiyedu,25774051,3
+46038064,25774051,3
+43790131,25774051,3
+99077219,25774051,4
+2640194,25774051,2
+3957251,25774051,4
+50620549,25774051,4
+52470011,25774051,4
+68405335,25774051,3
+blueto,25774051,5
+92567735,25774051,4
+82644412,25774051,5
+25795086,25774051,3
+xiaoqili,25774051,3
+53312962,25774051,2
+53620031,25774051,4
+52097421,25774051,4
+65157272,25774051,-1
+63223538,25774051,3
+19734042,25774051,4
+toyuan,25774051,3
+aoniki,25774051,3
+36049101,25774051,4
+127080746,25774051,2
+127080746,25774051,2
+balelovesqian,25774051,4
+56981196,25774051,3
+35283943,25774051,3
+2768499,25774051,4
+48787128,25774051,3
+54034056,25774051,3
+61688299,25774051,5
+62880392,25774051,-1
+sujutotheme,25774051,4
+heyheygun,25774051,4
+13915635,25774051,5
+39878848,25774051,3
+53324487,25774051,-1
+86601635,25774051,3
+yimeiweiba,25774051,4
+51985669,25774051,3
+q164511490,25774051,3
+EdwardLear,25774051,4
+zhoushiyun,25774051,3
+wy23,25774051,3
+gongzitian,25774051,3
+3575164,25774051,2
+83838296,25774051,5
+83354741,25774051,5
+135092660,25774051,3
+46812658,25774051,3
+60788414,25774051,4
+136971594,25774051,5
+chuleiwu,25774051,3
+guinguin,25774051,-1
+78843177,25774051,2
+51095448,25774051,3
+39937848,25774051,4
+Yamaai,25774051,3
+87353564,25774051,3
+loulou-mae,25774051,4
+49752601,25774051,4
+45505797,25774051,3
+Hyke,25774051,3
+68741121,25774051,5
+tonyDFR,25774051,3
+71177489,25774051,4
+2987938,25774051,3
+42084433,25774051,3
+charles1102,25774051,4
+53908274,25774051,3
+von71224,25774051,4
+96479513,25774051,3
+115714696,25774051,3
+punkyifan,25774051,4
+63822026,25774051,4
+79631427,25774051,5
+41786270,25774051,3
+gshushu48,25774051,3
+13984024,25774051,4
+1767558,25774051,4
+22263173,25774051,4
+volcancano,25774051,3
+EchoVan,25774051,4
+132303246,25774051,4
+73189108,25774051,4
+edisondd,25774051,3
+137306852,25774051,-1
+119362745,25774051,4
+82687720,25774051,2
+75096447,25774051,3
+der_Baum,25774051,3
+rakbumps,25774051,4
+73784914,25774051,2
+132831650,25774051,4
+53883791,25774051,4
+31102423,25774051,2
+88273996,25774051,4
+baguabagua,25774051,4
+37111406,25774051,3
+73650637,25774051,4
+yangcht,25774051,4
+34205981,25774051,3
+3981138,25774051,4
+87691265,25774051,3
+yuyu427,25774051,3
+116054829,25774051,4
+99329587,25774051,5
+67353177,25774051,3
+53269895,25774051,2
+Rukia,25774051,3
+amy0303,25774051,4
+45158897,25774051,5
+pierrewrs,25774051,2
+49298107,25774051,3
+1450381,25774051,4
+1282175,25774051,3
+68318329,25774051,4
+37646652,25774051,3
+42832142,25774051,4
+brandnewstart,25774051,3
+jet_plane,25774051,2
+60599913,25774051,3
+adrian.chai.au,25774051,3
+56104621,25774051,3
+68807254,25774051,3
+44849027,25774051,5
+matthew1323,25774051,3
+74801562,25774051,4
+102594722,25774051,3
+Niaofei618,25774051,2
+yytaizi,25774051,2
+11615091,25774051,4
+136460394,25774051,3
+KatoShigeaki,25774051,3
+timorrowmain,25774051,4
+balltaker,25774051,4
+1196187,25774051,3
+78934649,25774051,4
+xguozi,25774051,3
+liushengjing,25774051,3
+37501692,25774051,4
+84790765,25774051,4
+57437837,25774051,5
+58578065,25774051,5
+48697353,25774051,2
+53656219,25774051,3
+mano_erina,25774051,5
+zcy0505,25774051,2
+54772504,25774051,3
+92490871,25774051,3
+COCOCOQUEEN,25774051,2
+66958106,25774051,4
+stolee,25774051,4
+chufanyan,25774051,3
+4239908,25774051,3
+zhangshura,25774051,3
+124640229,25774051,3
+57630941,25774051,3
+asa-yan,25774051,3
+66875139,25774051,3
+60914067,25774051,4
+crazyiszero,25774051,3
+73830337,25774051,3
+59243470,25774051,5
+YVANFUS,25774051,4
+59458875,25774051,3
+17672710,25774051,3
+19716945,25774051,3
+4508828,25774051,4
+singing15,25774051,5
+4290135,25774051,3
+81752466,25774051,3
+poppysuen,25774051,3
+57258871,25774051,4
+47509216,25774051,5
+55446081,25774051,3
+Shanglinyuan,25774051,3
+78957039,25774051,3
+60347813,25774051,4
+xiaojirou007,25774051,4
+1364563,25774051,4
+chinhao,25774051,3
+silencewong,25774051,3
+kuroneko2002,25774051,3
+71972704,25774051,3
+33245540,25774051,4
+105530942,25774051,4
+araragikoyomi,25774051,2
+68985594,25774051,3
+33392381,25774051,3
+jinghuanxuan,25774051,4
+4520667,25774051,3
+3631042,25774051,3
+xiwanzi,25774051,2
+zdoudou,25774051,3
+50972547,25774051,3
+65907866,25774051,2
+85324202,25774051,3
+127797249,25774051,5
+LYColin_Greed,25774051,5
+82391492,25774051,-1
+49322971,25774051,4
+cyg,25774051,3
+55465032,25774051,4
+iamacat101,25774051,5
+heisland,25774051,3
+maikocyan,25774051,4
+leiii,25774051,4
+tsy_joe,25774051,3
+53177130,25774051,4
+60166330,25774051,2
+ke-ke,25774051,5
+huangwei0079,25774051,3
+119313402,25774051,5
+41351821,25774051,3
+hbwsbo,25774051,3
+76655932,25774051,5
+3419902,25774051,3
+32995807,25774051,3
+51283005,25774051,3
+snapeloveyou,25774051,-1
+48687824,25774051,4
+TalkChan,25774051,4
+76168957,25774051,5
+68138575,25774051,4
+62302403,25774051,3
+trevin0411,25774051,3
+xiaosongqu,25774051,3
+97409290,25774051,4
+65623605,25774051,4
+silence17,25774051,4
+115219688,25774051,3
+ying029,25774051,4
+131352783,25774051,4
+M1racle,25774051,3
+faiel,25774051,4
+4388033,25774051,3
+laowa,25774051,-1
+79356010,25774051,3
+71569560,25774051,3
+34901213,25774051,3
+LazyCatZ,25774051,4
+57012377,25774051,4
+57012377,25774051,4
+edgeyeung,25774051,5
+136837238,25774051,-1
+66277108,25774051,4
+71561935,25774051,3
+3846866,25774051,5
+45601903,25774051,3
+34727533,25774051,3
+87035372,25774051,4
+44685216,25774051,4
+65176170,25774051,4
+83389859,25774051,4
+93606686,25774051,4
+rudygiraffe,25774051,2
+47704379,25774051,3
+2174443,25774051,5
+123624827,25774051,5
+58956224,25774051,4
+71961235,25774051,3
+81317162,25774051,4
+68887897,25774051,4
+shenlewuwu,25774051,5
+glowxi,25774051,3
+1886385,25774051,3
+57977721,25774051,3
+Ann-e,25774051,3
+fuck_time,25774051,-1
+37655368,25774051,3
+81713464,25774051,3
+heartbreakerkid,25774051,3
+38866851,25774051,4
+MihoKomatsu,25774051,3
+43896457,25774051,3
+119595701,25774051,3
+48514176,25774051,4
+124333866,25774051,4
+timejin,25774051,3
+32841660,25774051,3
+czj950615,25774051,3
+59162122,25774051,4
+72251882,25774051,4
+56967663,25774051,3
+baihuxian,25774051,3
+48078859,25774051,3
+soulgreen,25774051,4
+saosaoxy,25774051,3
+37424688,25774051,3
+57842655,25774051,3
+miyaM,25774051,4
+Mark201314,25774051,3
+30067864,25774051,-1
+65900502,25774051,4
+25960765,25774051,4
+123228313,25774051,4
+114353086,25774051,4
+72504662,25774051,4
+lokolifestyle,25774051,3
+ZouzheFoudouzhe,25774051,3
+curemyself,25774051,3
+69045210,25774051,4
+1182787,25774051,3
+wangmuyang,25774051,3
+ydyie,25774051,3
+ghostjoe,25774051,3
+69122757,25774051,4
+64740791,25774051,3
+115985324,25774051,3
+wangshibanban,25774051,4
+3177593,25774051,3
+HugoVince,25774051,4
+103222605,25774051,-1
+zetto,25774051,3
+lb-fighting,25774051,3
+yyuan9372,25774051,3
+61524961,25774051,3
+80461629,25774051,4
+58231376,25774051,3
+45575383,25774051,4
+hettler,25774051,3
+rachelff,25774051,4
+xjksama,25774051,4
+gluttony6,25774051,3
+50226238,25774051,3
+Neeeeeverland,25774051,3
+4150144,25774051,3
+87956504,25774051,3
+62153097,25774051,3
+49384394,25774051,3
+xx_jmlx,25774051,3
+4057118,25774051,3
+yukino,25774051,4
+hangecho,25774051,3
+60560120,25774051,4
+58649588,25774051,2
+54178409,25774051,4
+no1907,25774051,1
+37366321,25774051,3
+57368327,25774051,3
+84152502,25774051,3
+Ms.nikki,25774051,5
+Ms.nikki,25774051,5
+136268042,25774051,5
+cyrus_wong,25774051,3
+46416495,25774051,4
+135874162,25774051,2
+78601907,25774051,3
+smiletome,25774051,2
+zbc_endo,25774051,3
+87909103,25774051,4
+55896452,25774051,4
+47845902,25774051,3
+69232283,25774051,5
+62943026,25774051,3
+45543897,25774051,3
+58086381,25774051,4
+nangle,25774051,3
+2596903,25774051,2
+takahashili,25774051,3
+15112169,25774051,4
+BareTree,25774051,-1
+45804814,25774051,4
+44485871,25774051,3
+59394881,25774051,4
+68366606,25774051,3
+63676625,25774051,3
+39266615,25774051,5
+72984075,25774051,3
+58021100,25774051,3
+54652758,25774051,4
+38924619,25774051,3
+imoviekobe,25774051,3
+53773450,25774051,4
+50210563,25774051,4
+2911617,25774051,2
+musique,25774051,3
+shadowlover0816,25774051,3
+45549330,25774051,3
+DoDoangell,25774051,3
+49848634,25774051,4
+62148442,25774051,4
+51297703,25774051,4
+56070920,25774051,3
+67878115,25774051,3
+leechambo,25774051,3
+liqiyao8931,25774051,5
+Bening,25774051,4
+65664176,25774051,3
+Mackintosh,25774051,3
+57088195,25774051,3
+YTT_LS,25774051,4
+liiinda,25774051,5
+catswho,25774051,4
+sleeper_arashi,25774051,4
+yuanzai7,25774051,2
+bidhole,25774051,4
+kildren2013,25774051,3
+51735678,25774051,3
+46287060,25774051,3
+49319979,25774051,4
+85035571,25774051,1
+88171857,25774051,4
+29844884,25774051,5
+suh5213,25774051,3
+screem2046,25774051,3
+37737818,25774051,4
+54158519,25774051,3
+1892627,25774051,3
+42626995,25774051,3
+12667477,25774051,3
+4557738,25774051,4
+yyyyyrl,25774051,3
+Kios,25774051,5
+Dasiycat,25774051,3
+ILWTFT,25774051,4
+reave,25774051,4
+66035182,25774051,3
+130890583,25774051,5
+135662029,25774051,3
+niazion,25774051,2
+49007948,25774051,3
+51297351,25774051,2
+gushiyun,25774051,4
+ppllyc,25774051,4
+1495292,25774051,4
+63485325,25774051,4
+77316354,25774051,4
+xiamudemao,25774051,-1
+90217144,25774051,3
+57833598,25774051,4
+34557052,25774051,3
+yijingsheng,25774051,3
+62066830,25774051,4
+98110557,25774051,3
+tomqulab,25774051,2
+XXcolorful930,25774051,3
+ricechow,25774051,3
+136232526,25774051,5
+85948759,25774051,5
+54141112,25774051,4
+50490281,25774051,1
+127632434,25774051,3
+123386745,25774051,4
+nearlloveyou,25774051,3
+59556078,25774051,3
+115125689,25774051,3
+52106146,25774051,2
+75015059,25774051,-1
+1614995,25774051,4
+76397529,25774051,5
+42644379,25774051,3
+lanklelong,25774051,3
+46815070,25774051,2
+3540441,25774051,4
+119858082,25774051,3
+cqyyAyy,25774051,4
+suki0704,25774051,3
+estersssss,25774051,4
+44587302,25774051,4
+61069242,25774051,4
+60222551,25774051,3
+84564093,25774051,3
+btone0808,25774051,4
+119472433,25774051,3
+Ozu,25774051,3
+mayflylris,25774051,4
+xzyzsk7,25774051,3
+kellangamp,25774051,3
+80797429,25774051,3
+37320102,25774051,3
+58059498,25774051,4
+DangerRose,25774051,1
+tintintsang,25774051,3
+guotong,25774051,4
+jean4you,25774051,4
+53949979,25774051,3
+Makoto614,25774051,3
+qinxuanzi,25774051,3
+perlingting,25774051,4
+68368822,25774051,3
+63844800,25774051,3
+lindadarling,25774051,3
+youkeiki,25774051,3
+63730928,25774051,2
+57304904,25774051,4
+95884206,25774051,3
+x.sunday,25774051,3
+38513029,25774051,-1
+134362348,25774051,3
+115547734,25774051,3
+46534834,25774051,3
+4118910,25774051,1
+lingxie,25774051,4
+travelonthemoon,25774051,-1
+suuunino,25774051,3
+65079476,25774051,3
+aprilray,25774051,3
+cschester,25774051,3
+aspira,25774051,-1
+133379386,25774051,2
+80370645,25774051,4
+L5.P4,25774051,3
+98014979,25774051,3
+Reita.Y,25774051,5
+irene_kirakira,25774051,4
+baka_mono,25774051,5
+113050393,25774051,4
+gruel_,25774051,2
+47611635,25774051,4
+127118502,25774051,3
+130445057,25774051,3
+129611474,25774051,3
+haizizang5,25774051,4
+134146375,25774051,3
+59276802,25774051,3
+Ah-Can,25774051,-1
+acbc115,25774051,3
+Lynnarea,25774051,3
+domotoiceko,25774051,5
+65183965,25774051,4
+59172571,25774051,3
+59172571,25774051,3
+54783024,25774051,4
+84010010,25774051,3
+3340428,25774051,4
+gilyun,25774051,3
+smallcolor,25774051,3
+64819804,25774051,-1
+62139918,25774051,4
+135041231,25774051,4
+34244241,25774051,-1
+47320573,25774051,3
+45379580,25774051,4
+87079339,25774051,4
+79855225,25774051,3
+74145867,25774051,-1
+84028261,25774051,3
+cappuccinogdw,25774051,5
+118834654,25774051,3
+30322114,25774051,-1
+teroteuroko,25774051,3
+IceKey,25774051,4
+johnvivi,25774051,5
+65647086,25774051,4
+84495327,25774051,4
+curiousyue,25774051,3
+119852340,25774051,3
+68700662,25774051,5
+2434047,25774051,-1
+131805500,25774051,4
+73456502,25774051,3
+92081945,25774051,4
+51911229,25774051,5
+onlyck,25774051,2
+50159452,25774051,1
+LittleMissApril,25774051,3
+99508404,25774051,3
+60046891,25774051,5
+HandsomeJack,25774051,4
+prep,25774051,5
+CharlesLC,25774051,2
+50570726,25774051,3
+lostkimi,25774051,4
+abin520918,25774051,3
+56613176,25774051,1
+anyu1029,25774051,4
+shenyong6813,25774051,3
+wh396011051,25774051,3
+1498731,25774051,4
+51159769,25774051,4
+monkeek,25774051,3
+zjy1222,25774051,4
+51679757,25774051,4
+yitanium,25774051,3
+Sophieless,25774051,-1
+42497545,25774051,5
+Beginstosee,25774051,3
+124697172,25774051,4
+bfa1950,25774051,4
+MolaM,25774051,4
+61822233,25774051,3
+zling--HE,25774051,4
+46466887,25774051,3
+pandayuki,25774051,3
+keith_z,25774051,3
+55705224,25774051,3
+70296365,25774051,3
+3439248,25774051,2
+vincent-biubiu,25774051,3
+48565113,25774051,3
+4657541,25774051,3
+48120448,25774051,5
+97491371,25774051,4
+farewell_119,25774051,-1
+73763567,25774051,4
+75190732,25774051,4
+ameko_mago,25774051,2
+Sky_215,25774051,4
+bessie10105101,25774051,4
+45705071,25774051,4
+63015769,25774051,3
+3412571,25774051,4
+79637543,25774051,5
+44392664,25774051,3
+55006906,25774051,3
+youkilo,25774051,5
+92155502,25774051,3
+johnmcclane,25774051,3
+56431276,25774051,3
+94422178,25774051,3
+Mrlawrece,25774051,3
+chenyinrei,25774051,3
+1496371,25774051,4
+72683607,25774051,4
+13259260,25774051,1
+hear_linda,25774051,-1
+SANDMANECW,25774051,3
+49227399,25774051,5
+trianglecat,25774051,3
+74622589,25774051,4
+lemo4ever,25774051,5
+79127642,25774051,3
+irafighting,25774051,4
+79418954,25774051,5
+62581194,25774051,3
+treevow,25774051,4
+58101535,25774051,3
+64775243,25774051,2
+1049698,25774051,5
+1128775,25774051,5
+caocaoa,25774051,4
+88077335,25774051,3
+6270415,25774051,3
+32359738,25774051,3
+96948133,25774051,3
+Cherry-Pop,25774051,3
+ssstef,25774051,-1
+4525795,25774051,5
+103735356,25774051,3
+96895648,25774051,3
+60808695,25774051,2
+75940485,25774051,2
+62297944,25774051,3
+Shynezzrui,25774051,3
+4104841,25774051,4
+44397262,25774051,3
+4265154,25774051,4
+glassywitch,25774051,4
+sho2mon4e4y,25774051,3
+58451504,25774051,4
+55609637,25774051,3
+78548715,25774051,4
+58986325,25774051,3
+dataroom,25774051,2
+57537354,25774051,3
+81033865,25774051,2
+63454756,25774051,3
+2527162,25774051,4
+63364633,25774051,3
+jausdauer,25774051,4
+120092472,25774051,3
+129389147,25774051,3
+81404706,25774051,3
+127728111,25774051,3
+rabbitcai,25774051,3
+zhr19951204,25774051,4
+126893480,25774051,3
+3344824,25774051,4
+lsg_lsg,25774051,3
+49575753,25774051,3
+aellr,25774051,-1
+angelliujiayun,25774051,4
+51311904,25774051,3
+55447460,25774051,4
+73828343,25774051,3
+24598372,25774051,5
+43171172,25774051,5
+Schwarzwaelder,25774051,3
+HanaANDcat,25774051,3
+127938914,25774051,4
+44349376,25774051,3
+hugjm,25774051,3
+v32,25774051,4
+sunyangchina,25774051,4
+decemfirst,25774051,3
+gerandy,25774051,-1
+47339610,25774051,4
+Limerencer,25774051,-1
+32650866,25774051,3
+51207003,25774051,3
+dawn.dm,25774051,4
+58078884,25774051,3
+115639810,25774051,4
+49274936,25774051,5
+55943262,25774051,4
+56797832,25774051,5
+youngton,25774051,3
+59784525,25774051,4
+52396951,25774051,3
+sindyfan,25774051,4
+4345045,25774051,3
+cowbie,25774051,3
+dong_zi,25774051,-1
+51435361,25774051,4
+59904891,25774051,4
+Baronera,25774051,3
+109950197,25774051,3
+monkeywoman,25774051,4
+some_Ji,25774051,3
+86714653,25774051,3
+caofoxfox,25774051,4
+21197410,25774051,1
+54195425,25774051,3
+74589582,25774051,3
+quella1992,25774051,3
+60606852,25774051,4
+shanpp,25774051,5
+zepwhen,25774051,-1
+46406923,25774051,5
+esperanzayoho,25774051,5
+fxl0977,25774051,3
+56794004,25774051,4
+90661940,25774051,2
+heartkokoro,25774051,3
+1704805,25774051,3
+lulubei,25774051,1
+Obtson,25774051,3
+71025729,25774051,3
+33454930,25774051,2
+41997696,25774051,2
+82163616,25774051,3
+90719773,25774051,5
+54404280,25774051,3
+58906132,25774051,3
+hahahaha38,25774051,4
+hello2931837,25774051,4
+49129833,25774051,-1
+36664214,25774051,4
+sweeper,25774051,3
+49761291,25774051,3
+57583046,25774051,4
+51636486,25774051,4
+102791213,25774051,4
+72902688,25774051,2
+3007499,25774051,5
+asukayoshioka,25774051,5
+Neoo0,25774051,3
+67019496,25774051,4
+Janone,25774051,3
+lfz,25774051,4
+slowiy,25774051,3
+cathyfeng,25774051,-1
+Do-my-self,25774051,4
+59101445,25774051,3
+80715123,25774051,4
+ecane,25774051,4
+51363896,25774051,3
+bxhOTZ,25774051,3
+89975604,25774051,3
+4828520,25774051,3
+alicep,25774051,3
+82832857,25774051,3
+McBee,25774051,4
+yadnomeulb,25774051,3
+yzt0806,25774051,4
+fangzhou422,25774051,5
+63602303,25774051,5
+tzhou730,25774051,4
+dingxiang_4537,25774051,3
+49185952,25774051,4
+meltykisszhy,25774051,3
+elfz,25774051,3
+127513838,25774051,2
+lostinfire,25774051,2
+zhong123mei,25774051,3
+36621770,25774051,5
+36499503,25774051,3
+47795348,25774051,3
+51393445,25774051,3
+14906912,25774051,3
+1358167,25774051,2
+74916985,25774051,3
+4703013,25774051,3
+43868706,25774051,-1
+43146813,25774051,3
+54319908,25774051,4
+4391247,25774051,2
+evangella,25774051,4
+CatPrince,25774051,4
+79913596,25774051,3
+2705757,25774051,5
+boskyout,25774051,3
+liuchang223,25774051,4
+1535538,25774051,1
+RelaQoo,25774051,1
+69195313,25774051,-1
+59324857,25774051,-1
+36466126,25774051,3
+62996817,25774051,4
+rightshadow,25774051,3
+2239773,25774051,4
+dorian-grey,25774051,5
+anotheronexia,25774051,2
+lesleylove,25774051,3
+75522266,25774051,3
+hexiaoshuang,25774051,4
+dosiesta,25774051,4
+mabbit,25774051,-1
+1713591,25774051,-1
+44146194,25774051,5
+96044338,25774051,2
+sharonsama,25774051,4
+47216469,25774051,3
+57811898,25774051,5
+maxiaoxi9527,25774051,4
+wangxiaojunwjj,25774051,5
+FK621,25774051,4
+58120258,25774051,3
+74249680,25774051,3
+3440740,25774051,3
+llamame,25774051,3
+52335106,25774051,2
+kenji0102,25774051,4
+momo0724,25774051,3
+69805658,25774051,2
+34946223,25774051,3
+judy0420,25774051,3
+63498928,25774051,3
+121215156,25774051,4
+3826970,25774051,-1
+60871322,25774051,3
+acouchpotato,25774051,5
+wusequanwei,25774051,2
+50410160,25774051,4
+70918450,25774051,4
+43648335,25774051,4
+zwj514235,25774051,3
+steph6luna,25774051,2
+84828143,25774051,3
+83502519,25774051,3
+4057770,25774051,3
+50584548,25774051,-1
+littlezita,25774051,-1
+68583854,25774051,5
+jhy007,25774051,4
+Chliztian,25774051,2
+VALLA,25774051,3
+notyetdone,25774051,2
+yeeeeeee,25774051,3
+77123373,25774051,3
+45245216,25774051,3
+73150320,25774051,3
+winterpills,25774051,4
+120271064,25774051,4
+papa_christmas,25774051,3
+64757557,25774051,5
+67043084,25774051,5
+36939501,25774051,4
+63250313,25774051,2
+wewillrockyou,25774051,3
+3855637,25774051,4
+37376533,25774051,3
+51637615,25774051,-1
+4251957,25774051,-1
+50585223,25774051,4
+sherrydjm,25774051,3
+83773769,25774051,4
+26898431,25774051,4
+47259659,25774051,3
+49926534,25774051,4
+68011709,25774051,5
+42362308,25774051,3
+shitizencheung,25774051,4
+rantao,25774051,3
+mr-kill,25774051,5
+3941641,25774051,3
+43473708,25774051,3
+jszh,25774051,3
+irislxxx,25774051,3
+Suiyee,25774051,-1
+luckyinvoke,25774051,4
+1237270,25774051,3
+50329989,25774051,5
+45061776,25774051,5
+57200771,25774051,3
+4608800,25774051,3
+killit,25774051,3
+maydaylyn,25774051,3
+2018111,25774051,4
+fish_apple_love,25774051,3
+idorothy,25774051,3
+57742250,25774051,3
+53664916,25774051,3
+hugowai,25774051,3
+41054771,25774051,4
+68792801,25774051,3
+tomas-yang,25774051,3
+2594481,25774051,3
+minedoubanban,25774051,-1
+lilyvilor,25774051,3
+34575902,25774051,2
+angelchou,25774051,4
+36992481,25774051,2
+51741700,25774051,3
+Coanl,25774051,5
+57828907,25774051,4
+ffantuan,25774051,4
+whatbing,25774051,5
+miracle1025,25774051,4
+willingnotto,25774051,3
+qingzi,25774051,4
+ilovemyself,25774051,4
+49177191,25774051,3
+lupinthe3rd,25774051,3
+willorz,25774051,2
+PP_wei,25774051,3
+shanbaby,25774051,3
+conditionerzi,25774051,2
+tonyuanChen,25774051,2
+daysofyouth,25774051,3
+xingquan,25774051,4
+95298147,25774051,4
+foleyfan,25774051,3
+47701757,25774051,3
+63014642,25774051,3
+57626161,25774051,5
+levid,25774051,4
+SHOUYOU,25774051,3
+59577112,25774051,5
+cloudlandlord,25774051,4
+yscysc803,25774051,4
+1279239,25774051,4
+76964275,25774051,3
+tachibanakeiko,25774051,4
+yalindongdong,25774051,3
+65190817,25774051,4
+nyssa712,25774051,4
+keichan,25774051,3
+3170428,25774051,3
+zhangjiji,25774051,-1
+lonelydark7,25774051,4
+soloz,25774051,3
+65607463,25774051,3
+big_peach,25774051,4
+49490666,25774051,3
+70043510,25774051,5
+51342796,25774051,2
+XiaoKong,25774051,4
+Kevinsoong,25774051,4
+fuerCharon,25774051,4
+44273997,25774051,4
+Sammyzheng,25774051,5
+killsusie,25774051,4
+Jackandfoureyes,25774051,2
+53108516,25774051,3
+51909890,25774051,4
+53033730,25774051,4
+nianyike,25774051,1
+lukastina,25774051,3
+steflover,25774051,3
+78347009,25774051,4
+hexiaoqin,25774051,2
+Batcaty,25774051,4
+44923935,25774051,3
+48990593,25774051,3
+91291247,25774051,3
+65154403,25774051,4
+47109001,25774051,4
+49326623,25774051,2
+3562143,25774051,4
+duoduojiang,25774051,4
+tyouii,25774051,3
+ps716,25774051,3
+4154813,25774051,4
+37546445,25774051,5
+48854947,25774051,4
+lovelyyuchen,25774051,5
+vivian1165,25774051,2
+sakura001,25774051,3
+56314850,25774051,3
+68401918,25774051,3
+LincolnSixEcho,25774051,3
+80765435,25774051,-1
+49902714,25774051,3
+28400267,25774051,4
+74971419,25774051,4
+bessiexu,25774051,4
+33177895,25774051,3
+62457534,25774051,1
+74619704,25774051,4
+53886643,25774051,4
+44270208,25774051,-1
+3946449,25774051,3
+gods,25774051,5
+endlishock,25774051,5
+iisakura,25774051,3
+4647606,25774051,3
+aoihai,25774051,2
+Camusdead,25774051,4
+88938201,25774051,3
+62390053,25774051,2
+shenmedouhao,25774051,4
+3483902,25774051,3
+7609988,25774051,3
+aaaliang,25774051,-1
+3772330,25774051,3
+3851435,25774051,4
+69277440,25774051,4
+Black_Star,25774051,3
+oathkeeper,25774051,3
+sleep-a-summer,25774051,3
+zhongshanaoli,25774051,3
+ekling,25774051,4
+xxhhcc,25774051,3
+kikiko9,25774051,3
+proband,25774051,3
+82439627,25774051,4
+87651171,25774051,3
+problemchildren,25774051,3
+43778462,25774051,-1
+52951268,25774051,3
+53602254,25774051,3
+2547310,25774051,4
+iammagic,25774051,3
+60504195,25774051,3
+ymxdd326,25774051,3
+n19htmare,25774051,3
+mklop2008,25774051,4
+rienge,25774051,5
+tt1426,25774051,3
+31301735,25774051,3
+51790573,25774051,5
+raiya,25774051,4
+jinghanxing,25774051,3
+Q.Henry,25774051,3
+104261144,25774051,2
+noaccident,25774051,4
+48384609,25774051,4
+sebastianliu,25774051,4
+3874094,25774051,4
+moyanmoyu,25774051,3
+moyanmoyu,25774051,3
+85098443,25774051,1
+2096340,25774051,3
+ravinenoravine,25774051,3
+2352473,25774051,3
+kidaliu,25774051,4
+bogjebote,25774051,4
+c2c3,25774051,5
+4320404,25774051,3
+urielwang,25774051,2
+anywherebuthome,25774051,2
+dklovesmovie,25774051,4
+flyingfishme,25774051,4
+54049800,25774051,3
+43382367,25774051,5
+2200421,25774051,3
+edward1988,25774051,3
+46159687,25774051,4
+unnanae,25774051,3
+65507794,25774051,3
+76789340,25774051,3
+2784323,25774051,3
+shawnNK,25774051,1
+Armande,25774051,3
+36669166,25774051,4
+66836438,25774051,3
+3322566,25774051,3
+71861595,25774051,3
+63141473,25774051,3
+shichaocaesar,25774051,5
+35895551,25774051,2
+4682239,25774051,3
+c541223724,25774051,3
+muxiaoni,25774051,3
+63274761,25774051,3
+48916952,25774051,2
+84346876,25774051,3
+62202501,25774051,-1
+104359394,25774051,3
+2448131,25774051,3
+96290717,25774051,4
+50414826,25774051,3
+mustundead,25774051,3
+eefee,25774051,4
+1187053,25774051,4
+waldo0121,25774051,4
+70990506,25774051,3
+127478888,25774051,5
+59665595,25774051,2
+55714302,25774051,3
+65031005,25774051,4
+sho-week,25774051,4
+26727621,25774051,4
+54342431,25774051,3
+56164676,25774051,3
+39728715,25774051,3
+howlformousai,25774051,4
+bigsword,25774051,3
+59285776,25774051,5
+cicia_lee,25774051,4
+121633982,24325923,4
+lllllxxxx,24325923,-1
+61619787,24325923,3
+3555547,24325923,4
+79404532,24325923,1
+68630000,24325923,4
+58243506,24325923,4
+49162813,24325923,3
+91851250,24325923,4
+62503467,24325923,4
+l.don,24325923,3
+given0709,24325923,4
+50930270,24325923,5
+65810005,24325923,3
+4115987,24325923,5
+solitude1207,24325923,4
+120712105,24325923,3
+fanyiduo,24325923,4
+50186720,24325923,3
+55405486,24325923,4
+zhibiaoshi,24325923,4
+40237768,24325923,4
+8342264,24325923,4
+134503726,24325923,4
+Injurer,24325923,5
+zhangrihe,24325923,4
+25514963,24325923,5
+56907720,24325923,4
+hayden001,24325923,4
+70930463,24325923,4
+q455,24325923,4
+strawman81,24325923,5
+64535817,24325923,3
+71972126,24325923,4
+59665595,24325923,4
+50413653,24325923,5
+49556648,24325923,5
+50616224,24325923,3
+120904730,24325923,3
+64570355,24325923,4
+41115422,24325923,5
+58042557,24325923,4
+gainboy,24325923,5
+52183902,24325923,4
+Leo.Outsider,24325923,4
+4833625,24325923,5
+yangjianmeiyang,24325923,3
+62498869,24325923,4
+smileuna,24325923,4
+fenjinnan,24325923,5
+hohoyuhu,24325923,4
+11192863,24325923,4
+jiangyuhang,24325923,4
+41655130,24325923,4
+3416514,24325923,5
+58096357,24325923,4
+47357911,24325923,5
+50611283,24325923,4
+62318575,24325923,4
+49568187,24325923,4
+49568187,24325923,4
+119415852,24325923,2
+44096316,24325923,4
+mymx,24325923,4
+76635599,24325923,5
+80125660,24325923,3
+2268415,24325923,5
+40853957,24325923,3
+37832420,24325923,4
+tanlin8711,24325923,4
+33439516,24325923,3
+73373196,24325923,4
+53387777,24325923,5
+47084530,24325923,4
+84593268,24325923,3
+75189651,24325923,3
+67072789,24325923,5
+122738024,24325923,5
+96513383,24325923,4
+48090771,24325923,4
+52898475,24325923,4
+14408023,24325923,4
+cheeseflower,24325923,4
+46989842,24325923,3
+kisscat890505,24325923,3
+4545349,24325923,4
+Annie3,24325923,4
+sona302,24325923,4
+aprilsunshine,24325923,3
+65114344,24325923,5
+snowyhowe,24325923,3
+64168650,24325923,5
+cicisj,24325923,4
+81479111,24325923,2
+liuxiezi,24325923,5
+53830250,24325923,4
+69973045,24325923,4
+75674236,24325923,-1
+zhengxiaoben,24325923,-1
+87997485,24325923,4
+62793073,24325923,5
+128130563,24325923,3
+49229485,24325923,4
+joy4,24325923,5
+134625303,24325923,3
+laurellake,24325923,4
+50992070,24325923,4
+MaymySumOn,24325923,5
+52624380,24325923,3
+3209696,24325923,4
+50195547,24325923,4
+133787676,24325923,5
+1595012,24325923,5
+84697770,24325923,3
+ckomy115,24325923,4
+101206978,24325923,5
+wuyunoy,24325923,4
+83743539,24325923,4
+mibaoshuoshuo,24325923,5
+106663926,24325923,5
+fxoc,24325923,4
+59040186,24325923,3
+47218828,24325923,4
+4890925,24325923,4
+shuyea,24325923,-1
+nerochan,24325923,4
+4501544,24325923,4
+cescshen,24325923,4
+69095425,24325923,3
+58294250,24325923,5
+4338735,24325923,4
+119262714,24325923,4
+blackbanana3Y,24325923,4
+achen17,24325923,3
+60140602,24325923,5
+46718931,24325923,5
+ducksu,24325923,5
+33693061,24325923,2
+76509928,24325923,3
+wakaka1986,24325923,4
+wakaka1986,24325923,4
+59620866,24325923,3
+lostoldboy,24325923,4
+135409026,24325923,4
+1056656,24325923,4
+56435930,24325923,3
+46632642,24325923,4
+55325883,24325923,5
+56281995,24325923,4
+53981944,24325923,3
+135084358,24325923,5
+2919169,24325923,3
+53316539,24325923,4
+haoduotian,24325923,5
+57263657,24325923,4
+rakobi,24325923,5
+fashional,24325923,4
+60132042,24325923,4
+45118601,24325923,3
+susanstone,24325923,4
+62436425,24325923,5
+125313881,24325923,5
+83945824,24325923,5
+82974666,24325923,4
+4242728,24325923,3
+88675870,24325923,1
+vacodia,24325923,3
+Van07,24325923,4
+53554219,24325923,4
+43872833,24325923,5
+furien,24325923,3
+idealtemple,24325923,4
+133428175,24325923,1
+4199523,24325923,3
+55965923,24325923,4
+49324923,24325923,4
+emchan,24325923,4
+46370805,24325923,5
+108431827,24325923,4
+taxi,24325923,4
+133118810,24325923,3
+50649196,24325923,3
+PasS__bY,24325923,5
+59890761,24325923,4
+42535832,24325923,3
+84176426,24325923,4
+Spreety,24325923,4
+woshijiangxinju,24325923,5
+40494271,24325923,4
+zhegejiale,24325923,4
+4714593,24325923,3
+rock0323,24325923,4
+60891624,24325923,-1
+43080143,24325923,-1
+48863239,24325923,5
+133822939,24325923,4
+98538890,24325923,4
+satanprince,24325923,5
+57686562,24325923,5
+1991085,24325923,4
+pianohood,24325923,3
+136995611,24325923,4
+129580488,24325923,4
+78585027,24325923,4
+amiaaso,24325923,4
+121838229,24325923,5
+74946696,24325923,3
+tev,24325923,5
+58484149,24325923,4
+68963965,24325923,3
+3816104,24325923,4
+zuoerkk,24325923,4
+lemoncan,24325923,3
+47209079,24325923,5
+57187581,24325923,5
+script217,24325923,4
+3642691,24325923,4
+80561643,24325923,5
+54350141,24325923,4
+josephine2able,24325923,4
+44102290,24325923,4
+40223789,24325923,3
+137221434,24325923,4
+64456556,24325923,5
+137814359,24325923,5
+xiaoguli,24325923,5
+52823764,24325923,4
+48997754,24325923,4
+justpeach,24325923,4
+79181644,24325923,4
+youngtoo,24325923,5
+Lira_13,24325923,4
+38146297,24325923,4
+q962265267,24325923,5
+justsay,24325923,4
+weekie,24325923,4
+71478959,24325923,5
+budong110,24325923,4
+46931652,24325923,4
+129057188,24325923,5
+CrazyChan,24325923,3
+91686187,24325923,4
+2005598,24325923,4
+134525513,24325923,4
+Clatyz-Sun,24325923,5
+47818066,24325923,5
+56583743,24325923,3
+50450547,24325923,4
+100234092,24325923,5
+121517314,24325923,4
+56917736,24325923,5
+Wenqian,24325923,4
+rockymei,24325923,4
+tytony890115,24325923,5
+27518977,24325923,5
+61718451,24325923,5
+14367746,24325923,-1
+47539461,24325923,5
+rockyanhua,24325923,5
+apple4520,24325923,4
+fuzyu,24325923,4
+61624373,24325923,5
+48523065,24325923,3
+teenytinygenius,24325923,5
+62275045,24325923,3
+57430820,24325923,4
+chenxijessica,24325923,4
+119446065,24325923,3
+55865392,24325923,3
+teikamouse,24325923,4
+73921398,24325923,3
+68632804,24325923,3
+88174425,24325923,5
+2650205,24325923,3
+koala676,24325923,4
+ashley.zl,24325923,5
+5747784,24325923,5
+chaunceyjohn,24325923,5
+103277074,24325923,4
+50941482,24325923,3
+45242330,24325923,4
+136842545,24325923,5
+heydzi,24325923,4
+66333721,24325923,4
+lyivy9032,24325923,4
+never_missing,24325923,4
+53006710,24325923,4
+11189422,24325923,4
+1929758,24325923,4
+91504508,24325923,4
+liszt_pp,24325923,3
+33042240,24325923,4
+134581502,24325923,4
+yutingamy,24325923,3
+arcueid,24325923,5
+Colacao,24325923,4
+wuzhuan105,24325923,5
+winterpills,24325923,5
+91222138,24325923,4
+bimbo,24325923,4
+137437939,24325923,1
+49730004,24325923,4
+belovedeyes,24325923,4
+65981408,24325923,4
+wena,24325923,4
+redjar,24325923,3
+131560812,24325923,3
+130452234,24325923,4
+2648592,24325923,5
+58740962,24325923,4
+lllinroyce,24325923,4
+yihuiw,24325923,4
+Jonathan_Sea,24325923,5
+61196519,24325923,3
+61111185,24325923,4
+willd,24325923,-1
+62790880,24325923,5
+suzie09-20,24325923,5
+zerooorez,24325923,4
+1763879,24325923,4
+47025279,24325923,5
+35252346,24325923,5
+88535863,24325923,5
+ken1004,24325923,5
+83428425,24325923,4
+luvhardy,24325923,4
+70030353,24325923,4
+92811330,24325923,5
+49164676,24325923,4
+Carpediemnicole,24325923,4
+pumpkinplanet,24325923,3
+47334207,24325923,-1
+132418453,24325923,4
+87869082,24325923,4
+lucyintheocean,24325923,5
+63119659,24325923,5
+1943610,24325923,4
+sodaorchid,24325923,4
+lzzzzzfbee,24325923,4
+88365911,24325923,3
+32650866,24325923,4
+talk2linx,24325923,3
+66979855,24325923,4
+suyanz,24325923,3
+67810374,24325923,5
+62295613,24325923,5
+2307180,24325923,5
+53739161,24325923,4
+58249428,24325923,4
+49107061,24325923,4
+46767985,24325923,4
+orangedavy,24325923,4
+4481826,24325923,5
+48834090,24325923,3
+62442761,24325923,4
+4155813,24325923,4
+77492957,24325923,4
+effy.an,24325923,5
+52456565,24325923,4
+48041444,24325923,4
+134648175,24325923,3
+116049427,24325923,3
+120002421,24325923,2
+119864973,24325923,5
+36304941,24325923,4
+48778935,24325923,4
+lzt,24325923,4
+jason000021,24325923,4
+xizhijun,24325923,4
+2505733,24325923,3
+wowanna,24325923,4
+63064615,24325923,5
+83343003,24325923,5
+71402960,24325923,4
+82674531,24325923,4
+59660757,24325923,5
+sacwr,24325923,5
+phoebe9982,24325923,4
+lucifer024,24325923,4
+77212612,24325923,4
+122838666,24325923,4
+Candy_Can,24325923,3
+57280262,24325923,3
+80722428,24325923,2
+6972638,24325923,4
+80808248,24325923,3
+2277001,24325923,5
+Eddy_zouchao,24325923,5
+60190763,24325923,5
+120778881,24325923,4
+68918623,24325923,5
+3440740,24325923,5
+55874640,24325923,4
+113992757,24325923,5
+54843650,24325923,3
+61845850,24325923,4
+51603332,24325923,4
+spicymilk,24325923,4
+53322275,24325923,5
+123739111,24325923,3
+noaccident,24325923,4
+56143225,24325923,3
+iett815,24325923,4
+52864366,24325923,1
+60870044,24325923,2
+88345455,24325923,5
+32144547,24325923,4
+cyan_xi,24325923,4
+yuhanxi,24325923,4
+sonnet1983,24325923,4
+75869572,24325923,4
+alacrity516,24325923,4
+1643126,24325923,4
+56919674,24325923,3
+42421580,24325923,5
+51658550,24325923,3
+80674760,24325923,4
+Colman,24325923,3
+124812731,24325923,4
+123111535,24325923,3
+will-l,24325923,5
+zoeisadoll,24325923,5
+whj623185136,24325923,5
+129611474,24325923,4
+Georgewen,24325923,4
+98956225,24325923,4
+56766936,24325923,3
+42367831,24325923,3
+Raisin,24325923,3
+124483467,24325923,3
+5771443,24325923,5
+64780410,24325923,5
+121656332,24325923,4
+53455347,24325923,5
+44709496,24325923,4
+1240037,24325923,3
+45987005,24325923,4
+24387412,24325923,5
+baiid,24325923,-1
+57411563,24325923,5
+68079474,24325923,4
+96000077,24325923,5
+55326164,24325923,4
+122107585,24325923,4
+3967385,24325923,5
+felinoshuffle,24325923,4
+2298833,24325923,3
+jluy,24325923,4
+137129598,24325923,4
+1197802,24325923,3
+ChloeJoyce,24325923,3
+45991925,24325923,3
+133067591,24325923,5
+jennyseath,24325923,4
+131073434,24325923,4
+35261395,24325923,5
+68534357,24325923,4
+agattha830,24325923,5
+69706945,24325923,4
+63454756,24325923,4
+creamxxy,24325923,4
+63265733,24325923,3
+64540880,24325923,4
+3812638,24325923,-1
+68120354,24325923,4
+52636646,24325923,3
+65635790,24325923,4
+137252134,24325923,4
+shrekD,24325923,5
+47037959,24325923,4
+duklyon1983,24325923,4
+phoenix43,24325923,4
+tobekalorce,24325923,5
+29282642,24325923,3
+faith7,24325923,-1
+40572936,24325923,4
+jagpumpkin,24325923,1
+sukijuri,24325923,5
+ideyes,24325923,4
+88969146,24325923,4
+dawenxi,24325923,4
+131909298,24325923,3
+renlei,24325923,3
+pershingsay,24325923,4
+tringle,24325923,5
+42095486,24325923,4
+53868725,24325923,-1
+Kingnima,24325923,4
+38513029,24325923,4
+guoerer,24325923,3
+mosneverland,24325923,5
+92537918,24325923,3
+Doctory,24325923,5
+49778804,24325923,4
+Helianthustree,24325923,4
+rmxo,24325923,4
+74641801,24325923,4
+64826972,24325923,5
+68894222,24325923,-1
+32222992,24325923,2
+aboutdistance,24325923,4
+74103020,24325923,4
+diwosy,24325923,4
+38258402,24325923,4
+134537950,24325923,5
+72413093,24325923,4
+135466412,24325923,3
+48547507,24325923,5
+huoxiaoliang,24325923,-1
+94227961,24325923,4
+125799422,24325923,3
+71231764,24325923,5
+35546848,24325923,4
+13053957,24325923,3
+91026407,24325923,3
+83982465,24325923,4
+liapotter,24325923,3
+72654856,24325923,4
+102610933,24325923,4
+39306601,24325923,5
+39306601,24325923,5
+53230563,24325923,5
+70586420,24325923,4
+1997569,24325923,5
+50222808,24325923,4
+orangehahaha,24325923,5
+58254446,24325923,4
+120912258,24325923,-1
+NTkyrie,24325923,4
+61973025,24325923,5
+120291697,24325923,4
+wen_Schwartz,24325923,3
+craigga,24325923,4
+53721065,24325923,4
+36949590,24325923,-1
+foreveraegeanse,24325923,-1
+70996426,24325923,4
+123220825,24325923,4
+33747314,24325923,4
+tildali1214,24325923,4
+33747314,24325923,4
+tildali1214,24325923,4
+kingcopushu,24325923,3
+52852194,24325923,3
+zq8870690207,24325923,4
+47367894,24325923,5
+75661398,24325923,4
+kayomii,24325923,4
+qingwood,24325923,3
+2323154,24325923,5
+39097779,24325923,5
+132485693,24325923,5
+xita,24325923,5
+59376067,24325923,-1
+62877515,24325923,4
+elephant723,24325923,4
+seamouse,24325923,4
+127739932,24325923,5
+jackiex,24325923,5
+57287738,24325923,4
+67099663,24325923,5
+46673269,24325923,5
+4263054,24325923,5
+52039512,24325923,4
+frances-6,24325923,5
+124548457,24325923,4
+66571019,24325923,5
+115051698,24325923,3
+persephone_,24325923,4
+54094049,24325923,5
+hermione_lv,24325923,4
+lilianzly,24325923,5
+xiaojiongxia,24325923,4
+90961062,24325923,5
+zhonglizhongli,24325923,3
+122944258,24325923,4
+79560195,24325923,4
+wackdudu,24325923,4
+billhome,24325923,5
+82521332,24325923,5
+82823554,24325923,5
+63338415,24325923,4
+babezeno,24325923,4
+VickyShrimp,24325923,4
+51959545,24325923,4
+nopeepin,24325923,-1
+mayflylris,24325923,4
+9167697,24325923,4
+128061195,24325923,3
+52284149,24325923,4
+62705311,24325923,3
+hedmgh,24325923,5
+91243092,24325923,3
+61496311,24325923,3
+vigilgt,24325923,4
+135141557,24325923,4
+64821728,24325923,4
+70313709,24325923,5
+51513711,24325923,4
+3421868,24325923,4
+63294351,24325923,4
+137058497,24325923,4
+77286450,24325923,4
+137058479,24325923,3
+42006560,24325923,4
+136945490,24325923,5
+136293291,24325923,-1
+62705416,24325923,4
+42689691,24325923,3
+134483925,24325923,3
+14369952,24325923,5
+somnor,24325923,5
+62928630,24325923,3
+suixi,24325923,4
+46830398,24325923,4
+48096896,24325923,4
+seriousz,24325923,4
+47535024,24325923,4
+36256022,24325923,5
+70313784,24325923,4
+hehechishiba,24325923,4
+nvq7Gin,24325923,5
+58489881,24325923,5
+58774315,24325923,3
+130952703,24325923,4
+1324079,24325923,4
+xiaoyuhen,24325923,4
+twooneseven,24325923,5
+AspireY,24325923,4
+56598911,24325923,4
+senioroneleo,24325923,5
+75166261,24325923,3
+123404476,24325923,3
+64124886,24325923,3
+59353616,24325923,4
+80457179,24325923,3
+135691917,24325923,4
+121925373,24325923,4
+72226360,24325923,4
+3656028,24325923,5
+127111031,24325923,4
+gezi921054,24325923,4
+ydyie,24325923,4
+42375246,24325923,4
+3491773,24325923,4
+61681574,24325923,3
+137073841,24325923,4
+137076197,24325923,4
+irrisawu,24325923,4
+68630108,24325923,3
+58494684,24325923,4
+53381468,24325923,4
+92462831,24325923,4
+114435379,24325923,4
+bons,24325923,4
+77350146,24325923,3
+phinn,24325923,5
+57281919,24325923,5
+60149752,24325923,4
+3752454,24325923,2
+vanilla-sky,24325923,5
+kisslucksky,24325923,5
+3151445,24325923,3
+130445057,24325923,4
+80602343,24325923,4
+ahuasist,24325923,4
+imgsy,24325923,3
+82624638,24325923,5
+fabrique1987,24325923,4
+fps40,24325923,4
+123000223,24325923,4
+mixxuan,24325923,5
+47194139,24325923,5
+128568817,24325923,4
+16460262,24325923,3
+112278711,24325923,3
+3052607,24325923,3
+4411166,24325923,4
+130055833,24325923,3
+57615935,24325923,4
+122868077,24325923,4
+122048396,24325923,5
+47515047,24325923,5
+46543496,24325923,5
+65383456,24325923,-1
+48406181,24325923,2
+weekqin,24325923,4
+55466621,24325923,5
+74959611,24325923,4
+48056623,24325923,4
+CobbWalt,24325923,4
+60002715,24325923,4
+15612441,24325923,5
+albeedesert,24325923,-1
+45099103,24325923,4
+ziwu,24325923,3
+sakuras1412,24325923,-1
+QQQQQQQla,24325923,4
+1876785,24325923,4
+lovedtomma,24325923,2
+61486120,24325923,4
+deadcolour,24325923,3
+55934911,24325923,4
+momoshuo,24325923,4
+53396330,24325923,4
+emeline,24325923,4
+69037881,24325923,3
+81325605,24325923,3
+42820544,24325923,5
+56416143,24325923,5
+PEACE,24325923,4
+70388691,24325923,4
+58004147,24325923,2
+46064508,24325923,4
+44349387,24325923,4
+64859517,24325923,4
+51239314,24325923,3
+59961169,24325923,4
+76452322,24325923,4
+WANG_RS,24325923,5
+61398424,24325923,3
+124528145,24325923,-1
+sentexiaohu,24325923,4
+3879960,24325923,5
+1743223,24325923,-1
+44714353,24325923,5
+37402473,24325923,4
+4420210,24325923,5
+Daniel-Cheung,24325923,4
+126818106,24325923,4
+xkwnso,24325923,5
+65662824,24325923,3
+77489329,24325923,4
+32008707,24325923,5
+6846145,24325923,4
+1406726,24325923,5
+49718559,24325923,4
+63874494,24325923,4
+2171738,24325923,4
+50908026,24325923,4
+48046895,24325923,-1
+loveloki913,24325923,5
+59237362,24325923,5
+huix,24325923,5
+ilovehouyi,24325923,4
+xiaoheng,24325923,4
+89083122,24325923,4
+74418627,24325923,4
+1973189,24325923,3
+83306370,24325923,5
+xiaohundaban,24325923,2
+58332166,24325923,4
+52371666,24325923,4
+80933545,24325923,5
+54336845,24325923,4
+11630561,24325923,4
+2353173,24325923,3
+108576950,24325923,4
+Awewonderland,24325923,4
+120356836,24325923,2
+120356836,24325923,2
+68588893,24325923,5
+123463627,24325923,5
+63182066,24325923,5
+80667366,24325923,4
+1511879,24325923,-1
+122210880,24325923,5
+feller,24325923,4
+52399993,24325923,4
+42555541,24325923,4
+123945021,24325923,3
+59442791,24325923,4
+31622009,24325923,4
+9386243,24325923,3
+mouldersoul,24325923,5
+Jue-1118,24325923,5
+36716093,24325923,4
+62504399,24325923,5
+ameba,24325923,-1
+120050034,24325923,5
+69168057,24325923,5
+AntheaVc,24325923,5
+mimashuo,24325923,5
+81134195,24325923,4
+68982698,24325923,4
+125010605,24325923,4
+mengxiaojing,24325923,4
+pm,24325923,4
+46316257,24325923,5
+Jouree,24325923,4
+82722362,24325923,4
+azurehe,24325923,4
+59176048,24325923,4
+77086576,24325923,5
+65123381,24325923,4
+blueskyfly,24325923,4
+74446199,24325923,4
+61049464,24325923,4
+arielwang,24325923,4
+2642171,24325923,4
+135248605,24325923,4
+95386641,24325923,4
+2201230,24325923,-1
+131927527,24325923,3
+53505174,24325923,4
+moesolo,24325923,4
+chris027,24325923,4
+51032242,24325923,5
+124697172,24325923,4
+70915171,24325923,4
+yangzu45,24325923,4
+75538960,24325923,5
+zuozichu,24325923,3
+133762700,24325923,4
+58215483,24325923,5
+marvin42,24325923,5
+66632216,24325923,4
+helene9933,24325923,4
+111739039,24325923,4
+NateJovi,24325923,4
+59244982,24325923,5
+60788989,24325923,5
+46754344,24325923,3
+windy.lin,24325923,4
+63578507,24325923,5
+Singyi,24325923,5
+40359669,24325923,3
+34765454,24325923,3
+4453892,24325923,-1
+InMisery,24325923,5
+89313005,24325923,4
+61706956,24325923,4
+1678343,24325923,5
+63941479,24325923,4
+biguniverse,24325923,5
+78389609,24325923,2
+1250982,24325923,3
+3831169,24325923,4
+121059369,24325923,3
+128858476,24325923,3
+128858476,24325923,3
+gexiarong,24325923,4
+mauvey,24325923,4
+xisme,24325923,4
+chinriya,24325923,4
+cattie,24325923,4
+Like_zsy,24325923,3
+43891940,24325923,4
+ostara,24325923,5
+108707284,24325923,4
+2336151,24325923,4
+103650057,24325923,4
+42424175,24325923,5
+longestname,24325923,4
+72086305,24325923,4
+61078362,24325923,4
+47299010,24325923,5
+myiesha,24325923,5
+69255956,24325923,4
+63765493,24325923,5
+pingchengweixin,24325923,5
+40654523,24325923,5
+50997906,24325923,4
+64136344,24325923,3
+sd0225,24325923,5
+hooklt,24325923,4
+49417223,24325923,4
+dusk.xiyang,24325923,4
+67779910,24325923,4
+96479513,24325923,5
+seventhworkshop,24325923,4
+63101856,24325923,5
+125196459,24325923,5
+ztl-poppy,24325923,4
+fuxiu,24325923,3
+luvsoon,24325923,4
+136738123,24325923,-1
+37615847,24325923,5
+56252937,24325923,5
+jaimeshao,24325923,3
+90217144,24325923,3
+57848312,24325923,5
+77307938,24325923,4
+4192759,24325923,3
+46113187,24325923,3
+ClaireL,24325923,3
+48062280,24325923,4
+2600693,24325923,3
+59099811,24325923,4
+55974456,24325923,3
+simoondb,24325923,3
+135284429,24325923,4
+why20061108,24325923,2
+67241056,24325923,4
+yukiloh,24325923,5
+73674505,24325923,4
+84390206,24325923,4
+wenteng1988,24325923,2
+iwei,24325923,5
+48864124,24325923,5
+72993383,24325923,3
+zs278777745,24325923,4
+jijiayu,24325923,4
+133471355,24325923,3
+48549830,24325923,5
+50585337,24325923,3
+zhkaoe,24325923,4
+49028231,24325923,3
+52316433,24325923,4
+2788446,24325923,4
+60023659,24325923,5
+nailuoyitai,24325923,4
+63403641,24325923,5
+liushuoyang,24325923,4
+xrwr,24325923,3
+mengaxin,24325923,3
+125762409,24325923,5
+135079919,24325923,4
+101884264,24325923,4
+121460001,24325923,5
+121460001,24325923,5
+lovetatum,24325923,3
+JoooNE,24325923,4
+standbyyou,24325923,3
+36206497,24325923,4
+Dina_xi,24325923,3
+10191174,24325923,4
+4773109,24325923,3
+53416381,24325923,5
+zhangxishu12345,24325923,3
+PIERO1208,24325923,3
+Shanglinyuan,24325923,4
+74674438,24325923,5
+115673387,24325923,4
+Ikino,24325923,5
+qianshuimao,24325923,5
+59378291,24325923,3
+57062967,24325923,5
+69162144,24325923,4
+33242083,24325923,4
+4223764,24325923,3
+2598729,24325923,3
+62664539,24325923,5
+61272579,24325923,5
+yukifay,24325923,4
+lucifermi,24325923,4
+15778860,24325923,5
+zdoudou,24325923,4
+lilipop,24325923,5
+56906475,24325923,2
+jo422,24325923,5
+62842401,24325923,4
+121362164,24325923,3
+83954325,24325923,3
+134224702,24325923,5
+131125229,24325923,4
+119270472,24325923,4
+52649497,24325923,4
+50547349,24325923,4
+joynee,24325923,5
+sofafish,24325923,4
+ivy_xu1992,24325923,5
+66344990,24325923,4
+120343271,24325923,4
+56886085,24325923,3
+83207297,24325923,5
+62880392,24325923,4
+71861591,24325923,4
+74913222,24325923,4
+iyuge,24325923,4
+121889027,24325923,4
+120480108,24325923,5
+43511352,24325923,4
+leetreasure,24325923,5
+61506971,24325923,3
+59704797,24325923,3
+83876707,24325923,4
+75809068,24325923,4
+otherheaven,24325923,3
+59556482,24325923,5
+sophiaforfree,24325923,5
+45371986,24325923,4
+5439991,24325923,4
+60869618,24325923,4
+littleDana,24325923,5
+windirt,24325923,3
+edenhsu,24325923,4
+70470057,24325923,4
+ljjchn,24325923,4
+Ray_u,24325923,5
+52520125,24325923,4
+57761188,24325923,5
+4666175,24325923,4
+38258575,24325923,5
+13283104,24325923,3
+Cicinnurus,24325923,5
+juanmaoaoaoao,24325923,3
+GSP2006,24325923,4
+136594496,24325923,5
+vivifyvivi,24325923,3
+135629558,24325923,4
+49585135,24325923,5
+64833909,24325923,3
+Arielcong,24325923,4
+3729959,24325923,4
+GracieG,24325923,5
+42556657,24325923,5
+128418401,24325923,4
+45286644,24325923,3
+46949606,24325923,5
+everisle,24325923,4
+48850114,24325923,3
+41785476,24325923,5
+leucex,24325923,3
+44398126,24325923,5
+FreezeJenny,24325923,5
+42373741,24325923,4
+136261663,24325923,5
+52146606,24325923,4
+81586403,24325923,5
+2265138,24325923,5
+70681712,24325923,3
+66400312,24325923,5
+sebie,24325923,4
+50559543,24325923,4
+27891262,24325923,3
+103477859,24325923,4
+66696808,24325923,4
+52726734,24325923,5
+54930207,24325923,4
+1334269,24325923,4
+34217360,24325923,3
+49266863,24325923,3
+kim100702,24325923,4
+70855287,24325923,3
+angle223,24325923,3
+agony_wxc,24325923,4
+80715685,24325923,4
+miniasalani,24325923,5
+shicececi,24325923,5
+58572424,24325923,-1
+97745894,24325923,4
+56533866,24325923,3
+35051709,24325923,5
+62702585,24325923,5
+60862337,24325923,4
+Yu-Tommy,24325923,4
+68945393,24325923,4
+57912090,24325923,4
+76458811,24325923,4
+3880844,24325923,3
+27988303,24325923,5
+136521207,24325923,3
+92377736,24325923,4
+xlei130,24325923,3
+Webboy,24325923,4
+lyy19,24325923,4
+vividtime,24325923,4
+119631821,24325923,4
+73034014,24325923,5
+66172556,24325923,4
+49362198,24325923,4
+gunsky,24325923,4
+60980785,24325923,5
+72438301,24325923,4
+ifr2p,24325923,4
+2825367,24325923,4
+81680542,24325923,4
+Ranfeg,24325923,-1
+58520151,24325923,4
+47724316,24325923,4
+46739678,24325923,4
+78656769,24325923,4
+96146816,24325923,4
+73791401,24325923,3
+111988301,24325923,5
+123593065,24325923,4
+63981734,24325923,3
+123474986,24325923,4
+48949608,24325923,3
+122232090,24325923,4
+60392839,24325923,3
+4691315,24325923,-1
+114485241,24325923,4
+4412176,24325923,4
+50243934,24325923,3
+mysalvation,24325923,5
+8319224,24325923,4
+6821770,24325923,4
+unal,24325923,4
+83832332,24325923,5
+50739519,24325923,5
+44045443,24325923,3
+28312683,24325923,2
+68699271,24325923,3
+53815013,24325923,5
+shjolin,24325923,3
+55675479,24325923,4
+41351821,24325923,5
+1386491,24325923,5
+ice41322,24325923,2
+cristinali,24325923,4
+22105037,24325923,3
+sisleycheerup,24325923,5
+55914733,24325923,5
+121616472,24325923,4
+14566874,24325923,4
+119883443,24325923,5
+AsleepOrDead,24325923,4
+72873381,24325923,5
+SuperWMY,24325923,5
+Lokry666,24325923,4
+134417369,24325923,4
+76536277,24325923,-1
+2430586,24325923,5
+62659446,24325923,4
+54119533,24325923,3
+82834599,24325923,4
+115957962,24325923,5
+69710712,24325923,-1
+88434665,24325923,5
+37306803,24325923,4
+desa,24325923,4
+52962046,24325923,5
+47285151,24325923,4
+renth,24325923,4
+Didkfjckfkck,24325923,5
+24639587,24325923,3
+94033941,24325923,5
+52469285,24325923,4
+87821425,24325923,5
+bg1212,24325923,5
+3592617,24325923,4
+97761478,24325923,4
+conan0528,24325923,4
+78902065,24325923,4
+2819380,24325923,-1
+kongme,24325923,4
+60119754,24325923,3
+52333341,24325923,3
+ChalmersC,24325923,4
+84569301,24325923,3
+cloudy20011128,24325923,5
+65104793,24325923,4
+andrpirl,24325923,3
+40348362,24325923,4
+meeker24,24325923,5
+souryu,24325923,4
+regalo,24325923,3
+48394441,24325923,3
+52374945,24325923,3
+66324752,24325923,5
+53067576,24325923,-1
+35677147,24325923,3
+70296365,24325923,4
+58792200,24325923,3
+120408223,24325923,4
+luka90123,24325923,4
+120889281,24325923,3
+VirginiaHsu,24325923,5
+houtz,24325923,4
+Son47,24325923,5
+chumaiyangguang,24325923,4
+13294183,24325923,3
+75096447,24325923,4
+94988945,24325923,4
+32911120,24325923,4
+dreamAnchor,24325923,5
+lovemj4ever,24325923,5
+119571357,24325923,4
+61039590,24325923,5
+122925510,24325923,4
+57714650,24325923,4
+52493179,24325923,3
+lyning,24325923,4
+117339283,24325923,5
+82404312,24325923,2
+33914811,24325923,-1
+2106137,24325923,4
+78607370,24325923,4
+78607370,24325923,4
+snowlydouban,24325923,2
+xiguapei,24325923,5
+jefffeihead,24325923,3
+xiguatang,24325923,3
+43725091,24325923,4
+51606142,24325923,4
+58151132,24325923,3
+4916602,24325923,4
+weexf,24325923,4
+50199718,24325923,3
+nene1022,24325923,4
+chengzishijian,24325923,4
+freeeeeeee,24325923,4
+46960084,24325923,3
+43409918,24325923,4
+glasstar,24325923,4
+tyyaxuan,24325923,5
+46698121,24325923,5
+only1mmmouse,24325923,3
+55305499,24325923,4
+61602605,24325923,3
+zoe2punk,24325923,4
+41194137,24325923,4
+losangzhou,24325923,5
+83997113,24325923,5
+chaisisi,24325923,4
+54650472,24325923,4
+7510013,24325923,5
+envyandecho,24325923,5
+2769574,24325923,5
+Jodiezhang,24325923,4
+1945427,24325923,5
+3503344,24325923,3
+58086381,24325923,4
+Utopiartist,24325923,4
+newbear,24325923,5
+ccushuaia1220,24325923,-1
+37355445,24325923,3
+53146748,24325923,5
+leexiaoxiao,24325923,3
+65710892,24325923,4
+raquelycidas,24325923,4
+86728823,24325923,4
+56998996,24325923,4
+61292565,24325923,4
+14914580,24325923,4
+yalindongdong,24325923,3
+pbc0615,24325923,3
+1130880,24325923,4
+1233038,24325923,3
+4334431,24325923,4
+4828520,24325923,3
+58863205,24325923,3
+1101928,24325923,4
+47326552,24325923,3
+45048645,24325923,5
+3640315,24325923,5
+50308243,24325923,5
+9694640,24325923,4
+4692009,24325923,4
+77026559,24325923,5
+59367965,24325923,4
+71755062,24325923,4
+60823917,24325923,-1
+82507807,24325923,5
+136327428,24325923,3
+44129141,24325923,4
+29844884,24325923,5
+flowermumu,24325923,4
+55575289,24325923,3
+qingxi52vv,24325923,4
+45446401,24325923,3
+Summerhoda,24325923,4
+2982570,24325923,-1
+41555500,24325923,3
+45491031,24325923,2
+3033835,24325923,3
+yuyu427,24325923,4
+yoteamomucho,24325923,4
+48131684,24325923,5
+kingiknow,24325923,4
+104409838,24325923,4
+75952866,24325923,3
+59718039,24325923,4
+vivianya,24325923,4
+65623054,24325923,2
+vivianlovesun,24325923,4
+57251364,24325923,4
+65121901,24325923,4
+136025185,24325923,5
+41533558,24325923,4
+cszzgo,24325923,3
+chloecu,24325923,5
+103551705,24325923,4
+123503132,24325923,3
+czj950615,24325923,4
+52961473,24325923,5
+juleye,24325923,3
+119644008,24325923,4
+lindadarling,24325923,4
+ilovealansuper,24325923,5
+dianxuechaoren,24325923,5
+1364563,24325923,4
+56281076,24325923,4
+TinaTLiu,24325923,4
+Moanin,24325923,3
+smallsponge,24325923,5
+GAYPANIC,24325923,-1
+helenhong,24325923,4
+goodbyetn,24325923,4
+46352446,24325923,4
+71420864,24325923,5
+3107975,24325923,4
+rukia-ichigo,24325923,4
+40201382,24325923,4
+xylor,24325923,4
+115897834,24325923,4
+35063229,24325923,5
+samy0868,24325923,4
+49719880,24325923,5
+cherry_7c,24325923,4
+4069363,24325923,5
+bittersweetlee,24325923,5
+48817278,24325923,5
+picnicskins,24325923,3
+lauer,24325923,4
+lephemera,24325923,3
+63593169,24325923,5
+45448846,24325923,4
+46202965,24325923,4
+50951864,24325923,4
+135687100,24325923,4
+120528256,24325923,5
+3540779,24325923,4
+yangcht,24325923,4
+31716665,24325923,4
+Ghost.Melody,24325923,4
+wangjia0702,24325923,5
+2698249,24325923,4
+2698249,24325923,4
+132585780,24325923,4
+71814413,24325923,4
+48554456,24325923,4
+huing,24325923,3
+45650024,24325923,3
+133538535,24325923,3
+62641536,24325923,4
+52316841,24325923,5
+51578524,24325923,4
+4331359,24325923,3
+vraiio,24325923,4
+17790607,24325923,5
+4577190,24325923,4
+119416612,24325923,4
+1793602,24325923,4
+Sheeplady,24325923,4
+1021139,24325923,5
+Nenya,24325923,4
+71961326,24325923,4
+25725176,24325923,4
+53722280,24325923,3
+59993815,24325923,4
+Renaissance_w,24325923,4
+54080134,24325923,5
+ishikari,24325923,4
+25982397,24325923,3
+49052219,24325923,5
+yushengdenghao,24325923,4
+127217738,24325923,4
+4203960,24325923,4
+83639528,24325923,4
+2258556,24325923,4
+kissclover,24325923,3
+125199315,24325923,2
+yin-gang,24325923,4
+14337522,24325923,-1
+47537834,24325923,4
+123738666,24325923,5
+49384394,24325923,4
+115819915,24325923,5
+thesillyone,24325923,3
+milklotus,24325923,4
+68585121,24325923,5
+jiangrenz,24325923,3
+96660784,24325923,4
+58087297,24325923,5
+takizawa,24325923,5
+Rainbowww,24325923,4
+3471664,24325923,4
+Sh1neYuan,24325923,5
+56890247,24325923,4
+68189537,24325923,4
+87082148,24325923,5
+43905279,24325923,4
+qiaomai,24325923,4
+nemomoc,24325923,4
+lilypure,24325923,4
+nagi_echo-king,24325923,4
+91473851,24325923,4
+77013688,24325923,5
+ALWAYSP2Q,24325923,4
+97277841,24325923,4
+60380024,24325923,5
+51342675,24325923,4
+74228591,24325923,5
+stillwalking29,24325923,5
+48198502,24325923,5
+alexyou,24325923,4
+ProfThunder,24325923,5
+xuyimeng,24325923,4
+49519192,24325923,2
+kongguyouju,24325923,4
+61953901,24325923,4
+ldbx,24325923,5
+64277816,24325923,3
+70990506,24325923,4
+gilyun,24325923,4
+43778462,24325923,-1
+57240144,24325923,5
+82058525,24325923,5
+54520030,24325923,5
+135230769,24325923,5
+92516233,24325923,4
+1767558,24325923,4
+82219188,24325923,4
+76246575,24325923,4
+99206914,24325923,5
+54380713,24325923,3
+3887848,24325923,3
+KennySiliver,24325923,3
+60999102,24325923,4
+51393119,24325923,4
+37382236,24325923,3
+50570726,24325923,4
+54141112,24325923,4
+83089085,24325923,5
+2849700,24325923,4
+eiji218837,24325923,4
+48165079,24325923,4
+32657657,24325923,5
+xianguowuyou,24325923,2
+61741541,24325923,4
+127232980,24325923,3
+67727072,24325923,5
+thirtyseven37,24325923,5
+51330834,24325923,4
+33245540,24325923,3
+81411880,24325923,5
+51195696,24325923,3
+tekiyou,24325923,3
+84872284,24325923,4
+skyisquiet,24325923,3
+135634294,24325923,5
+Youoen,24325923,3
+51784257,24325923,4
+65157272,24325923,5
+42948649,24325923,4
+ChenJY971002,24325923,3
+45797451,24325923,3
+4507905,24325923,4
+59311720,24325923,4
+130353620,24325923,4
+114977043,24325923,4
+68934324,24325923,5
+124640229,24325923,3
+130240756,24325923,-1
+twins1024,24325923,3
+yiritang,24325923,5
+49545340,24325923,4
+76290755,24325923,5
+xingtiannine,24325923,4
+2174443,24325923,4
+3421677,24325923,5
+136130819,24325923,5
+72225985,24325923,4
+126331855,24325923,5
+62139918,24325923,4
+59513842,24325923,5
+66859654,24325923,4
+49624513,24325923,3
+2198979,24325923,4
+62943460,24325923,5
+Jaytaoo,24325923,4
+88502851,24325923,4
+jiejiepeishan,24325923,5
+43517175,24325923,4
+63401608,24325923,4
+2667938,24325923,5
+53080002,24325923,4
+84943776,24325923,4
+Mavisssz,24325923,4
+abaobao,24325923,4
+4668466,24325923,3
+wangzhy,24325923,4
+57791239,24325923,2
+Ston3s,24325923,5
+slimseven,24325923,3
+87910708,24325923,5
+1371141,24325923,4
+kuangjieyu,24325923,5
+119081444,24325923,4
+134402728,24325923,4
+dubasama,24325923,4
+52199961,24325923,5
+67388709,24325923,5
+63672355,24325923,2
+chendaying,24325923,3
+136097338,24325923,5
+54494232,24325923,4
+xjrangel,24325923,3
+seafans,24325923,4
+jammy48,24325923,2
+moshushinihao,24325923,3
+52336873,24325923,4
+corrinneh,24325923,4
+53397455,24325923,3
+16910877,24325923,5
+3350882,24325923,5
+Vantt,24325923,3
+67615408,24325923,5
+25817605,24325923,4
+135844072,24325923,5
+kp81ndlf,24325923,4
+52683154,24325923,5
+82629572,24325923,4
+41837755,24325923,4
+nyssa712,24325923,4
+12794807,24325923,4
+76996269,24325923,5
+4152095,24325923,5
+69730287,24325923,4
+32737561,24325923,3
+106126456,24325923,4
+45291333,24325923,3
+cuacfxx,24325923,4
+59621398,24325923,4
+3502559,24325923,4
+zod798,24325923,4
+37243613,24325923,5
+azureINBLUR,24325923,4
+mengdalian,24325923,4
+70379648,24325923,5
+youjingfengle,24325923,3
+64618863,24325923,4
+48477485,24325923,5
+yeyinihao,24325923,4
+FlowerCharlotte,24325923,4
+kennan,24325923,4
+62614786,24325923,5
+50921483,24325923,5
+JZDE,24325923,5
+79090756,24325923,5
+momojasper,24325923,5
+19617386,24325923,-1
+94353228,24325923,5
+136012818,24325923,5
+68366606,24325923,4
+68160177,24325923,4
+46615756,24325923,5
+47190979,24325923,5
+135981815,24325923,3
+131068311,24325923,4
+44542969,24325923,4
+73156181,24325923,5
+44606989,24325923,4
+senses058,24325923,4
+64184921,24325923,4
+19734042,24325923,4
+arcadia1985,24325923,4
+milkbook,24325923,5
+47814886,24325923,4
+4154813,24325923,4
+ursyoyo,24325923,4
+91276258,24325923,5
+sinceiloveu,24325923,3
+56270845,24325923,5
+42775906,24325923,4
+2752003,24325923,4
+54853596,24325923,4
+UNVS,24325923,5
+130294899,24325923,5
+sunreturn,24325923,5
+66552525,24325923,5
+53346531,24325923,4
+cqyyAyy,24325923,5
+4359475,24325923,4
+88705892,24325923,4
+4412885,24325923,4
+4021192,24325923,5
+43301248,24325923,4
+lightu,24325923,2
+yanshengjie,24325923,5
+thesxx,24325923,3
+yingxxxxx,24325923,-1
+Yanna_z,24325923,4
+totutu,24325923,-1
+31102423,24325923,4
+54926735,24325923,4
+68209797,24325923,3
+legal_alien,24325923,4
+135097592,24325923,4
+65309880,24325923,-1
+78533472,24325923,4
+65744500,24325923,4
+58708135,24325923,3
+67898553,24325923,4
+49025271,24325923,5
+87652766,24325923,4
+57643998,24325923,5
+45890616,24325923,3
+77257136,24325923,4
+63347675,24325923,4
+69773402,24325923,3
+shaku_hanako,24325923,3
+43594948,24325923,5
+57126994,24325923,3
+52244996,24325923,4
+alled,24325923,2
+mollukax3,24325923,3
+49983823,24325923,4
+alamao,24325923,-1
+vilaiceway,24325923,3
+52216845,24325923,3
+63454673,24325923,5
+4345264,24325923,3
+73714750,24325923,4
+qcher,24325923,5
+2812955,24325923,5
+57936671,24325923,5
+8523675,24325923,4
+104582980,24325923,5
+49160139,24325923,-1
+72792251,24325923,4
+48907529,24325923,5
+ruokongzhi,24325923,5
+48944601,24325923,-1
+shakayo_29,24325923,5
+66745395,24325923,4
+58762290,24325923,3
+63730928,24325923,5
+53155339,24325923,5
+73856461,24325923,3
+yancm,24325923,4
+89399541,24325923,4
+monbenben,24325923,5
+69838036,24325923,4
+131500891,24325923,4
+ido_idoing,24325923,2
+35590424,24325923,2
+1077086,24325923,3
+Turkeyears,24325923,3
+75347251,24325923,2
+53656219,24325923,4
+onlyck,24325923,3
+34459109,24325923,4
+49122242,24325923,3
+cjcn,24325923,4
+67878115,24325923,4
+73571891,24325923,5
+73571891,24325923,5
+J7N,24325923,-1
+3922372,24325923,3
+subuuti,24325923,4
+nitaichangkuang,24325923,3
+78473890,24325923,-1
+19469713,24325923,1
+69674172,24325923,4
+83520823,24325923,4
+127496421,24325923,4
+SUNSTAY,24325923,5
+64748860,24325923,5
+1478783,24325923,4
+65054685,24325923,4
+counting_crows,24325923,3
+86140576,24325923,-1
+tenkappa,24325923,-1
+3183207,24325923,-1
+52098312,24325923,4
+126183742,24325923,4
+53467813,24325923,4
+103503223,24325923,4
+99598599,24325923,4
+51886935,24325923,5
+1501433,24325923,4
+50144933,24325923,4
+sunkyeast,24325923,4
+37160658,24325923,3
+102099688,24325923,3
+echozhan,24325923,4
+59458875,24325923,4
+ALTNATIONAL,24325923,5
+guyewuzhe,24325923,3
+foreverjc,24325923,4
+sarabilau2,24325923,3
+121657475,24325923,5
+qiuyunz,24325923,5
+57503695,24325923,4
+HoneyDuke,24325923,4
+loveanimals,24325923,4
+ClaudiaS571,24325923,4
+49806360,24325923,4
+xiaotuo,24325923,4
+darcy-h,24325923,4
+mikarly,24325923,4
+88272921,24325923,4
+74106602,24325923,4
+111642436,24325923,4
+wywapple,24325923,4
+129577459,24325923,3
+121770759,24325923,-1
+52909500,24325923,5
+villus,24325923,5
+2429292,24325923,3
+81962971,24325923,-1
+75621811,24325923,3
+A.Plus,24325923,5
+1617367,24325923,5
+59538557,24325923,5
+84100874,24325923,4
+1786605,24325923,4
+pigpie,24325923,3
+stomach,24325923,2
+44041767,24325923,5
+121928290,24325923,3
+50063059,24325923,5
+108481476,24325923,4
+64543856,24325923,3
+Madao_D,24325923,4
+63194138,24325923,5
+3771616,24325923,4
+50411291,24325923,4
+70716931,24325923,4
+134171030,24325923,-1
+49938011,24325923,3
+34614797,24325923,5
+7971587,24325923,3
+133711771,24325923,4
+2420853,24325923,4
+inout,24325923,4
+chenfeiyu,2303845,4
+97331914,2303845,-1
+50414826,2303845,2
+64092114,2303845,5
+45182133,2303845,5
+92886579,2303845,3
+CrazyChan,2303845,3
+panfangjie,2303845,2
+43621350,2303845,3
+lixin123dongli,2303845,3
+133122713,2303845,5
+55773220,2303845,3
+36939317,2303845,3
+flawoman,2303845,3
+55406868,2303845,-1
+119372898,2303845,3
+108610860,2303845,4
+135140954,2303845,2
+74877561,2303845,1
+helloldq,2303845,3
+helloldq,2303845,3
+44109266,2303845,2
+134329591,2303845,3
+89788600,2303845,4
+46261431,2303845,3
+2119013,2303845,2
+52458935,2303845,2
+6752200,2303845,5
+99372325,2303845,5
+yagamigenko,2303845,4
+71880775,2303845,3
+caixiaonong,2303845,4
+lyricless,2303845,3
+beryl2500,2303845,5
+Asura_Sue,2303845,2
+60317509,2303845,4
+littlefrogD,2303845,3
+55714302,2303845,2
+2565165,2303845,5
+chengnanxuan,2303845,5
+75668833,2303845,4
+58171042,2303845,3
+67777087,2303845,4
+97133349,2303845,3
+58432917,2303845,2
+134576253,2303845,1
+114977043,2303845,-1
+56164676,2303845,1
+65053075,2303845,3
+50438233,2303845,5
+135413824,2303845,3
+3501453,2303845,3
+frozenwind,2303845,4
+snowyhowe,2303845,4
+78656769,2303845,2
+TRULYSHELTON,2303845,4
+62633530,2303845,3
+71062298,2303845,5
+30944208,2303845,1
+63978275,2303845,2
+liuhuanluoyang,2303845,3
+yinkun,2303845,4
+wuyunoy,2303845,3
+37644839,2303845,4
+60211609,2303845,3
+dijianglin,2303845,5
+50433409,2303845,5
+4139518,2303845,3
+wonderer,2303845,3
+moushenglingyu,2303845,3
+wwwwind,2303845,4
+40360938,2303845,2
+126078605,2303845,3
+134533952,2303845,2
+2052146,2303845,-1
+48088054,2303845,4
+30346697,2303845,3
+62153097,2303845,3
+52066992,2303845,3
+56994326,2303845,4
+56994326,2303845,4
+xingxkxk,2303845,5
+56306700,2303845,5
+76798161,2303845,2
+wengwt,2303845,3
+39648072,2303845,2
+58175019,2303845,3
+4624601,2303845,3
+119454086,2303845,2
+uniooo,2303845,2
+16464926,2303845,4
+zbar1234,2303845,3
+50410530,2303845,3
+QPF,2303845,-1
+moonfaceddr,2303845,2
+132062815,2303845,1
+53673765,2303845,4
+68551392,2303845,3
+73998702,2303845,2
+Ruty1985,2303845,3
+127066563,2303845,4
+2592170,2303845,5
+marmotgo,2303845,-1
+49668109,2303845,2
+45789849,2303845,5
+46924225,2303845,2
+48433794,2303845,3
+60846829,2303845,-1
+4531040,2303845,3
+1547393,2303845,2
+98629034,2303845,4
+128666422,2303845,3
+31602666,2303845,3
+47732306,2303845,1
+Nemos,2303845,5
+liujinguang,2303845,3
+50965382,2303845,1
+66277003,2303845,3
+sevenplus,2303845,5
+87209971,2303845,4
+8136180,24719063,5
+65825466,24719063,5
+54951451,24719063,4
+63932302,24719063,4
+shane90,24719063,5
+1878284,24719063,4
+3368474,24719063,3
+nolitachang,24719063,4
+1961185,24719063,4
+36680326,24719063,3
+3975716,24719063,5
+51067587,24719063,5
+45181987,24719063,3
+81573829,24719063,5
+33620830,24719063,2
+1888866,24719063,4
+50568364,24719063,4
+44032953,24719063,5
+69639078,24719063,3
+50414826,24719063,4
+122591212,24719063,4
+57171119,24719063,4
+130387983,24719063,5
+1081478,24719063,3
+81410542,24719063,5
+2215256,24719063,3
+secondidentity,24719063,4
+nerd-7,24719063,4
+35623829,24719063,4
+79703370,24719063,4
+4329212,24719063,4
+115805587,24719063,4
+79080709,24719063,4
+3954422,24719063,3
+131752746,24719063,4
+hero2845,24719063,5
+4480813,24719063,4
+61955471,24719063,4
+93447112,24719063,5
+zouxiameng,24719063,4
+46567996,24719063,4
+49272470,24719063,5
+106730683,24719063,4
+47899490,24719063,4
+45607632,24719063,5
+eefee,24719063,3
+1935056,24719063,5
+98956266,24719063,4
+ideally,24719063,5
+62143286,24719063,4
+133210774,24719063,4
+2401496,24719063,-1
+sophie1007,24719063,4
+138224796,24719063,5
+39913122,24719063,5
+58096573,24719063,3
+4288553,24719063,4
+iliadeve,24719063,2
+sakiring,24719063,3
+laoshiteng,24719063,-1
+45478618,24719063,2
+93940379,24719063,4
+byduan,24719063,4
+54801845,24719063,5
+130162828,24719063,3
+3640685,24719063,4
+l92599,24719063,3
+rafaellee,24719063,5
+120009960,24719063,4
+qrong8,24719063,5
+qibacha,24719063,5
+48264510,24719063,4
+89838973,24719063,4
+29035048,24719063,5
+oppotatu,24719063,3
+53178335,24719063,4
+85345144,24719063,4
+131740688,24719063,4
+72415412,24719063,4
+91317144,24719063,4
+37291572,24719063,3
+63119058,24719063,3
+45497083,24719063,3
+50158938,24719063,4
+landashalane,24719063,4
+beryl2500,24719063,5
+78793233,24719063,4
+60317509,24719063,4
+121228986,24719063,4
+64881839,24719063,3
+magnolialy,24719063,3
+35745537,24719063,5
+64129125,24719063,5
+61011471,24719063,4
+vince717,24719063,5
+63584381,24719063,3
+58311969,24719063,4
+58189944,24719063,5
+62155959,24719063,4
+77827736,24719063,4
+zasuny,24719063,4
+mnadio,24719063,5
+47216352,24719063,3
+83341751,24719063,3
+60661944,24719063,5
+135140954,24719063,1
+alwaysat,24719063,3
+Juzzia,24719063,3
+47772344,24719063,3
+63923908,24719063,2
+8313443,24719063,4
+64882417,24719063,4
+126071846,24719063,5
+67874142,24719063,4
+65053075,24719063,4
+120069048,24719063,3
+66944580,24719063,4
+princessing,24719063,4
+76106839,24719063,3
+60094901,24719063,2
+69463567,24719063,4
+joyjoyyu,24719063,3
+2184629,24719063,-1
+keensolo,24719063,3
+80209748,24719063,4
+LOHANSYANG,24719063,4
+45955826,24719063,-1
+chuzhi49,24719063,4
+68574931,24719063,4
+55676383,24719063,2
+dailypop,24719063,4
+PussyEva,24719063,4
+51963014,24719063,3
+130567322,24719063,4
+nizhenhua1981,24719063,4
+waiwai323,24719063,5
+2869841,24719063,3
+jayscien,24719063,4
+57320621,24719063,4
+ZH1895,24719063,3
+yasmines,24719063,5
+foolbeer,24719063,3
+37644839,24719063,5
+135340906,24719063,3
+64724465,24719063,3
+surri,24719063,4
+59053134,24719063,4
+48606276,24719063,3
+57416481,24719063,4
+4367727,24719063,4
+56950148,24719063,3
+77105796,24719063,5
+74148903,24719063,4
+songo,24719063,4
+Lava_R,24719063,4
+49038928,24719063,3
+121666382,24719063,4
+51950799,24719063,4
+59214894,24719063,5
+63463854,24719063,4
+49926967,24719063,5
+19271403,24719063,5
+70759577,24719063,5
+zccssjb,24719063,3
+qilisa,24719063,4
+1951463,24719063,3
+qiaqiama,24719063,3
+95264069,24719063,4
+bornin1984,24719063,4
+114359921,24719063,4
+78939811,24719063,5
+Airy916,24719063,3
+58938806,24719063,5
+64093040,24719063,4
+137267210,24719063,4
+37862989,24719063,3
+oncoding,24719063,5
+alafangfang,24719063,4
+GeSMD,24719063,4
+115143793,24719063,3
+3701743,24719063,4
+57778589,24719063,5
+1964696,24719063,3
+79902852,24719063,5
+1877066,24719063,5
+fairfarren,24719063,5
+101666673,24719063,3
+2591786,24719063,1
+1211087,24719063,5
+131385388,24719063,4
+65317550,24719063,4
+1378705,24719063,4
+baweimao0812,24719063,3
+CSO-Botasky,24719063,2
+Feibie,24719063,4
+20019318,24719063,3
+82817700,24719063,3
+41320733,24719063,4
+yolu1314,24719063,4
+2734376,24719063,3
+27769783,24719063,4
+3328450,24719063,5
+34665630,24719063,4
+69510684,24719063,5
+60677349,24719063,5
+68575125,24719063,4
+90985192,24719063,4
+66259016,24719063,3
+gcjh,24719063,3
+miaotuanzi,24719063,3
+48864357,24719063,4
+34737598,24719063,4
+30563135,24719063,-1
+2413295,24719063,4
+yuanliu,24719063,3
+110862854,24719063,4
+momot,24719063,3
+kkand77,24719063,3
+Collins1995,24719063,4
+120043439,24719063,3
+42862890,24719063,4
+47598205,24719063,3
+125141974,24719063,4
+peipeilan,24719063,3
+1467146,24719063,3
+67181207,24719063,4
+129462089,24719063,5
+1582961,24719063,5
+64579984,24719063,5
+70805035,24719063,4
+67154069,24719063,5
+91350742,24719063,4
+122261501,24719063,4
+powerjustin,24719063,4
+65111838,24719063,4
+chaomei,24719063,3
+80909668,24719063,3
+juejibinhuodao,24719063,3
+wangtaocyy,24719063,4
+huangshisi,24719063,3
+zzi,24719063,4
+132062815,24719063,4
+57402036,24719063,4
+yaoyaozlz,24719063,4
+iswh,24719063,3
+1909194,24719063,4
+Elsie_7,24719063,-1
+lyzw,24719063,4
+47078298,24719063,4
+68551392,24719063,4
+67481661,24719063,5
+46583947,24719063,4
+shanliang-,24719063,4
+unicornsweety,24719063,3
+77067030,24719063,4
+61775961,24719063,4
+snowyhowe,24719063,2
+50476857,24719063,3
+67882810,24719063,3
+2180309,24719063,4
+3791482,24719063,4
+chaochao85mao,24719063,-1
+63451140,24719063,4
+85891712,24719063,4
+131254424,24719063,4
+2144442,24719063,3
+82815159,24719063,4
+wltao,24719063,4
+mmmooorrreee,24719063,-1
+56413610,24719063,3
+67104840,24719063,5
+127153733,24719063,4
+137929382,24719063,4
+linn2034,24719063,4
+41264823,24719063,4
+miemie-cpu,24719063,5
+4113112,24719063,5
+35069880,24719063,4
+3210124,24719063,4
+88857098,24719063,5
+88857098,24719063,5
+2841993,24719063,3
+58762404,24719063,4
+136594496,24719063,4
+122614702,24719063,4
+45285599,24719063,3
+15208596,24719063,3
+57729353,24719063,3
+jojodin,24719063,4
+52519397,24719063,2
+ftjason,24719063,3
+90727698,24719063,4
+67806727,24719063,4
+noheeyeon,24719063,-1
+missinlove,24719063,4
+2201753,24719063,3
+curlyfox,24719063,3
+74620509,24719063,4
+81172734,24719063,5
+58721463,24719063,4
+4199068,24719063,4
+54759391,24719063,3
+wonderer,24719063,4
+4839234,24719063,5
+52426350,24719063,4
+xuzhezhen,24719063,4
+60163157,24719063,2
+alexhuang,24719063,4
+66989332,24719063,4
+48278787,24719063,5
+63917162,24719063,5
+checycc,24719063,3
+okay477,24719063,5
+PEIzhong,24719063,3
+63618390,24719063,5
+68121895,24719063,4
+55392716,24719063,4
+56712332,24719063,2
+53405110,24719063,4
+58825950,24719063,3
+58825950,24719063,3
+62784694,24719063,3
+53512830,24719063,4
+69478763,24719063,-1
+48115281,24719063,4
+ada2fill,24719063,3
+6529519,24719063,4
+fancybear,24719063,3
+coolorita,24719063,3
+wangyuezuiai,24719063,4
+59794216,24719063,4
+31617650,24719063,3
+59538037,24719063,4
+wena,24719063,4
+thesue,24719063,3
+guanchangqi217,24719063,5
+44671906,24719063,4
+126931624,24719063,3
+withmewithyou,24719063,5
+69941581,24719063,4
+69941581,24719063,4
+4668511,24719063,4
+1326010,24719063,4
+3169215,24719063,4
+xiaonuanka,24719063,3
+luvlena,24719063,3
+61386528,24719063,-1
+137669620,24719063,4
+njlhwx,24719063,5
+65740832,24719063,5
+50371058,24719063,4
+58094531,24719063,4
+131021845,24719063,2
+lucyshang,24719063,2
+47573982,24719063,3
+55934911,24719063,4
+48170034,24719063,3
+63579771,24719063,3
+cleanoo,24719063,4
+101978260,24719063,4
+51483335,24719063,3
+2955357,24719063,4
+butterflypiao,24719063,4
+79745413,24719063,4
+8316667,24719063,3
+54989059,24719063,4
+135910779,24719063,4
+57690912,24719063,5
+108685938,24719063,3
+personality,24719063,4
+nvq7Gin,24719063,3
+2661625,24719063,5
+127313933,24719063,4
+g.z.y,24719063,4
+silkworm-lucy,24719063,4
+likemoly,24719063,3
+82519366,24719063,3
+OpenSpaces,24719063,3
+27193398,24719063,4
+83054457,24719063,3
+madgirl,24719063,4
+62086431,24719063,2
+60733651,24719063,5
+yobeko,24719063,-1
+36458457,24719063,3
+50575752,24719063,3
+4284284,24719063,3
+2481028,24719063,3
+83965297,24719063,4
+34268718,24719063,3
+133675305,24719063,5
+30713482,24719063,5
+121327603,24719063,4
+135744978,24719063,2
+33693061,24719063,3
+elika_su,24719063,5
+luweisheng,24719063,-1
+62787530,24719063,4
+3890315,24719063,3
+45193018,24719063,4
+45193018,24719063,4
+60041785,24719063,4
+zhenziren,24719063,4
+59741946,24719063,3
+prida,24719063,4
+82882772,24719063,4
+6186981,24719063,5
+quue,24719063,4
+65888818,24719063,5
+60051428,24719063,4
+50307120,24719063,3
+Vason_li,24719063,3
+67011353,24719063,5
+51393445,24719063,3
+64197994,24719063,3
+baobeiyan,24719063,5
+9589071,24719063,4
+128173263,24719063,3
+2077551,24719063,4
+lampin,24719063,4
+70405852,24719063,4
+45947023,24719063,3
+snowyeaves,24719063,4
+54281081,24719063,4
+45906710,24719063,4
+yao-monster,24719063,4
+muyanyan,24719063,3
+48924579,24719063,4
+skysnow5201314,24719063,3
+L-6206,24719063,4
+moqulss,24719063,3
+134513839,24719063,5
+terranw,24719063,4
+Asura-L,24719063,5
+1886719,24719063,5
+60241275,24719063,5
+outsidecastle,24719063,5
+44109040,24719063,5
+readmovie,24719063,4
+lulusea,24719063,3
+114285934,24719063,4
+73993174,24719063,5
+beizi00,24719063,3
+82224797,24719063,4
+beatrice591,24719063,4
+gubingjie,24719063,4
+57024226,24719063,3
+134584881,24719063,3
+52101029,24719063,5
+106548711,24719063,4
+gongchen,24719063,4
+heyanglaopo,24719063,4
+vienC,24719063,4
+zhuanghuipin,24719063,3
+jinniunvzuo,24719063,4
+Toutou7,24719063,3
+78855818,24719063,5
+darkcolorstar,24719063,4
+rekodavid,24719063,4
+46923925,24719063,2
+worldzhy,24719063,4
+49322701,24719063,5
+90056521,24719063,3
+132885056,24719063,4
+57231514,24719063,5
+52218248,24719063,5
+42808876,24719063,3
+130337393,24719063,4
+131592651,24719063,4
+Clytze1023,24719063,4
+73125815,24719063,3
+zhaoyonghui1026,24719063,5
+121628266,24719063,5
+114086034,24719063,5
+3837692,24719063,4
+54274706,24719063,4
+gbluki,24719063,2
+zxccau,24719063,5
+60215223,24719063,3
+73217273,24719063,3
+40645830,24719063,3
+30922286,24719063,4
+85770002,24719063,5
+109463525,24719063,3
+aupy,24719063,3
+musicer03,24719063,3
+yuimi5,24719063,5
+2551478,24719063,3
+zhuluoo7,24719063,4
+cyjcandychan,24719063,4
+51331609,24719063,4
+38939975,24719063,5
+27632591,24719063,3
+sylvia0526,24719063,3
+1572661,24719063,4
+33834953,24719063,5
+lizi0522,24719063,4
+44573020,24719063,4
+120383320,24719063,4
+zihunjun,24719063,5
+137508123,24719063,3
+1713591,24719063,-1
+68285065,24719063,3
+heiya226234,24719063,5
+lhc,24719063,4
+49178541,24719063,-1
+64602047,24719063,4
+minilbiss,24719063,4
+2552257,24719063,5
+skytree1025,24719063,3
+36452184,24719063,1
+137334566,24719063,4
+82456949,24719063,3
+136517754,24719063,5
+69232283,24719063,5
+2265615,24719063,3
+Hyke,24719063,3
+americanidiot,24719063,2
+74943239,24719063,3
+48417342,24719063,4
+59326783,24719063,5
+123097597,24719063,3
+joyce_nasu,24719063,4
+peterhou,24719063,5
+68480529,24719063,4
+Davy.L,24719063,5
+34083797,24719063,3
+kingofjungleo,24719063,4
+34476640,24719063,2
+138119611,24719063,5
+55888029,24719063,4
+127402303,24719063,4
+8449145,24719063,3
+72184088,24719063,5
+jijigugumomo,24719063,5
+33872862,24719063,3
+66381242,24719063,5
+51583553,24719063,4
+1371141,24719063,3
+vivianchen9,24719063,4
+68957846,24719063,4
+73925418,24719063,4
+nanxisunny0514,24719063,5
+helloway,24719063,-1
+miaomiaomiao321,24719063,4
+77586983,24719063,4
+55596037,24719063,4
+40572113,24719063,4
+listensunshine,24719063,3
+133769080,24719063,4
+58988387,24719063,3
+2170932,24719063,-1
+62471991,24719063,5
+73533742,24719063,3
+yaya57262373,24719063,3
+58913556,24719063,4
+36390897,24719063,2
+64565262,24719063,3
+82054541,24719063,3
+40850926,24719063,5
+7421779,24719063,4
+sslclz,24719063,4
+lucialo,24719063,4
+4111326,24719063,4
+136437913,24719063,4
+84468658,24719063,2
+56127691,24719063,4
+84092728,24719063,5
+135970181,24719063,4
+kati,24719063,4
+29398491,24719063,4
+zcjzcjzcj,24719063,-1
+68845314,24719063,4
+91337551,24719063,5
+48623076,24719063,4
+135583205,24719063,4
+113608312,24719063,5
+45403290,24719063,5
+JonathanX,24719063,5
+3789295,24719063,3
+neverjames,24719063,3
+crucifix_fox,24719063,5
+122587004,24719063,3
+58606962,24719063,5
+gonglingsu,24719063,4
+med1cine,24719063,4
+minishine,24719063,4
+vanessa-hsueh,24719063,5
+lupinthe3rd,24719063,3
+4413248,24719063,4
+34010148,24719063,1
+127972732,24719063,4
+3537863,24719063,3
+59425944,24719063,3
+juanjuanxy,24719063,5
+42376655,24719063,4
+61279019,24719063,3
+69948545,24719063,4
+mickjoust,24719063,5
+59849090,24719063,3
+63812165,24719063,4
+21749153,24719063,4
+55914846,24719063,3
+62840293,24719063,4
+1603330,24719063,5
+15260965,24719063,-1
+monii,24719063,4
+49440941,24719063,5
+43130402,24719063,5
+51489608,24719063,3
+137613097,24719063,4
+easonsuu,24719063,4
+137555231,24719063,3
+mmmmf,24719063,3
+Nichtsmoines,24719063,3
+80754766,24719063,4
+1580104,24719063,4
+bethkkqq,24719063,4
+1427052,24719063,4
+kistherain,24719063,4
+69213469,24719063,4
+121905439,24719063,3
+81589343,24719063,4
+52079236,24719063,-1
+gogomi,24719063,4
+77289829,24719063,4
+68460917,24719063,4
+60834682,24719063,4
+a5045402,24719063,3
+zzxin,24719063,4
+huaxianzi198986,24719063,3
+54833515,24719063,-1
+ferkmavie,24719063,4
+catsama77,24719063,4
+yvonnethesea,24719063,3
+helloldq,24719063,3
+3985787,24719063,4
+tsebb,24719063,4
+135378115,24719063,3
+61012226,24719063,5
+joannalins,24719063,5
+52395760,24719063,3
+74872914,24719063,3
+46866923,24719063,4
+sea-lucky,24719063,3
+reallotte,24719063,4
+cryking,24719063,3
+hollycn,24719063,3
+65233662,24719063,4
+80011707,24719063,4
+66826105,24719063,4
+83854610,24719063,5
+72934606,24719063,4
+54702669,24719063,2
+muini,24719063,4
+2008667,24719063,5
+58172616,24719063,4
+3602762,24719063,4
+47440795,24719063,4
+35430870,24719063,4
+70795862,24719063,4
+4454048,24719063,3
+38870160,24719063,3
+JesseZZX,24719063,5
+43308232,24719063,5
+50801495,24719063,3
+134509898,24719063,4
+51874201,24719063,5
+1683096,24719063,5
+62544588,24719063,3
+86469978,24719063,2
+47707485,24719063,4
+125136581,24719063,4
+53426587,24719063,3
+37068711,24719063,3
+59665595,24719063,4
+43989001,24719063,4
+58064281,24719063,3
+130371312,24719063,3
+4896177,24719063,5
+babysui,24719063,4
+55583926,24719063,4
+44899763,24719063,4
+2783565,24719063,-1
+2211037,24719063,4
+4255982,24719063,4
+wunaihuaqi,24719063,3
+1144774,24719063,4
+53526243,24719063,3
+27891262,24719063,3
+anlinamagic,24719063,3
+49772103,24719063,5
+fylingy,24719063,4
+1359886,24719063,3
+nirvanayl,24719063,5
+57869214,24719063,5
+78906906,24719063,4
+130054425,24719063,4
+panda11,24719063,4
+heyan0225,24719063,3
+49229485,24719063,4
+whereislaser,24719063,4
+gilyun,24719063,3
+67646824,24719063,3
+dengbingbing,24719063,3
+34015028,24719063,3
+64193702,24719063,4
+50189562,24719063,4
+yishuiyimu,24719063,4
+xiaohuicherish,24719063,5
+57218441,24719063,4
+49028309,24719063,3
+41487778,24719063,4
+121316363,24719063,4
+40693174,24719063,3
+70053404,24719063,4
+jofang111,24719063,4
+47126344,24719063,4
+lllinroyce,24719063,4
+49305149,24719063,3
+49305149,24719063,3
+yoursLilian,24719063,4
+Gstyle,24719063,5
+4286666,24719063,4
+53782984,24719063,4
+icetyle,24719063,3
+fighting1669,24719063,4
+46258070,24719063,3
+78759547,24719063,3
+30535234,24719063,3
+veolxxxx,24719063,3
+63280686,24719063,3
+65055212,24719063,3
+72902688,24719063,2
+75259919,24719063,4
+53477033,24719063,4
+56519940,24719063,4
+63818892,24719063,3
+54639887,24719063,4
+87383835,24719063,4
+cloudlandlord,24719063,2
+47867887,24719063,5
+yeifan,24719063,3
+123634795,24719063,5
+49900478,24719063,5
+52191386,24719063,5
+92878802,24719063,3
+61886291,24719063,3
+23946546,24719063,3
+andrea_tang,24719063,4
+80874283,24719063,-1
+101504303,24719063,3
+3148851,24719063,4
+75814366,24719063,5
+37623413,24719063,4
+71458303,24719063,4
+57714945,24719063,4
+81174599,24719063,5
+panz,24719063,3
+47265467,24719063,4
+57926024,24719063,4
+sissi15,24719063,5
+wuyunoy,24719063,4
+40699267,24719063,5
+134399469,24719063,4
+rongrong0517,24719063,4
+cloudink,24719063,4
+1958578,24719063,5
+eagle1969,24719063,2
+50854633,24719063,4
+4971645,24719063,4
+50034582,24719063,-1
+82913731,24719063,3
+120172771,24719063,4
+mermaid73,24719063,4
+snow-in-coffee,24719063,5
+tangshundgar,24719063,4
+iladios_sopp,24719063,3
+63595507,24719063,3
+30219531,24719063,3
+30219531,24719063,3
+winnie0212,24719063,4
+shadow.u,24719063,4
+132773025,24719063,4
+125474588,24719063,4
+114283751,24719063,5
+57054699,24719063,3
+1138424,24719063,3
+122329830,24719063,4
+miexiaoyang422,24719063,4
+goldenslumber,24719063,2
+38080849,24719063,4
+3444600,24719063,4
+34002570,24719063,4
+43302206,24719063,3
+97112144,24719063,4
+53275472,24719063,3
+47509089,24719063,4
+44245225,24719063,5
+50614819,24719063,5
+76724486,24719063,4
+50706220,24719063,5
+14753496,24719063,5
+43473868,24719063,4
+1452797,24719063,4
+91870642,24719063,4
+45080512,24719063,-1
+zoerose,24719063,3
+panggou,24719063,-1
+SoulCaptain,24719063,3
+yvetterowe_away,24719063,3
+34061777,24719063,4
+53601323,24719063,4
+72781855,24719063,2
+mokizhou,24719063,4
+115072556,24719063,4
+atomziyu,24719063,4
+huahui,24719063,4
+1751335,24719063,3
+44451771,24719063,3
+44451771,24719063,3
+Jane111105,24719063,4
+58855650,24719063,4
+29065481,24719063,3
+4852931,24719063,4
+36664394,24719063,3
+91026407,24719063,3
+35245488,24719063,4
+76066640,24719063,5
+Vain.,24719063,3
+2476564,24719063,4
+64181731,24719063,4
+jinghanxing,24719063,3
+2662155,24719063,4
+3585677,24719063,4
+sln58,24719063,4
+2821183,24719063,3
+76553080,24719063,4
+69797183,24719063,4
+51667296,24719063,4
+letonk,24719063,5
+54187449,24719063,4
+46126259,24719063,4
+57743663,24719063,3
+46914347,24719063,4
+1354561,24719063,3
+1561528,24719063,4
+5594345,24719063,3
+lulu1011,24719063,4
+1386442,24719063,4
+1400830,24719063,4
+errrlilly,24719063,3
+oiegg,24719063,4
+133968412,24719063,2
+youngbinbin,24719063,3
+shuoyin,24719063,4
+62979534,24719063,4
+44727941,24719063,3
+122806435,24719063,3
+scowlknight,24719063,3
+64500822,24719063,3
+summeryfun,24719063,2
+kaysummer,24719063,3
+crazygrave,24719063,4
+50330219,24719063,3
+Z-nana,24719063,4
+50422639,24719063,4
+46171104,24719063,4
+ztt90119,24719063,3
+24930825,24719063,4
+ting_1987,24719063,4
+103242828,24719063,4
+57596518,24719063,4
+89340873,24719063,3
+87653122,24719063,4
+122360234,24719063,5
+48884000,24719063,4
+57104738,24719063,5
+qiushengtang,24719063,3
+47165746,24719063,4
+2828074,24719063,4
+51226277,24719063,4
+folaris,24719063,4
+subject,24719063,5
+oyxp,24719063,3
+42785040,24719063,4
+134887971,24719063,4
+1700673,24719063,4
+dcydb,24719063,5
+Nur,24719063,3
+ever4ever,24719063,4
+1145403,24719063,4
+135499054,24719063,4
+4417393,24719063,2
+orderly,24719063,5
+zcy0505,24719063,3
+78895910,24719063,3
+62489919,24719063,4
+63086253,24719063,5
+47408262,24719063,3
+47408262,24719063,3
+68912465,24719063,4
+kunkaka,24719063,5
+64442233,24719063,4
+51954454,24719063,4
+42362308,24719063,4
+22428297,24719063,4
+48088093,24719063,4
+mousemouse,24719063,3
+124602828,24719063,4
+JC921004,24719063,4
+zqsay,24719063,4
+cdmy818,24719063,4
+q7e7578,24719063,4
+41115011,24719063,5
+idaa,24719063,4
+1793602,24719063,3
+76947768,24719063,4
+43446241,24719063,3
+rregina,24719063,4
+ailinyang,24719063,5
+zhhongbo,24719063,4
+97111841,24719063,5
+57785589,24719063,3
+122170826,24719063,3
+123995952,24719063,4
+V.c,24719063,5
+98757899,24719063,5
+56435930,24719063,3
+isade,24719063,4
+luluto,24719063,3
+HSamson,24719063,5
+ssb,24719063,2
+84326615,24719063,3
+57825390,24719063,3
+137436394,24719063,4
+18747582,24719063,3
+2623464,24719063,4
+floragarfield,24719063,5
+rena0115,24719063,3
+67753942,24719063,3
+56173618,24719063,5
+tianalee,24719063,2
+132257844,24719063,5
+124570974,24719063,4
+65330437,24719063,3
+65590175,24719063,4
+cassiecici,24719063,5
+46615871,24719063,3
+54037926,24719063,2
+alwaysraining,24719063,5
+anillusion,24719063,4
+133414711,24719063,3
+TonyChuh,24719063,3
+3742479,24719063,3
+66168101,24719063,4
+102749506,24719063,4
+74000737,24719063,4
+Daixi-ru,24719063,3
+3735449,24719063,5
+3735449,24719063,5
+126500017,24719063,4
+assam,24719063,3
+fanqu,24719063,3
+50534938,24719063,5
+buguameng,24719063,4
+3365356,24719063,3
+Ocean52,24719063,3
+134906983,24719063,5
+58286468,24719063,4
+lynnofair,24719063,3
+Saxgerrefsur,24719063,3
+60398199,24719063,5
+guamelo,24719063,-1
+69428110,24719063,3
+littlet2010,24719063,3
+46830605,24719063,4
+azizi,24719063,5
+133895653,24719063,4
+136969391,24719063,3
+136969391,24719063,3
+48169742,24719063,3
+72596766,24719063,4
+61957261,24719063,4
+moonhoo0406,24719063,4
+45702807,24719063,4
+56128547,24719063,4
+93613617,24719063,4
+53907528,24719063,3
+72120533,24719063,4
+PranChen,24719063,5
+29280567,24719063,5
+68255147,24719063,5
+69006133,24719063,4
+60047060,24719063,3
+11889754,24719063,4
+1768350,24719063,4
+20719866,24719063,3
+38228503,24719063,4
+131784353,24719063,3
+94683126,24719063,3
+bxynf4,24719063,2
+67669143,24719063,3
+64062108,24719063,-1
+yangfengdouban,24719063,4
+39072658,24719063,4
+64143096,24719063,4
+umbre741,24719063,5
+LuthienLee,24719063,3
+74096448,24719063,5
+fracysun,24719063,5
+45315021,24719063,3
+66339259,24719063,3
+31747902,24719063,5
+67383515,24719063,5
+gaoxingyeah,24719063,5
+lotusmomo,24719063,4
+38514261,24719063,3
+eightsbar,24719063,4
+lolipig,24719063,4
+60010866,24719063,5
+Sumia,24719063,3
+57687641,24719063,2
+4347027,24719063,4
+54158411,24719063,3
+foxgarden,24719063,4
+2489066,24719063,4
+58467960,24719063,4
+5318547,24719063,3
+jtaiyang,24719063,3
+57818188,24719063,4
+sansu_fighting,24719063,-1
+54761530,24719063,4
+shijiabeini0701,24719063,3
+68799841,24719063,4
+120355745,24719063,3
+love_France,24719063,4
+timorrowmain,24719063,4
+sev7n777,24719063,4
+60819104,24719063,4
+3082551,24719063,2
+ZettonToHana,24719063,4
+yumoxin,24719063,4
+32922427,24719063,2
+103601647,24719063,5
+44720805,24719063,3
+58289452,24719063,4
+momo7170,24719063,5
+yangsheng213,24719063,3
+49527668,24719063,4
+43001468,24719063,2
+98916827,24719063,4
+114540686,24719063,3
+threeday,24719063,5
+nono021,24719063,5
+63582829,24719063,5
+44486202,24719063,4
+28272719,24719063,5
+waterdrops,24719063,5
+3403075,24719063,3
+53365528,24719063,5
+58702826,24719063,3
+72170846,24719063,5
+nicer,24719063,4
+66626548,24719063,-1
+45578211,24719063,4
+1008752,24719063,3
+136738210,24719063,4
+diyidouya,24719063,3
+63544997,24719063,4
+4325847,24719063,4
+45862332,24719063,5
+46370805,24719063,4
+fabrique1987,24719063,4
+anyone,24719063,3
+chongh,24719063,4
+49247233,24719063,5
+zellmissu,24719063,5
+52821718,24719063,4
+56917159,24719063,4
+56917159,24719063,4
+120524665,24719063,4
+xiaomujunjun,24719063,2
+62582404,24719063,4
+50495202,24719063,4
+72976463,24719063,5
+67652760,24719063,3
+2494468,24719063,4
+4315200,24719063,3
+43942972,24719063,5
+44134802,24719063,4
+101287383,24719063,5
+3919450,24719063,4
+34634914,24719063,5
+63563448,24719063,4
+46981869,24719063,4
+2487635,24719063,-1
+52436913,24719063,3
+62182892,24719063,3
+61258936,24719063,4
+amibubai,24719063,4
+yumiaowater,24719063,4
+125741310,24719063,3
+hegwin,24719063,4
+79122838,24719063,3
+porpgangder,24719063,5
+Darkkid,24719063,4
+135071922,24719063,3
+69378414,24719063,3
+STanLey_TanSoLo,24719063,4
+69326166,24719063,4
+77677293,24719063,2
+121931250,24719063,4
+52536002,24719063,4
+1230444,24719063,4
+dusk.xiyang,24719063,4
+halcyon0,24719063,3
+76233857,24719063,4
+10402356,24719063,4
+woshijiangxinju,24719063,5
+knightvine,24719063,3
+69318478,24719063,5
+gonedreamback,24719063,2
+action552200,24719063,3
+daisy702,24719063,4
+journeyboy,24719063,4
+58693526,24719063,4
+cat.k,24719063,4
+liting888,24719063,5
+bqx0888,24719063,4
+51663220,24719063,4
+88126173,24719063,2
+63617641,24719063,4
+leonqwh,24719063,5
+120510553,24719063,4
+nuanjue1224,24719063,3
+88951785,24719063,3
+youdianhuanjue,24719063,4
+piaoyi,24719063,4
+124815164,24719063,4
+92866359,24719063,3
+4024950,24719063,3
+61078362,24719063,5
+133116270,24719063,5
+135541517,24719063,4
+arfree,24719063,5
+49733253,24719063,4
+cryc,24719063,4
+65032980,24719063,2
+53168702,24719063,4
+OshimaWatson,24719063,3
+35238754,24719063,4
+131844202,24719063,4
+jamiea,24719063,4
+104427856,24719063,5
+47971865,24719063,4
+80381774,24719063,4
+135906739,24719063,4
+3791437,24719063,5
+69420876,24719063,4
+137898837,24719063,-1
+131207921,24719063,4
+82362318,24719063,5
+fernanas,24719063,4
+heqing0508,24719063,4
+4110643,24719063,4
+120147440,24719063,4
+Heaterh,24719063,4
+42270798,24719063,3
+68550514,24719063,4
+61116917,24719063,4
+64597466,24719063,3
+31970870,24719063,3
+AngelaDayday,24719063,4
+108753844,24719063,5
+75621887,24719063,3
+129841245,24719063,5
+39560896,24719063,5
+suxiaoqian007,24719063,4
+jarvinci,24719063,2
+2419038,24719063,3
+khloe,24719063,5
+45631897,24719063,3
+Missproblems,24719063,1
+echolee314,24719063,4
+127950752,24719063,2
+52576163,24719063,3
+10007777,24719063,4
+janejanechan,24719063,5
+76289844,24719063,5
+yustone,24719063,4
+60864587,24719063,5
+2543390,24719063,-1
+72368775,24719063,5
+39765753,24719063,4
+43488172,24719063,5
+84622041,24719063,4
+51096995,24719063,4
+turtur,24719063,4
+abelxing,24719063,4
+103669945,24719063,5
+66965988,24719063,4
+47764376,24719063,4
+bettersnail,24719063,-1
+48561996,24719063,4
+light_in_fog,24719063,5
+softwind,24719063,4
+4235243,24719063,5
+53582840,24719063,1
+58754090,24719063,4
+30067864,24719063,5
+67280624,24719063,4
+135330943,24719063,3
+iiimo,24719063,3
+119611672,24719063,4
+dssunshineer,24719063,4
+69365887,24719063,3
+4703233,24719063,3
+33171331,24719063,4
+54764887,24719063,4
+33494142,24719063,4
+1565567,24719063,5
+sbandsthfrjelly,24719063,4
+flykarry,24719063,4
+60551718,24719063,4
+131063824,24719063,4
+77200102,24719063,3
+51140827,24719063,5
+summerjie,24719063,4
+beibeiyu,24719063,2
+vanie,24719063,4
+83188009,24719063,3
+2453215,24719063,3
+ducklucy,24719063,4
+137850204,24719063,5
+1938649,24719063,3
+zhaoru,24719063,5
+adamwzw,24719063,3
+zoply6227,24719063,3
+64274502,24719063,4
+48709459,24719063,4
+qiqi227,24719063,4
+3217100,24719063,-1
+xiatian722,24719063,3
+46887415,24719063,4
+130438496,24719063,4
+lmy960509,24719063,4
+8093121,24719063,3
+78850806,24719063,4
+sunchaopasul,24719063,4
+133758995,24719063,5
+51912673,24719063,3
+135947164,24719063,5
+54594576,24719063,4
+yangqihang,24719063,3
+69058007,24719063,3
+redsmile,24719063,4
+55626253,24719063,4
+pangjiansheng,24719063,5
+58280028,24719063,3
+58280028,24719063,3
+mengaxin,24719063,4
+128831767,24719063,4
+48771939,24719063,3
+eileenlim,24719063,3
+rethatevon,24719063,4
+133033817,24719063,4
+smg,24719063,4
+48763260,24719063,4
+raffale,24719063,4
+curlyhairgao,24719063,3
+44121315,24719063,4
+CWQ1030,24719063,3
+69495229,24719063,4
+48181580,24719063,-1
+81149170,24719063,3
+62835586,24719063,3
+103441649,24719063,4
+shuiqi,24719063,4
+45385304,24719063,4
+130445057,24719063,3
+nianhuaapple,24719063,3
+45887661,24719063,4
+130203366,24719063,2
+chrislam,24719063,3
+69573469,24719063,3
+4426496,24719063,5
+46421493,24719063,3
+38084849,24719063,2
+41989464,24719063,-1
+kusch,24719063,4
+47691095,24719063,3
+57831727,24719063,4
+4092597,24719063,3
+38163699,24719063,3
+84513545,24719063,4
+131836691,24719063,5
+aniya320,24719063,3
+kimiamor,24719063,2
+48117474,24719063,4
+1333997,24719063,3
+yukizakura,24719063,4
+seagulls77,24719063,3
+46686249,24719063,4
+3447044,24719063,5
+62798977,24719063,3
+130384856,24719063,3
+128072383,24719063,4
+80575385,24719063,4
+50964453,24719063,5
+31746516,24719063,3
+1778496,24719063,4
+kyo_21,24719063,3
+rye39,24719063,2
+49161974,24719063,3
+efox5,24719063,3
+54982306,24719063,4
+Jaytaoo,24719063,4
+65172633,24719063,4
+135753239,24719063,5
+135753239,24719063,5
+96753197,24719063,4
+55980175,24719063,2
+gaobill,24719063,3
+4871637,24719063,3
+cinta-2012,24719063,4
+wusuowei102,24719063,4
+53823312,24719063,3
+67030468,24719063,3
+49396544,24719063,4
+46630332,24719063,5
+Tz0202,24719063,3
+laolei19900613,24719063,5
+lbeer,24719063,5
+5894610,24719063,4
+freedomjiaqing,24719063,3
+102604927,24719063,-1
+63977281,24719063,4
+vanjuta,24719063,4
+lunann,24719063,5
+68489915,24719063,4
+31877981,24719063,3
+milansunshine,24719063,4
+54162773,24719063,5
+caroline107,24719063,4
+114167599,24719063,5
+66064522,24719063,4
+kulapika,24719063,4
+dorothylee0406,24719063,3
+53952117,24719063,5
+79195615,24719063,4
+62253613,24719063,3
+83186660,24719063,4
+32539484,24719063,4
+108684193,24719063,5
+79080942,24719063,3
+viola_ting,24719063,4
+48917226,24719063,5
+ccushuaia1220,24719063,-1
+134580402,24719063,3
+82211263,24719063,5
+2005598,24719063,5
+76408536,24719063,3
+63626048,24719063,4
+47585455,24719063,4
+75998262,24719063,5
+52851525,24719063,4
+robertjuve,24719063,4
+greenyli,24719063,4
+51053103,24719063,5
+stilllive,24719063,5
+40995885,24719063,4
+44449851,24719063,5
+kyl,24719063,4
+76268139,24719063,3
+looma,24719063,4
+1361853,24719063,4
+47605443,24719063,4
+vinniegn,24719063,4
+92370502,24719063,5
+47818066,24719063,4
+1712187,24719063,4
+136755004,24719063,3
+longlanglang,24719063,4
+spiritualistz81,24719063,2
+62903796,24719063,5
+50238914,24719063,4
+79599953,24719063,4
+bmrlb,24719063,5
+89804270,24719063,-1
+lionlsh,24719063,4
+xianzz,24719063,3
+137324110,24719063,4
+81770301,24719063,5
+natapeng,24719063,5
+48599915,24719063,3
+49980514,24719063,3
+cigaring,24719063,4
+137794763,24719063,3
+134842363,24719063,-1
+130251472,24719063,5
+ifuseekayu,24719063,-1
+kyo85,24719063,4
+83538603,24719063,4
+120793472,24719063,5
+128012079,24719063,5
+133366820,24719063,4
+Heart-Ace,24719063,4
+2694391,24719063,3
+67445143,24719063,3
+titibird,24719063,3
+81939213,24719063,3
+jiangssica,24719063,5
+2401259,24719063,4
+56390988,24719063,3
+54880973,24719063,3
+dujianpeng,24719063,4
+Edward_Elric,24719063,4
+76887347,24719063,5
+135714519,24719063,5
+135714519,24719063,5
+huangzeng,24719063,4
+134516953,24719063,4
+73624765,24719063,4
+60595610,24719063,4
+4107805,24719063,5
+48812180,24719063,4
+79504633,24719063,4
+98760682,24719063,4
+119630839,24719063,5
+54225074,24719063,5
+magara77,24719063,5
+64213898,24719063,4
+62626398,24719063,4
+114790609,24719063,5
+xiaotingzi,24719063,3
+91268300,24719063,1
+79784284,24719063,3
+sugarli,24719063,5
+wajwq781202,24719063,4
+58772458,24719063,5
+74520684,24719063,4
+62687736,24719063,3
+bunnyuki,24719063,4
+37667663,24719063,3
+47127269,24719063,4
+50198552,24719063,4
+125675802,24719063,4
+135230411,24719063,3
+120358201,24719063,4
+119618471,24719063,5
+dengleite,24719063,5
+yeahqiang,24719063,3
+44145594,24719063,3
+candycandycandy,24719063,4
+50041783,24719063,5
+132510572,24719063,4
+Mdoudou,24719063,5
+57459077,24719063,3
+3220756,24719063,4
+100418686,24719063,3
+sooooosweet,24719063,4
+39061280,24719063,-1
+67982328,24719063,5
+han_sy,24719063,4
+57884984,24719063,3
+130999542,24719063,4
+miaomiaomao888,24719063,4
+madhatterlalice,24719063,3
+52621906,24719063,4
+137770410,24719063,3
+81745530,24719063,4
+133175259,24719063,4
+harryonly,24719063,4
+76635599,24719063,4
+85333070,24719063,4
+51401031,24719063,4
+133535826,24719063,5
+63636223,24719063,5
+124914342,24719063,5
+48957245,24719063,4
+qq381525772,24719063,3
+ROMEOANDSAI,24719063,3
+67623868,24719063,3
+104615537,24719063,2
+53119283,24719063,4
+80503569,24719063,-1
+124072345,24719063,4
+28709669,24719063,4
+43827975,24719063,4
+mengzhu91,24719063,4
+Asteria,24719063,4
+49868352,24719063,4
+80166253,24719063,5
+51264332,24719063,5
+zxc_suki,24719063,3
+51679757,24719063,5
+57978230,24719063,4
+47444356,24719063,4
+4341731,24719063,5
+4341731,24719063,5
+fandarin,24719063,4
+41575985,24719063,3
+55556011,24719063,4
+57878638,24719063,5
+80723551,24719063,4
+trnrf,24719063,4
+46138752,24719063,4
+15479258,24719063,4
+58988123,24719063,4
+60655749,24719063,4
+79492851,24719063,4
+40783225,24719063,3
+120372865,24719063,4
+mi-hang,24719063,4
+60977504,24719063,4
+kefeng1988,24719063,4
+roy325,24719063,4
+pandoranavi,24719063,3
+68197730,24719063,4
+3475246,24719063,4
+46722209,24719063,4
+50565480,24719063,5
+106830425,24719063,4
+wuxipaopao,24719063,4
+49576050,24719063,3
+fk69,24719063,4
+apr1lcoo,24719063,5
+davia1107,24719063,5
+magiahaoking,24719063,3
+chailang,24719063,4
+Heartnet,24719063,4
+mlgbbbb,24719063,3
+134195556,24719063,5
+78051236,24719063,3
+hiphopking,24719063,5
+dongjiayue,24719063,5
+41298606,24719063,4
+34855007,24719063,5
+114977043,24719063,5
+52233629,24719063,4
+125267371,24719063,3
+66304676,24719063,4
+47847363,24719063,4
+103622760,24719063,4
+54275881,24719063,-1
+80657974,24719063,5
+119953756,24719063,4
+101863920,24719063,4
+31220552,24719063,3
+Lucifer_89,24719063,4
+47669083,24719063,3
+68107218,24719063,5
+68940923,24719063,1
+shables,24719063,4
+77592151,24719063,4
+48212517,24719063,4
+78862155,24719063,4
+69454263,24719063,5
+gsmusician,24719063,2
+gsmusician,24719063,2
+imblind,24719063,5
+4681813,24719063,3
+133092422,24719063,3
+41049815,24719063,4
+39518332,24719063,5
+yagami-light,24719063,5
+ancaie,24719063,4
+8806616,24719063,5
+36185142,24719063,5
+liyuchun521,24719063,4
+43653368,24719063,-1
+69338065,24719063,5
+sosang,24719063,4
+15004987,24719063,3
+41125061,24719063,4
+85226504,24719063,5
+freeandwind,24719063,5
+65394456,24719063,4
+mouzhi,24719063,4
+13165561,24719063,3
+89255611,24719063,5
+33510302,24719063,5
+Sunshine1113,24719063,4
+75210772,24719063,4
+renshaoqun,24719063,5
+47697397,24719063,4
+61861749,24719063,3
+61382581,24719063,4
+2185681,24719063,4
+61873687,24719063,4
+70278597,24719063,2
+127131340,24719063,3
+farawayfrom_u,24719063,4
+chachaa,24719063,4
+zzfuck,24719063,3
+72381227,24719063,4
+AILUHAN123,24719063,5
+122254128,24719063,4
+1176730,24719063,4
+levid,24719063,4
+77586152,24719063,3
+48699954,24719063,5
+52616575,24719063,4
+46289677,24719063,-1
+liyan1011,24719063,3
+1100898,24719063,5
+136671375,24719063,4
+119195141,24719063,5
+59734711,24719063,3
+xia_mo_1996,24719063,3
+132109402,24719063,4
+84782971,24719063,4
+98014856,24719063,4
+55914679,24719063,4
+43329275,24719063,-1
+2730566,24719063,4
+65494327,24719063,4
+mia777,24719063,4
+66333721,24719063,4
+66333721,24719063,4
+Pridsl,24719063,4
+muyefeifei,24719063,4
+89092816,24719063,3
+68078730,24719063,4
+70310265,24719063,4
+3027179,24719063,5
+73685442,24719063,2
+88595142,24719063,4
+125836653,24719063,3
+66620851,24719063,5
+46387542,24719063,4
+15782303,24719063,4
+2562419,24719063,3
+KGB1997,24719063,3
+firstcause,24719063,4
+phibby,24719063,3
+3275817,24719063,4
+gliuxiaofan119,24719063,4
+Serena.du,24719063,4
+bea-u,24719063,3
+78921107,24719063,4
+92962162,24719063,4
+4128845,24719063,4
+2316813,24719063,4
+56810055,24719063,4
+87390770,24719063,5
+4586959,24719063,4
+39770268,24719063,4
+lancpanda,24719063,4
+61541011,24719063,4
+3759142,24719063,4
+33959216,24719063,3
+56887114,24719063,4
+luziyujiang,24719063,4
+remote,24719063,4
+60858827,24719063,4
+83469606,24719063,4
+41959776,24719063,3
+4836705,24719063,3
+60536729,24719063,5
+jianguogogo,24719063,2
+jiawenyi,24719063,4
+49161074,24719063,4
+131503371,24719063,5
+dhtcwd,24719063,3
+121834295,24719063,4
+dreambone,24719063,3
+38281575,24719063,4
+49893535,24719063,4
+3401742,24719063,-1
+31817174,24719063,5
+takataka,24719063,4
+mengbohe,24719063,5
+afeidora,24719063,4
+56901042,24719063,5
+fzhzhy,24719063,5
+amberxie,24719063,5
+liszt_pp,24719063,3
+7829388,24719063,3
+62308831,24719063,5
+18184820,24719063,5
+cute-candyan,24719063,3
+xiaoqianquan,24719063,5
+72997506,24719063,5
+4434079,24719063,4
+Bupt_Doc,24719063,4
+shiawasen,24719063,3
+50068481,24719063,-1
+particle_uv,24719063,4
+2674873,24719063,4
+2849700,24719063,3
+mpower007,24719063,3
+biyi,24719063,-1
+2397641,24719063,4
+lisalovevivi,24719063,4
+Hope_Chesirene,24719063,5
+135197318,24719063,5
+tony.w,24719063,4
+babyshine,24719063,3
+longmao_83,24719063,3
+32755249,24719063,4
+40696071,24719063,4
+tristanfree,24719063,3
+49022504,24719063,3
+renchang,24719063,4
+53352676,24719063,4
+ednnaLan,24719063,4
+1355140,24719063,4
+shouJUer,24719063,4
+134292834,24719063,4
+78216114,24719063,3
+128041275,24719063,3
+75636877,24719063,4
+44266204,24719063,3
+dreamingking,24719063,4
+65027660,24719063,5
+77434550,24719063,3
+51911319,24719063,2
+2677247,24719063,5
+menzeld,24719063,4
+81424914,24719063,5
+42046293,24719063,3
+invokey,24719063,4
+49752957,24719063,4
+vonvonluck,24719063,5
+62952005,24719063,5
+greyknowsblue,24719063,4
+detectivemmhy,24719063,3
+75952866,24719063,3
+68945798,24719063,4
+70661446,24719063,4
+36015341,24719063,4
+3411339,24719063,2
+45626813,24719063,3
+1210621,24719063,3
+gpzc,24719063,4
+47671749,24719063,5
+66502007,24719063,3
+Tecsun,24719063,3
+1058728,24719063,4
+XUYUN-,24719063,5
+124210070,24719063,3
+kellengao,24719063,5
+2292568,24719063,4
+72992009,24719063,4
+45903758,24719063,5
+61045704,24719063,3
+59431671,24719063,4
+62481118,24719063,4
+nimabidozhanyon,24719063,4
+50175269,24719063,4
+mornzhao,24719063,4
+40012594,24719063,4
+cinder1,24719063,4
+2649213,24719063,2
+75851842,24719063,4
+xj2006062,24719063,5
+47558422,24719063,5
+98553621,24719063,4
+jeremysuit,24719063,3
+aspoon,24719063,4
+68206077,24719063,5
+lanpengyou,24719063,4
+35617688,24719063,3
+YU596202840,24719063,4
+cccpusahonor,24719063,3
+28846484,24719063,5
+67406929,24719063,3
+4290582,24719063,5
+dzone,24719063,3
+137665032,24719063,4
+63166251,24719063,3
+42817015,24719063,4
+49675005,24719063,3
+135430268,24719063,3
+maloma1721x,24719063,4
+69776901,24719063,4
+62915199,24719063,3
+54385496,24719063,4
+1841757,24719063,5
+happyhealthy,24719063,4
+2229062,24719063,4
+Cao-Wei,24719063,3
+53794132,24719063,4
+62591229,24719063,4
+57501742,24719063,4
+4131154,24719063,3
+121044112,24719063,4
+53252879,24719063,5
+8194531,24719063,4
+114179686,24719063,4
+ddxs,24719063,3
+110396643,24719063,2
+69594701,24719063,4
+135145215,24719063,5
+125428809,24719063,5
+51700552,24719063,3
+64167230,24719063,3
+40225013,24719063,4
+106596511,24719063,4
+103456265,24719063,4
+Mumu.,24719063,3
+40005323,24719063,2
+62352485,24719063,5
+FanTastic-Y,24719063,3
+1435513,24719063,4
+sharenfan,24719063,-1
+121394153,24719063,3
+luvhardy,24719063,3
+102806246,24719063,4
+yinggege,24719063,4
+61271737,24719063,4
+59191176,24719063,4
+MayaDey,24719063,4
+64194321,24719063,4
+wsyzoscar,24719063,4
+2325587,24719063,4
+Perhaps_Green,24719063,4
+55418442,24719063,5
+80115244,24719063,4
+51636160,24719063,4
+56867988,24719063,4
+4614727,24719063,3
+1772338,24719063,5
+68865519,24719063,3
+feilanbuji,24719063,4
+65065266,24719063,4
+2471940,24719063,4
+48798796,24719063,4
+greatcatti,24719063,4
+71561935,24719063,3
+46698121,24719063,4
+shusai,24719063,3
+57918338,24719063,2
+4624478,24719063,5
+niccal,24719063,4
+2933625,24719063,2
+74416708,24719063,5
+104600854,24719063,4
+loseMYL,24719063,4
+79933154,24719063,4
+103032395,24719063,4
+41372399,24719063,4
+yumik9,24719063,3
+34480355,24719063,4
+24974954,24719063,4
+lufy,24719063,4
+stonemoonbee,24719063,4
+119999330,24719063,4
+2604964,24719063,5
+67803500,24719063,4
+59235428,24719063,5
+wocaohere,24719063,4
+55833894,24719063,5
+60119754,24719063,3
+s-andy,24719063,3
+53233343,24719063,4
+123112954,24719063,4
+121655859,24719063,4
+hahatedan,24719063,3
+34601221,24719063,5
+137077175,24719063,5
+kjjsy,24719063,-1
+72409759,24719063,5
+21133666,24719063,4
+127695510,24719063,4
+49730004,24719063,4
+superxiaoqi123,24719063,4
+58129330,24719063,5
+dxt213,24719063,5
+Jechina,24719063,4
+42880512,24719063,5
+31952643,24719063,4
+54644881,24719063,4
+heyflower,24719063,5
+64412855,24719063,5
+80395827,24719063,3
+79823689,24719063,5
+2984029,24719063,5
+2984029,24719063,5
+61378252,24719063,4
+sherrytu,24719063,4
+58578065,24719063,5
+125775996,24719063,3
+136366122,24719063,-1
+43923829,24719063,4
+1198621,24719063,5
+46767985,24719063,3
+35228199,24719063,4
+68592556,24719063,5
+ljm1213,24719063,3
+115375109,24719063,4
+melody.wong,24719063,4
+46395427,24719063,3
+setsail_z,24719063,3
+137530007,24719063,5
+izane,24719063,4
+34894274,24719063,4
+74105180,24719063,4
+74105180,24719063,4
+osaka-,24719063,4
+48821799,24719063,2
+46832337,24719063,5
+dashdot,24719063,2
+panda.wen,24719063,4
+57855892,24719063,4
+isabella_shi,24719063,4
+2245504,24719063,4
+jiao.s,24719063,4
+124536699,24719063,3
+53559369,24719063,4
+48374450,24719063,4
+zepwhen,24719063,4
+zhangbohun,24719063,1
+57064183,24719063,-1
+smallsugar,24719063,3
+28317833,24719063,3
+3889746,24719063,4
+66580409,24719063,5
+51248464,24719063,4
+47995839,24719063,5
+56103216,24719063,5
+yilanyilan,24719063,3
+126338570,24719063,4
+yuan-wang,24719063,4
+58487163,24719063,4
+1864180,24719063,3
+12059676,24719063,4
+128044465,24719063,4
+83359033,24719063,5
+46455848,24719063,5
+liang8912374,24719063,5
+135473707,24719063,4
+69878645,24719063,3
+40701239,24719063,3
+135875040,24719063,5
+55430358,24719063,3
+43682942,24719063,3
+loveloneliness,24719063,3
+lonelyhedgehog,24719063,3
+51549155,24719063,3
+50342310,24719063,5
+64865282,24719063,5
+119353813,24719063,4
+cristalfish,24719063,4
+bailuweishuang,24719063,4
+2776195,24719063,5
+59307428,24719063,4
+68255432,24719063,3
+58725860,24719063,4
+43600313,24719063,4
+84238663,24719063,3
+133019129,24719063,4
+48776959,24719063,3
+liushu429,24719063,4
+127365822,24719063,4
+7798390,24719063,3
+2180501,24719063,2
+4008353,24719063,5
+72847220,24719063,5
+81407852,24719063,4
+marilyncooper,24719063,3
+ameliejia,24719063,3
+136745662,24719063,5
+2212819,24719063,5
+70895488,24719063,4
+duducool,24719063,5
+87786678,24719063,3
+56154911,24719063,5
+67984843,24719063,2
+50383138,24719063,5
+52745181,24719063,3
+49593056,24719063,4
+62979514,24719063,4
+128955983,24719063,-1
+wangxiaoqing,24719063,3
+34882816,24719063,-1
+wwy1124,24719063,4
+43468449,24719063,4
+kdyhl,24719063,3
+petronius,24719063,4
+4470750,24719063,4
+fsk8er,24719063,4
+61817353,24719063,5
+53942992,24719063,4
+Tea1116.,24719063,3
+vividtime,24719063,3
+1022788,24719063,3
+124988034,24719063,4
+yunze55,24719063,4
+46794642,24719063,4
+aliclaire,24719063,5
+119495221,24719063,4
+tuirt,24719063,5
+maoliqiumao,24719063,3
+76554051,24719063,5
+xssgillian,24719063,3
+52307353,24719063,4
+48979950,24719063,-1
+134498967,24719063,4
+50981775,24719063,4
+58165403,24719063,4
+luxi1988,24719063,4
+61483050,24719063,4
+43377923,24719063,4
+72820019,24719063,1
+59291130,24719063,5
+53879443,24719063,4
+34243551,24719063,4
+tuxiaochao,24719063,4
+53025259,24719063,5
+3642691,24719063,4
+47172452,24719063,3
+46691077,24719063,4
+saibei,24719063,4
+60481380,24719063,5
+rinacheung,24719063,4
+92805867,24719063,5
+136804658,24719063,4
+81030268,24719063,5
+moian,24719063,3
+76146294,24719063,4
+shiguagji,24719063,5
+xiaoyushudai,24719063,4
+29023027,24719063,5
+37567286,24719063,4
+137584758,24719063,5
+Narcotic_,24719063,4
+micao-onlyhui,24719063,3
+tkone,24719063,4
+52451378,24719063,3
+74908451,24719063,3
+pangyy,24719063,4
+mywayalone,24719063,4
+chanelhong,24719063,4
+129408166,24719063,4
+79375737,24719063,3
+76965103,24719063,3
+128666486,24719063,4
+50898018,24719063,3
+29472366,24719063,5
+2708529,24719063,5
+qiongdong,24719063,4
+137342674,24719063,-1
+62164570,24719063,5
+77919551,24719063,4
+64999410,24719063,5
+98130655,24719063,4
+115669845,24719063,3
+119912254,24719063,4
+57665696,24719063,4
+28098582,24719063,4
+58359321,24719063,3
+67194881,24719063,4
+57893927,24719063,4
+51103959,24719063,4
+70794815,24719063,3
+60587568,24719063,3
+2126628,24719063,2
+104154168,24719063,5
+lissa_710,24719063,4
+88138298,24719063,3
+1703105,24719063,2
+xxxaftertaste,24719063,5
+sunquan19881123,24719063,3
+lorry316,24719063,4
+58181516,24719063,3
+Iamcookie,24719063,2
+130534487,24719063,4
+130558480,24719063,5
+82674531,24719063,2
+2839721,24719063,5
+ensi,24719063,4
+41289155,24719063,3
+2168969,24719063,5
+73542714,24719063,3
+lancer21,24719063,-1
+57927830,24719063,5
+43730319,24719063,3
+wlj13626,24719063,3
+1486195,24719063,4
+121195542,24719063,5
+yanleung1102,24719063,3
+stella0720,24719063,5
+37262549,24719063,4
+84710876,24719063,4
+74011927,24719063,5
+55937351,24719063,3
+L-carrot,24719063,3
+4775119,24719063,3
+hanhanq,24719063,4
+121875738,24719063,-1
+57885765,24719063,5
+leavemerot,24719063,3
+78500828,24719063,4
+Awhatever,24719063,4
+67454148,24719063,4
+songxiaoci,24719063,3
+1813564,24719063,3
+127526905,24719063,5
+yancm,24719063,4
+33919188,24719063,4
+Gongzi_.Fox,24719063,3
+122838666,24719063,4
+60226199,24719063,3
+luxianlx,24719063,4
+43958959,24719063,4
+57280262,24719063,3
+85368660,24719063,3
+91524755,24719063,5
+70111134,24719063,-1
+83062498,24719063,4
+4791622,24719063,3
+ysj,24719063,2
+51399398,24719063,4
+65255148,24719063,3
+59888468,24719063,2
+mirRor.27,24719063,4
+iame,24719063,4
+iame,24719063,4
+danlan121,24719063,4
+xiao33319,24719063,4
+134159778,24719063,4
+lincheng_,24719063,3
+xiao-fu,24719063,4
+136734165,24719063,3
+41495090,24719063,3
+45491301,24719063,4
+TLSL,24719063,4
+55425319,24719063,3
+47214501,24719063,3
+dyq930211,24719063,3
+49056402,24719063,3
+64450665,24719063,4
+41036146,24719063,3
+llefan,24719063,3
+87713828,24719063,5
+3672180,24719063,4
+124142229,24719063,5
+66715908,24719063,-1
+62529047,24719063,3
+1204427,24719063,3
+83701119,24719063,4
+66001675,24719063,4
+48759553,24719063,5
+3483430,24719063,4
+78488775,24719063,3
+1552160,24719063,4
+1404780,24719063,4
+surths,24719063,4
+2096731,24719063,4
+61387419,24719063,4
+75086193,24719063,4
+SnowChou,24719063,4
+65060690,24719063,4
+45476590,24719063,2
+3038376,24719063,4
+70242437,24719063,4
+49581389,24719063,4
+49921068,24719063,4
+3428014,24719063,4
+2192668,24719063,3
+71542304,24719063,4
+zommy,24719063,4
+lotusbleu,24719063,3
+56707071,24719063,5
+57687882,24719063,5
+61268126,24719063,1
+76543597,24719063,4
+2172514,24719063,3
+62528584,24719063,4
+1366693,24719063,1
+127480277,24719063,4
+1822584,24719063,5
+luanweiwei,24719063,3
+91358615,24719063,4
+44976659,24719063,5
+lucifer024,24719063,3
+metalcolin,24719063,4
+78364683,24719063,3
+spicymilk,24719063,3
+unseen129,24719063,4
+woshijjdtk,24719063,4
+jian175102157,24719063,3
+55860560,24719063,4
+129273075,24719063,4
+128263487,24719063,5
+103026141,24719063,4
+47631025,24719063,2
+34262520,24719063,4
+121534057,24719063,4
+52259543,24719063,3
+53035444,24719063,4
+63277654,24719063,3
+58474530,24719063,4
+2483074,24719063,3
+mknow,24719063,5
+67614447,24719063,3
+135312907,24719063,4
+woshiguolei,24719063,5
+Renee_er_est,24719063,3
+60079529,24719063,4
+erika-3104,24719063,4
+56803551,24719063,4
+58738139,24719063,4
+135482587,24719063,4
+MimiLs,24719063,4
+55494665,24719063,4
+nash564220722,24719063,4
+wilshere19,24719063,4
+feixueying,24719063,3
+80694240,24719063,4
+zhb555,24719063,3
+46534834,24719063,4
+20543493,24719063,3
+51509981,24719063,2
+124274372,24719063,4
+34544680,24719063,3
+66456284,24719063,4
+winnersj,24719063,4
+67998952,24719063,4
+2458712,24719063,4
+lovelieren,24719063,4
+65145890,24719063,4
+4223711,24719063,4
+76147632,24719063,5
+73085468,24719063,4
+65210163,24719063,-1
+54340462,24719063,4
+102736688,24719063,4
+44112284,24719063,4
+v_xunyicao_v,24719063,3
+123630666,24719063,4
+67368772,24719063,5
+48252359,24719063,3
+adamyoung1518,24719063,3
+liero,24719063,4
+michaelya,24719063,4
+74652601,24719063,5
+134453310,24719063,5
+52119694,24719063,3
+35353317,24719063,5
+mooeric,24719063,2
+4054446,24719063,3
+123714793,24719063,4
+tea123,24719063,5
+lostinfire,24719063,4
+2552979,24719063,5
+43096733,24719063,4
+71917067,24719063,5
+96758494,24719063,5
+daidai1346,24719063,5
+128991169,24719063,5
+59540406,24719063,4
+89219788,24719063,-1
+64751584,24719063,4
+120885239,24719063,4
+35885589,24719063,4
+127450536,24719063,4
+52969609,24719063,-1
+137065630,24719063,4
+61653276,24719063,4
+69724064,24719063,4
+sevenpain,24719063,4
+3305904,24719063,4
+65593493,24719063,5
+Thangka,24719063,4
+53765771,24719063,4
+51658550,24719063,3
+3726200,24719063,3
+134611218,24719063,5
+36285360,24719063,-1
+87599429,24719063,4
+73620932,24719063,3
+78519970,24719063,5
+4365944,24719063,5
+andyxu3586,24719063,3
+31818887,24719063,3
+3645958,24719063,3
+99975380,24719063,4
+73974685,24719063,5
+xiangzhudong,24719063,4
+43832986,24719063,3
+belovedeyes,24719063,4
+67481946,24719063,3
+WildMeteor,24719063,2
+90055270,24719063,-1
+135802994,24719063,5
+fastkill,24719063,3
+zhouxuan,24719063,4
+70212980,24719063,4
+119255837,24719063,3
+51045910,24719063,3
+hegelian,24719063,4
+2235112,24719063,3
+62712229,24719063,4
+107338684,24719063,4
+81895989,24719063,5
+108151781,24719063,3
+72883424,24719063,4
+56707875,24719063,4
+n789,24719063,4
+46543549,24719063,4
+wonv,24719063,4
+85100165,24719063,5
+56890247,24719063,1
+56803436,24719063,3
+48191805,24719063,5
+122218547,24719063,3
+57235976,24719063,4
+115337600,24719063,2
+hanleisky,24719063,5
+87648203,24719063,4
+41206033,24719063,4
+64859232,24719063,-1
+1876785,24719063,3
+135573450,24719063,3
+48708306,24719063,4
+32194604,24719063,4
+36463756,24719063,4
+2013247,24719063,3
+62776173,24719063,4
+Riverplate,24719063,4
+74169906,24719063,4
+tutusky,24719063,4
+137398525,24719063,4
+mage4,24719063,4
+84538241,24719063,4
+47346958,24719063,4
+dbsbks_wy,24719063,4
+54359368,24719063,3
+52270399,24719063,4
+127454611,24719063,4
+59493620,24719063,3
+4632833,24719063,4
+55969190,24719063,5
+50906731,24719063,4
+34864713,24719063,4
+54685499,24719063,4
+58318026,24719063,3
+123634481,24719063,3
+10277954,24719063,4
+122858787,24719063,5
+xiangjiaopian,24719063,5
+qingqianyuxia,24719063,5
+46719875,24719063,5
+135302519,24719063,4
+56480795,24719063,4
+137467651,24719063,4
+52817746,24719063,4
+35731766,24719063,3
+130557749,24719063,4
+59964078,24719063,5
+AndiChiao,24719063,3
+2005286,24719063,4
+29360462,24719063,4
+122777173,24719063,4
+neveragain,24719063,3
+21145292,24719063,4
+39690585,24719063,4
+76690071,24719063,4
+54983933,24719063,4
+102568864,24719063,5
+3119825,24719063,3
+87947895,24719063,4
+59273600,24719063,5
+41128837,24719063,5
+41363417,24719063,1
+iouhuan,24719063,4
+45032609,24719063,5
+juliazhuli,24719063,5
+SiuSIE,24719063,4
+chendaying,24719063,3
+101097157,24719063,4
+89341086,24719063,2
+38638979,24719063,5
+45820206,24719063,4
+tooer,24719063,3
+64494087,24719063,4
+51284624,24719063,5
+40155699,24719063,4
+64881520,24719063,4
+68991888,24719063,3
+126658027,24719063,4
+102981930,24719063,5
+48247472,24719063,3
+85114697,24719063,4
+jielade08,24719063,5
+weiyg1989,24719063,-1
+4726672,24719063,3
+58802831,24719063,4
+3807164,24719063,4
+voyager1019,24719063,4
+56742109,24719063,5
+xiaoxinadd,24719063,5
+rcaptain,24719063,5
+2911268,24719063,5
+zhangrihe,24719063,4
+33261301,24719063,4
+33261301,24719063,4
+61695974,24719063,4
+3109255,24719063,3
+zjjyh,24719063,2
+135741677,24719063,5
+asy1um,24719063,3
+38814128,24719063,3
+abientot,24719063,5
+61585719,24719063,5
+60609410,24719063,4
+2771790,24719063,5
+taichele,24719063,3
+51868895,24719063,3
+1766764,24719063,3
+18333716,24719063,5
+67173543,24719063,4
+74687875,24719063,4
+52117309,24719063,3
+53046260,24719063,4
+131866787,24719063,3
+98956225,24719063,4
+48470366,24719063,3
+sabel,24719063,4
+32551454,24719063,2
+66880855,24719063,4
+58164147,24719063,5
+39950464,24719063,3
+49821084,24719063,3
+50638011,24719063,4
+137439427,24719063,4
+47425349,24719063,4
+daniboy,24719063,3
+135702188,24719063,5
+115144480,24719063,4
+88532423,24719063,5
+81628425,24719063,4
+56998996,24719063,4
+119392686,24719063,4
+134100949,24719063,4
+3511663,24719063,4
+45007107,24719063,4
+63383511,24719063,4
+108210723,24719063,5
+maxdiane,24719063,4
+3006821,24719063,4
+2206615,24719063,3
+122107585,24719063,4
+136992167,24719063,4
+zichuanxiao,24719063,4
+4357598,24719063,3
+116027920,24719063,4
+48543551,24719063,1
+91037754,24719063,4
+yutang,24719063,2
+yayun920,24719063,3
+statistics,24719063,5
+84740996,24719063,5
+hnlszyp,24719063,4
+weixiaoP,24719063,3
+jiang66,24719063,3
+cindylionel,24719063,5
+52499368,24719063,3
+64319376,24719063,3
+52997648,24719063,4
+134958534,24719063,4
+51578243,24719063,4
+47935001,24719063,3
+muchuimu,24719063,3
+8253957,24719063,5
+131749314,24719063,3
+33957822,24719063,4
+119456438,24719063,4
+130424337,24719063,4
+137303220,24719063,4
+white729,24719063,3
+16395064,24719063,4
+82823554,24719063,4
+50995419,24719063,4
+46444197,24719063,3
+4553271,24719063,4
+64425214,24719063,4
+72524791,24719063,4
+51411469,24719063,4
+chyxqwl,24719063,4
+68202657,24719063,3
+3969339,24719063,5
+3497982,24719063,4
+gaokai3091354,24719063,4
+61712862,24719063,4
+midoushushu,24719063,4
+Vigo,24719063,4
+1519946,24719063,4
+iconsky,24719063,5
+butina,24719063,3
+52360941,24719063,4
+65989078,24719063,5
+39792754,24719063,4
+58732598,24719063,4
+120666244,24719063,3
+ifonly117,24719063,4
+49363710,24719063,3
+25371681,24719063,4
+BALENO,24719063,4
+115318026,24719063,5
+chenjisoler,24719063,4
+cmyooxx,24719063,3
+60766881,24719063,4
+74918892,24719063,4
+bryna,24719063,5
+134414314,24719063,4
+2333505,24719063,3
+yangyixiu1218,24719063,4
+43556775,24719063,3
+104713983,24719063,4
+58399217,24719063,3
+52779238,24719063,5
+2637848,24719063,5
+46419693,24719063,5
+58742522,24719063,5
+redcookie,24719063,4
+54907080,24719063,5
+52069287,24719063,1
+70780550,24719063,4
+92580665,24719063,4
+84983836,24719063,5
+mcas1880,24719063,5
+60316912,24719063,4
+50235107,24719063,3
+103369963,24719063,5
+46493467,24719063,4
+venusvictorwong,24719063,3
+125455938,24719063,3
+2526442,24719063,4
+57187581,24719063,5
+134909945,24719063,4
+wqmeoe,24719063,4
+edward2wong,24719063,5
+1196187,24719063,3
+tongna,24719063,2
+janelihyi,24719063,5
+121595559,24719063,4
+2376689,24719063,-1
+50131470,24719063,4
+54141112,24719063,4
+17841543,24719063,4
+98790551,24719063,4
+53994543,24719063,4
+48530285,24719063,4
+37586252,24719063,4
+61715256,24719063,5
+littlepeace,24719063,4
+103271136,24719063,5
+91656862,24719063,4
+wyb372709042,24719063,4
+125755382,24719063,3
+48175935,24719063,4
+yannis0417,24719063,4
+125878339,24719063,4
+84866154,24719063,4
+ziyuyouyou,24719063,4
+51358310,24719063,5
+43667084,24719063,2
+59084050,24719063,3
+35925189,24719063,4
+lijianbinxp,24719063,5
+58292946,24719063,4
+41463110,24719063,4
+52098739,24719063,5
+64723431,24719063,3
+49699769,24719063,5
+91851250,24719063,4
+53272974,24719063,4
+102221538,24719063,4
+lorretta,24719063,4
+nicolehom,24719063,5
+1138408,24719063,5
+Labradorbear,24719063,4
+yubingqiangwei,24719063,5
+34591792,24719063,4
+53265759,24719063,4
+53265759,24719063,4
+61524961,24719063,4
+rainbow0815,24719063,3
+125827809,24719063,3
+laipixiaoxiuxiu,24719063,5
+fumihiko1985,24719063,3
+robinbird,24719063,3
+Rongfairy6,24719063,-1
+3114482,24719063,3
+53454251,24719063,4
+81370561,24719063,4
+SunandShadow,24719063,3
+3596469,24719063,4
+34826304,24719063,3
+31806975,24719063,3
+87221029,24719063,5
+135470815,24719063,5
+sjch,24719063,4
+59790169,24719063,5
+43280454,24719063,4
+62345841,24719063,4
+annehere,24719063,5
+Rachel.L,24719063,5
+82296076,24719063,4
+cocoangellove,24719063,4
+71225504,24719063,4
+mousejtl,24719063,3
+doon7,24719063,4
+115695650,24719063,4
+GodAssassin,24719063,4
+36689093,24719063,4
+64607654,24719063,3
+1558354,24719063,3
+48226644,24719063,3
+103780920,24719063,4
+1857975,24719063,4
+33021828,24719063,4
+4605484,24719063,3
+xibeigua,24719063,1
+helianchan,24719063,4
+101872972,24719063,5
+104091868,24719063,3
+momono,24719063,4
+3138428,24719063,2
+orangesuan,24719063,4
+redjar,24719063,3
+54173773,24719063,2
+65123773,24719063,4
+52227247,24719063,-1
+2293401,24719063,2
+42039738,24719063,4
+136971594,24719063,3
+32941683,24719063,4
+3878223,24719063,3
+lenber,24719063,3
+115134728,24719063,4
+luoyuhu,24719063,5
+VC39,24719063,3
+83747600,24719063,3
+xue0302,24719063,4
+imashley,24719063,3
+47141874,24719063,4
+2917148,24719063,5
+3000688,24719063,4
+38603350,24719063,4
+94585757,24719063,-1
+105071662,24719063,4
+45968027,24719063,4
+zqnpz,24719063,3
+JIANGXUE,24719063,4
+godzilla-k,24719063,4
+131361061,24719063,4
+sangqing,24719063,3
+57730238,24719063,3
+amir0320,24719063,4
+49090392,24719063,3
+1740354,24719063,4
+leavemealong,24719063,4
+ancientbabylon,24719063,5
+babbye,24719063,2
+60621857,24719063,1
+123002309,24719063,4
+pumpkinTU,24719063,4
+garya7,24719063,-1
+3655399,24719063,4
+82298379,24719063,4
+9064350,24719063,4
+65795089,24719063,5
+69162144,24719063,4
+39817838,24719063,2
+106335454,24719063,4
+lalarain,24719063,4
+48955317,24719063,4
+zhangjc223,24719063,5
+60471758,24719063,2
+59538557,24719063,5
+64080222,24719063,5
+anthony1123,24719063,3
+54621184,24719063,3
+many_shang,24719063,4
+60717417,24719063,4
+guto,24719063,5
+51881334,24719063,-1
+3901159,24719063,5
+tijuana,24719063,3
+AntoniaWang,24719063,5
+66268864,24719063,4
+12386453,24719063,4
+yyyx5,24719063,-1
+4250870,24719063,4
+fancynotgrow,24719063,4
+zzhumemory,24719063,3
+57117431,24719063,5
+66794476,24719063,3
+vickyhanv,24719063,5
+eiris,24719063,4
+flower_N,24719063,3
+WXbmouth,24719063,4
+tsutsu,24719063,2
+jingasola,24719063,3
+70438751,24719063,4
+68467794,24719063,4
+huxy1983,24719063,4
+zhangdayun,24719063,3
+liu65425,24719063,3
+2305783,24719063,5
+49937909,24719063,4
+121989511,24719063,5
+35061289,24719063,5
+airq7,24719063,3
+136727796,24719063,4
+4410880,24719063,4
+25645218,24719063,5
+dogfish,24719063,4
+21761006,24719063,5
+85490827,24719063,4
+76976556,24719063,3
+kevless,24719063,5
+swatow-ink,24719063,4
+65761613,24719063,4
+116271293,24719063,5
+princewayne,24719063,4
+119081444,24719063,3
+48172193,24719063,4
+60178062,24719063,4
+1994259,24719063,2
+43915042,24719063,4
+1725577,24719063,3
+81785228,24719063,4
+2289118,24719063,3
+suiyuanlvzhu,24719063,4
+30492787,24719063,4
+56970395,24719063,3
+haizi0720,24719063,4
+STANDING-O,24719063,3
+1758433,24719063,4
+60475494,24719063,4
+47815647,24719063,5
+64575050,24719063,4
+wingrabbit,24719063,4
+26512977,24719063,4
+130328147,24719063,4
+65121646,24719063,4
+35421582,24719063,4
+yinghuaji,24719063,3
+47169125,24719063,3
+109020451,24719063,3
+75118885,24719063,3
+ake1984,24719063,3
+53728627,24719063,2
+65045279,24719063,4
+121425900,24719063,5
+Sinept,24719063,3
+clarify,24719063,2
+39863972,24719063,3
+Dydia,24719063,4
+49550156,24719063,3
+nsxrb,24719063,4
+sunyugo,24719063,2
+32650866,24719063,4
+barkerhjj,24719063,4
+2193527,24719063,3
+anotheroo,24719063,3
+57733341,24719063,4
+64545161,24719063,5
+62751828,24719063,3
+Jacky_L,24719063,5
+waxili,24719063,5
+48078859,24719063,4
+yizhiyu11,24719063,3
+yuccaxx,24719063,4
+33538142,24719063,2
+60142367,24719063,3
+han962464,24719063,3
+11255442,24719063,4
+75749309,24719063,4
+armitt,24719063,4
+72757269,24719063,5
+1846457,24719063,3
+Yulia,24719063,3
+54998759,24719063,5
+brucewong,24719063,3
+60835831,24719063,3
+43991440,24719063,5
+53485211,24719063,4
+84026276,24719063,4
+64552967,24719063,4
+62732837,24719063,2
+38138105,24719063,3
+79029720,24719063,4
+siupak,24719063,4
+hellojuly,24719063,5
+39268690,24719063,5
+Sandal,24719063,3
+46068341,24719063,3
+137338650,24719063,3
+findJane,24719063,3
+shanghai827,24719063,4
+jodiexie,24719063,4
+2260050,24719063,4
+33691295,24719063,3
+60051093,24719063,4
+kane-chen,24719063,3
+2181749,24719063,4
+44350691,24719063,4
+3394942,24719063,3
+annbabyyan,24719063,3
+44326034,24719063,4
+77419257,24719063,4
+73830337,24719063,3
+maplepu,24719063,4
+83847037,24719063,1
+45540102,24719063,4
+iamxiaoqi,24719063,3
+wangxiaoerhehe,24719063,2
+69807491,24719063,4
+91083170,24719063,3
+51635702,24719063,4
+Y_juana,24719063,4
+zhangzc,24719063,4
+61253710,24719063,5
+80074512,24719063,5
+freelancy,24719063,4
+66912747,24719063,3
+4054463,24719063,3
+2842937,24719063,4
+shirley_1986,24719063,3
+gisellefang,24719063,3
+48999552,24719063,4
+52389655,24719063,3
+126959230,24719063,3
+127066563,24719063,3
+robolwq,24719063,4
+58168997,24719063,-1
+49045380,24719063,4
+129040636,24719063,5
+49002380,24719063,3
+58173665,24719063,4
+flyfy,24719063,3
+53789840,24719063,3
+78846848,24719063,3
+123616308,24719063,4
+lanqiao,24719063,4
+bu2zz,24719063,5
+67019496,24719063,4
+136818696,24719063,4
+xiaohundaban,24719063,5
+55443328,24719063,3
+fkinh,24719063,-1
+guoooo,24719063,4
+58050003,24719063,3
+41586641,24719063,3
+132154442,24719063,-1
+58656660,24719063,5
+shinnodoo,24719063,4
+62453695,24719063,5
+133746376,24719063,4
+mcoach,24719063,5
+Evelyn_Else,24719063,2
+ienen,24719063,3
+lalaailala,24719063,4
+60808695,24719063,2
+60994756,24719063,4
+92906741,24719063,2
+zhl19741130520,24719063,4
+41374892,24719063,4
+43315242,24719063,5
+lovinest,24719063,4
+selevens,24719063,3
+ranwuwu,24719063,3
+Lumiere5200,24719063,4
+zoecopy01,24719063,4
+30494481,24719063,3
+zd342864648,24719063,4
+1841749,24719063,3
+44821238,24719063,5
+2750884,24719063,3
+LyO-n,24719063,3
+135166877,24719063,3
+54116667,24719063,3
+115829302,24719063,4
+104825430,24719063,4
+4679551,24719063,4
+87536553,24719063,3
+120407803,24719063,4
+ying823624,24719063,4
+70668435,24719063,3
+79525878,24719063,3
+45551543,24719063,1
+104399747,24719063,4
+1274020,24719063,4
+71273423,24719063,3
+62395236,24719063,5
+46557102,24719063,4
+kingkongofkhan,24719063,3
+40623897,24719063,4
+50682359,24719063,4
+3811273,24719063,4
+1882498,24719063,5
+56965068,24719063,5
+2309490,24719063,3
+irismandy,24719063,4
+anyi1314,24719063,5
+10723764,24719063,4
+114422491,24719063,4
+116537034,24719063,4
+58064743,24719063,4
+134589409,24719063,5
+49048030,24719063,4
+49000460,24719063,5
+58929269,24719063,4
+74117962,24719063,3
+50801206,24719063,3
+71741395,24719063,5
+53103983,24719063,5
+50971043,24719063,5
+xuyuanchao37,24719063,4
+ellenha,24719063,5
+ninety-one,24719063,4
+51636486,24719063,5
+79748311,24719063,3
+ghlznh,24719063,2
+3646602,24719063,3
+47161500,24719063,1
+domp,24719063,3
+14408708,24719063,4
+52642759,24719063,3
+54794215,24719063,4
+philia_bl,24719063,4
+marcosun,24719063,5
+51689962,24719063,4
+52850671,24719063,3
+iffrank,24719063,5
+2948682,24719063,4
+61697290,24719063,4
+yangjiemomo,24719063,4
+34476095,24719063,3
+48990593,24719063,4
+43216565,24719063,4
+36621771,24719063,4
+pixdream,24719063,3
+NapCote,24719063,4
+42759061,24719063,3
+52949377,24719063,5
+3602153,24719063,4
+xiaopin19,24719063,4
+3416514,24719063,2
+64434584,24719063,4
+66584790,24719063,2
+4417030,24719063,4
+xieruisheng,24719063,4
+Iammygod,24719063,3
+irenemi,24719063,3
+53262999,24719063,4
+feisongshu,24719063,4
+99630135,24719063,4
+61265213,24719063,5
+59236586,24719063,4
+jkk0620,24719063,4
+1452416,24719063,3
+virginia7,24719063,3
+133926657,24719063,4
+newdelete,24719063,4
+4024297,24719063,5
+SUSU19940314,24719063,3
+linduoduo,24719063,4
+83214911,24719063,-1
+62597862,24719063,4
+weldon,24719063,3
+48684289,24719063,4
+mjtang,24719063,3
+78634802,24719063,3
+122751247,24719063,4
+69735820,24719063,4
+4159690,24719063,3
+kidddddding,24719063,4
+76993603,24719063,3
+60778939,24719063,3
+cfqjw,24719063,3
+sanzihui,24719063,4
+49064854,24719063,3
+UD_NaZi,24719063,3
+changeable123,24719063,3
+jackoldbear,24719063,3
+mr-kill,24719063,4
+125373467,24719063,5
+48090771,24719063,3
+79879080,24719063,4
+82134708,24719063,4
+83653397,24719063,5
+44852938,24719063,3
+64860045,24719063,4
+chaohuaxishi,24719063,4
+133252547,24719063,-1
+sleepwalk,24719063,4
+121432850,24719063,4
+cantare,24719063,4
+58001500,24719063,4
+137307077,24719063,5
+dingzijie,24719063,4
+dingzijie,24719063,4
+49738101,24719063,4
+121228834,24719063,3
+joycejoycejoyce,24719063,4
+46333522,24719063,4
+E.MLTR,24719063,4
+50410160,24719063,3
+49120667,24719063,5
+119457443,24719063,4
+129015324,24719063,5
+70314512,24719063,4
+3565793,24719063,4
+76888878,24719063,5
+7400552,24719063,4
+lianmumu,24719063,4
+vppsb009,24719063,5
+59664988,24719063,5
+genger85,24719063,4
+135099240,24719063,4
+57549243,24719063,4
+39946195,24719063,4
+milamiyaff,24719063,4
+sheilachao,24719063,4
+45969796,24719063,5
+3678344,24719063,2
+137302578,24719063,4
+stingroger,24719063,4
+hyhmq,24719063,4
+imhechang,24719063,5
+4361353,24719063,3
+5116652,24719063,4
+71981162,24719063,4
+yc987,24719063,4
+49442913,24719063,5
+53010578,24719063,-1
+57598630,24719063,-1
+134483683,24719063,4
+32803733,24719063,4
+60970032,24719063,2
+changgu4290,24719063,4
+louis_li,24719063,3
+wushengming000,24719063,3
+137240912,24719063,5
+108728687,24719063,3
+muer1986,24719063,3
+doral11,24719063,3
+97503255,24719063,5
+89918754,24719063,5
+40126557,24719063,4
+ziningcanyue,24719063,3
+4575064,24719063,4
+bora2547,24719063,4
+72791613,24719063,-1
+70739010,24719063,4
+130399642,24719063,1
+60478405,24719063,4
+OpalMummy,24719063,4
+97114662,24719063,5
+74230672,24719063,3
+134203222,24719063,5
+40368859,24719063,5
+cocojamboo,24719063,4
+67584807,24719063,3
+90955305,24719063,4
+49513200,24719063,4
+hellotheo,24719063,4
+1796714,24719063,4
+liwei_hi,24719063,5
+68983294,24719063,4
+36460772,24719063,4
+3698997,24719063,4
+49545873,24719063,5
+VOLETASOS,24719063,4
+120884692,24719063,3
+125783118,24719063,3
+130112487,24719063,4
+11542932,24719063,4
+50477759,24719063,3
+muouplay,24719063,4
+2457714,24719063,4
+duklyon1983,24719063,3
+iam7,24719063,3
+taxidriver1976,24719063,5
+EavenTao,24719063,4
+4561356,24719063,4
+133711771,24719063,3
+Slovekame,24719063,3
+ttv5,24719063,5
+131500618,24719063,5
+58688235,24719063,4
+dreamhands,24719063,4
+51414151,24719063,4
+off-,24719063,4
+51038558,24719063,3
+11459354,24719063,4
+ravingrabbid,24719063,4
+1375311,24719063,4
+Define,24719063,3
+51735678,24719063,4
+58623242,24719063,4
+kangwenyi,24719063,5
+Starry0505,24719063,5
+94468324,24719063,4
+50552660,24719063,5
+windowscat,24719063,2
+66081323,24719063,4
+65360088,24719063,5
+13964762,24719063,5
+x7summer,24719063,3
+3068772,24719063,5
+120461858,24719063,3
+103097591,24719063,5
+47326552,24719063,4
+45119624,24719063,3
+2709569,24719063,4
+1096452,24719063,4
+113582401,24719063,3
+122079973,24719063,4
+69861637,24719063,3
+SuperTramper,24719063,5
+54108257,24719063,4
+58872455,24719063,3
+doubixiong,24719063,-1
+yunxin,24719063,4
+xizaoqin,24719063,4
+109530447,24719063,2
+less...,24719063,4
+88206344,24719063,4
+58812825,24719063,4
+121482185,24719063,3
+47717774,24719063,-1
+nwpu642,24719063,4
+55906244,24719063,4
+70102322,24719063,3
+youngsee1992,24719063,3
+xiaoqi777777777,24719063,2
+136639893,24719063,4
+67630346,24719063,4
+zaozao928,24719063,3
+wenxiaonian,24719063,4
+52755966,24719063,3
+3521792,24719063,4
+132137343,24719063,5
+ljwrr,24719063,3
+CAla,24719063,3
+65565016,24719063,3
+SearsTower,24719063,4
+idaisylife,24719063,3
+115510741,24719063,5
+4841197,24719063,4
+57040078,24719063,5
+68690885,24719063,4
+kingflower,24719063,4
+longnel,24719063,4
+49119255,24719063,3
+49680314,24719063,4
+AsukaakusA,24719063,4
+60020985,24719063,4
+11080929,24719063,4
+48062615,24719063,4
+60312947,24719063,5
+74759325,24719063,5
+1104481,24719063,4
+mywinner11,24719063,5
+41758984,24719063,4
+52873640,24719063,4
+braunschweigen,24719063,3
+wcwc,24719063,5
+1545634,24719063,3
+46370397,24719063,4
+dmw_1201,24719063,4
+70453279,24719063,4
+capricornslythe,24719063,5
+47802404,24719063,4
+91955429,24719063,5
+feng-AT---,24719063,4
+61292506,24719063,3
+77151797,24719063,3
+58707423,24719063,2
+lindadarling,24719063,4
+cxqyy8,24719063,4
+69024575,24719063,2
+rosiness,24719063,4
+56562789,24719063,5
+luobozhazi,24719063,3
+77164733,24719063,5
+4409109,24719063,3
+nowaysis,24719063,4
+kevinfilm,24719063,-1
+zhangyik28,24719063,4
+iceprincess,24719063,5
+64008832,24719063,4
+teddysun,24719063,4
+23210994,24719063,4
+91478241,24719063,5
+66904097,24719063,5
+48920893,24719063,5
+62688110,24719063,4
+53680946,24719063,3
+81406187,24719063,5
+81283209,24719063,5
+49366314,24719063,5
+59508588,24719063,4
+2317639,24719063,4
+88638997,24719063,5
+3238367,24719063,2
+49233326,24719063,4
+45274800,24719063,4
+137006409,24719063,4
+59161519,24719063,5
+82520961,24719063,4
+120792651,24719063,5
+32359738,24719063,4
+58549515,24719063,5
+57054575,24719063,4
+18631674,24719063,4
+1322481,24719063,5
+catiou52r,24719063,3
+elyane,24719063,4
+131020888,24719063,3
+131020888,24719063,3
+127439400,24719063,4
+83773769,24719063,5
+moriarty,24719063,4
+eazi2,24719063,4
+micate,24719063,3
+70148892,24719063,3
+nbyidao,24719063,4
+40183328,24719063,4
+raizzt,24719063,4
+jijishabi,24719063,1
+66955026,24719063,4
+gingersalt,24719063,3
+2986383,24719063,4
+57281112,24719063,4
+61602134,24719063,3
+69678151,24719063,3
+withsurui,24719063,3
+55990850,24719063,4
+haoxiaoning,24719063,3
+12227824,24719063,3
+littleshit,24719063,4
+1537069,24719063,3
+75851343,24719063,5
+61236336,24719063,4
+sunny1986,24719063,3
+91227853,24719063,3
+Anglezhang,24719063,5
+44513297,24719063,4
+woshitc11,24719063,4
+39058471,24719063,4
+2370392,24719063,5
+wrx1203,24719063,2
+59144379,24719063,3
+Narcisken,24719063,3
+2408062,24719063,1
+Azure_1995,24719063,3
+105196709,24719063,4
+129387167,24719063,4
+56360766,24719063,4
+91428973,24719063,4
+124980904,24719063,4
+56198518,24719063,3
+1302842,24719063,3
+67919722,24719063,4
+dearjo,24719063,3
+metthew,24719063,3
+57616940,24719063,4
+84603183,24719063,4
+zfz583443214,24719063,4
+49045557,24719063,4
+RUHAILIU,24719063,3
+34174788,24719063,-1
+56922415,24719063,3
+59383084,24719063,4
+wangqinggejiaye,24719063,4
+136837238,24719063,4
+43236941,24719063,3
+124483467,24719063,3
+59017371,24719063,4
+wosyizhiqq,24719063,3
+65124913,24719063,4
+kbs---ak,24719063,3
+76124816,24719063,4
+58810422,24719063,4
+1444030,24719063,5
+jessica_21,24719063,3
+63949906,24719063,3
+50892549,24719063,5
+ttlovett,24719063,3
+NicoleAkiko,24719063,4
+44900733,24719063,4
+50833963,24719063,5
+57523146,24719063,4
+36288410,24719063,3
+lyych,24719063,4
+1967409,24719063,3
+kanagawa,24719063,2
+46963529,24719063,3
+59399939,24719063,3
+missliyu,24719063,5
+jake384,24719063,4
+britpopsailor,24719063,3
+luckie2056,24719063,3
+126140067,24719063,4
+91323310,24719063,4
+69344472,24719063,4
+60721327,24719063,4
+46003128,24719063,3
+1767400,24719063,3
+76295495,24719063,4
+2366564,24719063,3
+45767220,24719063,5
+huangzuomin,24719063,3
+Traza,24719063,4
+121650070,24719063,4
+73142498,24719063,4
+104128106,24719063,5
+72430905,24719063,5
+2477156,24719063,4
+2477156,24719063,4
+46197640,24719063,3
+126156930,24719063,5
+70487695,24719063,5
+10580504,24719063,4
+49167214,24719063,5
+136667430,24719063,4
+mocha____,24719063,5
+103406589,24719063,3
+59890597,24719063,5
+bravedom,24719063,3
+daysofyouth,24719063,5
+whypretty,24719063,4
+127062843,24719063,4
+122221488,24719063,4
+liuliliuli,24719063,3
+102941926,24719063,5
+63705961,24719063,4
+earlytalk,24719063,5
+41041352,24719063,3
+twopersons,24719063,5
+137168719,24719063,-1
+89301190,24719063,4
+lifeofphilosoph,24719063,4
+jimmy037,24719063,4
+81237991,24719063,4
+53401565,24719063,3
+93026596,24719063,2
+52376240,24719063,4
+49023586,24719063,5
+gmrxfx,24719063,3
+68528163,24719063,4
+peterpanpan,24719063,4
+53942242,24719063,3
+28494028,24719063,3
+28829449,24719063,3
+67759095,24719063,4
+62906196,24719063,3
+43430222,24719063,4
+50776119,24719063,4
+53920626,24719063,4
+78477545,24719063,4
+119877742,24719063,5
+78551525,24719063,5
+undeadmonster,24719063,4
+naturesun,24719063,3
+1672417,24719063,3
+54390796,24719063,4
+130192486,24719063,4
+zilinzhg,24719063,-1
+49063054,24719063,3
+xiaoyedeguo,24719063,4
+56291360,24719063,5
+116420053,24719063,3
+chenweikeke,24719063,4
+76935104,24719063,5
+54741903,24719063,5
+94274253,24719063,4
+leonh,24719063,4
+44284522,24719063,4
+54149872,24719063,-1
+44873347,24719063,3
+80713540,24719063,4
+56776280,24719063,3
+aries23,24719063,5
+yY.,24719063,5
+1636065,24719063,5
+candyff123,24719063,5
+53778713,24719063,4
+61193045,24719063,3
+64042349,24719063,4
+63754960,24719063,4
+vicy,24719063,3
+43727478,24719063,1
+108480827,24719063,5
+diedie218,24719063,5
+28631660,24719063,4
+66966914,24719063,5
+2913672,24719063,2
+49736336,24719063,4
+gohit,24719063,4
+137206904,24719063,5
+107860207,24719063,5
+52282792,24719063,5
+teresa1678,24719063,3
+3065454,24719063,5
+plastictreeman,24719063,3
+57335774,24719063,3
+64515288,24719063,4
+51942274,24719063,3
+33880591,24719063,4
+86136547,24719063,3
+lesc,24719063,4
+yzMorph,24719063,3
+81637377,24719063,4
+UNDERMONKEY,24719063,5
+114183000,24719063,4
+63457669,24719063,5
+53942101,24719063,5
+Mr_Sunday,24719063,4
+44741261,24719063,5
+amberahyPOLA,24719063,3
+137003390,24719063,4
+mori0331,24719063,5
+40140527,24719063,4
+4380586,24719063,4
+caoyuanyue,24719063,5
+3626742,24719063,4
+44838676,24719063,4
+Agnes61890,24719063,4
+2248138,24719063,4
+123948134,24719063,5
+103663034,24719063,3
+zbh24,24719063,4
+50667385,24719063,4
+35672658,24719063,4
+136278844,24719063,5
+55796583,24719063,3
+59816567,24719063,4
+1457201,24719063,4
+76956024,24719063,4
+IM-NOT,24719063,4
+116138651,24719063,3
+z1on7,24719063,4
+wzhao,24719063,5
+71851986,24719063,3
+49494287,24719063,4
+halo1226,24719063,4
+mygr,24719063,4
+57970179,24719063,2
+70197721,24719063,5
+79852634,24719063,4
+50190840,24719063,4
+53988209,24719063,4
+zhh358,24719063,4
+beyond1993,24719063,2
+69439267,24719063,4
+methodolody,24719063,2
+47586387,24719063,4
+majormaureen,24719063,5
+zuo218,24719063,-1
+64249051,24719063,2
+chaochao817,24719063,4
+71931134,24719063,5
+117307392,24719063,5
+4063711,24719063,4
+hatanomio,24719063,5
+beckham7,24719063,5
+70368637,24719063,3
+64375776,24719063,4
+tammysky,24719063,3
+63047624,24719063,5
+65857844,24719063,5
+43299277,24719063,4
+29725427,24719063,4
+120299687,24719063,4
+68550655,24719063,4
+71693752,24719063,4
+wutongsuliang,24719063,4
+61348061,24719063,4
+liangtong,24719063,4
+creekseven,24719063,3
+121806653,24719063,4
+loveleo,24719063,4
+i-am-straight,24719063,3
+fragilelove,24719063,3
+55803883,24719063,3
+90817930,24719063,3
+Antenna5,24719063,4
+camellowang,24719063,4
+130647398,24719063,4
+88226626,24719063,5
+xiaopang2671,24719063,2
+48991320,24719063,-1
+51491569,24719063,3
+vivienne1117,24719063,5
+52848909,24719063,4
+119698382,24719063,4
+Wegmarken27,24719063,4
+57585752,24719063,4
+122601369,24719063,3
+69972517,24719063,4
+75418058,24719063,4
+yanxianxian,24719063,4
+2309684,24719063,4
+77286450,24719063,5
+47267124,24719063,4
+48550206,24719063,3
+skiny_orange,24719063,4
+givindream,24719063,3
+xiao7jl,24719063,4
+45637798,24719063,3
+dayna,24719063,5
+135637116,24719063,3
+120532212,24719063,4
+jessiepan0322,24719063,5
+58197963,24719063,5
+87904933,24719063,4
+36466126,24719063,5
+Jungly,24719063,4
+heli940613,24719063,3
+45890616,24719063,3
+53823766,24719063,3
+53199629,24719063,4
+53916327,24719063,4
+xunhu,24719063,4
+74916567,24719063,4
+88534574,24719063,2
+jayceexu,24719063,5
+47723496,24719063,4
+xnyjb,24719063,3
+73035392,24719063,5
+58759122,24719063,4
+127298823,24719063,-1
+xiaoyufan569801,24719063,4
+131909298,24719063,4
+mrkingdom,24719063,4
+lovejackie,24719063,4
+72660093,24719063,4
+sophiaforfree,24719063,4
+1626349,24719063,3
+136293291,24719063,-1
+Commander_TNT,24719063,4
+3433447,24719063,4
+46340614,24719063,4
+guojie,24719063,3
+1495717,24719063,5
+iloveevanna,24719063,3
+49356246,24719063,4
+72312508,24719063,4
+69981208,24719063,5
+Yangtze_Ann,24719063,3
+55573490,24719063,5
+bradmchen,24719063,4
+53558194,24719063,-1
+34364053,24719063,4
+2976797,24719063,5
+2171255,24719063,3
+chaud,24719063,4
+dustxu,24719063,3
+dustxu,24719063,3
+lilysld,24719063,4
+68758179,24719063,3
+101931160,24719063,5
+55296496,24719063,3
+102906934,24719063,4
+60151341,24719063,5
+jisixue0111,24719063,4
+85174401,24719063,4
+xszyhyuzhen,24719063,4
+ginapoppy,24719063,4
+summernight1cn,24719063,5
+131704221,24719063,4
+134531481,24719063,3
+zsxyz_14,24719063,4
+119197103,24719063,2
+62294425,24719063,2
+38399919,24719063,4
+6745246,24719063,4
+53319331,24719063,4
+27244349,24719063,4
+jiangying,24719063,4
+45205132,24719063,4
+134085133,24719063,3
+2997234,24719063,4
+84544522,24719063,-1
+58697566,24719063,3
+51945136,24719063,3
+61872443,24719063,5
+134915437,24719063,4
+yazi3.15,24719063,5
+Mu_la,24719063,3
+58786397,24719063,4
+61569380,24719063,4
+60889822,24719063,3
+libin1012,24719063,3
+4118910,24719063,4
+60764482,24719063,4
+Zicher,24719063,4
+quills,24719063,4
+anteruna,24719063,3
+57980704,24719063,4
+55653553,24719063,4
+40922320,24719063,5
+zhai5flowers,24719063,4
+xxshen,24719063,5
+onlysassy,24719063,3
+137046543,24719063,5
+5814299,24719063,4
+ORBR,24719063,4
+2216479,24719063,4
+huasuoepc,24719063,4
+kamegong,24719063,5
+nuriazsy,24719063,4
+tagedeng,24719063,3
+57828907,24719063,3
+53935985,24719063,3
+135402146,24719063,4
+57065228,24719063,3
+7329004,24719063,4
+huacnlee,24719063,4
+yebenwuyin,24719063,5
+133815703,24719063,4
+2422304,24719063,5
+58094874,24719063,3
+43467166,24719063,5
+81413289,24719063,4
+66034931,24719063,4
+94030694,24719063,5
+wangjun926,24719063,3
+98830486,24719063,5
+78437206,24719063,4
+61340165,24719063,3
+1550135,24719063,3
+holeelove,24719063,4
+66595239,24719063,4
+KimJongBum,24719063,3
+cajiln,24719063,4
+4082102,24719063,4
+125760534,24719063,4
+40789061,24719063,4
+daguopan,24719063,3
+29113494,24719063,3
+132474319,24719063,4
+62288515,24719063,5
+123945021,24719063,4
+70248274,24719063,5
+62400100,24719063,3
+72381317,24719063,4
+61490761,24719063,3
+63872937,24719063,3
+85151520,24719063,5
+wiki7,24719063,-1
+47826669,24719063,5
+lrodin,24719063,3
+67943333,24719063,5
+54719032,24719063,4
+conanwansui,24719063,4
+70313784,24719063,4
+131004171,24719063,2
+131004171,24719063,2
+shui_sf,24719063,4
+2385429,24719063,4
+24139618,24719063,4
+69031967,24719063,3
+50782612,24719063,4
+129932748,24719063,3
+49731512,24719063,3
+suealone,24719063,4
+chancius,24719063,4
+1417770,24719063,4
+46862287,24719063,4
+4069189,24719063,4
+1485351,24719063,4
+anana-shan,24719063,3
+80933934,24719063,4
+guoyunya,24719063,5
+127457458,24719063,4
+abe_y,24719063,5
+56899985,24719063,5
+120447606,24719063,4
+130225385,24719063,3
+1434867,24719063,4
+deasil,24719063,4
+64375697,24719063,3
+4658557,24719063,4
+79834547,24719063,3
+59620190,24719063,3
+lmxiaojian,24719063,4
+85123915,24719063,1
+6669413,24719063,5
+46399965,24719063,2
+wendu0909,24719063,5
+79400267,24719063,4
+3365504,24719063,2
+45209835,24719063,2
+51559890,24719063,4
+panyari,24719063,5
+vivi827,24719063,-1
+44750610,24719063,4
+shinny010101,24719063,4
+51309872,24719063,3
+132636435,24719063,5
+DSFTEM_TANG,24719063,3
+68429541,24719063,3
+120373913,24719063,5
+58215137,24719063,4
+anicelv,24719063,4
+102877510,24719063,4
+47800725,24719063,3
+koklite,24719063,3
+88650755,24719063,2
+121945022,24719063,5
+130419426,24719063,5
+yanagi,24719063,4
+46823718,24719063,3
+jadexyz,24719063,5
+gengmaomao,24719063,3
+70629279,24719063,1
+136399460,24719063,4
+96029837,24719063,4
+132983057,24719063,4
+59807933,24719063,4
+xiaodou52,24719063,3
+62457079,24719063,5
+136926154,24719063,4
+83737381,24719063,4
+71833015,24719063,4
+65025231,24719063,4
+43814222,24719063,4
+54493645,24719063,4
+59959913,24719063,3
+127943674,24719063,4
+2191520,24719063,2
+dashizi,24719063,2
+59079436,24719063,4
+phlunhai,24719063,4
+feller,24719063,4
+15497319,24719063,4
+ktysnow,24719063,3
+ktysnow,24719063,3
+125151032,24719063,5
+47805986,24719063,4
+61024723,24719063,4
+93724704,24719063,4
+36863032,24719063,3
+54266422,24719063,4
+nxy941123,24719063,4
+89912837,24719063,5
+67231468,24719063,4
+yojoisgod,24719063,3
+furien,24719063,4
+38971714,24719063,4
+MyloveXxy,24719063,3
+37975199,24719063,4
+130362078,24719063,4
+Yaomusic,24719063,3
+mrbuzhidao,24719063,5
+1326095,24719063,4
+83547057,24719063,2
+43068881,24719063,4
+66493866,24719063,4
+reveur07,24719063,4
+68666799,24719063,4
+4627477,24719063,3
+42724768,24719063,3
+137061387,24719063,4
+58333270,24719063,4
+1882334,24719063,4
+nullspace,24719063,1
+timetowrite,24719063,3
+viteless,24719063,5
+mengqingjiao,24719063,4
+hxdsjh,24719063,3
+129834051,24719063,4
+40070359,24719063,4
+64454341,24719063,2
+78321919,24719063,3
+134574897,24719063,4
+114657474,24719063,3
+97187010,24719063,1
+3959689,24719063,5
+116304949,24719063,5
+59142794,24719063,4
+goodbyemagi,24719063,3
+sunxiaozhao,24719063,5
+93040251,24719063,4
+134362348,24719063,4
+liangerle,24719063,2
+132361595,24719063,4
+luccaporridge,24719063,4
+zipaiwang,24719063,2
+77645766,24719063,4
+84949449,24719063,4
+55789960,24719063,4
+28493840,24719063,4
+lijsh,24719063,3
+laputaw,24719063,4
+95873636,24719063,4
+hoxx,24719063,4
+hoxx,24719063,4
+61681574,24719063,4
+hhbreak,24719063,3
+67514961,24719063,4
+ly.tiramisu,24719063,3
+106514817,24719063,4
+72642943,24719063,4
+47077015,24719063,4
+74752187,24719063,5
+131205877,24719063,3
+52161758,24719063,3
+37216617,24719063,3
+122716451,24719063,5
+49488269,24719063,3
+61356337,24719063,3
+73856461,24719063,5
+nn35,24719063,-1
+90940057,24719063,4
+68980281,24719063,4
+62570260,24719063,4
+55435121,24719063,4
+76693875,24719063,4
+88072113,24719063,4
+50307949,24719063,4
+lyy1112,24719063,4
+14027777,24719063,4
+42981900,24719063,5
+wenfeng058,24719063,1
+121536423,24719063,4
+daijun1988,24719063,5
+green198641,24719063,-1
+42069458,24719063,3
+98954264,24719063,3
+blackiss,24719063,5
+73156181,24719063,4
+yanxiaoka,24719063,4
+iRayc,24719063,4
+57391368,24719063,3
+morphinerouge,24719063,5
+blacktea077,24719063,4
+megane0931,24719063,4
+solabu,24719063,5
+yuyang0815,24719063,4
+123228313,24719063,3
+YAMAHA_GO,24719063,5
+122373357,24719063,5
+young4u,24719063,5
+missufinally,24719063,4
+78169012,24719063,4
+46170417,24719063,4
+veggicc,24719063,4
+115708605,24719063,3
+49910264,24719063,5
+4531781,24719063,5
+134357382,24719063,5
+57662032,24719063,4
+133371688,24719063,4
+37573301,24719063,3
+1797671,24719063,3
+122777327,24719063,4
+47209079,24719063,4
+50034044,24719063,4
+xxqxz,24719063,5
+alessioliu,24719063,3
+76187931,24719063,3
+zimu1990,24719063,5
+4083554,24719063,4
+hairh,24719063,5
+56315424,24719063,5
+liumoming,24719063,4
+3096049,24719063,3
+60826827,24719063,5
+3557042,24719063,4
+136957139,24719063,4
+51855917,24719063,3
+108296832,24719063,4
+alexDlee,24719063,4
+mywallace,24719063,3
+115590633,24719063,4
+maxxue1994,24719063,4
+32505687,24719063,4
+85490234,24719063,2
+74376371,24719063,5
+121860876,24719063,5
+127080746,24719063,5
+47599682,24719063,4
+lcpeng,24719063,4
+80584534,24719063,5
+131088732,24719063,4
+64797594,24719063,5
+134269871,24719063,4
+98767873,24719063,5
+87997485,24719063,3
+66460128,24719063,5
+62366925,24719063,3
+56976495,24719063,4
+53412818,24719063,5
+44032131,24719063,3
+dancewithwater,24719063,5
+madprince,24719063,4
+2225652,24719063,3
+zhangyang0018,24719063,5
+130940103,24719063,3
+56836925,24719063,4
+65789637,24719063,3
+roubangaroubang,24719063,1
+xhide,24719063,4
+52424541,24719063,4
+114645921,24719063,4
+Charloo,24719063,3
+42150179,24719063,4
+132388146,24719063,3
+137074455,24719063,5
+58946755,24719063,3
+35158141,24719063,4
+77555967,24719063,3
+mystory0310,24719063,3
+6972638,24719063,4
+46119201,24719063,5
+83257989,24719063,4
+45496938,24719063,-1
+137073199,24719063,5
+119838921,24719063,5
+100083138,24719063,4
+nimenime,24719063,4
+135725455,24719063,4
+67707298,24719063,5
+124239167,24719063,4
+yolanda1920,24719063,3
+80399266,24719063,4
+51446945,24719063,3
+51963677,24719063,5
+12031989,24719063,4
+75756696,24719063,5
+15387840,24719063,4
+45925572,24719063,4
+47037959,24719063,4
+70546796,24719063,5
+6270415,24719063,4
+87783033,24719063,4
+120272196,24719063,5
+30005056,24719063,4
+41944800,24719063,3
+dream_se7en,24719063,4
+54275383,24719063,5
+129553485,24719063,5
+vanilla-sky,24719063,4
+yuc200,24719063,1
+evilQin,24719063,4
+4203342,24719063,4
+endlesssisyphus,24719063,4
+42504061,24719063,4
+68632804,24719063,4
+56254034,24719063,4
+CCLOVEFF,24719063,3
+4534037,24719063,4
+49388908,24719063,4
+7106437,24719063,4
+2198365,24719063,5
+renymartin,24719063,4
+59640195,24719063,3
+62952735,24719063,3
+wgutou,24719063,3
+dalychau,24719063,4
+lolitazly,24719063,3
+77350146,24719063,3
+102930164,24719063,4
+49068686,24719063,5
+WillZz,24719063,-1
+79095415,24719063,4
+40853957,24719063,3
+106130226,24719063,5
+25694661,24719063,4
+syyofficer,24719063,4
+AAAHHHAAA,24719063,3
+129472402,24719063,4
+137062207,24719063,4
+136102603,24719063,4
+64636430,24719063,4
+37640485,24719063,3
+kimidesperado,24719063,4
+39217507,24719063,3
+39194830,24719063,3
+qyj1971,24719063,5
+pengzhou,24719063,5
+131186363,24719063,3
+Llilililili,24719063,4
+45268716,24719063,4
+90986347,24719063,5
+57667078,24719063,4
+caixiaoqiang,24719063,4
+jiayouqiufeng,24719063,5
+qianxun_lin,24719063,3
+84235049,24719063,4
+3129978,24719063,4
+monikalife,24719063,4
+gezi921054,24719063,4
+yutingamy,24719063,3
+Meikom,24719063,3
+beeflix,24719063,4
+april_k7,24719063,3
+122839892,24719063,5
+roananubis,24719063,3
+29844884,24719063,5
+55671643,24719063,4
+128353754,24719063,4
+71378283,24719063,4
+48093431,24719063,3
+50158586,24719063,4
+129577798,24719063,4
+128228511,24719063,4
+aids,24719063,4
+libihui,24719063,4
+fengbao945,24719063,4
+76029773,24719063,4
+lizmurray,24719063,4
+yushi,24719063,2
+3052607,24719063,4
+3514261,24719063,4
+benita0124,24719063,4
+zuozuoqing,24719063,4
+28840841,24719063,4
+4574930,24719063,5
+120691966,24719063,3
+123220825,24719063,5
+65496704,24719063,3
+37110332,24719063,3
+134464320,24719063,4
+109347674,24719063,4
+64917045,24719063,4
+nemooO,24719063,3
+z498084785,24719063,5
+danaebirds,24719063,4
+122048396,24719063,3
+57236576,24719063,5
+129964938,24719063,4
+53534718,24719063,4
+4905173,24719063,3
+piangpiangpiang,24719063,4
+13424583,24719063,3
+48611382,24719063,4
+135868396,24719063,5
+Lastdeadlyjoke,24719063,4
+cowcow,24719063,5
+54073244,24719063,4
+134698667,24719063,5
+120566787,24719063,4
+103113444,24719063,4
+51909421,24719063,3
+60470640,24719063,4
+67888545,24719063,3
+127111031,24719063,4
+57615935,24719063,3
+52548384,24719063,4
+132389013,24719063,3
+58044452,24719063,5
+136768505,24719063,4
+136427944,24719063,5
+1464025,24719063,4
+3479179,24719063,4
+ann57588729,24719063,3
+shrekD,24719063,3
+waisel,24719063,4
+43497624,24719063,3
+zdy33,24719063,2
+4224772,24719063,5
+60621560,24719063,4
+sun112,24719063,5
+etheryan,24719063,4
+46627349,24719063,4
+31757691,24719063,5
+stupidcat7652,24719063,2
+zi-jojopig,24719063,5
+soulauge,24719063,4
+ikaka,24719063,2
+121346117,24719063,4
+shushudabaoz,24719063,4
+43503664,24719063,5
+insomnia,24719063,3
+63463850,24719063,4
+3344118,24719063,2
+wsgstrike,24719063,4
+45951993,24719063,3
+lostcm,24719063,4
+echowithu,24719063,3
+Lene_XJTU,24719063,4
+68238165,24719063,4
+cqingteng,24719063,4
+41863263,24719063,5
+july-sky,24719063,2
+xyc1987,24719063,4
+adlonely,24719063,4
+34367914,24719063,3
+83604307,24719063,3
+57583046,24719063,5
+55436765,24719063,3
+1584109,24719063,3
+61595225,24719063,5
+princecat,24719063,4
+55399562,24719063,4
+67843385,24719063,3
+27545760,24719063,4
+81628764,24719063,4
+81520286,24719063,5
+69277440,24719063,5
+aircentee,24719063,5
+66183026,24719063,4
+57205524,24719063,5
+49884357,24719063,3
+132032794,24719063,5
+77801341,24719063,4
+lee7lee,24719063,2
+3914860,24719063,4
+78623858,24719063,4
+54969283,24719063,3
+43886305,24719063,4
+62668374,24719063,3
+3553917,24719063,3
+kianfish,24719063,-1
+yazigaga,24719063,5
+82232966,24719063,4
+70296365,24719063,3
+54638829,24719063,3
+70681955,24719063,4
+29890430,24719063,4
+judybubu,24719063,3
+4295778,24719063,4
+velox,24719063,3
+3838722,24719063,3
+3838722,24719063,3
+28928128,24719063,4
+80227476,24719063,3
+3722910,24719063,5
+heartbreakerkid,24719063,3
+62836218,24719063,3
+1068125,24719063,3
+57565686,24719063,3
+ann27996090,24719063,2
+migrate,24719063,5
+46619428,24719063,2
+34575902,24719063,3
+guoblackcat,24719063,5
+73189108,24719063,4
+132257814,24719063,4
+134921656,24719063,5
+74149481,24719063,4
+65900502,24719063,3
+cwei,24719063,4
+129857538,24719063,4
+85398631,24719063,3
+2635823,24719063,4
+jamiedoll,24719063,4
+VampirX,24719063,4
+42695833,24719063,3
+aixiaoke,24719063,3
+121225563,24719063,5
+71624097,24719063,4
+jimmyjiayou,24719063,4
+59611074,24719063,4
+65033066,24719063,3
+2822340,24719063,5
+penguin_re,24719063,5
+48406181,24719063,3
+67112573,24719063,3
+1474063,24719063,2
+31102423,24719063,4
+80781412,24719063,-1
+61363004,24719063,5
+81344855,24719063,4
+66646375,24719063,4
+2139321,24719063,5
+quchentao,24719063,2
+58277917,24719063,5
+128614952,24719063,4
+116036519,24719063,4
+58117184,24719063,5
+98566963,24719063,3
+127058988,24719063,3
+2325728,24719063,4
+35123281,24719063,4
+55842143,24719063,4
+59101445,24719063,3
+4652776,24719063,3
+67203836,24719063,5
+41397812,24719063,5
+55006462,24719063,4
+69125358,24719063,5
+4692353,24719063,3
+Y19950422,24719063,2
+2539543,24719063,5
+LOTUS_NANA,24719063,5
+54614709,24719063,3
+111792249,24719063,4
+57421635,24719063,4
+130255793,24719063,4
+49226040,24719063,4
+80554420,24719063,4
+105390195,24719063,4
+81244916,24719063,4
+51271400,24719063,3
+70917351,24719063,4
+69160676,24719063,5
+gongxukai,24719063,3
+64142096,24719063,4
+76544796,24719063,3
+131928487,24719063,5
+xiamodegema,24719063,5
+67913939,24719063,5
+48676614,24719063,4
+49060307,24719063,4
+65623054,24719063,3
+132303246,24719063,5
+49811100,24719063,5
+80325464,24719063,3
+40105202,24719063,3
+14186620,24719063,4
+48069693,24719063,4
+49255582,24719063,2
+xiaowumei,24719063,5
+70638556,24719063,5
+70638556,24719063,5
+nicolezhang,24719063,3
+4663657,24719063,4
+25982397,24719063,4
+59618340,24719063,4
+progers,24719063,3
+dahuilang15656,24719063,5
+72086305,24719063,3
+128136989,24719063,5
+zi34lang,24719063,3
+65920181,24719063,3
+61721421,24719063,5
+2040298,24719063,4
+12254266,24719063,5
+lianliying,24719063,4
+28467614,24719063,3
+58338006,24719063,4
+102435306,24719063,4
+61883535,24719063,4
+127159580,24719063,4
+136414483,24719063,4
+8582599,24719063,5
+LXH88888888,24719063,4
+84097118,24719063,3
+vnoonv,24719063,-1
+4766893,24719063,3
+49544004,24719063,3
+57497039,24719063,4
+84398440,24719063,5
+fendandan,24719063,4
+30427515,24719063,4
+huapiqiu,24719063,5
+65710892,24719063,4
+lucifer1204,24719063,3
+dukeduan,24719063,3
+lxl1990,24719063,5
+84714869,24719063,4
+tuzichuchu,24719063,3
+46471837,24719063,3
+48480563,24719063,4
+48480563,24719063,4
+39739074,24719063,3
+mivan,24719063,3
+modas,24719063,4
+41618389,24719063,4
+41438322,24719063,4
+106613599,24719063,5
+134625303,24719063,4
+129775647,24719063,3
+zyx1991313,24719063,-1
+50275832,24719063,4
+76755993,24719063,4
+89814463,24719063,4
+ly_yun811,24719063,5
+119262714,24719063,4
+74566313,24719063,3
+3444801,24719063,3
+yalice,24719063,5
+liudideard,24719063,4
+102804958,24719063,4
+weiguangyinghuo,24719063,3
+134271856,24719063,4
+130428066,24719063,5
+84403778,24719063,4
+zooooooj,24719063,3
+91906703,24719063,4
+36160342,24719063,4
+sylin,24719063,3
+33921766,24719063,4
+killfanni,24719063,3
+1061597,24719063,3
+122327681,24719063,4
+14113539,24719063,3
+47755955,24719063,4
+52762797,24719063,3
+sabina0116,24719063,4
+11189422,24719063,3
+18360610,24719063,4
+82454159,24719063,4
+3576170,24719063,5
+3576170,24719063,5
+136409582,24719063,4
+1234887,24719063,4
+joyzhai,24719063,3
+jackiex,24719063,4
+40069561,24719063,3
+57421160,24719063,4
+treesun173,24719063,3
+124442923,24719063,4
+Jira,24719063,5
+ozell,24719063,4
+42010165,24719063,2
+tracy198912,24719063,3
+53183648,24719063,4
+50700305,24719063,-1
+lindanda,24719063,4
+zhangjianpeng,24719063,4
+67560289,24719063,3
+4545349,24719063,4
+61591717,24719063,4
+61591717,24719063,4
+62118386,24719063,4
+3074747,24719063,4
+sheng1992,24719063,4
+landlines,24719063,3
+136971060,24719063,4
+4424185,24719063,3
+75804317,24719063,4
+fuyu8818,24719063,5
+ReyC,24719063,4
+26265440,24719063,4
+4259768,24719063,4
+urannus,24719063,4
+136426002,24719063,4
+2259682,24719063,4
+freiya,24719063,4
+yoyosky9035,24719063,2
+xixi9000,24719063,3
+72824963,24719063,3
+57036848,24719063,3
+1371874,24719063,3
+river950702,24719063,4
+2882324,24719063,5
+72544407,24719063,-1
+62608491,24719063,4
+smilybaby,24719063,3
+86836719,24719063,3
+129797190,24719063,4
+59303781,24719063,4
+41355340,24719063,3
+53730729,24719063,4
+xxxeleven,24719063,2
+106180686,24719063,3
+xianxiansushou,24719063,4
+juliekathy,24719063,4
+2274605,24719063,3
+136623062,24719063,4
+beany,24719063,4
+ruyi0529,24719063,3
+136333363,24719063,4
+136333363,24719063,4
+renyouy,24719063,2
+45666676,24719063,3
+karasu419,24719063,4
+81403687,24719063,4
+kidscorpio,24719063,4
+46199652,24719063,3
+jjoonnllee,24719063,5
+Xuanita,24719063,5
+1437339,24719063,4
+shuikanshuizhid,24719063,4
+65645276,24719063,4
+48444678,24719063,3
+bianyilan,24719063,4
+2223862,24719063,4
+liushengjing,24719063,4
+39829339,24719063,3
+3317762,24719063,4
+3641686,24719063,5
+135245926,24719063,3
+tzhuang,24719063,2
+79951487,24719063,4
+73997999,24719063,4
+103296929,24719063,3
+Suey_yi,24719063,4
+hyhc,24719063,3
+Amanda-Z,24719063,4
+68655104,24719063,4
+Lindsay_rabbit,24719063,2
+yoyo1113,24719063,5
+43542523,24719063,3
+4310423,24719063,5
+yue2,24719063,3
+neema,24719063,3
+simonfishing,24719063,4
+1719230,24719063,4
+pussyran,24719063,3
+45705639,24719063,3
+Colin_Wang,24719063,4
+64996012,24719063,4
+60942806,24719063,3
+50233060,24719063,5
+73735328,24719063,4
+1614027,24719063,3
+74369155,24719063,4
+marage,24719063,3
+32819124,24719063,4
+61459253,24719063,4
+Aroulin,24719063,4
+135753418,24719063,5
+40725251,24719063,4
+2582296,24719063,3
+deeplife,24719063,4
+36790444,24719063,5
+64585406,24719063,4
+69045210,24719063,-1
+56529814,24719063,4
+suikame,24719063,4
+42293953,24719063,5
+52242741,24719063,3
+60731189,24719063,5
+2187326,24719063,3
+xiaokongji,24719063,4
+134221694,24719063,5
+63021029,24719063,4
+74626772,24719063,3
+34363424,24719063,1
+55398326,24719063,3
+bonefatiao,24719063,5
+3818284,24719063,5
+68304173,24719063,1
+2493346,24719063,-1
+huaiyundemazha,24719063,3
+56823011,24719063,3
+54268266,24719063,4
+101549160,24719063,5
+seeingever,24719063,5
+dustblue,24719063,3
+20755333,24719063,4
+32914940,24719063,-1
+sucetteliu,24719063,3
+1967866,24719063,4
+54800356,24719063,5
+45573643,24719063,3
+62880402,24719063,4
+45939025,24719063,4
+136296573,24719063,4
+50925315,24719063,3
+49424919,24719063,4
+55824890,24719063,1
+63234207,24719063,3
+44022921,24719063,4
+43224902,24719063,3
+ywdtc,24719063,4
+122656795,24719063,4
+92806168,24719063,5
+louleihui,24719063,2
+18349242,24719063,3
+chouchou0707,24719063,4
+100935420,24719063,4
+90037178,24719063,4
+showflame,24719063,3
+4337367,24719063,3
+85233162,24719063,4
+2600498,24719063,-1
+SpriteCat,24719063,5
+2432955,24719063,2
+Hana..,24719063,3
+qgxiaozhan,24719063,4
+yoshizawa,24719063,4
+32566964,24719063,2
+superkarit,24719063,5
+1232602,24719063,4
+120910297,24719063,5
+ArwenZhang,24719063,4
+jingchengzhu,24719063,3
+55889819,24719063,3
+132395688,24719063,4
+yele,24719063,4
+vvvvv,24719063,5
+vvvvv,24719063,5
+119415852,24719063,4
+35864691,24719063,4
+leechambo,24719063,4
+45505109,24719063,4
+88171828,24719063,3
+18635744,24719063,3
+katerzo,24719063,4
+4415716,24719063,5
+48806335,24719063,5
+3085208,24719063,5
+zhegejiale,24719063,4
+sunyuan,24719063,4
+49359847,24719063,4
+81171116,24719063,4
+wuyanghuxi,24719063,3
+thegarbo,24719063,3
+85084961,24719063,3
+35700224,24719063,5
+115557883,24719063,3
+lingdongling,24719063,3
+lovelydaodao,24719063,5
+44071751,24719063,4
+61726072,24719063,4
+102904949,24719063,4
+4333851,24719063,4
+teste,24719063,4
+danzi0105,24719063,4
+3074051,24719063,4
+im22luo,24719063,5
+123179414,24719063,4
+vipdayu,24719063,5
+50450766,24719063,5
+rukaaa,24719063,4
+brightwsx,24719063,4
+136211430,24719063,4
+91322725,24719063,4
+61076717,24719063,4
+ohahahu,24719063,4
+1903091,24719063,4
+2823579,24719063,5
+yinmoqingsanhe,24719063,3
+70034039,24719063,4
+fenjianchen,24719063,5
+nevoisbug,24719063,-1
+131858556,24719063,3
+82765378,24719063,5
+61086502,24719063,5
+50773904,24719063,3
+131274128,24719063,4
+2098673,24719063,4
+3592617,24719063,4
+125386476,24719063,4
+128638957,24719063,4
+46256555,24719063,4
+xiaoaifansion,24719063,3
+59285776,24719063,4
+73794264,24719063,5
+73204677,24719063,4
+64713560,24719063,4
+64713560,24719063,4
+4373936,24719063,4
+72065663,24719063,3
+121998536,24719063,5
+3925373,24719063,3
+51620794,24719063,4
+xiaonanhappy,24719063,3
+49272886,24719063,4
+2767001,24719063,4
+127073783,24719063,4
+134864362,24719063,4
+2444103,24719063,4
+51277491,24719063,3
+alexda1da2da3,24719063,5
+94094756,24719063,5
+cody555,24719063,4
+Heiyoo,24719063,4
+34319416,24719063,4
+45942264,24719063,4
+51603332,24719063,4
+47025279,24719063,5
+2988066,24719063,4
+96967794,24719063,4
+4042513,24719063,4
+jjcarolyn0609,24719063,4
+70955104,24719063,4
+seayo,24719063,3
+70006548,24719063,5
+hamletvsRomeo,24719063,3
+128633411,24719063,5
+136790899,24719063,4
+46483875,24719063,3
+69973045,24719063,3
+johnnybai,24719063,4
+46696192,24719063,4
+qianqian0929,24719063,4
+35652268,24719063,3
+42458136,24719063,4
+57460299,24719063,2
+134021149,24719063,5
+dengdee,24719063,4
+66767418,24719063,5
+37832420,24719063,4
+64110948,24719063,4
+122527861,24719063,3
+oscarwp,24719063,5
+2328878,24719063,5
+xxling,24719063,3
+daisyhyj,24719063,4
+50071119,24719063,5
+77797958,24719063,4
+ChongTZ,24719063,4
+gzunknow,24719063,3
+32418336,24719063,1
+77169093,24719063,4
+2778798,24719063,3
+17248017,24719063,4
+49708011,24719063,3
+29640209,24719063,5
+2842171,24719063,3
+wxxxx,24719063,3
+haiyuan1832,24719063,4
+83080407,24719063,4
+55847395,24719063,5
+47362295,24719063,5
+pigpaula,24719063,4
+maychendaxu,24719063,4
+134222368,24719063,3
+30944301,24719063,3
+38612058,24719063,4
+xfile99,24719063,4
+113999648,24719063,4
+54751676,24719063,4
+50566408,24719063,4
+126019502,24719063,5
+122887999,24719063,2
+125480958,24719063,4
+132431441,24719063,4
+76497154,24719063,5
+1252761,24719063,4
+anoukhood,24719063,4
+48521978,24719063,4
+69367982,24719063,4
+53647318,24719063,5
+49755333,24719063,3
+cassie0723,24719063,4
+chengyue888,24719063,4
+130870910,24719063,-1
+33557750,24719063,4
+cherry34525,24719063,4
+54591552,24719063,4
+127725949,24719063,4
+zeonwon,24719063,3
+64875254,24719063,4
+lilian199288,24719063,-1
+52597615,24719063,4
+32643655,24719063,4
+78214422,24719063,3
+kikoliu999,24719063,5
+fmxiaofei,24719063,4
+16928498,24719063,4
+131817058,24719063,4
+4665390,24719063,4
+1356477,24719063,4
+64780259,24719063,4
+56299828,24719063,4
+132292462,24719063,4
+1799769,24719063,3
+49145944,24719063,5
+49704397,24719063,4
+131723853,24719063,3
+45851335,24719063,3
+131927527,24719063,4
+xiaolian818,24719063,4
+130712522,24719063,4
+3353584,24719063,4
+tongxunshe,24719063,3
+124578863,24719063,5
+128756108,24719063,5
+59189424,24719063,3
+i.nightwind,24719063,5
+koji,24719063,3
+Vivian59420,24719063,5
+lhwithsummer,24719063,4
+39941847,24719063,-1
+49415798,24719063,5
+MATTZ,24719063,5
+62405259,24719063,3
+47822950,24719063,4
+53925544,24719063,4
+82670007,24719063,5
+73942250,24719063,4
+nengyinyibeiwu,24719063,4
+2185129,24719063,2
+wd,24719063,2
+2060005,24719063,3
+65542762,24719063,5
+57093116,24719063,3
+66109305,24719063,5
+PulpPaprika,24719063,3
+24387412,24719063,4
+124168888,24719063,4
+46924225,24719063,5
+52933532,24719063,4
+50376282,24719063,4
+65463298,24719063,4
+90130330,24719063,4
+handsome23,24719063,4
+127405748,24719063,4
+111743603,24719063,4
+tourstory,24719063,4
+135609693,24719063,4
+kimi-qianli,24719063,4
+22842390,24719063,3
+85484617,24719063,3
+13864397,24719063,2
+82920248,24719063,3
+35509234,24719063,4
+tottibai,24719063,3
+134042824,24719063,4
+134042824,24719063,4
+50140281,24719063,5
+66512532,24719063,5
+2804944,24719063,4
+78663925,24719063,3
+28178860,24719063,5
+mcmacadarkroom,24719063,3
+29847715,24719063,4
+Icemay,24719063,4
+61011795,24719063,4
+73245322,24719063,4
+80813290,24719063,4
+68572378,24719063,3
+49961363,24719063,4
+cheng0304,24719063,4
+64759305,24719063,4
+52998664,24719063,5
+45849213,24719063,5
+skerrysky,24719063,4
+catigloo,24719063,3
+evaxiao,24719063,4
+huhhot0471,24719063,5
+136559872,24719063,3
+fourjings,24719063,4
+85830142,24719063,3
+119597348,24719063,5
+93374803,24719063,3
+xuyudi,24719063,5
+54879429,24719063,4
+88101207,24719063,3
+yvonneye,24719063,3
+renrouqiji,24719063,4
+neverbutterfly,24719063,4
+linger37,24719063,4
+40017309,24719063,4
+50280165,24719063,4
+61124642,24719063,4
+23525886,24719063,5
+Pan.y.p,24719063,4
+128569083,24719063,4
+2845890,24719063,4
+80704682,24719063,4
+62579451,24719063,4
+zouhuzm,24719063,4
+42462023,24719063,4
+119571357,24719063,5
+warmgun7,24719063,2
+linaboxiannv,24719063,5
+88564672,24719063,3
+lovemycats,24719063,3
+58897478,24719063,2
+2411985,24719063,5
+heromoon,24719063,4
+3652866,24719063,4
+91310062,24719063,4
+59769203,24719063,5
+52482506,24719063,4
+zhllnn,24719063,2
+65213268,24719063,5
+94036052,24719063,4
+benjune,24719063,3
+CNM-Records,24719063,4
+uruk60kg,24719063,5
+115764101,24719063,4
+peggygao,24719063,3
+TheBeBe,24719063,3
+78412332,24719063,3
+78606252,24719063,4
+114115384,24719063,4
+3462245,24719063,3
+huyuwei,24719063,3
+83782943,24719063,5
+hekahuiqu,24719063,4
+103214078,24719063,3
+qweerew,24719063,5
+68427539,24719063,3
+81280181,24719063,4
+52068926,24719063,4
+74446199,24719063,4
+83646619,24719063,4
+53809848,24719063,5
+miniqiur,24719063,4
+2168023,24719063,1
+47540994,24719063,3
+ximeir,24719063,4
+54715138,24719063,3
+nnnnnng,24719063,4
+33525277,24719063,4
+holy-fishman,24719063,5
+77236741,24719063,4
+istrings,24719063,4
+sosofly,24719063,4
+124219611,24719063,4
+32364089,24719063,5
+40395158,24719063,4
+65521542,24719063,4
+59821556,24719063,4
+Sennir,24719063,4
+55771467,24719063,4
+huantian_chen,24719063,4
+49759767,24719063,4
+44418908,24719063,5
+68031714,24719063,4
+11392511,24719063,4
+bigbigflower,24719063,3
+1149126,24719063,3
+125316455,24719063,3
+124595459,24719063,4
+illness,24719063,3
+yuxilengyue,24719063,5
+dwade3,24719063,3
+1845398,24719063,4
+sinux,24719063,4
+qixian1125,24719063,4
+42625255,24719063,4
+54158519,24719063,4
+wandertree,24719063,-1
+momo315,24719063,4
+yexuanyulinxi,24719063,4
+38721043,24719063,3
+18088237,24719063,3
+39708814,24719063,3
+47786256,24719063,4
+59319711,24719063,4
+5691697,24719063,3
+45222640,24719063,4
+47257885,24719063,5
+wnhello,24719063,4
+49587231,24719063,5
+42775906,24719063,4
+131415979,24719063,3
+Achal,24719063,4
+71814035,24719063,1
+75048470,24719063,4
+40260436,24719063,4
+44923935,24719063,5
+84609158,24719063,3
+cgy,24719063,2
+78533472,24719063,4
+2920850,24719063,4
+79578875,24719063,4
+choulaoya,24719063,5
+57252669,24719063,-1
+pal1,24719063,4
+3729384,24719063,4
+sissi_0110,24719063,4
+Jessica.clr,24719063,4
+131332142,24719063,5
+81660493,24719063,4
+34940844,24719063,3
+133867857,24719063,4
+gegewu92,24719063,3
+83133145,24719063,4
+103200464,24719063,3
+108693709,24719063,3
+50434812,24719063,4
+95442218,24719063,4
+kinkin77,24719063,4
+128490640,24719063,3
+101785625,24719063,5
+Jessicalulu,24719063,4
+ricechow,24719063,4
+co_cobalt,24719063,4
+1565154,24719063,4
+kangkangarea,24719063,5
+47516992,24719063,4
+4200895,24719063,4
+67838185,24719063,5
+Riverwatcher,24719063,3
+49043955,24719063,4
+vane918,24719063,4
+40916103,24719063,4
+bongar,24719063,5
+4440939,24719063,4
+manyfish313,24719063,4
+77810726,24719063,5
+yudaoni,24719063,4
+84010010,24719063,4
+62540914,24719063,-1
+xiaobaimiao,24719063,4
+117829098,24719063,2
+wch2020,24719063,3
+jacy_huihui,24719063,4
+clean12,24719063,3
+47548599,24719063,3
+63228539,24719063,4
+56328565,24719063,5
+38853044,24719063,3
+46799195,24719063,3
+63869962,24719063,3
+124033331,24719063,2
+yzy16,24719063,5
+47297505,24719063,5
+78579005,24719063,4
+57859622,24719063,3
+42042005,24719063,4
+sycsmr,24719063,4
+kelvin7mj,24719063,2
+51398742,24719063,3
+133350413,24719063,4
+4918742,24719063,4
+135758634,24719063,4
+8701005,24719063,5
+71154050,24719063,4
+33733475,24719063,3
+135372685,24719063,4
+57135077,24719063,4
+ztl-poppy,24719063,3
+51467979,24719063,4
+136086652,24719063,3
+70214079,24719063,3
+1956921,24719063,2
+91842843,24719063,5
+84938785,24719063,5
+London1,24719063,4
+1427373,24719063,3
+47835770,24719063,4
+zzyzeal,24719063,4
+46230886,24719063,4
+34160744,24719063,4
+loturis,24719063,4
+94131682,24719063,4
+lilyhmmm,24719063,5
+zhengkangkang,24719063,5
+cvarts,24719063,4
+63454756,24719063,3
+baijixing,24719063,4
+79237255,24719063,3
+85147074,24719063,-1
+2428631,24719063,4
+stolee,24719063,2
+77771274,24719063,5
+52473311,24719063,3
+75366336,24719063,5
+49430199,24719063,5
+Lichao1230,24719063,2
+50436342,24719063,4
+49852947,24719063,5
+57803183,24719063,4
+dorothyzhang,24719063,5
+56474762,24719063,4
+136810733,24719063,4
+64886289,24719063,4
+jiyuanwang,24719063,4
+63583166,24719063,4
+48218453,24719063,4
+lovedtomma,24719063,3
+91912832,24719063,4
+smileuna,24719063,4
+133801601,24719063,3
+40209595,24719063,3
+53800815,24719063,4
+83853096,24719063,4
+onless,24719063,-1
+64852339,24719063,3
+46989842,24719063,3
+56111292,24719063,4
+33750138,24719063,-1
+52718701,24719063,5
+holmes520,24719063,5
+holmes520,24719063,5
+46572945,24719063,5
+81034512,24719063,-1
+60320238,24719063,4
+92324736,24719063,4
+saintxi,24719063,3
+xiongkaihang,24719063,3
+flowermoon,24719063,4
+christear,24719063,4
+58935563,24719063,4
+66140949,24719063,3
+grace-z,24719063,3
+89774510,24719063,4
+1364278,24719063,4
+46165667,24719063,4
+69608520,24719063,3
+sarabilau2,24719063,3
+Zenodotus,24719063,3
+99093340,24719063,4
+56684170,24719063,5
+allenyao,24719063,3
+71427603,24719063,4
+58411324,24719063,4
+49137557,24719063,-1
+2348623,24719063,-1
+vivianya,24719063,4
+49917861,24719063,4
+58517499,24719063,5
+52726404,24719063,4
+2416197,24719063,5
+58539257,24719063,3
+1865714,24719063,4
+3549577,24719063,4
+66916695,24719063,4
+vivian_yuzhou,24719063,5
+36594932,24719063,-1
+68855550,24719063,4
+123554879,24719063,5
+60091498,24719063,4
+51729072,24719063,5
+82038252,24719063,4
+42842033,24719063,3
+3633901,24719063,5
+piaoyull,24719063,3
+42625939,24719063,4
+2219533,24719063,4
+jinjidexiong,24719063,4
+62637324,24719063,5
+78478366,24719063,5
+49579153,24719063,1
+60588154,24719063,3
+daoguangzi,24719063,3
+laycher,24719063,4
+41717444,24719063,4
+73864051,24719063,4
+zzhh33,24719063,4
+136704550,24719063,4
+71298888,24719063,4
+136416982,24719063,5
+43076738,24719063,4
+56442229,24719063,3
+LimeBlast,24719063,4
+72832633,24719063,5
+61257668,24719063,4
+melody0512,24719063,4
+yipiandanxin,24719063,3
+51855205,24719063,4
+130083039,24719063,3
+3864518,24719063,4
+136116502,24719063,4
+41680643,24719063,4
+Scarlett--YJ,24719063,4
+51737601,24719063,4
+104167946,24719063,4
+47810404,24719063,4
+48487179,24719063,5
+linfeng365,24719063,-1
+133415917,24719063,4
+problemchildren,24719063,4
+casablanca0912,24719063,3
+81521718,24719063,4
+31015846,24719063,3
+Cesart,24719063,4
+63111176,24719063,4
+75801477,24719063,-1
+75117298,24719063,4
+73082469,24719063,3
+62079405,24719063,4
+61315672,24719063,3
+2347495,24719063,3
+75117514,24719063,5
+sharkbaby,24719063,-1
+eleutherak,24719063,4
+4280909,24719063,5
+84978476,24719063,3
+128469063,24719063,4
+49662983,24719063,4
+67806825,24719063,5
+lotty_liu,24719063,3
+60153184,24719063,4
+my0709,24719063,4
+52125341,24719063,4
+63899300,24719063,4
+cicely521,24719063,3
+xiaojiongxia,24719063,4
+92943855,24719063,3
+58759874,24719063,3
+56880922,24719063,5
+wu-x,24719063,4
+72133543,24719063,5
+134732771,24719063,4
+onedo,24719063,3
+hilca,24719063,4
+4210513,24719063,3
+62779631,24719063,4
+63046201,24719063,3
+rabbityinyin,24719063,3
+67865489,24719063,5
+51054900,24719063,5
+fantasychang,24719063,3
+fantasychang,24719063,3
+47817980,24719063,4
+48079918,24719063,4
+zpavel,24719063,4
+46228199,24719063,3
+stier,24719063,4
+Fil-girl,24719063,4
+50642846,24719063,5
+47655212,24719063,3
+1225334,24719063,5
+23675714,24719063,5
+120556914,24719063,3
+45569084,24719063,4
+48066975,24719063,4
+saiwei,24719063,4
+59103499,24719063,5
+51503621,24719063,2
+25668103,24719063,5
+43393007,24719063,3
+58571162,24719063,4
+41575796,24719063,3
+51975015,24719063,3
+65441937,24719063,4
+46282005,24719063,3
+122143741,24719063,5
+2573030,24719063,5
+NiCe.,24719063,4
+fangmuchen1314,24719063,5
+yanqian,24719063,4
+135383983,24719063,4
+78608814,24719063,4
+4531236,24719063,5
+32711539,24719063,4
+naninani,24719063,3
+123431440,24719063,5
+sheldonkao,24719063,4
+120048792,24719063,4
+45553945,24719063,4
+121669763,24719063,4
+51227416,24719063,3
+120466803,24719063,3
+rlc,24719063,2
+snoweather,24719063,3
+Cllindaoud,24719063,3
+95688195,24719063,4
+leiweiyu,24719063,4
+70255132,24719063,4
+viva.wj,24719063,3
+126186349,24719063,5
+wodeshudong,24719063,4
+4733255,24719063,2
+a13221807,24719063,3
+hhhhhhn,24719063,5
+56161116,24719063,3
+77646030,24719063,2
+dickluo,24719063,4
+49116416,24719063,4
+2672889,24719063,3
+50469035,24719063,4
+47681702,24719063,5
+85366817,24719063,5
+cabrite,24719063,5
+35339315,24719063,4
+3478731,24719063,3
+76327951,24719063,4
+txjbb,24719063,5
+carinawang,24719063,4
+60256766,24719063,4
+52829342,24719063,4
+48503456,24719063,3
+51824277,24719063,5
+51424042,24719063,3
+SilentLookYou,24719063,-1
+75815111,24719063,3
+ibstone,24719063,4
+57382119,24719063,4
+68434505,24719063,1
+39957868,24719063,3
+62732851,24719063,3
+71946766,24719063,4
+bhbst,24719063,4
+abby987,24719063,4
+48773692,24719063,4
+64297755,24719063,4
+7876056,24719063,4
+1371348,24719063,3
+hanyoyo2000,24719063,3
+tanserliu,24719063,3
+57053750,24719063,5
+sheyinghui,24719063,4
+49407963,24719063,3
+64902546,24719063,3
+82687429,24719063,3
+mancy105,24719063,4
+cherrytiaotiao,24719063,4
+64153022,24719063,4
+76198157,24719063,5
+103385070,24719063,4
+37662798,24719063,5
+58878500,24719063,-1
+62682574,24719063,5
+floraalma,24719063,4
+48919879,24719063,4
+rainbowBB,24719063,4
+3978591,24719063,-1
+89740637,24719063,4
+2264023,24719063,2
+74971861,24719063,2
+zhanglvlv,24719063,4
+131887197,24719063,5
+62053077,24719063,3
+59302218,24719063,3
+56655274,24719063,4
+65982936,24719063,3
+80382193,24719063,4
+guoxiaobei,24719063,4
+17550801,24719063,5
+bqtlq,24719063,4
+65341751,24719063,4
+60822788,24719063,4
+clin0523,24719063,3
+yb7116163,24719063,4
+61134223,24719063,5
+35408803,24719063,2
+17908241,24719063,4
+48050378,24719063,5
+58930883,24719063,2
+2165076,24719063,4
+127606527,24719063,4
+52668487,24719063,4
+Gmosquito,24719063,4
+121936659,24719063,3
+91882469,24719063,4
+36045746,24719063,4
+57001880,24719063,2
+57978267,24719063,3
+dovm,24719063,5
+1177237,24719063,4
+54967455,24719063,4
+59464689,24719063,1
+74033673,24719063,3
+72676164,24719063,2
+49961224,24719063,2
+leoloe,24719063,4
+31640275,24719063,4
+75742528,24719063,3
+47722518,24719063,4
+78490842,24719063,3
+maxmartin,24719063,5
+60012036,24719063,4
+milkbook,24719063,4
+66053525,24719063,4
+xygoing,24719063,4
+onlyfey,24719063,3
+95910591,24719063,4
+snowwjq,24719063,4
+76028703,24719063,4
+62691310,24719063,5
+34416443,24719063,-1
+3540441,24719063,4
+102530220,24719063,4
+dengxuanhai,24719063,4
+yileng,24719063,3
+54334991,24719063,2
+132067724,24719063,4
+75984184,24719063,1
+78065496,24719063,4
+50010079,24719063,3
+3829662,24719063,3
+serendipity23,24719063,4
+78453730,24719063,4
+48013862,24719063,4
+66624462,24719063,5
+2192099,24719063,3
+4668252,24719063,4
+1724013,24719063,3
+aideu,24719063,5
+3771475,24719063,5
+135213457,24719063,5
+DonMikeCorleone,24719063,4
+132951000,24719063,4
+134079617,24719063,3
+70506259,24719063,4
+39285669,24719063,1
+wanfangyinanzi,24719063,5
+92426186,24719063,5
+119182928,24719063,3
+71223601,24719063,4
+47754235,24719063,4
+43833654,24719063,4
+92934548,24719063,3
+libaosheng,24719063,4
+92177885,24719063,4
+currant,24719063,4
+72100627,24719063,3
+cuplzsh,24719063,4
+40077891,24719063,4
+liujunhe123,24719063,2
+2310583,24719063,4
+42842983,24719063,4
+115560708,24719063,5
+59442640,24719063,4
+32853386,24719063,4
+46038064,24719063,3
+gluecoco,24719063,3
+kamao,24719063,3
+75318000,24719063,4
+iwolfer,24719063,4
+56398939,24719063,3
+79862222,24719063,4
+136298735,24719063,4
+59066202,24719063,4
+yakootao,24719063,3
+1552243,24719063,4
+t25,24719063,5
+36060435,24719063,3
+48050176,24719063,5
+136160725,24719063,4
+80186039,24719063,2
+3642488,24719063,5
+69228709,24719063,4
+xingxin6,24719063,4
+59716189,24719063,4
+89726078,24719063,5
+80425280,24719063,4
+92544403,24719063,4
+127175264,24719063,5
+KampuiAugust,24719063,4
+echochoco,24719063,-1
+1076084,24719063,4
+44939590,24719063,4
+110565024,24719063,3
+t-chen,24719063,5
+3253571,24719063,3
+40931837,24719063,5
+120683474,24719063,3
+moyezi,24719063,4
+65187145,24719063,3
+2402223,24719063,4
+strikeman,24719063,4
+MrsCC,24719063,4
+135084358,24719063,5
+60336002,24719063,2
+61866321,24719063,3
+75249451,24719063,1
+arlmy,24719063,3
+58618853,24719063,5
+81592044,24719063,4
+50875593,24719063,3
+shesanjin,24719063,4
+60045233,24719063,4
+133572111,24719063,5
+ttnspike,24719063,4
+36694478,24719063,4
+1361476,24719063,2
+xuhongruc,24719063,3
+roaring90h,24719063,4
+83184870,24719063,4
+38103612,24719063,4
+58231376,24719063,4
+101393970,24719063,4
+126831375,24719063,4
+55391513,24719063,4
+49232664,24719063,5
+71741571,24719063,-1
+107868458,24719063,3
+60631421,24719063,3
+2571976,24719063,3
+53806077,24719063,-1
+119945985,24719063,1
+sezhu,24719063,3
+47011953,24719063,5
+87558213,24719063,5
+shaoqiongyu,24719063,4
+4458279,24719063,5
+80980884,24719063,4
+103048113,24719063,4
+62843919,24719063,5
+121305318,24719063,4
+cloudy20011128,24719063,3
+Boomer,24719063,4
+cleonrui,24719063,4
+108289478,24719063,4
+46493353,24719063,5
+59394881,24719063,4
+1406185,24719063,4
+xweiway,24719063,5
+Nickhsu,24719063,4
+73189680,24719063,4
+againpro,24719063,4
+3109810,24719063,5
+lewuleyi,24719063,4
+yangyihu,24719063,1
+48866416,24719063,4
+wenbao,24719063,4
+94392595,24719063,4
+chinabeta,24719063,3
+58809404,24719063,4
+buuwp,24719063,3
+50136327,24719063,5
+47504578,24719063,4
+120852248,24719063,4
+leeadventure,24719063,4
+102539673,24719063,3
+sentimento-rose,24719063,3
+maomao19901108,24719063,4
+135303482,24719063,3
+3372957,24719063,2
+CHEN-JC,24719063,4
+77017255,24719063,3
+godsvivien,24719063,5
+4521703,24719063,4
+96797723,24719063,3
+136593943,24719063,4
+jiraiyafugui,24719063,5
+marlene0932,24719063,3
+42919587,24719063,4
+44600004,24719063,3
+Lerry_li,24719063,5
+evich,24719063,2
+ymydq,24719063,4
+46355021,24719063,5
+4491930,24719063,2
+27381491,24719063,4
+55334195,24719063,5
+aawenping,24719063,5
+47545321,24719063,3
+62879944,24719063,3
+43005070,24719063,3
+61394698,24719063,5
+BakerHong,24719063,5
+130411286,24719063,5
+74633693,24719063,3
+82564566,24719063,3
+89450129,24719063,4
+4594994,24719063,4
+36666356,24719063,4
+yinhun,24719063,3
+3400210,24719063,3
+hosoro,24719063,4
+67456366,24719063,3
+83495567,24719063,5
+54688126,24719063,3
+1231209,24719063,5
+73901440,24719063,4
+131675347,24719063,3
+panfangjie,24719063,4
+14068242,24719063,3
+87590624,24719063,4
+Smooth0727,24719063,4
+133572043,24719063,5
+63559969,24719063,3
+4358473,24719063,4
+48688717,24719063,5
+yosemite_g,24719063,3
+nokia13792,24719063,4
+68669440,24719063,4
+q258523454,24719063,5
+36103097,24719063,3
+ruocun123,24719063,4
+ruocun123,24719063,4
+42984901,24719063,4
+HERO-S,24719063,4
+Heredith,24719063,5
+time-rain,24719063,4
+1658796,24719063,4
+adidas_Original,24719063,5
+59378291,24719063,3
+38924619,24719063,3
+39849703,24719063,5
+4359024,24719063,4
+99506529,24719063,4
+ninilovekaikai,24719063,4
+rainycats,24719063,5
+springfantasy,24719063,3
+62153097,24719063,4
+83769444,24719063,3
+HON_XSXS,24719063,4
+58308697,24719063,5
+45772291,24719063,5
+1450381,24719063,3
+75961277,24719063,4
+shanjin,24719063,4
+sun_corydalis,24719063,5
+71648483,24719063,5
+yingsuisiyuan,24719063,5
+yllovefish,24719063,5
+85213165,24719063,5
+leoshurls,24719063,4
+57577352,24719063,4
+yanqingchen,24719063,4
+84548265,24719063,5
+52048699,24719063,3
+115956642,24719063,4
+H-tea,24719063,-1
+134171030,24719063,4
+39947856,24719063,4
+liujinlin,24719063,4
+80755814,24719063,5
+joy1004,24719063,5
+16313678,24719063,4
+67426132,24719063,3
+52113303,24719063,3
+127148800,24719063,3
+51706956,24719063,4
+61245435,24719063,4
+96062684,24719063,4
+4839057,24719063,4
+2824450,24719063,5
+54653189,24719063,4
+56453885,24719063,4
+A-SU,24719063,5
+76302090,24719063,4
+weakness,24719063,3
+60185409,24719063,3
+aguanwansui,24719063,5
+78786637,24719063,4
+52025578,24719063,3
+53259297,24719063,4
+136098274,24719063,4
+59065986,24719063,3
+135534814,24719063,1
+bhg,24719063,4
+tim_tong,24719063,4
+ilovefashion,24719063,4
+62930321,24719063,3
+tangstar27,24719063,3
+z30473,24719063,4
+bluerider,24719063,3
+54804536,24719063,4
+anison,24719063,3
+128681923,24719063,5
+litsunny,24719063,3
+40138524,24719063,4
+69068097,24719063,4
+70469575,24719063,4
+1981762,24719063,2
+yangjing113,24719063,4
+52284498,24719063,5
+55986543,24719063,4
+63095941,24719063,5
+mda05057,24719063,4
+48227582,24719063,4
+45620399,24719063,4
+lightwings,24719063,3
+madbilly,24719063,4
+unclearly,24719063,3
+xiarujin,24719063,4
+62662196,24719063,5
+43487474,24719063,3
+2632979,24719063,5
+60870751,24719063,1
+4889336,24719063,4
+2746761,24719063,3
+4643817,24719063,3
+4577694,24719063,3
+lingqingchun,24719063,-1
+chuyichuyi,24719063,3
+114732646,24719063,5
+84102179,24719063,4
+57774434,24719063,4
+80792973,24719063,4
+122394659,24719063,5
+sunliangyousu,24719063,3
+2613946,24719063,5
+39940874,24719063,4
+xyy_1214,24719063,4
+3307804,24719063,-1
+1544106,24719063,4
+62318695,24719063,5
+56260072,24719063,3
+66771297,24719063,4
+huangjiaju8,24719063,5
+kh-xxxa,24719063,4
+MiaoKK,24719063,5
+48840179,24719063,4
+aixiaoni,24719063,4
+37424688,24719063,4
+136083805,24719063,4
+youmuyishu,24719063,4
+53931687,24719063,4
+62678652,24719063,5
+93661374,24719063,3
+108942456,24719063,3
+103059848,24719063,-1
+54244820,24719063,3
+47063754,24719063,4
+55001545,24719063,-1
+distance_scar,24719063,5
+3177593,24719063,4
+45925638,24719063,-1
+91809497,24719063,4
+jasoncx,24719063,4
+54045751,24719063,3
+50624143,24719063,3
+60406508,24719063,3
+66459035,24719063,4
+136639292,24719063,5
+52694584,24719063,3
+73474090,24719063,2
+xu779147197,24719063,5
+131490671,24719063,2
+70173493,24719063,3
+89313005,24719063,3
+56966752,24719063,4
+69259241,24719063,5
+53531270,24719063,4
+Scorpio_lxs,24719063,4
+49122043,24719063,4
+73719753,24719063,4
+30189268,24719063,4
+67826155,24719063,4
+90693032,24719063,4
+85296243,24719063,4
+80193020,24719063,4
+53871555,24719063,4
+70927104,24719063,5
+2180956,24719063,2
+18984732,24719063,4
+70238336,24719063,4
+jinyucf,24719063,4
+48709528,24719063,5
+70614930,24719063,4
+113982394,24719063,3
+tony07monkey,24719063,4
+33973051,24719063,2
+60908758,24719063,4
+63894811,24719063,4
+53768301,24719063,4
+2706565,24719063,5
+2394527,24719063,3
+nianyanian,24719063,4
+ChrisNoth,24719063,5
+40994633,24719063,4
+little_wonton,24719063,3
+128130996,24719063,2
+73059881,24719063,4
+65387296,24719063,3
+63547117,24719063,5
+3510327,24719063,4
+68696664,24719063,4
+49117698,24719063,4
+quantamagun,24719063,3
+4680837,24719063,3
+3218568,24719063,4
+2199140,24719063,3
+wowo1314,24719063,4
+58433027,24719063,4
+12410068,24719063,3
+tata1030,24719063,4
+111461811,24719063,5
+SoCrazyNemo,24719063,4
+movieview,24719063,4
+65445656,24719063,4
+Pengjianjun,24719063,4
+liliumgloria,24719063,4
+56988998,24719063,3
+135112639,24719063,4
+34976631,24719063,3
+48121857,24719063,5
+121059369,24719063,3
+48051364,24719063,3
+41990185,24719063,3
+Leeyoung113,24719063,4
+48784167,24719063,4
+62847748,24719063,4
+74145867,24719063,4
+46781917,24719063,-1
+bigeast,24719063,5
+mingyaback,24719063,4
+wxf19951218,24719063,3
+36739027,24719063,5
+3912964,24719063,5
+fun_fine,24719063,4
+2642171,24719063,3
+41892056,24719063,3
+lelexiaomifeng,24719063,5
+skysunny,24719063,4
+10227322,24719063,4
+lotusblues,24719063,3
+53999875,24719063,2
+40312304,24719063,1
+YuSu,24719063,4
+77193110,24719063,3
+124824745,24719063,5
+87834837,24719063,5
+miong,24719063,5
+3039896,24719063,4
+misswho,24719063,3
+2756953,24719063,4
+13631484,24719063,3
+79590572,24719063,-1
+52710825,24719063,4
+crystal..,24719063,4
+55632719,24719063,4
+53227132,24719063,3
+zhouxiaoou,24719063,3
+york_wu,24719063,3
+65646732,24719063,5
+27313573,24719063,4
+27313573,24719063,4
+103421398,24719063,4
+101866753,24719063,5
+piglin,24719063,3
+120567507,24719063,4
+55593779,24719063,3
+60981662,24719063,5
+2691573,24719063,4
+abaobao,24719063,4
+2756490,24719063,3
+cometlulu,24719063,4
+133869109,24719063,3
+isabellagala,24719063,3
+133433272,24719063,5
+79235702,24719063,5
+hichai,24719063,4
+3776727,24719063,4
+120281173,24719063,5
+74489787,24719063,5
+johnqz874,24719063,4
+grannys_bear,24719063,4
+4313043,24719063,5
+47281283,24719063,4
+14327084,24719063,5
+luna17sea,24719063,3
+57089559,24719063,4
+57800427,24719063,4
+80161824,24719063,4
+79522404,24719063,4
+ruiye,24719063,3
+58376944,24719063,5
+52350371,24719063,4
+49431496,24719063,2
+33135780,24719063,2
+31891397,24719063,3
+thethirteenth,24719063,-1
+120606552,24719063,3
+qimiao0423,24719063,5
+fpe99,24719063,5
+81351219,24719063,2
+66461922,24719063,5
+feature-Z,24719063,4
+Gomo,24719063,4
+holy_ml,24719063,3
+53353034,24719063,4
+130888340,24719063,4
+134417369,24719063,4
+92320890,24719063,4
+chenyj,24719063,5
+beefeaters,24719063,2
+59699452,24719063,5
+55973777,24719063,5
+35902122,24719063,5
+xiejinni,24719063,5
+ooo123teddy,24719063,4
+55389424,24719063,4
+kong_bai_ge,24719063,4
+93312428,24719063,5
+104003599,24719063,5
+67294195,24719063,4
+61331002,24719063,5
+89736340,24719063,4
+68235486,24719063,4
+sirui54,24719063,4
+70329254,24719063,4
+66802525,24719063,2
+104601424,24719063,4
+zhangyangan,24719063,3
+hetaodeyanjing,24719063,4
+115035212,24719063,4
+66427798,24719063,5
+xiaowa77,24719063,5
+120162458,24719063,5
+63075072,24719063,5
+YiShine,24719063,3
+1392150,24719063,4
+67880800,24719063,3
+122785791,24719063,4
+Injurer,24719063,4
+Smile...,24719063,4
+65085646,24719063,3
+66340559,24719063,-1
+shenmyu,24719063,-1
+xieyuhan1988,24719063,2
+60701551,24719063,4
+kangmeng,24719063,4
+47926562,24719063,4
+35170622,24719063,3
+68510883,24719063,5
+62995680,24719063,3
+4010095,24719063,3
+sisyphos,24719063,4
+planoto,24719063,3
+130202740,24719063,1
+63959089,24719063,3
+33942554,24719063,4
+3361386,24719063,5
+78777412,24719063,3
+ymwtime,24719063,5
+50195547,24719063,4
+45713039,24719063,-1
+126804729,24719063,3
+51945032,24719063,5
+65580896,24719063,4
+47280064,24719063,4
+50075764,24719063,5
+13298593,24719063,4
+67618142,24719063,5
+50888167,24719063,4
+laneddy,24719063,3
+godismyye,24719063,4
+shanghao,24719063,4
+78891799,24719063,4
+133525615,24719063,5
+84003177,24719063,4
+49830114,24719063,3
+71861591,24719063,5
+suffering0,24719063,3
+136757933,24719063,5
+elric07,24719063,5
+63223538,24719063,3
+48236624,24719063,4
+131168132,24719063,3
+55013431,24719063,4
+120561433,24719063,4
+41482074,24719063,5
+115714696,24719063,5
+hdjjys,24719063,4
+114739622,24719063,4
+2039097,24719063,4
+44105688,24719063,4
+88738198,24719063,4
+44311860,24719063,4
+41240808,24719063,2
+52524178,24719063,4
+lonelyalex,24719063,4
+4528311,24719063,3
+68737646,24719063,4
+78183847,24719063,3
+57719173,24719063,3
+67220133,24719063,4
+Elvis-lx3,24719063,4
+Rebecca_618,24719063,3
+78681976,24719063,4
+xiexian,24719063,4
+61409715,24719063,4
+47321536,24719063,4
+3658021,24719063,3
+guitarain,24719063,5
+62945273,24719063,3
+70202233,24719063,3
+121780577,24719063,4
+108496496,24719063,3
+62635497,24719063,3
+fangyuan1mi,24719063,4
+107347652,24719063,1
+88032160,24719063,5
+2254252,24719063,-1
+66714330,24719063,3
+68578532,24719063,5
+70267831,24719063,3
+135312054,24719063,4
+3006385,24719063,2
+19509960,24719063,3
+jiao2er,24719063,4
+asherhoa,24719063,5
+84745831,24719063,4
+Awezhang,24719063,4
+6532656,24719063,5
+46694928,24719063,4
+12794807,24719063,3
+65948183,24719063,4
+73569982,24719063,5
+53392734,24719063,3
+rkyy,24719063,2
+34229072,24719063,3
+veiko,24719063,4
+60655621,24719063,4
+dxf,24719063,5
+cocacolacat,24719063,3
+barcelonazhou,24719063,4
+135030304,24719063,4
+99153431,24719063,5
+97207961,24719063,4
+45220705,24719063,3
+14408023,24719063,5
+10200994,24719063,5
+78160357,24719063,4
+80922094,24719063,3
+kelvinshaw,24719063,3
+RICYCAT,24719063,4
+126325087,24719063,5
+87603533,24719063,4
+1806463,24719063,3
+53854833,24719063,2
+GGFFYY,24719063,4
+whosKady,24719063,4
+32383822,24719063,4
+135076039,24719063,3
+13294183,24719063,4
+51854429,24719063,3
+53171772,24719063,4
+2114161,24719063,5
+63095918,24719063,5
+67216908,24719063,3
+2033498,24719063,5
+66572980,24719063,3
+yuanchao-op,24719063,4
+cathyyzn,24719063,3
+126948377,24719063,5
+4044892,24719063,3
+124860547,24719063,4
+yan599083337,24719063,3
+copkop,24719063,3
+58142666,24719063,4
+48854859,24719063,4
+54495452,24719063,3
+54813786,24719063,5
+4258941,24719063,5
+JaceJing,24719063,4
+IFreever,24719063,2
+53523221,24719063,5
+64543096,24719063,4
+kikilili006,24719063,5
+57894256,24719063,-1
+70529268,24719063,3
+jersey0821,24719063,5
+90017409,24719063,4
+mifangs,24719063,4
+elaineishere,24719063,4
+55590894,24719063,4
+121916425,24719063,4
+114441069,24719063,5
+1457047,24719063,4
+69074270,24719063,2
+80466104,24719063,5
+73430704,24719063,4
+85155782,24719063,3
+77244535,24719063,5
+79693169,24719063,4
+79693169,24719063,4
+43137121,24719063,3
+89157921,24719063,3
+74499406,24719063,4
+53464389,24719063,4
+66461284,24719063,3
+59808282,24719063,4
+135843569,24719063,5
+weihao,24719063,-1
+1282175,24719063,3
+123746304,24719063,3
+103421695,24719063,4
+84610883,24719063,5
+135626481,24719063,5
+33329676,24719063,3
+51206699,24719063,4
+49827359,24719063,3
+2196209,24719063,5
+octopusjs96,24719063,5
+63635904,24719063,4
+2137558,24719063,3
+102164266,24719063,4
+34532073,24719063,3
+51003719,24719063,5
+63246686,24719063,3
+47866421,24719063,4
+1678258,24719063,4
+59022581,24719063,5
+47557018,24719063,5
+bangeren,24719063,3
+53836712,24719063,4
+85621966,24719063,4
+15019258,24719063,3
+xiaohuai533,24719063,3
+59104815,24719063,3
+41083928,24719063,5
+narrowjiu,24719063,4
+38850701,24719063,4
+Congy1,24719063,2
+36977643,24719063,4
+67346668,24719063,3
+20657820,24719063,4
+129505686,24719063,4
+59253640,24719063,4
+88172383,24719063,3
+69615810,24719063,5
+topxpp,24719063,5
+89817350,24719063,2
+shutu,24719063,4
+45651390,24719063,5
+lxu,24719063,4
+124618760,24719063,3
+66934382,24719063,4
+104658411,24719063,3
+lxp,24719063,4
+81418362,24719063,3
+44992130,24719063,3
+44691353,24719063,3
+98625316,24719063,3
+55461172,24719063,4
+3833988,24719063,3
+linshang,24719063,5
+121916264,24719063,4
+vicliia,24719063,4
+Deanlover,24719063,3
+48475256,24719063,4
+38184816,24719063,5
+shaoniana,24719063,4
+49673011,24719063,4
+8938679,24719063,4
+102957224,24719063,4
+57051908,24719063,4
+62482710,24719063,5
+Cindylam,24719063,3
+133245536,24719063,5
+43713017,24719063,4
+1773126,24719063,4
+luckyliu,24719063,5
+42421580,24719063,5
+17337630,24719063,3
+130848820,24719063,3
+62875538,24719063,3
+53505227,24719063,3
+51920001,24719063,5
+saintcyr,24719063,3
+4531748,24719063,4
+77066439,24719063,4
+59850053,24719063,4
+51496284,24719063,-1
+4218644,24719063,4
+petulance,24719063,3
+56421312,24719063,-1
+28312683,24719063,4
+kamiyamaki,24719063,4
+46970893,24719063,4
+x-inter,24719063,4
+4676222,24719063,4
+34841595,24719063,4
+rex33cc,24719063,4
+136738123,24719063,-1
+136738123,24719063,-1
+136454222,24719063,3
+imqxq,24719063,-1
+57616259,24719063,2
+96042007,24719063,-1
+lynnleelol,24719063,4
+ILY_XX,24719063,3
+67125371,24719063,4
+qq469463678,24719063,5
+105565428,24719063,1
+25282878,24719063,3
+59760298,24719063,5
+fxoc,24719063,3
+1369129,24719063,4
+41351821,24719063,4
+madridzp007,24719063,3
+136736172,24719063,3
+135243629,24719063,4
+chenxiaoyue,24719063,3
+46545185,24719063,5
+61486728,24719063,2
+agybritp,24719063,4
+60932260,24719063,-1
+ffx1201,24719063,-1
+Rondsny,24719063,4
+56822797,24719063,5
+3845576,24719063,3
+49631776,24719063,4
+janice_wong,24719063,5
+49441067,24719063,4
+3605626,24719063,4
+27969524,24719063,3
+68616795,24719063,4
+3992351,24719063,4
+linaria,24719063,4
+44286990,24719063,3
+wangmengyao520,24719063,5
+procxu,24719063,4
+darkness211,24719063,3
+100452734,24719063,5
+67353177,24719063,4
+1028676,24719063,4
+db924519251,24719063,3
+pepperannn,24719063,3
+53199032,24719063,4
+yurenxiaofeng,24719063,3
+ttsc,24719063,3
+85391551,24719063,4
+memg,24719063,5
+asvra,24719063,3
+bbzbilly,24719063,4
+61067810,24719063,5
+60028860,24719063,4
+losiuhong,24719063,4
+douyoukh,24719063,4
+4284029,24719063,5
+47974911,24719063,4
+42139869,24719063,4
+1383301,24719063,4
+131465314,24719063,3
+56685137,24719063,4
+70392138,24719063,4
+57210088,24719063,3
+4487001,24719063,4
+63721073,24719063,-1
+suluofanxiang,24719063,5
+3706500,24719063,4
+yaogaosheng,24719063,4
+kid1412zn,24719063,5
+fumeckplz,24719063,2
+99352636,24719063,4
+laiziming,24719063,2
+54546849,24719063,4
+81244293,24719063,4
+partybird,24719063,4
+130680494,24719063,5
+52444662,24719063,4
+101503359,24719063,5
+63458600,24719063,4
+68512611,24719063,4
+zzzlanmao,24719063,3
+89534065,24719063,4
+52247790,24719063,3
+120619243,24719063,3
+a476583825,24719063,4
+2711081,24719063,5
+61085061,24719063,5
+CatPrince,24719063,4
+12998506,24719063,4
+yinjianfa,24719063,4
+wwwwind,24719063,4
+wangdahe,24719063,4
+3160681,24719063,4
+3251456,24719063,-1
+128265644,24719063,3
+117794273,24719063,5
+xiaotu22,24719063,4
+52636646,24719063,4
+34674400,24719063,4
+135306692,24719063,5
+61622272,24719063,5
+95883773,24719063,5
+3501606,24719063,4
+35736307,24719063,5
+Bobby320415,24719063,5
+27713698,24719063,4
+34138251,24719063,5
+57886651,24719063,4
+67988925,24719063,4
+sirroy,24719063,3
+liarb,24719063,5
+50118479,24719063,5
+127345510,24719063,3
+aiyutao,24719063,4
+53596500,24719063,4
+xjksama,24719063,2
+eeiceeic,24719063,3
+blueslyrist,24719063,3
+54352343,24719063,4
+55649933,24719063,4
+78166876,24719063,3
+93595508,24719063,4
+66329092,24719063,3
+su_karen,24719063,4
+39015968,24719063,4
+73400313,24719063,5
+birenrenwei,24719063,5
+1216444,24719063,4
+windy.lin,24719063,3
+muxiansen,24719063,3
+1133720,24719063,3
+3987886,24719063,4
+milkcandy,24719063,4
+83402921,24719063,-1
+ljwcurry,24719063,3
+1400556,24719063,4
+72852558,24719063,4
+79478187,24719063,4
+poetayi,24719063,2
+2622237,24719063,5
+114353086,24719063,4
+Beta-Juliet,24719063,3
+f91_82,24719063,3
+Yelena_hyq,24719063,4
+22140861,24719063,4
+115634040,24719063,5
+3650818,24719063,4
+Fay...,24719063,4
+52098177,24719063,4
+vivachang,24719063,3
+2434887,24719063,-1
+bigsword,24719063,4
+46965877,24719063,4
+sherrychen,24719063,4
+71181579,24719063,4
+73705875,24719063,4
+evertoooo,24719063,5
+44507011,24719063,5
+41555500,24719063,4
+3668071,24719063,4
+3668071,24719063,4
+Happyprince,24719063,4
+41022109,24719063,3
+59943822,24719063,4
+49686878,24719063,4
+52267229,24719063,5
+EDawn,24719063,-1
+53793059,24719063,4
+100292598,24719063,5
+hsiaka,24719063,4
+yoonjae_,24719063,4
+xiaoshuiliuqiao,24719063,4
+48168328,24719063,3
+huahua0818,24719063,5
+4129696,24719063,3
+vvspy,24719063,3
+luocaoyaoyao,24719063,3
+75416666,24719063,3
+40511976,24719063,-1
+70588269,24719063,4
+70588269,24719063,4
+4605744,24719063,2
+114487129,24719063,3
+41304325,24719063,5
+victoriaryt,24719063,4
+58956224,24719063,3
+75752859,24719063,-1
+121679794,24719063,4
+1577735,24719063,5
+112970184,24719063,5
+42441038,24719063,5
+41541704,24719063,4
+35369841,24719063,4
+48467281,24719063,3
+58840542,24719063,4
+47302173,24719063,4
+54474146,24719063,4
+125962782,24719063,2
+lanmai,24719063,5
+2058011,24719063,3
+48694579,24719063,-1
+132324916,24719063,4
+52455925,24719063,3
+134789261,24719063,4
+61040876,24719063,4
+50570726,24719063,4
+107491078,24719063,4
+46952185,24719063,4
+55608973,24719063,4
+80759363,24719063,3
+woshzd,24719063,4
+9614176,24719063,2
+108821133,24719063,4
+57617460,24719063,3
+58897808,24719063,4
+justnijin,24719063,4
+131056660,24719063,4
+uruir,24719063,4
+Yunsta,24719063,3
+71811082,24719063,4
+79220628,24719063,3
+3082517,24719063,5
+122749528,24719063,3
+31849844,24719063,3
+52241071,24719063,3
+oooooi,24719063,5
+lilifen0720,24719063,4
+73569634,24719063,4
+46594843,24719063,4
+jewelshao,24719063,4
+1665848,24719063,4
+toonan,24719063,1
+28953793,24719063,4
+46968893,24719063,4
+51462997,24719063,3
+53601519,24719063,3
+38826920,24719063,4
+135746121,24719063,4
+68922074,24719063,4
+56486543,24719063,4
+56486543,24719063,4
+41634233,24719063,4
+53591021,24719063,-1
+57491343,24719063,5
+115125689,24719063,3
+zhangzhai,24719063,4
+44276090,24719063,3
+yoyo5411,24719063,4
+125265338,24719063,4
+58934612,24719063,3
+68846996,24719063,4
+120547538,24719063,3
+xunbao521,24719063,4
+Amecoxiang,24719063,5
+71886589,24719063,2
+113138544,24719063,2
+91126211,24719063,4
+52500313,24719063,3
+97042878,24719063,4
+fangjimo,24719063,1
+fly_to_heaven,24719063,3
+67875068,24719063,4
+1811724,24719063,3
+jhm279697317,24719063,4
+PennyZZZZZ,24719063,5
+43333979,24719063,2
+72936086,24719063,4
+47529528,24719063,4
+135813890,24719063,4
+2881598,24719063,3
+shuiyichen,24719063,4
+45591838,24719063,5
+16171023,24719063,4
+34343005,24719063,3
+86462422,24719063,4
+47230637,24719063,4
+66547518,24719063,5
+120259879,24719063,4
+2504741,24719063,3
+58133063,24719063,4
+51047226,24719063,4
+44388338,24719063,4
+64456556,24719063,4
+leeshiuan,24719063,4
+iamnotshaobing,24719063,3
+1921806,24719063,3
+56833761,24719063,5
+46183275,24719063,4
+54261125,24719063,5
+wantu,24719063,5
+76025477,24719063,3
+119559372,24719063,4
+81645668,24719063,3
+we_are_Smug,24719063,4
+131751998,24719063,4
+90543489,24719063,4
+46936304,24719063,4
+102203140,24719063,4
+37462874,24719063,4
+71107908,24719063,4
+36232092,24719063,3
+57007520,24719063,5
+50402971,24719063,3
+110392919,24719063,4
+63411382,24719063,5
+3481297,24719063,3
+1324079,24719063,4
+48405108,24719063,3
+jacoxu,24719063,3
+60752122,24719063,4
+102413399,24719063,4
+67011607,24719063,3
+129633404,24719063,5
+48491449,24719063,3
+45996774,24719063,4
+83245766,24719063,4
+catherine007,24719063,2
+135102331,24719063,-1
+wangjingjuan,24719063,4
+stay,24719063,5
+auld.lang.syne,24719063,2
+83250000,24719063,3
+64879609,24719063,3
+91365372,24719063,3
+66710303,24719063,4
+3605330,24719063,4
+itty,24719063,4
+45833897,24719063,4
+63569379,24719063,3
+104265782,24719063,5
+xong,24719063,5
+zeroflowing,24719063,4
+Gordoncoco,24719063,4
+1844596,24719063,4
+4455176,24719063,3
+119404798,24719063,3
+ccnetcomcn,24719063,3
+48066058,24719063,2
+green911,24719063,4
+amma,24719063,3
+wdwlbsm29,24719063,4
+chinb,24719063,3
+seventhworkshop,24719063,4
+68477521,24719063,3
+100091686,24719063,3
+37463265,24719063,4
+60803592,24719063,5
+1805745,24719063,3
+60943458,24719063,4
+80010727,24719063,5
+136669389,24719063,3
+xiayu17,24719063,3
+60653503,24719063,3
+50850997,24719063,5
+2074834,24719063,3
+dyingpoet1989,24719063,3
+me2shy,24719063,3
+61309406,24719063,5
+4682542,24719063,5
+59638606,24719063,4
+59638606,24719063,4
+weizheren,24719063,4
+51410491,24719063,4
+2671857,24719063,3
+chowmo,24719063,3
+chenolivia,24719063,3
+135128946,24719063,4
+aolantuo7,24719063,3
+74883045,24719063,4
+127569899,24719063,4
+57395743,24719063,4
+wangxiaomiao,24719063,3
+yexxs,24719063,4
+Turkeyears,24719063,3
+yushuting1122,24719063,3
+48632772,24719063,3
+lulilu,24719063,5
+66057217,24719063,4
+monsterkill,24719063,4
+38441695,24719063,4
+38441695,24719063,4
+SR-Vision,24719063,3
+88422333,24719063,4
+formydream,24719063,4
+44574545,24719063,3
+47660748,24719063,-1
+4321081,24719063,3
+JTimberlake,24719063,4
+53033730,24719063,4
+goodays,24719063,4
+migo562,24719063,5
+136133318,24719063,4
+loveirina,24719063,2
+JakeNow,24719063,4
+56970230,24719063,4
+68750728,24719063,5
+52268564,24719063,4
+crazy-girl,24719063,3
+46697613,24719063,4
+104601156,24719063,3
+104601156,24719063,3
+46449745,24719063,5
+54265487,24719063,4
+91705296,24719063,4
+9095449,24719063,5
+47234097,24719063,3
+moyujushi,24719063,4
+mpor2,24719063,5
+phtto,24719063,3
+68126326,24719063,5
+112934055,24719063,4
+lidongdexinlu,24719063,5
+vergessen,24719063,4
+metaljacket,24719063,4
+jpclover,24719063,4
+echo_me_,24719063,4
+60354151,24719063,5
+64487390,24719063,5
+65720816,24719063,4
+100328938,24719063,5
+yanbook,24719063,4
+135575731,24719063,4
+123020002,24719063,3
+starlife,24719063,4
+qabcdad,24719063,4
+39815901,24719063,1
+henry2004,24719063,4
+2664578,24719063,4
+yimoyoulan916,24719063,3
+57616406,24719063,5
+3577491,24719063,4
+lala0322,24719063,4
+DOLEIMI,24719063,4
+yyscafpow,24719063,3
+76086734,24719063,4
+91827424,24719063,4
+111331563,24719063,5
+136683044,24719063,3
+6014374,24719063,5
+91860785,24719063,3
+68338997,24719063,4
+91584020,24719063,4
+36832783,24719063,3
+kiffiz,24719063,4
+133762700,24719063,4
+toyshen,24719063,4
+69376612,24719063,4
+huacanghua,24719063,3
+41686939,24719063,5
+master-photon,24719063,5
+51852729,24719063,3
+48252926,24719063,4
+adisonw,24719063,3
+119300833,24719063,5
+103815567,24719063,4
+2309033,24719063,5
+freekami,24719063,4
+102938445,24719063,4
+57947466,24719063,4
+LameSaintSusenF,24719063,4
+iknowzxc,24719063,5
+68324587,24719063,5
+48010668,24719063,-1
+58049381,24719063,4
+xsky1988,24719063,3
+49107061,24719063,4
+132082727,24719063,4
+nigelzeng,24719063,4
+jiajia1130,24719063,2
+58090719,24719063,4
+zero0756,24719063,3
+76933799,24719063,4
+36279517,24719063,4
+73701624,24719063,4
+josephgyal,24719063,4
+87039670,24719063,4
+136680718,24719063,4
+stonedrop77,24719063,5
+40245891,24719063,3
+47386549,24719063,3
+dongxuanlan,24719063,5
+Sinatanis,24719063,4
+sylvanio,24719063,4
+talk2linx,24719063,4
+fallune,24719063,5
+1953349,24719063,4
+62591296,24719063,5
+85245609,24719063,4
+68204055,24719063,5
+2305028,24719063,4
+gzjingjing,24719063,3
+osopaso,24719063,5
+dear-lc,24719063,3
+14357343,24719063,3
+53681673,24719063,4
+61997003,24719063,4
+cherrysakura,24719063,3
+1458725,24719063,3
+fox116,24719063,5
+70967069,24719063,4
+56902498,24719063,3
+82300415,24719063,3
+48108896,24719063,4
+39548669,24719063,3
+91224743,24719063,4
+braxin2007,24719063,2
+Minimalis,24719063,4
+1250982,24719063,3
+66086997,24719063,5
+py962492,24719063,4
+128165523,24719063,5
+65404776,24719063,5
+35860055,24719063,2
+115552732,24719063,4
+johnny174,24719063,4
+34546957,24719063,5
+44630019,24719063,3
+99570083,24719063,4
+91664590,24719063,3
+samsyu,24719063,5
+jhourui,24719063,4
+RioFerdinand,24719063,4
+52005717,24719063,5
+119908830,24719063,5
+27690813,24719063,5
+38973316,24719063,4
+105853894,24719063,-1
+57561160,24719063,3
+frnong,24719063,4
+46609900,24719063,4
+xiaoluzai,24719063,4
+3322909,24719063,4
+37160658,24719063,4
+1339015,24719063,4
+47666300,24719063,5
+136676132,24719063,5
+63064615,24719063,4
+riceseedling,24719063,4
+57153237,24719063,2
+54931017,24719063,3
+moplace,24719063,-1
+45008619,24719063,5
+edo711,24719063,5
+moonlightshit,24719063,5
+65366516,24719063,3
+37322815,24719063,4
+78277110,24719063,5
+54251821,24719063,4
+3863337,24719063,4
+106311647,24719063,4
+74073932,24719063,3
+lifeisastake,24719063,4
+43612310,24719063,4
+dave_m,24719063,4
+98090779,24719063,5
+72508629,24719063,5
+15301687,24719063,5
+53724452,24719063,3
+93469106,24719063,2
+93464301,24719063,4
+93113085,24719063,3
+43471200,24719063,3
+4108038,24719063,4
+48712788,24719063,4
+houdana,24719063,3
+4122117,24719063,4
+yandyandy,24719063,5
+83387474,24719063,4
+63325124,24719063,5
+37266138,24719063,4
+kid131,24719063,3
+3382458,24719063,4
+115100313,24719063,5
+87758868,24719063,-1
+bzfdu,24719063,5
+42006560,24719063,4
+62538300,24719063,3
+2488466,24719063,4
+49199639,24719063,5
+55883774,24719063,4
+84708478,24719063,5
+2217349,24719063,3
+68531336,24719063,3
+46620424,24719063,4
+124869246,24719063,4
+3087894,24719063,3
+64681992,24719063,4
+guishou,24719063,1
+136672457,24719063,1
+nighteye1123,24719063,2
+77048663,24719063,5
+80806529,24719063,4
+fahrenheit4,24719063,4
+127947406,24719063,3
+45022085,24719063,3
+75652838,24719063,4
+66967732,24719063,4
+83749765,24719063,5
+39855725,24719063,3
+50280331,24719063,3
+bLue.C,24719063,5
+oldyu,24719063,3
+58932081,24719063,5
+96080324,24719063,4
+55640775,24719063,5
+letyoufindme,24719063,4
+81007534,24719063,3
+81783969,24719063,4
+135140470,24719063,4
+azy476,24719063,5
+34205981,24719063,3
+36539869,24719063,3
+22704444,24719063,2
+3510245,24719063,4
+32636504,24719063,5
+80894601,24719063,4
+127315169,24719063,5
+38228296,24719063,5
+65075198,24719063,4
+50679453,24719063,3
+65457803,24719063,3
+A_ts_forever,24719063,5
+4095434,24719063,4
+40080607,24719063,4
+64935317,24719063,5
+29753984,24719063,4
+122274250,24719063,5
+75490431,24719063,4
+23380026,24719063,5
+leftpomelo,24719063,4
+50933389,24719063,5
+45158897,24719063,5
+incognito_hsc,24719063,4
+monster1000,24719063,4
+120445293,24719063,2
+128006602,24719063,4
+34144556,24719063,5
+40645008,24719063,5
+WoSeaN_Vincent,24719063,3
+52790249,24719063,-1
+ckrainy,24719063,4
+124900472,24719063,4
+orochimaru94264,24719063,2
+95691041,24719063,4
+131780411,24719063,4
+136521722,24719063,4
+cr7zhang,24719063,3
+xiaoxiaoQ,24719063,3
+q296579068,24719063,5
+80457179,24719063,5
+songxuan911027,24719063,2
+semiyanyan,24719063,3
+115202924,24719063,3
+119166720,24719063,5
+loki-649,24719063,5
+46195073,24719063,4
+50531589,24719063,3
+57593768,24719063,4
+56273353,24719063,3
+51568916,24719063,5
+56273353,24719063,3
+51568916,24719063,5
+hdrsdgd,24719063,3
+lanzi920,24719063,3
+64247507,24719063,3
+48477485,24719063,5
+51222477,24719063,3
+51432613,24719063,4
+14247291,24719063,3
+4226601,24719063,3
+76589400,24719063,4
+joybang,24719063,4
+134511914,24719063,2
+53787519,24719063,4
+momo077,24719063,4
+43120723,24719063,4
+47840871,24719063,5
+136664135,24719063,-1
+60963394,24719063,4
+63135899,24719063,5
+63135899,24719063,5
+74106981,24719063,4
+59155713,24719063,4
+84479294,24719063,1
+84707523,24719063,5
+yunfeizhang,24719063,4
+Daniel-Luo159,24719063,4
+50699357,24719063,4
+53004765,24719063,4
+or_child,24719063,3
+67220317,24719063,4
+suxiaobu,24719063,3
+123189475,24719063,5
+TimonPeng,24719063,3
+heyeast,24719063,4
+weiaijun,24719063,-1
+hkwon,24719063,3
+1534166,24719063,3
+sanroda,24719063,4
+61506971,24719063,2
+99309307,24719063,4
+yazeng,24719063,4
+mitianle,24719063,4
+demonsara,24719063,4
+YuleWu,24719063,3
+GeekChic7,24719063,4
+49788567,24719063,1
+50340677,24719063,4
+QPF,24719063,4
+34070573,24719063,4
+78347009,24719063,3
+136660206,24719063,5
+127543132,24719063,5
+60099487,24719063,5
+lostpurple,24719063,5
+64046407,24719063,4
+79827389,24719063,3
+wangzhumei,24719063,4
+52810889,24719063,3
+72941253,24719063,4
+72941253,24719063,4
+2921812,24719063,4
+78337328,24719063,4
+lilymickey,24719063,4
+45193898,24719063,5
+heiziyefengkuan,24719063,4
+67644601,24719063,4
+67923495,24719063,4
+42202741,24719063,3
+136658726,24719063,4
+gjx189,24719063,4
+37162990,24719063,4
+114570353,24719063,5
+tracy-long,24719063,4
+3423882,24719063,3
+123105162,24719063,4
+53998961,24719063,5
+magicnuan,24719063,3
+imarilyn,24719063,4
+65186592,24719063,3
+52291029,24719063,3
+49207665,24719063,3
+88738629,24719063,3
+80801746,24719063,3
+108319798,24719063,5
+chenyi1976,24719063,4
+1105862,24719063,5
+34009269,24719063,2
+90097591,24719063,3
+53378505,24719063,4
+51525177,24719063,4
+136656723,24719063,4
+3909726,24719063,4
+68090825,24719063,3
+qitian2013,24719063,3
+83127130,24719063,4
+136438728,24719063,4
+1450181,24719063,4
+78176296,24719063,3
+52322024,24719063,5
+120470819,24719063,4
+samtino,24719063,5
+62930766,24719063,5
+125892567,24719063,3
+54011582,24719063,3
+4482032,24719063,3
+25740506,24719063,4
+85447526,24719063,3
+36809297,24719063,4
+53089248,24719063,4
+53578189,24719063,4
+136536459,24719063,5
+136653803,24719063,4
+16873537,24719063,2
+104313584,24719063,4
+80957826,24719063,5
+78529386,24719063,4
+nailu99,24719063,5
+92875885,24719063,4
+secretsoda,24719063,4
+Sataaaaaan,24719063,4
+aini3851424215,24719063,4
+yazhou0906,24719063,5
+66992293,24719063,3
+erbility,24719063,3
+49451055,24719063,3
+68353669,24719063,4
+45255401,24719063,3
+4210892,24719063,2
+2591698,24719063,5
+132860958,24719063,4
+autumnsun,24719063,4
+piko_yw,24719063,4
+135671469,24719063,5
+jeremycreyson,24719063,5
+80688565,24719063,4
+l321,24719063,5
+2806597,24719063,5
+lookflying,24719063,4
+sanjingshu,24719063,4
+36580588,24719063,4
+sail308,24719063,-1
+41926358,24719063,3
+52582202,24719063,5
+52608527,24719063,5
+Luptior,24719063,5
+47152561,24719063,5
+1487998,24719063,4
+89208950,24719063,5
+136650582,24719063,1
+123624827,24719063,5
+hitbear,24719063,4
+132575358,24719063,5
+joyjay,24719063,4
+50001721,24719063,5
+1171612,24719063,5
+46714159,24719063,4
+wutongtree,24719063,4
+67852175,24719063,5
+mofang816,24719063,4
+mokpo,24719063,4
+84091392,24719063,4
+53395539,24719063,4
+4520667,24719063,4
+54119781,24719063,3
+110172016,24719063,4
+zhongdoudou,24719063,4
+75111742,24719063,4
+49713409,24719063,4
+85293907,24719063,4
+kunkunxiansheng,24719063,4
+121055436,24719063,4
+103559115,24719063,2
+113124571,24719063,5
+49288532,24719063,5
+35892009,24719063,3
+57880300,24719063,4
+difeijing,24719063,3
+akaluzz,24719063,4
+raeji,24719063,3
+zhurou,24719063,4
+42585852,24719063,3
+66274614,24719063,4
+45004745,24719063,4
+71911451,24719063,4
+16739191,24719063,4
+butuisedelan,24719063,4
+122938944,24719063,5
+48267278,24719063,3
+midautumnsong,24719063,3
+59493796,24719063,5
+58993842,24719063,4
+mlink,24719063,4
+122842206,24719063,4
+37771316,24719063,3
+82191110,24719063,3
+126241489,24719063,3
+YSAZA,24719063,4
+54034056,24719063,2
+55867399,24719063,4
+3733528,24719063,3
+58152713,24719063,5
+85250768,24719063,-1
+xiaosummer,24719063,4
+3656028,24719063,3
+57389554,24719063,5
+65408583,24719063,4
+101206978,24719063,4
+freeilove,24719063,4
+103551700,24719063,1
+2258556,24719063,4
+Faychang,24719063,5
+132160165,24719063,5
+yrranyi,24719063,3
+wisperzz,24719063,3
+3435038,24719063,4
+ringoo,24719063,4
+135075217,24719063,4
+suweiaidemt,24719063,4
+4408749,24719063,4
+4408749,24719063,4
+62515963,24719063,4
+83787429,24719063,4
+55322458,24719063,5
+36598674,24719063,3
+45266385,24719063,4
+58598004,24719063,4
+63730752,24719063,5
+58649588,24719063,5
+49208406,24719063,5
+52918154,24719063,3
+40067511,24719063,4
+marco_0708,24719063,3
+61454643,24719063,5
+136639499,24719063,5
+heydzi,24719063,4
+4835687,24719063,4
+15778860,24719063,4
+116399092,24719063,4
+87537150,24719063,5
+sunlinlovemicky,24719063,3
+3709548,24719063,3
+101738421,24719063,3
+XIALI,24719063,5
+icefishe,24719063,4
+58520765,24719063,5
+82096379,24719063,3
+75169660,24719063,4
+70674305,24719063,5
+47285151,24719063,4
+88603301,24719063,4
+64092197,24719063,3
+89260208,24719063,3
+74495148,24719063,4
+56524460,24719063,4
+73711889,24719063,2
+2982307,24719063,3
+37029015,24719063,3
+94794671,24719063,4
+121175945,24719063,3
+btone0808,24719063,3
+1084576,24719063,4
+shihuayiduo,24719063,5
+44390007,24719063,4
+Doom365,24719063,4
+130136364,24719063,4
+sunnystone,24719063,3
+6120725,24719063,5
+78757579,24719063,4
+18965054,24719063,3
+zhenglei1919,24719063,4
+3379883,24719063,4
+4342827,24719063,3
+Yubk111111,24719063,4
+1319464,24719063,4
+2075426,24719063,4
+56670282,24719063,3
+70182542,24719063,5
+funnyxy,24719063,4
+nealwzn,24719063,5
+50831227,24719063,4
+1795295,24719063,3
+42295837,24719063,3
+yuanaibing,24719063,3
+diylove,24719063,3
+2650205,24719063,4
+xghlg,24719063,3
+47618742,24719063,3
+flowerstreet,24719063,4
+43516388,24719063,3
+31653550,24719063,4
+pengweih,24719063,2
+lightreus,24719063,4
+48661159,24719063,4
+47758937,24719063,4
+3979311,24719063,3
+lucifermi,24719063,4
+44504599,24719063,4
+queenchelsea,24719063,3
+Brad_King,24719063,3
+60781321,24719063,2
+pmtea,24719063,5
+forceofnature,24719063,5
+95243004,24719063,4
+dnarna_vicky,24719063,-1
+64535817,24719063,4
+87510148,24719063,5
+48483774,24719063,3
+35978096,24719063,5
+11503015,24719063,4
+62671036,24719063,5
+Rickyan,24719063,3
+79062945,24719063,3
+75647465,24719063,5
+88522948,24719063,3
+sailnirvana,24719063,5
+sgzjhw,24719063,5
+69170773,24719063,3
+27658403,24719063,5
+58301131,24719063,4
+qlvtu,24719063,4
+62111728,24719063,4
+43409918,24719063,4
+cocokidman,24719063,5
+78403986,24719063,4
+59290556,24719063,2
+50835910,24719063,4
+136054482,24719063,5
+directions,24719063,5
+59901599,24719063,4
+frosteeeee,24719063,4
+100324519,24719063,4
+1424681,24719063,4
+135037837,24719063,4
+92490871,24719063,4
+changzheng,24719063,4
+ohsherrysherry,24719063,3
+Longinuss,24719063,3
+2432383,24719063,4
+52327578,24719063,4
+64559791,24719063,4
+122351676,24719063,5
+wk3689,24719063,1
+101417161,24719063,4
+43390539,24719063,5
+gumi,24719063,4
+44622740,24719063,4
+53032069,24719063,5
+51836771,24719063,5
+skyFei,24719063,2
+83300481,24719063,4
+disanfang,24719063,3
+nowhere34,24719063,4
+71055026,24719063,4
+62288453,24719063,4
+87353564,24719063,4
+60854908,24719063,4
+toujifenzi,24719063,4
+NN99,24719063,4
+3253959,24719063,5
+Sandorothy,24719063,3
+50069114,24719063,4
+74779260,24719063,2
+52770411,24719063,4
+domainyu,24719063,5
+77378264,24719063,4
+86911673,24719063,3
+jian.ai,24719063,3
+kinor_young,24719063,5
+liaosanchuan,24719063,4
+52338823,24719063,5
+3566413,24719063,4
+66403603,24719063,5
+70666599,24719063,5
+wangyao1982,24719063,2
+99215743,24719063,4
+janice5680,24719063,3
+81508668,24719063,-1
+heylian,24719063,4
+63171651,24719063,4
+135751000,24719063,5
+1450499,24719063,4
+57630254,24719063,4
+58569679,24719063,4
+86207541,24719063,4
+17661600,24719063,3
+80214654,24719063,3
+50919323,24719063,4
+65741899,24719063,4
+78754556,24719063,4
+xueshang,24719063,4
+3770234,24719063,4
+89852120,24719063,4
+sweetloli,24719063,3
+zuozuo1990,24719063,4
+baiqitun,24719063,4
+135550029,24719063,4
+61389962,24719063,3
+79608422,24719063,5
+fanyichao,24719063,4
+120443847,24719063,5
+75330539,24719063,4
+87541020,24719063,4
+4364181,24719063,3
+1268296,24719063,3
+33442688,24719063,3
+aihepin,24719063,4
+52082728,24719063,5
+AriesSusan,24719063,5
+48832423,24719063,4
+3255756,24719063,-1
+87704099,24719063,-1
+46722646,24719063,5
+75704681,24719063,5
+danielyan,24719063,3
+64934604,24719063,5
+46588215,24719063,5
+51651483,24719063,4
+woohyukyou,24719063,-1
+131533540,24719063,5
+136629392,24719063,1
+134546638,24719063,3
+1390047,24719063,-1
+RIVERT,24719063,4
+snowhair,24719063,3
+133820326,24719063,4
+120867848,24719063,4
+135681079,24719063,4
+1498768,24719063,3
+alex.xuxiao,24719063,5
+laohao,24719063,4
+hitomiorange,24719063,4
+136629154,24719063,3
+4528157,24719063,5
+53168001,24719063,5
+Zany.,24719063,4
+50094689,24719063,2
+97977278,24719063,4
+chenpei0318521,24719063,5
+57887082,24719063,3
+57887082,24719063,3
+2438025,24719063,4
+134288385,24719063,5
+64124840,24719063,1
+92637548,24719063,4
+123706998,24719063,3
+133020185,24719063,5
+121475864,24719063,4
+131364833,24719063,5
+marxpayne,24719063,3
+57707856,24719063,3
+eddychaw,24719063,3
+mayiwei,24719063,2
+yxfzh1981,24719063,5
+SUNSTAY,24719063,4
+loftywain,24719063,3
+72043459,24719063,5
+jc33,24719063,5
+huogebushuai,24719063,4
+63933567,24719063,4
+SeasonC,24719063,5
+natejumper,24719063,4
+102751216,24719063,4
+Razzmatazz,24719063,4
+bdch,24719063,4
+76182479,24719063,4
+51445389,24719063,2
+61168357,24719063,5
+hzcjustfly,24719063,4
+56771366,24719063,3
+62188609,24719063,4
+lilipop,24719063,3
+yintianyi420,24719063,3
+127654631,24719063,5
+59683104,24719063,4
+3550763,24719063,5
+114345123,24719063,4
+51936769,24719063,3
+69008426,24719063,3
+127219953,24719063,4
+33076718,24719063,3
+3395040,24719063,4
+65129515,24719063,2
+54242754,24719063,5
+VINCENTVCHAN,24719063,4
+67874227,24719063,4
+45290728,24719063,3
+135921283,24719063,4
+38346825,24719063,3
+87410268,24719063,4
+linlongnian,24719063,5
+121739485,24719063,4
+31316457,24719063,5
+113560444,24719063,3
+sherry-fmj,24719063,4
+133404054,24719063,5
+127267893,24719063,3
+66784214,24719063,5
+suren11,24719063,4
+47933054,24719063,3
+97166152,24719063,5
+132325954,24719063,4
+queeenababy,24719063,4
+43302986,24719063,4
+tessss,24719063,5
+9275684,24719063,3
+ink1020,24719063,4
+64658435,24719063,-1
+64787437,24719063,4
+49339227,24719063,5
+xingguanmeng,24719063,4
+kanrenao,24719063,4
+4638925,24719063,4
+leon_howe,24719063,-1
+zhaohanyue,24719063,4
+43607926,24719063,3
+3683989,24719063,4
+54228014,24719063,3
+28903343,24719063,4
+60504738,24719063,5
+3956478,24719063,4
+54107765,24719063,5
+75328137,24719063,4
+61797915,24719063,4
+76926287,24719063,3
+77570203,24719063,4
+emunah,24719063,4
+45906667,24719063,5
+quzheng1986,24719063,4
+61497577,24719063,4
+59205597,24719063,4
+alice115,24719063,3
+58957122,24719063,2
+50249739,24719063,3
+52055708,24719063,4
+T.w,24719063,2
+51997514,24719063,5
+Jodiezhang,24719063,4
+xiaomaolaile,24719063,4
+vera1988,24719063,4
+justholic,24719063,5
+43632851,24719063,4
+45797451,24719063,3
+44775159,24719063,4
+38629950,24719063,5
+49020007,24719063,3
+71678016,24719063,3
+37380657,24719063,4
+OnlyCoffee,24719063,4
+41509198,24719063,5
+131829692,24719063,5
+41246979,24719063,4
+ml0684727,24719063,5
+Rosesea,24719063,4
+50094357,24719063,4
+73627812,24719063,3
+dingxuefeng0918,24719063,4
+3563668,24719063,4
+127944617,24719063,4
+cherryonsale,24719063,4
+131834377,24719063,5
+ccguodong,24719063,4
+susidai,24719063,3
+guandao--,24719063,5
+54261734,24719063,4
+44398603,24719063,4
+41130036,24719063,1
+123371542,24719063,4
+2654074,24719063,4
+tianxianglouzhu,24719063,3
+103182067,24719063,3
+99598599,24719063,3
+1055848,24719063,4
+wunie,24719063,3
+4272538,24719063,4
+42145259,24719063,1
+45069650,24719063,4
+58601544,24719063,4
+99508404,24719063,3
+3884732,24719063,5
+61195907,24719063,4
+79915546,24719063,1
+69674172,24719063,3
+57396693,24719063,4
+syloveyangying,24719063,4
+93413999,24719063,5
+43910154,24719063,2
+57811727,24719063,4
+74418129,24719063,4
+loselove,24719063,4
+43602945,24719063,4
+silencelee,24719063,3
+63015769,24719063,4
+92567735,24719063,5
+ainiruyanjing,24719063,3
+emeline,24719063,3
+lcnverland,24719063,4
+70741441,24719063,5
+52931536,24719063,4
+67238808,24719063,4
+135366540,24719063,3
+zoeke,24719063,-1
+57436180,24719063,3
+ldd118,24719063,3
+79240303,24719063,3
+130459392,24719063,4
+ying04510,24719063,4
+cloudwwb,24719063,4
+46819232,24719063,5
+71552096,24719063,5
+markspotting,24719063,4
+54993624,24719063,5
+49351576,24719063,4
+133225593,24719063,4
+simmychow,24719063,5
+58259896,24719063,5
+62705910,24719063,4
+min6,24719063,1
+neofree,24719063,3
+songxuancheng,24719063,5
+yunyunkk,24719063,5
+125689704,24719063,5
+48666035,24719063,3
+2465698,24719063,4
+3450620,24719063,3
+126331855,24719063,2
+126202371,24719063,4
+organum,24719063,3
+69638604,24719063,3
+76617024,24719063,5
+Vitaminsong,24719063,-1
+79368298,24719063,3
+alex.tseng,24719063,3
+susanbear,24719063,4
+58981483,24719063,5
+iwave,24719063,3
+herro58,24719063,5
+97396333,24719063,4
+67352190,24719063,3
+zqt0,24719063,3
+64172361,24719063,4
+49456596,24719063,4
+65832475,24719063,4
+yizhiyu577,24719063,5
+35407270,24719063,3
+116960082,24719063,4
+fionachang1117,24719063,3
+84028552,24719063,4
+45933152,24719063,4
+66557005,24719063,4
+willness,24719063,2
+120480108,24719063,4
+78169762,24719063,3
+whiteear,24719063,5
+40442846,24719063,5
+131183374,24719063,4
+25555778,24719063,4
+53697921,24719063,4
+41139702,24719063,5
+35578162,24719063,4
+jidewei,24719063,3
+2193797,24719063,4
+fan0208,24719063,4
+45520238,24719063,4
+89528523,24719063,4
+128821686,24719063,5
+themostyu,24719063,4
+122605310,24719063,3
+126022263,24719063,5
+70162864,24719063,3
+43106443,24719063,4
+41431313,24719063,4
+94223652,24719063,3
+50522399,24719063,4
+126465508,24719063,5
+47329818,24719063,5
+51153180,24719063,4
+3588360,24719063,2
+48724979,24719063,3
+vivianzhying,24719063,2
+rangdream,24719063,5
+71421150,24719063,5
+51143086,24719063,4
+64083865,24719063,2
+44057273,24719063,5
+dalianhaizao,24719063,3
+arrogantjackass,24719063,1
+2327781,24719063,2
+zbubu,24719063,5
+127932658,24719063,3
+131053762,24719063,2
+66680308,24719063,4
+62558245,24719063,5
+winterTTr,24719063,4
+58954301,24719063,4
+3392902,24719063,3
+FennyFu,24719063,3
+40572936,24719063,3
+chenxizi,24719063,3
+zhz586,24719063,5
+zhz586,24719063,5
+37017024,24719063,4
+50785660,24719063,5
+3047846,24719063,1
+104043833,24719063,3
+2367248,24719063,4
+2761282,24719063,3
+playtoy,24719063,3
+3553678,24719063,4
+think_think,24719063,4
+baxy,24719063,3
+62862861,24719063,3
+130599589,24719063,4
+33847605,24719063,5
+82058844,24719063,3
+pavi_liu_chenka,24719063,4
+47199948,24719063,2
+63830017,24719063,4
+48885291,24719063,3
+A-Coustic,24719063,3
+48885291,24719063,3
+A-Coustic,24719063,3
+4371910,24719063,3
+125570850,24719063,5
+musicide,24719063,3
+46728828,24719063,4
+35475264,24719063,3
+78087662,24719063,3
+43781678,24719063,3
+beijinglawyer,24719063,3
+59038247,24719063,2
+83237050,24719063,3
+123004132,24719063,4
+fyxx101,24719063,5
+60608137,24719063,5
+72792251,24719063,4
+lisacat611,24719063,4
+ss433light,24719063,4
+swedishwolf,24719063,3
+41948651,24719063,4
+Youoen,24719063,3
+2369387,24719063,3
+6023961,24719063,4
+lpf1990,24719063,5
+49519192,24719063,3
+Sk.Young,24719063,4
+60728214,24719063,3
+1411336,24719063,4
+Surizane,24719063,3
+44109266,24719063,4
+134318408,24719063,4
+kthinker,24719063,4
+126829630,24719063,4
+lewish,24719063,5
+talentygw,24719063,4
+18080670,24719063,4
+57615473,24719063,4
+4015275,24719063,4
+cn50344,24719063,4
+69807156,24719063,3
+2218484,24719063,4
+1736575,24719063,4
+Chivar,24719063,5
+46992157,24719063,4
+50451911,24719063,4
+mmycshng,24719063,4
+14453874,24719063,4
+117339283,24719063,3
+July_AuE,24719063,4
+von71224,24719063,5
+Rainman2015,24719063,4
+36304941,24719063,5
+36713495,24719063,4
+132025988,24719063,4
+62715368,24719063,5
+71622967,24719063,4
+kiteshady,24719063,4
+61956899,24719063,4
+74825312,24719063,3
+hbwsbo,24719063,4
+44140767,24719063,3
+keenwon,24719063,3
+62087328,24719063,4
+63161358,24719063,4
+kimiwinterswood,24719063,3
+118854321,24719063,5
+68699271,24719063,2
+57795255,24719063,4
+53682563,24719063,4
+hot_air,24719063,4
+WyBaby,24719063,4
+miemiebao,24719063,4
+71953415,24719063,4
+120889281,24719063,4
+67561107,24719063,3
+83377255,24719063,4
+27081582,24719063,3
+62069415,24719063,5
+comicbaozi,24719063,4
+78667352,24719063,5
+2781564,24719063,4
+80033918,24719063,3
+73500276,24719063,4
+120357916,24719063,5
+55921235,24719063,5
+62304027,24719063,4
+2135892,24719063,5
+2015317,24719063,4
+55357697,24719063,4
+47755926,24719063,4
+tentorium,24719063,4
+51490972,24719063,3
+37120516,24719063,5
+52202142,24719063,5
+1817816,24719063,5
+120358282,24719063,4
+ywk,24719063,3
+51205949,24719063,5
+somewhater,24719063,5
+82823263,24719063,3
+63430017,24719063,4
+59149005,24719063,4
+133843430,24719063,3
+liunisn,24719063,5
+54383012,24719063,4
+susannaone,24719063,3
+36043913,24719063,4
+36342464,24719063,4
+Cecily,24719063,4
+hljmsfy,24719063,2
+xiaogang0625,24719063,3
+3526854,24719063,5
+zhaoyu1222,24719063,4
+luminRAY,24719063,3
+yuxinzhi008,24719063,1
+fancyyan,24719063,3
+tobecause,24719063,5
+4216686,24719063,4
+122738024,24719063,3
+2258983,24719063,5
+46436848,24719063,5
+qzl,24719063,3
+70432798,24719063,5
+59856519,24719063,4
+47839333,24719063,4
+135888657,24719063,4
+41940074,24719063,5
+fenglaibsh,24719063,4
+54725975,24719063,2
+76802075,24719063,4
+70459367,24719063,4
+45543286,24719063,4
+48940820,24719063,3
+40760358,24719063,4
+fenglao,24719063,2
+68433941,24719063,5
+54776017,24719063,3
+128233338,24719063,4
+53265029,24719063,4
+64976267,24719063,5
+58109745,24719063,4
+51223075,24719063,5
+Henry-Maugham,24719063,3
+91917385,24719063,5
+34638255,24719063,4
+kgbbeer,24719063,4
+126719955,24719063,5
+94909543,24719063,4
+su_mao,24719063,5
+128760790,24719063,4
+120169874,24719063,4
+Davidcyclone,24719063,-1
+yvone1220,24719063,3
+musicbeer,24719063,5
+48749653,24719063,-1
+51963490,24719063,4
+31664415,24719063,5
+1885662,24719063,4
+47446348,24719063,4
+58836800,24719063,5
+76227995,24719063,4
+48119983,24719063,4
+31799024,24719063,3
+zbar1234,24719063,4
+63127179,24719063,4
+altman,24719063,-1
+66711391,24719063,4
+52685250,24719063,5
+86807524,24719063,4
+135953489,24719063,5
+gengxiang2012,24719063,4
+76554749,24719063,5
+90807462,24719063,4
+yuefulun,24719063,4
+130823206,24719063,3
+zhongshan711,24719063,4
+43966741,24719063,4
+2760210,24719063,5
+64595804,24719063,4
+f8023,24719063,4
+xunjie,24719063,2
+76076225,24719063,4
+100179635,24719063,4
+tongchu,24719063,4
+135401156,24719063,4
+zhzh_0831,24719063,4
+121644279,24719063,5
+115467690,24719063,4
+chenruan,24719063,3
+4258722,24719063,4
+73600166,24719063,4
+127114583,24719063,3
+81365410,24719063,5
+onlyyoung,24719063,3
+51951428,24719063,5
+46959168,24719063,3
+42385473,24719063,4
+bons,24719063,3
+nautycat,24719063,4
+45484348,24719063,4
+57847628,24719063,-1
+52852194,24719063,4
+136194748,24719063,5
+cathy_59,24719063,3
+4057118,24719063,3
+41128973,24719063,4
+54777810,24719063,4
+68742620,24719063,3
+goldenday,24719063,4
+52074740,24719063,4
+4051028,24719063,5
+71890436,24719063,4
+67501014,24719063,4
+1380354,24719063,3
+rmarz,24719063,5
+idreammrs,24719063,3
+zzy.ll,24719063,5
+83233640,24719063,3
+nicole0169,24719063,3
+133471355,24719063,5
+sirtoozee,24719063,4
+lichenxiangbj,24719063,5
+49878097,24719063,5
+73770188,24719063,2
+2670240,24719063,3
+42111921,24719063,4
+4811269,24719063,5
+qiqihhappy,24719063,5
+xml1112,24719063,4
+2346310,24719063,4
+42884654,24719063,3
+moredarkwhite,24719063,2
+58698637,24719063,4
+2232953,24719063,4
+45305356,24719063,3
+53387777,24719063,4
+2177155,24719063,4
+44631026,24719063,5
+54856887,24719063,4
+1613863,24719063,4
+figo341,24719063,4
+5439991,24719063,4
+TheOddOne,24719063,5
+amy221525,24719063,4
+58092496,24719063,4
+73365749,24719063,4
+2891944,24719063,4
+55755674,24719063,4
+lesum,24719063,3
+92610102,24719063,4
+4713883,24719063,4
+135250807,24719063,4
+55606448,24719063,3
+dudumozart,24719063,4
+80013790,24719063,4
+abnoc,24719063,3
+nanzang,24719063,4
+48047032,24719063,4
+DDZZJ,24719063,5
+81316047,24719063,3
+isabella_tk,24719063,2
+53521234,24719063,4
+4347444,24719063,3
+95768578,24719063,4
+59725846,24719063,5
+jjunfan,24719063,3
+64009647,24719063,3
+1844983,24719063,3
+65086608,24719063,3
+fallinrnb,24719063,4
+55811451,24719063,5
+WarmLight,24719063,4
+4097408,24719063,5
+gene4ever,24719063,4
+47294835,24719063,2
+surenyi,24719063,4
+132684902,24719063,4
+Kun-White,24719063,5
+missmole22,24719063,4
+fanshuren,24719063,4
+123277373,24719063,4
+59083968,24719063,5
+3450694,24719063,4
+yiqiquyuanfang,24719063,3
+91117590,24719063,5
+yaodream,24719063,4
+98693358,24719063,5
+king1099,24719063,3
+62504399,24719063,3
+KammyS,24719063,5
+lvjinpeng,24719063,4
+65947697,24719063,5
+hahajing,24719063,3
+71890378,24719063,3
+3513754,24719063,5
+68746215,24719063,3
+jaws886,24719063,5
+xiaogaren,24719063,3
+91543549,24719063,4
+zmm8168,24719063,4
+methuselah,24719063,3
+slothbug,24719063,4
+violor,24719063,2
+48164029,24719063,4
+63578781,24719063,5
+wizbp,24719063,3
+70390842,24719063,5
+49983396,24719063,3
+Xsoda,24719063,5
+lxq19930708,24719063,4
+48379365,24719063,4
+48096896,24719063,4
+48940201,24719063,4
+135425839,24719063,4
+58290785,24719063,4
+65260404,24719063,3
+51056550,24719063,4
+40339894,24719063,3
+60486561,24719063,4
+67211309,24719063,3
+zhaoyuner,24719063,4
+2166366,24719063,4
+74541103,24719063,5
+neochao,24719063,4
+46527859,24719063,2
+41899297,24719063,4
+spzmoon,24719063,4
+57612915,24719063,-1
+51773782,24719063,4
+2790802,24719063,3
+120820995,24719063,4
+deadmonica,24719063,3
+simizi-Cee,24719063,5
+pearltear,24719063,3
+4826096,24719063,5
+poulter,24719063,5
+125101066,24719063,5
+chl199093,24719063,4
+83415615,24719063,3
+37448778,24719063,4
+Grace_Xuliang,24719063,4
+62388572,24719063,5
+basil_yying,24719063,4
+51854366,24719063,4
+37756107,24719063,4
+pinkchild52,24719063,3
+4433917,24719063,4
+51227412,24719063,4
+53806691,24719063,4
+hnnyzxh,24719063,4
+37228673,24719063,4
+kally_allen,24719063,3
+1730596,24719063,4
+pihou,24719063,4
+120541509,24719063,3
+90532402,24719063,4
+birdbirdz,24719063,-1
+radwimpsyurase,24719063,4
+56198474,24719063,5
+se7en-se7en,24719063,5
+se7en-se7en,24719063,5
+54826965,24719063,5
+134433329,24719063,4
+poquan,24719063,3
+132433995,24719063,3
+37226632,24719063,4
+flowerowl,24719063,3
+88480344,24719063,4
+50474016,24719063,5
+Balebeng,24719063,4
+2129596,24719063,5
+goesby,24719063,4
+baliangyutang,24719063,3
+helongfei,24719063,4
+36939317,24719063,4
+36890272,24719063,3
+19336600,24719063,3
+rukia-ichigo,24719063,4
+51967154,24719063,3
+zhengyuuu,24719063,5
+108282995,24719063,4
+3643017,24719063,5
+2613759,24719063,4
+45858265,24719063,1
+Bigdad,24719063,3
+76617762,24719063,5
+thecrespo,24719063,4
+65830621,24719063,5
+17471764,24719063,-1
+tinyuu,24719063,3
+clomersjames,24719063,4
+50833916,24719063,4
+wusuhui,24719063,5
+superchris,24719063,5
+57286187,24719063,3
+catxxxxxxxxxxx,24719063,5
+shadowshame,24719063,3
+61907684,24719063,4
+83202177,24719063,3
+Clytze.vs.rose,24719063,4
+Zdb,24719063,5
+xianxianchen,24719063,5
+cjtnt,24719063,5
+87559349,24719063,4
+57848317,24719063,5
+100574320,24719063,5
+128615153,24719063,3
+63989347,24719063,4
+6877388,24719063,4
+2849990,24719063,5
+66224948,24719063,2
+momo711,24719063,4
+3309735,24719063,5
+57650145,24719063,5
+121318701,24719063,4
+43308904,24719063,5
+96408686,24719063,5
+62721036,24719063,5
+3867480,24719063,4
+yyylovejane,24719063,3
+xiaocheng88,24719063,5
+135796264,24719063,1
+sradium,24719063,5
+50663434,24719063,4
+74241382,24719063,4
+56843528,24719063,5
+83991598,24719063,3
+2321203,24719063,5
+yangtao0810,24719063,4
+lcghere,24719063,4
+favezhihao,24719063,4
+88322938,24719063,2
+61423664,24719063,4
+28944657,24719063,1
+55850316,24719063,3
+62282674,24719063,4
+blackmeajump,24719063,5
+67758880,24719063,4
+71039483,24719063,5
+cchocolate,24719063,4
+cchocolate,24719063,4
+1986183,24719063,3
+69323349,24719063,3
+51684202,24719063,5
+3488671,24719063,3
+52684346,24719063,4
+135907100,24719063,4
+62674251,24719063,2
+127397854,24719063,5
+immortal_light,24719063,4
+21331611,24719063,5
+87208531,24719063,4
+yaya,24719063,3
+Barret,24719063,1
+ProfThunder,24719063,5
+44485632,24719063,4
+zelinzheng,24719063,4
+27886744,24719063,-1
+82526978,24719063,3
+18318076,24719063,4
+55852131,24719063,5
+furada,24719063,4
+74479513,24719063,5
+66513814,24719063,4
+advender,24719063,4
+103735356,24719063,4
+S20,24719063,4
+93972044,24719063,4
+fiona-cin,24719063,4
+emptyd,24719063,4
+59787556,24719063,5
+65150384,24719063,3
+2877708,24719063,1
+119829181,24719063,5
+52840916,24719063,3
+52893055,24719063,4
+131132192,24719063,5
+j946791150,24719063,4
+51859429,24719063,4
+1403260,24719063,5
+WKP,24719063,-1
+57278963,24719063,4
+122230332,24719063,4
+60521629,24719063,4
+3791953,24719063,4
+1066031,24719063,3
+62932402,24719063,5
+ancg,24719063,3
+52451276,24719063,5
+zengguangsha,24719063,4
+124789721,24719063,5
+56908941,24719063,5
+59226823,24719063,4
+67039563,24719063,4
+9556755,24719063,4
+65104355,24719063,5
+huijinxiang1008,24719063,1
+allblue,24719063,4
+59813218,24719063,5
+sakuras1412,24719063,-1
+74636626,24719063,5
+79507251,24719063,3
+65510449,24719063,4
+Shulamit,24719063,4
+doubandengjian,24719063,4
+52199185,24719063,4
+82624097,24719063,5
+eksmemo,24719063,4
+53565685,24719063,3
+4105021,24719063,4
+1596435,24719063,4
+31755732,24719063,3
+126334650,24719063,3
+4588044,24719063,3
+57743868,24719063,4
+98739826,24719063,4
+2139063,24719063,4
+3079947,24719063,4
+greenbeansand,24719063,4
+ooolinda,24719063,4
+98773690,24719063,4
+tmh9390,24719063,5
+sui2,24719063,4
+48120700,24719063,3
+lfyfnfn,24719063,5
+41499743,24719063,4
+65810750,24719063,4
+qingloveblue,24719063,4
+60347813,24719063,3
+61830049,24719063,4
+83524937,24719063,1
+2719310,24719063,5
+pkbraveheart,24719063,3
+counting_crows,24719063,3
+56128182,24719063,4
+38293223,24719063,5
+oldragontomb,24719063,3
+4285342,24719063,5
+102840070,24719063,5
+2146226,24719063,2
+79053164,24719063,4
+5632513,24719063,4
+miuccia,24719063,3
+50054232,24719063,4
+changrain,24719063,5
+liuxingjiaozhu,24719063,3
+28152891,24719063,2
+kafka85,24719063,4
+61491842,24719063,4
+122166840,24719063,5
+122879836,24719063,4
+49888583,24719063,3
+82559592,24719063,5
+50643015,24719063,4
+85487157,24719063,4
+17433771,24719063,3
+boycester,24719063,4
+69513707,24719063,5
+1306656,24719063,3
+68967658,24719063,5
+68967658,24719063,5
+67763944,24719063,4
+kimi-1119,24719063,3
+120124577,24719063,4
+54353968,24719063,4
+57122585,24719063,3
+43153098,24719063,5
+55444463,24719063,5
+flrit,24719063,5
+119858082,24719063,4
+1102153,24719063,2
+76467871,24719063,4
+25970354,24719063,3
+littlewish,24719063,5
+91429129,24719063,4
+65619025,24719063,3
+83723594,24719063,4
+63630042,24719063,4
+wizards,24719063,4
+shavivi525,24719063,3
+endlishock,24719063,4
+120929768,24719063,4
+3242895,24719063,3
+121754503,24719063,4
+59807660,24719063,4
+43236026,24719063,4
+60822663,24719063,4
+57088195,24719063,3
+aquar25,24719063,5
+annetao,24719063,4
+60240368,24719063,4
+njtintin,24719063,4
+wait2000,24719063,5
+tushanxiao,24719063,4
+93900680,24719063,4
+57854368,24719063,4
+Hellmannson,24719063,4
+40607784,24719063,4
+8752115,24719063,3
+born2die,24719063,3
+63984355,24719063,4
+3527968,24719063,2
+60624789,24719063,1
+101785082,24719063,4
+freshstart,24719063,4
+kevin_lu1001,24719063,4
+xingbao,24719063,5
+2327763,24719063,4
+48354152,24719063,3
+125469853,24719063,4
+133470445,24719063,3
+51456095,24719063,3
+babymuah,24719063,4
+58484149,24719063,3
+51226041,24719063,4
+73287736,24719063,2
+131339646,24719063,5
+yoory,24719063,-1
+104592207,24719063,3
+61679358,24719063,4
+49871363,24719063,3
+73939740,24719063,3
+73534330,24719063,4
+Rovin,24719063,3
+39811621,24719063,4
+49841484,24719063,4
+putin36,24719063,5
+18088011,24719063,4
+80797191,24719063,3
+65099915,24719063,4
+65803742,24719063,5
+50438518,24719063,4
+48380446,24719063,2
+49606873,24719063,5
+3446661,24719063,5
+47913481,24719063,5
+fuzyu,24719063,5
+mayturner,24719063,3
+87308057,24719063,3
+49556707,24719063,4
+44632313,24719063,3
+onedotdot,24719063,3
+54944221,24719063,4
+51342675,24719063,4
+103620662,24719063,4
+122336700,24719063,3
+ajwang1031,24719063,4
+two_dogz,24719063,4
+81414812,24719063,5
+62793517,24719063,3
+75668833,24719063,4
+ClaireL,24719063,3
+4195216,24719063,5
+46862162,24719063,4
+46661661,24719063,5
+63357798,24719063,4
+102598019,24719063,5
+78905607,24719063,5
+51296756,24719063,3
+38327139,24719063,3
+tuanzilove,24719063,2
+125948389,24719063,5
+134800314,24719063,5
+lovelysunshine,24719063,3
+93375016,24719063,3
+winter-h,24719063,3
+newbear,24719063,4
+134171425,24719063,4
+48561293,24719063,-1
+68878530,24719063,4
+brant_cui,24719063,4
+64725454,24719063,3
+Jewelyxy,24719063,4
+shushushu,24719063,5
+68141214,24719063,4
+91140276,24719063,2
+49318064,24719063,4
+6243740,24719063,4
+26748709,24719063,4
+48509446,24719063,3
+134969713,24719063,4
+56659990,24719063,4
+jessicah,24719063,3
+lisa1989_Sun,24719063,4
+93606686,24719063,4
+18324848,24719063,5
+orchid714,24719063,4
+Optimus-Prime,24719063,5
+17953714,24719063,4
+84129160,24719063,-1
+hy2015,24719063,5
+49032670,24719063,4
+48214032,24719063,4
+78724440,24719063,4
+Makoto614,24719063,3
+43507289,24719063,3
+87490157,24719063,5
+2393425,24719063,3
+58569504,24719063,5
+119239652,24719063,4
+119239652,24719063,4
+Lemonsir,24719063,3
+juwujian,24719063,3
+qszone,24719063,4
+47885583,24719063,5
+24534365,24719063,5
+41606567,24719063,5
+soloHero,24719063,3
+2304340,24719063,3
+yingyuan,24719063,4
+51736421,24719063,4
+81693756,24719063,3
+135071519,24719063,3
+qingxingji47,24719063,3
+70397135,24719063,2
+76551061,24719063,4
+52899567,24719063,5
+jiajunzhi,24719063,4
+76964275,24719063,4
+81530706,24719063,4
+kelingshanshan,24719063,4
+3880844,24719063,3
+135959495,24719063,4
+4295298,24719063,5
+sunnydaisy04,24719063,4
+68283591,24719063,3
+buwubuhui,24719063,2
+Yoeshorre,24719063,1
+jiakon,24719063,4
+65580779,24719063,5
+32505572,24719063,3
+4508071,24719063,-1
+114462057,24719063,3
+62534948,24719063,4
+47947718,24719063,4
+62343652,24719063,5
+hxtdkz1226,24719063,4
+85415189,24719063,5
+1495292,24719063,4
+2041666,24719063,3
+63599450,24719063,5
+71875711,24719063,4
+52172902,24719063,5
+59842125,24719063,4
+59826514,24719063,4
+yanjie0310,24719063,4
+Shirleyjscy,24719063,5
+izzn,24719063,3
+ekkus66,24719063,5
+51882704,24719063,2
+hejianjian,24719063,4
+136434557,24719063,4
+50449318,24719063,5
+4453892,24719063,-1
+anikijo,24719063,4
+Xiaoyue,24719063,4
+Yu-Tommy,24719063,5
+2925323,24719063,3
+xiaofangyang,24719063,5
+84599749,24719063,4
+83248624,24719063,3
+58982615,24719063,2
+74361117,24719063,5
+huggin,24719063,4
+49449526,24719063,4
+shakentse,24719063,4
+sinext,24719063,4
+50443109,24719063,4
+133540268,24719063,4
+44005098,24719063,4
+leek1112,24719063,4
+62147836,24719063,4
+50865043,24719063,4
+yuyouting,24719063,4
+136560460,24719063,4
+135248938,24719063,5
+1709876,24719063,3
+yang_xiaowei,24719063,4
+callmeX5,24719063,5
+bearhao1976,24719063,3
+iyuge,24719063,4
+hunnu_Denny,24719063,4
+49008055,24719063,5
+44412475,24719063,3
+66049810,24719063,4
+61223246,24719063,5
+lingjue,24719063,4
+83388773,24719063,2
+90105219,24719063,4
+97042268,24719063,4
+1381065,24719063,4
+2300914,24719063,-1
+71573163,24719063,3
+78925849,24719063,4
+42106999,24719063,4
+115660168,24719063,4
+whmyxh,24719063,4
+89763899,24719063,3
+suhong,24719063,1
+57077807,24719063,4
+maoxiaomao,24719063,4
+47732306,24719063,3
+45601903,24719063,4
+74420370,24719063,4
+66844504,24719063,3
+CloudRiver,24719063,5
+72354881,24719063,4
+52833174,24719063,4
+xuemenga,24719063,5
+102077432,24719063,4
+97348317,24719063,3
+1240037,24719063,3
+moonliushuang,24719063,4
+55419617,24719063,4
+134528233,24719063,2
+nearlloveyou,24719063,4
+coco921,24719063,5
+silentmonkey,24719063,3
+lostcat84,24719063,-1
+Yorke,24719063,3
+54756616,24719063,4
+48553912,24719063,4
+51784692,24719063,2
+63462794,24719063,4
+135868666,24719063,4
+126937145,24719063,3
+31829657,24719063,3
+48394515,24719063,4
+59623092,24719063,4
+largefo,24719063,4
+118831166,24719063,3
+cuishuang,24719063,-1
+2063546,24719063,5
+70134774,24719063,2
+1779149,24719063,5
+luxise,24719063,4
+65543931,24719063,-1
+jialezone,24719063,3
+45382410,24719063,5
+82880099,24719063,3
+47717336,24719063,4
+64076320,24719063,3
+zizzyzizz,24719063,3
+37810606,24719063,5
+kenzo1983,24719063,2
+63825498,24719063,4
+47052940,24719063,4
+46818877,24719063,4
+27651863,24719063,3
+3430593,24719063,4
+46362700,24719063,5
+127515504,24719063,4
+61232502,24719063,4
+peoplelovexxx,24719063,4
+91140332,24719063,4
+53947728,24719063,4
+68912728,24719063,5
+xzx2011,24719063,4
+63306444,24719063,3
+131628728,24719063,4
+57819875,24719063,5
+69242656,24719063,5
+sharrie,24719063,4
+50093835,24719063,4
+88668053,24719063,1
+2990853,24719063,4
+51289537,24719063,3
+1622521,24719063,3
+migee,24719063,5
+3112475,24719063,5
+senlintu,24719063,4
+summermayfly,24719063,3
+66115103,24719063,4
+YanY392938188,24719063,5
+2032764,24719063,3
+50682744,24719063,5
+57818340,24719063,3
+81510171,24719063,1
+wyt0102,24719063,4
+3496998,24719063,5
+3496998,24719063,5
+2658066,24719063,5
+tigerout,24719063,2
+50997457,24719063,3
+1482191,24719063,4
+65179934,24719063,3
+eyeinhand,24719063,4
+50066816,24719063,3
+23189422,24719063,3
+missaaa,24719063,-1
+44483182,24719063,4
+jjq_wuyi,24719063,4
+3898330,24719063,3
+28141432,24719063,5
+ATTR,24719063,4
+4115756,24719063,5
+xoki,24719063,4
+52470011,24719063,4
+58705238,24719063,3
+53573790,24719063,5
+49706476,24719063,3
+75956703,24719063,5
+43236574,24719063,4
+47002742,24719063,5
+69611074,24719063,4
+lfyaya,24719063,3
+49558870,24719063,5
+attlauy,24719063,3
+abalone91,24719063,3
+keke729,24719063,4
+60747828,24719063,4
+x_zr525,24719063,5
+xxsheng,24719063,4
+57853531,24719063,4
+i840152811,24719063,4
+124387754,24719063,1
+121583636,24719063,5
+43244299,24719063,5
+59128714,24719063,5
+47760602,24719063,5
+122173068,24719063,3
+jungjay,24719063,4
+41208413,24719063,4
+120332872,24719063,3
+53362350,24719063,4
+96410540,24719063,4
+64519164,24719063,5
+56580928,24719063,4
+90736306,24719063,3
+mufengqin,24719063,4
+65224437,24719063,5
+beloved-seven,24719063,3
+71720681,24719063,4
+48562105,24719063,5
+glax,24719063,4
+116394640,24719063,4
+balancee,24719063,4
+AthenaAtlas,24719063,4
+103446908,24719063,4
+puhuahua,24719063,5
+1373968,24719063,5
+ZLeaves,24719063,4
+21960688,24719063,5
+fstuntun,24719063,4
+32737561,24719063,4
+80681000,24719063,4
+73453858,24719063,4
+FifthDlassie,24719063,5
+justlinling,24719063,4
+77476265,24719063,3
+andynihan,24719063,4
+lemooonlh,24719063,-1
+78977506,24719063,3
+66745395,24719063,5
+faycheung,24719063,2
+51443474,24719063,3
+53206696,24719063,4
+45291333,24719063,4
+maybe520sunshin,24719063,4
+paranoiaman,24719063,4
+LScott,24719063,5
+31562126,24719063,1
+yangborui,24719063,5
+4411595,24719063,4
+46220008,24719063,2
+47904192,24719063,5
+xiaoxi1252,24719063,3
+12936883,24719063,-1
+51312401,24719063,5
+yumofu,24719063,2
+64729781,24719063,5
+127426227,24719063,5
+48125005,24719063,3
+65366981,24719063,5
+83079271,24719063,-1
+3719774,24719063,2
+1220427,24719063,3
+12511983,24719063,3
+64818273,24719063,4
+1587535,24719063,3
+bayernwin,24719063,4
+98917941,24719063,4
+42568988,24719063,3
+53303336,24719063,4
+48288705,24719063,5
+powerfultony,24719063,3
+Royxlam,24719063,2
+53351588,24719063,3
+2341185,24719063,3
+66550666,24719063,3
+73421177,24719063,3
+50197826,24719063,3
+hwf254,24719063,1
+Ray_W,24719063,4
+76873283,24719063,4
+11012424,24719063,3
+116573255,24719063,4
+39768482,24719063,4
+76413878,24719063,4
+78468587,24719063,4
+89436393,24719063,3
+45107269,24719063,4
+130479445,24719063,5
+56313808,24719063,4
+VivianChow317,24719063,5
+52444506,24719063,3
+74663027,24719063,3
+50444681,24719063,4
+129629477,24719063,3
+69325397,24719063,3
+70103274,24719063,5
+47479797,24719063,2
+41330877,24719063,3
+45111176,24719063,4
+73150320,24719063,4
+62144051,24719063,3
+80319931,24719063,4
+48777727,24719063,5
+smqllj,24719063,5
+3638249,24719063,5
+Sonntag,24719063,4
+2590915,24719063,3
+3833311,24719063,4
+jindadong,24719063,2
+mysubi,24719063,4
+63635337,24719063,4
+hkl0711,24719063,4
+130464213,24719063,3
+50013150,24719063,4
+yin5,24719063,3
+taylorzc,24719063,4
+55623765,24719063,-1
+11472770,24719063,5
+rococoman,24719063,1
+silent_island,24719063,5
+2475595,24719063,3
+77092352,24719063,3
+ltheaven,24719063,5
+62877248,24719063,3
+129274650,24719063,2
+113404948,24719063,5
+kevinzhang21,24719063,5
+69023727,24719063,5
+48756490,24719063,4
+72519179,24719063,5
+colintide,24719063,4
+loveniuniu,24719063,3
+63830728,24719063,3
+oooooocc,24719063,4
+dashan1928,24719063,5
+pgydw,24719063,2
+anjingyigeren,24719063,-1
+29315501,24719063,5
+Stanleyhai,24719063,4
+96869610,24719063,3
+79452838,24719063,5
+50282831,24719063,4
+46397046,24719063,4
+3376754,24719063,4
+66237030,24719063,4
+97034712,24719063,4
+wxhsolo,24719063,3
+wennan_z,24719063,4
+inzaghi0301,24719063,4
+2119491,24719063,5
+heidyxu,24719063,3
+35563725,24719063,3
+35008425,24719063,2
+89757394,24719063,4
+121616472,24719063,1
+lbq023,24719063,4
+50353681,24719063,4
+apolloyymakeit,24719063,4
+yuntun,24719063,5
+51496241,24719063,5
+ft5239328,24719063,3
+liuhuishi,24719063,-1
+33438465,24719063,4
+43089605,24719063,5
+53808259,24719063,4
+54672231,24719063,5
+135335880,24719063,4
+74768790,24719063,3
+leedong,24719063,5
+DivaTequila,24719063,4
+44527198,24719063,5
+76733820,24719063,4
+102679533,24719063,4
+endlessid,24719063,2
+missingmycat,24719063,5
+princewk1008,24719063,3
+71989717,24719063,4
+114143891,24719063,3
+133094793,24719063,4
+dugujunyuan,24719063,5
+119063618,24719063,4
+84389358,24719063,5
+52219048,24719063,4
+27582675,24719063,2
+ALSASH,24719063,2
+left-em,24719063,3
+81930957,24719063,4
+68747518,24719063,4
+yingcao,24719063,5
+85324202,24719063,4
+sunshinetoo,24719063,2
+131837034,24719063,4
+48421106,24719063,5
+star0607,24719063,5
+100631304,24719063,3
+69019465,24719063,5
+136040719,24719063,3
+40934141,24719063,3
+65681528,24719063,5
+73016853,24719063,5
+36399495,24719063,4
+ArturiaPendrag,24719063,4
+bearhearted,24719063,3
+43500933,24719063,3
+mihoutuan,24719063,3
+mihoutuan,24719063,3
+2097784,24719063,3
+78675448,24719063,4
+3114580,24719063,4
+66757366,24719063,5
+2788057,24719063,4
+59114112,24719063,5
+bela,24719063,4
+59110325,24719063,4
+133839811,24719063,3
+lalmeavr,24719063,4
+40672679,24719063,4
+cogitoergosum,24719063,4
+90496794,24719063,3
+kouok,24719063,5
+48539301,24719063,3
+yumami,24719063,1
+FreezeJenny,24719063,5
+64276762,24719063,5
+3085720,24719063,3
+34727533,24719063,4
+sourcek2,24719063,5
+87719224,24719063,4
+34011772,24719063,4
+2586114,24719063,4
+50416874,24719063,4
+11283213,24719063,4
+4415405,24719063,3
+126329792,24719063,3
+134193379,24719063,5
+daisylau,24719063,4
+73027943,24719063,4
+30221113,24719063,3
+2212675,24719063,4
+buyiding2011,24719063,3
+48622522,24719063,5
+1333942,24719063,3
+alexliuxirong,24719063,5
+35902921,24719063,4
+3041980,24719063,4
+junqli86,24719063,4
+21606016,24719063,4
+45055967,24719063,4
+51432008,24719063,5
+28185222,24719063,4
+58993802,24719063,4
+55872000,24719063,3
+fengzi0803,24719063,5
+52798749,24719063,4
+136418521,24719063,3
+63281322,24719063,4
+133944543,24719063,4
+4123613,24719063,5
+51016354,24719063,4
+wangxi,24719063,4
+4719654,24719063,4
+JLikeOOXX,24719063,5
+126875781,24719063,5
+90647626,24719063,3
+chinazhuoer,24719063,5
+85763396,24719063,-1
+119301457,24719063,4
+58042557,24719063,4
+2044324,24719063,5
+136522229,24719063,5
+65133684,24719063,4
+61424734,24719063,4
+42084433,24719063,4
+kevindai,24719063,4
+40241549,24719063,4
+61328119,24719063,5
+136520345,24719063,4
+xiaopang1106,24719063,4
+61064528,24719063,5
+kidify,24719063,2
+128142989,24719063,5
+54069821,24719063,4
+82722362,24719063,3
+43019419,24719063,4
+6990422,24719063,3
+3929718,24719063,4
+60903715,24719063,5
+119848906,24719063,5
+4564181,24719063,4
+53316387,24719063,3
+hfguren,24719063,3
+65606655,24719063,4
+90813983,24719063,5
+45324453,24719063,4
+69197339,24719063,5
+huoshuyinhua,24719063,3
+136518769,24719063,5
+88047435,24719063,3
+130189758,24719063,5
+abuwangzi,24719063,4
+136517936,24719063,4
+67971024,24719063,4
+1721242,24719063,4
+83805551,24719063,3
+wenyijiji,24719063,4
+2154617,24719063,3
+10670904,24719063,3
+99910728,24719063,3
+3305024,24719063,3
+125314923,24719063,3
+3608042,24719063,5
+zhaijiaming,24719063,-1
+PsychoMissSo,24719063,2
+wyjfl,24719063,3
+1968681,24719063,4
+Leung_QY,24719063,3
+flyingfishqueen,24719063,4
+52363732,24719063,4
+65880226,24719063,3
+68916586,24719063,4
+17871243,24719063,4
+tomerlaw,24719063,4
+120399913,24719063,5
+45608027,24719063,4
+40982141,24719063,5
+zhengchengcheng,24719063,3
+49405022,24719063,1
+65145767,24719063,3
+81691649,24719063,4
+125814755,24719063,5
+Green-fly,24719063,4
+48335260,24719063,5
+BONDAJ,24719063,4
+51728085,24719063,5
+1265651,24719063,1
+70992635,24719063,5
+Sceen,24719063,4
+87651171,24719063,2
+64540880,24719063,4
+4715615,24719063,4
+kiwi_cc,24719063,5
+48724740,24719063,5
+Forrestgary,24719063,5
+128409852,24719063,4
+42939713,24719063,3
+42939713,24719063,3
+131146429,24719063,4
+35628940,24719063,3
+64230829,24719063,4
+JIUSHU87,24719063,2
+67570635,24719063,3
+51915169,24719063,4
+3595754,24719063,5
+94579843,24719063,4
+63108147,24719063,5
+6632074,24719063,4
+4002589,24719063,4
+97512694,24719063,3
+KD-0079,24719063,1
+44937867,24719063,4
+papermoon_niky,24719063,3
+50011332,24719063,4
+shiweiwei,24719063,4
+91936918,24719063,4
+saviolalwj,24719063,3
+Sophiaxixi,24719063,5
+136429512,24719063,5
+amenlovesle,24719063,3
+4019398,24719063,4
+57724902,24719063,5
+63605240,24719063,5
+56765472,24719063,-1
+sun_g,24719063,2
+kidblg,24719063,3
+70930463,24719063,4
+40161822,24719063,4
+yiritang,24719063,2
+weijie1995,24719063,4
+136118939,24719063,2
+56916670,24719063,3
+48817278,24719063,3
+115524075,24719063,4
+78632729,24719063,5
+1693083,24719063,4
+bluestone17,24719063,4
+2963229,24719063,3
+77186305,24719063,4
+lear7,24719063,4
+135880399,24719063,2
+136421859,24719063,4
+2171370,24719063,3
+BuckyBarnes,24719063,3
+52606809,24719063,4
+51784561,24719063,3
+123180881,24719063,5
+136100399,24719063,4
+1114835,24719063,5
+106916966,24719063,3
+45537891,24719063,4
+hongna,24719063,3
+128652326,24719063,4
+56267380,24719063,-1
+49145848,24719063,5
+Alejandro0929,24719063,3
+frontboy,24719063,5
+49854579,24719063,4
+jeremylei,24719063,4
+45324744,24719063,4
+40686495,24719063,5
+35257385,24719063,4
+102108363,24719063,5
+84951260,24719063,4
+59510725,24719063,5
+64598866,24719063,5
+68350909,24719063,3
+susy0915,24719063,5
+56049056,24719063,5
+3307476,24719063,4
+81102769,24719063,4
+92926718,24719063,5
+135314519,24719063,5
+crackevil,24719063,3
+1539693,24719063,5
+47474787,24719063,4
+shallun,24719063,4
+shallun,24719063,4
+50926664,24719063,5
+caicai1005,24719063,4
+61981962,24719063,4
+131033417,24719063,4
+nimonnwang,24719063,4
+Lyn.L.Lee,24719063,5
+82686873,24719063,3
+ak-some,24719063,5
+119644008,24719063,3
+linayan,24719063,5
+llabria,24719063,5
+126146488,24719063,4
+Burglar932,24719063,4
+87023134,24719063,3
+Dushanbe,24719063,4
+130540529,24719063,3
+41086018,24719063,4
+116767198,24719063,5
+53877349,24719063,4
+37149265,24719063,4
+3619881,24719063,4
+mengweis,24719063,4
+3744867,24719063,2
+sophoi,24719063,4
+amwtt,24719063,5
+52097523,24719063,4
+85035991,24719063,3
+stilllyness,24719063,4
+Qevernever,24719063,3
+puppysora,24719063,4
+50778763,24719063,4
+V.J.,24719063,5
+136256083,24719063,5
+126217193,24719063,5
+132582054,24719063,4
+85445252,24719063,3
+98273529,24719063,5
+zhifang828,24719063,4
+40488240,24719063,4
+53833067,24719063,4
+51281256,24719063,4
+ANN.iE,24719063,4
+125770398,24719063,4
+120790874,24719063,-1
+136059490,24719063,5
+jessicatow,24719063,5
+shizhier,24719063,5
+71294112,24719063,4
+62380002,24719063,5
+129276745,24719063,4
+120828757,24719063,4
+48542803,24719063,4
+supernuo,24719063,3
+gh13singer,24719063,4
+67689872,24719063,4
+wei75820,24719063,5
+71837063,24719063,3
+44545731,24719063,4
+below17,24719063,3
+92943106,24719063,3
+89050593,24719063,3
+gg_gogoing,24719063,3
+pengyaos,24719063,4
+2364299,24719063,4
+qindaiqiao,24719063,4
+alonebeauty,24719063,5
+70686440,24719063,4
+Claudialovedad,24719063,5
+48113232,24719063,3
+chunfenghuayu23,24719063,3
+67004565,24719063,3
+53816359,24719063,5
+2175454,24719063,5
+52971629,24719063,3
+134532187,24719063,3
+ivoryivor,24719063,3
+54704732,24719063,3
+54878876,24719063,3
+55880604,24719063,4
+y888888888,24719063,4
+zhuzaixuanyabia,24719063,4
+clarified,24719063,3
+Alone-2,24719063,5
+70951210,24719063,3
+tomop,24719063,5
+103495727,24719063,4
+throughtherock,24719063,5
+1364576,24719063,3
+zangyaqiong,24719063,4
+73861786,24719063,4
+49250777,24719063,4
+76573898,24719063,3
+130043665,24719063,3
+meola,24719063,4
+131415634,24719063,3
+127375314,24719063,5
+82573994,24719063,5
+124905970,24719063,4
+59097558,24719063,-1
+83119154,24719063,3
+24557674,24719063,5
+51544041,24719063,3
+135499933,24719063,4
+4867663,24719063,-1
+ixiawyj,24719063,2
+2229889,24719063,3
+129480991,24719063,3
+63100903,24719063,-1
+116408059,24719063,2
+29783240,24719063,5
+twdpx,24719063,3
+54048187,24719063,5
+47656185,24719063,4
+57126975,24719063,5
+carino8023,24719063,4
+77922789,24719063,4
+39696481,24719063,4
+4212153,24719063,4
+yashamaru,24719063,3
+hjan207,24719063,4
+25704051,24719063,4
+135623300,24719063,3
+131034480,24719063,4
+4378232,24719063,5
+37255357,24719063,5
+3060152,24719063,3
+2762446,24719063,4
+Katharine205,24719063,3
+134537950,24719063,4
+89438098,24719063,4
+132686664,24719063,3
+71625816,24719063,4
+iamliving,24719063,3
+xiaoweiwang,24719063,4
+49284673,24719063,3
+79875260,24719063,4
+BobMing,24719063,3
+62444028,24719063,4
+41811201,24719063,3
+Sweetchin_music,24719063,5
+132683835,24719063,4
+33411804,24719063,4
+nxam,24719063,3
+brenda816,24719063,-1
+51416132,24719063,4
+129086098,24719063,5
+128233501,24719063,4
+132151903,24719063,5
+sunniva,24719063,5
+121064013,24719063,3
+hsyh1989,24719063,4
+128403577,24719063,5
+keh1124,24719063,3
+59799868,24719063,4
+58466235,24719063,4
+coffeejikou,24719063,4
+Zaytun,24719063,4
+41863858,24719063,4
+73047239,24719063,3
+73047239,24719063,3
+2604080,24719063,4
+81160024,24719063,4
+2010767,24719063,4
+summersuy,24719063,4
+31768026,24719063,4
+41651079,24719063,4
+Lucifer_0,24719063,4
+frankxumomo,24719063,3
+135897690,24719063,5
+121352443,24719063,3
+mhyigeren,24719063,3
+82912362,24719063,3
+ailaoshan,24719063,3
+wendyqi0217,24719063,4
+yuyanlin,24719063,3
+allissky,24719063,-1
+56871206,24719063,3
+104365614,24719063,3
+12384810,24719063,4
+hi_blue,24719063,3
+38449214,24719063,5
+47145571,24719063,4
+Flowerchild,24719063,4
+129698032,24719063,3
+vivianclytze,24719063,5
+heyheymail,24719063,5
+yixiaoyan_,24719063,5
+64165773,24719063,5
+2922988,24719063,3
+132941950,24719063,4
+kimhwa,24719063,5
+bunnytoothed,24719063,4
+64569913,24719063,4
+60877547,24719063,4
+53872726,24719063,4
+132772142,24719063,4
+Junekira,24719063,3
+57367354,24719063,2
+54512951,24719063,4
+56809858,24719063,4
+84263251,24719063,4
+Stamay_chou,24719063,4
+67520921,24719063,3
+61959364,24719063,4
+59027708,24719063,3
+95827181,24719063,4
+61233615,24719063,5
+luxixi99,24719063,2
+dreams_be_dream,24719063,4
+shgy,24719063,3
+100438100,24719063,3
+PsyLadyTricky,24719063,4
+90433807,24719063,4
+16792916,24719063,4
+131471368,24719063,5
+37371711,24719063,4
+50276433,24719063,3
+42241703,24719063,3
+ningjuntao,24719063,5
+51444477,24719063,3
+33387754,24719063,3
+135761559,24719063,4
+102603343,24719063,4
+72712114,24719063,4
+103277074,24719063,4
+70448343,24719063,4
+100365623,24719063,4
+3182850,24719063,4
+3427459,24719063,5
+laura2zero,24719063,3
+70918247,24719063,4
+48137459,24719063,4
+magilee0608,24719063,4
+oksklok,24719063,4
+46579492,24719063,4
+68866043,24719063,3
+53940733,24719063,3
+Bigric,24719063,3
+harlanlee,24719063,5
+4340826,24719063,4
+zhiliaofly,24719063,4
+57588789,24719063,4
+zuoxiaoan45,24719063,4
+48004857,24719063,3
+49314835,24719063,4
+70526937,24719063,4
+Alice.Z,24719063,5
+qingxiaowei,24719063,5
+caizichen,24719063,4
+30714456,24719063,5
+1754955,24719063,5
+moguliao,24719063,4
+89565628,24719063,5
+luoyanbella,24719063,4
+lichade,24719063,4
+MeloTheFisher,24719063,4
+tiramisu-1990,24719063,3
+59964725,24719063,3
+arsenalfc,24719063,4
+wuchen11,24719063,5
+52186125,24719063,5
+eternalsummer87,24719063,4
+moontrain,24719063,3
+69015025,24719063,4
+seizeup,24719063,4
+1040460,24719063,5
+63971578,24719063,4
+zhangyawei,24719063,3
+79560195,24719063,4
+45236466,24719063,4
+51500342,24719063,4
+44182814,24719063,4
+52343530,24719063,4
+50025561,24719063,-1
+52999504,24719063,4
+53451776,24719063,3
+NCelestial,24719063,4
+135743146,24719063,4
+67077471,24719063,4
+nalusea,24719063,4
+noodleno3,24719063,5
+57396518,24719063,3
+62656357,24719063,4
+131088408,24719063,3
+3666746,24719063,5
+Halisadreamer,24719063,5
+vividzjr,24719063,3
+57581825,24719063,4
+80290185,24719063,3
+56053812,24719063,3
+46817011,24719063,3
+88298749,24719063,4
+summerday510,24719063,4
+54039981,24719063,4
+minox,24719063,3
+48547507,24719063,5
+77182086,24719063,4
+49155542,24719063,4
+34764800,24719063,4
+49138712,24719063,4
+61999162,24719063,4
+62449667,24719063,-1
+84601671,24719063,3
+116717024,24719063,4
+Bai-Bbai,24719063,4
+baigao,24719063,4
+114991834,24719063,4
+39954495,24719063,5
+1242575,24719063,4
+32408831,24719063,5
+127722422,24719063,4
+135709789,24719063,4
+bluejessica,24719063,5
+xinyu1890,24719063,4
+135647565,24719063,4
+73532203,24719063,4
+xize0315,24719063,3
+103124319,24719063,3
+atdogdoor,24719063,5
+ranwei,24719063,4
+85191711,24719063,5
+44498578,24719063,3
+jarodzy,24719063,4
+51440227,24719063,3
+linglongwunv,24719063,4
+61930666,24719063,4
+62708720,24719063,5
+128237011,24719063,5
+49472827,24719063,4
+Jerusalem,24719063,4
+82911001,24719063,3
+58242884,24719063,4
+122536695,24719063,4
+Coreasshole,24719063,4
+80622644,24719063,4
+85750043,24719063,5
+104093552,24719063,1
+alice-cat,24719063,4
+124123020,24719063,3
+124123020,24719063,3
+102778571,24719063,3
+69646030,24719063,4
+struggle_utopia,24719063,5
+3627412,24719063,3
+89270889,24719063,5
+cyygigig,24719063,4
+lynnmoon,24719063,4
+17790607,24719063,4
+qinxiaoyiqu,24719063,3
+chensiju,24719063,4
+Nicccklee,24719063,5
+15071816,24719063,4
+xiangs,24719063,3
+57089947,24719063,5
+22040154,24719063,4
+30830742,24719063,3
+66842471,24719063,4
+48360672,24719063,4
+75651763,24719063,2
+45775512,24719063,4
+135417989,24719063,3
+28345745,24719063,3
+128936024,24719063,5
+27036800,24719063,4
+newzaiku,24719063,5
+90746743,24719063,4
+83815188,24719063,4
+66903176,24719063,3
+79171936,24719063,4
+catbuild,24719063,3
+63202815,24719063,4
+1942591,24719063,4
+59885061,24719063,5
+40537905,24719063,3
+aiconanao,24719063,3
+132076381,24719063,3
+56964823,24719063,5
+3647365,24719063,4
+Su33er,24719063,4
+ymli,24719063,4
+133497939,24719063,4
+momoko1024,24719063,4
+83433400,24719063,3
+kafuxi,24719063,4
+mizzro,24719063,3
+45743155,24719063,4
+130236663,24719063,5
+78264692,24719063,3
+79465571,24719063,4
+yum0808,24719063,4
+taoj1,24719063,3
+honeysuckle719,24719063,4
+65718372,24719063,4
+122340180,24719063,4
+91841828,24719063,2
+130569620,24719063,4
+92005501,24719063,5
+65121703,24719063,3
+60118052,24719063,5
+37420534,24719063,4
+57163926,24719063,4
+zzjackonline,24719063,5
+48875745,24719063,5
+71719658,24719063,4
+48200922,24719063,4
+57063106,24719063,3
+121152580,24719063,4
+2999725,24719063,5
+wdmmmmmm,24719063,5
+70350780,24719063,4
+49302658,24719063,5
+51006539,24719063,4
+135614717,24719063,4
+34304437,24719063,4
+46364812,24719063,3
+2432104,24719063,5
+129219793,24719063,4
+58131895,24719063,3
+56330466,24719063,5
+49334880,24719063,4
+62498014,24719063,4
+youzidao,24719063,4
+49531953,24719063,4
+58414355,24719063,4
+69757520,24719063,3
+133623955,24719063,5
+Fice,24719063,2
+qianjin,24719063,4
+135584581,24719063,3
+67400745,24719063,4
+RoveSoul,24719063,5
+35276844,24719063,5
+fenshoudashi,24719063,4
+lewis_zzc,24719063,5
+55566255,24719063,5
+135584611,24719063,5
+uncle,24719063,5
+49166679,24719063,4
+55280126,24719063,4
+1964346,24719063,2
+37793108,24719063,4
+52029412,24719063,4
+suzhaoyang,24719063,4
+61811107,24719063,3
+47022062,24719063,4
+48127806,24719063,4
+ineffable,24719063,4
+miemiemind,24719063,4
+66687586,24719063,3
+63890745,24719063,4
+73709289,24719063,4
+never-land-bird,24719063,3
+116778730,24719063,3
+134495648,24719063,3
+20194870,24719063,3
+nanaseventh,24719063,4
+sleepydaisy,24719063,4
+82443240,24719063,5
+130988431,24719063,4
+53487447,24719063,4
+ODODOD,24719063,5
+62635630,24719063,4
+4433770,24719063,5
+135279955,24719063,3
+59796808,24719063,4
+62011920,24719063,3
+lms1997,24719063,5
+49963574,24719063,5
+68397751,24719063,3
+FluffYisF,24719063,5
+54045007,24719063,5
+62370377,24719063,5
+57605745,24719063,4
+68850972,24719063,3
+swanman17,24719063,4
+63019074,24719063,5
+83284105,24719063,3
+128617296,24719063,5
+69168173,24719063,4
+48942391,24719063,3
+53595474,24719063,3
+42038071,24719063,3
+122979818,24719063,5
+sophytao,24719063,4
+119263777,24719063,1
+littlejoong,24719063,3
+50741727,24719063,5
+14605992,24719063,4
+56322830,24719063,3
+73033279,24719063,3
+115331040,24719063,4
+58988950,24719063,4
+29575216,24719063,4
+67767725,24719063,4
+61845707,24719063,3
+128187814,24719063,3
+64332038,24719063,5
+34315445,24719063,4
+48100528,24719063,4
+58301523,24719063,4
+pantasu,24719063,4
+4028097,24719063,4
+blackeleven,24719063,4
+MMMangojz,24719063,4
+65604214,24719063,3
+sarainotes,24719063,5
+83060870,24719063,4
+119371106,24719063,5
+17041980,24719063,4
+30532525,24719063,4
+51828562,24719063,4
+2553333,24719063,4
+60057120,24719063,4
+102122606,24719063,4
+49892872,24719063,3
+3812350,24719063,4
+59482177,24719063,3
+chenahu,24719063,4
+54231110,24719063,4
+39210595,24719063,4
+annieer,24719063,3
+47468400,24719063,4
+53833816,24719063,4
+4666419,24719063,4
+kitano,24719063,3
+96490824,24719063,4
+126874996,24719063,4
+foolfoo,24719063,4
+91253707,24719063,5
+Aries-in-douban,24719063,4
+14741731,24719063,4
+49590118,24719063,3
+istrangers,24719063,3
+73749265,24719063,4
+135178640,24719063,4
+Wasted,24719063,4
+3855018,24719063,4
+2471156,24719063,5
+29946371,24719063,-1
+46402600,24719063,4
+58055765,24719063,4
+56015661,24719063,4
+125138694,24719063,4
+49198911,24719063,4
+71394820,24719063,4
+120002421,24719063,5
+rikkiwan,24719063,3
+81668154,24719063,4
+musicool99,24719063,3
+64825748,24719063,4
+48006044,24719063,3
+75531469,24719063,3
+131510377,24719063,3
+nevershuo,24719063,4
+27091040,24719063,2
+125583691,24719063,4
+62115196,24719063,4
+missing7V,24719063,3
+37183583,24719063,5
+2480244,24719063,4
+53464840,24719063,5
+77081639,24719063,4
+52116130,24719063,3
+emmycatty,24719063,3
+52169768,24719063,4
+54538602,24719063,4
+134825339,24719063,4
+135415731,24719063,5
+69448551,24719063,5
+58810915,24719063,4
+bennyjoon,24719063,4
+46567441,24719063,5
+82268934,24719063,5
+49505291,24719063,4
+alphes,24719063,5
+66519377,24719063,3
+coolzhao11,24719063,4
+122060054,24719063,3
+38752361,24719063,4
+38752361,24719063,4
+72779825,24719063,4
+shuaziwang,24719063,4
+33679145,24719063,4
+70238727,24719063,5
+4607251,24719063,5
+evelyn_myt,24719063,4
+47073167,24719063,4
+tikrothia,24719063,4
+119592690,24719063,4
+18571046,24719063,5
+xiaoluohao,24719063,3
+hdyhome,24719063,4
+2226544,24719063,1
+53392346,24719063,5
+53679658,24719063,3
+kapala,24719063,3
+135436520,24719063,3
+Just4U_M21,24719063,2
+127383061,24719063,-1
+99401561,24719063,3
+51876413,24719063,3
+69925439,24719063,-1
+57324585,24719063,5
+48129305,24719063,4
+48318463,24719063,4
+6874363,24719063,4
+soumoto,24719063,5
+135425885,24719063,3
+68564015,24719063,3
+135072611,24719063,5
+82438819,24719063,4
+3536775,24719063,4
+55447276,24719063,3
+52430897,24719063,3
+superran,24719063,4
+has5211314,24719063,4
+62442091,24719063,3
+60079071,24719063,4
+57180055,24719063,4
+69280420,24719063,4
+113286915,24719063,3
+51853124,24719063,3
+79571891,24719063,4
+71814599,24719063,-1
+124674218,24719063,4
+50969547,24719063,3
+18746695,24719063,3
+48252437,24719063,3
+five_eren,24719063,4
+132680521,24719063,5
+themissingken,24719063,3
+4758300,24719063,2
+119924623,24719063,5
+56528486,24719063,4
+64123749,24719063,2
+105139193,24719063,4
+76035165,24719063,4
+44599413,24719063,4
+126994808,24719063,4
+132763347,24719063,4
+81311477,24719063,4
+withCR7,24719063,3
+102939359,24719063,4
+izzie,24719063,4
+3245265,24719063,5
+33266508,24719063,4
+85016135,24719063,4
+50936585,24719063,5
+72023671,24719063,4
+Erva,24719063,4
+41385833,24719063,3
+26648126,24719063,4
+RedKimi,24719063,2
+AJDENOLE-,24719063,5
+xpilot,24719063,5
+109026469,24719063,2
+phoebegarden,24719063,5
+73024171,24719063,4
+stoneshen,24719063,4
+132011879,24719063,5
+qingxuan0706,24719063,5
+2539331,24719063,4
+125367351,24719063,5
+majoselyqiujuan,24719063,4
+2725034,24719063,3
+65550387,24719063,5
+litian19890502,24719063,5
+34284665,24719063,3
+121932752,24719063,4
+yigeguniang,24719063,4
+53981944,24719063,4
+2891105,24719063,3
+62487097,24719063,4
+jixiaolei0830,24719063,2
+40443774,24719063,4
+53952389,24719063,4
+56035155,24719063,3
+82834599,24719063,4
+122457264,24719063,4
+pear_zi,24719063,4
+cwei315,24719063,4
+49588596,24719063,3
+51165620,24719063,3
+65364645,24719063,2
+noeee_j,24719063,5
+131406948,24719063,4
+rainze,24719063,4
+79642235,24719063,5
+GipsySilencer,24719063,-1
+76236179,24719063,4
+53289993,24719063,4
+hasejun,24719063,4
+40670212,24719063,5
+tinywhowho,24719063,4
+68730494,24719063,5
+131680692,24719063,5
+133157463,24719063,2
+qtqyz,24719063,4
+lxlkey,24719063,4
+silence_queen,24719063,5
+8412795,24719063,3
+74826577,24719063,5
+134275392,24719063,4
+135283112,24719063,4
+yurisong,24719063,2
+dawnef,24719063,4
+124033490,24719063,5
+47250941,24719063,3
+42517451,24719063,4
+cutebug,24719063,4
+135211263,24719063,4
+rainstopgoodbye,24719063,4
+46497115,24719063,3
+keneyzhao,24719063,5
+37369275,24719063,4
+45623540,24719063,4
+summer9186,24719063,3
+just_nomadic,24719063,5
+qingyue516,24719063,4
+63479785,24719063,4
+valleyshan,24719063,4
+37736612,24719063,4
+2986985,24719063,4
+sallymour,24719063,4
+thelovebones,24719063,5
+dylite,24719063,4
+josephcat,24719063,4
+131569723,24719063,4
+yulehe,24719063,4
+lycyycc,24719063,3
+45529514,24719063,4
+72539534,24719063,4
+ELSIE627,24719063,3
+obstinateIEMs,24719063,4
+45454464,24719063,4
+49469319,24719063,-1
+aiqingyuhuiyi,24719063,3
+61509749,24719063,4
+brandonfong,24719063,5
+15074722,24719063,5
+wawa66,24719063,4
+TooYoungToosP,24719063,-1
+Ann_137185690,24719063,4
+wildblackcat,24719063,-1
+77536605,24719063,5
+135298874,24719063,5
+mimosalan,24719063,2
+Vampire1004,24719063,4
+orfine,24719063,4
+55319489,24719063,4
+87756432,24719063,5
+zoelovepuppy,24719063,4
+bauta,24719063,4
+helenooc,24719063,4
+martinchen,24719063,4
+125488327,24719063,5
+yeeeeeee,24719063,4
+41998379,24719063,-1
+51918247,24719063,-1
+59413586,24719063,-1
+61709335,24719063,5
+dearbeast,24719063,-1
+dgzy1644,24719063,5
+affewen,24719063,3
+53811842,24719063,1
+55678526,24719063,4
+myself920,24719063,4
+rustneversleeps,24719063,4
+41814108,24719063,-1
+67844394,24719063,3
+133852846,24719063,4
+62507474,24719063,4
+37569925,24719063,-1
+71712133,24719063,4
+90805160,24719063,4
+xiatan,24719063,5
+117236221,24719063,-1
+77371780,24719063,4
+paradoxxx,24719063,4
+39245426,24719063,4
+willdawn,24719063,3
+43801354,24719063,4
+feeler_,24719063,4
+2697421,24719063,5
+emiliaysean,24719063,4
+76560809,24719063,3
+yang0826,24719063,5
+53307957,24719063,5
+104165037,24719063,4
+mickey19900513,24719063,3
+tl870,24719063,4
+41420170,24719063,5
+77199851,24719063,3
+52460447,24719063,5
+82229229,24719063,5
+103393975,24719063,4
+50292036,24719063,3
+whokn,24719063,4
+65340506,24719063,4
+124825941,24719063,5
+wazis,24719063,4
+48884113,24719063,4
+51907207,24719063,4
+lc19880804,24719063,-1
+46708919,24719063,5
+68874282,24719063,4
+45929722,24719063,4
+zoezhangzz,24719063,4
+47319867,24719063,5
+matcha007,24719063,-1
+58464798,24719063,5
+SpancerM,24719063,5
+61321389,24719063,4
+54086705,24719063,5
+67678601,24719063,5
+hunhunsui,24719063,4
+fujiayan,24719063,5
+59372701,24719063,4
+4488756,24719063,2
+68227361,24719063,5
+49893680,24719063,4
+neverarthur,24719063,5
+dsdg,24719063,4
+46876577,24719063,4
+dshbusiness,24719063,5
+56431276,24719063,4
+106182429,24719063,5
+DODOwoo,24719063,4
+psynonder,24719063,3
+63411334,24719063,4
+54366340,24719063,3
+60563094,24719063,3
+mayoke,24719063,5
+34842183,24719063,3
+80175824,24719063,5
+1880923,24719063,5
+65141663,24719063,4
+84782715,24719063,4
+68978681,24719063,4
+68124742,24719063,4
+ting_shark,24719063,-1
+MattB,24719063,2
+69091213,24719063,4
+3602674,24719063,3
+60652352,24719063,3
+2618961,24719063,4
+29374473,24719063,4
+vikissss,24719063,4
+Zhaokai0226,24719063,3
+70724511,24719063,4
+46346298,24719063,5
+65042146,24719063,3
+124832004,24719063,3
+95074857,24719063,5
+wenwendang,24719063,4
+62140009,24719063,3
+51760780,24719063,5
+ellencc,24719063,-1
+shling1900,24719063,4
+jeady2311,24719063,4
+1460850,24719063,3
+120556407,24719063,3
+115721439,24719063,5
+shinsukeholic,24719063,3
+47368646,24719063,4
+59881458,24719063,5
+61059314,24719063,5
+alalei214,24719063,3
+zhangjikun,24719063,4
+109261237,24719063,3
+53220116,24719063,4
+57996084,24719063,4
+53931035,24719063,5
+74278050,24719063,3
+zoe24,24719063,4
+blackboard0215,24719063,4
+52911845,24719063,4
+45828294,24719063,5
+68796799,24719063,3
+45828294,24719063,5
+68796799,24719063,3
+97354586,24719063,4
+12534073,24719063,-1
+84007571,24719063,5
+96898762,24719063,5
+103550111,24719063,4
+stellazz,24719063,2
+120963459,24719063,4
+brandnewstart,24719063,4
+78632463,24719063,4
+52292876,24719063,4
+43603952,24719063,4
+60788989,24719063,3
+4708937,24719063,4
+87884178,24719063,5
+49905882,24719063,3
+Vinceshen,24719063,4
+sureiamsure,24719063,4
+46078786,24719063,3
+61890434,24719063,5
+babelotus,24719063,4
+sherry974631,24719063,4
+41198660,24719063,4
+135175472,24719063,4
+94452570,24719063,5
+Popdai,24719063,5
+alikeila,24719063,5
+126475389,24719063,2
+enid1540,24719063,4
+54562143,24719063,4
+67515000,24719063,4
+61576058,24719063,4
+47436910,24719063,4
+131268122,24719063,3
+69856173,24719063,3
+lovezozo,24719063,1
+1340758,24719063,4
+48280227,24719063,4
+cocolinx,24719063,3
+46239859,24719063,3
+83413120,24719063,5
+moz_bing,24719063,4
+cindy_ming,24719063,4
+jojogiogio,24719063,3
+79457098,24719063,3
+53478105,24719063,4
+61845850,24719063,4
+SUMOylation,24719063,4
+manchukhan,24719063,4
+foxbaby_1104,24719063,5
+99193832,24719063,2
+59113427,24719063,4
+83640909,24719063,4
+shiyezi8877,24719063,5
+chaoren124,24719063,4
+35499746,24719063,5
+Tangss,24719063,-1
+luoqingyou,24719063,4
+fanyamin,24719063,3
+52320703,24719063,4
+haiin,24719063,5
+77579023,24719063,4
+50129382,24719063,4
+98344279,24719063,4
+134532071,24719063,4
+62690762,24719063,4
+53820448,24719063,4
+81985285,24719063,5
+mogujunmomo,24719063,3
+114435379,24719063,4
+44384908,24719063,-1
+xiaobob03,24719063,3
+135118905,24719063,3
+71466781,24719063,4
+AdorableMe,24719063,2
+tanjilion,24719063,3
+saker,24719063,4
+49521685,24719063,5
+68527536,24719063,4
+63576554,24719063,4
+66636487,24719063,4
+82796715,24719063,-1
+1656255,24719063,4
+junjiyang,24719063,-1
+klinken,24719063,4
+48808520,24719063,4
+alternativeH,24719063,4
+92945557,24719063,4
+68557847,24719063,5
+127563675,24719063,3
+2030775,24719063,3
+lilililizi,24719063,4
+longdeshijie,24719063,5
+42086535,24719063,5
+103420044,24719063,3
+37513325,24719063,4
+4471054,24719063,3
+janfle,24719063,4
+39122664,24719063,3
+3189855,24719063,5
+sabrinakeh,24719063,5
+andichou,24719063,3
+135042340,24719063,3
+54484555,24719063,4
+73530411,24719063,4
+69236111,24719063,3
+85113803,24719063,4
+kekedina,24719063,4
+126401152,24719063,4
+122586428,24719063,4
+Sophieee_sophie,24719063,4
+33907993,24719063,4
+115608839,24719063,3
+tanguohong,24719063,5
+134161390,24719063,5
+Nancyjxw,24719063,4
+61496311,24719063,4
+29947405,24719063,4
+32502933,24719063,4
+126959567,24719063,3
+130650007,24719063,4
+41502913,24719063,5
+everlastinglove,24719063,5
+123270343,24719063,5
+Bermuda-RAN,24719063,5
+ilmarie,24719063,4
+51338490,24719063,5
+57399239,24719063,4
+xiaofanskyfree,24719063,5
+arthurch10,24719063,4
+fengjiansun,24719063,5
+130319108,24719063,4
+52555096,24719063,3
+48495296,24719063,4
+Minus-M,24719063,2
+53768086,24719063,3
+74745339,24719063,4
+melodyshi,24719063,2
+yogurt2202,24719063,5
+fangzheer,24719063,5
+63579399,24719063,4
+63550302,24719063,5
+27783308,24719063,3
+60449837,24719063,1
+51002593,24719063,3
+122635365,24719063,3
+ALICE901,24719063,3
+ACGharris,24719063,3
+sincerity615,24719063,3
+3285194,24719063,3
+on1ooker,24719063,4
+for_y,24719063,4
+summerforever,24719063,4
+57653061,24719063,3
+vegyness,24719063,2
+66340029,24719063,4
+4697357,24719063,4
+xiduowawa,24719063,5
+zhaozhaoguo,24719063,5
+gyd,24719063,3
+46073568,24719063,4
+57741485,24719063,4
+34955631,24719063,3
+63924562,24719063,4
+57656024,24719063,4
+XC911,24719063,4
+79510832,24719063,5
+hutudan89,24719063,-1
+34596748,24719063,4
+71741760,24719063,4
+81985882,24719063,4
+bayueshuang,24719063,3
+52465643,24719063,4
+88938201,24719063,4
+fufei,24719063,4
+ajinian,24719063,4
+2545446,24719063,4
+13713408,24719063,3
+41839383,24719063,3
+63978060,24719063,4
+3671639,24719063,4
+36982718,24719063,4
+amanjj,24719063,-1
+48976051,24719063,4
+127378719,24719063,3
+MOGUANTHONY,24719063,4
+134180658,24719063,3
+1926552,24719063,4
+linlinhuangcc,24719063,5
+135012811,24719063,5
+yiliangsan,24719063,5
+ayouyoucats,24719063,5
+51263731,24719063,4
+62440182,24719063,5
+Aiyouyouyouyou,24719063,4
+47568379,24719063,3
+47029300,24719063,4
+sanyo,24719063,4
+amberaway,24719063,5
+61559411,24719063,4
+50783565,24719063,-1
+3590759,24719063,3
+natata,24719063,3
+Justlike,24719063,4
+2832706,24719063,4
+3996860,24719063,3
+105766847,24719063,4
+2174521,24719063,4
+34422499,24719063,4
+72655674,24719063,4
+72711765,24719063,3
+3556906,24719063,4
+54130378,24719063,4
+127975111,24719063,3
+30850754,24719063,4
+54960227,24719063,5
+mianchaodahai,24719063,4
+celia550,24719063,4
+55700551,24719063,3
+55700551,24719063,3
+fullmoon924,24719063,4
+4248246,24719063,3
+66641094,24719063,3
+63883474,24719063,5
+45944952,24719063,4
+27632752,24719063,4
+2713358,24719063,4
+elfvogue,24719063,4
+48203594,24719063,4
+39019803,24719063,3
+xuanxuan1209,24719063,5
+luics,24719063,5
+69010258,24719063,4
+2637083,24719063,4
+72397969,24719063,4
+guanbz,24719063,4
+52466141,24719063,5
+103437823,24719063,4
+91376063,24719063,3
+1275109,24719063,4
+lilylmh,24719063,5
+62034201,24719063,5
+69679169,24719063,4
+yanglw,24719063,5
+spritefall,24719063,3
+damnedest,24719063,5
+37058834,24719063,5
+truekevin,24719063,3
+36221737,24719063,3
+42740597,24719063,3
+iyyhua,24719063,3
+yokojanee,24719063,3
+shirleycapri,24719063,4
+100042378,24719063,4
+56818119,24719063,4
+ceciliayiyi,24719063,5
+99834497,24719063,3
+zoro_sanji,24719063,5
+60155135,24719063,4
+JiaoYaZi,24719063,4
+36791649,24719063,5
+72277431,24719063,4
+cStar,24719063,4
+2706993,24719063,4
+46680078,24719063,5
+shuonidaye,24719063,3
+2339752,24719063,3
+29024580,24719063,4
+63668063,24719063,4
+133651758,24719063,4
+lin2jie,24719063,3
+120735055,24719063,4
+2604555,24719063,4
+feelnothing,24719063,5
+57906022,24719063,4
+cheesechee,24719063,4
+79036383,24719063,4
+crystalnura,24719063,4
+4379513,24719063,3
+65730226,24719063,3
+67342694,24719063,4
+62476289,24719063,4
+66091959,24719063,4
+134551196,24719063,5
+130610060,24719063,4
+54100907,24719063,4
+xiaxj,24719063,4
+little_baby,24719063,4
+63531655,24719063,4
+52591024,24719063,3
+42006614,24719063,4
+simplece,24719063,5
+46193203,24719063,5
+67398102,24719063,4
+Notali64,24719063,5
+46361626,24719063,2
+130461977,24719063,3
+48313436,24719063,4
+73692914,24719063,4
+xslidian,24719063,2
+alantsai,24719063,5
+sherry_zeng,24719063,4
+caijin,24719063,3
+49133007,24719063,4
+70933374,24719063,4
+Aoko_,24719063,5
+46696173,24719063,4
+47029323,24719063,4
+79170497,24719063,4
+115631382,24719063,5
+slcws,24719063,4
+83449630,24719063,4
+52110233,24719063,4
+134122369,24719063,3
+35822684,24719063,4
+ypfair,24719063,4
+4056710,24719063,5
+61189952,24719063,4
+46453895,24719063,-1
+89989677,24719063,4
+4417253,24719063,3
+crystal12345678,24719063,4
+54917860,24719063,5
+1624071,24719063,4
+35047264,24719063,4
+wxcQluotuo,24719063,4
+53339781,24719063,3
+1345496,24719063,4
+41328613,24719063,3
+48863257,24719063,4
+75940485,24719063,4
+57827177,24719063,5
+71175276,24719063,4
+wsdqz,24719063,3
+90812716,24719063,4
+78609614,24719063,1
+yj_shi,24719063,4
+47178705,24719063,4
+4478283,24719063,3
+2025784,24719063,4
+loveyouwuwang,24719063,5
+10851412,24719063,4
+7380981,24719063,2
+119300016,24719063,4
+78944211,24719063,5
+67439008,24719063,5
+72943545,24719063,3
+57663536,24719063,4
+4700693,24719063,5
+libertyer,24719063,4
+siaa,24719063,4
+72944170,24719063,3
+52851561,24719063,4
+yikedanhaung,24719063,3
+bearmum,24719063,2
+50331162,24719063,4
+64347644,24719063,5
+e-free,24719063,4
+81370726,24719063,5
+51694672,24719063,5
+64869515,24719063,5
+52530490,24719063,5
+yoyo_ran,24719063,5
+Iamlazylady,24719063,4
+53790430,24719063,3
+99853652,24719063,4
+1401916,24719063,5
+75271278,24719063,5
+Lotus511,24719063,4
+jerryfilm,24719063,4
+68692876,24719063,3
+yesbuters,24719063,2
+49466976,24719063,4
+guaishou1017,24719063,3
+mao_mao,24719063,3
+eden1009,24719063,4
+zivee-1uo,24719063,4
+75445619,24719063,3
+122591868,24719063,4
+shenxueying,24719063,4
+gwenstore,24719063,4
+skyearthone,24719063,4
+shiren22,24719063,4
+aether1013,24719063,3
+qiluoluo,24719063,4
+62664539,24719063,5
+78126195,24719063,5
+venicedream,24719063,5
+2590684,24719063,3
+119176677,24719063,4
+79758590,24719063,4
+48000477,24719063,2
+68131545,24719063,4
+134896142,24719063,5
+keinshen,24719063,3
+13968237,24719063,4
+74606368,24719063,4
+58038108,24719063,4
+105270130,24719063,5
+53368191,24719063,3
+xiaopin7949,24719063,-1
+partynight,24719063,5
+122352396,24719063,4
+52633603,24719063,3
+98152368,24719063,4
+52553005,24719063,3
+tianlin87,24719063,5
+1240620,24719063,3
+66585349,24719063,4
+JosephineQv,24719063,4
+buttonli,24719063,5
+LEMon-JFM,24719063,4
+48975369,24719063,2
+122048600,24719063,4
+47978030,24719063,4
+73611945,24719063,4
+9951042,24719063,4
+31613621,24719063,3
+4333370,24719063,4
+66856760,24719063,5
+98165549,24719063,5
+44357083,24719063,5
+36289402,24719063,3
+121930638,24719063,5
+ashengr,24719063,5
+quxiaoli,24719063,4
+louis38,24719063,4
+49854958,24719063,3
+Verde.T,24719063,4
+62831329,24719063,4
+124003449,24719063,4
+rancy0904,24719063,4
+33525558,24719063,4
+1227418,24719063,4
+47080179,24719063,4
+62309781,24719063,4
+1443980,24719063,5
+63981568,24719063,5
+2601089,24719063,4
+seamouse,24719063,3
+1884591,24719063,4
+55769530,24719063,3
+47437175,24719063,5
+4711240,24719063,4
+88178355,24719063,4
+valen600,24719063,5
+4867435,24719063,4
+ximengbaoer,24719063,5
+55789619,24719063,-1
+btjd,24719063,4
+131055900,24719063,3
+78407433,24719063,4
+41710578,24719063,3
+Patricia_,24719063,3
+57370195,24719063,3
+33021000,24719063,5
+sekijiang,24719063,4
+70362034,24719063,5
+jingshuixian,24719063,4
+jingshuixian,24719063,4
+huangtoufa,24719063,3
+3474242,24719063,4
+2286926,24719063,4
+dotcon,24719063,4
+56769317,24719063,5
+yokyo,24719063,4
+milerano,24719063,5
+85868182,24719063,5
+vickyzw,24719063,4
+melatielian,24719063,3
+49882550,24719063,4
+2883884,24719063,4
+bestavil,24719063,5
+30915866,24719063,4
+2556700,24719063,4
+128513143,24719063,5
+4704105,24719063,4
+4108048,24719063,3
+66848071,24719063,5
+sarahbuxia,24719063,5
+3523793,24719063,4
+36288413,24719063,4
+80240044,24719063,4
+69459353,24719063,5
+bh1994,24719063,4
+monicsolomon,24719063,3
+69819504,24719063,4
+134501526,24719063,3
+coka1999,24719063,4
+62258419,24719063,4
+nongnong424,24719063,4
+lovinggarfield,24719063,3
+52623310,24719063,3
+53608785,24719063,4
+landcontinent,24719063,4
+54164106,24719063,4
+sogaogao,24719063,4
+4570858,24719063,4
+77898629,24719063,4
+75972068,24719063,4
+foolish-melon,24719063,3
+113499770,24719063,3
+44275423,24719063,4
+57664608,24719063,4
+44367163,24719063,2
+1782925,24719063,3
+56857904,24719063,5
+52962015,24719063,4
+30925388,24719063,5
+34984227,24719063,4
+130309969,24719063,3
+devillzhang,24719063,3
+3027017,24719063,4
+59777019,24719063,5
+65036885,24719063,3
+131013584,24719063,5
+120271645,24719063,4
+2324228,24719063,1
+XSizuka,24719063,5
+119190302,24719063,3
+96662969,24719063,4
+Rosier,24719063,4
+1600165,24719063,3
+posuoluo,24719063,4
+77394730,24719063,5
+A_jYOU,24719063,-1
+even,24719063,4
+egeria1225,24719063,4
+44777109,24719063,4
+wtforz,24719063,4
+72663701,24719063,4
+changeable,24719063,4
+tanlin8711,24719063,3
+zi,24719063,4
+123374707,24719063,4
+46847393,24719063,3
+Warrgon,24719063,3
+102644530,24719063,3
+21289569,24719063,5
+133372996,24719063,3
+a_lying_eight,24719063,4
+crab56,24719063,5
+30136834,24719063,3
+13053957,24719063,3
+133708111,24719063,3
+56004220,24719063,4
+26018442,24719063,4
+wallaceLee,24719063,3
+sooora,24719063,3
+2221536,24719063,4
+sowhatanyi,24719063,4
+2483608,24719063,4
+46320869,24719063,3
+122273872,24719063,3
+halfyoyo,24719063,4
+106465536,24719063,5
+moquin,24719063,3
+greenie_sky,24719063,3
+chiyama,24719063,3
+128412701,24719063,4
+1171407,24719063,3
+128635364,24719063,3
+2474664,24719063,5
+40584481,24719063,3
+jerry437,24719063,4
+skay,24719063,3
+1971155,24719063,4
+117361943,24719063,4
+xiaobai096,24719063,4
+124570189,24719063,5
+62405602,24719063,4
+46680355,24719063,4
+122789808,24719063,4
+75903747,24719063,4
+phoebe0225,24719063,4
+daifeifei,24719063,3
+81061970,24719063,5
+13892720,24719063,4
+115919297,24719063,3
+2116998,24719063,3
+53198188,24719063,4
+116718171,24719063,5
+poly0330,24719063,4
+52279236,24719063,5
+Carf,24719063,5
+4023510,24719063,4
+jlbean,24719063,3
+agatewang,24719063,4
+aleung,24719063,3
+nicoyan,24719063,4
+hereyy,24719063,4
+LotteMars,24719063,4
+76316294,24719063,5
+1973450,24719063,4
+acmerfight,24719063,4
+44587158,24719063,4
+cherylnim,24719063,4
+cain69,24719063,4
+Rolls,24719063,3
+pineappledog,24719063,4
+aimeshen,24719063,5
+sunata,24719063,4
+65926513,24719063,5
+1995682,24719063,4
+116689898,24719063,3
+119942879,24719063,3
+17301538,24719063,4
+Emily90,24719063,-1
+47289557,24719063,5
+sleeper_arashi,24719063,4
+misspj,24719063,4
+3612252,24719063,4
+131178183,24719063,4
+ktr,24719063,2
+2834898,24719063,4
+yoxi222,24719063,5
+esperanza,24719063,4
+90900070,24719063,4
+jiangkui,24719063,4
+kuangshiDqipa,24719063,4
+rucic,24719063,5
+81248823,24719063,5
+55951797,24719063,5
+4427458,24719063,4
+wanls,24719063,-1
+66339819,24719063,5
+62744692,24719063,4
+70121595,24719063,5
+127112078,24719063,2
+77534408,24719063,4
+yomfall,24719063,3
+89992830,24719063,4
+little_cupid,24719063,3
+82150919,24719063,3
+96764185,24719063,4
+yidiu,24719063,4
+skyto77,24719063,3
+53201086,24719063,4
+130141079,24719063,5
+jchen777,24719063,3
+2587408,24719063,2
+3539294,24719063,3
+37153388,24719063,4
+55622517,24719063,4
+2748864,24719063,3
+2973165,24719063,4
+126838227,24719063,5
+3447155,24719063,4
+HoldonBoxer,24719063,2
+rabbitfay,24719063,4
+68019993,24719063,3
+2265583,24719063,3
+60201593,24719063,5
+44150163,24719063,4
+83989454,24719063,5
+66741568,24719063,4
+miss_dian,24719063,4
+HollyPhoenix,24719063,5
+viego,24719063,4
+minoindemo,24719063,4
+119356090,24719063,4
+x1ngstar,24719063,4
+127448556,24719063,5
+reMadeInChina,24719063,3
+101306122,24719063,5
+28839183,24719063,3
+68229631,24719063,4
+70251175,24719063,4
+49782852,24719063,3
+twooneseven,24719063,3
+57961574,24719063,4
+2202052,24719063,3
+jicheng1993,24719063,5
+48499071,24719063,3
+48071029,24719063,5
+79285043,24719063,4
+78910091,24719063,5
+GMDY,24719063,4
+RowCheung,24719063,4
+88840337,24719063,4
+134750335,24719063,4
+48499183,24719063,3
+131208902,24719063,3
+50385651,24719063,5
+58859760,24719063,5
+tatoo_,24719063,4
+70475699,24719063,4
+119806823,24719063,5
+2754902,24719063,4
+1971815,24719063,4
+68401982,24719063,5
+46642787,24719063,3
+SnowHsu10,24719063,3
+louie628,24719063,4
+134384553,24719063,4
+132194246,24719063,3
+97378875,24719063,5
+91467014,24719063,5
+58454098,24719063,4
+longislandiced,24719063,4
+Youngerer,24719063,5
+3691770,24719063,4
+Saggezza,24719063,4
+3768585,24719063,5
+haoxiaoxian,24719063,4
+Cgangs,24719063,-1
+momojq,24719063,5
+48695154,24719063,4
+xiaoteddy,24719063,3
+vividjoy,24719063,5
+shen3yang,24719063,4
+43767898,24719063,3
+huhu227,24719063,4
+msuper,24719063,3
+64377598,24719063,3
+68020683,24719063,4
+unervern,24719063,3
+dodo729,24719063,4
+Tracy.Wan,24719063,4
+70088790,24719063,3
+134158647,24719063,3
+134679652,24719063,5
+56875822,24719063,5
+66768802,24719063,4
+2744514,24719063,5
+43536991,24719063,3
+1387854,24719063,3
+2798757,24719063,4
+3139782,24719063,5
+83317663,24719063,5
+81444301,24719063,4
+4284841,24719063,3
+125837281,24719063,3
+71820210,24719063,4
+nan-93-nan,24719063,4
+71888272,24719063,5
+39937848,24719063,4
+geniejinn,24719063,4
+Nenya,24719063,3
+132728475,24719063,4
+wumingzaish,24719063,2
+tiazhihen290,24719063,4
+1141251,24719063,3
+4491309,24719063,5
+mrqiyue,24719063,-1
+1099666,24719063,4
+3390494,24719063,3
+45504245,24719063,5
+131053418,24719063,4
+54132457,24719063,4
+lan.chan,24719063,4
+wendymabel,24719063,4
+56529479,24719063,4
+1457618,24719063,4
+wanglinlin,24719063,4
+73307715,24719063,4
+84261396,24719063,4
+73120617,24719063,4
+yueyue718,24719063,5
+xiongguagua,24719063,4
+llamakun,24719063,4
+39104472,24719063,4
+kharkov,24719063,5
+43112077,24719063,3
+48873151,24719063,3
+musicmuse,24719063,3
+behindme,24719063,3
+47818182,24719063,2
+juning,24719063,4
+54938342,24719063,5
+56755911,24719063,3
+100279661,24719063,4
+54300451,24719063,4
+53059732,24719063,4
+shaogezhu,24719063,3
+duolamaoxian,24719063,4
+41985222,24719063,-1
+4818831,24719063,3
+4058668,24719063,3
+v_vlll,24719063,4
+130252934,24719063,5
+sarah0215,24719063,4
+2639245,24719063,5
+96505278,24719063,4
+barbelo12,24719063,4
+missdonglian,24719063,4
+65381163,24719063,4
+Casanova,24719063,4
+42093443,24719063,4
+Tifff,24719063,4
+39971075,24719063,5
+51994220,24719063,4
+puddingmoe,24719063,4
+3678176,24719063,5
+46163023,24719063,-1
+77325633,24719063,5
+84001065,24719063,3
+49990250,24719063,3
+BillyChin,24719063,4
+55334687,24719063,4
+68186986,24719063,5
+1012162,24719063,3
+116782951,24719063,4
+ilkay,24719063,4
+45799570,24719063,4
+40015062,24719063,4
+xdcheung,24719063,5
+10345879,24719063,4
+67103497,24719063,4
+linglingwin,24719063,4
+jinyatou,24719063,4
+80398365,24719063,4
+jinyuhuohua,24719063,5
+AmySpecial,24719063,4
+anya2011,24719063,3
+62938015,24719063,4
+99707810,24719063,5
+53267569,24719063,4
+1489279,24719063,-1
+119428504,24719063,3
+72933315,24719063,4
+waiwai7,24719063,4
+koujuan,24719063,3
+53713588,24719063,4
+99669308,24719063,5
+4283665,24719063,3
+53412014,24719063,3
+chouchouMQ1010,24719063,3
+41205351,24719063,4
+57837521,24719063,3
+90547930,24719063,3
+QuainChu,24719063,4
+cookiecola,24719063,3
+81436563,24719063,4
+100981322,24719063,5
+countcrows,24719063,2
+51079481,24719063,5
+97845627,24719063,4
+134494053,24719063,5
+134661569,24719063,3
+69675369,24719063,5
+3911272,24719063,4
+Melbourner,24719063,4
+49855743,24719063,4
+red325,24719063,4
+wzdqq,24719063,4
+44095527,24719063,5
+63551104,24719063,1
+sfhuizhang,24719063,4
+51399526,24719063,4
+105749305,24719063,3
+SinceNow1999,24719063,4
+4196638,24719063,3
+Helios618,24719063,4
+61515355,24719063,3
+7795838,24719063,5
+61654956,24719063,4
+jasmine0821,24719063,4
+l---j,24719063,4
+62659371,24719063,5
+8491923,24719063,5
+62805644,24719063,3
+Phoebe.Lee,24719063,4
+58955045,24719063,5
+65688183,24719063,3
+sf12447411,24719063,4
+fessi,24719063,4
+3655806,24719063,5
+ssdomoto,24719063,4
+mangomaluko,24719063,4
+ShakingYang,24719063,4
+76624951,24719063,3
+67447555,24719063,4
+C.S.J,24719063,4
+42747728,24719063,3
+72015252,24719063,4
+49691346,24719063,4
+liutiantianniu,24719063,5
+misskaka214,24719063,4
+2923778,24719063,4
+shennessy,24719063,4
+67410434,24719063,3
+cici198739,24719063,4
+lvcha_,24719063,-1
+57883052,24719063,5
+3871951,24719063,4
+54121460,24719063,4
+53908763,24719063,3
+39452521,24719063,5
+2430432,24719063,3
+alice0574,24719063,3
+xiezhenyu,24719063,5
+49030340,24719063,4
+52640944,24719063,4
+3183734,24719063,4
+a-Joel,24719063,3
+63741942,24719063,5
+1977979,24719063,5
+53279071,24719063,4
+jessica_joy5,24719063,4
+koiwai0908,24719063,4
+darkphoenix,24719063,3
+130082458,24719063,5
+70534967,24719063,4
+22187637,24719063,5
+41495966,24719063,4
+62467035,24719063,3
+franling,24719063,4
+56902514,24719063,4
+graceguo,24719063,1
+3022833,24719063,4
+Maiyolyn.,24719063,5
+imlove,24719063,3
+F-Mac,24719063,4
+Landey,24719063,4
+48444997,24719063,4
+40920775,24719063,4
+92442460,24719063,4
+zeo-peanut,24719063,3
+achen17,24719063,4
+wouldntitbenice,24719063,4
+3259792,24719063,4
+132714507,24719063,5
+soleilratemma,24719063,3
+1102865,24719063,4
+willsmall,24719063,4
+timiroya,24719063,5
+elena-ye,24719063,4
+95670618,24719063,4
+alicelotus,24719063,2
+48278113,24719063,3
+50308146,24719063,4
+97184267,24719063,3
+63901106,24719063,4
+125694010,24719063,4
+16497021,24719063,4
+28982692,24719063,4
+alicebbb,24719063,5
+71543587,24719063,3
+48654184,24719063,4
+Emina_,24719063,4
+know,24719063,3
+133486624,24719063,4
+60968365,24719063,4
+44632164,24719063,4
+tenderhearted,24719063,4
+84659532,24719063,4
+tangsoo,24719063,3
+80066409,24719063,4
+43375121,24719063,5
+qinaideliji,24719063,3
+pgt12490,24719063,4
+shuangyugongjue,24719063,4
+54825583,24719063,3
+45449630,24719063,3
+134617663,24719063,4
+96290717,24719063,4
+74128078,24719063,2
+2984220,24719063,3
+74892606,24719063,3
+BackToNight,24719063,4
+59855986,24719063,-1
+ch123,24719063,3
+67385694,24719063,4
+82359447,24719063,3
+52801695,24719063,4
+123710346,24719063,4
+4807458,24719063,4
+together1018,24719063,4
+49418217,24719063,4
+CherryShen90,24719063,4
+tianxiaodao,24719063,5
+94342764,24719063,4
+dummdumm,24719063,4
+dictionary13,24719063,4
+erer2xixi,24719063,4
+mna,24719063,4
+10840775,24719063,5
+sugarl,24719063,5
+pacinos,24719063,5
+134003117,24719063,3
+115658788,24719063,5
+54076788,24719063,5
+xiaochener,24719063,3
+114274927,24719063,4
+kingiknow,24719063,3
+pariseros,24719063,5
+61421978,24719063,4
+43859061,24719063,3
+shmily_yummy,24719063,4
+PUNKKONG,24719063,-1
+75835017,24719063,5
+xuanmg,24719063,5
+PatrickK2A,24719063,4
+47656138,24719063,5
+4118830,24719063,5
+134600773,24719063,4
+kalapigdogpig,24719063,3
+49428588,24719063,5
+52671422,24719063,3
+45855864,24719063,4
+lmpq,24719063,5
+ifeelfine,24719063,3
+42325678,24719063,4
+chennanlydia,24719063,5
+50415284,24719063,3
+MaxMoon,24719063,5
+zit0131,24719063,3
+tianchaoccav,24719063,4
+59404195,24719063,5
+41397677,24719063,5
+bravefish,24719063,3
+25217510,24719063,3
+SunjinG,24719063,3
+1867062,24719063,5
+41606409,24719063,3
+nowood,24719063,4
+121933130,24719063,-1
+126785151,24719063,3
+43067179,24719063,4
+twistedsoul,24719063,4
+50647319,24719063,1
+hyacinthlove101,24719063,4
+4070673,24719063,4
+48969108,24719063,5
+122258109,24719063,3
+89304458,24719063,4
+64387537,24719063,4
+43807093,24719063,5
+14718675,24719063,4
+65358063,24719063,4
+53673765,24719063,4
+63027604,24719063,5
+85064698,24719063,4
+52710363,24719063,3
+4391066,24719063,5
+130624893,24719063,4
+75069329,24719063,4
+79895962,24719063,3
+66604481,24719063,3
+53928410,24719063,5
+ashleystella,24719063,3
+41657759,24719063,3
+58949902,24719063,4
+37019955,24719063,4
+119447313,24719063,4
+60552303,24719063,4
+81651557,24719063,4
+63602418,24719063,4
+103110935,24719063,5
+wangzhonghua90,24719063,5
+52428606,24719063,3
+49313666,24719063,3
+cieldingdong,24719063,4
+134585517,24719063,5
+51004773,24719063,3
+22429107,24719063,3
+65013886,24719063,4
+126190597,24719063,5
+takuming,24719063,4
+61151666,24719063,3
+134340947,24719063,3
+59524525,24719063,4
+white817,24719063,4
+chenbi,24719063,3
+33320870,24719063,3
+77162594,24719063,5
+amaranth_i,24719063,3
+ilibby,24719063,4
+76663722,24719063,5
+96785209,24719063,4
+50624939,24719063,5
+75850159,24719063,4
+icecream0330,24719063,3
+36090011,24719063,4
+80732468,24719063,3
+SafeHaven,24719063,5
+jumbyl,24719063,5
+130274229,24719063,4
+yummygirl,24719063,4
+wanganqi,24719063,4
+45255193,24719063,4
+41036540,24719063,4
+68239286,24719063,5
+106606702,24719063,4
+vickyzhoumore,24719063,5
+jiuxiangfeng,24719063,4
+2846041,24719063,4
+12177460,24719063,4
+2228009,24719063,3
+52209772,24719063,3
+68368696,24719063,5
+60863387,24719063,3
+101864611,24719063,4
+uuul,24719063,4
+3724045,24719063,4
+84201055,24719063,4
+53129472,24719063,4
+48778935,24719063,4
+121120829,24719063,3
+72524329,24719063,5
+53312629,24719063,4
+55608984,24719063,4
+57932629,24719063,4
+49085367,24719063,4
+126056059,24719063,4
+4459987,24719063,4
+74651683,24719063,4
+2953894,24719063,4
+92067101,24719063,3
+47425487,24719063,4
+104573188,24719063,4
+84729919,24719063,4
+betterlittleg,24719063,5
+122039396,24719063,4
+134563704,24719063,4
+cattyiyoungeoon,24719063,4
+65561773,24719063,4
+39590903,24719063,4
+cherwy,24719063,3
+2771217,24719063,4
+4267119,24719063,4
+wn0126,24719063,3
+66798898,24719063,4
+4360947,24719063,5
+114694332,24719063,5
+juhse91,24719063,3
+64390024,24719063,4
+70009747,24719063,4
+57800991,24719063,4
+48515290,24719063,5
+55273592,24719063,4
+4311033,24719063,3
+4284000,24719063,4
+68584171,24719063,4
+31630076,24719063,4
+didigabriel,24719063,4
+48640803,24719063,4
+sinetian,24719063,5
+49470212,24719063,3
+62239273,24719063,4
+yuanweiru,24719063,3
+tzhou730,24719063,4
+56863483,24719063,4
+50290201,24719063,5
+58094716,24719063,4
+ingwerstein,24719063,3
+eghy20380617,24719063,4
+32340360,24719063,5
+52179177,24719063,5
+37336269,24719063,4
+zera,24719063,4
+48669872,24719063,4
+133398715,24719063,4
+55767927,24719063,4
+74658279,24719063,3
+70300693,24719063,4
+13833588,24719063,4
+70509315,24719063,4
+jiayi6616,24719063,4
+78946319,24719063,4
+63196895,24719063,4
+130368500,24719063,5
+4361447,24719063,3
+sakura7788,24719063,5
+aleylee,24719063,-1
+59769479,24719063,3
+60145877,24719063,4
+55332125,24719063,4
+QuincyCaz,24719063,3
+50926960,24719063,4
+119225016,24719063,4
+71214465,24719063,4
+yao_123,24719063,2
+1605613,24719063,4
+58901658,24719063,5
+48946035,24719063,1
+47853825,24719063,3
+vtanya,24719063,4
+33894800,24719063,4
+51825084,24719063,3
+40518476,24719063,4
+Cappe,24719063,3
+avisj,24719063,4
+79354060,24719063,4
+65433175,24719063,4
+62651248,24719063,3
+yolanta1030,24719063,4
+125445387,24719063,4
+raibei,24719063,3
+82562378,24719063,4
+53323361,24719063,4
+58004310,24719063,5
+75701178,24719063,4
+92155502,24719063,4
+81193986,24719063,5
+130044129,24719063,5
+81561010,24719063,3
+58171023,24719063,4
+54618725,24719063,4
+131079832,24719063,4
+kyouichigo,24719063,2
+57218785,24719063,3
+84775041,24719063,4
+6086714,24719063,4
+catherine_koo,24719063,4
+5800619,24719063,3
+dingxiang_4537,24719063,5
+96473483,24719063,5
+nana82475,24719063,4
+49428055,24719063,5
+ashes-and-snow,24719063,4
+4302651,24719063,5
+ggx29225692,24719063,4
+83195287,24719063,4
+45487500,24719063,4
+115631046,24719063,5
+57775883,24719063,5
+JinSeraph,24719063,4
+121920760,24719063,4
+103012046,24719063,3
+60126286,24719063,4
+merryliang,24719063,4
+yamaaibani,24719063,3
+121484921,24719063,4
+musica,24719063,4
+100497038,24719063,4
+132830115,24719063,5
+55876258,24719063,3
+Qrainbow,24719063,3
+54462951,24719063,4
+toomoo,24719063,4
+134529720,24719063,3
+crosas,24719063,4
+56872191,24719063,4
+36671910,24719063,4
+49866554,24719063,4
+40273043,24719063,4
+47185791,24719063,3
+smilewsy,24719063,4
+dOHOfenn,24719063,4
+49721814,24719063,5
+weizi1977,24719063,4
+41089133,24719063,4
+87344411,24719063,3
+102572566,24719063,4
+43061790,24719063,4
+10124138,24719063,5
+80104119,24719063,3
+mrbrooks,24719063,4
+58016333,24719063,3
+41531040,24719063,4
+1565898,24719063,4
+ssdysyyy,24719063,4
+81444373,24719063,4
+53257768,24719063,4
+54480059,24719063,4
+yhrchong,24719063,3
+guaishou995,24719063,3
+45623979,24719063,4
+lalunefay,24719063,3
+64332284,24719063,5
+2924137,24719063,4
+41629007,24719063,3
+53051505,24719063,4
+63142024,24719063,3
+ergeo,24719063,4
+83188680,24719063,4
+123004306,24719063,4
+4092203,24719063,2
+14598994,24719063,4
+chihuoo,24719063,4
+staramoi,24719063,3
+49893647,24719063,4
+60282020,24719063,5
+73581650,24719063,4
+122452558,24719063,3
+127731912,24719063,4
+103777877,24719063,3
+viviyin,24719063,4
+56196085,24719063,5
+sanmigo,24719063,4
+LAURANOWHERE,24719063,3
+ShaRiko,24719063,3
+MaccyLiu,24719063,4
+penjing1026,24719063,4
+47511479,24719063,4
+3262787,24719063,4
+32659501,24719063,3
+misora331,24719063,5
+132998627,24719063,3
+52331633,24719063,4
+48807888,24719063,4
+63435651,24719063,4
+57285165,24719063,4
+117027234,24719063,3
+75718536,24719063,3
+F7LOWER,24719063,4
+jxyyy,24719063,5
+35819210,24719063,3
+32722540,24719063,3
+67262547,24719063,5
+45776079,24719063,4
+57654704,24719063,3
+52929684,24719063,3
+onlymcdull,24719063,4
+violetmelody,24719063,4
+40428362,24719063,3
+134500343,24719063,3
+73787373,24719063,-1
+forevermy,24719063,5
+crazykaz,24719063,3
+Sylary,24719063,4
+60692884,24719063,3
+antzone,24719063,4
+4604619,24719063,5
+33326569,24719063,3
+34706621,24719063,3
+3142149,24719063,3
+11017625,24719063,5
+129918832,24719063,4
+4367517,24719063,4
+josielove13,24719063,5
+52679814,24719063,4
+32264752,24719063,3
+3417104,24719063,3
+1156438,24719063,3
+63030684,24719063,3
+59555735,24719063,4
+71609186,24719063,3
+125182895,24719063,5
+134507357,24719063,4
+52051860,24719063,4
+45527228,24719063,4
+43978557,24719063,4
+78277982,24719063,4
+3015857,24719063,5
+shsf-sharon,24719063,4
+70536154,24719063,2
+49198824,24719063,3
+qianqianfei,24719063,4
+81856033,24719063,3
+68416685,24719063,4
+57818795,24719063,4
+115631804,24719063,4
+irenaleo,24719063,4
+2796530,24719063,4
+4914375,24719063,4
+Grace1116,24719063,5
+MLMLMLMLML,24719063,3
+51840426,24719063,4
+hecky,24719063,3
+47561470,24719063,4
+73034014,24719063,5
+101547847,24719063,4
+134504952,24719063,4
+130497763,24719063,5
+122188922,24719063,4
+EBO,24719063,4
+EBO,24719063,4
+lick647,24719063,4
+2171738,24719063,3
+55285166,24719063,5
+51297229,24719063,3
+77844710,24719063,5
+60626525,24719063,5
+sainobook,24719063,5
+64326764,24719063,5
+zhhsbkl,24719063,5
+49994038,24719063,4
+120454537,24719063,4
+yy1988428,24719063,4
+79278811,24719063,4
+summer_Lillia,24719063,4
+3887933,24719063,4
+zhaopeng007,24719063,3
+sep10th,24719063,3
+132599218,24719063,4
+48418593,24719063,3
+49423075,24719063,5
+elmsley,24719063,3
+129501673,24719063,3
+71276414,24719063,5
+52662946,24719063,5
+61304869,24719063,4
+48656837,24719063,2
+iisakura,24719063,3
+7398720,24719063,4
+songchunxue,24719063,2
+90203786,24719063,3
+76929963,24719063,4
+75581591,24719063,4
+lovekuaihua,24719063,4
+99550697,24719063,5
+3559301,24719063,4
+83743070,24719063,5
+tcrabbit,24719063,4
+gdamosusan,24719063,5
+92232299,24719063,3
+dy_holys,24719063,4
+QiyueKathy,24719063,4
+sadiee,24719063,4
+xlj741015,24719063,4
+120316557,24719063,4
+deersome,24719063,-1
+43518138,24719063,4
+dreamsun,24719063,3
+45482425,24719063,5
+85222087,24719063,4
+2447240,24719063,-1
+3519432,24719063,4
+lihaijing,24719063,4
+EsperanzaX,24719063,4
+xuancaidanqing,24719063,3
+117806969,24719063,3
+peter.dai,24719063,5
+70605081,24719063,4
+134137352,24719063,4
+102259472,24719063,3
+66860143,24719063,4
+Cccc4_,24719063,4
+69195651,24719063,4
+xu-xin,24719063,4
+130940590,24719063,4
+42836191,24719063,3
+44428248,24719063,3
+3496801,24719063,4
+129453126,24719063,4
+58302904,24719063,3
+puppy33,24719063,4
+58281873,24719063,4
+131126079,24719063,-1
+66686811,24719063,4
+liuweifly,24719063,4
+76051077,24719063,4
+50042173,24719063,4
+1368298,24719063,4
+81266175,24719063,5
+purel0ve,24719063,4
+Eudemonia-moon,24719063,4
+lidesheng,24719063,5
+51237240,24719063,4
+mrsummer,24719063,3
+52925540,24719063,4
+PhilZH,24719063,5
+47220658,24719063,5
+cedrical,24719063,3
+ohohzhizhi,24719063,3
+49081579,24719063,4
+51048652,24719063,4
+missfuluola,24719063,4
+4389847,24719063,1
+57065086,24719063,4
+82336545,24719063,4
+willyjiang,24719063,4
+62496308,24719063,-1
+secretofmemory,24719063,3
+omniwillpotent,24719063,5
+pennynuan,24719063,5
+zxy310,24719063,4
+67323158,24719063,4
+131514121,24719063,4
+solo_jane,24719063,4
+46847503,24719063,4
+jiayu0923,24719063,4
+donna12355,24719063,4
+jinlinyuyu,24719063,5
+Leenur_gln,24719063,5
+shch17,24719063,3
+38485317,24719063,2
+hanlywu,24719063,3
+66467700,24719063,4
+69429649,24719063,4
+58280572,24719063,4
+62735091,24719063,5
+67575009,24719063,4
+62209116,24719063,4
+lxklzy,24719063,3
+55631071,24719063,4
+47914559,24719063,5
+95455271,24719063,5
+frostshuang1989,24719063,4
+46712687,24719063,2
+stories7,24719063,3
+57695924,24719063,4
+2626046,24719063,3
+nuomi0217,24719063,4
+xiaoruimm,24719063,4
+40747171,24719063,5
+clee931,24719063,5
+64202458,24719063,4
+40487079,24719063,4
+2206999,24719063,5
+117236060,24719063,5
+kukucat,24719063,4
+51573307,24719063,-1
+122255245,24719063,4
+119420162,24719063,4
+babybluebb,24719063,3
+69529988,24719063,4
+Isabella_baby,24719063,3
+gsjivy,24719063,3
+92091309,24719063,4
+zcq741433220,24719063,3
+muzifuyou,24719063,4
+2079162,24719063,4
+cheerjuno,24719063,3
+saraxia33,24719063,4
+17791320,24719063,4
+wendyhsu,24719063,3
+eloc,24719063,4
+36458786,24719063,4
+58295393,24719063,4
+66865384,24719063,3
+AhLang,24719063,4
+42477932,24719063,5
+wenzhimu,24719063,4
+41511009,24719063,4
+57400011,24719063,3
+61944030,24719063,4
+wangmengqian999,24719063,4
+49583745,24719063,5
+68918230,24719063,3
+42678961,24719063,3
+126783800,24719063,5
+82432964,24719063,4
+4210942,24719063,4
+34081510,24719063,5
+2348564,24719063,4
+cherryucandoit,24719063,5
+45182133,24719063,4
+sssoul,24719063,-1
+bdlcS,24719063,4
+st.nye,24719063,3
+eciah,24719063,4
+51249415,24719063,4
+65070154,24719063,3
+62374245,24719063,3
+53197921,24719063,4
+115629295,24719063,4
+44678358,24719063,4
+54441804,24719063,3
+134437115,24719063,4
+mustafay,24719063,5
+52292753,24719063,4
+tankdriver,24719063,4
+miayuan731,24719063,4
+shelvin,24719063,3
+12629797,24719063,3
+haohele,24719063,4
+Doodledoodle,24719063,3
+132700269,24719063,3
+34162362,24719063,2
+69131215,24719063,5
+60421761,24719063,3
+feifeirunrun,24719063,4
+84092945,24719063,4
+CrystalSleeper,24719063,4
+ashilyong,24719063,4
+80398385,24719063,3
+48548563,24719063,3
+33201871,24719063,5
+73340427,24719063,5
+120243539,24719063,4
+109169757,24719063,4
+75792815,24719063,4
+78871037,24719063,4
+76697169,24719063,4
+50630299,24719063,4
+eleanorseed,24719063,4
+1498731,24719063,5
+yocrazy,24719063,4
+52658283,24719063,-1
+5723001,24719063,4
+60127747,24719063,4
+62455186,24719063,5
+43912671,24719063,3
+94269146,24719063,5
+83223876,24719063,5
+3573377,24719063,3
+behindtheveil,24719063,4
+reneecheung616,24719063,5
+47758915,24719063,5
+1114658,24719063,4
+48115539,24719063,4
+44555430,24719063,1
+Rock_meiwen,24719063,4
+133788325,24719063,5
+35910960,24719063,3
+vivavera,24719063,4
+mavishebelsie,24719063,5
+chenshuting0919,24719063,4
+63029644,24719063,5
+82672460,24719063,5
+44927626,24719063,5
+73159539,24719063,4
+57613408,24719063,4
+36123963,24719063,5
+121356026,24719063,3
+coors,24719063,4
+65387299,24719063,4
+87083592,24719063,5
+IcbM,24719063,4
+2227784,24719063,4
+53582924,24719063,4
+79383062,24719063,3
+49147828,24719063,3
+76418586,24719063,4
+59378260,24719063,5
+117235320,24719063,5
+smallcolor,24719063,4
+64770213,24719063,4
+75714203,24719063,5
+68949311,24719063,5
+75416298,24719063,4
+131618502,24719063,4
+82904575,24719063,3
+134459339,24719063,3
+51186771,24719063,2
+yggdrasil,24719063,3
+130435949,24719063,4
+131917894,24719063,4
+69248100,24719063,4
+63557771,24719063,4
+CRA1G,24719063,5
+51562089,24719063,5
+4900105,24719063,5
+blankscreen,24719063,2
+JunkRoad,24719063,4
+44949504,24719063,4
+2822373,24719063,-1
+3246025,24719063,3
+bugucuichun,24719063,4
+49029570,24719063,3
+64704924,24719063,5
+1736294,24719063,5
+48634684,24719063,4
+rachelife930,24719063,4
+69824529,24719063,5
+69824529,24719063,5
+120962539,24719063,4
+yangchenxin,24719063,5
+56237172,24719063,-1
+37777456,24719063,-1
+62743962,24719063,4
+3209634,24719063,5
+ledt,24719063,3
+13546352,24719063,4
+jakeman,24719063,4
+93091639,24719063,5
+1791853,24719063,4
+89565486,24719063,4
+pingchengweixin,24719063,4
+27933062,24719063,4
+feibaobei,24719063,4
+61384734,24719063,3
+58512408,24719063,5
+brison,24719063,4
+wjn,24719063,4
+crazyrice,24719063,5
+yingyan1231,24719063,3
+83059994,24719063,5
+21751408,24719063,5
+84342168,24719063,4
+wanggegui,24719063,3
+91521812,24719063,3
+Drunttime1023,24719063,4
+60550213,24719063,5
+2716038,24719063,5
+samzhuang,24719063,3
+66519246,24719063,3
+53682809,24719063,5
+14264766,24719063,4
+desmodus,24719063,3
+zebramomo,24719063,5
+bais0630,24719063,3
+craiglau,24719063,3
+4881092,24719063,4
+ILSYY,24719063,4
+133465535,24719063,4
+125055300,24719063,4
+felizfinal,24719063,3
+4245898,24719063,3
+42168201,24719063,3
+44185464,24719063,4
+2760131,24719063,4
+annseekgreen,24719063,4
+63167150,24719063,3
+soussol,24719063,2
+fromelf,24719063,4
+pure_115,24719063,4
+42242753,24719063,4
+4341892,24719063,4
+candyxiting,24719063,4
+xss0791,24719063,4
+84962977,24719063,3
+27157362,24719063,3
+122360797,24719063,4
+53082027,24719063,4
+36109432,24719063,3
+reika_scar,24719063,4
+yayatianrandai,24719063,5
+Heroic-Deborah,24719063,5
+Carman.Feng,24719063,3
+42965778,24719063,4
+48502234,24719063,3
+42787791,24719063,4
+65590168,24719063,5
+39378921,24719063,4
+qyzz,24719063,3
+1033926,24719063,3
+92962269,24719063,4
+xianzuo,24719063,4
+51571110,24719063,3
+45255137,24719063,2
+lareida,24719063,5
+cenxi,24719063,3
+100503233,24719063,4
+canxin,24719063,5
+36822469,24719063,4
+60046541,24719063,4
+68487696,24719063,3
+Aimeko,24719063,4
+bzlin,24719063,4
+82223749,24719063,1
+2044436,24719063,2
+rukiawang,24719063,5
+TitlisGushishan,24719063,4
+96782721,24719063,4
+54444481,24719063,5
+102997764,24719063,2
+roger589,24719063,3
+P.T.R.,24719063,-1
+atti0,24719063,3
+Andy_Shan,24719063,4
+liria521,24719063,5
+xyzzecho,24719063,4
+K_Kaito,24719063,3
+4324223,24719063,3
+zWalle,24719063,3
+75311522,24719063,3
+1450649,24719063,4
+72571342,24719063,3
+1743250,24719063,3
+iris_wu,24719063,4
+91816564,24719063,4
+40931757,24719063,3
+doudouhu,24719063,3
+49777530,24719063,5
+130414840,24719063,3
+71836089,24719063,5
+Vivianabout,24719063,4
+acillce,24719063,3
+83262411,24719063,3
+verycc,24719063,3
+91649977,24719063,5
+126089212,24719063,4
+eosin,24719063,4
+42172837,24719063,4
+71062374,24719063,4
+54417681,24719063,5
+lvchencf,24719063,4
+marjorie.shi,24719063,4
+100342523,24719063,4
+3832866,24719063,3
+90040822,24719063,4
+84475436,24719063,3
+70855502,24719063,-1
+littleteatea,24719063,4
+59290404,24719063,5
+63399051,24719063,5
+49888953,24719063,3
+46702721,24719063,4
+simpleyaya,24719063,5
+yukuai,24719063,-1
+62475317,24719063,5
+94168906,24719063,4
+rubiawu,24719063,4
+echota,24719063,2
+echota,24719063,2
+62688271,24719063,4
+fuxinisgood,24719063,4
+70539132,24719063,3
+2423121,24719063,4
+lattice.lee,24719063,1
+bnblut,24719063,5
+114445407,24719063,4
+74999792,24719063,4
+63746785,24719063,3
+yoanayy,24719063,4
+78058246,24719063,3
+115065521,24719063,3
+wyf1980,24719063,5
+62235753,24719063,5
+130190354,24719063,4
+64287168,24719063,5
+Sophie0401,24719063,3
+44329176,24719063,4
+51229956,24719063,-1
+51229956,24719063,-1
+mcwarren,24719063,3
+arlashi,24719063,4
+overlookthesky,24719063,4
+G--er,24719063,3
+52109390,24719063,4
+17586082,24719063,3
+yxw_vera,24719063,4
+61740620,24719063,3
+ParadiseOfFilm,24719063,3
+63381133,24719063,3
+33323847,24719063,4
+zhaoray,24719063,5
+133029940,24719063,3
+31269616,24719063,5
+121774438,24719063,3
+72023919,24719063,5
+52207529,24719063,4
+61278455,24719063,5
+64931899,24719063,4
+47603768,24719063,5
+weidawei1217,24719063,5
+mayleee,24719063,5
+rockeyfish,24719063,5
+53593294,24719063,3
+yuanzideweiba,24719063,5
+58243506,24719063,3
+38588086,24719063,3
+huangzj09thu,24719063,4
+46065900,24719063,4
+74862472,24719063,4
+baicaitai,24719063,5
+129815984,24719063,5
+qiusuiying,24719063,4
+75861648,24719063,3
+4242859,24719063,3
+3297574,24719063,3
+Lillian-LYL,24719063,3
+128178367,24719063,3
+125130054,24719063,4
+81051190,24719063,5
+reader_racer,24719063,4
+nemo2man,24719063,4
+Aamina-memory,24719063,5
+119425175,24719063,3
+124492261,24719063,4
+july0007,24719063,5
+52934173,24719063,5
+69900690,24719063,3
+ai91525,24719063,4
+coolwhite,24719063,4
+chillychan,24719063,3
+99834805,24719063,3
+38803170,24719063,3
+71030074,24719063,5
+39449970,24719063,2
+64096688,24719063,4
+sunjunhuang,24719063,4
+yys456789,24719063,3
+43831100,24719063,5
+83188339,24719063,4
+78514193,24719063,3
+39747577,24719063,4
+44440835,24719063,3
+79143222,24719063,4
+62275261,24719063,5
+45266623,24719063,3
+lazymule,24719063,4
+JerryGin,24719063,4
+4424282,24719063,4
+84902761,24719063,3
+miss90,24719063,1
+specialjophy,24719063,2
+55737467,24719063,4
+85671125,24719063,3
+42616654,24719063,4
+48207203,24719063,4
+singing4u,24719063,4
+cielbubble,24719063,5
+33439278,24719063,5
+maomaoinjuye,24719063,4
+ily98426,24719063,4
+130937387,24719063,4
+69686191,24719063,5
+60791510,24719063,4
+72070474,24719063,3
+shayy,24719063,4
+jackguo,24719063,4
+yochiro,24719063,5
+25725176,24719063,3
+41250945,24719063,5
+looktwice,24719063,3
+lindsayzyh,24719063,4
+84268334,24719063,5
+31126770,24719063,4
+1414261,24719063,4
+23105719,24719063,-1
+47038202,24719063,4
+36591097,24719063,3
+12320986,24719063,5
+64359754,24719063,4
+80121917,24719063,4
+45648190,24719063,5
+45182883,24719063,4
+41521988,24719063,2
+2163937,24719063,4
+47162155,24719063,4
+59714184,24719063,4
+105802310,24719063,4
+sevseven,24719063,4
+48435609,24719063,4
+58041147,24719063,4
+47516693,24719063,5
+Frankyooo,24719063,5
+jupang,24719063,3
+ldcr99,24719063,4
+69854098,24719063,2
+1395865,24719063,4
+50557858,24719063,3
+121950359,24719063,4
+10268879,24719063,5
+Apache1993,24719063,4
+2711621,24719063,4
+97304737,24719063,3
+107681544,24719063,-1
+49363701,24719063,4
+darling425,24719063,4
+yuelai15,24719063,4
+2542573,24719063,5
+63928716,24719063,4
+47873866,24719063,3
+4383968,24719063,4
+65723626,24719063,4
+62736610,24719063,4
+74056494,24719063,3
+qianhuibaizhuan,24719063,5
+69067944,24719063,4
+8924941,24719063,4
+52822669,24719063,5
+o8o8o8o,24719063,5
+133968127,24719063,3
+48668128,24719063,4
+lz2222222222,24719063,5
+groof,24719063,4
+ibluepurple,24719063,4
+34404618,24719063,3
+43200056,24719063,-1
+40241805,24719063,3
+65446206,24719063,3
+1274922,24719063,4
+qiujin,24719063,4
+rockerai,24719063,3
+54367149,24719063,4
+G0517th,24719063,2
+jerro,24719063,3
+taotao0510,24719063,3
+wushiyi1122,24719063,2
+97463781,24719063,4
+wuuuuyu,24719063,4
+129716579,24719063,4
+luckyred,24719063,-1
+isaxue,24719063,4
+stevieting,24719063,3
+94583369,24719063,5
+45765669,24719063,5
+sogenannte,24719063,2
+rim0821,24719063,4
+45160142,24719063,4
+1461112,24719063,2
+4207280,24719063,2
+43878527,24719063,4
+86812116,24719063,3
+129783136,24719063,4
+97072450,24719063,4
+Huangyun716,24719063,4
+liuine,24719063,4
+crazyfan,24719063,4
+84983123,24719063,4
+lanyeye,24719063,4
+lychjf,24719063,5
+shicao,24719063,3
+pengpeng9527,24719063,3
+44358201,24719063,5
+Hello-Momoko,24719063,5
+44132219,24719063,1
+22525155,24719063,5
+4116226,24719063,4
+47903791,24719063,4
+fengquan,24719063,5
+65029025,24719063,5
+121432553,24719063,4
+57448612,24719063,-1
+nicole24,24719063,4
+65376509,24719063,2
+80628102,24719063,4
+108289552,24719063,3
+52891081,24719063,4
+xuanxx,24719063,5
+89060866,24719063,5
+16057456,24719063,4
+41736231,24719063,4
+78640879,24719063,4
+46305822,24719063,5
+1369113,24719063,4
+66170130,24719063,3
+132000045,24719063,4
+rayll,24719063,3
+110929955,24719063,4
+54160566,24719063,5
+Annie-gu,24719063,4
+134371132,24719063,4
+74207607,24719063,1
+windytown,24719063,2
+50995944,24719063,4
+47914662,24719063,3
+38341224,24719063,5
+xxflyyh,24719063,4
+jingknight,24719063,4
+74807963,24719063,4
+1522607,24719063,3
+28783620,24719063,3
+2842505,24719063,3
+GjS1022,24719063,3
+129977566,24719063,3
+jichan,24719063,4
+62333494,24719063,4
+velmafei,24719063,3
+126981940,24719063,4
+54229245,24719063,5
+66074861,24719063,5
+miraclekylin,24719063,4
+68263919,24719063,4
+41110782,24719063,4
+suntina,24719063,4
+100939284,24719063,4
+3897743,24719063,3
+3399138,24719063,4
+karsa,24719063,4
+bonnie920311,24719063,3
+45108609,24719063,3
+lengmuxixi,24719063,4
+45637706,24719063,5
+51381887,24719063,4
+51818197,24719063,3
+michelq,24719063,4
+thina,24719063,5
+Gabriel_Mars,24719063,4
+56221536,24719063,3
+VitaBunny,24719063,3
+earringsholic,24719063,4
+73983729,24719063,4
+92341154,24719063,4
+4105122,24719063,5
+59861947,24719063,4
+71950308,24719063,5
+61088148,24719063,4
+dengxiayedao,24719063,4
+45703353,24719063,1
+66473759,24719063,4
+49232578,24719063,3
+51862785,24719063,4
+44311263,24719063,4
+jo422,24719063,4
+3891615,24719063,5
+fuckoffpussy,24719063,4
+130918803,24719063,4
+53913160,24719063,4
+emiliacat,24719063,3
+24419346,24719063,4
+46792617,24719063,4
+66797809,24719063,4
+66575578,24719063,4
+70658647,24719063,4
+74022856,24719063,4
+fawaixiaoyao,24719063,4
+2922610,24719063,3
+125231431,24719063,4
+chickJzi,24719063,3
+46499372,24719063,3
+69976018,24719063,4
+55464548,24719063,3
+Misscat145,24719063,3
+85120995,24719063,4
+62414180,24719063,4
+44866153,24719063,4
+41386230,24719063,4
+58771894,24719063,4
+inearlysummer,24719063,4
+54191288,24719063,3
+46590028,24719063,4
+freezinggl,24719063,3
+wanglinfei,24719063,4
+45441570,24719063,4
+liqiuzi0807,24719063,4
+50065302,24719063,4
+3978405,24719063,4
+xubuntu,24719063,3
+shuaishuaia,24719063,4
+wklappt,24719063,4
+53694003,24719063,-1
+53694003,24719063,-1
+kangjunhao,24719063,4
+bear1025,24719063,-1
+huangyan2738yy,24719063,4
+42708187,24719063,5
+vava2046,24719063,4
+49154839,24719063,5
+69609271,24719063,-1
+46788807,24719063,3
+Leyteris,24719063,5
+32928728,24719063,4
+I191265,24719063,4
+52573676,24719063,4
+40241060,24719063,4
+11842501,24719063,4
+Carl_L,24719063,4
+QingAIAliur,24719063,4
+68233199,24719063,3
+67171701,24719063,-1
+36963391,24719063,3
+73314180,24719063,3
+43858841,24719063,4
+cn1027,24719063,5
+summer-v,24719063,4
+sachi227,24719063,3
+MilkyWayH,24719063,3
+1082879,24719063,4
+2397813,24719063,4
+121612994,24719063,4
+3738868,24719063,3
+85357151,24719063,4
+38310657,24719063,4
+yuecarolcheung,24719063,4
+wayephang,24719063,3
+8990191,24719063,4
+Suuuuuure,24719063,3
+64873901,24719063,4
+46209502,24719063,3
+suxiaodan,24719063,4
+zengruiyan,24719063,4
+gstone1723,24719063,4
+piubiu,24719063,5
+62284723,24719063,4
+KiD-KiM,24719063,4
+1075678,24719063,3
+134160760,24719063,4
+Machobabe347,24719063,5
+zoezz,24719063,4
+53230906,24719063,4
+37924793,24719063,3
+aidaaijani,24719063,4
+lovetatum,24719063,5
+57511362,24719063,4
+caozhenzi,24719063,5
+bjus,24719063,5
+mugglezwt,24719063,4
+chxy1989,24719063,4
+lupupu,24719063,3
+104630878,24719063,5
+amake,24719063,4
+jingmeng_xiahti,24719063,5
+OMGZZ,24719063,4
+47116857,24719063,4
+59361957,24719063,3
+22142153,24719063,4
+nichrees,24719063,3
+49021556,24719063,4
+73751248,24719063,4
+123555998,24719063,4
+55379993,24719063,3
+snowallsky,24719063,3
+3572516,24719063,3
+47940206,24719063,5
+Reshy_,24719063,4
+61162296,24719063,-1
+2618043,24719063,4
+s13,24719063,5
+59627608,24719063,4
+Kings917,24719063,5
+2453044,24719063,3
+128307157,24719063,4
+126061647,24719063,4
+43115240,24719063,4
+123073450,24719063,5
+123232321,24719063,4
+geniuswan,24719063,4
+83191848,24719063,3
+89587704,24719063,4
+83971141,24719063,5
+102599770,24719063,4
+48072963,24719063,4
+58671992,24719063,4
+49467804,24719063,5
+29443633,24719063,5
+lmm333,24719063,4
+3921724,24719063,3
+82145264,24719063,4
+lx1994,24719063,3
+119013202,24719063,5
+132585784,24719063,4
+103553914,24719063,4
+daaaawn,24719063,3
+tinydream,24719063,4
+stephanie816,24719063,4
+58903343,24719063,4
+twochow,24719063,4
+tanglumk,24719063,4
+69129266,24719063,4
+cdqingchen,24719063,-1
+slowcrane,24719063,-1
+64720052,24719063,4
+65246493,24719063,4
+koujin,24719063,5
+stafiaryuu,24719063,5
+lohasdang,24719063,3
+quietsinger,24719063,3
+128643925,24719063,4
+owenyao,24719063,5
+49228218,24719063,1
+aizuomengderen,24719063,5
+aizuomengderen,24719063,5
+3934645,24719063,4
+54880097,24719063,5
+77068892,24719063,4
+A-Marvin-T,24719063,4
+41713025,24719063,5
+58848925,24719063,4
+132835359,24719063,5
+35087113,24719063,4
+shinewithtvxq,24719063,5
+2403446,24719063,3
+brownie.fr,24719063,4
+61963967,24719063,3
+3254418,24719063,4
+91785401,24719063,4
+fandongzhuantou,24719063,3
+mavisivam,24719063,5
+47566111,24719063,4
+nobodyknow520,24719063,5
+76853153,24719063,4
+65021672,24719063,3
+103645728,24719063,4
+44426331,24719063,4
+londonmiumiu,24719063,4
+euphymia,24719063,3
+SabrinaChen,24719063,3
+phoebehsu,24719063,5
+immengxmeng,24719063,5
+99942273,24719063,3
+46738902,24719063,4
+61134398,24719063,4
+chrismomo,24719063,3
+3534837,24719063,4
+96530367,24719063,4
+luckycici,24719063,4
+72727625,24719063,2
+82225198,24719063,2
+127585242,24719063,4
+3115383,24719063,5
+68361061,24719063,3
+47129931,24719063,4
+57767148,24719063,4
+4525488,24719063,4
+rainbea,24719063,4
+54983344,24719063,5
+65718280,24719063,5
+90171652,24719063,4
+4858389,24719063,3
+justforcrazy,24719063,3
+130531955,24719063,4
+58015342,24719063,4
+49073345,24719063,3
+xiaoliang0621,24719063,5
+junepotty,24719063,4
+76346345,24719063,3
+47655924,24719063,5
+ozawa,24719063,3
+69127270,24719063,4
+Sulla_Zhou,24719063,4
+irene826,24719063,4
+38863592,24719063,3
+4498680,24719063,3
+wongelephant,24719063,3
+wujltx,24719063,4
+129764944,24719063,4
+119451467,24719063,4
+12667477,24719063,4
+icephoenixone,24719063,4
+104207639,24719063,3
+3101572,24719063,4
+ourkid,24719063,4
+oisa,24719063,4
+134257829,24719063,4
+dan1103,24719063,3
+Lis_Z,24719063,4
+taode,24719063,5
+56042599,24719063,3
+Mr.tao,24719063,3
+82706451,24719063,4
+37532950,24719063,5
+1743863,24719063,4
+81296931,24719063,4
+48891392,24719063,3
+mabbit,24719063,3
+30280100,24719063,3
+83993012,24719063,5
+97263262,24719063,3
+poppy7777,24719063,4
+63795524,24719063,5
+44132837,24719063,3
+idama,24719063,5
+ruru260,24719063,4
+Rocklisa,24719063,4
+56085825,24719063,5
+55626398,24719063,4
+cylarzc,24719063,3
+88581281,24719063,5
+122118571,24719063,4
+50607886,24719063,3
+escape77,24719063,5
+HAVIAL13WEI,24719063,4
+zhuqianni,24719063,3
+64128291,24719063,3
+57815489,24719063,4
+67947664,24719063,4
+4090922,24719063,4
+121410902,24719063,4
+51526777,24719063,5
+132121341,24719063,5
+50632642,24719063,3
+m.edulla,24719063,3
+lizhiweierdelu,24719063,5
+BDX,24719063,-1
+ladyyue,24719063,4
+2600403,24719063,3
+shanbaixuanlan,24719063,4
+58364014,24719063,4
+70698244,24719063,4
+45619504,24719063,2
+48137780,24719063,3
+77214072,24719063,5
+chitty411,24719063,4
+64814580,24719063,4
+2247685,24719063,3
+52472393,24719063,2
+102446060,24719063,4
+yylaoliu,24719063,2
+68027826,24719063,5
+lexiaoqi,24719063,5
+4740160,24719063,4
+aijin1011,24719063,4
+121778699,24719063,4
+danielleo,24719063,3
+42839977,24719063,4
+116805216,24719063,4
+craneink,24719063,4
+133011186,24719063,5
+55566900,24719063,3
+94842809,24719063,2
+48554964,24719063,5
+100639145,24719063,4
+pompomlai,24719063,2
+kimochii,24719063,3
+likinglr,24719063,4
+51606142,24719063,3
+roxo,24719063,5
+1815506,24719063,4
+youngfuck,24719063,4
+Sttaan,24719063,5
+54325025,24719063,4
+40710285,24719063,4
+21876577,24719063,5
+daisy3977,24719063,4
+41706695,24719063,5
+norlesamourai,24719063,-1
+35465619,24719063,3
+lovelyJ,24719063,4
+57212988,24719063,3
+124408864,24719063,4
+59646207,24719063,4
+chinimei,24719063,5
+131817734,24719063,3
+77451005,24719063,5
+lanhouzi,24719063,4
+72133915,24719063,2
+wheat109,24719063,4
+honey98326,24719063,4
+62917161,24719063,3
+Lynniass,24719063,4
+102368978,24719063,5
+65907866,24719063,2
+60661079,24719063,4
+zhangzhenyang,24719063,4
+snowman-clover,24719063,5
+cioilo,24719063,4
+hollyxiyi,24719063,4
+93137817,24719063,4
+80508054,24719063,-1
+rhh,24719063,4
+102770095,24719063,3
+83119580,24719063,4
+72639962,24719063,4
+78458256,24719063,5
+66460349,24719063,3
+74060138,24719063,4
+53871765,24719063,3
+Alberta77,24719063,4
+2784838,24719063,4
+vloiter,24719063,3
+49921497,24719063,3
+GreenAdam,24719063,5
+81968571,24719063,4
+120753848,24719063,4
+80857906,24719063,-1
+82845535,24719063,5
+52972629,24719063,5
+64904915,24719063,5
+54086694,24719063,4
+agnes223,24719063,3
+81425101,24719063,4
+81425101,24719063,4
+61664487,24719063,3
+13570007,24719063,4
+uniyiyi,24719063,5
+48223823,24719063,4
+14014568,24719063,3
+77283735,24719063,4
+mypal,24719063,5
+37340433,24719063,4
+TiKuanYin,24719063,3
+121536434,24719063,4
+jopees,24719063,4
+2746484,24719063,4
+53710950,24719063,4
+67285922,24719063,4
+2200421,24719063,3
+72219224,24719063,5
+54604560,24719063,4
+1413100,24719063,5
+zq629,24719063,3
+7881838,24719063,5
+33978409,24719063,5
+134327676,24719063,3
+51803624,24719063,4
+1831746,24719063,3
+80934175,24719063,4
+84039736,24719063,3
+42634984,24719063,5
+2504247,24719063,4
+89835512,24719063,4
+53242545,24719063,3
+Yolandaleaf,24719063,4
+littleshy,24719063,2
+45077358,24719063,4
+62949380,24719063,5
+52392027,24719063,3
+Joinblue,24719063,5
+89880536,24719063,3
+82923097,24719063,-1
+49356152,24719063,3
+83229871,24719063,4
+80844578,24719063,5
+54942437,24719063,-1
+35005590,24719063,4
+91038932,24719063,5
+3325882,24719063,4
+48725322,24719063,5
+60419885,24719063,4
+4411026,24719063,4
+4347889,24719063,5
+3121297,24719063,2
+92717529,24719063,3
+114357928,24719063,5
+57970872,24719063,4
+46493836,24719063,3
+cxycxy19930520,24719063,5
+estellalxy,24719063,4
+66116098,24719063,4
+55584598,24719063,4
+30186922,24719063,3
+38083071,24719063,3
+126487097,24719063,4
+49699512,24719063,4
+49602795,24719063,4
+enderstar,24719063,2
+48224071,24719063,3
+giantpanda,24719063,4
+4092606,24719063,4
+62369741,24719063,4
+133543813,24719063,4
+phoebechin,24719063,2
+echoT7,24719063,3
+63853123,24719063,5
+1604452,24719063,4
+49065066,24719063,4
+candaes,24719063,3
+46612613,24719063,4
+55608107,24719063,4
+26803264,24719063,4
+48748738,24719063,4
+45064973,24719063,5
+40311297,24719063,5
+69806466,24719063,4
+65805429,24719063,4
+terrywyz,24719063,5
+79803791,24719063,3
+4132864,24719063,5
+1850141,24719063,4
+75987958,24719063,4
+102747303,24719063,2
+shifanghe,24719063,4
+44121250,24719063,4
+avrilyian,24719063,4
+58934229,24719063,4
+Sherlock.B,24719063,3
+131811211,24719063,5
+67072789,24719063,5
+68988992,24719063,4
+ada7603,24719063,5
+92192831,24719063,4
+92192831,24719063,4
+60648596,24719063,4
+55509009,24719063,5
+90900904,24719063,5
+littlelu,24719063,2
+pppaige,24719063,4
+64012873,24719063,3
+126101069,24719063,4
+128345854,24719063,3
+tigermiao,24719063,4
+48057004,24719063,5
+60233136,24719063,4
+shemayday,24719063,3
+59592825,24719063,3
+yoyoyoyoyoyoyo,24719063,4
+127777061,24719063,5
+44361116,24719063,3
+123469055,24719063,4
+119493650,24719063,4
+126887950,24719063,5
+126887950,24719063,5
+81495281,24719063,3
+50474968,24719063,3
+xiaotao,24719063,4
+sijizhp,24719063,3
+3173499,24719063,3
+88323753,24719063,4
+46667318,24719063,2
+yushan33,24719063,4
+cly23,24719063,4
+42886827,24719063,4
+69571005,24719063,4
+77571393,24719063,5
+cucnmql,24719063,3
+100871772,24719063,4
+57766501,24719063,4
+crblue,24719063,4
+1859550,24719063,5
+1029394,24719063,3
+39368984,24719063,3
+56591384,24719063,4
+52056943,24719063,4
+78501893,24719063,-1
+130648493,24719063,4
+zoe_su,24719063,4
+15027079,24719063,4
+49133702,24719063,4
+champagnealice,24719063,4
+icantlive,24719063,4
+k1na,24719063,4
+57902963,24719063,4
+duckdan,24719063,3
+47425111,24719063,3
+52128346,24719063,3
+74446940,24719063,5
+2226826,24719063,4
+13871057,24719063,3
+dumica,24719063,4
+82387095,24719063,5
+paradise624,24719063,3
+15402230,24719063,5
+57459956,24719063,3
+94831579,24719063,4
+62760636,24719063,5
+64139791,24719063,5
+119340894,24719063,3
+deltatrong,24719063,3
+47692735,24719063,4
+36653510,24719063,5
+74548439,24719063,4
+69291964,24719063,4
+1664141,24719063,4
+55444870,24719063,4
+88878838,24719063,5
+45400078,24719063,4
+134310076,24719063,5
+ccamanda,24719063,4
+60189381,24719063,3
+2718689,24719063,3
+fccindy,24719063,3
+71490548,24719063,4
+qiangdao77,24719063,4
+39257377,24719063,5
+52615900,24719063,4
+52392093,24719063,3
+89423046,24719063,-1
+37944663,24719063,3
+115324297,24719063,2
+skeleton4125,24719063,3
+48472823,24719063,4
+noangel05,24719063,4
+55478954,24719063,3
+58932917,24719063,3
+zhaoxu_nice1118,24719063,3
+104367240,24719063,3
+134306404,24719063,4
+62344979,24719063,4
+89610465,24719063,3
+61807076,24719063,3
+4687388,24719063,4
+125957151,24719063,3
+star2u,24719063,4
+82588510,24719063,4
+maoguer,24719063,4
+sherry1013L,24719063,4
+58810279,24719063,4
+bittersweetlee,24719063,4
+99668636,24719063,3
+cloris32,24719063,3
+50236278,24719063,4
+maojinzhu,24719063,4
+133136492,24719063,4
+65660961,24719063,5
+108289325,24719063,3
+gardeniasky,24719063,4
+chanbikyu,24719063,5
+3669328,24719063,3
+13330129,24719063,4
+3430040,24719063,-1
+119778087,24719063,4
+119778087,24719063,4
+68778693,24719063,3
+55886618,24719063,3
+66759944,24719063,4
+wky15827318450,24719063,4
+56453375,24719063,4
+2833136,24719063,5
+moonkey13,24719063,4
+53075931,24719063,4
+82484416,24719063,4
+51354667,24719063,4
+63347882,24719063,4
+30219085,24719063,4
+64624172,24719063,-1
+63012050,24719063,4
+xyhqs1984,24719063,4
+88079450,24719063,4
+xuqingkuang,24719063,4
+69151342,24719063,4
+71960919,24719063,3
+53419926,24719063,4
+51234730,24719063,2
+129468631,24719063,5
+83377603,24719063,5
+waixiaoke,24719063,3
+26480160,24719063,5
+3677040,24719063,3
+amyzane,24719063,4
+athenahyphen,24719063,5
+ibezz,24719063,4
+RuBP,24719063,4
+122016263,24719063,3
+2980100,24719063,3
+50479628,24719063,5
+35189092,24719063,3
+37641563,24719063,4
+phoebe0_0nn,24719063,5
+39922157,24719063,4
+134298368,24719063,4
+46037661,24719063,5
+3567588,24719063,4
+34148376,24719063,4
+17883695,24719063,4
+miyamiyawei,24719063,5
+twelveoak,24719063,-1
+58044228,24719063,3
+djliris,24719063,4
+3340201,24719063,3
+55601818,24719063,4
+103137045,24719063,4
+67963097,24719063,4
+1634532,24719063,4
+sagevliu,24719063,2
+47450335,24719063,4
+75925121,24719063,4
+weisihai,24719063,-1
+70057422,24719063,4
+yal624,24719063,3
+127081062,24719063,4
+sweetestdreams,24719063,4
+doratora,24719063,2
+55997229,24719063,3
+134281979,24719063,4
+49436106,24719063,3
+49668025,24719063,4
+74553304,24719063,4
+65724006,24719063,5
+53049553,24719063,4
+ayoyoyo,24719063,3
+love.vivi,24719063,3
+sodamanxxj,24719063,4
+littlegreen1084,24719063,2
+47931156,24719063,4
+46659356,24719063,2
+aimaibumai,24719063,4
+64506068,24719063,4
+65234646,24719063,3
+76909039,24719063,3
+54122368,24719063,5
+56051660,24719063,5
+37679542,24719063,4
+51274833,24719063,-1
+72197323,24719063,3
+133178672,24719063,5
+99077517,24719063,5
+121314476,24719063,3
+antimido,24719063,3
+41893055,24719063,4
+3082225,24719063,4
+YovaMonster1027,24719063,4
+joker619,24719063,5
+kalendar,24719063,3
+60132042,24719063,4
+3425312,24719063,3
+49183076,24719063,4
+alicenana,24719063,3
+122993134,24719063,4
+21927784,24719063,2
+49266005,24719063,2
+ddling,24719063,5
+binkychou,24719063,4
+67561364,24719063,5
+chuchucarol,24719063,4
+2283116,24719063,4
+134289154,24719063,3
+53179164,24719063,4
+yimeiweiba,24719063,4
+zhouty,24719063,4
+104062670,24719063,5
+84824667,24719063,4
+Mr.Wing,24719063,4
+59422380,24719063,4
+35297314,24719063,4
+49151871,24719063,-1
+belladonnalily,24719063,3
+su-dong,24719063,4
+whaless,24719063,3
+66834234,24719063,5
+25503918,24719063,4
+39996045,24719063,4
+131759076,24719063,4
+116649672,24719063,5
+iwinux,24719063,4
+BIN_CHANG,24719063,2
+hongzhouche,24719063,3
+25884300,24719063,4
+76447430,24719063,3
+FIRR,24719063,4
+weiliaoliao,24719063,4
+60019003,24719063,4
+2316296,24719063,2
+72167289,24719063,-1
+maomaomaoyl,24719063,4
+momodd1314,24719063,3
+enjoying,24719063,4
+133379939,24719063,-1
+zhujiao,24719063,4
+50028019,24719063,3
+65297808,24719063,1
+torol,24719063,3
+Briamapple,24719063,5
+76655139,24719063,4
+zhongmu,24719063,4
+November1990,24719063,4
+123701007,24719063,4
+4630769,24719063,5
+132954979,24719063,3
+vienna76,24719063,4
+3908588,24719063,4
+126899663,24719063,3
+51180631,24719063,4
+36341358,24719063,-1
+cao_mq1989.,24719063,4
+1431978,24719063,3
+lovecimi,24719063,3
+70002242,24719063,4
+83193363,24719063,3
+74906023,24719063,4
+28573288,24719063,4
+huxiaotian,24719063,4
+huxiaotian,24719063,4
+bebest,24719063,5
+1840916,24719063,3
+kalla,24719063,4
+119224522,24719063,5
+78821602,24719063,5
+41786402,24719063,4
+devilpuff,24719063,4
+banxia819,24719063,4
+55823750,24719063,3
+49375167,24719063,5
+58959669,24719063,4
+panpan_lovelife,24719063,4
+znrpiggey,24719063,4
+yingketong,24719063,4
+84612888,24719063,4
+113287715,24719063,4
+jeanne68240109,24719063,3
+132760769,24719063,3
+123231401,24719063,4
+134163547,24719063,4
+chongchenglove,24719063,5
+54067845,24719063,4
+mouseRachel,24719063,4
+carl1988,24719063,4
+hexin199012,24719063,-1
+54989820,24719063,4
+gb333,24719063,3
+54977613,24719063,4
+gejun9558,24719063,4
+46519818,24719063,4
+59336552,24719063,4
+49014708,24719063,3
+pineappletu,24719063,4
+83108940,24719063,3
+zhangweishi,24719063,5
+bbl45,24719063,5
+minamy1227,24719063,3
+73701438,24719063,5
+117939965,24719063,3
+62853485,24719063,4
+monodialogue,24719063,4
+done13,24719063,5
+56535276,24719063,4
+yanism,24719063,4
+chenhuayang,24719063,4
+syamazing,24719063,3
+63874245,24719063,4
+silencezyh,24719063,5
+63008806,24719063,3
+55669660,24719063,3
+61166238,24719063,-1
+52340966,24719063,4
+77317619,24719063,4
+69999895,24719063,4
+tonganda,24719063,4
+clover.k,24719063,4
+wdfsmiling,24719063,4
+haoxuesheng,24719063,4
+lu7,24719063,5
+73106736,24719063,4
+54193042,24719063,4
+Iapetus1216,24719063,5
+84238403,24719063,4
+54500977,24719063,4
+47509216,24719063,4
+87818830,24719063,5
+59030523,24719063,3
+46717577,24719063,3
+qingliangde,24719063,3
+jun14,24719063,3
+46827374,24719063,4
+96728684,24719063,5
+eozic,24719063,4
+haixiaoyang,24719063,4
+55439638,24719063,4
+60967161,24719063,4
+3493505,24719063,4
+79582390,24719063,4
+54210699,24719063,2
+4712487,24719063,4
+hututu429,24719063,5
+44718083,24719063,4
+52875628,24719063,4
+27571749,24719063,4
+69840641,24719063,5
+austinswift,24719063,4
+58689534,24719063,4
+JoooNE,24719063,3
+4584624,24719063,3
+eastease,24719063,5
+59423944,24719063,5
+121109357,24719063,4
+57854252,24719063,5
+36862106,24719063,4
+12764291,24719063,4
+protozoa,24719063,3
+huhuxiaoxue0219,24719063,4
+56144470,24719063,4
+63802168,24719063,5
+penpeter,24719063,4
+44976986,24719063,4
+64444161,24719063,5
+54612022,24719063,2
+sevenlan,24719063,4
+orsule,24719063,4
+mechiland,24719063,4
+89974834,24719063,3
+54054785,24719063,4
+37318198,24719063,4
+57886911,24719063,4
+64700587,24719063,3
+allthesame,24719063,4
+65957374,24719063,3
+56154241,24719063,1
+56652624,24719063,4
+sophielikeit,24719063,3
+52939857,24719063,4
+5782254,24719063,5
+Melody_sw,24719063,5
+59691399,24719063,3
+76004263,24719063,5
+51478034,24719063,4
+36755564,24719063,-1
+105146664,24719063,4
+chuyan,24719063,4
+64856511,24719063,-1
+67146028,24719063,3
+64794289,24719063,2
+aimar1989,24719063,3
+willen007,24719063,3
+rachel.dai,24719063,5
+62880392,24719063,4
+2010576,24719063,5
+48578756,24719063,4
+62679951,24719063,5
+44142019,24719063,3
+t77cp3,24719063,4
+butten,24719063,5
+yisilian,24719063,3
+53060922,24719063,4
+82588845,24719063,3
+why781,24719063,4
+70413922,24719063,3
+57882402,24719063,3
+49146355,24719063,4
+zhuobielin,24719063,3
+57927402,24719063,2
+53348729,24719063,5
+ChangeQ,24719063,5
+DuoThree,24719063,5
+89997882,24719063,4
+2468582,24719063,4
+injune,24719063,3
+61070118,24719063,4
+sulishi,24719063,4
+41263739,24719063,5
+67200006,24719063,4
+sadie_xiong,24719063,5
+69253315,24719063,4
+58193839,24719063,4
+52323040,24719063,4
+119550935,24719063,5
+4065528,24719063,5
+102236551,24719063,4
+4119315,24719063,2
+ozisanxiao,24719063,3
+1480697,24719063,4
+89096391,24719063,4
+64972514,24719063,4
+shangshishuo,24719063,4
+58094231,24719063,3
+69105248,24719063,4
+52364655,24719063,5
+60794745,24719063,5
+116880685,24719063,3
+120286837,24719063,4
+36898535,24719063,4
+54758477,24719063,4
+JohanLiebert,24719063,4
+47517431,24719063,4
+xieyixia,24719063,4
+Daisy777777777,24719063,4
+tmgmonitr,24719063,-1
+48884325,24719063,4
+49308797,24719063,4
+34250438,24719063,5
+27498320,24719063,3
+41367036,24719063,5
+44531163,24719063,5
+4678419,24719063,5
+95817419,24719063,4
+2985824,24719063,4
+68342567,24719063,5
+47727342,24719063,4
+13452174,24719063,3
+vivian_pan,24719063,4
+3333349,24719063,5
+45739088,24719063,5
+58433028,24719063,4
+71374005,24719063,3
+Valentina1919,24719063,5
+yinzaixi,24719063,3
+weire,24719063,4
+surferosa,24719063,3
+47282600,24719063,5
+irockbunny,24719063,3
+1207173,24719063,4
+argorn,24719063,5
+47588699,24719063,4
+130353620,24719063,3
+1071065,24719063,5
+61876361,24719063,5
+46579498,24719063,4
+nynynyny,24719063,4
+87677171,24719063,2
+45536118,24719063,4
+ximozhe,24719063,4
+55630140,24719063,4
+sproblvem,24719063,4
+doraeimo,24719063,1
+124170080,24719063,3
+54183087,24719063,3
+lcrgreen,24719063,4
+dingyidingyi,24719063,4
+drun2046,24719063,3
+64297139,24719063,5
+45313223,24719063,4
+candylifenuevo,24719063,4
+53253762,24719063,3
+8523675,24719063,3
+onlynana,24719063,4
+nupid,24719063,5
+3522119,24719063,4
+86257742,24719063,3
+IOMOVIE,24719063,4
+72096774,24719063,4
+58151132,24719063,3
+sa1990,24719063,4
+SmilingJune,24719063,3
+elapsesilence,24719063,4
+78056349,24719063,2
+51020653,24719063,5
+sassy22,24719063,4
+72440781,24719063,3
+64035088,24719063,4
+64748412,24719063,3
+48175855,24719063,4
+89412793,24719063,3
+lsy34,24719063,4
+2174198,24719063,3
+128094656,24719063,3
+57084778,24719063,3
+54701567,24719063,4
+57780928,24719063,5
+1793759,24719063,4
+1989077,24719063,4
+127669115,24719063,4
+59493080,24719063,3
+1401672,24719063,3
+45325158,24719063,4
+3109335,24719063,4
+79248836,24719063,2
+3222069,24719063,4
+64144494,24719063,4
+33396944,24719063,1
+yvett,24719063,5
+68811161,24719063,3
+layu,24719063,2
+Connotation,24719063,4
+liulizhen,24719063,4
+2860030,24719063,4
+frozenvein,24719063,5
+K-Child,24719063,4
+lovefucking,24719063,4
+82918444,24719063,4
+57142558,24719063,4
+105814086,24719063,2
+sunfe2009,24719063,4
+16313664,24719063,4
+takacmon,24719063,3
+120964846,24719063,3
+31004958,24719063,4
+27783640,24719063,5
+ala7lee,24719063,3
+48873217,24719063,4
+49081638,24719063,2
+xinzhouyang,24719063,3
+97163496,24719063,4
+62503467,24719063,4
+83895101,24719063,4
+31507086,24719063,3
+sorchalee,24719063,4
+51727447,24719063,4
+26602627,24719063,4
+71609653,24719063,4
+45784853,24719063,4
+53682369,24719063,4
+64994053,24719063,4
+payolee,24719063,4
+payolee,24719063,4
+partingkadaj,24719063,3
+43970229,24719063,-1
+124257806,24719063,4
+48589119,24719063,4
+91304159,24719063,5
+lulu329,24719063,4
+35001055,24719063,4
+onlyck,24719063,3
+48419666,24719063,3
+haluway,24719063,3
+44284036,24719063,3
+61573146,24719063,4
+52834321,24719063,2
+tls,24719063,4
+babiroytina,24719063,5
+coney321,24719063,-1
+chauyeelee,24719063,5
+laotougou,24719063,4
+51031281,24719063,3
+57375579,24719063,4
+92633728,24719063,4
+56484149,24719063,3
+Link0406,24719063,4
+58340906,24719063,4
+40325281,24719063,4
+hellochensasa,24719063,3
+1305846,24719063,3
+67466072,24719063,5
+49523598,24719063,4
+71995936,24719063,4
+zhang990246,24719063,5
+4039412,24719063,4
+rainysue,24719063,4
+40934646,24719063,3
+51061137,24719063,4
+44901258,24719063,4
+ekuwang,24719063,4
+66831677,24719063,3
+jageon,24719063,2
+72939512,24719063,5
+4710028,24719063,4
+dd54,24719063,5
+RobotechMacorss,24719063,3
+2113261,24719063,4
+134061334,24719063,4
+62949378,24719063,4
+4059582,24719063,4
+70147844,24719063,4
+62960950,24719063,3
+badjian,24719063,3
+58955085,24719063,4
+kimiyooo,24719063,-1
+39957358,24719063,3
+iker-estrella,24719063,2
+49191528,24719063,4
+41919176,24719063,4
+11183777,24719063,3
+gillianxi,24719063,3
+46002739,24719063,4
+2036072,24719063,4
+summercharon,24719063,4
+pennyw,24719063,5
+Dora_LD,24719063,3
+84019906,24719063,5
+cheesung,24719063,4
+71988436,24719063,5
+16038998,24719063,4
+joynee,24719063,5
+71227849,24719063,3
+wanyaozhe,24719063,4
+48103122,24719063,4
+126283294,24719063,3
+mian1987,24719063,3
+31789782,24719063,3
+govgouviiiiiiii,24719063,4
+46484046,24719063,5
+unbounder,24719063,4
+47414610,24719063,4
+3717792,24719063,5
+46428356,24719063,5
+mmmy,24719063,5
+15485620,24719063,3
+old-playboy,24719063,4
+GreenySoul,24719063,4
+monononono,24719063,5
+4417549,24719063,4
+82594564,24719063,5
+50760387,24719063,3
+wupeachfan,24719063,4
+vivien007,24719063,5
+yxbb,24719063,4
+59347352,24719063,4
+74771823,24719063,3
+34268319,24719063,5
+14545399,24719063,2
+51088127,24719063,4
+81630192,24719063,4
+1144150,24719063,4
+40979162,24719063,5
+dtzhlq,24719063,4
+tianchuan,24719063,3
+83803190,24719063,2
+63517644,24719063,3
+benpan,24719063,4
+pr1_ncer,24719063,3
+59959824,24719063,4
+fontain,24719063,3
+minilion,24719063,3
+70599398,24719063,4
+hlinwang,24719063,3
+torreslee,24719063,3
+zhuangjiafeng,24719063,4
+qiuqueen,24719063,3
+55694155,24719063,5
+14409304,24719063,3
+107305627,24719063,4
+sweetdreamzhou,24719063,5
+41414161,24719063,4
+wrj_mm,24719063,3
+wrj_mm,24719063,3
+72438704,24719063,-1
+70275791,24719063,5
+noknown,24719063,4
+2722876,24719063,5
+38314204,24719063,4
+47866017,24719063,5
+130312890,24719063,4
+quite-yacca,24719063,4
+57780385,24719063,4
+25455745,24719063,4
+3853276,24719063,4
+aroma_land,24719063,4
+73844312,24719063,5
+20968477,24719063,5
+53895980,24719063,1
+huhuijiao,24719063,3
+92835955,24719063,4
+52384106,24719063,5
+summonercarl,24719063,4
+134183599,24719063,4
+misszhao7,24719063,4
+51999705,24719063,4
+77885971,24719063,5
+56351830,24719063,3
+123593383,24719063,4
+missingyoulee,24719063,4
+liyuanhui,24719063,2
+129732129,24719063,4
+neverwindy,24719063,4
+3584957,24719063,4
+121756661,24719063,3
+eve22ven,24719063,4
+98568975,24719063,4
+45746626,24719063,4
+ov_beeshoot,24719063,4
+dragonfly870316,24719063,5
+sadmicky,24719063,3
+78763010,24719063,3
+mikaLynn,24719063,4
+miu-Wolf,24719063,3
+jsdevision,24719063,4
+cruer,24719063,4
+35498152,24719063,4
+luyanan1943,24719063,4
+6583292,24719063,4
+61856030,24719063,4
+82981100,24719063,3
+sunnyfify,24719063,3
+Mrssin,24719063,4
+37666139,24719063,5
+68288048,24719063,3
+77492957,24719063,4
+60221654,24719063,5
+breakawaycs,24719063,4
+81439273,24719063,4
+32058444,24719063,4
+29998862,24719063,4
+elikea,24719063,3
+apple-dudu,24719063,5
+1188317,24719063,4
+smileforever,24719063,2
+53345772,24719063,5
+61312247,24719063,4
+84847341,24719063,4
+14966613,24719063,4
+lycheche,24719063,4
+48098094,24719063,4
+dolcetta99,24719063,3
+50041894,24719063,3
+88337949,24719063,5
+65925591,24719063,5
+61512504,24719063,4
+46683408,24719063,4
+hedmgh,24719063,4
+35099655,24719063,3
+4182776,24719063,4
+63049878,24719063,3
+benyang,24719063,5
+qq120286102030,24719063,2
+49658554,24719063,4
+74819421,24719063,3
+64445510,24719063,4
+1287147,24719063,5
+82078982,24719063,4
+44585968,24719063,5
+50619020,24719063,4
+73804612,24719063,4
+52755028,24719063,2
+CACCIWITHBEAR,24719063,3
+45355870,24719063,4
+46495423,24719063,5
+55374511,24719063,4
+shiyixi915,24719063,3
+pashplus,24719063,5
+qx0730,24719063,3
+48898252,24719063,4
+4459976,24719063,3
+80468427,24719063,4
+4888620,24719063,4
+67524096,24719063,4
+87727957,24719063,4
+44273309,24719063,5
+40883451,24719063,4
+46660321,24719063,2
+miss-sun,24719063,4
+50573037,24719063,4
+50997906,24719063,4
+cocotea28,24719063,4
+76170749,24719063,4
+Coldon,24719063,5
+2774199,24719063,4
+74266525,24719063,2
+53715801,24719063,5
+61314645,24719063,4
+Elsa_MLion,24719063,5
+2985026,24719063,2
+2317327,24719063,4
+66088686,24719063,4
+lvmeansdonkey,24719063,4
+joeyada,24719063,4
+chendanni,24719063,5
+Sugar23,24719063,4
+63620933,24719063,4
+46009658,24719063,4
+camus314,24719063,3
+dsl1122,24719063,4
+59015045,24719063,4
+darllling,24719063,5
+smallxuxu,24719063,4
+firecome7,24719063,4
+alessiagu,24719063,4
+kongyinmingye,24719063,5
+59405094,24719063,4
+35342547,24719063,3
+3051416,24719063,-1
+lankiki7,24719063,4
+bear-fullhouse,24719063,3
+smiduo,24719063,-1
+44536599,24719063,2
+49723893,24719063,3
+luvndisaster,24719063,5
+rohi,24719063,5
+fallwood,24719063,4
+57876075,24719063,3
+3074577,24719063,3
+4372093,24719063,3
+61652299,24719063,3
+4409616,24719063,4
+48942164,24719063,4
+Jeanette_Xu,24719063,5
+62949934,24719063,4
+53768020,24719063,3
+kyfilm,24719063,3
+chenmai,24719063,4
+31711681,24719063,5
+kaye-mi,24719063,4
+3531458,24719063,4
+43575180,24719063,5
+xylonapp,24719063,2
+40586247,24719063,4
+43828485,24719063,4
+karain,24719063,4
+linchencun,24719063,5
+Jacobzebra,24719063,5
+34936131,24719063,4
+45226797,24719063,4
+120508779,24719063,3
+27562730,24719063,3
+47017825,24719063,4
+117808564,24719063,4
+57566252,24719063,5
+99356021,24719063,5
+daya39,24719063,5
+allahking,24719063,4
+4580722,24719063,4
+66740319,24719063,4
+70359776,24719063,4
+47688703,24719063,4
+121805540,24719063,4
+68276800,24719063,3
+40485290,24719063,4
+43391667,24719063,3
+65438741,24719063,3
+49232801,24719063,4
+60624598,24719063,4
+happiness-tmx,24719063,5
+cynthia9472,24719063,3
+80072095,24719063,4
+40436997,24719063,4
+fishzzm,24719063,3
+45340384,24719063,5
+37615847,24719063,4
+66433144,24719063,5
+hoboland,24719063,4
+83313626,24719063,3
+54265067,24719063,4
+tylysia,24719063,5
+53171700,24719063,4
+40486843,24719063,-1
+ploret,24719063,3
+13262749,24719063,3
+79398772,24719063,3
+55815208,24719063,4
+58457160,24719063,4
+133239175,24719063,3
+46380360,24719063,3
+125773849,24719063,5
+41606354,24719063,3
+53383783,24719063,3
+86907672,24719063,3
+3793037,24719063,3
+39961322,24719063,4
+zero_cat,24719063,3
+84973514,24719063,4
+122360380,24719063,5
+3586070,24719063,4
+58860535,24719063,3
+122232631,24719063,3
+99773030,24719063,3
+91471421,24719063,5
+133082737,24719063,4
+119383961,24719063,3
+shelly1991,24719063,4
+esperanza311,24719063,4
+98048421,24719063,3
+115849578,24719063,3
+83505394,24719063,5
+11561453,24719063,4
+56001919,24719063,5
+83899962,24719063,4
+qingxi52vv,24719063,4
+3215431,24719063,4
+2759871,24719063,3
+forevervivi,24719063,-1
+53317988,24719063,4
+43652685,24719063,4
+89759439,24719063,3
+4594496,24719063,4
+3520910,24719063,3
+3520910,24719063,3
+daisyz,24719063,4
+129548672,24719063,5
+zhu-ke,24719063,5
+72209783,24719063,5
+74848025,24719063,4
+8469986,24719063,4
+laishuwen,24719063,5
+mahuahualai,24719063,4
+77673608,24719063,4
+52538749,24719063,4
+yeyi0819,24719063,-1
+mustundead,24719063,5
+77633290,24719063,3
+76925066,24719063,4
+45307960,24719063,5
+4380978,24719063,5
+lovelyxiong,24719063,4
+61167870,24719063,4
+jiangbaoxiao,24719063,4
+javableue,24719063,3
+31548307,24719063,3
+2089364,24719063,5
+irenegaofish,24719063,-1
+101629689,24719063,3
+baoqy27,24719063,3
+3356601,24719063,4
+3798254,24719063,5
+42428216,24719063,2
+52762105,24719063,4
+49117233,24719063,5
+yiyufl,24719063,4
+49839659,24719063,4
+43278036,24719063,4
+131375761,24719063,4
+ivywell,24719063,3
+4380228,24719063,4
+LiuS-7,24719063,4
+57879215,24719063,4
+45375152,24719063,2
+3564765,24719063,4
+127214404,24719063,3
+53379801,24719063,4
+64626347,24719063,3
+dajiang999,24719063,5
+antiekin,24719063,3
+55622690,24719063,3
+summermilan,24719063,4
+41152514,24719063,5
+wuyezi,24719063,4
+65809377,24719063,3
+hypochondria,24719063,4
+91893507,24719063,3
+131120554,24719063,5
+114057522,24719063,4
+102337536,24719063,3
+yaozi0426,24719063,4
+nicoletta,24719063,4
+46932816,24719063,3
+3906584,24719063,4
+3906584,24719063,4
+65784611,24719063,3
+53769414,24719063,5
+47790979,24719063,3
+vip_chang,24719063,5
+128109849,24719063,5
+jessicahuang,24719063,4
+iambenbenkitty,24719063,4
+35703098,24719063,4
+100293359,24719063,3
+2064047,24719063,4
+48179378,24719063,4
+12651921,24719063,4
+48265366,24719063,3
+43215145,24719063,4
+oylzllk,24719063,3
+andery,24719063,3
+57880931,24719063,3
+66462551,24719063,4
+4151913,24719063,4
+50668498,24719063,3
+henzen,24719063,4
+a1b2c32046,24719063,4
+93961418,24719063,4
+131223680,24719063,3
+chixixiaoyu228,24719063,4
+70316842,24719063,5
+124529831,24719063,3
+3943144,24719063,4
+37370145,24719063,4
+52072030,24719063,4
+3198636,24719063,3
+79930267,24719063,-1
+ningxixi,24719063,4
+32934422,24719063,5
+65526333,24719063,5
+50225542,24719063,3
+131039743,24719063,4
+kasayo88,24719063,3
+lunaya,24719063,3
+62026063,24719063,3
+68404885,24719063,4
+52390566,24719063,4
+51196326,24719063,3
+90891135,24719063,4
+Ruying1987,24719063,4
+58283218,24719063,3
+51771885,24719063,4
+moongemini,24719063,4
+89082355,24719063,4
+ingie,24719063,3
+67240733,24719063,4
+69360968,24719063,3
+xjc_jovi,24719063,4
+52381614,24719063,3
+133351029,24719063,3
+imyoyo1116,24719063,5
+demon0414,24719063,5
+BIGAC,24719063,5
+43590001,24719063,4
+44709496,24719063,4
+CCNemo,24719063,5
+MissM,24719063,4
+39646892,24719063,3
+48133263,24719063,5
+47404227,24719063,4
+zs278777745,24719063,4
+to1900,24719063,5
+hikkii,24719063,3
+greendayvae,24719063,2
+30354186,24719063,3
+xfjzoe,24719063,4
+102254201,24719063,4
+marilynj,24719063,5
+1823435,24719063,4
+48905575,24719063,3
+93854184,24719063,4
+55477143,24719063,5
+wilsonliu,24719063,3
+75322883,24719063,3
+52616475,24719063,3
+92608290,24719063,4
+128017227,24719063,4
+springluoluo,24719063,4
+3683540,24719063,5
+1779389,24719063,4
+124496919,24719063,5
+127928705,24719063,4
+Analulu,24719063,4
+stillwaters123,24719063,3
+65607463,24719063,3
+56211932,24719063,4
+45784272,24719063,3
+50591747,24719063,4
+3904908,24719063,3
+mihudexiaojing,24719063,-1
+mimimiguniang,24719063,3
+Jillyan,24719063,4
+NO.223,24719063,4
+yingchao0426,24719063,4
+moruohan,24719063,4
+4145242,24719063,4
+cyansugar,24719063,4
+55998424,24719063,4
+gloomsky,24719063,3
+69101082,24719063,3
+idont,24719063,4
+hanjw,24719063,-1
+fishinlijiang,24719063,3
+126273890,24719063,3
+tracyxing,24719063,4
+37967188,24719063,4
+21949904,24719063,5
+51552049,24719063,4
+2576084,24719063,3
+4287880,24719063,3
+fan_1220,24719063,2
+83312429,24719063,-1
+2071906,24719063,3
+37206579,24719063,4
+WHEREONLYYOUME,24719063,3
+98321949,24719063,5
+105901752,24719063,4
+75300369,24719063,3
+2501820,24719063,3
+runawaysleepful,24719063,4
+51745010,24719063,4
+shilya,24719063,4
+91114146,24719063,5
+Joest,24719063,4
+65413699,24719063,3
+flowerbaobao,24719063,4
+wddEileen,24719063,5
+nanxiaonan,24719063,4
+sabrinamac,24719063,4
+rajorAn,24719063,3
+36709791,24719063,4
+xiaoranlee,24719063,4
+43930540,24719063,4
+chenbing,24719063,3
+37571281,24719063,3
+muamu,24719063,4
+52046624,24719063,3
+46506835,24719063,4
+37295606,24719063,4
+125641594,24719063,4
+duanjiajia,24719063,3
+49547560,24719063,3
+98096679,24719063,4
+128044981,24719063,4
+atooom,24719063,5
+amandazmd,24719063,4
+eternityc,24719063,4
+Decembermay,24719063,4
+114165552,24719063,4
+39542881,24719063,5
+48625025,24719063,4
+enanm,24719063,3
+83927943,24719063,1
+122845155,24719063,4
+104818700,24719063,3
+54317600,24719063,5
+teenyliu,24719063,4
+69966086,24719063,4
+60725481,24719063,5
+3771616,24719063,4
+55321548,24719063,4
+51031885,24719063,4
+ldzy,24719063,3
+49235266,24719063,3
+74701785,24719063,1
+44412900,24719063,4
+62072392,24719063,4
+63650243,24719063,4
+ananmaomi,24719063,4
+68401259,24719063,3
+helen897,24719063,3
+4478995,24719063,3
+43786893,24719063,4
+zzgpyfz,24719063,4
+zihaozai0407,24719063,4
+winniewong021,24719063,3
+50147198,24719063,4
+1122386,24719063,3
+beloved72,24719063,5
+52781294,24719063,4
+61479485,24719063,4
+2897322,24719063,4
+3427401,24719063,4
+31316353,24719063,3
+RIKI1013,24719063,5
+66197287,24719063,4
+58101535,24719063,3
+58221616,24719063,3
+58188727,24719063,4
+46920813,24719063,4
+btr,24719063,2
+lcx79,24719063,3
+56105601,24719063,3
+73570868,24719063,4
+14433242,24719063,4
+129691770,24719063,4
+81059952,24719063,4
+57969665,24719063,3
+80394054,24719063,3
+seven-day,24719063,4
+erbuzi,24719063,3
+anniefay,24719063,3
+71868582,24719063,4
+torrors,24719063,5
+biiiignose,24719063,3
+75405959,24719063,5
+hl7,24719063,4
+32841660,24719063,2
+imhjl412,24719063,4
+103358688,24719063,4
+96536890,24719063,3
+63756258,24719063,3
+3182859,24719063,4
+60821263,24719063,3
+74249669,24719063,3
+58404696,24719063,5
+48042943,24719063,5
+lifephile,24719063,4
+46672889,24719063,4
+111795228,24719063,4
+fighting-ing,24719063,4
+46456526,24719063,5
+62889721,24719063,4
+46129019,24719063,3
+82844336,24719063,5
+8213200,24719063,3
+48904679,24719063,4
+3709827,24719063,4
+96801913,24719063,4
+ST.john,24719063,3
+xuzhuoya,24719063,4
+67216535,24719063,4
+Mrs_D,24719063,4
+128522293,24719063,4
+lj-family,24719063,3
+shaoyedn,24719063,4
+1641684,24719063,3
+40593277,24719063,4
+Tianyangyang,24719063,4
+1069770,24719063,4
+13467755,24719063,4
+ChrisD9,24719063,2
+82437863,24719063,4
+lisijia,24719063,4
+53791497,24719063,5
+SeyfriedAriel,24719063,5
+41177087,24719063,5
+61621650,24719063,3
+62181246,24719063,5
+1499246,24719063,4
+46804098,24719063,4
+lucky498,24719063,3
+yeslty-,24719063,5
+ToDieByYourSide,24719063,3
+80284693,24719063,4
+fiona751,24719063,4
+bigev5,24719063,4
+xgy0318,24719063,4
+125655857,24719063,3
+beautysheng,24719063,4
+skag,24719063,4
+MOVA,24719063,-1
+58351753,24719063,4
+Irisnan,24719063,3
+91526509,24719063,5
+32937331,24719063,4
+52928694,24719063,3
+Free-cat,24719063,5
+43881902,24719063,2
+87888275,24719063,4
+olivia-y,24719063,4
+lulu7,24719063,4
+slevwh,24719063,4
+54454274,24719063,3
+54454274,24719063,3
+130393277,24719063,4
+rebecca.psy,24719063,3
+54268047,24719063,4
+52842297,24719063,4
+laoguai,24719063,3
+outsider_Sumo,24719063,2
+57158585,24719063,4
+funyifan,24719063,3
+35734909,24719063,4
+133438215,24719063,5
+muce033,24719063,3
+clynch,24719063,4
+43680432,24719063,4
+25917087,24719063,3
+1507059,24719063,4
+44317071,24719063,4
+74723978,24719063,4
+78952997,24719063,4
+renxsshuo,24719063,4
+57970468,24719063,4
+36218343,24719063,4
+1414370,24719063,4
+sidneylumet,24719063,3
+4001254,24719063,5
+Simply08,24719063,4
+wfxs,24719063,5
+42644353,24719063,2
+58043448,24719063,4
+97530013,24719063,4
+43105295,24719063,3
+spungir,24719063,5
+BenYoung,24719063,4
+46316257,24719063,3
+45517061,24719063,3
+49063009,24719063,5
+53836409,24719063,4
+43910063,24719063,4
+2753727,24719063,4
+66699250,24719063,5
+53245934,24719063,4
+130330083,24719063,4
+62828011,24719063,3
+39013075,24719063,4
+52385653,24719063,4
+51195956,24719063,3
+myshowfan,24719063,4
+97760699,24719063,3
+82681356,24719063,4
+novasu,24719063,4
+2404315,24719063,4
+61955733,24719063,5
+42799130,24719063,3
+48476618,24719063,4
+29516587,24719063,4
+120061371,24719063,3
+119838820,24719063,4
+christina614,24719063,4
+10045748,24719063,4
+benmak,24719063,3
+60761601,24719063,5
+fxying,24719063,4
+4148066,24719063,4
+52375179,24719063,4
+3323718,24719063,3
+d.brown,24719063,4
+47745204,24719063,5
+3978018,24719063,4
+badaalle,24719063,3
+53462048,24719063,3
+82834605,24719063,4
+62376048,24719063,4
+1923916,24719063,4
+69181820,24719063,5
+5580906,24719063,4
+peoplehlj,24719063,5
+52685737,24719063,4
+23155128,24719063,4
+43595652,24719063,4
+90930462,24719063,4
+Luoss,24719063,5
+120245591,24719063,3
+jimuwawa,24719063,4
+3877363,24719063,5
+100750697,24719063,3
+3595699,24719063,4
+132128406,24719063,5
+3761305,24719063,5
+43809437,24719063,3
+voguey,24719063,4
+16959294,24719063,4
+70441935,24719063,4
+jiawanxing,24719063,3
+58103188,24719063,3
+FrankYuuki,24719063,4
+baibailin,24719063,4
+jinniye,24719063,3
+1958405,24719063,4
+2030403,24719063,5
+124392101,24719063,4
+47167494,24719063,4
+sukey,24719063,3
+1550046,24719063,4
+lichengbin,24719063,4
+50933770,24719063,4
+59253447,24719063,4
+67863005,24719063,4
+130564137,24719063,4
+47958996,24719063,4
+130523817,24719063,5
+waka729,24719063,4
+56102108,24719063,4
+4800840,24719063,3
+angelinebyi,24719063,-1
+3549448,24719063,5
+lutaozi,24719063,5
+69994031,24719063,5
+60866075,24719063,5
+peovsple,24719063,4
+74060146,24719063,4
+126775069,24719063,5
+58495653,24719063,4
+4382784,24719063,4
+71710824,24719063,5
+3689113,24719063,-1
+daffodils,24719063,4
+51965075,24719063,5
+spiritvision,24719063,5
+65397009,24719063,5
+28306661,24719063,5
+JaneLi,24719063,4
+84563751,24719063,3
+boboer,24719063,3
+75115896,24719063,5
+75670480,24719063,5
+44369212,24719063,4
+75332945,24719063,5
+62149815,24719063,5
+xjrwjh,24719063,4
+CrystalFung,24719063,4
+57767738,24719063,5
+92176301,24719063,3
+130248738,24719063,4
+5653111,24719063,4
+61015288,24719063,4
+49926539,24719063,4
+46748580,24719063,5
+43384535,24719063,5
+LillM,24719063,4
+119673605,24719063,4
+4906139,24719063,3
+spx,24719063,4
+31942615,24719063,4
+126575098,24719063,4
+120735552,24719063,3
+adorer,24719063,3
+3382542,24719063,3
+2481673,24719063,4
+81299938,24719063,4
+43447764,24719063,3
+66443010,24719063,5
+32869098,24719063,5
+35991194,24719063,3
+MarciaLiu,24719063,5
+csprite,24719063,4
+54785429,24719063,4
+Maybo-Chang,24719063,4
+83565566,24719063,4
+3851591,24719063,3
+iadjani,24719063,4
+liyanyi,24719063,3
+126716117,24719063,5
+3752454,24719063,4
+young-lazy,24719063,3
+42807220,24719063,5
+dakexiansheng,24719063,5
+44908756,24719063,4
+JeanTam,24719063,3
+56419266,24719063,2
+Xpirits,24719063,4
+56398520,24719063,4
+yolandalzo,24719063,4
+122161339,24719063,2
+14991491,24719063,3
+122753398,24719063,4
+45417298,24719063,4
+43304844,24719063,1
+suxiaoliang,24719063,5
+51126355,24719063,4
+alaxos,24719063,4
+charlene-q,24719063,4
+67348705,24719063,3
+48849197,24719063,4
+smallove816,24719063,-1
+67134272,24719063,3
+101182611,24719063,4
+woshimoxiaowei,24719063,4
+VliBig,24719063,3
+40498676,24719063,3
+44892859,24719063,3
+67135692,24719063,4
+xiaxixiaxi,24719063,4
+3100517,24719063,4
+79426082,24719063,4
+107982589,24719063,3
+64113646,24719063,5
+65041467,24719063,3
+52243920,24719063,4
+47717016,24719063,3
+51261004,24719063,3
+38404027,24719063,4
+79515001,24719063,5
+75841329,24719063,3
+97305087,24719063,4
+73701038,24719063,4
+ttuk,24719063,1
+JaneLynn,24719063,4
+74522488,24719063,3
+49282329,24719063,3
+cursefoe,24719063,4
+115681868,24719063,4
+76550924,24719063,2
+troyuc,24719063,4
+51297351,24719063,4
+fangzhou422,24719063,4
+cuppa,24719063,4
+52075541,24719063,2
+51412736,24719063,5
+boboloue,24719063,3
+76002759,24719063,3
+lilith1150511,24719063,3
+2923243,24719063,3
+60295233,24719063,4
+121718178,24719063,4
+113216618,24719063,5
+drinkme,24719063,1
+126225635,24719063,4
+4668212,24719063,4
+79839158,24719063,4
+6091736,24719063,3
+nanjournal,24719063,4
+62559966,24719063,4
+116283306,24719063,3
+iamjessi,24719063,3
+61797796,24719063,4
+80808595,24719063,4
+69447677,24719063,4
+2380878,24719063,4
+huwenjia,24719063,5
+ayosm,24719063,4
+48950150,24719063,5
+ksp,24719063,3
+53089083,24719063,4
+princessmavis,24719063,4
+37662608,24719063,4
+60923783,24719063,-1
+V.J,24719063,4
+79033208,24719063,5
+60737161,24719063,5
+124668726,24719063,4
+57156729,24719063,4
+3613742,24719063,3
+3515372,24719063,5
+53696499,24719063,3
+51862225,24719063,5
+rrymbxj,24719063,3
+93104749,24719063,5
+52125579,24719063,4
+125017541,24719063,5
+65489493,24719063,5
+Ericc-blossom,24719063,3
+53718083,24719063,3
+3934959,24719063,4
+122471816,24719063,4
+T1994116,24719063,3
+132882419,24719063,5
+brushless,24719063,2
+67957454,24719063,3
+53152941,24719063,4
+diqiuchaoren,24719063,5
+freddy_xu,24719063,4
+lulujay,24719063,5
+vivi-wym,24719063,3
+ArmoR,24719063,5
+maeho,24719063,5
+71585704,24719063,4
+42186843,24719063,4
+54478804,24719063,3
+genglihui,24719063,4
+57679372,24719063,4
+59658127,24719063,4
+58583668,24719063,4
+28743020,24719063,3
+1433006,24719063,3
+swiftwind,24719063,3
+sajmira,24719063,5
+landelanle,24719063,4
+12674669,24719063,4
+might_morning,24719063,4
+levinchia,24719063,5
+yee27,24719063,5
+lovehebey,24719063,5
+99309849,24719063,3
+annabelle98,24719063,4
+pupuxiang,24719063,5
+58127008,24719063,5
+58909768,24719063,3
+53895554,24719063,4
+44888841,24719063,-1
+fusyel,24719063,4
+Libralife,24719063,3
+7814560,24719063,4
+2506122,24719063,4
+130633898,24719063,3
+phoebe_wo,24719063,4
+zhuxiaodi,24719063,-1
+36002366,24719063,3
+nnn1,24719063,1
+44044101,24719063,5
+46939435,24719063,4
+29602196,24719063,3
+78488932,24719063,5
+70543045,24719063,5
+53134670,24719063,5
+derek8356,24719063,3
+39079545,24719063,4
+w-leaf,24719063,5
+shuimuniuniu,24719063,4
+54455940,24719063,4
+34416307,24719063,4
+57622050,24719063,5
+18420290,24719063,5
+littledrops,24719063,3
+81792271,24719063,3
+thenewhope,24719063,5
+yanmomeng,24719063,5
+53362229,24719063,4
+72417252,24719063,5
+56369223,24719063,4
+78454972,24719063,3
+49335696,24719063,4
+dogeli,24719063,3
+65077725,24719063,-1
+3311509,24719063,-1
+angiangeng,24719063,3
+49261275,24719063,4
+48937128,24719063,4
+84177108,24719063,4
+shermie1996,24719063,2
+WindmillPotato,24719063,5
+boonup,24719063,4
+ameihuhaitao,24719063,4
+hidemyhead,24719063,4
+24543063,24719063,4
+62438264,24719063,4
+gdhdun,24719063,3
+37526876,24719063,5
+honeybunny9048,24719063,3
+Dallowave,24719063,3
+62604002,24719063,4
+Hc66,24719063,3
+maolove,24719063,3
+mvnzj,24719063,4
+45719908,24719063,4
+summereve,24719063,4
+yeshukou,24719063,4
+zalazala,24719063,4
+andrewzyc,24719063,4
+67900271,24719063,3
+61093748,24719063,3
+meiying1989,24719063,4
+86253613,24719063,4
+62777144,24719063,4
+watson,24719063,4
+shirleyma,24719063,4
+letyoudown,24719063,2
+64768558,24719063,2
+44757253,24719063,4
+45712857,24719063,-1
+1632293,24719063,3
+MoaChen,24719063,4
+119567495,24719063,4
+3977266,24719063,3
+JinguMiwa,24719063,3
+caoxuan1991,24719063,3
+ich_spreche,24719063,3
+47890909,24719063,5
+29476951,24719063,4
+jessica4241,24719063,4
+120593690,24719063,3
+simone82,24719063,-1
+45872414,24719063,4
+94833341,24719063,3
+4886516,24719063,4
+mohoko,24719063,3
+76179071,24719063,4
+72425203,24719063,4
+31755192,24719063,3
+2693944,24719063,4
+61692995,24719063,5
+VirtualToy,24719063,4
+133496947,24719063,4
+3790594,24719063,4
+53173594,24719063,4
+119399510,24719063,3
+73109328,24719063,5
+renmeng,24719063,4
+70290609,24719063,4
+2252653,24719063,4
+claudiaqq,24719063,5
+68608421,24719063,4
+joyfish0912,24719063,3
+vickkid,24719063,4
+48241744,24719063,2
+3801995,24719063,5
+61654063,24719063,4
+jeeby,24719063,5
+50596601,24719063,4
+38498557,24719063,4
+57439323,24719063,4
+68498461,24719063,4
+xiloxilo,24719063,4
+2039887,24719063,4
+amoryqq,24719063,4
+48525161,24719063,4
+4624921,24719063,2
+buhua,24719063,2
+58207796,24719063,3
+karenapao,24719063,5
+102921046,24719063,4
+42841681,24719063,2
+fallenisland,24719063,3
+tinysean,24719063,3
+meitianniang,24719063,4
+60918605,24719063,5
+99623872,24719063,4
+70557882,24719063,3
+132872283,24719063,5
+63673590,24719063,4
+48801010,24719063,4
+loveyixiao,24719063,4
+32001555,24719063,3
+4043649,24719063,4
+niuniu0906,24719063,4
+47792508,24719063,5
+daisy041,24719063,3
+115590593,24719063,5
+1109113,24719063,-1
+58064521,24719063,4
+59967875,24719063,5
+1271261,24719063,4
+guo19molly,24719063,3
+55931553,24719063,3
+2767002,24719063,4
+Cherry.Pluto,24719063,2
+121057597,24719063,5
+2595929,24719063,3
+71933640,24719063,4
+hechenguang,24719063,4
+48163178,24719063,4
+85445085,24719063,4
+34256368,24719063,4
+4145186,24719063,4
+75111835,24719063,-1
+37146120,24719063,4
+52544571,24719063,4
+119145690,24719063,4
+46629937,24719063,1
+78529584,24719063,4
+57417817,24719063,4
+46741687,24719063,4
+4231166,24719063,4
+moivest,24719063,5
+37131063,24719063,2
+58783502,24719063,3
+53827149,24719063,4
+73278464,24719063,5
+65502815,24719063,4
+126205293,24719063,3
+44634665,24719063,3
+surgeonch,24719063,4
+rrspeaking,24719063,3
+Wenqian,24719063,4
+dizzy904,24719063,4
+babyfat2fish,24719063,5
+powerland,24719063,5
+36694980,24719063,5
+Amelie69,24719063,4
+Sophie.,24719063,4
+17748095,24719063,5
+48471084,24719063,4
+41032130,24719063,3
+63647766,24719063,5
+24791739,24719063,4
+64265143,24719063,4
+37217090,24719063,5
+yjwhlc,24719063,4
+carsick,24719063,4
+48510715,24719063,3
+iimozart,24719063,3
+Summer1890,24719063,3
+55289792,24719063,3
+86091558,24719063,5
+69065584,24719063,4
+gefforey,24719063,2
+119253554,24719063,4
+3042645,24719063,3
+44699129,24719063,4
+66844132,24719063,5
+rashell,24719063,5
+63859433,24719063,4
+57683355,24719063,4
+131444915,24719063,4
+56141450,24719063,4
+tanktank,24719063,5
+55831735,24719063,3
+2275605,24719063,4
+36882743,24719063,4
+4886463,24719063,3
+ylyat,24719063,4
+65174941,24719063,4
+yetijkd,24719063,4
+79891168,24719063,4
+3796859,24719063,4
+4799988,24719063,3
+99523862,24719063,4
+76216989,24719063,3
+46002126,24719063,5
+shiwuri,24719063,3
+120720922,24719063,4
+52275129,24719063,5
+120427833,24719063,3
+56825394,24719063,4
+Pudding33,24719063,3
+51378440,24719063,1
+42663693,24719063,4
+3784972,24719063,4
+41576966,24719063,3
+57698632,24719063,4
+babybluevino,24719063,3
+66341284,24719063,4
+58199841,24719063,3
+maidelan,24719063,4
+81345019,24719063,3
+71697536,24719063,2
+26267076,24719063,4
+99377723,24719063,4
+45580337,24719063,4
+26594099,24719063,4
+cactus_hee,24719063,4
+Rinascita,24719063,5
+4249875,24719063,4
+48690899,24719063,5
+appeach,24719063,5
+50367197,24719063,-1
+68712202,24719063,3
+61448862,24719063,4
+Emmie,24719063,5
+114533111,24719063,4
+43600394,24719063,4
+Anatomy,24719063,4
+50204574,24719063,4
+winsy,24719063,4
+yizhu118,24719063,4
+cyajbn,24719063,3
+69110012,24719063,5
+43576863,24719063,3
+41874215,24719063,4
+NINEYR,24719063,5
+2569325,24719063,4
+25259616,24719063,5
+space_junk,24719063,4
+xiaomo828,24719063,5
+66794531,24719063,3
+123011203,24719063,3
+1295718,24719063,3
+62886183,24719063,4
+sevenn77,24719063,5
+kikiyo,24719063,3
+73948805,24719063,5
+55840798,24719063,3
+49069432,24719063,4
+42502379,24719063,4
+CZ1011,24719063,4
+43372811,24719063,4
+4627411,24719063,4
+81819532,24719063,5
+67667928,24719063,4
+zhuzhenning,24719063,5
+andrewhxism,24719063,3
+1573713,24719063,-1
+eleventhsnow,24719063,4
+LynnHsu,24719063,3
+36616266,24719063,4
+77213278,24719063,4
+musicradio,24719063,4
+124765626,24719063,3
+11786089,24719063,5
+gaishixiaogui,24719063,5
+jiangjiang1214,24719063,4
+64238881,24719063,4
+81421967,24719063,4
+60435322,24719063,3
+superrao,24719063,4
+86229035,24719063,4
+marieni,24719063,4
+68101692,24719063,4
+yanwang1018,24719063,5
+55279052,24719063,5
+62012748,24719063,5
+easyfeel,24719063,3
+48989146,24719063,4
+58403534,24719063,2
+114670150,24719063,5
+58024858,24719063,4
+57539732,24719063,4
+xigua2015,24719063,-1
+52521782,24719063,3
+cyrush2qoo,24719063,5
+2302686,24719063,4
+2118507,24719063,4
+46167248,24719063,3
+2015737,24719063,-1
+43156253,24719063,4
+72285427,24719063,4
+64547560,24719063,5
+72861793,24719063,4
+crimsonmoon,24719063,4
+llms,24719063,3
+4532543,24719063,3
+68576426,24719063,3
+54467510,24719063,4
+3639998,24719063,4
+114741657,24719063,4
+49977374,24719063,5
+chrisloveleslie,24719063,4
+echokusa,24719063,4
+48251373,24719063,4
+50402288,24719063,4
+49382503,24719063,4
+46833436,24719063,3
+121748239,24719063,5
+65266454,24719063,4
+116031531,24719063,4
+52411063,24719063,5
+marukowz,24719063,4
+55771326,24719063,5
+oriclschu,24719063,3
+58542527,24719063,4
+More-ZZ,24719063,5
+2872984,24719063,4
+2125620,24719063,3
+blackout,24719063,4
+101470489,24719063,5
+40512144,24719063,5
+Basten,24719063,4
+66719799,24719063,4
+neverdeathjia,24719063,5
+62681207,24719063,3
+caroltt4024333,24719063,3
+chuiching,24719063,5
+landcrosser,24719063,4
+64224636,24719063,3
+ever_bright,24719063,5
+69809730,24719063,3
+51445023,24719063,4
+130234848,24719063,2
+52001200,24719063,4
+71882881,24719063,4
+Jeacy,24719063,5
+56618669,24719063,4
+67416002,24719063,3
+77621226,24719063,4
+44093787,24719063,5
+70458781,24719063,4
+61076778,24719063,5
+119911226,24719063,3
+6578851,24719063,5
+1633981,24719063,4
+51257639,24719063,3
+66159586,24719063,4
+miu921,24719063,5
+46736701,24719063,4
+chiu-chiu,24719063,3
+bbfary,24719063,4
+3638194,24719063,4
+44018300,24719063,4
+34985418,24719063,4
+66547713,24719063,4
+60793015,24719063,4
+12962566,24719063,5
+1732930,24719063,-1
+maxine_9395,24719063,4
+quarter,24719063,3
+56952438,24719063,5
+52273292,24719063,4
+fresh-moon,24719063,2
+aeonkingdom,24719063,4
+41843480,24719063,4
+Malivoni,24719063,4
+gaiasmile,24719063,4
+hasu,24719063,4
+51301478,24719063,5
+100423615,24719063,5
+77579188,24719063,4
+49662959,24719063,5
+e_eyore,24719063,4
+3539983,24719063,4
+134035415,24719063,4
+Lee_Will,24719063,5
+62479715,24719063,3
+summer0323,24719063,4
+40968073,24719063,5
+89235910,24719063,2
+65449858,24719063,3
+48565113,24719063,5
+86193611,24719063,3
+38633281,24719063,3
+65396178,24719063,4
+PhilippLahm,24719063,3
+zhouxin95,24719063,4
+72549209,24719063,4
+fangkaka,24719063,3
+92614962,24719063,4
+onionear,24719063,5
+36118700,24719063,3
+58079597,24719063,4
+2829944,24719063,3
+122526882,24719063,3
+70327248,24719063,3
+90548915,24719063,4
+57584711,24719063,3
+58226021,24719063,4
+50310274,24719063,3
+Suemary,24719063,3
+fecal,24719063,3
+lying0,24719063,3
+azcaban,24719063,3
+1733876,24719063,4
+44888008,24719063,-1
+91998053,24719063,5
+kyokoo,24719063,4
+55531901,24719063,2
+zq8870690207,24719063,3
+103756653,24719063,4
+51683273,24719063,3
+viling,24719063,2
+69952283,24719063,5
+77786230,24719063,4
+57149098,24719063,4
+101618998,24719063,4
+58027563,24719063,3
+1700254,24719063,4
+48404792,24719063,4
+lady_xiaxia,24719063,4
+moyuxxoomaomao,24719063,3
+49710379,24719063,4
+52795058,24719063,4
+54356748,24719063,4
+KeithMoon,24719063,4
+ci_lovecandy,24719063,5
+36842607,24719063,2
+58078105,24719063,3
+kim100702,24719063,4
+npzhd,24719063,3
+2248587,24719063,3
+57984448,24719063,4
+Z-hy,24719063,4
+28959917,24719063,4
+48491570,24719063,2
+lithiumz,24719063,4
+61080306,24719063,3
+73189481,24719063,4
+95076327,24719063,4
+35818666,24719063,3
+rityou,24719063,1
+cloudless,24719063,2
+breeze63,24719063,3
+104312412,24719063,4
+133609434,24719063,5
+69855682,24719063,5
+57823956,24719063,3
+57880330,24719063,3
+53979926,24719063,4
+bearhulala,24719063,4
+5613747,24719063,4
+48616886,24719063,4
+MisschicRea,24719063,3
+64004619,24719063,2
+if447201010,24719063,5
+128128403,24719063,3
+3266809,24719063,3
+56980595,24719063,5
+Qsays,24719063,4
+nicolegong,24719063,5
+kuangren79,24719063,3
+orchidzy,24719063,4
+94460148,24719063,5
+119284862,24719063,3
+robotmckee,24719063,4
+fortanxu,24719063,3
+50779201,24719063,5
+80610896,24719063,5
+guanyu123,24719063,4
+67292226,24719063,4
+128832790,24719063,3
+3906094,24719063,4
+bestsecretlife,24719063,4
+ciseibian,24719063,5
+leebins,24719063,3
+77195543,24719063,3
+zidane2006,24719063,3
+2423256,24719063,4
+lionel-leen,24719063,4
+52558781,24719063,-1
+123454907,24719063,4
+61568515,24719063,5
+xiaoling1218,24719063,4
+9413748,24719063,4
+43810631,24719063,1
+39684033,24719063,3
+janejanegulu,24719063,3
+UchihaObito,24719063,4
+51902619,24719063,4
+61095404,24719063,3
+30084869,24719063,4
+1408212,24719063,3
+66039352,24719063,4
+58302789,24719063,4
+13901089,24719063,3
+72909586,24719063,2
+86346815,24719063,3
+sslcfss,24719063,4
+ruliang,24719063,3
+shoufy,24719063,4
+64302220,24719063,4
+62878798,24719063,4
+52750268,24719063,5
+subarashi,24719063,4
+35805626,24719063,3
+72311441,24719063,3
+zoever,24719063,3
+45381772,24719063,4
+chenchunru,24719063,4
+75369986,24719063,5
+1586094,24719063,4
+43864936,24719063,3
+4856520,24719063,5
+lvmenger,24719063,5
+hyukcat,24719063,3
+yeahqi,24719063,4
+39056323,24719063,5
+5592925,24719063,5
+43786841,24719063,4
+heavenlyend,24719063,4
+crlazy_,24719063,4
+xuanyushuo,24719063,3
+121340954,24719063,4
+82414014,24719063,3
+61985942,24719063,4
+57906754,24719063,5
+vincentmi,24719063,4
+simu19,24719063,3
+48275353,24719063,4
+70222675,24719063,4
+54396753,24719063,4
+ArkimidyF,24719063,3
+79901535,24719063,3
+4842930,24719063,4
+56905256,24719063,3
+83429427,24719063,4
+2606901,24719063,3
+74190362,24719063,4
+chan-ki,24719063,4
+2679276,24719063,4
+48714560,24719063,3
+52508494,24719063,3
+andrpirl,24719063,4
+jessicarfield,24719063,4
+mistersusma,24719063,2
+tataslow72,24719063,4
+49863534,24719063,4
+56153565,24719063,4
+78152292,24719063,3
+101682436,24719063,5
+macrocheng,24719063,4
+20054715,24719063,4
+57104894,24719063,4
+60788836,24719063,3
+4200326,24719063,3
+31133252,24719063,4
+3350852,24719063,3
+47993403,24719063,4
+focustom,24719063,4
+starry_16,24719063,5
+CVS24hours,24719063,4
+53212620,24719063,5
+zhou33,24719063,3
+53796875,24719063,4
+35414122,24719063,4
+62312292,24719063,4
+eugne,24719063,4
+46431247,24719063,4
+61296926,24719063,5
+47098461,24719063,4
+45478417,24719063,4
+luolanmahua,24719063,-1
+nianning,24719063,4
+122240307,24719063,5
+115706838,24719063,4
+131922389,24719063,5
+teeniec,24719063,4
+dizzylu,24719063,4
+lotte07,24719063,4
+larkabove,24719063,4
+121796930,24719063,3
+joanna-T,24719063,4
+93951315,24719063,2
+56074823,24719063,5
+69874704,24719063,3
+43822211,24719063,4
+possion007,24719063,4
+93724180,24719063,4
+1206135,24719063,4
+53606035,24719063,5
+kloccd,24719063,4
+bernadettttttte,24719063,4
+33575325,24719063,5
+53720932,24719063,4
+45103690,24719063,4
+misspomelo21,24719063,5
+2113603,24719063,3
+land1314,24719063,4
+45383029,24719063,4
+kfc2005,24719063,2
+AmberMoony,24719063,4
+yinjiecheng,24719063,3
+3610550,24719063,3
+2407310,24719063,4
+luckysand,24719063,4
+55575289,24719063,3
+99080642,24719063,5
+skys402,24719063,4
+54889533,24719063,4
+moman,24719063,4
+polyboot,24719063,4
+72538044,24719063,4
+115784778,24719063,4
+3873448,24719063,3
+51172081,24719063,4
+44203203,24719063,3
+52464173,24719063,5
+52660199,24719063,5
+4441126,24719063,3
+46763388,24719063,3
+1734232,24719063,4
+Monderian,24719063,4
+70892372,24719063,4
+127854089,24719063,4
+youzaitu86,24719063,4
+41109416,24719063,5
+69753373,24719063,3
+xiaoq0207,24719063,5
+25674811,24719063,3
+43883337,24719063,3
+57750976,24719063,3
+snokin,24719063,3
+19921711,24719063,4
+samuelyoung,24719063,5
+48809338,24719063,4
+2086864,24719063,2
+coldlife,24719063,3
+3547866,24719063,2
+ShuangXiaodan,24719063,3
+sunnyshd,24719063,5
+zhadee,24719063,5
+longlastingfad,24719063,3
+76477435,24719063,2
+58384388,24719063,5
+119688975,24719063,2
+Joki_X,24719063,-1
+1724293,24719063,3
+65865005,24719063,4
+jessie1989,24719063,4
+wzq1981,24719063,1
+76018725,24719063,4
+lmlwahaha,24719063,4
+sipangjiu,24719063,4
+qianqian0829,24719063,4
+43377574,24719063,3
+34993934,24719063,4
+68209023,24719063,5
+54095491,24719063,4
+62714490,24719063,4
+novaa,24719063,4
+50837451,24719063,3
+41631852,24719063,4
+56349029,24719063,4
+32058895,24719063,5
+Jsmonica,24719063,4
+116741743,24719063,5
+125913784,24719063,4
+87689465,24719063,4
+50759651,24719063,4
+63227383,24719063,4
+Georgewen,24719063,2
+58967487,24719063,3
+61453800,24719063,3
+126241859,24719063,5
+49543670,24719063,4
+chxying,24719063,3
+nien,24719063,5
+fufu28,24719063,4
+yunaomi,24719063,4
+BurningSoul,24719063,3
+blackpanther,24719063,3
+74230231,24719063,5
+Tracy_morning,24719063,4
+1831427,24719063,3
+43612401,24719063,4
+42551981,24719063,2
+2677401,24719063,4
+49761291,24719063,3
+100637778,24719063,3
+imshaoji,24719063,4
+49205547,24719063,4
+64677693,24719063,4
+jelly89124,24719063,4
+113285477,24719063,4
+yinchuanfu,24719063,4
+134062078,24719063,4
+3310969,24719063,5
+130551483,24719063,4
+11202805,24719063,4
+mikadu,24719063,4
+luoandqian,24719063,3
+rimonl,24719063,5
+101793601,24719063,4
+4657710,24719063,5
+50628632,24719063,4
+82765310,24719063,4
+97409290,24719063,4
+basketdai,24719063,4
+53326904,24719063,3
+absdee,24719063,4
+hazelhsu,24719063,4
+suge1209,24719063,4
+80993663,24719063,3
+42062370,24719063,3
+63355801,24719063,3
+paleylove,24719063,4
+129778224,24719063,5
+43611766,24719063,4
+51548379,24719063,1
+2167202,24719063,3
+52199219,24719063,4
+mayday_anne,24719063,4
+61014013,24719063,5
+56469194,24719063,4
+iriszhong,24719063,3
+juzikeke,24719063,5
+nonono7,24719063,3
+1926820,24719063,4
+61574725,24719063,4
+amosworld,24719063,4
+44463308,24719063,4
+mingmingking,24719063,-1
+50344211,24719063,5
+3928587,24719063,4
+71450042,24719063,3
+81003605,24719063,3
+34990836,24719063,4
+O3BABY,24719063,4
+43163424,24719063,3
+72968470,24719063,5
+16301105,24719063,4
+54041008,24719063,-1
+126158497,24719063,4
+2592016,24719063,4
+1454698,24719063,4
+petitmu,24719063,5
+aghilnouz,24719063,3
+30446054,24719063,4
+touts,24719063,4
+chengzer,24719063,5
+nnnn3,24719063,4
+45335029,24719063,3
+Luckid,24719063,2
+89768114,24719063,3
+reiko77877,24719063,5
+45421682,24719063,4
+jingj,24719063,4
+1317876,24719063,5
+131713125,24719063,4
+26167687,24719063,4
+61350283,24719063,5
+123288101,24719063,5
+snowrain,24719063,3
+122486640,24719063,3
+76798162,24719063,4
+demifun,24719063,5
+churchirl,24719063,4
+88433674,24719063,4
+49569897,24719063,3
+3338302,24719063,5
+Paranoid.L,24719063,3
+122288974,24719063,4
+robinsparrow,24719063,-1
+103178426,24719063,4
+78727212,24719063,4
+fycqcyl,24719063,4
+56260840,24719063,4
+66393784,24719063,4
+tommytaurus,24719063,5
+3770809,24719063,4
+63478394,24719063,4
+48296036,24719063,4
+blablachen,24719063,4
+105808556,24719063,5
+90900527,24719063,4
+2211361,24719063,4
+1613774,24719063,3
+buzhi,24719063,5
+hikirres,24719063,2
+65466491,24719063,5
+93190703,24719063,3
+3548787,24719063,3
+marlborosin,24719063,4
+94670924,24719063,5
+smart-ass,24719063,4
+40611533,24719063,3
+angalny,24719063,3
+59802133,24719063,4
+61795649,24719063,4
+kuruto,24719063,4
+20327170,24719063,4
+4368925,24719063,3
+115922568,24719063,3
+81847457,24719063,3
+liuanan0606,24719063,4
+45245030,24719063,4
+stilllovebobdyl,24719063,5
+4889121,24719063,5
+44685216,24719063,4
+54787507,24719063,4
+58805947,24719063,2
+92671472,24719063,4
+Benny_Fu,24719063,5
+42735872,24719063,3
+3091791,24719063,5
+1633061,24719063,5
+39540944,24719063,4
+49786853,24719063,4
+64981286,24719063,3
+123641720,24719063,3
+pimichang,24719063,4
+120980814,24719063,4
+70301319,24719063,4
+45522216,24719063,4
+13148640,24719063,4
+xyl412,24719063,4
+brair,24719063,4
+69126111,24719063,3
+91661265,24719063,3
+yifeng2013,24719063,4
+134148719,24719063,5
+49082285,24719063,4
+binnnn,24719063,3
+3105123,24719063,5
+42380430,24719063,3
+52228251,24719063,4
+1683063,24719063,4
+64475979,24719063,4
+2556433,24719063,4
+L_Patrick,24719063,4
+80703672,24719063,5
+25471227,24719063,3
+2740339,24719063,5
+zhangsunset,24719063,3
+2520761,24719063,4
+54113299,24719063,4
+51732837,24719063,5
+34628274,24719063,5
+107863421,24719063,3
+39072740,24719063,4
+36355818,24719063,3
+85812003,24719063,5
+67100950,24719063,3
+micheltan,24719063,4
+49176531,24719063,5
+87381547,24719063,4
+49988006,24719063,4
+61938686,24719063,5
+jr.mushroom,24719063,4
+leilimo,24719063,5
+violetbooks,24719063,4
+127980934,24719063,4
+63275995,24719063,4
+xx1102,24719063,4
+53798871,24719063,5
+31281892,24719063,4
+kkbear,24719063,3
+58139081,24719063,3
+61132009,24719063,4
+61539163,24719063,4
+36009516,24719063,3
+56281076,24719063,4
+15131999,24719063,4
+84522058,24719063,5
+65720842,24719063,4
+90751149,24719063,4
+1947840,24719063,5
+roubaozsx,24719063,4
+76509928,24719063,4
+8708200,24719063,4
+unicornlarry,24719063,4
+83071317,24719063,3
+Hrabbi,24719063,4
+14002029,24719063,5
+57382169,24719063,4
+84569100,24719063,3
+60139322,24719063,5
+iamaprilm,24719063,4
+jealousy_,24719063,5
+aestheticism,24719063,5
+ffffans,24719063,4
+113966573,24719063,5
+52534968,24719063,3
+69266204,24719063,4
+55980726,24719063,4
+joycindy,24719063,4
+71233615,24719063,4
+shannonye,24719063,4
+106620783,24719063,5
+57893513,24719063,5
+71745819,24719063,5
+CacheMemory,24719063,5
+NLwolf,24719063,5
+yigedaguangtou,24719063,4
+54846480,24719063,4
+45959791,24719063,4
+74835866,24719063,4
+50478757,24719063,3
+weijielin,24719063,4
+63787326,24719063,4
+2846988,24719063,4
+wubingheng,24719063,4
+pan24,24719063,4
+4334431,24719063,3
+72044584,24719063,4
+huanghongyang,24719063,5
+4476641,24719063,5
+rakbumps,24719063,3
+3203530,24719063,5
+breathingfox,24719063,4
+lyshan,24719063,4
+1240610,24719063,4
+5727275,24719063,3
+jinniuxiansheng,24719063,5
+61999118,24719063,4
+essy,24719063,4
+azurehe,24719063,5
+49170229,24719063,4
+131138737,24719063,4
+46760700,24719063,5
+lepd,24719063,4
+69293255,24719063,4
+pangwaer,24719063,3
+41604678,24719063,4
+130956052,24719063,5
+55983243,24719063,3
+panpingping,24719063,4
+jozenky,24719063,4
+Sub___,24719063,5
+89081852,24719063,5
+cchzc,24719063,2
+43969501,24719063,5
+43858725,24719063,5
+lifangze,24719063,5
+85360851,24719063,3
+58462261,24719063,4
+46834534,24719063,4
+rickeylee,24719063,2
+zyjforever,24719063,3
+aarivy,24719063,3
+mary2009,24719063,4
+131439287,24719063,5
+45935605,24719063,4
+16154737,24719063,5
+56678240,24719063,4
+huangjungeng,24719063,4
+orz825,24719063,4
+yinhaitian,24719063,5
+roxycao,24719063,4
+guigui291,24719063,3
+83016162,24719063,3
+djqq930,24719063,4
+134142938,24719063,3
+luoluofan,24719063,5
+callmekyle,24719063,2
+kid928,24719063,4
+zoe63,24719063,4
+luerdelphic,24719063,4
+57352656,24719063,5
+132576251,24719063,4
+81366312,24719063,4
+33149603,24719063,5
+Silvia_song,24719063,3
+82847948,24719063,4
+3451324,24719063,3
+54961193,24719063,3
+slipper003,24719063,5
+53271347,24719063,3
+afterainbow,24719063,4
+128313677,24719063,4
+up117,24719063,5
+125682611,24719063,3
+Amulp,24719063,3
+Chilwoo,24719063,5
+hypertxt,24719063,5
+58833110,24719063,5
+99091247,24719063,4
+32545847,24719063,4
+122696545,24719063,3
+60915070,24719063,4
+shikong27,24719063,4
+punk90,24719063,4
+cynthia1230,24719063,3
+59530679,24719063,3
+hongdoushanuomi,24719063,4
+chocoqiao,24719063,5
+115943222,24719063,5
+64886603,24719063,5
+aya7,24719063,5
+127528653,24719063,5
+6591920,24719063,3
+132098902,24719063,2
+52836731,24719063,4
+Siberia3,24719063,3
+shanzha,24719063,4
+54092067,24719063,4
+etiox,24719063,4
+1582144,24719063,4
+myfan,24719063,4
+mikarg,24719063,3
+48190133,24719063,4
+60729691,24719063,4
+60117055,24719063,-1
+laowinglok,24719063,4
+116728333,24719063,4
+122273764,24719063,4
+60859013,24719063,4
+34132575,24719063,5
+M-Sapphire,24719063,1
+51890472,24719063,-1
+60096895,24719063,4
+54374689,24719063,4
+72364535,24719063,3
+4126679,24719063,5
+43625639,24719063,4
+43760678,24719063,4
+3366974,24719063,4
+on1y_S,24719063,4
+szlbanxia,24719063,4
+lizhao2003,24719063,4
+62334058,24719063,1
+xixiT_T0907,24719063,3
+56243651,24719063,4
+102806375,24719063,3
+134141941,24719063,4
+whateverp,24719063,3
+48656765,24719063,4
+4152314,24719063,4
+81916004,24719063,4
+J_Seraph,24719063,3
+57252256,24719063,3
+46329517,24719063,-1
+woniu0125,24719063,5
+suqieyao,24719063,4
+90014162,24719063,4
+3169210,24719063,3
+63461451,24719063,4
+XING0131,24719063,5
+wangyujia520,24719063,5
+aimiludemao,24719063,2
+67173929,24719063,4
+sunshine606,24719063,3
+48114475,24719063,5
+morimiru,24719063,4
+34473328,24719063,3
+66698052,24719063,3
+14281434,24719063,4
+1558551,24719063,3
+chuleiwu,24719063,3
+57999077,24719063,4
+121122291,24719063,4
+131499272,24719063,4
+yuanzedong,24719063,4
+70849512,24719063,4
+plutoto,24719063,5
+yiduan,24719063,4
+lforward,24719063,3
+2470206,24719063,5
+55521819,24719063,5
+57840199,24719063,4
+36867618,24719063,3
+xia0xue,24719063,4
+amy0303,24719063,4
+52170212,24719063,4
+moranyushi,24719063,4
+alar,24719063,5
+Little-bear.,24719063,4
+66521777,24719063,3
+43473708,24719063,4
+57058120,24719063,3
+55978536,24719063,3
+76273078,24719063,3
+raynal,24719063,2
+48258273,24719063,4
+123034725,24719063,4
+sunaiyue,24719063,3
+62051375,24719063,4
+57604209,24719063,5
+115541155,24719063,4
+1817304,24719063,3
+43840425,24719063,3
+azureallul,24719063,3
+55536180,24719063,4
+52236886,24719063,5
+46161175,24719063,4
+64162059,24719063,4
+56844373,24719063,3
+2205198,24719063,4
+sinry,24719063,4
+pichajemo,24719063,4
+2718336,24719063,4
+1897420,24719063,4
+78502935,24719063,2
+oshencai,24719063,3
+121808699,24719063,4
+43688314,24719063,-1
+3757765,24719063,4
+116617620,24719063,5
+Slyffin,24719063,4
+lihouyuan,24719063,4
+48623743,24719063,4
+66669080,24719063,3
+robzi,24719063,3
+53743649,24719063,4
+65441803,24719063,-1
+3173862,24719063,-1
+63623372,24719063,3
+131195628,24719063,4
+nuo8821,24719063,4
+4238363,24719063,4
+cookie1000,24719063,4
+131445784,24719063,5
+124470674,24719063,4
+102916412,24719063,4
+jub,24719063,4
+47923593,24719063,5
+Milk_Solo,24719063,4
+54271813,24719063,3
+fantom,24719063,2
+51468288,24719063,5
+zbbsbjs,24719063,3
+124401468,24719063,5
+30740764,24719063,4
+karenizumi,24719063,4
+information,24719063,5
+60252209,24719063,3
+64643746,24719063,3
+2462135,24719063,5
+62248705,24719063,-1
+77832595,24719063,4
+chloeti,24719063,4
+132853356,24719063,5
+69021752,24719063,4
+62251744,24719063,4
+Soso-L,24719063,-1
+42367485,24719063,4
+trista-smily,24719063,4
+modernchipao,24719063,4
+68014906,24719063,3
+38412947,24719063,4
+48816440,24719063,4
+68664986,24719063,4
+43207001,24719063,3
+LostIn1990,24719063,4
+xiaogu_07,24719063,5
+qixie,24719063,4
+ivychenxiaotong,24719063,4
+134131182,24719063,4
+sallow,24719063,4
+17299463,24719063,4
+CLOWN9527521,24719063,5
+Joy_sa,24719063,5
+kenosisy,24719063,3
+1510862,24719063,4
+chevalier7,24719063,3
+40238005,24719063,5
+30359114,24719063,-1
+2310497,24719063,3
+fangxinse,24719063,4
+80786128,24719063,4
+ishimi,24719063,5
+43426116,24719063,4
+122054884,24719063,4
+91984034,24719063,5
+46476912,24719063,4
+olivecurtain,24719063,3
+4590078,24719063,4
+2894547,24719063,4
+57922511,24719063,3
+3969854,24719063,3
+3128287,24719063,4
+110227894,24719063,4
+61981205,24719063,4
+115710110,24719063,3
+zhang_xiao_yin,24719063,4
+31238194,24719063,4
+3610351,24719063,4
+54076866,24719063,4
+nvxiahxx,24719063,4
+hanmengyuan,24719063,4
+74258577,24719063,3
+49994291,24719063,3
+73296985,24719063,4
+51460943,24719063,5
+sarah_cat,24719063,4
+dssbnxz,24719063,4
+TOXIMUS,24719063,4
+goldenhornking,24719063,4
+jujubejuice,24719063,4
+80537833,24719063,3
+8792564,24719063,4
+cici501,24719063,4
+2940942,24719063,3
+58429338,24719063,5
+120955775,24719063,4
+121665213,24719063,4
+117911079,24719063,3
+4651307,24719063,3
+2182632,24719063,-1
+4882025,24719063,4
+48697353,24719063,4
+girliris,24719063,4
+72067182,24719063,2
+37402473,24719063,4
+73383984,24719063,4
+stayreal8,24719063,2
+whorubb,24719063,3
+lovepoison,24719063,4
+N.E.A.R,24719063,5
+126584609,24719063,3
+sandrapis,24719063,2
+34572726,24719063,4
+maiya_2004,24719063,3
+xuman,24719063,4
+96473743,24719063,4
+1528379,24719063,1
+66361496,24719063,3
+68493924,24719063,3
+68581622,24719063,4
+zhongguobaoan,24719063,4
+47430978,24719063,2
+75844160,24719063,3
+132342909,24719063,4
+maxiangge,24719063,4
+87231465,24719063,4
+wzh1995,24719063,4
+michellevan8988,24719063,3
+60283422,24719063,4
+45646209,24719063,5
+southfrog129,24719063,3
+heying1011,24719063,3
+sonyean,24719063,4
+4623210,24719063,4
+40140407,24719063,-1
+60860186,24719063,3
+60860186,24719063,3
+oransay,24719063,4
+59946746,24719063,4
+discostick,24719063,2
+52240587,24719063,-1
+kakaloveu,24719063,4
+dearmeng,24719063,3
+43020527,24719063,3
+34028398,24719063,4
+58163812,24719063,3
+65072304,24719063,3
+63000787,24719063,4
+lvyejusy,24719063,3
+52775018,24719063,4
+79420813,24719063,4
+65567131,24719063,4
+lovezh19930223,24719063,5
+qinqincatkissma,24719063,3
+56070301,24719063,5
+62369911,24719063,4
+3466745,24719063,4
+71334813,24719063,3
+75908113,24719063,4
+bigsong,24719063,4
+70217927,24719063,3
+74948257,24719063,4
+27383917,24719063,5
+116856151,24719063,3
+64907526,24719063,4
+84815644,24719063,4
+yemiaoyi,24719063,4
+132574736,24719063,4
+65190197,24719063,5
+yzkk821,24719063,2
+119193967,24719063,5
+97745894,24719063,3
+67088127,24719063,3
+99392858,24719063,3
+121740137,24719063,4
+58618452,24719063,3
+45754533,24719063,3
+52522813,24719063,4
+dier523,24719063,3
+122060330,24719063,4
+hyykkb,24719063,4
+Amour-Xerophyte,24719063,3
+68905253,24719063,4
+youwin,24719063,3
+louis520000,24719063,3
+tolyi,24719063,1
+30529095,24719063,4
+53719859,24719063,5
+54977108,24719063,4
+127813064,24719063,4
+69040173,24719063,4
+Qianlumanman,24719063,4
+76950291,24719063,3
+55296709,24719063,4
+42380844,24719063,4
+127367901,24719063,4
+127367901,24719063,4
+64440158,24719063,4
+morieyun,24719063,4
+101837882,24719063,4
+80585311,24719063,4
+79534422,24719063,4
+50003111,24719063,4
+59263792,24719063,3
+2714835,24719063,5
+58591778,24719063,3
+65440660,24719063,4
+3107975,24719063,3
+2419512,24719063,5
+3864382,24719063,2
+28536169,24719063,4
+3768455,24719063,5
+51432651,24719063,5
+26860515,24719063,3
+53890917,24719063,4
+2674621,24719063,4
+54463600,24719063,4
+silverstro,24719063,-1
+95427243,24719063,5
+58333151,24719063,4
+yexueqianshan,24719063,5
+Chauvetina,24719063,3
+iumbrella,24719063,4
+corona92cml,24719063,4
+nicy119,24719063,3
+47996487,24719063,3
+Susie-Leung,24719063,4
+70775632,24719063,4
+sharkup,24719063,1
+Twdrop,24719063,3
+1655485,24719063,4
+70047087,24719063,4
+121600132,24719063,5
+62658973,24719063,5
+keechen,24719063,1
+1437812,24719063,4
+1437812,24719063,4
+49163492,24719063,3
+Novembersnow,24719063,3
+43258797,24719063,2
+66019617,24719063,3
+little_mari0,24719063,3
+Leoky,24719063,3
+evan999,24719063,4
+3942969,24719063,5
+3922229,24719063,3
+piao-piao,24719063,3
+sunlinlin,24719063,4
+83445047,24719063,2
+88081334,24719063,4
+53905255,24719063,5
+133235629,24719063,3
+53884297,24719063,3
+agentying,24719063,5
+honey10151106,24719063,4
+79363796,24719063,5
+124720796,24719063,4
+ggqgu,24719063,3
+77266400,24719063,4
+2741707,24719063,4
+1316449,24719063,-1
+66340674,24719063,4
+56168328,24719063,4
+71818009,24719063,4
+summerhanabi,24719063,3
+121891731,24719063,5
+127856728,24719063,5
+62106801,24719063,4
+sahilaleilei,24719063,4
+ziquanzhifei,24719063,4
+65166974,24719063,3
+Veronicam,24719063,4
+ViamoLee,24719063,3
+54861915,24719063,5
+jiaolimin,24719063,3
+123971642,24719063,4
+46093934,24719063,4
+131518999,24719063,5
+AlexYJ,24719063,4
+4267240,24719063,4
+68354862,24719063,4
+dsk,24719063,5
+mainzone,24719063,4
+3035586,24719063,3
+36092326,24719063,-1
+81895960,24719063,4
+4392294,24719063,4
+Mun.,24719063,4
+48095362,24719063,4
+lingsishi,24719063,5
+89984750,24719063,4
+3187875,24719063,5
+71760114,24719063,3
+70511298,24719063,4
+73770976,24719063,4
+126000236,24719063,4
+bedifferent,24719063,3
+ValeMC,24719063,4
+yetianci,24719063,4
+58197291,24719063,4
+vvivvi,24719063,4
+4097004,24719063,4
+89934202,24719063,3
+67842305,24719063,4
+george333,24719063,4
+68621390,24719063,4
+81397337,24719063,4
+125929186,24719063,4
+vivian_yi,24719063,3
+chenrongrong94,24719063,4
+starrynite,24719063,1
+44828590,24719063,4
+17512518,24719063,3
+arthurx,24719063,4
+63924842,24719063,3
+61728294,24719063,5
+8872886,24719063,4
+42224337,24719063,5
+132603645,24719063,4
+3541131,24719063,3
+mybrett,24719063,4
+68177625,24719063,4
+39654465,24719063,5
+sharn,24719063,4
+78657454,24719063,4
+48252121,24719063,4
+NeverLate,24719063,3
+50972505,24719063,4
+FeiDiQiuShengWu,24719063,4
+84567944,24719063,3
+qingfengvicky,24719063,3
+36121445,24719063,4
+wingrl,24719063,4
+106661239,24719063,4
+MrChristy,24719063,3
+YDJH,24719063,4
+65727921,24719063,4
+56617946,24719063,4
+46653087,24719063,5
+cheohsu,24719063,5
+45563249,24719063,4
+47385181,24719063,5
+62095725,24719063,2
+85062757,24719063,5
+36413364,24719063,3
+54207970,24719063,4
+petertan,24719063,5
+3368328,24719063,4
+49860893,24719063,4
+90053820,24719063,3
+cheng_Ting,24719063,3
+48717924,24719063,3
+122844148,24719063,4
+Moqi,24719063,3
+2679279,24719063,4
+130085182,24719063,4
+44594188,24719063,3
+70160255,24719063,4
+DreamCoocoo,24719063,5
+deirdra,24719063,4
+1914905,24719063,3
+collbe,24719063,4
+80346080,24719063,4
+walkrain,24719063,5
+76845886,24719063,5
+53434934,24719063,3
+70419215,24719063,4
+133500275,24719063,3
+124690057,24719063,5
+13039939,24719063,3
+amemiki,24719063,4
+57595815,24719063,3
+warm_or_cool,24719063,5
+49713522,24719063,5
+gtishero,24719063,3
+36999894,24719063,4
+129858710,24719063,3
+78576225,24719063,1
+121016361,24719063,5
+bebabay,24719063,4
+im61,24719063,4
+homlim,24719063,5
+128220209,24719063,5
+57769518,24719063,3
+Curlylin,24719063,3
+3969557,24719063,4
+weberchung,24719063,5
+51138955,24719063,4
+53698984,24719063,1
+cargee,24719063,3
+antchouet,24719063,4
+46014273,24719063,3
+C-Plus,24719063,4
+chenyushu,24719063,3
+rongmenkezhan,24719063,3
+62173989,24719063,3
+59762157,24719063,4
+51047654,24719063,4
+103657541,24719063,5
+1711434,24719063,3
+morgankuku,24719063,-1
+Jsadx,24719063,4
+1945446,24719063,3
+xiaoxianwudi,24719063,4
+48353352,24719063,3
+SEVEN.ELEVEN,24719063,4
+foreverboy,24719063,4
+monica-lcw,24719063,4
+26985231,24719063,4
+80602177,24719063,3
+60118399,24719063,4
+3661228,24719063,4
+yozir,24719063,3
+jiejueliaoyi,24719063,3
+change1979,24719063,4
+74944832,24719063,5
+Madao_D,24719063,4
+ikezhao,24719063,4
+124741216,24719063,5
+lattechen,24719063,5
+130762430,24719063,5
+BarbieZ,24719063,3
+128316085,24719063,5
+69044402,24719063,4
+3861820,24719063,4
+3086120,24719063,4
+134112418,24719063,4
+2473879,24719063,5
+chongncepu,24719063,4
+134112434,24719063,5
+3852877,24719063,5
+bigevaren,24719063,5
+49875019,24719063,5
+2823358,24719063,5
+66077019,24719063,3
+chodychen,24719063,5
+80610074,24719063,3
+4466839,24719063,4
+68511299,24719063,3
+44332074,24719063,3
+46618218,24719063,5
+scohj,24719063,4
+51471095,24719063,5
+orange-juice,24719063,4
+LillianLeelll,24719063,4
+89016897,24719063,4
+4305734,24719063,4
+74867829,24719063,4
+74632358,24719063,5
+demi1949,24719063,4
+79420252,24719063,4
+dutianxiong,24719063,-1
+77424101,24719063,4
+2826167,24719063,3
+47220302,24719063,4
+chankawai,24719063,4
+54174425,24719063,5
+maryshirley,24719063,3
+47232724,24719063,3
+lauriexue,24719063,3
+H897120417,24719063,4
+49891253,24719063,4
+2752525,24719063,4
+libailu,24719063,4
+amycuteee,24719063,3
+45164185,24719063,3
+9411149,24719063,4
+129158063,24719063,4
+58427192,24719063,4
+64461922,24719063,4
+surrealcage,24719063,3
+121880026,24719063,3
+49938011,24719063,5
+54904993,24719063,-1
+1312686,24719063,4
+dxwsz1,24719063,4
+1101526,24719063,4
+2901639,24719063,5
+33399271,24719063,3
+iswear_4ever,24719063,4
+Hanamizuki,24719063,4
+Zoe-7,24719063,5
+2842222,24719063,4
+53101721,24719063,3
+itechen,24719063,4
+aliding,24719063,-1
+crazycrazyboo,24719063,3
+57962526,24719063,5
+59931368,24719063,4
+betty5230,24719063,4
+47612067,24719063,3
+80627457,24719063,4
+yangjianmeiyang,24719063,3
+61663302,24719063,4
+14617447,24719063,4
+44525790,24719063,4
+sliaobellamy,24719063,4
+uncurable,24719063,-1
+53857648,24719063,5
+84873418,24719063,3
+66712755,24719063,4
+27693437,24719063,4
+69196878,24719063,5
+64755940,24719063,4
+133877898,24719063,4
+80218946,24719063,2
+sunnyle,24719063,4
+42263664,24719063,5
+125134010,24719063,5
+juno_wang,24719063,4
+81664405,24719063,3
+84851693,24719063,4
+54636102,24719063,3
+47044131,24719063,3
+1933666,24719063,3
+3210031,24719063,3
+48521258,24719063,3
+109048369,24719063,4
+vickilovewan,24719063,-1
+3278476,24719063,4
+doublewater,24719063,3
+leavelove,24719063,4
+100445422,24719063,3
+131064576,24719063,4
+shoonior,24719063,4
+83637383,24719063,4
+52826626,24719063,4
+52274644,24719063,4
+49913788,24719063,4
+wangjun1900,24719063,5
+58660815,24719063,5
+drydrysun,24719063,3
+52273132,24719063,3
+87558584,24719063,4
+129193145,24719063,2
+sumouyeah,24719063,3
+47598972,24719063,4
+82889509,24719063,3
+40757284,24719063,5
+vinnywang,24719063,3
+79161906,24719063,5
+48151770,24719063,3
+4570145,24719063,3
+momisa,24719063,4
+51599549,24719063,4
+35349298,24719063,3
+3349587,24719063,4
+meteora,24719063,5
+zrenata,24719063,5
+112129032,24719063,5
+80275782,24719063,4
+43533675,24719063,5
+5198348,24719063,5
+kingkid,24719063,2
+41069819,24719063,3
+vanishdatura,24719063,4
+56826604,24719063,3
+50657559,24719063,4
+zinnialily,24719063,5
+33749828,24719063,3
+51258589,24719063,4
+47213217,24719063,4
+spidaman,24719063,5
+Young.forU,24719063,4
+feiyuyunqing,24719063,4
+67795929,24719063,5
+90644875,24719063,4
+3845975,24719063,2
+shouhuwodemao,24719063,4
+cicisj,24719063,4
+76722357,24719063,4
+yxjeremy,24719063,4
+67183735,24719063,3
+2800503,24719063,5
+81983017,24719063,5
+46493903,24719063,5
+56340290,24719063,4
+104559183,24719063,3
+30587036,24719063,4
+mashangjian5,24719063,4
+49294962,24719063,4
+1662059,24719063,5
+64504448,24719063,5
+B-162,24719063,4
+121946910,24719063,4
+Sparkyue,24719063,4
+69489690,24719063,3
+77818044,24719063,4
+43948755,24719063,3
+Psycho_L,24719063,3
+stacieee,24719063,3
+47338909,24719063,4
+zlzzoe,24719063,3
+130685876,24719063,3
+esse34,24719063,3
+vhuangdao,24719063,4
+leoflower,24719063,4
+wanyuanhus1,24719063,4
+tintinxu,24719063,1
+PIERRELIU,24719063,4
+88097347,24719063,4
+43471484,24719063,3
+61691312,24719063,5
+gjwlyxm,24719063,-1
+42088638,24719063,3
+65263102,24719063,4
+63207501,24719063,5
+42128136,24719063,4
+66993627,24719063,3
+lassiedusky,24719063,4
+65604242,24719063,4
+wakashima,24719063,4
+47288802,24719063,3
+91473851,24719063,4
+1436107,24719063,2
+65409070,24719063,4
+renyuan46,24719063,5
+36253346,24719063,3
+grbzywg,24719063,3
+8880037,24719063,2
+79219004,24719063,3
+45096355,24719063,3
+bfwn,24719063,4
+51833331,24719063,3
+120151650,24719063,4
+130330790,24719063,4
+lovevision,24719063,4
+41250740,24719063,4
+Ben_Sunderland,24719063,3
+bnaglowlow,24719063,5
+45182456,24719063,3
+106128018,24719063,5
+2970334,24719063,4
+65140739,24719063,4
+6539111,24719063,3
+ViviaChen,24719063,3
+68703625,24719063,5
+78824064,24719063,3
+77221093,24719063,4
+bodhi521,24719063,3
+2626086,24719063,4
+2684151,24719063,4
+littlemen,24719063,5
+48582853,24719063,5
+roundtuan,24719063,5
+83462778,24719063,3
+56241501,24719063,3
+128549976,24719063,4
+aaaaaaalice,24719063,4
+Rainbowww,24719063,4
+tildali1214,24719063,3
+mayday_apple,24719063,5
+shine0310,24719063,5
+Desmondj,24719063,5
+115974574,24719063,3
+56900730,24719063,-1
+78447440,24719063,3
+1622375,24719063,4
+38761258,24719063,4
+64239392,24719063,2
+11928054,24719063,4
+62703414,24719063,3
+71867547,24719063,5
+44539890,24719063,3
+49903431,24719063,5
+stefanie3nana3,24719063,3
+83587515,24719063,-1
+Marshazt,24719063,4
+76276828,24719063,5
+lesliepp,24719063,5
+Skyfire,24719063,5
+1971410,24719063,4
+3079677,24719063,3
+82095351,24719063,4
+37364562,24719063,-1
+47863590,24719063,4
+43368232,24719063,4
+cloudydream,24719063,3
+46581862,24719063,5
+1749956,24719063,4
+zhubeilife,24719063,4
+44370973,24719063,4
+foreverGJC8023,24719063,4
+redrabit,24719063,4
+54273802,24719063,4
+47818652,24719063,3
+Dear_Corny,24719063,4
+stellayang,24719063,-1
+68371802,24719063,4
+60409528,24719063,5
+48321205,24719063,3
+54014204,24719063,4
+lesari,24719063,4
+121002348,24719063,3
+blurrrrr,24719063,4
+75444584,24719063,3
+75444584,24719063,3
+92579510,24719063,3
+117149225,24719063,5
+hijoly,24719063,5
+2730322,24719063,4
+1840162,24719063,3
+momosummer,24719063,4
+47984436,24719063,3
+xiao50ly0910,24719063,4
+4324357,24719063,3
+71333688,24719063,5
+83659881,24719063,3
+4900763,24719063,5
+54979891,24719063,4
+54711146,24719063,2
+yibansun,24719063,4
+yoyosecret,24719063,3
+60913007,24719063,4
+49095018,24719063,2
+allen_yan,24719063,-1
+49649488,24719063,4
+54169492,24719063,4
+133083549,24719063,5
+57055757,24719063,4
+lotusjunepp,24719063,5
+kidplay,24719063,4
+20895105,24719063,2
+tjg325,24719063,3
+Feeeeee,24719063,4
+alittlewater,24719063,4
+38302530,24719063,4
+zest,24719063,4
+tanzhengyun,24719063,4
+5747784,24719063,4
+91994560,24719063,1
+xellgio,24719063,5
+47639252,24719063,4
+1056656,24719063,3
+9349453,24719063,4
+dongchenxing,24719063,4
+dongchenxing,24719063,4
+piecelost,24719063,5
+wantyourmore,24719063,4
+49917435,24719063,4
+dora418,24719063,5
+e83859,24719063,5
+122232090,24719063,3
+92316412,24719063,4
+108413193,24719063,-1
+chowge,24719063,4
+50501455,24719063,5
+69776335,24719063,5
+znteen,24719063,4
+125038920,24719063,3
+53847386,24719063,4
+cccindycl30,24719063,4
+107581698,24719063,1
+35586325,24719063,3
+58515646,24719063,4
+37509961,24719063,5
+115550774,24719063,3
+cheryl.12,24719063,4
+UWMADISON,24719063,5
+3214906,24719063,3
+83461403,24719063,4
+74658355,24719063,4
+2253061,24719063,2
+echoabc0409,24719063,5
+60382121,24719063,-1
+49389540,24719063,3
+51769191,24719063,5
+63050490,24719063,2
+21338461,24719063,3
+39951142,24719063,3
+115900896,24719063,4
+4785418,24719063,4
+gold5king,24719063,4
+67285298,24719063,4
+87590424,24719063,4
+chaunceyjohn,24719063,4
+53668404,24719063,5
+5955160,24719063,4
+coffee-tree,24719063,3
+132853715,24719063,4
+idiotmike,24719063,4
+85525395,24719063,4
+mmhvv,24719063,4
+82904793,24719063,4
+Caroline.H,24719063,4
+2994831,24719063,3
+sodiumy,24719063,-1
+128418401,24719063,4
+93197518,24719063,4
+64778238,24719063,4
+52111153,24719063,4
+60370348,24719063,3
+74773211,24719063,4
+82799575,24719063,3
+39977560,24719063,2
+83267313,24719063,5
+60913108,24719063,4
+26967751,24719063,4
+scottfengjian,24719063,4
+33526716,24719063,4
+61683576,24719063,4
+27728988,24719063,4
+4114969,24719063,4
+70363510,24719063,4
+89460663,24719063,4
+yoriko_he,24719063,-1
+69673887,24719063,4
+115895353,24719063,3
+91653104,24719063,4
+dinglinsusu,24719063,3
+aeris511,24719063,4
+39315197,24719063,4
+myself7,24719063,4
+45465411,24719063,5
+121676187,24719063,5
+sanshuicaosuwen,24719063,4
+57110839,24719063,5
+spaceli,24719063,4
+54848736,24719063,4
+69590542,24719063,4
+jasonshao525,24719063,5
+LEEYanwen,24719063,3
+tasangmo,24719063,-1
+39014074,24719063,3
+willlove,24719063,4
+donaldwu,24719063,4
+mguaihuai,24719063,5
+58544371,24719063,3
+liangsu,24719063,4
+49697519,24719063,5
+82847789,24719063,4
+63438106,24719063,5
+sulphurlee,24719063,4
+51303010,24719063,4
+twoerer,24719063,3
+61624373,24719063,5
+gmmmilly,24719063,4
+liukoushuidawan,24719063,5
+62411560,24719063,4
+55849765,24719063,4
+62062477,24719063,4
+69971714,24719063,4
+51593794,24719063,4
+josephliu37,24719063,4
+jsh,24719063,4
+tender_night,24719063,-1
+LoanworD,24719063,4
+cclcb,24719063,4
+gaoang153,24719063,4
+Amolittlergirl,24719063,3
+soldierlu,24719063,4
+westmay,24719063,2
+jresha,24719063,4
+56667402,24719063,-1
+121243676,24719063,3
+49103701,24719063,3
+73618016,24719063,5
+73225522,24719063,4
+10218271,24719063,5
+2226886,24719063,4
+never-be-loser,24719063,4
+chuxiaozhu,24719063,4
+37189268,24719063,4
+tuzki_mi,24719063,4
+1891047,24719063,-1
+55957709,24719063,3
+A674863256,24719063,3
+55937876,24719063,3
+101453436,24719063,4
+77268410,24719063,3
+36405630,24719063,5
+youyang1991,24719063,4
+hsu0517,24719063,4
+71175995,24719063,4
+57898472,24719063,5
+joycedays,24719063,-1
+joycedays,24719063,-1
+44578629,24719063,5
+lesia,24719063,4
+134100785,24719063,4
+wishknow,24719063,4
+breadforest,24719063,4
+theSabayon,24719063,-1
+52168303,24719063,3
+59233639,24719063,3
+aime30,24719063,3
+Bear0817,24719063,5
+mulittlerice,24719063,-1
+62343222,24719063,5
+127740204,24719063,4
+QQSXXXR,24719063,3
+61752391,24719063,4
+41247402,24719063,5
+53632795,24719063,4
+120083420,24719063,4
+65372479,24719063,3
+3266495,24719063,4
+heysummer,24719063,3
+84410222,24719063,3
+60107866,24719063,3
+74551006,24719063,4
+weilailxx,24719063,5
+60672999,24719063,3
+41629334,24719063,5
+qiaojiahui,24719063,3
+49134732,24719063,5
+51578168,24719063,3
+132841345,24719063,3
+Hitomi.Len,24719063,4
+78469944,24719063,5
+63200211,24719063,3
+shuangeryu,24719063,3
+49876674,24719063,4
+30884176,24719063,3
+4749363,24719063,3
+73909736,24719063,4
+122219958,24719063,4
+32469980,24719063,5
+sunnyhouseman,24719063,4
+78340149,24719063,5
+91611660,24719063,4
+102912620,24719063,3
+vermouthmsg,24719063,3
+55472715,24719063,5
+f_qq,24719063,4
+63532864,24719063,4
+38876439,24719063,4
+liyang3228082,24719063,5
+3375154,24719063,3
+44599506,24719063,3
+jinsy,24719063,4
+74890087,24719063,3
+99116794,24719063,5
+66163622,24719063,2
+3282548,24719063,-1
+43562341,24719063,5
+38849871,24719063,4
+93124937,24719063,5
+59553409,24719063,4
+80729816,24719063,4
+huochemao,24719063,5
+92372717,24719063,3
+48448400,24719063,3
+yuyue1849,24719063,5
+Yb1204,24719063,3
+krisyeol_0627,24719063,5
+1833105,24719063,3
+29069011,24719063,4
+66880325,24719063,4
+ondinehz,24719063,2
+128593702,24719063,4
+hyacinthussays,24719063,4
+67615408,24719063,5
+29345085,24719063,5
+mrsvan,24719063,3
+66782143,24719063,4
+1409570,24719063,3
+52639817,24719063,3
+121353064,24719063,4
+59760731,24719063,4
+dugumy,24719063,4
+57756770,24719063,5
+4069833,24719063,2
+lanzi0932,24719063,4
+LEE0222,24719063,4
+53672256,24719063,5
+59749461,24719063,5
+65663691,24719063,4
+lactiflora,24719063,5
+se7endoubt,24719063,-1
+42883125,24719063,4
+26124696,24719063,4
+tinydust_90,24719063,4
+air1104,24719063,3
+AfterElev,24719063,5
+icekiss,24719063,5
+59988455,24719063,4
+123962280,24719063,4
+honeyzst,24719063,4
+49819209,24719063,3
+47230684,24719063,4
+122519068,24719063,4
+80668042,24719063,-1
+61572404,24719063,5
+edward4th,24719063,3
+53919558,24719063,4
+2111555,24719063,4
+44453325,24719063,5
+109284403,24719063,4
+likounin,24719063,3
+72588392,24719063,4
+samuel_tibet,24719063,5
+124467661,24719063,4
+85445676,24719063,3
+35054507,24719063,5
+migong0625,24719063,5
+69350050,24719063,4
+SK8_frank,24719063,4
+1096571,24719063,4
+xiaoyaowan,24719063,3
+45311427,24719063,3
+62301518,24719063,3
+jiany,24719063,4
+63174808,24719063,3
+130109497,24719063,4
+46949718,24719063,4
+63983339,24719063,4
+3805082,24719063,3
+61673467,24719063,3
+56383208,24719063,5
+81749891,24719063,5
+39122132,24719063,4
+luke89,24719063,4
+chiling1010,24719063,4
+64909692,24719063,5
+xuxudaodao,24719063,4
+62726422,24719063,4
+4203571,24719063,4
+aivae,24719063,3
+63036142,24719063,-1
+killrec,24719063,4
+41803122,24719063,4
+poemaroma,24719063,4
+69616363,24719063,3
+64796716,24719063,3
+46997070,24719063,5
+77065352,24719063,4
+73603686,24719063,3
+xpatsu,24719063,4
+summerwith,24719063,5
+lenneth,24719063,5
+60831576,24719063,3
+DayoChaplin,24719063,4
+neglecthu,24719063,3
+95213691,24719063,5
+dramaticlife,24719063,4
+64689235,24719063,4
+122667777,24719063,4
+79856999,24719063,5
+128895955,24719063,4
+p_travel,24719063,3
+mykaka1987,24719063,5
+fenglei1214,24719063,5
+103106457,24719063,4
+129236747,24719063,4
+annsmile,24719063,2
+51905890,24719063,4
+38226162,24719063,4
+57880310,24719063,3
+53237780,24719063,4
+icsky,24719063,4
+81962971,24719063,4
+44633309,24719063,3
+SOMOMOKO,24719063,5
+81843857,24719063,4
+62932478,24719063,3
+tanzi24,24719063,5
+1793084,24719063,4
+XIAOWANYI1108,24719063,4
+130232512,24719063,4
+songorz,24719063,3
+99329704,24719063,3
+moon.s11_11,24719063,4
+Cheshier,24719063,3
+Madaotaku,24719063,3
+dengfonglong,24719063,3
+63120961,24719063,4
+4192096,24719063,4
+43946346,24719063,4
+58510231,24719063,4
+58066167,24719063,5
+59092308,24719063,4
+41918653,24719063,5
+131004052,24719063,4
+50651316,24719063,3
+21680407,24719063,3
+34440415,24719063,-1
+mavisa,24719063,4
+59643892,24719063,5
+1271321,24719063,4
+51332362,24719063,4
+muyunattitude,24719063,3
+Bodhgaya,24719063,4
+heartrick,24719063,5
+janeao,24719063,4
+100070304,24719063,4
+62684666,24719063,5
+1339883,24719063,3
+78810397,24719063,3
+67822831,24719063,4
+12832281,24719063,4
+ethalz,24719063,4
+esme123,24719063,4
+51730941,24719063,5
+fengwuyaoye,24719063,5
+thecinderella,24719063,3
+sunmiya,24719063,3
+41896370,24719063,3
+13036313,24719063,4
+loveday1023,24719063,2
+14968820,24719063,3
+93678988,24719063,4
+65108877,24719063,4
+doitnow14,24719063,5
+88675754,24719063,4
+38258402,24719063,2
+40792263,24719063,4
+49089345,24719063,4
+120194903,24719063,4
+129988582,24719063,4
+forgetsth,24719063,4
+57437837,24719063,4
+angelcuzn,24719063,3
+47754409,24719063,4
+ningmengww,24719063,4
+89533485,24719063,3
+27343589,24719063,4
+2411800,24719063,4
+ween339,24719063,5
+huti,24719063,5
+68987108,24719063,4
+Peach.T,24719063,4
+43715977,24719063,5
+saradipity,24719063,4
+sharonsama,24719063,3
+69595749,24719063,4
+25240448,24719063,4
+mwangym,24719063,3
+51987671,24719063,5
+75325570,24719063,4
+52046312,24719063,3
+shicongying2008,24719063,3
+46936355,24719063,3
+3043324,24719063,4
+imellie,24719063,3
+27698600,24719063,4
+cfengbme,24719063,4
+75407043,24719063,4
+123499638,24719063,4
+49493827,24719063,4
+47168945,24719063,5
+102748029,24719063,4
+GJ007,24719063,1
+46006075,24719063,5
+cathys,24719063,3
+44583762,24719063,4
+65981408,24719063,4
+14574511,24719063,3
+Suumer007,24719063,5
+thehours_lxx,24719063,3
+IchBinHerrMAO,24719063,4
+bladerunner2,24719063,3
+58587564,24719063,5
+130193728,24719063,4
+126976480,24719063,4
+40258007,24719063,4
+40258007,24719063,4
+Heliotrop,24719063,5
+58550778,24719063,4
+felinoshuffle,24719063,4
+128453737,24719063,4
+jinkelajiu,24719063,5
+50555792,24719063,4
+50174936,24719063,5
+dp0913,24719063,3
+76780337,24719063,3
+63892447,24719063,5
+57719412,24719063,3
+HeyNanana,24719063,4
+arishting,24719063,4
+3484897,24719063,4
+68957542,24719063,5
+guanzhongyue,24719063,5
+3554349,24719063,4
+39635413,24719063,-1
+4694620,24719063,3
+45923652,24719063,5
+45789849,24719063,4
+53323022,24719063,4
+48750216,24719063,5
+hellohenai,24719063,4
+3683730,24719063,5
+yzjoanne,24719063,4
+66454794,24719063,4
+63207780,24719063,3
+114096414,24719063,2
+58737934,24719063,4
+76663522,24719063,4
+36940575,24719063,5
+39603909,24719063,4
+56003032,24719063,4
+130620590,24719063,4
+49404071,24719063,3
+120593809,24719063,4
+yiwangqingsen,24719063,5
+wuh,24719063,2
+4272982,24719063,4
+55985856,24719063,3
+80082310,24719063,4
+jingeng,24719063,5
+97350616,24719063,3
+tonyzhao,24719063,5
+27008930,24719063,4
+oulichen,24719063,3
+42792073,24719063,5
+3706515,24719063,4
+69529350,24719063,5
+tiffanyji,24719063,3
+37428038,24719063,5
+66722557,24719063,4
+62333889,24719063,4
+131197260,24719063,5
+59082297,24719063,3
+121767978,24719063,4
+48014314,24719063,4
+Kira4660,24719063,4
+ridya,24719063,4
+101773163,24719063,4
+83885196,24719063,4
+wukongtiaotiao,24719063,4
+82308347,24719063,3
+71416031,24719063,4
+64712157,24719063,4
+calldaddy,24719063,5
+alisonpig,24719063,4
+60484236,24719063,4
+127000408,24719063,5
+MiracleQ,24719063,4
+72988949,24719063,4
+46237414,24719063,3
+zhangqiyuan,24719063,4
+58169362,24719063,4
+51243144,24719063,1
+gRay__,24719063,3
+jiaterry,24719063,5
+73757785,24719063,4
+simig,24719063,3
+68584199,24719063,4
+69989183,24719063,4
+123591194,24719063,5
+Albertlzs,24719063,4
+52237752,24719063,4
+33944850,24719063,-1
+30343256,24719063,4
+63606511,24719063,5
+4660728,24719063,3
+viennall,24719063,4
+Coletta,24719063,4
+loveserein,24719063,4
+44706367,24719063,5
+68241844,24719063,4
+123855693,24719063,4
+rampage_akasha,24719063,3
+39588548,24719063,5
+132790620,24719063,4
+51517839,24719063,5
+45369769,24719063,5
+50373897,24719063,4
+63527236,24719063,3
+1812778,24719063,4
+57179184,24719063,4
+4320476,24719063,5
+LLLLLei,24719063,-1
+133922083,24719063,4
+102247275,24719063,4
+76454561,24719063,4
+2471335,24719063,4
+weblinder,24719063,5
+53710865,24719063,2
+kyungsooyan,24719063,4
+chouchouCp,24719063,-1
+48472543,24719063,4
+grayfoxever,24719063,3
+51618749,24719063,5
+74257902,24719063,5
+59222283,24719063,4
+4244954,24719063,-1
+41901407,24719063,5
+37052621,24719063,3
+eric9210,24719063,4
+45756376,24719063,2
+76920199,24719063,4
+Seajor74,24719063,2
+46522785,24719063,5
+47844034,24719063,5
+Simpurify,24719063,5
+leeois,24719063,3
+emma1219,24719063,3
+1391757,24719063,4
+jjrr,24719063,3
+61805838,24719063,4
+78110952,24719063,5
+sevendream129,24719063,4
+45556382,24719063,5
+Andy9,24719063,4
+60390276,24719063,1
+96882730,24719063,4
+kennychuang,24719063,5
+stayfoolishstay,24719063,5
+78975012,24719063,4
+mrbaibaibai,24719063,4
+jkil174,24719063,4
+babe_mo,24719063,4
+41651378,24719063,4
+qiyueluoying,24719063,4
+61928976,24719063,5
+54611595,24719063,-1
+alen_chy11344,24719063,-1
+queenayip,24719063,4
+45819377,24719063,5
+101820045,24719063,3
+yuzhaobin,24719063,3
+aa415522,24719063,3
+131797610,24719063,3
+pfs,24719063,4
+67117129,24719063,4
+32728165,24719063,5
+Beth0204,24719063,4
+43698973,24719063,5
+55571572,24719063,4
+134067803,24719063,4
+98608640,24719063,4
+foruself,24719063,4
+59301158,24719063,4
+mico2009,24719063,3
+67551894,24719063,3
+beckham4ever,24719063,4
+Str,24719063,3
+zhouruowan,24719063,3
+69411761,24719063,3
+36115089,24719063,4
+63346469,24719063,4
+3924056,24719063,4
+mengmengh,24719063,3
+paddlelala,24719063,4
+blueapple0099,24719063,4
+121804760,24719063,5
+duanbaba,24719063,3
+54811367,24719063,4
+132084345,24719063,5
+121523895,24719063,5
+3015416,24719063,4
+seluti,24719063,4
+49130570,24719063,3
+64507106,24719063,-1
+88604723,24719063,4
+1454015,24719063,4
+43605116,24719063,3
+timliutianxiang,24719063,3
+47139215,24719063,3
+fujing,24719063,4
+125792443,24719063,5
+49191940,24719063,4
+72692620,24719063,4
+68778164,24719063,5
+57372938,24719063,3
+64163380,24719063,4
+zhangxiayu123,24719063,4
+76800095,24719063,3
+60619683,24719063,5
+2680480,24719063,4
+28505579,24719063,5
+85031460,24719063,3
+85342731,24719063,4
+Rainlivelin,24719063,4
+43492772,24719063,3
+MonicaRae,24719063,3
+78609308,24719063,4
+48423987,24719063,3
+92786775,24719063,3
+kissclover,24719063,4
+adi,24719063,3
+92500318,24719063,3
+50271561,24719063,3
+42912534,24719063,4
+69291832,24719063,3
+koujianyi,24719063,5
+St.Lone,24719063,5
+55021112,24719063,3
+lyypisces,24719063,-1
+xyhere,24719063,3
+crystalpansong,24719063,3
+14406150,24719063,4
+58931553,24719063,4
+54286864,24719063,3
+Eileke,24719063,4
+99806468,24719063,3
+78103315,24719063,4
+62559452,24719063,3
+46891374,24719063,4
+yangziche,24719063,5
+qian828,24719063,3
+41201365,24719063,4
+3544138,24719063,3
+42179639,24719063,4
+43057375,24719063,4
+49995550,24719063,5
+48990007,24719063,4
+montee_D,24719063,3
+rouou,24719063,4
+45274666,24719063,4
+33370423,24719063,4
+58732401,24719063,4
+Ancyr,24719063,4
+17703894,24719063,3
+3289683,24719063,-1
+61566876,24719063,4
+kidult77,24719063,4
+mocouhs,24719063,-1
+88648524,24719063,3
+cap120,24719063,4
+modoulvxing,24719063,5
+79539449,24719063,4
+46395531,24719063,4
+oweuuu,24719063,3
+lazing0611,24719063,4
+crazyfamily,24719063,4
+134076829,24719063,5
+73687210,24719063,4
+3213321,24719063,4
+Heyimwalker,24719063,4
+49980662,24719063,3
+120789212,24719063,4
+70584721,24719063,4
+av13,24719063,4
+71882861,24719063,3
+64278565,24719063,5
+1644310,24719063,3
+papadaixiong,24719063,4
+48672845,24719063,4
+43374462,24719063,4
+zl99,24719063,3
+BuerZhou,24719063,4
+104402849,24719063,4
+vincent_zhe47,24719063,4
+48071309,24719063,4
+2369225,24719063,4
+2660345,24719063,5
+3435254,24719063,4
+hara_zeki,24719063,3
+43740988,24719063,4
+yukimaru,24719063,4
+dambo,24719063,3
+catfacegirl,24719063,3
+47314582,24719063,5
+123639862,24719063,4
+103395389,24719063,4
+78440235,24719063,3
+48508682,24719063,2
+102605068,24719063,4
+1614995,24719063,4
+2067915,24719063,4
+79392187,24719063,3
+121754280,24719063,4
+apapa,24719063,3
+57442857,24719063,3
+76279565,24719063,4
+87978530,24719063,3
+60844857,24719063,4
+50199937,24719063,3
+pwfeee,24719063,4
+youraisemedown,24719063,3
+119620064,24719063,4
+123818120,24719063,3
+suyinyu,24719063,3
+Anitavivi,24719063,3
+42657229,24719063,4
+ginandmilk,24719063,4
+xuyansong,24719063,3
+4498928,24719063,4
+75231611,24719063,4
+hayeke2325156,24719063,3
+115821342,24719063,4
+55306798,24719063,4
+79213137,24719063,2
+113088428,24719063,4
+33049887,24719063,5
+harry731,24719063,4
+37751161,24719063,4
+91561679,24719063,4
+freedomiron,24719063,4
+66107296,24719063,3
+58801917,24719063,3
+121076786,24719063,4
+66602695,24719063,4
+50226054,24719063,5
+41610301,24719063,4
+melonking,24719063,3
+44942644,24719063,4
+2445824,24719063,4
+37694449,24719063,4
+56557982,24719063,5
+2007742,24719063,4
+133564346,24719063,4
+101114328,24719063,4
+48705699,24719063,4
+wang1dan,24719063,4
+59225673,24719063,3
+77523023,24719063,5
+52402555,24719063,3
+3857084,24719063,-1
+runlifelong,24719063,4
+leer7,24719063,4
+charo,24719063,4
+sucaii,24719063,4
+yuyude,24719063,4
+51427436,24719063,4
+72153259,24719063,4
+60840697,24719063,4
+jiuzhao,24719063,3
+big_and_small,24719063,5
+46210947,24719063,4
+106918742,24719063,3
+2179932,24719063,3
+44116299,24719063,4
+121073792,24719063,5
+50066862,24719063,4
+qfy,24719063,3
+54915299,24719063,4
+julynse,24719063,4
+moumou19920907,24719063,3
+54066005,24719063,4
+130617320,24719063,5
+114743620,24719063,4
+39688110,24719063,5
+37078808,24719063,3
+mr-carrot,24719063,4
+whichonelisten,24719063,4
+56364233,24719063,4
+15276874,24719063,4
+2177082,24719063,-1
+133695452,24719063,3
+1934267,24719063,3
+a495433977,24719063,5
+xfzhou,24719063,3
+122413256,24719063,4
+122413256,24719063,4
+tankette,24719063,4
+loveceline88,24719063,4
+4806563,24719063,4
+babyvanny,24719063,3
+103247038,24719063,4
+50136328,24719063,4
+yuanmavis,24719063,5
+lovingyoyo8ever,24719063,4
+iittot,24719063,3
+yanran227,24719063,4
+69853602,24719063,4
+jzcrazy,24719063,5
+46480304,24719063,5
+132171936,24719063,4
+wangqihaha,24719063,-1
+ijihoon,24719063,3
+132356471,24719063,4
+105631790,24719063,3
+68399606,24719063,3
+93347677,24719063,3
+2473165,24719063,2
+42556657,24719063,4
+heymy,24719063,-1
+47331166,24719063,5
+87374629,24719063,4
+x745bc11,24719063,3
+43916573,24719063,4
+61100170,24719063,5
+oliviafyy,24719063,4
+kimomo,24719063,5
+56846668,24719063,4
+1520223,24719063,3
+72622855,24719063,3
+52675266,24719063,4
+48369698,24719063,2
+45964771,24719063,4
+49415138,24719063,4
+nakassuse,24719063,-1
+53682959,24719063,4
+4422872,24719063,4
+81766513,24719063,4
+LLILYAN,24719063,5
+130273030,24719063,3
+anshangwennuan,24719063,3
+suliying,24719063,4
+Vol.de.nuit,24719063,2
+52862648,24719063,4
+fanfei914,24719063,4
+wyc198765,24719063,5
+altmann,24719063,4
+youran_lee,24719063,4
+am-gemini,24719063,4
+jessica0118,24719063,4
+55959746,24719063,5
+40553391,24719063,3
+38917028,24719063,4
+Ann,24719063,4
+113226507,24719063,3
+54943721,24719063,3
+wangfei1122,24719063,5
+cengs,24719063,3
+49308867,24719063,5
+sunjiahui,24719063,4
+29536418,24719063,4
+122136126,24719063,4
+3227323,24719063,2
+didiaosummer,24719063,5
+sacurayin,24719063,5
+edenhsu,24719063,3
+66171228,24719063,4
+124546510,24719063,3
+kidkid,24719063,4
+qinchongayo,24719063,4
+56083884,24719063,5
+64327949,24719063,3
+ywsbc,24719063,3
+nofishhere,24719063,-1
+34234049,24719063,4
+xxhhcc,24719063,3
+heartmas,24719063,4
+50662959,24719063,4
+knightknight,24719063,4
+summerguagua,24719063,3
+77762504,24719063,4
+78172493,24719063,4
+Candy_Can,24719063,3
+ganglow,24719063,3
+90769441,24719063,4
+57670721,24719063,5
+mirahlee,24719063,3
+dbxxxxxxxx,24719063,4
+49891918,24719063,3
+62949401,24719063,4
+57683329,24719063,5
+123811163,24719063,3
+jad1s,24719063,3
+bsp-w,24719063,3
+57303482,24719063,5
+133031980,24719063,4
+43408385,24719063,4
+77501042,24719063,4
+yeppy,24719063,4
+77656352,24719063,3
+42785384,24719063,4
+69336085,24719063,3
+lmoung,24719063,5
+66723424,24719063,4
+6278260,24719063,4
+tianyue,24719063,5
+73735858,24719063,3
+15718296,24719063,4
+sweeroty,24719063,4
+1168375,24719063,4
+75096112,24719063,2
+5803661,24719063,4
+Wjkjames,24719063,4
+50095584,24719063,5
+90904421,24719063,3
+ziv_yll,24719063,4
+51490849,24719063,4
+2331276,24719063,3
+niaoyunfeidouba,24719063,5
+45345098,24719063,-1
+63945238,24719063,4
+4652178,24719063,4
+1319544,24719063,3
+52178339,24719063,3
+4096669,24719063,3
+102647493,24719063,5
+74545723,24719063,5
+daisyholdon,24719063,5
+60232608,24719063,5
+hardcandyjie,24719063,4
+sunzeya,24719063,4
+Rae8023,24719063,4
+Vivid-try,24719063,5
+leann1217,24719063,5
+68351261,24719063,3
+59607562,24719063,3
+54145491,24719063,5
+57842249,24719063,3
+55652120,24719063,4
+30693923,24719063,4
+54090532,24719063,4
+57445507,24719063,4
+72430086,24719063,4
+1403754,24719063,4
+57088096,24719063,5
+52472816,24719063,4
+lucyidoliverson,24719063,4
+fanny_lingf,24719063,3
+bamboo0314,24719063,4
+shenda,24719063,5
+75914022,24719063,4
+76127338,24719063,3
+65948631,24719063,4
+4806565,24719063,4
+103163383,24719063,4
+49048571,24719063,4
+49048571,24719063,4
+summersure,24719063,4
+slds45227780,24719063,5
+tetcato,24719063,4
+yuwusankou,24719063,4
+54277282,24719063,5
+122893445,24719063,5
+68776997,24719063,3
+28927892,24719063,4
+83658918,24719063,-1
+46285519,24719063,4
+nanadong,24719063,5
+Maqqieyaoyao,24719063,5
+AUVzoey,24719063,4
+azalea-.-,24719063,3
+45657672,24719063,4
+133090172,24719063,4
+89563682,24719063,3
+hahjhahj,24719063,4
+45004020,24719063,3
+65970423,24719063,4
+52111107,24719063,5
+TracyQ,24719063,5
+52236441,24719063,4
+54991939,24719063,3
+2327858,24719063,3
+quill,24719063,4
+116035367,24719063,4
+shumeiying,24719063,3
+131761479,24719063,5
+daixiaobao,24719063,3
+44434649,24719063,3
+60406186,24719063,4
+43354403,24719063,5
+1830523,24719063,4
+55831492,24719063,5
+66629958,24719063,4
+56591615,24719063,4
+ccccccIty,24719063,4
+3161053,24719063,4
+summerfan,24719063,4
+53496053,24719063,5
+2422505,24719063,3
+92032476,24719063,4
+47783311,24719063,5
+80327675,24719063,5
+2538567,24719063,4
+sweather,24719063,5
+44710735,24719063,4
+3602334,24719063,4
+108069778,24719063,5
+3793771,24719063,3
+15726816,24719063,4
+79773701,24719063,3
+LYN1993,24719063,4
+kuxiafeng,24719063,3
+56981380,24719063,3
+13301536,24719063,3
+sourirefish,24719063,3
+58732706,24719063,3
+darlyn,24719063,3
+97865637,24719063,3
+dabyrowe,24719063,4
+heyi705,24719063,-1
+68446613,24719063,4
+baiyoubai0629,24719063,4
+49632759,24719063,4
+phoenixbox,24719063,5
+73690547,24719063,4
+yt0310,24719063,5
+sverige,24719063,4
+67208670,24719063,5
+Koko_head,24719063,1
+62420384,24719063,4
+lucia1605-12,24719063,5
+49339349,24719063,3
+87646803,24719063,3
+4672889,24719063,5
+handsometian,24719063,3
+74871304,24719063,4
+tutu9143,24719063,5
+89248154,24719063,5
+3977925,24719063,5
+96137054,24719063,4
+50874756,24719063,4
+47598618,24719063,4
+50627941,24719063,4
+Thallo,24719063,5
+66969255,24719063,4
+114361347,24719063,4
+78426497,24719063,5
+50527375,24719063,4
+helloface0819,24719063,1
+63035806,24719063,5
+55606926,24719063,4
+41502118,24719063,4
+127950412,24719063,4
+bei1004,24719063,5
+seagull_shen,24719063,4
+46289233,24719063,4
+46289233,24719063,4
+67243233,24719063,4
+hernansun,24719063,3
+85950900,24719063,4
+61602922,24719063,3
+ariellau,24719063,3
+29904054,24719063,3
+11853936,24719063,4
+50748318,24719063,4
+1200829,24719063,4
+65308090,24719063,4
+mjpx0510,24719063,4
+83858975,24719063,5
+61718820,24719063,-1
+48371024,24719063,5
+ohchara,24719063,3
+123854349,24719063,4
+53381423,24719063,3
+65350542,24719063,4
+61689906,24719063,5
+41848345,24719063,5
+34859400,24719063,4
+71086095,24719063,4
+132894004,24719063,3
+74676863,24719063,4
+52594518,24719063,4
+131012186,24719063,4
+samleq,24719063,5
+3374496,24719063,5
+68812181,24719063,5
+78909444,24719063,4
+70287236,24719063,4
+50269699,24719063,4
+naturalq,24719063,4
+wakahoo,24719063,4
+59010945,24719063,5
+2320325,24719063,5
+Ilovelife9433,24719063,4
+44510588,24719063,3
+48310457,24719063,4
+65432868,24719063,4
+luococo,24719063,5
+61069242,24719063,1
+3705118,24719063,5
+58225512,24719063,5
+62403523,24719063,4
+zhanzhan1819,24719063,4
+40464282,24719063,5
+65101175,24719063,3
+10175471,24719063,5
+zyt_69,24719063,5
+62151514,24719063,5
+laurencelee,24719063,5
+54311930,24719063,4
+kaprilis,24719063,4
+chengdufengzi,24719063,4
+OOORRR,24719063,4
+122052280,24719063,4
+43766729,24719063,3
+xiaohulilengyue,24719063,3
+zeroiris,24719063,3
+80353968,24719063,3
+63943147,24719063,3
+LynLau,24719063,3
+50079736,24719063,4
+80452774,24719063,4
+51419805,24719063,4
+Cimmy,24719063,4
+67616978,24719063,3
+2978043,24719063,5
+49925058,24719063,4
+128063349,24719063,4
+babylucky,24719063,5
+aftf,24719063,4
+56142020,24719063,4
+xiajixiangnan,24719063,5
+3420320,24719063,4
+aborigines,24719063,4
+2097598,24719063,4
+soberldly,24719063,3
+ColinRebirth,24719063,3
+1585143,24719063,3
+ccnevan,24719063,4
+13441174,24719063,3
+xiaochan83,24719063,3
+bingoyy,24719063,5
+27432217,24719063,3
+129435920,24719063,4
+66369181,24719063,3
+kid177,24719063,2
+freemagic1988,24719063,3
+4266454,24719063,3
+1885007,24719063,4
+57749181,24719063,4
+128640121,24719063,3
+47058104,24719063,4
+jackie1207,24719063,4
+74335939,24719063,4
+jeanwoo,24719063,3
+d8day,24719063,3
+58310222,24719063,4
+selfisher,24719063,-1
+36231794,24719063,3
+93303710,24719063,4
+joxxc,24719063,4
+12244253,24719063,4
+prostate,24719063,3
+lagrandeillusio,24719063,5
+soga,24719063,5
+79990790,24719063,4
+68909177,24719063,4
+fantasy_yang,24719063,5
+rou3lives,24719063,5
+ernestfang,24719063,4
+88135973,24719063,4
+52157663,24719063,3
+131606948,24719063,4
+16327622,24719063,4
+ciell,24719063,3
+65739692,24719063,4
+81998298,24719063,4
+missingmaggie,24719063,3
+pgdzhua,24719063,3
+kikifacy,24719063,5
+67742018,24719063,4
+38973688,24719063,4
+DJwalawala,24719063,4
+51244876,24719063,4
+kingpein,24719063,4
+115604984,24719063,4
+74519788,24719063,4
+120579869,24719063,3
+92022849,24719063,4
+133309634,24719063,3
+NKscar,24719063,4
+64380819,24719063,3
+wangmuya,24719063,4
+2994454,24719063,3
+42130916,24719063,3
+62949952,24719063,4
+62716748,24719063,3
+nakunamanihong,24719063,3
+52879823,24719063,3
+my_landscape,24719063,4
+zhanzhan8871,24719063,4
+3227257,24719063,4
+15167698,24719063,3
+15197671,24719063,3
+69875076,24719063,5
+74679165,24719063,4
+131849470,24719063,4
+49182010,24719063,4
+58908611,24719063,4
+3216725,24719063,4
+2249187,24719063,3
+cloudnest,24719063,4
+41390542,24719063,-1
+wfpaul,24719063,5
+peerless14,24719063,4
+solotalk,24719063,4
+vianlike,24719063,3
+tonyuanChen,24719063,4
+mavisdawn,24719063,3
+121861982,24719063,3
+55695831,24719063,5
+raytao,24719063,3
+69146429,24719063,3
+56837215,24719063,4
+49269031,24719063,3
+80127380,24719063,4
+jessedong,24719063,4
+2148287,24719063,5
+oh_zoay,24719063,5
+24352360,24719063,5
+47950856,24719063,4
+icy_,24719063,5
+kim5257,24719063,3
+57913675,24719063,2
+50111423,24719063,2
+47173463,24719063,4
+99331350,24719063,5
+83956629,24719063,4
+perfectdemon,24719063,4
+55325388,24719063,4
+azureINBLUR,24719063,4
+dbann,24719063,4
+50416947,24719063,3
+67772959,24719063,4
+deepsnow,24719063,4
+53212541,24719063,4
+3269906,24719063,4
+119670372,24719063,5
+3660472,24719063,4
+yumendechaoren,24719063,4
+lovingecho,24719063,-1
+75033795,24719063,5
+1530465,24719063,4
+79091050,24719063,3
+119950155,24719063,4
+119489564,24719063,3
+53366599,24719063,4
+elwy,24719063,5
+4387966,24719063,4
+124638589,24719063,3
+vivi2edc,24719063,4
+42799171,24719063,3
+39303357,24719063,5
+82550997,24719063,2
+luckyjeannelee,24719063,4
+2181401,24719063,3
+plight,24719063,4
+66216935,24719063,3
+84377752,24719063,3
+49886227,24719063,5
+2183610,24719063,4
+hanlinallen,24719063,4
+luoluo430,24719063,4
+88285360,24719063,4
+14480826,24719063,4
+58425869,24719063,4
+46685815,24719063,3
+120740966,24719063,3
+129040380,24719063,3
+wanghuanming,24719063,4
+42426866,24719063,4
+yukiseventeen,24719063,4
+53343790,24719063,-1
+1087321,24719063,3
+120448486,24719063,2
+mschzoe,24719063,4
+hendrix,24719063,4
+35235372,24719063,4
+2504153,24719063,4
+Eie10_9,24719063,4
+46385468,24719063,4
+36206497,24719063,3
+zoe0913,24719063,4
+4306136,24719063,5
+blue_sky_yang,24719063,4
+82037487,24719063,4
+90736776,24719063,5
+55557122,24719063,4
+49444266,24719063,5
+lily0001,24719063,4
+81006817,24719063,5
+moyueshangshi,24719063,5
+53457323,24719063,4
+94394247,24719063,2
+Dunstan13,24719063,3
+erosthefaith,24719063,4
+yora,24719063,4
+Na0mi,24719063,4
+53647503,24719063,4
+ballteda,24719063,2
+SHSMJ-Z,24719063,3
+fish_zhao,24719063,4
+66311081,24719063,5
+49449139,24719063,4
+65045632,24719063,4
+4266482,24719063,3
+43856075,24719063,4
+flos_solis0821,24719063,3
+1352823,24719063,5
+JUDYLOVEG,24719063,4
+56068033,24719063,4
+51492643,24719063,4
+55309998,24719063,4
+68109134,24719063,4
+126704969,24719063,5
+47949191,24719063,3
+70081984,24719063,4
+51360748,24719063,5
+daylily1016,24719063,4
+57411563,24719063,4
+74700188,24719063,5
+miti32,24719063,4
+45572268,24719063,3
+Uranus_Qiang,24719063,3
+paradoxx,24719063,3
+christine1006,24719063,4
+Renascen,24719063,4
+Elisa.ma,24719063,3
+jing1,24719063,-1
+67491700,24719063,4
+46102917,24719063,4
+3613359,24719063,4
+50410126,24719063,4
+63849510,24719063,4
+54569706,24719063,5
+hanalook,24719063,4
+133862100,24719063,5
+3167300,24719063,4
+35742329,24719063,4
+44775121,24719063,5
+thezealer,24719063,4
+mingming1124530,24719063,4
+40323402,24719063,4
+supermagua,24719063,4
+MarsOrMoon,24719063,4
+62688277,24719063,5
+48264468,24719063,4
+47433157,24719063,4
+71811123,24719063,2
+49028231,24719063,3
+45357966,24719063,3
+61531110,24719063,4
+82690334,24719063,3
+UtopianCarmen,24719063,4
+115474584,24719063,3
+44141060,24719063,4
+68492607,24719063,4
+78540104,24719063,3
+LittleJane_,24719063,4
+58544664,24719063,4
+66802637,24719063,4
+cherryseventeen,24719063,3
+63538128,24719063,5
+79324005,24719063,4
+53476410,24719063,4
+liuyahuavv,24719063,4
+124616883,24719063,5
+90257264,24719063,4
+69914528,24719063,4
+122582882,24719063,-1
+81146735,24719063,5
+xiaobocome,24719063,4
+yanxiyz,24719063,-1
+98009481,24719063,4
+90000787,24719063,3
+49605949,24719063,3
+88032074,24719063,4
+2673019,24719063,5
+crazyxiangyan,24719063,4
+132031247,24719063,4
+72147052,24719063,5
+lrxsamantha,24719063,4
+50082759,24719063,4
+45838830,24719063,4
+LAAZOO,24719063,3
+68907023,24719063,4
+sangdafa,24719063,3
+Cool4ZBL,24719063,4
+77200977,24719063,4
+MissCaptain,24719063,5
+lily7735,24719063,4
+50155901,24719063,4
+nianwanqu,24719063,5
+42907481,24719063,4
+56146971,24719063,5
+130387821,24719063,-1
+milanmao,24719063,4
+66221234,24719063,5
+garbovisa,24719063,5
+58504970,24719063,3
+3858718,24719063,1
+116380975,24719063,5
+midorikoannie,24719063,4
+Autumn-shadow,24719063,5
+4280166,24719063,-1
+RivaLinn,24719063,5
+4445748,24719063,3
+4857042,24719063,5
+56956858,24719063,-1
+56723525,24719063,4
+troublebreaker,24719063,5
+LinWoo,24719063,4
+bearbyebye,24719063,4
+imsatan,24719063,3
+108173737,24719063,4
+kishtyy_41,24719063,4
+51405192,24719063,3
+67503021,24719063,3
+43901244,24719063,4
+djinn77,24719063,4
+133887142,24719063,5
+91118015,24719063,3
+48280428,24719063,4
+4239191,24719063,3
+itracy,24719063,5
+63214705,24719063,-1
+67854963,24719063,4
+53162024,24719063,3
+46423055,24719063,5
+48094958,24719063,4
+sewer-d,24719063,4
+103538832,24719063,4
+zhyibin,24719063,3
+churao,24719063,4
+53646130,24719063,4
+51584092,24719063,5
+75489500,24719063,-1
+gocia,24719063,5
+122442979,24719063,4
+52270206,24719063,3
+sweetmiracle,24719063,4
+wincy_5c,24719063,4
+61131692,24719063,4
+YOYOTHY,24719063,3
+55642198,24719063,-1
+JustStayReal,24719063,4
+37521902,24719063,3
+69403623,24719063,3
+goflew,24719063,4
+herb0414,24719063,4
+49337423,24719063,5
+1010486,24719063,3
+99483183,24719063,3
+3875131,24719063,4
+3278894,24719063,4
+ZloVe7,24719063,-1
+52160935,24719063,4
+36807657,24719063,3
+63054823,24719063,4
+51653649,24719063,3
+78585148,24719063,5
+47732529,24719063,3
+32195437,24719063,4
+47240344,24719063,4
+51545041,24719063,3
+58762290,24719063,4
+51974012,24719063,3
+25912456,24719063,4
+greensa,24719063,4
+yodswork,24719063,3
+120828432,24719063,4
+eadsmy,24719063,4
+feifeiyouxia,24719063,4
+apple_pie,24719063,5
+2803619,24719063,3
+57800362,24719063,4
+yanqingwei,24719063,3
+panda_ysd,24719063,5
+109800958,24719063,4
+xyzegg,24719063,-1
+ytsygz,24719063,5
+55585638,24719063,2
+60437106,24719063,4
+1794910,24719063,4
+1701341,24719063,2
+iceyvonne,24719063,4
+50410530,24719063,4
+30323334,24719063,4
+53027731,24719063,4
+60127294,24719063,5
+94559005,24719063,5
+55643387,24719063,5
+lnnlnn,24719063,4
+43469537,24719063,4
+faydao,24719063,3
+62986626,24719063,5
+Olivia4real,24719063,4
+maigc,24719063,4
+kinokoneko,24719063,4
+52582928,24719063,3
+vanillaeyes,24719063,5
+121479444,24719063,4
+Ming926,24719063,3
+68028647,24719063,4
+58886429,24719063,4
+51002009,24719063,5
+53349909,24719063,5
+3773993,24719063,5
+36302037,24719063,4
+Frieda_,24719063,4
+51577920,24719063,4
+3871209,24719063,4
+4228422,24719063,4
+131244878,24719063,5
+lantares,24719063,5
+47748355,24719063,4
+50395340,24719063,4
+hellomybluelife,24719063,4
+akward,24719063,4
+59992887,24719063,4
+47273453,24719063,4
+76611008,24719063,4
+57798796,24719063,4
+114648474,24719063,4
+63488867,24719063,-1
+3383915,24719063,4
+7987819,24719063,4
+treee,24719063,3
+53080002,24719063,4
+evanlee2018,24719063,4
+yinyuan,24719063,3
+qianlijun,24719063,4
+50073903,24719063,5
+50352774,24719063,3
+110969952,24719063,3
+56606229,24719063,4
+dongdashan,24719063,5
+4662075,24719063,2
+47943470,24719063,4
+dengxian123,24719063,4
+58063644,24719063,4
+mandylu2010,24719063,3
+63399322,24719063,3
+61953901,24719063,5
+philia-li,24719063,-1
+50813720,24719063,5
+Qeavens,24719063,3
+83133983,24719063,4
+cherrykuo,24719063,4
+quietsunlight,24719063,4
+63178827,24719063,2
+75995886,24719063,4
+rocara,24719063,4
+karenluo,24719063,4
+zhoujialin,24719063,5
+65398395,24719063,4
+30649428,24719063,4
+lishidai93,24719063,4
+69673873,24719063,5
+81546030,24719063,3
+ashli,24719063,3
+76239452,24719063,4
+125281406,24719063,3
+47314594,24719063,3
+124812731,24719063,4
+1077774,24719063,4
+66249387,24719063,3
+68102477,24719063,4
+51782800,24719063,3
+uncledark,24719063,5
+Sitron_99,24719063,5
+78626733,24719063,4
+120070082,24719063,5
+zephyrliu,24719063,4
+53256326,24719063,4
+60349266,24719063,4
+51369754,24719063,4
+47388873,24719063,3
+40097921,24719063,4
+hunyu,24719063,4
+zhangsanswo,24719063,5
+74667953,24719063,5
+125384763,24719063,4
+57783651,24719063,4
+39953503,24719063,3
+DANTEJD,24719063,4
+ginnyisbest,24719063,5
+89066076,24719063,5
+90973850,24719063,3
+52944051,24719063,2
+60551662,24719063,4
+liimaday,24719063,4
+75942332,24719063,2
+60981159,24719063,5
+113068656,24719063,4
+45840537,24719063,4
+jadexyy,24719063,4
+sj91123,24719063,4
+1122936,24719063,5
+4912927,24719063,4
+carrypotter,24719063,2
+88211283,24719063,5
+43345158,24719063,4
+happygs,24719063,4
+51793957,24719063,3
+81393037,24719063,4
+Luroo,24719063,3
+62532021,24719063,4
+57359421,24719063,4
+114356515,24719063,5
+126092428,24719063,3
+41836272,24719063,4
+wanlili520,24719063,4
+51749125,24719063,2
+43684729,24719063,4
+66147011,24719063,4
+58153202,24719063,3
+125648446,24719063,3
+51907986,24719063,4
+97702516,24719063,4
+isYoko,24719063,4
+50086971,24719063,5
+63406200,24719063,4
+14044230,24719063,3
+8078899,24719063,3
+89908127,24719063,4
+89908127,24719063,4
+63352248,24719063,4
+ohagur,24719063,4
+78145448,24719063,4
+49552465,24719063,4
+130692853,24719063,4
+annale,24719063,3
+53430150,24719063,4
+70660372,24719063,4
+56811139,24719063,4
+dadadarling,24719063,1
+6580754,24719063,5
+4292817,24719063,3
+65979615,24719063,4
+MLLEfanfan,24719063,3
+qingxiaolin,24719063,4
+52396951,24719063,4
+37848161,24719063,5
+131495477,24719063,5
+2435169,24719063,4
+self1988,24719063,3
+dygrbhtj,24719063,1
+66580589,24719063,4
+45513879,24719063,4
+67113582,24719063,4
+82299258,24719063,5
+4490766,24719063,4
+36177683,24719063,4
+47594886,24719063,4
+51156082,24719063,4
+132974990,24719063,3
+haxiepeia,24719063,4
+62728845,24719063,4
+shasha1023,24719063,4
+34231521,24719063,4
+uniconx,24719063,5
+61930217,24719063,5
+lilmustard,24719063,3
+cheeseflower,24719063,4
+48217121,24719063,4
+132370483,24719063,4
+4873538,24719063,5
+ring_ring,24719063,4
+littleyellowhat,24719063,4
+isayan,24719063,3
+47243705,24719063,5
+40883731,24719063,4
+2722902,24719063,4
+3617677,24719063,4
+bear1943,24719063,5
+gexiarong,24719063,4
+gdragon-ily,24719063,4
+32645204,24719063,3
+43372151,24719063,4
+1496407,24719063,3
+vanjohnbob,24719063,4
+79959123,24719063,4
+liuzisen,24719063,4
+70862123,24719063,4
+91573235,24719063,4
+4685727,24719063,3
+115745925,24719063,4
+57972218,24719063,4
+130671137,24719063,4
+47556778,24719063,4
+14488630,24719063,5
+57756746,24719063,4
+liuziping,24719063,4
+79037298,24719063,2
+ZL813,24719063,4
+nastyjack,24719063,4
+4214564,24719063,3
+wenghu,24719063,5
+3144882,24719063,4
+66705172,24719063,5
+85450406,24719063,4
+35739270,24719063,5
+76995484,24719063,4
+82991875,24719063,4
+56582926,24719063,3
+66980170,24719063,4
+129104487,24719063,5
+shaxiaohai,24719063,5
+kidwayne,24719063,5
+116551398,24719063,5
+59596686,24719063,3
+45511772,24719063,4
+68577121,24719063,3
+nauyuxSilverdew,24719063,4
+44776734,24719063,3
+80657884,24719063,4
+4718173,24719063,3
+130272080,24719063,5
+51175601,24719063,3
+59456445,24719063,5
+fatfatdog,24719063,4
+64168729,24719063,4
+48662310,24719063,4
+64760578,24719063,4
+1094456,24719063,3
+j_exe,24719063,-1
+qswoomsb,24719063,5
+supersun1005,24719063,4
+38632566,24719063,5
+133846679,24719063,4
+68559810,24719063,4
+taizi717,24719063,4
+yiliaobailiao,24719063,5
+ocn27,24719063,5
+ajjiangxin,24719063,4
+zita1021,24719063,4
+miffychen0,24719063,4
+63794302,24719063,4
+59508590,24719063,3
+49035504,24719063,5
+40474222,24719063,4
+48503019,24719063,4
+33445354,24719063,5
+ryan-vag,24719063,3
+55847546,24719063,4
+49487093,24719063,4
+a1234567,24719063,4
+3855619,24719063,3
+an491033958,24719063,4
+2857340,24719063,5
+Melody-Moon,24719063,3
+63617713,24719063,4
+1189560,24719063,4
+62662414,24719063,4
+50714724,24719063,4
+5244723,24719063,2
+33909935,24719063,3
+62392719,24719063,4
+evilaalive69,24719063,3
+baobao0610,24719063,3
+xiexienipeizhew,24719063,3
+3850332,24719063,4
+83985185,24719063,5
+Erishia,24719063,4
+51939664,24719063,5
+2946021,24719063,5
+shadow86921,24719063,4
+xiaojirou007,24719063,4
+98723942,24719063,4
+1707210,24719063,-1
+yidapan,24719063,3
+3549913,24719063,5
+37085797,24719063,3
+54310251,24719063,4
+81884634,24719063,5
+61319449,24719063,4
+bonnie_june,24719063,-1
+46175639,24719063,4
+49232061,24719063,3
+65940576,24719063,4
+48193233,24719063,4
+janeythai,24719063,4
+3838479,24719063,4
+123500065,24719063,3
+amigo4978,24719063,4
+48959774,24719063,3
+aatt,24719063,5
+Joelia,24719063,4
+58081295,24719063,3
+49365587,24719063,4
+mxmxmxxx,24719063,4
+46517740,24719063,4
+57781219,24719063,5
+52449324,24719063,4
+52774723,24719063,4
+53657118,24719063,5
+charlene1996,24719063,4
+xhqkns,24719063,4
+90188169,24719063,4
+45459664,24719063,4
+57632493,24719063,5
+25978283,24719063,2
+119265628,24719063,5
+119404591,24719063,4
+44705986,24719063,4
+58228247,24719063,-1
+54444085,24719063,5
+seclo,24719063,4
+1875013,24719063,4
+akilaa,24719063,4
+58941847,24719063,4
+2370135,24719063,3
+BLprince,24719063,2
+128443021,24719063,5
+64413783,24719063,4
+willfd,24719063,3
+liyue8848,24719063,5
+3138370,24719063,3
+61076987,24719063,3
+yeyayu,24719063,4
+55348878,24719063,4
+4572875,24719063,4
+qino,24719063,4
+linxi,24719063,3
+ganewael,24719063,4
+shiteng,24719063,3
+2658903,24719063,4
+53166537,24719063,4
+FadingMemories,24719063,4
+40622422,24719063,2
+4269909,24719063,3
+61062275,24719063,5
+52274070,24719063,2
+29905943,24719063,3
+34664148,24719063,4
+63209981,24719063,4
+Zonnebloem,24719063,4
+vivi.sunny,24719063,4
+69949591,24719063,1
+64821728,24719063,4
+serendipityblue,24719063,4
+49145683,24719063,5
+4703557,24719063,4
+100380126,24719063,5
+121572501,24719063,3
+78857918,24719063,3
+naples5,24719063,3
+sololou,24719063,4
+9632550,24719063,3
+employee,24719063,4
+54740979,24719063,3
+43362874,24719063,5
+1552176,24719063,4
+76816067,24719063,5
+1319299,24719063,5
+50202465,24719063,3
+126685684,24719063,5
+123697515,24719063,3
+50438516,24719063,3
+63688559,24719063,3
+LCB-Gallifrey,24719063,4
+130496028,24719063,4
+3550468,24719063,4
+connie_1214,24719063,5
+summer2lin,24719063,3
+astroro,24719063,4
+36008103,24719063,4
+46450017,24719063,2
+berserker,24719063,3
+pinxue,24719063,4
+50082750,24719063,3
+82317907,24719063,3
+3471074,24719063,5
+69970746,24719063,3
+66405994,24719063,4
+lqloveyozoh,24719063,4
+43233687,24719063,3
+73098134,24719063,4
+happyface1022,24719063,4
+82222137,24719063,4
+lijin329,24719063,4
+75569295,24719063,5
+AirCastle,24719063,3
+58189352,24719063,4
+47256072,24719063,4
+130564437,24719063,3
+desire19840311,24719063,4
+45197494,24719063,3
+Shineeeee,24719063,4
+2686580,24719063,-1
+a870838604,24719063,3
+63465084,24719063,5
+47877779,24719063,3
+50262864,24719063,5
+alohaceci,24719063,4
+pppryo,24719063,3
+16411063,24719063,5
+yolanda0416,24719063,4
+60248583,24719063,4
+64485827,24719063,3
+57275978,24719063,-1
+50135797,24719063,4
+40671381,24719063,4
+59655331,24719063,5
+80757193,24719063,4
+43072006,24719063,3
+62892368,24719063,4
+128238670,24719063,4
+39628944,24719063,-1
+1827489,24719063,-1
+71210783,24719063,4
+26812348,24719063,4
+52023052,24719063,4
+54731797,24719063,3
+93825881,24719063,4
+50212998,24719063,4
+122014135,24719063,4
+dyinggg,24719063,4
+58337049,24719063,4
+109055681,24719063,3
+49576180,24719063,5
+123015140,24719063,4
+54377969,24719063,3
+78414144,24719063,3
+lucyromance,24719063,4
+it4_rain,24719063,4
+albeepan,24719063,4
+66973297,24719063,4
+simply_red,24719063,4
+113602700,24719063,5
+2584340,24719063,4
+71038565,24719063,4
+Victory_V,24719063,4
+123373729,24719063,4
+Rachelise,24719063,4
+llh9277,24719063,4
+115201364,24719063,4
+loveyu0725,24719063,5
+47263625,24719063,2
+goodnia,24719063,4
+81106134,24719063,3
+67615771,24719063,4
+94951098,24719063,4
+DTShow,24719063,5
+82914886,24719063,4
+loveguigui7814,24719063,3
+mamistar,24719063,4
+alivil,24719063,3
+metalody,24719063,4
+CharlieXiaoxiao,24719063,3
+Jews.,24719063,-1
+douyajun,24719063,4
+piaoweier,24719063,5
+60880769,24719063,5
+134022837,24719063,3
+33382680,24719063,-1
+41194137,24719063,4
+62817888,24719063,5
+Z142325,24719063,4
+60698391,24719063,3
+opq416,24719063,5
+49139242,24719063,4
+61656459,24719063,4
+119412148,24719063,3
+neverland97,24719063,3
+44562127,24719063,3
+38989368,24719063,3
+papaduty,24719063,3
+kiwimomo,24719063,2
+hxxstc,24719063,4
+133695436,24719063,4
+50518122,24719063,2
+ClaireChu,24719063,3
+3975192,24719063,3
+smilezhangjian,24719063,5
+happyfairy,24719063,4
+50400133,24719063,3
+48688516,24719063,4
+74457680,24719063,5
+TualatriX,24719063,5
+52140378,24719063,5
+75378963,24719063,3
+84157110,24719063,3
+3455527,24719063,4
+alexhj,24719063,5
+binfancy,24719063,4
+poppy1982,24719063,5
+54201191,24719063,3
+fcheng,24719063,4
+45490376,24719063,5
+133678493,24719063,2
+100240812,24719063,4
+77420474,24719063,3
+90056142,24719063,4
+47696979,24719063,3
+tanronghong,24719063,5
+77472425,24719063,4
+hustzxf,24719063,2
+122739851,24719063,3
+127782706,24719063,4
+103969062,24719063,4
+45789396,24719063,4
+48022266,24719063,3
+49523501,24719063,4
+Jewon,24719063,3
+kakaso,24719063,4
+52816785,24719063,4
+123225948,24719063,3
+bfreak,24719063,3
+3741713,24719063,5
+11277774,24719063,4
+4113291,24719063,-1
+115376627,24719063,5
+Ruby-0917,24719063,5
+47603027,24719063,3
+129448195,24719063,4
+cuixuelei,24719063,4
+54845592,24719063,4
+68191014,24719063,2
+75661398,24719063,4
+52174133,24719063,4
+spacee,24719063,4
+65190817,24719063,4
+66986250,24719063,3
+133763996,24719063,3
+86055475,24719063,5
+bufang,24719063,4
+dairytea,24719063,4
+4279428,24719063,4
+bluesun1031,24719063,4
+2069523,24719063,4
+1223666,24719063,4
+ulayh0607,24719063,4
+26438724,24719063,4
+volcancano,24719063,3
+52463415,24719063,3
+49130645,24719063,4
+4007706,24719063,5
+63603619,24719063,4
+80239706,24719063,4
+hilongmaoxiong,24719063,4
+121482171,24719063,4
+44313962,24719063,4
+40258675,24719063,4
+patchwork,24719063,3
+lingjunxin,24719063,4
+46028086,24719063,4
+Year0201,24719063,4
+38831022,24719063,3
+3497557,24719063,4
+kfsj,24719063,4
+rl_forever21,24719063,5
+68173068,24719063,4
+67980899,24719063,5
+maxmum,24719063,4
+56759438,24719063,4
+holynight,24719063,4
+4313714,24719063,4
+66794675,24719063,5
+yumaoluoshui,24719063,4
+69961635,24719063,3
+shoolee,24719063,4
+79419474,24719063,4
+liuhuajian007,24719063,5
+58055759,24719063,5
+78236258,24719063,3
+4394529,24719063,4
+pcwofe,24719063,4
+73203651,24719063,3
+65232993,24719063,4
+kiki204629,24719063,4
+anitalovebieber,24719063,4
+cy-yeah,24719063,5
+xsmm995,24719063,2
+curlooo,24719063,4
+sunyuanke,24719063,4
+camtton,24719063,4
+56905459,24719063,4
+25674163,24719063,3
+caojian120,24719063,3
+66612496,24719063,3
+82332915,24719063,5
+aruariandance,24719063,4
+119092627,24719063,4
+xxxxyhE,24719063,3
+daisyhsia,24719063,5
+53131403,24719063,3
+48876970,24719063,5
+128723330,24719063,5
+133043824,24719063,4
+xellossking,24719063,3
+51087579,24719063,4
+greenmoon55,24719063,4
+60049868,24719063,3
+45294460,24719063,4
+70044971,24719063,4
+delicioussalad,24719063,5
+130832504,24719063,5
+82361798,24719063,5
+57666302,24719063,4
+95767683,24719063,3
+129698879,24719063,4
+acacia_acacia,24719063,4
+76388450,24719063,3
+50206708,24719063,3
+gujiahui,24719063,4
+elle1989,24719063,3
+48034975,24719063,3
+45105333,24719063,5
+40021549,24719063,4
+102875751,24719063,5
+xun0717,24719063,3
+doudouu,24719063,4
+towne,24719063,3
+3473388,24719063,4
+50360912,24719063,3
+125603682,24719063,4
+anoTherTeezy,24719063,4
+89165267,24719063,5
+130903700,24719063,4
+2492927,24719063,5
+134018576,24719063,4
+putoff,24719063,3
+sdqz111,24719063,3
+ciweideyongsu,24719063,1
+13728402,24719063,3
+45795420,24719063,4
+15337334,24719063,4
+49332550,24719063,5
+Explosion,24719063,4
+53075236,24719063,5
+huerwei,24719063,4
+52582150,24719063,4
+3681116,24719063,3
+37879706,24719063,3
+13731883,24719063,4
+mmissfreak,24719063,3
+yeon15,24719063,5
+49901679,24719063,4
+elsteven,24719063,5
+127771383,24719063,4
+63755124,24719063,4
+69140716,24719063,4
+88425798,24719063,3
+61302654,24719063,4
+liuyuxing,24719063,4
+xxdezhanghao,24719063,5
+brucas,24719063,2
+rachel19940329,24719063,5
+78401441,24719063,4
+71108776,24719063,4
+127529044,24719063,4
+79305249,24719063,5
+Slim1996Mc,24719063,2
+1809277,24719063,4
+t123610,24719063,3
+62091418,24719063,4
+69204520,24719063,4
+127467448,24719063,3
+time2359,24719063,5
+2223598,24719063,4
+71269844,24719063,3
+49478990,24719063,4
+133386536,24719063,5
+avro,24719063,4
+52702832,24719063,4
+29142546,24719063,5
+131183078,24719063,3
+44911874,24719063,5
+62535973,24719063,4
+121736995,24719063,3
+lionelwait,24719063,4
+63145913,24719063,4
+xiaoletaotao,24719063,5
+hwh,24719063,3
+3806312,24719063,5
+4596979,24719063,4
+bambusa,24719063,2
+2608219,24719063,5
+14699938,24719063,4
+wuliangmouji,24719063,3
+55621520,24719063,5
+t2self,24719063,4
+28169414,24719063,4
+bunny1010,24719063,5
+58728195,24719063,3
+36148411,24719063,5
+57572255,24719063,4
+71980617,24719063,4
+36408136,24719063,4
+xiyanbyluo,24719063,3
+addictsun,24719063,3
+39298188,24719063,5
+longxsen,24719063,3
+67232116,24719063,4
+joysun,24719063,3
+66722485,24719063,4
+59389607,24719063,4
+4643813,24719063,4
+70416305,24719063,3
+asukayoshioka,24719063,3
+47002164,24719063,4
+119061026,24719063,4
+rebecca0727,24719063,5
+chensijia,24719063,4
+115307467,24719063,5
+we.zero,24719063,5
+yhc0515,24719063,5
+sodaBai,24719063,4
+Uff_lam,24719063,3
+43648335,24719063,3
+51605377,24719063,4
+75301125,24719063,3
+97453118,24719063,2
+69920763,24719063,5
+1148225,24719063,3
+y-3y17,24719063,4
+50179073,24719063,3
+seanroadster,24719063,3
+calvin_ban,24719063,4
+32625691,24719063,4
+lava_leon,24719063,5
+121628678,24719063,4
+4866014,24719063,3
+ishikari,24719063,4
+jiaowodaxia,24719063,3
+JimmyLien,24719063,4
+83336803,24719063,4
+aero-lee,24719063,5
+6855368,24719063,3
+127680038,24719063,3
+dodo87,24719063,5
+virlee,24719063,4
+62674682,24719063,4
+adayaway,24719063,5
+61597446,24719063,4
+raptor,24719063,4
+61261494,24719063,4
+70687104,24719063,5
+51990488,24719063,4
+43144589,24719063,3
+sulj,24719063,4
+fkimi,24719063,4
+BETSEY,24719063,3
+ricochen,24719063,3
+ricochen,24719063,3
+93224854,24719063,5
+qiuxiafei,24719063,4
+59479657,24719063,5
+69108112,24719063,4
+lanyangyangdecc,24719063,4
+64092595,24719063,5
+xnh01,24719063,3
+lucifer-.,24719063,5
+69556914,24719063,3
+114284723,24719063,5
+lzhao,24719063,3
+89951799,24719063,5
+deliciousjiaozi,24719063,4
+ayumiya,24719063,4
+83695788,24719063,2
+73648035,24719063,4
+JoshuaKwan,24719063,4
+75706045,24719063,4
+57193473,24719063,4
+niansly,24719063,3
+128646835,24719063,5
+59309860,24719063,5
+53717841,24719063,5
+Eenina,24719063,3
+Empty.,24719063,5
+81697516,24719063,4
+3322308,24719063,3
+juzi0809,24719063,4
+58847654,24719063,4
+socalled,24719063,4
+zihuangning,24719063,4
+2578380,24719063,4
+48191143,24719063,3
+funny888,24719063,4
+freeup157,24719063,3
+54129779,24719063,4
+vaini,24719063,3
+t-bag11,24719063,1
+DrRay,24719063,3
+13906885,24719063,4
+68511665,24719063,4
+gransong,24719063,4
+littleD,24719063,4
+musicvatamin,24719063,1
+momojasper,24719063,4
+SPANCERDUAN,24719063,5
+64648933,24719063,4
+48361122,24719063,4
+63957240,24719063,5
+2965888,24719063,3
+45528596,24719063,4
+51386842,24719063,4
+101196248,24719063,5
+30034362,24719063,5
+40587550,24719063,4
+xianschool,24719063,4
+burymyhead,24719063,4
+73818368,24719063,4
+chandearkathy,24719063,5
+xiangkayi,24719063,3
+125971465,24719063,4
+72869594,24719063,3
+77576075,24719063,4
+xiaodaxiaonao,24719063,3
+1463503,24719063,3
+3277636,24719063,4
+54808863,24719063,5
+58014037,24719063,5
+49916010,24719063,-1
+onionfang,24719063,4
+jiaosally,24719063,4
+93807265,24719063,5
+85011203,24719063,5
+wdhappy,24719063,4
+45539899,24719063,4
+43042569,24719063,4
+pankida,24719063,5
+79058902,24719063,4
+3312608,24719063,4
+2426372,24719063,3
+41520364,24719063,5
+52128416,24719063,4
+119999952,24719063,3
+67848029,24719063,4
+64069487,24719063,4
+4516843,24719063,3
+63662895,24719063,4
+134013028,24719063,5
+75750781,24719063,5
+anniecool,24719063,4
+103294529,24719063,5
+j.mago,24719063,5
+80163980,24719063,3
+127916379,24719063,5
+1256698,24719063,4
+Velvet1901,24719063,-1
+57040976,24719063,3
+94768716,24719063,5
+79669816,24719063,4
+49750852,24719063,5
+harry127,24719063,4
+4644252,24719063,3
+dOgdAysaReoVer,24719063,4
+trauntbaby,24719063,4
+107799192,24719063,4
+www1122456,24719063,5
+toodles,24719063,3
+53391226,24719063,4
+80442790,24719063,3
+55668412,24719063,4
+4359622,24719063,5
+barbieyoung,24719063,3
+91669617,24719063,5
+Flower-tea,24719063,4
+theasir,24719063,4
+Geheimnis,24719063,3
+72970549,24719063,2
+xiaomixixi,24719063,4
+49456740,24719063,4
+52350621,24719063,4
+snowandrain,24719063,3
+51607336,24719063,4
+lovesea,24719063,4
+shishiamz,24719063,4
+1864313,24719063,4
+chenhaoyuan,24719063,5
+4954227,24719063,5
+47118380,24719063,3
+2754399,24719063,3
+42088895,24719063,3
+75436336,24719063,3
+4902486,24719063,4
+56604899,24719063,5
+I_love_night,24719063,4
+65077960,24719063,4
+94352576,24719063,5
+zoekinkira,24719063,4
+Librebing,24719063,2
+53071546,24719063,4
+53403999,24719063,4
+LilithXu,24719063,4
+48823348,24719063,4
+68504200,24719063,4
+53671054,24719063,4
+cherryfeng,24719063,4
+51022455,24719063,5
+61552559,24719063,4
+HY827889104,24719063,4
+2081187,24719063,3
+setfree,24719063,-1
+35967033,24719063,4
+129701467,24719063,4
+57143181,24719063,5
+81626835,24719063,-1
+3425257,24719063,4
+copy6,24719063,4
+JomiNeverDies,24719063,5
+53017810,24719063,4
+meteoraX,24719063,4
+2287625,24719063,3
+jeyhello,24719063,4
+ILITHon,24719063,4
+59824275,24719063,3
+58472048,24719063,5
+qing1990716,24719063,4
+nancyinthewind,24719063,3
+liaoliao90,24719063,3
+63571108,24719063,4
+130290957,24719063,5
+EnronZhao,24719063,5
+11630561,24719063,5
+74448596,24719063,4
+132409397,24719063,4
+yaossss,24719063,4
+zv_____,24719063,4
+bigEggplant,24719063,4
+3252036,24719063,3
+30865457,24719063,4
+24062008,24719063,5
+57964215,24719063,5
+xiaochuangxiang,24719063,4
+55392439,24719063,4
+50755856,24719063,5
+pandasleepy,24719063,4
+58294803,24719063,3
+aisaliane,24719063,5
+hawksbill,24719063,4
+39670803,24719063,5
+57486186,24719063,4
+zs619,24719063,5
+84593268,24719063,4
+131881210,24719063,5
+yin972550997,24719063,4
+120990010,24719063,3
+126658399,24719063,4
+88122881,24719063,3
+42694256,24719063,4
+2119013,24719063,3
+jijiayu,24719063,4
+42166979,24719063,4
+58339654,24719063,4
+61311518,24719063,3
+34557052,24719063,4
+66395869,24719063,4
+131103457,24719063,4
+37600684,24719063,3
+121057270,24719063,3
+62749653,24719063,3
+littlepussy_wf,24719063,-1
+55532506,24719063,3
+66322119,24719063,4
+91361689,24719063,4
+abbysky,24719063,3
+2875550,24719063,5
+131131042,24719063,4
+52028798,24719063,3
+78406452,24719063,5
+91297667,24719063,4
+14333996,24719063,4
+43710572,24719063,4
+xusuning,24719063,4
+2605266,24719063,-1
+71790709,24719063,3
+61582904,24719063,4
+34893825,24719063,5
+27028067,24719063,4
+61133743,24719063,4
+81903104,24719063,4
+63499082,24719063,4
+16968943,24719063,5
+gaier,24719063,5
+63483596,24719063,4
+YounG52009,24719063,4
+Miranda625,24719063,5
+79835731,24719063,3
+supremeJ,24719063,4
+62825796,24719063,2
+104252458,24719063,5
+dancing.girl,24719063,4
+dancing.girl,24719063,4
+2280396,24719063,4
+bingqihuoyi,24719063,3
+48040831,24719063,4
+lx6100,24719063,5
+ramonachan,24719063,5
+77644475,24719063,4
+45851871,24719063,3
+zailushang1872,24719063,4
+56018293,24719063,3
+70398974,24719063,4
+67606836,24719063,4
+45074177,24719063,4
+Ronicalee,24719063,4
+29391117,24719063,3
+59997800,24719063,4
+tsuji,24719063,5
+59228070,24719063,4
+moszz,24719063,5
+55296592,24719063,5
+105700070,24719063,4
+doublemoon,24719063,5
+122943812,24719063,4
+sebasverm,24719063,5
+2256093,24719063,4
+AliceTang27,24719063,3
+131932102,24719063,3
+119492917,24719063,4
+52081589,24719063,5
+71052883,24719063,4
+echoningning,24719063,4
+nishijimaming,24719063,4
+84965973,24719063,4
+48277547,24719063,3
+nadjacho,24719063,3
+62398359,24719063,4
+lemengxilexie,24719063,4
+49636823,24719063,4
+guiguibuwugui,24719063,4
+33327621,24719063,2
+sakimay,24719063,4
+66831193,24719063,5
+75829238,24719063,4
+followyourwind,24719063,5
+92698705,24719063,3
+60041907,24719063,4
+94082374,24719063,4
+57777856,24719063,4
+127783550,24719063,4
+119489543,24719063,3
+42695669,24719063,4
+ljjchn,24719063,3
+puppyyyyyyyyyyy,24719063,5
+huanhuanyy,24719063,4
+guolibin,24719063,5
+121419838,24719063,4
+54479962,24719063,4
+119061064,24719063,4
+58085348,24719063,4
+56779777,24719063,2
+62638144,24719063,4
+88159075,24719063,4
+xiaozhuo02,24719063,4
+64515181,24719063,4
+yaohooo,24719063,3
+oscarly,24719063,4
+76777443,24719063,4
+54664894,24719063,4
+bobbi5,24719063,5
+124400494,24719063,4
+49151192,24719063,5
+ziquan827,24719063,3
+dpurity,24719063,4
+71386826,24719063,3
+ckafka,24719063,3
+guanmu,24719063,3
+53808953,24719063,4
+cuiyueshi,24719063,3
+131117180,24719063,4
+57243281,24719063,1
+102675224,24719063,4
+jane921111,24719063,4
+50534285,24719063,5
+sbbisabel,24719063,-1
+4567300,24719063,2
+frank1234,24719063,4
+99253193,24719063,3
+62896016,24719063,5
+115900561,24719063,4
+84109824,24719063,5
+121921036,24719063,5
+2137481,24719063,4
+49238441,24719063,4
+64739308,24719063,4
+34487541,24719063,4
+131209560,24719063,4
+49532139,24719063,2
+83043648,24719063,4
+61754132,24719063,3
+58992948,24719063,4
+51057181,24719063,4
+3715304,24719063,4
+blackscreen,24719063,3
+vliangfrank,24719063,5
+63370699,24719063,3
+potterz,24719063,5
+66620661,24719063,5
+52912743,24719063,4
+57572100,24719063,4
+108146303,24719063,1
+38606077,24719063,4
+2954485,24719063,5
+52320119,24719063,4
+68779054,24719063,2
+73317824,24719063,3
+48808176,24719063,5
+42888408,24719063,3
+107437673,24719063,3
+39077146,24719063,5
+75243231,24719063,4
+75243231,24719063,4
+12498440,24719063,4
+120121169,24719063,5
+78728709,24719063,4
+46370067,24719063,3
+74538779,24719063,3
+14900905,24719063,4
+3928913,24719063,4
+cyc_1124,24719063,3
+81933039,24719063,4
+charlesshan,24719063,5
+dayandnights,24719063,4
+80062653,24719063,4
+yeskor,24719063,4
+62762871,24719063,3
+49636170,24719063,4
+64377079,24719063,4
+121479059,24719063,3
+89079545,24719063,4
+77595746,24719063,5
+62323478,24719063,5
+Se7en_017,24719063,4
+47648192,24719063,4
+133143308,24719063,3
+99969448,24719063,5
+64253762,24719063,4
+Tobey25,24719063,4
+64649049,24719063,3
+52270497,24719063,5
+4341727,24719063,5
+124824509,24719063,5
+128468373,24719063,3
+parisyu,24719063,4
+sophie.sue,24719063,4
+75413985,24719063,5
+53411965,24719063,2
+35040907,24719063,2
+candy100zxy,24719063,4
+38785285,24719063,5
+82910448,24719063,4
+133755694,24719063,4
+76503572,24719063,4
+lockrock,24719063,4
+SusieP,24719063,3
+satanforever,24719063,3
+1338518,24719063,4
+70821942,24719063,4
+uranus_taotao,24719063,4
+marypaige,24719063,-1
+29645106,24719063,3
+79207793,24719063,4
+90133743,24719063,5
+51947959,24719063,5
+49703092,24719063,4
+81666481,24719063,3
+52350612,24719063,4
+metkee,24719063,4
+Kevin3,24719063,4
+70648645,24719063,3
+73995677,24719063,5
+1374758,24719063,3
+51277324,24719063,5
+82222392,24719063,4
+Masayy,24719063,5
+64010291,24719063,4
+pirlo21,24719063,3
+angelliujiayun,24719063,4
+wliiter,24719063,4
+69556893,24719063,3
+74197493,24719063,4
+40411483,24719063,3
+pen20guin,24719063,5
+64012001,24719063,4
+60410157,24719063,3
+45097131,24719063,4
+80161322,24719063,4
+67407695,24719063,3
+lotawakaa,24719063,3
+zstars,24719063,3
+98377699,24719063,3
+xuyimeng,24719063,4
+tobrave,24719063,3
+49181549,24719063,5
+KINGRUNRUN,24719063,3
+3819988,24719063,5
+55429218,24719063,4
+3526245,24719063,5
+youngsama,24719063,-1
+49419338,24719063,4
+62667286,24719063,4
+3740613,24719063,4
+MION,24719063,-1
+Coast0to0coast,24719063,4
+131834272,24719063,4
+43376668,24719063,4
+113205287,24719063,3
+120201514,24719063,3
+2278139,24719063,3
+VeeThao,24719063,4
+3116029,24719063,2
+3116029,24719063,2
+cndxj1990,24719063,5
+perpule,24719063,4
+3421868,24719063,3
+smile_smile1988,24719063,3
+93553649,24719063,4
+fatfish1882,24719063,3
+Ironduck,24719063,4
+liamcai,24719063,4
+61898837,24719063,4
+writtenbylx,24719063,4
+muyu125,24719063,4
+pbc0615,24719063,4
+97840419,24719063,4
+3520487,24719063,3
+58854842,24719063,3
+74525041,24719063,3
+broempty,24719063,4
+wruo,24719063,3
+119995299,24719063,3
+84564093,24719063,4
+33392120,24719063,5
+4090722,24719063,-1
+11989579,24719063,3
+55970012,24719063,4
+107835849,24719063,4
+helloxxf,24719063,3
+baiwei_ren,24719063,5
+42260529,24719063,4
+4280640,24719063,4
+3804128,24719063,4
+38612095,24719063,5
+73305733,24719063,4
+51693234,24719063,-1
+93299177,24719063,4
+xjnjenny,24719063,4
+4915359,24719063,4
+68855191,24719063,4
+86621646,24719063,5
+133864523,24719063,5
+54601280,24719063,4
+2341945,24719063,4
+72171780,24719063,5
+101280968,24719063,4
+48662667,24719063,-1
+124286936,24719063,5
+61910932,24719063,4
+4709164,24719063,4
+Loudzone,24719063,4
+2898681,24719063,3
+zsy_azure,24719063,3
+2910842,24719063,4
+milanai,24719063,4
+101915583,24719063,4
+23273214,24719063,3
+56103928,24719063,4
+53668460,24719063,4
+stevenfive,24719063,3
+somehoow,24719063,3
+huxzhao,24719063,5
+52846746,24719063,3
+27085704,24719063,5
+dannyyy,24719063,4
+58359357,24719063,4
+liluoliluo,24719063,4
+61841169,24719063,5
+35442481,24719063,4
+3757489,24719063,3
+zmx447684192,24719063,4
+dodoo7,24719063,4
+47585387,24719063,5
+66599004,24719063,5
+104823216,24719063,4
+hhy2013,24719063,4
+chimesee,24719063,4
+33043177,24719063,4
+35994820,24719063,3
+65759876,24719063,4
+123049067,24719063,3
+123386745,24719063,4
+123386745,24719063,4
+2256761,24719063,4
+82759056,24719063,4
+44669432,24719063,3
+3979432,24719063,4
+3919474,24719063,3
+52117256,24719063,4
+83739220,24719063,4
+82163616,24719063,4
+81525042,24719063,5
+missmeo,24719063,4
+69173173,24719063,4
+71231764,24719063,3
+56024205,24719063,4
+61739173,24719063,4
+terry459179439,24719063,3
+51909873,24719063,4
+4283326,24719063,4
+64004214,24719063,4
+wz0822,24719063,4
+62948547,24719063,3
+EvelynSalt,24719063,4
+132191342,24719063,3
+40482611,24719063,4
+44708171,24719063,4
+buzengbujian,24719063,3
+Smilene_22,24719063,3
+aibamoe,24719063,4
+zhangxuncc,24719063,3
+46065114,24719063,4
+63090367,24719063,4
+66767676,24719063,4
+MargretShui,24719063,4
+myapril,24719063,4
+128742398,24719063,4
+lilmi13,24719063,3
+88151025,24719063,5
+60558343,24719063,-1
+133989174,24719063,1
+53957821,24719063,4
+50620373,24719063,5
+justisw,24719063,4
+58251550,24719063,4
+helenff,24719063,3
+songyaojun,24719063,3
+wi2am,24719063,2
+88877033,24719063,4
+78001242,24719063,4
+26590062,24719063,4
+74984713,24719063,5
+41480013,24719063,2
+charlenegenie,24719063,4
+53868140,24719063,3
+birdieeos,24719063,4
+57061185,24719063,4
+xubosias,24719063,2
+60818460,24719063,4
+121085982,24719063,3
+4115987,24719063,5
+tangmm,24719063,4
+3314582,24719063,5
+desertsann,24719063,5
+4474645,24719063,4
+66656905,24719063,4
+56775169,24719063,5
+104270374,24719063,4
+53128064,24719063,4
+129369858,24719063,4
+63612050,24719063,3
+42987621,24719063,5
+10011120,24719063,4
+61525287,24719063,-1
+46182813,24719063,4
+53477720,24719063,4
+133083146,24719063,4
+Leslie_Cheung,24719063,4
+46359852,24719063,5
+xiaoyingge,24719063,1
+130659016,24719063,3
+48206424,24719063,4
+weirdozhe,24719063,5
+jeremy-won,24719063,3
+cody0918,24719063,5
+76583719,24719063,4
+41845607,24719063,3
+70013242,24719063,4
+dangdang1027,24719063,4
+122506785,24719063,4
+42555541,24719063,4
+1671301,24719063,5
+couple1314,24719063,4
+another_Leo,24719063,4
+zhrmghgwswswws,24719063,4
+33290025,24719063,4
+104528325,24719063,5
+Eveh,24719063,4
+sophia110,24719063,4
+damos,24719063,4
+4280445,24719063,2
+58731052,24719063,4
+60373659,24719063,5
+54679074,24719063,4
+1643126,24719063,4
+Muggle_ms,24719063,5
+rn86,24719063,4
+42633216,24719063,4
+luckycat_,24719063,3
+58754814,24719063,4
+CHRISTIANWANG,24719063,4
+74519826,24719063,4
+54318729,24719063,4
+2778976,24719063,4
+44899212,24719063,2
+bitterness-zy,24719063,5
+ivril,24719063,4
+115774720,24719063,4
+dounaivivi,24719063,4
+49598163,24719063,2
+7511995,24719063,2
+46411162,24719063,4
+3451278,24719063,-1
+48489477,24719063,4
+17778744,24719063,5
+zn727,24719063,3
+maerting,24719063,5
+46954285,24719063,3
+59190709,24719063,4
+72097494,24719063,4
+45620369,24719063,4
+34597331,24719063,4
+35015768,24719063,4
+78635378,24719063,4
+alina_21,24719063,4
+viia,24719063,4
+92673816,24719063,5
+82725323,24719063,4
+117359316,24719063,5
+37785613,24719063,5
+57842655,24719063,4
+45594123,24719063,4
+mee2ashin,24719063,4
+83209029,24719063,4
+nascent,24719063,3
+35194523,24719063,4
+57939609,24719063,3
+119833040,24719063,4
+36508261,24719063,3
+23826255,24719063,4
+un-do,24719063,4
+115605628,24719063,5
+F.Albertini.L.L,24719063,2
+90553636,24719063,5
+57758773,24719063,4
+73870544,24719063,4
+107805569,24719063,4
+69816487,24719063,3
+zajm,24719063,4
+122893858,24719063,4
+44361784,24719063,4
+lianjin,24719063,4
+lianjin,24719063,4
+1646283,24719063,5
+Sissi_19900306,24719063,4
+76667923,24719063,4
+54359315,24719063,4
+ymelissa,24719063,4
+48774532,24719063,3
+makiyoyang312,24719063,4
+36676686,24719063,4
+45925639,24719063,4
+52400729,24719063,5
+wangxc90721,24719063,5
+125404969,24719063,3
+Generalting,24719063,5
+44823994,24719063,5
+31508323,24719063,3
+52473832,24719063,3
+misa11,24719063,3
+3906902,24719063,4
+braveshengchun,24719063,5
+nothingbird,24719063,3
+MR.YAO,24719063,4
+74648826,24719063,4
+63142359,24719063,4
+1572610,24719063,3
+48332324,24719063,4
+65814779,24719063,5
+70513238,24719063,4
+52433628,24719063,5
+49529307,24719063,5
+jianyadaodao,24719063,3
+yjybibby,24719063,5
+1597009,24719063,4
+Pittsburgh,24719063,3
+JeLLyss,24719063,-1
+49875686,24719063,5
+sinpor,24719063,5
+84406429,24719063,4
+1529544,24719063,3
+yangxiansheng,24719063,4
+zen_gee,24719063,5
+69223309,24719063,5
+13857069,24719063,4
+70427822,24719063,3
+ticketdealer,24719063,3
+129692137,24719063,3
+125145528,24719063,4
+61624734,24719063,5
+75172994,24719063,5
+2809507,24719063,-1
+132021080,24719063,4
+129257065,24719063,4
+41734674,24719063,3
+inic,24719063,4
+105938526,24719063,4
+83797718,24719063,4
+aiyixiaxia,24719063,3
+45590452,24719063,5
+45016565,24719063,4
+xiaobenma,24719063,3
+Nathancai,24719063,4
+Jennifer.C1117,24719063,4
+67509576,24719063,1
+bemature,24719063,3
+120312874,24719063,5
+61020161,24719063,3
+60847691,24719063,3
+51840170,24719063,5
+1532624,24719063,4
+72677574,24719063,3
+57395287,24719063,4
+yanala,24719063,4
+44653441,24719063,4
+45401652,24719063,4
+50616617,24719063,4
+somnus0319,24719063,4
+46912414,24719063,5
+KissYuWen,24719063,2
+a-kico,24719063,3
+yuedawei,24719063,4
+dianekeke,24719063,5
+hi-8q,24719063,5
+88273371,24719063,4
+landy0514,24719063,3
+52743216,24719063,5
+52356046,24719063,3
+zydaydream,24719063,5
+120978925,24719063,4
+133474803,24719063,4
+33293861,24719063,4
+liuhan1213,24719063,4
+73662424,24719063,5
+26638056,24719063,4
+34342480,24719063,3
+79121878,24719063,4
+wtjessica,24719063,5
+76986820,24719063,4
+60055945,24719063,4
+87907452,24719063,4
+meathill,24719063,4
+meathill,24719063,4
+78540381,24719063,3
+40093986,24719063,3
+85143816,24719063,4
+orchild0517,24719063,4
+62842401,24719063,3
+51574773,24719063,5
+giantchen,24719063,3
+fivemen,24719063,3
+sequel,24719063,4
+shulan,24719063,4
+Lke_Feng,24719063,5
+38811874,24719063,3
+calamusrain,24719063,4
+56872635,24719063,4
+55549573,24719063,4
+89808311,24719063,4
+62576020,24719063,5
+jjwhu,24719063,4
+MisSara,24719063,4
+76035773,24719063,3
+fli93,24719063,4
+132194245,24719063,4
+22447567,24719063,4
+101992598,24719063,3
+62321975,24719063,4
+weloverex,24719063,4
+63395166,24719063,4
+67464328,24719063,5
+65190092,24719063,4
+dellama,24719063,4
+74507734,24719063,3
+lakdjf,24719063,5
+1530964,24719063,2
+lzt0202,24719063,5
+liminality,24719063,3
+45593764,24719063,5
+52344036,24719063,4
+2351247,24719063,5
+3279908,24719063,5
+marta_sunying,24719063,4
+ayi118,24719063,4
+bvnonesuch,24719063,5
+patio,24719063,5
+heather17,24719063,3
+Sepsea,24719063,4
+67952663,24719063,4
+SPIRITUA,24719063,3
+lingrui1995,24719063,4
+47514908,24719063,3
+daiyuxuan,24719063,3
+sukijuri,24719063,1
+8240576,24719063,4
+creamo,24719063,3
+Po_lam,24719063,5
+3348645,24719063,5
+38087875,24719063,5
+53746304,24719063,5
+mabel4100,24719063,2
+jiaoxiaojiao,24719063,5
+bentmoon,24719063,4
+53820803,24719063,-1
+4571269,24719063,-1
+51863521,24719063,4
+121841318,24719063,3
+83914498,24719063,4
+ZHeng2H,24719063,3
+118189518,24719063,4
+5903225,24719063,4
+mohen-douban,24719063,4
+4149957,24719063,4
+49319979,24719063,5
+122145772,24719063,1
+junhengliu,24719063,4
+narahana,24719063,3
+52728964,24719063,3
+53308031,24719063,4
+63641303,24719063,3
+83130364,24719063,3
+spf,24719063,4
+51400985,24719063,5
+45453533,24719063,4
+SH51244,24719063,5
+48586700,24719063,5
+2624503,24719063,3
+72358337,24719063,5
+aprilpear,24719063,4
+76653168,24719063,4
+3179740,24719063,4
+jueli,24719063,4
+1162708,24719063,3
+46824404,24719063,4
+69161245,24719063,5
+38886796,24719063,4
+husen,24719063,3
+Zzhangmxm,24719063,3
+1443838,24719063,3
+60630554,24719063,4
+suzheer,24719063,4
+89982109,24719063,4
+88574021,24719063,3
+123331677,24719063,4
+51251548,24719063,5
+55410872,24719063,3
+34866563,24719063,4
+4862060,24719063,4
+skyjadebear,24719063,4
+96142455,24719063,2
+37551097,24719063,4
+71656261,24719063,5
+72355462,24719063,4
+chongfei,24719063,5
+mycj,24719063,5
+sunjinrui,24719063,3
+uu2,24719063,4
+yifei1110,24719063,4
+yummy0526,24719063,3
+79348899,24719063,3
+49670470,24719063,5
+14008920,24719063,4
+114124277,24719063,3
+127334219,24719063,4
+76590785,24719063,5
+36580993,24719063,4
+4131568,24719063,4
+47522420,24719063,4
+lyx906,24719063,3
+53500354,24719063,3
+61485916,24719063,5
+61335632,24719063,5
+131726078,24719063,3
+49991288,24719063,-1
+josiekiu,24719063,5
+4124736,24719063,3
+47081915,24719063,5
+66721136,24719063,3
+42794944,24719063,3
+75901033,24719063,5
+2115709,24719063,3
+126843438,24719063,4
+126843438,24719063,4
+57157420,24719063,4
+7286220,24719063,4
+84396587,24719063,4
+longliving,24719063,4
+60168902,24719063,4
+96400940,24719063,3
+57394446,24719063,4
+3598072,24719063,4
+61270686,24719063,4
+51616442,24719063,4
+131338219,24719063,4
+61540867,24719063,4
+52656396,24719063,3
+41765725,24719063,4
+JUNREYOO,24719063,3
+sdwen,24719063,5
+maxiaoyin,24719063,4
+wangliuchi,24719063,4
+57528820,24719063,4
+80850838,24719063,4
+1332702,24719063,3
+53122155,24719063,4
+67605510,24719063,4
+54395094,24719063,3
+60925123,24719063,5
+79450664,24719063,5
+zhouweilin,24719063,4
+127149653,24719063,5
+41984834,24719063,2
+78150719,24719063,2
+66326687,24719063,4
+28677254,24719063,4
+dunkkin,24719063,4
+16234584,24719063,4
+70820659,24719063,3
+55801306,24719063,5
+132879159,24719063,4
+4147553,24719063,5
+60521648,24719063,4
+mintring,24719063,3
+64459545,24719063,4
+76270911,24719063,5
+71317646,24719063,4
+78977201,24719063,4
+ruysoho,24719063,4
+43618482,24719063,4
+49885829,24719063,3
+59749392,24719063,4
+56416143,24719063,3
+34410472,24719063,5
+65808040,24719063,5
+52117173,24719063,4
+cktckt,24719063,3
+zisic,24719063,4
+34882255,24719063,5
+a326715,24719063,5
+57281919,24719063,4
+57401954,24719063,3
+snailjia,24719063,4
+jlam174170,24719063,3
+yaoguai120,24719063,4
+Roxane,24719063,-1
+51188157,24719063,4
+youzoumu,24719063,5
+zhangyutao519,24719063,4
+50133185,24719063,5
+Uni_zz,24719063,4
+61233140,24719063,5
+80282251,24719063,4
+imay5,24719063,5
+IAN-M,24719063,3
+62020982,24719063,5
+playinglife,24719063,2
+anitasayz,24719063,3
+geminifreak,24719063,4
+52520125,24719063,4
+jianjia34,24719063,5
+63119659,24719063,3
+29345821,24719063,5
+29345821,24719063,5
+jjzzjoyce,24719063,4
+44228798,24719063,5
+2805171,24719063,5
+bigfish0625,24719063,5
+55925577,24719063,4
+3010194,24719063,5
+82459449,24719063,4
+lovemj4ever,24719063,5
+120695517,24719063,3
+mycforever,24719063,-1
+gorille,24719063,4
+42997943,24719063,4
+1218211,24719063,5
+102839412,24719063,4
+58863205,24719063,2
+krenee,24719063,4
+83502519,24719063,4
+AIhuaxia,24719063,4
+bluetiger,24719063,3
+73903967,24719063,3
+85482709,24719063,3
+2434766,24719063,3
+2980085,24719063,3
+3517435,24719063,4
+50159821,24719063,4
+J19,24719063,3
+52834601,24719063,4
+64507278,24719063,4
+fdmiaomiao,24719063,3
+45265566,24719063,4
+59013874,24719063,3
+45626685,24719063,4
+44028431,24719063,4
+29564013,24719063,4
+127524766,24719063,4
+44240227,24719063,4
+68499188,24719063,5
+62735268,24719063,2
+voodoo_shen,24719063,4
+57996460,24719063,-1
+38834525,24719063,2
+89944772,24719063,4
+42604000,24719063,4
+44532870,24719063,4
+107704699,24719063,5
+54554461,24719063,5
+6303192,24719063,4
+47047627,24719063,5
+96953789,24719063,5
+meiyouyoumeiyou,24719063,3
+51998455,24719063,5
+op_julie,24719063,2
+52079252,24719063,4
+67316449,24719063,4
+50201885,24719063,4
+62559082,24719063,3
+49927894,24719063,5
+34668649,24719063,3
+Libys,24719063,4
+102268509,24719063,4
+68850200,24719063,3
+47748422,24719063,5
+togetherhere,24719063,4
+86962503,24719063,3
+Leesuner,24719063,5
+98379378,24719063,4
+127847268,24719063,4
+7085324,24719063,4
+2880051,24719063,3
+minus16,24719063,4
+56721088,24719063,4
+VonXL,24719063,3
+64236478,24719063,3
+56685733,24719063,5
+65738414,24719063,3
+zhangziyi,24719063,3
+79566994,24719063,4
+4324772,24719063,4
+godlovebearxi,24719063,4
+godlovebearxi,24719063,4
+82145368,24719063,4
+58518599,24719063,4
+62501092,24719063,4
+67522798,24719063,5
+69127375,24719063,5
+anynini,24719063,4
+82575834,24719063,5
+57436067,24719063,4
+jsc528,24719063,3
+93404395,24719063,4
+82629572,24719063,4
+57314870,24719063,3
+56936714,24719063,4
+79157709,24719063,3
+2222740,24719063,2
+49082695,24719063,3
+107570827,24719063,3
+50923295,24719063,3
+49748838,24719063,3
+49748838,24719063,3
+73466506,24719063,4
+2816387,24719063,4
+54283413,24719063,5
+73144387,24719063,4
+88093223,24719063,3
+jamesma,24719063,5
+liveralkali,24719063,4
+129751512,24719063,3
+4430908,24719063,4
+dahuihuizi,24719063,4
+stephi,24719063,4
+53254724,24719063,-1
+littlerow,24719063,3
+kidpeterpan,24719063,4
+haoqing1104,24719063,4
+10027720,24719063,3
+elliry,24719063,4
+exiaexia,24719063,3
+7952688,24719063,3
+7952688,24719063,3
+64222843,24719063,4
+solitudefreedom,24719063,5
+Frenda,24719063,4
+121971887,24719063,4
+98914244,24719063,4
+59262140,24719063,5
+dr_floyd,24719063,2
+63161507,24719063,4
+67477422,24719063,4
+49053009,24719063,4
+huangyuqi323,24719063,3
+58335145,24719063,4
+133968200,24719063,5
+61660180,24719063,4
+w74,24719063,4
+1452141,24719063,2
+58202838,24719063,5
+35660240,24719063,3
+wanghaihan1995,24719063,4
+phoebefly,24719063,4
+63556085,24719063,4
+46761795,24719063,5
+53731567,24719063,4
+124703569,24719063,4
+57728664,24719063,5
+1279239,24719063,4
+69511883,24719063,5
+jiutianforever,24719063,4
+buruqinduan,24719063,4
+angelababy_,24719063,4
+65754002,24719063,3
+49345225,24719063,3
+131616351,24719063,3
+amandaccforever,24719063,5
+shosony,24719063,2
+103372722,24719063,4
+jiangmingji,24719063,4
+46590871,24719063,4
+130294044,24719063,3
+traylor,24719063,5
+104365503,24719063,4
+59604204,24719063,5
+Xinmai,24719063,5
+108253828,24719063,5
+64898125,24719063,4
+46411309,24719063,4
+hanuit,24719063,3
+102067886,24719063,4
+36185739,24719063,4
+67677954,24719063,3
+59104810,24719063,2
+53560863,24719063,4
+checcazou,24719063,3
+1350608,24719063,5
+fiona_rocku,24719063,3
+barcaren,24719063,5
+paandpa,24719063,5
+75564358,24719063,4
+84390206,24719063,4
+6015634,24719063,3
+Terri0710,24719063,4
+58077411,24719063,4
+dolphivy,24719063,4
+58545738,24719063,4
+51407309,24719063,4
+sarashieh,24719063,4
+61934550,24719063,4
+51433570,24719063,5
+49547973,24719063,3
+sunking_fish,24719063,3
+61606160,24719063,5
+91397100,24719063,4
+63672355,24719063,4
+liyunhui,24719063,3
+76775141,24719063,4
+51045990,24719063,5
+pengpeng0308,24719063,2
+58051571,24719063,4
+132332103,24719063,5
+2809964,24719063,3
+53073700,24719063,3
+69363848,24719063,5
+1248339,24719063,4
+beiliya,24719063,4
+essemoon,24719063,4
+shog,24719063,4
+129812391,24719063,4
+51139979,24719063,4
+55838105,24719063,5
+59979647,24719063,4
+126896295,24719063,2
+fishlu,24719063,4
+sundea,24719063,4
+119731331,24719063,2
+66675260,24719063,3
+4447712,24719063,3
+52273001,24719063,3
+68640061,24719063,4
+69248971,24719063,4
+44622552,24719063,5
+129777955,24719063,5
+34174318,24719063,3
+jessie1230,24719063,4
+linen_,24719063,3
+61806244,24719063,5
+65295255,24719063,4
+moyzhang,24719063,5
+57972100,24719063,5
+acseleon,24719063,4
+msvalentine,24719063,4
+45987005,24719063,4
+59604055,24719063,3
+1209665,24719063,4
+zzcchh,24719063,4
+37168028,24719063,4
+InTheShadowOfLo,24719063,4
+huhan,24719063,4
+132529083,24719063,5
+59745258,24719063,5
+34274857,24719063,4
+florah,24719063,5
+37436539,24719063,4
+3736224,24719063,4
+2168933,24719063,3
+42391530,24719063,3
+116539336,24719063,4
+hobbitkirsten,24719063,5
+yeahxcx,24719063,4
+26523085,24719063,4
+48168032,24719063,4
+104442935,24719063,3
+53771308,24719063,4
+3838565,24719063,3
+morvin,24719063,4
+foleyfan,24719063,5
+129215683,24719063,5
+83683837,24719063,3
+48877140,24719063,5
+medusa707,24719063,-1
+Ibasyo,24719063,4
+aurawang95,24719063,3
+3682917,24719063,3
+ouyangjie123,24719063,5
+53927357,24719063,5
+S.G,24719063,4
+46303975,24719063,3
+Jash1118,24719063,4
+103553630,24719063,4
+59006405,24719063,4
+Ginatea,24719063,3
+92427949,24719063,5
+68983048,24719063,4
+101504179,24719063,4
+55024644,24719063,5
+44206386,24719063,4
+83645404,24719063,4
+78264372,24719063,4
+23154088,24719063,4
+tuliproad,24719063,4
+47860255,24719063,5
+ALE277X,24719063,4
+127451167,24719063,4
+superabigail,24719063,4
+84147839,24719063,2
+cynthia3922,24719063,4
+trainezyy,24719063,4
+63050000,24719063,4
+77809977,24719063,5
+128718320,24719063,3
+2572927,24719063,4
+63638610,24719063,4
+69225914,24719063,4
+79079794,24719063,3
+snowsays,24719063,5
+72899576,24719063,4
+M-Y-LALALA,24719063,5
+49571617,24719063,4
+agreedoes,24719063,4
+132038522,24719063,4
+13382174,24719063,5
+121807969,24719063,5
+49838718,24719063,5
+seeve,24719063,5
+Night_shadow,24719063,4
+34908196,24719063,4
+117808839,24719063,4
+126014934,24719063,4
+53574856,24719063,5
+44735067,24719063,4
+47357292,24719063,5
+vivizhao0213,24719063,3
+2178406,24719063,4
+46386865,24719063,3
+88608192,24719063,3
+44017740,24719063,5
+48273445,24719063,3
+zhkaoe,24719063,4
+130339168,24719063,4
+53432720,24719063,3
+51142925,24719063,3
+lemipaisible,24719063,3
+56857225,24719063,-1
+89919283,24719063,5
+48338434,24719063,2
+50169026,24719063,4
+126842438,24719063,3
+54802370,24719063,4
+133956930,24719063,4
+64176350,24719063,3
+airkiko,24719063,4
+130601471,24719063,4
+84466308,24719063,5
+130707216,24719063,3
+flashingcrystal,24719063,4
+122111720,24719063,1
+76935168,24719063,4
+wumengyu,24719063,5
+vivimao128,24719063,4
+littlejy,24719063,4
+38770333,24719063,4
+45848130,24719063,5
+125961419,24719063,5
+81539389,24719063,3
+41930212,24719063,2
+3337739,24719063,4
+126572599,24719063,5
+chloe0710,24719063,3
+113148344,24719063,5
+2126779,24719063,3
+Hanry7,24719063,5
+58581987,24719063,5
+4202712,24719063,4
+xsbbbb,24719063,4
+Min-sunflower,24719063,4
+takewater,24719063,4
+azeizei,24719063,4
+77573337,24719063,4
+nyavivian,24719063,4
+82366443,24719063,5
+52174423,24719063,5
+65588257,24719063,4
+54613586,24719063,3
+49705302,24719063,5
+1456080,24719063,4
+2049704,24719063,4
+arys88,24719063,5
+46881086,24719063,5
+83948967,24719063,4
+xiaoan7EF,24719063,-1
+70522766,24719063,2
+68771576,24719063,4
+74094889,24719063,3
+zoey1014,24719063,5
+Iin1lin2,24719063,4
+68737314,24719063,3
+amaokk,24719063,4
+vivistar,24719063,4
+thankyou2014,24719063,4
+C.again,24719063,4
+68197528,24719063,5
+102902179,24719063,5
+ke-ke,24719063,5
+133900665,24719063,4
+moon6fly,24719063,4
+92692605,24719063,3
+61160709,24719063,3
+athensmay,24719063,-1
+130846662,24719063,4
+deer1156164672,24719063,4
+66710250,24719063,4
+62069959,24719063,3
+78534395,24719063,5
+emmychan,24719063,3
+torentseng,24719063,5
+81152446,24719063,3
+52598210,24719063,3
+52907345,24719063,4
+wilhelmina,24719063,4
+3512045,24719063,4
+3512045,24719063,4
+2492062,24719063,4
+hism,24719063,4
+48906452,24719063,4
+shanelean,24719063,4
+raehide,24719063,4
+50179673,24719063,4
+2819232,24719063,4
+129743539,24719063,5
+45187358,24719063,4
+blueprints,24719063,5
+129498168,24719063,5
+xuanxide,24719063,5
+83497810,24719063,5
+113551734,24719063,4
+51353897,24719063,5
+70726088,24719063,5
+49406240,24719063,4
+41912398,24719063,3
+4523741,24719063,4
+Harbin2012,24719063,1
+1800425,24719063,4
+1397180,24719063,4
+longlystone,24719063,5
+63156283,24719063,3
+48097979,24719063,2
+3609952,24719063,4
+44034294,24719063,5
+50399412,24719063,4
+78098162,24719063,4
+limbomiss,24719063,5
+1189608,24719063,4
+38222446,24719063,4
+78462539,24719063,3
+63217109,24719063,4
+44005693,24719063,4
+1013543,24719063,3
+qingchuanchuan,24719063,4
+3740351,24719063,4
+cartoon,24719063,4
+64769270,24719063,3
+40681472,24719063,5
+1133756,24719063,4
+6186536,24719063,4
+75026254,24719063,4
+nymeria52,24719063,5
+52801321,24719063,3
+natsuki_10,24719063,4
+130115967,24719063,4
+64008981,24719063,4
+elenadivita,24719063,4
+120909510,24719063,4
+Lilocc,24719063,3
+dengnizhaodaowo,24719063,3
+43671403,24719063,4
+debut41,24719063,4
+39278293,24719063,3
+43908956,24719063,4
+rachelleung,24719063,4
+35403176,24719063,3
+57652752,24719063,4
+44381485,24719063,5
+91578532,24719063,3
+72485071,24719063,5
+4348122,24719063,4
+48483690,24719063,3
+14093123,24719063,4
+62837757,24719063,4
+79631342,24719063,4
+luckia1991,24719063,3
+jashia,24719063,5
+103290825,24719063,4
+SoHeee,24719063,4
+58571573,24719063,4
+64338174,24719063,5
+70586420,24719063,4
+wangzhy,24719063,3
+44394014,24719063,4
+84531200,24719063,4
+ninomae,24719063,3
+niuxiaohei,24719063,2
+shan0102,24719063,4
+53717740,24719063,-1
+56750373,24719063,-1
+120375835,24719063,5
+129269489,24719063,4
+47786775,24719063,4
+133356595,24719063,-1
+kellyleaf123,24719063,5
+72931673,24719063,4
+2190482,24719063,3
+Uatchet,24719063,4
+74463127,24719063,5
+36834058,24719063,-1
+littlemiemie,24719063,4
+Dpudding,24719063,3
+3278666,24719063,-1
+75545538,24719063,4
+mmxyatou,24719063,3
+127083032,24719063,5
+50219833,24719063,4
+4629743,24719063,4
+misawang,24719063,2
+pansini,24719063,5
+iris007,24719063,4
+39029113,24719063,5
+78628722,24719063,5
+57638288,24719063,4
+87988157,24719063,3
+misscoke,24719063,4
+23665796,24719063,4
+55597209,24719063,5
+hzfsdjf,24719063,4
+132463662,24719063,4
+lidao1127,24719063,-1
+rainwyy1988,24719063,4
+54013219,24719063,2
+moin1206,24719063,5
+56752723,24719063,4
+Yiemao,24719063,5
+61355372,24719063,4
+131198769,24719063,3
+127380400,24719063,4
+54899239,24719063,3
+57195945,24719063,3
+duoduotravel,24719063,4
+38001119,24719063,5
+44475872,24719063,4
+fengmangbilu,24719063,5
+51015476,24719063,5
+yitingyanyu,24719063,4
+44175959,24719063,5
+layne33,24719063,4
+mkid1412,24719063,5
+125208149,24719063,4
+58956706,24719063,4
+44577463,24719063,-1
+32757366,24719063,4
+44254923,24719063,4
+75993360,24719063,4
+cyan-syy,24719063,-1
+75426424,24719063,4
+58304190,24719063,3
+64747830,24719063,4
+zl19960120,24719063,5
+ospopi,24719063,4
+evooone,24719063,4
+83942913,24719063,4
+Fionsay,24719063,4
+44597595,24719063,4
+aprilgalaxy,24719063,3
+32663616,24719063,4
+41311018,24719063,3
+2610986,24719063,4
+128992913,24719063,2
+Dora_bamboo,24719063,4
+watson_1990,24719063,3
+39890237,24719063,5
+87865296,24719063,3
+63141910,24719063,3
+amytsai,24719063,4
+127567280,24719063,4
+82390309,24719063,4
+kops7s8,24719063,3
+ileenan,24719063,5
+kisass,24719063,3
+67348238,24719063,4
+1464431,24719063,4
+55653104,24719063,5
+49460136,24719063,3
+tracyshyz,24719063,5
+43999412,24719063,4
+62671989,24719063,5
+zhangyangdouban,24719063,3
+97414915,24719063,4
+Sarah_1001,24719063,3
+epplenoki,24719063,3
+loocat,24719063,4
+wt0921,24719063,4
+sunsky625,24719063,3
+38045752,24719063,-1
+66776700,24719063,5
+iyezhi,24719063,4
+cocoflower,24719063,5
+61263474,24719063,4
+76209433,24719063,4
+3325802,24719063,5
+3321575,24719063,4
+62963853,24719063,5
+46957067,24719063,3
+89169702,24719063,5
+82455844,24719063,4
+zuoguo,24719063,5
+cmisland,24719063,4
+4628706,24719063,5
+18828796,24719063,4
+shouding,24719063,4
+64056143,24719063,2
+133511683,24719063,4
+69926566,24719063,3
+artech3608,24719063,2
+96513948,24719063,4
+46177546,24719063,2
+wanzi1024,24719063,4
+4404693,24719063,3
+46441162,24719063,3
+fischer1103,24719063,4
+weexf,24719063,4
+16693810,24719063,4
+aotui,24719063,3
+dorothy.C,24719063,3
+ylqin,24719063,4
+yyyyyyyue,24719063,3
+130598996,24719063,5
+78174924,24719063,4
+26612648,24719063,4
+leocas,24719063,3
+phihead,24719063,4
+51199402,24719063,2
+answer0545716,24719063,3
+40193618,24719063,5
+rollingpika,24719063,4
+44049804,24719063,3
+57405327,24719063,3
+cissy_cissy,24719063,4
+4019279,24719063,5
+oasisercher,24719063,4
+xiaomomo,24719063,4
+82237890,24719063,5
+latona-pan,24719063,5
+71350146,24719063,4
+51833613,24719063,4
+68392296,24719063,5
+44182899,24719063,4
+2186544,24719063,5
+72630623,24719063,3
+43508209,24719063,2
+44666271,24719063,4
+91381377,24719063,5
+qingmendou,24719063,5
+3263678,24719063,4
+6459660,24719063,4
+3573746,24719063,4
+sunchaoming,24719063,1
+rioshuike,24719063,4
+47837264,24719063,4
+64861011,24719063,4
+51680395,24719063,4
+sanggolden,24719063,4
+Star4u,24719063,4
+4884094,24719063,-1
+120518242,24719063,4
+4744464,24719063,3
+8040223,24719063,4
+45792472,24719063,5
+shijinqi,24719063,4
+3783132,24719063,5
+joanna_L,24719063,5
+wndtlkr,24719063,4
+airan712,24719063,3
+59012176,24719063,4
+2404348,24719063,3
+zhengxiaomo,24719063,5
+virus11,24719063,4
+76566444,24719063,3
+cruiseyoung,24719063,5
+DEMO9266,24719063,4
+ivytears,24719063,4
+Aulicaxoxo,24719063,3
+130642973,24719063,5
+85727973,24719063,4
+Craigso,24719063,3
+dashebei,24719063,4
+44820765,24719063,4
+lianboom,24719063,5
+89382029,24719063,2
+131473143,24719063,4
+TeTe66,24719063,4
+109056040,24719063,5
+zhirunze,24719063,4
+46697808,24719063,4
+geminige,24719063,4
+36122115,24719063,4
+65044584,24719063,4
+hualian,24719063,4
+41583177,24719063,4
+51057847,24719063,4
+57172053,24719063,5
+48373112,24719063,5
+59803743,24719063,5
+simuvchen,24719063,4
+Spiritsouland,24719063,4
+58773339,24719063,4
+ruoxudeng,24719063,3
+jygreen,24719063,4
+58480998,24719063,3
+wuxuan,24719063,-1
+winterppt,24719063,4
+78693841,24719063,4
+40067937,24719063,5
+49575577,24719063,5
+mirrorsx,24719063,3
+3779967,24719063,4
+maxchris,24719063,4
+mixi456,24719063,4
+muxin621,24719063,4
+wwwwwwwwwan,24719063,3
+mml3774,24719063,3
+90814609,24719063,3
+3187652,24719063,4
+bilibili01,24719063,4
+121568939,24719063,4
+grimy,24719063,4
+125182358,24719063,4
+momo0625,24719063,3
+66286560,24719063,5
+53307313,24719063,3
+82027868,24719063,3
+76953901,24719063,4
+69940340,24719063,2
+cuoyiban,24719063,4
+50235296,24719063,4
+58090829,24719063,3
+71429906,24719063,5
+2291718,24719063,1
+44716146,24719063,5
+62632229,24719063,5
+13026676,24719063,3
+40930168,24719063,4
+67182363,24719063,4
+ibravo,24719063,4
+75007342,24719063,4
+54272292,24719063,4
+treize13,24719063,3
+45231027,24719063,3
+3064435,24719063,3
+imagefly,24719063,4
+63400230,24719063,5
+46365473,24719063,3
+3712644,24719063,3
+59805999,24719063,4
+50463573,24719063,4
+80723393,24719063,4
+zhian0802,24719063,4
+76857499,24719063,5
+c1010123100,24719063,4
+RingoSpade,24719063,3
+3311212,24719063,3
+summertt422,24719063,4
+127632434,24719063,4
+randichou,24719063,4
+83817130,24719063,4
+ukimuknow,24719063,4
+126035091,24719063,4
+49134258,24719063,4
+abbyabbiesendoh,24719063,4
+leafwaiting,24719063,3
+kimxixi,24719063,3
+48459304,24719063,5
+tianjinwangai,24719063,3
+59840533,24719063,5
+52540412,24719063,4
+82096475,24719063,5
+Blacksevenshow,24719063,4
+wzshere,24719063,2
+54613102,24719063,4
+88099677,24719063,5
+53214078,24719063,3
+vipii7952,24719063,4
+45848079,24719063,4
+50031093,24719063,3
+74512782,24719063,4
+54998421,24719063,4
+49311429,24719063,4
+62304049,24719063,4
+76895524,24719063,3
+2088587,24719063,3
+50560881,24719063,4
+100420531,24719063,4
+59021120,24719063,4
+51328750,24719063,3
+musiclevel,24719063,4
+oursweethome,24719063,4
+nonob,24719063,2
+icejuicy,24719063,4
+120120305,24719063,5
+38567114,24719063,3
+MC-77-21,24719063,4
+4577190,24719063,3
+65896805,24719063,4
+47155761,24719063,4
+42340819,24719063,5
+mowo,24719063,4
+121225346,24719063,4
+lengleng,24719063,2
+remixchao,24719063,4
+autumnfly,24719063,4
+fusk,24719063,4
+133929028,24719063,5
+4129515,24719063,4
+WeezyShady,24719063,4
+44725365,24719063,4
+44412158,24719063,3
+visualhyde,24719063,4
+y_XO,24719063,4
+61930978,24719063,1
+49825242,24719063,3
+57365117,24719063,3
+your_j,24719063,4
+3230145,24719063,4
+4253230,24719063,5
+53143008,24719063,5
+43172439,24719063,4
+72632418,24719063,5
+miaoza,24719063,4
+66267433,24719063,4
+4162046,24719063,3
+61991244,24719063,3
+sentexiaohu,24719063,3
+yaokoofan,24719063,5
+43809399,24719063,4
+longxiaosi,24719063,3
+53068716,24719063,4
+42711041,24719063,4
+Levora,24719063,4
+119237142,24719063,5
+51346390,24719063,4
+MELEM,24719063,4
+72253945,24719063,4
+49825547,24719063,5
+1758414,24719063,4
+JiejieHuhu,24719063,3
+kyj113,24719063,4
+zhoujinqiang,24719063,3
+1655091,24719063,4
+31276053,24719063,3
+36617215,24719063,5
+36740289,24719063,5
+fleur-ck,24719063,5
+83739647,24719063,4
+dee,24719063,3
+81923941,24719063,4
+49734653,24719063,5
+miaobuyi,24719063,5
+108247778,24719063,4
+yimutan,24719063,3
+80408251,24719063,3
+23853027,24719063,4
+jhbaidiao,24719063,5
+50817948,24719063,4
+utopialand,24719063,5
+36029564,24719063,-1
+3849151,24719063,4
+45595952,24719063,4
+62672201,24719063,4
+winnie.35,24719063,3
+53800868,24719063,3
+82988329,24719063,4
+2759778,24719063,3
+93486979,24719063,5
+suzie09-20,24719063,5
+risingfred,24719063,4
+pengpengyue,24719063,4
+34204093,24719063,4
+4422335,24719063,3
+sid005,24719063,2
+43953033,24719063,5
+37051935,24719063,3
+fuling,24719063,4
+alunnihao,24719063,5
+2742057,24719063,4
+LasciatemiMorir,24719063,3
+70289521,24719063,4
+2870381,24719063,4
+zyzloveair,24719063,4
+92494614,24719063,2
+54164359,24719063,5
+48525140,24719063,4
+71770049,24719063,5
+summerholiday,24719063,5
+50833058,24719063,5
+unruturn,24719063,3
+pituo,24719063,5
+44394931,24719063,3
+80040060,24719063,4
+3334629,24719063,5
+35233003,24719063,4
+lunalovelife,24719063,3
+gaohaimeng,24719063,5
+benbenwinter,24719063,4
+58135379,24719063,4
+50271595,24719063,4
+57214676,24719063,3
+80900933,24719063,5
+babyblue715,24719063,3
+47515047,24719063,5
+58374634,24719063,5
+3410512,24719063,4
+46196075,24719063,3
+61315865,24719063,4
+3553494,24719063,-1
+46364333,24719063,3
+43210840,24719063,4
+dazui076819,24719063,4
+65477691,24719063,5
+119456408,24719063,3
+lxmoe0617,24719063,4
+kaka1128,24719063,3
+Lichuang,24719063,5
+47381919,24719063,5
+79596092,24719063,4
+beautyxyw,24719063,5
+87962296,24719063,5
+64978409,24719063,5
+Bao1a2s,24719063,4
+55828960,24719063,2
+65309880,24719063,2
+cctv-0,24719063,4
+41855333,24719063,5
+52611994,24719063,4
+ininsun,24719063,5
+li_1314,24719063,3
+54171468,24719063,4
+2121850,24719063,4
+65562790,24719063,4
+lumins,24719063,3
+cynicfyzj,24719063,3
+2150724,24719063,4
+49003393,24719063,5
+62743500,24719063,4
+43757152,24719063,4
+79334007,24719063,3
+57989017,24719063,3
+102379281,24719063,4
+4471091,24719063,3
+133894111,24719063,5
+79519421,24719063,3
+lovely002,24719063,3
+2915986,24719063,4
+2515446,24719063,5
+133923567,24719063,5
+yangshizhe,24719063,5
+50805750,24719063,4
+tiemo,24719063,3
+zhuxiaoqi,24719063,4
+63032751,24719063,5
+35374393,24719063,4
+diecuo,24719063,3
+51965596,24719063,3
+darkaka,24719063,4
+73057111,24719063,3
+shaku_hanako,24719063,4
+48258605,24719063,4
+69569015,24719063,5
+Jellysui,24719063,5
+46714118,24719063,4
+joyque,24719063,4
+129214543,24719063,5
+airaining,24719063,3
+49854640,24719063,3
+131658151,24719063,4
+128661562,24719063,3
+darkdio,24719063,5
+52368125,24719063,3
+dearmissluo,24719063,4
+53862196,24719063,3
+ShawnChou,24719063,4
+violastabene,24719063,4
+123028634,24719063,4
+92361239,24719063,4
+4336395,24719063,5
+91114065,24719063,4
+h_deanz,24719063,4
+128509659,24719063,4
+131333953,24719063,3
+centerfold,24719063,4
+1767731,24719063,3
+125831014,24719063,4
+63765493,24719063,2
+131504998,24719063,5
+volcano-z,24719063,4
+parkson,24719063,4
+49148422,24719063,4
+jackchen,24719063,5
+4427457,24719063,3
+26830263,24719063,4
+2771396,24719063,3
+57452501,24719063,3
+30935515,24719063,4
+76148379,24719063,-1
+wb_mike10,24719063,4
+71947752,24719063,4
+46724815,24719063,5
+69896942,24719063,5
+caoxiaoying,24719063,3
+46836947,24719063,5
+lephemera,24719063,3
+47706729,24719063,4
+60893089,24719063,3
+bessie28,24719063,5
+lanebuxia,24719063,4
+23957168,24719063,4
+52106543,24719063,5
+sixer1005,24719063,4
+NO-doubanjiang,24719063,4
+61150921,24719063,4
+35283831,24719063,4
+81540386,24719063,5
+53396330,24719063,4
+133136590,24719063,4
+wolf2046,24719063,4
+2039569,24719063,1
+65550886,24719063,3
+58605674,24719063,3
+118812578,24719063,5
+58209966,24719063,4
+3502778,24719063,3
+lankfire,24719063,3
+fangliller,24719063,4
+69328232,24719063,4
+4360410,24719063,5
+62641042,24719063,4
+alianhei,24719063,4
+59977768,24719063,3
+113050393,24719063,4
+46020433,24719063,2
+69768465,24719063,4
+HEYHo,24719063,3
+paes,24719063,2
+cutecool,24719063,3
+caosen,24719063,3
+67984945,24719063,3
+ngqmtm,24719063,5
+60946849,24719063,3
+17639214,24719063,3
+52782307,24719063,5
+xyh818,24719063,3
+iris130312,24719063,3
+36359450,24719063,4
+gps730,24719063,4
+icebully521,24719063,5
+3681326,24719063,4
+3083133,24719063,-1
+yolanda_kin,24719063,4
+26739863,24719063,3
+52807747,24719063,3
+127305885,24719063,5
+18169695,24719063,4
+63505621,24719063,5
+67186654,24719063,3
+2408142,24719063,4
+52974104,24719063,5
+xiaoyaozizai,24719063,4
+125726477,24719063,4
+50275536,24719063,3
+ginger-xoxo,24719063,5
+2275556,24719063,4
+akin11,24719063,4
+55446081,24719063,4
+59880831,24719063,3
+74635933,24719063,5
+127180672,24719063,3
+wangrui19890810,24719063,5
+jcw214,24719063,5
+leeoln,24719063,4
+flatpeach,24719063,4
+3720749,24719063,3
+superfeel,24719063,4
+Memorial_Sue,24719063,5
+hujian9,24719063,3
+Givenchy7,24719063,5
+empressvivian,24719063,4
+120035398,24719063,3
+stellainovember,24719063,4
+4481826,24719063,3
+Reveriewardrob,24719063,3
+ClaudiaRhapsody,24719063,3
+61722322,24719063,4
+bjlinfeng,24719063,5
+cory1990,24719063,4
+55479724,24719063,4
+fountine1120,24719063,4
+scofieldx,24719063,5
+122061245,24719063,3
+44778788,24719063,3
+49115746,24719063,3
+50880780,24719063,3
+4547052,24719063,4
+83015150,24719063,4
+4563516,24719063,4
+124971974,24719063,3
+41445321,24719063,1
+4093754,24719063,4
+32045146,24719063,4
+62159923,24719063,-1
+46542897,24719063,4
+121441426,24719063,4
+egotist,24719063,3
+60352980,24719063,5
+yangjiangyou,24719063,4
+52535634,24719063,4
+xiaokabu,24719063,4
+wqqingtian,24719063,3
+1494376,24719063,3
+25634914,24719063,4
+44349376,24719063,5
+2324863,24719063,5
+65181695,24719063,4
+29965674,24719063,4
+129983204,24719063,4
+puccaandhippo,24719063,3
+3572669,24719063,3
+4586341,24719063,3
+3129085,24719063,4
+ImHuiY,24719063,4
+lucine_gao,24719063,4
+lcw1999x,24719063,4
+xiangrikui1988,24719063,4
+53092429,24719063,4
+49005223,24719063,3
+fandaniaowoaini,24719063,3
+79846892,24719063,3
+79474862,24719063,4
+49148779,24719063,4
+50606369,24719063,4
+cqzby,24719063,4
+62368815,24719063,5
+117347877,24719063,3
+2694159,24719063,-1
+92726708,24719063,4
+50585223,24719063,3
+130755105,24719063,4
+62720771,24719063,5
+cloverpipo,24719063,5
+132496835,24719063,4
+summerlander,24719063,3
+124697172,24719063,3
+58373563,24719063,5
+127466405,24719063,3
+dthree,24719063,4
+mshushu,24719063,4
+morningmiao0819,24719063,4
+Honeys101,24719063,4
+dreckding,24719063,3
+122228928,24719063,4
+3802231,24719063,4
+49241136,24719063,4
+suarron,24719063,5
+sunflowerqi,24719063,4
+evencare,24719063,5
+32941771,24719063,4
+72433183,24719063,3
+pisceszqq,24719063,4
+48116599,24719063,4
+64001823,24719063,4
+ekamiao,24719063,5
+43878478,24719063,4
+57646854,24719063,2
+3880012,24719063,4
+65691295,24719063,-1
+55390798,24719063,4
+adrian0807,24719063,4
+2451603,24719063,4
+4640701,24719063,5
+75288450,24719063,4
+tsunamijiang,24719063,4
+88070266,24719063,5
+lostoldboy,24719063,-1
+62786939,24719063,5
+tulip_87,24719063,3
+37959469,24719063,3
+3931828,24719063,4
+willow0402,24719063,4
+88260020,24719063,5
+4509975,24719063,3
+4493785,24719063,3
+jack13,24719063,4
+64864159,24719063,4
+49241776,24719063,-1
+2837649,24719063,4
+ironCC,24719063,3
+54813855,24719063,5
+3540443,24719063,4
+senlinxiaozhen,24719063,4
+66932091,24719063,4
+dibvy,24719063,3
+BikaQiu,24719063,4
+3096198,24719063,3
+Pavellippo,24719063,4
+justsmaki,24719063,4
+scortyuer,24719063,5
+65540792,24719063,4
+53333014,24719063,4
+74124721,24719063,4
+35448683,24719063,3
+Immortal-mo,24719063,4
+llllavinia,24719063,5
+80766328,24719063,4
+46276304,24719063,3
+55822752,24719063,4
+ardai,24719063,4
+ZhaHuanEr,24719063,5
+50362002,24719063,5
+61836437,24719063,5
+Ryan-Z,24719063,4
+vivimiaoer,24719063,5
+66100472,24719063,4
+53257634,24719063,5
+59383021,24719063,5
+126557589,24719063,1
+oppih,24719063,4
+46046838,24719063,5
+babyfairy,24719063,4
+xiaofeiwu,24719063,5
+25586254,24719063,4
+iamdengdeng,24719063,4
+sasky,24719063,4
+38375536,24719063,4
+pengpeng,24719063,3
+80250339,24719063,4
+sixties,24719063,4
+50553011,24719063,3
+shuai19930426,24719063,4
+58239121,24719063,4
+mirrorjing,24719063,3
+80834580,24719063,1
+Lou-yingying,24719063,4
+127184799,24719063,4
+121235168,24719063,5
+baisemianbuqun,24719063,5
+38147574,24719063,4
+windydai,24719063,4
+likechuck,24719063,4
+3084855,24719063,4
+127276817,24719063,3
+4385611,24719063,4
+81788332,24719063,4
+hugo_697,24719063,2
+shushiwang,24719063,4
+57251364,24719063,4
+amyro,24719063,4
+43664671,24719063,4
+130496328,24719063,3
+45242330,24719063,4
+32560246,24719063,5
+102960018,24719063,4
+xiaoniangao,24719063,4
+55488825,24719063,3
+58944780,24719063,4
+52567562,24719063,-1
+81815749,24719063,3
+52800930,24719063,4
+EveFan,24719063,4
+pertmm,24719063,4
+1511879,24719063,-1
+40483566,24719063,5
+athousand,24719063,4
+120109203,24719063,5
+72738301,24719063,5
+53829658,24719063,5
+lhberber,24719063,3
+103261286,24719063,3
+3580324,24719063,4
+73761191,24719063,4
+45446401,24719063,5
+jimmyjimmyjimmy,24719063,5
+Eriseddddd,24719063,4
+fenglai,24719063,3
+3705062,24719063,4
+119826470,24719063,4
+125608618,24719063,3
+3535357,24719063,4
+68298279,24719063,4
+107095756,24719063,4
+73410140,24719063,5
+4657541,24719063,4
+121680939,24719063,4
+57896401,24719063,4
+2911285,24719063,4
+46523085,24719063,4
+124369176,24719063,5
+56684398,24719063,4
+61287139,24719063,5
+54979738,24719063,4
+54168205,24719063,4
+58896741,24719063,4
+132959097,24719063,4
+47873718,24719063,5
+50769703,24719063,3
+57860593,24719063,5
+taoyelin,24719063,3
+laomo,24719063,4
+57688571,24719063,4
+3408985,24719063,3
+123164516,24719063,4
+64757557,24719063,5
+52657125,24719063,2
+57360043,24719063,3
+47580510,24719063,5
+41502689,24719063,3
+57650296,24719063,4
+fupp1119,24719063,4
+31895771,24719063,5
+62062403,24719063,4
+slpnju2010,24719063,4
+75327882,24719063,5
+AFroThinda,24719063,4
+69319715,24719063,4
+istas,24719063,4
+cactui,24719063,3
+49804217,24719063,3
+guochi,24719063,4
+4110466,24719063,2
+sujutotheme,24719063,5
+dynamicduo,24719063,3
+129708517,24719063,5
+lxljuicy,24719063,3
+rurubryant,24719063,4
+73498656,24719063,5
+49488790,24719063,1
+46684749,24719063,4
+97250156,24719063,4
+54417362,24719063,4
+44629022,24719063,4
+som3day,24719063,4
+61310124,24719063,4
+xxeeeeee,24719063,3
+56668791,24719063,5
+liu1231,24719063,3
+sigridjoem,24719063,2
+andyzhanghua,24719063,4
+4222235,24719063,4
+79879873,24719063,-1
+margot525,24719063,4
+59032148,24719063,3
+dadou417,24719063,4
+53385600,24719063,5
+pippo_tian,24719063,4
+jakartaxie,24719063,3
+49476132,24719063,4
+gediaobugao,24719063,3
+75381843,24719063,4
+zooeyyue,24719063,4
+51309478,24719063,5
+9485080,24719063,2
+kook23,24719063,4
+50747208,24719063,4
+76036615,24719063,3
+tasuka_l,24719063,4
+50015080,24719063,5
+yeslie,24719063,4
+alefmugen,24719063,5
+83114691,24719063,4
+59390060,24719063,4
+4872425,24719063,4
+silverhawk,24719063,5
+63689594,24719063,3
+yangsansannimei,24719063,3
+52940043,24719063,4
+Emily723,24719063,5
+90598022,24719063,4
+hctartan,24719063,3
+63300955,24719063,3
+pillboxie,24719063,3
+48117354,24719063,5
+45184296,24719063,3
+55550016,24719063,5
+51814585,24719063,5
+44272314,24719063,5
+73111916,24719063,5
+56333236,24719063,3
+strawman81,24719063,5
+41142807,24719063,4
+ArsenalCH,24719063,4
+guonianle,24719063,4
+2943683,24719063,4
+MissAustinYe,24719063,4
+72163139,24719063,3
+bunny636,24719063,3
+42049184,24719063,3
+71061278,24719063,5
+55606165,24719063,4
+47751677,24719063,3
+shuyina,24719063,4
+57275563,24719063,5
+wlyweilai,24719063,4
+cyblocker,24719063,5
+frostar,24719063,4
+50396291,24719063,5
+33250269,24719063,3
+mars7088,24719063,5
+mollyfang777,24719063,4
+44975625,24719063,4
+85602254,24719063,3
+69248321,24719063,5
+41570893,24719063,4
+50945725,24719063,3
+115029613,24719063,-1
+2641285,24719063,4
+sunxujjack,24719063,4
+cactus_fish,24719063,4
+37178294,24719063,4
+59664886,24719063,5
+65901691,24719063,3
+2472187,24719063,3
+57244499,24719063,4
+22077242,24719063,3
+taito_eric,24719063,4
+lovely-Sissi,24719063,4
+68687737,24719063,4
+nyx1224,24719063,5
+55964261,24719063,5
+64451728,24719063,4
+qinsining,24719063,4
+128681174,24719063,4
+pp521,24719063,3
+34148289,24719063,4
+2462353,24719063,3
+anaiis,24719063,4
+momoliu,24719063,-1
+naratan,24719063,3
+123249017,24719063,3
+85642211,24719063,5
+shizhe0314,24719063,4
+fionakeyan,24719063,4
+82792503,24719063,5
+62521772,24719063,4
+sufie,24719063,4
+sarayixin,24719063,3
+32144547,24719063,5
+66494720,24719063,4
+58149638,24719063,5
+57968508,24719063,4
+50289608,24719063,4
+kmoui,24719063,4
+47679255,24719063,4
+hymnjiao,24719063,5
+71841263,24719063,5
+98869202,24719063,4
+bubushu,24719063,4
+130020039,24719063,5
+82874810,24719063,4
+vanishyang,24719063,3
+43800629,24719063,4
+70453072,24719063,3
+105530942,24719063,2
+sparkylee,24719063,3
+44356586,24719063,3
+SweetyAndMe,24719063,5
+zenglk,24719063,4
+62346655,24719063,4
+52570913,24719063,4
+52871587,24719063,4
+131216464,24719063,5
+hexi1,24719063,3
+45811626,24719063,2
+75614710,24719063,3
+yintianxiaozhu,24719063,4
+120605598,24719063,3
+taken-tee,24719063,4
+127068197,24719063,4
+ABQK,24719063,4
+Ryanzeng,24719063,3
+57544703,24719063,5
+43607063,24719063,2
+80620968,24719063,3
+41127888,24719063,4
+127433083,24719063,2
+48463955,24719063,4
+91333358,24719063,4
+72092673,24719063,4
+16814663,24719063,3
+zoecd129,24719063,3
+sanaifei,24719063,4
+102328012,24719063,4
+48533448,24719063,4
+hiddddleston,24719063,5
+yangui,24719063,2
+79506720,24719063,4
+MerciMFY,24719063,5
+105306474,24719063,5
+42306867,24719063,4
+2569268,24719063,4
+nestark,24719063,4
+67992217,24719063,4
+weremanutd123,24719063,4
+64023928,24719063,4
+ddforever233,24719063,4
+shaine,24719063,5
+baliang,24719063,5
+55656322,24719063,4
+35066546,24719063,5
+102916653,24719063,-1
+4127720,24719063,3
+65532408,24719063,5
+xiangyuliu,24719063,5
+realcecilia,24719063,3
+121758259,24719063,3
+hanhuipsy,24719063,4
+sunrunzi,24719063,4
+68116821,24719063,5
+132893137,24719063,3
+56189591,24719063,-1
+xiaoqiao..,24719063,5
+120886080,24719063,3
+yokodesu,24719063,5
+levitating,24719063,4
+Daisy0210,24719063,1
+63054075,24719063,5
+78716929,24719063,4
+2445495,24719063,3
+perishgarden,24719063,4
+62415146,24719063,3
+54468195,24719063,2
+Summersun-Iris,24719063,4
+hihicd,24719063,3
+57825875,24719063,4
+84960573,24719063,4
+63422353,24719063,3
+64182296,24719063,4
+55308180,24719063,2
+scottychan,24719063,4
+mad2010,24719063,4
+2126042,24719063,4
+cherip,24719063,4
+lovinsun,24719063,2
+nannan,24719063,3
+yc_0619,24719063,3
+73507935,24719063,5
+130015175,24719063,4
+effiem,24719063,-1
+49115013,24719063,4
+55811632,24719063,4
+86819347,24719063,4
+84936380,24719063,-1
+warm_fan,24719063,4
+120353268,24719063,4
+calypso29,24719063,4
+114504083,24719063,4
+rockrujing,24719063,4
+rockrujing,24719063,4
+1659068,24719063,5
+39353379,24719063,4
+Ada_Liu,24719063,4
+59165099,24719063,3
+101857892,24719063,5
+58691394,24719063,5
+Creep_v,24719063,5
+memory_su,24719063,4
+MonkeyChoi,24719063,5
+Erinnerung,24719063,5
+47624024,24719063,5
+76317708,24719063,5
+60063091,24719063,4
+103638490,24719063,4
+131358078,24719063,3
+73861736,24719063,4
+44066317,24719063,4
+ladymashroom,24719063,3
+68289528,24719063,4
+114120755,24719063,3
+faye-wong,24719063,4
+69980622,24719063,3
+50025753,24719063,2
+55305139,24719063,4
+67240379,24719063,3
+67141829,24719063,3
+114533607,24719063,4
+49334857,24719063,4
+ayohan,24719063,4
+64203842,24719063,4
+52657880,24719063,4
+63255258,24719063,2
+46030549,24719063,3
+83802681,24719063,4
+73815567,24719063,4
+3896074,24719063,4
+Gloriaaa,24719063,4
+2030100,24719063,4
+Neverever.D,24719063,3
+PIERO1208,24719063,4
+49108144,24719063,5
+yujiuwei,24719063,3
+61682333,24719063,4
+yifanmumian,24719063,3
+47127791,24719063,4
+pingfandeshabi,24719063,3
+53204374,24719063,3
+58090967,24719063,5
+caprice_vvn,24719063,3
+72839034,24719063,4
+121805239,24719063,4
+70126432,24719063,4
+130712247,24719063,4
+Alvin0414,24719063,4
+2768256,24719063,4
+yo911217,24719063,5
+56136584,24719063,5
+2031014,24719063,5
+48105948,24719063,3
+sunshinetalk,24719063,3
+38697998,24719063,4
+neverfail,24719063,4
+55298153,24719063,4
+53159276,24719063,3
+52571798,24719063,5
+16446452,24719063,4
+CAdreaming,24719063,3
+45012026,24719063,5
+78055552,24719063,4
+yanyang210,24719063,3
+49837563,24719063,3
+3640369,24719063,3
+14455478,24719063,4
+131125229,24719063,3
+124087231,24719063,2
+66388029,24719063,4
+joshvietti,24719063,4
+96523797,24719063,2
+67955955,24719063,5
+67955955,24719063,5
+4429031,24719063,5
+hxp1989,24719063,4
+Before37,24719063,4
+61476572,24719063,4
+3610792,24719063,-1
+65989653,24719063,4
+29282642,24719063,3
+63369767,24719063,4
+Excelsiorever,24719063,4
+68282002,24719063,3
+3954052,24719063,4
+2378033,24719063,4
+38010632,24719063,3
+67336403,24719063,5
+yixiaoran,24719063,4
+64245948,24719063,2
+69842524,24719063,5
+doorway,24719063,4
+1465852,24719063,4
+lovelucia,24719063,4
+119853756,24719063,3
+bestfaye9916,24719063,4
+23543377,24719063,3
+50386420,24719063,4
+45454876,24719063,3
+i_amshelia,24719063,4
+Japher,24719063,5
+2474699,24719063,5
+89942516,24719063,4
+72319072,24719063,3
+48122322,24719063,5
+some_Ji,24719063,2
+sweetmisscat,24719063,4
+70315903,24719063,5
+buubu,24719063,4
+48676602,24719063,3
+Lotus,24719063,5
+48723518,24719063,4
+ZLJde5951,24719063,4
+76356022,24719063,4
+xmausp,24719063,5
+xiaoshi0212,24719063,4
+57970979,24719063,3
+58484976,24719063,4
+62649072,24719063,3
+47190086,24719063,4
+summer_waiting,24719063,5
+52268031,24719063,4
+takahashiharuki,24719063,3
+kevinliar,24719063,4
+blue1997,24719063,4
+50560714,24719063,5
+62762350,24719063,5
+69152913,24719063,3
+39326527,24719063,4
+joanne_do,24719063,4
+3298336,24719063,4
+buzzsunny,24719063,4
+Mary_Lee,24719063,5
+130314777,24719063,4
+dandan0451,24719063,5
+48269568,24719063,5
+102024318,24719063,5
+39699250,24719063,4
+67370965,24719063,4
+5550651,24719063,5
+57214683,24719063,4
+3593565,24719063,5
+119852744,24719063,5
+86946149,24719063,5
+126389489,24719063,3
+tangjunbin,24719063,5
+4900537,24719063,4
+yueningxin,24719063,5
+83070447,24719063,4
+36794017,24719063,5
+115665873,24719063,3
+65919385,24719063,5
+60232571,24719063,4
+46665128,24719063,3
+59752375,24719063,4
+52775910,24719063,4
+75611903,24719063,5
+74145154,24719063,4
+53483609,24719063,4
+57798216,24719063,5
+53041046,24719063,4
+3346015,24719063,3
+81644640,24719063,5
+131240259,24719063,5
+mrwangzai,24719063,4
+86716942,24719063,5
+68902275,24719063,4
+42654369,24719063,4
+49128378,24719063,-1
+56749724,24719063,4
+gxe,24719063,3
+48007103,24719063,5
+65315119,24719063,4
+foreverroad,24719063,4
+cherryhj,24719063,3
+48683953,24719063,5
+locolee,24719063,4
+Dielin,24719063,5
+69003402,24719063,3
+122099416,24719063,5
+emily7726,24719063,4
+60127464,24719063,1
+godlovetong,24719063,4
+doctoryang,24719063,4
+46098185,24719063,5
+ceffee,24719063,4
+2994982,24719063,4
+81980301,24719063,4
+57716522,24719063,5
+fabulousfan,24719063,5
+83521053,24719063,3
+43452126,24719063,4
+peiyifei,24719063,2
+2653727,24719063,4
+84752730,24719063,4
+57577112,24719063,3
+wendyeverafter,24719063,4
+kimeshichan,24719063,4
+61452974,24719063,4
+knightingale,24719063,3
+60123657,24719063,4
+55632020,24719063,4
+41006095,24719063,3
+119295809,24719063,3
+61116211,24719063,4
+pipicd,24719063,4
+95824497,24719063,4
+68470868,24719063,4
+122782956,24719063,4
+40735647,24719063,3
+72808838,24719063,4
+58960162,24719063,4
+63376272,24719063,4
+3044425,24719063,3
+66106373,24719063,4
+49757941,24719063,4
+jcsherry,24719063,4
+3989670,24719063,5
+55596682,24719063,4
+ericyijun,24719063,4
+49511491,24719063,3
+4825465,24719063,4
+39696918,24719063,4
+68102977,24719063,4
+54588486,24719063,3
+lan_nal,24719063,4
+59278283,24719063,4
+65346497,24719063,4
+53132648,24719063,5
+3645785,24719063,4
+1034988,24719063,5
+41636718,24719063,4
+qianmokuihua,24719063,3
+bingno,24719063,5
+45207380,24719063,4
+83041900,24719063,4
+120925225,24719063,3
+65120899,24719063,5
+justsay,24719063,3
+7255952,24719063,4
+132396464,24719063,4
+dynsky2011,24719063,4
+104528763,24719063,4
+58223868,24719063,3
+siqitutu,24719063,3
+50104726,24719063,4
+131916326,24719063,4
+52468739,24719063,4
+levkimi,24719063,4
+56347233,24719063,4
+zlpEcho,24719063,4
+61067758,24719063,5
+NAGISHO,24719063,3
+48707415,24719063,4
+livpaopao,24719063,5
+63513932,24719063,5
+70552607,24719063,4
+36124046,24719063,4
+huishanziyun,24719063,4
+lasur,24719063,5
+131118954,24719063,5
+57947049,24719063,4
+gusuxiaoqiao,24719063,3
+54897892,24719063,3
+64966708,24719063,5
+trianglecat,24719063,3
+alex__wang,24719063,3
+yeshuilanblue,24719063,3
+59158101,24719063,4
+63063946,24719063,3
+yangshu1991,24719063,4
+56903206,24719063,5
+74104010,24719063,3
+52454145,24719063,5
+63512552,24719063,4
+daisysja,24719063,4
+synynyn,24719063,3
+59396311,24719063,4
+jennyjam,24719063,2
+muai97,24719063,4
+38833877,24719063,4
+63373547,24719063,4
+127321478,24719063,4
+29544236,24719063,3
+59334722,24719063,3
+51413667,24719063,4
+49398303,24719063,4
+xiamishi,24719063,5
+114245978,24719063,3
+lisansi128ve980,24719063,4
+jiachangting,24719063,5
+47681496,24719063,4
+70512730,24719063,4
+ALee301302,24719063,3
+78482102,24719063,4
+124808104,24719063,5
+84824161,24719063,4
+provence1019,24719063,4
+36621283,24719063,4
+berakame,24719063,5
+43486122,24719063,5
+cookies4ever,24719063,4
+122584065,24719063,3
+3942998,24719063,4
+2391373,24719063,4
+64467057,24719063,3
+35618500,24719063,4
+110953624,24719063,4
+littlemikan,24719063,4
+66696808,24719063,4
+44654605,24719063,4
+78583872,24719063,3
+85354359,24719063,4
+54738756,24719063,3
+34914170,24719063,5
+34949120,24719063,4
+49443595,24719063,3
+128250063,24719063,4
+falent,24719063,5
+41786241,24719063,4
+Mibowen611,24719063,5
+60211181,24719063,3
+48162414,24719063,2
+125149511,24719063,4
+123268013,24719063,4
+caizixuan,24719063,3
+l-sky,24719063,4
+64124886,24719063,3
+Xiaoyushan,24719063,5
+48065738,24719063,3
+124425803,24719063,4
+83949510,24719063,4
+TAOAT,24719063,4
+daisy_her,24719063,4
+63302327,24719063,4
+104128172,24719063,3
+57803774,24719063,4
+2427450,24719063,4
+66800718,24719063,4
+zzc8883800,24719063,3
+60311898,24719063,4
+tantmieux,24719063,5
+wendyfield,24719063,3
+zqzhuqiu,24719063,4
+jolydouban,24719063,5
+2031724,24719063,3
+2123728,24719063,5
+cherry7lu,24719063,5
+Cosmo--,24719063,4
+Morrom,24719063,4
+falsefish,24719063,4
+3878442,24719063,4
+okoy,24719063,4
+maxwell2place,24719063,4
+mojiwhat,24719063,3
+3442167,24719063,3
+kyuly,24719063,5
+80001264,24719063,4
+liosha_bfsu,24719063,4
+ycy19870313,24719063,4
+73294772,24719063,4
+122335329,24719063,5
+6972276,24719063,5
+perfectblue,24719063,3
+YTT_LS,24719063,3
+116996584,24719063,5
+pr-michelle,24719063,3
+3627066,24719063,4
+wangmei,24719063,4
+3304167,24719063,4
+69302580,24719063,4
+57390062,24719063,1
+58624199,24719063,4
+102859940,24719063,4
+cxy1027,24719063,4
+62796389,24719063,4
+mianlaonan,24719063,4
+Obtson,24719063,3
+80768370,24719063,4
+summer-12,24719063,4
+poepoe,24719063,3
+zhaotianai,24719063,3
+wjjjzz,24719063,4
+56573958,24719063,-1
+49628023,24719063,3
+88428355,24719063,4
+wqjym,24719063,3
+tammyj_11,24719063,5
+3909495,24719063,5
+2118444,24719063,3
+4621746,24719063,2
+55278862,24719063,4
+aaayoudonotknow,24719063,3
+68900028,24719063,5
+lolitaj,24719063,4
+79105910,24719063,4
+3289075,24719063,4
+2106137,24719063,4
+1739959,24719063,3
+douzi_232,24719063,2
+krmushang,24719063,3
+53545964,24719063,4
+55941997,24719063,5
+47814757,24719063,4
+49156935,24719063,4
+39695667,24719063,4
+1717660,24719063,3
+woodrain,24719063,4
+58956740,24719063,5
+83881122,24719063,5
+66509980,24719063,4
+36383970,24719063,4
+132230547,24719063,5
+49452942,24719063,5
+thesadyesterday,24719063,3
+ciciaa,24719063,3
+ivy_713,24719063,5
+74942807,24719063,4
+49946350,24719063,3
+15029766,24719063,4
+111584714,24719063,2
+130100257,24719063,4
+35590424,24719063,5
+48555554,24719063,3
+44854300,24719063,3
+63309491,24719063,2
+4301952,24719063,4
+hirair,24719063,4
+hapysmile,24719063,5
+51815099,24719063,5
+74044460,24719063,5
+Mr.Jian,24719063,5
+Lisa.L,24719063,4
+Lisa.L,24719063,4
+hey-jude,24719063,3
+51828462,24719063,3
+haidonsun,24719063,3
+71625785,24719063,4
+IronCock,24719063,5
+manbujx,24719063,4
+49143390,24719063,4
+uhoiuikjhiu,24719063,3
+67760545,24719063,5
+zyw19870917,24719063,4
+36412946,24719063,4
+Ltbywang,24719063,5
+silenrocker,24719063,3
+eleGuai,24719063,4
+Laylauu,24719063,5
+38852403,24719063,4
+68775691,24719063,5
+90699414,24719063,4
+15570914,24719063,3
+cindy..wu,24719063,4
+44896206,24719063,4
+48677389,24719063,4
+52103391,24719063,4
+123555045,24719063,4
+Cythina123,24719063,3
+3053086,24719063,4
+47807328,24719063,3
+49036368,24719063,3
+zooyam,24719063,4
+vonchely,24719063,4
+holly_cerise,24719063,4
+50328041,24719063,3
+55682948,24719063,2
+chenglu8848,24719063,4
+28633682,24719063,4
+bluewater777,24719063,5
+haehikalu,24719063,-1
+miyukisara,24719063,2
+wangxiaonizi,24719063,3
+sylvere,24719063,5
+b19921224,24719063,4
+92119199,24719063,4
+119362745,24719063,4
+54708520,24719063,3
+43751226,24719063,4
+46249272,24719063,5
+23832452,24719063,4
+45279594,24719063,3
+2993049,24719063,3
+FILANIEYOTE,24719063,3
+52129503,24719063,4
+sosoless,24719063,3
+47853230,24719063,4
+56104621,24719063,3
+2600716,24719063,-1
+130377977,24719063,4
+25685225,24719063,3
+131427089,24719063,2
+imissh,24719063,3
+83488893,24719063,3
+dailyfriend,24719063,4
+38032852,24719063,5
+JL-Nobody,24719063,5
+babykissy,24719063,4
+15088576,24719063,4
+xuanyixie,24719063,-1
+73335242,24719063,4
+15142274,24719063,3
+catherinex217,24719063,4
+20880123,24719063,4
+58609856,24719063,3
+janelle.c,24719063,4
+amber11,24719063,2
+62391945,24719063,2
+44249721,24719063,4
+annie86,24719063,4
+duhang,24719063,4
+Paradox_Q,24719063,4
+puddingcon,24719063,4
+47251661,24719063,5
+2860675,24719063,4
+ltracy,24719063,4
+4664344,24719063,2
+46192988,24719063,3
+64060997,24719063,5
+riyueming024,24719063,4
+40870953,24719063,4
+Kidew,24719063,4
+z773863656,24719063,5
+hechaozhe,24719063,2
+37540843,24719063,4
+47151726,24719063,3
+36620883,24719063,3
+65974526,24719063,3
+zashikiwarashi,24719063,3
+1516524,24719063,4
+48841040,24719063,4
+gloria1102,24719063,4
+59667285,24719063,4
+33553090,24719063,4
+skyllla,24719063,4
+limewater,24719063,3
+84109478,24719063,4
+45137235,24719063,3
+76412988,24719063,4
+52978814,24719063,3
+marsmxm,24719063,5
+4238259,24719063,3
+ellenxu,24719063,4
+68083374,24719063,3
+74869703,24719063,4
+58478485,24719063,4
+tt3rlx,24719063,5
+2634600,24719063,3
+3724437,24719063,4
+47239413,24719063,4
+33133224,24719063,-1
+dyscqx,24719063,4
+leetsing,24719063,5
+60645894,24719063,5
+chenyongzai,24719063,4
+70027321,24719063,3
+46469157,24719063,3
+missyouth2008,24719063,4
+thinromeo,24719063,3
+haoaining,24719063,4
+74566437,24719063,4
+wangholic,24719063,3
+8925160,24719063,4
+Talushen,24719063,5
+130704537,24719063,3
+khuntracie,24719063,4
+57988166,24719063,5
+KinO_O,24719063,5
+pipangpi,24719063,2
+54533341,24719063,5
+lemonkaola,24719063,4
+adele99,24719063,3
+50703649,24719063,3
+wasasw,24719063,4
+jeremy25,24719063,4
+zhixiayufei,24719063,3
+72145072,24719063,3
+2221831,24719063,4
+Juno14,24719063,4
+lucine.zhang,24719063,5
+stigmas,24719063,4
+Mr.Pheromone,24719063,4
+3519059,24719063,3
+yehuajie,24719063,3
+65058502,24719063,5
+nancy425,24719063,5
+reyo,24719063,4
+tomsnakewang,24719063,5
+40079537,24719063,5
+78984625,24719063,4
+40308928,24719063,4
+amang99,24719063,4
+SZH19920707,24719063,5
+3586286,24719063,4
+49329563,24719063,4
+grace-green117,24719063,3
+30441221,24719063,4
+52512622,24719063,3
+shanbaby,24719063,3
+44283837,24719063,4
+14021756,24719063,4
+millicent933,24719063,4
+61790360,24719063,4
+50687552,24719063,4
+4132580,24719063,5
+77236967,24719063,4
+1602645,24719063,4
+gaojie0114,24719063,3
+Song1183,24719063,5
+37693865,24719063,2
+40561307,24719063,4
+congyang77,24719063,4
+moka_me,24719063,-1
+rudolf_year,24719063,3
+ferrero,24719063,4
+GracetTowne,24719063,4
+46525176,24719063,4
+47781014,24719063,3
+3901284,24719063,3
+2809875,24719063,5
+4614210,24719063,4
+58479235,24719063,5
+djy_joy,24719063,4
+75908452,24719063,4
+133546205,24719063,3
+3575164,24719063,4
+ivykwok,24719063,3
+47540163,24719063,5
+69406100,24719063,5
+131500891,24719063,4
+dounageban,24719063,4
+49074527,24719063,3
+2035305,24719063,3
+WillHunted,24719063,4
+emmazhangxx,24719063,4
+damon3liz,24719063,3
+4411166,24719063,5
+marysays,24719063,-1
+48680153,24719063,4
+weixiaolengmo,24719063,4
+coldkillers,24719063,3
+jessica8111,24719063,4
+taoqishu,24719063,3
+39350933,24719063,4
+50366929,24719063,3
+35603414,24719063,3
+50009273,24719063,4
+101975130,24719063,4
+dushuai90,24719063,4
+33628756,24719063,4
+122912528,24719063,4
+solarwater,24719063,5
+kennyeffect,24719063,4
+47977808,24719063,2
+faille1991,24719063,5
+55608502,24719063,4
+WengHan,24719063,5
+1512803,24719063,4
+pinkycon,24719063,4
+51208677,24719063,4
+hellowind,24719063,3
+jinzeyu007,24719063,5
+35192408,24719063,4
+69805658,24719063,3
+121360189,24719063,4
+59847342,24719063,3
+59379634,24719063,4
+53023463,24719063,4
+37157574,24719063,5
+34925217,24719063,5
+4310321,24719063,4
+130017833,24719063,5
+abezhang,24719063,4
+abezhang,24719063,4
+nocturnetian,24719063,4
+flyinjuly,24719063,4
+52892284,24719063,4
+inkhkkk,24719063,4
+dl13619598865,24719063,4
+mxrfan77,24719063,5
+62074991,24719063,5
+58360970,24719063,4
+70150082,24719063,3
+45042581,24719063,4
+53049721,24719063,3
+61350699,24719063,5
+39428184,24719063,5
+1520313,24719063,4
+hu1219,24719063,4
+62644880,24719063,3
+9551191,24719063,4
+58503450,24719063,4
+63086235,24719063,3
+vanyeeyouth,24719063,4
+verain,24719063,4
+127937424,24719063,1
+viola-x,24719063,3
+chenmister,24719063,4
+daseinbo,24719063,4
+charmingduan,24719063,5
+yunyunk,24719063,4
+47488504,24719063,4
+caseyqian,24719063,4
+lukemdk,24719063,4
+43676803,24719063,4
+117235946,24719063,4
+90952983,24719063,4
+idida,24719063,3
+128099070,24719063,4
+75381649,24719063,3
+vincentjones,24719063,4
+SQ17,24719063,5
+65555216,24719063,5
+yxmj1982,24719063,4
+50228316,24719063,4
+herecome,24719063,4
+132839401,24719063,3
+mornight,24719063,3
+126320838,24719063,5
+40967366,24719063,4
+zhangdayang,24719063,5
+rebeccaedwin,24719063,4
+guanjunyan,24719063,-1
+58734372,24719063,4
+129101053,24719063,3
+qiyuemanman,24719063,5
+69730932,24719063,3
+leoXiao,24719063,5
+1171026,24719063,4
+lydialuo,24719063,5
+56304613,24719063,3
+queenic,24719063,4
+fengxiao_hh,24719063,4
+nllxxx,24719063,3
+redrabbit,24719063,4
+4241619,24719063,3
+2420705,24719063,4
+2227798,24719063,5
+122236054,24719063,4
+ningning9164,24719063,-1
+otomelu,24719063,4
+xxe,24719063,2
+63107787,24719063,5
+zhang87629,24719063,3
+62182942,24719063,3
+44243630,24719063,4
+call_me_1900,24719063,4
+mangoboi,24719063,4
+cincincindy,24719063,4
+27852981,24719063,4
+theninthmonth,24719063,3
+43495791,24719063,5
+bamboodew,24719063,2
+127536739,24719063,4
+graceberyl,24719063,4
+119341040,24719063,4
+10038789,24719063,5
+erinshanicdi,24719063,4
+samaria,24719063,5
+aiJC,24719063,4
+62836423,24719063,3
+71157955,24719063,4
+48278056,24719063,4
+imlyc,24719063,5
+34937499,24719063,4
+liuchuanzi,24719063,4
+killer35,24719063,5
+popopo,24719063,3
+53105432,24719063,4
+wangymm,24719063,4
+cindol,24719063,-1
+113584792,24719063,5
+zhnbiao,24719063,5
+75116477,24719063,5
+fish.fish.,24719063,4
+Chloezjy,24719063,4
+124962987,24719063,4
+waWa.tomato,24719063,4
+42292957,24719063,4
+2343743,24719063,3
+59116498,24719063,-1
+neverthink,24719063,4
+ivankazhang,24719063,4
+41403989,24719063,3
+62277411,24719063,4
+4674424,24719063,3
+58677597,24719063,4
+kuizhizhu,24719063,4
+50616281,24719063,4
+abey1949,24719063,4
+qryousity,24719063,3
+mtz,24719063,4
+Jake52592,24719063,3
+35155184,24719063,4
+fifa7zp,24719063,4
+83440468,24719063,4
+54449997,24719063,5
+66650981,24719063,3
+31854340,24719063,5
+9994133,24719063,3
+49838101,24719063,5
+4586261,24719063,5
+97211660,24719063,4
+49889216,24719063,4
+luoyunxiang72,24719063,4
+4602733,24719063,3
+82332391,24719063,5
+54786076,24719063,3
+38849125,24719063,5
+43134800,24719063,3
+64471026,24719063,4
+Aoiyuu,24719063,4
+75188752,24719063,4
+anjia617,24719063,4
+ihaveafreeheart,24719063,4
+loveecho668,24719063,5
+55521828,24719063,3
+mimi...,24719063,4
+55516627,24719063,4
+chris027,24719063,3
+staywithcc,24719063,4
+132498013,24719063,4
+AlbertaPanda,24719063,5
+122465142,24719063,5
+88131394,24719063,4
+88871523,24719063,3
+36499503,24719063,5
+36541831,24719063,4
+74125306,24719063,4
+51032242,24719063,5
+73562210,24719063,4
+48003133,24719063,4
+65334855,24719063,3
+1028731,24719063,3
+75357304,24719063,3
+62224425,24719063,3
+48280149,24719063,3
+ahino,24719063,5
+68449205,24719063,4
+ericleaf,24719063,4
+3713265,24719063,4
+63575195,24719063,4
+57314586,24719063,3
+84311404,24719063,3
+siton,24719063,5
+freja_ylr,24719063,4
+JarsunCrow2957,24719063,5
+83855853,24719063,5
+tigermian,24719063,3
+52365304,24719063,4
+42900224,24719063,4
+83674616,24719063,4
+121338991,24719063,4
+Rosemarygirl,24719063,3
+5326502,24719063,5
+95794515,24719063,4
+50379356,24719063,-1
+47347613,24719063,4
+50112537,24719063,5
+2595427,24719063,1
+85405742,24719063,3
+73291837,24719063,4
+1428027,24719063,3
+46415829,24719063,5
+xinxinlyx,24719063,4
+52906969,24719063,4
+58459462,24719063,3
+2880913,24719063,3
+onlycee,24719063,4
+lenglen,24719063,4
+3430526,24719063,3
+49273916,24719063,3
+71863067,24719063,3
+58792200,24719063,2
+108274326,24719063,4
+Paul198809,24719063,3
+126051239,24719063,5
+57639009,24719063,4
+TravelingZero,24719063,4
+29271779,24719063,5
+121192728,24719063,4
+101768144,24719063,4
+63920180,24719063,2
+43698664,24719063,5
+48216088,24719063,5
+43342048,24719063,4
+80734129,24719063,4
+104706942,24719063,5
+42839505,24719063,2
+nuannuan827,24719063,4
+48042607,24719063,4
+14491147,24719063,5
+62119610,24719063,4
+89178219,24719063,3
+xchill,24719063,3
+120091540,24719063,3
+xiaogua,24719063,3
+lemononew,24719063,4
+23643772,24719063,4
+102623663,24719063,5
+71511183,24719063,4
+harechan,24719063,3
+39875217,24719063,2
+zuochengyun,24719063,1
+58490597,24719063,4
+smithx,24719063,4
+missqiaqia,24719063,4
+111493695,24719063,5
+78123649,24719063,4
+iwuyuetian,24719063,4
+L0ve-zL,24719063,5
+119095420,24719063,4
+119071715,24719063,4
+41801093,24719063,4
+1494739,24719063,4
+ONIZUKA_07,24719063,4
+cuyt,24719063,5
+95403251,24719063,3
+yao_5411,24719063,4
+43595713,24719063,4
+58604332,24719063,4
+1895030,24719063,4
+60276461,24719063,4
+71593445,24719063,4
+momoko11510,24719063,4
+amelie329,24719063,4
+Ryan-Cheng,24719063,4
+72365393,24719063,5
+2154396,24719063,3
+taiopiao,24719063,5
+69705191,24719063,5
+xcloudcloud,24719063,4
+yoshimi,24719063,4
+66732663,24719063,5
+84825444,24719063,3
+14594315,24719063,4
+119340847,24719063,5
+V4nine4,24719063,4
+caoyi555,24719063,2
+37153252,24719063,3
+fsyc,24719063,4
+93161752,24719063,5
+ANG.Y,24719063,4
+dchaochao,24719063,2
+65363717,24719063,5
+3485850,24719063,4
+69811337,24719063,5
+jeremyzhuo,24719063,4
+woaiheyi,24719063,4
+emmalaw,24719063,3
+62287968,24719063,3
+87815299,24719063,4
+57807205,24719063,4
+GUYU7,24719063,4
+52179569,24719063,4
+tinylamb,24719063,3
+greatabel,24719063,4
+zishy,24719063,4
+whoiswho,24719063,3
+1464485,24719063,4
+9093155,24719063,3
+70990506,24719063,4
+fftu,24719063,3
+55542795,24719063,4
+2988189,24719063,4
+junenmajunen,24719063,4
+68893720,24719063,5
+Ziyon278,24719063,5
+49767711,24719063,3
+NatsuL,24719063,4
+52986947,24719063,5
+44555225,24719063,4
+ynian2011,24719063,3
+sixiaokong,24719063,4
+80437815,24719063,4
+vanacarroll,24719063,5
+69000298,24719063,3
+zcsyzdln,24719063,4
+49055690,24719063,4
+24853995,24719063,3
+70294430,24719063,3
+foxcc,24719063,5
+joy2theworldyea,24719063,3
+3933863,24719063,5
+AlienSuger,24719063,4
+34123498,24719063,5
+62576172,24719063,4
+54033630,24719063,4
+cookiesun0420,24719063,4
+53247306,24719063,3
+31555036,24719063,5
+63084070,24719063,4
+67782603,24719063,3
+flinhong,24719063,4
+34087859,24719063,3
+57749924,24719063,4
+59738934,24719063,5
+53767921,24719063,5
+108394568,24719063,4
+hoomjac,24719063,3
+cup-whent,24719063,4
+cherybeckham,24719063,4
+71188390,24719063,5
+53523636,24719063,4
+79193917,24719063,5
+Irma26,24719063,4
+missriverhorse,24719063,4
+51559783,24719063,4
+4600665,24719063,3
+34751637,24719063,3
+longwanran,24719063,4
+65573986,24719063,3
+LoveRaul77,24719063,2
+64093320,24719063,4
+83438195,24719063,4
+14965275,24719063,4
+willydeutsh,24719063,2
+2367793,24719063,4
+fare-pussy,24719063,4
+rotkappchen,24719063,4
+63191025,24719063,5
+weixiaol,24719063,3
+samwang,24719063,4
+18166296,24719063,4
+49735626,24719063,5
+44897969,24719063,5
+chyq519,24719063,4
+92528113,24719063,4
+53914184,24719063,3
+3232162,24719063,2
+39373896,24719063,4
+52045303,24719063,4
+51102952,24719063,-1
+qiangqiangfang,24719063,4
+Holen,24719063,-1
+4366776,24719063,2
+100009685,24719063,4
+Mignonette-W,24719063,4
+49164975,24719063,4
+Simplelove_,24719063,2
+35653009,24719063,3
+50824639,24719063,2
+ysxue,24719063,4
+Tavico,24719063,3
+memorysongs,24719063,5
+Robaholic,24719063,3
+vitajj,24719063,4
+ewanyang11,24719063,4
+103976343,24719063,5
+Yxiaomila,24719063,3
+3555189,24719063,4
+qurtime,24719063,3
+66128210,24719063,4
+66128210,24719063,4
+TaTaxxxx,24719063,3
+lisuansuan,24719063,-1
+62521134,24719063,4
+sunchao1989,24719063,4
+123564410,24719063,5
+130658738,24719063,5
+49867377,24719063,3
+yozoh96119,24719063,4
+4466010,24719063,2
+beramode,24719063,4
+3731229,24719063,4
+shmilyisf,24719063,3
+62594842,24719063,5
+nanonino,24719063,5
+61534352,24719063,4
+guaishouyaya,24719063,5
+fannie7,24719063,4
+dabaibai,24719063,5
+72233881,24719063,4
+72233881,24719063,4
+61893862,24719063,4
+louieeeee,24719063,4
+74684254,24719063,5
+82288318,24719063,5
+xiaott33,24719063,4
+fufufufuxk,24719063,4
+49020193,24719063,4
+mazedcity,24719063,4
+46912263,24719063,4
+holyhteara,24719063,4
+131628245,24719063,4
+leonardzhu,24719063,3
+Tramyzzp,24719063,3
+72100141,24719063,3
+69048541,24719063,3
+79133327,24719063,4
+101395285,24719063,5
+45439094,24719063,4
+46915487,24719063,3
+51453942,24719063,4
+131988762,24719063,4
+kentinante,24719063,5
+62591475,24719063,5
+49326502,24719063,4
+64302244,24719063,3
+Fesvia,24719063,2
+jerrylou,24719063,4
+57048528,24719063,-1
+4882179,24719063,4
+peterhq,24719063,4
+61721922,24719063,3
+66946937,24719063,4
+49027138,24719063,5
+48878590,24719063,4
+fenglimuren,24719063,3
+46338692,24719063,4
+metac,24719063,5
+1723553,24719063,4
+120764157,24719063,4
+57126994,24719063,3
+azure0130,24719063,5
+65497588,24719063,4
+39152562,24719063,-1
+106597439,24719063,4
+133053378,24719063,4
+3182538,24719063,4
+caikiddg,24719063,4
+90976548,24719063,5
+lv_shuang,24719063,3
+36138367,24719063,4
+118090358,24719063,4
+57075245,24719063,4
+69998360,24719063,4
+2167603,24719063,3
+67805960,24719063,4
+z1901111,24719063,3
+48870835,24719063,4
+fikichow,24719063,2
+linda740,24719063,5
+50915159,24719063,4
+120242097,24719063,4
+Ambersfool,24719063,5
+45088131,24719063,-1
+may77501,24719063,4
+zhu_shou_zhang,24719063,5
+gogopeter,24719063,5
+boss1993,24719063,4
+liljellyfish,24719063,1
+93498027,24719063,4
+bilu,24719063,5
+49134204,24719063,4
+3337830,24719063,5
+128390815,24719063,4
+39266615,24719063,5
+49849512,24719063,4
+55480147,24719063,3
+62362303,24719063,3
+momojoke,24719063,3
+4582518,24719063,4
+62957717,24719063,3
+zhaoqingyue,24719063,4
+60151849,24719063,3
+dingding1113,24719063,5
+cubical,24719063,4
+100036482,24719063,4
+47650705,24719063,3
+zhangleyuan,24719063,3
+120270962,24719063,5
+sarahshen10,24719063,4
+37460295,24719063,3
+yangyan,24719063,2
+42171704,24719063,3
+49320909,24719063,3
+peggyhuang26,24719063,4
+131538725,24719063,4
+68000398,24719063,5
+StevenSuen-,24719063,3
+127343496,24719063,5
+huoLayfeng,24719063,4
+44521682,24719063,4
+133868329,24719063,5
+45004450,24719063,4
+103718982,24719063,5
+74621161,24719063,3
+lestat.chen,24719063,5
+ZouzheFoudouzhe,24719063,-1
+63900605,24719063,4
+4474468,24719063,3
+52409624,24719063,5
+joelove,24719063,4
+chimianbaodemao,24719063,4
+17865557,24719063,3
+94032763,24719063,3
+44705229,24719063,4
+51517255,24719063,5
+58056819,24719063,4
+andyylx,24719063,3
+yangyiyouye,24719063,4
+88652488,24719063,4
+45599884,24719063,4
+3938082,24719063,4
+yasonyyx,24719063,3
+64241350,24719063,3
+89662844,24719063,3
+28104351,24719063,4
+87927795,24719063,5
+4280686,24719063,2
+63119655,24719063,3
+2233142,24719063,4
+blew,24719063,4
+32485856,24719063,5
+131912581,24719063,5
+71421789,24719063,3
+sunhuaning,24719063,5
+50308243,24719063,5
+45956632,24719063,4
+102714413,24719063,3
+62093986,24719063,3
+47372422,24719063,4
+4289781,24719063,3
+gulunmu,24719063,3
+128675043,24719063,3
+Robin0227,24719063,4
+wsy0309,24719063,5
+126818106,24719063,5
+1427200,24719063,4
+luzhenxing,24719063,5
+40027917,24719063,4
+51835968,24719063,3
+121544957,24719063,-1
+agoraphobia,24719063,4
+paopaopaofu,24719063,3
+lynnstefanie,24719063,4
+maydayisfaith,24719063,2
+53056312,24719063,3
+79116802,24719063,4
+2865307,24719063,3
+83360787,24719063,3
+larnwolf,24719063,4
+larnwolf,24719063,4
+asha19,24719063,5
+1956606,24719063,4
+jdqx,24719063,4
+4435042,24719063,3
+xiexiaobaoai,24719063,4
+32270994,24719063,4
+48716864,24719063,4
+68139311,24719063,4
+58043566,24719063,4
+51762574,24719063,3
+xbaozi,24719063,4
+Baomilingdi,24719063,5
+VIPP,24719063,4
+45794996,24719063,3
+Fucking_hell,24719063,4
+saojie1206,24719063,4
+3796746,24719063,5
+52120890,24719063,5
+50655031,24719063,5
+nanacancer,24719063,3
+120611241,24719063,3
+52283605,24719063,3
+54987396,24719063,5
+101026869,24719063,4
+36923461,24719063,4
+49929215,24719063,4
+109084248,24719063,5
+121471027,24719063,3
+61626156,24719063,3
+1167276,24719063,4
+msprudence,24719063,4
+63032514,24719063,3
+damaimmm,24719063,-1
+35594706,24719063,5
+51431858,24719063,5
+60935704,24719063,4
+52873802,24719063,4
+cuckoo_dancer,24719063,3
+14483687,24719063,3
+mouq,24719063,3
+yanxuanyi,24719063,3
+novalol,24719063,3
+ziyunying,24719063,5
+63229273,24719063,3
+57250505,24719063,3
+80759115,24719063,5
+feship,24719063,3
+63964754,24719063,5
+45863268,24719063,3
+131141632,24719063,4
+52940930,24719063,4
+126936629,24719063,4
+51683768,24719063,5
+Vo.,24719063,4
+juliet428,24719063,3
+82362283,24719063,3
+77862080,24719063,4
+Crystal0111,24719063,4
+33245540,24719063,4
+29885063,24719063,2
+116039295,24719063,3
+48217943,24719063,-1
+Lul.z,24719063,4
+icetear,24719063,4
+54989075,24719063,3
+iyoun9,24719063,5
+chensilong,24719063,5
+106113807,24719063,4
+weiranju,24719063,4
+58251146,24719063,5
+25453566,24719063,4
+96545513,24719063,4
+80307859,24719063,4
+vaie,24719063,3
+DAI_YELIE,24719063,3
+82520594,24719063,4
+84250645,24719063,3
+luoochaoo,24719063,3
+53074596,24719063,3
+62733328,24719063,4
+an-zi-han,24719063,4
+85341687,24719063,5
+60227001,24719063,4
+75261344,24719063,4
+50433074,24719063,4
+63010729,24719063,4
+jy0820,24719063,5
+4587707,24719063,4
+28219717,24719063,5
+Renee101,24719063,4
+LittleTalks,24719063,4
+kilruk,24719063,4
+55365789,24719063,5
+45320268,24719063,3
+28535454,24719063,3
+actionaction,24719063,3
+68786900,24719063,4
+96034999,24719063,4
+47809178,24719063,3
+Sergio-sw,24719063,4
+nlc_hzn,24719063,4
+43429533,24719063,4
+34740140,24719063,5
+71057399,24719063,4
+52705329,24719063,5
+47982116,24719063,3
+xuhuiyuan88,24719063,4
+81469223,24719063,3
+71127881,24719063,4
+1087378,24719063,3
+83601248,24719063,5
+51480816,24719063,4
+90729667,24719063,4
+50937061,24719063,5
+4704558,24719063,4
+90525586,24719063,4
+70818427,24719063,3
+2425026,24719063,3
+65717792,24719063,3
+65717792,24719063,3
+53792829,24719063,3
+3844973,24719063,4
+40823380,24719063,4
+57589585,24719063,5
+75548648,24719063,5
+iris714,24719063,3
+lishiyangmayo,24719063,4
+2982439,24719063,4
+midori_amoy,24719063,3
+kat.is.kathy,24719063,4
+vipan,24719063,3
+lostef,24719063,4
+126125294,24719063,4
+jokeraymix,24719063,4
+49366823,24719063,4
+44805716,24719063,4
+hysunao,24719063,2
+winnylee,24719063,5
+6537233,24719063,4
+50750896,24719063,5
+34323470,24719063,4
+befreelancer,24719063,5
+ringyu,24719063,3
+4117400,24719063,3
+3165431,24719063,3
+panicsun,24719063,4
+122686185,24719063,3
+60392839,24719063,3
+fallroads,24719063,4
+zyhang2005,24719063,4
+115686371,24719063,3
+3649520,24719063,5
+hpsqn,24719063,4
+82887347,24719063,4
+128812929,24719063,3
+2158822,24719063,3
+ligil,24719063,2
+50499996,24719063,4
+cijunbutileng,24719063,4
+walinee,24719063,4
+40779185,24719063,5
+2192608,24719063,4
+81848282,24719063,4
+schritt,24719063,4
+65110370,24719063,4
+47016246,24719063,4
+71758766,24719063,4
+2858055,24719063,5
+50968156,24719063,2
+sidneybig,24719063,3
+58035552,24719063,4
+houyuankai,24719063,5
+bluelynn,24719063,3
+zcunlin,24719063,4
+72232430,24719063,5
+63177196,24719063,5
+54233501,24719063,5
+76684306,24719063,5
+leexiaoxiao,24719063,4
+leexiaoxiao,24719063,4
+45786589,24719063,3
+62735975,24719063,4
+yuebing123,24719063,2
+2991153,24719063,4
+41148862,24719063,4
+85356798,24719063,5
+64191038,24719063,4
+61079674,24719063,5
+21139926,24719063,4
+70851112,24719063,3
+candicechang,24719063,4
+44203780,24719063,5
+PKUTeaParty,24719063,1
+sherry0425,24719063,4
+72075276,24719063,4
+heming_way,24719063,4
+sevenfishing,24719063,-1
+raphaelife,24719063,4
+lonelywood,24719063,3
+vkc,24719063,5
+1030614,24719063,4
+123531809,24719063,5
+38648875,24719063,4
+61212508,24719063,4
+33564270,24719063,4
+yelusiku,24719063,4
+idwxx,24719063,3
+hsym1022,24719063,4
+sharebearr,24719063,4
+2995739,24719063,4
+LONGLU,24719063,5
+poochai,24719063,4
+56349224,24719063,3
+mimy,24719063,4
+4194901,24719063,4
+85258559,24719063,4
+maorabbit,24719063,5
+43080143,24719063,-1
+fancylyf,24719063,5
+49654924,24719063,3
+miaomiaomiaomad,24719063,5
+64441983,24719063,4
+70675972,24719063,4
+lshangy,24719063,-1
+65741833,24719063,4
+fishee,24719063,-1
+punsiny,24719063,-1
+50600162,24719063,4
+48601233,24719063,5
+67738250,24719063,5
+80346808,24719063,4
+64276450,24719063,3
+47286411,24719063,3
+romance90,24719063,4
+gloryofnt,24719063,4
+40436346,24719063,4
+fragrance123,24719063,5
+aprisliver,24719063,1
+57455479,24719063,4
+57455479,24719063,4
+3040473,24719063,3
+51222757,24719063,3
+larry1695,24719063,3
+79127642,24719063,5
+67694968,24719063,3
+78066054,24719063,4
+34728183,24719063,3
+82227481,24719063,4
+47165850,24719063,4
+hualaojun,24719063,5
+47798709,24719063,5
+ntrer,24719063,4
+56834550,24719063,3
+mala112,24719063,5
+2681101,24719063,2
+alei7774,24719063,2
+58504822,24719063,3
+lovehyun,24719063,4
+dkjune,24719063,3
+zyqwendy,24719063,4
+guosiyao,24719063,3
+69295551,24719063,3
+Haoxixiansen,24719063,4
+68894222,24719063,3
+2187951,24719063,4
+1343484,24719063,3
+78601907,24719063,3
+bunnyzizi,24719063,3
+121933047,24719063,4
+2282089,24719063,3
+yezisnow,24719063,4
+wangyiqiu,24719063,4
+dengbilin,24719063,4
+54607623,24719063,4
+mqknet,24719063,5
+4342517,24719063,4
+rong179,24719063,5
+wangmian0729,24719063,4
+3040176,24719063,4
+32911362,24719063,3
+81441568,24719063,5
+48919627,24719063,3
+32785698,24719063,3
+68523574,24719063,4
+blur2443,24719063,1
+9386655,24719063,4
+Dorothycheer,24719063,3
+64728959,24719063,5
+23835324,24719063,5
+62332371,24719063,4
+1357759,24719063,4
+88078787,24719063,5
+TubieWang,24719063,5
+34113270,24719063,5
+2266577,24719063,4
+81277402,24719063,4
+131741048,24719063,3
+87652324,24719063,4
+55447460,24719063,4
+53971929,24719063,2
+52568986,24719063,4
+91498001,24719063,5
+101570644,24719063,3
+3397745,24719063,3
+33139664,24719063,4
+48685918,24719063,3
+46009385,24719063,5
+69171390,24719063,5
+63816034,24719063,3
+41343112,24719063,4
+41694070,24719063,5
+nadja,24719063,-1
+50270612,24719063,3
+sudouya,24719063,-1
+79269644,24719063,4
+6630679,24719063,5
+50573314,24719063,4
+62517316,24719063,5
+50579974,24719063,4
+cipherblue,24719063,4
+54815783,24719063,4
+zzy0805,24719063,3
+DY9174,24719063,3
+54365251,24719063,3
+hshsh33,24719063,4
+56870980,24719063,4
+sunlei1029,24719063,3
+76943413,24719063,3
+57716203,24719063,4
+45197584,24719063,4
+56909414,24719063,5
+49445419,24719063,3
+76994083,24719063,4
+choufighter,24719063,4
+51929738,24719063,4
+122858309,24719063,4
+zhuangdikun,24719063,4
+destiny049,24719063,3
+96204394,24719063,4
+3128756,24719063,3
+47684343,24719063,4
+52816310,24719063,3
+yueyuebetty,24719063,3
+61584024,24719063,5
+53785185,24719063,3
+chilva,24719063,5
+douxiuwei,24719063,5
+still21,24719063,4
+56609733,24719063,4
+ticky77,24719063,4
+Arabian_mu,24719063,5
+chantelle-ria,24719063,4
+45507123,24719063,3
+63798164,24719063,4
+xiaohongchenlin,24719063,5
+aiyaxiaomeng,24719063,5
+singing_bird,24719063,4
+65124379,24719063,3
+95313700,24719063,4
+westerngarden,24719063,4
+117360867,24719063,4
+carolye,24719063,5
+37871722,24719063,4
+helen2,24719063,5
+69398497,24719063,5
+55932326,24719063,4
+8242631,24719063,4
+18045809,24719063,3
+zhuweina,24719063,4
+gohoneyBqinzhu,24719063,5
+94276610,24719063,3
+91024079,24719063,5
+92230776,24719063,4
+87843873,24719063,3
+hrimthurs,24719063,4
+yhlalala,24719063,3
+103235720,24719063,5
+ivyshao,24719063,4
+105405230,24719063,3
+Joeroad,24719063,3
+yiwaishunji,24719063,5
+2716244,24719063,5
+buchimifan,24719063,3
+46359237,24719063,3
+tomatooo,24719063,4
+lina_fu,24719063,5
+1026974,24719063,3
+44206391,24719063,4
+49166988,24719063,4
+50620996,24719063,5
+54869727,24719063,4
+57642444,24719063,3
+123067666,24719063,5
+dorisfeng520,24719063,4
+edgeyeung,24719063,5
+81619942,24719063,4
+45914122,24719063,5
+AeroAnte,24719063,3
+houyizhong,24719063,3
+121968496,24719063,4
+66938164,24719063,3
+robinlei,24719063,5
+62601567,24719063,4
+51082446,24719063,3
+57800655,24719063,4
+56444863,24719063,3
+65939641,24719063,3
+veronicawu1982,24719063,4
+49541222,24719063,5
+3895533,24719063,3
+40299768,24719063,5
+liveevil,24719063,3
+43778462,24719063,-1
+35877038,24719063,5
+junya,24719063,4
+Southernghost,24719063,-1
+46912803,24719063,3
+Janddie,24719063,4
+datudoudatudou,24719063,4
+xiaokaike,24719063,4
+47405308,24719063,4
+49465683,24719063,5
+47549750,24719063,4
+70782020,24719063,4
+70984488,24719063,5
+sheep29,24719063,5
+ainda423,24719063,4
+52822779,24719063,4
+bugsula,24719063,3
+RedSnowRose,24719063,4
+pengpeng_0926,24719063,5
+violalululu,24719063,4
+58955452,24719063,2
+50963579,24719063,4
+48032170,24719063,3
+alivinlondonl,24719063,3
+Jalapa,24719063,3
+45660957,24719063,4
+idlelz,24719063,3
+69621575,24719063,4
+62926962,24719063,5
+4765195,24719063,4
+ld0717,24719063,5
+39003448,24719063,5
+12228075,24719063,5
+76656300,24719063,4
+samkaka,24719063,5
+lily1419,24719063,3
+dengbanqiao,24719063,4
+70451033,24719063,4
+doushabaoKG,24719063,4
+Kingnima,24719063,3
+48446948,24719063,3
+34502375,24719063,4
+103751698,24719063,4
+goldensunflower,24719063,-1
+loribo,24719063,5
+119802529,24719063,3
+65998081,24719063,3
+imPluto,24719063,5
+1182787,24719063,4
+2574856,24719063,4
+40335342,24719063,3
+northbt,24719063,4
+35348647,24719063,5
+holeofstone,24719063,4
+1680555,24719063,5
+77581771,24719063,5
+3674325,24719063,5
+lostshore,24719063,4
+49809074,24719063,4
+60340976,24719063,4
+suncup,24719063,4
+4192759,24719063,4
+1886453,24719063,4
+2868760,24719063,3
+morning.garden,24719063,4
+120342469,24719063,3
+35371266,24719063,4
+57383545,24719063,3
+38487515,24719063,5
+133207476,24719063,4
+WangXuejing,24719063,5
+yyhome,24719063,5
+3679180,24719063,3
+tonyleslie,24719063,4
+black201,24719063,4
+63300404,24719063,5
+122327323,24719063,5
+71575345,24719063,4
+51075752,24719063,5
+114422467,24719063,4
+2670607,24719063,4
+59608731,24719063,4
+119852340,24719063,4
+78696619,24719063,1
+42321344,24719063,3
+4241744,24719063,5
+123468005,24719063,5
+123468005,24719063,5
+ecstasybird,24719063,3
+54791351,24719063,4
+40044511,24719063,4
+132695946,24719063,3
+3880942,24719063,2
+nangle,24719063,3
+48206799,24719063,5
+benben76,24719063,5
+41437311,24719063,4
+34187825,24719063,3
+69067345,24719063,4
+lzgnzw,24719063,5
+78858017,24719063,4
+Smileysnow,24719063,4
+49549223,24719063,4
+wuxiaominghan,24719063,4
+swy929,24719063,4
+zran0609,24719063,5
+92206840,24719063,4
+4327225,24719063,5
+46346813,24719063,4
+56884321,24719063,3
+102104781,24719063,5
+guoxiaolu1447,24719063,3
+42967448,24719063,4
+VZ---LZW,24719063,4
+29710107,24719063,5
+50397770,24719063,4
+122662265,24719063,5
+BURIALBLACK,24719063,3
+libaokui,24719063,4
+82065150,24719063,3
+Guessdache,24719063,3
+64689584,24719063,4
+goonerhuwenbo,24719063,4
+ym_199355,24719063,4
+48094617,24719063,3
+MapleWY1106,24719063,3
+chic1206,24719063,4
+102342515,24719063,5
+66778770,24719063,4
+kazuha,24719063,4
+53323494,24719063,4
+76600314,24719063,4
+46308834,24719063,5
+fafashit,24719063,4
+zeph1462,24719063,3
+melodygxl,24719063,4
+119203760,24719063,3
+Seagull816,24719063,4
+49983246,24719063,4
+125987838,24719063,3
+47749365,24719063,5
+3438528,24719063,4
+45347825,24719063,4
+127298095,24719063,4
+53561598,24719063,4
+58890200,24719063,5
+10277852,24719063,4
+79503433,24719063,4
+10969265,24719063,5
+15163122,24719063,4
+a529105502,24719063,5
+58519022,24719063,4
+seventeenF,24719063,4
+48322771,24719063,4
+52763172,24719063,4
+52858125,24719063,3
+131560812,24719063,3
+jefffeihead,24719063,2
+maggieleehom,24719063,3
+anytang,24719063,4
+50465911,24719063,3
+henry929,24719063,4
+61750586,24719063,3
+wangyi2011,24719063,4
+2420853,24719063,4
+55309786,24719063,5
+leonmai,24719063,3
+sunzning,24719063,5
+cassieee,24719063,5
+koushisi,24719063,5
+31816905,24719063,5
+woniumm,24719063,4
+66738919,24719063,5
+70749635,24719063,5
+115702103,24719063,3
+angelchen1990,24719063,4
+40396294,24719063,4
+68757762,24719063,4
+wanru904,24719063,5
+46521847,24719063,4
+nelatever,24719063,5
+48832540,24719063,3
+JoeBazinga,24719063,4
+98878060,24719063,5
+54143048,24719063,4
+1711718,24719063,4
+xiaojuner12,24719063,4
+60142596,24719063,3
+39849995,24719063,4
+93455705,24719063,4
+xd880820,24719063,3
+momodejulien,24719063,4
+62945794,24719063,4
+2187534,24719063,3
+varonika,24719063,3
+AirScript,24719063,4
+59540342,24719063,-1
+shopkee,24719063,4
+43616371,24719063,4
+champernova0507,24719063,4
+mirccccco,24719063,5
+3243634,24719063,3
+44282986,24719063,4
+71408490,24719063,5
+133859876,24719063,4
+ruiqigreen,24719063,5
+62778442,24719063,5
+antebellum,24719063,4
+56394106,24719063,5
+yinchouyunv,24719063,4
+coual,24719063,5
+36664214,24719063,4
+bostonivy,24719063,3
+49134940,24719063,4
+Lizyjs,24719063,3
+larou,24719063,5
+sxhour,24719063,4
+16707777,24719063,4
+65086870,24719063,5
+grani_air,24719063,3
+68765447,24719063,4
+46039239,24719063,5
+reneesnow,24719063,4
+1687247,24719063,5
+47519598,24719063,5
+41214988,24719063,5
+29458018,24719063,4
+lixiaguniang,24719063,4
+102648565,24719063,4
+vivianenjoying,24719063,3
+59537499,24719063,5
+47632513,24719063,5
+unclepenguin,24719063,5
+2987938,24719063,4
+131006631,24719063,4
+30098194,24719063,5
+anthoni0711,24719063,-1
+67619742,24719063,3
+58673001,24719063,4
+Dawnhayden,24719063,5
+60765623,24719063,5
+42692898,24719063,3
+biskup,24719063,4
+78192927,24719063,4
+44761018,24719063,4
+46288454,24719063,5
+arys-mao,24719063,4
+baboerben,24719063,3
+69706653,24719063,4
+3076248,24719063,5
+wndc44,24719063,4
+wnnawnn,24719063,5
+3521458,24719063,4
+grayglass,24719063,4
+K-majorniannian,24719063,5
+1194630,24719063,4
+Isabella_Meow,24719063,4
+76496998,24719063,4
+Dling-YYY,24719063,4
+cuodou,24719063,5
+47840013,24719063,4
+133073155,24719063,4
+64451038,24719063,-1
+58646370,24719063,3
+57249703,24719063,5
+63170647,24719063,3
+52244445,24719063,5
+Tangme,24719063,4
+maggieloveshow,24719063,4
+pansin,24719063,5
+61597899,24719063,5
+61457577,24719063,4
+lizzywoo,24719063,4
+54008688,24719063,4
+44159956,24719063,4
+gogosummer,24719063,4
+97516671,24719063,5
+73061172,24719063,5
+120391642,24719063,5
+lionbiscuit,24719063,3
+juliqian,24719063,5
+49719620,24719063,4
+C37twocold,24719063,4
+cherryli5288,24719063,3
+LittleprinceAmy,24719063,3
+44258193,24719063,3
+littlesheeta,24719063,3
+83472025,24719063,4
+3540030,24719063,4
+nolanjr,24719063,3
+59977273,24719063,4
+4537991,24719063,5
+ImEm,24719063,4
+97189453,24719063,4
+vane37,24719063,5
+43639134,24719063,3
+muyeah,24719063,3
+63095265,24719063,4
+85739611,24719063,3
+kinso,24719063,5
+119834273,24719063,4
+30467177,24719063,5
+2754204,24719063,4
+31512396,24719063,5
+38445269,24719063,4
+2181746,24719063,5
+imlarisa,24719063,3
+imlarisa,24719063,3
+49072774,24719063,4
+6440487,24719063,5
+1368059,24719063,4
+83953116,24719063,4
+114436165,24719063,5
+59116425,24719063,4
+67812928,24719063,4
+39108497,24719063,5
+55979390,24719063,4
+48440999,24719063,4
+2835535,24719063,5
+4753861,24719063,4
+twitodd,24719063,4
+guoyandao,24719063,4
+3787268,24719063,4
+3581917,24719063,4
+51496107,24719063,4
+65458998,24719063,3
+31205863,24719063,4
+62307805,24719063,4
+124694624,24719063,4
+48639532,24719063,4
+2107434,24719063,3
+56683333,24719063,4
+45256525,24719063,5
+47096545,24719063,4
+1730018,24719063,4
+119078867,24719063,3
+11020421,24719063,4
+44010009,24719063,3
+3042446,24719063,5
+6245278,24719063,5
+yanya,24719063,-1
+69321134,24719063,5
+87885475,24719063,3
+34394752,24719063,4
+51485225,24719063,3
+chengzishijian,24719063,4
+2664514,24719063,5
+66120313,24719063,5
+C7chuqi,24719063,5
+chenxiaodong,24719063,4
+yangqiaohe,24719063,3
+lucas90hou,24719063,3
+63805238,24719063,4
+48292310,24719063,3
+46281534,24719063,4
+10321693,24719063,5
+82926976,24719063,4
+2770592,24719063,5
+HHHLLLDDD,24719063,3
+48713524,24719063,4
+63893254,24719063,4
+57479148,24719063,5
+CatcherinRay,24719063,-1
+69986931,24719063,3
+1617591,24719063,4
+44733526,24719063,4
+meow-3-,24719063,-1
+meow-3-,24719063,-1
+renchenwei,24719063,5
+40547313,24719063,4
+54868324,24719063,5
+47211975,24719063,4
+lirui_sun,24719063,4
+dazhuang1990,24719063,3
+demoncat,24719063,4
+1815039,24719063,3
+86208688,24719063,3
+32693161,24719063,5
+100225263,24719063,5
+natsunokaori,24719063,-1
+59827468,24719063,5
+49586963,24719063,5
+50235761,24719063,4
+48523760,24719063,4
+68200387,24719063,3
+superbin1014,24719063,5
+48997423,24719063,4
+79384441,24719063,4
+remenbercc,24719063,5
+102644288,24719063,3
+103370606,24719063,3
+25569564,24719063,4
+ashuimmer,24719063,4
+4489482,24719063,4
+103712811,24719063,3
+127708051,24719063,3
+51457792,24719063,4
+mackalex,24719063,3
+56388358,24719063,4
+55319176,24719063,4
+Cherrie.,24719063,4
+53201983,24719063,4
+2265374,24719063,5
+xbegg,24719063,4
+3539441,24719063,5
+theyear,24719063,4
+66537516,24719063,3
+amhuming,24719063,4
+124156748,24719063,5
+64579754,24719063,4
+leexiang,24719063,4
+34943086,24719063,3
+68111480,24719063,3
+50848466,24719063,3
+50036747,24719063,5
+79089179,24719063,5
+39255373,24719063,4
+onlyYH,24719063,3
+28556542,24719063,3
+feelzyl,24719063,5
+36119710,24719063,5
+Elsa-Young,24719063,3
+43680833,24719063,5
+131104086,24719063,3
+47461790,24719063,3
+102238622,24719063,5
+53044283,24719063,4
+53823594,24719063,5
+67331770,24719063,5
+61807648,24719063,3
+53401173,24719063,4
+miaomiao19,24719063,5
+37746468,24719063,4
+35252346,24719063,5
+82353804,24719063,3
+34310004,24719063,4
+cenning21,24719063,4
+Mayuyulover,24719063,4
+67192113,24719063,5
+58020491,24719063,4
+59401860,24719063,5
+chidaoshu,24719063,4
+yyqzy,24719063,5
+howaboutthis,24719063,4
+ChenSuXuan,24719063,5
+yanhaolee,24719063,3
+56827914,24719063,5
+for1007,24719063,3
+lrq92livecn,24719063,5
+2711829,24719063,3
+49422565,24719063,4
+gu2evit,24719063,5
+viviwanghoho,24719063,5
+77755619,24719063,4
+48949931,24719063,4
+78547471,24719063,5
+flyinhigh,24719063,4
+52344572,24719063,3
+shuzai97,24719063,4
+70439283,24719063,4
+46276564,24719063,4
+3009629,24719063,5
+54909533,24719063,3
+stanup,24719063,4
+3148205,24719063,3
+70432324,24719063,4
+danielc,24719063,5
+lotas,24719063,4
+122431988,24719063,3
+serein0423,24719063,5
+62236355,24719063,3
+1104784,24719063,1
+lord_sima,24719063,3
+slightkii,24719063,4
+Ray_u,24719063,3
+vincentwsf,24719063,4
+bombman,24719063,5
+58340454,24719063,4
+s1975,24719063,4
+moxiaocai,24719063,5
+baleyang,24719063,4
+72878510,24719063,3
+67678767,24719063,4
+cinic0018,24719063,5
+wbsiceberg,24719063,4
+45789022,24719063,5
+1628930,24719063,3
+BritpopStarFeel,24719063,4
+zchou,24719063,4
+65107995,24719063,3
+81079163,24719063,4
+119062503,24719063,3
+35815787,24719063,3
+2213454,24719063,3
+55436217,24719063,4
+miss_xiaoxiao,24719063,5
+guihan,24719063,4
+yoky,24719063,3
+62418670,24719063,3
+2326685,24719063,4
+yimaer,24719063,4
+yumu2015,24719063,3
+37958947,24719063,4
+Serena_0512,24719063,-1
+55977195,24719063,3
+82367118,24719063,4
+cchestnut,24719063,4
+53357389,24719063,5
+102184386,24719063,5
+lolitahanhan,24719063,3
+latml,24719063,5
+CrossGigi,24719063,4
+nnyyamm,24719063,-1
+2715466,24719063,3
+4311389,24719063,3
+83475018,24719063,4
+xxxdorisxxx,24719063,1
+52390173,24719063,3
+liuxiyue,24719063,4
+jinsapphi,24719063,1
+59346098,24719063,4
+chenlp,24719063,4
+119934029,24719063,5
+1094981,24719063,4
+tree-mu,24719063,4
+112793886,24719063,4
+46871806,24719063,5
+26545118,24719063,4
+dragonflypedals,24719063,4
+yue919,24719063,4
+55286449,24719063,5
+airpot,24719063,5
+75251256,24719063,4
+133212878,24719063,3
+wohouhou,24719063,4
+92850508,24719063,4
+kiara1988,24719063,4
+53397454,24719063,4
+1820276,24719063,5
+59311720,24719063,4
+123589692,24719063,4
+78270325,24719063,3
+baozha,24719063,4
+58042507,24719063,3
+nknemo,24719063,-1
+7556467,24719063,3
+64041275,24719063,4
+elainehsu,24719063,4
+matengfei27,24719063,5
+backstreetcat,24719063,3
+79896532,24719063,4
+70066511,24719063,5
+3202447,24719063,3
+49435214,24719063,5
+64755839,24719063,3
+datouningmeng,24719063,4
+feilong880928,24719063,4
+qiu_liang,24719063,4
+120287477,24719063,3
+45179892,24719063,5
+31082153,24719063,4
+duhuitang,24719063,4
+35315925,24719063,4
+pws2008,24719063,4
+78833399,24719063,4
+xjh0509,24719063,4
+125650125,24719063,4
+Qooo,24719063,4
+beifangzhibei,24719063,4
+52823077,24719063,4
+53624567,24719063,3
+8836079,24719063,4
+moooote,24719063,4
+13600561,24719063,4
+76395595,24719063,5
+102727851,24719063,4
+chede,24719063,3
+cheng-hang,24719063,4
+yangmianyang,24719063,4
+129338201,24719063,4
+2202810,24719063,4
+48056684,24719063,3
+120251786,24719063,4
+joko14,24719063,4
+jieup,24719063,3
+131053361,24719063,3
+winniecattie,24719063,3
+61171378,24719063,3
+41107629,24719063,-1
+103681391,24719063,5
+64622433,24719063,3
+mccoy16,24719063,4
+39168659,24719063,4
+sanxo,24719063,3
+chris5569,24719063,5
+49754687,24719063,3
+68593933,24719063,4
+82463994,24719063,4
+fairyhui521,24719063,4
+102627576,24719063,5
+68880594,24719063,5
+fuloli,24719063,5
+3612615,24719063,3
+xiekaiwait,24719063,4
+92364458,24719063,4
+limpidness,24719063,3
+56797290,24719063,5
+43214237,24719063,5
+eliachu,24719063,3
+62278686,24719063,4
+eznf,24719063,4
+JingS,24719063,3
+DUNHILLJJ,24719063,3
+47212439,24719063,5
+passionless,24719063,3
+46738101,24719063,3
+eileen0817,24719063,4
+JustKZ,24719063,4
+zhangyanyu,24719063,4
+39336749,24719063,4
+115381052,24719063,4
+53531508,24719063,4
+3006948,24719063,5
+yylovekhalil,24719063,5
+guthrun,24719063,3
+76556131,24719063,5
+4157643,24719063,4
+3325711,24719063,4
+46644410,24719063,4
+missingworld,24719063,5
+etercloud,24719063,3
+3741660,24719063,4
+amilkbox,24719063,3
+55622314,24719063,3
+SuzumiyaHaruhi,24719063,5
+guanwaiguicai,24719063,3
+54728119,24719063,3
+ganganjj,24719063,5
+42661364,24719063,4
+65367093,24719063,3
+sodasue,24719063,3
+116391652,24719063,4
+cheshiredoc,24719063,4
+kathytop,24719063,4
+superbjs,24719063,3
+noheartcat,24719063,5
+115497658,24719063,5
+88148584,24719063,5
+53539766,24719063,3
+3341499,24719063,4
+57103988,24719063,4
+45686083,24719063,4
+mufanxuanji,24719063,4
+65736985,24719063,4
+ysdj,24719063,3
+jszh,24719063,4
+chenhongyu1222,24719063,5
+52685413,24719063,4
+129096085,24719063,3
+4537833,24719063,4
+3943602,24719063,5
+Ryan1360,24719063,3
+2726477,24719063,3
+craystal,24719063,4
+tangmy,24719063,5
+47546589,24719063,4
+aboutdistance,24719063,2
+48596471,24719063,3
+AveryShen,24719063,4
+bismorgen,24719063,4
+63327830,24719063,5
+sunbiyu,24719063,4
+5904403,24719063,5
+meizizibaby,24719063,3
+marshall,24719063,4
+mrlp,24719063,3
+60425780,24719063,3
+58060314,24719063,5
+56824817,24719063,3
+js10410,24719063,5
+21024728,24719063,5
+88865433,24719063,4
+125411012,24719063,4
+geeoff,24719063,5
+2831524,24719063,4
+84003620,24719063,4
+babakazu,24719063,1
+jqcx,24719063,5
+66234722,24719063,4
+58567505,24719063,3
+3693808,24719063,4
+leftone,24719063,4
+2600693,24719063,4
+52359235,24719063,4
+119943904,24719063,3
+75651301,24719063,4
+hollyvan,24719063,3
+67103907,24719063,4
+91584041,24719063,5
+78263023,24719063,4
+enena,24719063,3
+62453612,24719063,3
+aisa395,24719063,4
+mini.0214.ai,24719063,4
+90127295,24719063,4
+formeswong,24719063,4
+rakkaus,24719063,4
+Ertu,24719063,4
+59625394,24719063,4
+renzrxly,24719063,4
+61532678,24719063,4
+nintendog,24719063,3
+Benchencheng,24719063,5
+49095314,24719063,5
+53513481,24719063,4
+91367427,24719063,5
+58929132,24719063,3
+53802482,24719063,5
+73536867,24719063,5
+45107925,24719063,5
+lhacs,24719063,5
+3830500,24719063,3
+4537211,24719063,3
+49031985,24719063,5
+52341297,24719063,5
+guooyi,24719063,4
+hrcforever,24719063,5
+binbinteamo,24719063,4
+ZRWei,24719063,4
+81273832,24719063,3
+55411746,24719063,4
+1484764,24719063,5
+41648161,24719063,4
+78793402,24719063,4
+amour1,24719063,4
+45008056,24719063,4
+115827848,24719063,5
+46454476,24719063,5
+51300065,24719063,3
+2980674,24719063,4
+kkshopcc,24719063,4
+phl745,24719063,3
+64162088,24719063,4
+tiffanieee,24719063,4
+59040514,24719063,4
+48180482,24719063,5
+33569099,24719063,3
+87498473,24719063,5
+103081300,24719063,4
+3934064,24719063,4
+sokuuu,24719063,3
+59911032,24719063,5
+36342492,24719063,3
+79750101,24719063,4
+51416899,24719063,4
+24322539,24719063,4
+marthachan,24719063,4
+2825367,24719063,4
+waldo0121,24719063,4
+84566790,24719063,4
+97880539,24719063,4
+49079570,24719063,3
+2011733,24719063,5
+4480754,24719063,4
+karlchan-cn,24719063,3
+46039104,24719063,3
+53507443,24719063,4
+39991969,24719063,5
+62603998,24719063,4
+120831081,24719063,5
+99922140,24719063,4
+prinkanjou,24719063,-1
+oliver330,24719063,4
+60136071,24719063,2
+julia_qi,24719063,4
+lovezhuangjia,24719063,5
+huachichi,24719063,5
+chier,24719063,4
+balelovesqian,24719063,2
+61485332,24719063,3
+SteelZhao,24719063,5
+111826997,24719063,4
+lavitelloni,24719063,3
+131368901,24719063,4
+shutantan,24719063,3
+54740807,24719063,4
+54887591,24719063,4
+hippokun,24719063,4
+97185474,24719063,3
+103024790,24719063,4
+59272939,24719063,4
+jxxyych,24719063,4
+54217571,24719063,4
+120421429,24719063,3
+luoxugeng12581,24719063,4
+35373128,24719063,4
+49712766,24719063,4
+Fay59,24719063,4
+51658777,24719063,2
+aaronfighting,24719063,4
+61376673,24719063,3
+68979870,24719063,5
+chumin201111,24719063,5
+7510013,24719063,3
+27676863,24719063,5
+kongyan15,24719063,3
+26466971,24719063,4
+7669558,24719063,2
+99329587,24719063,4
+rionysus,24719063,3
+34881096,24719063,4
+122999824,24719063,5
+69773402,24719063,4
+3502559,24719063,4
+64144180,24719063,3
+kjslove,24719063,5
+50415311,24719063,5
+54795000,24719063,5
+VLR,24719063,5
+cl1235,24719063,4
+53446478,24719063,3
+52674525,24719063,4
+104777463,24719063,4
+78651458,24719063,4
+83619970,24719063,3
+131521315,24719063,5
+49003081,24719063,4
+echozhan,24719063,4
+36043786,24719063,4
+69165098,24719063,3
+47885797,24719063,4
+cctongxue,24719063,-1
+emmalty,24719063,4
+ereen_45,24719063,-1
+56971084,24719063,4
+55874640,24719063,4
+Miss.Hyacinth,24719063,4
+39923615,24719063,3
+60717435,24719063,5
+gachapin1103,24719063,4
+74775337,24719063,5
+youngspring,24719063,3
+4428446,24719063,4
+Pheona,24719063,5
+131039568,24719063,5
+nishibaichi,24719063,3
+54989899,24719063,4
+lovehotnine,24719063,4
+67305392,24719063,4
+41296268,24719063,4
+3891395,24719063,4
+64479470,24719063,4
+62124507,24719063,5
+2935013,24719063,2
+82817021,24719063,4
+50598564,24719063,5
+55910584,24719063,4
+133009889,24719063,3
+54422637,24719063,4
+lihui_tiger,24719063,4
+66232190,24719063,4
+noenough,24719063,4
+76306117,24719063,4
+tomoohayou,24719063,3
+55980716,24719063,5
+leabc,24719063,5
+129255326,24719063,4
+49847024,24719063,4
+4111457,24719063,4
+46906871,24719063,4
+50126537,24719063,5
+sugarmao,24719063,4
+3413503,24719063,5
+120529040,24719063,3
+xiuwusay,24719063,4
+briteching,24719063,4
+71829281,24719063,3
+RogerL,24719063,4
+huliaoya,24719063,3
+shelley0711,24719063,5
+93892137,24719063,3
+3783693,24719063,5
+jbecks,24719063,4
+LeeMar,24719063,3
+c2h4cn,24719063,4
+cca2222223,24719063,4
+131814242,24719063,3
+3432762,24719063,4
+bearblindman,24719063,3
+62532312,24719063,3
+4408577,24719063,5
+66217108,24719063,5
+kelet,24719063,4
+51100692,24719063,4
+Azuloscurocasin,24719063,3
+Ahang05,24719063,5
+kangziwei,24719063,3
+133401752,24719063,3
+Chayhaw,24719063,4
+41127479,24719063,4
+aumoli,24719063,4
+vforvv,24719063,5
+sxdwzwq,24719063,4
+52442754,24719063,4
+lazylauren,24719063,4
+54106582,24719063,4
+jump28157,24719063,4
+potassi_mcyanid,24719063,4
+49772248,24719063,4
+59197107,24719063,4
+59471293,24719063,5
+56005092,24719063,5
+3640414,24719063,3
+smilehuhu,24719063,5
+SK1d125,24719063,4
+4568311,24719063,4
+60826315,24719063,3
+xiaoyememories,24719063,4
+61613739,24719063,5
+106584887,24719063,4
+2855251,24719063,4
+jiaping53,24719063,3
+116271195,24719063,4
+121973029,24719063,5
+Annlee1891,24719063,3
+49171184,24719063,3
+56487740,24719063,4
+u2bb,24719063,4
+47470232,24719063,4
+daiyuanvian,24719063,5
+46507893,24719063,4
+nathanyun,24719063,3
+21074898,24719063,4
+changtengteng,24719063,5
+sqd080,24719063,5
+25664582,24719063,3
+125455262,24719063,5
+74170581,24719063,2
+fmstone,24719063,4
+firstandforever,24719063,5
+bogjebote,24719063,1
+50754510,24719063,4
+53140684,24719063,4
+36556180,24719063,4
+68877495,24719063,4
+68447756,24719063,4
+119123981,24719063,4
+Taniwha,24719063,5
+133254262,24719063,4
+acha13,24719063,4
+pagekteng,24719063,4
+XIAOTUTONG,24719063,4
+49473461,24719063,4
+69850021,24719063,5
+66816646,24719063,3
+beilabeila,24719063,4
+48353133,24719063,5
+55806671,24719063,4
+31948446,24719063,4
+51387684,24719063,4
+autumnalequinox,24719063,4
+Tracy1230,24719063,2
+75823417,24719063,3
+situxx,24719063,4
+66537927,24719063,5
+121055562,24719063,4
+zhangying0913,24719063,4
+4045398,24719063,5
+1639755,24719063,2
+53304881,24719063,2
+3619392,24719063,5
+22137040,24719063,3
+rollarrolland,24719063,5
+57844107,24719063,5
+43773252,24719063,4
+3307485,24719063,4
+48930135,24719063,5
+1095652,24719063,3
+atengbrilliance,24719063,4
+oldwolfnwf,24719063,4
+river_me1212,24719063,5
+S-hushubao,24719063,3
+photoshopper,24719063,1
+Jo--Jo,24719063,5
+79948176,24719063,5
+122069721,24719063,4
+4015260,24719063,5
+58160746,24719063,4
+121330964,24719063,5
+72175536,24719063,3
+earthquakes,24719063,3
+32022842,24719063,4
+42884870,24719063,3
+FerrariCake,24719063,5
+dahui,24719063,3
+mickyxj,24719063,3
+68570855,24719063,3
+47325319,24719063,3
+withmydog,24719063,4
+87930236,24719063,4
+xxtd,24719063,5
+58149235,24719063,4
+48419960,24719063,4
+121700755,24719063,5
+127771292,24719063,4
+lhnlyons,24719063,5
+102872954,24719063,3
+baby861708,24719063,4
+2183313,24719063,5
+48857710,24719063,3
+aprilliusiyue,24719063,5
+83164836,24719063,3
+muyixiaoan,24719063,4
+rickydna,24719063,3
+62221934,24719063,3
+fomalhaut,24719063,5
+keishady,24719063,4
+82217473,24719063,4
+79071322,24719063,4
+4610304,24719063,4
+xxxiyybabe,24719063,4
+moguduola,24719063,4
+50996205,24719063,3
+alfiestudio,24719063,4
+59591713,24719063,4
+45892109,24719063,4
+93967033,24719063,4
+Rubbish_,24719063,3
+andy-channel,24719063,5
+swingzhu,24719063,4
+67007418,24719063,4
+enberry,24719063,4
+67765216,24719063,3
+univercen,24719063,4
+64741757,24719063,5
+she2d,24719063,4
+47187723,24719063,2
+97291454,24719063,3
+49757869,24719063,3
+yidagege,24719063,4
+61247946,24719063,5
+itszjy,24719063,4
+shinemypolaris,24719063,4
+3475951,24719063,4
+summeric,24719063,4
+75338620,24719063,4
+68989098,24719063,3
+purestar,24719063,4
+yanyu_r,24719063,5
+61328607,24719063,5
+89619051,24719063,5
+57542378,24719063,3
+52388273,24719063,4
+41873904,24719063,3
+56924966,24719063,4
+zzzzzmc,24719063,4
+92183540,24719063,5
+65430008,24719063,3
+54649692,24719063,2
+Lolita1881,24719063,5
+49214798,24719063,5
+40254571,24719063,4
+55624184,24719063,3
+4405260,24719063,2
+kakaitachi,24719063,4
+131367658,24719063,4
+125111991,24719063,4
+129012253,24719063,4
+plvangogh,24719063,4
+xiangdahai,24719063,4
+bobim,24719063,3
+ihuxiaoyi,24719063,5
+63412313,24719063,4
+1586971,24719063,3
+47277729,24719063,4
+hotonwang,24719063,3
+65534750,24719063,4
+57986340,24719063,4
+shennanqing,24719063,4
+47887275,24719063,4
+121085525,24719063,5
+2940531,24719063,3
+gongzitian,24719063,4
+ginanonymous,24719063,4
+blessedme,24719063,3
+monkeyfish,24719063,4
+53231469,24719063,4
+49251016,24719063,3
+66528852,24719063,4
+72924510,24719063,3
+sunnyisle,24719063,3
+47265787,24719063,4
+61706380,24719063,5
+35904729,24719063,4
+submarineyy,24719063,5
+43484054,24719063,1
+3147178,24719063,5
+luxifero,24719063,4
+chemicalromance,24719063,4
+57479988,24719063,4
+1509986,24719063,4
+43683389,24719063,3
+xinxinbaby,24719063,5
+49229234,24719063,4
+128580925,24719063,4
+an_blue,24719063,5
+55822408,24719063,4
+44535286,24719063,3
+122130571,24719063,1
+82437320,24719063,4
+ZeRo.0821,24719063,3
+Rojalus,24719063,5
+31749291,24719063,4
+toxichoco,24719063,3
+47619273,24719063,4
+60722327,24719063,5
+bbzinuk,24719063,3
+49926639,24719063,5
+cairstiona,24719063,3
+67815505,24719063,4
+61771440,24719063,5
+Am0ooooo,24719063,5
+60988503,24719063,4
+62270641,24719063,5
+98890233,24719063,5
+59080310,24719063,4
+zhuakuangshitai,24719063,3
+viruskid,24719063,4
+51162987,24719063,4
+54131572,24719063,3
+67727072,24719063,4
+132410493,24719063,4
+yangzu45,24719063,3
+40662513,24719063,4
+47833189,24719063,2
+39095297,24719063,3
+38924002,24719063,5
+65529304,24719063,5
+81923930,24719063,3
+3758504,24719063,4
+3748350,24719063,4
+89014946,24719063,5
+69453989,24719063,5
+54986489,24719063,4
+49056559,24719063,4
+68162187,24719063,4
+53085336,24719063,3
+53085336,24719063,3
+59134594,24719063,3
+prague2046,24719063,4
+Kishimushroom,24719063,4
+97491371,24719063,5
+132764273,24719063,3
+35283096,24719063,4
+excelgirl,24719063,3
+gaga00,24719063,4
+68990799,24719063,5
+happyencai,24719063,3
+48863239,24719063,3
+op5411,24719063,3
+30562566,24719063,4
+102368955,24719063,3
+xiguatang,24719063,4
+daisylook,24719063,4
+47029943,24719063,5
+58023093,24719063,4
+49190910,24719063,4
+47302352,24719063,4
+83708009,24719063,5
+MR_CHEN,24719063,-1
+2830829,24719063,-1
+1263662,24719063,5
+49983823,24719063,3
+4262218,24719063,4
+120862996,24719063,4
+64429364,24719063,4
+orry-lee,24719063,4
+musicphoto,24719063,5
+57223749,24719063,4
+99784458,24719063,3
+wleii,24719063,3
+53932937,24719063,5
+50116996,24719063,4
+50405161,24719063,3
+infinitezzq,24719063,4
+2911617,24719063,4
+131385202,24719063,4
+zxguoguo,24719063,3
+liayuan,24719063,4
+yijingsheng,24719063,4
+sjdjayjj,24719063,5
+1599200,24719063,5
+46780682,24719063,3
+mylovelylove,24719063,2
+MISS--Z,24719063,4
+126248170,24719063,5
+yyh,24719063,4
+7549744,24719063,5
+61235459,24719063,5
+45483407,24719063,5
+huangbula,24719063,3
+kangtacaty,24719063,3
+59596431,24719063,4
+38958178,24719063,5
+tongyc8844,24719063,4
+63777033,24719063,4
+130473399,24719063,4
+2858394,24719063,4
+46983705,24719063,5
+liusuer,24719063,5
+wodetade,24719063,4
+2266961,24719063,5
+82219820,24719063,5
+60582285,24719063,4
+63656533,24719063,5
+7735198,24719063,4
+41889360,24719063,4
+54782824,24719063,4
+emchan,24719063,5
+double_JM,24719063,4
+52477984,24719063,4
+2840463,24719063,2
+43560923,24719063,4
+froggrandpa,24719063,4
+2021116,24719063,4
+47828944,24719063,4
+57425095,24719063,-1
+95937050,24719063,4
+48049450,24719063,3
+88327119,24719063,4
+1416324,24719063,4
+easonlau,24719063,4
+rabbitfish,24719063,4
+leslied41,24719063,3
+48604788,24719063,5
+32931583,24719063,4
+4222468,24719063,4
+pink_water,24719063,5
+56620067,24719063,3
+feesle,24719063,4
+lumin555,24719063,4
+47464664,24719063,4
+sky-Atlas,24719063,5
+73281520,24719063,3
+ew94kmd,24719063,5
+125801421,24719063,5
+43699457,24719063,5
+50191994,24719063,4
+64828240,24719063,4
+4101720,24719063,4
+50245903,24719063,4
+1179798,24719063,3
+84042964,24719063,3
+1826946,24719063,3
+40591271,24719063,4
+1605000,24719063,3
+leon115,24719063,4
+46061693,24719063,5
+75215072,24719063,4
+roboto,24719063,3
+chrissie619108,24719063,4
+VastOpen,24719063,3
+dante1224,24719063,4
+2231121,24719063,2
+56374175,24719063,4
+princeW,24719063,4
+4636845,24719063,5
+ithen,24719063,5
+blase_pp,24719063,4
+zhuxiansheng,24719063,4
+50179203,24719063,4
+hanxiaonuan,24719063,3
+wanfanhua,24719063,3
+67460075,24719063,4
+meijiangshi,24719063,3
+4592364,24719063,2
+43634472,24719063,3
+47117725,24719063,4
+3520940,24719063,3
+71176894,24719063,4
+lizhiqiang127,24719063,5
+65898593,24719063,3
+115762056,24719063,5
+44499287,24719063,3
+vivilida,24719063,3
+45653571,24719063,4
+58774315,24719063,5
+lululovexiah,24719063,-1
+logicmd,24719063,4
+89407486,24719063,5
+84433988,24719063,3
+zhengxiaolv,24719063,4
+lingxishuyu,24719063,4
+58913635,24719063,4
+71389371,24719063,5
+dwindywen,24719063,4
+shxhkun,24719063,3
+84599050,24719063,4
+2556660,24719063,4
+67653468,24719063,3
+68736398,24719063,3
+jinnjinnee,24719063,4
+61461484,24719063,5
+Q_____Q,24719063,3
+50256249,24719063,3
+58594728,24719063,4
+yuanazha,24719063,4
+61132884,24719063,4
+2847632,24719063,3
+4294244,24719063,4
+lizishu1991,24719063,5
+3755946,24719063,5
+49441461,24719063,5
+44903919,24719063,5
+2110865,24719063,4
+60979573,24719063,4
+7709401,24719063,5
+dongcongcong,24719063,4
+57057374,24719063,4
+leo1983,24719063,3
+4565301,24719063,3
+iceleehom,24719063,4
+55593785,24719063,5
+132881581,24719063,3
+17775259,24719063,4
+57405984,24719063,2
+yan6,24719063,4
+15188529,24719063,2
+42618283,24719063,3
+42867279,24719063,5
+4876430,24719063,4
+4336824,24719063,5
+johndoex,24719063,4
+46191603,24719063,4
+shuaika,24719063,2
+53666715,24719063,4
+shuixin7,24719063,3
+chagrinbleu,24719063,4
+40336952,24719063,3
+77531500,24719063,4
+74937470,24719063,5
+Josephine.R,24719063,3
+75809533,24719063,3
+yuanyuanjiang,24719063,5
+28967859,24719063,4
+51821922,24719063,4
+tianzaifeibaba,24719063,4
+ada1911,24719063,4
+122451528,24719063,5
+AAAxiaowei,24719063,4
+123367624,24719063,4
+42748490,24719063,5
+49508441,24719063,3
+50689721,24719063,4
+SILENT7,24719063,4
+39930373,24719063,5
+zxysyz,24719063,5
+cynthiazhang_,24719063,4
+56075427,24719063,5
+dusan3,24719063,5
+pyan,24719063,3
+Sapporo,24719063,3
+wangyan1221,24719063,5
+83320704,24719063,4
+charles1102,24719063,4
+woaisuxiaoyan,24719063,4
+morekai,24719063,5
+36329145,24719063,4
+57677623,24719063,3
+ddumplling,24719063,2
+lyming,24719063,4
+131134300,24719063,3
+xiaojia86,24719063,3
+82041844,24719063,4
+2829310,24719063,5
+74221142,24719063,5
+ghosthan2007,24719063,4
+61984010,24719063,4
+73299068,24719063,3
+37781772,24719063,3
+62357253,24719063,4
+zzddbb,24719063,4
+76364826,24719063,3
+sky77722,24719063,1
+ameba,24719063,2
+131286609,24719063,4
+Mr.Roi,24719063,4
+tosummer,24719063,4
+TheAnswer_,24719063,3
+momodawang,24719063,5
+yihongmeilan,24719063,4
+cos2xhps,24719063,5
+5587401,24719063,4
+mozhener,24719063,5
+52780386,24719063,2
+3753878,24719063,4
+2049714,24719063,4
+2243044,24719063,4
+60733692,24719063,5
+58273580,24719063,2
+shenxi,24719063,4
+June_1,24719063,5
+62872014,24719063,3
+takizawa,24719063,4
+eragonnewly,24719063,3
+olala,24719063,5
+linger111,24719063,-1
+55972806,24719063,4
+121247265,24719063,5
+65160059,24719063,4
+53784570,24719063,4
+2150598,24719063,4
+127970971,24719063,4
+47649150,24719063,3
+125034146,24719063,4
+sevenseven.7,24719063,4
+Sigrid_Lu,24719063,3
+lidusa,24719063,4
+64144011,24719063,4
+126485867,24719063,3
+qiabeibei314,24719063,5
+ielit,24719063,4
+51868250,24719063,4
+pussy_crystal,24719063,4
+83668746,24719063,5
+59380774,24719063,4
+younger105,24719063,3
+huangke65,24719063,5
+131508476,24719063,5
+45231536,24719063,4
+mamuzuke,24719063,3
+40787821,24719063,3
+70394248,24719063,4
+60570203,24719063,5
+131169136,24719063,4
+60020373,24719063,4
+summerking23,24719063,3
+119702092,24719063,4
+2696668,24719063,5
+66935170,24719063,4
+jideknight,24719063,4
+justover,24719063,5
+55984951,24719063,5
+1246909,24719063,5
+40201382,24719063,4
+linshiyi07,24719063,4
+piiiiii,24719063,3
+28074817,24719063,4
+scaren,24719063,4
+qingjianfeiwu,24719063,4
+132063463,24719063,4
+43891940,24719063,4
+lotusworld,24719063,4
+2254491,24719063,4
+133208122,24719063,4
+102312348,24719063,4
+vickyfanyan,24719063,4
+miss.nuonuoz,24719063,4
+Idontcaredear,24719063,5
+123626080,24719063,5
+fadesome,24719063,3
+greyelf,24719063,4
+abbiexdlll,24719063,5
+enimo,24719063,3
+9932584,24719063,4
+susana8824,24719063,4
+61797911,24719063,4
+51591669,24719063,5
+52064559,24719063,4
+mengyejian,24719063,5
+67781034,24719063,-1
+3202437,24719063,3
+49011755,24719063,4
+lingti41,24719063,4
+jingerjingjing,24719063,3
+58066035,24719063,5
+believe823,24719063,4
+43289423,24719063,3
+raising_dawn,24719063,4
+sullivan_lee,24719063,3
+67145023,24719063,4
+53041218,24719063,4
+17997171,24719063,3
+smilejier,24719063,4
+itsjlj,24719063,4
+96241491,24719063,4
+60251826,24719063,5
+51449484,24719063,4
+3466987,24719063,4
+ludengludeng6,24719063,3
+82367083,24719063,4
+starheart0314,24719063,5
+88176327,24719063,4
+54309491,24719063,3
+120290993,24719063,5
+huacaomumu,24719063,2
+46058827,24719063,4
+44431235,24719063,4
+69438436,24719063,5
+kk_22,24719063,4
+LogicLady,24719063,5
+gent1eman,24719063,4
+xiaobao7,24719063,4
+73843195,24719063,4
+132433393,24719063,4
+88074921,24719063,4
+littleflowercan,24719063,4
+wacky02,24719063,4
+2115444,24719063,3
+128320836,24719063,4
+mitsui37,24719063,2
+48357583,24719063,5
+15821336,24719063,5
+56062537,24719063,-1
+43235070,24719063,5
+happyness0828,24719063,4
+51938291,24719063,4
+108171675,24719063,4
+127231907,24719063,4
+kitashin,24719063,4
+58107870,24719063,3
+60080560,24719063,4
+Yqrwxf,24719063,4
+130717732,24719063,5
+1399555,24719063,4
+lostbunny,24719063,4
+49036730,24719063,4
+51043040,24719063,4
+liux516,24719063,4
+42570419,24719063,4
+98746084,24719063,4
+129106127,24719063,4
+winsonunddrei,24719063,4
+ooohhhrrr,24719063,4
+49041095,24719063,5
+Dthler,24719063,-1
+Little-Shaily,24719063,3
+1790060,24719063,4
+78850337,24719063,2
+9429775,24719063,4
+60129633,24719063,3
+4249743,24719063,4
+yyq811,24719063,4
+signal,24719063,5
+64351070,24719063,4
+67163006,24719063,4
+chenxi0355,24719063,4
+55443753,24719063,4
+2299740,24719063,5
+68166546,24719063,3
+2172302,24719063,5
+lygirl989193,24719063,4
+28748505,24719063,4
+70158914,24719063,4
+75639599,24719063,4
+115547734,24719063,3
+waterr91,24719063,4
+34569018,24719063,4
+ayame,24719063,-1
+75624333,24719063,4
+myserendipity,24719063,4
+gzbl8497,24719063,4
+ccppeyre,24719063,4
+47054399,24719063,3
+88509619,24719063,4
+46225547,24719063,5
+60005455,24719063,4
+115123931,24719063,5
+zhuhaizidaifan,24719063,5
+yoshidaerika,24719063,5
+74941787,24719063,3
+iimu,24719063,5
+woainikakashi,24719063,4
+60350995,24719063,5
+36372446,24719063,5
+4454692,24719063,4
+3847108,24719063,2
+takigo,24719063,4
+46255442,24719063,4
+3074237,24719063,4
+zacklee,24719063,2
+yypudding,24719063,4
+Morceau,24719063,2
+60685986,24719063,3
+cxy0419,24719063,3
+zkn911,24719063,5
+59492262,24719063,3
+awhiteriver,24719063,4
+washing,24719063,4
+75555964,24719063,5
+homutoo,24719063,4
+69084681,24719063,4
+68567528,24719063,4
+siyunluo,24719063,3
+summer000000,24719063,3
+54713128,24719063,3
+ffliens,24719063,4
+wendaoshenyi,24719063,4
+33940050,24719063,3
+4159676,24719063,4
+122979452,24719063,4
+103734560,24719063,3
+49154020,24719063,4
+unabian,24719063,3
+17977075,24719063,4
+48823676,24719063,5
+38615886,24719063,4
+103707463,24719063,4
+tom80s,24719063,4
+41522528,24719063,4
+3867660,24719063,4
+56708726,24719063,5
+abc114,24719063,4
+rongyan1223,24719063,3
+58069856,24719063,4
+66550848,24719063,4
+lyy3207778,24719063,4
+57328342,24719063,4
+67134061,24719063,4
+67029502,24719063,4
+18123356,24719063,3
+terryoy,24719063,3
+60732201,24719063,3
+ximutudan,24719063,3
+3776067,24719063,4
+58068218,24719063,4
+41502488,24719063,2
+75874484,24719063,4
+numbnight,24719063,3
+helloxiaoyan,24719063,4
+54807019,24719063,4
+47467920,24719063,3
+3768837,24719063,4
+2978891,24719063,5
+4600161,24719063,4
+50060242,24719063,5
+antique9248,24719063,4
+60411524,24719063,-1
+faannn,24719063,3
+105023809,24719063,4
+120284585,24719063,4
+ilovesloth,24719063,4
+59945842,24719063,4
+66038878,24719063,3
+ButcherV,24719063,2
+dai_tt,24719063,3
+62666104,24719063,4
+4684932,24719063,3
+120459070,24719063,4
+87455874,24719063,5
+mongrue,24719063,3
+2489180,24719063,5
+130813425,24719063,4
+66539223,24719063,4
+bliss24,24719063,3
+50394173,24719063,4
+dandanxiansheng,24719063,4
+27927536,24719063,4
+102812397,24719063,4
+116607290,24719063,2
+YJXMYT,24719063,3
+51784094,24719063,5
+3887911,24719063,5
+35364683,24719063,4
+48480567,24719063,4
+cld104123,24719063,4
+orangelive,24719063,4
+microogle,24719063,4
+YYDEE,24719063,3
+fragile_guoguo,24719063,5
+tayee,24719063,5
+winnieshoney,24719063,4
+60095742,24719063,4
+xiamihemao,24719063,5
+rabbit0407,24719063,4
+AnitaXSteps,24719063,4
+SuchThing,24719063,3
+72133108,24719063,5
+doloresding,24719063,4
+102103244,24719063,4
+59774310,24719063,4
+dotsdog,24719063,5
+1554569,24719063,5
+132770225,24719063,5
+31573360,24719063,4
+48253364,24719063,4
+66838621,24719063,4
+mumuximilik,24719063,4
+haozhe,24719063,4
+74667221,24719063,4
+58612152,24719063,4
+121148510,24719063,3
+Sparkle-in-hell,24719063,4
+sybilyuan,24719063,3
+35747194,24719063,5
+77873291,24719063,3
+yunl988,24719063,3
+70421309,24719063,5
+85382563,24719063,4
+52324148,24719063,5
+xiaofeiji,24719063,4
+huihuiai1314,24719063,5
+123645263,24719063,3
+45323632,24719063,4
+Abandoned_Sundy,24719063,4
+52845120,24719063,4
+tiramisucheng,24719063,3
+feifeijoy,24719063,4
+nvwudidi,24719063,5
+20866975,24719063,5
+51421184,24719063,4
+62693667,24719063,4
+stillfyou,24719063,5
+54518642,24719063,4
+cucaoxu,24719063,4
+viviensong,24719063,5
+mnxn889,24719063,4
+harashi,24719063,4
+131216193,24719063,4
+65885890,24719063,3
+82680490,24719063,4
+6314014,24719063,3
+Bambilife,24719063,5
+Rurutia7,24719063,3
+133593177,24719063,4
+59210685,24719063,4
+3343429,24719063,5
+53217914,24719063,4
+renxinn,24719063,4
+zzllxiaoxiao,24719063,4
+olivia1016,24719063,5
+mona220,24719063,3
+54076844,24719063,4
+72576153,24719063,5
+35331418,24719063,4
+60889273,24719063,4
+3514603,24719063,4
+48690334,24719063,4
+49924381,24719063,4
+45910532,24719063,4
+100746508,24719063,5
+36463636,24719063,-1
+maydayclouds,24719063,4
+45791568,24719063,3
+35271229,24719063,1
+124981596,24719063,4
+3717542,24719063,5
+76053597,24719063,4
+49529006,24719063,4
+120872335,24719063,4
+44941614,24719063,3
+iseeiv,24719063,5
+59715497,24719063,5
+49520952,24719063,2
+roy_box,24719063,4
+ze_lan,24719063,4
+130421783,24719063,5
+51219877,24719063,4
+jofanie,24719063,3
+74472287,24719063,5
+gnituw1986,24719063,4
+BlackForever,24719063,4
+87448827,24719063,1
+56656023,24719063,4
+imecho,24719063,3
+91671305,24719063,4
+44614198,24719063,5
+migaki,24719063,4
+3533764,24719063,4
+44386404,24719063,4
+queenieliao,24719063,5
+123543090,24719063,5
+peRFect1012,24719063,5
+princessvivian,24719063,4
+snjjwb,24719063,4
+2551920,24719063,5
+Halbert-Sun,24719063,4
+30218224,24719063,3
+16097253,24719063,3
+lingJessie,24719063,4
+119078211,24719063,4
+mushroomann,24719063,4
+39273953,24719063,3
+31427645,24719063,3
+53962149,24719063,5
+78706605,24719063,3
+39088716,24719063,4
+sssssstutter,24719063,4
+31873447,24719063,4
+76335985,24719063,5
+1632069,24719063,3
+49091198,24719063,4
+chaiochang,24719063,3
+fengzisb,24719063,4
+75691950,24719063,4
+80178442,24719063,5
+yvettttte,24719063,4
+alphatown,24719063,5
+2823928,24719063,4
+qiaoqq,24719063,4
+51395459,24719063,4
+raulwxm,24719063,4
+FilmYan,24719063,5
+hj_laoxie,24719063,5
+74565811,24719063,5
+wishwishwish,24719063,4
+47436584,24719063,4
+42961895,24719063,3
+Cecilia1990,24719063,4
+dfzxqqian,24719063,4
+backspace1122,24719063,4
+76418910,24719063,4
+27323715,24719063,4
+56268416,24719063,4
+AINY0110,24719063,4
+129150188,24719063,4
+doraemonlsy,24719063,4
+48947945,24719063,3
+mzxwx,24719063,5
+104373003,24719063,5
+65512328,24719063,4
+35499398,24719063,5
+119278802,24719063,5
+70668927,24719063,4
+40254687,24719063,5
+daisyq1015,24719063,4
+littlegaga,24719063,4
+46099371,24719063,3
+119192622,24719063,4
+133493380,24719063,4
+43752137,24719063,2
+103556883,24719063,4
+56556616,24719063,4
+islands-,24719063,3
+sammi_koo,24719063,4
+39428129,24719063,4
+pedant,24719063,3
+50720441,24719063,4
+loveyourass,24719063,3
+49260594,24719063,4
+yyy18n,24719063,-1
+51766927,24719063,5
+3841449,24719063,4
+blinglu,24719063,3
+ideyes,24719063,4
+114605491,24719063,5
+94422178,24719063,5
+91609335,24719063,4
+46537159,24719063,5
+henrywhy,24719063,4
+83030951,24719063,4
+38324133,24719063,3
+10906353,24719063,2
+51469631,24719063,5
+34850767,24719063,5
+2172185,24719063,4
+double1004,24719063,4
+lyq017017,24719063,4
+forrymhrccpig,24719063,4
+63465175,24719063,4
+caixiaofeng1992,24719063,5
+11500316,24719063,5
+Calvin1113,24719063,5
+15439490,24719063,5
+romanbaby,24719063,4
+zsqsophy,24719063,4
+sunxuezi,24719063,4
+38252612,24719063,3
+sxywingwing,24719063,-1
+57440805,24719063,3
+norababy,24719063,4
+77691678,24719063,4
+73478164,24719063,3
+120498593,24719063,3
+Ston3s,24719063,5
+38553909,24719063,5
+timeispassing,24719063,5
+3803257,24719063,4
+fatenighting,24719063,5
+51472613,24719063,3
+sunfloweroom,24719063,4
+121716592,24719063,4
+dirtylee,24719063,3
+90884547,24719063,4
+67083418,24719063,4
+56745020,24719063,4
+4333016,24719063,4
+xyhen,24719063,4
+yzk2237084,24719063,4
+70357022,24719063,4
+53915476,24719063,4
+wwei89,24719063,5
+87308014,24719063,5
+79495537,24719063,3
+asglass,24719063,3
+aaa33444,24719063,3
+qingtongkuihua,24719063,4
+65276056,24719063,4
+7605327,24719063,3
+3248231,24719063,4
+48043894,24719063,-1
+54676136,24719063,4
+WhiteShadows,24719063,4
+vfish,24719063,5
+agking,24719063,4
+starry88,24719063,4
+88266067,24719063,5
+39520405,24719063,4
+1897367,24719063,-1
+Duyuanyuan,24719063,4
+80555404,24719063,3
+74170855,24719063,4
+yd731726282,24719063,3
+44618919,24719063,4
+70682305,24719063,5
+yuexiaokan,24719063,-1
+vivileesun,24719063,4
+debrah,24719063,5
+56136845,24719063,4
+cvjk2009485,24719063,2
+47273031,24719063,5
+77084938,24719063,5
+64136344,24719063,3
+41400893,24719063,3
+50616224,24719063,5
+61570517,24719063,4
+28808683,24719063,4
+75743851,24719063,4
+oliviapalermo,24719063,3
+Strawberry-U,24719063,5
+showmeet111,24719063,5
+36108304,24719063,2
+64085164,24719063,4
+Belater_Waitman,24719063,5
+b_less,24719063,3
+50590088,24719063,4
+60386073,24719063,4
+47601578,24719063,4
+mingyu1992,24719063,5
+violain,24719063,4
+cuccossette,24719063,2
+82531582,24719063,4
+59008972,24719063,4
+3112705,24719063,5
+33538024,24719063,3
+TGLRF,24719063,3
+129338978,24719063,4
+chris310-nan,24719063,4
+41017931,24719063,4
+65138658,24719063,5
+empty_icer,24719063,4
+47583585,24719063,4
+84124597,24719063,4
+3531342,24719063,3
+ryanwords,24719063,4
+fcuki,24719063,4
+132661390,24719063,4
+TalkChan,24719063,4
+hua400,24719063,-1
+27675083,24719063,5
+4160312,24719063,-1
+Trax,24719063,5
+gkxiaokang,24719063,3
+96875707,24719063,3
+campocampo,24719063,4
+63166175,24719063,4
+61357618,24719063,2
+xiawu1130,24719063,5
+58040390,24719063,3
+babyamanda,24719063,4
+52622488,24719063,3
+46162078,24719063,5
+xiki.m,24719063,3
+50437623,24719063,4
+kdi070901,24719063,5
+rachelyi23,24719063,3
+ty2012,24719063,5
+44760991,24719063,4
+kebra,24719063,1
+Mulholland,24719063,3
+3977584,24719063,4
+42137156,24719063,3
+mujun_liu,24719063,4
+58603704,24719063,4
+pizzamx,24719063,5
+48889692,24719063,5
+56559303,24719063,4
+pocchong,24719063,4
+1821067,24719063,4
+may5may,24719063,3
+zhangxiaolei,24719063,4
+cheergoll,24719063,4
+80526466,24719063,3
+48881927,24719063,5
+62959210,24719063,4
+uzimakinaruto,24719063,5
+stompbabe,24719063,3
+3420915,24719063,4
+ganx,24719063,4
+EggPlant629,24719063,3
+54082963,24719063,5
+caspiandc,24719063,3
+1530502,24719063,5
+daylightmoon,24719063,4
+84217185,24719063,5
+43771540,24719063,4
+rosavivian,24719063,4
+60156657,24719063,3
+djdaisy1874,24719063,5
+26044083,24719063,4
+81281915,24719063,5
+57351487,24719063,4
+57085478,24719063,5
+56496405,24719063,4
+84785338,24719063,2
+zhangzhangzhang,24719063,4
+40966373,24719063,4
+prep,24719063,5
+4819599,24719063,3
+61852645,24719063,4
+55933493,24719063,4
+62676885,24719063,3
+1412545,24719063,4
+myriceo2011,24719063,-1
+70970974,24719063,5
+mysecreter,24719063,4
+82980188,24719063,4
+102410673,24719063,3
+66919459,24719063,4
+75874847,24719063,5
+104489015,24719063,4
+88632956,24719063,2
+isUna,24719063,4
+keyilibie,24719063,4
+melancholyhill,24719063,3
+46119744,24719063,5
+48705415,24719063,4
+68916554,24719063,2
+64866923,24719063,4
+122675776,24719063,5
+miucather,24719063,5
+126853108,24719063,3
+89615473,24719063,3
+3793085,24719063,4
+CYJCBQ,24719063,2
+47994797,24719063,4
+93377221,24719063,4
+BMY378670541,24719063,4
+rain__fish,24719063,4
+2866973,24719063,3
+63612215,24719063,3
+57953679,24719063,5
+blossom5,24719063,4
+SunnyLuo,24719063,5
+130692591,24719063,4
+louix,24719063,4
+3548835,24719063,3
+48892199,24719063,5
+yoaremysunshine,24719063,4
+27277879,24719063,4
+daisyangel,24719063,5
+38695828,24719063,5
+67561953,24719063,5
+zhengjie0618,24719063,4
+sofreaking,24719063,5
+65292306,24719063,4
+jinshutiegan,24719063,5
+71566080,24719063,4
+ordovices,24719063,4
+43290072,24719063,5
+ttgrace1,24719063,4
+46712820,24719063,5
+40573013,24719063,3
+81586403,24719063,5
+CSMiss,24719063,3
+echo512,24719063,3
+waistline2011,24719063,4
+48143172,24719063,4
+4265133,24719063,4
+liminzhang,24719063,5
+2334248,24719063,3
+63014642,24719063,4
+63092997,24719063,4
+Rachel180236,24719063,4
+kissmygirl,24719063,5
+zuozichu,24719063,3
+57083190,24719063,4
+122986883,24719063,4
+84710865,24719063,4
+odelete,24719063,5
+mayee1121,24719063,5
+licinda,24719063,4
+84077935,24719063,3
+45936193,24719063,4
+68906822,24719063,5
+60871322,24719063,3
+saintdump,24719063,3
+56249366,24719063,4
+yellow1010,24719063,5
+115725912,24719063,3
+existtoevendead,24719063,1
+tsipporahandme,24719063,4
+57831385,24719063,3
+2903830,24719063,4
+landaishuyihao,24719063,5
+llbreeze,24719063,4
+63299955,24719063,5
+benbenmuxi,24719063,5
+3526503,24719063,4
+75310522,24719063,4
+callmemrcoolman,24719063,3
+4040058,24719063,4
+87937161,24719063,2
+tr_Cat,24719063,4
+122028540,24719063,4
+csc,24719063,4
+41806618,24719063,5
+35033596,24719063,3
+53081187,24719063,4
+yunta,24719063,3
+69037881,24719063,3
+qiangqiangzhang,24719063,3
+82760754,24719063,3
+38702939,24719063,5
+53243920,24719063,-1
+106594383,24719063,3
+54908922,24719063,4
+80028681,24719063,4
+28728920,24719063,4
+32591369,24719063,4
+foufou,24719063,4
+55458833,24719063,4
+128035426,24719063,3
+sarah_xj,24719063,2
+luneipunk,24719063,1
+hirokihaku,24719063,4
+sun_Lan,24719063,4
+4315821,24719063,5
+76211304,24719063,5
+52492498,24719063,4
+53917309,24719063,5
+sundabei,24719063,4
+SheRrySweets,24719063,4
+Elizabeth-Lee,24719063,4
+rainiewm,24719063,4
+54784971,24719063,4
+51978650,24719063,5
+100055142,24719063,4
+ludi0511,24719063,4
+61551663,24719063,3
+4338735,24719063,5
+sunxuhang,24719063,2
+sweetlalalove,24719063,3
+70177724,24719063,5
+70930284,24719063,5
+heartlesstree,24719063,4
+32746698,24719063,3
+48507134,24719063,2
+MissCg,24719063,4
+greatblue,24719063,4
+40424921,24719063,3
+49316177,24719063,4
+wodeerbian,24719063,5
+raintail,24719063,-1
+43475473,24719063,5
+3529058,24719063,4
+35052562,24719063,4
+53737275,24719063,3
+yikecai,24719063,5
+34386967,24719063,5
+82262914,24719063,4
+53981531,24719063,4
+44021418,24719063,5
+hal-end,24719063,4
+69093726,24719063,3
+33893684,24719063,5
+83156275,24719063,5
+antony1994,24719063,4
+simysm,24719063,3
+92177391,24719063,5
+akhexiaobai,24719063,4
+80049900,24719063,5
+52132683,24719063,5
+ssqian,24719063,4
+3410808,24719063,3
+47218521,24719063,5
+53437305,24719063,2
+53437305,24719063,2
+76738786,24719063,3
+nadiayy,24719063,5
+121043326,24719063,3
+84405567,24719063,3
+soulchang,24719063,4
+Goshawk-,24719063,4
+87387635,24719063,4
+3625223,24719063,3
+51280804,24719063,1
+4038977,24719063,4
+56723489,24719063,5
+29771283,24719063,4
+49417223,24719063,4
+121723413,24719063,3
+48227947,24719063,4
+88052537,24719063,4
+Kalibu,24719063,5
+79971435,24719063,3
+69133093,24719063,3
+63406324,24719063,4
+33195867,24719063,4
+124144390,24719063,3
+Kraatui,24719063,5
+aasian,24719063,3
+102781440,24719063,4
+53734471,24719063,4
+73496560,24719063,4
+1091787,24719063,-1
+53514658,24719063,5
+55813091,24719063,3
+38396842,24719063,4
+132919451,24719063,5
+onlyloll,24719063,4
+77280364,24719063,4
+ChenMelon,24719063,2
+chenkefeng,24719063,3
+47947181,24719063,3
+61482048,24719063,4
+67310405,24719063,4
+bluefrog,24719063,5
+45034440,24719063,3
+50686538,24719063,4
+60020875,24719063,4
+Jiang_jss,24719063,4
+chapu,24719063,3
+tiffany33,24719063,4
+sirty,24719063,4
+63740935,24719063,3
+47776036,24719063,4
+63402414,24719063,4
+gnibiy,24719063,4
+dreamstealer,24719063,4
+78619978,24719063,-1
+89451365,24719063,4
+67918582,24719063,4
+Huxuan0522,24719063,3
+17825314,24719063,4
+50727415,24719063,5
+socordia,24719063,4
+4303543,24719063,4
+58807022,24719063,4
+59651696,24719063,4
+58462202,24719063,4
+hyocheong,24719063,3
+53455992,24719063,5
+daidai1113,24719063,4
+3480532,24719063,4
+44437250,24719063,3
+57831067,24719063,4
+3066037,24719063,4
+tiantiannan,24719063,4
+59739922,24719063,4
+Kiraida,24719063,5
+50680625,24719063,4
+poohye,24719063,4
+133810684,24719063,5
+76529709,24719063,4
+70027746,24719063,4
+49274637,24719063,4
+88018835,24719063,3
+lovexiaoyan,24719063,2
+3397020,24719063,5
+July5,24719063,5
+76181187,24719063,5
+wenbo1216,24719063,5
+42149787,24719063,4
+119364125,24719063,4
+78343150,24719063,4
+68657829,24719063,4
+58389015,24719063,5
+doloreshaze,24719063,3
+51258253,24719063,5
+94408471,24719063,4
+53581844,24719063,3
+64689820,24719063,4
+60488216,24719063,4
+64290310,24719063,4
+50164947,24719063,3
+2879235,24719063,4
+kynno,24719063,3
+chjjuly0118,24719063,5
+2349366,24719063,4
+64199614,24719063,5
+crowdedstars,24719063,3
+53772040,24719063,4
+56190525,24719063,4
+46728642,24719063,3
+3606264,24719063,4
+3342036,24719063,4
+41492377,24719063,4
+59421721,24719063,4
+61781416,24719063,4
+82988070,24719063,4
+74541142,24719063,4
+17338724,24719063,4
+jinhoo,24719063,4
+sky147,24719063,4
+sayoko,24719063,3
+acmilanzjt,24719063,5
+38105854,24719063,4
+veverlee,24719063,4
+4855309,24719063,4
+60771790,24719063,4
+sunflower37,24719063,4
+64180484,24719063,3
+5581216,24719063,4
+randeic,24719063,3
+alicepeng,24719063,4
+130716596,24719063,5
+xxfyxl,24719063,3
+55628054,24719063,5
+annieaiannie,24719063,4
+miykok,24719063,3
+26797565,24719063,4
+xever,24719063,5
+63629111,24719063,5
+lotusweety,24719063,3
+35516440,24719063,4
+131191820,24719063,4
+lvwenzhi,24719063,4
+69044042,24719063,3
+63876732,24719063,-1
+62238994,24719063,3
+76148620,24719063,4
+52153576,24719063,4
+75189266,24719063,3
+FEDERICO123,24719063,5
+92576305,24719063,3
+80768830,24719063,5
+130708862,24719063,5
+82771615,24719063,5
+72642310,24719063,4
+daniel_gao,24719063,4
+130073580,24719063,4
+Barfuss,24719063,4
+47959962,24719063,5
+52011212,24719063,4
+56609049,24719063,4
+74237278,24719063,4
+74237278,24719063,4
+49724572,24719063,-1
+62276848,24719063,5
+47630086,24719063,3
+ievanz,24719063,2
+shi-jianbai,24719063,5
+4337944,24719063,4
+28582685,24719063,5
+58466744,24719063,4
+leave614,24719063,5
+snowbubblelf,24719063,4
+133769481,24719063,5
+fengt,24719063,3
+chinesean,24719063,4
+livingfly,24719063,5
+81639579,24719063,4
+58596058,24719063,4
+Vera1997,24719063,5
+L_kid,24719063,4
+tigke,24719063,4
+57445690,24719063,4
+forever.b,24719063,4
+34835392,24719063,4
+someoneunknown,24719063,5
+65704794,24719063,5
+54729570,24719063,2
+62270927,24719063,4
+63381991,24719063,5
+4247335,24719063,5
+67235309,24719063,5
+Xin1984,24719063,4
+weird_galaxy,24719063,1
+tubiji,24719063,4
+idorothy,24719063,4
+60038262,24719063,3
+51786128,24719063,4
+128641812,24719063,4
+46735351,24719063,5
+meilang.,24719063,4
+68671581,24719063,4
+bieshaohui,24719063,4
+44924401,24719063,-1
+3121598,24719063,4
+72751613,24719063,3
+2455887,24719063,4
+umaymaymay,24719063,3
+2847922,24719063,4
+ruoshuiyouyu,24719063,4
+1491445,24719063,2
+itayloriswift,24719063,4
+64007978,24719063,4
+43924425,24719063,4
+32798555,24719063,4
+62818022,24719063,5
+howlongisyoyo,24719063,-1
+127646902,24719063,4
+57942822,24719063,4
+72023114,24719063,4
+fzlinyanxia,24719063,3
+dl0514,24719063,5
+3192663,24719063,3
+46618200,24719063,4
+fushengyishi,24719063,5
+loworlower,24719063,4
+brofox,24719063,4
+82981995,24719063,5
+echofrancis,24719063,3
+ruozi,24719063,5
+imarlboro,24719063,4
+51075041,24719063,5
+51959718,24719063,4
+4485928,24719063,5
+61474754,24719063,5
+82145378,24719063,4
+4016597,24719063,5
+1967724,24719063,5
+44028253,24719063,4
+tzizajuly,24719063,3
+ARREN,24719063,4
+85428939,24719063,5
+aizhengyang,24719063,4
+88736178,24719063,3
+tonyleung2046,24719063,-1
+50213406,24719063,-1
+31634567,24719063,3
+66332693,24719063,4
+40096654,24719063,5
+solo8879,24719063,-1
+VenusDoom,24719063,4
+yoyoyoyou,24719063,5
+66448083,24719063,4
+125962511,24719063,2
+1280631,24719063,4
+64654211,24719063,5
+107284336,24719063,4
+41786270,24719063,4
+63957116,24719063,4
+50393794,24719063,4
+131184477,24719063,5
+zzzyao19960706,24719063,4
+zzzyao19960706,24719063,4
+60251823,24719063,5
+sylvia1991hu,24719063,5
+34831993,24719063,4
+watcher_actor,24719063,4
+lamwithme,24719063,5
+congxiao,24719063,4
+4099329,24719063,5
+chan_chan,24719063,4
+59306525,24719063,4
+92589362,24719063,5
+32025268,24719063,3
+120113112,24719063,4
+wmms,24719063,5
+61209758,24719063,4
+Daryl,24719063,4
+jijillwang,24719063,5
+2282232,24719063,5
+4905483,24719063,-1
+4163899,24719063,4
+laceless,24719063,-1
+65343705,24719063,2
+74719967,24719063,5
+delchisio,24719063,4
+42011516,24719063,2
+41596083,24719063,4
+bluekitten,24719063,3
+130571706,24719063,3
+63589080,24719063,4
+1302252,24719063,4
+Baronbunny,24719063,5
+88047322,24719063,3
+rachelseed,24719063,3
+ankenlee,24719063,5
+75651392,24719063,3
+Northneedle,24719063,4
+48936071,24719063,4
+ileonwii,24719063,4
+73681068,24719063,4
+62639604,24719063,4
+56411907,24719063,4
+11786088,24719063,3
+taiyang657,24719063,4
+89575571,24719063,5
+37229684,24719063,4
+ValentineQ,24719063,3
+29515987,24719063,4
+lunaticsarah,24719063,4
+125031755,24719063,5
+reira_jxy,24719063,4
+ilovehouyi,24719063,4
+24333336,24719063,5
+91504508,24719063,4
+liuweilian,24719063,3
+55924944,24719063,4
+54126303,24719063,5
+53173007,24719063,4
+129586774,24719063,3
+64392106,24719063,5
+41070205,24719063,4
+45318563,24719063,3
+wyms33,24719063,4
+48678030,24719063,4
+huan19494114,24719063,3
+3501858,24719063,4
+gong1341,24719063,4
+61079628,24719063,4
+4913256,24719063,5
+danbeach,24719063,4
+88367047,24719063,4
+71133496,24719063,4
+63893980,24719063,5
+132446691,24719063,4
+49923430,24719063,3
+97645479,24719063,3
+Dantey,24719063,4
+130996928,24719063,4
+69236289,24719063,3
+sjzqzkn,24719063,5
+119158241,24719063,3
+noitu,24719063,4
+87684831,24719063,4
+rea24,24719063,5
+130806847,24719063,4
+126375178,24719063,4
+52363177,24719063,5
+36252674,24719063,5
+133027418,24719063,4
+91947197,24719063,5
+80657032,24719063,3
+47947320,24719063,4
+54081588,24719063,4
+3308110,24719063,4
+1351226,24719063,5
+52928685,24719063,4
+122484981,24719063,4
+62687217,24719063,4
+88043696,24719063,4
+arvinsho,24719063,3
+49372738,24719063,4
+Pius,24719063,4
+shelstar,24719063,4
+2376300,24719063,3
+fallistuzi,24719063,4
+67730092,24719063,4
+49544406,24719063,5
+89836135,24719063,4
+110718557,24719063,4
+cherrytvxq1126,24719063,5
+wangsc1102,24719063,4
+fansherlocked,24719063,4
+36193600,24719063,2
+faiel,24719063,4
+69100403,24719063,5
+54910657,24719063,5
+nistelrooy1990,24719063,4
+2979942,24719063,4
+65943333,24719063,4
+sixing,24719063,5
+88695508,24719063,5
+2605380,24719063,-1
+38811434,24719063,3
+3273386,24719063,4
+3044428,24719063,4
+karenecho,24719063,4
+54355142,24719063,4
+133212789,24719063,4
+64162048,24719063,3
+91454946,24719063,4
+15503350,24719063,4
+47468103,24719063,3
+63178392,24719063,4
+4421085,24719063,4
+78936146,24719063,5
+49301222,24719063,2
+JonathanChen,24719063,4
+65357041,24719063,5
+nbcc,24719063,3
+lsg_lsg,24719063,4
+flydolphin,24719063,4
+114350320,24719063,4
+shallwe07,24719063,5
+82349696,24719063,5
+54443476,24719063,4
+dwn0810,24719063,4
+119240610,24719063,5
+mississluu,24719063,4
+59276752,24719063,4
+48458660,24719063,3
+51636177,24719063,3
+DeiDWang,24719063,4
+losslilies,24719063,3
+37694229,24719063,3
+Lius,24719063,5
+83453584,24719063,4
+47373898,24719063,4
+happy_cici,24719063,5
+45778196,24719063,4
+58952579,24719063,3
+baixiaoxing,24719063,5
+3385352,24719063,4
+wongzayoi,24719063,5
+4543934,24719063,3
+26889158,24719063,3
+75953461,24719063,5
+76163964,24719063,4
+49419366,24719063,4
+58454071,24719063,4
+50455314,24719063,3
+coconutZii,24719063,4
+CorsoChiggiato,24719063,3
+52241991,24719063,4
+Miss.NoLonging,24719063,-1
+132477127,24719063,5
+yiannisyan,24719063,5
+lisa91l,24719063,4
+shekinah,24719063,4
+antoniagreen,24719063,4
+CalvinAzure,24719063,4
+63254362,24719063,5
+vivianqizai,24719063,3
+dear.sunny,24719063,3
+49914687,24719063,4
+sosoloveslife,24719063,4
+81364618,24719063,4
+81812882,24719063,3
+ruudgoal,24719063,2
+80653338,24719063,4
+37954204,24719063,5
+48638598,24719063,4
+126513997,24719063,4
+lovehehe,24719063,3
+75756405,24719063,4
+46680022,24719063,5
+3874583,24719063,3
+FinalFantasy,24719063,4
+ihavamap,24719063,5
+104056203,24719063,5
+53479522,24719063,4
+78973755,24719063,5
+82481394,24719063,3
+92270856,24719063,4
+zsq0028347,24719063,4
+16604198,24719063,4
+15228262,24719063,2
+Southern_,24719063,-1
+duoluowenren,24719063,4
+131362921,24719063,4
+Artha,24719063,4
+Bye_nobody,24719063,5
+1797252,24719063,4
+62053375,24719063,4
+opdiopter,24719063,4
+vitamin27,24719063,4
+39891513,24719063,5
+131807022,24719063,3
+2281706,24719063,-1
+1849770,24719063,4
+asiov,24719063,3
+clh7,24719063,5
+clh7,24719063,5
+78720836,24719063,3
+66979855,24719063,4
+67212187,24719063,4
+62760915,24719063,5
+3786504,24719063,3
+yyue,24719063,-1
+sta,24719063,3
+87587366,24719063,4
+yutusiji,24719063,5
+JoyYoung,24719063,4
+71929336,24719063,4
+28852948,24719063,4
+Esacpe.,24719063,5
+ameibush9799,24719063,4
+43783147,24719063,3
+59806287,24719063,5
+1606950,24719063,-1
+46999271,24719063,4
+98792937,24719063,5
+83389273,24719063,5
+mabeanbean,24719063,3
+81695729,24719063,4
+huynbinF,24719063,3
+missuguys,24719063,5
+68588893,24719063,4
+sunshine_ape,24719063,5
+maryoasis,24719063,4
+45982463,24719063,4
+61829345,24719063,3
+93443951,24719063,4
+49220314,24719063,4
+rienge,24719063,5
+2461588,24719063,3
+64705711,24719063,3
+53721830,24719063,4
+133771695,24719063,4
+122420292,24719063,4
+JCJC,24719063,3
+54823776,24719063,4
+65036960,24719063,4
+doumeiyuou,24719063,2
+HaleyZZ,24719063,5
+79192198,24719063,4
+herofox,24719063,4
+63646276,24719063,5
+37565274,24719063,4
+70119935,24719063,3
+45395995,24719063,5
+yuanzone,24719063,4
+66112477,24719063,3
+79625860,24719063,5
+camx11,24719063,5
+32776828,24719063,3
+36630443,24719063,5
+sissistar,24719063,3
+59716419,24719063,5
+megumiwo,24719063,4
+97470662,24719063,4
+70051066,24719063,3
+94805781,24719063,4
+68367476,24719063,3
+phunny,24719063,4
+natiezhishi,24719063,4
+80352249,24719063,4
+yeox,24719063,4
+50384647,24719063,4
+46037154,24719063,4
+124322812,24719063,-1
+3418984,24719063,5
+rebeccajung,24719063,5
+blue_nan,24719063,5
+lolitayan,24719063,4
+68586004,24719063,5
+88213659,24719063,5
+peachgardn,24719063,4
+2416826,24719063,4
+47336635,24719063,4
+DOOLYUNI,24719063,4
+edhua,24719063,5
+FlowerCharlotte,24719063,4
+41316861,24719063,3
+1633509,24719063,2
+guihuazhouzi,24719063,4
+52932994,24719063,4
+131474595,24719063,4
+2743083,24719063,5
+54773691,24719063,5
+CaptLimbo,24719063,3
+2793105,24719063,1
+miss.underwater,24719063,3
+62553096,24719063,5
+93104938,24719063,4
+A-BeR,24719063,3
+mickkey,24719063,3
+lovelyekin,24719063,3
+130664956,24719063,4
+91898422,24719063,4
+43671696,24719063,3
+jupengorall,24719063,2
+55761413,24719063,4
+huawy,24719063,4
+66505410,24719063,5
+Bingbing.,24719063,4
+wangxingq,24719063,5
+devnet,24719063,4
+a-zhu,24719063,4
+fivestrips,24719063,4
+78954375,24719063,4
+wayne_sun,24719063,3
+48724953,24719063,4
+33142981,24719063,4
+58106632,24719063,4
+36433281,24719063,3
+gggsssgs,24719063,3
+66178804,24719063,5
+119238411,24719063,4
+3514906,24719063,3
+50205589,24719063,4
+1985034,24719063,3
+youqieyou,24719063,2
+122154980,24719063,3
+1132028,24719063,5
+GAYHOUSE,24719063,-1
+starever,24719063,5
+spankercat,24719063,4
+42725289,24719063,3
+127649603,24719063,3
+59170088,24719063,5
+1748062,24719063,4
+heitao-1991,24719063,4
+cachecache,24719063,4
+lydcc,24719063,5
+xk13,24719063,2
+sung..,24719063,4
+llw541182481,24719063,5
+zxzy,24719063,5
+4524463,24719063,4
+2385762,24719063,4
+goi59121,24719063,4
+39498531,24719063,4
+3887543,24719063,4
+67389352,24719063,4
+57962811,24719063,3
+Nonac,24719063,5
+2533890,24719063,-1
+fyyxf,24719063,5
+54604145,24719063,4
+1554976,24719063,4
+anlygissing,24719063,4
+monstersimon,24719063,5
+AzuresongWarden,24719063,5
+75025238,24719063,3
+61581753,24719063,4
+62318575,24719063,4
+3387308,24719063,5
+84364994,24719063,5
+79374925,24719063,4
+69385606,24719063,5
+wbhvivian,24719063,4
+wbhvivian,24719063,4
+61681280,24719063,5
+3232896,24719063,4
+panda919,24719063,4
+13295115,24719063,4
+132063881,24719063,5
+zizon,24719063,4
+63125194,24719063,5
+64276652,24719063,4
+MariahC,24719063,3
+34245713,24719063,3
+47784418,24719063,3
+43716096,24719063,4
+47595964,24719063,4
+annshuran,24719063,4
+nianfangshiba,24719063,4
+41924523,24719063,2
+86202635,24719063,3
+46333291,24719063,5
+Amy-Winter,24719063,3
+3296630,24719063,3
+maimaibupang,24719063,4
+45053582,24719063,5
+kayaliang,24719063,4
+3113748,24719063,5
+easystyle,24719063,4
+77412866,24719063,4
+4579298,24719063,5
+2292590,24719063,4
+52396662,24719063,5
+78656769,24719063,5
+PrincyinPeking,24719063,4
+hexuanpomon,24719063,4
+68227944,24719063,4
+4244492,24719063,3
+oneleap,24719063,4
+49389910,24719063,4
+62426044,24719063,5
+daisy6270,24719063,4
+109774060,24719063,4
+shinysun,24719063,3
+SummerChen,24719063,4
+tiffanyangel,24719063,4
+xiaoqili,24719063,4
+pirate_cat,24719063,4
+11973232,24719063,4
+77216393,24719063,3
+youyiran123,24719063,4
+Gladysbrad,24719063,-1
+46510728,24719063,5
+77427875,24719063,4
+88199581,24719063,4
+17052139,24719063,4
+98775139,24719063,4
+83974267,24719063,4
+12827710,24719063,4
+121925432,24719063,4
+huahuadaisy,24719063,5
+jxncm,24719063,4
+53065744,24719063,4
+27438021,24719063,5
+4158579,24719063,4
+43764031,24719063,4
+topsky_0,24719063,4
+1786804,24719063,1
+52272245,24719063,4
+48055064,24719063,5
+121925373,24719063,3
+2413254,24719063,4
+78383254,24719063,3
+3053024,24719063,5
+27617505,24719063,4
+130396316,24719063,4
+idealtemple,24719063,4
+luwangnanzou,24719063,3
+65137697,24719063,4
+ly227,24719063,4
+wzjojzw,24719063,3
+47799758,24719063,5
+velvetmay,24719063,4
+velvetmay,24719063,4
+zhtianyu,24719063,5
+63934272,24719063,5
+mariaaa,24719063,-1
+52021826,24719063,4
+2235528,24719063,4
+60860847,24719063,4
+30513001,24719063,3
+119489495,24719063,4
+127587816,24719063,4
+61933771,24719063,4
+43527314,24719063,5
+128157735,24719063,4
+addonn,24719063,2
+2572066,24719063,5
+wenteng1988,24719063,4
+44654150,24719063,4
+87910708,24719063,4
+eloisepqy,24719063,5
+reeves2014,24719063,4
+missneuf,24719063,4
+wangjim,24719063,5
+55556430,24719063,4
+44257922,24719063,4
+32818855,24719063,5
+marcamoy,24719063,4
+87083092,24719063,5
+133436680,24719063,5
+24274750,24719063,4
+122192387,24719063,4
+sofiso,24719063,4
+132190479,24719063,4
+4056994,24719063,3
+14692856,24719063,3
+65563453,24719063,5
+91948912,24719063,3
+candyhorse,24719063,4
+58543683,24719063,5
+87057947,24719063,5
+56430618,24719063,3
+1462702,24719063,5
+62517955,24719063,3
+onlyburger,24719063,5
+fanfouxiong,24719063,3
+3982398,24719063,3
+67328720,24719063,4
+43901390,24719063,4
+68730794,24719063,5
+132099750,24719063,3
+43344167,24719063,3
+49408765,24719063,-1
+fre7dom,24719063,4
+102966117,24719063,3
+49210085,24719063,5
+friendsay66,24719063,1
+69573255,24719063,3
+34553514,24719063,4
+anisezww,24719063,4
+2195388,24719063,3
+45411639,24719063,5
+Yindaxian,24719063,4
+49199928,24719063,5
+mysupers,24719063,5
+87867332,24719063,4
+sirk,24719063,3
+rayinsky,24719063,4
+2449818,24719063,4
+116295166,24719063,5
+45909249,24719063,3
+81378961,24719063,5
+74168799,24719063,5
+63993568,24719063,5
+35076658,24719063,4
+liuziyu0426,24719063,3
+88542586,24719063,5
+133554035,24719063,5
+49098514,24719063,4
+121478447,24719063,4
+6500897,24719063,3
+54113265,24719063,3
+39115751,24719063,4
+sandlee1986,24719063,4
+74234207,24719063,4
+126010684,24719063,4
+SuperKatie,24719063,4
+52396971,24719063,4
+44387904,24719063,4
+3282401,24719063,3
+yiduanhu,24719063,3
+jelly0411,24719063,5
+CrazyBoyFeng,24719063,4
+84548876,24719063,4
+57754572,24719063,5
+csaver,24719063,5
+43887086,24719063,5
+2933514,24719063,5
+dodolovesy,24719063,5
+3315921,24719063,5
+fasy,24719063,4
+120261944,24719063,3
+SiyeonYeung,24719063,4
+1544023,24719063,5
+shanhuaer,24719063,4
+shuhaiyun,24719063,4
+95443736,24719063,4
+55786630,24719063,4
+39047335,24719063,3
+rslhg,24719063,4
+4175208,24719063,4
+chishu,24719063,5
+53248408,24719063,5
+108724042,24719063,4
+57743998,24719063,5
+hyx688bjdx,24719063,4
+Lotus-love,24719063,5
+muyitangtang,24719063,5
+68599612,24719063,4
+chenzhaozhao,24719063,5
+bigmiao,24719063,3
+133282268,24719063,4
+47322994,24719063,3
+121084172,24719063,4
+gozn,24719063,3
+57467616,24719063,4
+46513410,24719063,2
+47193126,24719063,4
+127128928,24719063,5
+eatbananamoku,24719063,5
+57560468,24719063,3
+55777311,24719063,4
+confuzzle,24719063,5
+60016426,24719063,3
+48559818,24719063,3
+SadTomato,24719063,4
+Feola,24719063,4
+summershuiugo,24719063,2
+76921354,24719063,4
+2568949,24719063,3
+89480416,24719063,4
+25794066,24719063,4
+gfyanlong,24719063,4
+blueblue_sky,24719063,4
+52409641,24719063,3
+lunababe,24719063,2
+59288736,24719063,4
+74838297,24719063,5
+92177922,24719063,5
+67953627,24719063,2
+vegenious,24719063,3
+53831199,24719063,5
+61721612,24719063,4
+vampirehunter,24719063,4
+mowenxia,24719063,4
+63998046,24719063,5
+XXXOXXX,24719063,1
+61267740,24719063,3
+67287207,24719063,4
+2607965,24719063,5
+yx3411,24719063,4
+51086722,24719063,4
+51086722,24719063,4
+61954615,24719063,3
+lennyli,24719063,5
+72741941,24719063,4
+80682476,24719063,4
+57477853,24719063,4
+cccnanny,24719063,4
+yikouerren,24719063,3
+60659060,24719063,3
+71058780,24719063,4
+neverlandIvy,24719063,4
+107200905,24719063,4
+83879581,24719063,5
+1761319,24719063,3
+a632157547,24719063,4
+52910058,24719063,5
+119998310,24719063,5
+xzach,24719063,5
+34155818,24719063,4
+88602733,24719063,5
+132367649,24719063,5
+4616127,24719063,5
+84504176,24719063,4
+49705526,24719063,3
+qairy,24719063,5
+118096038,24719063,4
+57773375,24719063,4
+guoqianning,24719063,3
+56808256,24719063,4
+54400244,24719063,3
+27406418,24719063,4
+OuTalK,24719063,4
+66748652,24719063,4
+133230127,24719063,-1
+orangejiang,24719063,4
+47853580,24719063,3
+KGThunder,24719063,5
+81757410,24719063,4
+84294056,24719063,3
+Xian-shushu,24719063,5
+sunyanzhen,24719063,4
+Niro-Zeng,24719063,5
+61261995,24719063,5
+66392767,24719063,3
+JanC,24719063,3
+4126419,24719063,4
+cangshucl,24719063,5
+43787652,24719063,4
+121249285,24719063,4
+133440841,24719063,3
+41044769,24719063,5
+kingkingjean,24719063,5
+Guardianangel,24719063,5
+88428362,24719063,5
+BalaenopteraM,24719063,3
+27528053,24719063,4
+103951444,24719063,5
+lan_guang,24719063,5
+42535832,24719063,4
+60810849,24719063,3
+59160050,24719063,4
+tuka0710,24719063,5
+89233618,24719063,3
+68034921,24719063,4
+Samle-in-us,24719063,5
+57449856,24719063,5
+92578989,24719063,4
+bigbei,24719063,4
+121402491,24719063,4
+65804780,24719063,4
+tt928,24719063,5
+84325006,24719063,4
+cool360,24719063,4
+80915451,24719063,4
+53938589,24719063,4
+61450239,24719063,5
+renee_bai,24719063,3
+umbrella722,24719063,3
+41375062,24719063,3
+yangweili,24719063,3
+yangweili,24719063,3
+82802184,24719063,4
+47551264,24719063,-1
+yihuiw,24719063,2
+44006708,24719063,5
+48687133,24719063,5
+59945441,24719063,4
+buxiaoyanger,24719063,3
+4599993,24719063,5
+58067735,24719063,5
+doubanfujin1995,24719063,3
+33511772,24719063,4
+60101492,24719063,3
+WAZYZ1115,24719063,3
+doudouqin,24719063,5
+hmily0316,24719063,5
+44604880,24719063,-1
+raraphael,24719063,4
+68139737,24719063,5
+3470100,24719063,3
+28630730,24719063,4
+50130752,24719063,3
+luhua,24719063,3
+122514534,24719063,4
+53307722,24719063,4
+48854947,24719063,4
+39628553,24719063,4
+133781672,24719063,4
+vengy123,24719063,5
+65414018,24719063,5
+35595897,24719063,3
+56478299,24719063,4
+39706193,24719063,3
+67137878,24719063,3
+liujiao808,24719063,4
+deppdeep,24719063,5
+62874524,24719063,-1
+45484861,24719063,4
+15752330,24719063,4
+2909769,24719063,2
+2909769,24719063,2
+60583642,24719063,4
+naiveal,24719063,3
+sofarfat,24719063,3
+51204884,24719063,3
+footprintszyy,24719063,3
+59929388,24719063,3
+deardeerdearme,24719063,5
+80640532,24719063,3
+4742922,24719063,1
+wangeasy,24719063,4
+meihuasannong,24719063,3
+42144339,24719063,-1
+80846705,24719063,3
+52194107,24719063,5
+42927631,24719063,4
+51775024,24719063,4
+96149760,24719063,3
+47708632,24719063,3
+DIRENGREY,24719063,4
+80373764,24719063,5
+shadow-walker,24719063,4
+aabbccdd,24719063,4
+47329281,24719063,4
+weiweihuakai,24719063,5
+41042315,24719063,3
+49061947,24719063,3
+60190763,24719063,4
+44583934,24719063,4
+80820714,24719063,4
+47035385,24719063,5
+120875472,24719063,4
+50229430,24719063,5
+92379459,24719063,3
+misswatermelon,24719063,4
+62852599,24719063,4
+48971557,24719063,4
+40100132,24719063,3
+48553188,24719063,3
+78573409,24719063,5
+lightwing86,24719063,4
+53137272,24719063,4
+55434870,24719063,4
+liulull,24719063,4
+3180846,24719063,3
+43411603,24719063,4
+120137624,24719063,3
+82019070,24719063,4
+ChengXiaosi,24719063,2
+lyingcream,24719063,4
+63684409,24719063,4
+78760255,24719063,5
+52874648,24719063,4
+116046638,24719063,4
+ninomihoko,24719063,3
+nico.heng.Y,24719063,4
+50213879,24719063,5
+42619160,24719063,4
+wan1991m,24719063,5
+68317225,24719063,4
+62916852,24719063,5
+burn_in_blue,24719063,5
+51696794,24719063,4
+1495431,24719063,4
+48997081,24719063,4
+51987446,24719063,-1
+tkf024,24719063,4
+67011551,24719063,4
+take_me_away,24719063,5
+30144740,24719063,4
+126873936,24719063,4
+fangbin0516,24719063,2
+fireshrimp,24719063,4
+yukidelei,24719063,5
+46706719,24719063,1
+hugsea,24719063,4
+y19940504,24719063,4
+maggie1268,24719063,2
+maomao3644,24719063,4
+Coolslight,24719063,3
+Coolslight,24719063,3
+lilanning,24719063,5
+kiplinghu,24719063,5
+76550737,24719063,5
+127905530,24719063,3
+dusansan,24719063,4
+45285515,24719063,4
+qikun,24719063,5
+53119904,24719063,5
+2940018,24719063,4
+57724049,24719063,4
+iash,24719063,4
+4146586,24719063,2
+20278593,24719063,4
+58945781,24719063,5
+masterplan,24719063,3
+xiedan51335,24719063,4
+72094979,24719063,5
+amazingta,24719063,4
+oceanmumu,24719063,4
+adamhu,24719063,5
+1686305,24719063,5
+54454841,24719063,4
+suaguai7,24719063,3
+48119351,24719063,4
+83746312,24719063,4
+63720056,24719063,4
+53726625,24719063,4
+tieliuwudi,24719063,4
+51624566,24719063,5
+2239773,24719063,4
+4590914,24719063,5
+89301982,24719063,3
+1433040,24719063,1
+i.m.yours,24719063,3
+68538553,24719063,3
+wenbo2003,24719063,3
+93228351,24719063,3
+73542789,24719063,3
+42138729,24719063,4
+darling99,24719063,4
+choushanzi,24719063,4
+73427649,24719063,4
+3169236,24719063,-1
+57105306,24719063,4
+64287527,24719063,4
+62987657,24719063,4
+FrauDame,24719063,4
+43488242,24719063,4
+59323757,24719063,4
+miaomiaoariel,24719063,5
+75335611,24719063,4
+CharletSon,24719063,5
+3751886,24719063,3
+2668037,24719063,4
+jasonliu0315,24719063,4
+63802533,24719063,5
+duyishi,24719063,3
+Enigmapoet,24719063,3
+obsesser,24719063,3
+82511491,24719063,4
+70253333,24719063,4
+60870044,24719063,2
+czxuyi,24719063,3
+sj1_1ei,24719063,4
+wenliangno1,24719063,4
+postr,24719063,5
+85057811,24719063,4
+75521175,24719063,5
+yi3352011,24719063,5
+fxl0977,24719063,5
+stonelife,24719063,3
+alonggauss,24719063,4
+131798159,24719063,5
+93607054,24719063,4
+61398424,24719063,2
+Salomone,24719063,5
+2989200,24719063,3
+stephaniecharli,24719063,3
+133770513,24719063,5
+juvenility,24719063,3
+131913480,24719063,4
+fivero,24719063,4
+35300407,24719063,3
+68553917,24719063,4
+killmystery,24719063,4
+NetPuter,24719063,3
+42037708,24719063,3
+1447900,24719063,4
+15003054,24719063,4
+128416506,24719063,4
+51780165,24719063,4
+59578689,24719063,4
+Raise.,24719063,4
+xxyoyo,24719063,4
+82404312,24719063,5
+53561160,24719063,4
+liuyongjian,24719063,4
+46668535,24719063,5
+iconsume,24719063,4
+iconsume,24719063,4
+41115284,24719063,5
+1771112,24719063,4
+43199610,24719063,4
+81571102,24719063,-1
+lifeinfilms,24719063,5
+xionghaizhi,24719063,4
+flowerfrommars,24719063,4
+E-lover,24719063,4
+DVforever,24719063,3
+125311581,24719063,4
+xjrangel,24719063,4
+bloodleopard,24719063,4
+2248493,24719063,4
+40836230,24719063,4
+68390057,24719063,5
+guangxia413,24719063,4
+yz501,24719063,3
+chinhao,24719063,4
+cantona_x,24719063,4
+4228858,24719063,4
+72700363,24719063,4
+57859316,24719063,4
+50117171,24719063,4
+49063613,24719063,2
+daying,24719063,4
+71143154,24719063,4
+3859112,24719063,4
+49663642,24719063,4
+56908000,24719063,4
+mayxoxo,24719063,3
+26120516,24719063,4
+46395501,24719063,4
+fenlinhuoshan,24719063,3
+clankyacml,24719063,4
+HA_bamboo,24719063,4
+2714554,24719063,4
+122532383,24719063,4
+60622697,24719063,3
+3648258,24719063,4
+69680398,24719063,4
+48701711,24719063,4
+68963965,24719063,4
+120555899,24719063,3
+62169454,24719063,4
+TerryPark,24719063,4
+cobbcheng,24719063,3
+62709413,24719063,5
+49231240,24719063,2
+65019328,24719063,5
+36360632,24719063,3
+spacerwith,24719063,4
+64768670,24719063,5
+53867596,24719063,4
+56777555,24719063,4
+46803556,24719063,4
+63176670,24719063,5
+52434759,24719063,4
+77153470,24719063,5
+mocun,24719063,2
+40302528,24719063,4
+71875157,24719063,4
+jjsunia,24719063,5
+naschris,24719063,3
+tclh123,24719063,4
+16531729,24719063,-1
+44034935,24719063,5
+guo_tang,24719063,4
+64235797,24719063,5
+51478709,24719063,4
+kewensmile,24719063,4
+63730928,24719063,3
+abigailloii,24719063,4
+66277108,24719063,3
+3504083,24719063,3
+55859362,24719063,5
+45197623,24719063,4
+79337395,24719063,4
+1153912,24719063,-1
+zhouguanyu22,24719063,4
+zhouguanyu22,24719063,4
+65383456,24719063,-1
+leslieilee,24719063,5
+51132496,24719063,3
+dfjx,24719063,4
+sherry0226bm,24719063,4
+fgics,24719063,4
+128008654,24719063,3
+debussy,24719063,4
+57909415,24719063,4
+jiaoyangbo,24719063,4
+celiaoutsider,24719063,4
+50882279,24719063,5
+zc...,24719063,4
+63394553,24719063,4
+58723424,24719063,5
+121545000,24719063,3
+72316189,24719063,4
+52471468,24719063,2
+largind,24719063,5
+95073422,24719063,2
+bonny1111,24719063,4
+zzyjane,24719063,5
+WSSWHL,24719063,3
+ishama,24719063,3
+green_sophie,24719063,-1
+85958266,24719063,4
+STILLWATERRUNS,24719063,4
+63237981,24719063,4
+linyuanxianyu,24719063,5
+znx4521,24719063,4
+30762446,24719063,5
+anthea_me,24719063,4
+75749312,24719063,3
+oresamanomono,24719063,4
+bill86101,24719063,2
+84681267,24719063,4
+yoyofun,24719063,-1
+97812124,24719063,2
+14406293,24719063,4
+127091466,24719063,5
+90521197,24719063,5
+96535250,24719063,5
+podolski,24719063,4
+kuangbi,24719063,3
+56571196,24719063,4
+wanpunleo,24719063,5
+34411968,24719063,4
+zhangyanwen,24719063,3
+virginieds,24719063,4
+jafkxc,24719063,4
+yimutian20,24719063,4
+49332456,24719063,3
+katrinaguo,24719063,4
+zhaoyt,24719063,4
+xffeng,24719063,4
+theshow,24719063,4
+60909361,24719063,4
+126791466,24719063,3
+1437985,24719063,5
+92894015,24719063,2
+71203011,24719063,2
+49298107,24719063,4
+97269963,24719063,3
+shenhuxi,24719063,-1
+114655944,24719063,4
+thanatos7,24719063,5
+47496712,24719063,4
+4608890,24719063,4
+38772492,24719063,5
+115213178,24719063,4
+82990219,24719063,5
+peggyzhu,24719063,5
+2029939,24719063,4
+jiazi1216,24719063,3
+133767746,24719063,4
+funnyxucheng,24719063,4
+honahlee,24719063,5
+55370047,24719063,5
+45539371,24719063,5
+45539371,24719063,5
+Jirocker,24719063,4
+103352684,24719063,3
+74232104,24719063,5
+49710617,24719063,5
+49878108,24719063,3
+47368327,24719063,4
+52769292,24719063,4
+guoziou,24719063,5
+3647236,24719063,4
+1864146,24719063,4
+34065248,24719063,4
+vaneren,24719063,3
+50191113,24719063,-1
+73150810,24719063,4
+leeilo,24719063,4
+1088369,24719063,5
+55712357,24719063,3
+nicolekinji,24719063,4
+63794657,24719063,2
+89187056,24719063,3
+50980636,24719063,5
+57964416,24719063,5
+3403979,24719063,4
+karen_n,24719063,4
+60583715,24719063,5
+52084634,24719063,4
+74953596,24719063,3
+41649419,24719063,4
+44228322,24719063,5
+who_knows,24719063,5
+82454010,24719063,3
+34059998,24719063,5
+3413987,24719063,4
+115772568,24719063,4
+Veronicachai,24719063,4
+mercla,24719063,3
+74418627,24719063,4
+41197183,24719063,3
+scorndefeat,24719063,5
+47052463,24719063,4
+2724287,24719063,5
+seafans,24719063,4
+59621398,24719063,4
+2338228,24719063,3
+abu-ln,24719063,3
+70253982,24719063,4
+61587775,24719063,3
+54616480,24719063,5
+133078454,24719063,3
+82841699,24719063,5
+70537665,24719063,5
+78548715,24719063,3
+flyingfish568,24719063,5
+4510903,24719063,4
+bayuban,24719063,4
+80012045,24719063,4
+marcie2008,24719063,2
+49948211,24719063,5
+58863257,24719063,4
+54103489,24719063,3
+verstand,24719063,4
+4507436,24719063,5
+33490013,24719063,5
+creepNIBA,24719063,4
+3308515,24719063,5
+schumann_Ho,24719063,4
+2300644,24719063,5
+imsuper,24719063,4
+66340656,24719063,4
+43343642,24719063,4
+ll520yy,24719063,4
+49707254,24719063,5
+40506496,24719063,3
+63444982,24719063,4
+57984537,24719063,3
+ink0,24719063,4
+Arenas4.-_-Hreo,24719063,4
+1585753,24719063,4
+59528107,24719063,4
+ddqr,24719063,3
+91392339,24719063,3
+54982572,24719063,2
+48778738,24719063,4
+edwardtroy,24719063,4
+74567017,24719063,5
+alexw,24719063,3
+53829789,24719063,2
+76960780,24719063,4
+52004258,24719063,5
+130939164,24719063,4
+feng-tracy,24719063,4
+3816943,24719063,3
+ltec,24719063,3
+yoyomint,24719063,4
+daheiluozi,24719063,4
+41966800,24719063,1
+133766058,24719063,4
+81848652,24719063,5
+fanfankuaipao,24719063,3
+jackyyin,24719063,4
+48149577,24719063,5
+iducky,24719063,3
+Showga,24719063,5
+mynange,24719063,4
+40850252,24719063,4
+69068594,24719063,3
+28388052,24719063,4
+1021243,24719063,4
+14306703,24719063,3
+52905046,24719063,4
+51078000,24719063,3
+55603094,24719063,4
+14484123,24719063,4
+36345829,24719063,5
+77386416,24719063,4
+9184667,24719063,5
+42932797,24719063,5
+121881765,24719063,5
+130762415,24719063,3
+2571588,24719063,4
+sheepoy,24719063,4
+54543639,24719063,4
+Nosferaaatu,24719063,4
+42753835,24719063,4
+108728463,24719063,4
+missZ.,24719063,4
+63830890,24719063,5
+akizou,24719063,2
+wzx921009,24719063,4
+65061479,24719063,3
+carolling,24719063,3
+2488161,24719063,5
+50622639,24719063,5
+jiatianyu1,24719063,4
+69337188,24719063,1
+69124810,24719063,4
+xgtmy95,24719063,4
+66890979,24719063,4
+59406381,24719063,3
+87069723,24719063,4
+4724531,24719063,4
+58059498,24719063,3
+53143088,24719063,4
+wkwkaka,24719063,4
+fan_tuan,24719063,4
+130883394,24719063,3
+28298846,24719063,3
+55372361,24719063,4
+fotoz,24719063,3
+MissAria_R,24719063,4
+sep0407,24719063,4
+xiachuanhe,24719063,3
+59220835,24719063,5
+3870362,24719063,4
+iamsyh,24719063,3
+pinkmouse,24719063,4
+51756800,24719063,5
+126771575,24719063,4
+51965783,24719063,4
+51965783,24719063,4
+58789176,24719063,3
+lstra,24719063,1
+46689688,24719063,4
+69692421,24719063,3
+cjc112,24719063,3
+xulewyw,24719063,4
+120674793,24719063,5
+16663618,24719063,2
+69822780,24719063,4
+50040754,24719063,3
+42095486,24719063,4
+xiamudemao,24719063,3
+83848433,24719063,3
+58013933,24719063,4
+78488765,24719063,4
+75638865,24719063,3
+TomboyJoe,24719063,3
+129051371,24719063,4
+77052440,24719063,4
+Mr.pea,24719063,5
+mio1989,24719063,4
+58412725,24719063,4
+kangecho,24719063,5
+4320074,24719063,3
+64309170,24719063,4
+52246931,24719063,4
+60124417,24719063,4
+73275349,24719063,4
+50282986,24719063,4
+SalmonPlum,24719063,5
+yelisi,24719063,3
+59741091,24719063,5
+61978827,24719063,3
+49403178,24719063,3
+62318822,24719063,3
+2118008,24719063,3
+82123498,24719063,3
+50374697,24719063,4
+46252496,24719063,4
+83571302,24719063,4
+1440157,24719063,4
+55817697,24719063,4
+39974594,24719063,4
+rosexiafei,24719063,4
+61207902,24719063,4
+67682278,24719063,4
+82391952,24719063,5
+marurui,24719063,-1
+47136314,24719063,4
+81773475,24719063,4
+xixi-0303,24719063,3
+91872215,24719063,4
+xixiluluyu,24719063,4
+2373335,24719063,5
+131304210,24719063,4
+57028649,24719063,5
+50221817,24719063,4
+quandolinger,24719063,2
+68679029,24719063,4
+65155136,24719063,3
+46942165,24719063,5
+songzer,24719063,2
+christopherlin,24719063,3
+51126064,24719063,4
+3524514,24719063,4
+80140628,24719063,4
+ops-out,24719063,4
+46319235,24719063,4
+68872792,24719063,4
+62741271,24719063,3
+96799379,24719063,3
+73834908,24719063,5
+xiangmocheng,24719063,3
+118607602,24719063,3
+3535148,24719063,5
+34266139,24719063,4
+83745562,24719063,5
+128381248,24719063,3
+58825123,24719063,2
+58825123,24719063,2
+1831722,24719063,4
+82261308,24719063,4
+paltrow,24719063,-1
+cupittang,24719063,5
+3176938,24719063,4
+49152036,24719063,4
+46830081,24719063,5
+superdeco,24719063,4
+78914788,24719063,4
+67976109,24719063,4
+db_time,24719063,4
+3065154,24719063,3
+Flipped_Judy,24719063,4
+121900406,24719063,4
+1610818,24719063,4
+57469413,24719063,4
+84741578,24719063,4
+42334349,24719063,3
+62737941,24719063,4
+47305283,24719063,5
+JJSJJ,24719063,4
+RiOT_Mor,24719063,4
+Jillian,24719063,-1
+55314641,24719063,4
+3335286,24719063,5
+3016636,24719063,2
+93274521,24719063,4
+70055114,24719063,4
+50867193,24719063,4
+2787490,24719063,4
+28365656,24719063,4
+oneparty,24719063,3
+arenagreen,24719063,4
+xiaozhangshi,24719063,4
+125334017,24719063,3
+58371683,24719063,4
+46312195,24719063,4
+125729384,24719063,5
+69065215,24719063,4
+79151265,24719063,3
+wildkidpk,24719063,4
+40398105,24719063,4
+46560672,24719063,5
+58693060,24719063,4
+69403102,24719063,3
+wangxiaozhi,24719063,5
+33010059,24719063,5
+ashleyzla,24719063,5
+36621770,24719063,5
+55536048,24719063,5
+61085333,24719063,5
+genie1989,24719063,5
+33456055,24719063,4
+81929147,24719063,5
+66627403,24719063,4
+53912773,24719063,5
+nemofishhome,24719063,4
+61366288,24719063,4
+58639164,24719063,4
+125053842,24719063,5
+62892570,24719063,4
+YUYII,24719063,3
+50559571,24719063,3
+84257030,24719063,5
+deepbluedaip,24719063,5
+60577921,24719063,5
+70333895,24719063,3
+49294645,24719063,3
+75705790,24719063,4
+71834374,24719063,5
+2275412,24719063,3
+1128775,24719063,5
+F1vese7enone,24719063,4
+4520566,24719063,3
+121340498,24719063,5
+102581208,24719063,4
+andywenzhi,24719063,4
+4132596,24719063,3
+Joyce1031,24719063,5
+46509105,24719063,5
+61474591,24719063,3
+Chikomoumao,24719063,4
+miracleq0614,24719063,4
+2848425,24719063,5
+115203825,24719063,4
+119987907,24719063,5
+rachel1120,24719063,5
+51561756,24719063,4
+4154813,24719063,5
+80227742,24719063,4
+39077836,24719063,5
+65939356,24719063,3
+38549519,24719063,4
+xinmu.douban,24719063,5
+ranljron,24719063,5
+23599955,24719063,4
+39034881,24719063,4
+56416276,24719063,5
+soonist,24719063,3
+cozumakemesmile,24719063,4
+68668989,24719063,3
+60075319,24719063,5
+mixdream,24719063,4
+floraxu,24719063,4
+2255673,24719063,1
+forest_desert,24719063,4
+14363390,24719063,4
+amzyangyk,24719063,4
+92010392,24719063,4
+43253714,24719063,3
+55764073,24719063,4
+36457443,24719063,3
+37630136,24719063,4
+satanprince,24719063,4
+JackHChan,24719063,5
+75174389,24719063,5
+4613815,24719063,5
+qingzai,24719063,4
+122104657,24719063,5
+yuetianxian,24719063,4
+toddzhou,24719063,4
+100234092,24719063,4
+48722757,24719063,3
+51086058,24719063,5
+3947884,24719063,5
+2425435,24719063,3
+104227005,24719063,5
+90774303,24719063,3
+chongyan886,24719063,4
+129152031,24719063,4
+4436078,24719063,4
+mullerlahm,24719063,4
+77094909,24719063,4
+4556815,24719063,2
+120964759,24719063,3
+30267706,24719063,3
+97190938,24719063,4
+57949224,24719063,5
+96490951,24719063,4
+74449417,24719063,5
+ccteav,24719063,4
+66485942,24719063,4
+gaomars,24719063,4
+49403061,24719063,4
+cxh19920714,24719063,3
+133141228,24719063,4
+riki0221,24719063,4
+1423262,24719063,2
+121627285,24719063,4
+2849436,24719063,4
+44539151,24719063,4
+37770325,24719063,5
+63657398,24719063,4
+64972660,24719063,4
+46350498,24719063,3
+68936327,24719063,4
+127029651,24719063,4
+wz1031h,24719063,4
+beomi,24719063,3
+wentibuda,24719063,5
+rainsun0607,24719063,4
+chezidaobai,24719063,4
+74958646,24719063,4
+51607217,24719063,5
+58964496,24719063,2
+51496200,24719063,3
+121928647,24719063,3
+Sommer_X,24719063,5
+51444963,24719063,5
+twyvian,24719063,4
+mangojoan,24719063,4
+124983314,24719063,3
+ppmy,24719063,4
+2400333,24719063,4
+62296200,24719063,5
+49294840,24719063,4
+MORANCL,24719063,4
+122729888,24719063,4
+ann912,24719063,3
+92450797,24719063,3
+63510323,24719063,3
+emptypain,24719063,4
+83998725,24719063,2
+4521155,24719063,4
+37383039,24719063,5
+6398426,24719063,-1
+60002715,24719063,3
+celt,24719063,4
+97312448,24719063,4
+80123507,24719063,4
+60119095,24719063,5
+ashura0509,24719063,4
+3797391,24719063,5
+53056949,24719063,3
+101369491,24719063,4
+37410275,24719063,5
+yyxmy,24719063,3
+pinqi,24719063,5
+72653777,24719063,4
+3563264,24719063,-1
+59146619,24719063,4
+67985857,24719063,3
+88867964,24719063,4
+60751376,24719063,5
+49257150,24719063,4
+2635787,24719063,5
+lemonomel,24719063,4
+107493773,24719063,5
+58112577,24719063,4
+douban787878,24719063,4
+49422447,24719063,5
+lhyendless,24719063,4
+maihiseki,24719063,4
+34729995,24719063,3
+43868874,24719063,5
+18586571,24719063,4
+125481969,24719063,5
+67878115,24719063,4
+104823188,24719063,4
+bigseaurchin,24719063,5
+Delfifi,24719063,2
+68776992,24719063,5
+80783250,24719063,5
+65224694,24719063,4
+3024123,24719063,4
+xiaomeigg,24719063,4
+summ2r44,24719063,5
+68302537,24719063,5
+zebra1987,24719063,5
+LeonJunki,24719063,4
+lukaka,24719063,4
+53656219,24719063,4
+72585899,24719063,5
+58310679,24719063,4
+69704401,24719063,4
+Ghost1987,24719063,4
+3653774,24719063,3
+yingyujiaoshi,24719063,5
+80752202,24719063,5
+81835425,24719063,5
+80808248,24719063,4
+53723765,24719063,4
+92298233,24719063,4
+1306187,24719063,4
+129432208,24719063,3
+2394056,24719063,-1
+61788705,24719063,4
+62970247,24719063,4
+lucyn,24719063,5
+57620298,24719063,-1
+58050529,24719063,5
+violetyyx,24719063,4
+88539374,24719063,4
+davidmoer,24719063,3
+kandicehu,24719063,3
+1758855,24719063,4
+49302309,24719063,3
+119988256,24719063,4
+133497592,24719063,4
+51008270,24719063,4
+38538166,24719063,2
+vicky_vampire,24719063,3
+39668757,24719063,3
+duanduan90,24719063,3
+43664201,24719063,3
+63757609,24719063,4
+121540770,24719063,5
+markmong,24719063,4
+48946440,24719063,4
+56914134,24719063,3
+notexistatall,24719063,4
+60354400,24719063,5
+peach_lee,24719063,5
+49749063,24719063,5
+samadhi,24719063,3
+3974458,24719063,3
+102400331,24719063,5
+FindingKnightly,24719063,4
+129028198,24719063,4
+58423983,24719063,4
+64510815,24719063,5
+moontooth,24719063,3
+90612297,24719063,4
+82808408,24719063,3
+82855904,24719063,5
+128527769,24719063,5
+47897343,24719063,5
+39957115,24719063,4
+84197585,24719063,4
+XXTong,24719063,4
+sunny1992,24719063,2
+seven-land,24719063,4
+ys5259,24719063,4
+akanetx,24719063,4
+104580788,24719063,4
+104440766,24719063,4
+59426898,24719063,4
+87153113,24719063,4
+65672377,24719063,4
+45560390,24719063,4
+49305517,24719063,5
+130510825,24719063,5
+nzhdme,24719063,5
+92393333,24719063,5
+edward1988,24719063,2
+yokotree,24719063,4
+klrobsten,24719063,4
+Countryding,24719063,4
+132868544,24719063,4
+66129611,24719063,5
+54499883,24719063,4
+63506712,24719063,3
+81297479,24719063,4
+ntz521,24719063,4
+violin0714,24719063,4
+tamedfoxcjl,24719063,5
+72468752,24719063,5
+74849633,24719063,4
+130069802,24719063,4
+130069802,24719063,4
+16526373,24719063,5
+79844827,24719063,3
+duanziyu,24719063,3
+64244763,24719063,4
+92809978,24719063,4
+3017985,24719063,4
+51912235,24719063,5
+49267780,24719063,4
+112083584,24719063,5
+30857176,24719063,3
+48876090,24719063,4
+2683471,24719063,3
+57285886,24719063,4
+mumurose,24719063,3
+70023173,24719063,4
+february_,24719063,4
+124475249,24719063,3
+53679520,24719063,3
+67388709,24719063,5
+67388709,24719063,5
+128128481,24719063,4
+65340387,24719063,4
+52091489,24719063,3
+69125337,24719063,4
+132347906,24719063,5
+95884206,24719063,4
+56201837,24719063,4
+marvelwei,24719063,5
+91746178,24719063,3
+47346400,24719063,4
+msmor,24719063,3
+72506505,24719063,5
+63029583,24719063,4
+26419001,24719063,3
+linnnnnc,24719063,4
+133123922,24719063,4
+57851144,24719063,3
+58255459,24719063,4
+71186980,24719063,4
+130563021,24719063,2
+trav31,24719063,4
+92025447,24719063,4
+123504720,24719063,5
+73961921,24719063,4
+62875817,24719063,4
+wendychou,24719063,3
+104409838,24719063,5
+AWESOME0813,24719063,5
+122004304,24719063,4
+47633821,24719063,4
+dingtian911,24719063,5
+45641492,24719063,5
+zr90129,24719063,4
+72101661,24719063,4
+83161147,24719063,4
+64724876,24719063,2
+birgit1226,24719063,3
+102640123,24719063,4
+27570114,24719063,4
+45360816,24719063,4
+74230834,24719063,4
+fps40,24719063,4
+tibetkids,24719063,5
+94353228,24719063,4
+aaahan,24719063,5
+98010855,24719063,3
+96331633,24719063,1
+52247280,24719063,4
+superzoukang,24719063,4
+84641449,24719063,4
+129582003,24719063,4
+79061873,24719063,5
+49455574,24719063,4
+samedittt,24719063,4
+49389297,24719063,5
+15668245,24719063,4
+43891260,24719063,3
+59516134,24719063,3
+133543048,24719063,5
+43903711,24719063,5
+38452487,24719063,3
+79322204,24719063,4
+63556655,24719063,5
+37914560,24719063,4
+wzshowli,24719063,5
+97061327,24719063,3
+67048173,24719063,4
+48825129,24719063,4
+caijiazhan,24719063,4
+53998568,24719063,4
+63329405,24719063,3
+3574079,24719063,4
+48204771,24719063,5
+1411076,24719063,5
+dokuso,24719063,5
+56499192,24719063,5
+49518806,24719063,3
+66128377,24719063,5
+fzhizhi,24719063,4
+fzhizhi,24719063,4
+100303280,24719063,4
+120091522,24719063,4
+50470149,24719063,4
+wahds,24719063,5
+wonderfulsavvy,24719063,5
+h9998,24719063,3
+76181752,24719063,4
+magic1029,24719063,4
+tl372228075,24719063,4
+133080033,24719063,4
+jiangjixiang,24719063,3
+52259960,24719063,4
+58820411,24719063,3
+52414644,24719063,4
+piggasol,24719063,4
+66765368,24719063,3
+58489592,24719063,5
+58737002,24719063,3
+104748049,24719063,5
+yaoyaosos,24719063,4
+cwyjsw,24719063,4
+guliguo2046,24719063,4
+91081419,24719063,5
+47590897,24719063,5
+zuoshoudezuo,24719063,4
+47166487,24719063,3
+81311883,24719063,5
+qilin17,24719063,4
+1569518,24719063,4
+1673724,24719063,4
+40177253,24719063,5
+80430212,24719063,4
+4180771,24719063,5
+116438067,24719063,5
+82081998,24719063,3
+Lizzieyuan,24719063,5
+49191008,24719063,3
+smilingbamboo,24719063,3
+121887405,24719063,5
+lemonke,24719063,4
+44714353,24719063,4
+lovingxiong,24719063,5
+zhong13211,24719063,4
+76077966,24719063,5
+122438053,24719063,5
+1892627,24719063,4
+Antiair,24719063,3
+lucyhuang21,24719063,3
+superwangying,24719063,5
+122638159,24719063,4
+jinshuxiao,24719063,4
+50023585,24719063,-1
+43617047,24719063,4
+128234602,24719063,5
+56800653,24719063,4
+49129674,24719063,3
+44028867,24719063,4
+xiaoxunoisy,24719063,4
+77280863,24719063,4
+MandyChiang,24719063,4
+125852701,24719063,4
+37942469,24719063,2
+132678322,24719063,1
+babemomo,24719063,4
+3337456,24719063,3
+58086005,24719063,3
+82345675,24719063,5
+2889068,24719063,5
+47844026,24719063,4
+ganster,24719063,5
+irisyours,24719063,4
+64447169,24719063,1
+33787195,24719063,4
+52606469,24719063,3
+49055254,24719063,3
+42591812,24719063,5
+34988522,24719063,4
+yikiv,24719063,2
+29519193,24719063,4
+63531003,24719063,4
+charmine913,24719063,4
+84114738,24719063,3
+72660681,24719063,5
+dmyra1011,24719063,5
+dyz_McAvoy,24719063,4
+4663105,24719063,2
+30041245,24719063,3
+sweetranran,24719063,5
+22725672,24719063,4
+kuii,24719063,5
+slow_fake,24719063,5
+45485577,24719063,4
+84539912,24719063,5
+36743264,24719063,3
+120815285,24719063,5
+hushibookstore,24719063,3
+Sparta233,24719063,5
+48784410,24719063,4
+lilypure,24719063,4
+114329710,24719063,5
+79148662,24719063,-1
+freedom4ever_L,24719063,4
+3269399,24719063,4
+Vanessa.,24719063,4
+glacierzbc,24719063,4
+chouchou35,24719063,4
+94872079,24719063,4
+103554299,24719063,4
+58929957,24719063,4
+bianyuanai,24719063,4
+goodjelly,24719063,4
+dianawh,24719063,3
+yufei_1974,24719063,4
+49397696,24719063,4
+53415052,24719063,3
+MMMeaux,24719063,-1
+88931926,24719063,4
+120983042,24719063,4
+3580594,24719063,3
+kingkongbarbie,24719063,5
+59681480,24719063,5
+42222694,24719063,3
+evgeni1955,24719063,3
+121297560,24719063,4
+65721837,24719063,3
+3599865,24719063,4
+intofilm,24719063,4
+94243524,24719063,1
+49429260,24719063,4
+75678243,24719063,5
+48144373,24719063,4
+3304536,24719063,3
+amorexia,24719063,5
+4773809,24719063,1
+64286867,24719063,5
+69386924,24719063,4
+34909792,24719063,4
+50067525,24719063,5
+69714540,24719063,5
+129828454,24719063,5
+47716640,24719063,4
+56369777,24719063,5
+71797507,24719063,5
+66948883,24719063,3
+Penjiy,24719063,4
+31789873,24719063,4
+42443171,24719063,4
+56160592,24719063,4
+niazion,24719063,5
+49891343,24719063,4
+71806570,24719063,4
+happywangwen,24719063,4
+45310336,24719063,4
+43210581,24719063,4
+115669572,24719063,2
+77207939,24719063,4
+51591369,24719063,3
+63537960,24719063,4
+3732379,24719063,5
+57189493,24719063,1
+jocelyn1031,24719063,3
+2825518,24719063,4
+swan93,24719063,4
+miss_syh,24719063,5
+76630020,24719063,5
+49353834,24719063,4
+70554231,24719063,3
+Taurusess,24719063,5
+61678702,24719063,3
+85119623,24719063,4
+55312255,24719063,4
+yumengjiangli,24719063,4
+46152001,24719063,5
+scorates1984,24719063,3
+face_off,24719063,4
+4413666,24719063,4
+2058605,24719063,2
+123413024,24719063,3
+65940627,24719063,3
+68427174,24719063,5
+93866634,24719063,4
+mayday213a213,24719063,4
+16150323,24719063,2
+VIVIAN.Z,24719063,4
+62993339,24719063,3
+linjinghai,24719063,4
+133151466,24719063,4
+liuxingfeiban,24719063,4
+4160222,24719063,5
+25350324,24719063,2
+lqj1,24719063,4
+2295894,24719063,5
+s_y_3,24719063,5
+60829773,24719063,5
+yuyin1986,24719063,4
+64466995,24719063,5
+renjiananhuo,24719063,4
+fenlanbingyan,24719063,4
+82298869,24719063,4
+82298869,24719063,4
+55823787,24719063,3
+121824373,24719063,4
+58523083,24719063,4
+33308481,24719063,4
+98620451,24719063,4
+JudyItalia,24719063,4
+90497185,24719063,3
+48497184,24719063,4
+43370431,24719063,4
+niuchen0288,24719063,4
+Arise_lillian,24719063,5
+52116951,24719063,4
+66549864,24719063,5
+maydayfuck,24719063,3
+32569876,24719063,4
+69575343,24719063,4
+131474858,24719063,4
+losta,24719063,2
+lizzyteddy,24719063,3
+liaojinzi,24719063,3
+62571454,24719063,4
+chensiliunian,24719063,4
+60736257,24719063,4
+133531651,24719063,5
+42307079,24719063,4
+3478406,24719063,3
+81850559,24719063,3
+55893026,24719063,4
+79631901,24719063,3
+52585646,24719063,4
+miemiefever,24719063,4
+HYQRZKLS,24719063,-1
+68869311,24719063,5
+87636985,24719063,4
+119024126,24719063,3
+3116575,24719063,4
+GiraffeApril,24719063,4
+icehinata,24719063,4
+65214570,24719063,4
+28460777,24719063,3
+80884901,24719063,4
+75973353,24719063,4
+56995907,24719063,4
+127728111,24719063,3
+dodocancer,24719063,5
+119458594,24719063,4
+102356757,24719063,4
+58370921,24719063,3
+3206594,24719063,5
+Wsuansuan,24719063,4
+1381043,24719063,3
+2228287,24719063,5
+72258844,24719063,5
+34438242,24719063,4
+1867292,24719063,4
+xingren912,24719063,4
+36406989,24719063,4
+41582254,24719063,3
+4750660,24719063,5
+131118514,24719063,5
+79543278,24719063,4
+2633400,24719063,4
+brucetown,24719063,3
+Sioobhan,24719063,3
+kp81ndlf,24719063,3
+72257329,24719063,5
+lies583,24719063,5
+81278452,24719063,5
+77086576,24719063,4
+71902602,24719063,4
+63801162,24719063,3
+daneils,24719063,4
+Eayo,24719063,3
+66108134,24719063,4
+lyanloveforever,24719063,4
+Mozilla,24719063,5
+moliangege,24719063,2
+3503742,24719063,3
+maggiejingliu,24719063,4
+60848115,24719063,4
+47941065,24719063,4
+133735430,24719063,5
+77625620,24719063,3
+stonelcc,24719063,4
+53050903,24719063,3
+3801810,24719063,3
+126028524,24719063,4
+132830109,24719063,4
+57262819,24719063,4
+59012758,24719063,4
+49382185,24719063,4
+94976751,24719063,3
+65937993,24719063,4
+63950350,24719063,4
+wadb,24719063,3
+elephantjun,24719063,4
+85369018,24719063,3
+131194167,24719063,4
+66348303,24719063,5
+66348303,24719063,5
+moxiaonue,24719063,4
+80126415,24719063,4
+53492535,24719063,3
+33499738,24719063,-1
+isheldon,24719063,4
+44371183,24719063,4
+97876360,24719063,5
+46151363,24719063,3
+dandangobelieve,24719063,-1
+xczhong,24719063,3
+98510487,24719063,5
+3800028,24719063,4
+imoviekobe,24719063,3
+71728792,24719063,5
+73759224,24719063,4
+weijianjian,24719063,3
+44345461,24719063,4
+ivy0208,24719063,3
+130322622,24719063,5
+Q__,24719063,3
+25560643,24719063,4
+53068845,24719063,4
+128277585,24719063,4
+missingwei,24719063,3
+55861124,24719063,5
+62532715,24719063,4
+49652650,24719063,3
+OBSSESSION,24719063,3
+60537174,24719063,3
+Mapotatoes,24719063,5
+Asukaluo,24719063,3
+63666748,24719063,4
+22839446,24719063,5
+Cancer_x,24719063,3
+iear,24719063,4
+4100649,24719063,2
+45467820,24719063,3
+mylittletower,24719063,4
+2702241,24719063,4
+maopaopaoxiaoyu,24719063,4
+43842293,24719063,5
+63687502,24719063,5
+1601177,24719063,4
+56479338,24719063,5
+87730263,24719063,5
+Serena201314,24719063,4
+endlessleep,24719063,4
+csp,24719063,4
+125010883,24719063,5
+48542981,24719063,3
+lizi19881218,24719063,3
+sjmx,24719063,5
+ijunojiang,24719063,3
+121088664,24719063,4
+SKIN69-L,24719063,2
+xbl911,24719063,3
+dearruby,24719063,5
+130743803,24719063,5
+132582256,24719063,4
+88038496,24719063,5
+59657806,24719063,4
+shirleycore,24719063,5
+125028043,24719063,4
+3308651,24719063,5
+benihi,24719063,4
+4228876,24719063,5
+peter-pen,24719063,2
+34487408,24719063,4
+pray-entic,24719063,2
+97623200,24719063,3
+63016054,24719063,4
+Leslie406,24719063,4
+49824578,24719063,5
+yytttna,24719063,4
+7859437,24719063,-1
+hjhmusic,24719063,5
+etherhejia,24719063,4
+hxlnelson,24719063,4
+54126293,24719063,4
+54126293,24719063,4
+53967478,24719063,5
+rodi,24719063,4
+September_27,24719063,4
+6345418,24719063,5
+63332200,24719063,4
+30153657,24719063,5
+76302499,24719063,5
+27643874,24719063,3
+gqknight,24719063,4
+48198642,24719063,4
+49693617,24719063,4
+gannizi,24719063,3
+serah,24719063,4
+rinnie,24719063,4
+12785458,24719063,3
+boohooer,24719063,3
+ting9270,24719063,4
+suki0704,24719063,4
+lulu123,24719063,-1
+78396760,24719063,5
+57753980,24719063,5
+58402728,24719063,4
+r0ur0u,24719063,5
+2517259,24719063,5
+64086666,24719063,4
+45505797,24719063,4
+53536327,24719063,5
+44436573,24719063,5
+75608204,24719063,4
+zhilan,24719063,4
+SINCE1988,24719063,4
+2095236,24719063,4
+mrcandy,24719063,3
+zhuangzhuang21,24719063,5
+58921736,24719063,5
+56941343,24719063,5
+vivicky320,24719063,5
+60921660,24719063,4
+63675187,24719063,3
+74532668,24719063,3
+xiaoqiaza2015,24719063,4
+49188698,24719063,4
+129849834,24719063,3
+43248795,24719063,1
+102944356,24719063,5
+4089761,24719063,4
+122090145,24719063,-1
+8459513,24719063,4
+36757046,24719063,5
+132842672,24719063,5
+62842608,24719063,3
+yan7478,24719063,4
+66976207,24719063,4
+tianranzijiegou,24719063,4
+45566980,24719063,5
+2669000,24719063,3
+tresen,24719063,5
+69307403,24719063,3
+jennifershi,24719063,4
+81667410,24719063,4
+Patrick_Kang,24719063,4
+3615655,24719063,3
+60082922,24719063,4
+81692824,24719063,3
+4755715,24719063,4
+85981309,24719063,3
+52692390,24719063,3
+51171341,24719063,3
+sugustmac,24719063,4
+63318519,24719063,3
+48807629,24719063,5
+mysky,24719063,3
+2437069,24719063,4
+65810005,24719063,-1
+57812522,24719063,4
+56016863,24719063,4
+foreverwade3,24719063,4
+59901514,24719063,4
+1770636,24719063,4
+63213625,24719063,4
+13941828,24719063,5
+53480994,24719063,4
+whatever92,24719063,5
+9292090,24719063,4
+50583394,24719063,5
+43359124,24719063,4
+46269945,24719063,5
+shaochaowen,24719063,5
+Ansheng_vivi,24719063,-1
+46368829,24719063,4
+chilam0827,24719063,4
+52889400,24719063,5
+47227699,24719063,4
+76461360,24719063,4
+125750519,24719063,4
+mikiwdy,24719063,4
+Providenci,24719063,2
+shuilu,24719063,2
+102951329,24719063,5
+27898838,24719063,4
+Will307,24719063,5
+53789319,24719063,4
+39469092,24719063,4
+pygmalio,24719063,4
+74291934,24719063,5
+52104521,24719063,4
+32705581,24719063,5
+44738812,24719063,4
+Linqiny,24719063,3
+wangbingyu,24719063,3
+dhflockyer00,24719063,4
+floran,24719063,4
+72693000,24719063,4
+3119464,24719063,4
+49842201,24719063,4
+84431385,24719063,4
+ashin000,24719063,5
+KFdaxiong,24719063,4
+27521335,24719063,4
+27521335,24719063,4
+66959983,24719063,3
+aharley,24719063,4
+52352034,24719063,5
+yrftx,24719063,2
+seveness,24719063,3
+seeonly,24719063,-1
+66197208,24719063,2
+1585106,24719063,3
+42314305,24719063,4
+102489587,24719063,5
+74103020,24719063,4
+SmilerCheung,24719063,4
+FANFan-ER,24719063,4
+56252551,24719063,4
+49277404,24719063,4
+47088428,24719063,5
+ximenqing_,24719063,5
+58601599,24719063,3
+yidakefacaishu,24719063,4
+132771463,24719063,4
+3316493,24719063,4
+64273735,24719063,4
+51990715,24719063,3
+103617417,24719063,4
+Ashley.c,24719063,4
+xiaohundexiaoba,24719063,4
+122392735,24719063,3
+EthanChu,24719063,4
+46388804,24719063,5
+25140645,24719063,2
+crowsz,24719063,4
+superrain,24719063,4
+126213133,24719063,3
+dekaixu,24719063,4
+64154274,24719063,3
+54849133,24719063,4
+3322566,24719063,4
+43468418,24719063,4
+2298833,24719063,4
+15522600,24719063,4
+43949233,24719063,4
+58159662,24719063,4
+2888286,24719063,4
+sunflower_ruo,24719063,5
+karyland,24719063,3
+stevexia,24719063,4
+yzr8979,24719063,4
+moyee_sky,24719063,4
+3549866,24719063,5
+shawivy,24719063,5
+79930612,24719063,2
+103380368,24719063,5
+61374818,24719063,5
+Pennyui,24719063,4
+disorderlyfly,24719063,5
+threeholetwo,24719063,2
+69274709,24719063,5
+121922821,24719063,4
+1992940,24719063,5
+zhangreeki,24719063,4
+zackman,24719063,4
+2616668,24719063,4
+Sisyphus.,24719063,3
+kxy12567,24719063,3
+82347389,24719063,4
+xiesicong,24719063,4
+2374847,24719063,4
+1391852,24719063,4
+vitataylor,24719063,4
+48783250,24719063,3
+elvandjane,24719063,4
+73416424,24719063,-1
+96471096,24719063,5
+52866645,24719063,4
+48071996,24719063,3
+87497882,24719063,3
+61158294,24719063,4
+33091901,24719063,4
+appleyy9,24719063,4
+sable_in_red,24719063,5
+62309312,24719063,4
+Chinajoke,24719063,4
+79394979,24719063,5
+61367021,24719063,5
+65400583,24719063,5
+dream_for3,24719063,4
+29834677,24719063,4
+yamericanpie,24719063,4
+130706971,24719063,4
+32033776,24719063,4
+63953878,24719063,4
+56687999,24719063,3
+Alanya,24719063,4
+71762579,24719063,5
+74722549,24719063,3
+4291484,24719063,4
+45518170,24719063,4
+Kesen,24719063,3
+47564941,24719063,5
+60865096,24719063,4
+52261652,24719063,4
+bztz,24719063,4
+babybear0110,24719063,4
+1327654,24719063,-1
+59167115,24719063,4
+63753537,24719063,3
+49123021,24719063,5
+49568833,24719063,4
+25960765,24719063,4
+3513714,24719063,3
+56867346,24719063,4
+49378755,24719063,5
+57882288,24719063,3
+75784900,24719063,5
+80873754,24719063,3
+68079880,24719063,4
+4599465,24719063,3
+SweetSalts,24719063,4
+somnor,24719063,5
+69420649,24719063,4
+LightningFlash,24719063,3
+lanyuhan,24719063,4
+104056990,24719063,5
+44564870,24719063,5
+84696017,24719063,4
+44789325,24719063,5
+124126048,24719063,3
+35506270,24719063,3
+14914580,24719063,4
+65139794,24719063,5
+HR-vivi,24719063,4
+131610219,24719063,5
+55925373,24719063,4
+qjwcc,24719063,5
+56594024,24719063,4
+aprilwind_shi,24719063,3
+sxy921026,24719063,4
+samsaid,24719063,5
+121609568,24719063,4
+BunnyBaby89757,24719063,3
+liwanjun,24719063,4
+mangomangotree,24719063,4
+48159178,24719063,5
+zichunaicao,24719063,4
+52160511,24719063,4
+4239908,24719063,5
+53330814,24719063,4
+11769509,24719063,4
+57559863,24719063,4
+ivan931,24719063,-1
+aragakki,24719063,4
+neverevenever,24719063,4
+2510654,24719063,4
+royin.chao,24719063,4
+kubrick311,24719063,4
+88292094,24719063,4
+momoko_huang,24719063,3
+2588717,24719063,5
+60208186,24719063,4
+83433574,24719063,5
+122181202,24719063,5
+34846798,24719063,5
+63193951,24719063,5
+1221410,24719063,5
+60349367,24719063,5
+songweimao,24719063,4
+71609046,24719063,5
+14042957,24719063,4
+83023135,24719063,3
+82821279,24719063,3
+54231509,24719063,4
+qd724945697,24719063,4
+40104674,24719063,4
+lilygoy,24719063,5
+72098592,24719063,3
+53172898,24719063,4
+movielove,24719063,3
+74522776,24719063,5
+37723220,24719063,5
+51445328,24719063,3
+54864998,24719063,4
+4005034,24719063,5
+51930449,24719063,5
+Microka,24719063,4
+38207955,24719063,4
+70701467,24719063,4
+120018713,24719063,5
+hollypong,24719063,5
+55457012,24719063,-1
+75476246,24719063,5
+63413340,24719063,5
+duyeedei,24719063,4
+4039085,24719063,3
+amutofade,24719063,4
+tomyiyun,24719063,4
+creepofhuihui,24719063,3
+112314303,24719063,3
+95461146,24719063,4
+MUSHROOM_AMBER,24719063,3
+40659159,24719063,5
+43214194,24719063,4
+dvddvd,24719063,3
+45650024,24719063,5
+84158576,24719063,4
+63192543,24719063,5
+30658509,24719063,3
+68851318,24719063,4
+47587724,24719063,3
+43703973,24719063,5
+73729558,24719063,3
+50958323,24719063,4
+douaisha,24719063,2
+57640790,24719063,5
+83681028,24719063,4
+xiaolanhou,24719063,1
+61922263,24719063,5
+buddhajump,24719063,3
+2803203,24719063,5
+61932917,24719063,3
+lintin23,24719063,5
+41708884,24719063,4
+130718958,24719063,5
+77530412,24719063,5
+4354750,24719063,4
+90795414,24719063,4
+34929495,24719063,1
+47274903,24719063,2
+LHone,24719063,5
+kencity,24719063,4
+132961530,24719063,4
+65125200,24719063,4
+81476241,24719063,3
+49884893,24719063,3
+49922437,24719063,4
+65352682,24719063,5
+shingle,24719063,4
+51510614,24719063,4
+liaojiafen,24719063,3
+2078085,24719063,3
+53996515,24719063,-1
+45080377,24719063,5
+Renaissance_w,24719063,4
+3870395,24719063,4
+58665425,24719063,4
+40684048,24719063,-1
+blueandgreen,24719063,4
+babywineer,24719063,5
+69952478,24719063,4
+67489519,24719063,4
+55618931,24719063,4
+60774527,24719063,-1
+76383724,24719063,5
+51730167,24719063,5
+71467734,24719063,5
+45415867,24719063,5
+cat23love,24719063,4
+myasuka,24719063,4
+blinkshine,24719063,4
+48158663,24719063,5
+48158663,24719063,5
+71336529,24719063,4
+2132695,24719063,3
+56865316,24719063,5
+63788372,24719063,5
+jollychang,24719063,4
+tarorez,24719063,4
+53257561,24719063,3
+mumaer,24719063,-1
+diysad,24719063,-1
+45725150,24719063,3
+47381021,24719063,2
+50403801,24719063,3
+hbsfls,24719063,4
+55886551,24719063,4
+luanjunyi,24719063,5
+qingwood,24719063,4
+60227516,24719063,4
+62761147,24719063,3
+48420105,24719063,4
+hougirl,24719063,4
+67179244,24719063,4
+34217360,24719063,2
+littlecar,24719063,3
+79210098,24719063,5
+echo7forest,24719063,4
+62000440,24719063,3
+55764121,24719063,5
+53097727,24719063,5
+84608070,24719063,2
+81417004,24719063,3
+2788632,24719063,3
+49259090,24719063,5
+4147287,24719063,3
+2624173,24719063,4
+3597938,24719063,4
+51401098,24719063,3
+68588981,24719063,5
+115599687,24719063,4
+boa_09,24719063,4
+Monster_004,24719063,3
+131916638,24719063,5
+yyt0105,24719063,4
+66794187,24719063,5
+sunnyujia,24719063,5
+wdshan,24719063,4
+81322887,24719063,4
+48458789,24719063,5
+evian_bebe,24719063,3
+angellailai,24719063,4
+61216437,24719063,5
+tomhu,24719063,4
+133716667,24719063,5
+93442022,24719063,4
+62537781,24719063,4
+77871944,24719063,4
+50618027,24719063,4
+49120309,24719063,4
+41195400,24719063,5
+68488912,24719063,4
+129157418,24719063,5
+as-clamp,24719063,3
+49083776,24719063,5
+3066956,24719063,4
+57811548,24719063,4
+cabbage_chou,24719063,3
+53707161,24719063,1
+53817584,24719063,4
+23733715,24719063,4
+78493096,24719063,5
+60054890,24719063,4
+jolinalbert,24719063,4
+126846791,24719063,5
+sivanchan,24719063,5
+57874939,24719063,4
+momoxiaozhangyu,24719063,4
+48793243,24719063,4
+59237362,24719063,4
+56792528,24719063,3
+94845988,24719063,4
+youly,24719063,4
+1219663,24719063,3
+52447788,24719063,4
+6595795,24719063,3
+132516098,24719063,4
+113306042,24719063,5
+vinciwang,24719063,4
+prin0602cess,24719063,4
+69857353,24719063,4
+58113183,24719063,5
+49160139,24719063,-1
+37252391,24719063,3
+133715428,24719063,4
+123744542,24719063,4
+37956992,24719063,4
+62497997,24719063,5
+133715981,24719063,3
+cilar,24719063,3
+121278981,24719063,4
+46416150,24719063,3
+55540473,24719063,5
+133716147,24719063,4
+63359487,24719063,4
+42576821,24719063,4
+1373363,24719063,3
+46266851,24719063,3
+28978843,24719063,3
+ww0936,24719063,5
+veralai,24719063,4
+133715931,24719063,2
+yangisyang,24719063,5
+83094887,24719063,3
+youhebuke,24719063,4
+113518465,24719063,5
+closeyoureyes,24719063,4
+53485894,24719063,3
+45768011,24719063,3
+78906900,24719063,4
+35849817,24719063,4
+50348765,24719063,3
+51014734,24719063,4
+58956237,24719063,5
+100540737,24719063,5
+58858653,24719063,5
+119270472,24719063,3
+elsading,24719063,3
+49479409,24719063,-1
+justinran,24719063,4
+93302713,24719063,5
+liebestod,24719063,4
+67200979,24719063,5
+39809119,24719063,3
+46179117,24719063,4
+103004079,24719063,5
+eddychao,24719063,4
+zebra-33,24719063,4
+46898679,24719063,4
+59788799,24719063,4
+133654952,24719063,5
+individualj,24719063,5
+88006955,24719063,5
+133715748,24719063,5
+1364563,24719063,4
+50098940,24719063,4
+36463688,24719063,3
+mrroyal,24719063,5
+daxiongbenben,24719063,3
+hc0131,24719063,3
+Amberfrom,24719063,3
+64880714,24719063,4
+122060333,24719063,3
+yangyucn,24719063,4
+23255914,24719063,4
+69175335,24719063,4
+58113974,24719063,-1
+62210177,24719063,4
+3299954,24719063,4
+133714322,24719063,5
+72723513,24719063,3
+adagio4400,24719063,4
+55919089,24719063,4
+92461755,24719063,4
+59967469,24719063,4
+lnayg1221,24719063,4
+56977444,24719063,5
+fang0079,24719063,5
+56578863,24719063,4
+ruokongzhi,24719063,4
+132724918,24719063,5
+1264628,24719063,4
+45262915,24719063,4
+zhoulinli1126,24719063,4
+echowangxw,24719063,4
+2240657,24719063,3
+3333087,24719063,5
+61389067,24719063,4
+45579641,24719063,4
+claireloveyou,24719063,4
+64821035,24719063,5
+youngtoo,24719063,4
+115297971,24719063,4
+98921786,24719063,3
+40401643,24719063,4
+64692199,24719063,5
+75812054,24719063,4
+68440134,24719063,4
+70914686,24719063,3
+3804843,24719063,5
+29449165,24719063,4
+133715275,24719063,5
+119463216,24719063,4
+133715250,24719063,4
+48941780,24719063,3
+robin1988,24719063,4
+74996663,24719063,2
+lefrais,24719063,4
+84602566,24719063,3
+enchy,24719063,4
+danshuiyuyuyu,24719063,3
+62478487,24719063,3
+131790660,24719063,5
+pupu19891230,24719063,3
+zsuredrain,24719063,4
+46996375,24719063,4
+39631299,24719063,3
+54665714,24719063,4
+starry_liu,24719063,4
+61719158,24719063,5
+SummerDuan,24719063,3
+47988380,24719063,4
+dcliuxu,24719063,5
+50588044,24719063,5
+50624122,24719063,4
+133714742,24719063,4
+13736379,24719063,5
+sukimushroom,24719063,4
+128550338,24719063,5
+74835284,24719063,4
+32433633,24719063,4
+58873899,24719063,4
+mercury0302,24719063,5
+MEsSyL,24719063,-1
+fakeyouout,24719063,4
+doppio,24719063,4
+xingmahao123,24719063,2
+69280280,24719063,4
+52286623,24719063,4
+57477748,24719063,5
+41482833,24719063,4
+yeyinger,24719063,4
+lengbuleng,24719063,4
+laozo,24719063,4
+Georgina_0803,24719063,4
+saintyaya,24719063,4
+Isayori,24719063,4
+40068284,24719063,4
+55385860,24719063,3
+56689572,24719063,3
+68947670,24719063,5
+81626321,24719063,5
+2289487,24719063,4
+vosr,24719063,3
+zoe315,24719063,4
+ivancry,24719063,4
+78936814,24719063,4
+64740791,24719063,4
+85807048,24719063,4
+31313042,24719063,4
+18120146,24719063,5
+34623045,24719063,4
+kimixu1017,24719063,4
+65723913,24719063,3
+59805346,24719063,3
+wocalei,24719063,4
+stillmuchtolose,24719063,5
+listenmumu,24719063,4
+iorl,24719063,5
+4409671,24719063,4
+113275992,24719063,4
+75171075,24719063,4
+53367527,24719063,3
+52145577,24719063,4
+35743711,24719063,5
+39517329,24719063,5
+bx,24719063,3
+Reina1234,24719063,5
+ssyppq,24719063,4
+finsy,24719063,5
+50116920,24719063,4
+xxxali,24719063,5
+emotion7,24719063,4
+36927005,24719063,3
+xiaoyuan_0310,24719063,4
+xiaomengqiuyue,24719063,3
+63278789,24719063,3
+72122656,24719063,4
+aircrow,24719063,4
+pppretty,24719063,3
+90325710,24719063,4
+62494589,24719063,4
+43703010,24719063,3
+52049296,24719063,5
+T...Tina,24719063,5
+maruko31,24719063,4
+spikespike28,24719063,4
+82317477,24719063,5
+112933075,24719063,4
+120205036,24719063,3
+28802478,24719063,3
+45776949,24719063,5
+don_C,24719063,4
+76191272,24719063,4
+54457349,24719063,3
+errylee,24719063,5
+65383160,24719063,5
+74040194,24719063,4
+63176423,24719063,4
+49363963,24719063,2
+53497780,24719063,4
+moonorz,24719063,5
+46538492,24719063,3
+AnqASHLEE,24719063,3
+julysummer,24719063,5
+119795456,24719063,3
+znnancy,24719063,4
+51087231,24719063,1
+56397458,24719063,4
+44006704,24719063,3
+67976786,24719063,4
+62740578,24719063,5
+44187248,24719063,4
+55010892,24719063,5
+Time-Trust,24719063,3
+40447897,24719063,3
+dogbus,24719063,4
+weirdoToC,24719063,3
+79640756,24719063,4
+2883655,24719063,5
+XMY-1995,24719063,4
+62879204,24719063,5
+106467997,24719063,5
+82630962,24719063,5
+jolenebear,24719063,4
+71574131,24719063,4
+68219549,24719063,4
+71270361,24719063,4
+huxhu,24719063,4
+Loreley333,24719063,4
+1623065,24719063,4
+LauraLi1989,24719063,5
+133649633,24719063,5
+46011907,24719063,4
+70694742,24719063,4
+73669959,24719063,4
+suzyfine,24719063,4
+130436479,24719063,5
+58547827,24719063,4
+59376214,24719063,5
+46301165,24719063,4
+elyarias,24719063,3
+tom926,24719063,3
+dodov,24719063,3
+werder100,24719063,4
+49855278,24719063,5
+cycoca,24719063,4
+133713596,24719063,5
+xiyuemu26,24719063,4
+52738182,24719063,5
+88719109,24719063,5
+131463434,24719063,4
+102079437,24719063,5
+50146746,24719063,3
+55457402,24719063,4
+64670528,24719063,4
+53554219,24719063,4
+119343632,24719063,1
+75151366,24719063,4
+liuemei,24719063,3
+69133855,24719063,4
+48221005,24719063,1
+2918978,24719063,5
+dingdanglbh,24719063,3
+LizXu1989,24719063,4
+guanlinan,24719063,4
+lingfriendly,24719063,4
+4523974,24719063,-1
+2206399,24719063,4
+63873621,24719063,4
+45831323,24719063,4
+65729154,24719063,4
+pigrui001,24719063,5
+77661771,24719063,4
+yumj,24719063,4
+132202776,24719063,4
+56314850,24719063,4
+30714995,24719063,5
+60570526,24719063,5
+127080428,24719063,4
+brahms49,24719063,5
+lesones,24719063,4
+69224150,24719063,4
+67225155,24719063,5
+63525530,24719063,3
+47243761,24719063,5
+sasaxi7,24719063,1
+133430488,24719063,5
+Stephanfan,24719063,3
+chimneyland,24719063,2
+59568163,24719063,4
+3398804,24719063,4
+liltwo,24719063,4
+13307772,24719063,4
+11035464,24719063,3
+shirley317,24719063,4
+MihaelKeehl,24719063,4
+abaqiao,24719063,3
+66867402,24719063,5
+qingchunyy,24719063,5
+3486553,24719063,5
+losed,24719063,3
+ginger007,24719063,2
+mumu5300,24719063,4
+iyouga,24719063,5
+88272921,24719063,4
+99343099,24719063,5
+F.ct,24719063,3
+45789204,24719063,3
+133712800,24719063,5
+14407324,24719063,5
+zhongshanaoli,24719063,4
+lihen,24719063,5
+59949251,24719063,1
+102641702,24719063,5
+39147671,24719063,3
+estellejoshua,24719063,4
+2340389,24719063,4
+dunyong,24719063,4
+2853926,24719063,4
+76556069,24719063,-1
+youeqian,24719063,5
+40771252,24719063,4
+baobaolilei,24719063,4
+smallbad,24719063,4
+21771687,24719063,4
+3229150,24719063,5
+ruanyfian198973,24719063,4
+c6h8o6,24719063,5
+63698545,24719063,4
+42767479,24719063,1
+67943735,24719063,3
+54107272,24719063,5
+62078543,24719063,3
+HugoVince,24719063,4
+raquelycidas,24719063,3
+51884253,24719063,4
+WEWE7UP,24719063,4
+65567171,24719063,3
+59570753,24719063,5
+MeltingSywe,24719063,4
+malu,24719063,3
+63041714,24719063,4
+liuyucheng691,24719063,5
+76490710,24719063,4
+50086256,24719063,4
+51783209,24719063,5
+63733166,24719063,5
+liuheng20110613,24719063,4
+53229163,24719063,3
+4553065,24719063,4
+55895929,24719063,3
+45994637,24719063,3
+61866931,24719063,2
+61824176,24719063,5
+60016733,24719063,4
+zhzh,24719063,4
+91354089,24719063,5
+113440404,24719063,4
+3752516,24719063,4
+42803127,24719063,3
+jia931218,24719063,4
+2340314,24719063,4
+xiongxiong1994,24719063,5
+jasonmraz_,24719063,4
+49307986,24719063,5
+53644977,24719063,4
+57297847,24719063,4
+78966790,24719063,3
+73787415,24719063,4
+42368147,24719063,3
+53476786,24719063,4
+gismine,24719063,4
+83721381,24719063,4
+83638503,24719063,4
+sharpayliu,24719063,4
+ligedi,24719063,4
+133711626,24719063,5
+49430578,24719063,3
+50393568,24719063,4
+17407986,24719063,5
+hejinsomething,24719063,5
+44178660,24719063,4
+91779176,24719063,4
+ylm83,24719063,5
+wujiuri,24719063,5
+47415911,24719063,5
+39236308,24719063,4
+48859035,24719063,3
+81095299,24719063,3
+44249875,24719063,3
+35450002,24719063,4
+meiqi1110,24719063,5
+4024842,24719063,5
+39364170,24719063,4
+108837542,24719063,5
+122393456,24719063,4
+56392220,24719063,4
+59326439,24719063,4
+coolmilk,24719063,4
+51060145,24719063,5
+fenglianjun,24719063,4
+maydayyqy,24719063,5
+aboutnimo,24719063,3
+91940704,24719063,5
+64083587,24719063,5
+124791007,24719063,3
+84419481,24719063,4
+MlovesB,24719063,5
+abelleba,24719063,4
+56922790,24719063,5
+ruby_xunchuan,24719063,4
+zhangezra,24719063,4
+seaskyLK,24719063,4
+yyuan9372,24719063,4
+Osolemio,24719063,4
+59764386,24719063,5
+33914811,24719063,-1
+conquer-me,24719063,5
+1379137,24719063,4
+60683478,24719063,5
+103128078,24719063,5
+36945830,24719063,3
+79372078,24719063,4
+36964868,24719063,1
+80064679,24719063,4
+4502707,24719063,5
+46424200,24719063,3
+19375858,24719063,4
+gxyvonne,24719063,3
+79148425,24719063,5
+3502602,24719063,5
+63436872,24719063,4
+65009709,24719063,5
+80230025,24719063,5
+72371496,24719063,4
+132336331,24719063,5
+1602396,24719063,5
+lovesay,24719063,3
+73701087,24719063,5
+77511021,24719063,5
+cozy421,24719063,4
+28884615,24719063,3
+2594481,24719063,4
+49442507,24719063,3
+68552633,24719063,5
+49072248,24719063,3
+catduo,24719063,4
+elci,24719063,4
+54654221,24719063,4
+52513935,24719063,5
+98165139,24719063,5
+shenrong111,24719063,5
+xin77xing,24719063,3
+67011634,24719063,3
+55279581,24719063,3
+karmaqi,24719063,5
+appetite,24719063,-1
+48494718,24719063,4
+4313303,24719063,4
+44335994,24719063,4
+lanyanleiyu,24719063,5
+94725015,24719063,4
+amaking,24719063,4
+48353762,24719063,4
+127500694,24719063,5
+68568891,24719063,4
+71651583,24719063,4
+4638075,24719063,4
+dasherry,24719063,5
+49548981,24719063,4
+3468574,24719063,5
+huotuifei,24719063,3
+106341534,24719063,4
+72102386,24719063,4
+luvsoon,24719063,3
+87799350,24719063,4
+wendy86,24719063,3
+53822122,24719063,5
+133305407,24719063,4
+78208494,24719063,3
+77430587,24719063,4
+125505200,24719063,4
+czc29520,24719063,3
+huanghuang0227,24719063,3
+foreversleepy,24719063,5
+62215499,24719063,3
+123222453,24719063,5
+beckhong,24719063,5
+zhangchu007,24719063,5
+29177930,24719063,3
+heraclitus,24719063,4
+122788862,24719063,1
+3513677,24719063,3
+107556145,24719063,3
+tinner,24719063,4
+Lucifer4219,24719063,4
+vicki-lau,24719063,5
+anygned,24719063,5
+69613822,24719063,4
+76602042,24719063,5
+59684689,24719063,4
+44549010,24719063,4
+31978586,24719063,5
+61823510,24719063,3
+wsmint,24719063,5
+winterbreak,24719063,4
+50716714,24719063,5
+49198106,24719063,4
+tucaomalisu,24719063,4
+3441923,24719063,4
+54537877,24719063,4
+zouzhiruo,24719063,5
+kurwel,24719063,5
+allenwangzihan,24719063,5
+104823204,24719063,3
+48988166,24719063,4
+70238509,24719063,4
+113752134,24719063,4
+gemouwu,24719063,3
+lovesunny,24719063,4
+11508993,24719063,5
+nanhualyq,24719063,4
+kipper79,24719063,4
+muzexun88,24719063,5
+67957141,24719063,5
+hsuhoffe,24719063,5
+51741927,24719063,5
+65836711,24719063,4
+qiaomai,24719063,3
+batman_1121,24719063,5
+mayacrystal,24719063,4
+c-serendipity,24719063,4
+57476701,24719063,3
+1711409,24719063,-1
+vradica,24719063,5
+a674022367,24719063,4
+41133520,24719063,4
+63618538,24719063,4
+wsyta,24719063,3
+amazingsusan,24719063,4
+niu513,24719063,-1
+71985811,24719063,4
+liligin,24719063,4
+shoooooock,24719063,4
+Van07,24719063,4
+29219029,24719063,4
+qingjuesikong,24719063,4
+lovely_love,24719063,4
+1413768,24719063,4
+ranzi_is_joker,24719063,5
+68634522,24719063,1
+63138045,24719063,5
+tiger2008star,24719063,4
+casussi,24719063,3
+bay2fun,24719063,5
+emma0729,24719063,4
+132956553,24719063,3
+35392311,24719063,3
+liwujiu,24719063,5
+120654562,24719063,3
+55404773,24719063,4
+elevenfang11,24719063,5
+engamichelle,24719063,2
+33363608,24719063,4
+80786329,24719063,4
+2195518,24719063,4
+haorensisi-,24719063,3
+34546789,24719063,4
+fishhome40,24719063,5
+46630645,24719063,4
+mf,24719063,5
+Joyce-D,24719063,5
+60933677,24719063,4
+BakeryforMe,24719063,5
+Chenyeye55555,24719063,4
+songofmomo,24719063,5
+30656009,24719063,4
+73831600,24719063,3
+67589382,24719063,4
+68951432,24719063,5
+dhgx,24719063,4
+70690321,24719063,3
+dengdaiyouyi,24719063,4
+85948759,24719063,5
+123642318,24719063,4
+kaeryousi,24719063,5
+52841977,24719063,4
+91152583,24719063,5
+133638015,24719063,5
+22406449,24719063,3
+48687824,24719063,4
+huoruiting,24719063,3
+72941446,24719063,4
+28738686,24719063,4
+131709746,24719063,5
+72985710,24719063,5
+eason0210,24719063,4
+wildold,24719063,3
+2699977,24719063,3
+90987820,24719063,5
+81003990,24719063,4
+128061195,24719063,3
+69465231,24719063,4
+44542116,24719063,4
+56290906,24719063,5
+70855287,24719063,2
+90767990,24719063,4
+chabaochabao,24719063,2
+133477970,24719063,4
+133707947,24719063,4
+zourong,24719063,4
+helenrain553,24719063,4
+angle223,24719063,3
+49082451,24719063,5
+72181533,24719063,4
+76315009,24719063,4
+toda0607,24719063,3
+68710427,24719063,4
+4821736,24719063,3
+3494790,24719063,4
+Phyllis5,24719063,4
+65021113,24719063,3
+54674709,24719063,5
+133707672,24719063,5
+127278998,24719063,5
+68465754,24719063,4
+4462193,24719063,5
+74719406,24719063,5
+130365524,24719063,4
+24494356,24719063,5
+55744777,24719063,4
+67520406,24719063,4
+67876533,24719063,5
+80517374,24719063,4
+ricbabe,24719063,2
+hanxudaydayup,24719063,5
+77245854,24719063,4
+55328158,24719063,3
+cccvv,24719063,-1
+68762360,24719063,4
+82687720,24719063,4
+120784937,24719063,4
+52079039,24719063,1
+43315131,24719063,4
+133707253,24719063,5
+67043053,24719063,1
+63253187,24719063,1
+29107256,24719063,4
+actorlines,24719063,5
+2231082,24719063,3
+120764662,24719063,5
+64463407,24719063,3
+44610743,24719063,4
+61907120,24719063,3
+132348134,24719063,5
+90532196,24719063,5
+2099867,24719063,5
+56071242,24719063,4
+49095982,24719063,5
+tommylin,24719063,4
+73746124,24719063,5
+92636187,24719063,4
+115662069,24719063,5
+imidazole,24719063,4
+64473872,24719063,3
+45047336,24719063,4
+sehunine,24719063,4
+vivisnbb,24719063,3
+Zazai,24719063,5
+2623544,24719063,1
+oscarxia,24719063,4
+lee9026,24719063,4
+56797287,24719063,3
+57576645,24719063,4
+45312368,24719063,3
+102661962,24719063,4
+62466603,24719063,5
+79058129,24719063,5
+52269719,24719063,5
+44556273,24719063,4
+89693935,24719063,4
+89693935,24719063,4
+tiamat,24719063,4
+zhanggongzi,24719063,5
+63699428,24719063,5
+66911642,24719063,5
+62020201,24719063,5
+suemode,24719063,4
+sunshinean2000,24719063,5
+65828524,24719063,4
+34901213,24719063,3
+peiaxi,24719063,3
+132996968,24719063,4
+131466194,24719063,4
+102332299,24719063,4
+xipo,24719063,5
+43955073,24719063,3
+66036408,24719063,4
+48831047,24719063,4
+81544351,24719063,4
+76458811,24719063,4
+PQYAN,24719063,3
+adamx,24719063,4
+45780268,24719063,5
+69364818,24719063,4
+120222600,24719063,4
+auror630,24719063,4
+sweetchains,24719063,4
+25533910,24719063,4
+92390248,24719063,4
+47398025,24719063,4
+59005410,24719063,4
+65274866,24719063,4
+81958013,24719063,4
+puppy812,24719063,3
+jollykudo,24719063,3
+53592649,24719063,4
+lazycatsn,24719063,4
+81134195,24719063,4
+52157192,24719063,3
+48642010,24719063,-1
+108481476,24719063,4
+LaddishXuan,24719063,3
+51093087,24719063,4
+turmanme,24719063,5
+48369193,24719063,5
+52399993,24719063,3
+lly950412,24719063,4
+chrislovefive,24719063,4
+28455302,24719063,4
+113834252,24719063,4
+127466089,24719063,5
+66724380,24719063,5
+45982097,24719063,5
+133689217,24719063,5
+69247286,24719063,4
+danielyangli,24719063,1
+81473347,24719063,5
+angelazha,24719063,3
+45481880,24719063,4
+65373356,24719063,4
+68457091,24719063,4
+38407483,24719063,5
+chenjiusan,24719063,5
+69826402,24719063,3
+63848305,24719063,4
+58704227,24719063,5
+luoluodaduan,24719063,4
+70507408,24719063,4
+4608887,24719063,5
+103503719,24719063,4
+LALA_613,24719063,3
+68205046,24719063,4
+84675514,24719063,4
+132249471,24719063,4
+58916453,24719063,5
+spancer230,24719063,5
+Mav1slee,24719063,4
+54694287,24719063,4
+louis15yao,24719063,4
+63643182,24719063,4
+ido_idoing,24719063,3
+CB.7,24719063,5
+88174425,24719063,5
+4437001,24719063,4
+2249533,24719063,4
+lushangrensheng,24719063,4
+1166642,24719063,4
+2580780,24719063,3
+51013789,24719063,-1
+63022254,24719063,4
+62034584,24719063,4
+1721507,24719063,4
+58625918,24719063,4
+133704025,24719063,5
+miga_sophia,24719063,3
+126183742,24719063,4
+se7xn,24719063,3
+zoeleeeeee,24719063,3
+130646245,24719063,5
+103477859,24719063,4
+133704037,24719063,5
+46742218,24719063,1
+33952202,24719063,4
+2238966,24719063,3
+80657169,24719063,5
+133703774,24719063,5
+smallbai406,24719063,5
+constancef,24719063,4
+34753066,24719063,5
+2596592,24719063,5
+121761822,24719063,4
+2836040,24719063,3
+46038354,24719063,5
+65523166,24719063,4
+86246804,24719063,-1
+90894536,24719063,5
+115025992,24719063,5
+calvingaga,24719063,5
+102996784,24719063,3
+130773666,24719063,4
+78428870,24719063,5
+shuihe,24719063,4
+likecake,24719063,5
+68918623,24719063,4
+133702658,24719063,4
+32701681,24719063,5
+104604528,24719063,1
+90785580,24719063,4
+1456200,24719063,3
+60338101,24719063,4
+79835550,24719063,5
+60232354,24719063,3
+82571715,24719063,4
+2220298,24719063,4
+anyong4979,24719063,5
+133700567,24719063,5
+81149989,24719063,4
+77629811,24719063,5
+gregoryhouse,24719063,5
+extrahandsome,24719063,4
+83996558,24719063,5
+star-b612,24719063,3
+122857735,24719063,4
+sallycastle,24719063,4
+chris920831,24719063,4
+fox518,24719063,3
+62864359,24719063,3
+57274055,24719063,3
+lujunjeff,24719063,1
+63485325,24719063,4
+itsmeymq,24719063,3
+73689655,24719063,3
+47386226,24719063,4
+100135816,24719063,3
+73059316,24719063,2
+69215741,24719063,4
+59484952,24719063,3
+63068612,24719063,5
+Hans_Du,24719063,4
+ILWTFT,24719063,2
+socialism,24719063,4
+bidhole,24719063,5
+baisiliu,24719063,4
+46711552,24719063,4
+62604027,24719063,5
+133595224,24719063,5
+80578018,24719063,5
+cherrykaulitz,24719063,4
+62650109,24719063,4
+46253376,24719063,4
+75058618,24719063,3
+101419547,24719063,4
+2999076,24719063,-1
+52189151,24719063,4
+77235132,24719063,5
+mixiaoduosmile,24719063,5
+screamers,24719063,3
+64549779,24719063,4
+72720109,24719063,4
+60282999,24719063,5
+2914496,24719063,4
+133701781,24719063,5
+13823787,24719063,4
+54770734,24719063,5
+graygem,24719063,3
+64253913,24719063,2
+1226511,24719063,3
+79734997,24719063,3
+81325605,24719063,4
+79452257,24719063,4
+61726273,24719063,5
+59156667,24719063,4
+49263079,24719063,5
+9950111,24719063,5
+39545267,24719063,3
+76636095,24719063,4
+66527611,24719063,4
+67375279,24719063,4
+108313440,24719063,3
+53937396,24719063,4
+46180905,24719063,4
+129962872,24719063,5
+dxq1216,24719063,4
+53114632,24719063,5
+78649248,24719063,4
+46739678,24719063,3
+66953582,24719063,4
+4098661,24719063,4
+37215528,24719063,5
+61871207,24719063,5
+100417194,24719063,5
+29755688,24719063,5
+122116691,24719063,3
+47418045,24719063,5
+78968264,24719063,3
+1494780,24719063,4
+64318494,24719063,5
+flowermumu,24719063,3
+49188433,24719063,3
+burningwater,24719063,3
+dawn.limpid,24719063,5
+Coyotes,24719063,4
+57040262,24719063,4
+119248717,24719063,5
+74803344,24719063,3
+133699724,24719063,2
+74712787,24719063,4
+sukixiaojie,24719063,4
+57928765,24719063,4
+30621998,24719063,4
+72885322,24719063,4
+46129331,24719063,5
+janiris,24719063,4
+129568726,24719063,3
+73321700,24719063,3
+yunwaizhizhi,24719063,4
+61901314,24719063,5
+yiasong,24719063,4
+133410048,24719063,5
+45556826,24719063,4
+45556826,24719063,4
+mxlzyd,24719063,3
+61361246,24719063,4
+61816824,24719063,5
+wjmt9906,24719063,5
+Charlottesummer,24719063,4
+62964103,24719063,4
+sunlin0,24719063,5
+115185293,24719063,4
+uncleradar,24719063,4
+119787917,24719063,4
+m1ss.x2,24719063,4
+133699857,24719063,5
+133206938,24719063,5
+network,24719063,4
+52345284,24719063,4
+67575567,24719063,3
+75175463,24719063,3
+masaikejun,24719063,4
+33602395,24719063,5
+128621146,24719063,5
+34940692,24719063,4
+qi-shao-shang,24719063,5
+67725950,24719063,4
+izaijin,24719063,5
+30515688,24719063,5
+68383651,24719063,4
+79139745,24719063,4
+YvetteYvette,24719063,4
+williamshadyhan,24719063,5
+68855877,24719063,5
+did-it,24719063,4
+61014893,24719063,4
+neee_,24719063,4
+cecideng,24719063,4
+redenter,24719063,4
+102578826,24719063,1
+77194214,24719063,4
+fanxiaxiafan,24719063,3
+85204284,24719063,4
+kcchan,24719063,-1
+114266280,24719063,4
+61868098,24719063,4
+17004593,24719063,4
+76169652,24719063,3
+101516177,24719063,3
+Celethy,24719063,4
+82141259,24719063,5
+whitedrama,24719063,4
+131020470,24719063,4
+45192723,24719063,4
+129001576,24719063,5
+130953760,24719063,3
+65075320,24719063,5
+89754766,24719063,5
+irissui,24719063,5
+51571084,24719063,4
+67624947,24719063,3
+83602166,24719063,4
+68922284,24719063,4
+35688829,24719063,5
+75001572,24719063,5
+xiaoyudlut,24719063,3
+124107116,24719063,5
+55529322,24719063,4
+47993943,24719063,5
+133698045,24719063,4
+63874058,24719063,5
+seeeeeeeeeeeeee,24719063,5
+57418562,24719063,5
+lllianely,24719063,-1
+enchanted13,24719063,4
+xiaomajia2,24719063,-1
+27017814,24719063,5
+67742715,24719063,4
+77282488,24719063,2
+82642076,24719063,4
+84710118,24719063,2
+pw1ng,24719063,5
+51417521,24719063,4
+mango12580,24719063,5
+xiahkim,24719063,4
+48506304,24719063,5
+1626061,24719063,3
+65079823,24719063,4
+leileisunshine,24719063,4
+4630938,24719063,4
+103586787,24719063,5
+flyingbottleL,24719063,5
+110484611,24719063,4
+2135351,24719063,4
+75428247,24719063,4
+41855603,24719063,4
+58142762,24719063,5
+xiaoranbao,24719063,4
+gawain,24719063,4
+73847256,24719063,4
+chunwan,24719063,4
+68732725,24719063,4
+victorgcy1121,24719063,4
+49144295,24719063,4
+133697268,24719063,5
+77074010,24719063,5
+mercuryleehom,24719063,3
+yangqinghe1101,24719063,5
+69418890,24719063,4
+119583854,24719063,5
+37779729,24719063,4
+99296692,24719063,3
+78898515,24719063,4
+zoro2501,24719063,4
+89108079,24719063,4
+64076867,24719063,3
+darchang,24719063,4
+129766862,24719063,4
+44642517,24719063,4
+45572942,24719063,4
+87860382,24719063,4
+52758132,24719063,4
+68788773,24719063,5
+yoeamber,24719063,5
+bigsb,24719063,4
+49225953,24719063,4
+jammy48,24719063,2
+adaylanie,24719063,5
+2092985,24719063,2
+66607658,24719063,5
+52548060,24719063,4
+76153086,24719063,4
+xly7788,24719063,4
+123816828,24719063,1
+jywpl,24719063,2
+132676591,24719063,3
+1849977,24719063,4
+63416638,24719063,4
+67852674,24719063,5
+Outman-LV,24719063,3
+celldweller,24719063,4
+xielemon,24719063,4
+80602290,24719063,5
+1781929,24719063,4
+pseudoyu,24719063,5
+37283017,24719063,5
+61474383,24719063,4
+49860842,24719063,5
+52445979,24719063,4
+66739600,24719063,5
+zlqll,24719063,4
+levislong,24719063,5
+borbo,24719063,4
+109632163,24719063,5
+j23ju,24719063,3
+3151445,24719063,4
+43906490,24719063,3
+44022393,24719063,4
+feixianggod,24719063,5
+tobekalorce,24719063,4
+66108796,24719063,4
+129023984,24719063,4
+4705870,24719063,5
+Yinaly,24719063,4
+60432635,24719063,4
+107718660,24719063,4
+63156510,24719063,5
+68913582,24719063,3
+shaoxueying,24719063,3
+75927554,24719063,4
+124887489,24719063,3
+3538572,24719063,4
+67491757,24719063,3
+77201294,24719063,5
+34704440,24719063,4
+83305859,24719063,2
+130331814,24719063,5
+49857976,24719063,3
+122670225,24719063,4
+jiazenghao,24719063,5
+63283643,24719063,5
+46911355,24719063,5
+84849322,24719063,4
+helemon,24719063,5
+106663926,24719063,5
+liqiru1110,24719063,5
+hjaoxjl,24719063,5
+58255325,24719063,4
+socary,24719063,4
+QQY,24719063,4
+63361366,24719063,5
+4527709,24719063,4
+127145817,24719063,4
+67330888,24719063,5
+4582224,24719063,5
+qinxiran,24719063,4
+66066845,24719063,5
+2175508,24719063,4
+133693622,24719063,4
+4332802,24719063,4
+77758955,24719063,5
+princefish,24719063,3
+90854543,24719063,4
+youngfire,24719063,4
+zhenzhen,24719063,4
+66431238,24719063,5
+88241993,24719063,5
+shouhulantian,24719063,4
+48036288,24719063,5
+61640438,24719063,4
+63482462,24719063,4
+131792783,24719063,4
+50747518,24719063,4
+76569032,24719063,4
+58369888,24719063,4
+53929527,24719063,5
+2705138,24719063,3
+jessica.jia,24719063,3
+63234056,24719063,3
+132311233,24719063,5
+132780949,24719063,1
+120497933,24719063,4
+28105351,24719063,3
+qunlangzhishou,24719063,4
+35165687,24719063,4
+47990056,24719063,5
+133692076,24719063,-1
+77084482,24719063,5
+drxiaoshi,24719063,5
+131680348,24719063,4
+49232661,24719063,3
+53144145,24719063,5
+46321619,24719063,5
+99989883,24719063,3
+89734111,24719063,5
+129815517,24719063,4
+66997400,24719063,5
+53094976,24719063,4
+58778667,24719063,4
+12039408,24719063,1
+78980684,24719063,5
+68878827,24719063,5
+62968482,24719063,5
+31133001,24719063,5
+133691030,24719063,4
+121516783,24719063,4
+49394881,24719063,4
+133690949,24719063,4
+133690928,24719063,5
+98424901,24719063,4
+xiaochongshan,24719063,3
+27287283,24719063,5
+sugarkid,24719063,4
+37216410,24719063,3
+56437151,24719063,4
+52870951,24719063,3
+133690154,24719063,4
+78618445,24719063,4
+michelleliu31,24719063,5
+viviatchi,24719063,5
+82844631,24719063,4
+feelruiyan,24719063,3
+thetis921,24719063,-1
+51887409,24719063,4
+88345379,24719063,5
+64708060,24719063,-1
+Debt,24719063,4
+113267573,24719063,3
+tracy-cc-inter,24719063,4
+43475648,24719063,4
+2495913,24719063,4
+59188959,24719063,4
+guguDoris,24719063,4
+48203394,24719063,5
+54890377,24719063,4
+58086381,24719063,5
+51840690,24719063,5
+buluangao,24719063,-1
+50887988,24719063,4
+132822084,24719063,5
+126693961,24719063,2
+32865838,24719063,4
+2030641,24719063,5
+58247740,24719063,5
+49103272,24719063,3
+49277470,24719063,5
+124662406,24719063,4
+69516043,24719063,3
+32051853,24719063,4
+90020843,24719063,4
+119913085,24719063,4
+1088676,24719063,4
+133687344,24719063,5
+88327789,24719063,4
+103533253,24719063,3
+133687103,24719063,1
+53949979,24719063,-1
+45103571,24719063,3
+yyyywq,24719063,5
+58379589,24719063,4
+113549814,24719063,3
+chencheny,24719063,5
+99840470,24719063,-1
+Nan_ye,24719063,4
+1595106,24719063,4
+70915171,24719063,5
+47416648,24719063,2
+shiro74,24719063,5
+58405298,24719063,5
+jx1111l,24719063,4
+2190556,24719063,5
+70595414,24719063,3
+122804233,24719063,4
+zhouxiaotong,24719063,4
+yubaozilee,24719063,4
+89269194,24719063,4
+melon4ever,24719063,4
+baiyuweitang,24719063,5
+37234505,24719063,3
+44779595,24719063,5
+Lreckle,24719063,4
+56925526,24719063,2
+83826779,24719063,4
+83826779,24719063,4
+67209695,24719063,3
+4114577,24719063,4
+harrod_ck,24719063,2
+4067480,24719063,5
+58070269,24719063,4
+51226648,24719063,3
+zyy23,24719063,5
+2073755,24719063,4
+moonillusion,24719063,5
+67736648,24719063,3
+121998810,24719063,5
+26475045,24719063,4
+54947013,24719063,4
+2149617,24719063,5
+einru,24719063,3
+67404240,24719063,5
+vitahom,24719063,3
+66483711,24719063,2
+sevenVSseven,24719063,3
+bngyan,24719063,5
+49813588,24719063,3
+89466724,24719063,4
+60841792,24719063,-1
+3507065,24719063,5
+66038844,24719063,4
+51218838,24719063,3
+131557392,24719063,5
+46430549,24719063,4
+53479153,24719063,3
+43710642,24719063,4
+89158493,24719063,-1
+zznoy,24719063,4
+62648038,24719063,1
+61249567,24719063,3
+51825077,24719063,4
+104250271,24719063,3
+1212139,24719063,5
+cindy_1994816,24719063,5
+4160484,24719063,3
+107225731,24719063,4
+snowdrop14,24719063,4
+132997902,24719063,4
+13262103,24719063,4
+59556078,24719063,4
+worldman55555,24719063,2
+rinkacheng,24719063,5
+84884580,24719063,3
+63069817,24719063,4
+50026577,24719063,4
+72216913,24719063,4
+Deeper.Dark,24719063,3
+71002924,24719063,3
+78644847,24719063,4
+80280523,24719063,3
+53103898,24719063,4
+102823150,24719063,4
+blueberrysimy,24719063,3
+woshixiaoyatou,24719063,4
+yoicy,24719063,5
+jael0000,24719063,3
+133217874,24719063,4
+syh622,24719063,4
+67586472,24719063,4
+milkQueen,24719063,4
+rarabbit,24719063,5
+wunan0216,24719063,3
+5566664,24719063,3
+2024868,24719063,5
+79208971,24719063,3
+62864634,24719063,4
+lene1207,24719063,4
+tuotuo666,24719063,4
+peterfdt,24719063,4
+51576504,24719063,4
+66657271,24719063,5
+MA123456789,24719063,4
+vitatha_613,24719063,4
+amandachun-gccz,24719063,5
+islandsea,24719063,4
+63266549,24719063,2
+ramya99,24719063,4
+yededi8821,24719063,4
+78413454,24719063,4
+74062182,24719063,4
+75215757,24719063,3
+53256209,24719063,4
+papa1968,24719063,5
+94772178,24719063,5
+52668501,24719063,3
+33494948,24719063,3
+36664715,24719063,4
+CNToria617,24719063,4
+xyzxun,24719063,4
+50048603,24719063,5
+LUCKYPAN9,24719063,3
+gaopengyuan,24719063,3
+1928418,24719063,3
+132581057,24719063,3
+58249010,24719063,5
+48026180,24719063,4
+1340085,24719063,5
+110504879,24719063,4
+2763828,24719063,4
+55797857,24719063,5
+64047703,24719063,5
+63994620,24719063,5
+120287193,24719063,4
+34035451,24719063,4
+133567504,24719063,5
+cicihappy,24719063,4
+v1Near,24719063,4
+PP_wei,24719063,4
+45028245,24719063,3
+48949608,24719063,-1
+46731608,24719063,5
+15528507,24719063,5
+54632275,24719063,4
+25697986,24719063,4
+97088153,24719063,4
+scha-_-,24719063,4
+64954480,24719063,4
+49233551,24719063,5
+119110863,24719063,5
+90635232,24719063,5
+65895302,24719063,4
+53496104,24719063,4
+49748358,24719063,3
+132854070,24719063,5
+Genjo,24719063,3
+67400098,24719063,4
+59524378,24719063,2
+70359207,24719063,4
+Liew_qing,24719063,5
+60610338,24719063,4
+36145161,24719063,4
+zhchtcm,24719063,4
+callmealtman,24719063,3
+stillm,24719063,4
+49109662,24719063,4
+6455488,24719063,4
+43176716,24719063,3
+btcatsun,24719063,5
+mamy,24719063,4
+56386503,24719063,5
+63422177,24719063,4
+richey_,24719063,5
+133546021,24719063,4
+42713356,24719063,4
+hanlu219,24719063,5
+greenlifehi,24719063,4
+isay_,24719063,3
+68964549,24719063,3
+50234828,24719063,4
+60862702,24719063,4
+81193574,24719063,4
+AIOLIX,24719063,4
+coolsin,24719063,5
+yousuosi77,24719063,4
+44652353,24719063,3
+chloeqx,24719063,5
+60372310,24719063,5
+44833816,24719063,4
+130856040,24719063,4
+61123177,24719063,4
+54786298,24719063,3
+Qixiaoqiang,24719063,4
+ce1314,24719063,4
+59473087,24719063,5
+Rebekah1222,24719063,4
+74641801,24719063,5
+33275779,24719063,5
+71596124,24719063,4
+58607038,24719063,5
+52502063,24719063,3
+hubery19930301,24719063,3
+2387348,24719063,5
+91548416,24719063,4
+50060410,24719063,3
+68530717,24719063,4
+flowervirus,24719063,5
+43289772,24719063,4
+yinianbuxiangsi,24719063,5
+56328149,24719063,4
+133632419,24719063,5
+3974202,24719063,2
+54956040,24719063,4
+133631086,24719063,5
+rucisabella,24719063,3
+ravinenoravine,24719063,4
+120776365,24719063,4
+133628203,24719063,-1
+cheerychang,24719063,4
+sonado,24719063,4
+90005496,24719063,5
+130989210,24719063,3
+63101856,24719063,5
+46845276,24719063,4
+ellenmat,24719063,2
+karenlo,24719063,5
+3193167,24719063,4
+kikyo531,24719063,5
+45497245,24719063,4
+63477660,24719063,4
+79719410,24719063,4
+121698526,24719063,4
+1820379,24719063,4
+127154004,24719063,2
+133625110,24719063,5
+51048563,24719063,5
+2311976,24719063,3
+15923288,24719063,3
+4294774,24719063,4
+cyhappy36507,24719063,4
+50590747,24719063,4
+poselen,24719063,5
+roughcherry,24719063,3
+130851961,24719063,5
+133623050,24719063,3
+56857349,24719063,4
+J7N,24719063,4
+39258947,24719063,5
+49671091,24719063,4
+67962053,24719063,4
+bebusybee,24719063,5
+sif7,24719063,4
+4463287,24719063,4
+dangaoji,24719063,3
+61621959,24719063,4
+jessie962464,24719063,3
+Scarlett...,24719063,3
+43748947,24719063,4
+Stefanie1023,24719063,4
+54953231,24719063,4
+54174082,24719063,4
+36306194,24719063,5
+atangxiong,24719063,4
+65038272,24719063,4
+zheshijian,24719063,3
+103497855,24719063,3
+Oleg,24719063,3
+133614379,24719063,5
+amaretto,24719063,4
+84391390,24719063,5
+Ziting_H,24719063,5
+54810722,24719063,4
+83432358,24719063,3
+2299664,24719063,3
+cindydragon,24719063,4
+75842929,24719063,3
+79321428,24719063,4
+69722979,24719063,4
+2313629,24719063,4
+Monica__Wang,24719063,4
+lovingsister,24719063,4
+133602071,24719063,5
+csj0824,24719063,4
+120938785,24719063,4
+128229919,24719063,4
+beiwei30du,24719063,4
+48508633,24719063,3
+77151655,24719063,4
+75650896,24719063,3
+51910389,24719063,5
+131482397,24719063,4
+lubolin,24719063,4
+54783483,24719063,4
+limpia,24719063,3
+62871108,24719063,3
+43098689,24719063,3
+19627331,24719063,4
+52951268,24719063,4
+hanadomoto,24719063,5
+xcoral,24719063,5
+winsunVU,24719063,4
+wondershine,24719063,4
+53229181,24719063,4
+34155630,24719063,4
+nigelcrane,24719063,4
+4551800,24719063,5
+zzzxy,24719063,3
+zshh012,24719063,5
+49180179,24719063,3
+2468857,24719063,4
+xiaozhubaobao,24719063,5
+csee1121,24719063,4
+48261192,24719063,5
+62902695,24719063,4
+52883078,24719063,4
+houicetint,24719063,5
+3647184,24719063,3
+28736165,24719063,2
+frankie0927,24719063,4
+3319103,24719063,4
+48568251,24719063,5
+3356830,24719063,4
+55873651,24719063,4
+89382705,24719063,5
+93202185,24719063,4
+paopao221,24719063,3
+bluelittlefish,24719063,5
+48545858,24719063,4
+2056209,24719063,3
+Nausikaa,24719063,4
+50532923,24719063,5
+33411286,24719063,4
+3617275,24719063,4
+ppxoxqq,24719063,4
+78929614,24719063,2
+lokimicky,24719063,4
+MISSING630_,24719063,5
+85746210,24719063,4
+zorrocw,24719063,4
+shanguicheng,24719063,5
+65263892,24719063,4
+Walt_W,24719063,5
+62927392,24719063,5
+Jerry-Zeng,24719063,4
+zqy931213,24719063,4
+nancy8787,24719063,4
+65461055,24719063,3
+dadafanhe,24719063,4
+116652565,24719063,4
+annkazuya,24719063,4
+28678505,24719063,5
+53022241,24719063,3
+91178835,24719063,4
+thenextseason,24719063,5
+childishqueen,24719063,4
+flyingpig312,24719063,3
+sandy130,24719063,4
+xiangjianlaoyu,24719063,4
+70317254,24719063,3
+67862373,24719063,5
+sam_wyc,24719063,4
+63794285,24719063,3
+133568253,24719063,5
+baisechengai,24719063,5
+marose,24719063,3
+13405505,24719063,4
+71126772,24719063,4
+haozi20,24719063,3
+58900687,24719063,4
+6375558,24719063,4
+MsLulu,24719063,3
+60762933,24719063,4
+filmvivi,24719063,4
+125793197,24719063,4
+38629632,24719063,4
+4256061,24719063,3
+48763298,24719063,4
+126621481,24719063,4
+8592550,24719063,4
+2052146,24719063,-1
+51261817,24719063,3
+3988346,24719063,4
+73809337,24719063,5
+windyzhu3949,24719063,5
+pajamania,24719063,4
+17091787,24719063,2
+17091787,24719063,2
+nebulaxing,24719063,3
+Acid0428,24719063,3
+xiongweilin,24719063,3
+46588781,24719063,4
+meisacc,24719063,3
+sunnyareas,24719063,4
+49110008,24719063,3
+75569999,24719063,4
+2579882,24719063,4
+3774521,24719063,5
+Demo21,24719063,4
+suzane,24719063,5
+jessielee1018,24719063,4
+qingcha1026,24719063,4
+58983444,24719063,5
+doubleis,24719063,4
+kuaikuaile1314,24719063,3
+65878913,24719063,4
+fuyun2710,24719063,3
+128883069,24719063,5
+thegreatkoala,24719063,4
+moshangjinfeng,24719063,4
+63132632,24719063,2
+80036973,24719063,2
+131752854,24719063,5
+andybluea,24719063,3
+67569927,24719063,4
+barbarossa1753,24719063,4
+78297664,24719063,2
+ccllj,24719063,5
+81412709,24719063,4
+2597684,24719063,4
+3111680,24719063,4
+dreamchu,24719063,3
+31563326,24719063,4
+Yshine,24719063,3
+4610385,24719063,5
+63459099,24719063,5
+83441602,24719063,5
+63357344,24719063,4
+128694474,24719063,4
+chesterchoi,24719063,2
+60698727,24719063,4
+Joan_J,24719063,3
+zouzouwanwan,24719063,4
+misty_rui,24719063,4
+vianann,24719063,3
+71859163,24719063,4
+68804843,24719063,3
+123093980,24719063,5
+48511802,24719063,5
+63603229,24719063,2
+60073105,24719063,5
+Creep_,24719063,4
+111981766,24719063,4
+47147239,24719063,-1
+45749483,24719063,4
+JOCK,24719063,5
+13129748,24719063,-1
+53394663,24719063,3
+2012335,24719063,3
+61963666,24719063,5
+61299787,24719063,4
+hh-ming,24719063,3
+hianan,24719063,4
+68918586,24719063,4
+77718867,24719063,3
+davidtian,24719063,4
+snoopynirvana,24719063,4
+maggiemars,24719063,5
+zz169,24719063,5
+tavi0529,24719063,4
+missfaye,24719063,4
+46890082,24719063,3
+72367482,24719063,5
+64968243,24719063,4
+50204008,24719063,4
+46017359,24719063,4
+46815070,24719063,4
+56898104,24719063,3
+47108985,24719063,4
+Pytro,24719063,3
+3610551,24719063,5
+98088699,24719063,4
+hideer,24719063,1
+58071692,24719063,4
+anthonywoo.,24719063,4
+wjgq0722,24719063,5
+49968137,24719063,-1
+doraemonfj,24719063,4
+yoli,24719063,4
+52110206,24719063,4
+67707969,24719063,4
+39720218,24719063,4
+DZTL,24719063,5
+65511273,24719063,5
+ysatis.wan,24719063,4
+4766836,24719063,3
+57319762,24719063,3
+60981917,24719063,4
+wooya,24719063,4
+48877194,24719063,4
+107146215,24719063,4
+Exaiy,24719063,4
+54619955,24719063,2
+EchinJS,24719063,4
+24263050,24719063,5
+mitusheng,24719063,3
+pepereina,24719063,4
+2346529,24719063,4
+1901451,24719063,4
+1929758,24719063,4
+100416475,24719063,3
+66799655,24719063,4
+64157304,24719063,5
+yuki7799,24719063,5
+73119669,24719063,3
+tsite,24719063,-1
+4199523,24719063,4
+julycythia,24719063,4
+julysz77,24719063,4
+77811317,24719063,3
+1164443,24719063,4
+30836444,24719063,4
+73148602,24719063,4
+90485552,24719063,4
+2634544,24719063,-1
+lushan2866,24719063,4
+2076700,24719063,4
+Pamir-Adler,24719063,5
+48317152,24719063,4
+2529003,24719063,4
+hearingmoon,24719063,5
+46637594,24719063,3
+68453321,24719063,4
+61935443,24719063,4
+miko0409,24719063,5
+82426482,24719063,3
+77094409,24719063,4
+MatinetHP,24719063,4
+moth,24719063,4
+35260694,24719063,4
+34145433,24719063,3
+67719067,24719063,3
+50581824,24719063,5
+48795051,24719063,3
+36183091,24719063,4
+bonniekillu,24719063,4
+51268266,24719063,5
+FTDxiaowukong,24719063,5
+shiweisucan,24719063,4
+1449311,24719063,5
+eyesfetish,24719063,5
+43595031,24719063,4
+2880975,24719063,3
+liancheng,24719063,5
+mmj626,24719063,4
+obepkgmm,24719063,4
+132438473,24719063,4
+132438473,24719063,4
+61583937,24719063,1
+lotus_yc,24719063,3
+siberialiu,24719063,4
+1481981,24719063,4
+107140803,24719063,4
+43001536,24719063,4
+58930752,24719063,4
+57311033,24719063,5
+kidrauhl_,24719063,4
+violet412,24719063,3
+58919934,24719063,5
+gudao1984,24719063,5
+77033669,24719063,5
+34682932,24719063,5
+60760507,24719063,4
+liuxk99,24719063,4
+withliancheng,24719063,3
+loveotaku,24719063,3
+lingerer,24719063,4
+84484396,24719063,4
+song1227,24719063,4
+53439195,24719063,5
+Siegismund,24719063,4
+traveler1756,24719063,2
+ltraman,24719063,4
+116738878,24719063,3
+homjanon,24719063,3
+67572632,24719063,4
+27658050,24719063,5
+77046895,24719063,5
+chenvii,24719063,5
+58712941,24719063,5
+81930052,24719063,3
+74715074,24719063,5
+38479195,24719063,4
+92944589,24719063,4
+45278098,24719063,5
+lola721,24719063,4
+Rockworld,24719063,4
+whisper,24719063,4
+94594889,24719063,4
+108419935,24719063,4
+mxl1988,24719063,3
+129548995,24719063,4
+sah1015,24719063,4
+63946270,24719063,4
+88320086,24719063,5
+4016925,24719063,5
+80007584,24719063,4
+ayuan7gy,24719063,4
+icemankobe,24719063,4
+79302633,24719063,5
+1519013,24719063,2
+beijingsijia,24719063,5
+44049891,24719063,5
+131005970,24719063,4
+63432491,24719063,4
+44265296,24719063,4
+69192844,24719063,3
+30885179,24719063,4
+50023143,24719063,4
+51841459,24719063,4
+45379580,24719063,4
+yoteamomucho,24719063,4
+102902029,24719063,3
+99995336,24719063,4
+fatty3,24719063,5
+ccino,24719063,4
+106343650,24719063,4
+114351262,24719063,4
+102433139,24719063,5
+miracle1988,24719063,4
+Neverlandor,24719063,4
+yumaomao123,24719063,4
+yprenkouer,24719063,4
+lunargoddess,24719063,4
+78582579,24719063,4
+94390156,24719063,4
+53240525,24719063,5
+119884183,24719063,4
+smeles,24719063,3
+endlesssusie,24719063,4
+deepe,24719063,4
+128444897,24719063,4
+23260274,24719063,5
+36507254,24719063,4
+39351378,24719063,4
+91157157,24719063,4
+3651030,24719063,4
+xiaotun,24719063,4
+71621608,24719063,3
+2632657,24719063,3
+B-B-B-Side,24719063,4
+77654603,24719063,2
+QISHENG,24719063,4
+xinwenlulu,24719063,3
+iuheuxnehc,24719063,4
+fanfan777,24719063,3
+hjt8844,24719063,4
+64047033,24719063,4
+18313578,24719063,3
+47584858,24719063,4
+127378341,24719063,5
+89723194,24719063,4
+45385294,24719063,4
+16715889,24719063,1
+joearde,24719063,4
+xiaofei2316,24719063,5
+childream,24719063,3
+mzmuxin,24719063,4
+guoyeh,24719063,4
+47709338,24719063,4
+lirongrong,24719063,4
+47458734,24719063,4
+65546282,24719063,3
+wanglei962845,24719063,4
+83192314,24719063,5
+60025721,24719063,5
+qinwenrene,24719063,4
+lnzyn,24719063,4
+duxiaoyu,24719063,4
+fay_.,24719063,-1
+2128957,24719063,3
+azuremoon0118,24719063,-1
+115693800,24719063,4
+78217786,24719063,3
+63973288,24719063,4
+59677707,24719063,3
+pussyyy,24719063,4
+EliNagy,24719063,3
+50129534,24719063,4
+2054495,24719063,5
+2910992,24719063,4
+vielen940130,24719063,4
+56020938,24719063,3
+9255264,24719063,5
+53774316,24719063,4
+78352623,24719063,4
+sdeden,24719063,4
+tounye,24719063,4
+saemahr,24719063,3
+1885523,24719063,2
+46310239,24719063,3
+jiangwei199204,24719063,4
+48544553,24719063,3
+40172272,24719063,4
+estatic_19,24719063,4
+babyroll,24719063,5
+47439256,24719063,5
+12498692,24719063,3
+57831051,24719063,4
+bluegrid,24719063,4
+93136822,24719063,5
+54404280,24719063,3
+cindyya,24719063,3
+sarah_ni330,24719063,4
+cocolaugh,24719063,3
+74756120,24719063,3
+nohnoh,24719063,2
+joycebigtime,24719063,4
+imdying,24719063,5
+phoenixjanezhai,24719063,4
+45101640,24719063,3
+minijoan,24719063,5
+xiaochanzi,24719063,4
+130603786,24719063,5
+xiaodaoyang,24719063,4
+Ihuiyao,24719063,4
+49798956,24719063,3
+81830968,24719063,4
+Dthl,24719063,3
+58337655,24719063,4
+68572004,24719063,4
+flowerann,24719063,-1
+129598785,24719063,4
+62428481,24719063,4
+43596686,24719063,3
+61591842,24719063,4
+81567756,24719063,3
+53692336,24719063,3
+mmtete,24719063,5
+sophiayou,24719063,3
+79372510,24719063,5
+sirluoji,24719063,3
+43891249,24719063,3
+2101526,24719063,3
+58727852,24719063,-1
+78089832,24719063,-1
+lazzaro,24719063,4
+48072909,24719063,4
+131727337,24719063,3
+CaesarLUO,24719063,3
+94288477,24719063,5
+Loveneverfail,24719063,4
+50886291,24719063,3
+49203378,24719063,5
+61551903,24719063,5
+shaodie,24719063,5
+132082715,24719063,4
+yifengraner,24719063,4
+38448078,24719063,5
+52656756,24719063,3
+68917720,24719063,4
+huazanggou,24719063,5
+moon1880,24719063,5
+67044747,24719063,4
+changefiona,24719063,3
+2859857,24719063,4
+49326623,24719063,3
+132035683,24719063,3
+2681017,24719063,5
+2909779,24719063,5
+huodijin,24719063,4
+shurui,24719063,3
+60089560,24719063,4
+ccweiyang,24719063,4
+130880900,24719063,4
+yaoyaolu,24719063,3
+Dooooris,24719063,5
+4597338,24719063,3
+78285133,24719063,3
+75021019,24719063,3
+2563929,24719063,5
+candy_littrell,24719063,2
+54926390,24719063,4
+121917998,24719063,5
+40957904,24719063,4
+82776171,24719063,4
+122848107,24719063,4
+d300019,24719063,3
+55455640,24719063,3
+4838811,24719063,4
+114255827,24719063,3
+56258002,24719063,5
+45509766,24719063,5
+46656643,24719063,3
+41317902,24719063,3
+58332166,24719063,4
+s_sunshine,24719063,4
+Baoberlln,24719063,5
+lanlande,24719063,3
+73878048,24719063,5
+34631714,24719063,4
+120378701,24719063,4
+58999997,24719063,3
+51759241,24719063,3
+52371871,24719063,4
+38900864,24719063,5
+62469238,24719063,4
+52469285,24719063,4
+inv,24719063,3
+67723584,24719063,4
+pigletvincent,24719063,5
+yulingshenyue,24719063,4
+snoopypark,24719063,4
+tjmelody,24719063,4
+49826646,24719063,4
+3819480,24719063,5
+yfqc24pippo,24719063,2
+1134710,24719063,4
+69658283,24719063,-1
+momon1900,24719063,3
+66458815,24719063,4
+55617091,24719063,4
+52583509,24719063,3
+121763704,24719063,5
+122296517,24719063,4
+52529736,24719063,4
+26713841,24719063,4
+doingcando,24719063,4
+honey-honey,24719063,4
+pywx,24719063,4
+37552777,24719063,4
+soundclover,24719063,-1
+xiaojiaheng,24719063,3
+nuolanuolanuola,24719063,3
+48685889,24719063,3
+102556936,24719063,5
+3489938,24719063,4
+tyxjasmine,24719063,4
+43475184,24719063,5
+graceinjune,24719063,4
+52497918,24719063,4
+67952037,24719063,3
+57355355,24719063,3
+121468237,24719063,3
+alwaysforyou,24719063,3
+badayidi,24719063,2
+cherrymaruko,24719063,5
+Brevityin,24719063,4
+chanel0214,24719063,4
+mathias,24719063,4
+fifa10,24719063,5
+nina1205,24719063,5
+37571327,24719063,3
+ilea,24719063,4
+3406491,24719063,3
+52587148,24719063,4
+silvanelf,24719063,4
+62346351,24719063,4
+wen_Schwartz,24719063,4
+3911666,24719063,4
+artofloving,24719063,4
+avivatang,24719063,3
+yrs,24719063,3
+124349489,24719063,5
+1829309,24719063,4
+56046715,24719063,4
+lingkong911,24719063,3
+47650145,24719063,4
+111572690,24719063,4
+F_Lafite,24719063,5
+zicheng05,24719063,4
+56169154,24719063,4
+63262081,24719063,4
+jaywooh,24719063,4
+48689695,24719063,5
+102718430,24719063,4
+82582719,24719063,4
+justinnext,24719063,5
+64223729,24719063,4
+endfirstlove,24719063,4
+58335462,24719063,5
+littleadd,24719063,4
+51964381,24719063,4
+vyajana,24719063,2
+85239246,24719063,4
+70702423,24719063,3
+34938813,24719063,4
+120315929,24719063,5
+bread.H,24719063,5
+ilovekyoko,24719063,4
+coto,24719063,4
+55306149,24719063,3
+46692711,24719063,5
+surprinazhang,24719063,4
+jackie1211,24719063,5
+zenlee,24719063,4
+52756932,24719063,5
+58109706,24719063,4
+qwkkc,24719063,5
+125748167,24719063,4
+sailingatnight,24719063,3
+1079180,24719063,5
+looyooxoo,24719063,4
+53144700,24719063,5
+122110316,24719063,3
+47622714,24719063,4
+cijfer,24719063,4
+mio-crystalyu,24719063,4
+67937047,24719063,4
+100541029,24719063,3
+63483846,24719063,4
+4190834,24719063,4
+1339281,24719063,4
+YesYeahYeah,24719063,5
+phonexu,24719063,4
+121629069,24719063,4
+crystal_fy,24719063,5
+wulebuzuo,24719063,3
+39054352,24719063,4
+68424830,24719063,4
+cranberry711,24719063,4
+zhaoyao0919,24719063,4
+42568506,24719063,3
+45752583,24719063,5
+79841047,24719063,4
+cyj970205,24719063,4
+zlyxxm,24719063,4
+sarinalee,24719063,4
+iklong,24719063,4
+haishou,24719063,5
+83411107,24719063,4
+73702156,24719063,3
+60408856,24719063,5
+59320480,24719063,4
+damnm,24719063,3
+85665063,24719063,5
+66819256,24719063,4
+heechen,24719063,5
+2323154,24719063,5
+102691553,24719063,3
+83667346,24719063,2
+62518074,24719063,4
+kbbean620,24719063,4
+ms0604,24719063,4
+60357094,24719063,4
+56008242,24719063,3
+1456910,24719063,4
+67848471,24719063,5
+1021230,24719063,5
+49026093,24719063,3
+elice,24719063,-1
+63874494,24719063,4
+huoxiaoliang,24719063,4
+41080653,24719063,3
+121021780,24719063,4
+45496268,24719063,4
+wrdouban,24719063,4
+yixi7,24719063,4
+loveloki913,24719063,5
+93203680,24719063,4
+shenyong6813,24719063,4
+kingszar,24719063,3
+roke128,24719063,3
+stardust1030,24719063,4
+63371877,24719063,4
+71840174,24719063,4
+61728346,24719063,3
+35477330,24719063,5
+47182866,24719063,4
+wuzouhuanghun,24719063,4
+jianbrother,24719063,4
+loveiscolder,24719063,3
+63822026,24719063,5
+77626905,24719063,4
+howdy,24719063,4
+tangjiaqi,24719063,5
+twoherb,24719063,3
+126338836,24719063,3
+68534357,24719063,4
+36078455,24719063,4
+62565578,24719063,1
+ccinder,24719063,4
+132359473,24719063,5
+kyleul,24719063,5
+akilee614,24719063,5
+49170151,24719063,4
+39279260,24719063,4
+61449742,24719063,5
+vincente,24719063,5
+cdz0516,24719063,4
+96636386,24719063,4
+alicewithoutyou,24719063,4
+59367965,24719063,3
+48490607,24719063,5
+christinazeng,24719063,3
+52890425,24719063,5
+79108534,24719063,4
+thomsonkoo,24719063,4
+umaso,24719063,-1
+66783280,24719063,4
+henryxuzimo,24719063,4
+icebugger,24719063,4
+15080714,24719063,4
+68129112,24719063,4
+AChord,24719063,5
+104843183,24719063,3
+4313535,24719063,3
+76379175,24719063,4
+30165647,24719063,4
+76819889,24719063,4
+Dreaming1989712,24719063,5
+82825771,24719063,4
+pupu000,24719063,4
+67148149,24719063,2
+82479868,24719063,5
+yanjing7611,24719063,4
+claireqq,24719063,3
+dreamkiller,24719063,4
+87972286,24719063,4
+102006715,24719063,3
+47929210,24719063,5
+57907278,24719063,4
+104779135,24719063,5
+56526640,24719063,5
+yycznh0520,24719063,4
+xinnii,24719063,4
+28524293,24719063,3
+monicayun,24719063,4
+50213452,24719063,4
+Jarashi,24719063,4
+vividance,24719063,4
+xiaojingyush,24719063,4
+66203352,24719063,5
+2279647,24719063,4
+60053075,24719063,5
+94162680,24719063,4
+Arabesk,24719063,3
+Arabesk,24719063,3
+4543967,24719063,4
+leeredevil,24719063,4
+60554271,24719063,4
+1781585,24719063,4
+56724486,24719063,5
+47723160,24719063,4
+48582607,24719063,4
+37669601,24719063,-1
+liushu1987,24719063,5
+50386140,24719063,5
+snowbusy,24719063,-1
+45406348,24719063,4
+53512949,24719063,4
+43260991,24719063,4
+53602254,24719063,4
+2209447,24719063,4
+Iamfull,24719063,5
+simple545,24719063,5
+amandehome,24719063,4
+46100315,24719063,4
+bjmiss,24719063,1
+mikapanda,24719063,4
+sanzhiling,24719063,2
+83135902,24719063,4
+WierdMinds,24719063,3
+baby_wyx,24719063,3
+70860940,24719063,4
+49390111,24719063,3
+K_kk,24719063,4
+70019854,24719063,5
+wubudingyang,24719063,4
+52736219,24719063,4
+yiyufan84,24719063,4
+73723847,24719063,4
+linjunzhe,24719063,1
+Mickey-Cai,24719063,4
+45545911,24719063,3
+2386807,24719063,4
+ainini,24719063,5
+honeyvivi-lee,24719063,4
+littlebreeze,24719063,5
+mikarly,24719063,4
+91239382,24719063,4
+JasonCheung1992,24719063,4
+37280239,24719063,4
+100582359,24719063,4
+17543193,24719063,4
+flyingluffy,24719063,3
+68936887,24719063,5
+69428143,24719063,4
+17342003,24719063,3
+56459606,24719063,4
+kidadida,24719063,4
+50739381,24719063,5
+31108272,24719063,3
+59752532,24719063,3
+94367983,24719063,5
+49922956,24719063,4
+67760577,24719063,5
+34710237,24719063,3
+3687966,24719063,4
+jing-junjie,24719063,4
+1991085,24719063,5
+cheungjoe,24719063,4
+48012879,24719063,5
+cat221,24719063,4
+61831941,24719063,3
+eastqiong,24719063,5
+1117300,24719063,3
+76901769,24719063,3
+3678658,24719063,4
+nangongmocheng,24719063,5
+cardilia,24719063,3
+76531316,24719063,4
+4369602,24719063,3
+alyosha-alyosha,24719063,3
+50747236,24719063,5
+jyuelovejay,24719063,4
+94514917,24719063,5
+59353616,24719063,3
+1717708,24719063,4
+34183802,24719063,4
+47105797,24719063,4
+iplumage,24719063,4
+58596015,24719063,4
+73827929,24719063,4
+47338102,24719063,3
+efeimaomao,24719063,4
+63843241,24719063,4
+2950551,24719063,5
+47223653,24719063,4
+1935824,24719063,3
+3846319,24719063,4
+51662101,24719063,2
+83811612,24719063,4
+daisyunsun,24719063,3
+clever_trick,24719063,4
+130452925,24719063,-1
+g891211,24719063,3
+59995660,24719063,3
+104432779,24719063,5
+63332913,24719063,4
+30357929,24719063,3
+62704108,24719063,5
+88844052,24719063,3
+fanzhenNO1,24719063,5
+ameliefei,24719063,5
+79567337,24719063,4
+k7058,24719063,3
+shousolo,24719063,4
+yc11,24719063,3
+72683607,24719063,4
+49216618,24719063,4
+63623770,24719063,5
+40141522,24719063,4
+62126174,24719063,4
+62635960,24719063,5
+130531885,24719063,4
+zuuu,24719063,3
+59958389,24719063,4
+cronus92,24719063,4
+steve647,24719063,4
+48961693,24719063,5
+annho,24719063,4
+H-huan,24719063,4
+dyalan,24719063,3
+chenyanluli,24719063,4
+132996491,24719063,5
+tuturen,24719063,4
+3272880,24719063,4
+53282547,24719063,5
+66104029,24719063,4
+1792548,24719063,4
+66331142,24719063,4
+64161171,24719063,4
+sofafish,24719063,4
+wsgjr,24719063,4
+60356224,24719063,5
+Summerhoda,24719063,3
+8916978,24719063,4
+Uvo,24719063,3
+68939490,24719063,3
+73819913,24719063,5
+bigcindy,24719063,4
+Betty818,24719063,5
+37810756,24719063,4
+cskywalker,24719063,4
+83421613,24719063,5
+45307751,24719063,3
+89060524,24719063,4
+48953772,24719063,4
+yellowhsy,24719063,4
+88446212,24719063,4
+lovewenjie,24719063,5
+58346567,24719063,3
+zayaza,24719063,4
+74818677,24719063,4
+lin0xx,24719063,3
+77380461,24719063,4
+libera--,24719063,4
+angryberry,24719063,4
+124042651,24719063,4
+41486823,24719063,5
+76999762,24719063,5
+2111882,24719063,3
+Miss_Flower_,24719063,5
+39058757,24719063,3
+rockholiday,24719063,5
+74567166,24719063,4
+129490479,24719063,5
+liliansue,24719063,4
+fantasyui,24719063,4
+47845902,24719063,4
+92853414,24719063,3
+cyrus_wong,24719063,4
+joanna726,24719063,5
+Catherine_ne,24719063,4
+36805272,24719063,4
+1001195,24719063,4
+51314726,24719063,5
+liumaomaosg8,24719063,4
+lnnnnnnnn,24719063,5
+63641545,24719063,4
+68366606,24719063,4
+67276689,24719063,4
+zmnmissy,24719063,4
+love221B,24719063,4
+53824348,24719063,4
+xusara,24719063,5
+its_rong,24719063,4
+pscjanet,24719063,4
+45271252,24719063,5
+19734042,24719063,4
+75912541,24719063,2
+avon0801,24719063,5
+shuizhimuhua,24719063,4
+50230966,24719063,4
+51362848,24719063,4
+2472751,24719063,4
+83044349,24719063,4
+lokaven,24719063,4
+sunny_i,24719063,4
+44976171,24719063,3
+sethyoung,24719063,4
+lihuashi,24719063,5
+47047008,24719063,4
+wwl6002,24719063,4
+84720079,24719063,4
+rogerjulia,24719063,4
+132954430,24719063,5
+60087207,24719063,3
+ruilixiurui,24719063,5
+53723225,24719063,3
+52146606,24719063,3
+48217298,24719063,5
+2137078,24719063,4
+83264508,24719063,5
+maidangdang,24719063,5
+62917415,24719063,5
+arriey,24719063,5
+98649579,24719063,5
+4370686,24719063,4
+53256552,24719063,5
+63774339,24719063,4
+douweiwei,24719063,2
+130115210,24719063,5
+ClaudiaS571,24719063,4
+108436638,24719063,4
+40303756,24719063,3
+44048252,24719063,4
+2861255,24719063,4
+61434549,24719063,3
+69422415,24719063,4
+1080372,24719063,4
+littlekidzouzou,24719063,4
+47055297,24719063,3
+92185128,24719063,5
+70214405,24719063,4
+57139809,24719063,4
+60348245,24719063,5
+72850800,24719063,4
+yoghurtnn,24719063,4
+58927939,24719063,3
+yaozhitong1021,24719063,5
+ice_pudding,24719063,4
+ngtgz,24719063,3
+36576530,24719063,3
+3368529,24719063,5
+128402632,24719063,5
+65283286,24719063,4
+baolidao,24719063,2
+43679577,24719063,5
+muyuchao,24719063,4
+lawa23,24719063,5
+81555856,24719063,4
+sfroompp,24719063,4
+joysu,24719063,4
+HYGUY,24719063,4
+c-h-i,24719063,3
+c-h-i,24719063,3
+86947285,24719063,4
+47370846,24719063,4
+49586478,24719063,4
+lunaa,24719063,5
+annie-bean,24719063,3
+36601365,24719063,4
+114665991,24719063,4
+Erica1011,24719063,4
+wolfyu,24719063,5
+49087400,24719063,2
+zc1020,24719063,5
+85901553,24719063,1
+49115915,24719063,4
+iSaw11021,24719063,4
+79559178,24719063,5
+seekyo,24719063,4
+55362027,24719063,5
+fjxlll,24719063,5
+levycycca,24719063,4
+26237008,24719063,4
+73405940,24719063,5
+2842455,24719063,5
+braquentin,24719063,4
+2848557,24719063,5
+2214938,24719063,4
+108040682,24719063,4
+xiaotuo,24719063,4
+102432384,24719063,4
+changle0605,24719063,4
+72180654,24719063,3
+arthur1990,24719063,5
+57597596,24719063,5
+33177895,24719063,4
+127894179,24719063,5
+85035571,24719063,4
+ice1234567890,24719063,1
+46891725,24719063,4
+yukisnow,24719063,4
+74397322,24719063,4
+2821497,24719063,4
+Lelio090101,24719063,4
+cgy0330,24719063,4
+128167486,24719063,4
+57925855,24719063,4
+itzhaoxiangyu,24719063,4
+84430794,24719063,4
+dehhan,24719063,5
+5496665,24719063,4
+36792290,24719063,3
+46697374,24719063,4
+61927827,24719063,4
+frienger,24719063,5
+126857182,24719063,4
+43912809,24719063,4
+2148512,24719063,4
+lyojue,24719063,4
+lfj1016,24719063,4
+zmdouhua,24719063,4
+strange_,24719063,4
+66719737,24719063,3
+jimodexueren,24719063,1
+51812903,24719063,5
+45984681,24719063,4
+lzzzzzfbee,24719063,4
+119608603,24719063,4
+lost-kaine,24719063,4
+YvonneGQ,24719063,4
+73585315,24719063,3
+zhanglink,24719063,4
+xilouchen,24719063,3
+ray-1124,24719063,4
+duzhouchi,24719063,4
+73866765,24719063,3
+76428013,24719063,3
+57476405,24719063,5
+Sentiment,24719063,4
+4901199,24719063,4
+88439681,24719063,4
+qilerongrong,24719063,5
+30099819,24719063,4
+120036481,24719063,5
+4242728,24719063,3
+51959545,24719063,4
+coldplay_,24719063,4
+1138243,24719063,3
+52254667,24719063,5
+53559432,24719063,4
+1867121,24719063,4
+dawnxxx,24719063,5
+54757893,24719063,4
+discon,24719063,2
+63965908,24719063,4
+76867360,24719063,4
+xiaorujuly,24719063,5
+1955971,24719063,4
+RRspace,24719063,4
+ceh19930603,24719063,5
+74601156,24719063,3
+49854531,24719063,3
+CarlQing,24719063,4
+2498446,24719063,3
+2596903,24719063,3
+1747148,24719063,5
+aegeanguo,24719063,5
+shumingray,24719063,4
+50900048,24719063,2
+67380391,24719063,2
+FORYUKI,24719063,4
+51721466,24719063,3
+jinyu0113,24719063,5
+unclelonglegs,24719063,4
+38609942,24719063,4
+Jessun,24719063,4
+DERRICK_ROSE,24719063,4
+56855422,24719063,3
+3540779,24719063,3
+hawords,24719063,5
+Ronnie816,24719063,4
+50472438,24719063,4
+67641940,24719063,5
+58045051,24719063,5
+appleandt30,24719063,4
+119192019,24719063,5
+67958148,24719063,3
+M.chou,24719063,4
+caojiang,24719063,5
+81107474,24719063,4
+xzfd,24719063,4
+52039676,24719063,4
+52323343,24719063,4
+abily,24719063,5
+4689036,24719063,3
+52889197,24719063,4
+74735445,24719063,5
+flowertide,24719063,3
+natsukimi,24719063,4
+43134221,24719063,5
+46387207,24719063,4
+raye.b,24719063,4
+guoxingxing,24719063,5
+54885866,24719063,4
+alicemeng,24719063,3
+48471753,24719063,4
+79381337,24719063,4
+honestydudu,24719063,4
+49893874,24719063,4
+congba,24719063,3
+fuxiu,24719063,4
+69005394,24719063,5
+39539838,24719063,5
+2874552,24719063,5
+103366376,24719063,4
+48381234,24719063,4
+yuuu,24719063,4
+62256703,24719063,5
+49919460,24719063,5
+heizelike,24719063,4
+3644430,24719063,5
+2787996,24719063,4
+80822437,24719063,5
+17549723,24719063,3
+65385253,24719063,4
+taxi,24719063,5
+48948981,24719063,5
+72705326,24719063,3
+3922372,24719063,5
+whoseLotus,24719063,4
+83210709,24719063,4
+72684898,24719063,4
+63670463,24719063,5
+seeulater,24719063,3
+wantwaye,24719063,4
+weihang520,24719063,5
+nailuoyitai,24719063,4
+1106581,24719063,4
+18555862,24719063,4
+lovingmomo,24719063,4
+53605408,24719063,3
+68799111,24719063,4
+62141852,24719063,5
+slimseven,24719063,4
+conansense,24719063,4
+133050138,24719063,4
+68490361,24719063,4
+hiolivia,24719063,4
+57871688,24719063,4
+3882080,24719063,5
+Jessica_nannan,24719063,4
+shenxiyu,24719063,4
+49644575,24719063,1
+49258293,24719063,5
+ludihere,24719063,4
+33415384,24719063,3
+shushizhenliu,24719063,4
+94678422,24719063,5
+121501627,24719063,5
+Matt_Zhe,24719063,4
+nbyuan,24719063,4
+53914126,24719063,4
+108077404,24719063,2
+67529255,24719063,5
+ask4more,24719063,-1
+xuxinleo,24719063,4
+12822970,24719063,5
+61111185,24719063,3
+63973142,24719063,5
+lovesicker,24719063,4
+54934785,24719063,4
+65450414,24719063,3
+anliye,24719063,5
+ishtarie,24719063,5
+kim899,24719063,5
+63604884,24719063,4
+81409226,24719063,2
+130735639,24719063,5
+47123122,24719063,5
+71961235,24719063,5
+64292562,24719063,5
+58634093,24719063,4
+48793240,24719063,4
+June091,24719063,5
+wanghaoze,24719063,4
+tessai,24719063,4
+87909103,24719063,4
+2603913,24719063,5
+wwnoah,24719063,5
+kelland,24719063,4
+71298339,24719063,5
+68334725,24719063,4
+66314549,24719063,5
+64451825,24719063,3
+3595293,24719063,5
+124133280,24719063,5
+3290900,24719063,5
+6375537,24719063,5
+jessica_ZY,24719063,5
+1818595,24719063,4
+mylittlefour,24719063,4
+2151298,24719063,5
+131274504,24719063,4
+kejinlong,24719063,4
+doddlegone,24719063,5
+41317103,24719063,4
+57982992,24719063,4
+4340099,24719063,4
+66841204,24719063,3
+69048023,24719063,5
+41385681,24719063,5
+Hrypenlyandroid,24719063,4
+87776926,24719063,4
+114011906,24719063,3
+zhangqiuyu,24719063,4
+65002070,24719063,3
+49918417,24719063,3
+82238487,24719063,4
+67436408,24719063,4
+66178513,24719063,4
+33282308,24719063,4
+4650728,24719063,5
+67681966,24719063,3
+13903375,24719063,4
+3598086,24719063,3
+claireGuoDH,24719063,3
+3615093,24719063,3
+Ouidah,24719063,3
+gexiaoshang,24719063,5
+heapsnow,24719063,3
+sichouzhilu,24719063,4
+73869921,24719063,3
+52423064,24719063,5
+CharlotteKo,24719063,4
+67561366,24719063,4
+bbxrqushi,24719063,4
+76824704,24719063,4
+83876707,24719063,5
+129956796,24719063,5
+Lotto59,24719063,3
+76047428,24719063,5
+79746301,24719063,4
+53485696,24719063,4
+130983822,24719063,4
+1378503,24719063,4
+63462417,24719063,5
+voidintovoid,24719063,5
+52507418,24719063,4
+4590334,24719063,5
+markiexi,24719063,4
+3009345,24719063,4
+92389231,24719063,5
+59073966,24719063,5
+crazy0527,24719063,4
+53431261,24719063,4
+4892064,24719063,4
+54819049,24719063,-1
+36049101,24719063,5
+12571373,24719063,3
+64663760,24719063,4
+wss5336,24719063,4
+59025385,24719063,2
+55462319,24719063,4
+32995807,24719063,4
+62149917,24719063,5
+107854143,24719063,5
+24900499,24719063,4
+46291335,24719063,5
+13835219,24719063,3
+shakespark,24719063,3
+52489598,24719063,4
+68379103,24719063,4
+wangchangjian,24719063,5
+45463370,24719063,4
+kobeeason,24719063,4
+30281495,24719063,4
+120594965,24719063,4
+53033860,24719063,4
+66408147,24719063,4
+65095857,24719063,5
+xx2086,24719063,3
+79499233,24719063,3
+chaos1223,24719063,5
+52143519,24719063,4
+75555636,24719063,4
+76393487,24719063,5
+89787162,24719063,4
+myfairytale,24719063,-1
+59281167,24719063,4
+lmelva,24719063,4
+68424058,24719063,3
+125226021,24719063,4
+1949431,24719063,4
+90446896,24719063,4
+HilaryYue,24719063,4
+120275582,24719063,4
+48523065,24719063,4
+4439779,24719063,4
+74932520,24719063,4
+53612447,24719063,5
+102576113,24719063,5
+kazuki_,24719063,4
+3531316,24719063,4
+shunong,24719063,4
+4314733,24719063,4
+66758358,24719063,4
+69631083,24719063,4
+denisy,24719063,4
+59016539,24719063,4
+52910373,24719063,4
+yunfanle,24719063,5
+119157867,24719063,4
+allenzn125,24719063,4
+daisy_41,24719063,4
+51601161,24719063,4
+48976619,24719063,4
+1617020,24719063,4
+18747546,24719063,4
+caesarphoenix,24719063,3
+p2165,24719063,4
+48049972,24719063,3
+qixuan0222,24719063,5
+qixuan0222,24719063,5
+51711938,24719063,4
+lin127,24719063,-1
+A.Mo,24719063,4
+soul92114,24719063,4
+cheng7si8jin,24719063,5
+78680128,24719063,3
+74141389,24719063,3
+m19900714,24719063,3
+54513758,24719063,5
+53983091,24719063,4
+74913423,24719063,5
+3547067,24719063,2
+88429697,24719063,4
+dear.still,24719063,4
+souldestroyin,24719063,4
+4629619,24719063,5
+47418044,24719063,4
+hory,24719063,4
+57605115,24719063,2
+57605115,24719063,2
+solitaryreaper,24719063,5
+davyjones,24719063,3
+SoyQueenaTse,24719063,3
+34173621,24719063,3
+pc1214,24719063,3
+seaneight,24719063,4
+SeanShepherd,24719063,4
+120321669,24719063,4
+patient_,24719063,4
+47587270,24719063,3
+silverlee,24719063,3
+feel_sorrow,24719063,5
+sherry5241,24719063,3
+phoenix43,24719063,3
+121484000,24719063,4
+Pre_Asura,24719063,3
+platon_doyle,24719063,4
+kassyxuemeng,24719063,5
+85044242,24719063,5
+yunqiu,24719063,4
+pigeon-komatsu,24719063,4
+19136693,24719063,2
+46014453,24719063,4
+58523222,24719063,3
+63900378,24719063,3
+129063057,24719063,4
+spottedowl,24719063,3
+130111884,24719063,5
+84899568,24719063,5
+93807160,24719063,5
+71166963,24719063,4
+vvtutu,24719063,2
+41946258,24719063,3
+takahashili,24719063,3
+cloverllx,24719063,3
+31047245,24719063,5
+119683375,24719063,4
+49088398,24719063,5
+69520730,24719063,4
+giacintaxx,24719063,4
+freya1214,24719063,3
+51919301,24719063,5
+Xbw777,24719063,3
+kusanoyui,24719063,3
+Freiheit429,24719063,4
+119290611,24719063,5
+stellalula,24719063,4
+sallyvivi,24719063,5
+32462724,24719063,4
+smellymouse,24719063,4
+60120741,24719063,3
+nagi_echo-king,24719063,3
+4588310,24719063,4
+43342000,24719063,4
+XFlovesChrisH,24719063,5
+2403220,24719063,4
+55630387,24719063,5
+49702943,24719063,4
+4044749,24719063,4
+57303621,24719063,3
+tracynoble,24719063,4
+3802312,24719063,3
+wusiyi,24719063,4
+housecatch123,24719063,5
+1795919,24719063,5
+80240498,24719063,4
+jansue,24719063,4
+rayeah,24719063,1
+54184798,24719063,4
+maydaythering,24719063,4
+22593878,24719063,3
+philllin,24719063,3
+83228231,24719063,4
+97757646,24719063,3
+wuyulun1211,24719063,4
+3541486,24719063,4
+wangxiaoyeer,24719063,4
+skyerokr,24719063,5
+67693720,24719063,1
+84244010,24719063,4
+4366193,24719063,4
+anotheronexia,24719063,3
+KOBENYF,24719063,4
+43756834,24719063,3
+49595588,24719063,4
+DJ-day,24719063,4
+qingmuwu,24719063,4
+72827871,24719063,4
+fergiezheng,24719063,3
+65911258,24719063,2
+123688744,24719063,4
+116614076,24719063,4
+3073495,24719063,3
+doraeman,24719063,4
+54308994,24719063,3
+4575449,24719063,4
+Emma_zlm,24719063,5
+3573467,24719063,4
+71191716,24719063,5
+45575383,24719063,4
+qX9n,24719063,5
+104445642,24719063,4
+47507792,24719063,4
+96951394,24719063,4
+steammoonsnow,24719063,5
+1663187,24719063,4
+133081185,24719063,-1
+shuimoyuxiang,24719063,5
+48852943,24719063,4
+longya,24719063,4
+130286254,24719063,3
+27213961,24719063,3
+33329266,24719063,3
+NysUn,24719063,4
+66836438,24719063,5
+63194711,24719063,4
+linyuzhu,24719063,4
+48349929,24719063,4
+8605018,24719063,4
+54521144,24719063,5
+93505964,24719063,5
+wenroubuzhu,24719063,3
+47458392,24719063,3
+49891610,24719063,3
+65038141,24719063,4
+3735881,24719063,4
+wymanqin,24719063,3
+soundofclouds,24719063,4
+14601311,24719063,4
+pershingsay,24719063,4
+zjy1222,24719063,5
+56833900,24719063,4
+silver11,24719063,4
+2230826,24719063,3
+yinleo,24719063,4
+69477344,24719063,5
+58307675,24719063,5
+73626689,24719063,4
+xiaobai_zw,24719063,4
+1782017,24719063,2
+beikou,24719063,3
+74519647,24719063,4
+heikichi,24719063,5
+roseunicorn,24719063,4
+alleni,24719063,3
+lesleyjiang,24719063,4
+39812333,24719063,4
+rudygiraffe,24719063,3
+Maideren,24719063,5
+severus,24719063,5
+little.m,24719063,4
+63372142,24719063,5
+49543853,24719063,4
+84231339,24719063,4
+55539632,24719063,4
+106497872,24719063,4
+jiao-j,24719063,5
+68825025,24719063,3
+85480026,24719063,4
+79590717,24719063,4
+67404244,24719063,3
+LizShen,24719063,3
+2518955,24719063,3
+70559646,24719063,5
+weijiu0821,24719063,4
+91957409,24719063,5
+cqingxian,24719063,4
+simplyme,24719063,-1
+qianricao,24719063,4
+simplycomplex,24719063,4
+58988692,24719063,5
+4716984,24719063,3
+5490095,24719063,4
+49411879,24719063,4
+XX6819202,24719063,3
+82208968,24719063,4
+39675870,24719063,3
+48463035,24719063,3
+95769207,24719063,5
+fish6058,24719063,3
+maceo,24719063,3
+48358575,24719063,5
+chaiyanchao,24719063,5
+80634044,24719063,4
+qinger1999,24719063,4
+kirara727,24719063,4
+121602100,24719063,3
+go2,24719063,2
+yujun_2011,24719063,5
+over-young,24719063,4
+D.Scarlett,24719063,3
+1652197,24719063,5
+83486677,24719063,3
+mr.slow,24719063,3
+ianto,24719063,3
+ming_203344,24719063,4
+LeeXorlarrin,24719063,4
+82022775,24719063,5
+48746387,24719063,4
+58588109,24719063,-1
+45060323,24719063,3
+49869256,24719063,4
+3484320,24719063,4
+88122336,24719063,4
+yueayue,24719063,4
+78801731,24719063,4
+Iamapoem,24719063,3
+3677448,24719063,3
+65488479,24719063,4
+foreverjc,24719063,3
+76501585,24719063,3
+lolalireader,24719063,4
+49226222,24719063,4
+wen1011,24719063,4
+97302377,24719063,4
+59366761,24719063,-1
+yunge1991,24719063,4
+51068968,24719063,5
+49143252,24719063,3
+zcx1990,24719063,5
+57805220,24719063,3
+suxudong,24719063,5
+3006833,24719063,4
+51814592,24719063,5
+ran69,24719063,-1
+45549076,24719063,5
+46053347,24719063,4
+62206199,24719063,3
+46867363,24719063,3
+88048268,24719063,4
+51061132,24719063,4
+cheungyutong,24719063,4
+91515979,24719063,2
+x.sunday,24719063,3
+61863577,24719063,-1
+miaohengla,24719063,4
+millerwong,24719063,5
+2076258,24719063,4
+43314025,24719063,5
+49342941,24719063,4
+Yven,24719063,4
+cold_sophie,24719063,4
+69969080,24719063,4
+48845332,24719063,3
+Thelma_,24719063,4
+4431102,24719063,4
+serein27,24719063,3
+missaloveme,24719063,4
+57111606,24719063,4
+3063479,24719063,4
+87118528,24719063,4
+phoebejh,24719063,5
+114014303,24719063,4
+81195770,24719063,5
+64328314,24719063,5
+claire1031,24719063,3
+83550216,24719063,5
+49086461,24719063,4
+89741075,24719063,3
+44136800,24719063,2
+124454581,24719063,-1
+53103861,24719063,2
+61613181,24719063,4
+roseffan,24719063,3
+grave-,24719063,4
+4401259,24719063,5
+74106602,24719063,4
+3407887,24719063,5
+foreveryoung01,24719063,4
+cschester,24719063,4
+119292344,24719063,2
+22843463,24719063,4
+70933657,24719063,4
+50688073,24719063,4
+3670661,24719063,4
+76484810,24719063,4
+72538808,24719063,4
+sept,24719063,3
+showerfly,24719063,4
+zhaimozi,24719063,4
+52113084,24719063,3
+Chohin,24719063,4
+bearyumi,24719063,3
+giraffezebra,24719063,3
+65448112,24719063,4
+37948273,24719063,5
+71756751,24719063,3
+1592520,24719063,3
+2892582,24719063,5
+56143225,24719063,4
+61992166,24719063,5
+81304379,24719063,3
+96044338,24719063,4
+53247764,24719063,4
+littlewings,24719063,5
+4407883,24719063,4
+sofans,24719063,5
+yolandityb,24719063,4
+lynn0128,24719063,5
+69145897,24719063,5
+44500409,24719063,-1
+38593153,24719063,3
+51928009,24719063,4
+3772203,24719063,3
+yizhao,24719063,4
+66926887,24719063,4
+53257837,24719063,4
+kite2002,24719063,4
+57575081,24719063,3
+yuonline,24719063,4
+56896542,24719063,4
+52324566,24719063,5
+54778746,24719063,3
+25958436,24719063,4
+caocaoa,24719063,4
+65502839,24719063,3
+61511872,24719063,5
+youngoceano,24719063,4
+33907274,24719063,5
+114381106,24719063,4
+peach99,24719063,3
+31319988,24719063,5
+yqsophia,24719063,3
+3634776,24719063,4
+teselaaaaaaa,24719063,4
+mlgbpirate,24719063,4
+huoguo,24719063,-1
+62544966,24719063,3
+kratos0008,24719063,4
+iamxy2,24719063,4
+xiaoyusumu,24719063,5
+xudi,24719063,5
+88212348,24719063,4
+3187313,24719063,3
+liyashun,24719063,4
+114759212,24719063,5
+65714390,24719063,4
+yusanqi,24719063,4
+62477319,24719063,5
+62030418,24719063,4
+64018936,24719063,4
+3582172,24719063,4
+44967228,24719063,4
+Nagini,24719063,3
+62882981,24719063,4
+35827809,24719063,4
+c2c3,24719063,5
+jaredspecter,24719063,5
+3880595,24719063,3
+82249591,24719063,4
+89652735,24719063,5
+57080555,24719063,4
+98375553,24719063,3
+44758413,24719063,3
+81301624,24719063,5
+63011235,24719063,-1
+69683493,24719063,4
+yongzhenkaiyuan,24719063,5
+scarlettxing,24719063,4
+scarlettxing,24719063,4
+124997647,24719063,5
+Hanndiex_,24719063,5
+stardust.,24719063,3
+48481672,24719063,4
+47081544,24719063,5
+129798303,24719063,4
+50068704,24719063,5
+100017292,24719063,3
+131954344,24719063,5
+122441853,24719063,5
+a55585768026,24719063,4
+Sovee091,24719063,4
+snowmoonsakura,24719063,5
+129503817,24719063,3
+sugarman638,24719063,4
+28280103,24719063,3
+3286700,24719063,-1
+huafuckhua,24719063,-1
+67387013,24719063,4
+Alice-in-Bed,24719063,3
+ZY-Monster,24719063,4
+earlyzaozao,24719063,3
+cherrybombbb,24719063,4
+88159379,24719063,4
+75538960,24719063,3
+2265138,24719063,2
+65369148,24719063,4
+61440451,24719063,5
+Chenjingwang92,24719063,2
+wyjlazy,24719063,4
+caoseng,24719063,4
+2238984,24719063,3
+58020700,24719063,5
+59235742,24719063,3
+2423694,24719063,4
+hyperphysic,24719063,3
+30457423,24719063,5
+47289236,24719063,3
+82927281,24719063,4
+131525687,24719063,4
+47822831,24719063,4
+3981876,24719063,3
+56244631,24719063,5
+2424435,24719063,4
+sho2mon4e4y,24719063,4
+56609628,24719063,4
+59101282,24719063,4
+70875238,24719063,4
+eddy_charlie,24719063,5
+72169675,24719063,4
+130696206,24719063,4
+54222336,24719063,3
+dianascb,24719063,2
+39095645,24719063,3
+4733352,24719063,3
+49091580,24719063,5
+june.q,24719063,4
+1527521,24719063,3
+cabaret,24719063,3
+67781678,24719063,5
+share329,24719063,5
+83748607,24719063,4
+kaylynn,24719063,3
+66598168,24719063,5
+buenos1900,24719063,5
+laylaseven,24719063,3
+tadashi,24719063,4
+79847046,24719063,4
+131489752,24719063,4
+60828733,24719063,5
+68016906,24719063,4
+nofer,24719063,4
+misszuoweimen,24719063,5
+66833229,24719063,4
+52569387,24719063,3
+shawanzi,24719063,4
+52469836,24719063,5
+94717948,24719063,4
+cynthia717,24719063,4
+46342568,24719063,3
+mobymarry,24719063,2
+wangxhtt,24719063,4
+75860313,24719063,5
+weiweiweiwei,24719063,5
+huskie,24719063,4
+Thyne,24719063,5
+2584973,24719063,5
+agree123,24719063,4
+13753094,24719063,4
+yumengya,24719063,4
+51763262,24719063,5
+62180561,24719063,4
+52313283,24719063,5
+xiaohan751,24719063,5
+57105566,24719063,5
+xiaowangzi1984,24719063,5
+Vivi_SH,24719063,5
+54907599,24719063,5
+ricy-rice,24719063,3
+3555547,24719063,4
+little-wen,24719063,3
+4135777,24719063,5
+renth,24719063,4
+47200046,24719063,4
+reliance,24719063,5
+decemfirst,24719063,4
+64173610,24719063,5
+75475788,24719063,3
+bullshitforever,24719063,4
+119192914,24719063,4
+chinriya,24719063,4
+1865210,24719063,4
+25268390,24719063,4
+FrankWasabi,24719063,4
+120943212,24719063,4
+cindysummer,24719063,5
+engel17,24719063,4
+travel_yuong,24719063,4
+kklro,24719063,5
+2668545,24719063,4
+121488937,24719063,5
+giantguo,24719063,5
+76689420,24719063,4
+104261144,24719063,3
+52596729,24719063,3
+45298840,24719063,4
+35639294,24719063,4
+maobao,24719063,3
+ltp19950208,24719063,4
+63606216,24719063,2
+jennyseath,24719063,3
+49583852,24719063,4
+4411528,24719063,5
+82570305,24719063,4
+Kev.Garnett,24719063,4
+nobodyhome,24719063,3
+1482288,24719063,4
+129701605,24719063,5
+afratop,24719063,5
+2923837,24719063,4
+70918450,24719063,5
+68738740,24719063,4
+76692295,24719063,3
+windcqy,24719063,4
+57974419,24719063,4
+deadcolour,24719063,4
+taugenichts,24719063,-1
+52819712,24719063,4
+68471660,24719063,4
+51558823,24719063,4
+56223706,24719063,4
+59206130,24719063,3
+rememberjuly,24719063,3
+madrugada,24719063,5
+44191956,24719063,4
+45365210,24719063,4
+muxiaoxu,24719063,4
+53560944,24719063,5
+ruthchai,24719063,4
+2856696,24719063,4
+47379208,24719063,5
+46243415,24719063,4
+49812729,24719063,4
+1228717,24719063,2
+83118142,24719063,4
+w_weixing,24719063,5
+hela,24719063,4
+2986990,24719063,4
+47863634,24719063,3
+43846305,24719063,2
+worrior,24719063,4
+70353948,24719063,4
+84279039,24719063,5
+53412927,24719063,3
+61426958,24719063,4
+48067504,24719063,5
+celine_nic,24719063,4
+63744273,24719063,4
+pplife,24719063,4
+zod798,24719063,4
+67077607,24719063,3
+zc1997,24719063,3
+weichengluanma,24719063,3
+94333219,24719063,4
+59955092,24719063,3
+xiyuanaries,24719063,4
+68710909,24719063,4
+61028583,24719063,5
+68399998,24719063,4
+60088640,24719063,3
+48349088,24719063,3
+46266479,24719063,5
+59266552,24719063,-1
+85245250,24719063,4
+merrycherry,24719063,4
+3888542,24719063,3
+fallinlovexu,24719063,4
+Leostella,24719063,4
+106815122,24719063,5
+106815122,24719063,5
+parala,24719063,4
+helloivan,24719063,4
+41868148,24719063,5
+ashincheer,24719063,3
+74680055,24719063,4
+58888075,24719063,4
+26605757,24719063,5
+122581075,24719063,5
+tev,24719063,4
+120392055,24719063,3
+woshixiaoqi,24719063,4
+susie1991,24719063,4
+120781613,24719063,4
+31528814,24719063,4
+46064508,24719063,5
+matt5,24719063,4
+1631968,24719063,3
+59833896,24719063,4
+51875619,24719063,4
+57214774,24719063,4
+eiji218837,24719063,3
+36877826,24719063,4
+47973485,24719063,4
+xu77,24719063,4
+virginiaboat,24719063,-1
+HarryBabel,24719063,3
+62072231,24719063,3
+127345355,24719063,4
+teroteuroko,24719063,5
+82623937,24719063,3
+movie007wn,24719063,4
+4165611,24719063,5
+3812638,24719063,-1
+63759244,24719063,5
+48493154,24719063,5
+69013511,24719063,4
+colorwind,24719063,4
+amao1412,24719063,5
+ad.7,24719063,4
+jzhshow,24719063,5
+71455965,24719063,4
+74545384,24719063,4
+duduxiongzhifu,24719063,4
+wuhuan1205,24719063,4
+39975906,24719063,2
+septembersummer,24719063,4
+wakaka1986,24719063,4
+52583553,24719063,4
+69388549,24719063,4
+47426974,24719063,3
+imKuku,24719063,5
+74491212,24719063,4
+2006622,24719063,4
+kedoumili,24719063,4
+chenxiaochou,24719063,4
+jill426,24719063,4
+ipodmelody,24719063,4
+lxm0715,24719063,3
+41660487,24719063,4
+57468138,24719063,4
+haozhaiyihao,24719063,4
+124749541,24719063,5
+47889564,24719063,4
+Strangefamiliar,24719063,3
+minervayy,24719063,5
+60245938,24719063,5
+ericatdoll,24719063,5
+clementinetsu,24719063,4
+4525795,24719063,4
+60182488,24719063,4
+SingleKangaroo,24719063,3
+43017535,24719063,4
+63080276,24719063,4
+x1Ao_y,24719063,4
+73084756,24719063,5
+mengwei0205,24719063,4
+mariahbfly,24719063,5
+58096445,24719063,5
+2709087,24719063,3
+4108180,24719063,5
+xuepanpan,24719063,3
+languheshang,24719063,5
+kekexilijiu,24719063,3
+3868075,24719063,4
+marala,24719063,4
+Latefordrama,24719063,3
+35108936,24719063,4
+satin2,24719063,-1
+ll60amo,24719063,4
+hanxi_cy,24719063,4
+66207629,24719063,4
+62413713,24719063,3
+94563993,24719063,4
+115782738,24719063,3
+snowchong1984,24719063,4
+71887540,24719063,4
+nana_007,24719063,4
+lunamu,24719063,4
+pamelayang,24719063,4
+pamelayang,24719063,4
+43790343,24719063,4
+michelleorz,24719063,4
+50145189,24719063,4
+88174577,24719063,4
+xxxcici123,24719063,4
+57580969,24719063,5
+Mr.V,24719063,4
+orangeumoon,24719063,4
+3667524,24719063,4
+1439418,24719063,4
+xyqqq,24719063,4
+47358013,24719063,5
+1411968,24719063,3
+5355133,24719063,5
+86840728,24719063,4
+126702436,24719063,4
+48815744,24719063,4
+56272874,24719063,3
+Janone,24719063,4
+ryozth,24719063,4
+26806780,24719063,4
+Do-my-self,24719063,4
+46057903,24719063,4
+50043116,24719063,4
+Cheney__,24719063,4
+53379708,24719063,4
+liuqing2009,24719063,4
+rousanpangzi,24719063,4
+tuimaoshu,24719063,4
+2247807,24719063,3
+whichwitchcat,24719063,4
+doralupin,24719063,4
+77323492,24719063,-1
+49281043,24719063,3
+1742602,24719063,4
+40013410,24719063,4
+123174311,24719063,4
+73031414,24719063,4
+37950013,24719063,5
+4549541,24719063,5
+42292941,24719063,4
+quanzhouren,24719063,4
+122711085,24719063,4
+cathyhere,24719063,3
+winmaxangle,24719063,3
+wndhaor,24719063,4
+59969817,24719063,4
+102842187,24719063,4
+51712880,24719063,5
+xiaoyuhen,24719063,5
+49305453,24719063,3
+Necroshining,24719063,3
+sophiaqing,24719063,3
+flyrodney,24719063,4
+Arrebato,24719063,3
+66513837,24719063,4
+93893593,24719063,4
+63468471,24719063,4
+13984024,24719063,5
+gintokihi,24719063,3
+59127603,24719063,3
+74855673,24719063,3
+68596231,24719063,5
+65668164,24719063,5
+4075540,24719063,4
+59822585,24719063,4
+51067589,24719063,3
+Decadeff,24719063,4
+45482570,24719063,4
+puccatry,24719063,4
+silencewong,24719063,4
+tulipwings,24719063,4
+57896614,24719063,4
+4430057,24719063,4
+momo0724,24719063,4
+42469083,24719063,1
+toby0910,24719063,5
+33325157,24719063,4
+luoxuan2379,24719063,4
+67695770,24719063,4
+17245901,24719063,4
+1127610,24719063,4
+so-magic,24719063,4
+1631122,24719063,4
+49677868,24719063,-1
+1791688,24719063,4
+81619869,24719063,4
+imzj,24719063,3
+39176396,24719063,-1
+60037838,24719063,4
+Solv,24719063,5
+lynn3737,24719063,3
+hedgehog,24719063,5
+81240800,24719063,3
+35336788,24719063,4
+byshine999,24719063,3
+liwei1806,24719063,4
+hypnoticboy,24719063,5
+108637207,24719063,5
+108637207,24719063,5
+50708726,24719063,3
+Sean__Wang,24719063,2
+84698699,24719063,4
+SMC,24719063,4
+xumhandy,24719063,5
+particles,24719063,4
+wusequanwei,24719063,3
+maluguojiang,24719063,4
+84482737,24719063,5
+wenguochen,24719063,3
+46413224,24719063,4
+xiaohe5210,24719063,4
+52926805,24719063,-1
+soasbefore,24719063,4
+Ryansher,24719063,2
+2220624,24719063,5
+3978577,24719063,3
+123129041,24719063,-1
+sandorsansa,24719063,4
+42186574,24719063,4
+83782762,24719063,3
+91604108,24719063,4
+binben,24719063,3
+2859580,24719063,4
+robinorigin,24719063,5
+3845322,24719063,4
+flyxzz,24719063,5
+60358393,24719063,5
+tintin_yu,24719063,4
+2229038,24719063,3
+leftrighthands,24719063,4
+55019344,24719063,4
+60119202,24719063,3
+7971587,24719063,3
+61633382,24719063,4
+lovefilms,24719063,4
+venryterna,24719063,5
+54626990,24719063,5
+xuaoling,24719063,5
+107561388,24719063,3
+littlenest,24719063,4
+lovejtlforever2,24719063,3
+wentyishere,24719063,4
+59774628,24719063,5
+51028542,24719063,4
+80141777,24719063,5
+97277841,24719063,4
+63742684,24719063,4
+lzblack,24719063,3
+42202174,24719063,3
+AllenZ_CN,24719063,3
+xyl19900815,24719063,4
+83389859,24719063,3
+CeciliaQueen,24719063,-1
+banxiaqiuming,24719063,3
+allentear,24719063,5
+abin520918,24719063,4
+1177179,24719063,3
+yangziqiang,24719063,4
+1493686,24719063,5
+42413148,24719063,3
+28142648,24719063,3
+siseneg,24719063,4
+71488560,24719063,4
+56660352,24719063,4
+3550233,24719063,3
+2349644,24719063,4
+50656699,24719063,3
+114387264,24719063,5
+64949949,24719063,5
+xizi90,24719063,4
+44218367,24719063,5
+64715321,24719063,4
+2778486,24719063,3
+xiaosongqu,24719063,4
+2266030,24719063,4
+daangel,24719063,5
+afa1021,24719063,4
+57980305,24719063,5
+58123651,24719063,5
+58313990,24719063,4
+janice1124,24719063,3
+50028709,24719063,3
+little-dog,24719063,5
+2381926,24719063,5
+4335163,24719063,4
+45640486,24719063,4
+91543095,24719063,4
+58343870,24719063,5
+Pincent,24719063,4
+alcudish,24719063,3
+54893820,24719063,4
+innocent329,24719063,5
+sapx,24719063,4
+46897570,24719063,3
+theodorelee,24719063,4
+fxiaobo,24719063,4
+boomXXboomXX,24719063,4
+53455347,24719063,5
+10236919,24719063,4
+LLsupportsJIM,24719063,3
+lanselo,24719063,3
+dawnlight-joe,24719063,3
+56224870,24719063,4
+one0827,24719063,-1
+47782519,24719063,4
+wuyaicho,24719063,4
+51419685,24719063,4
+47471992,24719063,4
+77307938,24719063,4
+WangWei1995,24719063,4
+83779485,24719063,5
+76986698,24719063,4
+47708904,24719063,5
+45061776,24719063,5
+76430480,24719063,4
+79262344,24719063,3
+MYtachikoma,24719063,5
+29741430,24719063,5
+31301735,24719063,3
+77194286,24719063,4
+sodaorchid,24719063,4
+120008046,24719063,4
+75718452,24719063,4
+elijahh,24719063,3
+klot,24719063,3
+mylsng13,24719063,5
+zhaoliqun,24719063,4
+yimianmian,24719063,3
+49893438,24719063,5
+eric_iiw,24719063,3
+67679868,24719063,4
+53854187,24719063,4
+cindyzhe,24719063,4
+attshuo,24719063,4
+74224240,24719063,2
+55942870,24719063,4
+30426517,24719063,4
+ys1013,24719063,4
+randidianying,24719063,3
+50832667,24719063,2
+eastern,24719063,3
+46394662,24719063,4
+80589934,24719063,4
+cat_rs,24719063,4
+75589867,24719063,4
+nanguodehaizi,24719063,4
+57145873,24719063,4
+xiaobaba,24719063,5
+shuimudeyu1990,24719063,4
+62370156,24719063,3
+47019228,24719063,3
+classical622,24719063,4
+laura13,24719063,4
+seail,24719063,4
+37567847,24719063,4
+2759613,24719063,4
+62027209,24719063,3
+49488588,24719063,3
+37495463,24719063,4
+cizimm,24719063,5
+kongben,24719063,4
+vipzshtomorrow,24719063,5
+52944642,24719063,4
+2814598,24719063,4
+82913743,24719063,5
+3762024,24719063,4
+3170513,24719063,4
+42680639,24719063,4
+Xia0_K,24719063,4
+ellen_gege,24719063,4
+62113425,24719063,4
+61942489,24719063,3
+71179408,24719063,4
+31679098,24719063,5
+44687623,24719063,3
+54666875,24719063,5
+47796650,24719063,3
+farawayfromhome,24719063,3
+farawayfromhome,24719063,3
+51257333,24719063,3
+44862479,24719063,2
+asoooy,24719063,4
+hudali,24719063,5
+78728775,24719063,5
+56228022,24719063,5
+asdzheng,24719063,5
+zhr19951204,24719063,4
+4712188,24719063,4
+85024926,24719063,3
+68061879,24719063,4
+iamsamuel,24719063,4
+49499844,24719063,4
+cosmos-deu,24719063,4
+18133718,24719063,4
+ziyoushijiasuo,24719063,5
+64186568,24719063,3
+qinxinzhu,24719063,4
+tintintsang,24719063,4
+juaner32,24719063,4
+xijiayang,24719063,4
+76550501,24719063,3
+79865158,24719063,3
+zhxyuh,24719063,4
+110151741,24719063,5
+73875283,24719063,4
+islandmeng,24719063,5
+51152524,24719063,4
+4145491,24719063,5
+yeqingyang,24719063,5
+3258545,24719063,4
+62582526,24719063,4
+ayal,24719063,4
+lesley30stm,24719063,4
+52889528,24719063,4
+62455169,24719063,5
+babyxy006,24719063,4
+thegrudge,24719063,4
+wamgzc1004,24719063,5
+hana0707,24719063,3
+sinxu,24719063,5
+tjz230,24719063,5
+aiLily,24719063,5
+58942968,24719063,5
+7542909,24719063,3
+SUNSAD,24719063,3
+39568642,24719063,4
+71938369,24719063,4
+75043360,24719063,3
+hakovip,24719063,4
+64978016,24719063,4
+Lan.die,24719063,5
+coolbill,24719063,3
+youforever,24719063,3
+chloe_huang,24719063,4
+hexiaoqin,24719063,4
+49539687,24719063,4
+richer725,24719063,3
+92468807,24719063,3
+59229335,24719063,3
+34347136,24719063,5
+jeffchuwei,24719063,4
+imgsy,24719063,3
+sanzanglx,24719063,4
+AspireY,24719063,3
+MovieL,24719063,3
+3410802,24719063,4
+49272831,24719063,4
+65370065,24719063,4
+littlejuice,24719063,5
+vitamisa,24719063,4
+119025704,24719063,4
+2049622,24719063,1
+60223940,24719063,4
+qijiuzhiyue,24719063,4
+dreamersjcat,24719063,4
+tsoo416,24719063,3
+58596965,24719063,4
+3141648,24719063,3
+stuaid,24719063,5
+45345873,24719063,4
+Lulu-chips,24719063,3
+17672710,24719063,4
+sephilish,24719063,4
+youyoujean,24719063,4
+1723236,24719063,4
+68089671,24719063,4
+52732364,24719063,3
+kyth,24719063,4
+cyy9828,24719063,3
+88262083,24719063,4
+megansyr,24719063,-1
+shuixia1825,24719063,4
+choushabi,24719063,4
+51965431,24719063,5
+ydlxiaolong,24719063,4
+cyan_xi,24719063,5
+darlingtudai,24719063,4
+64780091,24719063,3
+puggy,24719063,4
+teng10g,24719063,5
+53392958,24719063,4
+115702913,24719063,5
+dashixiaoshi,24719063,3
+125362688,24719063,2
+mrbrightside,24719063,5
+longger,24719063,5
+Musaiki,24719063,-1
+43650897,24719063,3
+yscysc803,24719063,4
+liuningba,24719063,4
+40970313,24719063,4
+2783035,24719063,4
+34230958,24719063,2
+82689458,24719063,5
+96658819,24719063,5
+46439800,24719063,4
+63929108,24719063,4
+bananafishdodo,24719063,2
+34964485,24719063,4
+4804072,24719063,-1
+mrdriver,24719063,4
+60054131,24719063,5
+bxg555,24719063,-1
+3609679,24719063,4
+tripster,24719063,5
+F-X-MAN,24719063,4
+viktorhou,24719063,4
+3178442,24719063,4
+f_floria,24719063,4
+Aspirin129,24719063,5
+7409012,24719063,5
+21951726,24719063,4
+xueyugaoyuan,24719063,4
+79858645,24719063,3
+1668414,24719063,4
+55355100,24719063,2
+alwaysbestrong,24719063,4
+westender,24719063,5
+aids,25911595,2
+53662568,25911595,3
+bunnyzizi,25911595,3
+mohui,25911595,1
+4602733,25911595,2
+106730683,25911595,2
+61739872,25911595,4
+36757053,25911595,-1
+131496500,25911595,3
+goyankeesgo,25911595,2
+53853797,25911595,2
+57656024,25911595,1
+vince717,25911595,3
+67614484,25911595,2
+2353173,25911595,2
+92584891,25911595,3
+108481476,25911595,3
+37383155,25911595,5
+2623464,25911595,2
+112387290,25911595,2
+41943699,25911595,2
+9833904,25911595,2
+60317509,25911595,2
+ali000027,25911595,1
+guoxiaobei,25911595,2
+52282898,25911595,1
+duan114523,25911595,4
+zylovenic,25911595,3
+4879557,25911595,1
+44585968,25911595,4
+50227330,25911595,4
+76681041,25911595,2
+56280879,25911595,2
+uikeyzl,25911595,-1
+man_to_patient,25911595,1
+Shirleyjscy,25911595,3
+50073106,25911595,3
+35197924,25911595,3
+78454972,25911595,1
+jijigugumomo,25911595,3
+woshicaicai,25911595,3
+129344481,25911595,3
+renchenwei,25911595,3
+kamiyamaki,25911595,3
+131012186,25911595,3
+jinqianmei,25911595,2
+yes.it_is_you,25911595,2
+lixiangchao,25911595,2
+68276820,25911595,3
+ravinenoravine,25911595,2
+mouq,25911595,-1
+100503233,25911595,4
+41975874,25911595,3
+chengyiran,25911595,-1
+65055486,25911595,2
+67390877,25911595,4
+pangtuan,25911595,3
+1000545,25911595,1
+42533881,25911595,3
+4901199,25911595,2
+4901199,25911595,2
+52851525,25911595,3
+minishine,25911595,2
+83787429,25911595,4
+yoonjae_,25911595,2
+constancef,25911595,2
+89016961,25911595,3
+linglongwunv,25911595,3
+qiue-,25911595,2
+52192679,25911595,2
+anaijin,25911595,4
+49022002,25911595,2
+melonnpumpkin,25911595,4
+43046100,25911595,3
+40073195,25911595,1
+3210124,25911595,1
+51734671,25911595,1
+mimosa_tara,25911595,1
+SaSa.,25911595,2
+furada,25911595,4
+dingding1113,25911595,4
+65079232,25911595,3
+50515623,25911595,2
+34083797,25911595,3
+tantantu,25911595,2
+65105898,25911595,4
+45558691,25911595,3
+125408909,25911595,4
+tusling,25911595,1
+55764073,25911595,3
+121940753,25911595,2
+nousi,25911595,3
+53665936,25911595,3
+xl8690,25911595,2
+3855637,25911595,3
+51146070,25911595,2
+a326715,25911595,3
+sunsun0222,25911595,5
+51484443,25911595,2
+42965778,25911595,1
+1373290,25911595,2
+137786065,25911595,3
+14357343,25911595,3
+50307120,25911595,2
+55590894,25911595,3
+bigfacebigeye,25911595,1
+48486973,25911595,2
+Maybo-Chang,25911595,1
+59689129,25911595,2
+60987007,25911595,1
+4021496,25911595,1
+49522269,25911595,1
+137857287,25911595,3
+82216412,25911595,3
+moonsssong,25911595,-1
+10557307,25911595,1
+2597125,25911595,3
+136344918,25911595,2
+119399393,25911595,4
+46781917,25911595,-1
+lillianbehappy,25911595,3
+83229059,25911595,4
+36452184,25911595,1
+shero0305,25911595,2
+66063255,25911595,3
+90325710,25911595,2
+119683375,25911595,2
+2230280,25911595,4
+Jewelyxy,25911595,2
+42627091,25911595,3
+123634795,25911595,4
+62420861,25911595,3
+70794815,25911595,4
+44775342,25911595,2
+134063330,25911595,4
+53103122,25911595,1
+54266589,25911595,3
+57666555,25911595,2
+3539441,25911595,3
+4610430,25911595,2
+xiaoyao123,25911595,3
+aprilsunshine,25911595,3
+48759818,25911595,3
+2333505,25911595,2
+61937229,25911595,3
+2526179,25911595,-1
+69948545,25911595,3
+109800958,25911595,1
+58919499,25911595,3
+81589343,25911595,4
+122161339,25911595,3
+131545414,25911595,-1
+59163242,25911595,4
+92866359,25911595,3
+79748311,25911595,2
+44245225,25911595,3
+Fengyouyang,25911595,3
+54593455,25911595,4
+fanglingna,25911595,2
+137075359,25911595,4
+36664214,25911595,1
+68352338,25911595,4
+68399606,25911595,1
+Crystal_Fong,25911595,3
+48381234,25911595,1
+qq381525772,25911595,1
+baimaheizong,25911595,2
+3679450,25911595,1
+60171756,25911595,3
+2818730,25911595,5
+veranannan,25911595,3
+90201276,25911595,3
+qiongdong,25911595,1
+62635960,25911595,2
+72397969,25911595,4
+137839195,25911595,2
+Before37,25911595,1
+olive025,25911595,3
+xd880820,25911595,2
+51938076,25911595,1
+1177906,25911595,-1
+66676801,25911595,3
+gkwang,25911595,2
+53074596,25911595,3
+75814366,25911595,1
+71458303,25911595,-1
+nora1sme,25911595,2
+3814651,25911595,3
+asvra,25911595,4
+131603099,25911595,2
+3623955,25911595,2
+lena0120,25911595,1
+3582364,25911595,3
+magiclj99,25911595,2
+97112144,25911595,3
+65431427,25911595,2
+4196011,25911595,2
+76724486,25911595,2
+44585668,25911595,4
+57460299,25911595,3
+80235268,25911595,2
+80715123,25911595,3
+37065743,25911595,4
+69726519,25911595,1
+126014541,25911595,2
+TMMelody,25911595,2
+yihou415,25911595,2
+arlotte,25911595,3
+Hey_825,25911595,3
+2298495,25911595,2
+wyshining,25911595,1
+55887105,25911595,3
+carolcai,25911595,2
+125741123,25911595,4
+88247921,25911595,2
+1623721,25911595,2
+Ancyr,25911595,3
+43362064,25911595,3
+3666746,25911595,3
+romans,25911595,3
+25259616,25911595,5
+39360207,25911595,2
+49345167,25911595,3
+9881266,25911595,2
+129829181,25911595,3
+oyxp,25911595,5
+1530155,25911595,2
+73766908,25911595,2
+65339931,25911595,3
+zhrmghgwswswws,25911595,3
+78895910,25911595,2
+fooog,25911595,3
+80209748,25911595,2
+65339878,25911595,1
+38924002,25911595,4
+goose721,25911595,1
+foamwhisper,25911595,3
+126746574,25911595,4
+zuozuoqing,25911595,3
+serenazhao,25911595,1
+48088093,25911595,3
+120681454,25911595,2
+137628862,25911595,2
+91851250,25911595,1
+61823399,25911595,3
+3189855,25911595,1
+56435930,25911595,2
+51275778,25911595,2
+songtomu,25911595,3
+xuxumeng,25911595,1
+ttfion,25911595,2
+57991554,25911595,3
+41511009,25911595,2
+chenxiaotu90,25911595,3
+41842523,25911595,1
+63196620,25911595,2
+46880306,25911595,4
+watermelondeer,25911595,3
+55591249,25911595,2
+mimimamahong_,25911595,3
+40360094,25911595,3
+26681915,25911595,1
+50473170,25911595,3
+beelover,25911595,3
+42394968,25911595,3
+up117,25911595,3
+135545321,25911595,5
+135138287,25911595,3
+137206904,25911595,2
+nanxisunny0514,25911595,4
+playgame,25911595,3
+jessicalvtingti,25911595,3
+50570881,25911595,2
+janie225,25911595,2
+83668746,25911595,4
+59680110,25911595,3
+52918200,25911595,2
+56330466,25911595,3
+ucyuicy,25911595,4
+4457568,25911595,4
+46138752,25911595,2
+68699814,25911595,3
+sansu_fighting,25911595,2
+59079436,25911595,2
+LINGMENG,25911595,1
+97111841,25911595,3
+tan55,25911595,2
+89747225,25911595,3
+53487447,25911595,3
+renren0223,25911595,1
+Leslie_ontheway,25911595,1
+131208902,25911595,3
+55354703,25911595,3
+4319648,25911595,3
+27060036,25911595,5
+3819309,25911595,2
+68844608,25911595,4
+114328506,25911595,3
+46370805,25911595,4
+73142599,25911595,3
+73142599,25911595,3
+aiwengfan,25911595,2
+3613357,25911595,3
+66966914,25911595,2
+2078067,25911595,4
+suntina,25911595,3
+62157854,25911595,3
+56164426,25911595,2
+54298056,25911595,4
+yzzlovezj,25911595,2
+71938024,25911595,2
+verstand,25911595,3
+adamhu,25911595,3
+43111228,25911595,3
+kangecho,25911595,2
+61263965,25911595,2
+mengqishuo,25911595,3
+108816754,25911595,3
+63868010,25911595,3
+46057903,25911595,2
+135690272,25911595,1
+summer712,25911595,5
+2522310,25911595,1
+Sugar23,25911595,1
+82211263,25911595,4
+134497633,25911595,3
+MoEcyan,25911595,3
+JamesPound,25911595,1
+ClaudiaS571,25911595,1
+2423369,25911595,1
+103026141,25911595,1
+1319405,25911595,1
+133116270,25911595,2
+i7COLORS,25911595,5
+lixiaguniang,25911595,3
+57853531,25911595,4
+84171688,25911595,2
+67646824,25911595,4
+54285836,25911595,2
+summer0706,25911595,1
+61100170,25911595,3
+some1one,25911595,2
+64273735,25911595,1
+tomatosweet,25911595,3
+56928605,25911595,2
+podolski,25911595,3
+2208651,25911595,2
+68550514,25911595,2
+sherowe,25911595,2
+4153870,25911595,3
+63866031,25911595,4
+49177191,25911595,2
+100639145,25911595,2
+121562470,25911595,3
+6842341,25911595,3
+1943610,25911595,3
+sakura0130,25911595,3
+134364252,25911595,3
+43271150,25911595,2
+130435949,25911595,2
+130435949,25911595,2
+110551098,25911595,1
+59168988,25911595,1
+Pinnsvin,25911595,1
+iamxy2,25911595,1
+snowman-clover,25911595,2
+73156547,25911595,1
+4344799,25911595,2
+108728687,25911595,2
+134905591,25911595,3
+12402088,25911595,3
+127855614,25911595,4
+yubin8725,25911595,3
+54648454,25911595,1
+piecelost,25911595,2
+warmhouse,25911595,2
+81593108,25911595,2
+freekami,25911595,1
+74520364,25911595,2
+martindar,25911595,3
+martindar,25911595,3
+53391246,25911595,2
+1369670,25911595,3
+130531885,25911595,3
+47971196,25911595,1
+1153912,25911595,2
+kouxu,25911595,1
+47291101,25911595,2
+icemonique,25911595,2
+99598599,25911595,2
+4652776,25911595,2
+58421953,25911595,3
+daydream466,25911595,3
+129616612,25911595,1
+eyes1991,25911595,3
+49059976,25911595,3
+nyandjm,25911595,1
+54430945,25911595,3
+cyanjin,25911595,3
+46943216,25911595,3
+3489632,25911595,2
+66011188,25911595,2
+134498967,25911595,3
+52269289,25911595,1
+61052669,25911595,2
+48121857,25911595,3
+55626253,25911595,4
+liang8912374,25911595,3
+hewenzicandy,25911595,2
+4412176,25911595,2
+anyongyayi,25911595,3
+83746589,25911595,2
+62846190,25911595,2
+22364570,25911595,3
+50715776,25911595,-1
+70729809,25911595,4
+34634914,25911595,5
+131503183,25911595,2
+59620190,25911595,1
+wing1115,25911595,2
+43590001,25911595,2
+chelemege,25911595,2
+46421493,25911595,3
+4581815,25911595,3
+38966245,25911595,2
+pangjiansheng,25911595,5
+13165561,25911595,3
+GEMHU,25911595,3
+137117825,25911595,-1
+Yhy_Garfield,25911595,5
+54390796,25911595,1
+36013177,25911595,1
+49188095,25911595,3
+123036643,25911595,3
+4342827,25911595,1
+57963120,25911595,3
+57526570,25911595,2
+Sylary,25911595,2
+NinaAobi,25911595,4
+54658280,25911595,3
+loveajiang,25911595,4
+127338835,25911595,2
+51619000,25911595,2
+131136009,25911595,3
+43187744,25911595,4
+47672733,25911595,2
+omnia,25911595,4
+120835046,25911595,4
+133241079,25911595,3
+4692514,25911595,3
+kingpeace,25911595,2
+cold_sophie,25911595,2
+wood0913,25911595,3
+58624199,25911595,4
+austinzk,25911595,2
+80725015,25911595,2
+yiliangsan,25911595,3
+2242668,25911595,3
+58776311,25911595,3
+120421429,25911595,3
+131001035,25911595,3
+99340754,25911595,-1
+ymeiang,25911595,4
+98954264,25911595,3
+42657229,25911595,2
+119298568,25911595,1
+57032310,25911595,4
+48950150,25911595,3
+4107805,25911595,1
+xiongmaoxiaoj,25911595,3
+44449851,25911595,3
+51853962,25911595,3
+67647799,25911595,-1
+GraceChow,25911595,2
+ljh007,25911595,2
+58338006,25911595,2
+128083770,25911595,3
+somegg,25911595,2
+yinzaixi,25911595,2
+120911789,25911595,-1
+120911789,25911595,-1
+69976018,25911595,2
+47597290,25911595,3
+xianzz,25911595,2
+135753418,25911595,3
+125583755,25911595,5
+sandy0205,25911595,3
+natapeng,25911595,1
+47236193,25911595,3
+46170417,25911595,2
+124136652,25911595,2
+137794763,25911595,2
+121967825,25911595,2
+movieview,25911595,3
+132023053,25911595,2
+127115764,25911595,2
+syh622,25911595,3
+ilovejay79118,25911595,2
+134546006,25911595,3
+137773637,25911595,2
+27714747,25911595,2
+64382868,25911595,3
+55997882,25911595,2
+sunrisesmile,25911595,1
+baoqiddpp,25911595,3
+yaoyiying,25911595,2
+77869321,25911595,1
+43329267,25911595,-1
+jennyseath,25911595,2
+130944929,25911595,3
+cassiecici,25911595,5
+7123147,25911595,3
+132348134,25911595,3
+80305341,25911595,1
+64359343,25911595,5
+nbyidao,25911595,2
+18965054,25911595,3
+1757021,25911595,-1
+135175472,25911595,4
+135947164,25911595,1
+54086560,25911595,3
+109488189,25911595,2
+xinyuai,25911595,2
+43719217,25911595,3
+53603990,25911595,5
+102459602,25911595,3
+57785589,25911595,2
+122740043,25911595,3
+76297198,25911595,4
+crystal1681,25911595,2
+LieblingCL,25911595,2
+shizhe0314,25911595,1
+wind-clover,25911595,-1
+52754378,25911595,1
+59305765,25911595,3
+Dis-,25911595,3
+jashia,25911595,5
+51679757,25911595,4
+108400738,25911595,2
+135101148,25911595,3
+131343395,25911595,3
+52967264,25911595,3
+47889564,25911595,3
+waisel,25911595,3
+134534654,25911595,4
+56349029,25911595,3
+crabt,25911595,4
+50299714,25911595,1
+ritasun,25911595,4
+95980532,25911595,2
+26740977,25911595,3
+yamapibaby,25911595,3
+stephaniecharli,25911595,2
+61619787,25911595,1
+4038977,25911595,2
+103580957,25911595,3
+70656928,25911595,2
+zoeyyu89,25911595,3
+GllGgg,25911595,3
+78719140,25911595,-1
+Wenqian,25911595,1
+41721729,25911595,1
+56022280,25911595,5
+133350413,25911595,2
+3177064,25911595,1
+2980085,25911595,2
+57750976,25911595,2
+39707879,25911595,1
+58168997,25911595,-1
+49789259,25911595,1
+58954301,25911595,3
+zyszys1991,25911595,1
+99372325,25911595,1
+117277835,25911595,1
+soya43464983,25911595,2
+Ali1065641315,25911595,3
+76860234,25911595,3
+21331289,25911595,3
+zhizi99,25911595,3
+46289677,25911595,-1
+46289677,25911595,-1
+115263014,25911595,4
+sophieloin,25911595,1
+69213469,25911595,2
+lvshoufuy,25911595,-1
+xia_mo_1996,25911595,2
+48856219,25911595,3
+69685647,25911595,2
+58911905,25911595,2
+61315672,25911595,2
+60620572,25911595,2
+1309486,25911595,3
+43329275,25911595,-1
+30153657,25911595,3
+Pridsl,25911595,3
+48311981,25911595,2
+51496046,25911595,5
+81593591,25911595,2
+49927030,25911595,2
+baywreath,25911595,1
+1882204,25911595,1
+Iris8301,25911595,3
+87895691,25911595,2
+121386623,25911595,3
+lovemimidog,25911595,3
+1615964,25911595,1
+68887346,25911595,2
+sophie.sue,25911595,3
+103508815,25911595,2
+4586959,25911595,2
+61541011,25911595,3
+jennylee0402,25911595,-1
+68174370,25911595,3
+91809497,25911595,2
+41959776,25911595,3
+72133543,25911595,2
+136160682,25911595,2
+118277522,25911595,4
+elinli00,25911595,3
+ivylmj,25911595,2
+125040121,25911595,2
+45220439,25911595,1
+50945725,25911595,2
+SophieVV1130,25911595,3
+tinyyuan,25911595,5
+takataka,25911595,2
+gaoxiaopang,25911595,3
+55593785,25911595,4
+78695027,25911595,1
+53815311,25911595,-1
+hellolss,25911595,4
+60717417,25911595,2
+eseries,25911595,1
+42375246,25911595,3
+particle_uv,25911595,3
+lanzhan,25911595,-1
+gaojie0114,25911595,2
+99215494,25911595,4
+62169194,25911595,5
+110392919,25911595,3
+4364181,25911595,4
+nanadong,25911595,2
+52705405,25911595,2
+cat_rs,25911595,2
+47005130,25911595,2
+51862860,25911595,3
+gnituw1986,25911595,3
+4573696,25911595,2
+deardeer92,25911595,2
+MelanieNg,25911595,3
+49054831,25911595,3
+58772458,25911595,5
+73427598,25911595,3
+52246319,25911595,2
+103197916,25911595,4
+60981917,25911595,3
+angle-cc,25911595,4
+qino,25911595,2
+127386249,25911595,3
+39542881,25911595,2
+77484204,25911595,2
+58693996,25911595,2
+42170299,25911595,3
+3599139,25911595,3
+52488917,25911595,3
+biyi,25911595,2
+49721724,25911595,3
+Lotuscutey,25911595,3
+1530465,25911595,4
+wanwibeatles,25911595,3
+68761197,25911595,3
+79132036,25911595,3
+46169869,25911595,3
+rainbow_yao,25911595,3
+agony_wxc,25911595,3
+46165667,25911595,-1
+66574557,25911595,2
+126564641,25911595,5
+37738041,25911595,4
+47825422,25911595,3
+103182067,25911595,3
+127292415,25911595,2
+70094249,25911595,2
+wxcQluotuo,25911595,2
+71907333,25911595,3
+bmxq3739,25911595,1
+30509502,25911595,2
+133426271,25911595,3
+a-Joel,25911595,2
+53877349,25911595,3
+zazahuang,25911595,2
+EvenXiao,25911595,4
+61525287,25911595,2
+50957089,25911595,3
+43554949,25911595,3
+71627900,25911595,3
+jiayu0923,25911595,2
+xywda,25911595,3
+115329516,25911595,2
+53303018,25911595,3
+104399747,25911595,2
+T1994116,25911595,2
+little-J,25911595,4
+96226391,25911595,3
+azurepeach,25911595,3
+57079509,25911595,2
+103142381,25911595,4
+132155135,25911595,3
+43667614,25911595,3
+93613617,25911595,2
+9694640,25911595,2
+53276543,25911595,5
+61612027,25911595,2
+92366366,25911595,1
+cwill,25911595,3
+mingyueguang,25911595,3
+jessiezhaixi,25911595,3
+134464320,25911595,3
+50814168,25911595,5
+geyao1994,25911595,4
+66358226,25911595,1
+48983448,25911595,4
+ihanhan,25911595,3
+hearta,25911595,3
+137542712,25911595,2
+84247711,25911595,3
+62895935,25911595,3
+1651257,25911595,5
+June_1,25911595,3
+66706748,25911595,4
+65100690,25911595,5
+crazygrave,25911595,1
+69811337,25911595,3
+52420121,25911595,3
+127771292,25911595,1
+30965208,25911595,3
+kane-chen,25911595,1
+44463308,25911595,2
+135996237,25911595,1
+47619462,25911595,3
+83782943,25911595,3
+43923829,25911595,1
+53045068,25911595,3
+76180894,25911595,3
+62188609,25911595,5
+24910421,25911595,3
+louis_li,25911595,1
+2776951,25911595,1
+73692572,25911595,2
+minormylove,25911595,3
+camia,25911595,4
+yakomoz,25911595,3
+28414217,25911595,-1
+96728684,25911595,3
+ShawnChou,25911595,3
+cloudy1112,25911595,1
+131616351,25911595,2
+77151655,25911595,2
+vinnywang,25911595,3
+suppersally,25911595,5
+Xuansee,25911595,2
+1049919,25911595,3
+zxyang,25911595,3
+29592555,25911595,1
+52522813,25911595,2
+124869246,25911595,2
+70464788,25911595,3
+60119270,25911595,3
+76120058,25911595,3
+117730257,25911595,2
+50416947,25911595,2
+2245968,25911595,2
+mrcandy,25911595,3
+43857375,25911595,3
+guibao520,25911595,1
+cappuccino5026,25911595,1
+52033116,25911595,1
+69916623,25911595,5
+133020185,25911595,3
+xunyuxin,25911595,3
+zifa,25911595,3
+37460852,25911595,2
+69503565,25911595,3
+45231026,25911595,3
+53470202,25911595,3
+Bingbing.,25911595,2
+ciell,25911595,3
+Shirleywjz,25911595,3
+63903096,25911595,1
+70983649,25911595,2
+67652760,25911595,3
+48834090,25911595,1
+43133361,25911595,3
+47524056,25911595,1
+130337393,25911595,2
+TomboyJoe,25911595,2
+52903037,25911595,4
+58725600,25911595,3
+79029720,25911595,3
+57060761,25911595,2
+32452092,25911595,3
+hyacinthlove101,25911595,3
+ljclaire,25911595,2
+rockymei,25911595,3
+59778828,25911595,1
+53161271,25911595,4
+51095448,25911595,-1
+fawaixiaoyao,25911595,1
+3339752,25911595,1
+76106839,25911595,3
+77449073,25911595,3
+59665595,25911595,2
+miaosi51,25911595,3
+132257844,25911595,3
+59307428,25911595,3
+pinkpt,25911595,3
+107899706,25911595,2
+53173837,25911595,4
+132499191,25911595,2
+61602134,25911595,2
+134383270,25911595,3
+xiaoqingge,25911595,4
+79195615,25911595,3
+60420315,25911595,1
+50637101,25911595,2
+1838937,25911595,2
+34949120,25911595,2
+yan_fang,25911595,3
+68029503,25911595,3
+pearlsummer,25911595,4
+137158769,25911595,3
+66227991,25911595,2
+57908141,25911595,4
+lubinfan,25911595,3
+jervis1012,25911595,4
+wlx_7,25911595,3
+huachai1021,25911595,5
+58082536,25911595,2
+131002718,25911595,3
+smilycalla,25911595,2
+chapu,25911595,1
+aaaai,25911595,3
+4107737,25911595,-1
+134531645,25911595,2
+51329457,25911595,3
+79201619,25911595,-1
+137307613,25911595,4
+4420483,25911595,1
+68551392,25911595,3
+43714574,25911595,2
+84241670,25911595,3
+60925481,25911595,4
+127961501,25911595,2
+65854158,25911595,3
+51235598,25911595,3
+songxiaoci,25911595,2
+czx0928,25911595,2
+53212620,25911595,1
+83475018,25911595,3
+91524755,25911595,3
+48623920,25911595,4
+50587917,25911595,2
+136893612,25911595,4
+61721421,25911595,3
+48990593,25911595,4
+58133135,25911595,1
+fanshuren,25911595,2
+immt,25911595,1
+44608963,25911595,3
+36621116,25911595,2
+Yukimini,25911595,4
+poppy7777,25911595,4
+60248583,25911595,5
+48324038,25911595,3
+69679017,25911595,2
+134258996,25911595,3
+48866539,25911595,1
+137533647,25911595,3
+11839371,25911595,3
+12794807,25911595,3
+2187326,25911595,3
+Seven22,25911595,-1
+129278599,25911595,1
+74044673,25911595,1
+44129318,25911595,5
+137327121,25911595,4
+70690321,25911595,3
+43299277,25911595,2
+gjy.patricia,25911595,3
+128277585,25911595,2
+87642363,25911595,3
+136155203,25911595,3
+V-anilla,25911595,3
+122907867,25911595,3
+68951432,25911595,1
+73537382,25911595,1
+73075857,25911595,2
+88660010,25911595,3
+1822584,25911595,1
+41540943,25911595,3
+cocozmk,25911595,5
+ergeo,25911595,1
+127363660,25911595,2
+83127130,25911595,3
+kuizihai,25911595,2
+69763950,25911595,1
+132603645,25911595,2
+44335994,25911595,3
+135147851,25911595,1
+35535287,25911595,3
+psychocandy,25911595,5
+126007802,25911595,2
+xiao33319,25911595,2
+yml1106,25911595,3
+53615881,25911595,1
+57377370,25911595,3
+tyfevan,25911595,3
+50003255,25911595,1
+3549577,25911595,2
+53319111,25911595,2
+127933526,25911595,3
+87599429,25911595,1
+deartintin,25911595,1
+75493093,25911595,1
+snowandsummers,25911595,3
+134875231,25911595,3
+40140527,25911595,1
+115523476,25911595,5
+noeee_j,25911595,3
+96944180,25911595,5
+97010885,25911595,3
+polkadots,25911595,5
+64976213,25911595,4
+linda740,25911595,2
+137490421,25911595,2
+49473461,25911595,4
+135099240,25911595,2
+121028955,25911595,3
+45820206,25911595,2
+119262714,25911595,3
+46543549,25911595,-1
+leeshiuan,25911595,3
+yuxiaodi1988,25911595,3
+84212963,25911595,-1
+4241142,25911595,-1
+108179775,25911595,3
+erica953,25911595,2
+133470552,25911595,4
+71571809,25911595,3
+134682343,25911595,3
+78062790,25911595,3
+4025183,25911595,2
+4819599,25911595,4
+xianguang,25911595,3
+47724700,25911595,-1
+87673742,25911595,3
+51006124,25911595,3
+9167697,25911595,-1
+54359368,25911595,1
+corachain,25911595,4
+2647676,25911595,2
+48855413,25911595,2
+67154885,25911595,3
+51737352,25911595,3
+4538460,25911595,2
+98956225,25911595,4
+46719875,25911595,3
+48842845,25911595,3
+60906528,25911595,2
+41471411,25911595,2
+67306781,25911595,1
+61464429,25911595,3
+130557749,25911595,2
+53734471,25911595,2
+wsz910919,25911595,2
+Avila_Yin,25911595,2
+134292834,25911595,2
+88312024,25911595,2
+65558728,25911595,1
+neveragain,25911595,2
+136344222,25911595,2
+55622517,25911595,1
+carrielovelife,25911595,3
+zyr920924,25911595,4
+77430587,25911595,2
+jiushitime,25911595,1
+58301131,25911595,1
+128142424,25911595,5
+120876106,25911595,2
+83837319,25911595,2
+124517309,25911595,2
+45431182,25911595,4
+66029889,25911595,1
+76551061,25911595,2
+33553111,25911595,5
+67374225,25911595,4
+venusmaner,25911595,3
+121243676,25911595,3
+metaboo,25911595,3
+137445979,25911595,-1
+50638011,25911595,1
+44374753,25911595,3
+qinqi5277,25911595,4
+ceciliarazee,25911595,2
+39787501,25911595,2
+45382410,25911595,3
+68239286,25911595,4
+43846305,25911595,1
+65095857,25911595,2
+wangrujing,25911595,2
+135575731,25911595,1
+135926327,25911595,5
+59504522,25911595,3
+melodyshi,25911595,3
+56017220,25911595,1
+82194955,25911595,3
+53916327,25911595,3
+summer2lin,25911595,1
+Emily723,25911595,3
+130132099,25911595,3
+137274542,25911595,1
+83685674,25911595,1
+white729,25911595,3
+Jurisprudentia,25911595,2
+rabeix,25911595,-1
+tjyan,25911595,2
+47684731,25911595,3
+52499368,25911595,2
+linyunshu,25911595,2
+102413399,25911595,2
+zangtianfly,25911595,2
+36613497,25911595,3
+82264890,25911595,2
+65588690,25911595,3
+62568620,25911595,2
+butina,25911595,2
+63760706,25911595,1
+32359738,25911595,3
+MayaDey,25911595,-1
+missufinally,25911595,2
+77838541,25911595,2
+76025225,25911595,2
+71100061,25911595,1
+27527393,25911595,5
+zxlannette,25911595,2
+cheerwhisky,25911595,2
+55351150,25911595,4
+amandaccforever,25911595,5
+fruitsoul,25911595,4
+58145479,25911595,-1
+52203973,25911595,2
+39168659,25911595,2
+44875082,25911595,-1
+131187465,25911595,3
+ruru260,25911595,2
+vivianclytze,25911595,2
+yxmj1982,25911595,2
+vermouthsama,25911595,2
+2376689,25911595,-1
+134632462,25911595,-1
+56349224,25911595,2
+47971865,25911595,3
+mengmengh,25911595,2
+imCheryl,25911595,1
+53025559,25911595,3
+3202509,25911595,4
+3562848,25911595,3
+55437969,25911595,3
+vivienvb,25911595,1
+50451911,25911595,1
+101355799,25911595,3
+45193018,25911595,2
+yuni192,25911595,2
+127082757,25911595,3
+124887489,25911595,2
+53454251,25911595,2
+17791320,25911595,3
+51774232,25911595,3
+122858781,25911595,2
+108210723,25911595,3
+49852947,25911595,2
+115051698,25911595,3
+53091923,25911595,2
+kinghoi,25911595,3
+52470011,25911595,2
+57292678,25911595,2
+4531040,25911595,3
+34862856,25911595,2
+lh12123,25911595,3
+77592151,25911595,3
+carmael,25911595,3
+90609867,25911595,3
+Johnny1997,25911595,4
+55867399,25911595,3
+mary.mary,25911595,2
+109347674,25911595,2
+48259477,25911595,2
+67943333,25911595,3
+cxyecho,25911595,3
+59910316,25911595,5
+49402699,25911595,3
+46973130,25911595,2
+2300521,25911595,3
+1545133,25911595,3
+51469631,25911595,1
+43748947,25911595,4
+132002137,25911595,3
+121633982,25911595,3
+penguin_re,25911595,2
+66575578,25911595,3
+misscoke,25911595,-1
+moszz,25911595,3
+67874142,25911595,2
+2219533,25911595,2
+clareleung,25911595,2
+52630185,25911595,3
+50970819,25911595,-1
+137273110,25911595,4
+13937394,25911595,3
+keytoworld,25911595,3
+121346117,25911595,3
+chelseyzuo,25911595,2
+2738066,25911595,3
+3310337,25911595,2
+50118085,25911595,3
+57392362,25911595,2
+90681003,25911595,3
+59979647,25911595,2
+linayan,25911595,2
+94207654,25911595,2
+andserendipity,25911595,3
+clarify,25911595,1
+canon125,25911595,-1
+zongjunxiao,25911595,3
+ljojingle,25911595,2
+3646602,25911595,3
+chilldream,25911595,1
+61021408,25911595,4
+cheerstef,25911595,1
+2771262,25911595,3
+Raining421,25911595,2
+notexistatall,25911595,1
+131034480,25911595,2
+52597930,25911595,3
+65242715,25911595,4
+127120252,25911595,2
+O729bone,25911595,5
+63672355,25911595,1
+104701659,25911595,4
+35306449,25911595,1
+67856848,25911595,-1
+miya411,25911595,2
+41844551,25911595,3
+65722669,25911595,3
+126071846,25911595,3
+1369129,25911595,3
+1831746,25911595,3
+52481316,25911595,3
+136300332,25911595,5
+103603807,25911595,4
+130681703,25911595,2
+4333992,25911595,2
+yue17years,25911595,4
+Sonntag,25911595,2
+134476507,25911595,1
+42926256,25911595,2
+29584481,25911595,3
+3935498,25911595,2
+47464056,25911595,3
+pscherry,25911595,2
+42325301,25911595,5
+brookett,25911595,3
+Sweet.MixYao,25911595,4
+64506068,25911595,2
+101864611,25911595,3
+princesssyn,25911595,2
+83116719,25911595,3
+2743603,25911595,2
+37573301,25911595,4
+6754857,25911595,3
+ailuwan,25911595,1
+81152446,25911595,2
+84137263,25911595,4
+doravilla,25911595,1
+2848616,25911595,4
+1448740,25911595,-1
+68549464,25911595,3
+walkingtime,25911595,3
+136095129,25911595,1
+53970635,25911595,3
+60983088,25911595,1
+50764499,25911595,3
+54055888,25911595,-1
+53869706,25911595,-1
+cokering,25911595,5
+46171104,25911595,4
+yaoxingjia,25911595,3
+sunnystone,25911595,1
+52349741,25911595,-1
+heywendi,25911595,-1
+marsking,25911595,2
+129472402,25911595,3
+52235575,25911595,3
+75366336,25911595,2
+55392677,25911595,1
+eddychaw,25911595,1
+133218242,25911595,2
+66937674,25911595,2
+56194866,25911595,1
+125730280,25911595,3
+62222208,25911595,3
+susie1991,25911595,3
+51416551,25911595,3
+91609218,25911595,4
+2825367,25911595,2
+65025231,25911595,1
+53908926,25911595,2
+54162188,25911595,5
+41900684,25911595,3
+55769530,25911595,3
+37322815,25911595,3
+47169010,25911595,4
+61041885,25911595,3
+70453072,25911595,1
+57949707,25911595,5
+i5567,25911595,3
+lucarolinelu,25911595,2
+51301914,25911595,1
+130309969,25911595,3
+aaamyyy,25911595,4
+119991897,25911595,3
+3165431,25911595,2
+novemberrose,25911595,4
+51152524,25911595,1
+foxgarden,25911595,3
+128158516,25911595,5
+91545129,25911595,1
+63229486,25911595,3
+60819858,25911595,3
+4279038,25911595,2
+122855833,25911595,2
+52974278,25911595,2
+137256465,25911595,3
+sunnycs,25911595,2
+38603350,25911595,4
+1801545,25911595,-1
+47047627,25911595,3
+79834547,25911595,2
+82907870,25911595,3
+47725909,25911595,5
+136727796,25911595,3
+3051460,25911595,5
+49000460,25911595,4
+48017863,25911595,5
+59643892,25911595,3
+78277110,25911595,4
+tikrothia,25911595,2
+124779733,25911595,3
+130960542,25911595,3
+61697290,25911595,2
+74346176,25911595,4
+Grace_Xuliang,25911595,2
+52305498,25911595,2
+48079918,25911595,2
+78473890,25911595,-1
+48462419,25911595,4
+68367782,25911595,3
+43061716,25911595,1
+53166427,25911595,5
+121441966,25911595,3
+102259472,25911595,2
+123029780,25911595,3
+65830621,25911595,4
+114144115,25911595,1
+127606527,25911595,2
+tonitoni,25911595,2
+34417366,25911595,2
+67875068,25911595,2
+133658801,25911595,2
+gloria_sxt,25911595,2
+130680494,25911595,3
+3538572,25911595,2
+115590633,25911595,2
+30569646,25911595,4
+58309406,25911595,2
+90492015,25911595,5
+16670816,25911595,3
+cantare,25911595,2
+aiwangyue,25911595,2
+137306520,25911595,1
+72782260,25911595,1
+jodiexie,25911595,2
+twohappy,25911595,2
+kajio,25911595,-1
+62582404,25911595,3
+75048470,25911595,2
+46243415,25911595,2
+unaunaquantro,25911595,3
+48711534,25911595,2
+57598630,25911595,4
+twoest,25911595,5
+julycythia,25911595,4
+72996822,25911595,2
+tingtingbear,25911595,1
+70466601,25911595,3
+33693061,25911595,2
+128569083,25911595,3
+genger85,25911595,3
+gloria1102,25911595,2
+72364535,25911595,2
+89108423,25911595,1
+60806669,25911595,3
+77222475,25911595,1
+nian1994,25911595,2
+136801905,25911595,3
+sophie_Han,25911595,3
+94032593,25911595,1
+Cynthiajjz,25911595,2
+34740140,25911595,-1
+134203222,25911595,3
+74485813,25911595,2
+65488479,25911595,3
+imhechang,25911595,2
+130449076,25911595,3
+126853775,25911595,2
+102153568,25911595,3
+1574237,25911595,3
+coookiecan,25911595,3
+62864634,25911595,2
+beautifulsmile,25911595,4
+21289569,25911595,5
+79846802,25911595,-1
+36537385,25911595,1
+56800653,25911595,2
+3436053,25911595,1
+foreveraegeanse,25911595,2
+13871057,25911595,2
+Mxmshamrock,25911595,3
+wizbp,25911595,2
+81998298,25911595,2
+crazyiszero,25911595,4
+105853894,25911595,-1
+67148889,25911595,3
+4775119,25911595,2
+137225547,25911595,4
+justyiye,25911595,3
+aprilliusiyue,25911595,2
+74139731,25911595,-1
+43888841,25911595,5
+4531236,25911595,3
+88339837,25911595,3
+97189453,25911595,3
+graciealwaysbe,25911595,3
+47717774,25911595,5
+creepecho,25911595,1
+65257168,25911595,1
+1375311,25911595,4
+44622528,25911595,-1
+gogom,25911595,1
+115593440,25911595,3
+79359506,25911595,3
+55832458,25911595,4
+81958013,25911595,2
+125655628,25911595,4
+55635987,25911595,2
+91005322,25911595,2
+frnong,25911595,3
+70277575,25911595,1
+1091900,25911595,1
+42141886,25911595,3
+62489520,25911595,3
+48096896,25911595,3
+62439252,25911595,3
+yanzi_db,25911595,-1
+wuxiaohua,25911595,2
+hexiyan,25911595,3
+50394173,25911595,3
+85168864,25911595,2
+57880330,25911595,1
+54270482,25911595,5
+chenxiaoke,25911595,2
+Sophieless,25911595,3
+29988044,25911595,2
+yulebecky,25911595,2
+summerx,25911595,3
+muyuexueying,25911595,2
+3672180,25911595,3
+33179901,25911595,1
+4582318,25911595,2
+gift87,25911595,5
+kikijie,25911595,2
+vinciwang,25911595,3
+48344541,25911595,4
+lazydesigner,25911595,1
+46070924,25911595,3
+joanna_L,25911595,2
+49087284,25911595,4
+rota1993,25911595,3
+33263448,25911595,2
+46234987,25911595,3
+46234987,25911595,3
+69423388,25911595,4
+cynthiazhang_,25911595,4
+manni,25911595,1
+zllwnc,25911595,3
+70474463,25911595,4
+88178355,25911595,1
+38866851,25911595,4
+yansihan,25911595,3
+alicewithoutyou,25911595,3
+janejanegulu,25911595,2
+IAmSoVain,25911595,1
+72676797,25911595,5
+60484236,25911595,1
+73294999,25911595,3
+60609410,25911595,2
+Sqiku,25911595,1
+4544241,25911595,3
+20194870,25911595,1
+36617894,25911595,3
+46342568,25911595,1
+hajimeyoung,25911595,1
+68878530,25911595,3
+59596646,25911595,3
+121925320,25911595,3
+119232591,25911595,3
+127613691,25911595,2
+22596190,25911595,3
+63949906,25911595,1
+49826646,25911595,2
+44820765,25911595,1
+8242631,25911595,4
+4912927,25911595,5
+137235653,25911595,3
+134535776,25911595,3
+leeyone,25911595,1
+132388146,25911595,1
+66495557,25911595,4
+eliana0125,25911595,-1
+samixuan.,25911595,1
+47617392,25911595,3
+123008683,25911595,1
+cozumakemesmile,25911595,4
+136849738,25911595,1
+62323478,25911595,3
+lovelylively,25911595,3
+79919337,25911595,2
+64326137,25911595,3
+lanyuanxizhou,25911595,3
+48261192,25911595,3
+53476410,25911595,3
+127062843,25911595,3
+52273545,25911595,2
+2709569,25911595,4
+39748542,25911595,2
+11080929,25911595,2
+37001447,25911595,3
+yuxiaomiaomiao,25911595,2
+joyjay,25911595,2
+60802919,25911595,3
+70996341,25911595,3
+crystal19910312,25911595,3
+2161651,25911595,2
+107481201,25911595,1
+63812165,25911595,4
+101033924,25911595,3
+82760677,25911595,2
+123274551,25911595,5
+42835041,25911595,2
+130589573,25911595,3
+xiaoshuiliuqiao,25911595,2
+102951329,25911595,4
+2258556,25911595,1
+66101131,25911595,2
+127870795,25911595,2
+wen8421,25911595,3
+1636065,25911595,3
+zxxvicky,25911595,3
+hanachloe,25911595,2
+killeren,25911595,3
+47471540,25911595,4
+85296243,25911595,2
+grace-since1997,25911595,3
+70487695,25911595,2
+76139174,25911595,4
+57335774,25911595,1
+3065454,25911595,3
+3479179,25911595,2
+62117653,25911595,2
+61721303,25911595,3
+xianxiansushou,25911595,1
+132773025,25911595,3
+gjy1123,25911595,2
+102854854,25911595,1
+47057726,25911595,4
+yan599083337,25911595,3
+58707237,25911595,3
+38638979,25911595,2
+44823994,25911595,1
+sldhqs,25911595,1
+summerisabel,25911595,2
+51009316,25911595,2
+57837125,25911595,1
+3492066,25911595,1
+yfqc24pippo,25911595,3
+49429795,25911595,2
+57787729,25911595,2
+Gothiscandza,25911595,1
+30765497,25911595,-1
+Gilberte,25911595,1
+65660136,25911595,1
+youzoumu,25911595,5
+sylviapoor,25911595,1
+2370392,25911595,4
+57566252,25911595,-1
+sunyugo,25911595,1
+122070744,25911595,4
+130614089,25911595,3
+67371305,25911595,2
+45910532,25911595,2
+51909458,25911595,3
+Moi-6515,25911595,2
+85508803,25911595,2
+59835894,25911595,2
+136879375,25911595,4
+canace_wang,25911595,3
+47209223,25911595,1
+46056151,25911595,2
+68550655,25911595,3
+71693752,25911595,2
+134501526,25911595,2
+4194592,25911595,3
+50802038,25911595,3
+127298823,25911595,2
+candywlin,25911595,3
+54596529,25911595,2
+52930373,25911595,1
+49576050,25911595,3
+104050982,25911595,5
+136867844,25911595,3
+101288865,25911595,2
+taoquanlin,25911595,2
+3867251,25911595,3
+4115756,25911595,2
+61151666,25911595,3
+elvish,25911595,5
+77286450,25911595,2
+55554310,25911595,3
+62507198,25911595,1
+56260072,25911595,4
+bian1007,25911595,3
+134867156,25911595,3
+63736533,25911595,-1
+Kkarimaa,25911595,3
+4129696,25911595,2
+50312843,25911595,3
+chenfuxiao,25911595,1
+74475236,25911595,3
+laycher,25911595,4
+55383324,25911595,2
+yangjing113,25911595,3
+75555636,25911595,2
+115555926,25911595,3
+50590393,25911595,2
+54665714,25911595,3
+127621706,25911595,1
+62875538,25911595,5
+88534574,25911595,4
+5845424,25911595,4
+126014934,25911595,3
+131749198,25911595,3
+130373176,25911595,2
+131909298,25911595,3
+4333160,25911595,3
+68799171,25911595,1
+136293291,25911595,-1
+eden1009,25911595,1
+119404798,25911595,-1
+93354233,25911595,3
+36548863,25911595,4
+77799876,25911595,1
+65387375,25911595,3
+62718942,25911595,-1
+70251090,25911595,4
+58871831,25911595,4
+wuxiaocao,25911595,3
+60151341,25911595,3
+46481404,25911595,3
+xiaoyufan569801,25911595,3
+44284036,25911595,3
+dennie2011,25911595,1
+93385129,25911595,2
+28678505,25911595,4
+50527694,25911595,4
+lovingsister,25911595,2
+vicky_talk,25911595,2
+126911965,25911595,3
+shiyiyuqi,25911595,3
+happyjiepp,25911595,5
+boool,25911595,5
+zhuxiaomao,25911595,2
+bellewang,25911595,2
+50773553,25911595,3
+136120354,25911595,5
+43333979,25911595,3
+79861406,25911595,2
+liketobe,25911595,4
+84351170,25911595,1
+34444741,25911595,1
+50706220,25911595,1
+56095656,25911595,2
+46423055,25911595,2
+107835849,25911595,3
+76771403,25911595,5
+71438734,25911595,5
+55653553,25911595,2
+snow0120,25911595,2
+36055864,25911595,3
+5246713,25911595,4
+56121048,25911595,5
+shupei,25911595,3
+108693709,25911595,3
+bb0202,25911595,-1
+jessie223,25911595,2
+wangmian0729,25911595,2
+47404031,25911595,2
+49192106,25911595,3
+62677816,25911595,2
+2340389,25911595,2
+13569368,25911595,3
+60956500,25911595,4
+3180760,25911595,4
+eveningbaby,25911595,1
+122099416,25911595,3
+u-sister,25911595,3
+kandicehu,25911595,3
+38387457,25911595,3
+88638997,25911595,3
+61714365,25911595,1
+108496496,25911595,3
+51961980,25911595,2
+66427798,25911595,3
+1773126,25911595,1
+123001004,25911595,3
+ayannagai,25911595,1
+38452436,25911595,-1
+4465352,25911595,4
+babydoris,25911595,3
+lmm032,25911595,3
+52416598,25911595,3
+69698013,25911595,4
+58202321,25911595,2
+133861377,25911595,3
+53274291,25911595,2
+62081900,25911595,3
+zzz19,25911595,2
+48108896,25911595,1
+2656556,25911595,1
+umbrella722,25911595,3
+63813651,25911595,2
+63813651,25911595,2
+3144882,25911595,3
+2196209,25911595,4
+yeon15,25911595,3
+miku,25911595,3
+vikawang,25911595,1
+107904197,25911595,3
+15245844,25911595,4
+54232576,25911595,4
+suealone,25911595,3
+131817448,25911595,4
+131020888,25911595,2
+81464535,25911595,3
+gongyansong,25911595,2
+137072636,25911595,3
+121791697,25911595,3
+68508429,25911595,1
+Sura890123,25911595,4
+2066770,25911595,4
+54011582,25911595,2
+136208381,25911595,3
+83231241,25911595,2
+aspirin08,25911595,1
+seychelles,25911595,1
+nemo2man,25911595,2
+64996012,25911595,3
+70313784,25911595,3
+3906584,25911595,3
+53466542,25911595,3
+135634275,25911595,3
+27562730,25911595,1
+130968034,25911595,2
+57083421,25911595,4
+2823928,25911595,3
+47181851,25911595,3
+41453827,25911595,2
+timenull,25911595,2
+58215137,25911595,3
+130419426,25911595,3
+36678476,25911595,5
+65773828,25911595,4
+86193611,25911595,1
+60201729,25911595,1
+wuxiaominghan,25911595,-1
+89831765,25911595,1
+68630000,25911595,2
+shutu,25911595,2
+64494087,25911595,3
+32705581,25911595,-1
+3109810,25911595,4
+3859587,25911595,3
+134617663,25911595,1
+58277985,25911595,1
+zsq0028347,25911595,3
+hyacinth1181719,25911595,1
+127405748,25911595,3
+sunnyniumei,25911595,2
+58460764,25911595,4
+120051407,25911595,4
+69095785,25911595,2
+104344457,25911595,2
+kamegong,25911595,5
+tobewith0216,25911595,2
+52046624,25911595,2
+104905007,25911595,4
+kongchanzhimeng,25911595,3
+mogubloom,25911595,2
+59556078,25911595,1
+136058716,25911595,5
+55617091,25911595,1
+whitekid,25911595,3
+72257329,25911595,1
+47337632,25911595,1
+68666799,25911595,2
+70923979,25911595,1
+sunxiaozhao,25911595,3
+58000412,25911595,1
+zoneone,25911595,3
+33261301,25911595,3
+sandy-ann,25911595,2
+sandy-ann,25911595,2
+76589400,25911595,2
+61681574,25911595,3
+1457201,25911595,2
+HSY0308,25911595,2
+137061387,25911595,2
+60027173,25911595,3
+51603332,25911595,2
+32937154,25911595,-1
+71528537,25911595,-1
+56800224,25911595,-1
+mengyou,25911595,3
+luoqiuyue,25911595,2
+84544522,25911595,3
+53412818,25911595,4
+51290521,25911595,2
+131205877,25911595,3
+1981762,25911595,2
+mumudelinzi,25911595,3
+66976207,25911595,1
+66976207,25911595,1
+134906983,25911595,5
+48090771,25911595,1
+Paranoid7,25911595,2
+54719032,25911595,2
+2744514,25911595,3
+49873308,25911595,1
+calla-lu,25911595,2
+46175639,25911595,1
+more-lee,25911595,4
+4654940,25911595,3
+lunaya,25911595,3
+kumacyann,25911595,3
+1653790,25911595,1
+57818340,25911595,1
+47537834,25911595,1
+46630332,25911595,3
+easyfeel,25911595,3
+36281906,25911595,2
+roaring90h,25911595,4
+changtengteng,25911595,5
+126015995,25911595,1
+WYQlluvia,25911595,4
+LameSaintSusenF,25911595,3
+60708720,25911595,5
+57238055,25911595,3
+talk2linx,25911595,5
+134288385,25911595,4
+85382563,25911595,4
+39843091,25911595,2
+137080097,25911595,1
+WCAJ605850999,25911595,3
+39112838,25911595,4
+3318847,25911595,3
+132701112,25911595,4
+summas,25911595,4
+120373913,25911595,5
+48369193,25911595,2
+QINGFENGDIEWU,25911595,3
+68630098,25911595,3
+68630098,25911595,3
+58026244,25911595,5
+Yunsta,25911595,2
+119263777,25911595,1
+93471623,25911595,3
+l1086905132,25911595,2
+37969274,25911595,5
+daisy1024,25911595,4
+50772329,25911595,5
+129215683,25911595,2
+donutsss,25911595,-1
+133584467,25911595,3
+SammyShengSM,25911595,4
+76804621,25911595,2
+54033630,25911595,1
+76136745,25911595,3
+65392414,25911595,4
+27402449,25911595,2
+52683154,25911595,-1
+51141097,25911595,3
+87891193,25911595,2
+104830384,25911595,1
+127466405,25911595,2
+lindsay33,25911595,3
+133415627,25911595,4
+114517843,25911595,2
+3522119,25911595,2
+32502933,25911595,3
+69439267,25911595,2
+46191550,25911595,2
+137071690,25911595,5
+97110867,25911595,3
+75004332,25911595,4
+skag,25911595,3
+59101445,25911595,3
+23822983,25911595,-1
+4042401,25911595,-1
+45268716,25911595,2
+evenyao,25911595,2
+126393954,25911595,2
+fx--hanshu,25911595,4
+63306713,25911595,4
+onedotdot,25911595,3
+3816221,25911595,2
+42692898,25911595,2
+czhou,25911595,3
+27598248,25911595,1
+1458725,25911595,3
+56254034,25911595,2
+smilewsy,25911595,5
+2411985,25911595,3
+86946149,25911595,2
+127081607,25911595,2
+72409759,25911595,1
+yhbx,25911595,2
+47732306,25911595,1
+summerwith,25911595,1
+yiuyiuu,25911595,2
+i_am_hidari,25911595,2
+85106614,25911595,3
+45578211,25911595,3
+50842822,25911595,5
+136653803,25911595,3
+70595414,25911595,3
+Jsadx,25911595,3
+3248654,25911595,3
+104529925,25911595,3
+52476794,25911595,5
+kiddiezy,25911595,3
+88071858,25911595,2
+50400133,25911595,2
+56328565,25911595,3
+70781004,25911595,3
+63707938,25911595,5
+43620888,25911595,2
+77785733,25911595,4
+rabbitshen,25911595,-1
+quyang19930607,25911595,4
+58723728,25911595,2
+3086369,25911595,3
+102432384,25911595,1
+iloveu520,25911595,1
+81679660,25911595,2
+estudiante,25911595,1
+kangwenyi,25911595,3
+58982995,25911595,3
+nokia13792,25911595,1
+66459035,25911595,3
+youngoceano,25911595,3
+oakhui,25911595,1
+89726078,25911595,1
+lindorsisi,25911595,2
+42797360,25911595,2
+53742648,25911595,3
+mangobird,25911595,1
+espresso_,25911595,2
+69223309,25911595,3
+2847632,25911595,-1
+51549441,25911595,2
+3690549,25911595,-1
+flyingbottleL,25911595,2
+123220825,25911595,2
+51224776,25911595,2
+88024927,25911595,3
+137052426,25911595,1
+62259012,25911595,1
+54269193,25911595,2
+26806780,25911595,1
+135102331,25911595,-1
+82550997,25911595,3
+44661693,25911595,4
+122048396,25911595,2
+47347613,25911595,1
+88345829,25911595,1
+70267831,25911595,2
+71764107,25911595,1
+50405272,25911595,2
+55321548,25911595,2
+89406990,25911595,2
+2804944,25911595,2
+2804944,25911595,2
+127111031,25911595,3
+63608167,25911595,1
+127089161,25911595,3
+66911917,25911595,5
+63233687,25911595,5
+jageon,25911595,2
+111743603,25911595,3
+61832315,25911595,1
+130044129,25911595,3
+64486055,25911595,5
+wendu0909,25911595,3
+47329000,25911595,4
+coolsin,25911595,4
+2073110,25911595,2
+65301310,25911595,4
+sisiwang,25911595,2
+echo520f1,25911595,3
+6793669,25911595,1
+49483549,25911595,3
+7106437,25911595,2
+92892144,25911595,2
+linshang,25911595,3
+misaai,25911595,3
+74551092,25911595,4
+136669389,25911595,4
+49068686,25911595,5
+yazigaga,25911595,4
+88526252,25911595,2
+suiffeng0504,25911595,3
+43211886,25911595,3
+72016479,25911595,3
+30016549,25911595,3
+124387754,25911595,2
+98090779,25911595,2
+58921414,25911595,3
+44852938,25911595,3
+67494946,25911595,2
+emilialinlin,25911595,2
+zouhuzm,25911595,1
+120259879,25911595,3
+ann27996090,25911595,3
+134085133,25911595,3
+45505797,25911595,3
+129857538,25911595,3
+xiaoyememories,25911595,4
+63877055,25911595,3
+81744133,25911595,2
+54647803,25911595,2
+52083386,25911595,4
+1223520,25911595,4
+yuyang1990720,25911595,3
+a-zhu,25911595,2
+TitlisGushishan,25911595,3
+94931189,25911595,3
+104825430,25911595,1
+sueinjuly,25911595,3
+136910570,25911595,3
+greatsmallnine,25911595,1
+48763298,25911595,3
+2730322,25911595,3
+maoamao,25911595,3
+Smooth0727,25911595,2
+springluoluo,25911595,3
+72253945,25911595,1
+61593178,25911595,2
+barryherb,25911595,2
+43126900,25911595,1
+lolipig,25911595,3
+19808415,25911595,1
+45274800,25911595,2
+barbie_ye,25911595,3
+126234549,25911595,3
+lanxi9107,25911595,3
+52025578,25911595,4
+48786722,25911595,2
+45344133,25911595,2
+61015297,25911595,3
+4350574,25911595,1
+Bening,25911595,3
+57756256,25911595,-1
+deeplife,25911595,1
+63559969,25911595,4
+lovelyladys,25911595,3
+136998081,25911595,3
+6972638,25911595,3
+64779909,25911595,1
+54893820,25911595,3
+64632377,25911595,4
+71928655,25911595,1
+2776195,25911595,3
+70687104,25911595,2
+72870354,25911595,3
+62009840,25911595,4
+yanashiny,25911595,3
+xiaolifeidao,25911595,3
+3577491,25911595,1
+gucci7,25911595,5
+14135281,25911595,3
+64755839,25911595,1
+102165650,25911595,4
+greenotea,25911595,2
+22842390,25911595,1
+36617215,25911595,3
+q296579068,25911595,4
+128272674,25911595,2
+54499489,25911595,3
+113050393,25911595,1
+9354883,25911595,2
+62532021,25911595,2
+59163778,25911595,1
+65004384,25911595,-1
+61785634,25911595,3
+58769650,25911595,2
+1494112,25911595,3
+Elinna0525,25911595,4
+3365504,25911595,1
+78859738,25911595,3
+61883535,25911595,3
+93828886,25911595,3
+58934612,25911595,2
+aisa395,25911595,1
+63101856,25911595,3
+92567735,25911595,3
+xiaoranfang,25911595,1
+3601446,25911595,2
+124766993,25911595,1
+Lichao1230,25911595,4
+47587289,25911595,2
+81799310,25911595,-1
+danaebirds,25911595,1
+130858757,25911595,3
+45238478,25911595,1
+136842219,25911595,1
+xxms,25911595,-1
+130445057,25911595,1
+superlady,25911595,2
+113515120,25911595,3
+75246716,25911595,3
+114149260,25911595,-1
+53721830,25911595,1
+88719620,25911595,2
+84010010,25911595,2
+71225504,25911595,4
+130599782,25911595,3
+135565047,25911595,5
+sissistar,25911595,2
+116271195,25911595,3
+120892030,25911595,2
+40185288,25911595,3
+58099043,25911595,2
+47624847,25911595,3
+45422614,25911595,3
+51479265,25911595,4
+66750034,25911595,4
+46737728,25911595,4
+bigSUN-amei,25911595,2
+52352034,25911595,3
+spring.chow,25911595,1
+61331002,25911595,3
+40360510,25911595,2
+130428066,25911595,3
+133471355,25911595,2
+80622644,25911595,4
+131879243,25911595,4
+44976171,25911595,3
+122609115,25911595,1
+citymill,25911595,1
+missliyu,25911595,4
+130353822,25911595,3
+132403789,25911595,1
+4190563,25911595,5
+Kev.Garnett,25911595,2
+58937191,25911595,-1
+49191117,25911595,2
+baobaoCheryl,25911595,3
+136639893,25911595,3
+vincentjones,25911595,2
+stephanie33,25911595,3
+yvonne_lee,25911595,3
+yvonne_lee,25911595,3
+58751062,25911595,5
+90105219,25911595,3
+lesones,25911595,1
+4415859,25911595,1
+66512532,25911595,3
+75804317,25911595,1
+3074747,25911595,2
+51181845,25911595,2
+zv_____,25911595,3
+55374994,25911595,1
+45382901,25911595,2
+136971594,25911595,3
+54976256,25911595,1
+127569899,25911595,3
+9861512,25911595,5
+129797190,25911595,3
+54043321,25911595,4
+keepsake,25911595,3
+37436539,25911595,3
+59061748,25911595,3
+62945794,25911595,3
+yangziyoko,25911595,3
+cuplzsh,25911595,2
+68865519,25911595,2
+2189984,25911595,-1
+sunflowerqi,25911595,2
+51967154,25911595,1
+54825583,25911595,1
+44220638,25911595,3
+xmm3790,25911595,2
+princewk1008,25911595,2
+4679551,25911595,2
+2600498,25911595,-1
+42819228,25911595,3
+121849085,25911595,2
+chopnizi,25911595,3
+JTimberlake,25911595,3
+6120725,25911595,5
+VICKI000,25911595,3
+55886505,25911595,2
+SpancerM,25911595,2
+76536277,25911595,-1
+ericleaf,25911595,1
+1391757,25911595,3
+44105688,25911595,3
+oopsisme,25911595,3
+londonmiumiu,25911595,4
+123111535,25911595,3
+Anita8745,25911595,3
+53868679,25911595,3
+1821069,25911595,2
+elaine0801,25911595,4
+4652744,25911595,-1
+74369155,25911595,2
+vulgarianvv,25911595,-1
+41899297,25911595,2
+92345427,25911595,2
+3324918,25911595,1
+sunlinght,25911595,1
+bbfary,25911595,2
+ying823624,25911595,3
+58727852,25911595,2
+81736176,25911595,3
+50625431,25911595,1
+61124642,25911595,3
+56896055,25911595,2
+68777092,25911595,3
+48809932,25911595,4
+59013721,25911595,3
+SusuanLu,25911595,4
+136118939,25911595,3
+lelexiaomifeng,25911595,1
+54039981,25911595,3
+50867193,25911595,3
+zuiaituotuo,25911595,3
+56650965,25911595,3
+84654420,25911595,2
+120080242,25911595,4
+62532292,25911595,2
+50925315,25911595,2
+80161168,25911595,1
+48599915,25911595,3
+67189963,25911595,3
+135090308,25911595,3
+73997999,25911595,2
+pipipapa,25911595,2
+59890597,25911595,4
+chujv,25911595,2
+50165261,25911595,3
+mrfengge,25911595,3
+58246566,25911595,1
+37488201,25911595,-1
+48880866,25911595,3
+oooooocc,25911595,1
+moainiz,25911595,4
+93113085,25911595,2
+44510032,25911595,4
+georginas_,25911595,4
+1724293,25911595,3
+qinaidebugua,25911595,2
+42942162,25911595,2
+120437687,25911595,1
+2103834,25911595,4
+fanxiaodong,25911595,3
+30830742,25911595,1
+58930752,25911595,2
+lixinbei8023,25911595,3
+83472045,25911595,1
+53002602,25911595,4
+buffyjiang,25911595,3
+xiamodegema,25911595,5
+joycesi,25911595,4
+40126557,25911595,3
+115125689,25911595,2
+wslhul,25911595,2
+1766764,25911595,3
+127803773,25911595,3
+42724768,25911595,1
+mico2009,25911595,2
+67863005,25911595,2
+52606338,25911595,2
+pkt1993,25911595,4
+50245791,25911595,2
+lave,25911595,3
+51153180,25911595,2
+123760346,25911595,4
+132324916,25911595,2
+109261237,25911595,1
+happyhealthy,25911595,-1
+mabeysomeday,25911595,4
+65724587,25911595,3
+4132596,25911595,2
+31698933,25911595,2
+45991925,25911595,1
+100146208,25911595,2
+chan2j,25911595,3
+67939886,25911595,1
+80240044,25911595,2
+65751471,25911595,-1
+tianhuixue,25911595,3
+babypaula,25911595,4
+49854583,25911595,1
+55288748,25911595,1
+46852222,25911595,3
+4088278,25911595,4
+57615473,25911595,3
+135739193,25911595,3
+Jocci,25911595,1
+tianranzijiegou,25911595,3
+105805119,25911595,2
+79071322,25911595,3
+djjn,25911595,3
+4096669,25911595,2
+ningning9164,25911595,-1
+37945803,25911595,2
+fiirstday,25911595,3
+126682168,25911595,3
+52933532,25911595,2
+120627904,25911595,1
+76611723,25911595,1
+76216989,25911595,3
+82357316,25911595,2
+76343743,25911595,2
+46838565,25911595,3
+yujiuwei,25911595,1
+reaco,25911595,1
+47674697,25911595,2
+128051709,25911595,3
+52668487,25911595,3
+50191390,25911595,3
+129023984,25911595,2
+61193325,25911595,5
+68916586,25911595,3
+jsntjojo,25911595,3
+44714353,25911595,-1
+ooosky,25911595,3
+2394327,25911595,1
+sisiliya,25911595,3
+63410556,25911595,4
+windyli,25911595,3
+39675870,25911595,2
+102958157,25911595,2
+93455789,25911595,4
+xuyq,25911595,1
+2572731,25911595,3
+85484617,25911595,4
+junliny,25911595,3
+luka90123,25911595,-1
+litian19890502,25911595,2
+2242910,25911595,4
+qq374783352,25911595,2
+rainflyfree,25911595,3
+102687002,25911595,4
+1818595,25911595,2
+gilyun,25911595,2
+Surizane,25911595,-1
+2092765,25911595,2
+130251472,25911595,2
+58752829,25911595,2
+58752829,25911595,2
+46483875,25911595,2
+35120433,25911595,2
+134076104,25911595,3
+Tensa,25911595,3
+46398519,25911595,2
+44075578,25911595,2
+135896409,25911595,2
+taiyanghuazhen,25911595,3
+Josieeeeee,25911595,3
+zyunn,25911595,5
+wooee,25911595,-1
+Leave_Summer,25911595,3
+64543096,25911595,3
+lyrdb,25911595,2
+17471764,25911595,-1
+coco921,25911595,4
+43426116,25911595,4
+47855719,25911595,3
+134318408,25911595,2
+Amppppppp,25911595,3
+yshj,25911595,1
+46279722,25911595,3
+132000045,25911595,1
+47116857,25911595,3
+133047552,25911595,4
+122191146,25911595,5
+39147671,25911595,3
+71348074,25911595,4
+48355262,25911595,2
+mirror814,25911595,3
+4191448,25911595,3
+82920248,25911595,2
+17628651,25911595,3
+annie_0414,25911595,3
+caocaoa,25911595,1
+116157955,25911595,4
+134532071,25911595,2
+49248204,25911595,4
+127295660,25911595,3
+33525277,25911595,3
+64450294,25911595,2
+119189447,25911595,3
+1261337,25911595,3
+60774527,25911595,-1
+45160963,25911595,2
+chuleiwu,25911595,3
+73540795,25911595,3
+evaxiao,25911595,4
+1498768,25911595,2
+54041008,25911595,-1
+82880099,25911595,3
+73673659,25911595,2
+123555386,25911595,2
+GODIVA,25911595,2
+87783911,25911595,4
+dorothyzhang,25911595,3
+yimoyoulan916,25911595,3
+121616472,25911595,1
+hollydoyle,25911595,2
+hollydoyle,25911595,2
+61845707,25911595,3
+lucifermi,25911595,3
+27709250,25911595,1
+clockwork-fish,25911595,2
+50527578,25911595,-1
+mariegaoge,25911595,-1
+snow961003,25911595,3
+49759767,25911595,3
+55328950,25911595,2
+linyuyuan,25911595,2
+52049296,25911595,-1
+59027708,25911595,1
+41383796,25911595,5
+54283413,25911595,4
+134500938,25911595,1
+125913784,25911595,2
+79109261,25911595,3
+62350026,25911595,-1
+42458136,25911595,4
+47904693,25911595,2
+120243539,25911595,2
+brad.dl,25911595,1
+xiongweilin,25911595,2
+2325631,25911595,3
+52846055,25911595,-1
+Sennir,25911595,4
+70574144,25911595,4
+127792178,25911595,4
+65223888,25911595,1
+52261843,25911595,2
+64810171,25911595,3
+45925638,25911595,-1
+3848918,25911595,2
+43632851,25911595,1
+huxf578,25911595,4
+132686664,25911595,1
+46220008,25911595,1
+58630530,25911595,2
+49973940,25911595,4
+120566516,25911595,3
+2106137,25911595,3
+samomos,25911595,3
+37448778,25911595,3
+123545577,25911595,4
+hello999,25911595,1
+51226041,25911595,2
+KathyChin,25911595,3
+liuyahuavv,25911595,2
+57847628,25911595,-1
+27090335,25911595,2
+132678799,25911595,4
+30587036,25911595,2
+77094909,25911595,2
+fanbucloud,25911595,1
+sunxujjack,25911595,1
+1793602,25911595,3
+56197073,25911595,4
+121942823,25911595,2
+secret--garden,25911595,2
+54676136,25911595,1
+newbear,25911595,2
+duanziyu,25911595,1
+linanh8,25911595,2
+54463579,25911595,2
+49154020,25911595,3
+ying029,25911595,2
+wp728,25911595,1
+s.e.t,25911595,2
+15153228,25911595,3
+mcymcy,25911595,2
+69954925,25911595,4
+56227323,25911595,5
+121754243,25911595,3
+58109745,25911595,3
+2660791,25911595,5
+solavre,25911595,-1
+65041467,25911595,2
+1412545,25911595,1
+Smileysnow,25911595,2
+43671696,25911595,2
+morrowindzzj,25911595,2
+81592044,25911595,4
+62871612,25911595,3
+37694449,25911595,2
+zhj_810,25911595,3
+54273279,25911595,4
+58083305,25911595,-1
+2488427,25911595,2
+119313507,25911595,-1
+69323349,25911595,4
+29725427,25911595,3
+4918742,25911595,2
+51885150,25911595,2
+41836272,25911595,5
+50474968,25911595,3
+38870012,25911595,2
+124744172,25911595,3
+56843528,25911595,4
+Aubrey4S,25911595,1
+Aubrey4S,25911595,1
+47002742,25911595,3
+35224402,25911595,2
+130601471,25911595,3
+114487129,25911595,3
+131206597,25911595,3
+64622433,25911595,4
+42562073,25911595,4
+46696192,25911595,2
+93606686,25911595,1
+yelia926,25911595,1
+55305426,25911595,1
+121819431,25911595,2
+120567507,25911595,3
+107849016,25911595,2
+121640725,25911595,4
+82188158,25911595,2
+3464028,25911595,2
+58513319,25911595,2
+4063415,25911595,3
+41127888,25911595,-1
+6843264,25911595,3
+xiaohuai533,25911595,2
+70569834,25911595,2
+92764567,25911595,3
+4691398,25911595,5
+73910323,25911595,3
+lilysld,25911595,2
+47362295,25911595,3
+2468214,25911595,4
+66168101,25911595,1
+87884178,25911595,3
+langbaikai,25911595,3
+dark_knight,25911595,5
+68283591,25911595,2
+127725949,25911595,2
+43859058,25911595,3
+zhangrenran,25911595,2
+1029394,25911595,3
+60941930,25911595,2
+130666692,25911595,2
+46961814,25911595,3
+Hdodo,25911595,3
+35578162,25911595,2
+ziyu0802,25911595,5
+136271115,25911595,4
+65303828,25911595,2
+122004304,25911595,2
+51126355,25911595,3
+shariko01,25911595,3
+56778584,25911595,4
+63963645,25911595,4
+2742353,25911595,3
+45784891,25911595,2
+44573720,25911595,3
+103214078,25911595,3
+4809632,25911595,3
+surri,25911595,2
+104008588,25911595,4
+76002759,25911595,3
+56432703,25911595,5
+summer4_ever,25911595,3
+71181418,25911595,3
+70108458,25911595,4
+Popdai,25911595,1
+62993339,25911595,1
+62062477,25911595,3
+136857738,25911595,3
+71140874,25911595,2
+chihaidan,25911595,2
+king1099,25911595,2
+69504632,25911595,1
+cccCORRINEeee,25911595,3
+lyning,25911595,2
+75014466,25911595,2
+kevin_lu1001,25911595,2
+3223179,25911595,-1
+55355100,25911595,-1
+62680284,25911595,3
+53290361,25911595,4
+71107908,25911595,3
+44409988,25911595,3
+61369333,25911595,1
+52129970,25911595,2
+yutingamy,25911595,1
+cherry1992,25911595,2
+28559275,25911595,3
+5605006,25911595,1
+chinriya,25911595,2
+48666035,25911595,4
+87410268,25911595,2
+58959174,25911595,4
+104601424,25911595,3
+61195907,25911595,2
+132056719,25911595,1
+61667274,25911595,3
+57405430,25911595,2
+50353845,25911595,3
+sophie-z,25911595,2
+2923091,25911595,3
+2923091,25911595,3
+136790899,25911595,3
+64996637,25911595,3
+ayataoj,25911595,1
+vvspy,25911595,3
+chuyichuyi,25911595,2
+37050297,25911595,3
+48469422,25911595,2
+50013150,25911595,1
+55640220,25911595,2
+liang00liang,25911595,1
+jibo1991,25911595,2
+130647398,25911595,3
+xxqxz,25911595,2
+90753569,25911595,2
+57341642,25911595,2
+4520667,25911595,1
+59319434,25911595,5
+12125155,25911595,5
+50415878,25911595,2
+50415878,25911595,2
+jiangli1988,25911595,-1
+84932574,25911595,3
+84526892,25911595,3
+103816219,25911595,-1
+eazi2,25911595,-1
+teresa_leaves,25911595,4
+orsule,25911595,4
+58078105,25911595,2
+anamorphose,25911595,1
+133043824,25911595,4
+vivienne1117,25911595,3
+4141698,25911595,1
+thirdsummer,25911595,3
+120990010,25911595,1
+84076381,25911595,2
+cuishuang,25911595,-1
+62879258,25911595,5
+72630623,25911595,2
+Oyes,25911595,1
+wupeachfan,25911595,4
+2849700,25911595,4
+36276299,25911595,1
+jiamianhu,25911595,2
+129490724,25911595,2
+42680639,25911595,2
+33954897,25911595,3
+78622680,25911595,2
+nss1w1,25911595,3
+99337246,25911595,3
+78453730,25911595,4
+41328113,25911595,3
+28959917,25911595,1
+89024568,25911595,2
+2477156,25911595,3
+59334980,25911595,1
+64189382,25911595,2
+grapefruitS,25911595,5
+Sandorothy,25911595,2
+miuccia,25911595,4
+82264355,25911595,3
+51935302,25911595,2
+71421150,25911595,3
+75322643,25911595,3
+sarabilau2,25911595,2
+benbenmuxi,25911595,2
+abin520918,25911595,2
+119184686,25911595,5
+52242741,25911595,3
+127585242,25911595,3
+121080553,25911595,2
+68285010,25911595,2
+65951134,25911595,4
+chinazhuoer,25911595,5
+levkimi,25911595,2
+105599956,25911595,2
+KeryChou,25911595,2
+58894486,25911595,-1
+morgina,25911595,3
+124369176,25911595,5
+124369176,25911595,5
+yinhaitian,25911595,2
+4239908,25911595,2
+yningc,25911595,1
+72639962,25911595,2
+34984227,25911595,3
+69757574,25911595,4
+119456408,25911595,2
+59725846,25911595,3
+pinkbebe,25911595,3
+dairytea,25911595,1
+60554271,25911595,3
+48909969,25911595,3
+2985026,25911595,1
+2904311,25911595,2
+128360298,25911595,3
+67172121,25911595,2
+132468640,25911595,5
+67796922,25911595,2
+66274614,25911595,2
+45828294,25911595,5
+45273360,25911595,1
+3801810,25911595,1
+77621365,25911595,3
+xiaopang1106,25911595,3
+65856924,25911595,3
+74291934,25911595,4
+darlingpea,25911595,4
+3242895,25911595,1
+18071732,25911595,2
+62911869,25911595,5
+carol2sea,25911595,3
+115593023,25911595,2
+56583743,25911595,-1
+corrinneh,25911595,2
+70242419,25911595,3
+arale180,25911595,4
+franling,25911595,-1
+64664851,25911595,1
+3487458,25911595,5
+59302218,25911595,1
+12227824,25911595,1
+40105202,25911595,1
+60347813,25911595,2
+44678301,25911595,4
+136409582,25911595,3
+yao120,25911595,3
+65740832,25911595,5
+joygirlying,25911595,2
+yunshangxiaoduo,25911595,4
+122921638,25911595,3
+84675514,25911595,3
+134533952,25911595,5
+96468820,25911595,3
+132262817,25911595,3
+69448551,25911595,1
+Rmiaoer,25911595,-1
+42859187,25911595,3
+104601156,25911595,2
+luocaoyaoyao,25911595,4
+81804724,25911595,3
+3234538,25911595,2
+2625361,25911595,5
+45937767,25911595,3
+55643287,25911595,2
+66306727,25911595,3
+58004418,25911595,2
+48751444,25911595,3
+79407609,25911595,5
+46936304,25911595,1
+79450664,25911595,3
+70530619,25911595,3
+135941801,25911595,3
+49114944,25911595,5
+slowwalker,25911595,2
+57749235,25911595,4
+48920893,25911595,-1
+90217144,25911595,3
+53230007,25911595,4
+huayeah,25911595,2
+89682149,25911595,1
+59066202,25911595,1
+76964275,25911595,2
+liusihui,25911595,4
+71622967,25911595,5
+78380925,25911595,2
+yuelai15,25911595,3
+rainycats,25911595,4
+74230231,25911595,3
+3248733,25911595,4
+antoniawu,25911595,3
+68636133,25911595,3
+coka1999,25911595,2
+130273030,25911595,3
+lovemetaphor,25911595,3
+57405167,25911595,3
+W-0,25911595,1
+ilovesusan,25911595,3
+14113539,25911595,2
+121600132,25911595,3
+121600132,25911595,3
+97786845,25911595,3
+35285718,25911595,1
+124618760,25911595,3
+29172425,25911595,3
+50501455,25911595,3
+hermione_lv,25911595,2
+130599589,25911595,1
+49339227,25911595,4
+80798437,25911595,1
+54766723,25911595,1
+1787114,25911595,1
+Cunese1399,25911595,2
+96758494,25911595,5
+51592058,25911595,3
+mooreweicheng,25911595,2
+inno2009,25911595,3
+135813890,25911595,2
+113986971,25911595,4
+115590990,25911595,3
+84268334,25911595,2
+59253640,25911595,2
+35258226,25911595,2
+124832004,25911595,3
+65720947,25911595,2
+ViamoLee,25911595,2
+19835187,25911595,2
+57007520,25911595,5
+135372685,25911595,4
+135084358,25911595,5
+1327257,25911595,2
+61726273,25911595,4
+70435217,25911595,3
+87381547,25911595,3
+91827424,25911595,3
+23289273,25911595,3
+82980188,25911595,1
+5754772,25911595,-1
+lightblue_xu,25911595,3
+135743894,25911595,3
+135743894,25911595,3
+vivi827,25911595,2
+56355450,25911595,2
+3322909,25911595,3
+119586140,25911595,1
+66302544,25911595,2
+60848954,25911595,2
+59986377,25911595,-1
+SeptemberSun,25911595,3
+jeanne68240109,25911595,2
+shota,25911595,1
+129106376,25911595,2
+suxiaobu,25911595,2
+133861190,25911595,3
+lucy188,25911595,2
+btone0808,25911595,1
+127741400,25911595,3
+gongqiong,25911595,4
+vergessen,25911595,3
+zerolbt,25911595,2
+vergessen,25911595,3
+zerolbt,25911595,2
+53531270,25911595,1
+78730690,25911595,1
+Face_Lili,25911595,3
+66699032,25911595,3
+clankyacml,25911595,-1
+17342003,25911595,1
+60132042,25911595,2
+4273499,25911595,4
+31983093,25911595,2
+106379046,25911595,1
+21139926,25911595,3
+display,25911595,3
+amerway,25911595,2
+1133756,25911595,3
+100682612,25911595,2
+cindyhello,25911595,3
+vivien0212,25911595,3
+94886676,25911595,2
+68433941,25911595,4
+125949420,25911595,5
+66585349,25911595,3
+cchou,25911595,3
+2548593,25911595,5
+63633595,25911595,3
+72273417,25911595,2
+aawenping,25911595,5
+4325552,25911595,1
+86019808,25911595,4
+3079698,25911595,3
+Cici0926,25911595,2
+120517901,25911595,2
+GeekChic7,25911595,1
+43120723,25911595,3
+100392002,25911595,1
+august09,25911595,1
+5580906,25911595,-1
+52570392,25911595,3
+TracyQ,25911595,3
+43269770,25911595,3
+25879300,25911595,3
+miemie-cpu,25911595,4
+amadecasa,25911595,3
+130496328,25911595,1
+74154243,25911595,4
+121163756,25911595,3
+58695086,25911595,5
+du15369,25911595,3
+moyee_sky,25911595,4
+47771448,25911595,5
+63377431,25911595,2
+69034481,25911595,2
+lychee0825,25911595,2
+52886775,25911595,-1
+sunshinegirl510,25911595,3
+uma_wang,25911595,2
+paopaoing,25911595,2
+morechou,25911595,3
+54066513,25911595,3
+57819875,25911595,-1
+61534352,25911595,3
+cherry901117,25911595,2
+28852948,25911595,2
+62903092,25911595,1
+gexiaoshang,25911595,3
+Jiang_jss,25911595,5
+1790957,25911595,1
+Vitaminsong,25911595,-1
+Lovezing,25911595,2
+63192479,25911595,-1
+103242828,25911595,-1
+61866321,25911595,3
+82046546,25911595,4
+129588971,25911595,2
+44305889,25911595,3
+57348844,25911595,5
+4382518,25911595,2
+66596034,25911595,2
+51557756,25911595,2
+95461910,25911595,3
+134537950,25911595,3
+136348828,25911595,-1
+112725692,25911595,4
+61997003,25911595,3
+130934404,25911595,2
+shingle,25911595,3
+69244531,25911595,4
+53683420,25911595,3
+129355992,25911595,4
+70255132,25911595,1
+xibanyayidong,25911595,2
+120449053,25911595,3
+l620620,25911595,1
+120480108,25911595,2
+3884732,25911595,4
+70739010,25911595,2
+60352980,25911595,2
+cloudyblue,25911595,1
+52978874,25911595,2
+120116458,25911595,3
+54021561,25911595,3
+40967366,25911595,3
+82921826,25911595,1
+73761450,25911595,3
+129503817,25911595,1
+58521441,25911595,3
+136523935,25911595,5
+moon1880,25911595,4
+77922789,25911595,4
+88367269,25911595,-1
+69927296,25911595,3
+MusiCspace,25911595,3
+63283899,25911595,3
+131488166,25911595,3
+59136561,25911595,2
+42254682,25911595,2
+dusunan,25911595,1
+Miss.Encore,25911595,3
+114407604,25911595,1
+74235699,25911595,3
+69753886,25911595,1
+132511009,25911595,2
+80149039,25911595,3
+60046415,25911595,1
+76062284,25911595,5
+103251789,25911595,4
+85309350,25911595,2
+134732599,25911595,2
+huaersasa,25911595,3
+49103272,25911595,3
+53065014,25911595,3
+68443954,25911595,3
+133398804,25911595,1
+50224214,25911595,1
+136197644,25911595,3
+134545730,25911595,2
+Eriseddddd,25911595,2
+136103365,25911595,2
+71093640,25911595,1
+75427447,25911595,2
+4618269,25911595,3
+136229958,25911595,4
+120945947,25911595,2
+72114683,25911595,2
+70039420,25911595,1
+princess921129,25911595,1
+dzl15,25911595,2
+50195492,25911595,3
+119644008,25911595,2
+32835447,25911595,3
+134035366,25911595,3
+Leoevan,25911595,2
+liyixuanorz,25911595,3
+16304195,25911595,2
+121410902,25911595,5
+xx0301ll,25911595,3
+44383454,25911595,1
+lulu521621,25911595,4
+27352868,25911595,2
+135694361,25911595,3
+80782547,25911595,4
+132954430,25911595,3
+71743079,25911595,3
+88122881,25911595,1
+134574897,25911595,3
+63063218,25911595,3
+136182892,25911595,3
+34881345,25911595,1
+zzzhanglisha,25911595,4
+yinmengtan,25911595,2
+119663785,25911595,3
+Amy-Winter,25911595,3
+131112942,25911595,2
+62650557,25911595,3
+RiliXu,25911595,3
+xiiiiiiian,25911595,3
+45032378,25911595,4
+achrista,25911595,2
+pillbug,25911595,3
+pillbug,25911595,3
+zzzzzmc,25911595,2
+summer9186,25911595,1
+77046292,25911595,3
+42279106,25911595,3
+67163006,25911595,2
+toqueena,25911595,2
+115178944,25911595,2
+59563343,25911595,3
+131610219,25911595,3
+50059157,25911595,-1
+58575762,25911595,2
+L.am,25911595,4
+67626687,25911595,3
+Mrs.wrong,25911595,2
+maynardleung,25911595,2
+3521086,25911595,-1
+xuyuny252,25911595,3
+121757659,25911595,-1
+39014221,25911595,3
+mandy087,25911595,2
+JeffyT,25911595,2
+127389460,25911595,1
+70421764,25911595,3
+ladynnn,25911595,1
+86922521,25911595,5
+45340268,25911595,2
+65646692,25911595,4
+23380026,25911595,3
+125842559,25911595,4
+Wxxxxx57,25911595,3
+50069501,25911595,1
+lilyzhou2012,25911595,3
+65788116,25911595,3
+88154386,25911595,1
+wangholic,25911595,2
+79372274,25911595,4
+128637977,25911595,2
+48801010,25911595,1
+82350821,25911595,3
+130920695,25911595,3
+miaohan,25911595,3
+122193967,25911595,3
+131021845,25911595,2
+Garing,25911595,3
+yigexiaoqing,25911595,2
+49893874,25911595,2
+dearrbb,25911595,3
+ilmarie,25911595,3
+50453835,25911595,5
+48264510,25911595,3
+littlebrandy,25911595,3
+4294774,25911595,3
+126658027,25911595,5
+119710944,25911595,2
+104823216,25911595,5
+127489630,25911595,2
+BomDong,25911595,3
+65359383,25911595,1
+48331767,25911595,3
+zzhiyao,25911595,5
+66967423,25911595,-1
+46228915,25911595,-1
+16321180,25911595,2
+blueprints,25911595,3
+131758972,25911595,3
+Danny-Green,25911595,-1
+121137821,25911595,2
+115827848,25911595,3
+57361545,25911595,4
+47467572,25911595,2
+50630651,25911595,1
+79560195,25911595,1
+87838848,25911595,1
+42663693,25911595,4
+2730771,25911595,1
+45079057,25911595,3
+3328818,25911595,2
+Minan,25911595,2
+134640892,25911595,3
+nanaseventh,25911595,1
+60226199,25911595,1
+44874135,25911595,3
+37084235,25911595,3
+131482820,25911595,4
+106497872,25911595,2
+80517374,25911595,2
+50988123,25911595,1
+lola721,25911595,3
+mayday001,25911595,1
+130488268,25911595,1
+49091256,25911595,2
+39898726,25911595,1
+93884806,25911595,3
+64286867,25911595,2
+99223887,25911595,5
+love.cee,25911595,-1
+xiaowa77,25911595,1
+52244457,25911595,3
+christinaZr,25911595,4
+73626355,25911595,2
+89635048,25911595,3
+120948560,25911595,3
+121429956,25911595,4
+cidishenhao,25911595,3
+Ciangie,25911595,-1
+70013242,25911595,3
+1486195,25911595,4
+54841914,25911595,5
+4090922,25911595,3
+72233881,25911595,3
+108247778,25911595,1
+47761082,25911595,2
+47618855,25911595,-1
+lumieremeimei,25911595,3
+58192612,25911595,1
+perro101,25911595,1
+daisyhqq,25911595,3
+131535153,25911595,2
+22746190,25911595,2
+104823204,25911595,3
+134698667,25911595,3
+staywithcc,25911595,1
+celia550,25911595,3
+maychendaxu,25911595,3
+56694430,25911595,3
+127424592,25911595,1
+49602953,25911595,5
+133082737,25911595,3
+32114364,25911595,3
+64235845,25911595,4
+Dallowave,25911595,1
+sodakiwi,25911595,-1
+51449689,25911595,1
+135875095,25911595,2
+42679192,25911595,3
+63757293,25911595,2
+daisywj,25911595,2
+35488906,25911595,5
+yullc,25911595,3
+43110758,25911595,1
+anastasiaqqy,25911595,3
+38228296,25911595,5
+Volence,25911595,1
+taolitianxia,25911595,3
+69192715,25911595,2
+89992830,25911595,2
+hymnjiao,25911595,1
+4691421,25911595,4
+56004220,25911595,2
+123000223,25911595,4
+93197518,25911595,3
+124343373,25911595,1
+134625303,25911595,2
+2196648,25911595,2
+3308651,25911595,4
+jiujiuprincess,25911595,3
+62169990,25911595,3
+130706971,25911595,2
+lavender47,25911595,2
+zhoulinxinyu,25911595,3
+dongrimulv,25911595,5
+103456182,25911595,2
+134520468,25911595,3
+60473991,25911595,3
+56053205,25911595,1
+zrli,25911595,2
+lane1031,25911595,1
+134532187,25911595,3
+52241406,25911595,2
+Precious0113,25911595,4
+92135778,25911595,2
+51741927,25911595,2
+4651277,25911595,1
+zMuer,25911595,1
+48183944,25911595,4
+50636566,25911595,1
+81583587,25911595,1
+131514121,25911595,2
+73198596,25911595,5
+63243356,25911595,1
+63997678,25911595,3
+128555458,25911595,4
+Daisytian,25911595,1
+49415138,25911595,3
+30714456,25911595,2
+58272912,25911595,4
+67740587,25911595,4
+wen1228,25911595,2
+61753912,25911595,2
+130540529,25911595,3
+51445817,25911595,3
+zhl19741130520,25911595,4
+diedie218,25911595,2
+133403838,25911595,3
+xulimei,25911595,-1
+4318344,25911595,3
+127102772,25911595,3
+guogouisherefor,25911595,4
+50048603,25911595,3
+6630496,25911595,-1
+45064973,25911595,3
+84393372,25911595,4
+125773849,25911595,3
+121194917,25911595,-1
+shadowlew,25911595,2
+71882861,25911595,2
+49692592,25911595,2
+131504998,25911595,2
+62957717,25911595,4
+mandeeeee,25911595,3
+82249256,25911595,1
+43326844,25911595,2
+87528128,25911595,3
+52471468,25911595,3
+53114632,25911595,3
+129032954,25911595,2
+18747582,25911595,3
+46459211,25911595,-1
+72647046,25911595,4
+2296483,25911595,3
+54695817,25911595,-1
+rondochen,25911595,3
+51584292,25911595,2
+61999162,25911595,3
+66234722,25911595,3
+104696310,25911595,3
+doudou8798,25911595,2
+131366965,25911595,2
+128952855,25911595,4
+45929399,25911595,3
+3771475,25911595,3
+61333256,25911595,2
+wangjun1900,25911595,2
+sunnybath,25911595,3
+133864523,25911595,3
+shinexyb,25911595,3
+87684831,25911595,1
+kioce,25911595,3
+qingmuwu,25911595,3
+52079002,25911595,2
+76970051,25911595,2
+92355817,25911595,5
+melodygxl,25911595,4
+66686600,25911595,3
+81591121,25911595,2
+116304949,25911595,4
+yizhao,25911595,1
+118036743,25911595,2
+61555779,25911595,3
+64902019,25911595,2
+4857042,25911595,4
+emotion7,25911595,3
+129369858,25911595,2
+53142631,25911595,1
+130271779,25911595,3
+alice-cat,25911595,3
+134586200,25911595,3
+49365587,25911595,3
+67882810,25911595,2
+62795624,25911595,3
+89270889,25911595,2
+combrain,25911595,1
+72576116,25911595,3
+59999128,25911595,2
+52327549,25911595,-1
+nhy0104,25911595,4
+2167550,25911595,4
+dinglinsusu,25911595,5
+90796911,25911595,3
+122645096,25911595,5
+51378918,25911595,4
+135140521,25911595,1
+48649262,25911595,3
+51086058,25911595,1
+z88888z,25911595,1
+Carol_8507,25911595,3
+Amour-Xerophyte,25911595,1
+YesIDO.,25911595,3
+qiuer1130,25911595,4
+64083587,25911595,2
+49298107,25911595,2
+huixia528491,25911595,1
+ctirad,25911595,4
+134846621,25911595,3
+57440655,25911595,3
+27454750,25911595,4
+46007183,25911595,3
+120735094,25911595,4
+49995634,25911595,1
+zhouqianyun,25911595,3
+60712166,25911595,3
+87741143,25911595,1
+kongyan15,25911595,3
+70359776,25911595,4
+duoluowenren,25911595,2
+87234119,25911595,3
+36781853,25911595,3
+51810641,25911595,4
+kirk5white,25911595,3
+36239717,25911595,3
+57732334,25911595,3
+59917153,25911595,2
+joycerabbit,25911595,3
+51269285,25911595,4
+103163383,25911595,3
+52319588,25911595,1
+122324387,25911595,1
+muxueqz,25911595,3
+gaoguangguang,25911595,5
+lingdesign,25911595,2
+64260117,25911595,4
+kazuha,25911595,3
+45400078,25911595,-1
+74948787,25911595,5
+zaizaiyami,25911595,3
+51391308,25911595,2
+44908756,25911595,4
+53819334,25911595,3
+39698078,25911595,2
+xixi_yuanxin,25911595,2
+park_summer,25911595,3
+114274927,25911595,1
+62725223,25911595,1
+m19900714,25911595,3
+130413441,25911595,4
+132666215,25911595,4
+63110579,25911595,3
+52892284,25911595,2
+134315650,25911595,1
+131299127,25911595,4
+65413699,25911595,2
+130147817,25911595,3
+119421761,25911595,2
+4506904,25911595,2
+132254485,25911595,1
+mocean,25911595,3
+1580185,25911595,3
+2572927,25911595,3
+yalindongdong,25911595,1
+24419346,25911595,2
+21042861,25911595,3
+116556583,25911595,4
+4674424,25911595,3
+130497763,25911595,2
+4015914,25911595,3
+oeqanh,25911595,2
+65036885,25911595,3
+79058129,25911595,4
+126248170,25911595,1
+103053604,25911595,3
+134495648,25911595,2
+55643387,25911595,1
+122508583,25911595,1
+90515611,25911595,1
+134176594,25911595,3
+49831994,25911595,4
+81977569,25911595,1
+f05041220,25911595,3
+minlele,25911595,3
+61482345,25911595,3
+3170937,25911595,3
+69232236,25911595,3
+50360912,25911595,1
+59111075,25911595,3
+phl745,25911595,2
+49963574,25911595,1
+61811494,25911595,1
+67294761,25911595,1
+58897808,25911595,2
+Iamfull,25911595,2
+sybirl,25911595,4
+love-jetoy,25911595,3
+68073706,25911595,2
+60856294,25911595,2
+126206725,25911595,2
+74266497,25911595,1
+105938526,25911595,1
+Lady-Thomas,25911595,1
+Elsie_7,25911595,1
+cosyvera,25911595,3
+SummerDuan,25911595,2
+63465276,25911595,2
+khuntoria,25911595,1
+62717349,25911595,1
+58363378,25911595,3
+132348413,25911595,3
+71939546,25911595,3
+76873742,25911595,2
+53982356,25911595,3
+70880759,25911595,4
+133020463,25911595,4
+53888176,25911595,3
+46152001,25911595,1
+130353620,25911595,1
+113310119,25911595,5
+66132423,25911595,5
+darlinfish,25911595,-1
+ArekX,25911595,1
+2780938,25911595,3
+115711204,25911595,3
+shania0912,25911595,4
+126785151,25911595,2
+SUSA,25911595,-1
+47688996,25911595,3
+43137121,25911595,2
+114540983,25911595,2
+ivyzhu,25911595,3
+41968915,25911595,3
+133486624,25911595,2
+64173169,25911595,3
+loooool,25911595,3
+aotcsyy,25911595,1
+4666419,25911595,4
+134270900,25911595,2
+62805644,25911595,1
+lcghere,25911595,3
+125827809,25911595,2
+Erinnerung,25911595,3
+133080033,25911595,3
+43878527,25911595,3
+Brantzlee,25911595,1
+yangchuying,25911595,4
+58256926,25911595,3
+gb333,25911595,2
+55392439,25911595,2
+96898762,25911595,3
+rosemaryindream,25911595,3
+64093320,25911595,2
+54102792,25911595,2
+nafertari,25911595,3
+67632250,25911595,4
+colorfulturtle,25911595,-1
+59029214,25911595,3
+81250941,25911595,3
+78607370,25911595,3
+48120672,25911595,3
+56015661,25911595,2
+45094700,25911595,1
+71833015,25911595,4
+wh396011051,25911595,2
+104823231,25911595,1
+69713505,25911595,4
+127900544,25911595,2
+izemo-sunny,25911595,3
+119990931,25911595,3
+littlenanzhu,25911595,3
+58433028,25911595,1
+48876090,25911595,1
+4522191,25911595,2
+wwwwwwh,25911595,5
+himandy,25911595,2
+2423419,25911595,3
+kimly,25911595,4
+liubinwei,25911595,4
+2069699,25911595,5
+4388033,25911595,2
+60908758,25911595,2
+47309326,25911595,4
+45850756,25911595,4
+3280387,25911595,3
+54815783,25911595,2
+109417341,25911595,1
+60648596,25911595,1
+49154372,25911595,1
+hello-malaimo,25911595,2
+64708572,25911595,3
+xiaoguai2007,25911595,5
+54538602,25911595,1
+53484529,25911595,2
+57741256,25911595,5
+Y19950422,25911595,4
+50828814,25911595,2
+lynne.l,25911595,-1
+72113417,25911595,1
+97293420,25911595,3
+53857768,25911595,1
+122999824,25911595,3
+luggage,25911595,1
+52765899,25911595,3
+78150474,25911595,2
+68982219,25911595,1
+44377776,25911595,3
+130564437,25911595,4
+44376211,25911595,4
+63028227,25911595,3
+119110863,25911595,2
+Earrame,25911595,1
+68589815,25911595,3
+4799920,25911595,2
+65016979,25911595,4
+57985826,25911595,3
+zoe-1988,25911595,2
+vinniezhao,25911595,1
+provence_love,25911595,2
+52017448,25911595,1
+jiadreamscar,25911595,3
+52207529,25911595,3
+56890318,25911595,5
+60786423,25911595,2
+28199588,25911595,3
+75844004,25911595,1
+68543528,25911595,3
+123469699,25911595,2
+127383061,25911595,-1
+11658942,25911595,2
+51029451,25911595,1
+130442588,25911595,3
+ssyppq,25911595,1
+together1018,25911595,2
+emily7726,25911595,1
+shinaya,25911595,4
+41984679,25911595,2
+72098495,25911595,1
+OuTalK,25911595,4
+4397835,25911595,3
+4866728,25911595,-1
+yaxintt,25911595,4
+59044334,25911595,3
+4865747,25911595,1
+83378671,25911595,1
+yimomomo,25911595,5
+3590324,25911595,3
+shutantan,25911595,4
+karacookies,25911595,1
+90836826,25911595,2
+gallria,25911595,3
+73456502,25911595,1
+134522325,25911595,3
+68287184,25911595,2
+2221354,25911595,3
+14919132,25911595,4
+83984750,25911595,2
+132098902,25911595,1
+122060054,25911595,2
+MaoMolly,25911595,1
+64069487,25911595,2
+nanshengism,25911595,4
+46567889,25911595,1
+4762341,25911595,1
+46567889,25911595,1
+4762341,25911595,1
+zkxloveytt,25911595,1
+46030224,25911595,3
+24989214,25911595,2
+90849629,25911595,2
+134726224,25911595,-1
+45133421,25911595,2
+48047560,25911595,2
+75897930,25911595,1
+131239316,25911595,4
+44888008,25911595,-1
+Tree4,25911595,1
+128160386,25911595,2
+54817405,25911595,3
+72661721,25911595,2
+64827983,25911595,1
+134824625,25911595,3
+41502441,25911595,4
+rmj89,25911595,4
+133504650,25911595,4
+1214921,25911595,1
+57766501,25911595,3
+breadboy,25911595,1
+46397769,25911595,3
+mirroree,25911595,2
+vyhff0807,25911595,3
+126693961,25911595,3
+Chi_Zuo,25911595,4
+keyomi0923,25911595,2
+120803414,25911595,2
+65676913,25911595,3
+below17,25911595,3
+49225636,25911595,5
+40747171,25911595,2
+80317889,25911595,2
+65448112,25911595,1
+84513545,25911595,5
+kissyoutonight,25911595,4
+74551171,25911595,1
+55817332,25911595,1
+35051547,25911595,3
+44988284,25911595,1
+nicole121,25911595,3
+pavous,25911595,1
+33933169,25911595,1
+55484274,25911595,1
+kirsty417,25911595,2
+80007681,25911595,1
+55395707,25911595,2
+lotusweety,25911595,2
+brew,25911595,3
+43621378,25911595,3
+ssjuer,25911595,4
+mengxinghappy,25911595,5
+smartapril,25911595,3
+54463600,25911595,3
+wyjlwyy,25911595,3
+wruo,25911595,1
+63658740,25911595,2
+65488685,25911595,2
+34831031,25911595,3
+97378875,25911595,1
+122594677,25911595,1
+44772366,25911595,3
+121491917,25911595,-1
+ets,25911595,3
+nancy-chan,25911595,4
+56399718,25911595,2
+120741265,25911595,1
+58913556,25911595,3
+114608710,25911595,2
+Lreckle,25911595,3
+66919459,25911595,1
+3388658,25911595,1
+129820587,25911595,2
+73495060,25911595,3
+55817097,25911595,2
+francesca99,25911595,2
+se9tem6er,25911595,3
+se9tem6er,25911595,3
+53741508,25911595,2
+mushishisora,25911595,4
+69121798,25911595,2
+128623211,25911595,3
+134194471,25911595,4
+62469932,25911595,5
+132919451,25911595,1
+andyangela,25911595,4
+114647405,25911595,5
+ryo_ki,25911595,3
+126948377,25911595,3
+88298749,25911595,3
+Jellysui,25911595,4
+127291315,25911595,2
+defline,25911595,1
+mydrean,25911595,4
+84140369,25911595,4
+40672897,25911595,1
+ljw19890830,25911595,4
+92698798,25911595,3
+49325422,25911595,2
+94254044,25911595,3
+91408651,25911595,3
+135331170,25911595,4
+53677228,25911595,-1
+119852340,25911595,2
+shansss,25911595,3
+130496028,25911595,2
+90525754,25911595,1
+Ranfeg,25911595,-1
+63785417,25911595,2
+daxiangwutai,25911595,3
+57987154,25911595,2
+134396982,25911595,5
+52808156,25911595,1
+43536991,25911595,1
+4766836,25911595,2
+83989454,25911595,2
+130978369,25911595,2
+tender_night,25911595,-1
+88676029,25911595,1
+88127829,25911595,4
+1634532,25911595,3
+zhanmingzhang,25911595,2
+76076225,25911595,3
+57065086,25911595,3
+120963459,25911595,4
+2247430,25911595,2
+zoecaffrey,25911595,2
+73704011,25911595,1
+78166009,25911595,1
+cmayc,25911595,4
+134937890,25911595,1
+134540692,25911595,1
+104060863,25911595,3
+Agnesi,25911595,4
+62358227,25911595,1
+48634684,25911595,2
+59673313,25911595,3
+62493564,25911595,3
+111342880,25911595,2
+erobin,25911595,2
+jiyongoppa,25911595,3
+fycqcyl,25911595,4
+2924947,25911595,4
+74703584,25911595,2
+114893512,25911595,2
+64110823,25911595,3
+chouchou35,25911595,3
+valiantina,25911595,1
+27064459,25911595,4
+84717205,25911595,3
+64694528,25911595,3
+53657298,25911595,2
+61562634,25911595,3
+claraye,25911595,3
+34729021,25911595,5
+121647241,25911595,1
+54148554,25911595,1
+Lyabing,25911595,2
+67292056,25911595,5
+48724740,25911595,3
+90213874,25911595,2
+63550302,25911595,3
+gougougougou,25911595,1
+127526905,25911595,5
+3954052,25911595,2
+134495748,25911595,3
+130098092,25911595,2
+tiffany0715,25911595,1
+77182257,25911595,3
+66915476,25911595,2
+akirayu,25911595,5
+46605189,25911595,4
+scorates1984,25911595,1
+49684865,25911595,2
+93394632,25911595,3
+50238501,25911595,3
+71062298,25911595,5
+36128756,25911595,-1
+133372996,25911595,2
+54827704,25911595,2
+molly1012,25911595,2
+50938017,25911595,1
+63755832,25911595,1
+2245194,25911595,3
+Claire5220,25911595,1
+35373128,25911595,3
+70597104,25911595,-1
+qinwenrene,25911595,3
+64123749,25911595,3
+he19,25911595,1
+juju.d,25911595,4
+133398715,25911595,2
+67700979,25911595,2
+estrella135,25911595,4
+muuuuuuua,25911595,2
+132592815,25911595,3
+80283476,25911595,1
+ABadguyII,25911595,-1
+frostshuang1989,25911595,2
+69031967,25911595,3
+2324863,25911595,3
+43552849,25911595,2
+rurucat,25911595,1
+52396131,25911595,4
+zhezixi,25911595,1
+mummyV,25911595,1
+134518908,25911595,3
+38882087,25911595,3
+83217907,25911595,-1
+62837833,25911595,3
+130642973,25911595,2
+Iamapoem,25911595,2
+49922245,25911595,3
+SaneWoo,25911595,2
+134919604,25911595,4
+54090244,25911595,2
+ilovealansuper,25911595,2
+135284429,25911595,3
+1887825,25911595,2
+109032484,25911595,5
+flxjp,25911595,1
+62210211,25911595,2
+119997789,25911595,3
+49037372,25911595,1
+62000178,25911595,2
+74659221,25911595,4
+ccweiyang,25911595,3
+75569999,25911595,3
+71656261,25911595,3
+122009529,25911595,4
+52705329,25911595,-1
+95686183,25911595,4
+23361704,25911595,2
+45780268,25911595,4
+niaoyunfeidouba,25911595,4
+42801461,25911595,-1
+llh9277,25911595,2
+constantmartin,25911595,3
+120313404,25911595,3
+wendy_1112,25911595,-1
+xiamihemao,25911595,1
+41677339,25911595,-1
+caoheng,25911595,2
+43983045,25911595,2
+127819200,25911595,1
+peggy_3,25911595,3
+58251550,25911595,2
+63589475,25911595,5
+90415514,25911595,3
+78902065,25911595,1
+121368079,25911595,3
+48144780,25911595,2
+42137156,25911595,3
+LEPINGNI,25911595,5
+106349539,25911595,4
+44104877,25911595,4
+122121522,25911595,3
+106091636,25911595,2
+96490824,25911595,4
+nlc_hzn,25911595,1
+lixiaocao,25911595,3
+shuyouqian,25911595,3
+edisonme,25911595,3
+frida0516,25911595,3
+DREAMERS,25911595,-1
+130362078,25911595,3
+51085434,25911595,3
+her10ve,25911595,4
+3415449,25911595,2
+103002361,25911595,4
+caizhidao,25911595,-1
+64056125,25911595,4
+fancywind,25911595,-1
+40373197,25911595,-1
+122341750,25911595,3
+55410872,25911595,2
+47997824,25911595,4
+85642211,25911595,3
+gogogoyao,25911595,1
+49548565,25911595,1
+jiiiiiaaaa,25911595,5
+100303280,25911595,3
+58978626,25911595,4
+73197352,25911595,-1
+76616285,25911595,-1
+69004868,25911595,1
+114282416,25911595,1
+sarak,25911595,-1
+83674616,25911595,2
+130521789,25911595,5
+50169026,25911595,2
+73134068,25911595,4
+hiddenmonkey,25911595,3
+129918832,25911595,3
+62400100,25911595,4
+roseandwater,25911595,-1
+doumeiyuou,25911595,3
+yb_1219,25911595,4
+sakura9686,25911595,3
+lizhiqiang127,25911595,3
+tintingo,25911595,2
+97171614,25911595,3
+ilovekyoko,25911595,3
+126125294,25911595,3
+116269598,25911595,2
+TracyZoo,25911595,4
+50450766,25911595,5
+52830779,25911595,1
+cheerjia,25911595,2
+sirl,25911595,5
+115552281,25911595,3
+3762024,25911595,2
+46654545,25911595,3
+59876080,25911595,1
+chichaofan,25911595,-1
+44018423,25911595,3
+61127541,25911595,2
+80506084,25911595,3
+Shimpear,25911595,3
+106639249,25911595,2
+gluecoco,25911595,3
+3139928,25911595,1
+41039541,25911595,3
+78638741,25911595,4
+78192927,25911595,2
+zcx1990,25911595,3
+mystory0310,25911595,3
+108287416,25911595,3
+51156082,25911595,2
+nothingicare,25911595,1
+82923282,25911595,1
+47434041,25911595,2
+52738182,25911595,3
+56160592,25911595,2
+132820826,25911595,2
+83401102,25911595,4
+58188727,25911595,3
+63820953,25911595,-1
+48793243,25911595,3
+134137352,25911595,2
+14968820,25911595,2
+97697695,25911595,3
+cheryl_wang,25911595,3
+129853005,25911595,5
+44621991,25911595,2
+2089364,25911595,5
+60884862,25911595,2
+90100728,25911595,5
+dmxy,25911595,1
+75010045,25911595,4
+1586946,25911595,2
+122586428,25911595,3
+sanchia,25911595,4
+36395177,25911595,4
+im-zhuang,25911595,-1
+2812415,25911595,2
+3739572,25911595,2
+43993505,25911595,3
+Alienzhao,25911595,1
+62726133,25911595,2
+122104900,25911595,2
+129815517,25911595,2
+53317988,25911595,1
+51531512,25911595,4
+90751686,25911595,1
+134499105,25911595,3
+75855875,25911595,4
+131845858,25911595,3
+findeva,25911595,4
+toda0607,25911595,1
+72491929,25911595,3
+52715172,25911595,1
+130676060,25911595,1
+131680692,25911595,3
+winday,25911595,4
+131473143,25911595,1
+57645749,25911595,1
+103539396,25911595,1
+GraceBinbin,25911595,4
+50814680,25911595,3
+zexun,25911595,3
+89464147,25911595,1
+nancy_li,25911595,3
+shanl,25911595,-1
+111015166,25911595,4
+4424185,25911595,3
+YYweiwancheng,25911595,-1
+131025711,25911595,3
+xiyt8911,25911595,1
+30486993,25911595,1
+4135777,25911595,3
+4852496,25911595,2
+55796583,25911595,2
+47697014,25911595,3
+39547942,25911595,2
+3067072,25911595,1
+2561289,25911595,3
+2561289,25911595,3
+63423532,25911595,1
+42758677,25911595,-1
+53536327,25911595,1
+54530527,25911595,3
+48674849,25911595,1
+zy0615_,25911595,4
+127124018,25911595,2
+56794742,25911595,3
+48476618,25911595,3
+112276419,25911595,4
+63207501,25911595,3
+1065050,25911595,3
+129451784,25911595,3
+lilylanka,25911595,2
+68922284,25911595,1
+69749186,25911595,5
+46177546,25911595,1
+131488271,25911595,4
+45210097,25911595,4
+Flora1119,25911595,1
+128450167,25911595,3
+134463446,25911595,3
+3231764,25911595,3
+131604050,25911595,5
+48318971,25911595,1
+47784418,25911595,5
+2859890,25911595,5
+49505829,25911595,5
+sevenya,25911595,4
+62366078,25911595,5
+46971826,25911595,3
+83751192,25911595,3
+cuixuelei,25911595,3
+93160401,25911595,3
+122360797,25911595,2
+3016636,25911595,3
+lmorita,25911595,3
+100582359,25911595,2
+48273445,25911595,3
+shenqiongye,25911595,4
+amanda3513,25911595,3
+60373659,25911595,2
+62370156,25911595,3
+72861793,25911595,4
+echowangxw,25911595,3
+chaliwang3,25911595,1
+dleifrag,25911595,1
+133328631,25911595,3
+50428752,25911595,4
+48300402,25911595,1
+minilbiss,25911595,4
+45982097,25911595,2
+qiqiyinyu,25911595,3
+53979889,25911595,2
+61613739,25911595,-1
+aiduanduan,25911595,1
+59916603,25911595,3
+49101463,25911595,1
+36156854,25911595,1
+xellgio,25911595,2
+gu_yan,25911595,1
+hunhunsui,25911595,2
+zihaozai0407,25911595,3
+impoki,25911595,1
+wanderinglife,25911595,2
+48388810,25911595,5
+53144700,25911595,2
+59024144,25911595,2
+67849754,25911595,3
+ylqin,25911595,1
+125806599,25911595,2
+56339363,25911595,2
+Aureisjoke,25911595,2
+39529333,25911595,3
+56119626,25911595,2
+yumi_2828,25911595,3
+69674598,25911595,5
+57986199,25911595,5
+Saggezza,25911595,3
+121943500,25911595,2
+124595459,25911595,3
+Ruty1985,25911595,2
+Ron1230,25911595,2
+87905022,25911595,3
+120305816,25911595,1
+62342625,25911595,3
+120222600,25911595,1
+momoko-whl,25911595,4
+4753243,25911595,-1
+60288003,25911595,3
+4585815,25911595,2
+hikkii,25911595,2
+53004550,25911595,3
+103084395,25911595,4
+heyowl,25911595,2
+K1nnnn,25911595,2
+134241394,25911595,4
+32655603,25911595,-1
+54289383,25911595,1
+81550400,25911595,2
+3887848,25911595,4
+tegs,25911595,1
+67244429,25911595,2
+132463662,25911595,3
+djy_joy,25911595,1
+misamore,25911595,4
+63412313,25911595,2
+80882668,25911595,3
+49116772,25911595,4
+134529720,25911595,3
+4886516,25911595,3
+67313637,25911595,1
+49444615,25911595,4
+84737725,25911595,3
+justbelieve,25911595,5
+127316538,25911595,3
+77609153,25911595,3
+53101721,25911595,3
+79659741,25911595,3
+79659741,25911595,3
+67652524,25911595,2
+p2165,25911595,1
+verahiahia,25911595,2
+lunann,25911595,2
+Joyce_YY_,25911595,3
+3904918,25911595,3
+YangBao,25911595,3
+H897120417,25911595,3
+zuoerkk,25911595,1
+DOOLYUNI,25911595,3
+51275614,25911595,1
+MacQuen,25911595,2
+134854042,25911595,3
+63620716,25911595,2
+dorothy6851,25911595,3
+4560593,25911595,3
+83962986,25911595,3
+67302871,25911595,5
+121516783,25911595,2
+64726602,25911595,4
+philo-sophia,25911595,5
+69197691,25911595,3
+48435609,25911595,4
+54153618,25911595,3
+58439498,25911595,1
+127043703,25911595,3
+66719799,25911595,3
+2601748,25911595,4
+58090719,25911595,3
+74493313,25911595,3
+ispep,25911595,3
+qiuqiongxu,25911595,1
+54923572,25911595,1
+beibeidonkey,25911595,4
+16807244,25911595,2
+68673650,25911595,4
+76531316,25911595,4
+cocoalmond,25911595,1
+chenxi0355,25911595,1
+chenxi0355,25911595,1
+67984945,25911595,2
+114646414,25911595,4
+woodwool,25911595,2
+67248053,25911595,3
+55601818,25911595,1
+jiushiwoyaheng,25911595,3
+58064521,25911595,1
+134542917,25911595,3
+135022920,25911595,4
+57215044,25911595,1
+119418827,25911595,5
+37375149,25911595,4
+124920209,25911595,2
+Michelle1733,25911595,4
+54533341,25911595,3
+35964817,25911595,3
+44953599,25911595,1
+131527494,25911595,2
+29891156,25911595,3
+126590175,25911595,4
+52931512,25911595,4
+58110144,25911595,1
+tanglu,25911595,2
+peter-pen,25911595,1
+85120995,25911595,1
+adagio4400,25911595,4
+3170874,25911595,3
+zhanglfy,25911595,2
+46476912,25911595,4
+59217303,25911595,3
+119364695,25911595,4
+130940103,25911595,3
+68290528,25911595,2
+67940029,25911595,1
+122943812,25911595,2
+122415665,25911595,2
+75268479,25911595,1
+dearforget,25911595,5
+47917777,25911595,4
+41017931,25911595,3
+3571898,25911595,2
+131416608,25911595,3
+73878048,25911595,3
+134621373,25911595,2
+87570484,25911595,3
+96388706,25911595,3
+128522293,25911595,3
+67862373,25911595,1
+43471974,25911595,4
+30457423,25911595,3
+liuzhusn,25911595,4
+76667923,25911595,4
+65917801,25911595,1
+66740319,25911595,2
+2177017,25911595,5
+82389413,25911595,3
+luoyang11405,25911595,1
+bikibiki,25911595,2
+12992904,25911595,2
+12992904,25911595,2
+dingjie,25911595,3
+48920065,25911595,3
+56926782,25911595,2
+48048936,25911595,2
+109561748,25911595,1
+56591615,25911595,1
+robinlei,25911595,3
+71188390,25911595,5
+57842135,25911595,2
+33575154,25911595,3
+62720771,25911595,3
+52384552,25911595,4
+4050686,25911595,4
+82982521,25911595,2
+2300644,25911595,2
+zod798,25911595,2
+linruoru,25911595,2
+csee1121,25911595,4
+THIS-IS-MAOYU,25911595,3
+isaxue,25911595,2
+126158497,25911595,3
+53936382,25911595,1
+queeneiekong,25911595,3
+77824438,25911595,3
+46223615,25911595,2
+133443742,25911595,4
+71900698,25911595,2
+135197419,25911595,5
+135198340,25911595,1
+2149921,25911595,3
+69031458,25911595,2
+77283735,25911595,1
+132082642,25911595,5
+44129385,25911595,3
+fikichow,25911595,3
+55791603,25911595,2
+jyhk66,25911595,1
+ironCC,25911595,2
+lauriexue,25911595,4
+68480529,25911595,5
+97057870,25911595,2
+134503660,25911595,3
+135197392,25911595,4
+JohnnyForever,25911595,1
+ivysuijing,25911595,3
+1894504,25911595,1
+64134033,25911595,3
+76372843,25911595,2
+134327676,25911595,5
+dominique2011,25911595,2
+83663252,25911595,3
+124556126,25911595,2
+101623427,25911595,5
+78714718,25911595,2
+chenxy92,25911595,1
+40019918,25911595,2
+135196241,25911595,1
+131720373,25911595,5
+77854332,25911595,4
+FrancisM,25911595,1
+82027150,25911595,5
+69714540,25911595,3
+56206646,25911595,2
+74766860,25911595,3
+68539735,25911595,2
+98356595,25911595,3
+44865600,25911595,5
+130687315,25911595,3
+2973153,25911595,3
+50008450,25911595,1
+43621350,25911595,3
+ramya99,25911595,1
+108442662,25911595,5
+125111991,25911595,1
+3516765,25911595,1
+121142020,25911595,3
+zhenziren,25911595,1
+82630962,25911595,3
+47708632,25911595,2
+48047755,25911595,2
+88598461,25911595,3
+37359681,25911595,3
+57949076,25911595,1
+99655397,25911595,5
+88840337,25911595,1
+weiwei1020,25911595,3
+Isayori,25911595,2
+123528266,25911595,1
+53672819,25911595,2
+bronze27,25911595,5
+Joan7600,25911595,5
+115001902,25911595,2
+119026102,25911595,3
+Loverrwz,25911595,2
+46264744,25911595,4
+8982514,25911595,4
+42778669,25911595,4
+scarlett128,25911595,3
+93307877,25911595,2
+wudikg,25911595,3
+83526079,25911595,2
+twofour,25911595,2
+131627562,25911595,1
+smileqsj,25911595,5
+127782706,25911595,3
+niuniupipi1997,25911595,3
+53784007,25911595,4
+Halbert-Sun,25911595,4
+zoe24,25911595,2
+56075427,25911595,4
+46298461,25911595,2
+59906784,25911595,2
+54239971,25911595,5
+63414303,25911595,2
+52771481,25911595,3
+echoabc0409,25911595,3
+102806375,25911595,2
+55512330,25911595,4
+77520589,25911595,-1
+77520589,25911595,-1
+124213893,25911595,4
+queenayip,25911595,3
+69511451,25911595,3
+68200387,25911595,1
+32408872,25911595,4
+58956740,25911595,3
+71868582,25911595,3
+78733616,25911595,3
+yaohooo,25911595,2
+3223208,25911595,-1
+56329683,25911595,4
+104575422,25911595,1
+Guardianangel,25911595,5
+darlingtudai,25911595,2
+23826255,25911595,1
+aeris511,25911595,2
+chyxqwl,25911595,2
+97354586,25911595,2
+IcePickJones,25911595,1
+IcePickJones,25911595,1
+37825325,25911595,3
+103016546,25911595,3
+65388114,25911595,2
+DFHU,25911595,5
+dadafanhe,25911595,3
+60043726,25911595,2
+132350496,25911595,5
+91825059,25911595,3
+87459568,25911595,3
+31616755,25911595,4
+copperhammer,25911595,2
+119252139,25911595,3
+laolei19900613,25911595,1
+ease14,25911595,-1
+83044349,25911595,2
+ridicumas,25911595,3
+37194628,25911595,1
+60849400,25911595,4
+51258589,25911595,3
+4720988,25911595,3
+Yeah.Owl.G,25911595,4
+yuanm1220,25911595,1
+64479487,25911595,4
+4389847,25911595,1
+81393037,25911595,3
+43390539,25911595,1
+3851591,25911595,1
+54422705,25911595,4
+43603952,25911595,2
+61724448,25911595,4
+96514775,25911595,4
+116168988,25911595,3
+58932917,25911595,2
+50035534,25911595,3
+97645479,25911595,2
+youzhiyouis,25911595,3
+53254724,25911595,-1
+68771576,25911595,2
+78273526,25911595,3
+59316467,25911595,4
+132790620,25911595,2
+70726088,25911595,5
+67848471,25911595,5
+66591270,25911595,3
+128405814,25911595,2
+56901042,25911595,1
+121933047,25911595,2
+129696567,25911595,4
+115547734,25911595,1
+134161390,25911595,1
+57377127,25911595,3
+133662506,25911595,5
+2334248,25911595,2
+53655128,25911595,1
+63644333,25911595,4
+130378781,25911595,1
+83769093,25911595,4
+115554536,25911595,2
+68825025,25911595,2
+134600773,25911595,3
+cenalarz,25911595,2
+luochenyan,25911595,3
+109084248,25911595,5
+77193498,25911595,1
+134963788,25911595,3
+cc9055,25911595,4
+55897368,25911595,3
+68023776,25911595,1
+103969062,25911595,2
+57580353,25911595,2
+133493079,25911595,2
+tinysunny,25911595,1
+sssuryy,25911595,1
+83938738,25911595,3
+3819480,25911595,5
+46912263,25911595,2
+koalajiang,25911595,1
+129482708,25911595,2
+124349489,25911595,3
+61572643,25911595,4
+eugne,25911595,3
+133986166,25911595,3
+33944015,25911595,1
+88020154,25911595,1
+119995299,25911595,2
+2476748,25911595,1
+53455622,25911595,2
+102818452,25911595,3
+54095491,25911595,3
+sherryw76,25911595,3
+dounaivivi,25911595,4
+huster-lion,25911595,4
+Ouidah,25911595,1
+35442481,25911595,3
+Mirandcarey,25911595,5
+belongtol,25911595,3
+52831736,25911595,2
+sugarjune,25911595,2
+134494053,25911595,2
+132004020,25911595,2
+23260274,25911595,4
+37779092,25911595,3
+53533608,25911595,2
+63822026,25911595,3
+69819504,25911595,4
+3822255,25911595,5
+134503726,25911595,3
+124286936,25911595,3
+solordia,25911595,1
+120718481,25911595,1
+47692286,25911595,3
+4324223,25911595,5
+Sking_lq,25911595,1
+1907693,25911595,1
+79847046,25911595,2
+122104513,25911595,2
+leave614,25911595,2
+133074819,25911595,4
+83091102,25911595,2
+83091102,25911595,2
+60900233,25911595,1
+xiaojirou007,25911595,2
+103366376,25911595,1
+46506277,25911595,1
+51049860,25911595,3
+129858710,25911595,3
+dbxuanyan,25911595,1
+55480147,25911595,4
+71648483,25911595,1
+87501170,25911595,3
+87548562,25911595,3
+99196855,25911595,2
+129937511,25911595,-1
+78350906,25911595,4
+jinlinyuyu,25911595,3
+43057375,25911595,3
+2830413,25911595,1
+49366823,25911595,1
+52986947,25911595,3
+34945593,25911595,3
+66911642,25911595,1
+51596124,25911595,2
+ivybryant,25911595,4
+54618937,25911595,4
+chuchu0905,25911595,3
+100939284,25911595,3
+69156553,25911595,2
+nancyoyx,25911595,2
+quite-yacca,25911595,1
+4592782,25911595,4
+44822039,25911595,1
+caesarphoenix,25911595,1
+57922927,25911595,3
+lostef,25911595,1
+64329337,25911595,1
+121995347,25911595,3
+37641113,25911595,5
+65895122,25911595,2
+126400536,25911595,2
+62409767,25911595,3
+51248464,25911595,3
+115702103,25911595,2
+129453126,25911595,3
+3595293,25911595,4
+49902026,25911595,5
+46043867,25911595,4
+44500409,25911595,3
+81711510,25911595,4
+4733801,25911595,3
+happygs,25911595,3
+37956992,25911595,3
+70545730,25911595,5
+duzhouchi,25911595,1
+eill,25911595,3
+45573643,25911595,1
+bravefish,25911595,3
+qd724945697,25911595,2
+xiawuyihou,25911595,5
+2049714,25911595,4
+2711621,25911595,2
+16409481,25911595,2
+28112076,25911595,2
+4247692,25911595,3
+anniehoneys,25911595,3
+1756044,25911595,5
+102781440,25911595,2
+121985201,25911595,3
+63330574,25911595,5
+iaiao,25911595,2
+58164220,25911595,1
+71405332,25911595,2
+54448061,25911595,3
+56529479,25911595,3
+yucong,25911595,1
+127323547,25911595,2
+alangalang,25911595,1
+52839547,25911595,2
+provence1019,25911595,3
+115004472,25911595,2
+129692137,25911595,4
+win-go,25911595,2
+39530640,25911595,2
+marchT,25911595,-1
+131565125,25911595,2
+120245591,25911595,2
+127071890,25911595,3
+51756800,25911595,2
+mouxixi,25911595,1
+4855309,25911595,1
+73630939,25911595,2
+85522462,25911595,-1
+52469285,25911595,1
+135151312,25911595,5
+2698006,25911595,3
+leedoris,25911595,2
+61001827,25911595,2
+79034042,25911595,1
+my_zing,25911595,4
+fanclrice,25911595,2
+135151127,25911595,1
+corallemon,25911595,2
+NONOJIA,25911595,3
+61276381,25911595,5
+4373221,25911595,4
+74932520,25911595,2
+nancy0712,25911595,-1
+snowmoonsakura,25911595,3
+71019914,25911595,4
+103385698,25911595,1
+13909109,25911595,4
+2908368,25911595,3
+50583394,25911595,3
+47993943,25911595,3
+y-3y17,25911595,-1
+79824168,25911595,2
+69940581,25911595,1
+53322275,25911595,1
+121841318,25911595,1
+waitintheseason,25911595,2
+choppernini,25911595,1
+76991372,25911595,5
+thereis,25911595,3
+48503019,25911595,1
+38834525,25911595,4
+48778738,25911595,1
+zq8870690207,25911595,3
+3725383,25911595,3
+48689695,25911595,3
+peacefulkid,25911595,3
+44649689,25911595,3
+qcystudio,25911595,2
+69015878,25911595,4
+6440487,25911595,4
+120531545,25911595,1
+120895384,25911595,4
+70491004,25911595,1
+46253362,25911595,4
+songguoqilin,25911595,-1
+46728642,25911595,3
+132194245,25911595,4
+52117227,25911595,1
+lizzieating,25911595,1
+61366288,25911595,2
+115895497,25911595,1
+79316961,25911595,2
+50717732,25911595,4
+mylucky1010,25911595,5
+s_sc1,25911595,2
+120647948,25911595,1
+3315752,25911595,3
+27831684,25911595,2
+62527134,25911595,3
+44754472,25911595,2
+quanzhouren,25911595,3
+62386997,25911595,2
+MorningGloryyy,25911595,4
+pedant,25911595,2
+64188588,25911595,4
+69586673,25911595,5
+jiumuccc,25911595,2
+123266321,25911595,3
+56590853,25911595,4
+yaerli,25911595,1
+53220311,25911595,3
+72059263,25911595,3
+1887686,25911595,4
+FEILAMIDU,25911595,3
+127113606,25911595,3
+83401257,25911595,3
+131018330,25911595,2
+61310551,25911595,3
+119158241,25911595,2
+FerrariCake,25911595,3
+muary,25911595,4
+3736414,25911595,4
+121225346,25911595,3
+135145248,25911595,2
+45593068,25911595,4
+62153310,25911595,3
+62153310,25911595,3
+52246984,25911595,3
+81926810,25911595,1
+39501196,25911595,3
+wjiandan,25911595,3
+duduben1861,25911595,2
+63658067,25911595,3
+130540894,25911595,3
+28884615,25911595,3
+61704460,25911595,1
+53405110,25911595,-1
+64081316,25911595,4
+89989677,25911595,3
+68981521,25911595,3
+54848736,25911595,3
+67048173,25911595,3
+zf468930104,25911595,1
+91157157,25911595,3
+LinuxPlusPlus,25911595,3
+onlyYH,25911595,2
+81178074,25911595,3
+changefiona,25911595,3
+64629682,25911595,4
+91965927,25911595,2
+73150810,25911595,3
+43605116,25911595,3
+74862472,25911595,2
+114947244,25911595,2
+57658984,25911595,4
+seafi,25911595,2
+bestsecretlife,25911595,1
+61356073,25911595,3
+68664119,25911595,3
+60961304,25911595,4
+70619574,25911595,4
+109238530,25911595,3
+1602396,25911595,2
+vane37,25911595,1
+74955987,25911595,4
+52296283,25911595,2
+102440738,25911595,3
+51855635,25911595,4
+64275372,25911595,1
+43766729,25911595,2
+54028610,25911595,2
+chenjingyi26,25911595,4
+122587004,25911595,2
+22197399,25911595,-1
+95026029,25911595,1
+AileenY,25911595,4
+yifeng2013,25911595,5
+3330105,25911595,3
+98933549,25911595,4
+luffyffo,25911595,3
+k7058,25911595,2
+122973986,25911595,5
+126505118,25911595,2
+ngqmtm,25911595,1
+zjisme,25911595,2
+65543223,25911595,5
+88272889,25911595,5
+75984184,25911595,-1
+51788188,25911595,2
+119688975,25911595,2
+Zerzura,25911595,-1
+47779713,25911595,3
+jiejueliaoyi,25911595,1
+124694624,25911595,5
+46950995,25911595,4
+126887950,25911595,3
+16084893,25911595,2
+62020982,25911595,1
+94254038,25911595,2
+83359033,25911595,4
+colororor,25911595,3
+40955189,25911595,4
+58284947,25911595,5
+74608127,25911595,3
+songyouwei,25911595,3
+44670712,25911595,1
+love-TVXQ,25911595,2
+105390195,25911595,3
+65836711,25911595,4
+Darevivion,25911595,3
+zhaix0221,25911595,1
+59311710,25911595,3
+maggietat,25911595,2
+121916264,25911595,3
+53815086,25911595,3
+1427065,25911595,4
+52324566,25911595,3
+64703146,25911595,2
+75903747,25911595,4
+Lelio090101,25911595,2
+58662138,25911595,5
+ahasay,25911595,3
+62679117,25911595,4
+67619742,25911595,2
+honeydoris,25911595,3
+fanyamin,25911595,1
+44049094,25911595,3
+102623663,25911595,3
+56683333,25911595,3
+134256865,25911595,3
+mihuaka,25911595,3
+73866765,25911595,2
+Yinaly,25911595,2
+121641170,25911595,1
+Micky_48,25911595,3
+129157418,25911595,4
+82973508,25911595,4
+51953879,25911595,3
+62542631,25911595,1
+y19940504,25911595,4
+132516248,25911595,3
+punchy,25911595,2
+124987821,25911595,5
+mufanxuanji,25911595,3
+119190302,25911595,4
+Freya-ice,25911595,3
+57542378,25911595,2
+2595920,25911595,2
+60882564,25911595,4
+120647438,25911595,2
+32541723,25911595,3
+121342307,25911595,5
+listenmumu,25911595,3
+cris7ss,25911595,2
+2571757,25911595,5
+2184495,25911595,3
+37542471,25911595,5
+62058968,25911595,4
+3796746,25911595,4
+70588311,25911595,4
+oneyijia,25911595,5
+doubannini,25911595,5
+80814520,25911595,2
+2445824,25911595,3
+leexiang,25911595,1
+40966373,25911595,3
+yexiaohong,25911595,3
+103385070,25911595,1
+3555146,25911595,5
+32613190,25911595,4
+75445619,25911595,-1
+2683471,25911595,3
+38811434,25911595,1
+131538725,25911595,1
+43511352,25911595,1
+53030747,25911595,3
+2780529,25911595,3
+maybealiar,25911595,4
+49283694,25911595,2
+68679029,25911595,2
+83360787,25911595,3
+sjdjayjj,25911595,3
+raniayanjingyi,25911595,2
+97443496,25911595,1
+gaolaotou,25911595,1
+53941925,25911595,4
+92254946,25911595,4
+rayzhou,25911595,4
+51571110,25911595,1
+65588257,25911595,4
+49361787,25911595,4
+Monica__Wang,25911595,1
+51887409,25911595,2
+52014385,25911595,4
+124887908,25911595,3
+68879069,25911595,3
+123546301,25911595,3
+4197412,25911595,1
+3958061,25911595,-1
+68583073,25911595,2
+50204008,25911595,2
+40443774,25911595,2
+rose886,25911595,1
+57510931,25911595,3
+87988157,25911595,3
+84261396,25911595,2
+mogujunmomo,25911595,3
+126283294,25911595,3
+70924398,25911595,3
+58204376,25911595,3
+46589656,25911595,1
+62270610,25911595,-1
+65521542,25911595,-1
+121279263,25911595,2
+93672714,25911595,5
+125000015,25911595,3
+131685817,25911595,3
+115178890,25911595,4
+3841030,25911595,4
+61624406,25911595,2
+44896206,25911595,3
+114435379,25911595,3
+103399006,25911595,3
+63258135,25911595,2
+45996774,25911595,1
+128778083,25911595,2
+64465114,25911595,2
+93402051,25911595,5
+126579331,25911595,1
+76038438,25911595,3
+103553895,25911595,1
+58626973,25911595,1
+63589265,25911595,1
+49589423,25911595,1
+Vivian-KW,25911595,4
+69542619,25911595,3
+1026205,25911595,1
+124971754,25911595,4
+57104894,25911595,2
+iam1wo,25911595,2
+6987390,25911595,3
+68899795,25911595,3
+54738717,25911595,3
+134855500,25911595,3
+osoing,25911595,1
+58165188,25911595,4
+minervayy,25911595,2
+EchoHusky,25911595,3
+74021213,25911595,2
+127072469,25911595,3
+milklotus,25911595,2
+zqsnail121,25911595,2
+130175424,25911595,2
+100662283,25911595,1
+4612999,25911595,1
+75025238,25911595,1
+120956047,25911595,3
+135124660,25911595,3
+119428504,25911595,3
+1453639,25911595,2
+4446167,25911595,3
+sqdlx,25911595,1
+97180170,25911595,5
+66803513,25911595,3
+45812383,25911595,1
+52416049,25911595,1
+52416049,25911595,1
+92908596,25911595,4
+50483291,25911595,1
+pituo,25911595,3
+59570753,25911595,5
+133239175,25911595,1
+airlale,25911595,5
+111112872,25911595,1
+34678139,25911595,5
+55275802,25911595,3
+39104472,25911595,2
+91629846,25911595,1
+54303374,25911595,5
+58038404,25911595,3
+59220796,25911595,2
+122848551,25911595,3
+52551371,25911595,1
+103293349,25911595,1
+janiris,25911595,3
+LadySandra,25911595,-1
+76291472,25911595,3
+duduxiongzhifu,25911595,3
+78575214,25911595,1
+litterearth,25911595,1
+58288224,25911595,1
+125034146,25911595,1
+128622752,25911595,2
+25914351,25911595,-1
+121830698,25911595,5
+poky_yu,25911595,2
+shoooooock,25911595,3
+129035679,25911595,5
+67953627,25911595,5
+65084443,25911595,1
+headofpig,25911595,1
+3035586,25911595,2
+treesear,25911595,3
+103593211,25911595,3
+LYDIA-SHI,25911595,3
+SSismon,25911595,4
+130222270,25911595,4
+77325633,25911595,2
+49521685,25911595,4
+78283787,25911595,2
+49405131,25911595,1
+45274666,25911595,2
+7214513,25911595,2
+49633186,25911595,3
+sthcouldhappen,25911595,1
+rjl1997829,25911595,1
+52803039,25911595,5
+shiwensmile,25911595,3
+125298994,25911595,3
+66613325,25911595,3
+49785218,25911595,4
+1077771,25911595,3
+59608454,25911595,3
+115487364,25911595,3
+48419960,25911595,1
+124640229,25911595,3
+road006,25911595,1
+57372938,25911595,3
+135112639,25911595,2
+Rebecca_618,25911595,2
+nuoweibai11,25911595,3
+49210085,25911595,3
+113088428,25911595,3
+14348118,25911595,1
+134488722,25911595,3
+134883298,25911595,5
+128748521,25911595,4
+49171528,25911595,4
+103277074,25911595,4
+76346345,25911595,1
+46407222,25911595,4
+81412709,25911595,3
+130332901,25911595,4
+84504400,25911595,3
+45547193,25911595,1
+62664539,25911595,3
+Poison.,25911595,-1
+85347919,25911595,2
+4160305,25911595,2
+4059598,25911595,5
+90014790,25911595,3
+cynthia_he,25911595,4
+127950412,25911595,2
+62402215,25911595,2
+76993523,25911595,3
+104276562,25911595,1
+57955489,25911595,2
+105343940,25911595,4
+41194137,25911595,2
+58133063,25911595,3
+131463434,25911595,3
+ameliefei,25911595,4
+77194286,25911595,1
+90611286,25911595,3
+wooh,25911595,5
+GrinGrinGrin,25911595,2
+kingfokings,25911595,1
+63096952,25911595,1
+miaomiaomiao612,25911595,1
+memechayedandan,25911595,1
+35192408,25911595,3
+4265735,25911595,1
+66839348,25911595,1
+133877898,25911595,1
+chris027,25911595,1
+69717474,25911595,4
+suo.gu,25911595,3
+CZ1011,25911595,3
+107369167,25911595,3
+yawenxu,25911595,2
+51259360,25911595,5
+4247653,25911595,4
+125583691,25911595,1
+60080560,25911595,2
+81619869,25911595,4
+69113925,25911595,2
+81619869,25911595,4
+69113925,25911595,2
+131633043,25911595,1
+cabininIthaca,25911595,-1
+114734029,25911595,3
+50664322,25911595,-1
+wsy-101,25911595,3
+3682917,25911595,3
+43188757,25911595,1
+72968470,25911595,5
+nianfangshiba,25911595,3
+81675003,25911595,2
+73445491,25911595,2
+mayturner,25911595,3
+134702987,25911595,3
+michaeliama,25911595,1
+4804994,25911595,2
+tree-mu,25911595,1
+75559231,25911595,1
+123962280,25911595,2
+90795414,25911595,1
+37398408,25911595,3
+dGreenz,25911595,5
+heidongdiantai,25911595,2
+71880775,25911595,4
+nilaoye,25911595,3
+135101671,25911595,5
+50213879,25911595,3
+125847262,25911595,3
+80503569,25911595,2
+cyl1937,25911595,1
+57985657,25911595,3
+135099556,25911595,5
+119171762,25911595,2
+2695629,25911595,1
+79522404,25911595,5
+22105037,25911595,2
+53916007,25911595,-1
+57440805,25911595,2
+50801686,25911595,3
+121875738,25911595,-1
+110189050,25911595,2
+41320733,25911595,2
+87065049,25911595,5
+nanzixiaoche,25911595,3
+50405543,25911595,2
+ylm83,25911595,5
+stella0122,25911595,2
+90925457,25911595,-1
+ldalice,25911595,5
+aaaaasun,25911595,2
+sfroompp,25911595,2
+3981876,25911595,3
+92427949,25911595,1
+63146696,25911595,3
+130692853,25911595,4
+133988097,25911595,2
+73530411,25911595,4
+75909451,25911595,5
+38633281,25911595,2
+65220636,25911595,5
+9386243,25911595,1
+70844899,25911595,1
+Sam-css,25911595,2
+76236179,25911595,1
+DCBinseven,25911595,4
+ruler21san,25911595,-1
+57233366,25911595,-1
+43741839,25911595,2
+46965804,25911595,5
+51604039,25911595,3
+11017625,25911595,3
+54424447,25911595,2
+127457458,25911595,4
+52454899,25911595,5
+75332945,25911595,3
+63136119,25911595,3
+41316861,25911595,2
+100540737,25911595,5
+102611461,25911595,4
+yuxiaoyan0908,25911595,1
+41510845,25911595,3
+42838726,25911595,3
+92379158,25911595,2
+4590078,25911595,1
+82484536,25911595,3
+78941508,25911595,1
+88016668,25911595,1
+Musaiki,25911595,-1
+35384928,25911595,3
+76153086,25911595,1
+130450902,25911595,3
+65489661,25911595,2
+zhousophia,25911595,2
+57435703,25911595,5
+85235150,25911595,3
+121580684,25911595,2
+53144029,25911595,2
+45383601,25911595,5
+Juice8,25911595,1
+fumihiko1985,25911595,2
+3846319,25911595,2
+66698052,25911595,3
+124254697,25911595,3
+115060047,25911595,2
+53120711,25911595,2
+56437151,25911595,3
+greyer,25911595,2
+121073792,25911595,2
+5355596,25911595,3
+75441561,25911595,3
+102279552,25911595,5
+3803805,25911595,3
+Zzpurple,25911595,2
+xiarijinghao,25911595,3
+60720121,25911595,4
+53342408,25911595,5
+80768830,25911595,2
+56478530,25911595,1
+66838621,25911595,1
+128625829,25911595,5
+74533017,25911595,2
+38808960,25911595,3
+48533468,25911595,4
+49419366,25911595,3
+71985165,25911595,1
+xss0791,25911595,3
+65723826,25911595,1
+3118301,25911595,1
+132784007,25911595,1
+6598920,25911595,2
+dashdot,25911595,3
+44655433,25911595,4
+meilipen,25911595,4
+80766328,25911595,4
+119583854,25911595,2
+yeahxcx,25911595,2
+sunflower_zhy,25911595,5
+4158579,25911595,3
+nannan16,25911595,3
+62880392,25911595,1
+122773747,25911595,1
+3857084,25911595,3
+4617671,25911595,4
+58020855,25911595,1
+106141742,25911595,5
+78955356,25911595,2
+109025568,25911595,4
+rehina,25911595,1
+47723160,25911595,5
+23789686,25911595,3
+103445829,25911595,2
+64696511,25911595,1
+79907287,25911595,1
+53734505,25911595,4
+67177395,25911595,3
+luerdelphic,25911595,2
+122254128,25911595,2
+62200135,25911595,2
+RuthTsai,25911595,4
+64568355,25911595,3
+125518351,25911595,5
+bearblindman,25911595,2
+75184056,25911595,4
+42709375,25911595,1
+52148095,25911595,1
+3478406,25911595,4
+awesomearya,25911595,1
+79695986,25911595,2
+alisa_lea,25911595,1
+115774720,25911595,2
+haixiaoyang,25911595,4
+DayoChaplin,25911595,1
+yilanyilan,25911595,3
+131849470,25911595,3
+133703690,25911595,1
+tanguohong,25911595,5
+127082553,25911595,2
+119610444,25911595,2
+71566080,25911595,4
+vitaminlife,25911595,5
+77288985,25911595,4
+82437190,25911595,2
+52775910,25911595,5
+122164611,25911595,2
+CeciliaQueen,25911595,-1
+53612447,25911595,3
+60411524,25911595,-1
+52078518,25911595,5
+79414266,25911595,5
+57958699,25911595,3
+79605736,25911595,2
+4283238,25911595,2
+122060330,25911595,3
+maximilian0522,25911595,4
+saoniankuang,25911595,1
+101982187,25911595,1
+lelouch1205,25911595,5
+72760808,25911595,1
+justD,25911595,3
+feijia127,25911595,3
+sorrow_YMY,25911595,2
+ChicWeirdo,25911595,1
+53798871,25911595,1
+kyleul,25911595,5
+93486979,25911595,3
+69407378,25911595,3
+95852859,25911595,2
+addff,25911595,1
+49382185,25911595,3
+tiffanyji,25911595,5
+54757798,25911595,3
+65208617,25911595,3
+63485325,25911595,5
+Boomer,25911595,3
+53605536,25911595,3
+84973514,25911595,-1
+48525192,25911595,4
+52907345,25911595,2
+133375008,25911595,1
+evamomos,25911595,3
+sugar710,25911595,4
+92781172,25911595,5
+121740137,25911595,5
+anya2011,25911595,2
+122357621,25911595,3
+130650007,25911595,1
+120594858,25911595,3
+76244481,25911595,3
+48929842,25911595,3
+82334570,25911595,3
+jasjaff,25911595,3
+131856288,25911595,1
+62743500,25911595,4
+103491600,25911595,1
+130937635,25911595,1
+63773386,25911595,3
+107284336,25911595,4
+44614198,25911595,3
+59405094,25911595,2
+130421783,25911595,3
+68869311,25911595,4
+84481247,25911595,5
+65369148,25911595,2
+97739031,25911595,1
+lucyshang,25911595,2
+vinegar16,25911595,5
+115707913,25911595,2
+Chikomoumao,25911595,5
+imlyc,25911595,3
+42150537,25911595,3
+49919460,25911595,1
+119806823,25911595,3
+62672201,25911595,1
+89750609,25911595,5
+52708584,25911595,1
+MaiZiJie95,25911595,1
+qijiuzhiyue,25911595,2
+44919145,25911595,3
+66064592,25911595,2
+66064592,25911595,2
+edwardtomb,25911595,3
+49565536,25911595,1
+34728183,25911595,2
+130603786,25911595,4
+49555530,25911595,3
+89996087,25911595,5
+65297808,25911595,-1
+18324848,25911595,4
+78891799,25911595,3
+121484921,25911595,3
+133125055,25911595,2
+45286644,25911595,2
+76624951,25911595,1
+vradica,25911595,3
+66605246,25911595,2
+131036272,25911595,5
+123504720,25911595,2
+65432868,25911595,3
+slcws,25911595,2
+99084503,25911595,5
+58628338,25911595,3
+52229444,25911595,4
+46867363,25911595,4
+132224795,25911595,1
+51149079,25911595,4
+121400385,25911595,5
+131337124,25911595,2
+42800174,25911595,2
+2678642,25911595,1
+52020821,25911595,4
+58927939,25911595,1
+123554879,25911595,1
+fedorajiang,25911595,-1
+92681134,25911595,1
+caiyien,25911595,3
+109632163,25911595,5
+46815070,25911595,2
+102973322,25911595,1
+wenjunlwj,25911595,3
+67852674,25911595,1
+72365862,25911595,4
+134541627,25911595,4
+121410124,25911595,5
+65027033,25911595,2
+49259090,25911595,4
+octopus0831,25911595,3
+91472773,25911595,1
+127278343,25911595,3
+132442832,25911595,1
+128274200,25911595,3
+69164081,25911595,4
+112845230,25911595,5
+128266356,25911595,4
+62954626,25911595,5
+Yb1204,25911595,4
+4154813,25911595,2
+27167785,25911595,1
+62817881,25911595,1
+57590549,25911595,1
+58884603,25911595,5
+105802310,25911595,2
+131329189,25911595,-1
+39477214,25911595,5
+122222690,25911595,4
+4241910,25911595,4
+59413586,25911595,3
+41440625,25911595,1
+102180996,25911595,4
+56291828,25911595,5
+74255192,25911595,5
+wangwanting,25911595,5
+ilikebluewater,25911595,5
+shuizhimuhua,25911595,3
+80430212,25911595,3
+99550697,25911595,3
+62575619,25911595,1
+105808556,25911595,5
+62691710,25911595,5
+45943252,25911595,5
+xilouchen,25911595,3
+tmj3,25911595,4
+46942165,25911595,3
+76081150,25911595,1
+61483312,25911595,5
+82261308,25911595,1
+callmeblack,25911595,1
+42283035,25911595,1
+121097385,25911595,5
+superlionisme,25911595,1
+102772820,25911595,4
+36109432,25911595,1
+ly_yun811,25911595,1
+49891610,25911595,2
+41506209,25911595,3
+60020985,25911595,1
+39034881,25911595,5
+76462779,25911595,1
+44260265,25911595,3
+78326411,25911595,5
+134563962,25911595,4
+121010760,25911595,4
+49295731,25911595,2
+47353624,25911595,-1
+48287617,25911595,4
+75215757,25911595,1
+xueshanfeitu,25911595,1
+Minttiee,25911595,1
+108166513,25911595,5
+62892368,25911595,3
+17106986,25911595,1
+50508303,25911595,3
+126980247,25911595,2
+qingxi52vv,25911595,3
+70858340,25911595,2
+80566761,25911595,3
+79718486,25911595,3
+104630878,25911595,4
+Jensen4ever,25911595,5
+kandyball,25911595,3
+tywan,25911595,2
+FrankWasabi,25911595,2
+61570428,25911595,4
+2339926,25911595,1
+82069865,25911595,1
+Blanche,25911595,3
+27710094,25911595,2
+57545593,25911595,4
+84866154,25911595,3
+134898556,25911595,5
+kakaloveu,25911595,3
+134483925,25911595,3
+48962941,25911595,1
+130804068,25911595,3
+2529003,25911595,-1
+43917006,25911595,-1
+44146004,25911595,4
+55669660,25911595,4
+Aries_synge,25911595,1
+60042378,25911595,4
+air_Klapin,25911595,1
+67559637,25911595,2
+fumeckplz,25911595,1
+helloqxq,25911595,2
+56909243,25911595,3
+65075320,25911595,1
+hyaajhc,25911595,1
+53656219,25911595,3
+53911150,25911595,5
+2701338,25911595,3
+121920760,25911595,2
+81412725,25911595,5
+92119764,25911595,2
+nicofalling,25911595,3
+134612955,25911595,1
+ibx,25911595,3
+89646324,25911595,3
+76999200,25911595,3
+60413316,25911595,1
+beanny,25911595,3
+67689872,25911595,1
+maomao3644,25911595,2
+gujunhao50,25911595,2
+ayogg,25911595,3
+56200146,25911595,3
+49165485,25911595,1
+129276779,25911595,3
+zyycat,25911595,2
+I_love_night,25911595,4
+dolly6084,25911595,3
+131039568,25911595,2
+132099750,25911595,3
+wlpzyc,25911595,3
+47991605,25911595,3
+130777439,25911595,3
+74606368,25911595,4
+122052846,25911595,1
+121917994,25911595,4
+108289346,25911595,3
+chesterchoi,25911595,2
+49905941,25911595,4
+102159203,25911595,2
+4401259,25911595,4
+131966869,25911595,5
+seafans,25911595,4
+21354916,25911595,2
+40559782,25911595,5
+clarattttt,25911595,1
+29741430,25911595,1
+57955511,25911595,5
+54907599,25911595,-1
+129846623,25911595,3
+55755674,25911595,1
+108289411,25911595,-1
+52146626,25911595,3
+1088369,25911595,5
+3024163,25911595,5
+48795051,25911595,1
+61863577,25911595,-1
+momohw,25911595,5
+83242026,25911595,2
+127329113,25911595,3
+29973964,25911595,3
+133716430,25911595,5
+LLILYAN,25911595,4
+83389273,25911595,5
+74510100,25911595,2
+carolyn27,25911595,3
+72607946,25911595,5
+33084545,25911595,5
+91954373,25911595,2
+5355133,25911595,2
+monicayun,25911595,4
+noco,25911595,3
+42296972,25911595,3
+127342704,25911595,4
+49109013,25911595,1
+40517102,25911595,4
+minusculeF,25911595,4
+cristalfish,25911595,3
+castle_leon,25911595,4
+46091388,25911595,2
+hexiaoqin,25911595,3
+67182027,25911595,3
+110925414,25911595,5
+xixihahaxiao,25911595,1
+weinixiongjide,25911595,3
+99707810,25911595,3
+45459664,25911595,3
+michicody,25911595,5
+lemengxilexie,25911595,4
+103078059,25911595,1
+60582285,25911595,3
+Plaka,25911595,2
+anshangwennuan,25911595,3
+sasa926,25911595,3
+shenconan,25911595,4
+4767815,25911595,1
+hwylesley,25911595,2
+16901476,25911595,3
+16901476,25911595,3
+62581194,25911595,1
+27193398,25911595,1
+29411187,25911595,3
+121614690,25911595,5
+52974287,25911595,-1
+58853355,25911595,1
+lunargoddess,25911595,3
+58691394,25911595,3
+60764117,25911595,1
+helloxiaolin,25911595,4
+97444159,25911595,3
+A-sun,25911595,2
+sandimu,25911595,1
+91396306,25911595,4
+94260253,25911595,1
+121620757,25911595,3
+77100547,25911595,5
+yuxiangyun,25911595,4
+shuyali,25911595,2
+62309312,25911595,3
+myriceo2011,25911595,-1
+hendiujiu,25911595,5
+68112808,25911595,5
+78762632,25911595,4
+114017596,25911595,4
+eilyying,25911595,3
+Young.forU,25911595,3
+55598262,25911595,5
+124136324,25911595,2
+nsdmm,25911595,2
+42906066,25911595,5
+128115257,25911595,3
+101860430,25911595,5
+65232993,25911595,3
+nannan1986,25911595,-1
+28786581,25911595,4
+2654102,25911595,4
+rainbowBB,25911595,2
+131908291,25911595,3
+58140285,25911595,1
+aids,25911595,2
+53662568,25911595,3
+bunnyzizi,25911595,3
+mohui,25911595,1
+4602733,25911595,2
+106730683,25911595,2
+61739872,25911595,4
+36757053,25911595,-1
+131496500,25911595,3
+goyankeesgo,25911595,2
+53853797,25911595,2
+57656024,25911595,1
+vince717,25911595,3
+67614484,25911595,2
+2353173,25911595,2
+92584891,25911595,3
+108481476,25911595,3
+37383155,25911595,5
+2623464,25911595,2
+69757574,25933898,4
+73569982,25933898,1
+54814792,25933898,2
+59556078,25933898,3
+33149603,25933898,5
+Zazai,25933898,3
+58242884,25933898,4
+51218838,25933898,4
+mrsdarce,25933898,3
+lescriminels,25933898,4
+75972068,25933898,-1
+64631694,25933898,5
+Gordon649,25933898,5
+j1angvei,25933898,3
+65670813,25933898,4
+52269289,25933898,3
+rainleo410818,25933898,3
+55549387,25933898,3
+126014934,25933898,3
+74707117,25933898,1
+74707117,25933898,1
+yzk2237084,25933898,4
+naigely,25933898,3
+47066484,25933898,3
+57963272,25933898,2
+65108877,25933898,3
+84708478,25933898,1
+134274143,25933898,4
+82096379,25933898,-1
+anwhale,25933898,4
+130558480,25933898,3
+79841047,25933898,3
+127394726,25933898,4
+foleyfan,25933898,4
+51967154,25933898,2
+35986570,25933898,3
+grantqian,25933898,4
+yeyidao,25933898,4
+1902646,25933898,3
+2859857,25933898,5
+jude_chen,25933898,3
+laijiojio,25933898,5
+braxin2007,25933898,2
+muxiaoxu,25933898,5
+particles,25933898,4
+66178804,25933898,3
+67209695,25933898,3
+yomaybe,25933898,3
+134625303,25933898,3
+ys1013,25933898,2
+lefrais,25933898,4
+63675187,25933898,-1
+32144547,25933898,4
+shaochong,25933898,3
+iamxy2,25933898,2
+wawuka,25933898,3
+52561499,25933898,3
+dgxy,25933898,3
+hayden001,25933898,3
+45981981,25933898,4
+63685423,25933898,3
+91222138,25933898,1
+kingiknow,25933898,3
+xuanron,25933898,3
+131125229,25933898,3
+bainiqiu,25933898,-1
+ishtarie,25933898,4
+nerochan,25933898,3
+50831360,25933898,4
+june.q,25933898,2
+choushabi,25933898,3
+70930463,25933898,3
+51353897,25933898,4
+38589654,25933898,3
+3307804,25933898,-1
+52790172,25933898,3
+eason0210,25933898,3
+xiaoshuogege,25933898,5
+54056952,25933898,2
+51282315,25933898,5
+51282315,25933898,5
+ceh19930603,25933898,3
+67083640,25933898,4
+jinjidexiong,25933898,2
+glorymanutd,25933898,3
+sansyx,25933898,3
+55962178,25933898,4
+Tylermrx,25933898,3
+3009607,25933898,-1
+2213454,25933898,4
+leeilo,25933898,4
+mickey1130,25933898,4
+3828576,25933898,1
+14562861,25933898,-1
+irissui,25933898,3
+zyj2nd,25933898,-1
+81894742,25933898,3
+92468807,25933898,3
+64362656,25933898,2
+COCOCOQUEEN,25933898,3
+99697107,25933898,3
+60390807,25933898,2
+55439926,25933898,-1
+1391193,25933898,5
+cynzuela,25933898,-1
+53269895,25933898,2
+57791239,25933898,3
+eric_iiw,25933898,2
+50385651,25933898,3
+ivi1028,25933898,4
+oldmarychou,25933898,1
+3858083,25933898,3
+79728421,25933898,3
+2843167,25933898,4
+47297203,25933898,3
+26713841,25933898,4
+1553963,25933898,2
+38397417,25933898,4
+44399575,25933898,2
+smartviolin,25933898,4
+3920608,25933898,5
+zoeybatman,25933898,2
+Lumiere5200,25933898,3
+18586571,25933898,3
+graceychu,25933898,4
+chaikuan,25933898,3
+yuhanxi,25933898,3
+maggiemars,25933898,3
+v3a10i,25933898,-1
+103222605,25933898,4
+2868760,25933898,3
+43582868,25933898,5
+jezzahe,25933898,-1
+GUYU7,25933898,4
+78500828,25933898,2
+Aretha,25933898,4
+33707224,25933898,4
+shirleyma,25933898,3
+38008208,25933898,4
+cleantha,25933898,1
+120832097,25933898,3
+27927536,25933898,3
+cicici2002,25933898,-1
+53398087,25933898,4
+heng1234567,25933898,4
+Lkongming,25933898,3
+125313881,25933898,-1
+Creep_,25933898,2
+ftjason,25933898,5
+tangtom_com,25933898,4
+63139563,25933898,3
+74863608,25933898,1
+leargirl,25933898,4
+mingming1124530,25933898,3
+yscysc803,25933898,3
+sweethurts,25933898,3
+48976241,25933898,5
+64028775,25933898,4
+yinleo,25933898,3
+liuchuanzi,25933898,2
+89263357,25933898,3
+57606505,25933898,3
+90037986,25933898,3
+3884732,25933898,3
+3083042,25933898,-1
+liushuoyang,25933898,3
+43674596,25933898,3
+66268864,25933898,-1
+57139809,25933898,3
+3202437,25933898,3
+petercat,25933898,2
+45749483,25933898,3
+71918561,25933898,-1
+3114580,25933898,4
+53825178,25933898,2
+metkee,25933898,3
+131909298,25933898,2
+iris15,25933898,2
+60714670,25933898,-1
+yangfu,25933898,3
+80846481,25933898,3
+snow523,25933898,3
+sukimylife,25933898,2
+90891135,25933898,4
+cynthia3922,25933898,3
+62793517,25933898,3
+34005046,25933898,4
+63453904,25933898,5
+bunnyzizi,25933898,3
+36935096,25933898,3
+jhj0918,25933898,3
+56684398,25933898,2
+74141296,25933898,2
+65176170,25933898,5
+35578527,25933898,3
+80613956,25933898,3
+58288224,25933898,3
+dianxuechaoren,25933898,4
+57449962,25933898,3
+49917861,25933898,5
+91912832,25933898,3
+clever_trick,25933898,3
+68093189,25933898,3
+cchestnut,25933898,-1
+1845398,25933898,4
+87821425,25933898,4
+34132575,25933898,4
+yvtoutou,25933898,4
+bearblindman,25933898,2
+daisymouse,25933898,4
+y.weilai,25933898,3
+2670240,25933898,4
+zoe_dabai,25933898,2
+135096530,25933898,3
+SoniaLu-douban,25933898,3
+88951785,25933898,4
+passinio,25933898,5
+chenchangxing,25933898,5
+zero0756,25933898,3
+77625620,25933898,4
+70238352,25933898,3
+1225749,25933898,5
+68534390,25933898,2
+124741216,25933898,4
+80704682,25933898,3
+88844052,25933898,3
+zengx233,25933898,5
+37948273,25933898,2
+yfqc24pippo,25933898,2
+113285477,25933898,4
+56339363,25933898,3
+1943946,25933898,2
+psychefish,25933898,3
+81174351,25933898,4
+70487817,25933898,2
+Sonicmorphine,25933898,3
+sphinx_zhm,25933898,4
+64191038,25933898,3
+Lelio090101,25933898,4
+44457357,25933898,4
+53854833,25933898,3
+ruler21san,25933898,-1
+51457692,25933898,5
+59458875,25933898,5
+2049622,25933898,3
+40027917,25933898,5
+73830337,25933898,4
+strawman81,25933898,2
+71716917,25933898,-1
+62423565,25933898,4
+33528664,25933898,1
+50234092,25933898,-1
+51063521,25933898,5
+81850559,25933898,3
+91790285,25933898,3
+zhoubb,25933898,3
+lovewins2015,25933898,2
+1101928,25933898,2
+53908274,25933898,4
+dirg,25933898,4
+buzhiyuba,25933898,4
+hinnie_addict,25933898,1
+57972218,25933898,3
+58059498,25933898,4
+57639704,25933898,3
+92155502,25933898,4
+huoguo,25933898,-1
+47709338,25933898,3
+ruilixiurui,25933898,5
+xmusicandy,25933898,3
+evanlee2018,25933898,3
+shunong,25933898,3
+zzzyao19960706,25933898,3
+wilsonliu,25933898,3
+Nokia95,25933898,4
+4811269,25933898,3
+newbear,25933898,3
+62406790,25933898,3
+wsz910919,25933898,3
+3120655,25933898,3
+impzz,25933898,-1
+2376300,25933898,2
+79452257,25933898,3
+60420315,25933898,3
+crowtina,25933898,2
+shelleyhsu,25933898,3
+lamber,25933898,3
+128661562,25933898,3
+imoviekobe,25933898,3
+70829890,25933898,4
+tangsongsong,25933898,3
+senlintu,25933898,3
+nangle,25933898,3
+62659146,25933898,2
+119157867,25933898,-1
+137449612,25933898,5
+Yu-Tommy,25933898,5
+leon_howe,25933898,-1
+callmemrcoolman,25933898,3
+netaholic,25933898,3
+rudygiraffe,25933898,3
+98956225,25933898,3
+NicholeN,25933898,4
+longislandiced,25933898,-1
+afterthis,25933898,3
+PIERO1208,25933898,3
+scorates1984,25933898,-1
+chloelone,25933898,3
+li2007,25933898,4
+42149787,25933898,3
+98643202,25933898,-1
+stripes,25933898,4
+63671340,25933898,4
+52961960,25933898,-1
+40164532,25933898,3
+w23,25933898,3
+kp81ndlf,25933898,4
+55885677,25933898,3
+aprilwind_shi,25933898,3
+kulilin,25933898,4
+89451365,25933898,4
+68427539,25933898,3
+76025225,25933898,3
+xxxeleven,25933898,2
+136969391,25933898,4
+aabbccdd,25933898,4
+lephemera,25933898,4
+73299888,25933898,4
+null12345,25933898,4
+59334722,25933898,3
+93469106,25933898,-1
+cilar,25933898,1
+65930256,25933898,3
+44849027,25933898,3
+xiongbear01,25933898,5
+tsoo416,25933898,2
+iamdengdeng,25933898,4
+summermayfly,25933898,3
+82990219,25933898,5
+53486111,25933898,3
+130525600,25933898,4
+uncleradar,25933898,3
+xishy,25933898,3
+52765670,25933898,4
+82823263,25933898,2
+badblueeyes,25933898,3
+podolski,25933898,4
+adonis_zhang,25933898,-1
+47660748,25933898,4
+se7endoubt,25933898,-1
+66584790,25933898,3
+120652679,25933898,4
+dashiontang,25933898,-1
+63730928,25933898,2
+veverlee,25933898,3
+sxy921026,25933898,5
+luhua,25933898,5
+112290913,25933898,1
+sylvainhe,25933898,4
+huanghunzhiniao,25933898,4
+1115920,25933898,5
+constantinechia,25933898,4
+sunkyeast,25933898,3
+Carlaaaaa,25933898,3
+95968737,25933898,3
+2645974,25933898,3
+57998290,25933898,3
+42368147,25933898,3
+2979287,25933898,5
+sitwaiting,25933898,3
+ricechow,25933898,2
+ILWTFT,25933898,4
+7542909,25933898,3
+wangdoudou20,25933898,4
+KooK-Psycho,25933898,-1
+marcamoy,25933898,3
+74139024,25933898,4
+1153279,25933898,2
+48687824,25933898,3
+imgsy,25933898,4
+MaclovenZD,25933898,3
+66091959,25933898,4
+55617091,25933898,2
+42600622,25933898,-1
+langlangtalent,25933898,3
+Lulu-chips,25933898,2
+62944813,25933898,3
+71929336,25933898,4
+91808189,25933898,3
+60406508,25933898,2
+lidesheng,25933898,-1
+DizzyFox,25933898,3
+62906196,25933898,4
+x5,25933898,5
+44844360,25933898,4
+yizhao,25933898,3
+64880714,25933898,3
+58505287,25933898,3
+scarlet_,25933898,4
+53247764,25933898,3
+delmar,25933898,1
+63422177,25933898,2
+anniehoneys,25933898,4
+heronever,25933898,3
+chloe_huang,25933898,2
+grave-,25933898,1
+sfroompp,25933898,-1
+tmbbf,25933898,4
+75902309,25933898,3
+41555500,25933898,3
+roseluo,25933898,-1
+71876309,25933898,3
+huskie,25933898,5
+127728111,25933898,3
+2714941,25933898,3
+65228130,25933898,-1
+lea_x,25933898,3
+earthroom,25933898,3
+4212088,25933898,3
+pogostar,25933898,2
+kimidon,25933898,3
+yinxiang,25933898,4
+130355076,25933898,4
+43087284,25933898,4
+suyanz,25933898,3
+54845530,25933898,1
+terenceyibo,25933898,4
+GAYHOUSE,25933898,-1
+54717954,25933898,3
+heywendi,25933898,-1
+xxyilun,25933898,2
+starspell,25933898,-1
+115725120,25933898,4
+terry_f,25933898,-1
+kimax,25933898,2
+51974103,25933898,3
+violetmelody,25933898,2
+joywuyan,25933898,3
+softshock,25933898,3
+41788667,25933898,5
+Echoseptember,25933898,4
+2620527,25933898,4
+1456706,25933898,2
+zillyromantic,25933898,3
+johnnietomay,25933898,4
+motongg,25933898,3
+ECbunny,25933898,5
+3540441,25933898,3
+samantha-jy,25933898,2
+konglingyiQQ,25933898,5
+50023640,25933898,4
+alisa,25933898,1
+fxoc,25933898,3
+52951268,25933898,3
+sirene,25933898,3
+takahashili,25933898,3
+52679281,25933898,2
+backinblack,25933898,2
+5617300,25933898,3
+requeen,25933898,-1
+JunSta,25933898,2
+et2o,25933898,1
+31713107,25933898,3
+2664199,25933898,1
+tomber,25933898,-1
+55694141,25933898,3
+79272694,25933898,3
+jiduohuanle,25933898,4
+realpoubelle,25933898,4
+notexistatall,25933898,5
+gloriakwok,25933898,5
+loveirina,25933898,4
+peachtao,25933898,1
+15912473,25933898,3
+18851959,25933898,4
+rainerrilke,25933898,5
+ellestmorte,25933898,-1
+Moretoless,25933898,4
+hypnoticboy,25933898,3
+scvsh,25933898,2
+scvsh,25933898,2
+2548730,25933898,4
+amhooo,25933898,5
+conanemily,25933898,3
+53477720,25933898,3
+zhangyired,25933898,3
+arleneshelly,25933898,3
+45360816,25933898,5
+62927121,25933898,3
+cabaret,25933898,2
+CaptBastard,25933898,4
+xiaopang1106,25933898,4
+exploremore,25933898,3
+ruo1996,25933898,2
+61823510,25933898,3
+babydog,25933898,-1
+pigeye,25933898,4
+hexiaoqin,25933898,4
+yangshuangblue,25933898,1
+61718141,25933898,3
+Pabalee,25933898,3
+JoshLee525,25933898,3
+the_stream,25933898,2
+58930883,25933898,-1
+42132535,25933898,4
+nijibaby,25933898,3
+zhongshanaoli,25933898,4
+53644977,25933898,4
+luzhiyu,25933898,4
+Leslie221,25933898,3
+ohahahu,25933898,4
+YellowDi,25933898,4
+Gos_mirror,25933898,4
+121196732,25933898,3
+1432508,25933898,4
+frozenwind,25933898,4
+4635910,25933898,3
+73064038,25933898,3
+64978016,25933898,3
+ElephantBoy,25933898,4
+ElephantBoy,25933898,4
+oweuuu,25933898,-1
+57111606,25933898,3
+matt33,25933898,3
+shahua,25933898,3
+FFrainbow,25933898,4
+constancef,25933898,3
+69432585,25933898,5
+66766065,25933898,4
+holy-fishman,25933898,4
+46856109,25933898,5
+yangqiaohe,25933898,3
+balelovesqian,25933898,3
+37676493,25933898,4
+57084778,25933898,1
+l00000000,25933898,3
+boffin,25933898,2
+lily_1002,25933898,4
+62285123,25933898,3
+53668470,25933898,3
+69757574,25933898,4
+73569982,25933898,1
+54814792,25933898,2
+59556078,25933898,3
+33149603,25933898,5
+Zazai,25933898,3
+58242884,25933898,4
+51218838,25933898,4
+mrsdarce,25933898,3
+lescriminels,25933898,4
+75972068,25933898,-1
+64631694,25933898,5
+Gordon649,25933898,5
+j1angvei,25933898,3
+65670813,25933898,4
+52269289,25933898,3
+rainleo410818,25933898,3
+55549387,25933898,3
+126014934,25933898,3
+74707117,25933898,1
+28271170,25763555,2
+wcngsjb,25763555,4
+65108877,25763555,4
+4200336,25763555,3
+65670813,25763555,2
+eefee,25763555,4
+1480836,25763555,4
+2822373,25763555,-1
+52689721,25763555,3
+103793768,25763555,3
+134503726,25763555,4
+sansyx,25763555,4
+62375548,25763555,3
+89787162,25763555,3
+77074010,25763555,2
+JasonGray58,25763555,4
+136133409,25763555,3
+4118910,25763555,3
+39648072,25763555,3
+44417635,25763555,2
+14830211,25763555,5
+57460299,25763555,4
+hanlei,25763555,4
+wena,25763555,3
+34186094,25763555,3
+50256775,25763555,3
+46139461,25763555,4
+96505956,25763555,1
+Just_vv,25763555,5
+littlejuice,25763555,3
+red.,25763555,2
+70370304,25763555,3
+38150776,25763555,-1
+acbc115,25763555,2
+95261659,25763555,2
+3456645,25763555,3
+54581905,25763555,1
+80003827,25763555,2
+69273736,25763555,3
+79954624,25763555,2
+88926842,25763555,3
+104600854,25763555,2
+fairyhui521,25763555,3
+119420162,25763555,4
+134625303,25763555,2
+76393487,25763555,4
+56281076,25763555,4
+JaceJing,25763555,3
+4889156,25763555,4
+hualunxxl,25763555,-1
+46065523,25763555,4
+128991169,25763555,4
+59610543,25763555,3
+anarchy4,25763555,3
+3969292,25763555,3
+68592556,25763555,2
+30343883,25763555,5
+G_Matthew,25763555,2
+52698885,25763555,2
+55550016,25763555,3
+MudDog,25763555,3
+simontien,25763555,4
+63714261,25763555,4
+41017931,25763555,3
+10539580,25763555,3
+89103199,25763555,2
+qichengshiwo,25763555,3
+120547538,25763555,2
+QQ3BlueRose,25763555,4
+36342464,25763555,3
+wuyunoy,25763555,2
+56789007,25763555,3
+65162469,25763555,4
+phoebeface,25763555,-1
+chenning3288,25763555,2
+5854721,25763555,3
+84948949,25763555,1
+39720434,25763555,1
+105433262,25763555,4
+56970395,25763555,2
+56970395,25763555,2
+48834090,25763555,3
+joyjay,25763555,2
+1773768,25763555,3
+3705182,25763555,3
+bigredapple,25763555,3
+50493709,25763555,3
+13600762,25763555,1
+48973534,25763555,2
+36949590,25763555,-1
+72086305,25763555,2
+81506415,25763555,4
+45858265,25763555,3
+25282878,25763555,1
+juzeren,25763555,4
+fengzaifei,25763555,2
+cat_yr,25763555,3
+andrpirl,25763555,5
+127180672,25763555,3
+67950329,25763555,3
+littleshy,25763555,4
+66584790,25763555,3
+2076258,25763555,3
+63777033,25763555,3
+xuancaidanqing,25763555,3
+59144379,25763555,4
+lingqingchun,25763555,-1
+56917736,25763555,2
+S-Christ,25763555,1
+hyapple,25763555,3
+34592808,25763555,3
+joybang,25763555,4
+3833369,25763555,5
+63744362,25763555,3
+60664918,25763555,4
+65125200,25763555,3
+132392850,25763555,1
+70990506,25763555,3
+77774632,25763555,1
+imoioi,25763555,5
+losrfuu,25763555,4
+ideyes,25763555,3
+89487181,25763555,3
+59556078,25763555,2
+Artiewatchmovie,25763555,4
+ivylan,25763555,3
+53833067,25763555,2
+Sophieven,25763555,3
+15515197,25763555,5
+63287380,25763555,-1
+mrfengge,25763555,3
+47546589,25763555,3
+2265138,25763555,5
+PASSMEBY,25763555,4
+136594496,25763555,3
+134156002,25763555,1
+5580906,25763555,-1
+136210668,25763555,3
+49326623,25763555,3
+dsqingdao,25763555,3
+88481116,25763555,3
+shahua,25763555,2
+1435513,25763555,3
+65123381,25763555,4
+athenasaga,25763555,4
+53988209,25763555,3
+46004647,25763555,5
+51840690,25763555,4
+79827389,25763555,3
+54794752,25763555,3
+piccl,25763555,2
+45069650,25763555,2
+43061716,25763555,3
+11189422,25763555,2
+75667669,25763555,2
+34571461,25763555,2
+2187326,25763555,3
+82312414,25763555,3
+RivenZhong,25763555,3
+4153237,25763555,3
+18586571,25763555,3
+LoveHugo,25763555,2
+yangqihang,25763555,2
+101452668,25763555,1
+82934026,25763555,2
+movieview,25763555,2
+97757646,25763555,3
+136942011,25763555,2
+52308161,25763555,3
+fallenisland,25763555,3
+98956225,25763555,1
+yueyuedad1972,25763555,4
+leiii,25763555,3
+cyrus_wong,25763555,2
+1255549,25763555,4
+119583854,25763555,4
+54107765,25763555,3
+caocaoa,25763555,1
+58112773,25763555,3
+michaelya,25763555,2
+81998298,25763555,2
+48276999,25763555,3
+xiaoxiao0504,25763555,-1
+57742250,25763555,3
+libangsi,25763555,3
+125553548,25763555,3
+EvilCat,25763555,5
+81645668,25763555,4
+131632042,25763555,3
+54045751,25763555,3
+49825242,25763555,2
+jieyaren,25763555,2
+casoon,25763555,3
+135724867,25763555,2
+3571623,25763555,2
+DrGonzo,25763555,2
+130132099,25763555,2
+H897120417,25763555,4
+Talushen,25763555,4
+Zizou_Vam,25763555,2
+Zizou_Vam,25763555,2
+3579800,25763555,3
+63760065,25763555,2
+popgustudio,25763555,3
+69430764,25763555,3
+58526834,25763555,3
+2718163,25763555,3
+55554354,25763555,4
+shinysky,25763555,3
+wuwuzizi,25763555,4
+69223309,25763555,5
+lanyangyangdecc,25763555,2
+rorschach_,25763555,1
+44833816,25763555,2
+lauer,25763555,3
+56739185,25763555,3
+81336001,25763555,1
+78198155,25763555,4
+60140602,25763555,2
+25676059,25763555,4
+jinhoo,25763555,4
+liuchuanzi,25763555,3
+redd318,25763555,3
+46014273,25763555,2
+109273896,25763555,2
+78777736,25763555,4
+58497726,25763555,3
+43286397,25763555,4
+14247291,25763555,3
+100091686,25763555,2
+princess921129,25763555,3
+78667352,25763555,4
+3006385,25763555,1
+jaycee103,25763555,3
+50264279,25763555,-1
+arista9,25763555,5
+cappuccino-jl,25763555,3
+59640195,25763555,2
+sussylee,25763555,3
+roy325,25763555,3
+roy325,25763555,3
+Injurer,25763555,3
+grannys_bear,25763555,3
+47461599,25763555,2
+2016454,25763555,4
+Simon_Wu,25763555,3
+27928039,25763555,2
+63146553,25763555,2
+netkr,25763555,2
+81143099,25763555,2
+72972634,25763555,3
+81698816,25763555,3
+Youoen,25763555,2
+lovewaiter,25763555,4
+HowShouldIKnow,25763555,3
+44975625,25763555,4
+Hyke,25763555,4
+1981762,25763555,1
+4134812,25763555,3
+50919323,25763555,3
+72030393,25763555,3
+36735001,25763555,3
+12360363,25763555,3
+BarbieJ,25763555,4
+66792345,25763555,2
+yvone1220,25763555,3
+131909298,25763555,3
+yuanyang1100,25763555,3
+50474016,25763555,2
+windyboy,25763555,4
+32791958,25763555,3
+61541011,25763555,3
+45520180,25763555,2
+blacktea077,25763555,3
+71217329,25763555,4
+gooo111,25763555,4
+63779528,25763555,3
+clementinetsu,25763555,2
+55630387,25763555,2
+eaufavor,25763555,2
+eaufavor,25763555,2
+xianxianchen,25763555,4
+mian11,25763555,3
+xiaomo1,25763555,2
+79181644,25763555,4
+84708478,25763555,3
+125971465,25763555,3
+T.Shinoda,25763555,1
+63506712,25763555,2
+moesolo,25763555,2
+nicdone,25763555,4
+82619026,25763555,5
+54506898,25763555,1
+mrlp,25763555,4
+62862861,25763555,3
+88101207,25763555,3
+47877779,25763555,4
+coldcall,25763555,3
+1455801,25763555,3
+1132028,25763555,4
+monetsun,25763555,5
+Son47,25763555,3
+92775477,25763555,4
+minney,25763555,3
+34507670,25763555,3
+2600693,25763555,2
+108481476,25763555,4
+m_l,25763555,4
+52961960,25763555,3
+94032593,25763555,2
+53936570,25763555,4
+50952733,25763555,1
+35670312,25763555,2
+4624620,25763555,2
+36508353,25763555,3
+3491773,25763555,4
+61394930,25763555,4
+hx615,25763555,1
+3351961,25763555,4
+65915294,25763555,4
+81757410,25763555,2
+allanlou,25763555,2
+jiajunzhi,25763555,4
+57501453,25763555,4
+3242190,25763555,4
+70204811,25763555,4
+106663926,25763555,2
+115856592,25763555,4
+74368485,25763555,5
+79879080,25763555,4
+40659159,25763555,3
+37751161,25763555,2
+anniebridge,25763555,4
+ekiz,25763555,4
+Cryostatgirl,25763555,4
+echo520f1,25763555,3
+gojin,25763555,3
+49988296,25763555,3
+orangeT,25763555,3
+1892627,25763555,2
+Accordingly,25763555,4
+2305028,25763555,3
+137061442,25763555,3
+64618863,25763555,3
+47481448,25763555,2
+chemicalromance,25763555,4
+AmadHatter,25763555,2
+jianyadaodao,25763555,4
+60608137,25763555,3
+sickx11,25763555,4
+69834668,25763555,5
+133046698,25763555,4
+47026147,25763555,3
+1495292,25763555,2
+136063439,25763555,3
+35546848,25763555,3
+43648335,25763555,3
+Optimus-Prime,25763555,2
+64776383,25763555,4
+37402473,25763555,3
+zykmilan,25763555,4
+kerorocao,25763555,2
+45691344,25763555,5
+3752454,25763555,3
+qiaomai,25763555,3
+pierrewrs,25763555,4
+15183757,25763555,2
+50249739,25763555,3
+75007342,25763555,3
+54141112,25763555,3
+50306536,25763555,5
+51883716,25763555,2
+121850166,25763555,3
+1259506,25763555,2
+64585974,25763555,4
+Acinom,25763555,4
+99542809,25763555,2
+mmdrx,25763555,5
+43979908,25763555,3
+51736421,25763555,-1
+96044338,25763555,3
+76280539,25763555,4
+135599438,25763555,3
+87673698,25763555,2
+kevin_lu1001,25763555,3
+63223538,25763555,3
+128902296,25763555,3
+59623092,25763555,2
+1073807,25763555,3
+53518992,25763555,2
+46231024,25763555,3
+ice_lin,25763555,1
+wangzhy,25763555,5
+67353177,25763555,3
+fivero,25763555,3
+69152007,25763555,4
+75437667,25763555,3
+85143816,25763555,4
+60861914,25763555,2
+Smeagol,25763555,3
+98500983,25763555,1
+Raging,25763555,-1
+immmmm,25763555,4
+55617091,25763555,3
+115511487,25763555,4
+zhangjian_1q26,25763555,2
+93606686,25763555,1
+Sparkyue,25763555,5
+jingxi259,25763555,-1
+99977887,25763555,4
+48866539,25763555,4
+yangcht,25763555,3
+4470248,25763555,2
+sunshinean2000,25763555,4
+Martin-Zhang,25763555,3
+47407418,25763555,3
+44006704,25763555,3
+foleyfan,25763555,3
+zcsgdbd,25763555,2
+119225276,25763555,3
+119225276,25763555,3
+3540441,25763555,3
+4804994,25763555,2
+62515963,25763555,2
+65699766,25763555,4
+48787128,25763555,4
+38949842,25763555,4
+67732575,25763555,1
+yuanyi2557507,25763555,4
+gintokiyin,25763555,4
+pbc0615,25763555,3
+41555500,25763555,1
+51243076,25763555,3
+wsyzoscar,25763555,4
+74418627,25763555,1
+bluesorry,25763555,3
+jbecks,25763555,4
+82871013,25763555,4
+merryliang,25763555,3
+92637548,25763555,3
+115051698,25763555,3
+sable_in_red,25763555,3
+124640229,25763555,2
+49384394,25763555,2
+97693514,25763555,3
+130952703,25763555,3
+100710908,25763555,3
+aki0726,25763555,4
+kimomo,25763555,3
+34529480,25763555,1
+57615935,25763555,3
+buzhiyuba,25763555,-1
+65178670,25763555,3
+Sigrdrifumal,25763555,4
+ryod,25763555,3
+XLAngel,25763555,4
+58956237,25763555,1
+2643418,25763555,4
+MOVIE--KO,25763555,3
+meijiangshi,25763555,3
+2444385,25763555,4
+44236825,25763555,2
+2979287,25763555,3
+4758428,25763555,4
+96000077,25763555,3
+bluesky1314,25763555,1
+38821099,25763555,4
+83295870,25763555,4
+48491798,25763555,3
+1517086,25763555,1
+73836336,25763555,3
+souring,25763555,2
+70681712,25763555,4
+42539278,25763555,2
+134463446,25763555,2
+cedrical,25763555,2
+63617641,25763555,3
+zepwhen,25763555,3
+2374657,25763555,3
+deactivate,25763555,-1
+yeahqiang,25763555,2
+kevi2dan,25763555,4
+2920373,25763555,2
+sherayang,25763555,4
+bankeed,25763555,3
+xixiwai,25763555,3
+youknow810,25763555,3
+62762880,25763555,4
+17991181,25763555,2
+79104110,25763555,4
+127675582,25763555,1
+128578300,25763555,3
+103480987,25763555,2
+77235154,25763555,2
+115779630,25763555,4
+3063479,25763555,3
+buliang12,25763555,5
+54336845,25763555,5
+52444442,25763555,5
+135956704,25763555,1
+53443769,25763555,3
+135981815,25763555,3
+2386302,25763555,3
+48079918,25763555,3
+4114969,25763555,3
+49369904,25763555,4
+134271856,25763555,3
+heydzi,25763555,2
+76689420,25763555,2
+IMINCR,25763555,-1
+ben_nsr,25763555,2
+2577675,25763555,3
+cynthia3922,25763555,3
+Light_L,25763555,-1
+54753933,25763555,4
+41474557,25763555,3
+2917441,25763555,2
+beckham7,25763555,4
+xj2006062,25763555,4
+35905722,25763555,3
+73515417,25763555,2
+58630944,25763555,3
+2033181,25763555,2
+79561572,25763555,5
+42139869,25763555,3
+donkeylv,25763555,3
+2409685,25763555,3
+whowho2008,25763555,3
+26482350,25763555,4
+58552525,25763555,4
+59718039,25763555,3
+65784611,25763555,2
+125538893,25763555,5
+tianranzijiegou,25763555,3
+shelleyhsu,25763555,3
+4879557,25763555,1
+39015968,25763555,3
+llllllazy,25763555,3
+57892875,25763555,-1
+49145944,25763555,4
+53935985,25763555,3
+Vivi17,25763555,4
+71479420,25763555,3
+134417369,25763555,3
+1343384,25763555,4
+leonardodicapri,25763555,4
+be1103,25763555,4
+Sigrid_Lu,25763555,2
+2429292,25763555,3
+38397417,25763555,2
+58030741,25763555,3
+31914408,25763555,2
+101503219,25763555,2
+68700662,25763555,3
+jkk0620,25763555,3
+46615871,25763555,1
+41640054,25763555,-1
+46572945,25763555,2
+41287969,25763555,3
+paradis1230,25763555,4
+88938201,25763555,3
+xyc1987,25763555,4
+1900968,25763555,-1
+49266863,25763555,2
+43270152,25763555,4
+34108107,25763555,3
+43886305,25763555,3
+oyanglulu,25763555,4
+37424688,25763555,2
+56068033,25763555,3
+103039257,25763555,1
+craigga,25763555,4
+f91_82,25763555,2
+36578071,25763555,4
+47334850,25763555,3
+1831746,25763555,3
+FK621,25763555,3
+59538557,25763555,2
+bearblindman,25763555,3
+selenesun,25763555,3
+130720860,25763555,4
+kitchenbee,25763555,3
+67516737,25763555,3
+xiaoqianquan,25763555,4
+47594544,25763555,4
+3874094,25763555,2
+killian9999,25763555,3
+yzr8979,25763555,2
+122113976,25763555,2
+90972400,25763555,2
+43393053,25763555,2
+126331855,25763555,3
+60656678,25763555,4
+76467871,25763555,2
+stellawoo,25763555,3
+41634233,25763555,3
+fakeyouout,25763555,4
+heartbreakerkid,25763555,1
+63033488,25763555,4
+57811548,25763555,3
+tuotuodetuo,25763555,3
+68966546,25763555,3
+Sh0uTeR,25763555,2
+49026093,25763555,4
+4690982,25763555,3
+78358394,25763555,3
+121332582,25763555,5
+83513831,25763555,3
+53710950,25763555,2
+dgawon,25763555,4
+95768578,25763555,3
+sskllt,25763555,3
+67494422,25763555,4
+63120716,25763555,2
+126980247,25763555,3
+missdepp,25763555,3
+48509446,25763555,3
+52399993,25763555,1
+luanma1977,25763555,3
+128095249,25763555,4
+chamori,25763555,3
+61392222,25763555,5
+70806910,25763555,-1
+74013127,25763555,-1
+59370142,25763555,2
+74249680,25763555,4
+53697760,25763555,5
+76931391,25763555,3
+107586571,25763555,3
+129032954,25763555,4
+59648249,25763555,3
+xuyinaxxxxxxx,25763555,3
+134402728,25763555,4
+xuliking,25763555,4
+132192126,25763555,3
+shanshanyouli,25763555,3
+2106137,25763555,-1
+pandorapple,25763555,2
+69454424,25763555,4
+faye.yu,25763555,4
+48955317,25763555,3
+43909634,25763555,3
+M.N.,25763555,4
+61030127,25763555,4
+sheldonkao,25763555,3
+1369113,25763555,2
+68835916,25763555,4
+47120473,25763555,5
+61415856,25763555,2
+102912620,25763555,4
+EchinJS,25763555,5
+moonbird39,25763555,3
+92806168,25763555,4
+4296925,25763555,4
+qixiaotun,25763555,3
+xubeisi,25763555,3
+70545730,25763555,5
+anniehoneys,25763555,3
+44182814,25763555,3
+64110534,25763555,4
+disheron,25763555,2
+48507134,25763555,3
+56906475,25763555,3
+83140683,25763555,2
+51197261,25763555,3
+ahuasist,25763555,2
+joycelam,25763555,2
+54994533,25763555,3
+57025568,25763555,2
+61958445,25763555,5
+ricy-rice,25763555,5
+eddychaw,25763555,1
+64779909,25763555,4
+61726273,25763555,1
+Fienix,25763555,4
+w23,25763555,4
+wizecho,25763555,5
+52582202,25763555,4
+130248738,25763555,2
+axio,25763555,3
+45586906,25763555,3
+97517593,25763555,2
+sunshinezz1991,25763555,3
+48047032,25763555,2
+73011629,25763555,4
+89758966,25763555,3
+53024139,25763555,3
+76077212,25763555,5
+fuzyu,25763555,3
+48065972,25763555,2
+13295115,25763555,5
+vivifyvivi,25763555,3
+62778052,25763555,3
+4407814,25763555,2
+colorwind,25763555,3
+133471355,25763555,3
+73064038,25763555,3
+3440740,25763555,4
+racheal0711,25763555,-1
+callmemrcoolman,25763555,-1
+callmemrcoolman,25763555,-1
+67653468,25763555,3
+59957135,25763555,3
+62242784,25763555,4
+70794815,25763555,3
+80715123,25763555,3
+bjoneday,25763555,5
+121920760,25763555,2
+59383084,25763555,4
+tinaq,25763555,3
+Sylar10,25763555,2
+nalana,25763555,3
+76621126,25763555,3
+Cgangs,25763555,4
+32251971,25763555,3
+agon,25763555,3
+Plumed__Serpent,25763555,3
+49273310,25763555,3
+50190840,25763555,3
+67319725,25763555,3
+134340529,25763555,3
+kevin5,25763555,2
+luckyanc,25763555,3
+64120834,25763555,3
+90587256,25763555,3
+121364693,25763555,2
+37840696,25763555,3
+63822026,25763555,3
+67072789,25763555,2
+Irivin,25763555,3
+54083120,25763555,3
+57580969,25763555,2
+38371308,25763555,4
+63612050,25763555,3
+xjksama,25763555,3
+junqli86,25763555,3
+41471656,25763555,3
+PepsiPussy,25763555,4
+dingyidingyi,25763555,4
+48877341,25763555,4
+mimosa_tara,25763555,-1
+summer2lin,25763555,4
+deathnroll,25763555,5
+re-poko,25763555,4
+92805867,25763555,4
+69393592,25763555,4
+62524902,25763555,3
+erobin,25763555,2
+66057217,25763555,3
+48943337,25763555,5
+3904908,25763555,2
+QlDoors,25763555,2
+alonetime,25763555,-1
+129137675,25763555,2
+49659191,25763555,3
+59695133,25763555,3
+dirtywest,25763555,3
+53795476,25763555,1
+TangAnAnn,25763555,4
+16928498,25763555,2
+nbyuan,25763555,3
+31072510,25763555,4
+121844395,25763555,1
+chentianle,25763555,4
+65359947,25763555,3
+71946766,25763555,-1
+81370561,25763555,3
+64009647,25763555,3
+anya2011,25763555,2
+80797429,25763555,2
+miaowubaby,25763555,-1
+45490337,25763555,2
+81391880,25763555,3
+69356155,25763555,3
+jsc528,25763555,4
+3818284,25763555,4
+60860847,25763555,2
+64273735,25763555,2
+46534834,25763555,3
+76999200,25763555,3
+51606142,25763555,3
+36627836,25763555,3
+sho2mon4e4y,25763555,3
+50747236,25763555,3
+13833588,25763555,3
+52872697,25763555,4
+85008065,25763555,3
+LilC,25763555,3
+70043510,25763555,4
+dorky,25763555,3
+52529736,25763555,4
+49550156,25763555,3
+54622662,25763555,2
+126758242,25763555,2
+56071242,25763555,3
+65029025,25763555,2
+35499398,25763555,1
+122605310,25763555,2
+1066031,25763555,3
+48480567,25763555,2
+132798268,25763555,5
+35294199,25763555,4
+100169550,25763555,5
+50009835,25763555,1
+88690250,25763555,3
+124142241,25763555,3
+87909103,25763555,4
+ohohzhizhi,25763555,2
+yoyodesmile,25763555,3
+heyowl,25763555,2
+38702110,25763555,4
+69694769,25763555,2
+3142312,25763555,3
+68706440,25763555,3
+61779592,25763555,3
+LLsupportsJIM,25763555,3
+IloveyouDanica,25763555,3
+reeboir,25763555,2
+thisisdaisy,25763555,2
+49812770,25763555,2
+50570726,25763555,3
+kimidon,25763555,3
+holyshitzhy,25763555,4
+70214878,25763555,3
+11508329,25763555,-1
+64114079,25763555,3
+yoshimi,25763555,5
+54186627,25763555,3
+kona,25763555,3
+nocturnelee,25763555,2
+45238478,25763555,2
+52470011,25763555,3
+52848812,25763555,5
+Godot0108,25763555,3
+29433181,25763555,3
+cl20lc,25763555,3
+lingyun93,25763555,3
+Chrismade,25763555,4
+1795295,25763555,2
+64723907,25763555,5
+64723907,25763555,5
+izaijin,25763555,4
+4637828,25763555,2
+3545976,25763555,3
+lunaa,25763555,4
+79354740,25763555,3
+44849027,25763555,5
+81404706,25763555,3
+27199413,25763555,3
+misayxt,25763555,1
+112941907,25763555,2
+angelababy_,25763555,3
+40684892,25763555,2
+134434591,25763555,2
+52876797,25763555,4
+tomhu,25763555,3
+troublemakerjoy,25763555,2
+4520667,25763555,4
+lanodg,25763555,3
+40572936,25763555,2
+Luxiyalu,25763555,-1
+52519025,25763555,3
+60919975,25763555,3
+abin520918,25763555,5
+xuaoling,25763555,2
+beanny,25763555,3
+40701239,25763555,2
+67679868,25763555,3
+46287060,25763555,4
+yuehuanyu,25763555,5
+61311789,25763555,2
+holy-fishman,25763555,3
+Jodiezhang,25763555,3
+justsoso80s,25763555,4
+46845668,25763555,2
+125663520,25763555,4
+berialgreener,25763555,4
+LeePuiyee,25763555,5
+44862479,25763555,4
+kp81ndlf,25763555,3
+70119569,25763555,3
+115919297,25763555,2
+92468807,25763555,2
+72397969,25763555,-1
+Heyimwalker,25763555,3
+48577098,25763555,5
+ys1013,25763555,2
+pandoranavi,25763555,3
+62877248,25763555,3
+btone0808,25763555,3
+54158411,25763555,3
+merengue,25763555,4
+56776280,25763555,1
+shinemypolaris,25763555,4
+87651171,25763555,2
+hdx1991,25763555,2
+34727533,25763555,3
+74607366,25763555,-1
+49269031,25763555,2
+134563962,25763555,3
+57088195,25763555,2
+1886385,25763555,3
+132277209,25763555,3
+48770075,25763555,3
+63422177,25763555,2
+62318523,25763555,3
+kuroda_sakaki,25763555,3
+TalkChan,25763555,3
+47218828,25763555,3
+hollysisland,25763555,1
+58059498,25763555,3
+75913868,25763555,4
+54860114,25763555,2
+71235824,25763555,1
+problemchildren,25763555,4
+60854544,25763555,4
+133190465,25763555,2
+119262226,25763555,1
+59253003,25763555,4
+93476152,25763555,4
+82144608,25763555,3
+gavinturkey,25763555,3
+45383615,25763555,-1
+89700756,25763555,4
+103497855,25763555,3
+moradin,25763555,2
+icloudy,25763555,4
+56660352,25763555,3
+zhoujiewu,25763555,2
+116718171,25763555,3
+austinswift,25763555,3
+65930256,25763555,3
+3184552,25763555,4
+am2.5,25763555,4
+44504599,25763555,2
+ruo1996,25763555,3
+Ada_quan,25763555,-1
+51004773,25763555,4
+45291333,25763555,2
+52765670,25763555,5
+DangerRose,25763555,4
+92348000,25763555,4
+56396911,25763555,3
+tang516,25763555,4
+47874303,25763555,3
+74783952,25763555,2
+49048693,25763555,4
+vincentjones,25763555,3
+65400706,25763555,3
+87222005,25763555,3
+xiqi,25763555,4
+121917998,25763555,2
+amberose,25763555,3
+44580751,25763555,5
+ILWTFT,25763555,2
+MihoKomatsu,25763555,2
+53247764,25763555,3
+summerly,25763555,3
+stevecarell,25763555,3
+wildold,25763555,4
+2309931,25763555,4
+72580043,25763555,1
+113124571,25763555,4
+14791938,25763555,4
+43522692,25763555,-1
+vincet,25763555,4
+sevengin,25763555,4
+60241275,25763555,1
+4340710,25763555,2
+114034263,25763555,4
+simonyao,25763555,2
+3422449,25763555,4
+50118085,25763555,3
+56523090,25763555,4
+35963638,25763555,3
+eyeslegend,25763555,3
+49322454,25763555,2
+5580630,25763555,3
+55604474,25763555,3
+2220298,25763555,3
+rainerrilke,25763555,3
+sancosmos,25763555,3
+joywuyan,25763555,4
+65079476,25763555,3
+wonderfultimes,25763555,4
+lunamu,25763555,3
+fuckinghate,25763555,3
+runawayZXY,25763555,3
+131838639,25763555,3
+silentbean,25763555,3
+chachaissherry,25763555,4
+66967830,25763555,4
+44576253,25763555,3
+violette,25763555,3
+1359052,25763555,2
+jasontodd,25763555,4
+haimengkai,25763555,5
+83767002,25763555,4
+subuuti,25763555,4
+53683391,25763555,5
+kekeximi,25763555,3
+85168864,25763555,5
+plastictreeman,25763555,3
+28344177,25763555,2
+Pincent,25763555,3
+Pabalee,25763555,3
+rex33cc,25763555,4
+89972315,25763555,2
+60348817,25763555,3
+Wristcut,25763555,2
+pillbug,25763555,5
+64980477,25763555,4
+41351821,25763555,3
+104803569,25763555,4
+2700292,25763555,2
+Leslie221,25763555,3
+jushang,25763555,2
+colinpanda,25763555,4
+qingmingchen,25763555,3
+k798224394,25763555,4
+jimmy47,25763555,4
+52523145,25763555,3
+wuwenjiao,25763555,3
+73463695,25763555,2
+freeeeeeee,25763555,3
+aries23,25763555,3
+kalahere,25763555,-1
+yangshuangblue,25763555,3
+louise97,25763555,4
+Aziraphale,25763555,4
+SophiaCGuo,25763555,2
+2845890,25763555,1
+baixiaoleng,25763555,3
+1804752,25763555,2
+67580337,25763555,3
+46110666,25763555,3
+43237878,25763555,4
+taylorwang,25763555,3
+127728111,25763555,4
+vacancy_,25763555,4
+zuoyouyoyo,25763555,3
+kayhuang,25763555,4
+anthony1123,25763555,4
+106347535,25763555,3
+48492345,25763555,4
+vc2046,25763555,3
+miss.k,25763555,4
+36321216,25763555,3
+kaede11,25763555,4
+octo8,25763555,3
+softshock,25763555,-1
+59488510,25763555,3
+loveirina,25763555,4
+zillyromantic,25763555,4
+SmileyVicky,25763555,3
+42993095,25763555,3
+24678754,25763555,3
+45251073,25763555,3
+38533992,25763555,4
+scorpiogirljill,25763555,3
+48941785,25763555,4
+fengqingyuexia,25763555,3
+58905615,25763555,4
+67843912,25763555,2
+12627114,25763555,4
+2148283,25763555,-1
+alacrity516,25763555,3
+lhwithsummer,25763555,4
+57416285,25763555,5
+mizuki313,25763555,4
+18851959,25763555,1
+evolhjt,25763555,4
+1775763,25763555,3
+Beth0204,25763555,4
+46856850,25763555,3
+88643356,25763555,3
+chassit,25763555,4
+50088258,25763555,2
+43791681,25763555,5
+79272694,25763555,3
+1061640,25763555,3
+ofRaphael,25763555,4
+acapellaminuet,25763555,5
+requeen,25763555,4
+joan_wxq27,25763555,4
+guoxiaowenslife,25763555,4
+49191644,25763555,3
+34390825,25763555,2
+ellestmorte,25763555,3
+xlee,25763555,3
+RITABMW,25763555,4
+ringonouta711,25763555,3
+79841047,25763555,3
+EverybodyFool,25763555,4
+monofish,25763555,2
+xumhandy,25763555,2
+119559372,25763555,3
+77086576,25763555,1
+59311627,25763555,-1
+wann_,25763555,5
+94394247,25763555,4
+jayleehoho,25763555,3
+102592791,25763555,3
+60714670,25763555,5
+guanjunyan,25763555,-1
+Webboy,25763555,5
+Strangefamiliar,25763555,3
+78914788,25763555,3
+dinoel,25763555,3
+75953505,25763555,4
+120517901,25763555,3
+72418572,25763555,3
+wayizh,25763555,-1
+che.part.one,25763555,5
+samsyu,25763555,2
+Curry_Egg,25763555,3
+53518939,25763555,3
+Youandi4,25763555,-1
+92155502,25763555,3
+23664888,25763555,-1
+littlelu,25763555,3
+105492294,25763555,-1
+9086239,25763555,4
+85958266,25763555,3
+raychau,25763555,2
+Grace_Xuliang,25763555,3
+lunatique,25763555,3
+71741760,25763555,3
+wzdradon,25763555,4
+37676493,25763555,5
+61572428,25763555,4
+83156275,25763555,5
+WierdMinds,25763555,3
+63569379,25763555,3
+58283106,25763555,3
+sirk,25763555,2
+62501241,25763555,3
+zetto,25763555,-1
+49082695,25763555,3
+flxjp,25763555,3
+tinker828,25763555,4
+Litchell,25763555,1
+iwei,25763555,3
+SUNSAD,25763555,3
+6537233,25763555,3
+34245713,25763555,4
+evilQin,25763555,4
+54150368,25763555,3
+104261144,25763555,3
+zeusdream,25763555,4
+duanzizai,25763555,3
+lvyueting,25763555,-1
+Candy_Ghost,25763555,4
+blueburry,25763555,5
+sif7,25763555,4
+40303756,25763555,3
+53644977,25763555,3
+59079111,25763555,3
+3172105,25763555,3
+4590078,25763555,4
+28271170,25763555,2
+wcngsjb,25763555,4
+65108877,25763555,4
+4200336,25763555,3
+65670813,25763555,2
+eefee,25763555,4
+1480836,25763555,4
+2822373,25763555,-1
+52689721,25763555,3
+103793768,25763555,3
+134503726,25763555,4
+sansyx,25763555,4
+62375548,25763555,3
+89787162,25763555,3
+77074010,25763555,2
+JasonGray58,25763555,4
+136133409,25763555,3
+4118910,25763555,3
+39648072,25763555,3
+44417635,25763555,2
+captain_beard,25761178,4
+lostoldboy,25761178,5
+64779909,25761178,5
+1817816,25761178,4
+aslope,25761178,4
+136534147,25761178,4
+1943610,25761178,4
+60118399,25761178,4
+phenelzine,25761178,5
+81483354,25761178,4
+2437069,25761178,4
+allenyao,25761178,3
+43187104,25761178,4
+70795862,25761178,4
+sharonsama,25761178,5
+NICOOLE,25761178,4
+136509793,25761178,3
+87682878,25761178,3
+135438717,25761178,5
+62569679,25761178,5
+67718862,25761178,4
+zhangjiujiu,25761178,5
+49223911,25761178,5
+soul92114,25761178,5
+wuyunoy,25761178,4
+jialululu,25761178,-1
+Vanina_Vanini,25761178,4
+28183442,25761178,4
+zoeydoit,25761178,5
+anning_1190,25761178,5
+47218828,25761178,4
+51607217,25761178,4
+41559583,25761178,5
+64864169,25761178,4
+Lou-yingying,25761178,5
+70595414,25761178,4
+ivy532,25761178,4
+4624601,25761178,3
+82217215,25761178,5
+47608401,25761178,5
+standbyyou,25761178,4
+132062815,25761178,5
+63372886,25761178,4
+119590373,25761178,5
+58587564,25761178,5
+68461333,25761178,5
+dudul,25761178,5
+62601567,25761178,4
+52282792,25761178,5
+rabbit_07,25761178,2
+zzzzwt,25761178,3
+133752998,25761178,5
+phoebe0_0nn,25761178,4
+icy1004,25761178,5
+yobeko,25761178,-1
+75244806,25761178,-1
+bepig,25761178,3
+56435930,25761178,2
+4083751,25761178,4
+Novembersnow,25761178,3
+126849700,25761178,3
+59961169,25761178,4
+82507807,25761178,4
+53296277,25761178,4
+42912534,25761178,3
+63720309,25761178,3
+48171385,25761178,4
+59723079,25761178,4
+62729807,25761178,5
+2700292,25761178,4
+53426437,25761178,3
+67744266,25761178,3
+50367533,25761178,4
+61895198,25761178,2
+100341077,25761178,5
+68179093,25761178,5
+duoxingxing,25761178,4
+younger,25761178,5
+67163006,25761178,5
+zene,25761178,4
+79361990,25761178,4
+69938073,25761178,4
+58130346,25761178,4
+48003505,25761178,5
+73921828,25761178,5
+zest,25761178,3
+137365819,25761178,4
+53591021,25761178,4
+55319176,25761178,2
+kisscat890505,25761178,5
+taoer999,25761178,5
+73964031,25761178,5
+zdoudou,25761178,5
+deactivate,25761178,5
+monii,25761178,5
+39520405,25761178,-1
+25960765,25761178,4
+49283691,25761178,5
+jyuelovejay,25761178,4
+Injurer,25761178,5
+Injurer,25761178,5
+caiwoshishei,25761178,-1
+stilllyness,25761178,4
+FindingKnightly,25761178,4
+74123608,25761178,5
+57815610,25761178,5
+69755851,25761178,4
+50992070,25761178,5
+46666599,25761178,4
+3275817,25761178,2
+doreen7s,25761178,4
+59274667,25761178,5
+66832758,25761178,5
+xixistone,25761178,3
+77678238,25761178,4
+shadow.u,25761178,4
+xineefor985,25761178,4
+vivichris,25761178,4
+91356257,25761178,4
+43514737,25761178,5
+43514737,25761178,5
+4551793,25761178,3
+80072095,25761178,4
+melodyruan,25761178,5
+71161533,25761178,4
+69800345,25761178,4
+zhuangshisana,25761178,4
+doodler,25761178,5
+96488948,25761178,5
+38819398,25761178,4
+lovebaimei,25761178,3
+87688648,25761178,5
+22056950,25761178,4
+moderatolife,25761178,4
+137898837,25761178,4
+zangtianfly,25761178,5
+40256147,25761178,5
+loturis,25761178,4
+71270529,25761178,3
+80616218,25761178,4
+67084021,25761178,5
+4318163,25761178,4
+137839195,25761178,5
+Yaomusic,25761178,3
+59838683,25761178,4
+aki.sh,25761178,3
+121536238,25761178,5
+70284791,25761178,4
+1077086,25761178,4
+Karilyn,25761178,3
+125755382,25761178,3
+135141557,25761178,4
+64367551,25761178,4
+62650109,25761178,4
+68987503,25761178,4
+52464595,25761178,4
+lovelice,25761178,5
+54793938,25761178,5
+gunshyer,25761178,5
+divingbird,25761178,5
+66236209,25761178,4
+tan1tan,25761178,5
+130541613,25761178,5
+sakanayuyu,25761178,5
+131073049,25761178,5
+52450726,25761178,4
+33006528,25761178,5
+108816754,25761178,4
+64902546,25761178,2
+53464389,25761178,-1
+84797100,25761178,4
+134625303,25761178,3
+gjytrustyou,25761178,4
+57899091,25761178,5
+84739561,25761178,2
+Liiiiiisa,25761178,4
+69573435,25761178,5
+2543390,25761178,4
+46932772,25761178,4
+zetawangwy,25761178,3
+54618299,25761178,4
+56388550,25761178,4
+darkcolorstar,25761178,3
+32033776,25761178,4
+mrockfire,25761178,5
+72332338,25761178,4
+liajoy,25761178,4
+68283213,25761178,5
+53133974,25761178,4
+68802617,25761178,4
+4528935,25761178,3
+134510883,25761178,4
+124754239,25761178,4
+54983933,25761178,3
+childflower.,25761178,4
+65789855,25761178,4
+65178138,25761178,4
+137350189,25761178,4
+58947201,25761178,4
+51766031,25761178,4
+51766031,25761178,4
+milanmao,25761178,4
+57742250,25761178,3
+119484400,25761178,5
+20811878,25761178,4
+Miaomang,25761178,4
+3818284,25761178,4
+summertail1234,25761178,4
+134580402,25761178,4
+2302284,25761178,3
+135553176,25761178,4
+1486653,25761178,4
+81160024,25761178,3
+136416373,25761178,3
+43684937,25761178,5
+43789785,25761178,4
+14014568,25761178,4
+47258009,25761178,4
+FORDOOf4,25761178,-1
+pangjiansheng,25761178,5
+58132552,25761178,4
+108222890,25761178,5
+47037959,25761178,3
+69715781,25761178,3
+90539821,25761178,4
+131343395,25761178,3
+119882836,25761178,3
+sophiaforfree,25761178,4
+2361128,25761178,4
+52314580,25761178,4
+80561643,25761178,5
+wangyiwangyi,25761178,3
+121006529,25761178,4
+king4solomon,25761178,4
+6642488,25761178,3
+47818066,25761178,5
+33042240,25761178,3
+57263657,25761178,3
+Mr__Wang,25761178,-1
+122778853,25761178,4
+72023671,25761178,4
+3318847,25761178,5
+137216480,25761178,5
+4361447,25761178,4
+yandyandy,25761178,5
+62180561,25761178,4
+132468757,25761178,5
+xydg,25761178,5
+50222808,25761178,3
+iansu,25761178,5
+31788712,25761178,4
+40872813,25761178,4
+99199366,25761178,5
+gintokiyin,25761178,3
+TongZilou,25761178,2
+98014856,25761178,3
+40674382,25761178,4
+3065454,25761178,5
+62688110,25761178,4
+131909298,25761178,4
+Yamaai,25761178,5
+wyfsmd,25761178,3
+briggtta,25761178,4
+3393944,25761178,4
+129860559,25761178,4
+80397118,25761178,4
+120441883,25761178,3
+heanfy,25761178,4
+jessica_21,25761178,5
+57476889,25761178,5
+52218248,25761178,5
+47535024,25761178,4
+punk90,25761178,4
+60999102,25761178,4
+49394637,25761178,4
+QUJIAN,25761178,5
+37945803,25761178,4
+82087372,25761178,4
+125102922,25761178,4
+lingdongling,25761178,3
+CanaanYoung,25761178,4
+amoryqq,25761178,4
+136804658,25761178,5
+52883078,25761178,4
+54489877,25761178,5
+52023179,25761178,-1
+59431671,25761178,5
+53316547,25761178,3
+FilmYan,25761178,3
+42817015,25761178,3
+puccaandhippo,25761178,5
+53786356,25761178,4
+61209538,25761178,4
+kevin_lu1001,25761178,4
+46644410,25761178,4
+120218408,25761178,5
+56194836,25761178,4
+58456907,25761178,4
+67575009,25761178,5
+54148280,25761178,5
+75215072,25761178,5
+3821577,25761178,5
+wyjfl,25761178,4
+68550063,25761178,4
+135643960,25761178,5
+BLuuuuE,25761178,4
+135603135,25761178,4
+56668629,25761178,5
+commonalley,25761178,4
+65045419,25761178,5
+bluesubmarine,25761178,5
+73346410,25761178,3
+carino8023,25761178,4
+40185288,25761178,4
+127131340,25761178,3
+foxv1,25761178,-1
+hoicy,25761178,4
+1724328,25761178,3
+63478698,25761178,5
+luhua,25761178,4
+luhua,25761178,4
+huosunan,25761178,4
+63172677,25761178,5
+twxpda,25761178,2
+14407702,25761178,4
+64441475,25761178,3
+girlsinging,25761178,4
+89716765,25761178,5
+122556292,25761178,4
+137305184,25761178,4
+eightfat,25761178,5
+70241183,25761178,5
+137342674,25761178,4
+saddyla,25761178,5
+122184294,25761178,4
+46103242,25761178,4
+56603661,25761178,5
+1322481,25761178,4
+chaochao85mao,25761178,-1
+liumao,25761178,4
+128188665,25761178,4
+64713560,25761178,3
+61920379,25761178,5
+63063946,25761178,5
+notyetdone,25761178,4
+66967732,25761178,4
+cherubickid,25761178,-1
+132700431,25761178,4
+puppoul,25761178,3
+69381896,25761178,4
+130030005,25761178,4
+49286163,25761178,4
+ikuma,25761178,4
+51836053,25761178,4
+51429861,25761178,5
+Nur,25761178,3
+baorenyuan,25761178,5
+130724928,25761178,4
+131775262,25761178,5
+Kumamonnn,25761178,5
+126467467,25761178,4
+115919297,25761178,4
+Jessicalulu,25761178,4
+83413120,25761178,4
+quxiaoli,25761178,5
+51658550,25761178,4
+2304340,25761178,4
+130767168,25761178,4
+43335184,25761178,3
+73974685,25761178,5
+90338227,25761178,4
+49107061,25761178,3
+guthrun,25761178,4
+43493282,25761178,5
+122482800,25761178,5
+2370672,25761178,4
+123111535,25761178,4
+TigerLilico,25761178,5
+35367188,25761178,4
+anxin817,25761178,4
+Voldedogear,25761178,5
+58403280,25761178,5
+zhang2013yyy,25761178,5
+65721837,25761178,4
+98956225,25761178,4
+84586790,25761178,-1
+60054131,25761178,5
+45459664,25761178,4
+92957665,25761178,5
+78065496,25761178,4
+bulijite,25761178,4
+DangerRose,25761178,5
+91252045,25761178,3
+tedan,25761178,3
+56742109,25761178,4
+91140276,25761178,4
+onlyYH,25761178,4
+134842363,25761178,-1
+34700771,25761178,-1
+shuman90,25761178,-1
+87546829,25761178,4
+lantianxin,25761178,4
+69225437,25761178,5
+50599005,25761178,4
+54825682,25761178,5
+29872538,25761178,5
+Ashez,25761178,4
+87344411,25761178,4
+42137156,25761178,4
+58086381,25761178,4
+132315557,25761178,4
+65881181,25761178,5
+87867332,25761178,4
+z1on7,25761178,4
+50063811,25761178,3
+yeyi0819,25761178,-1
+qianshiya,25761178,5
+boonup,25761178,5
+94806979,25761178,5
+85452483,25761178,4
+51361935,25761178,4
+98954264,25761178,4
+avall0n,25761178,5
+3537940,25761178,4
+66013048,25761178,3
+4098434,25761178,5
+131020888,25761178,3
+68664986,25761178,5
+68630108,25761178,3
+robinchenjiang,25761178,3
+62705311,25761178,3
+alexda1da2da3,25761178,4
+79934332,25761178,4
+72852558,25761178,3
+137244496,25761178,4
+4115756,25761178,3
+9791060,25761178,4
+12052235,25761178,5
+shuixieqingtai,25761178,4
+56720701,25761178,5
+candyberg,25761178,4
+17307415,25761178,5
+maoyuqi,25761178,4
+1556251,25761178,4
+70924398,25761178,4
+92361204,25761178,4
+34476095,25761178,5
+42907481,25761178,5
+63406324,25761178,5
+xiguaguagua,25761178,4
+52853980,25761178,4
+57001880,25761178,4
+seth-king,25761178,5
+130435949,25761178,5
+137250770,25761178,5
+pigmiura,25761178,4
+yuyu723,25761178,4
+SheRrySweets,25761178,3
+T.Tsing,25761178,5
+10617988,25761178,5
+49927030,25761178,5
+36057289,25761178,5
+saffi-wang,25761178,4
+82767053,25761178,5
+66595239,25761178,-1
+momouk,25761178,4
+KinggieWU,25761178,4
+xyzed,25761178,5
+74057753,25761178,5
+oximi,25761178,3
+wangxiaomiao,25761178,3
+91982055,25761178,5
+64790470,25761178,5
+136509821,25761178,3
+godsvivien,25761178,5
+84327751,25761178,4
+120002421,25761178,5
+48324481,25761178,4
+115051698,25761178,3
+99851485,25761178,5
+tleding,25761178,4
+134483925,25761178,2
+46196075,25761178,4
+129611474,25761178,4
+77182257,25761178,4
+lugubrious,25761178,4
+liaozhongchao,25761178,4
+122944258,25761178,4
+73552244,25761178,5
+136293291,25761178,-1
+naturesun,25761178,5
+79675751,25761178,4
+maiyi99,25761178,2
+61496311,25761178,4
+xin0725,25761178,4
+122458396,25761178,3
+evaah,25761178,4
+lunacake,25761178,4
+2457913,25761178,4
+25664638,25761178,5
+101884264,25761178,3
+123404476,25761178,3
+137058497,25761178,3
+137058479,25761178,3
+132621694,25761178,5
+53721065,25761178,5
+1592554,25761178,5
+135467747,25761178,4
+samy0868,25761178,4
+97693514,25761178,3
+68429494,25761178,4
+103277074,25761178,5
+60047060,25761178,4
+122932689,25761178,4
+iiiapple,25761178,3
+43726684,25761178,5
+51860476,25761178,4
+akaluzz,25761178,4
+59704797,25761178,5
+69122615,25761178,2
+69122615,25761178,2
+130563496,25761178,4
+notbitchy,25761178,4
+sara810,25761178,4
+131025711,25761178,4
+nelavan,25761178,5
+61675448,25761178,4
+61681574,25761178,3
+willorz,25761178,5
+viorxx,25761178,4
+67701763,25761178,5
+137073841,25761178,5
+137076197,25761178,5
+45449396,25761178,5
+89455749,25761178,4
+122695512,25761178,5
+37036835,25761178,5
+37640159,25761178,4
+55585638,25761178,4
+134702987,25761178,3
+114728275,25761178,5
+61151666,25761178,4
+87341289,25761178,4
+Evangelion01,25761178,5
+51572703,25761178,4
+piangpiangpiang,25761178,5
+129577798,25761178,5
+34520124,25761178,4
+130445057,25761178,4
+3003736,25761178,4
+maydayisfaith,25761178,5
+75953505,25761178,5
+baby0geek,25761178,5
+heitt1221,25761178,3
+122868077,25761178,4
+47886279,25761178,4
+MosquitoQ3Q,25761178,5
+73122249,25761178,4
+46267341,25761178,5
+78110952,25761178,4
+2126628,25761178,5
+114090542,25761178,5
+90546251,25761178,4
+83123138,25761178,3
+mengaxin,25761178,5
+63985739,25761178,5
+133103066,25761178,4
+67710176,25761178,5
+lovesay,25761178,4
+65308090,25761178,3
+53094976,25761178,3
+62479871,25761178,4
+102027691,25761178,3
+ziyuyouyou,25761178,4
+harpsichord7,25761178,4
+jimmy037,25761178,5
+130428066,25761178,4
+75804317,25761178,5
+Orange_Milk,25761178,4
+136291795,25761178,4
+48748065,25761178,-1
+smilybaby,25761178,4
+if_moment,25761178,4
+morphinerouge,25761178,4
+Yuzukiiiiiii,25761178,-1
+drmighty,25761178,4
+67103452,25761178,5
+al1ene,25761178,3
+tildali1214,25761178,5
+zoic,25761178,4
+129692137,25761178,-1
+27927536,25761178,4
+62144104,25761178,5
+wongbur,25761178,4
+75915241,25761178,2
+45415867,25761178,3
+crpily,25761178,4
+124059577,25761178,4
+55782398,25761178,5
+62235269,25761178,5
+124515638,25761178,4
+60365345,25761178,4
+waitintheseason,25761178,4
+23730457,25761178,2
+89528523,25761178,4
+gatsby78,25761178,3
+43828485,25761178,4
+pengyaos,25761178,4
+imkly,25761178,4
+133006901,25761178,5
+119353813,25761178,5
+zhongxueyin,25761178,4
+76396808,25761178,5
+40553391,25761178,4
+136593078,25761178,5
+121545558,25761178,5
+61861749,25761178,4
+64104549,25761178,4
+marysays,25761178,-1
+30281505,25761178,5
+78667352,25761178,5
+yuelai15,25761178,4
+leave614,25761178,4
+cyushu,25761178,-1
+moredarkwhite,25761178,3
+89157735,25761178,4
+LinuxCandy,25761178,5
+72405316,25761178,3
+135237999,25761178,4
+134854042,25761178,4
+lunxian414,25761178,5
+68724331,25761178,3
+hulalachump,25761178,5
+136875339,25761178,5
+48898826,25761178,4
+102867420,25761178,4
+58936895,25761178,2
+104213101,25761178,4
+57269208,25761178,4
+possion007,25761178,4
+59859213,25761178,5
+89454138,25761178,4
+IM-NOT,25761178,-1
+mayka,25761178,4
+4675243,25761178,5
+Coldon,25761178,-1
+iamnian,25761178,5
+126821975,25761178,4
+90894536,25761178,5
+81430185,25761178,5
+rainbowhongye,25761178,5
+wanglinzi0214,25761178,4
+56921877,25761178,4
+LoveHugo,25761178,5
+jjcarolyn0609,25761178,3
+podolski,25761178,3
+czj950615,25761178,3
+bg1212,25761178,5
+58541675,25761178,4
+47857118,25761178,4
+xiaopang1106,25761178,4
+54925658,25761178,3
+132703048,25761178,5
+64092197,25761178,5
+129577459,25761178,3
+44292349,25761178,5
+127600565,25761178,5
+nicole_yang,25761178,4
+61742449,25761178,4
+66919507,25761178,4
+67707969,25761178,5
+76964531,25761178,-1
+cect,25761178,3
+63394553,25761178,4
+67640300,25761178,3
+1929758,25761178,5
+63791248,25761178,4
+holynight,25761178,5
+yue126,25761178,5
+125789242,25761178,2
+78099308,25761178,-1
+121000883,25761178,4
+Enigmapoet,25761178,5
+1535266,25761178,4
+imoviemaker,25761178,4
+Irice,25761178,4
+25350324,25761178,4
+115819915,25761178,5
+63606216,25761178,4
+46888824,25761178,3
+maydays81,25761178,4
+75788452,25761178,-1
+vivifyvivi,25761178,3
+2634600,25761178,4
+xuhaooo,25761178,4
+134159627,25761178,5
+winnie0212,25761178,1
+2921449,25761178,3
+5467957,25761178,5
+60600742,25761178,4
+57847755,25761178,5
+imRia,25761178,4
+54737988,25761178,4
+ohmymicky,25761178,4
+49123147,25761178,5
+fish620,25761178,5
+lostinfire,25761178,3
+64884887,25761178,4
+jiujiuprincess,25761178,4
+69651616,25761178,5
+136736172,25761178,4
+4547025,25761178,4
+36507254,25761178,4
+123431440,25761178,3
+bieyifu,25761178,5
+121201581,25761178,2
+83391483,25761178,5
+101740094,25761178,4
+2943120,25761178,5
+100292598,25761178,4
+lidesheng,25761178,4
+50768357,25761178,5
+49368228,25761178,3
+116054829,25761178,5
+136460394,25761178,3
+85206828,25761178,4
+seethelemontree,25761178,5
+xiaocibayberry,25761178,5
+miu-Wolf,25761178,4
+4589617,25761178,4
+jolyne,25761178,4
+amethylu,25761178,-1
+39092937,25761178,5
+Seajor74,25761178,3
+75757535,25761178,4
+yongzhenkaiyuan,25761178,1
+luanwuCAT,25761178,5
+134545730,25761178,4
+vero_nicat,25761178,5
+Corrinne,25761178,4
+Corrinne,25761178,4
+duoduo0410,25761178,4
+co1orful,25761178,5
+46931648,25761178,5
+seventhworkshop,25761178,4
+75741734,25761178,4
+wxcQluotuo,25761178,4
+G-one,25761178,5
+60406508,25761178,4
+85631816,25761178,5
+raeji,25761178,5
+116044095,25761178,2
+134146375,25761178,5
+shingle,25761178,5
+huangyue,25761178,4
+hitomiorange,25761178,4
+50118517,25761178,5
+sofafish,25761178,4
+kevinlynx,25761178,5
+27713698,25761178,5
+aoi_1030,25761178,4
+37885408,25761178,3
+124448194,25761178,4
+4284000,25761178,4
+78843177,25761178,3
+zurichiccy,25761178,4
+2512153,25761178,5
+108275401,25761178,5
+119586140,25761178,4
+120510553,25761178,4
+ivyg,25761178,5
+68183016,25761178,4
+grey_07,25761178,4
+73571891,25761178,5
+cStar,25761178,4
+63058412,25761178,3
+85345126,25761178,5
+70058307,25761178,5
+10791215,25761178,5
+Edward_Elric,25761178,4
+78160726,25761178,4
+87559349,25761178,4
+132657710,25761178,4
+stare,25761178,1
+115774795,25761178,5
+1494955,25761178,3
+59197305,25761178,4
+101452668,25761178,5
+31860440,25761178,5
+reMadeInChina,25761178,5
+64062822,25761178,4
+74589582,25761178,5
+96523797,25761178,4
+34388514,25761178,5
+doggonegirl,25761178,1
+cfloatingclouds,25761178,5
+F1vese7enone,25761178,4
+2003622,25761178,5
+64423977,25761178,4
+65489661,25761178,5
+65489661,25761178,5
+63599450,25761178,5
+46159687,25761178,5
+48259477,25761178,4
+4691315,25761178,-1
+49949826,25761178,4
+52520125,25761178,4
+1998903,25761178,5
+63798203,25761178,3
+seayo,25761178,5
+2850261,25761178,3
+2770592,25761178,5
+69162433,25761178,5
+135647565,25761178,5
+73421771,25761178,5
+66580879,25761178,4
+57370977,25761178,4
+60164301,25761178,4
+115673387,25761178,4
+56139397,25761178,4
+48817278,25761178,5
+46906647,25761178,5
+DERRICK_ROSE,25761178,4
+134369824,25761178,5
+x2x2x2,25761178,5
+yujinwen,25761178,4
+78501893,25761178,-1
+33693061,25761178,3
+14965275,25761178,5
+Andred,25761178,4
+53067576,25761178,-1
+56392889,25761178,5
+53980581,25761178,5
+44129385,25761178,4
+roadfinder,25761178,5
+51937003,25761178,4
+sttone,25761178,4
+NO.223,25761178,4
+43181758,25761178,4
+ftisalnd,25761178,5
+icyci,25761178,4
+123692249,25761178,5
+Ahomo,25761178,2
+45515743,25761178,5
+unnanae,25761178,4
+xiangkayi,25761178,5
+134417369,25761178,4
+2887401,25761178,5
+50923233,25761178,4
+56765472,25761178,5
+123433306,25761178,4
+iayunuo,25761178,5
+75043360,25761178,3
+79148425,25761178,4
+44513386,25761178,3
+65283286,25761178,4
+78703889,25761178,4
+66614447,25761178,4
+62974117,25761178,4
+the7th_bloom,25761178,3
+41814108,25761178,4
+54080134,25761178,5
+49813677,25761178,5
+131913208,25761178,4
+73693664,25761178,4
+54475883,25761178,4
+48780269,25761178,3
+67707298,25761178,5
+84255418,25761178,3
+direvil,25761178,5
+88230298,25761178,5
+roseyan_lxy,25761178,4
+66552525,25761178,4
+106663926,25761178,3
+123180881,25761178,5
+91740338,25761178,2
+54485655,25761178,5
+1097236,25761178,4
+sunlinght,25761178,4
+47548547,25761178,-1
+3988346,25761178,4
+49797550,25761178,5
+69422648,25761178,4
+nevertry,25761178,5
+1956404,25761178,5
+ichigosharon,25761178,5
+Singreen,25761178,4
+kui216,25761178,-1
+106074507,25761178,4
+jidecengjing,25761178,5
+4125258,25761178,4
+56779406,25761178,2
+59397449,25761178,3
+124449799,25761178,4
+49903928,25761178,4
+63128085,25761178,4
+gunsky,25761178,4
+59082437,25761178,5
+121460001,25761178,5
+47588521,25761178,4
+sunnyday-u,25761178,3
+milkcandy,25761178,4
+135947164,25761178,5
+79096888,25761178,4
+136012818,25761178,4
+2272118,25761178,5
+40237768,25761178,3
+yangjiemomo,25761178,4
+124640229,25761178,3
+91276258,25761178,5
+qxp1015beauty,25761178,3
+123738666,25761178,4
+97936654,25761178,4
+83730877,25761178,4
+39232855,25761178,4
+83108940,25761178,5
+67185686,25761178,4
+51965596,25761178,3
+49353235,25761178,4
+117808839,25761178,4
+4116226,25761178,4
+127728111,25761178,4
+yardbirds,25761178,5
+yumofu,25761178,5
+38175644,25761178,3
+haoxuesheng,25761178,5
+ranke0129,25761178,4
+cszzgo,25761178,3
+GloriaBryant,25761178,3
+keviton,25761178,5
+yizhimaze,25761178,5
+phoebe_wo,25761178,5
+zr8359,25761178,3
+64859517,25761178,4
+48179625,25761178,4
+63685423,25761178,4
+3009788,25761178,5
+47481448,25761178,4
+66966914,25761178,5
+71806570,25761178,4
+33076718,25761178,5
+44709496,25761178,5
+62579424,25761178,5
+72984075,25761178,4
+46062235,25761178,5
+81598768,25761178,4
+43790131,25761178,5
+49985202,25761178,4
+48717924,25761178,5
+Green_chestnut,25761178,4
+65031260,25761178,5
+41645349,25761178,5
+2366564,25761178,5
+3475246,25761178,3
+wudai2,25761178,4
+58720671,25761178,5
+64037870,25761178,4
+50130752,25761178,4
+gilyun,25761178,4
+feng-AT---,25761178,5
+36621771,25761178,4
+55507365,25761178,5
+61065110,25761178,4
+fiy_like_a_BEE,25761178,4
+47725759,25761178,4
+121655638,25761178,4
+fandf312,25761178,4
+thera,25761178,4
+Oolong6636,25761178,5
+43238767,25761178,5
+2225304,25761178,5
+annjuly,25761178,3
+44561459,25761178,-1
+92943106,25761178,4
+kiyono9,25761178,4
+cecilelover,25761178,5
+48056623,25761178,4
+100734380,25761178,4
+3249318,25761178,2
+69401934,25761178,5
+77850068,25761178,3
+11886721,25761178,4
+119858082,25761178,4
+coralbell,25761178,5
+47599682,25761178,5
+70361364,25761178,5
+119877742,25761178,5
+zrocky,25761178,4
+57412678,25761178,4
+vicW,25761178,4
+124905970,25761178,3
+67420161,25761178,4
+91957409,25761178,4
+66935704,25761178,5
+53126913,25761178,4
+73614049,25761178,4
+siayeung,25761178,5
+80457179,25761178,4
+46070924,25761178,4
+55983243,25761178,4
+hanyangyang,25761178,5
+chaoszt,25761178,4
+73770188,25761178,3
+62200135,25761178,5
+pinkjar,25761178,5
+4507905,25761178,4
+58952579,25761178,3
+67319725,25761178,4
+99977887,25761178,5
+sentexiaohu,25761178,4
+56187274,25761178,3
+tom926,25761178,2
+61569380,25761178,3
+102986629,25761178,4
+jiezi20,25761178,4
+kennanzhou,25761178,4
+dymusic,25761178,5
+1974706,25761178,3
+127175264,25761178,5
+ADmoviemtime,25761178,2
+ccaokunn,25761178,5
+103545145,25761178,5
+54926735,25761178,5
+63091718,25761178,3
+57126994,25761178,4
+126331855,25761178,4
+cherrylr,25761178,4
+star2s,25761178,4
+106171220,25761178,5
+80923059,25761178,3
+70930463,25761178,3
+53084899,25761178,4
+sylviasun2011,25761178,5
+77054730,25761178,4
+48036889,25761178,4
+67265860,25761178,3
+123264041,25761178,4
+87563523,25761178,4
+103584497,25761178,4
+2258556,25761178,2
+2258556,25761178,2
+45753040,25761178,4
+31806975,25761178,5
+glorymanutd,25761178,4
+monody,25761178,5
+59025385,25761178,4
+126758239,25761178,4
+iamface,25761178,3
+53059732,25761178,4
+78902065,25761178,5
+smiletome,25761178,4
+amuronamie,25761178,4
+47790392,25761178,5
+90217144,25761178,4
+46680078,25761178,4
+33640888,25761178,3
+xingtiannine,25761178,5
+132490186,25761178,5
+54853596,25761178,4
+sijilao,25761178,2
+sable_in_red,25761178,4
+echo520f1,25761178,5
+70668435,25761178,5
+30230782,25761178,3
+35351271,25761178,3
+lowingsea,25761178,4
+wind-clover,25761178,5
+80024991,25761178,5
+pengpeng,25761178,4
+54943644,25761178,4
+40737758,25761178,4
+68799171,25761178,4
+ioiolulu,25761178,5
+65240428,25761178,4
+47924060,25761178,3
+48757337,25761178,4
+58899374,25761178,3
+lucyhuang21,25761178,4
+zuiaidaluobo,25761178,5
+55554038,25761178,5
+52665984,25761178,5
+99309307,25761178,5
+69223309,25761178,5
+50174936,25761178,5
+58708135,25761178,4
+133572373,25761178,4
+66331142,25761178,4
+3618040,25761178,3
+3430040,25761178,-1
+81540386,25761178,5
+3717867,25761178,5
+54028610,25761178,4
+4231664,25761178,4
+Odd,25761178,3
+48102561,25761178,5
+46758817,25761178,5
+xiaosan595,25761178,5
+Zenodotus,25761178,4
+120621292,25761178,4
+1559239,25761178,4
+41627268,25761178,4
+falsefish,25761178,4
+xiaohk,25761178,5
+131053418,25761178,5
+55540473,25761178,2
+120273977,25761178,5
+49510419,25761178,5
+70458781,25761178,4
+49878097,25761178,4
+helloajun,25761178,3
+109113938,25761178,3
+46331589,25761178,5
+my88626,25761178,3
+48907529,25761178,4
+boboaibaobao,25761178,4
+134495648,25761178,4
+hoboland,25761178,5
+60002715,25761178,4
+46528708,25761178,4
+102740179,25761178,5
+60570203,25761178,5
+lilylmh,25761178,5
+70694742,25761178,4
+130846662,25761178,2
+yan599083337,25761178,5
+58309699,25761178,3
+100020528,25761178,3
+119942879,25761178,5
+2737482,25761178,4
+59357943,25761178,4
+nounou....,25761178,-1
+3693991,25761178,4
+53080002,25761178,4
+39568888,25761178,5
+71055026,25761178,4
+2039887,25761178,4
+51223075,25761178,5
+50752972,25761178,4
+penny5,25761178,4
+48053814,25761178,4
+qingxi52vv,25761178,4
+134692898,25761178,3
+47901348,25761178,5
+littleshy,25761178,5
+Xingda,25761178,5
+64047703,25761178,4
+42424175,25761178,5
+weijie1995,25761178,4
+mhyigeren,25761178,3
+121795248,25761178,4
+kidify,25761178,4
+getanvil,25761178,3
+57420118,25761178,4
+73623587,25761178,4
+50357965,25761178,5
+ling0816,25761178,4
+46230886,25761178,5
+38891685,25761178,5
+kenson,25761178,4
+builove,25761178,5
+jacky.v.c,25761178,4
+67678163,25761178,5
+foxbaby_1104,25761178,5
+107635262,25761178,5
+1708377,25761178,4
+kitsch2013,25761178,5
+3420891,25761178,4
+41946258,25761178,4
+y19940504,25761178,5
+88719361,25761178,4
+2040497,25761178,5
+miomiomeng,25761178,4
+CatWitch,25761178,5
+yuan8507,25761178,5
+73530411,25761178,5
+59078607,25761178,4
+120695517,25761178,4
+moyayi,25761178,4
+3636694,25761178,3
+50054232,25761178,5
+boringsly,25761178,5
+49160139,25761178,-1
+34749155,25761178,5
+121702182,25761178,5
+135708633,25761178,2
+55810244,25761178,4
+50554439,25761178,5
+60819858,25761178,5
+lanmichelle,25761178,5
+59698187,25761178,4
+71820532,25761178,5
+68588893,25761178,5
+58055612,25761178,4
+82980188,25761178,4
+zhongshanaoli,25761178,4
+80691452,25761178,5
+85130256,25761178,4
+84983865,25761178,3
+jackchen,25761178,4
+kikyobei,25761178,4
+weijielin,25761178,5
+48738008,25761178,5
+16052086,25761178,4
+ki8018ki,25761178,4
+74222093,25761178,-1
+basaya,25761178,4
+22105037,25761178,4
+71089461,25761178,4
+55512950,25761178,-1
+wwwwwww55tt,25761178,4
+90595371,25761178,3
+CainChan,25761178,4
+121534057,25761178,4
+1796714,25761178,4
+79485085,25761178,4
+sphinx_zhm,25761178,5
+PurpleLight0323,25761178,4
+peach_lee,25761178,4
+121583266,25761178,4
+133955671,25761178,5
+lancer04,25761178,4
+Phoebe.Lee,25761178,4
+zhouqiao,25761178,3
+83149809,25761178,3
+morechou,25761178,4
+66871580,25761178,4
+122068136,25761178,4
+134896642,25761178,3
+48832349,25761178,4
+63819723,25761178,5
+vanillalife,25761178,-1
+yuanyuancindy,25761178,2
+idontcarebitch,25761178,5
+51199402,25761178,4
+42948649,25761178,4
+49364179,25761178,5
+127426227,25761178,4
+122077133,25761178,4
+passinio,25761178,4
+73045377,25761178,5
+91613205,25761178,5
+120858951,25761178,4
+62354535,25761178,5
+53451776,25761178,4
+91545129,25761178,4
+suzy-with-u,25761178,5
+45937767,25761178,4
+66100472,25761178,4
+52939857,25761178,4
+134190287,25761178,4
+w112233,25761178,5
+35776858,25761178,3
+subaibai,25761178,5
+junchao1988,25761178,5
+2293636,25761178,4
+48377628,25761178,4
+nicenica,25761178,4
+60703764,25761178,4
+42421580,25761178,5
+65784611,25761178,4
+131006631,25761178,5
+79551282,25761178,5
+135556010,25761178,4
+45099103,25761178,5
+54903336,25761178,4
+77531616,25761178,-1
+littleflowercan,25761178,3
+134938707,25761178,4
+77296601,25761178,5
+congshuli,25761178,5
+3400299,25761178,5
+97171614,25761178,5
+Succy,25761178,-1
+89383568,25761178,4
+32650866,25761178,4
+seuleme0328,25761178,4
+cc_cc,25761178,3
+53356414,25761178,4
+mushui2015,25761178,3
+40883091,25761178,4
+sheenaringo516,25761178,4
+121282615,25761178,1
+133689309,25761178,2
+1016854,25761178,4
+77799876,25761178,4
+Lucky_zx,25761178,4
+soulgreen,25761178,4
+constancef,25761178,4
+131804706,25761178,4
+68888856,25761178,4
+silence08,25761178,4
+childream,25761178,3
+19861416,25761178,5
+67851025,25761178,5
+74691314,25761178,4
+30830742,25761178,4
+3039896,25761178,4
+YTlieb,25761178,-1
+fakeyouout,25761178,4
+91018361,25761178,5
+91018361,25761178,5
+55503051,25761178,5
+zzyjane,25761178,5
+119226386,25761178,5
+99172297,25761178,5
+115895353,25761178,3
+61304869,25761178,4
+37371725,25761178,3
+58705266,25761178,3
+1458725,25761178,5
+sandlee1986,25761178,4
+42306867,25761178,4
+aagg36121,25761178,5
+ericleaf,25761178,4
+35995884,25761178,4
+66976207,25761178,1
+82841699,25761178,5
+68560794,25761178,3
+35991873,25761178,4
+mantouniu,25761178,4
+3175343,25761178,4
+auntiejuno,25761178,2
+61979261,25761178,5
+11973232,25761178,4
+38886796,25761178,4
+yangtao0810,25761178,4
+cheersdarlin,25761178,4
+quebom,25761178,4
+rockgong,25761178,5
+mon,25761178,5
+JusticeSunny,25761178,3
+52877387,25761178,4
+1910936,25761178,4
+53868725,25761178,4
+demonawang,25761178,5
+123850973,25761178,5
+weizen,25761178,4
+27323715,25761178,4
+fang0079,25761178,5
+54618575,25761178,3
+103187008,25761178,5
+B612minmin,25761178,4
+52029412,25761178,3
+57831670,25761178,4
+vividcake,25761178,4
+25676059,25761178,4
+46942165,25761178,4
+135228314,25761178,4
+44241751,25761178,2
+52872697,25761178,3
+1581045,25761178,5
+95686183,25761178,4
+63478394,25761178,5
+45278107,25761178,4
+64277816,25761178,4
+2935013,25761178,4
+127893299,25761178,4
+giveareason,25761178,5
+135147851,25761178,4
+78906906,25761178,5
+122246232,25761178,5
+90056521,25761178,4
+1877066,25761178,4
+63377727,25761178,4
+hinna,25761178,4
+gbluki,25761178,4
+125668189,25761178,5
+4209882,25761178,5
+44714353,25761178,3
+71950308,25761178,5
+55506429,25761178,5
+venuscat,25761178,3
+78490842,25761178,4
+133718009,25761178,5
+131545244,25761178,4
+iceyvonne,25761178,3
+54018422,25761178,4
+x.sunday,25761178,3
+128867718,25761178,4
+1354561,25761178,4
+1643126,25761178,4
+28958263,25761178,5
+57616259,25761178,2
+shiteng,25761178,5
+47228059,25761178,4
+66894535,25761178,4
+125203567,25761178,4
+23416699,25761178,3
+131426803,25761178,4
+3586286,25761178,2
+49977139,25761178,4
+thanksdanny,25761178,4
+pearltsang,25761178,4
+beloydwu,25761178,4
+97474180,25761178,4
+Aries-in-douban,25761178,4
+sungminlee,25761178,3
+48966304,25761178,3
+64082591,25761178,5
+53325055,25761178,4
+67385694,25761178,3
+60351610,25761178,5
+51688901,25761178,5
+leeadventure,25761178,5
+7934750,25761178,5
+dearw616,25761178,4
+50136328,25761178,4
+58947942,25761178,4
+6926115,25761178,4
+100065891,25761178,3
+clay,25761178,4
+80072984,25761178,5
+53761606,25761178,5
+43474774,25761178,4
+50600067,25761178,5
+1282420,25761178,4
+yyt0105,25761178,4
+62189600,25761178,4
+101926722,25761178,4
+sosofly,25761178,5
+2220791,25761178,5
+lonelyattic,25761178,4
+runningaway11,25761178,3
+70517543,25761178,3
+1122936,25761178,3
+72994567,25761178,4
+nothingfish,25761178,3
+qingliangyou,25761178,4
+bennyjoon,25761178,5
+57593768,25761178,4
+2278880,25761178,5
+54380713,25761178,5
+47377443,25761178,5
+hihimogu,25761178,-1
+63774339,25761178,4
+77350379,25761178,4
+shengdoushiba,25761178,-1
+heidiholic,25761178,4
+80704682,25761178,4
+47375068,25761178,4
+tengyuanmeihong,25761178,4
+77225861,25761178,-1
+64009590,25761178,5
+1357759,25761178,3
+54901504,25761178,5
+Akinisixteen,25761178,5
+129375035,25761178,3
+130701225,25761178,5
+3086120,25761178,4
+68760385,25761178,4
+55299131,25761178,3
+kongguyouju,25761178,4
+65661180,25761178,4
+15343656,25761178,4
+63479785,25761178,5
+echowithyou,25761178,5
+48113232,25761178,4
+codfish_zyx,25761178,4
+53485113,25761178,4
+109169757,25761178,5
+xiaoxi1252,25761178,4
+50247888,25761178,4
+rampage_akasha,25761178,4
+51277324,25761178,3
+132341860,25761178,4
+77886672,25761178,3
+105339226,25761178,5
+57160155,25761178,4
+48722757,25761178,5
+132123924,25761178,3
+blase_pp,25761178,4
+koutiao,25761178,5
+65746932,25761178,-1
+isolated,25761178,4
+49808652,25761178,5
+135237923,25761178,4
+McBee,25761178,4
+3113435,25761178,4
+musair,25761178,5
+58197963,25761178,5
+63734709,25761178,5
+68505236,25761178,-1
+74633622,25761178,5
+48165079,25761178,4
+18987665,25761178,-1
+31716665,25761178,5
+131533540,25761178,5
+48863342,25761178,4
+LadyMavis,25761178,5
+46632642,25761178,5
+48875745,25761178,4
+51633210,25761178,4
+103346122,25761178,5
+122016263,25761178,5
+32462724,25761178,4
+deeplife,25761178,4
+2580780,25761178,3
+121516783,25761178,4
+28398689,25761178,5
+51492381,25761178,5
+55965923,25761178,5
+48396383,25761178,5
+57156729,25761178,3
+88201815,25761178,4
+50778763,25761178,5
+Carmenn_n,25761178,4
+siloam,25761178,3
+4203522,25761178,5
+yktimeless,25761178,5
+66321564,25761178,5
+81421967,25761178,3
+kangwenyi,25761178,4
+49351576,25761178,5
+103497855,25761178,4
+3848966,25761178,4
+QQY,25761178,4
+eloc,25761178,5
+Lelio090101,25761178,4
+52980563,25761178,5
+QQXLH,25761178,4
+QQXLH,25761178,4
+1091673,25761178,4
+41798049,25761178,4
+Sunny851020,25761178,5
+34081510,25761178,-1
+64529500,25761178,5
+lisuansuan,25761178,-1
+oliviafyy,25761178,4
+Catinalley,25761178,4
+lh12123,25761178,5
+52155192,25761178,-1
+4182845,25761178,3
+65714390,25761178,4
+Royeka.Es,25761178,4
+51763464,25761178,-1
+67968935,25761178,4
+4709296,25761178,5
+kolzybe,25761178,4
+64574403,25761178,5
+59597451,25761178,5
+1462465,25761178,4
+41833593,25761178,4
+60071070,25761178,4
+49848992,25761178,5
+53997661,25761178,4
+48697353,25761178,-1
+28903343,25761178,5
+ll520yy,25761178,5
+3540441,25761178,4
+2062961,25761178,4
+49241776,25761178,-1
+85035991,25761178,4
+129175694,25761178,5
+63405157,25761178,4
+114540983,25761178,5
+58157275,25761178,2
+nvpizi,25761178,4
+1806463,25761178,4
+preciseness,25761178,4
+54034056,25761178,3
+119999701,25761178,3
+buxiunika,25761178,4
+135163962,25761178,1
+Ronnie816,25761178,2
+xasen,25761178,4
+121568939,25761178,4
+60222114,25761178,-1
+22873449,25761178,4
+zuiaidashanghai,25761178,3
+59413586,25761178,4
+71416831,25761178,4
+guyi87,25761178,4
+4858420,25761178,-1
+94227961,25761178,5
+57187581,25761178,5
+shables,25761178,-1
+120305816,25761178,5
+hudodo0314,25761178,-1
+52117256,25761178,2
+60233136,25761178,4
+88840337,25761178,3
+70619574,25761178,3
+loli_do,25761178,-1
+yomaybe,25761178,4
+63636822,25761178,4
+1945427,25761178,5
+94578244,25761178,3
+43684138,25761178,4
+53179097,25761178,3
+78730817,25761178,4
+3535148,25761178,5
+JUNmatun,25761178,5
+86856114,25761178,3
+50836289,25761178,3
+52023052,25761178,4
+32586647,25761178,4
+mousemouse,25761178,4
+sakuraSY,25761178,4
+79519421,25761178,4
+80452774,25761178,4
+80452774,25761178,4
+WierdMinds,25761178,4
+47568379,25761178,4
+60850833,25761178,3
+low2han,25761178,3
+78638924,25761178,5
+4380133,25761178,4
+4882025,25761178,5
+felinoshuffle,25761178,5
+4524179,25761178,4
+4338735,25761178,4
+aileaileaqi,25761178,5
+52918110,25761178,3
+40479921,25761178,4
+hsuss,25761178,4
+encore7,25761178,4
+zackman,25761178,4
+127606527,25761178,4
+49602795,25761178,5
+4271475,25761178,3
+zfz583443214,25761178,4
+56965430,25761178,5
+69710712,25761178,-1
+jiupai,25761178,5
+xuhuan,25761178,5
+4462311,25761178,3
+96080324,25761178,5
+77218959,25761178,5
+64725454,25761178,5
+kaarlo,25761178,5
+twobieno1,25761178,4
+2822846,25761178,4
+47372422,25761178,5
+47656498,25761178,5
+25818225,25761178,3
+ChicWeirdo,25761178,4
+63089184,25761178,4
+33473018,25761178,4
+63314716,25761178,4
+49594661,25761178,4
+91644245,25761178,3
+tequila7,25761178,4
+49789138,25761178,-1
+61609205,25761178,5
+91405075,25761178,4
+56655499,25761178,5
+41629334,25761178,5
+89997290,25761178,4
+79953346,25761178,4
+65442330,25761178,4
+58578065,25761178,5
+81193574,25761178,3
+46862287,25761178,5
+50249739,25761178,4
+sidneybig,25761178,4
+lemontrees,25761178,4
+61026363,25761178,4
+TeLligent,25761178,4
+hashayaqi,25761178,4
+on1ooker,25761178,4
+Mike_Carter,25761178,5
+55997229,25761178,3
+55951797,25761178,4
+Showga,25761178,4
+idreammrs,25761178,3
+Inupiat,25761178,4
+2642604,25761178,3
+73763567,25761178,5
+101167339,25761178,4
+47480391,25761178,4
+78663925,25761178,4
+yuzhoushan,25761178,5
+77692526,25761178,5
+59458875,25761178,5
+tavi0529,25761178,5
+82706451,25761178,5
+43733765,25761178,4
+82817173,25761178,5
+17943191,25761178,3
+74463808,25761178,4
+135012811,25761178,5
+66427696,25761178,5
+sebastiaan,25761178,4
+86638464,25761178,3
+54268454,25761178,5
+82257794,25761178,4
+60752874,25761178,4
+67030468,25761178,4
+93455789,25761178,3
+44034206,25761178,4
+114740620,25761178,4
+66893773,25761178,4
+sid005,25761178,3
+junko,25761178,5
+maixiaohuang,25761178,5
+134036415,25761178,3
+125544291,25761178,4
+1295507,25761178,4
+123008683,25761178,5
+121920760,25761178,4
+121920760,25761178,4
+64136344,25761178,4
+52906969,25761178,4
+3608595,25761178,5
+54166163,25761178,3
+ALTNATIONAL,25761178,5
+87558213,25761178,3
+liutengzhi,25761178,5
+Jeanerduo,25761178,4
+unicorn1018,25761178,4
+82230910,25761178,-1
+72276081,25761178,4
+25560643,25761178,5
+72150262,25761178,4
+128005150,25761178,2
+kiki204629,25761178,4
+82564466,25761178,4
+twwfbbr,25761178,5
+xy52119910521,25761178,4
+60599913,25761178,3
+60599913,25761178,3
+29710703,25761178,5
+xjrm,25761178,5
+just_nomadic,25761178,5
+61268751,25761178,4
+39192898,25761178,5
+80017178,25761178,4
+66721136,25761178,4
+37615847,25761178,5
+kouchi,25761178,5
+68918623,25761178,4
+hela,25761178,4
+2510900,25761178,4
+78801731,25761178,5
+78857918,25761178,4
+64107417,25761178,4
+60305012,25761178,4
+132841345,25761178,4
+4587293,25761178,4
+50145299,25761178,5
+cindyhello,25761178,4
+66622891,25761178,-1
+134306404,25761178,4
+74867829,25761178,5
+WHEREONLYYOUME,25761178,4
+96370254,25761178,4
+hlfprivate,25761178,5
+82404312,25761178,4
+75419406,25761178,3
+70667163,25761178,3
+3054506,25761178,1
+kimmyaloha,25761178,5
+64881231,25761178,3
+64973910,25761178,3
+candyrock,25761178,5
+120531493,25761178,5
+xiaoshiliushu,25761178,4
+37216410,25761178,4
+51288517,25761178,5
+97190938,25761178,3
+97190938,25761178,3
+34590925,25761178,4
+47821826,25761178,3
+43178403,25761178,1
+57026267,25761178,5
+47162631,25761178,4
+kildren2013,25761178,5
+124359273,25761178,4
+59110822,25761178,4
+119315323,25761178,4
+122104657,25761178,5
+49175291,25761178,5
+48078859,25761178,3
+120700818,25761178,4
+chen-mo,25761178,5
+strawberrycat,25761178,5
+wuxiaocao,25761178,4
+Doris.F,25761178,4
+125036530,25761178,-1
+50773738,25761178,5
+4127518,25761178,4
+67742715,25761178,2
+xfpeng,25761178,3
+75556607,25761178,4
+4584303,25761178,4
+68691802,25761178,4
+65089392,25761178,5
+63595507,25761178,3
+46375776,25761178,5
+79304005,25761178,2
+2865307,25761178,3
+49166988,25761178,4
+75118396,25761178,5
+129581639,25761178,-1
+4913356,25761178,3
+44610838,25761178,3
+posuoluo,25761178,4
+tianxkong,25761178,5
+Xin.the,25761178,4
+yoyoga,25761178,3
+affewen,25761178,4
+momoshuo,25761178,4
+99975820,25761178,5
+36834154,25761178,5
+swimmingfish33,25761178,5
+67838216,25761178,5
+54811800,25761178,4
+mozkii,25761178,4
+miaotuanzi,25761178,3
+100018686,25761178,-1
+58310222,25761178,4
+43800629,25761178,4
+11378809,25761178,4
+74170855,25761178,3
+luly_xy,25761178,4
+77048663,25761178,5
+Cier-lindy,25761178,5
+xianburg,25761178,5
+88844052,25761178,4
+junjemmm,25761178,3
+junjemmm,25761178,3
+49754687,25761178,4
+56660352,25761178,4
+jessiezayns,25761178,5
+ELSIE627,25761178,3
+70119569,25761178,4
+59597248,25761178,4
+71953415,25761178,4
+Wasted,25761178,4
+zhcrobert,25761178,5
+izume,25761178,4
+95187324,25761178,5
+44595410,25761178,5
+57907278,25761178,4
+rx7801,25761178,4
+2144303,25761178,4
+CalendarDeer,25761178,4
+yukiyuko,25761178,4
+63291664,25761178,5
+79983515,25761178,4
+sdhjl2000,25761178,3
+sirs,25761178,4
+yihuiw,25761178,5
+earthchild,25761178,4
+80346808,25761178,3
+4610304,25761178,4
+loveyourselves,25761178,-1
+50088933,25761178,5
+lotus47,25761178,5
+ali107,25761178,5
+119288592,25761178,5
+youeqian,25761178,4
+63824068,25761178,3
+aivnce,25761178,4
+6442650,25761178,5
+Diane_myl,25761178,4
+Odoomsday,25761178,4
+bester214,25761178,4
+null12345,25761178,5
+karenmomokun,25761178,4
+45258731,25761178,4
+39378921,25761178,4
+pitaya77,25761178,5
+97431100,25761178,4
+134131182,25761178,4
+57281112,25761178,4
+66696808,25761178,4
+132751120,25761178,4
+zzlcslg,25761178,-1
+131603889,25761178,5
+amen-0,25761178,5
+6083325,25761178,5
+ice41322,25761178,4
+79383062,25761178,4
+133375008,25761178,4
+47209079,25761178,5
+musedarling,25761178,5
+103012046,25761178,4
+missair,25761178,5
+megane0931,25761178,4
+50852406,25761178,5
+76762897,25761178,5
+2985135,25761178,5
+yaoliu,25761178,4
+102368955,25761178,3
+34895026,25761178,5
+41259991,25761178,5
+60389912,25761178,3
+jun22,25761178,4
+127777711,25761178,-1
+55621323,25761178,4
+75180994,25761178,4
+45012026,25761178,3
+69165098,25761178,4
+74892606,25761178,5
+63502656,25761178,5
+janice1124,25761178,4
+CyanWong,25761178,4
+45930015,25761178,4
+66587719,25761178,5
+shaesum,25761178,5
+2746761,25761178,4
+74404471,25761178,-1
+halk,25761178,4
+67182363,25761178,5
+49871363,25761178,3
+52597930,25761178,5
+papaduty,25761178,4
+92427949,25761178,4
+16965088,25761178,5
+43961045,25761178,3
+1358728,25761178,5
+3606327,25761178,4
+80849511,25761178,4
+131514121,25761178,3
+52448549,25761178,4
+52409166,25761178,3
+90564869,25761178,4
+80732468,25761178,4
+bimbo,25761178,4
+awesomearya,25761178,-1
+4391066,25761178,4
+114759212,25761178,5
+38567114,25761178,4
+lancaoqin,25761178,4
+125980978,25761178,4
+132830115,25761178,4
+67231468,25761178,5
+scbox,25761178,3
+judymclennon,25761178,3
+49339521,25761178,4
+50157745,25761178,5
+2868760,25761178,4
+54158519,25761178,5
+125028043,25761178,5
+70008317,25761178,1
+81628764,25761178,5
+imedi,25761178,4
+juleye,25761178,-1
+x1.,25761178,3
+2594481,25761178,4
+61184196,25761178,4
+ice_pudding,25761178,3
+55846970,25761178,4
+101516177,25761178,5
+1157959,25761178,4
+yujie270,25761178,4
+65814505,25761178,3
+2272740,25761178,-1
+4617488,25761178,3
+60733451,25761178,4
+73696070,25761178,3
+90785580,25761178,4
+4520580,25761178,3
+50195996,25761178,5
+35364683,25761178,4
+pbc0615,25761178,3
+sand_mao,25761178,5
+126192589,25761178,4
+yiren-sun,25761178,3
+43645216,25761178,2
+Edvar,25761178,5
+115100313,25761178,-1
+133690949,25761178,3
+Walt_W,25761178,4
+48071996,25761178,5
+zhaifei-movie,25761178,1
+daysofyouth,25761178,5
+115958498,25761178,5
+105280800,25761178,3
+33906135,25761178,4
+90467667,25761178,4
+pennyfc21,25761178,4
+YYDEE,25761178,4
+65776706,25761178,4
+91935314,25761178,3
+36470321,25761178,4
+chen.thanks,25761178,4
+59110325,25761178,4
+44345461,25761178,3
+121154422,25761178,4
+127741400,25761178,3
+56911400,25761178,5
+4627411,25761178,5
+DIC,25761178,4
+hayden001,25761178,2
+58383319,25761178,5
+64552831,25761178,5
+delmar,25761178,4
+iCath,25761178,4
+lxyjdan,25761178,3
+102747303,25761178,3
+60127747,25761178,4
+61691553,25761178,5
+129967215,25761178,4
+Heroic-Deborah,25761178,5
+69037881,25761178,3
+picnicskins,25761178,3
+48258389,25761178,3
+46247554,25761178,4
+58005752,25761178,4
+willese,25761178,4
+jean4you,25761178,4
+39946480,25761178,-1
+61119503,25761178,4
+childrenl,25761178,5
+49792985,25761178,5
+3144882,25761178,4
+3119464,25761178,4
+ggggggggggg-g,25761178,4
+26745099,25761178,5
+73312122,25761178,4
+48874173,25761178,-1
+50902440,25761178,4
+daisyhantt,25761178,4
+emilycou,25761178,5
+121295582,25761178,4
+M.J,25761178,5
+Kso-go,25761178,5
+48616886,25761178,4
+48616886,25761178,4
+68175783,25761178,4
+57460299,25761178,5
+yvone1220,25761178,3
+jasmine22,25761178,-1
+57913675,25761178,3
+62891256,25761178,4
+fatcatfatact,25761178,3
+goldenknob,25761178,5
+fullmoon924,25761178,5
+qixian1125,25761178,2
+42539278,25761178,4
+47374105,25761178,3
+46946236,25761178,5
+56652624,25761178,3
+78925849,25761178,4
+29024043,25761178,5
+47417998,25761178,4
+49393280,25761178,4
+121649452,25761178,5
+71181579,25761178,4
+43662496,25761178,4
+51429259,25761178,4
+50527952,25761178,5
+68634522,25761178,5
+52021571,25761178,5
+121305318,25761178,5
+4263141,25761178,-1
+zuoshoudezuo,25761178,5
+92559363,25761178,-1
+maertaren,25761178,4
+66481682,25761178,5
+XXXXKKKK,25761178,5
+sinxu,25761178,4
+4145186,25761178,4
+97446577,25761178,2
+show_king,25761178,4
+64473872,25761178,4
+kejinlong,25761178,3
+maxine_9395,25761178,4
+35218785,25761178,5
+heting1013,25761178,5
+64729781,25761178,5
+insomnia,25761178,4
+49299056,25761178,5
+Niro-Zeng,25761178,4
+131622596,25761178,4
+sj1_1ei,25761178,4
+46316257,25761178,4
+lizbaby73,25761178,2
+Kaodeloo,25761178,5
+xxberny,25761178,4
+shushizhenliu,25761178,3
+sizuka3n,25761178,5
+38521812,25761178,4
+60795536,25761178,4
+idashaw,25761178,4
+dustblue,25761178,4
+none17,25761178,4
+13631484,25761178,4
+81757410,25761178,4
+yphjj,25761178,4
+2477652,25761178,4
+61554500,25761178,4
+68071230,25761178,5
+40982141,25761178,4
+85384929,25761178,2
+40235686,25761178,4
+46714118,25761178,5
+hanuit,25761178,5
+71814455,25761178,5
+60591590,25761178,4
+kedoumili,25761178,5
+suginami,25761178,4
+61373833,25761178,4
+88219277,25761178,4
+desertsann,25761178,5
+57473615,25761178,4
+49039197,25761178,5
+toowildtotouch,25761178,4
+53965784,25761178,5
+55355100,25761178,4
+noguchi,25761178,5
+2756490,25761178,4
+reebi,25761178,3
+34592122,25761178,3
+70058744,25761178,4
+14622412,25761178,4
+83495567,25761178,4
+3712644,25761178,5
+1451542,25761178,4
+1126336,25761178,5
+68394730,25761178,4
+Lair_Grass,25761178,5
+3756476,25761178,3
+38754265,25761178,4
+peterpanty,25761178,4
+48478703,25761178,5
+rhonaxu,25761178,5
+92945557,25761178,4
+44875082,25761178,4
+vvsimple,25761178,-1
+shadowboxer,25761178,3
+48589119,25761178,4
+81592921,25761178,5
+Spacejunk,25761178,3
+tsebb,25761178,5
+tamakiyoko,25761178,5
+52944051,25761178,4
+3457326,25761178,4
+43280454,25761178,4
+68866789,25761178,5
+smdt.jay,25761178,5
+unruturn,25761178,5
+84017674,25761178,5
+2150866,25761178,5
+57397941,25761178,4
+thetorches,25761178,4
+2963179,25761178,5
+130833487,25761178,3
+53740100,25761178,4
+1973450,25761178,5
+eatbananamoku,25761178,5
+53126180,25761178,-1
+72148144,25761178,5
+57542378,25761178,5
+jtaiyang,25761178,4
+46152001,25761178,3
+64123295,25761178,5
+12031989,25761178,5
+92622495,25761178,4
+muyun0830,25761178,4
+afeidemimi,25761178,5
+xiaomujunjun,25761178,3
+zizaitianqi,25761178,3
+onlysassy,25761178,5
+53108516,25761178,4
+82123498,25761178,4
+3522119,25761178,5
+43180874,25761178,4
+106548711,25761178,4
+bluejuju,25761178,-1
+4129696,25761178,4
+antee,25761178,4
+124350324,25761178,3
+romanbaby,25761178,4
+sundanni,25761178,5
+45241922,25761178,3
+58404696,25761178,4
+52616588,25761178,5
+57061603,25761178,3
+63744273,25761178,4
+32485856,25761178,4
+103503223,25761178,5
+134198005,25761178,-1
+junexi,25761178,5
+106467997,25761178,5
+42113590,25761178,4
+41570893,25761178,4
+35106644,25761178,4
+happyhealthy,25761178,4
+2322719,25761178,4
+kong19870707,25761178,5
+tianbo,25761178,4
+63659583,25761178,4
+63874494,25761178,4
+punchmary,25761178,4
+67388709,25761178,5
+82500899,25761178,3
+64801688,25761178,3
+64038122,25761178,4
+63205590,25761178,5
+bbttt,25761178,5
+47479797,25761178,5
+83900345,25761178,4
+aihisie,25761178,5
+91118015,25761178,4
+72683607,25761178,4
+84001859,25761178,4
+133886774,25761178,5
+6040408,25761178,4
+fylq,25761178,3
+pingzi1434ever,25761178,5
+64359754,25761178,4
+littlesugar,25761178,4
+72987657,25761178,4
+14288671,25761178,4
+liiiiiil,25761178,4
+90961062,25761178,4
+93866634,25761178,5
+131765694,25761178,4
+2630618,25761178,4
+100364124,25761178,5
+nizhidaome,25761178,-1
+66977263,25761178,5
+41471584,25761178,4
+81628425,25761178,4
+53695321,25761178,5
+richer725,25761178,4
+51952917,25761178,3
+134146156,25761178,4
+70006548,25761178,5
+1219663,25761178,4
+zerooorez,25761178,4
+125760534,25761178,4
+cookie777hide,25761178,4
+1786605,25761178,4
+38567771,25761178,4
+4269560,25761178,4
+sethyoung,25761178,4
+63934272,25761178,5
+59096129,25761178,4
+2169690,25761178,4
+yanmingsky,25761178,4
+heyheygun,25761178,5
+57559974,25761178,5
+Katharine205,25761178,5
+xiricuo,25761178,4
+75194090,25761178,4
+42781171,25761178,3
+70023173,25761178,5
+15028817,25761178,5
+64635717,25761178,-1
+littlecar,25761178,4
+auvauva,25761178,3
+xiaoshuogege,25761178,4
+57511259,25761178,3
+liyh1224,25761178,5
+131901854,25761178,5
+Catforest33,25761178,5
+77162853,25761178,2
+ivykwok,25761178,4
+64136119,25761178,5
+lemonomel,25761178,5
+imalright,25761178,5
+133033817,25761178,4
+50478757,25761178,5
+LeeKitWing,25761178,4
+2375136,25761178,5
+vivid_dong,25761178,4
+plese,25761178,5
+67763944,25761178,4
+40531790,25761178,4
+93113085,25761178,4
+62582526,25761178,4
+youdianhuanjue,25761178,3
+ariellezyy,25761178,5
+42455197,25761178,3
+83192271,25761178,4
+LLLLLAMS,25761178,5
+2717922,25761178,5
+54744166,25761178,4
+51402436,25761178,4
+88255873,25761178,4
+62245513,25761178,5
+71630357,25761178,3
+64780091,25761178,3
+senlinxiaozhen,25761178,4
+2803147,25761178,3
+122416010,25761178,4
+48675575,25761178,4
+119539703,25761178,4
+lovingmomo,25761178,4
+59380800,25761178,4
+58984450,25761178,4
+75077274,25761178,4
+64682251,25761178,5
+46453522,25761178,3
+donizuka,25761178,3
+53325239,25761178,5
+52356357,25761178,4
+yol0321,25761178,4
+54165684,25761178,5
+1452888,25761178,5
+hualunxxl,25761178,4
+52576339,25761178,5
+32746698,25761178,4
+74359529,25761178,4
+echophp,25761178,4
+ccushuaia1220,25761178,-1
+maggieloveshow,25761178,4
+82630847,25761178,4
+chabaochabao,25761178,4
+64031370,25761178,5
+ceh19930603,25761178,4
+4412861,25761178,5
+61937821,25761178,3
+3901069,25761178,5
+4481826,25761178,4
+wangqihaha,25761178,-1
+87488566,25761178,2
+82808617,25761178,5
+64681992,25761178,5
+iniquity,25761178,4
+62282689,25761178,3
+7519445,25761178,5
+47764376,25761178,4
+56044350,25761178,4
+68635821,25761178,4
+13301536,25761178,4
+43783147,25761178,5
+38397417,25761178,4
+3585809,25761178,5
+3526992,25761178,3
+VC39,25761178,4
+63422177,25761178,4
+72792251,25761178,3
+69874247,25761178,5
+31220552,25761178,4
+51180631,25761178,4
+Vanessa.,25761178,4
+sixties,25761178,5
+43496249,25761178,4
+46762996,25761178,4
+61512042,25761178,3
+60046814,25761178,4
+mukucelia,25761178,4
+walkingtime,25761178,4
+58562865,25761178,3
+124953430,25761178,4
+130520030,25761178,4
+mainemay,25761178,4
+76198383,25761178,3
+47539461,25761178,5
+whoyounotme,25761178,5
+3555189,25761178,2
+GreenL,25761178,5
+50402288,25761178,4
+2161369,25761178,4
+Solace1994,25761178,5
+Vanessa...,25761178,4
+84569100,25761178,3
+shsnn,25761178,2
+Strangefamiliar,25761178,4
+marsding,25761178,4
+72924603,25761178,2
+93995053,25761178,5
+linchuzhuang,25761178,4
+44349781,25761178,5
+Sunnydoer,25761178,4
+127972732,25761178,4
+52583509,25761178,4
+57783752,25761178,4
+60089109,25761178,5
+91402535,25761178,5
+91096805,25761178,5
+Anitavivi,25761178,4
+81923941,25761178,4
+3215431,25761178,4
+qiqiuping,25761178,3
+49117698,25761178,4
+52278915,25761178,4
+35348647,25761178,4
+littlerow,25761178,3
+51606142,25761178,4
+2889432,25761178,4
+9167697,25761178,-1
+archiechan,25761178,3
+buwubuhui,25761178,3
+47383241,25761178,3
+annxin19,25761178,5
+133965029,25761178,3
+pudding123go,25761178,4
+40283915,25761178,4
+metkee,25761178,4
+jiangjiang1214,25761178,4
+1077635,25761178,3
+54107502,25761178,5
+rockholiday,25761178,5
+qiaoqq,25761178,5
+doorway,25761178,4
+30705247,25761178,4
+xlee,25761178,4
+46270610,25761178,5
+101755012,25761178,3
+4700776,25761178,3
+2788057,25761178,5
+shiiirley,25761178,4
+52196738,25761178,4
+128090900,25761178,4
+58809404,25761178,5
+113327434,25761178,4
+iceprincess,25761178,4
+49812770,25761178,4
+76294839,25761178,5
+58936052,25761178,4
+csprite,25761178,5
+94333219,25761178,4
+cay_gene,25761178,5
+81445026,25761178,3
+64535817,25761178,3
+128315720,25761178,5
+yixiugeagnes,25761178,5
+harriet,25761178,4
+35336788,25761178,5
+55575289,25761178,5
+unmask_sage,25761178,4
+koukoukou,25761178,5
+58792200,25761178,4
+133927102,25761178,4
+muyuxiaoxiao,25761178,4
+45017140,25761178,4
+133801601,25761178,4
+xiezhiyuan,25761178,5
+cpcp,25761178,4
+92809978,25761178,3
+lusslion,25761178,5
+81815749,25761178,4
+128142501,25761178,3
+heisixiang,25761178,3
+theninthmonth,25761178,4
+64010291,25761178,4
+4242859,25761178,3
+92022849,25761178,4
+65878913,25761178,4
+42321344,25761178,4
+62605597,25761178,5
+zuihaodewo,25761178,3
+aries23,25761178,5
+4197973,25761178,5
+wangmuse,25761178,5
+64124886,25761178,3
+lhx,25761178,5
+23262980,25761178,4
+128468373,25761178,4
+ak430,25761178,4
+xiaosanye,25761178,5
+45448846,25761178,4
+5587401,25761178,4
+44284522,25761178,4
+Manto,25761178,-1
+foxcake,25761178,5
+98643202,25761178,4
+dingzijie,25761178,3
+juzi0809,25761178,5
+atengbrilliance,25761178,3
+69992540,25761178,4
+54530089,25761178,4
+49060712,25761178,3
+59901599,25761178,5
+vvioivv,25761178,4
+54011582,25761178,4
+72781855,25761178,4
+43235070,25761178,4
+2427458,25761178,5
+3586869,25761178,4
+3879071,25761178,4
+54285836,25761178,4
+65562790,25761178,4
+Ozu,25761178,4
+54823375,25761178,5
+2760447,25761178,5
+15920466,25761178,4
+onlyjtl,25761178,5
+seven_beginning,25761178,4
+asswmd,25761178,4
+43634472,25761178,5
+84624993,25761178,4
+guyewuzhe,25761178,2
+zsqbgd,25761178,4
+nishibaichi,25761178,3
+dasda,25761178,5
+108077404,25761178,5
+2049622,25761178,3
+asum,25761178,4
+59570666,25761178,5
+hulumei,25761178,4
+58217178,25761178,5
+50281819,25761178,5
+fufei,25761178,4
+63622302,25761178,5
+65079476,25761178,4
+51492516,25761178,4
+84077935,25761178,4
+2092985,25761178,4
+19240319,25761178,4
+76811076,25761178,4
+58430090,25761178,4
+63306444,25761178,4
+62943026,25761178,4
+54499883,25761178,3
+43780153,25761178,4
+love-99,25761178,5
+55864337,25761178,4
+133471355,25761178,3
+3723890,25761178,5
+kaijisang,25761178,4
+taylorzc,25761178,4
+120222665,25761178,3
+Show-_-,25761178,4
+81863885,25761178,4
+132987469,25761178,4
+71102846,25761178,5
+pgdzhua,25761178,3
+indieX,25761178,4
+53425694,25761178,3
+76331020,25761178,4
+31102423,25761178,4
+79560195,25761178,4
+2301005,25761178,4
+tammysky,25761178,3
+Aulicaxoxo,25761178,5
+54658264,25761178,4
+mandyyuan,25761178,4
+damnm,25761178,4
+49521395,25761178,5
+131752179,25761178,5
+Tiamo0118,25761178,4
+48723605,25761178,4
+DLZ0724,25761178,4
+130707216,25761178,5
+hichai,25761178,3
+47229378,25761178,4
+catsissy,25761178,4
+zgd0914,25761178,4
+60197347,25761178,-1
+2958930,25761178,5
+48351334,25761178,4
+22543580,25761178,5
+54057235,25761178,5
+hanaandalice720,25761178,5
+8903991,25761178,5
+76299602,25761178,5
+4494902,25761178,4
+116902692,25761178,4
+MYGreenDay,25761178,1
+47618742,25761178,4
+52461129,25761178,3
+qx2,25761178,3
+58495364,25761178,4
+zwj514235,25761178,4
+idorothy,25761178,4
+43891940,25761178,4
+sodawubei,25761178,4
+61331002,25761178,4
+55439146,25761178,4
+71765627,25761178,4
+anlygissing,25761178,5
+58924455,25761178,5
+flowml,25761178,4
+ursyoyo,25761178,4
+2073110,25761178,4
+2054231,25761178,4
+45298840,25761178,4
+vivianBS,25761178,5
+55303738,25761178,5
+53155339,25761178,4
+pingfandeshabi,25761178,4
+54125438,25761178,4
+74017397,25761178,4
+49699512,25761178,5
+53430352,25761178,4
+Dpudding,25761178,5
+68219887,25761178,3
+59923496,25761178,4
+54108610,25761178,5
+43781014,25761178,4
+90701256,25761178,5
+74044460,25761178,5
+cocoatee,25761178,3
+78428870,25761178,5
+64796008,25761178,5
+47187938,25761178,4
+125741310,25761178,5
+flyfrankenstein,25761178,4
+69134074,25761178,4
+ms_one,25761178,2
+mime,25761178,5
+dennisXing,25761178,4
+76379175,25761178,5
+Haididelan,25761178,5
+46025465,25761178,4
+28026736,25761178,4
+66178513,25761178,3
+4550491,25761178,4
+howlformousai,25761178,4
+68230289,25761178,4
+121674233,25761178,4
+gentlepuppy,25761178,2
+baoxiaozha,25761178,5
+kumi_ko,25761178,5
+121805540,25761178,4
+vivi823,25761178,4
+60408213,25761178,5
+imgsy,25761178,5
+33132526,25761178,4
+3430886,25761178,4
+61369928,25761178,4
+1396380,25761178,4
+2934232,25761178,5
+76036345,25761178,-1
+133626804,25761178,4
+102902029,25761178,5
+Narcotic_,25761178,4
+67992127,25761178,5
+Neverlandor,25761178,4
+2442458,25761178,-1
+moszz,25761178,4
+esterhazy,25761178,5
+dyhy822,25761178,4
+che.part.one,25761178,3
+liwanjun,25761178,5
+81938681,25761178,5
+69980622,25761178,4
+addictsun,25761178,5
+Illiteracyyy,25761178,4
+56959331,25761178,3
+u_lullaby,25761178,4
+4648504,25761178,4
+58415543,25761178,5
+shasha9022,25761178,5
+85060919,25761178,5
+4576910,25761178,-1
+46781081,25761178,4
+1878284,25761178,3
+49524408,25761178,5
+languheshang,25761178,5
+67958148,25761178,4
+64146995,25761178,4
+45909488,25761178,5
+dingDX,25761178,4
+58929957,25761178,3
+105892231,25761178,3
+flowertide,25761178,4
+81344855,25761178,3
+Annandan,25761178,5
+132100276,25761178,4
+66192057,25761178,4
+130518384,25761178,5
+Gdeer,25761178,4
+53479679,25761178,5
+70788416,25761178,5
+coka1999,25761178,4
+oncemultiverse,25761178,2
+jeremywan,25761178,-1
+59156667,25761178,4
+thezfwife,25761178,4
+8342264,25761178,4
+76236179,25761178,2
+xiaoxiao0927,25761178,4
+cassandracheung,25761178,-1
+49445326,25761178,4
+74084887,25761178,4
+everpassenger,25761178,5
+77281081,25761178,5
+Reignian,25761178,4
+YakiraKw,25761178,4
+70134774,25761178,5
+13307772,25761178,4
+onless,25761178,4
+tzytime,25761178,3
+68584442,25761178,5
+taoxiaomeng,25761178,3
+54088972,25761178,3
+77557534,25761178,3
+qweerew,25761178,5
+44105688,25761178,4
+57925894,25761178,4
+4659570,25761178,5
+65810005,25761178,4
+alamao,25761178,-1
+121993713,25761178,3
+TL-toupan512,25761178,5
+48876836,25761178,5
+maluanchengwei,25761178,4
+hana-neverland,25761178,5
+fighting1669,25761178,5
+83043648,25761178,4
+49679739,25761178,5
+sevenhwa,25761178,-1
+89318429,25761178,5
+N35,25761178,5
+100249349,25761178,5
+33064145,25761178,4
+4096669,25761178,3
+53307313,25761178,4
+16526373,25761178,4
+33663451,25761178,4
+6500897,25761178,-1
+bilibili01,25761178,3
+51759241,25761178,4
+47655924,25761178,4
+cities,25761178,-1
+lengyueeros,25761178,4
+133305407,25761178,5
+31310592,25761178,5
+2839721,25761178,5
+56973040,25761178,5
+Seeos,25761178,4
+54897892,25761178,4
+zhangjian_1q26,25761178,3
+puppyipussy,25761178,3
+102714413,25761178,5
+1742755,25761178,4
+80703912,25761178,2
+1423904,25761178,4
+55377169,25761178,5
+echofrancis,25761178,4
+mocnabuodouhs,25761178,4
+echo_weddy,25761178,4
+J.Wen,25761178,4
+59721065,25761178,5
+qiufen,25761178,5
+96659861,25761178,-1
+63292081,25761178,5
+47576659,25761178,3
+47774379,25761178,3
+xgtmy95,25761178,-1
+loveirina,25761178,3
+97010885,25761178,4
+64053563,25761178,4
+hazelhao,25761178,3
+2150724,25761178,4
+pinxue,25761178,5
+91133669,25761178,5
+64352987,25761178,4
+lsljctx,25761178,5
+59858754,25761178,4
+hellokimi,25761178,4
+79506720,25761178,5
+naivedick,25761178,5
+fishend,25761178,4
+27339155,25761178,5
+4889336,25761178,4
+82414014,25761178,4
+76611008,25761178,4
+71108776,25761178,4
+17248017,25761178,5
+53082085,25761178,4
+122614702,25761178,5
+SINhuang,25761178,3
+69088119,25761178,5
+2278140,25761178,4
+qinxuanzi,25761178,5
+67436408,25761178,4
+44002735,25761178,5
+81086965,25761178,5
+121002785,25761178,5
+116506787,25761178,4
+69833440,25761178,4
+11020421,25761178,3
+74678898,25761178,2
+mymx,25761178,4
+33195145,25761178,3
+35360651,25761178,4
+104265782,25761178,4
+68140400,25761178,2
+65900502,25761178,4
+55333647,25761178,4
+3831169,25761178,5
+81773475,25761178,3
+4244410,25761178,4
+51670482,25761178,5
+64186568,25761178,4
+Zenforfree,25761178,4
+81407852,25761178,4
+45127178,25761178,5
+ainiruyanjing,25761178,5
+51048386,25761178,4
+121100970,25761178,3
+candybox0608,25761178,-1
+28514348,25761178,5
+lidejun,25761178,5
+64064680,25761178,5
+52975442,25761178,5
+doloreshaze,25761178,4
+yini3a87,25761178,4
+2565519,25761178,-1
+suwa,25761178,5
+roczhong,25761178,3
+lvrenl,25761178,5
+64780259,25761178,4
+122308666,25761178,4
+90616646,25761178,4
+32821271,25761178,4
+87010317,25761178,4
+waynewang,25761178,4
+taooqi,25761178,3
+demoncat,25761178,3
+skateismylife,25761178,5
+128760790,25761178,5
+42961895,25761178,3
+louisyoung1026,25761178,3
+67358323,25761178,4
+3270064,25761178,5
+3017985,25761178,5
+49369904,25761178,5
+58302904,25761178,4
+no_saccharin,25761178,5
+76506122,25761178,4
+ciaoxu,25761178,4
+48961693,25761178,3
+nishuoshenme,25761178,5
+2828074,25761178,4
+3840213,25761178,5
+syrinxhan,25761178,4
+huiverci,25761178,3
+xingyun1012,25761178,5
+47852349,25761178,4
+lovesheng,25761178,4
+73714750,25761178,4
+1278172,25761178,4
+murryto,25761178,4
+58294250,25761178,-1
+cl20lc,25761178,4
+locking,25761178,4
+vickybao,25761178,4
+eunnis,25761178,4
+Isa1996,25761178,4
+53362350,25761178,4
+weexf,25761178,4
+cicici2002,25761178,4
+92988194,25761178,5
+loli_TT,25761178,4
+linzexu,25761178,3
+107112735,25761178,3
+50093205,25761178,5
+62318575,25761178,4
+56252551,25761178,3
+80098161,25761178,5
+2623491,25761178,4
+rusaki,25761178,4
+luoshanxuanzhu,25761178,4
+10026373,25761178,5
+73014832,25761178,3
+xiaoxiaodeyuanz,25761178,4
+35873854,25761178,5
+spongebobsquare,25761178,5
+1573732,25761178,4
+Kingnima,25761178,4
+fzhizhi,25761178,5
+2419512,25761178,4
+77152937,25761178,5
+47410736,25761178,5
+37263901,25761178,5
+69429649,25761178,4
+19808415,25761178,5
+4915899,25761178,3
+60821745,25761178,5
+121289747,25761178,5
+yisshu,25761178,4
+63485325,25761178,5
+57777688,25761178,5
+susie0828,25761178,-1
+2460556,25761178,4
+84564093,25761178,5
+ido_idoing,25761178,4
+airan712,25761178,4
+64682307,25761178,5
+GMDY,25761178,4
+43589213,25761178,5
+4421474,25761178,4
+3012359,25761178,5
+115622817,25761178,5
+60559982,25761178,4
+zipaiwang,25761178,4
+Summerhoda,25761178,5
+68327060,25761178,4
+64461682,25761178,5
+alanerer,25761178,4
+loveBJuncle,25761178,5
+55717894,25761178,4
+bearblindman,25761178,4
+38984888,25761178,5
+62902715,25761178,5
+suffering0,25761178,-1
+Jillian,25761178,4
+49983823,25761178,4
+39015968,25761178,4
+48480567,25761178,4
+54462549,25761178,4
+104759093,25761178,4
+tlbb008,25761178,3
+ipci,25761178,-1
+79677319,25761178,5
+52463447,25761178,2
+26503826,25761178,3
+sevtattoo,25761178,4
+49160897,25761178,4
+reeves2014,25761178,3
+julynse,25761178,5
+66767676,25761178,5
+Thamas,25761178,5
+56332969,25761178,4
+72057821,25761178,3
+wxw1900,25761178,4
+58520151,25761178,4
+58547901,25761178,5
+46799195,25761178,3
+57714945,25761178,3
+27627449,25761178,4
+57848312,25761178,4
+gee880130,25761178,3
+2461685,25761178,4
+dandangobelieve,25761178,4
+115560708,25761178,4
+57824854,25761178,4
+Daruke,25761178,5
+yukino,25761178,4
+49298056,25761178,5
+49108399,25761178,4
+53185538,25761178,4
+62710966,25761178,3
+58259260,25761178,3
+NKscar,25761178,5
+2616668,25761178,5
+luxuriant,25761178,5
+1516524,25761178,5
+chidaowufengdai,25761178,5
+40474222,25761178,5
+nirvana713,25761178,5
+59442791,25761178,4
+43301248,25761178,5
+47794724,25761178,4
+58338006,25761178,3
+58141531,25761178,5
+nmkl,25761178,5
+66626206,25761178,5
+weiyubin1987,25761178,3
+52587900,25761178,5
+yingcao,25761178,-1
+62546651,25761178,4
+2310497,25761178,3
+ilibby,25761178,4
+53801441,25761178,4
+25175985,25761178,4
+68199229,25761178,5
+Bebefore,25761178,4
+youngoceano,25761178,4
+34340016,25761178,5
+60853182,25761178,5
+61718820,25761178,-1
+56887399,25761178,4
+64230223,25761178,2
+121235168,25761178,4
+4614928,25761178,4
+migesha,25761178,5
+cuxindebenren,25761178,5
+cathy5,25761178,5
+liyanqst,25761178,4
+angel15ferry,25761178,4
+63305510,25761178,4
+maomao19901108,25761178,5
+Charloo,25761178,4
+61486728,25761178,1
+keledoll,25761178,5
+49087160,25761178,2
+51810641,25761178,1
+114034263,25761178,5
+47370846,25761178,5
+57791239,25761178,3
+57377786,25761178,5
+79659122,25761178,-1
+65038141,25761178,3
+22991326,25761178,4
+46439800,25761178,3
+vitus,25761178,5
+5818418,25761178,4
+longya,25761178,4
+17228847,25761178,5
+Alice_L,25761178,5
+69094998,25761178,3
+masaikejun,25761178,4
+4067420,25761178,4
+115665873,25761178,4
+madeyaosia,25761178,5
+justno,25761178,-1
+61858967,25761178,5
+57803169,25761178,3
+51126355,25761178,5
+weijjcd,25761178,4
+70534967,25761178,5
+zyzyzythl,25761178,5
+48542056,25761178,1
+52445979,25761178,4
+60550213,25761178,4
+74718882,25761178,5
+63278789,25761178,3
+sensensenji,25761178,3
+58797753,25761178,4
+4461809,25761178,-1
+61591334,25761178,3
+36627836,25761178,4
+35111006,25761178,-1
+vvvvv5,25761178,4
+Hdodo,25761178,4
+63262081,25761178,4
+61712114,25761178,4
+4853049,25761178,5
+ccamanda,25761178,5
+1183940,25761178,-1
+24675242,25761178,4
+2144848,25761178,4
+shengsheng2,25761178,5
+3964079,25761178,4
+Orchid,25761178,3
+aaleng,25761178,5
+34723665,25761178,5
+penguinwang2008,25761178,4
+54887603,25761178,-1
+b.side,25761178,5
+kaminari,25761178,4
+teatimeing,25761178,4
+3333658,25761178,3
+depstar,25761178,4
+65346969,25761178,4
+3171344,25761178,5
+49798956,25761178,2
+113327866,25761178,4
+hdhere,25761178,3
+57590168,25761178,4
+50195547,25761178,5
+48251373,25761178,5
+asthing,25761178,3
+36695909,25761178,4
+35546848,25761178,4
+64892439,25761178,4
+63663510,25761178,5
+57962811,25761178,5
+53243039,25761178,4
+3187313,25761178,5
+zouzouwanwan,25761178,5
+71972126,25761178,5
+2494468,25761178,5
+Simplelove_,25761178,3
+51990488,25761178,4
+74392239,25761178,4
+4523412,25761178,5
+41680643,25761178,3
+72547163,25761178,4
+62478487,25761178,5
+56057081,25761178,3
+zaraatnike,25761178,4
+47172452,25761178,2
+deadpoet_tt,25761178,5
+3585677,25761178,4
+2990791,25761178,3
+emlia,25761178,3
+yyuan9372,25761178,4
+fortblk,25761178,5
+65925279,25761178,4
+69706653,25761178,4
+Detached,25761178,3
+dorislee63,25761178,4
+65607463,25761178,4
+tomqulab,25761178,-1
+kinokoikko,25761178,5
+dobima,25761178,4
+He.Loves.QKL,25761178,5
+Just_vv,25761178,5
+66822128,25761178,5
+53063719,25761178,4
+62704108,25761178,5
+91140332,25761178,5
+93091639,25761178,5
+55398830,25761178,4
+75539953,25761178,4
+mlgg,25761178,5
+41289155,25761178,4
+96062684,25761178,5
+96062684,25761178,5
+Miss521,25761178,5
+49205354,25761178,4
+121926110,25761178,4
+58254446,25761178,4
+karling,25761178,5
+TansyYEH,25761178,4
+49630968,25761178,4
+PTT,25761178,5
+54497011,25761178,4
+stan24,25761178,4
+74689831,25761178,5
+83130339,25761178,4
+4856255,25761178,4
+130685876,25761178,5
+40936615,25761178,4
+Veronicachai,25761178,5
+3679180,25761178,4
+127844740,25761178,5
+83209029,25761178,3
+64061419,25761178,3
+114353499,25761178,3
+gkywsy,25761178,5
+129021776,25761178,5
+37567739,25761178,-1
+puggy,25761178,3
+nuanda,25761178,5
+manta520,25761178,5
+84708478,25761178,5
+daniel01,25761178,5
+68779428,25761178,4
+littleumbrella,25761178,4
+82672460,25761178,5
+56988998,25761178,4
+111461811,25761178,4
+49258293,25761178,5
+62507044,25761178,5
+healer5,25761178,5
+63849510,25761178,4
+56083817,25761178,5
+56083817,25761178,5
+132024297,25761178,5
+sszwe,25761178,5
+69692421,25761178,4
+49479409,25761178,5
+50318763,25761178,4
+71288757,25761178,4
+soliantunw,25761178,4
+50629676,25761178,3
+119166720,25761178,5
+sue0x,25761178,4
+63346835,25761178,5
+lilipop,25761178,4
+53453211,25761178,3
+3897637,25761178,3
+96233628,25761178,5
+63150042,25761178,4
+69571777,25761178,4
+42477053,25761178,5
+74499406,25761178,4
+53283594,25761178,4
+fanzhenNO1,25761178,3
+77012577,25761178,4
+45795936,25761178,4
+2454965,25761178,4
+33907993,25761178,4
+122491642,25761178,4
+27383917,25761178,4
+knoppers,25761178,5
+58021214,25761178,4
+tytony890115,25761178,4
+82072691,25761178,5
+superfatrich,25761178,5
+14914580,25761178,4
+132433995,25761178,4
+luzhenxing,25761178,4
+carl1988,25761178,5
+33538142,25761178,5
+132827615,25761178,4
+ishtarie,25761178,4
+45836100,25761178,5
+3905498,25761178,5
+73868761,25761178,3
+der_Baum,25761178,4
+59439862,25761178,4
+1614995,25761178,4
+121829507,25761178,5
+121897109,25761178,4
+119024126,25761178,5
+56413610,25761178,4
+46735351,25761178,5
+Lovelesssssss,25761178,4
+67682492,25761178,4
+67489382,25761178,3
+jennylove,25761178,3
+YYY0u0,25761178,4
+1159296,25761178,3
+51482919,25761178,4
+61075417,25761178,4
+119761283,25761178,4
+58027867,25761178,5
+46047111,25761178,3
+tiaoyu,25761178,4
+46585688,25761178,4
+79609587,25761178,4
+48289210,25761178,4
+66919177,25761178,5
+49685366,25761178,5
+28709669,25761178,4
+3052195,25761178,5
+cheer1993,25761178,5
+ruilixiurui,25761178,5
+59856889,25761178,4
+51571478,25761178,5
+likeview,25761178,3
+59516134,25761178,5
+3222851,25761178,2
+56919674,25761178,5
+4168284,25761178,-1
+50413289,25761178,4
+92442460,25761178,4
+monica-lcw,25761178,4
+1486502,25761178,4
+2193949,25761178,5
+crazyxiangyan,25761178,4
+caodandejiaofu,25761178,4
+sevenVSseven,25761178,4
+66753862,25761178,4
+52125579,25761178,3
+83602578,25761178,5
+120654245,25761178,5
+59568163,25761178,4
+wangfei1122,25761178,5
+kalilulu,25761178,4
+74973391,25761178,3
+rayyuxi,25761178,5
+Sun_1001,25761178,3
+littlepinkbang7,25761178,5
+47674074,25761178,3
+1653421,25761178,4
+hwjnbmyx,25761178,5
+49587059,25761178,3
+54396381,25761178,5
+wangleku0310,25761178,4
+48984528,25761178,4
+6075587,25761178,4
+78586687,25761178,5
+hugjm,25761178,4
+yaod10227,25761178,5
+yutingamy,25761178,4
+37133098,25761178,5
+swell1019,25761178,4
+40153006,25761178,4
+58129248,25761178,4
+102582165,25761178,4
+daizy_10,25761178,4
+69455218,25761178,3
+RIVERT,25761178,4
+61719919,25761178,4
+clare1991,25761178,4
+jite,25761178,4
+Linqiny,25761178,4
+ddmsl,25761178,5
+3690002,25761178,5
+3428480,25761178,5
+128140911,25761178,4
+115483881,25761178,5
+miss-sun,25761178,5
+79939000,25761178,5
+77501042,25761178,5
+yuxingshu,25761178,4
+szdouban,25761178,4
+sophie1007,25761178,5
+draik,25761178,5
+71560494,25761178,4
+50256249,25761178,5
+48712788,25761178,5
+kuangjieyu,25761178,5
+59546834,25761178,4
+4872901,25761178,4
+4872901,25761178,4
+66521777,25761178,3
+46365473,25761178,4
+wruo,25761178,4
+55480814,25761178,5
+70918158,25761178,4
+clockworkpotato,25761178,4
+1333788,25761178,4
+ChaoticAeon,25761178,3
+58180925,25761178,3
+126876806,25761178,4
+90859781,25761178,4
+119489543,25761178,4
+67606836,25761178,3
+steflover,25761178,3
+103771999,25761178,4
+68918586,25761178,5
+campocampo,25761178,3
+84698699,25761178,5
+DLPONGPONG,25761178,4
+59406381,25761178,4
+51061132,25761178,5
+40223789,25761178,4
+61704253,25761178,4
+25721762,25761178,4
+55539019,25761178,-1
+44963286,25761178,4
+Arenas4.-_-Hreo,25761178,4
+53554219,25761178,4
+65988925,25761178,2
+61566876,25761178,4
+yizhao,25761178,4
+jimmyandpa,25761178,5
+1730837,25761178,4
+1277968,25761178,5
+shiningvi,25761178,4
+53854833,25761178,4
+46949282,25761178,5
+onlyloll,25761178,4
+yetel,25761178,5
+44660645,25761178,5
+angiangeng,25761178,3
+130237933,25761178,-1
+19219702,25761178,5
+71636255,25761178,5
+4143335,25761178,3
+128859100,25761178,4
+48894602,25761178,4
+43640979,25761178,3
+xyc1987,25761178,3
+phoebe9982,25761178,5
+82689458,25761178,3
+55637099,25761178,5
+77307938,25761178,4
+51864165,25761178,4
+65588926,25761178,4
+43200549,25761178,4
+60646694,25761178,-1
+40077891,25761178,5
+75699782,25761178,4
+nuan_1988,25761178,5
+69806466,25761178,4
+74056494,25761178,3
+Guycc,25761178,5
+57643998,25761178,3
+renyuanstella,25761178,4
+45797451,25761178,3
+40097120,25761178,4
+74015810,25761178,4
+66178804,25761178,5
+yaolinj,25761178,3
+57963745,25761178,5
+45142577,25761178,4
+66495218,25761178,4
+lamkaki,25761178,5
+79733760,25761178,5
+49898736,25761178,4
+69178821,25761178,5
+44384908,25761178,4
+Laura502,25761178,5
+Laura502,25761178,5
+Zeta-Pyrojewel,25761178,5
+phyliss,25761178,-1
+52685737,25761178,4
+130860796,25761178,3
+48885380,25761178,5
+130398075,25761178,4
+62186575,25761178,3
+24357802,25761178,5
+74397322,25761178,3
+2360771,25761178,4
+kalashnikov,25761178,4
+57842249,25761178,4
+Hc66,25761178,4
+79176271,25761178,5
+Leoky,25761178,3
+49519192,25761178,5
+laohao,25761178,2
+79863608,25761178,4
+2056209,25761178,4
+sunwiner,25761178,4
+67981371,25761178,5
+blur4love,25761178,3
+4428446,25761178,4
+62509398,25761178,5
+wilshere19,25761178,5
+VRoss,25761178,5
+23981651,25761178,5
+a13025566,25761178,3
+imick,25761178,4
+62457534,25761178,5
+91036793,25761178,4
+91930759,25761178,5
+54067962,25761178,4
+28853372,25761178,5
+68034921,25761178,4
+xinxinniannian,25761178,4
+monokun,25761178,4
+3471664,25761178,4
+duanzizai,25761178,4
+tikchao,25761178,5
+75901033,25761178,4
+93455705,25761178,5
+49384111,25761178,-1
+52098739,25761178,5
+33914811,25761178,-1
+77904577,25761178,4
+jianguogogo,25761178,4
+43536991,25761178,3
+46394662,25761178,4
+SamuelYan,25761178,4
+vinkingking,25761178,5
+32977496,25761178,4
+1368772,25761178,5
+giacintaxx,25761178,5
+gruel_,25761178,3
+clearhappy7,25761178,4
+41530654,25761178,4
+rengzai1893,25761178,5
+64716010,25761178,5
+64716010,25761178,5
+62206199,25761178,4
+36862106,25761178,4
+42790951,25761178,5
+fengyipian,25761178,5
+41130036,25761178,3
+65113652,25761178,3
+maureenz,25761178,5
+kejialin,25761178,5
+1182532,25761178,4
+hayeke2325156,25761178,5
+53477720,25761178,4
+firnhome,25761178,3
+3783012,25761178,4
+30282365,25761178,4
+61837547,25761178,3
+72684280,25761178,4
+yemiaoyi,25761178,4
+SOMOMOKO,25761178,4
+naigely,25761178,5
+fightim,25761178,5
+81254964,25761178,5
+56109881,25761178,-1
+yuetianxian,25761178,4
+42186843,25761178,4
+July_AuE,25761178,5
+47125926,25761178,5
+75288450,25761178,3
+1635650,25761178,4
+qiaoqinghe,25761178,4
+58429306,25761178,5
+53170578,25761178,4
+58693060,25761178,-1
+1377361,25761178,4
+119390684,25761178,3
+132717426,25761178,4
+3442648,25761178,4
+honeybunny9048,25761178,5
+3671533,25761178,4
+leonh,25761178,4
+47849453,25761178,4
+alicenana,25761178,5
+10723764,25761178,5
+41294098,25761178,4
+56239687,25761178,3
+4753861,25761178,4
+sysonchen,25761178,4
+92462355,25761178,5
+supremeJ,25761178,4
+zezzywa,25761178,-1
+45985032,25761178,5
+mozhuangbility,25761178,5
+2165440,25761178,4
+88335567,25761178,4
+54862589,25761178,4
+wangqt,25761178,3
+unali,25761178,4
+1766112,25761178,5
+laceless,25761178,5
+116744504,25761178,5
+59367965,25761178,5
+61928576,25761178,4
+lczy,25761178,3
+53561263,25761178,-1
+74854351,25761178,5
+47854967,25761178,4
+43113823,25761178,5
+spaceli,25761178,3
+69093262,25761178,4
+oweuuu,25761178,-1
+ideyes,25761178,4
+ashwind,25761178,4
+2768259,25761178,5
+55272555,25761178,4
+smallzssx,25761178,5
+chloecin,25761178,4
+2691472,25761178,4
+88338755,25761178,5
+53812143,25761178,4
+126650801,25761178,-1
+44361116,25761178,3
+fay_.,25761178,-1
+nolanxu,25761178,5
+pink_summer,25761178,4
+42775906,25761178,3
+56821325,25761178,3
+4094354,25761178,4
+32534097,25761178,5
+44778883,25761178,4
+sevenfall,25761178,4
+cap120,25761178,5
+34063715,25761178,4
+deathlegend,25761178,5
+2199045,25761178,4
+sirk,25761178,5
+boxxx,25761178,4
+93195803,25761178,5
+123857159,25761178,4
+71012035,25761178,5
+61733254,25761178,4
+avalyn,25761178,5
+zoeyqyq,25761178,4
+127708051,25761178,3
+doa,25761178,4
+39642972,25761178,4
+1746842,25761178,5
+2552979,25761178,5
+4234539,25761178,4
+fanlv,25761178,4
+opheliauncle,25761178,4
+48261081,25761178,5
+4671919,25761178,5
+caijiewen,25761178,4
+69368196,25761178,4
+pepperannn,25761178,4
+76655932,25761178,5
+chitty327,25761178,4
+35813524,25761178,4
+yuikkk,25761178,4
+maydayclouds,25761178,4
+60673811,25761178,3
+38407483,25761178,1
+yurisong,25761178,-1
+131365285,25761178,4
+54342753,25761178,3
+35892009,25761178,4
+yinjianfa,25761178,4
+46007359,25761178,5
+67984843,25761178,5
+119253085,25761178,5
+55347894,25761178,4
+themissingken,25761178,5
+of_sinner,25761178,-1
+75530128,25761178,-1
+75209900,25761178,5
+119451467,25761178,3
+122901063,25761178,5
+4774837,25761178,3
+lilyhmmm,25761178,3
+sanMao790,25761178,4
+56925135,25761178,4
+Ilovemypapa,25761178,4
+50151167,25761178,4
+40027917,25761178,5
+yuyude,25761178,5
+eedc,25761178,5
+41235201,25761178,4
+flamen_,25761178,4
+aspirin1995,25761178,5
+wind_field,25761178,4
+70455730,25761178,-1
+2653727,25761178,4
+jellysmiling,25761178,4
+mmj626,25761178,4
+89991541,25761178,4
+44137619,25761178,5
+70081984,25761178,5
+45949533,25761178,4
+y2j911,25761178,4
+love_maxmin,25761178,4
+yolandamiu,25761178,5
+IridescentSin,25761178,5
+80941550,25761178,4
+yaominzhu,25761178,5
+39937848,25761178,4
+48156038,25761178,4
+Plesiosaurus,25761178,4
+slackermok,25761178,4
+106019096,25761178,5
+jiaoyemei,25761178,4
+numbnight,25761178,4
+68424058,25761178,5
+48593748,25761178,4
+3760557,25761178,-1
+green198641,25761178,4
+121354261,25761178,4
+Joki_X,25761178,-1
+77351374,25761178,5
+Youandi4,25761178,4
+65383456,25761178,-1
+mygood,25761178,4
+49518806,25761178,4
+14587316,25761178,-1
+55986543,25761178,4
+52947390,25761178,-1
+xuancaidanqing,25761178,4
+syoyin,25761178,5
+58723728,25761178,5
+42554444,25761178,3
+132592664,25761178,4
+4200326,25761178,3
+54893820,25761178,5
+43842293,25761178,5
+48269477,25761178,4
+53548921,25761178,4
+yihaifei,25761178,4
+yqsophia,25761178,3
+52842678,25761178,4
+msw0123,25761178,4
+4100649,25761178,4
+hwyyj,25761178,5
+99632498,25761178,5
+76309125,25761178,3
+mysky,25761178,3
+Mdoudou,25761178,4
+biubangbang,25761178,4
+31790213,25761178,4
+53396901,25761178,4
+59236889,25761178,4
+2431347,25761178,4
+128421145,25761178,5
+cijfer,25761178,4
+58489881,25761178,4
+WillHunted,25761178,4
+HYGUY,25761178,4
+Lira_13,25761178,4
+54310365,25761178,4
+16583223,25761178,4
+37737818,25761178,4
+103217877,25761178,4
+tina0330,25761178,3
+evelyn_only,25761178,4
+59634469,25761178,5
+62210177,25761178,4
+Aimovie,25761178,3
+121880026,25761178,2
+blueviolet816,25761178,5
+2754204,25761178,3
+1320747,25761178,4
+57475766,25761178,4
+65639928,25761178,5
+KooK-Psycho,25761178,4
+3184552,25761178,5
+xuyangphoto,25761178,5
+von71224,25761178,5
+50732750,25761178,5
+37509961,25761178,5
+psyche213,25761178,5
+orange-star,25761178,5
+phoof,25761178,4
+63229017,25761178,4
+m0920,25761178,4
+hey.nanzhuang,25761178,4
+30621998,25761178,5
+vulperz,25761178,5
+A.Mo,25761178,5
+geniusfei,25761178,-1
+51721466,25761178,5
+siriusa,25761178,4
+kkkccc,25761178,3
+47193126,25761178,4
+51905890,25761178,3
+4345264,25761178,3
+129997200,25761178,-1
+zhhsbkl,25761178,5
+63915564,25761178,3
+toshiyi,25761178,5
+32817284,25761178,4
+42149787,25761178,3
+wensentedegushi,25761178,5
+69259241,25761178,5
+52407408,25761178,5
+winna91,25761178,5
+4042513,25761178,3
+35272301,25761178,4
+51222661,25761178,4
+89522853,25761178,5
+Ashin1118,25761178,4
+roseunicorn,25761178,5
+51592058,25761178,4
+54909051,25761178,-1
+stream_wang,25761178,5
+E-lover,25761178,3
+58603704,25761178,5
+34274857,25761178,4
+61037287,25761178,3
+43591943,25761178,4
+52894230,25761178,4
+97348317,25761178,3
+41634233,25761178,5
+cilar,25761178,5
+cunyuren,25761178,4
+129954450,25761178,3
+84885070,25761178,5
+59210955,25761178,3
+chouchou0707,25761178,5
+52055708,25761178,2
+69068951,25761178,3
+47668430,25761178,1
+69683493,25761178,4
+79627181,25761178,4
+119615925,25761178,5
+ijiaorui,25761178,4
+121080454,25761178,4
+44040922,25761178,4
+132501146,25761178,5
+Whauff,25761178,4
+renbirth,25761178,5
+2147839,25761178,3
+Cancer_x,25761178,4
+107103023,25761178,5
+neverbutterfly,25761178,4
+Serenie,25761178,5
+Rocky5821,25761178,4
+gaogaopark,25761178,5
+41090517,25761178,5
+97378875,25761178,5
+Aki.loves.rock,25761178,5
+monana,25761178,4
+ls_9211,25761178,5
+huanhai,25761178,4
+ricechow,25761178,5
+102935157,25761178,-1
+67463541,25761178,3
+63676625,25761178,4
+49860842,25761178,5
+46333291,25761178,5
+little_cupid,25761178,4
+41625097,25761178,5
+frannyhere,25761178,4
+58886429,25761178,4
+79905624,25761178,5
+tuzinike,25761178,2
+lolitaj,25761178,5
+54732272,25761178,5
+132435147,25761178,4
+smiletolife,25761178,2
+76428552,25761178,5
+27703240,25761178,5
+37377499,25761178,4
+90793123,25761178,4
+58379589,25761178,4
+66320772,25761178,5
+FlowerCharlotte,25761178,5
+53855737,25761178,5
+Suiziyue_,25761178,5
+57740011,25761178,4
+65157272,25761178,4
+wqy19951017,25761178,5
+93101993,25761178,5
+96799379,25761178,4
+luohuangertao,25761178,-1
+47467920,25761178,3
+45925969,25761178,4
+Link0406,25761178,5
+41471411,25761178,5
+34250040,25761178,5
+smallamo,25761178,4
+46053347,25761178,5
+47077151,25761178,5
+nighteye1123,25761178,4
+51855205,25761178,4
+seanhua,25761178,5
+62848275,25761178,4
+godlovebearxi,25761178,4
+tianranzijiegou,25761178,4
+56484149,25761178,3
+56054406,25761178,4
+pangpiu,25761178,4
+breadforest,25761178,4
+breadforest,25761178,4
+amanjj,25761178,5
+57968508,25761178,5
+58941847,25761178,5
+xizhijun,25761178,-1
+Lyy-,25761178,3
+48853220,25761178,4
+57758414,25761178,5
+73421795,25761178,4
+83180908,25761178,4
+etherhejia,25761178,5
+34990836,25761178,4
+53049553,25761178,4
+weiyuanzhang518,25761178,4
+2605495,25761178,4
+81850559,25761178,4
+63012050,25761178,4
+herofaykjj,25761178,5
+55438782,25761178,4
+35330234,25761178,4
+dearkiki,25761178,4
+3353989,25761178,5
+Pariscatzi,25761178,3
+MeloTheFisher,25761178,4
+z0830,25761178,3
+92254946,25761178,5
+14699938,25761178,4
+65247884,25761178,4
+79805335,25761178,5
+ttyingyuan,25761178,5
+ZotterElaine,25761178,4
+59116088,25761178,5
+lostItard,25761178,4
+56326446,25761178,4
+128661562,25761178,5
+59946746,25761178,5
+71211273,25761178,3
+allenz1313,25761178,5
+57972087,25761178,4
+lxf1988,25761178,5
+58480988,25761178,5
+3564670,25761178,4
+4527041,25761178,4
+flora0013,25761178,-1
+noahhhh,25761178,4
+littlebleach,25761178,-1
+48622975,25761178,5
+brainlesscong,25761178,5
+114764640,25761178,2
+51934577,25761178,4
+101747870,25761178,4
+62036162,25761178,4
+ziranjuaner,25761178,-1
+49595588,25761178,3
+121889027,25761178,4
+EchoTaem,25761178,4
+LindsayFisher,25761178,4
+essemoon,25761178,3
+78847176,25761178,4
+76564763,25761178,4
+1407788,25761178,-1
+zhousophia,25761178,3
+2387426,25761178,4
+LHone,25761178,4
+40692512,25761178,5
+75638865,25761178,4
+72387002,25761178,5
+54782824,25761178,4
+82842066,25761178,5
+woainikakashi,25761178,4
+tkaatzsuu3369,25761178,3
+88969333,25761178,5
+28238952,25761178,5
+movelay,25761178,5
+62498352,25761178,4
+77001028,25761178,5
+4387690,25761178,2
+66792674,25761178,-1
+37111406,25761178,4
+49460136,25761178,4
+pandawin,25761178,2
+greatcatti,25761178,4
+53915393,25761178,5
+2039569,25761178,3
+73538087,25761178,5
+dorajane,25761178,5
+xlew,25761178,5
+hzx334,25761178,5
+78202919,25761178,4
+4465654,25761178,5
+81784514,25761178,-1
+65975444,25761178,3
+46065114,25761178,4
+106661239,25761178,4
+H.O.O,25761178,5
+58291702,25761178,4
+46014273,25761178,4
+52956534,25761178,5
+amour1,25761178,4
+79497522,25761178,4
+60913555,25761178,4
+LasciatemiMorir,25761178,4
+kino00,25761178,4
+40970313,25761178,4
+59349301,25761178,5
+sunagao,25761178,4
+52660177,25761178,4
+foreverlethe,25761178,-1
+Danny-Green,25761178,-1
+121245426,25761178,4
+edwardpanda,25761178,5
+hxheng,25761178,4
+64076867,25761178,4
+cazze,25761178,3
+48046648,25761178,3
+3383915,25761178,3
+60860186,25761178,4
+hasuki523,25761178,4
+84629340,25761178,5
+73627812,25761178,3
+61827284,25761178,4
+pangzimiao,25761178,5
+goodbyemyprince,25761178,4
+3863337,25761178,3
+augusttree_fly,25761178,4
+102494183,25761178,4
+HA_bamboo,25761178,4
+75189266,25761178,5
+78414144,25761178,4
+96229888,25761178,5
+36961026,25761178,4
+hlinwang,25761178,5
+69773402,25761178,4
+qinxiaoyiqu,25761178,4
+53362229,25761178,4
+47458734,25761178,4
+63535536,25761178,4
+60771790,25761178,5
+119192914,25761178,4
+smiduo,25761178,-1
+55842990,25761178,4
+fan_tuan,25761178,4
+sourirefish,25761178,4
+84250645,25761178,4
+44192412,25761178,4
+106277735,25761178,2
+proteanmia,25761178,5
+55925373,25761178,4
+2162256,25761178,2
+79522058,25761178,4
+51265666,25761178,4
+62703970,25761178,5
+qijiuzhiyue,25761178,4
+100294226,25761178,5
+59904891,25761178,4
+7134514,25761178,2
+52093327,25761178,5
+57756886,25761178,5
+dorothealu,25761178,4
+tomerlaw,25761178,4
+78310941,25761178,5
+50687127,25761178,4
+36206497,25761178,4
+44323834,25761178,3
+baleyang,25761178,2
+2569268,25761178,3
+49220391,25761178,4
+lolitaashford,25761178,5
+41854776,25761178,5
+3352510,25761178,5
+3202437,25761178,4
+1182787,25761178,5
+78540381,25761178,5
+132378001,25761178,5
+3439248,25761178,4
+fuxiu,25761178,5
+1622781,25761178,5
+zhaoqingliang,25761178,5
+16301105,25761178,4
+yun96,25761178,4
+53585510,25761178,5
+iamsbp,25761178,4
+zoe1989,25761178,5
+21606016,25761178,5
+52957567,25761178,4
+60647471,25761178,1
+83119841,25761178,5
+3596426,25761178,2
+xiaoxincc,25761178,-1
+2167015,25761178,4
+melonking,25761178,4
+2116000,25761178,4
+56378325,25761178,4
+73118410,25761178,5
+68219798,25761178,4
+christinayeah,25761178,5
+38527141,25761178,5
+para77,25761178,4
+127356074,25761178,4
+75842929,25761178,3
+119702092,25761178,4
+73765169,25761178,5
+34517778,25761178,2
+vincent2010,25761178,3
+62149917,25761178,5
+52967718,25761178,4
+132331472,25761178,4
+9172847,25761178,4
+82291033,25761178,5
+sleep-a-summer,25761178,4
+diysad,25761178,-1
+50851987,25761178,4
+liusuer,25761178,4
+antiekin,25761178,4
+120605718,25761178,2
+karuko,25761178,5
+53145250,25761178,4
+groupie,25761178,3
+69168173,25761178,3
+cherrygeisha,25761178,5
+3510245,25761178,4
+Haze1,25761178,4
+14918191,25761178,3
+3941641,25761178,2
+sxmglovesummer,25761178,5
+57449856,25761178,5
+46988261,25761178,5
+62352485,25761178,4
+elvandjane,25761178,4
+whitesun,25761178,3
+67205440,25761178,5
+56914134,25761178,5
+75427447,25761178,4
+38080849,25761178,-1
+lozer,25761178,4
+demonstrative,25761178,4
+45362948,25761178,4
+vensia,25761178,3
+48973065,25761178,4
+48766134,25761178,5
+43585255,25761178,5
+chendax,25761178,5
+50028349,25761178,4
+63726446,25761178,4
+53455992,25761178,4
+xuyansong,25761178,4
+115560712,25761178,5
+15338047,25761178,3
+3982398,25761178,4
+4554090,25761178,3
+2965888,25761178,4
+Makoto614,25761178,4
+1622375,25761178,5
+akilaa,25761178,4
+59886067,25761178,-1
+swallowww,25761178,4
+37402473,25761178,4
+33354158,25761178,5
+68748096,25761178,5
+2199992,25761178,4
+3053426,25761178,4
+37409173,25761178,5
+58292158,25761178,4
+cageyz,25761178,5
+53046630,25761178,5
+pinkbebe,25761178,4
+50014844,25761178,4
+76351812,25761178,5
+simple_liu,25761178,5
+2892408,25761178,5
+evangella,25761178,5
+2208855,25761178,4
+62152456,25761178,5
+93484113,25761178,5
+kid007spy,25761178,4
+qiseguodu,25761178,4
+78470450,25761178,5
+43044093,25761178,3
+damos,25761178,-1
+josephgyal,25761178,3
+emily2ang,25761178,4
+59129484,25761178,4
+61309406,25761178,3
+lensliao,25761178,5
+dawnlight-joe,25761178,5
+killme2,25761178,5
+dearsissi,25761178,5
+82529955,25761178,5
+annsjl,25761178,4
+changfandiao,25761178,5
+gulunmu,25761178,4
+57418562,25761178,5
+57716769,25761178,5
+77797292,25761178,4
+52687755,25761178,5
+shuf,25761178,3
+45754533,25761178,4
+imdiaosi,25761178,4
+64191038,25761178,5
+129135232,25761178,3
+freenest,25761178,4
+56059788,25761178,5
+64306350,25761178,4
+4629743,25761178,5
+autumnsun,25761178,4
+6010099,25761178,5
+likecake,25761178,5
+40811209,25761178,4
+nineautumn,25761178,5
+4541080,25761178,4
+celinedsam,25761178,4
+pzaiqueen,25761178,3
+38281758,25761178,-1
+3548652,25761178,4
+54485776,25761178,3
+Woxinhuashu,25761178,3
+119456663,25761178,2
+Aspirinta,25761178,2
+61391879,25761178,5
+Constra1nt,25761178,4
+93469106,25761178,4
+journey4free,25761178,5
+91464573,25761178,4
+belyone,25761178,4
+40227533,25761178,5
+79534422,25761178,4
+2843251,25761178,4
+timliutianxiang,25761178,3
+60736257,25761178,5
+74823280,25761178,5
+82923352,25761178,5
+74139940,25761178,3
+58697566,25761178,3
+97416328,25761178,4
+sigua.z,25761178,4
+heydzi,25761178,4
+2848557,25761178,4
+39002982,25761178,4
+132215754,25761178,5
+yeats,25761178,5
+55627956,25761178,4
+tkseraph,25761178,5
+jx0517,25761178,5
+47150701,25761178,5
+49344280,25761178,-1
+60729691,25761178,4
+2751066,25761178,5
+goson,25761178,4
+mr.glasses,25761178,3
+43067179,25761178,5
+resurgam92dawn,25761178,5
+saruole,25761178,4
+jeremy-won,25761178,5
+rongyan1223,25761178,5
+fantasticshan,25761178,4
+48687824,25761178,4
+2429292,25761178,5
+130598470,25761178,3
+hexendehammer,25761178,4
+XUYUN-,25761178,5
+mmk817,25761178,5
+Xiongying315,25761178,3
+66048476,25761178,5
+120284585,25761178,5
+45391669,25761178,4
+bluelittlefish,25761178,4
+104554472,25761178,4
+WENROUJING,25761178,5
+rgwmnzyq,25761178,4
+jianmilid,25761178,4
+43730319,25761178,2
+f_floria,25761178,5
+51197070,25761178,2
+78754556,25761178,5
+41546216,25761178,4
+chelsea1214,25761178,4
+4140462,25761178,5
+azurl,25761178,3
+128514178,25761178,4
+ruanshusheng,25761178,3
+LittleMissApril,25761178,4
+52832866,25761178,4
+4549116,25761178,5
+3435124,25761178,5
+2201462,25761178,4
+51500085,25761178,3
+11566740,25761178,4
+70148567,25761178,4
+2769574,25761178,5
+iamrocker,25761178,4
+51422499,25761178,4
+little_star,25761178,4
+oakhui,25761178,4
+81799497,25761178,5
+65369148,25761178,5
+tsuholic,25761178,5
+121680409,25761178,5
+Tylermrx,25761178,4
+21040549,25761178,4
+VINCENTVCHAN,25761178,4
+60650660,25761178,5
+hepaopian,25761178,5
+sooooosweet,25761178,4
+44276090,25761178,2
+lesley921206,25761178,4
+crisess,25761178,4
+67266475,25761178,4
+61724445,25761178,4
+yuanyuanfeng,25761178,5
+hensoy,25761178,3
+50404313,25761178,4
+luna17sea,25761178,3
+63134950,25761178,5
+Mulholland,25761178,4
+YMxiaocungu,25761178,3
+2170177,25761178,4
+41083928,25761178,4
+chrno,25761178,1
+ishimi,25761178,5
+53146482,25761178,5
+65457803,25761178,5
+116138651,25761178,4
+51284624,25761178,5
+122981729,25761178,3
+76617506,25761178,4
+danielwan,25761178,4
+52991857,25761178,4
+57818440,25761178,3
+xxxmting,25761178,3
+62602235,25761178,-1
+55957709,25761178,4
+71543587,25761178,4
+50079024,25761178,4
+wjscxx,25761178,4
+81404706,25761178,4
+56223706,25761178,5
+90020186,25761178,3
+60178836,25761178,4
+adeline9999,25761178,3
+roymo,25761178,3
+50924789,25761178,5
+CobbWalt,25761178,5
+53818655,25761178,4
+51135746,25761178,4
+chensuself,25761178,5
+58076873,25761178,4
+54878176,25761178,4
+94880880,25761178,4
+aegisxu,25761178,5
+edward1988,25761178,4
+61877419,25761178,4
+35297714,25761178,4
+51478692,25761178,5
+79895962,25761178,4
+44349376,25761178,3
+grbzywg,25761178,2
+120353268,25761178,5
+akiisajunk,25761178,5
+zhengxiaoben,25761178,-1
+catsama77,25761178,4
+60044541,25761178,3
+67209695,25761178,4
+AOB,25761178,4
+amir0320,25761178,4
+4498680,25761178,4
+sanhao_love,25761178,5
+sitwaiting,25761178,4
+66168101,25761178,5
+biketo,25761178,5
+35135916,25761178,3
+58494684,25761178,3
+53066275,25761178,5
+hiyejia,25761178,4
+70809877,25761178,4
+andless,25761178,-1
+45479973,25761178,3
+littleyueyue,25761178,2
+77084511,25761178,5
+60016627,25761178,5
+110780925,25761178,3
+wroctaw,25761178,4
+8491923,25761178,4
+66663254,25761178,3
+GameCEO,25761178,4
+zuolun2046,25761178,5
+antonia422,25761178,4
+3843442,25761178,3
+tamanegichan,25761178,4
+115985324,25761178,4
+122847508,25761178,3
+baladong123,25761178,4
+62221399,25761178,5
+84789038,25761178,4
+islandmeng,25761178,-1
+73660377,25761178,3
+53978584,25761178,5
+qingtongkuihua,25761178,5
+72924510,25761178,3
+leebins,25761178,4
+ltp19950208,25761178,4
+35578162,25761178,4
+49138494,25761178,4
+2119698,25761178,5
+37077356,25761178,4
+104964900,25761178,4
+tiffany_love,25761178,4
+halfsiren,25761178,4
+27632752,25761178,3
+65593493,25761178,5
+GreenArlene,25761178,-1
+56169154,25761178,5
+57061897,25761178,4
+43098377,25761178,4
+whiteginger,25761178,4
+hanadomoto,25761178,5
+54478886,25761178,5
+3522428,25761178,5
+76283003,25761178,4
+51615977,25761178,5
+chenluanluan,25761178,5
+sereflower,25761178,5
+7233450,25761178,4
+44021986,25761178,4
+2872117,25761178,4
+guanyiton,25761178,4
+guitarain,25761178,4
+strawberryever,25761178,4
+dosbeer,25761178,5
+2414691,25761178,4
+62562678,25761178,4
+65739692,25761178,4
+zuochengyun,25761178,5
+dijionnn,25761178,4
+130493144,25761178,5
+97263262,25761178,5
+jxxyych,25761178,3
+37751161,25761178,5
+51363896,25761178,4
+86691385,25761178,4
+cenalarz,25761178,3
+50072807,25761178,4
+48183944,25761178,3
+80407002,25761178,5
+30285418,25761178,5
+OOXX410,25761178,5
+jnwfy2008,25761178,4
+linglu3377,25761178,5
+55531611,25761178,5
+2126183,25761178,4
+sinsist,25761178,4
+44577463,25761178,5
+52775018,25761178,5
+derekderek,25761178,3
+45586906,25761178,3
+it-fans,25761178,3
+1595012,25761178,5
+renemomo,25761178,4
+kungwai,25761178,3
+97211660,25761178,4
+Seeeeeeee,25761178,4
+96290717,25761178,4
+ZhaHuanEr,25761178,5
+39945204,25761178,5
+75231611,25761178,4
+63612050,25761178,4
+67181847,25761178,4
+sodom,25761178,5
+benbig,25761178,4
+66932854,25761178,3
+119203760,25761178,4
+61398424,25761178,5
+realvander,25761178,4
+4627071,25761178,4
+juwujian,25761178,4
+imjerry,25761178,3
+51067589,25761178,4
+3023030,25761178,5
+nishibilaoshima,25761178,5
+77848962,25761178,5
+80798230,25761178,-1
+68968517,25761178,5
+blacktea077,25761178,4
+53784570,25761178,5
+sdayor,25761178,4
+128024438,25761178,4
+2352053,25761178,4
+45970738,25761178,4
+32709376,25761178,3
+Jane1424335445,25761178,5
+52948312,25761178,4
+meiying1989,25761178,5
+56055590,25761178,4
+moontrain,25761178,4
+80437815,25761178,4
+v0Id0,25761178,3
+65832733,25761178,4
+flamencopp,25761178,5
+daisy_0629,25761178,5
+70805035,25761178,4
+1102841,25761178,5
+39878848,25761178,4
+46655913,25761178,4
+2196262,25761178,5
+57031441,25761178,4
+58209966,25761178,3
+73107735,25761178,4
+4417183,25761178,4
+60983088,25761178,3
+jjyywrz,25761178,4
+46430549,25761178,4
+psycheeee,25761178,4
+68100167,25761178,5
+61741541,25761178,5
+61748995,25761178,5
+130555333,25761178,4
+62920331,25761178,5
+30098194,25761178,5
+67134272,25761178,4
+sentimento-rose,25761178,5
+fiona-cin,25761178,5
+53323941,25761178,4
+jackandivy,25761178,4
+xxxholic99,25761178,3
+51257333,25761178,4
+3609566,25761178,5
+51426516,25761178,5
+77353675,25761178,5
+beanworks,25761178,5
+megansyr,25761178,4
+1112285,25761178,5
+netweng,25761178,5
+55910584,25761178,3
+lixixi1995,25761178,4
+50785660,25761178,5
+juzi1117,25761178,5
+98857291,25761178,5
+76936114,25761178,5
+2118868,25761178,4
+karasu419,25761178,5
+16903025,25761178,4
+wanglingting,25761178,4
+jeffersontang,25761178,4
+ymxdd326,25761178,4
+72820019,25761178,4
+58284262,25761178,5
+32390009,25761178,4
+Solo-n,25761178,4
+120516607,25761178,4
+71420864,25761178,5
+2825367,25761178,4
+1282175,25761178,3
+carrot8587,25761178,3
+reika_scar,25761178,4
+50180272,25761178,5
+YYweiwancheng,25761178,5
+60650202,25761178,4
+myqueenangela,25761178,4
+53363947,25761178,5
+ILWTFT,25761178,5
+cynthia3922,25761178,4
+1343126,25761178,5
+46538659,25761178,3
+48159178,25761178,5
+65309880,25761178,4
+59765953,25761178,4
+huachai1021,25761178,5
+daisy28,25761178,5
+62256703,25761178,4
+77876700,25761178,3
+4320404,25761178,4
+65560821,25761178,4
+VIVIAN-ZS,25761178,4
+53033860,25761178,5
+sujin6041,25761178,5
+dongdayou,25761178,5
+guaikahahaha,25761178,4
+46011907,25761178,5
+72996822,25761178,4
+zhouruopei,25761178,4
+ryan0925,25761178,-1
+unclelonglegs,25761178,4
+33671928,25761178,4
+deynzou,25761178,4
+fannyl,25761178,3
+50292036,25761178,4
+rangxiao,25761178,4
+119739719,25761178,5
+playgame,25761178,5
+76109816,25761178,4
+Rick_Film,25761178,4
+PennyZZZZZ,25761178,5
+pajamania,25761178,4
+89870657,25761178,4
+61272579,25761178,5
+74913423,25761178,-1
+60354573,25761178,5
+doralupin,25761178,4
+74201077,25761178,4
+chenhuayang,25761178,4
+66706245,25761178,3
+10230806,25761178,-1
+52989848,25761178,3
+sevee,25761178,-1
+30791290,25761178,5
+roxymusic,25761178,5
+3479695,25761178,4
+nemo533,25761178,5
+mangomangotree,25761178,4
+pigeye,25761178,4
+4422872,25761178,5
+48363016,25761178,4
+Latios,25761178,4
+2240193,25761178,5
+50438516,25761178,4
+68779054,25761178,4
+82191110,25761178,3
+48565113,25761178,5
+ludengludeng6,25761178,5
+3629598,25761178,4
+95592443,25761178,4
+53830250,25761178,4
+wennie1995,25761178,4
+50501251,25761178,4
+121086581,25761178,5
+lincolnhong,25761178,5
+bufang,25761178,4
+3682487,25761178,4
+35664517,25761178,5
+miao7,25761178,5
+52907195,25761178,4
+128631374,25761178,5
+baizi886,25761178,4
+75538960,25761178,5
+71455047,25761178,4
+73871573,25761178,3
+Knight9,25761178,3
+4571269,25761178,5
+solavre,25761178,4
+muyuezhusijun,25761178,3
+xileabc,25761178,5
+121491917,25761178,-1
+4363393,25761178,4
+121468237,25761178,4
+63668063,25761178,5
+58747524,25761178,5
+4579620,25761178,5
+xutiandasheng,25761178,-1
+68160177,25761178,5
+33024832,25761178,-1
+26390357,25761178,4
+47285151,25761178,4
+maggiehu0611,25761178,4
+18586571,25761178,4
+79191929,25761178,3
+49384394,25761178,4
+78806633,25761178,4
+62827558,25761178,5
+19716945,25761178,5
+81956373,25761178,4
+47757084,25761178,5
+100582359,25761178,4
+7971587,25761178,4
+36986059,25761178,4
+64767578,25761178,4
+vcd,25761178,4
+55875465,25761178,5
+nuanY-beryl,25761178,5
+42051007,25761178,5
+huapiqiu,25761178,4
+66237555,25761178,4
+72934606,25761178,5
+hylpbs,25761178,5
+sjt641100358,25761178,5
+3869788,25761178,5
+68732725,25761178,5
+meijiangshi,25761178,4
+Killern,25761178,3
+52433144,25761178,4
+jerring,25761178,4
+chuan111,25761178,-1
+lightwings,25761178,4
+MadHorse,25761178,4
+53260137,25761178,5
+p2165,25761178,4
+CWQ1030,25761178,5
+icxi,25761178,5
+simpledeer,25761178,3
+2985067,25761178,3
+127657096,25761178,4
+mcbird3017,25761178,5
+57841233,25761178,5
+wangjia0702,25761178,4
+pussyyy,25761178,4
+114445407,25761178,5
+eyefy,25761178,5
+52680941,25761178,4
+52244996,25761178,4
+4603620,25761178,4
+97187997,25761178,5
+68237211,25761178,4
+3943144,25761178,5
+64105461,25761178,5
+123383877,25761178,-1
+carpediem1504,25761178,5
+Zaytun,25761178,5
+52327969,25761178,4
+62798977,25761178,4
+55790566,25761178,3
+kimikochan,25761178,5
+45968027,25761178,5
+53746304,25761178,5
+71344804,25761178,2
+gemirai,25761178,5
+38611027,25761178,3
+Little-Shaily,25761178,4
+F7LOWER,25761178,4
+fanyichao,25761178,2
+53723765,25761178,5
+4407414,25761178,5
+blueto,25761178,4
+50144933,25761178,3
+jolllllly,25761178,5
+43662887,25761178,4
+2445409,25761178,-1
+63438574,25761178,4
+41996198,25761178,4
+84599749,25761178,4
+menggggggggg,25761178,5
+4583100,25761178,4
+120315724,25761178,5
+wrdeam,25761178,4
+76591163,25761178,5
+amaotou,25761178,4
+cicisj,25761178,4
+49487093,25761178,4
+86638445,25761178,4
+34105589,25761178,4
+72626479,25761178,4
+75956787,25761178,4
+1666477,25761178,4
+muchuimu,25761178,4
+4654940,25761178,3
+53090809,25761178,5
+ovanisho,25761178,5
+90532402,25761178,5
+penchen,25761178,4
+75865676,25761178,4
+31539434,25761178,4
+64947764,25761178,5
+3340559,25761178,5
+50438416,25761178,5
+jil9326,25761178,5
+glow2,25761178,5
+2518955,25761178,5
+81521718,25761178,3
+101504179,25761178,4
+1436107,25761178,5
+superman7664,25761178,3
+s_issi,25761178,5
+81973367,25761178,5
+lion,25761178,3
+122394659,25761178,4
+54475855,25761178,3
+102260489,25761178,5
+dracula1874,25761178,5
+msdenali,25761178,5
+121618620,25761178,4
+zhaoqingyue,25761178,4
+70840404,25761178,5
+4370207,25761178,5
+13856190,25761178,4
+3571336,25761178,4
+sona302,25761178,4
+ornithologist,25761178,5
+echo-syy,25761178,5
+49060307,25761178,4
+limourang,25761178,5
+54476232,25761178,4
+leotnnz,25761178,4
+63548568,25761178,2
+48411049,25761178,4
+JesseHoPeng,25761178,4
+osita,25761178,4
+sadiee,25761178,5
+akalion,25761178,4
+25818599,25761178,3
+83267131,25761178,4
+umich,25761178,5
+47004535,25761178,4
+T914344365,25761178,5
+iceout,25761178,3
+Wyl.,25761178,5
+45935605,25761178,4
+9274036,25761178,-1
+x1Ao_y,25761178,2
+2863313,25761178,4
+SoIwannago,25761178,4
+wenwenlulu,25761178,4
+79694642,25761178,-1
+120480108,25761178,4
+madego,25761178,4
+55513597,25761178,4
+9082007,25761178,3
+ProfThunder,25761178,4
+mano_erina,25761178,5
+84567577,25761178,-1
+milkbook,25761178,4
+95416047,25761178,4
+119461328,25761178,3
+2567170,25761178,4
+3870607,25761178,4
+70454973,25761178,5
+83213677,25761178,5
+4710008,25761178,4
+Lokry666,25761178,3
+65239097,25761178,5
+forhj,25761178,5
+chaiochang,25761178,4
+1459659,25761178,4
+Eason_guyishen,25761178,4
+yeslie,25761178,4
+kingszar,25761178,4
+53247764,25761178,4
+84593268,25761178,4
+consheep,25761178,4
+83358709,25761178,5
+4773809,25761178,5
+walkingway,25761178,5
+48086294,25761178,4
+bigbigbigbig,25761178,5
+osssan,25761178,4
+67687746,25761178,2
+smileliao,25761178,4
+36250262,25761178,4
+37653990,25761178,3
+jjftnt007,25761178,5
+79702182,25761178,4
+53343790,25761178,5
+59180317,25761178,4
+1689569,25761178,5
+98842000,25761178,3
+36138367,25761178,5
+39863821,25761178,4
+lynnae,25761178,4
+92242218,25761178,4
+64335429,25761178,4
+49486495,25761178,4
+78473890,25761178,4
+53437305,25761178,3
+54785586,25761178,3
+82613694,25761178,5
+meiamour,25761178,4
+71763428,25761178,3
+eyrecat,25761178,4
+mrtall,25761178,4
+51273775,25761178,4
+41132362,25761178,4
+sade1996,25761178,-1
+67823084,25761178,4
+114505579,25761178,5
+hkksmol,25761178,5
+101699165,25761178,3
+faiel,25761178,3
+moreanmore,25761178,5
+paco,25761178,3
+68294915,25761178,4
+haixingba,25761178,4
+54793646,25761178,4
+35297314,25761178,4
+fuck09,25761178,4
+44923935,25761178,5
+63155041,25761178,5
+ILY_XX,25761178,4
+jason000021,25761178,4
+4337731,25761178,5
+80596822,25761178,5
+kicker10,25761178,3
+54116667,25761178,3
+79970005,25761178,-1
+57617430,25761178,5
+zengjie0515,25761178,4
+57328194,25761178,4
+129023850,25761178,4
+1845330,25761178,4
+74844347,25761178,4
+69409681,25761178,3
+62228222,25761178,4
+classical622,25761178,4
+shiningkiss85,25761178,4
+jinguo928,25761178,3
+2859580,25761178,4
+49547121,25761178,5
+elise901,25761178,5
+119922273,25761178,5
+89804270,25761178,4
+84394974,25761178,4
+36185662,25761178,4
+3934047,25761178,3
+1427633,25761178,3
+37085797,25761178,4
+98634442,25761178,5
+73678720,25761178,4
+57214774,25761178,5
+Jigsaw709,25761178,4
+evim,25761178,4
+zzy0805,25761178,5
+68258337,25761178,4
+53415052,25761178,5
+118090358,25761178,4
+dawn_me,25761178,4
+dasyhiqiang,25761178,3
+40617140,25761178,3
+2321232,25761178,4
+45722630,25761178,5
+ALee301302,25761178,4
+122708996,25761178,5
+62776173,25761178,4
+122062782,25761178,5
+shinta_382,25761178,5
+17825314,25761178,5
+Megan119,25761178,4
+73735858,25761178,3
+Jerry_Thx,25761178,5
+48278056,25761178,5
+koonkit,25761178,4
+60042358,25761178,4
+renrouqiji,25761178,5
+44573020,25761178,5
+1271307,25761178,-1
+sethmacfarlane,25761178,4
+6141267,25761178,5
+52529736,25761178,4
+yeox,25761178,4
+75475810,25761178,4
+janaldlam,25761178,5
+1229261,25761178,-1
+51054582,25761178,4
+64135606,25761178,4
+irenemi,25761178,4
+yuger,25761178,4
+68542833,25761178,4
+89014982,25761178,5
+Schwarzwaelder,25761178,4
+boycester,25761178,3
+4223711,25761178,3
+Dongdong_620,25761178,4
+82223749,25761178,5
+88574021,25761178,3
+CaptBastard,25761178,4
+4247303,25761178,3
+dtmql,25761178,5
+53159454,25761178,4
+76272908,25761178,5
+2466721,25761178,3
+76779830,25761178,3
+63400230,25761178,5
+63324739,25761178,4
+stories7,25761178,5
+amber1203,25761178,5
+Kemuid,25761178,5
+70296365,25761178,5
+67346668,25761178,4
+61661593,25761178,5
+50624143,25761178,4
+xxreed,25761178,4
+patti113,25761178,4
+37853313,25761178,4
+flxjp,25761178,5
+41032695,25761178,5
+41403989,25761178,4
+stotle,25761178,5
+Miss-Ling,25761178,5
+lijsh,25761178,4
+goodnia,25761178,4
+1285158,25761178,5
+gigalo,25761178,4
+91137080,25761178,5
+93876960,25761178,5
+eney,25761178,3
+tagedeng,25761178,4
+tagedeng,25761178,4
+67011353,25761178,3
+Ruthwang,25761178,4
+54917292,25761178,4
+chinriya,25761178,4
+78620501,25761178,5
+1582706,25761178,4
+52788947,25761178,5
+lrq92livecn,25761178,4
+1603592,25761178,5
+43245182,25761178,4
+47321536,25761178,4
+2424435,25761178,-1
+2529749,25761178,3
+ravinenoravine,25761178,4
+84698224,25761178,5
+DamonCoxon,25761178,4
+69969080,25761178,4
+aiJC,25761178,5
+62814196,25761178,4
+68916554,25761178,-1
+4841197,25761178,4
+50205589,25761178,3
+58569504,25761178,4
+yzr8979,25761178,5
+65009709,25761178,5
+smithx,25761178,4
+77794190,25761178,5
+68931689,25761178,4
+1595106,25761178,4
+121657066,25761178,2
+63261736,25761178,4
+130154428,25761178,3
+1952871,25761178,4
+48205267,25761178,5
+63666149,25761178,4
+shaochen,25761178,5
+zhangliqi,25761178,5
+61375666,25761178,4
+130594464,25761178,4
+mouy490,25761178,4
+58133489,25761178,5
+39792754,25761178,3
+131108295,25761178,4
+MELEM,25761178,3
+lllianely,25761178,-1
+55559259,25761178,3
+Monica999xkw,25761178,5
+44940929,25761178,4
+1762955,25761178,5
+54390411,25761178,4
+aboe-li,25761178,5
+MMMangojz,25761178,5
+110488256,25761178,3
+QTCE,25761178,5
+elushen,25761178,4
+65662824,25761178,3
+63774870,25761178,4
+108264732,25761178,4
+2803203,25761178,5
+46470873,25761178,4
+rikuharu,25761178,5
+45826317,25761178,5
+51416132,25761178,4
+92918291,25761178,5
+mkelly,25761178,5
+48885291,25761178,3
+hljmsfy,25761178,5
+Dadaspurs,25761178,4
+1240037,25761178,3
+89852120,25761178,5
+76157804,25761178,5
+candyrainz,25761178,4
+44994079,25761178,4
+130787417,25761178,4
+sung..,25761178,4
+monkey59,25761178,4
+xiaoletaotao,25761178,5
+quanzhouren,25761178,5
+47471768,25761178,3
+marukowz,25761178,4
+79278191,25761178,4
+59156269,25761178,3
+hrj21,25761178,2
+hopezike,25761178,3
+68379103,25761178,5
+61504169,25761178,4
+mengtianjun,25761178,-1
+Lkongming,25761178,5
+63321066,25761178,4
+44253995,25761178,4
+laespoirao,25761178,5
+66203352,25761178,5
+84496664,25761178,3
+kaaaaayi,25761178,5
+JaceJing,25761178,4
+aiyouwoca,25761178,3
+91431955,25761178,5
+88149801,25761178,3
+cherrytrees_dot,25761178,4
+helloldq,25761178,5
+46960591,25761178,4
+shamkle,25761178,3
+51773323,25761178,4
+52076927,25761178,5
+62140644,25761178,4
+fcuki,25761178,5
+61559525,25761178,4
+2476748,25761178,4
+42221402,25761178,2
+lanjingyu,25761178,5
+77672710,25761178,4
+57582133,25761178,5
+93404406,25761178,4
+30280732,25761178,4
+rockning,25761178,4
+117234787,25761178,5
+77536605,25761178,5
+72086305,25761178,4
+40090492,25761178,4
+mouqingyang,25761178,4
+xiaojiongxia,25761178,3
+Robot.,25761178,-1
+3218379,25761178,5
+4237252,25761178,5
+43505078,25761178,5
+43751226,25761178,3
+28802478,25761178,3
+110227894,25761178,3
+53579015,25761178,3
+68366606,25761178,4
+54205488,25761178,4
+65642489,25761178,4
+nanonino,25761178,4
+GUYU7,25761178,4
+72396108,25761178,5
+nolike,25761178,5
+43207309,25761178,4
+59263516,25761178,4
+60677426,25761178,5
+mia777,25761178,4
+60952768,25761178,5
+52894891,25761178,5
+72987299,25761178,5
+66230509,25761178,5
+81263242,25761178,5
+59418689,25761178,5
+74759325,25761178,5
+68201628,25761178,5
+QueenieZee,25761178,3
+chocoqiao,25761178,3
+3598072,25761178,5
+xu779147197,25761178,4
+81278452,25761178,3
+yummy1710,25761178,5
+50769986,25761178,5
+iavj,25761178,4
+ohsherrysherry,25761178,4
+45112751,25761178,4
+guanchangqi217,25761178,4
+bicentennial,25761178,-1
+shelleyhsu,25761178,4
+Ashboo,25761178,3
+Lolita1881,25761178,4
+9275684,25761178,4
+65046838,25761178,3
+trevin0411,25761178,5
+oldwolfnwf,25761178,5
+karupisu,25761178,5
+maxwe86,25761178,5
+myhot,25761178,4
+37487275,25761178,3
+azullluvia,25761178,4
+60307464,25761178,5
+1133756,25761178,4
+poppyQ,25761178,2
+leucex,25761178,3
+51841040,25761178,5
+weiweiweiwei,25761178,3
+imoioi,25761178,5
+imoioi,25761178,5
+65123072,25761178,4
+51445328,25761178,5
+sethqi,25761178,5
+peytonc,25761178,3
+3706515,25761178,5
+121385842,25761178,5
+46184375,25761178,4
+austing,25761178,5
+127771292,25761178,4
+AllanBen,25761178,3
+niujie2008,25761178,5
+fangxue1105,25761178,5
+33620830,25761178,5
+x5,25761178,5
+ameba,25761178,4
+2945889,25761178,5
+53913997,25761178,5
+croath,25761178,5
+43356588,25761178,5
+dreamAnchor,25761178,4
+58679862,25761178,3
+fancynotgrow,25761178,5
+csj0824,25761178,4
+50616224,25761178,3
+peach_fly,25761178,4
+70055114,25761178,5
+nicy119,25761178,4
+seekyo,25761178,5
+VOLETASOS,25761178,5
+mopean,25761178,4
+tucuman,25761178,5
+klot,25761178,5
+48585073,25761178,4
+52652776,25761178,5
+3691765,25761178,3
+3107549,25761178,4
+pii3you,25761178,5
+120207370,25761178,3
+trianglecat,25761178,4
+zMuer,25761178,3
+49118031,25761178,5
+76153086,25761178,4
+SoCrazyNemo,25761178,5
+bennyrabbit,25761178,-1
+72784101,25761178,5
+affidavit1,25761178,3
+129490479,25761178,5
+pingchengweixin,25761178,3
+54142337,25761178,4
+70149072,25761178,3
+46287830,25761178,-1
+91762204,25761178,4
+104144015,25761178,4
+3676447,25761178,3
+64886603,25761178,5
+11658942,25761178,3
+54950596,25761178,5
+joyce_nasu,25761178,4
+68340243,25761178,5
+2436472,25761178,4
+91991515,25761178,4
+jinshuminshixia,25761178,5
+37210878,25761178,5
+33149603,25761178,4
+babylon520,25761178,4
+craneink,25761178,5
+129106809,25761178,5
+yutangnongying,25761178,4
+hotzenplotz,25761178,3
+69381377,25761178,5
+34097491,25761178,5
+4587542,25761178,5
+41881220,25761178,4
+lyriczn,25761178,3
+remarkdep,25761178,4
+84334911,25761178,3
+64574262,25761178,4
+52087392,25761178,4
+46897080,25761178,5
+yuuuummy,25761178,4
+72692708,25761178,5
+3794173,25761178,5
+yingtaocream,25761178,5
+119192622,25761178,5
+2477556,25761178,3
+64821035,25761178,4
+57821710,25761178,3
+4856520,25761178,3
+45463936,25761178,4
+2568577,25761178,3
+69020759,25761178,5
+74013127,25761178,4
+PsychoMissSo,25761178,4
+103954387,25761178,3
+51282847,25761178,4
+51236215,25761178,4
+Exaiy,25761178,4
+57414216,25761178,4
+vitaminsunshine,25761178,4
+2533890,25761178,5
+yuyanting,25761178,5
+27744141,25761178,3
+wangzhanhei,25761178,5
+48751988,25761178,4
+43582868,25761178,5
+teselaaaaaaa,25761178,4
+81752466,25761178,3
+49326924,25761178,5
+missfaye,25761178,4
+mobymarry,25761178,5
+yuxue,25761178,4
+3216934,25761178,4
+58466744,25761178,3
+57061211,25761178,5
+49631095,25761178,5
+jude_chen,25761178,4
+rahrah,25761178,4
+68206013,25761178,4
+131120485,25761178,4
+119683375,25761178,4
+57330014,25761178,1
+3881393,25761178,4
+aegeanguo,25761178,4
+sarashieh,25761178,5
+sylviapoor,25761178,5
+47832961,25761178,4
+3693808,25761178,4
+elbuod,25761178,5
+50739519,25761178,3
+mcdon,25761178,5
+43508209,25761178,5
+46739678,25761178,5
+17672710,25761178,5
+83057018,25761178,5
+56160592,25761178,4
+78377948,25761178,4
+90770424,25761178,5
+102626556,25761178,5
+103189636,25761178,5
+47824291,25761178,5
+128953374,25761178,5
+62455169,25761178,5
+2519350,25761178,4
+celebrate,25761178,5
+63303312,25761178,4
+68725764,25761178,5
+chuichuiyan,25761178,5
+58490597,25761178,-1
+yanyi421,25761178,4
+lenka,25761178,4
+123593065,25761178,-1
+mirror-y,25761178,5
+37355445,25761178,3
+Vanchi,25761178,5
+43584128,25761178,5
+summermaoyi,25761178,4
+82969578,25761178,4
+62689218,25761178,5
+3259549,25761178,4
+3259549,25761178,4
+61351953,25761178,4
+JerryXD,25761178,4
+52548060,25761178,4
+45037324,25761178,5
+41844039,25761178,2
+52070312,25761178,5
+119249174,25761178,3
+KinomiUncle,25761178,4
+79536028,25761178,5
+grammarbai,25761178,4
+63694096,25761178,4
+4471091,25761178,4
+wenjingbaba,25761178,4
+119157867,25761178,4
+130711498,25761178,4
+88837137,25761178,5
+1761319,25761178,5
+1920521,25761178,-1
+63456805,25761178,4
+1920521,25761178,-1
+63456805,25761178,4
+luka90123,25761178,3
+126400936,25761178,3
+4241781,25761178,5
+117307392,25761178,5
+2718324,25761178,4
+55393936,25761178,-1
+50926664,25761178,5
+12966940,25761178,4
+leaf2713,25761178,4
+2332162,25761178,5
+102253780,25761178,4
+41310633,25761178,-1
+64757557,25761178,5
+52111107,25761178,5
+46667318,25761178,3
+61409117,25761178,4
+8459513,25761178,5
+mingfeng1988,25761178,4
+44922872,25761178,5
+izaijin,25761178,4
+45332811,25761178,4
+41430205,25761178,5
+XYJessie,25761178,4
+kongie,25761178,5
+54189498,25761178,4
+53682563,25761178,5
+94546976,25761178,5
+77099096,25761178,3
+58411444,25761178,4
+estatic_19,25761178,5
+52123243,25761178,5
+46989842,25761178,5
+53055862,25761178,4
+42877995,25761178,4
+62074957,25761178,4
+58771514,25761178,4
+3845314,25761178,4
+everytimedouble,25761178,4
+3394942,25761178,4
+70131254,25761178,5
+lanl,25761178,4
+27199413,25761178,4
+48939653,25761178,5
+dizzydancer,25761178,4
+3032363,25761178,-1
+Shanglinyuan,25761178,4
+xipo,25761178,5
+chensiju,25761178,4
+sheiscandy,25761178,4
+47034241,25761178,4
+129719594,25761178,4
+kivachu,25761178,4
+55387652,25761178,5
+67727072,25761178,5
+yikexin12,25761178,4
+122514534,25761178,4
+youngtoo,25761178,3
+willsofshatter,25761178,4
+68719898,25761178,4
+63325124,25761178,2
+58332166,25761178,5
+35224666,25761178,4
+10710034,25761178,4
+cheeseflower,25761178,4
+55822408,25761178,4
+25974275,25761178,5
+shinyeel,25761178,4
+51724201,25761178,4
+dnarna_vicky,25761178,-1
+89000705,25761178,5
+1381698,25761178,5
+47681702,25761178,4
+36092326,25761178,3
+zhangjiji,25761178,4
+w9xhcn,25761178,3
+melancholyhill,25761178,5
+3372957,25761178,4
+65669179,25761178,4
+28315646,25761178,5
+1507059,25761178,5
+2428631,25761178,4
+zyn0575,25761178,5
+48548172,25761178,4
+64162048,25761178,3
+happytogethim,25761178,4
+hehudie13,25761178,5
+51967154,25761178,3
+millerwong,25761178,5
+2647689,25761178,3
+50452092,25761178,4
+41786402,25761178,5
+mi-hang,25761178,5
+57948442,25761178,5
+30357149,25761178,5
+yinggege,25761178,5
+39696918,25761178,4
+60392839,25761178,4
+flowermumu,25761178,4
+Grace_Xuliang,25761178,4
+Candy_Can,25761178,4
+4188744,25761178,-1
+Lu.,25761178,4
+63444910,25761178,4
+40345416,25761178,5
+zaizaiyoxi,25761178,4
+sophiejiang,25761178,3
+14408023,25761178,5
+78656769,25761178,5
+fengchenyu,25761178,4
+methuselah,25761178,2
+53021898,25761178,4
+4714446,25761178,5
+3783693,25761178,4
+4198519,25761178,4
+peggy1998,25761178,5
+77066905,25761178,3
+4666209,25761178,5
+80060830,25761178,4
+49502230,25761178,4
+fenglimuren,25761178,4
+126108971,25761178,4
+51342675,25761178,4
+Issac416,25761178,4
+59334722,25761178,4
+57719173,25761178,5
+shokey,25761178,4
+aphemia,25761178,5
+FORYUKI,25761178,4
+kawazoeyang,25761178,5
+61162296,25761178,-1
+50701865,25761178,5
+34514428,25761178,5
+3111516,25761178,4
+tosiben,25761178,5
+66800718,25761178,5
+sukidoki,25761178,3
+puccatry,25761178,5
+43080143,25761178,-1
+123095182,25761178,4
+56788441,25761178,3
+CharlesChou,25761178,5
+102744158,25761178,5
+97277841,25761178,3
+123235799,25761178,4
+2875093,25761178,5
+1840162,25761178,4
+2888286,25761178,5
+48042943,25761178,5
+80044603,25761178,5
+73729121,25761178,4
+53560863,25761178,3
+71946766,25761178,5
+104726855,25761178,5
+46091317,25761178,5
+76769321,25761178,4
+46684749,25761178,5
+3084283,25761178,4
+43595031,25761178,4
+kellyelbe,25761178,4
+txo,25761178,5
+122742837,25761178,3
+58833358,25761178,-1
+76359081,25761178,4
+sadie_xiong,25761178,4
+54994533,25761178,2
+mingyaback,25761178,5
+idiot.child,25761178,4
+58861409,25761178,5
+2423875,25761178,4
+2106137,25761178,3
+JCJC,25761178,4
+triumph,25761178,5
+85337817,25761178,5
+58916644,25761178,5
+58929848,25761178,5
+64540248,25761178,4
+58924121,25761178,4
+56721475,25761178,5
+2596903,25761178,3
+55313545,25761178,4
+araragikoyomi,25761178,5
+zippy89,25761178,5
+domire,25761178,4
+58126354,25761178,4
+44436573,25761178,3
+44549010,25761178,5
+huangtoufa,25761178,4
+53799646,25761178,4
+130963670,25761178,2
+69280280,25761178,4
+42227890,25761178,5
+91515979,25761178,5
+dingyidingyi,25761178,4
+49268204,25761178,5
+sunrain10,25761178,-1
+dannv777,25761178,4
+holy-fishman,25761178,4
+gothes,25761178,3
+blackemotions,25761178,4
+39048100,25761178,5
+nleydy,25761178,4
+76704934,25761178,3
+Cloud1993,25761178,5
+120792651,25761178,4
+ChubbyCheek,25761178,4
+raysole,25761178,5
+91108303,25761178,3
+24723249,25761178,5
+BabyBlue8,25761178,5
+51979447,25761178,5
+71861591,25761178,5
+1574053,25761178,4
+busixiaohai,25761178,3
+51479811,25761178,4
+63540777,25761178,4
+3315035,25761178,5
+76900544,25761178,4
+109021206,25761178,4
+70236644,25761178,4
+62812139,25761178,4
+58563930,25761178,4
+xixi0508,25761178,4
+nuan1923,25761178,4
+66763163,25761178,3
+will-l,25761178,5
+50531723,25761178,4
+62928630,25761178,5
+59266603,25761178,4
+67083640,25761178,4
+50229670,25761178,4
+41316861,25761178,4
+114398895,25761178,5
+50402097,25761178,5
+tarylin,25761178,3
+60635226,25761178,5
+59788799,25761178,5
+38821099,25761178,5
+65415043,25761178,4
+4309765,25761178,4
+2987938,25761178,3
+4714516,25761178,4
+3901620,25761178,5
+reneepeng,25761178,4
+aprilini,25761178,3
+happyheavens,25761178,4
+RedSnowRose,25761178,4
+130355076,25761178,4
+yueyuebetty,25761178,-1
+60226199,25761178,4
+83479669,25761178,3
+1517250,25761178,3
+gongzitian,25761178,4
+43210840,25761178,4
+91958420,25761178,5
+laoshudeshijie,25761178,5
+54404280,25761178,3
+36877826,25761178,5
+59790169,25761178,5
+63648160,25761178,-1
+shannontaxi,25761178,5
+moonwater,25761178,2
+zhuguli0613,25761178,5
+62370156,25761178,5
+103484667,25761178,5
+66051233,25761178,4
+xuewx,25761178,5
+61591842,25761178,5
+69970746,25761178,5
+lufy,25761178,4
+34968891,25761178,4
+59331867,25761178,5
+2640651,25761178,4
+68020683,25761178,5
+Charlin_,25761178,4
+muyanyan,25761178,4
+jolinalbert,25761178,5
+45666607,25761178,5
+PeterPanLaLaLa,25761178,5
+46052845,25761178,5
+84884580,25761178,5
+55817697,25761178,4
+68172611,25761178,-1
+82802160,25761178,4
+zyjj141,25761178,4
+130658738,25761178,4
+gilxiao,25761178,5
+bullshitforever,25761178,5
+53862196,25761178,5
+49762208,25761178,5
+2745956,25761178,5
+markspotting,25761178,4
+Lane4720518,25761178,3
+6669413,25761178,5
+zita07,25761178,5
+122090145,25761178,-1
+54437272,25761178,4
+3537557,25761178,-1
+40931757,25761178,4
+84965549,25761178,4
+92154012,25761178,4
+48248397,25761178,5
+52320359,25761178,5
+67147622,25761178,4
+3517710,25761178,5
+88433631,25761178,4
+tinyno7,25761178,3
+82691525,25761178,4
+28783620,25761178,4
+yimeiweiba,25761178,4
+1550135,25761178,4
+46518389,25761178,3
+66341284,25761178,5
+61715617,25761178,4
+Aiyouyouyouyou,25761178,5
+dianbou,25761178,4
+122420292,25761178,4
+3555547,25761178,5
+67689487,25761178,-1
+67689487,25761178,-1
+69998780,25761178,5
+52091489,25761178,4
+65617274,25761178,3
+irismile,25761178,4
+charleneqq,25761178,3
+ayumi,25761178,3
+61076987,25761178,4
+30258001,25761178,4
+72438301,25761178,3
+56551972,25761178,3
+gloomying,25761178,4
+xishy,25761178,4
+huwenjia,25761178,4
+63390918,25761178,5
+Doodledoodle,25761178,5
+55837265,25761178,5
+edward2wong,25761178,4
+123283464,25761178,5
+Emily0803,25761178,4
+huoshuyinhua,25761178,4
+35499398,25761178,3
+bigmiao,25761178,5
+beloved-seven,25761178,4
+44599413,25761178,5
+60785904,25761178,4
+julypan0710,25761178,5
+57662032,25761178,5
+btjing,25761178,3
+ZenaFoo,25761178,4
+graceq,25761178,4
+68631195,25761178,2
+zong8queen,25761178,5
+Mr-Sixty,25761178,5
+46989267,25761178,3
+4640701,25761178,5
+leeang,25761178,5
+zhongguobaoan,25761178,5
+misswong,25761178,4
+60222551,25761178,5
+tetcato,25761178,5
+75175463,25761178,4
+50405543,25761178,4
+Greenwindblows,25761178,4
+92393333,25761178,5
+lensl,25761178,5
+4577190,25761178,5
+MISSMOUMOU,25761178,4
+61467288,25761178,5
+57584711,25761178,4
+purple2046,25761178,3
+53176135,25761178,4
+42410152,25761178,5
+26606578,25761178,4
+bozzi,25761178,4
+25982397,25761178,4
+53787357,25761178,-1
+37912087,25761178,3
+52256109,25761178,4
+chiffons,25761178,4
+daheiluozi,25761178,4
+raising_dawn,25761178,3
+xixi0527,25761178,-1
+46045486,25761178,3
+vinciwang,25761178,3
+77917242,25761178,4
+52097421,25761178,5
+Young.forU,25761178,4
+yscysc803,25761178,4
+46389898,25761178,5
+echorus-walker,25761178,4
+arashilee,25761178,5
+kailunf,25761178,5
+1531818,25761178,5
+51939738,25761178,5
+lin2jie,25761178,4
+sunny1992,25761178,3
+59992396,25761178,5
+25760345,25761178,4
+73540633,25761178,4
+67967186,25761178,4
+fuloli,25761178,4
+zzhang020,25761178,4
+2270098,25761178,3
+126225635,25761178,4
+53879339,25761178,4
+57407135,25761178,4
+63218646,25761178,4
+88054073,25761178,4
+elliebaby1101,25761178,5
+sodamanxxj,25761178,5
+66445932,25761178,5
+PsyLadyTricky,25761178,5
+smile19890207,25761178,5
+md_wxy,25761178,-1
+shine-wang,25761178,4
+maxbbn,25761178,5
+62842401,25761178,4
+67741872,25761178,5
+63586324,25761178,4
+joajoazzz,25761178,4
+4184169,25761178,5
+1463503,25761178,5
+lephemera,25761178,4
+Nassco,25761178,5
+71455965,25761178,4
+52408842,25761178,4
+42011516,25761178,5
+53603990,25761178,-1
+genie37,25761178,4
+aotui,25761178,5
+59993815,25761178,5
+butterfly10,25761178,4
+3248812,25761178,5
+xianxianchen,25761178,3
+83521053,25761178,5
+69678473,25761178,5
+91478241,25761178,4
+3834476,25761178,5
+59939941,25761178,-1
+47179699,25761178,4
+3114580,25761178,4
+qiangqiangzhang,25761178,4
+49612534,25761178,3
+97977278,25761178,2
+58766349,25761178,4
+asanisimasa,25761178,2
+69735820,25761178,4
+wangxhtt,25761178,5
+minruilin,25761178,-1
+2397813,25761178,4
+54457349,25761178,4
+zhanghuiying,25761178,2
+79334267,25761178,5
+74522488,25761178,4
+vianann,25761178,4
+2135257,25761178,5
+52923795,25761178,5
+102938752,25761178,5
+45543897,25761178,4
+45242330,25761178,4
+52273132,25761178,5
+chena,25761178,4
+4043337,25761178,5
+52466141,25761178,5
+HugeEgoSorry,25761178,5
+57786267,25761178,5
+50451911,25761178,4
+15183757,25761178,5
+diva423,25761178,4
+113977777,25761178,4
+56063621,25761178,5
+2546239,25761178,5
+2963229,25761178,5
+Maydayfirst,25761178,4
+31914408,25761178,4
+45787212,25761178,5
+99787925,25761178,-1
+underwater01,25761178,5
+11017625,25761178,5
+81848540,25761178,4
+88726869,25761178,4
+masterpiece,25761178,4
+3410802,25761178,4
+36179493,25761178,5
+tsuan,25761178,-1
+Cao-Wei,25761178,5
+chenjiamorealme,25761178,5
+2658066,25761178,4
+echiechi,25761178,5
+Dasiycat,25761178,4
+62237138,25761178,4
+strawman81,25761178,4
+78405003,25761178,5
+45184440,25761178,5
+4404354,25761178,3
+29894151,25761178,5
+2197494,25761178,-1
+44435715,25761178,5
+43377923,25761178,4
+53586447,25761178,-1
+vertigo1989,25761178,4
+64193481,25761178,5
+5688079,25761178,4
+back2back,25761178,4
+58214884,25761178,1
+69573255,25761178,4
+1494780,25761178,4
+2349644,25761178,4
+83082235,25761178,4
+qingmuwu,25761178,3
+terry459179439,25761178,5
+biuknowbiu,25761178,5
+55977195,25761178,5
+Gordoncoco,25761178,5
+52854119,25761178,4
+cardilia,25761178,4
+Mangocc,25761178,4
+68861908,25761178,5
+hugowai,25761178,4
+52247452,25761178,4
+69117478,25761178,4
+3983967,25761178,4
+TheBigFace,25761178,5
+50611156,25761178,-1
+60867041,25761178,5
+lovea_ten,25761178,4
+57882904,25761178,4
+bin8715,25761178,5
+42478117,25761178,4
+87691265,25761178,2
+55640916,25761178,3
+banruoliuli,25761178,5
+25621274,25761178,4
+silenthinker,25761178,5
+2100295,25761178,5
+3557923,25761178,2
+ty323,25761178,5
+nigel98,25761178,5
+3720128,25761178,4
+48922054,25761178,5
+coctelxw,25761178,5
+jishibo,25761178,4
+57092797,25761178,4
+81283209,25761178,5
+119139713,25761178,4
+62423648,25761178,3
+59355574,25761178,4
+53592649,25761178,4
+53659382,25761178,4
+sugertk,25761178,5
+koujiao,25761178,4
+46144657,25761178,5
+mypal,25761178,4
+bulesky_U,25761178,5
+78172493,25761178,3
+9998453,25761178,4
+wanglinfei,25761178,2
+91250454,25761178,4
+2458122,25761178,4
+wangyeye,25761178,5
+53271347,25761178,5
+chrislam,25761178,4
+1828101,25761178,4
+carolilac,25761178,4
+64149251,25761178,5
+LincolnSixEcho,25761178,5
+70362034,25761178,3
+35703098,25761178,4
+platero,25761178,5
+74931346,25761178,5
+Zoanty,25761178,4
+zqdqzx,25761178,5
+ruokongzhi,25761178,4
+1197799,25761178,3
+iadam,25761178,4
+yaqian,25761178,4
+3465717,25761178,4
+3129978,25761178,5
+umissdaisy,25761178,5
+60311898,25761178,4
+51493816,25761178,5
+sherayang,25761178,4
+3013889,25761178,4
+mcfeemiki,25761178,5
+45216474,25761178,5
+36474563,25761178,4
+49115709,25761178,5
+120497845,25761178,5
+wendyhsu,25761178,4
+65114344,25761178,5
+69045057,25761178,4
+59403033,25761178,5
+65896805,25761178,4
+48137043,25761178,5
+chendi,25761178,3
+paulzhong1082,25761178,3
+43535885,25761178,4
+hsx,25761178,-1
+40910855,25761178,4
+40910855,25761178,4
+85245609,25761178,4
+32811170,25761178,5
+3183207,25761178,-1
+50021701,25761178,4
+Rurutia7,25761178,5
+bluegatecrossin,25761178,4
+shaoyongfei,25761178,-1
+enochyang,25761178,4
+kidkid,25761178,5
+amyenvy,25761178,5
+1495292,25761178,5
+nbcc,25761178,5
+sorrowhill,25761178,4
+67364138,25761178,5
+60810332,25761178,4
+nailu99,25761178,5
+Genjo,25761178,4
+victorgcy1121,25761178,4
+49416713,25761178,3
+broccoli013,25761178,5
+50401032,25761178,5
+62515119,25761178,3
+xixikai,25761178,5
+Lommy,25761178,2
+4154813,25761178,5
+80901919,25761178,4
+heydeng,25761178,3
+2417499,25761178,5
+76239452,25761178,5
+51974653,25761178,4
+53245934,25761178,4
+dummdumm,25761178,5
+proband,25761178,3
+FairyFat,25761178,3
+60154183,25761178,3
+yancm,25761178,5
+konglingyiQQ,25761178,5
+QiangL,25761178,5
+thomsonkoo,25761178,3
+zhoudaxia,25761178,5
+71867993,25761178,5
+jieyaren,25761178,5
+4603294,25761178,4
+a_Yuan,25761178,5
+WardenS,25761178,5
+53287015,25761178,4
+danger8413,25761178,5
+adamhsieh,25761178,5
+leonlancelot,25761178,4
+soranya,25761178,4
+2420853,25761178,4
+vigilgt,25761178,4
+3466745,25761178,5
+Joeroad,25761178,3
+1767731,25761178,4
+4325552,25761178,4
+Aspirin129,25761178,3
+93546095,25761178,4
+84250012,25761178,5
+51605730,25761178,4
+anaiis,25761178,4
+52833192,25761178,4
+31673779,25761178,4
+37043973,25761178,4
+65418125,25761178,5
+xiaohundaban,25761178,3
+70918450,25761178,5
+51195465,25761178,4
+43787285,25761178,4
+62524305,25761178,5
+68966981,25761178,5
+icefishe,25761178,5
+Prot,25761178,4
+Minimalis,25761178,5
+45118601,25761178,5
+J-Tax,25761178,5
+linruoru,25761178,4
+81325605,25761178,4
+daisymouse,25761178,5
+47289236,25761178,4
+52235575,25761178,4
+33745770,25761178,4
+66277108,25761178,4
+54913555,25761178,4
+2232666,25761178,5
+putoff,25761178,5
+65447860,25761178,5
+76077966,25761178,5
+81215623,25761178,5
+61589575,25761178,4
+46436685,25761178,-1
+qinhang,25761178,4
+49529006,25761178,4
+124233692,25761178,4
+39299555,25761178,3
+Sonicmorphine,25761178,5
+monkeydoll,25761178,5
+63059985,25761178,4
+54942079,25761178,5
+yuyuhui,25761178,4
+fwk522,25761178,5
+65372022,25761178,5
+67454636,25761178,5
+79452257,25761178,4
+85811535,25761178,5
+55024300,25761178,4
+122164162,25761178,5
+58457804,25761178,2
+creepricorn,25761178,5
+zqnpz,25761178,5
+DoraMeSo,25761178,5
+adayinthelife,25761178,4
+56330672,25761178,4
+38139628,25761178,4
+71127316,25761178,5
+64110948,25761178,3
+52746574,25761178,4
+69189360,25761178,1
+torrors,25761178,5
+YenjCarol,25761178,-1
+yaire379,25761178,5
+ryeon,25761178,4
+yuqianmei,25761178,5
+wplee,25761178,5
+75216730,25761178,5
+3423357,25761178,5
+43277649,25761178,4
+sandrazh,25761178,4
+4217605,25761178,4
+LilithChen,25761178,4
+21767774,25761178,4
+4583724,25761178,4
+winnizhu,25761178,5
+FeeSouler,25761178,5
+78199590,25761178,3
+50403801,25761178,4
+1011562,25761178,5
+rregina,25761178,4
+xiaomo1,25761178,5
+4161317,25761178,3
+55631098,25761178,5
+40005919,25761178,5
+nina,25761178,3
+78500828,25761178,4
+100476770,25761178,5
+suxiaopo,25761178,4
+yunqiu,25761178,3
+53063481,25761178,4
+1665848,25761178,4
+56780045,25761178,2
+wenjin_chen,25761178,3
+29844884,25761178,4
+jiaojiaozrj,25761178,5
+4165757,25761178,4
+2858394,25761178,4
+63105886,25761178,3
+jiatianyu1,25761178,4
+52715172,25761178,4
+52424511,25761178,4
+ravenphoto,25761178,5
+2842505,25761178,4
+4679354,25761178,5
+82927281,25761178,4
+70958013,25761178,5
+32433633,25761178,4
+moesolo,25761178,4
+hjfuykx,25761178,4
+52074740,25761178,4
+maozhua3,25761178,4
+1511879,25761178,5
+gamering,25761178,4
+pankida,25761178,5
+1887650,25761178,5
+84047449,25761178,3
+71561935,25761178,4
+bamboo4768,25761178,3
+bluegrid,25761178,4
+lhberber,25761178,4
+58064281,25761178,3
+darkness211,25761178,4
+seodler,25761178,4
+13259260,25761178,-1
+liao_le,25761178,5
+52732434,25761178,4
+summermayfly,25761178,4
+cc44,25761178,5
+zxt1219,25761178,4
+51934128,25761178,3
+56016863,25761178,5
+124980141,25761178,5
+cccclay,25761178,4
+77613125,25761178,5
+yc_0619,25761178,5
+73959584,25761178,5
+4791622,25761178,4
+ranfangzhe2,25761178,4
+48745173,25761178,5
+46257426,25761178,5
+we17,25761178,4
+33293514,25761178,3
+lisianl,25761178,4
+Lotus511,25761178,4
+81509803,25761178,5
+l_panda,25761178,1
+56622513,25761178,4
+91267926,25761178,3
+49117051,25761178,3
+83162641,25761178,4
+57837592,25761178,4
+91304159,25761178,4
+2761343,25761178,-1
+monorol,25761178,4
+84771494,25761178,4
+misameko,25761178,-1
+66946937,25761178,4
+80808248,25761178,3
+39070963,25761178,4
+35120312,25761178,4
+robotstar,25761178,4
+42069458,25761178,5
+67665302,25761178,-1
+mistiness,25761178,4
+rakumm,25761178,4
+45569084,25761178,4
+qianyuewanwan,25761178,5
+38924619,25761178,4
+52428152,25761178,3
+30515688,25761178,4
+qi-shao-shang,25761178,5
+47471455,25761178,5
+2923778,25761178,4
+2425026,25761178,5
+lefrais,25761178,3
+seditionary,25761178,4
+twitodd,25761178,5
+49322971,25761178,5
+57931083,25761178,4
+2029651,25761178,4
+47216469,25761178,4
+46158467,25761178,3
+LoonSupertramp,25761178,-1
+76498097,25761178,5
+wancai,25761178,4
+58202321,25761178,3
+aprilray,25761178,5
+57430820,25761178,5
+127504858,25761178,4
+yabatoo,25761178,5
+Madao_D,25761178,4
+109055681,25761178,3
+ypvip,25761178,4
+AeroAnte,25761178,5
+64514671,25761178,5
+62667107,25761178,4
+80559391,25761178,5
+121469864,25761178,4
+48979717,25761178,5
+2822373,25761178,-1
+11285303,25761178,5
+xusisu,25761178,4
+yeanyun,25761178,5
+69282322,25761178,4
+45345873,25761178,4
+yuedawei,25761178,5
+120332872,25761178,5
+62482710,25761178,5
+hahahahahahah,25761178,5
+miaoyan,25761178,4
+66759944,25761178,4
+64435389,25761178,4
+chuqihua,25761178,5
+57566252,25761178,3
+56919953,25761178,4
+56712686,25761178,4
+81411895,25761178,5
+9980314,25761178,5
+la_ficine,25761178,5
+42646716,25761178,3
+yangqianbao,25761178,4
+55901947,25761178,3
+125694010,25761178,4
+42013499,25761178,4
+goofy,25761178,4
+rotkappchen,25761178,-1
+46777338,25761178,5
+53107666,25761178,1
+63776141,25761178,4
+56437151,25761178,5
+2336151,25761178,5
+huanm,25761178,4
+cherrieQ,25761178,4
+mywhyyy,25761178,5
+hello_misskid,25761178,5
+muxxzzz,25761178,5
+63049878,25761178,3
+lelelelelelelel,25761178,4
+saosaoxy,25761178,5
+vivianqizai,25761178,3
+52951268,25761178,4
+lenssi,25761178,4
+ge383203180xin,25761178,4
+50600162,25761178,4
+dreamgmh,25761178,5
+53204374,25761178,4
+zhaoqingwei,25761178,4
+63114448,25761178,5
+57943867,25761178,4
+1782017,25761178,4
+1019579,25761178,4
+47973653,25761178,4
+121916425,25761178,5
+chiarachan,25761178,4
+1805528,25761178,4
+73074984,25761178,4
+lilao,25761178,5
+zhr19951204,25761178,4
+54038667,25761178,3
+60931325,25761178,5
+heysoulsister,25761178,4
+zhubeilife,25761178,4
+2583091,25761178,4
+99643447,25761178,-1
+35739270,25761178,5
+leoshitenough,25761178,5
+micros,25761178,5
+48082593,25761178,5
+44603726,25761178,4
+somnus0319,25761178,4
+46721798,25761178,3
+sweetiantian,25761178,4
+frozenwind,25761178,4
+jxjjxhb,25761178,5
+toys,25761178,4
+wildyak,25761178,5
+75952866,25761178,3
+53395539,25761178,4
+58098693,25761178,4
+fengxiaofu,25761178,3
+grinch,25761178,3
+Evan.Chris,25761178,5
+damaimmm,25761178,-1
+62715554,25761178,-1
+cuiyingjun,25761178,4
+30499670,25761178,5
+90914625,25761178,5
+zod798,25761178,4
+NEONGirl,25761178,5
+45000436,25761178,4
+70870817,25761178,4
+62425505,25761178,4
+27568172,25761178,-1
+3800028,25761178,3
+2228783,25761178,4
+92301412,25761178,4
+Orchendor,25761178,5
+53551447,25761178,4
+dengxian123,25761178,4
+57964062,25761178,5
+wy81,25761178,3
+4252012,25761178,4
+54597801,25761178,4
+ywy3130,25761178,5
+1276233,25761178,5
+51222757,25761178,4
+48047032,25761178,4
+tintintsang,25761178,5
+60264113,25761178,5
+37369275,25761178,4
+42368147,25761178,4
+lilysld,25761178,5
+69066282,25761178,5
+31875392,25761178,-1
+kaixian,25761178,3
+46350498,25761178,4
+4132596,25761178,3
+1864180,25761178,4
+YJWDWD,25761178,5
+59620866,25761178,4
+76777443,25761178,4
+yuchishangjiu,25761178,4
+57714176,25761178,4
+57807205,25761178,4
+57105306,25761178,5
+L-sheep,25761178,4
+52765670,25761178,5
+60411524,25761178,5
+achen17,25761178,3
+129967050,25761178,5
+xbey,25761178,4
+3931218,25761178,4
+8718496,25761178,4
+49127472,25761178,4
+130408604,25761178,5
+52582150,25761178,4
+47338150,25761178,4
+45103571,25761178,4
+Cigarette3,25761178,4
+annalive,25761178,4
+lolitagreen,25761178,5
+98174233,25761178,4
+roseandwater,25761178,5
+38001119,25761178,3
+53339487,25761178,5
+everlastingEGO,25761178,5
+63816483,25761178,5
+80634778,25761178,4
+51165620,25761178,3
+xiaogualaoyu,25761178,4
+69730279,25761178,5
+36412946,25761178,4
+septembersummer,25761178,4
+llllkkkkkkk,25761178,5
+hanxiaonuan,25761178,4
+63989347,25761178,4
+3423882,25761178,4
+hall1c,25761178,5
+106384787,25761178,4
+lovingecho,25761178,4
+space_junk,25761178,4
+past_pass,25761178,4
+47647124,25761178,3
+70961097,25761178,4
+momot,25761178,5
+db924519251,25761178,2
+cai1st,25761178,4
+39306601,25761178,5
+fayyuki,25761178,4
+53656219,25761178,4
+givindream,25761178,5
+116718171,25761178,5
+huischan,25761178,4
+52708584,25761178,5
+tinyuu,25761178,4
+4405668,25761178,4
+58993842,25761178,4
+yinxiaoyun,25761178,5
+angela0122,25761178,3
+suh5213,25761178,5
+76928010,25761178,5
+87997485,25761178,4
+109282362,25761178,5
+PUNKKONG,25761178,-1
+TanJing1989,25761178,4
+123624827,25761178,3
+l---j,25761178,4
+58515570,25761178,1
+GracieG,25761178,5
+viking7117,25761178,5
+48180348,25761178,5
+51841332,25761178,5
+44388338,25761178,3
+59099811,25761178,4
+67870530,25761178,4
+2206901,25761178,4
+Obtson,25761178,4
+45615134,25761178,4
+1222692,25761178,5
+guandao--,25761178,3
+68539735,25761178,5
+56922790,25761178,5
+yangpp,25761178,4
+puhuahua,25761178,5
+aquar25,25761178,4
+66836438,25761178,4
+4026025,25761178,4
+4015242,25761178,5
+xilouchen,25761178,4
+wf2031830,25761178,5
+97431474,25761178,4
+74624861,25761178,4
+50708726,25761178,5
+130265745,25761178,5
+52199185,25761178,5
+3529646,25761178,3
+67875477,25761178,5
+57758773,25761178,5
+30273027,25761178,3
+67238808,25761178,4
+foxlovewhitecat,25761178,5
+clover.k,25761178,4
+lovefilms,25761178,5
+58934612,25761178,4
+52692373,25761178,5
+27295268,25761178,5
+3677825,25761178,4
+caocaoa,25761178,4
+zhaosq,25761178,4
+121414792,25761178,4
+scjljy,25761178,5
+49322454,25761178,4
+zhangcherry,25761178,-1
+49376492,25761178,4
+4503914,25761178,5
+mohanyin,25761178,4
+sweet0328,25761178,5
+125548173,25761178,4
+126657464,25761178,5
+zementary,25761178,4
+127791327,25761178,4
+92331243,25761178,4
+53466957,25761178,3
+nathanyun,25761178,4
+54267130,25761178,5
+NMary,25761178,4
+60676722,25761178,4
+banzhan,25761178,5
+60455917,25761178,5
+4203960,25761178,4
+liujiabin1002,25761178,5
+104076508,25761178,4
+lamnene,25761178,5
+49888583,25761178,5
+50307527,25761178,-1
+31882317,25761178,5
+52831736,25761178,5
+jaer1213,25761178,4
+zsy_azure,25761178,5
+64938793,25761178,4
+65545100,25761178,5
+48007103,25761178,4
+51625487,25761178,5
+48233633,25761178,5
+84513623,25761178,4
+3479179,25761178,4
+impzz,25761178,4
+78179669,25761178,4
+shoiihoibjk,25761178,5
+4306814,25761178,3
+zhaixi,25761178,4
+shinylinshan,25761178,5
+46126944,25761178,4
+3941804,25761178,-1
+shinesui,25761178,-1
+leiii,25761178,4
+42323410,25761178,5
+2596592,25761178,5
+114977043,25761178,4
+50774706,25761178,5
+lidianxi1990,25761178,5
+64755839,25761178,4
+kun1109,25761178,5
+72985710,25761178,4
+anliucom,25761178,5
+50964453,25761178,-1
+61719890,25761178,5
+43611862,25761178,5
+65672051,25761178,3
+dog-color,25761178,4
+54601280,25761178,5
+jackielin1990,25761178,5
+10489432,25761178,4
+121724782,25761178,3
+pie0310,25761178,4
+37402421,25761178,4
+63507670,25761178,5
+45574456,25761178,4
+superlionisme,25761178,4
+47508310,25761178,4
+17991181,25761178,4
+50431505,25761178,4
+cheng-hang,25761178,4
+linqing5270,25761178,5
+shelyin,25761178,4
+49562970,25761178,4
+52623651,25761178,5
+52675534,25761178,5
+Kelsey.,25761178,4
+94588163,25761178,-1
+38167160,25761178,-1
+enlssea_1991,25761178,4
+dkjune,25761178,3
+sigoyiyang,25761178,5
+126702436,25761178,3
+GERNAZI,25761178,2
+graceychu,25761178,3
+30441221,25761178,4
+32867787,25761178,3
+84093369,25761178,-1
+lovepants,25761178,4
+101334259,25761178,-1
+15986782,25761178,5
+125212431,25761178,5
+43291484,25761178,4
+mingming1124530,25761178,4
+43467990,25761178,4
+38625392,25761178,5
+vjjdwn,25761178,4
+yayi_ifsoso,25761178,4
+58044228,25761178,3
+3138984,25761178,5
+104258139,25761178,5
+81316047,25761178,5
+48743013,25761178,5
+52236886,25761178,5
+lanebuxia,25761178,4
+jun0824,25761178,5
+saindvy,25761178,5
+QYDZYZQ,25761178,3
+42150092,25761178,4
+120579379,25761178,4
+45441727,25761178,5
+45761304,25761178,4
+sukijuri,25761178,5
+87670980,25761178,4
+68844083,25761178,4
+78229297,25761178,3
+49021556,25761178,5
+32941683,25761178,5
+malu,25761178,4
+130233240,25761178,5
+nopharos,25761178,4
+lovelovecat,25761178,4
+86093744,25761178,4
+55932326,25761178,5
+57673530,25761178,5
+amzyangyk,25761178,4
+chenlee,25761178,5
+monkwuwei,25761178,4
+evich,25761178,3
+evich,25761178,3
+84670085,25761178,4
+regalo,25761178,4
+breezeY,25761178,5
+endlessleep,25761178,4
+47425349,25761178,4
+tripster,25761178,4
+gilian,25761178,4
+unluckystrike,25761178,4
+allblue,25761178,4
+Frank_cx,25761178,3
+benjune,25761178,4
+1426157,25761178,4
+77868057,25761178,5
+83269650,25761178,5
+45661291,25761178,4
+58044452,25761178,5
+sujianli,25761178,5
+95403251,25761178,5
+47346774,25761178,5
+47373898,25761178,4
+rebecca419,25761178,5
+rin993,25761178,4
+motuzi,25761178,4
+76717525,25761178,5
+sunnie.j,25761178,4
+sakurahao,25761178,4
+jaycee103,25761178,4
+westerngarden,25761178,4
+3534571,25761178,5
+Helianthustree,25761178,5
+2340389,25761178,4
+dashiontang,25761178,-1
+watever_lan,25761178,5
+fin07,25761178,5
+45594123,25761178,5
+64391309,25761178,5
+cyanzhou,25761178,4
+50062390,25761178,4
+anvirdo,25761178,4
+anvirdo,25761178,4
+52745181,25761178,4
+47088120,25761178,5
+38592455,25761178,2
+wzk19931121,25761178,5
+1530502,25761178,4
+64331425,25761178,5
+semenov,25761178,4
+53949979,25761178,5
+lovesid,25761178,5
+MoonYu,25761178,5
+bring-it,25761178,4
+l547302673,25761178,5
+iampearl,25761178,4
+cfachan,25761178,4
+49449139,25761178,4
+36226280,25761178,5
+54930854,25761178,5
+43215145,25761178,4
+78966790,25761178,5
+65592365,25761178,5
+dragonfly393,25761178,4
+67153884,25761178,4
+58211668,25761178,5
+38412947,25761178,4
+52151755,25761178,2
+69361608,25761178,4
+41755719,25761178,2
+48777727,25761178,4
+45395995,25761178,5
+65907866,25761178,4
+1108707,25761178,4
+64857641,25761178,5
+Ikino,25761178,5
+xinziai,25761178,4
+80245550,25761178,4
+39528654,25761178,3
+StephaniYan,25761178,4
+48216088,25761178,5
+lovejuan-foreve,25761178,4
+JiejieHuhu,25761178,5
+83273023,25761178,5
+112088919,25761178,4
+33021000,25761178,4
+61136338,25761178,4
+52502063,25761178,5
+44671906,25761178,4
+atom41650,25761178,5
+90784595,25761178,5
+66771297,25761178,5
+80954825,25761178,5
+joy2theworldyea,25761178,5
+Da.men,25761178,5
+29685464,25761178,1
+lzzzzzfbee,25761178,4
+80193020,25761178,4
+28535454,25761178,5
+adamx,25761178,4
+4388033,25761178,5
+tsubomi_sun,25761178,4
+67765216,25761178,4
+shengxihua_yan,25761178,5
+fatfay,25761178,4
+Sparkle-in-hell,25761178,5
+blacksiri,25761178,4
+79891741,25761178,4
+52378291,25761178,4
+Necroshining,25761178,4
+1094032,25761178,3
+47083576,25761178,3
+never_zj,25761178,3
+47089339,25761178,4
+108352341,25761178,3
+3501606,25761178,4
+70587570,25761178,5
+130344702,25761178,3
+39603909,25761178,5
+jiugedian,25761178,5
+dmcrgiye,25761178,5
+calypso29,25761178,4
+WSSWHL,25761178,4
+48590382,25761178,3
+dizebra,25761178,4
+51354667,25761178,4
+52978703,25761178,5
+zhangrenran,25761178,3
+dxq1216,25761178,5
+69386924,25761178,4
+45079689,25761178,5
+wanshangdayu,25761178,5
+60889084,25761178,4
+60438273,25761178,4
+therecomy,25761178,3
+1074069,25761178,5
+126896295,25761178,4
+81139364,25761178,5
+lepd,25761178,3
+50213879,25761178,5
+86140576,25761178,5
+61696845,25761178,4
+61696845,25761178,4
+azure107229,25761178,4
+74559543,25761178,3
+51227412,25761178,4
+tworay,25761178,4
+52880206,25761178,-1
+60389905,25761178,5
+annie-bean,25761178,3
+42678961,25761178,5
+Ponderon,25761178,5
+44764674,25761178,5
+72398543,25761178,3
+2171354,25761178,4
+gonghm,25761178,4
+47195997,25761178,4
+121673447,25761178,3
+122210880,25761178,5
+yi_wen,25761178,5
+MaiZiJie95,25761178,3
+silhouette_q1,25761178,4
+buzaijide,25761178,4
+yoyo3105,25761178,5
+81913192,25761178,-1
+66766065,25761178,4
+baibi,25761178,3
+neneXne,25761178,5
+aaaaaaaaaaa,25761178,1
+3924135,25761178,4
+sunzeya,25761178,4
+49951631,25761178,4
+73715620,25761178,4
+94391270,25761178,5
+Benchencheng,25761178,5
+3350882,25761178,4
+wena,25761178,4
+52870951,25761178,5
+anqier1,25761178,5
+lxmoe0617,25761178,4
+69095425,25761178,5
+53920626,25761178,3
+53920626,25761178,3
+126980247,25761178,5
+simonkain,25761178,5
+53847386,25761178,4
+39255754,25761178,3
+55942870,25761178,4
+62065371,25761178,-1
+73856461,25761178,4
+61285752,25761178,5
+62102534,25761178,4
+42888408,25761178,5
+sxforever,25761178,4
+vagetables,25761178,4
+83348996,25761178,5
+shufusila,25761178,-1
+57680921,25761178,5
+41919176,25761178,4
+48198502,25761178,5
+39640609,25761178,5
+67615408,25761178,5
+50826750,25761178,4
+78105518,25761178,4
+52460447,25761178,5
+76836186,25761178,5
+90600659,25761178,5
+44862479,25761178,3
+53976516,25761178,4
+52530638,25761178,3
+46858223,25761178,3
+3339134,25761178,3
+71938369,25761178,5
+D_Da1sy,25761178,5
+46660998,25761178,5
+40620928,25761178,4
+77615417,25761178,4
+58774315,25761178,3
+qiQ,25761178,3
+Salomone,25761178,5
+71929336,25761178,2
+Holy-Ran,25761178,4
+50846350,25761178,5
+47515047,25761178,5
+wuxi4945,25761178,5
+guanzihuiji,25761178,5
+misuna,25761178,4
+intotool,25761178,4
+71948308,25761178,5
+yuedong1221,25761178,5
+yukihira,25761178,-1
+4674424,25761178,4
+25514963,25761178,5
+Ink_Regina,25761178,5
+27725003,25761178,-1
+swan93,25761178,4
+60650614,25761178,4
+SHOUYOU,25761178,3
+wishbao,25761178,4
+48143468,25761178,4
+Muhetar,25761178,4
+echoat1995,25761178,4
+weirdoToC,25761178,4
+missinlove,25761178,4
+witness7,25761178,5
+Katrina_Ma,25761178,5
+billystone,25761178,5
+65153834,25761178,-1
+fantasticblue,25761178,5
+soulmissing,25761178,5
+64880714,25761178,4
+47199948,25761178,2
+39384615,25761178,4
+oursweethome,25761178,5
+ayumiH,25761178,4
+azureLan,25761178,4
+lv0401,25761178,4
+hyce,25761178,4
+1371141,25761178,5
+52705405,25761178,4
+84899568,25761178,4
+lllllxxxx,25761178,4
+34759198,25761178,4
+59378291,25761178,3
+2783573,25761178,4
+64799329,25761178,5
+iyyhua,25761178,3
+120844131,25761178,4
+48278440,25761178,4
+Dunstan13,25761178,5
+dabaihenhao,25761178,5
+zzl931216,25761178,5
+84835302,25761178,-1
+82629572,25761178,5
+9950349,25761178,4
+inkeewang,25761178,4
+45261585,25761178,3
+53402343,25761178,-1
+RrandOm,25761178,5
+77098154,25761178,5
+soulmatewithyou,25761178,5
+yuuuuuuuuuuki,25761178,5
+Lovelife-hh,25761178,5
+vivian1165,25761178,4
+43327166,25761178,5
+102989522,25761178,5
+echo7forest,25761178,5
+49364738,25761178,4
+jabriel90,25761178,5
+45008619,25761178,3
+64418387,25761178,5
+catiou52r,25761178,4
+50445519,25761178,5
+ryo_ki,25761178,5
+64131037,25761178,5
+boomXXboomXX,25761178,4
+3571898,25761178,5
+sapx,25761178,5
+47049080,25761178,5
+variation,25761178,4
+shepherded,25761178,4
+3995983,25761178,4
+52284149,25761178,5
+chinesean,25761178,3
+3550233,25761178,5
+supermodified,25761178,3
+fattyme,25761178,5
+61970129,25761178,4
+46497522,25761178,5
+57346493,25761178,-1
+103020260,25761178,4
+delricardo,25761178,5
+49237557,25761178,-1
+Jimmydtc,25761178,5
+56585930,25761178,5
+3812678,25761178,5
+3880844,25761178,3
+65044584,25761178,5
+39773321,25761178,5
+47297203,25761178,5
+70844899,25761178,5
+14854166,25761178,5
+72970549,25761178,4
+49845781,25761178,5
+120117514,25761178,4
+123422446,25761178,4
+3733528,25761178,5
+ximentang,25761178,5
+sacwr,25761178,5
+64693133,25761178,5
+77301969,25761178,3
+shadowyshadow,25761178,4
+87156689,25761178,5
+48226644,25761178,4
+bri,25761178,5
+booboo777,25761178,4
+60824727,25761178,4
+yourblossom,25761178,4
+Pabalee,25761178,4
+15912473,25761178,5
+50181250,25761178,5
+49890113,25761178,5
+Betty818,25761178,5
+summersugarb,25761178,4
+35459636,25761178,4
+levitating,25761178,4
+Sad.chang,25761178,-1
+stripes,25761178,3
+2077290,25761178,5
+4366776,25761178,5
+1493686,25761178,4
+win_ter_bells,25761178,5
+73478164,25761178,5
+freemagic1988,25761178,3
+bessie10105101,25761178,5
+64791162,25761178,5
+carcajou,25761178,4
+yuxianhong,25761178,3
+jc1995,25761178,5
+oldgirl,25761178,4
+Rainbowww,25761178,4
+farawayfromhome,25761178,3
+94207382,25761178,4
+36485719,25761178,3
+97314140,25761178,5
+ButcherV,25761178,3
+51476835,25761178,4
+71755062,25761178,4
+QueenaGun,25761178,5
+2119013,25761178,3
+yidapan,25761178,4
+76900884,25761178,5
+102912620,25761178,4
+62215499,25761178,4
+92147297,25761178,5
+75168640,25761178,-1
+yoory,25761178,-1
+43164701,25761178,5
+kangroons,25761178,4
+zhangzhangzhang,25761178,5
+71002924,25761178,3
+81692824,25761178,3
+sumoom,25761178,5
+2997087,25761178,4
+110121611,25761178,-1
+vicky0601,25761178,5
+2808574,25761178,4
+asiradiohead,25761178,5
+HikariWorld,25761178,4
+120104795,25761178,3
+2309684,25761178,5
+4684932,25761178,4
+salmonvicky,25761178,5
+62879204,25761178,2
+fumihiko1985,25761178,4
+3540826,25761178,5
+64519164,25761178,4
+51130490,25761178,5
+122316070,25761178,5
+6432146,25761178,-1
+mariaaa,25761178,-1
+commonwalker,25761178,4
+commonwalker,25761178,4
+51558823,25761178,5
+128302578,25761178,5
+anwhale,25761178,5
+3513677,25761178,3
+renshendou,25761178,5
+62153005,25761178,-1
+82769994,25761178,5
+zaozi,25761178,5
+58272176,25761178,4
+34596748,25761178,5
+51959545,25761178,4
+carilynlee,25761178,5
+54087603,25761178,5
+48976619,25761178,3
+67561364,25761178,5
+68193127,25761178,4
+hexybaby,25761178,5
+38676304,25761178,3
+littlebreeze,25761178,4
+4069363,25761178,5
+105023809,25761178,5
+renzhifilm,25761178,2
+41283752,25761178,4
+47415890,25761178,3
+dudumozart,25761178,4
+2841721,25761178,4
+beepee,25761178,4
+willinchang,25761178,4
+46054766,25761178,-1
+xiaobai_zw,25761178,4
+48509984,25761178,4
+YeSh233,25761178,5
+27028067,25761178,-1
+4828520,25761178,4
+77626905,25761178,3
+74137880,25761178,5
+RelaQoo,25761178,5
+mitubufan,25761178,4
+58482024,25761178,5
+yeeching,25761178,5
+57127166,25761178,4
+qiaomai,25761178,3
+ydyie,25761178,4
+62767717,25761178,5
+7609988,25761178,4
+60036297,25761178,4
+baby861708,25761178,5
+lylayh,25761178,5
+3829662,25761178,3
+92135501,25761178,4
+zhuangyuanrong,25761178,5
+57968864,25761178,5
+47552286,25761178,4
+PulpPaprika,25761178,4
+35200039,25761178,3
+64898125,25761178,4
+47564941,25761178,4
+61152016,25761178,5
+68368822,25761178,5
+noidea,25761178,4
+poornicky,25761178,5
+FUMANCHU,25761178,5
+67242971,25761178,5
+wywu1990,25761178,4
+67517398,25761178,5
+youyousina,25761178,5
+sozheng,25761178,4
+46884939,25761178,4
+48975477,25761178,5
+58088013,25761178,4
+62376787,25761178,4
+feia,25761178,-1
+56653044,25761178,5
+dustxu,25761178,5
+stefaniesays,25761178,4
+69236980,25761178,5
+bluestone17,25761178,5
+51692311,25761178,5
+17990829,25761178,4
+3391624,25761178,4
+63513932,25761178,5
+xiaomengqiuyue,25761178,4
+71177489,25761178,3
+129548619,25761178,5
+lovely_love,25761178,3
+Shahtoosh,25761178,5
+54049800,25761178,4
+godlovesemily,25761178,5
+4391170,25761178,4
+iappler,25761178,4
+4217792,25761178,3
+63320068,25761178,5
+2563465,25761178,5
+52961960,25761178,4
+63647666,25761178,5
+53627589,25761178,5
+41486823,25761178,4
+59217273,25761178,5
+50418625,25761178,5
+yvette820,25761178,4
+104147841,25761178,5
+endless_red,25761178,5
+49280204,25761178,5
+86246804,25761178,5
+67460489,25761178,4
+iamxx,25761178,5
+66077019,25761178,4
+41264823,25761178,3
+33010059,25761178,5
+thghost,25761178,5
+3209049,25761178,3
+bxg555,25761178,-1
+1371368,25761178,4
+53512949,25761178,5
+hehejiu,25761178,5
+2092765,25761178,5
+56647071,25761178,5
+120984863,25761178,5
+hey_caicai,25761178,5
+57382412,25761178,-1
+johnny174,25761178,4
+64182296,25761178,4
+53485894,25761178,4
+nene1022,25761178,5
+60358393,25761178,5
+92451147,25761178,3
+48380446,25761178,5
+106347535,25761178,4
+79151265,25761178,3
+53570723,25761178,4
+junoshih,25761178,4
+120605598,25761178,4
+73958470,25761178,4
+49736336,25761178,4
+52385653,25761178,4
+lleiou,25761178,4
+39767901,25761178,4
+16919281,25761178,5
+54817318,25761178,5
+letriple,25761178,4
+kuihua11yue,25761178,5
+yeyeyeyyy,25761178,3
+anyone,25761178,4
+48716119,25761178,5
+46039273,25761178,5
+47243761,25761178,3
+77299768,25761178,3
+77622567,25761178,4
+49340336,25761178,4
+seven-day,25761178,4
+63124174,25761178,4
+foreverjc,25761178,4
+66926718,25761178,4
+chuleiwu,25761178,3
+fujing,25761178,3
+45484861,25761178,4
+55529089,25761178,4
+70801856,25761178,4
+80993583,25761178,4
+1133241,25761178,5
+12769559,25761178,4
+xxxdorisxxx,25761178,5
+Kn_,25761178,4
+3769878,25761178,4
+chenxu110,25761178,3
+54277204,25761178,4
+NIAIDE,25761178,4
+49064899,25761178,3
+51847726,25761178,5
+57980305,25761178,5
+60943644,25761178,5
+45543286,25761178,4
+yoyo_wu,25761178,3
+xixiai,25761178,4
+53392958,25761178,3
+119015919,25761178,5
+greengrey,25761178,4
+68460487,25761178,-1
+65448112,25761178,4
+sady,25761178,5
+63178827,25761178,4
+XXTong,25761178,5
+107520660,25761178,4
+saoba25,25761178,5
+kongnici,25761178,3
+49329563,25761178,4
+xuehaotian,25761178,3
+83780838,25761178,4
+ximo,25761178,5
+61667905,25761178,4
+48990593,25761178,4
+Queenita,25761178,4
+3727771,25761178,4
+changeable123,25761178,5
+imoviekobe,25761178,4
+44899820,25761178,4
+qinyouxuan,25761178,4
+zyy1026,25761178,4
+1955873,25761178,4
+60207900,25761178,4
+38869173,25761178,5
+43208511,25761178,5
+48963229,25761178,5
+92468807,25761178,4
+D-cherry,25761178,4
+57443718,25761178,5
+beibeiyu,25761178,4
+zhangyutao519,25761178,5
+tr-oo,25761178,5
+grayfoxever,25761178,3
+huaiyundemazha,25761178,4
+4917955,25761178,5
+evgeni1955,25761178,4
+127677329,25761178,4
+84652846,25761178,4
+52283605,25761178,5
+82307667,25761178,4
+68596231,25761178,5
+109084837,25761178,3
+osakiyunyun,25761178,3
+69133855,25761178,4
+83853096,25761178,5
+4874643,25761178,4
+3650516,25761178,-1
+ycjyg,25761178,3
+53794054,25761178,4
+47680177,25761178,5
+59040514,25761178,3
+106514817,25761178,4
+punsiny,25761178,4
+gomorrha,25761178,5
+fuckpussy,25761178,5
+telea,25761178,4
+93956191,25761178,5
+hyskoamm,25761178,5
+49056997,25761178,5
+zhaomin27,25761178,5
+49925715,25761178,-1
+67016418,25761178,-1
+33977432,25761178,5
+48440561,25761178,5
+h3r,25761178,5
+amberVan,25761178,5
+wilzen,25761178,4
+68881008,25761178,5
+124829943,25761178,5
+1611100,25761178,4
+76086734,25761178,5
+xiannver,25761178,4
+rarezhang,25761178,4
+ghostscares,25761178,4
+Dragon13,25761178,4
+48860832,25761178,5
+tsoo416,25761178,4
+47833189,25761178,3
+dubasama,25761178,5
+34901213,25761178,4
+lynn0128,25761178,4
+53721431,25761178,5
+46891725,25761178,4
+zhuiyii,25761178,3
+49148779,25761178,-1
+74103020,25761178,4
+3239241,25761178,4
+4688576,25761178,4
+54931057,25761178,-1
+lfj1016,25761178,5
+llllLoadingllll,25761178,4
+43608881,25761178,4
+48407248,25761178,4
+57077807,25761178,2
+40446795,25761178,5
+zen-william,25761178,3
+olivialuo,25761178,4
+41927953,25761178,5
+33137119,25761178,4
+2541113,25761178,5
+xiaoshuiliuqiao,25761178,4
+56843116,25761178,5
+88080225,25761178,3
+lilipooh,25761178,4
+xuyimeng,25761178,4
+2441016,25761178,4
+Angel-K,25761178,5
+45851871,25761178,5
+83094871,25761178,5
+128907449,25761178,5
+siniang,25761178,5
+mao00,25761178,4
+Pius,25761178,5
+25740506,25761178,4
+R7L,25761178,5
+melodygxl,25761178,5
+2888430,25761178,4
+crazydu,25761178,4
+justsay,25761178,3
+henshss,25761178,5
+79194650,25761178,3
+lokaven,25761178,5
+37310626,25761178,4
+guliguo_428,25761178,5
+norlesamourai,25761178,5
+57036451,25761178,4
+2843764,25761178,5
+flymelody,25761178,4
+4425750,25761178,4
+4706549,25761178,-1
+48211814,25761178,4
+80876714,25761178,4
+zhouxuan,25761178,4
+jewelshao,25761178,5
+46920813,25761178,3
+Vicky0507,25761178,5
+42006560,25761178,4
+49958643,25761178,3
+72820166,25761178,4
+119416612,25761178,3
+65376509,25761178,5
+sundongge,25761178,3
+Wsuansuan,25761178,4
+30725262,25761178,5
+69826402,25761178,4
+80663628,25761178,4
+zhengkangkang,25761178,5
+mixj93,25761178,5
+philia-li,25761178,-1
+dovebessie,25761178,4
+3682678,25761178,5
+1127610,25761178,4
+60981917,25761178,4
+mpower007,25761178,4
+bluelavender,25761178,4
+isabellagreen,25761178,5
+millie,25761178,5
+deirdra,25761178,4
+zhanba,25761178,5
+88737850,25761178,5
+58307899,25761178,5
+53248408,25761178,4
+110718557,25761178,4
+1318471,25761178,4
+teztuko,25761178,4
+49988006,25761178,4
+92592691,25761178,4
+53105432,25761178,5
+56755911,25761178,4
+58706786,25761178,4
+Kishimoto,25761178,4
+protect97,25761178,5
+glgldgl,25761178,-1
+OpalMummy,25761178,4
+69016984,25761178,3
+52313283,25761178,5
+lavitelloni,25761178,4
+44398126,25761178,4
+cmart,25761178,5
+46815070,25761178,3
+58082436,25761178,5
+73031414,25761178,4
+yangyunyan,25761178,4
+83398649,25761178,5
+55777311,25761178,3
+76953901,25761178,4
+54130808,25761178,3
+59392770,25761178,4
+IHUGEjae,25761178,3
+3427459,25761178,4
+weichengluanma,25761178,3
+xiaoshir,25761178,5
+odicer,25761178,5
+3269790,25761178,4
+yuanzai7,25761178,4
+momogei,25761178,5
+58615356,25761178,5
+31092225,25761178,5
+52888296,25761178,4
+51239884,25761178,4
+wingsuki,25761178,5
+Jarome,25761178,4
+migo,25761178,4
+avivatang,25761178,5
+73925877,25761178,5
+liwujiu,25761178,4
+meowarrier,25761178,5
+79052504,25761178,5
+68078086,25761178,5
+53479153,25761178,5
+alonenaturally,25761178,4
+lunaticsarah,25761178,4
+80908008,25761178,5
+devildie4,25761178,4
+66606324,25761178,3
+colintide,25761178,3
+yY.,25761178,5
+52889400,25761178,4
+Karasu7,25761178,5
+MovieL,25761178,4
+Goldinthemhills,25761178,5
+8130576,25761178,4
+thisisdaisy,25761178,4
+52160935,25761178,4
+61533884,25761178,4
+3177593,25761178,4
+3772330,25761178,5
+62492665,25761178,4
+callmemrcoolman,25761178,5
+iameleven,25761178,5
+44207067,25761178,3
+49298107,25761178,4
+1364563,25761178,4
+59433731,25761178,5
+candyrice,25761178,4
+A-Bao,25761178,4
+3475951,25761178,5
+luuyoo,25761178,5
+3478406,25761178,5
+4421106,25761178,5
+ripslyme,25761178,4
+74564790,25761178,4
+ripslyme,25761178,4
+74564790,25761178,4
+nutbean,25761178,4
+lingyun93,25761178,4
+cherryfane,25761178,5
+Herhway,25761178,4
+54801935,25761178,5
+72063309,25761178,5
+crazychenchen,25761178,5
+3213321,25761178,4
+72902533,25761178,5
+3287454,25761178,4
+91543095,25761178,4
+63166454,25761178,4
+gexiarong,25761178,4
+hi_blue,25761178,5
+meloby,25761178,5
+DouDoucomehere,25761178,4
+58618323,25761178,4
+six211,25761178,3
+yoyoyang,25761178,4
+49785601,25761178,4
+afterhanabinigh,25761178,5
+ananxu,25761178,5
+68550848,25761178,5
+63670029,25761178,5
+35241807,25761178,4
+creepNIBA,25761178,4
+dreamstealer,25761178,4
+55272945,25761178,5
+73485075,25761178,3
+55885677,25761178,5
+dushaoru,25761178,5
+sinfish,25761178,4
+125587412,25761178,4
+66637654,25761178,4
+58369888,25761178,4
+53642273,25761178,3
+DuckLee,25761178,4
+yummmmy,25761178,4
+50878855,25761178,3
+matthew1323,25761178,4
+37640637,25761178,4
+66637034,25761178,5
+59367909,25761178,4
+81686015,25761178,5
+lushui77,25761178,5
+61426958,25761178,5
+55828960,25761178,3
+3762024,25761178,5
+48575471,25761178,5
+47639252,25761178,4
+68878726,25761178,5
+48143172,25761178,4
+80916017,25761178,4
+53281566,25761178,5
+winkido,25761178,4
+3059050,25761178,4
+122232460,25761178,5
+1221606,25761178,5
+Jan2003,25761178,5
+55833200,25761178,4
+67729659,25761178,4
+83016162,25761178,4
+sephilish,25761178,4
+107539229,25761178,4
+75328137,25761178,4
+41250118,25761178,3
+wangnian,25761178,4
+84390206,25761178,4
+kingjulienxiii,25761178,4
+76053597,25761178,5
+83418476,25761178,4
+52106146,25761178,3
+3473473,25761178,4
+sweetdrug2,25761178,5
+2547310,25761178,4
+yokojanee,25761178,5
+kagakuka,25761178,4
+55405486,25761178,4
+canteen,25761178,4
+50446822,25761178,5
+5754772,25761178,5
+xuanmicha9402,25761178,4
+58215483,25761178,4
+fleckfleck,25761178,4
+42889609,25761178,4
+28904947,25761178,4
+artemishappy,25761178,4
+fio3,25761178,4
+leoXiao,25761178,5
+davve,25761178,4
+Stephen2046,25761178,5
+wyp231,25761178,4
+imsatan,25761178,4
+50700305,25761178,-1
+51938291,25761178,5
+49072248,25761178,5
+maluguojiang,25761178,4
+etheryan,25761178,5
+etheryan,25761178,5
+78977506,25761178,4
+smartgirl0305,25761178,-1
+yeeeeeee,25761178,4
+41849151,25761178,4
+102581208,25761178,5
+46287060,25761178,4
+lsdlsd,25761178,5
+18988151,25761178,5
+swalt,25761178,5
+123645263,25761178,4
+woshiex,25761178,5
+53722280,25761178,3
+50720620,25761178,5
+eertdik,25761178,-1
+bons,25761178,4
+54953231,25761178,4
+46754344,25761178,4
+40581527,25761178,4
+80676857,25761178,5
+moviecafe,25761178,4
+47911245,25761178,5
+50219833,25761178,5
+ooolj,25761178,5
+RAINYF,25761178,4
+1965120,25761178,2
+xhlaxhla,25761178,4
+lydiapy,25761178,5
+63953631,25761178,5
+3597256,25761178,3
+aitiaowudemeng,25761178,5
+3573509,25761178,5
+59376564,25761178,4
+55849765,25761178,4
+nancy8787,25761178,4
+1560748,25761178,4
+51038744,25761178,3
+roryluo,25761178,4
+Z-Pain,25761178,5
+3608735,25761178,5
+58079231,25761178,5
+4111389,25761178,5
+104261144,25761178,5
+enjoyfreedom,25761178,-1
+joey12255555,25761178,5
+46333032,25761178,2
+78771431,25761178,1
+3464028,25761178,4
+yuan0243109,25761178,4
+67072789,25761178,5
+42484020,25761178,5
+grace-since1997,25761178,4
+93205302,25761178,5
+3274950,25761178,5
+55485806,25761178,5
+COCOCOQUEEN,25761178,4
+zsc1995,25761178,5
+4190834,25761178,5
+62491542,25761178,5
+ilovehotcoffee,25761178,-1
+52371666,25761178,4
+btjd,25761178,5
+43517175,25761178,4
+35282603,25761178,5
+gxyvonne,25761178,4
+jinjidexiong,25761178,3
+alannakiss,25761178,4
+ruo1996,25761178,4
+dee,25761178,5
+7735198,25761178,4
+53492535,25761178,4
+xiaochanzi,25761178,4
+vxdeath,25761178,4
+vanyeeyouth,25761178,5
+shiralees,25761178,4
+cathyhere,25761178,5
+66361496,25761178,5
+57368327,25761178,5
+66625967,25761178,5
+wuzouhuanghun,25761178,4
+52046312,25761178,5
+athousand,25761178,4
+yangui,25761178,4
+88652488,25761178,4
+KITTEN614_,25761178,-1
+37450029,25761178,4
+52479744,25761178,4
+20890010,25761178,5
+63730928,25761178,5
+66384227,25761178,5
+3045195,25761178,3
+51086058,25761178,4
+harashi,25761178,5
+73064038,25761178,5
+75049054,25761178,3
+57542527,25761178,5
+kento,25761178,4
+68089671,25761178,4
+Joelia,25761178,4
+qiongdong,25761178,4
+2671857,25761178,3
+62900892,25761178,4
+yededi8821,25761178,4
+55821244,25761178,4
+70389016,25761178,3
+61111185,25761178,3
+55279877,25761178,5
+53878159,25761178,3
+42781557,25761178,4
+yoyoyoyoyoyoyo,25761178,5
+47409126,25761178,4
+cyansugar,25761178,4
+77214880,25761178,5
+57797470,25761178,3
+85296243,25761178,4
+rolemodel,25761178,5
+aliclaire,25761178,5
+63844800,25761178,4
+movieview,25761178,3
+58249010,25761178,5
+Cecil.,25761178,4
+zhaopusheng,25761178,5
+65087582,25761178,3
+72098236,25761178,5
+34853481,25761178,5
+3706220,25761178,4
+47560673,25761178,4
+3573308,25761178,5
+51705570,25761178,5
+pywx,25761178,5
+53819928,25761178,5
+120287193,25761178,5
+YourAva,25761178,5
+ayal,25761178,4
+made-by-stan,25761178,4
+Sumia,25761178,4
+paltrow,25761178,-1
+64978865,25761178,5
+43808911,25761178,4
+findmusic,25761178,3
+70825013,25761178,4
+60191143,25761178,5
+91800038,25761178,5
+74325973,25761178,4
+52689721,25761178,4
+mangggggg,25761178,-1
+34163100,25761178,5
+Lemonsir,25761178,5
+2294404,25761178,3
+blacksora,25761178,4
+whm1988,25761178,5
+qingnianluoke,25761178,3
+mathewxiang,25761178,5
+springfantasy,25761178,3
+37382236,25761178,4
+crazy.c,25761178,4
+32749338,25761178,4
+51513711,25761178,5
+wunie,25761178,5
+47403212,25761178,4
+125750519,25761178,5
+67259770,25761178,2
+62312013,25761178,5
+SL46,25761178,4
+4231432,25761178,3
+76509928,25761178,4
+lingnian,25761178,4
+64833909,25761178,4
+36031967,25761178,4
+74855673,25761178,4
+43703010,25761178,5
+77317619,25761178,4
+58380292,25761178,5
+47224732,25761178,5
+3303856,25761178,4
+75691865,25761178,4
+24818011,25761178,5
+81249317,25761178,4
+akanetx,25761178,5
+47701757,25761178,4
+120551581,25761178,4
+1333942,25761178,5
+49402699,25761178,4
+74758139,25761178,5
+loveyourass,25761178,3
+2060005,25761178,4
+127367959,25761178,4
+CatPrince,25761178,4
+46995714,25761178,5
+irislxxx,25761178,3
+Jisun,25761178,4
+79534450,25761178,5
+4123019,25761178,4
+87651171,25761178,5
+xiaohei0919,25761178,5
+hhhh9359,25761178,3
+volitta,25761178,4
+xiaoyuhen,25761178,4
+120121169,25761178,4
+89108079,25761178,4
+fang070553,25761178,5
+potatotin,25761178,-1
+duduxiongzhifu,25761178,5
+70413922,25761178,3
+108704297,25761178,5
+66057217,25761178,4
+sxy921026,25761178,4
+67330888,25761178,5
+snowbusy,25761178,4
+ash1a1ym,25761178,4
+movie8,25761178,4
+8523675,25761178,5
+45461017,25761178,4
+59112115,25761178,4
+jeansolove,25761178,4
+36511372,25761178,4
+diva76,25761178,5
+88236856,25761178,4
+blue4light,25761178,5
+57354902,25761178,5
+antagonist,25761178,5
+64249671,25761178,4
+53559432,25761178,4
+magic1029,25761178,4
+4201884,25761178,5
+saydo,25761178,2
+xiangdahai,25761178,4
+50329989,25761178,5
+afterthis,25761178,-1
+justsoso80s,25761178,3
+Forrestgary,25761178,5
+nadja,25761178,-1
+44200082,25761178,2
+53317988,25761178,4
+ECHO789326,25761178,4
+52259960,25761178,4
+64852171,25761178,3
+48864711,25761178,5
+meront,25761178,5
+riverbrother,25761178,4
+2913672,25761178,4
+angusfox,25761178,4
+wleii,25761178,3
+1225334,25761178,5
+40141286,25761178,5
+47781830,25761178,4
+48816803,25761178,4
+Yindaxian,25761178,4
+zhonggeer,25761178,3
+29074419,25761178,1
+47845902,25761178,4
+87095553,25761178,4
+july-sky,25761178,5
+58970075,25761178,5
+rasiel,25761178,5
+theMicky,25761178,5
+yolanda9421,25761178,4
+121080553,25761178,4
+53982181,25761178,4
+71088642,25761178,5
+54624339,25761178,5
+2847987,25761178,5
+122128511,25761178,5
+2600480,25761178,5
+64009647,25761178,5
+leslieleo,25761178,4
+1977836,25761178,5
+Oliver_Lu,25761178,4
+qbits,25761178,5
+58052312,25761178,5
+34727533,25761178,4
+103222605,25761178,-1
+46537720,25761178,5
+3461171,25761178,5
+yuni192,25761178,3
+absinthejt,25761178,5
+yokoyamamomoko,25761178,5
+2280920,25761178,3
+petterzhang,25761178,4
+62703414,25761178,4
+54272292,25761178,4
+aozora1986,25761178,4
+65014224,25761178,4
+anonymousor,25761178,4
+88502851,25761178,4
+73709289,25761178,4
+29998862,25761178,4
+52558931,25761178,4
+hanavsalice,25761178,5
+woshuole,25761178,2
+muxiaoxu,25761178,4
+fangkaka,25761178,5
+36664361,25761178,3
+3008579,25761178,5
+47483852,25761178,5
+60826315,25761178,4
+sgzjhw,25761178,3
+45251073,25761178,5
+GUAN,25761178,4
+49893438,25761178,5
+39053176,25761178,5
+birdman5T,25761178,5
+wangqixin,25761178,5
+choushabi,25761178,5
+1510862,25761178,5
+122675748,25761178,3
+65058502,25761178,3
+brutwater,25761178,5
+67449498,25761178,5
+hysunao,25761178,4
+59842104,25761178,3
+49193605,25761178,5
+xfdzl,25761178,1
+vincentjones,25761178,4
+44311860,25761178,4
+miAAAAAo,25761178,5
+yzone,25761178,3
+58364140,25761178,4
+kayomii,25761178,4
+Spiritsouland,25761178,4
+63965908,25761178,4
+daisyx1108,25761178,4
+dfzxqqian,25761178,4
+szdd,25761178,4
+79157709,25761178,5
+cherrydyn,25761178,5
+124117539,25761178,4
+1114835,25761178,2
+44457357,25761178,4
+54770734,25761178,5
+rakirakiraki,25761178,5
+57871767,25761178,5
+1020407,25761178,4
+57983066,25761178,5
+35768537,25761178,5
+laomo,25761178,4
+38508587,25761178,5
+yangqiaohe,25761178,3
+34347136,25761178,4
+58151132,25761178,4
+58151132,25761178,4
+71712841,25761178,4
+59101282,25761178,4
+zhouxiaoou,25761178,1
+122740482,25761178,4
+redjar,25761178,5
+samsyu,25761178,4
+NNUL,25761178,5
+51803315,25761178,3
+47708904,25761178,5
+1840065,25761178,4
+zoe111,25761178,4
+emineminmyheart,25761178,5
+acbc115,25761178,3
+1007660,25761178,4
+siaa,25761178,4
+2187951,25761178,4
+41870233,25761178,5
+62271024,25761178,3
+shumeiying,25761178,4
+bieshaohui,25761178,4
+1558354,25761178,5
+1401632,25761178,5
+moemoeplanet,25761178,5
+xccccccc,25761178,5
+3173862,25761178,-1
+yiritang,25761178,5
+Mayk,25761178,4
+47050600,25761178,5
+52175149,25761178,4
+MOVIE--KO,25761178,4
+53724452,25761178,4
+1548712,25761178,5
+ezerlee,25761178,5
+52281129,25761178,-1
+jody_,25761178,4
+57818188,25761178,3
+57786882,25761178,4
+2766112,25761178,5
+57805220,25761178,4
+moneyno,25761178,5
+50142885,25761178,5
+54915058,25761178,5
+humluv,25761178,4
+56092218,25761178,5
+53343599,25761178,5
+41047138,25761178,5
+50620549,25761178,5
+thehours_lxx,25761178,4
+122147114,25761178,5
+lunaa,25761178,3
+1420335,25761178,5
+zicheng05,25761178,5
+FINDESIGN,25761178,5
+yeyinger,25761178,5
+56744687,25761178,5
+68350084,25761178,3
+86911697,25761178,5
+vexit,25761178,-1
+36110840,25761178,5
+xiaobing95,25761178,5
+wondershine,25761178,5
+kingchuang1028,25761178,4
+NG,25761178,3
+PP_wei,25761178,5
+75756405,25761178,4
+Yb1204,25761178,5
+guoyikaku,25761178,5
+64854726,25761178,4
+84218397,25761178,5
+51157596,25761178,5
+69192951,25761178,4
+ys1013,25761178,4
+JakeNow,25761178,4
+1770434,25761178,5
+Shiely,25761178,4
+48474156,25761178,5
+77316354,25761178,4
+CityOfShadows,25761178,4
+92399399,25761178,4
+3477062,25761178,4
+61160709,25761178,4
+duzhouchi,25761178,5
+36049101,25761178,5
+lenuts,25761178,4
+Jesse-He,25761178,5
+demisemiquaver,25761178,4
+60667221,25761178,3
+2260481,25761178,3
+guavashine,25761178,4
+caomuyiyi,25761178,4
+50570726,25761178,5
+4082427,25761178,4
+52538749,25761178,4
+huguang,25761178,5
+odydydy,25761178,5
+nangle,25761178,4
+zeg,25761178,-1
+36008103,25761178,5
+49272831,25761178,4
+59390060,25761178,4
+81126169,25761178,5
+xiaoyuzhe,25761178,4
+80757193,25761178,4
+kleer,25761178,5
+edward4th,25761178,4
+1865210,25761178,5
+thekooks,25761178,5
+66931955,25761178,4
+40219878,25761178,5
+1211087,25761178,5
+hisenwang,25761178,5
+CasterD,25761178,3
+71298471,25761178,5
+megamao,25761178,5
+littlexp,25761178,5
+dusk.xiyang,25761178,5
+dianman,25761178,4
+qikapu,25761178,5
+65523166,25761178,5
+southdrift,25761178,4
+3953760,25761178,5
+masterobert,25761178,5
+66345679,25761178,4
+62544588,25761178,3
+anko2626,25761178,5
+kp81ndlf,25761178,4
+wss199o,25761178,5
+grani_air,25761178,4
+xiaosongqu,25761178,4
+1892627,25761178,3
+izzytse,25761178,4
+2182107,25761178,4
+76789340,25761178,4
+ky-ssss,25761178,-1
+4040058,25761178,3
+50958271,25761178,4
+47467918,25761178,4
+68961950,25761178,5
+53815013,25761178,4
+61743455,25761178,4
+68651295,25761178,4
+87636985,25761178,5
+52770411,25761178,5
+3802312,25761178,4
+54236000,25761178,4
+freak_ivory,25761178,5
+31120990,25761178,4
+vipchenhong,25761178,5
+12794807,25761178,4
+aht,25761178,4
+Dense,25761178,4
+1550801,25761178,4
+65930256,25761178,4
+46818938,25761178,5
+nikan,25761178,5
+41694650,25761178,5
+4290135,25761178,4
+face_off,25761178,5
+6626093,25761178,5
+54213688,25761178,3
+wtforz,25761178,4
+45477393,25761178,3
+4688839,25761178,5
+sarahvong,25761178,4
+61930978,25761178,5
+InfoG,25761178,3
+btone0808,25761178,2
+33091901,25761178,4
+tang516,25761178,4
+zhoushiyun,25761178,4
+77186305,25761178,5
+50782420,25761178,5
+lr2000,25761178,5
+zoe_dabai,25761178,5
+14504751,25761178,5
+twoherb,25761178,-1
+51754332,25761178,4
+87804187,25761178,5
+JuXZ_,25761178,5
+kkif,25761178,4
+avon0801,25761178,5
+35409946,25761178,4
+hou7,25761178,5
+sqchen,25761178,3
+63916193,25761178,5
+SecondSecret,25761178,5
+2382217,25761178,4
+helene9933,25761178,4
+55439926,25761178,5
+JCK1988,25761178,3
+yin1257,25761178,-1
+wuliangmouji,25761178,4
+Papa423,25761178,4
+52408414,25761178,5
+Feola,25761178,4
+childfish,25761178,4
+96044338,25761178,4
+61506971,25761178,3
+RAGEANDLOVE,25761178,5
+tomhu,25761178,4
+clarachan,25761178,5
+heymiki,25761178,4
+49452942,25761178,4
+1285360,25761178,4
+40359669,25761178,5
+stygian,25761178,4
+54814792,25761178,4
+antoniosnow,25761178,5
+nieblalan,25761178,5
+guaimao,25761178,5
+47782519,25761178,4
+VVIVXIV,25761178,5
+preciousyou,25761178,5
+eiji218837,25761178,4
+67761324,25761178,5
+Caroline.H,25761178,5
+35315925,25761178,5
+30600835,25761178,5
+87411702,25761178,4
+51462538,25761178,4
+xcloudcloud,25761178,4
+66513837,25761178,3
+xiaojirou007,25761178,4
+youkeiki,25761178,4
+guilaoqi,25761178,5
+cmhloveukulele,25761178,-1
+4597338,25761178,3
+2179932,25761178,4
+mackalex,25761178,4
+dyeliu,25761178,5
+72354881,25761178,5
+kingkongofkhan,25761178,4
+Sophieless,25761178,4
+4362013,25761178,5
+leegun150,25761178,5
+blueskyfly,25761178,4
+2043381,25761178,4
+59421436,25761178,4
+lovelovelove82,25761178,4
+53602254,25761178,4
+62687217,25761178,4
+64700587,25761178,4
+zhangezra,25761178,5
+33245540,25761178,3
+veverlee,25761178,5
+71984544,25761178,4
+58345625,25761178,4
+cloudy20011128,25761178,4
+55999327,25761178,5
+55373134,25761178,4
+ritaisdead,25761178,4
+87035372,25761178,4
+asukayoshioka,25761178,5
+48975518,25761178,4
+chengchen0121,25761178,5
+115347545,25761178,5
+yv-1fuuy,25761178,4
+judy0420,25761178,4
+3501858,25761178,4
+rocksea,25761178,5
+84157110,25761178,4
+B-B-B-Side,25761178,4
+58059498,25761178,4
+ershisan,25761178,-1
+kyth,25761178,5
+matchbox,25761178,3
+4242728,25761178,4
+lingrui1995,25761178,3
+braxin2007,25761178,3
+glowxi,25761178,5
+dongdongskice,25761178,4
+KINGRUNRUN,25761178,5
+99178213,25761178,4
+iano,25761178,5
+Creep_,25761178,4
+4804072,25761178,-1
+58617905,25761178,4
+53530714,25761178,5
+kim899,25761178,5
+65452477,25761178,5
+59286810,25761178,5
+36669166,25761178,4
+3319103,25761178,4
+65948631,25761178,5
+Anti_Ether,25761178,5
+4164677,25761178,5
+Christar,25761178,5
+63791441,25761178,5
+78529584,25761178,5
+lindadarling,25761178,5
+87719224,25761178,4
+62198966,25761178,5
+yangcosta,25761178,4
+43778462,25761178,-1
+63692271,25761178,4
+biskup,25761178,4
+notexist,25761178,4
+76689420,25761178,5
+Stella_LL,25761178,4
+67843912,25761178,3
+64536394,25761178,4
+tierra,25761178,5
+echorange0311,25761178,5
+pilixiaohongmao,25761178,3
+7542909,25761178,5
+109132112,25761178,5
+louee,25761178,4
+ami0430,25761178,5
+sunxuhang,25761178,4
+leon_howe,25761178,5
+badan,25761178,5
+jutaomomo,25761178,5
+Lulu-chips,25761178,5
+Rottenmudpit,25761178,5
+54482435,25761178,3
+TVBVSBON,25761178,5
+60804345,25761178,3
+59233283,25761178,4
+phoeder,25761178,4
+willingnotto,25761178,4
+1867072,25761178,-1
+68982758,25761178,4
+48214032,25761178,3
+cretek,25761178,4
+tsnz,25761178,5
+xhdddd,25761178,5
+53577645,25761178,-1
+iisakura,25761178,4
+reneew,25761178,4
+ydlxiaolong,25761178,4
+L5.P4,25761178,4
+wemn,25761178,-1
+kumasan,25761178,-1
+lollypain,25761178,4
+doubleshuang,25761178,5
+hwf254,25761178,5
+3611128,25761178,4
+baozecheng,25761178,3
+lupuline,25761178,5
+54150368,25761178,4
+69396504,25761178,-1
+l00000000,25761178,4
+52744740,25761178,4
+killmystery,25761178,4
+1091787,25761178,5
+124528145,25761178,-1
+Curry_Egg,25761178,5
+TKDE,25761178,5
+1536774,25761178,5
+emeline,25761178,5
+taoqianmo,25761178,4
+47426974,25761178,4
+58522133,25761178,1
+48634684,25761178,4
+chunchunderen,25761178,5
+waitingchan,25761178,5
+sunnyareas,25761178,4
+madluoLA,25761178,4
+JewelzJewelz,25761178,5
+59651961,25761178,-1
+mao.mao.,25761178,4
+89779013,25761178,5
+135893024,25761178,4
+56006226,25761178,3
+85304650,25761178,5
+65293172,25761178,4
+flyingfishqueen,25761178,5
+larmebleue,25761178,4
+115106153,25761178,4
+134777301,25761178,4
+45088491,25761178,4
+56097094,25761178,5
+63962915,25761178,2
+43710028,25761178,5
+93511015,25761178,4
+105097877,25761178,4
+3189909,25761178,4
+101154434,25761178,4
+ttkxqtbl,25761178,5
+captain_beard,25761178,4
+lostoldboy,25761178,5
+64779909,25761178,5
+1817816,25761178,4
+aslope,25761178,4
+136534147,25761178,4
+1943610,25761178,4
+60118399,25761178,4
+phenelzine,25761178,5
+81483354,25761178,4
+2437069,25761178,4
+allenyao,25761178,3
+43187104,25761178,4
+70795862,25761178,4
+sharonsama,25761178,5
+NICOOLE,25761178,4
+136509793,25761178,3
+87682878,25761178,3
+135438717,25761178,5
+62569679,25761178,5
+52366349,25727048,2
+YewChing,25727048,5
+vivifyvivi,25727048,3
+weblinder,25727048,5
+2266117,25727048,-1
+liuruomei,25727048,4
+61915402,25727048,4
+eefee,25727048,4
+129979276,25727048,5
+77056370,25727048,4
+116138651,25727048,3
+53466542,25727048,3
+59101445,25727048,4
+3301961,25727048,3
+74882629,25727048,4
+50087846,25727048,3
+82570233,25727048,4
+kinkiman,25727048,4
+56390401,25727048,4
+Lo,25727048,4
+Lo,25727048,4
+44596229,25727048,4
+xiangwan7,25727048,4
+49041524,25727048,4
+103343443,25727048,4
+77288583,25727048,4
+69168057,25727048,4
+11192863,25727048,3
+119876196,25727048,5
+71016890,25727048,5
+ruanzebang,25727048,1
+35380385,25727048,3
+rioir,25727048,4
+68886800,25727048,5
+102862890,25727048,4
+nodane,25727048,3
+1357146,25727048,2
+64173784,25727048,4
+68979031,25727048,4
+53917736,25727048,4
+58040832,25727048,2
+58338006,25727048,4
+TansyYEH,25727048,4
+hohoyuhu,25727048,4
+anisezww,25727048,4
+21212589,25727048,3
+101978260,25727048,3
+57095832,25727048,3
+vincitea,25727048,5
+53728627,25727048,4
+leonlancelot,25727048,5
+122838666,25727048,4
+40789061,25727048,4
+celinedsam,25727048,3
+102653753,25727048,3
+1122936,25727048,4
+54665954,25727048,4
+ixiaxiaoqi,25727048,5
+sentimento-rose,25727048,3
+88926842,25727048,4
+kuroneko2002,25727048,4
+47336635,25727048,4
+2858394,25727048,3
+shepherdgirl,25727048,5
+45502206,25727048,4
+byeprincess,25727048,3
+42280664,25727048,4
+54984584,25727048,3
+34866563,25727048,4
+be-my-mirror,25727048,5
+4378595,25727048,5
+miluoya,25727048,4
+60421761,25727048,3
+135819934,25727048,4
+Robert_Cpc,25727048,4
+eamontoday,25727048,5
+58096445,25727048,5
+88033603,25727048,3
+Tassoz,25727048,5
+52464595,25727048,4
+nianhuaapple,25727048,3
+45334763,25727048,4
+137728472,25727048,5
+50247460,25727048,4
+49229485,25727048,4
+6263589,25727048,-1
+66620851,25727048,5
+Metalheads,25727048,5
+Daruke,25727048,3
+61415736,25727048,4
+evilQin,25727048,5
+jeanwoo,25727048,3
+54306906,25727048,5
+79032682,25727048,2
+67119457,25727048,-1
+riverbrother,25727048,4
+68288048,25727048,4
+48319502,25727048,5
+82643605,25727048,3
+vivichris,25727048,4
+vivichris,25727048,4
+40411879,25727048,3
+sensenecho,25727048,5
+124035859,25727048,4
+77212612,25727048,4
+lucifydouban,25727048,3
+2411985,25727048,5
+135743894,25727048,5
+96545513,25727048,5
+3327961,25727048,4
+50876817,25727048,4
+1632293,25727048,4
+ivis1989,25727048,4
+102987982,25727048,4
+77073926,25727048,4
+92451147,25727048,4
+36811646,25727048,5
+2761282,25727048,3
+68685051,25727048,5
+72083821,25727048,3
+simu19,25727048,4
+38589654,25727048,3
+76858812,25727048,5
+89528523,25727048,4
+52075541,25727048,4
+cyanu,25727048,3
+55518938,25727048,4
+51792609,25727048,3
+47309128,25727048,5
+47034969,25727048,4
+59640195,25727048,2
+131208902,25727048,4
+65145767,25727048,4
+amberasharon,25727048,4
+55931716,25727048,5
+1891993,25727048,3
+eveche,25727048,4
+8605018,25727048,5
+82849854,25727048,4
+aeb2366,25727048,4
+shinysky,25727048,4
+freeilove,25727048,4
+44753719,25727048,4
+102554111,25727048,5
+53353893,25727048,4
+37371725,25727048,4
+Finnegans,25727048,4
+89341086,25727048,5
+49054831,25727048,3
+56896055,25727048,5
+sansung,25727048,4
+51571478,25727048,4
+Jimmy_li,25727048,4
+34530231,25727048,3
+83773769,25727048,4
+125323744,25727048,4
+120091522,25727048,4
+stevenfive,25727048,4
+bfa1950,25727048,4
+Light_L,25727048,-1
+68799841,25727048,4
+ashin49,25727048,4
+1359081,25727048,4
+72030393,25727048,4
+70287604,25727048,4
+57673827,25727048,5
+1447900,25727048,5
+senelu,25727048,4
+kozze,25727048,4
+6264939,25727048,4
+59205597,25727048,4
+69546299,25727048,5
+137353333,25727048,5
+3074051,25727048,4
+80314628,25727048,3
+25676059,25727048,5
+mabysomebody,25727048,5
+73880278,25727048,3
+whisper75,25727048,3
+93007927,25727048,5
+52504124,25727048,-1
+33535307,25727048,4
+oximi,25727048,4
+2613946,25727048,4
+47781280,25727048,4
+46370805,25727048,5
+34297672,25727048,4
+25664582,25727048,3
+82722362,25727048,3
+58694508,25727048,4
+girliya,25727048,4
+97816774,25727048,4
+sail308,25727048,-1
+3879960,25727048,5
+58578065,25727048,5
+82918638,25727048,5
+Lkila,25727048,4
+137546827,25727048,4
+112008242,25727048,4
+wjww2128,25727048,5
+119476678,25727048,4
+47593124,25727048,3
+4714593,25727048,4
+57818309,25727048,4
+TaTaxxxx,25727048,3
+43382367,25727048,4
+67674079,25727048,5
+49437443,25727048,3
+51445023,25727048,4
+39508181,25727048,4
+72866809,25727048,5
+35514248,25727048,4
+74777579,25727048,5
+1208857,25727048,3
+seoyoungeun,25727048,5
+103587734,25727048,4
+56670282,25727048,3
+79792072,25727048,4
+64902546,25727048,3
+olivia1016,25727048,2
+48308518,25727048,2
+asldrf,25727048,4
+68845314,25727048,4
+3082551,25727048,3
+58082536,25727048,3
+43542523,25727048,3
+54045751,25727048,5
+108821133,25727048,3
+62498869,25727048,4
+63961193,25727048,4
+couniter,25727048,4
+59273600,25727048,3
+winter-h,25727048,3
+60040964,25727048,5
+62605597,25727048,4
+126404259,25727048,5
+Ryan-Z,25727048,4
+44513297,25727048,4
+winmaxangle,25727048,5
+turtur,25727048,4
+helloldq,25727048,4
+44309121,25727048,5
+46780949,25727048,5
+dinoel,25727048,5
+81374641,25727048,5
+46018704,25727048,4
+cinta-2012,25727048,5
+angelkalen,25727048,4
+76943413,25727048,3
+82913743,25727048,4
+97188131,25727048,3
+45177549,25727048,4
+3943144,25727048,4
+salted-fish,25727048,4
+35241807,25727048,2
+52237739,25727048,5
+desperad0,25727048,4
+dongworui,25727048,5
+44326808,25727048,3
+hewenzicandy,25727048,3
+mpower007,25727048,4
+81149170,25727048,4
+cangjie1900,25727048,3
+42883589,25727048,5
+46590028,25727048,4
+68530717,25727048,3
+52744740,25727048,4
+metaph0r,25727048,5
+137449600,25727048,4
+50570726,25727048,4
+121726595,25727048,4
+THESONOFBITCH,25727048,3
+131426803,25727048,5
+66345470,25727048,5
+4610385,25727048,3
+57562576,25727048,4
+49134940,25727048,5
+50008426,25727048,4
+43228715,25727048,4
+60437937,25727048,5
+60437937,25727048,5
+onlyjtl,25727048,4
+zion12345,25727048,4
+126849700,25727048,3
+136454222,25727048,4
+125755382,25727048,4
+3066956,25727048,4
+52164240,25727048,5
+45242330,25727048,4
+strawman81,25727048,4
+54991804,25727048,4
+55320874,25727048,5
+122394659,25727048,3
+ading4171,25727048,4
+49521625,25727048,3
+beomi,25727048,4
+liaozhongchao,25727048,4
+67231468,25727048,5
+ljh007,25727048,4
+2273276,25727048,2
+2273276,25727048,2
+potatooo,25727048,4
+137555231,25727048,3
+tenniszbl,25727048,4
+2809747,25727048,-1
+36877826,25727048,4
+xuancaidanqing,25727048,3
+sharkspeare,25727048,4
+42421580,25727048,5
+49363710,25727048,3
+nknymphet,25727048,4
+61591334,25727048,4
+50574309,25727048,4
+3201544,25727048,3
+41236968,25727048,3
+bunnyuki,25727048,3
+95017002,25727048,4
+56493831,25727048,4
+hecategk,25727048,5
+taoq11,25727048,5
+135175472,25727048,5
+57218785,25727048,4
+63617641,25727048,2
+40687803,25727048,3
+49287269,25727048,5
+4068908,25727048,4
+57963246,25727048,4
+zzzwing,25727048,4
+57784370,25727048,4
+angalny,25727048,3
+roverknight,25727048,2
+oversensitive,25727048,5
+lagloria,25727048,3
+1201937,25727048,3
+psychodying,25727048,4
+40249960,25727048,3
+LieblingCL,25727048,4
+kalla,25727048,4
+36610260,25727048,5
+48441251,25727048,5
+yihengxi,25727048,4
+136199952,25727048,4
+menethil,25727048,5
+44848574,25727048,2
+fangfang5,25727048,5
+4026025,25727048,4
+notyetdone,25727048,5
+roy325,25727048,4
+60977504,25727048,4
+134509898,25727048,4
+119157867,25727048,4
+Charlie.Lee,25727048,5
+61619787,25727048,5
+rock0323,25727048,4
+58069856,25727048,4
+68470467,25727048,4
+45077358,25727048,4
+64757557,25727048,4
+28736165,25727048,4
+76239452,25727048,4
+69127270,25727048,5
+lovage0402,25727048,4
+SnoozyOwl,25727048,4
+53431737,25727048,4
+135096530,25727048,4
+67905577,25727048,3
+136942011,25727048,4
+40674382,25727048,4
+mia777,25727048,5
+135279955,25727048,4
+79694642,25727048,-1
+sethqi,25727048,2
+73530411,25727048,4
+136209318,25727048,4
+121937245,25727048,5
+luccaporridge,25727048,5
+79506720,25727048,5
+81351219,25727048,3
+47610839,25727048,3
+33235150,25727048,5
+122231074,25727048,4
+59378291,25727048,4
+64969001,25727048,5
+raaven,25727048,4
+136810733,25727048,4
+louise.lu,25727048,4
+xiaxidaye,25727048,3
+49577175,25727048,3
+muini,25727048,4
+136268447,25727048,4
+arcueid,25727048,4
+penguin_re,25727048,4
+river_me1212,25727048,3
+longmao_83,25727048,3
+58758623,25727048,4
+68364127,25727048,3
+46570537,25727048,5
+62943026,25727048,4
+moneyhere,25727048,3
+3627412,25727048,5
+4534557,25727048,5
+67769734,25727048,3
+32653092,25727048,3
+45252963,25727048,4
+iltt,25727048,-1
+2376689,25727048,-1
+68988026,25727048,4
+Sunny851020,25727048,-1
+yuchenyuan,25727048,4
+13147316,25727048,3
+41792966,25727048,4
+60592214,25727048,5
+30776774,25727048,5
+88371415,25727048,5
+59684689,25727048,4
+seaneight,25727048,4
+115474584,25727048,5
+lvchencf,25727048,4
+sjzqzkn,25727048,4
+47395813,25727048,3
+57640790,25727048,3
+wwguo,25727048,5
+132236300,25727048,4
+66574557,25727048,4
+zbar1234,25727048,4
+73877407,25727048,4
+dingtian911,25727048,3
+65641754,25727048,3
+58726406,25727048,4
+81916004,25727048,4
+64104549,25727048,3
+88345379,25727048,4
+3059021,25727048,3
+4557702,25727048,4
+35224934,25727048,4
+68304173,25727048,3
+81002115,25727048,4
+Jacky_L,25727048,5
+saky,25727048,3
+41086330,25727048,4
+53476786,25727048,4
+125729384,25727048,4
+lips,25727048,3
+ET-Jac,25727048,4
+74474859,25727048,5
+87230484,25727048,4
+wanwibeatles,25727048,5
+memorymare,25727048,5
+foofights,25727048,-1
+mrkingdom,25727048,4
+78529584,25727048,3
+pandatou,25727048,5
+luohuazhu,25727048,4
+linshang,25727048,4
+ephraimdw,25727048,5
+yanala,25727048,4
+54158411,25727048,3
+77631133,25727048,4
+95078299,25727048,3
+91222743,25727048,4
+3574374,25727048,5
+48477485,25727048,5
+hettler,25727048,-1
+1943610,25727048,5
+64159384,25727048,4
+68550655,25727048,4
+29113494,25727048,4
+59517765,25727048,3
+103039257,25727048,3
+136995611,25727048,-1
+47697397,25727048,5
+64011021,25727048,5
+97042268,25727048,3
+spancercheng,25727048,4
+mymx,25727048,5
+colorwind,25727048,3
+72642943,25727048,3
+69407013,25727048,4
+81962971,25727048,4
+35873021,25727048,3
+vane918,25727048,3
+135402146,25727048,2
+72144895,25727048,4
+121681565,25727048,4
+40934141,25727048,4
+4475163,25727048,4
+3984453,25727048,-1
+cchestnut,25727048,3
+2616668,25727048,2
+marsdream,25727048,4
+33691295,25727048,5
+46823718,25727048,4
+58487163,25727048,3
+memor,25727048,3
+92303311,25727048,4
+60544607,25727048,4
+58023617,25727048,4
+107481201,25727048,5
+kejiali,25727048,5
+lomata,25727048,5
+48067677,25727048,3
+1666477,25727048,5
+47773314,25727048,4
+66250308,25727048,3
+wangxiaowu,25727048,2
+xcoral,25727048,4
+60532883,25727048,4
+66631121,25727048,4
+qiujumper,25727048,5
+kathy_c,25727048,5
+83192271,25727048,4
+1009254,25727048,5
+tangjing84,25727048,5
+1740354,25727048,3
+120281743,25727048,4
+baliangyutang,25727048,3
+41370734,25727048,4
+norah6964,25727048,2
+2579882,25727048,-1
+jesuslovebanana,25727048,5
+csaver,25727048,4
+45782661,25727048,4
+82022775,25727048,4
+3273282,25727048,4
+46714901,25727048,3
+10723764,25727048,5
+1322481,25727048,3
+103480987,25727048,4
+56970395,25727048,4
+4107805,25727048,4
+yige1993,25727048,4
+dnarna_vicky,25727048,-1
+3277705,25727048,4
+47193126,25727048,3
+38025509,25727048,4
+3209049,25727048,4
+fivero,25727048,4
+tianxkong,25727048,4
+49083776,25727048,4
+32251971,25727048,3
+82674531,25727048,4
+puhonglei,25727048,4
+kuizihai,25727048,5
+Rihaulin,25727048,4
+65092466,25727048,5
+84091392,25727048,3
+brainlesscong,25727048,4
+yujiuwei,25727048,4
+64011605,25727048,4
+shizhewenmonica,25727048,3
+55824890,25727048,5
+11648827,25727048,4
+53639016,25727048,5
+holzepos,25727048,4
+91310062,25727048,5
+2604964,25727048,5
+56871206,25727048,4
+47701816,25727048,5
+zoewen1984,25727048,4
+jore1102,25727048,5
+61282100,25727048,5
+lingjue,25727048,4
+Madao_D,25727048,4
+CharlesChou,25727048,5
+133516099,25727048,4
+44973722,25727048,5
+76136745,25727048,5
+abbey_hui,25727048,5
+1391757,25727048,3
+jiangmingji,25727048,3
+dmw_1201,25727048,3
+dengwf91,25727048,4
+msw0123,25727048,1
+52519025,25727048,4
+aipa,25727048,4
+xuyimeng,25727048,4
+93289873,25727048,5
+67923437,25727048,3
+2483074,25727048,3
+metkee,25727048,3
+Jennifer.C1117,25727048,4
+77919551,25727048,2
+69265405,25727048,4
+yizhao,25727048,5
+64120834,25727048,4
+123945021,25727048,4
+71625785,25727048,3
+62650109,25727048,4
+102610933,25727048,4
+53411393,25727048,5
+cuteweenie,25727048,4
+2846988,25727048,4
+shushudabaoz,25727048,5
+heroting,25727048,4
+shuimudeyu1990,25727048,4
+63614653,25727048,3
+joannaZR,25727048,5
+61653276,25727048,4
+xxxeleven,25727048,3
+64751584,25727048,5
+Faychang,25727048,3
+1115686,25727048,4
+79703370,25727048,4
+xianxiansushou,25727048,4
+66611315,25727048,4
+jackalthe,25727048,4
+115779326,25727048,4
+82096379,25727048,1
+72984075,25727048,3
+3826970,25727048,-1
+3372934,25727048,5
+64218065,25727048,4
+antimercydou,25727048,5
+43789785,25727048,3
+quanquanziyou,25727048,5
+33992289,25727048,5
+82049060,25727048,4
+willeon,25727048,4
+bigsword,25727048,3
+61602134,25727048,3
+61602134,25727048,3
+46318827,25727048,3
+98956225,25727048,3
+yyangle,25727048,2
+135302519,25727048,4
+61775961,25727048,3
+70467086,25727048,4
+nebgnahz,25727048,4
+AndiChiao,25727048,3
+1529759,25727048,4
+79452257,25727048,4
+sunny1992,25727048,3
+genie37,25727048,5
+Pabalee,25727048,4
+8099941,25727048,4
+m.chaotic,25727048,3
+anniesit,25727048,2
+barbie_ye,25727048,4
+78459327,25727048,4
+57327715,25727048,5
+91816564,25727048,4
+4320476,25727048,5
+37306803,25727048,4
+coldmist,25727048,3
+38139628,25727048,3
+ADmoviemtime,25727048,2
+70152793,25727048,5
+52636646,25727048,4
+4116226,25727048,3
+52320703,25727048,3
+29662178,25727048,4
+56349224,25727048,5
+2303778,25727048,5
+43318411,25727048,3
+cathy5,25727048,4
+changxia,25727048,4
+jill-volleyball,25727048,3
+zichuanxiao,25727048,5
+43282525,25727048,5
+caicaihuang,25727048,4
+ironpanda,25727048,3
+gailsylee,25727048,5
+88535863,25727048,5
+133737109,25727048,5
+73780688,25727048,5
+ben_conker,25727048,4
+61076987,25727048,3
+vivamian,25727048,3
+54931017,25727048,3
+linger37,25727048,5
+ziyanxue,25727048,3
+70681955,25727048,4
+64704924,25727048,4
+3676844,25727048,3
+137410610,25727048,5
+2828074,25727048,3
+jewelshao,25727048,4
+64344492,25727048,1
+51078918,25727048,4
+2217349,25727048,4
+66865867,25727048,4
+wolovefreedom,25727048,3
+43545088,25727048,4
+75114061,25727048,5
+96336225,25727048,2
+1538371,25727048,4
+69344472,25727048,4
+53706113,25727048,3
+4499258,25727048,5
+iManimal,25727048,3
+skywwl,25727048,4
+yancm,25727048,4
+sj_leeY,25727048,4
+RanQixi,25727048,5
+2233781,25727048,5
+KUBRICK2OO1,25727048,3
+doon7,25727048,4
+49802388,25727048,4
+62507198,25727048,5
+119787917,25727048,4
+52246931,25727048,4
+4413248,25727048,3
+1422185,25727048,4
+91243092,25727048,4
+pandachain,25727048,4
+136727796,25727048,4
+timliutianxiang,25727048,2
+never_again,25727048,3
+2446421,25727048,5
+47847363,25727048,4
+58158290,25727048,4
+TiffanyBrisset,25727048,4
+66399464,25727048,5
+42511069,25727048,4
+92906741,25727048,4
+twinkle1437,25727048,4
+77579188,25727048,4
+ishikari,25727048,3
+78885050,25727048,4
+63672355,25727048,4
+leepenng,25727048,4
+lola721,25727048,3
+46531912,25727048,5
+woodring,25727048,-1
+phoenix43,25727048,4
+IloveyouDanica,25727048,2
+41844551,25727048,3
+65187145,25727048,3
+132216519,25727048,4
+ami6328007,25727048,3
+18664682,25727048,3
+LoveHugo,25727048,4
+88658178,25727048,4
+66400312,25727048,4
+51772148,25727048,4
+28345563,25727048,5
+leejy,25727048,5
+NOSIR,25727048,-1
+50720620,25727048,3
+44103412,25727048,3
+oqopo,25727048,4
+chumin201111,25727048,4
+63270983,25727048,4
+47037959,25727048,4
+48102279,25727048,4
+NosyBunny,25727048,5
+74418906,25727048,3
+61809588,25727048,5
+74418627,25727048,4
+64056125,25727048,4
+60218149,25727048,4
+41468232,25727048,5
+79352949,25727048,4
+82357316,25727048,3
+TiAmoWangQiXin,25727048,3
+72365328,25727048,4
+54428504,25727048,5
+81774792,25727048,4
+23525886,25727048,4
+114422467,25727048,4
+2830223,25727048,4
+Paradox_Q,25727048,3
+73110105,25727048,5
+48550206,25727048,3
+42749212,25727048,2
+mango12580,25727048,5
+45108609,25727048,4
+65897421,25727048,5
+60816432,25727048,4
+34901213,25727048,4
+52929749,25727048,5
+80667366,25727048,4
+79417839,25727048,5
+momoko11510,25727048,3
+lxu,25727048,4
+72061303,25727048,3
+50455314,25727048,4
+53908274,25727048,5
+sldsz,25727048,4
+48776959,25727048,3
+48776959,25727048,3
+1864180,25727048,4
+baigao,25727048,4
+134146468,25727048,4
+liquor,25727048,3
+topgamer,25727048,4
+57720508,25727048,5
+pbc0615,25727048,3
+vivian870629,25727048,3
+livi_,25727048,5
+monica_ning,25727048,5
+79080942,25727048,4
+bonjourlouise,25727048,4
+60683171,25727048,4
+foxgarden,25727048,4
+127080746,25727048,4
+89410418,25727048,3
+26267076,25727048,3
+tuochacha,25727048,-1
+49208589,25727048,3
+tuochacha,25727048,-1
+49208589,25727048,3
+25282878,25727048,3
+ppstarfish,25727048,5
+108285360,25727048,2
+125548565,25727048,5
+66798831,25727048,4
+2449091,25727048,4
+lingerer,25727048,3
+100992710,25727048,4
+1096452,25727048,4
+2178609,25727048,4
+ziegfeld,25727048,5
+36681127,25727048,3
+haitan39,25727048,-1
+46326003,25727048,5
+babaria,25727048,5
+yuikkk,25727048,4
+yangjiemomo,25727048,4
+49554966,25727048,5
+hdrsdgd,25727048,4
+3969292,25727048,3
+laneddy,25727048,3
+4501544,25727048,4
+93189279,25727048,4
+25973603,25727048,4
+58059972,25727048,3
+33329266,25727048,3
+74230672,25727048,4
+46483875,25727048,4
+1623065,25727048,4
+linghu1121,25727048,5
+34776898,25727048,4
+90755231,25727048,5
+blueclover,25727048,4
+baker17,25727048,4
+tzy608,25727048,4
+84835302,25727048,4
+74106602,25727048,4
+123238661,25727048,4
+136364437,25727048,4
+4361353,25727048,3
+marurui,25727048,4
+49888583,25727048,5
+62477393,25727048,4
+simonfishing,25727048,-1
+80381774,25727048,4
+42038071,25727048,4
+1501433,25727048,3
+87855088,25727048,3
+36378160,25727048,3
+4288553,25727048,5
+119262714,25727048,4
+124697172,25727048,5
+42666900,25727048,5
+127943674,25727048,5
+Allentlf,25727048,3
+63212715,25727048,3
+35421582,25727048,3
+pianohood,25727048,5
+chequel7880,25727048,3
+61049464,25727048,4
+132063463,25727048,4
+56111292,25727048,5
+66371515,25727048,5
+siddhar,25727048,5
+60858560,25727048,5
+56035155,25727048,4
+angandry,25727048,4
+62210177,25727048,4
+89881734,25727048,4
+lindorsisi,25727048,4
+AnitaXSteps,25727048,4
+76529709,25727048,3
+baojianone330,25727048,5
+48998348,25727048,5
+137129170,25727048,4
+3399946,25727048,-1
+137127465,25727048,4
+83747600,25727048,3
+kristin0711,25727048,4
+2206615,25727048,3
+79846050,25727048,4
+33688715,25727048,3
+57621507,25727048,4
+55476347,25727048,3
+68023271,25727048,4
+53362350,25727048,3
+87919166,25727048,5
+4015667,25727048,5
+55677796,25727048,3
+darkness211,25727048,4
+74499406,25727048,4
+yangruozheng,25727048,4
+yonita_yang,25727048,5
+lealan,25727048,4
+61898774,25727048,4
+chemicalromance,25727048,3
+60132042,25727048,4
+petitejoie21,25727048,5
+ludj_007,25727048,3
+3833311,25727048,4
+45578730,25727048,4
+123274527,25727048,4
+mewcatcher,25727048,5
+72556877,25727048,3
+youknow810,25727048,4
+1073807,25727048,3
+78478366,25727048,3
+77245854,25727048,5
+vivisnbb,25727048,4
+16670816,25727048,4
+3818284,25727048,4
+90598022,25727048,4
+sixties,25727048,5
+81373304,25727048,4
+Beth0204,25727048,5
+fesheep,25727048,4
+84243616,25727048,3
+waitthesun,25727048,4
+waitthesun,25727048,4
+3483430,25727048,5
+81000948,25727048,5
+madbilly,25727048,3
+3921078,25727048,2
+103191068,25727048,4
+65468438,25727048,2
+52883078,25727048,4
+4724531,25727048,-1
+4753861,25727048,4
+1973189,25727048,4
+62370377,25727048,3
+4242728,25727048,4
+67661678,25727048,4
+72251490,25727048,5
+137232715,25727048,5
+48261192,25727048,3
+37869520,25727048,-1
+68338692,25727048,4
+fanyiduo,25727048,4
+52415788,25727048,5
+julia_duan,25727048,4
+gzunknow,25727048,3
+53656219,25727048,4
+40725251,25727048,3
+ccushuaia1220,25727048,-1
+62987205,25727048,4
+45962163,25727048,5
+45491031,25727048,3
+sucila,25727048,3
+earlytalk,25727048,4
+casper411,25727048,4
+131909298,25727048,4
+48959194,25727048,4
+M_Caesar,25727048,5
+1464485,25727048,4
+136296573,25727048,5
+137206904,25727048,3
+4298839,25727048,4
+3065454,25727048,4
+1101928,25727048,3
+uuuoioi,25727048,3
+altmann,25727048,3
+petiteakira,25727048,5
+48661159,25727048,1
+73299376,25727048,5
+51121274,25727048,5
+44875082,25727048,5
+caozhuo,25727048,3
+49397696,25727048,4
+Vivi17,25727048,4
+65213268,25727048,3
+angelclaudia,25727048,3
+63927330,25727048,3
+roseyan_lxy,25727048,-1
+dahuilang15656,25727048,3
+93621596,25727048,4
+123000223,25727048,4
+66091959,25727048,4
+cannotstopme,25727048,5
+cannotstopme,25727048,5
+131878915,25727048,4
+27037345,25727048,4
+owen289607833,25727048,3
+114462057,25727048,4
+49981766,25727048,4
+xiaoxinadd,25727048,5
+63044059,25727048,4
+115660168,25727048,4
+felizfinal,25727048,3
+wangying2325,25727048,4
+45484403,25727048,3
+joer,25727048,4
+79151265,25727048,4
+113997112,25727048,4
+78699632,25727048,4
+62090150,25727048,4
+45300768,25727048,4
+60708753,25727048,4
+ensi,25727048,4
+47810404,25727048,4
+dhflockyer00,25727048,5
+kayaliang,25727048,4
+79006980,25727048,3
+anents,25727048,5
+44345461,25727048,3
+72086305,25727048,3
+cat1993,25727048,5
+56466064,25727048,4
+songzer,25727048,4
+shellyye,25727048,5
+133485515,25727048,4
+54251461,25727048,4
+60302594,25727048,4
+61872443,25727048,4
+2370672,25727048,3
+45268716,25727048,4
+3285413,25727048,4
+yvonneye,25727048,3
+44549010,25727048,4
+79133327,25727048,4
+4190834,25727048,3
+1834922,25727048,5
+70214878,25727048,4
+liuchuanzi,25727048,4
+107424486,25727048,5
+chambreavecvue,25727048,4
+59807933,25727048,5
+88356969,25727048,5
+3561549,25727048,5
+47826669,25727048,4
+59611074,25727048,4
+52098739,25727048,4
+seren,25727048,4
+kitchenbee,25727048,4
+131020888,25727048,3
+waterfall24,25727048,4
+wangmuse,25727048,3
+44020426,25727048,3
+SHDA,25727048,5
+SHDA,25727048,5
+47054399,25727048,4
+wanglinfei,25727048,4
+59262140,25727048,5
+100020528,25727048,3
+hutianyi,25727048,5
+att2046,25727048,3
+76818566,25727048,5
+69757574,25727048,4
+84394974,25727048,4
+65719691,25727048,4
+81341228,25727048,1
+61333256,25727048,4
+momon1900,25727048,4
+121925373,25727048,3
+Lulu-chips,25727048,4
+76566444,25727048,3
+70948915,25727048,4
+127118502,25727048,3
+69095785,25727048,4
+50412792,25727048,5
+gezi921054,25727048,4
+lorrainelsy,25727048,3
+41786241,25727048,4
+103277074,25727048,5
+sade1996,25727048,4
+ricayan,25727048,5
+suziyu_2222,25727048,-1
+1226511,25727048,3
+83188009,25727048,4
+81152446,25727048,4
+61681574,25727048,4
+83180614,25727048,5
+18360610,25727048,3
+Aeolus.J,25727048,4
+fengzaifei,25727048,3
+78857918,25727048,4
+2866973,25727048,2
+xfile99,25727048,3
+134625303,25727048,3
+67030468,25727048,4
+51239666,25727048,4
+missufinally,25727048,4
+77451005,25727048,4
+lr777,25727048,4
+115740561,25727048,4
+62379540,25727048,3
+tytony890115,25727048,5
+nocturnelee,25727048,3
+qinyouxuan,25727048,4
+132813456,25727048,3
+Nosai,25727048,4
+135751000,25727048,4
+47977808,25727048,5
+62861526,25727048,5
+cm627,25727048,4
+1074069,25727048,4
+47297203,25727048,4
+33990008,25727048,5
+pichajemo,25727048,4
+66176945,25727048,4
+kiethope,25727048,3
+51297351,25727048,4
+83602166,25727048,4
+114435379,25727048,4
+87783033,25727048,4
+66967732,25727048,2
+100338185,25727048,3
+vanilla-sky,25727048,4
+kamine,25727048,4
+vanilla666,25727048,4
+57411563,25727048,5
+57698231,25727048,4
+65722669,25727048,5
+64163444,25727048,5
+68186986,25727048,5
+sarah59,25727048,5
+selenesun,25727048,3
+61134150,25727048,3
+127111031,25727048,3
+127111031,25727048,3
+2328781,25727048,4
+64071506,25727048,4
+39132623,25727048,5
+39781506,25727048,3
+76957867,25727048,4
+2600833,25727048,4
+xubeisi,25727048,4
+emchan,25727048,5
+84719472,25727048,4
+76781369,25727048,4
+129577798,25727048,4
+slipknot_jmy,25727048,3
+77026559,25727048,4
+60663519,25727048,5
+insomnia,25727048,4
+Ellenlium01,25727048,4
+51136492,25727048,4
+81742461,25727048,3
+summeric,25727048,3
+meifyrt,25727048,5
+35623829,25727048,4
+56630736,25727048,5
+59408878,25727048,4
+50410993,25727048,5
+xiaojingyush,25727048,3
+34838664,25727048,5
+107554806,25727048,3
+aprilwind_shi,25727048,5
+104985254,25727048,5
+58158122,25727048,4
+129857538,25727048,4
+3783012,25727048,4
+4350779,25727048,4
+72263938,25727048,4
+102337536,25727048,3
+51583738,25727048,4
+61486120,25727048,5
+foreverjc,25727048,4
+122355500,25727048,4
+kedoumili,25727048,4
+64859517,25727048,4
+hatanomio,25727048,4
+4841197,25727048,4
+49913788,25727048,5
+44603618,25727048,2
+6270415,25727048,3
+amour,25727048,3
+cabininIthaca,25727048,4
+52583509,25727048,4
+69592510,25727048,4
+45806894,25727048,3
+52003906,25727048,-1
+36669166,25727048,3
+80796822,25727048,5
+135248605,25727048,4
+36458457,25727048,3
+53412818,25727048,5
+froggrandpa,25727048,3
+rainloveyy,25727048,4
+rainloveyy,25727048,4
+84872284,25727048,4
+joyzhai,25727048,4
+calvinlv,25727048,4
+2428233,25727048,3
+77774632,25727048,4
+gooo111,25727048,4
+Bonnie_yu,25727048,5
+Rencee,25727048,4
+yolanda1920,25727048,3
+62118386,25727048,3
+narrowjiu,25727048,4
+34638255,25727048,3
+123818120,25727048,3
+cilia99,25727048,4
+31313042,25727048,3
+76726550,25727048,5
+tontone,25727048,3
+48593436,25727048,4
+1724007,25727048,4
+26475045,25727048,4
+rocara,25727048,5
+1976568,25727048,5
+2767002,25727048,3
+jasontodd,25727048,3
+68547609,25727048,4
+28312683,25727048,2
+68983294,25727048,3
+120276064,25727048,5
+mika0531,25727048,3
+55613939,25727048,4
+maomao19901108,25727048,4
+jiangziwen,25727048,4
+42609258,25727048,3
+xielizhi,25727048,4
+50353681,25727048,3
+1811474,25727048,5
+3798345,25727048,3
+2183091,25727048,3
+30166414,25727048,4
+m.1234567,25727048,4
+maoamao,25727048,4
+irissui,25727048,3
+2532339,25727048,3
+1012932,25727048,4
+orangeT,25727048,4
+donnie,25727048,4
+2770592,25727048,5
+133067591,25727048,5
+hdjjys,25727048,4
+apoorguitar,25727048,4
+3139594,25727048,-1
+62344979,25727048,5
+evich,25727048,4
+iampearl,25727048,4
+58030741,25727048,4
+cdeworld,25727048,4
+84592177,25727048,4
+54480096,25727048,4
+4311389,25727048,4
+4311389,25727048,4
+57654704,25727048,4
+49343055,25727048,4
+128443021,25727048,5
+44401270,25727048,2
+shenxuzhu,25727048,3
+3666746,25727048,5
+32033896,25727048,4
+julianye925,25727048,3
+68699271,25727048,3
+51577384,25727048,4
+57149098,25727048,3
+applecs,25727048,4
+woruili,25727048,4
+55341093,25727048,4
+120331217,25727048,5
+zhjwxw,25727048,3
+40027917,25727048,4
+alexyou,25727048,4
+49813578,25727048,3
+togilj,25727048,3
+ihaveafreeheart,25727048,4
+mophia,25727048,3
+2617293,25727048,3
+1582961,25727048,4
+larryhe,25727048,4
+37402473,25727048,3
+45549330,25727048,4
+Sserdyhutniuq,25727048,3
+50738842,25727048,2
+43901070,25727048,4
+125200763,25727048,4
+45505109,25727048,4
+snowintheheaven,25727048,4
+lonelyhedgehog,25727048,3
+heavenmo,25727048,4
+48636482,25727048,4
+42042005,25727048,3
+shane_Xu,25727048,5
+134968905,25727048,4
+60650660,25727048,4
+120488823,25727048,4
+43780153,25727048,4
+54107765,25727048,4
+125010605,25727048,4
+32643655,25727048,4
+4200336,25727048,4
+captainanlie,25727048,4
+2891944,25727048,4
+db924519251,25727048,3
+2256302,25727048,3
+122949105,25727048,5
+lydiaxanthe,25727048,5
+3192663,25727048,2
+53603778,25727048,4
+66073701,25727048,5
+Cherrie.,25727048,4
+64218724,25727048,4
+gqyqx,25727048,4
+46754344,25727048,3
+9815076,25727048,3
+116277755,25727048,5
+zhaoderen,25727048,4
+64923655,25727048,4
+120050034,25727048,4
+50153226,25727048,4
+69736847,25727048,3
+12850086,25727048,5
+67946884,25727048,5
+hrzlvn,25727048,2
+36621771,25727048,4
+47214501,25727048,3
+Rolin,25727048,3
+59083733,25727048,4
+wcao,25727048,3
+81134195,25727048,3
+59769203,25727048,4
+43905279,25727048,4
+lieye,25727048,4
+83026417,25727048,3
+122839137,25727048,4
+102643839,25727048,5
+122954980,25727048,5
+37480581,25727048,5
+2167975,25727048,3
+sunmmerrainy,25727048,4
+1768350,25727048,4
+alexda1da2da3,25727048,4
+70855287,25727048,3
+63228539,25727048,5
+1652197,25727048,4
+67205059,25727048,4
+34571461,25727048,5
+75019987,25727048,5
+ClaireL,25727048,4
+39628944,25727048,-1
+71861591,25727048,3
+hyocheong,25727048,4
+2942680,25727048,-1
+94838326,25727048,4
+jamiedoll,25727048,3
+72357492,25727048,4
+xisme,25727048,5
+vpiscesiolet,25727048,-1
+40483566,25727048,3
+81662725,25727048,3
+cidishenhao,25727048,4
+92196680,25727048,4
+124170773,25727048,4
+55715149,25727048,2
+sabel,25727048,3
+74170855,25727048,3
+aiyohu,25727048,5
+85031460,25727048,3
+56277673,25727048,3
+75940485,25727048,3
+proudofyou,25727048,5
+65138658,25727048,5
+yoaremysunshine,25727048,3
+14594701,25727048,2
+yoaremysunshine,25727048,3
+14594701,25727048,2
+76185877,25727048,5
+81850559,25727048,4
+2593133,25727048,4
+132460297,25727048,4
+55321453,25727048,4
+annxin19,25727048,4
+XLAngel,25727048,4
+52763769,25727048,4
+72122656,25727048,4
+131533540,25727048,3
+cheerless,25727048,4
+xiongkaihang,25727048,3
+kylingu,25727048,5
+57580969,25727048,4
+128250155,25727048,5
+71833015,25727048,4
+54400244,25727048,5
+58866174,25727048,5
+58866174,25727048,5
+ideyes,25727048,3
+zhanshenzhy,25727048,4
+62352485,25727048,4
+119248435,25727048,5
+74397322,25727048,4
+bmw.lili,25727048,3
+79835731,25727048,4
+55813091,25727048,3
+44615298,25727048,4
+3646084,25727048,4
+2846709,25727048,2
+28877862,25727048,5
+dabandeng,25727048,5
+134523196,25727048,3
+suwa,25727048,3
+dolac,25727048,-1
+84564093,25727048,4
+131916360,25727048,4
+103154978,25727048,3
+bozil,25727048,3
+echo520f1,25727048,3
+dadou417,25727048,4
+jojolapin,25727048,4
+57583046,25727048,4
+aprilwhu,25727048,3
+135463251,25727048,4
+m155pappyWh0,25727048,5
+47618742,25727048,4
+62323478,25727048,4
+58374891,25727048,4
+48494874,25727048,3
+JoeBazinga,25727048,5
+51489993,25727048,3
+79375737,25727048,3
+chidaoshu,25727048,4
+67503021,25727048,4
+60046891,25727048,5
+64300426,25727048,4
+leexiaoxiao,25727048,3
+30322114,25727048,4
+41499752,25727048,4
+shinan1024,25727048,5
+72276993,25727048,5
+2244671,25727048,4
+tildali1214,25727048,4
+44002407,25727048,3
+61557157,25727048,5
+57275978,25727048,5
+72387002,25727048,4
+64157680,25727048,-1
+cucaoxu,25727048,5
+69388384,25727048,4
+for_love,25727048,5
+sosofly,25727048,4
+133795191,25727048,2
+orsule,25727048,4
+58800939,25727048,5
+26487427,25727048,2
+49190112,25727048,4
+17289580,25727048,4
+91882469,25727048,4
+84238663,25727048,4
+sleeper_arashi,25727048,4
+46983520,25727048,4
+woshixiaoyatou,25727048,4
+50527578,25727048,3
+54961193,25727048,4
+tutiti,25727048,3
+82550997,25727048,3
+51049525,25727048,5
+120545083,25727048,4
+xeroxparcwm,25727048,3
+4587293,25727048,4
+48988166,25727048,4
+69170430,25727048,4
+4727036,25727048,3
+5425230,25727048,3
+50892549,25727048,3
+Coldon,25727048,4
+53179715,25727048,3
+Ja_Gui,25727048,4
+54231110,25727048,3
+121679794,25727048,3
+133245536,25727048,2
+70915171,25727048,4
+76236179,25727048,3
+101722992,25727048,4
+52529736,25727048,4
+63849809,25727048,4
+muxieyes,25727048,4
+comicsuperman,25727048,4
+louisyoung1026,25727048,2
+135959495,25727048,4
+49421412,25727048,3
+54468195,25727048,4
+50403801,25727048,5
+SSSs714,25727048,3
+61776681,25727048,5
+49825242,25727048,1
+70895488,25727048,4
+134905591,25727048,3
+134531645,25727048,4
+1528379,25727048,3
+2337218,25727048,5
+4431506,25727048,4
+36013177,25727048,3
+54308994,25727048,3
+45864291,25727048,3
+47713342,25727048,5
+diyedeshenyin,25727048,5
+55887072,25727048,2
+lyzhie,25727048,3
+niangyue,25727048,3
+Honeys-Lee,25727048,5
+52869221,25727048,1
+115707608,25727048,4
+muzixiaoyu,25727048,4
+25503918,25727048,4
+50750779,25727048,3
+64821035,25727048,5
+lcpeng,25727048,3
+brucetown,25727048,5
+52377372,25727048,4
+136012818,25727048,4
+16052086,25727048,4
+4855838,25727048,5
+PIG-ADD,25727048,4
+72111509,25727048,4
+lbnew,25727048,4
+59312513,25727048,4
+johnnielan,25727048,3
+127105111,25727048,5
+watever_lan,25727048,5
+yaozhilan,25727048,4
+guoerer,25727048,4
+eznf,25727048,5
+8449145,25727048,4
+66632216,25727048,4
+56721475,25727048,5
+51134672,25727048,5
+48385262,25727048,3
+june.q,25727048,4
+46248376,25727048,4
+47316240,25727048,5
+71596124,25727048,4
+zjlMinster959,25727048,5
+130132099,25727048,3
+83781291,25727048,4
+3423234,25727048,5
+75096447,25727048,4
+caker,25727048,5
+64141017,25727048,4
+1898022,25727048,4
+55803883,25727048,-1
+60854908,25727048,4
+54756616,25727048,4
+63822026,25727048,5
+mengqingjiao,25727048,4
+61918664,25727048,4
+120900030,25727048,4
+grayfoxever,25727048,4
+suhen,25727048,4
+amenlovesle,25727048,4
+eededfcd,25727048,3
+64014905,25727048,4
+smileuna,25727048,4
+89313005,25727048,3
+41305702,25727048,4
+mikiwdy,25727048,4
+4366766,25727048,4
+yalindongdong,25727048,3
+75555205,25727048,4
+1678343,25727048,4
+63955564,25727048,5
+53715801,25727048,3
+LittleWoodField,25727048,4
+fzlinyanxia,25727048,3
+jungjay,25727048,3
+sby37,25727048,3
+JaceJing,25727048,3
+old-playboy,25727048,3
+52828296,25727048,4
+105737828,25727048,4
+50703649,25727048,4
+69133855,25727048,4
+132922796,25727048,3
+68830359,25727048,4
+hichai,25727048,3
+51329457,25727048,4
+3674593,25727048,-1
+43468449,25727048,4
+handsomegay,25727048,3
+TrendAnalysis,25727048,1
+10503526,25727048,5
+gmrxfx,25727048,3
+49216647,25727048,4
+53316539,25727048,4
+83217907,25727048,4
+54858712,25727048,5
+49937909,25727048,3
+cherub235,25727048,4
+58290785,25727048,3
+78944142,25727048,4
+41036146,25727048,5
+134693673,25727048,5
+lichade,25727048,4
+53829796,25727048,5
+47212439,25727048,2
+swwol32,25727048,4
+34978966,25727048,5
+119120514,25727048,4
+52678995,25727048,5
+Sigrid_Lu,25727048,3
+mycio,25727048,4
+136620055,25727048,5
+tt1426,25727048,4
+84641449,25727048,5
+Scorpio_lxs,25727048,4
+1356234,25727048,4
+2620783,25727048,3
+61698998,25727048,3
+yushi,25727048,4
+112779308,25727048,4
+128991169,25727048,2
+nicdone,25727048,2
+49893874,25727048,4
+85451111,25727048,4
+zhai5flowers,25727048,4
+tuirt,25727048,4
+newbear,25727048,3
+67586472,25727048,4
+75086193,25727048,3
+caocaoa,25727048,2
+LunaSunny,25727048,5
+47581758,25727048,4
+36537385,25727048,3
+4242859,25727048,4
+ananyuki,25727048,5
+la_viva,25727048,3
+56878421,25727048,5
+49849512,25727048,5
+43778462,25727048,-1
+119663785,25727048,4
+23253638,25727048,5
+75757535,25727048,4
+chinriya,25727048,3
+44013526,25727048,4
+32025786,25727048,5
+51815099,25727048,5
+Andred,25727048,4
+orcagoal,25727048,4
+50969547,25727048,3
+shingle,25727048,3
+goldenhornking,25727048,3
+yinyet,25727048,4
+3426596,25727048,4
+49730004,25727048,4
+72769762,25727048,3
+xuyinaxxxxxxx,25727048,5
+58376944,25727048,5
+116089509,25727048,3
+52932661,25727048,4
+36760873,25727048,4
+59718039,25727048,4
+52917026,25727048,5
+64430536,25727048,4
+64136344,25727048,4
+49718559,25727048,4
+astrology11,25727048,3
+50945725,25727048,3
+73845983,25727048,4
+Alaska621,25727048,4
+4645480,25727048,3
+47195572,25727048,3
+dante8977,25727048,3
+51863917,25727048,4
+qingmingchen,25727048,4
+58326648,25727048,4
+78160726,25727048,4
+ljclaire,25727048,4
+85168864,25727048,4
+71863067,25727048,4
+104445642,25727048,4
+108663216,25727048,4
+hyuk35zm,25727048,4
+55695442,25727048,4
+123275539,25727048,5
+wtfisthis,25727048,4
+yswsq,25727048,5
+119078211,25727048,4
+44699537,25727048,4
+osopaso,25727048,5
+heartinsky,25727048,4
+79278811,25727048,3
+2052146,25727048,-1
+3899360,25727048,4
+85083207,25727048,5
+nalusea,25727048,4
+103424753,25727048,4
+42046293,25727048,-1
+41815717,25727048,-1
+48195937,25727048,3
+78966790,25727048,4
+miniqiur,25727048,-1
+yaoyaolu,25727048,3
+longya,25727048,2
+3322566,25727048,3
+Ooment,25727048,5
+50620373,25727048,5
+elfz,25727048,5
+49487093,25727048,4
+63923908,25727048,2
+ying029,25727048,4
+62436425,25727048,4
+59738934,25727048,4
+55849765,25727048,4
+lx1994,25727048,4
+52777499,25727048,3
+48160969,25727048,4
+Southern_,25727048,5
+73721096,25727048,4
+faydao,25727048,4
+73189108,25727048,3
+94806979,25727048,2
+114422491,25727048,4
+5653973,25727048,4
+7645509,25727048,5
+seriousz,25727048,4
+78656769,25727048,4
+48875838,25727048,5
+michaelhuan,25727048,4
+63064889,25727048,3
+shiro666,25727048,3
+37095412,25727048,4
+45448846,25727048,4
+54265487,25727048,3
+61536847,25727048,1
+66277108,25727048,4
+xsy0923,25727048,4
+xsy0923,25727048,4
+evelyne_hsu,25727048,4
+41438322,25727048,3
+61169740,25727048,4
+alphatym,25727048,5
+2575408,25727048,5
+131969516,25727048,4
+seatbelts,25727048,4
+34493482,25727048,4
+133398715,25727048,4
+58501976,25727048,3
+Tracy1230,25727048,4
+50540787,25727048,4
+68263919,25727048,4
+guanhuo,25727048,3
+72993383,25727048,4
+80245173,25727048,5
+37879706,25727048,4
+joyjay,25727048,4
+128468373,25727048,3
+joycedays,25727048,5
+3273111,25727048,4
+54636566,25727048,5
+48050176,25727048,4
+72383278,25727048,4
+123026284,25727048,4
+68020832,25727048,5
+103315563,25727048,3
+marage,25727048,4
+52781294,25727048,3
+xiaohe5210,25727048,4
+lilong4174,25727048,4
+61682333,25727048,3
+57612915,25727048,-1
+56561314,25727048,5
+134738478,25727048,3
+xyyelfin,25727048,4
+lulilu,25727048,3
+FinalFantasy,25727048,4
+48445532,25727048,4
+xz274,25727048,3
+62419503,25727048,3
+45319686,25727048,4
+130003497,25727048,4
+76170749,25727048,4
+67024367,25727048,5
+superrao,25727048,4
+xyl19900815,25727048,4
+120250936,25727048,2
+ma_rion,25727048,-1
+zzfznp,25727048,3
+51293973,25727048,4
+120545050,25727048,3
+51404354,25727048,4
+twooneseven,25727048,4
+136679554,25727048,5
+1149126,25727048,3
+53330231,25727048,4
+idsherry,25727048,4
+47939693,25727048,5
+47939693,25727048,5
+1603592,25727048,3
+53768020,25727048,4
+lairhil,25727048,3
+mouse312,25727048,3
+27518977,25727048,4
+120445293,25727048,4
+57596518,25727048,5
+marvirah,25727048,5
+58399217,25727048,4
+50451911,25727048,4
+44349387,25727048,3
+Son47,25727048,3
+134876822,25727048,5
+83387474,25727048,4
+67296398,25727048,4
+87758868,25727048,4
+Sparkyue,25727048,5
+40488240,25727048,4
+62155301,25727048,3
+dmxy,25727048,3
+42568988,25727048,5
+67613066,25727048,4
+35661060,25727048,5
+zpavel,25727048,4
+YvonneGQ,25727048,4
+4081670,25727048,4
+17990829,25727048,4
+121191194,25727048,5
+1967409,25727048,4
+musicide,25727048,3
+weiweiguoer,25727048,4
+47576659,25727048,4
+49145683,25727048,5
+eto,25727048,5
+penshan,25727048,4
+96000077,25727048,5
+dongdayou,25727048,3
+50041592,25727048,3
+115089885,25727048,4
+coin10,25727048,-1
+lumins,25727048,3
+wasabigreen,25727048,5
+52866523,25727048,4
+pengpeng,25727048,3
+79605736,25727048,4
+87226531,25727048,4
+79559178,25727048,3
+101167339,25727048,4
+49397291,25727048,4
+64879609,25727048,4
+sodaxiaohui,25727048,4
+misslian1990,25727048,4
+cianshijie,25727048,4
+45107933,25727048,5
+113608312,25727048,4
+3478406,25727048,3
+2919840,25727048,4
+bidhole,25727048,4
+26489100,25727048,4
+2336429,25727048,4
+65565016,25727048,4
+2990853,25727048,3
+Lotus511,25727048,3
+chris310-nan,25727048,4
+xuduoyuQAQ,25727048,4
+G--er,25727048,4
+some_Ji,25727048,4
+48959511,25727048,5
+colintide,25727048,2
+46065900,25727048,4
+zidary,25727048,4
+47508082,25727048,3
+47383067,25727048,4
+43814222,25727048,5
+60998346,25727048,3
+Edward_Elric,25727048,3
+48709459,25727048,4
+ballteda,25727048,4
+4706549,25727048,-1
+raeji,25727048,5
+moryfor,25727048,4
+3678762,25727048,2
+ruocun123,25727048,4
+2797193,25727048,5
+90445661,25727048,4
+102910233,25727048,4
+cocoonink,25727048,4
+48832423,25727048,5
+61614473,25727048,5
+83192314,25727048,5
+ohghost,25727048,-1
+1998903,25727048,5
+cageyz,25727048,4
+59769605,25727048,3
+46722646,25727048,4
+72256181,25727048,4
+49824578,25727048,3
+1485397,25727048,5
+27655283,25727048,4
+50470149,25727048,5
+127695510,25727048,4
+66178513,25727048,4
+43649086,25727048,4
+may_be.,25727048,4
+68585121,25727048,4
+wuzhebupt,25727048,4
+xiaoyecekong,25727048,4
+2283018,25727048,4
+muqin,25727048,4
+1075678,25727048,3
+121939824,25727048,4
+ZeRo.0821,25727048,3
+guppyfish,25727048,3
+53624567,25727048,4
+elingwu,25727048,5
+42803233,25727048,-1
+missfaye,25727048,4
+36238876,25727048,4
+1153742,25727048,4
+2831502,25727048,4
+dizebra,25727048,5
+68427539,25727048,4
+4691315,25727048,-1
+131463434,25727048,4
+6593984,25727048,3
+99078833,25727048,4
+ichaos,25727048,4
+74418129,25727048,5
+PUNKKONG,25727048,-1
+evilpeach,25727048,2
+62880392,25727048,3
+wen1028,25727048,-1
+21270392,25727048,4
+43921829,25727048,3
+59143830,25727048,3
+catfacegirl,25727048,4
+55705224,25727048,4
+102609702,25727048,5
+J13,25727048,4
+68687737,25727048,5
+2914721,25727048,3
+turandot0815,25727048,3
+84609158,25727048,2
+63965908,25727048,-1
+69068312,25727048,5
+53635906,25727048,4
+Elvis-lx3,25727048,3
+setilis,25727048,5
+Mmiao_69,25727048,4
+qianxun_lin,25727048,3
+57272958,25727048,4
+58442010,25727048,4
+72230656,25727048,4
+4114969,25727048,4
+39168659,25727048,4
+zooyam,25727048,4
+84968890,25727048,3
+31555036,25727048,3
+2036689,25727048,3
+69016984,25727048,5
+87852350,25727048,3
+59010033,25727048,5
+3931828,25727048,4
+DoctorHou,25727048,2
+48137780,25727048,4
+49141997,25727048,4
+23730457,25727048,4
+27410025,25727048,5
+1809188,25727048,4
+3939599,25727048,5
+sophie1900,25727048,4
+108992688,25727048,3
+3577491,25727048,4
+yi_yang,25727048,3
+2475141,25727048,4
+56921126,25727048,-1
+68093704,25727048,4
+bucks,25727048,3
+lordoferegion,25727048,5
+61506971,25727048,3
+bearblindman,25727048,4
+63496954,25727048,3
+91252045,25727048,4
+moki_anchoret,25727048,4
+4063711,25727048,4
+49863332,25727048,4
+autumnppg,25727048,4
+2544330,25727048,3
+51463036,25727048,3
+Bobbie13,25727048,4
+sophiaforfree,25727048,5
+61162296,25727048,-1
+120505140,25727048,5
+55017354,25727048,4
+35546848,25727048,3
+4576801,25727048,4
+louis_li,25727048,3
+48360672,25727048,3
+108153765,25727048,4
+108153765,25727048,4
+samle--,25727048,5
+a1234567,25727048,4
+72354881,25727048,4
+ljm1213,25727048,5
+90551968,25727048,3
+cynclarac,25727048,3
+81007534,25727048,3
+64172361,25727048,4
+51412054,25727048,4
+91917385,25727048,4
+94923066,25727048,3
+63223538,25727048,4
+48807966,25727048,4
+4295298,25727048,4
+51587083,25727048,4
+60337447,25727048,4
+3222851,25727048,4
+40572936,25727048,3
+4315821,25727048,3
+84750944,25727048,3
+sable_in_red,25727048,5
+bielimoshengren,25727048,1
+chuleiwu,25727048,3
+4023565,25727048,4
+3440574,25727048,3
+wiwikuang,25727048,4
+63506712,25727048,3
+xiaodou52,25727048,3
+67943735,25727048,4
+51665091,25727048,4
+48644057,25727048,5
+1643126,25727048,5
+132870303,25727048,4
+owenwoo,25727048,5
+85981309,25727048,4
+yexuehanan,25727048,3
+humechan,25727048,3
+Julia_Queen,25727048,5
+63724957,25727048,4
+shuixieqingtai,25727048,5
+freebird619,25727048,4
+66993627,25727048,5
+49943125,25727048,4
+DDZZJ,25727048,3
+49910264,25727048,4
+71269156,25727048,3
+47458734,25727048,4
+TomiOh,25727048,3
+44594663,25727048,4
+76497080,25727048,5
+47950267,25727048,4
+2426372,25727048,2
+78833399,25727048,3
+77529017,25727048,2
+98249073,25727048,3
+52961960,25727048,4
+43409918,25727048,3
+52209452,25727048,3
+39605411,25727048,3
+58371683,25727048,4
+jumpjumpgogogo,25727048,4
+79879080,25727048,4
+2623491,25727048,5
+28681555,25727048,3
+laozixingguo,25727048,-1
+60096390,25727048,5
+aquapanda,25727048,4
+122048565,25727048,5
+supernuo,25727048,3
+six211,25727048,5
+Ciris,25727048,5
+75231611,25727048,4
+eveshi,25727048,4
+119710944,25727048,5
+73847256,25727048,-1
+pastilles,25727048,4
+60671950,25727048,4
+vianann,25727048,3
+38361995,25727048,4
+ForgetJulia,25727048,4
+2207232,25727048,2
+3505428,25727048,5
+pengyuwa,25727048,4
+85360851,25727048,5
+53376629,25727048,5
+1552160,25727048,3
+mt_q,25727048,5
+50672411,25727048,4
+71335687,25727048,3
+73042592,25727048,4
+dongdongdong777,25727048,4
+53513282,25727048,4
+120792651,25727048,4
+currant,25727048,4
+52657846,25727048,5
+seancheung,25727048,4
+1137384,25727048,4
+VendettaChild,25727048,-1
+52241685,25727048,5
+binghushouyeren,25727048,4
+1175269,25727048,3
+51001959,25727048,4
+3852877,25727048,5
+zhousophia,25727048,4
+83264508,25727048,3
+iswh,25727048,3
+49089345,25727048,3
+tangsongsong,25727048,4
+anviliu,25727048,3
+47144465,25727048,4
+63807100,25727048,4
+xd0812,25727048,4
+93900680,25727048,4
+youyuan,25727048,4
+XinwenCheng,25727048,4
+84675514,25727048,4
+gilyun,25727048,5
+133470445,25727048,5
+2614660,25727048,4
+2614660,25727048,4
+3741660,25727048,4
+2265138,25727048,4
+50641998,25727048,3
+inout,25727048,4
+missneuf,25727048,4
+122310880,25727048,5
+ziquan827,25727048,3
+120112831,25727048,4
+lianzixin,25727048,4
+97277841,25727048,3
+64585406,25727048,2
+sylcrannog,25727048,5
+56922790,25727048,5
+Winterfell,25727048,4
+131814242,25727048,4
+DustGear,25727048,4
+onlyYH,25727048,4
+51320114,25727048,5
+59694571,25727048,4
+AlphaScan,25727048,4
+rin993,25727048,5
+44966176,25727048,5
+56392889,25727048,5
+47747519,25727048,4
+57471580,25727048,5
+45933152,25727048,4
+43255902,25727048,3
+Vanessa...,25727048,4
+hyapple,25727048,3
+7510013,25727048,3
+yangqihang,25727048,3
+hilca,25727048,4
+cindysummer,25727048,3
+64931517,25727048,3
+75322883,25727048,4
+yukiloh,25727048,5
+64750790,25727048,3
+jadexyy,25727048,4
+45406205,25727048,5
+120332854,25727048,4
+65123381,25727048,4
+matengfei27,25727048,5
+61497577,25727048,3
+73064038,25727048,4
+uuooioi,25727048,4
+DKfeixiang,25727048,4
+chl199093,25727048,4
+69730287,25727048,3
+128914340,25727048,5
+28742229,25727048,4
+84866154,25727048,4
+starry_ripple,25727048,4
+64692199,25727048,3
+43148544,25727048,4
+91471590,25727048,4
+14247291,25727048,4
+1689876,25727048,4
+46585910,25727048,5
+4118218,25727048,-1
+40093986,25727048,3
+43713017,25727048,3
+cld104123,25727048,4
+50667385,25727048,4
+22105037,25727048,4
+58774315,25727048,4
+dusk.xiyang,25727048,4
+2448513,25727048,2
+49949826,25727048,5
+41511009,25727048,4
+54217393,25727048,4
+120050114,25727048,5
+80915286,25727048,5
+jerry20071012,25727048,3
+4685727,25727048,4
+47265063,25727048,4
+132185770,25727048,4
+killsue,25727048,4
+61276700,25727048,3
+wolf2046,25727048,4
+3078221,25727048,4
+leeinfly,25727048,4
+junenmajunen,25727048,5
+wakin1707,25727048,4
+63805238,25727048,4
+133252175,25727048,4
+celia550,25727048,4
+48065742,25727048,3
+ninodoaiba,25727048,5
+sun1994zoe,25727048,5
+51086058,25727048,4
+116908080,25727048,4
+67284330,25727048,4
+2679276,25727048,4
+47837056,25727048,4
+133046698,25727048,4
+58840542,25727048,4
+59623092,25727048,3
+peakpak,25727048,4
+torresgomenggo,25727048,5
+126282786,25727048,2
+wxhsolo,25727048,4
+fannyl,25727048,4
+53052178,25727048,4
+1550127,25727048,3
+133335985,25727048,4
+135867604,25727048,3
+134224702,25727048,4
+berialgreener,25727048,4
+41842523,25727048,4
+107594537,25727048,4
+26461987,25727048,4
+25740506,25727048,2
+136416982,25727048,3
+69542619,25727048,3
+85659565,25727048,4
+81325605,25727048,3
+xlei130,25727048,3
+53560863,25727048,3
+sept7,25727048,4
+pkughost,25727048,3
+2650205,25727048,4
+migo562,25727048,5
+75052025,25727048,5
+4454692,25727048,3
+XTian0806,25727048,5
+nikko_y,25727048,3
+landcontinent,25727048,4
+74491212,25727048,4
+michaelcc,25727048,3
+Xiaofeixai,25727048,5
+47680901,25727048,5
+126833925,25727048,5
+Oo0o0o0,25727048,4
+85114697,25727048,5
+wwyzz,25727048,4
+69805658,25727048,3
+36148390,25727048,5
+58141531,25727048,5
+potterz,25727048,4
+carmen8212,25727048,4
+Artiewatchmovie,25727048,4
+2297182,25727048,5
+50386420,25727048,3
+51176238,25727048,4
+cloudwwb,25727048,2
+nangongmocheng,25727048,4
+uruir,25727048,4
+ayumiH,25727048,3
+hsumo,25727048,5
+68742880,25727048,4
+gongzitian,25727048,4
+78971867,25727048,4
+119374613,25727048,4
+paza,25727048,4
+65981408,25727048,3
+135724867,25727048,4
+70569522,25727048,5
+55411311,25727048,5
+77092352,25727048,4
+46149652,25727048,3
+goofy-G,25727048,4
+48304899,25727048,4
+1599143,25727048,5
+49968268,25727048,3
+82912362,25727048,5
+70453279,25727048,5
+52259960,25727048,3
+towne,25727048,2
+45006589,25727048,5
+2449614,25727048,-1
+1091236,25727048,-1
+59127988,25727048,3
+61923761,25727048,5
+52887670,25727048,2
+31102423,25727048,4
+96798086,25727048,3
+2202819,25727048,4
+59129237,25727048,3
+37190150,25727048,5
+90891135,25727048,5
+59537499,25727048,4
+62230987,25727048,5
+huxiaotian,25727048,3
+67843912,25727048,2
+58792200,25727048,3
+63457669,25727048,4
+64389615,25727048,5
+ngc4151,25727048,4
+huaidanwakaka,25727048,4
+aprilivin,25727048,5
+57215802,25727048,5
+Larrisa1020,25727048,4
+104726855,25727048,5
+68075925,25727048,4
+60803592,25727048,2
+lutaozi,25727048,3
+min1,25727048,5
+66769273,25727048,4
+imoioi,25727048,2
+4340826,25727048,5
+102530220,25727048,5
+8319224,25727048,5
+mysalvation,25727048,5
+cuikunjia,25727048,-1
+dancelatoto,25727048,4
+guanxiaoxing,25727048,5
+88078787,25727048,3
+anbox,25727048,4
+weekqin,25727048,4
+48501189,25727048,5
+2756953,25727048,4
+63548568,25727048,3
+135213457,25727048,4
+65795567,25727048,4
+59367965,25727048,4
+71712841,25727048,4
+119583854,25727048,5
+64202455,25727048,4
+sisyphos,25727048,4
+129175694,25727048,5
+63901336,25727048,5
+eatonzh,25727048,4
+67810943,25727048,3
+2784323,25727048,5
+hoshiino,25727048,5
+75667669,25727048,4
+80797429,25727048,4
+69232328,25727048,4
+1333942,25727048,3
+116778035,25727048,4
+C920721,25727048,5
+64224391,25727048,4
+95884206,25727048,3
+81285027,25727048,4
+52413397,25727048,5
+67489382,25727048,4
+rurucat,25727048,3
+72985710,25727048,4
+59129484,25727048,4
+aki0726,25727048,3
+53794958,25727048,4
+88434665,25727048,5
+48805348,25727048,3
+xiaoxiao0504,25727048,4
+34544680,25727048,4
+55937351,25727048,-1
+38547386,25727048,5
+3317762,25727048,4
+DeepZhuo,25727048,2
+tinaq,25727048,3
+henhen7,25727048,4
+59604055,25727048,3
+YUMMYM,25727048,5
+40684892,25727048,4
+73856461,25727048,3
+yanmingsky,25727048,4
+67727072,25727048,5
+insomniafish,25727048,4
+qinxinzhu,25727048,4
+insomniafish,25727048,4
+qinxinzhu,25727048,4
+54437511,25727048,4
+frosteeeee,25727048,4
+Tea1116.,25727048,4
+bibiko7,25727048,3
+51909873,25727048,4
+33798181,25727048,4
+crazykaz,25727048,3
+44499287,25727048,1
+vularisy,25727048,5
+38399919,25727048,4
+47623080,25727048,4
+floragrx,25727048,4
+Cllindaoud,25727048,4
+53682563,25727048,4
+50537811,25727048,3
+60307533,25727048,5
+fairyx,25727048,5
+3169785,25727048,4
+2187326,25727048,3
+34990334,25727048,4
+107392859,25727048,5
+87911212,25727048,3
+42646716,25727048,4
+71691138,25727048,-1
+50256249,25727048,4
+FilmYan,25727048,4
+kangmeng,25727048,3
+84755098,25727048,3
+hetaoxp123,25727048,4
+2589430,25727048,4
+gunsky,25727048,4
+tow55,25727048,5
+134903918,25727048,4
+47481448,25727048,4
+73869586,25727048,5
+62288451,25727048,4
+nina,25727048,3
+Like_zsy,25727048,4
+90445845,25727048,5
+46721798,25727048,4
+58249428,25727048,4
+68922074,25727048,4
+crownwinnie,25727048,4
+122232090,25727048,5
+103271136,25727048,3
+yuxflan,25727048,3
+47172452,25727048,3
+littleadd,25727048,4
+muz,25727048,1
+46920813,25727048,3
+133083146,25727048,4
+58094874,25727048,2
+67681966,25727048,4
+47285151,25727048,3
+2340389,25727048,4
+yanbosc,25727048,3
+58739148,25727048,5
+K.chan,25727048,3
+icetear,25727048,5
+konghanlei,25727048,4
+57088195,25727048,3
+70680447,25727048,3
+73998702,25727048,4
+46654836,25727048,4
+26419001,25727048,5
+unbounder,25727048,4
+zhaoyu1222,25727048,3
+63993568,25727048,5
+icaizhuo,25727048,4
+70763042,25727048,4
+43776116,25727048,3
+flytomilan,25727048,4
+freak_lee,25727048,4
+73979703,25727048,4
+131112942,25727048,3
+1963652,25727048,5
+holmes520,25727048,5
+87987289,25727048,4
+60088640,25727048,4
+20196112,25727048,4
+120358782,25727048,4
+Oliver_Lu,25727048,4
+CAROHANNAH,25727048,4
+31849844,25727048,-1
+105198274,25727048,4
+Laura502,25727048,-1
+69280420,25727048,4
+AuZeonFung,25727048,5
+134486742,25727048,2
+62778052,25727048,5
+46966254,25727048,4
+76102847,25727048,5
+47669083,25727048,4
+18628004,25727048,4
+136460394,25727048,3
+lilylau,25727048,3
+61504628,25727048,5
+81914782,25727048,5
+48747342,25727048,5
+57926020,25727048,4
+tobekalorce,25727048,5
+61317282,25727048,4
+heechen,25727048,5
+43977998,25727048,5
+50118479,25727048,4
+lisianl,25727048,-1
+67812928,25727048,3
+saosaoxy,25727048,4
+nestark,25727048,4
+lulinhaohan,25727048,5
+eason0210,25727048,3
+4131355,25727048,4
+62762880,25727048,4
+whisperstone,25727048,4
+brightchai,25727048,4
+TalkChan,25727048,4
+119750859,25727048,3
+yutang,25727048,3
+yutang,25727048,3
+115547734,25727048,3
+2787344,25727048,5
+62871612,25727048,4
+Schwarzwaelder,25727048,5
+chobit.w,25727048,4
+fawaixiaoyao,25727048,3
+57966600,25727048,5
+80066409,25727048,4
+43375121,25727048,4
+snakesarah,25727048,4
+78314737,25727048,4
+65079476,25727048,4
+128409852,25727048,3
+41634233,25727048,5
+74801562,25727048,4
+48963798,25727048,4
+41555500,25727048,3
+66552525,25727048,3
+68855550,25727048,-1
+arch13,25727048,4
+1828232,25727048,4
+56260072,25727048,4
+3435112,25727048,3
+58523083,25727048,4
+70914565,25727048,5
+67539758,25727048,5
+Anny1209,25727048,5
+3509692,25727048,3
+62753939,25727048,5
+doexist,25727048,3
+131913208,25727048,4
+4740160,25727048,4
+3266611,25727048,4
+72657219,25727048,4
+3242635,25727048,4
+enchanter_nana,25727048,4
+65901691,25727048,4
+ameliuge,25727048,4
+mengdalian,25727048,5
+cappuccino-jl,25727048,3
+F1vese7enone,25727048,4
+dong0621,25727048,3
+37390884,25727048,3
+58326738,25727048,4
+dear.still,25727048,4
+Yubk111111,25727048,5
+68631195,25727048,3
+61222044,25727048,4
+monsterkill,25727048,3
+comiao,25727048,5
+babyprincy,25727048,5
+136193170,25727048,5
+4597338,25727048,3
+47065864,25727048,5
+64887412,25727048,3
+xuchengday,25727048,3
+ROYA,25727048,4
+114413870,25727048,5
+34575902,25727048,4
+45182133,25727048,4
+setsail89,25727048,4
+xiaoyinxuanpapa,25727048,4
+42832142,25727048,5
+64880714,25727048,3
+dambo,25727048,4
+75175940,25727048,5
+56361433,25727048,5
+133380603,25727048,3
+Kikowu,25727048,4
+maryshirley,25727048,4
+floraforever21,25727048,5
+thomsonkoo,25727048,3
+1394553,25727048,1
+2127812,25727048,3
+67374627,25727048,5
+4075628,25727048,3
+80162841,25727048,4
+60664918,25727048,3
+3189714,25727048,3
+56739185,25727048,4
+4698343,25727048,5
+kzlucky,25727048,4
+53594562,25727048,5
+tongziyam,25727048,4
+favezhihao,25727048,4
+59573485,25727048,4
+hanluweishuang,25727048,4
+131364833,25727048,4
+jiayi6616,25727048,3
+14840393,25727048,3
+127675582,25727048,5
+asanisimasa,25727048,1
+41130036,25727048,2
+14494074,25727048,4
+43913859,25727048,4
+BiXiaoBengZhuRe,25727048,4
+50848466,25727048,4
+68988452,25727048,5
+onlyqinping,25727048,5
+envyandecho,25727048,4
+2194320,25727048,2
+88081047,25727048,3
+56684398,25727048,3
+shenliyang,25727048,4
+70058362,25727048,5
+132585780,25727048,4
+76012263,25727048,4
+icepenny77,25727048,4
+44698105,25727048,3
+64715710,25727048,3
+xjksama,25727048,4
+atom41650,25727048,3
+3571623,25727048,5
+2189984,25727048,4
+96146816,25727048,4
+60129524,25727048,5
+eucashe,25727048,4
+49170790,25727048,2
+nanzang,25727048,5
+thesillyone,25727048,4
+45865408,25727048,5
+queenolivia,25727048,4
+Mflower,25727048,4
+132956553,25727048,5
+coldcall,25727048,5
+54605090,25727048,5
+68865370,25727048,4
+31459313,25727048,4
+74825137,25727048,5
+64748860,25727048,3
+83788301,25727048,4
+2825367,25727048,4
+fenglianjun,25727048,3
+51606142,25727048,3
+xiaodongWang,25727048,5
+13441174,25727048,4
+107702772,25727048,5
+steflover,25727048,4
+97203213,25727048,5
+4558040,25727048,4
+126836075,25727048,5
+renxiaoheng,25727048,5
+51836771,25727048,4
+2475144,25727048,5
+52160935,25727048,4
+52598445,25727048,3
+52701456,25727048,4
+4809632,25727048,5
+babe_of_pisces,25727048,4
+cajiln,25727048,3
+76148620,25727048,4
+1988070,25727048,-1
+48000045,25727048,4
+doris19921203,25727048,5
+alvie,25727048,5
+45942443,25727048,5
+4520667,25727048,3
+44915988,25727048,3
+emilywj,25727048,4
+emilywj,25727048,4
+mumucha,25727048,3
+9386243,25727048,4
+79453297,25727048,3
+4916602,25727048,4
+34381919,25727048,4
+59709429,25727048,4
+2759466,25727048,5
+80860113,25727048,3
+63396173,25727048,5
+46144657,25727048,3
+4527563,25727048,5
+1651604,25727048,4
+sea-lucky,25727048,4
+27054474,25727048,4
+15542930,25727048,3
+134417369,25727048,4
+ISRAFEL,25727048,3
+54845592,25727048,4
+vloiter,25727048,4
+goldendali,25727048,5
+46590871,25727048,4
+chocolateld,25727048,4
+waltz28,25727048,4
+Shanglinyuan,25727048,3
+yueyuebetty,25727048,-1
+61602605,25727048,3
+41193009,25727048,5
+49312818,25727048,5
+56092759,25727048,4
+8505616,25727048,4
+thirtyseven37,25727048,4
+1721242,25727048,5
+50041894,25727048,4
+133164580,25727048,4
+61078922,25727048,3
+62687736,25727048,5
+duduxiongzhifu,25727048,4
+shalouzhitong,25727048,4
+3907593,25727048,4
+kuangren79,25727048,3
+winterTTr,25727048,4
+136377234,25727048,5
+80681000,25727048,4
+54090532,25727048,5
+fuyuxuan,25727048,5
+51710290,25727048,5
+45804814,25727048,3
+63017434,25727048,4
+52278915,25727048,4
+preciseness,25727048,5
+junqli86,25727048,3
+58375992,25727048,4
+stardust.,25727048,4
+71365804,25727048,2
+50093980,25727048,4
+67921032,25727048,4
+48480567,25727048,4
+2692091,25727048,4
+104397819,25727048,4
+14479133,25727048,4
+76351812,25727048,2
+43387286,25727048,4
+42149787,25727048,4
+130867393,25727048,5
+zhenziren,25727048,5
+71128604,25727048,4
+67330888,25727048,5
+1913928,25727048,5
+qiqihhappy,25727048,5
+cocojamboo,25727048,3
+3693808,25727048,3
+60633902,25727048,-1
+58993842,25727048,3
+49953053,25727048,5
+flower_crossing,25727048,4
+qiyueyujian,25727048,5
+wanwanlee,25727048,3
+ningning9164,25727048,-1
+28820949,25727048,4
+lyning,25727048,4
+hugjm,25727048,4
+akixinru,25727048,5
+3478294,25727048,5
+aliceshi,25727048,3
+81222828,25727048,5
+61196519,25727048,3
+ohiyo,25727048,4
+liuzihao6211,25727048,4
+58332166,25727048,4
+SuzyMao,25727048,4
+4559768,25727048,4
+41510845,25727048,3
+Gallifrey,25727048,5
+121744384,25727048,4
+1929758,25727048,5
+64780410,25727048,5
+44537605,25727048,4
+58509538,25727048,3
+119999952,25727048,4
+68715109,25727048,4
+szfdouban,25727048,4
+62504024,25727048,3
+goffy2679,25727048,4
+xiaoshan0201,25727048,4
+63793789,25727048,4
+49298107,25727048,3
+59383084,25727048,4
+97365571,25727048,5
+cay_gene,25727048,4
+62301989,25727048,5
+84642768,25727048,5
+89997290,25727048,4
+68622477,25727048,3
+changzheng,25727048,5
+bulijite,25727048,3
+16499451,25727048,3
+80894601,25727048,5
+43308232,25727048,4
+lboat1982,25727048,4
+122300732,25727048,4
+mifangs,25727048,5
+subjective,25727048,-1
+L-U-N-A,25727048,4
+musique,25727048,4
+2460556,25727048,4
+elijahh,25727048,5
+63319802,25727048,3
+49319979,25727048,4
+34173309,25727048,5
+114336232,25727048,4
+65117604,25727048,4
+beanrobbie,25727048,5
+milkbook,25727048,5
+nickdds,25727048,3
+132235046,25727048,4
+49878097,25727048,4
+47317447,25727048,4
+phpqzq,25727048,5
+blindye,25727048,4
+darchang,25727048,4
+weizheren,25727048,4
+liux5520,25727048,4
+geligeerni,25727048,5
+51679757,25727048,5
+Lizzyli,25727048,5
+57729224,25727048,4
+smilegoodday,25727048,4
+4340710,25727048,3
+54126303,25727048,4
+cersijasree,25727048,5
+tea123,25727048,3
+54342753,25727048,4
+33353012,25727048,4
+qiukuleng,25727048,4
+lvyue1986,25727048,3
+nealwzn,25727048,4
+59303781,25727048,4
+52597930,25727048,5
+119374507,25727048,4
+119374507,25727048,4
+Cathybebrave,25727048,3
+66057217,25727048,3
+3642569,25727048,4
+49384394,25727048,4
+38341224,25727048,4
+Mercedes,25727048,4
+nigu_lulu,25727048,3
+1363290,25727048,4
+37001283,25727048,4
+118862756,25727048,4
+ldracos,25727048,4
+wantjoin,25727048,4
+eddeeee,25727048,4
+48182921,25727048,5
+yuanzailv,25727048,4
+chenlee,25727048,4
+76722357,25727048,4
+2914378,25727048,-1
+55817697,25727048,3
+suzon_deedee,25727048,4
+96658819,25727048,4
+dianman,25727048,4
+63485325,25727048,4
+DLZ0724,25727048,4
+36090011,25727048,4
+sabina0116,25727048,3
+110926951,25727048,5
+lingci,25727048,3
+zhangliangyj,25727048,5
+glasstar,25727048,5
+lixiaoshall,25727048,3
+komos,25727048,3
+60063091,25727048,4
+47302173,25727048,3
+67319725,25727048,4
+88645352,25727048,2
+79356961,25727048,4
+46845668,25727048,3
+60392839,25727048,3
+52374368,25727048,4
+43685156,25727048,5
+1773768,25727048,4
+49060307,25727048,4
+gxyvonne,25727048,3
+47461599,25727048,4
+72606790,25727048,3
+48132079,25727048,5
+79805335,25727048,3
+qingxi52vv,25727048,3
+88908343,25727048,5
+53792469,25727048,4
+arthurx,25727048,3
+2305028,25727048,3
+labifenelm,25727048,3
+81628425,25727048,3
+78588661,25727048,5
+127589944,25727048,4
+136261292,25727048,4
+49308862,25727048,5
+56496405,25727048,4
+52299023,25727048,3
+136290817,25727048,3
+73405940,25727048,5
+xml1112,25727048,3
+38625392,25727048,5
+crazymelon,25727048,3
+2089067,25727048,4
+1369113,25727048,4
+rabbit_forest,25727048,4
+yoteamomucho,25727048,5
+43455948,25727048,4
+52499368,25727048,4
+40225013,25727048,3
+45003782,25727048,4
+joybang,25727048,5
+gaojie0114,25727048,4
+82222392,25727048,4
+Paranoidc,25727048,4
+acomplexman,25727048,3
+72783015,25727048,5
+47357911,25727048,5
+40334840,25727048,2
+CLOWN9527521,25727048,4
+91397625,25727048,2
+61477909,25727048,4
+1417703,25727048,4
+panfangjie,25727048,3
+Pius,25727048,4
+freeandwind,25727048,3
+birdicat,25727048,4
+46228302,25727048,5
+flowermoon,25727048,4
+48380446,25727048,5
+kingiknow,25727048,4
+graygem,25727048,4
+ohthursday,25727048,4
+monkeek,25727048,3
+49703092,25727048,4
+57474326,25727048,3
+57474326,25727048,3
+74491810,25727048,3
+57892875,25727048,-1
+farawayfromhome,25727048,4
+55540473,25727048,5
+yiritang,25727048,4
+59245915,25727048,2
+70781662,25727048,5
+victoriazy,25727048,4
+chabaochabao,25727048,4
+44961933,25727048,3
+119081444,25727048,4
+59621398,25727048,3
+Monkeyhere,25727048,4
+51302979,25727048,3
+60407456,25727048,4
+p2165,25727048,3
+68262075,25727048,-1
+sakuras1412,25727048,5
+4482032,25727048,2
+youyousina,25727048,5
+14914580,25727048,4
+57980305,25727048,4
+36412946,25727048,3
+yigexiaoqing,25727048,5
+57288333,25727048,4
+54365638,25727048,4
+uni-warm,25727048,4
+89301190,25727048,3
+3065272,25727048,4
+77491930,25727048,3
+104230434,25727048,5
+Jerusalem,25727048,3
+3481297,25727048,3
+gray520,25727048,3
+q962265267,25727048,5
+jean4you,25727048,4
+LuckyStrikeNero,25727048,-1
+3812556,25727048,4
+joxxc,25727048,3
+63442441,25727048,4
+44486984,25727048,3
+2369225,25727048,3
+cactiii,25727048,4
+65161196,25727048,5
+58807022,25727048,3
+baizihua,25727048,4
+78710041,25727048,3
+71576870,25727048,4
+108077404,25727048,4
+115138237,25727048,4
+churao,25727048,4
+64805331,25727048,5
+Burglar932,25727048,5
+85866685,25727048,5
+illiteracy,25727048,3
+10155039,25727048,4
+ondineyi,25727048,3
+34960572,25727048,3
+2349644,25727048,4
+4146399,25727048,3
+coxat,25727048,4
+56309720,25727048,5
+Kevin3,25727048,4
+43043113,25727048,4
+120789819,25727048,5
+77147664,25727048,4
+liancheng,25727048,5
+deshley,25727048,4
+weili27,25727048,3
+mingchu,25727048,4
+intellect,25727048,5
+orchialgia,25727048,3
+lbc21,25727048,5
+47072592,25727048,4
+alexzlj,25727048,3
+paradise624,25727048,4
+130150805,25727048,4
+3712644,25727048,4
+130850231,25727048,5
+72250918,25727048,5
+82993767,25727048,4
+gerandy,25727048,4
+40783225,25727048,4
+40090492,25727048,4
+37219196,25727048,5
+2441545,25727048,5
+zyxlinda,25727048,5
+2888621,25727048,5
+yiri,25727048,-1
+jeskovampire,25727048,4
+49663981,25727048,3
+fuyouqishi,25727048,5
+lazy.wanderlust,25727048,5
+CatPrince,25727048,4
+Milieu,25727048,4
+beiliya6261,25727048,4
+sliaobellamy,25727048,4
+66244500,25727048,4
+Royeka.Es,25727048,4
+miauwww,25727048,5
+tennystime,25727048,4
+66575578,25727048,3
+14683656,25727048,4
+52319760,25727048,3
+49002564,25727048,4
+77578341,25727048,4
+35578527,25727048,5
+67193570,25727048,4
+Avila_Yin,25727048,3
+xiaogua,25727048,3
+70781968,25727048,3
+3013645,25727048,-1
+52335106,25727048,5
+KathyChao,25727048,4
+christineM,25727048,5
+sharonsama,25727048,4
+fishzero,25727048,5
+fotox,25727048,3
+NapCote,25727048,5
+1068125,25727048,3
+turen,25727048,5
+80285873,25727048,5
+4896477,25727048,5
+63229017,25727048,4
+136272758,25727048,4
+69470974,25727048,5
+la_ficine,25727048,5
+48646694,25727048,5
+43396822,25727048,4
+summerguagua,25727048,4
+counting_crows,25727048,3
+1077570,25727048,5
+4022317,25727048,4
+35858270,25727048,5
+radishamy,25727048,4
+1702185,25727048,4
+31043480,25727048,4
+50612264,25727048,4
+43503664,25727048,4
+45390521,25727048,4
+47471554,25727048,4
+maggieleehom,25727048,3
+41785476,25727048,3
+87909103,25727048,5
+taylorman,25727048,4
+86140576,25727048,-1
+45069650,25727048,4
+3116575,25727048,3
+59775838,25727048,4
+35066546,25727048,4
+pham,25727048,5
+52951268,25727048,5
+122210880,25727048,4
+edward1988,25727048,4
+masaikejun,25727048,4
+35944558,25727048,4
+putin36,25727048,4
+67167290,25727048,4
+baoyinjun,25727048,5
+marvin42,25727048,4
+Mackintosh,25727048,3
+legal_alien,25727048,4
+1233038,25727048,3
+57249703,25727048,4
+58110144,25727048,5
+43508209,25727048,4
+sara39aiba,25727048,4
+34573320,25727048,4
+61845850,25727048,3
+1109113,25727048,4
+63636822,25727048,4
+34568653,25727048,-1
+64013139,25727048,4
+74753192,25727048,4
+81975836,25727048,3
+50443109,25727048,3
+qinchongayo,25727048,5
+115370500,25727048,4
+2393425,25727048,3
+abin520918,25727048,4
+ifuseekayu,25727048,-1
+2060825,25727048,3
+49544157,25727048,4
+detective,25727048,4
+58438773,25727048,4
+46014273,25727048,4
+2280920,25727048,4
+53027192,25727048,4
+53584866,25727048,5
+78680128,25727048,3
+4858370,25727048,4
+Young.forU,25727048,3
+52867875,25727048,4
+qianxixi,25727048,4
+johnmcclane,25727048,3
+68131220,25727048,4
+72547163,25727048,4
+45905762,25727048,4
+63922807,25727048,5
+80568483,25727048,4
+132078723,25727048,5
+28219717,25727048,4
+63981734,25727048,3
+1671301,25727048,4
+zhangwj,25727048,5
+132092156,25727048,4
+1771263,25727048,3
+72948117,25727048,4
+62949401,25727048,4
+3569551,25727048,5
+2326685,25727048,5
+3183207,25727048,-1
+Mrsmilence,25727048,3
+chris920831,25727048,-1
+yeslie,25727048,4
+amor1028,25727048,4
+47781830,25727048,4
+Huxinghang510,25727048,4
+ksmyass,25727048,3
+9687211,25727048,4
+56789686,25727048,5
+59276802,25727048,3
+YeLLow_qst,25727048,4
+dogbus,25727048,5
+55024956,25727048,4
+56681803,25727048,3
+115125689,25727048,4
+53942242,25727048,5
+flied,25727048,4
+81519024,25727048,4
+TVBVSBON,25727048,4
+irischou,25727048,5
+stuyannnnnnnnnn,25727048,5
+60817087,25727048,4
+79172286,25727048,3
+60131064,25727048,4
+InveRno,25727048,4
+Suumer007,25727048,4
+33191821,25727048,4
+renth,25727048,5
+daisyinblossom,25727048,4
+49443898,25727048,5
+crowtina,25727048,4
+70686440,25727048,2
+88075590,25727048,-1
+baiid,25727048,5
+pxyushu,25727048,4
+bt4ever,25727048,4
+129556271,25727048,4
+2787923,25727048,3
+86728823,25727048,-1
+39003448,25727048,4
+rabbityear,25727048,5
+feisun,25727048,-1
+3671835,25727048,4
+yzone,25727048,3
+itayloriswift,25727048,3
+61020179,25727048,5
+116615443,25727048,4
+claireloveyou,25727048,2
+kazuki_suki,25727048,5
+emma1219,25727048,3
+69424948,25727048,5
+3922372,25727048,-1
+hysdqw,25727048,4
+liqiyao8931,25727048,2
+59977768,25727048,4
+61532165,25727048,4
+88174425,25727048,5
+3014394,25727048,2
+51948516,25727048,3
+52270206,25727048,3
+38000940,25727048,4
+121798050,25727048,5
+27090335,25727048,4
+sunfieldvivi,25727048,4
+57264204,25727048,3
+twopersons,25727048,2
+2790802,25727048,4
+eslian,25727048,4
+dahdumiedu,25727048,4
+zhangqiong07,25727048,4
+57795255,25727048,3
+ihzoail,25727048,4
+81138274,25727048,4
+44585545,25727048,4
+Brenda_Chan,25727048,5
+mackalex,25727048,3
+LeePuiyee,25727048,4
+hljmsfy,25727048,3
+72629481,25727048,3
+Ethan-S,25727048,3
+mrscorwin,25727048,-1
+77519498,25727048,2
+133906973,25727048,4
+51244681,25727048,4
+woshifenqing,25727048,4
+chuyuanju,25727048,5
+62324065,25727048,4
+62324065,25727048,4
+37160658,25727048,3
+99942273,25727048,3
+quiet-qing,25727048,5
+5318547,25727048,3
+COCOCOQUEEN,25727048,5
+90859526,25727048,4
+49116416,25727048,3
+hnnyzxh,25727048,3
+61415856,25727048,3
+63432491,25727048,4
+70310265,25727048,4
+Henry-Maugham,25727048,4
+132671924,25727048,5
+34434303,25727048,4
+24874842,25727048,4
+135230769,25727048,3
+44522199,25727048,2
+43827673,25727048,4
+RemyAnderson,25727048,-1
+keyilibie,25727048,5
+Phlypig,25727048,4
+49620873,25727048,3
+2087622,25727048,4
+79923158,25727048,4
+wudai2,25727048,4
+jessie.sun,25727048,-1
+4325552,25727048,4
+lampard,25727048,5
+58978243,25727048,4
+60913793,25727048,5
+57139809,25727048,4
+miucather,25727048,4
+54342192,25727048,5
+90470774,25727048,4
+58149760,25727048,4
+51583782,25727048,3
+OpenSpaces,25727048,4
+51367308,25727048,4
+2264023,25727048,-1
+83201171,25727048,3
+71759524,25727048,5
+104512986,25727048,3
+133573531,25727048,-1
+30446054,25727048,4
+60914067,25727048,-1
+64643086,25727048,4
+50865043,25727048,5
+4874301,25727048,4
+55585297,25727048,5
+chibbo,25727048,5
+78065496,25727048,5
+74663027,25727048,4
+54278419,25727048,4
+naoxiaodiu,25727048,5
+say,25727048,4
+chenchen59,25727048,5
+86952901,25727048,5
+secretcat,25727048,3
+6984569,25727048,5
+stevense,25727048,3
+36342464,25727048,4
+2305085,25727048,3
+126828053,25727048,3
+47563229,25727048,4
+78724440,25727048,3
+80936991,25727048,4
+2177969,25727048,4
+62314563,25727048,3
+46702310,25727048,4
+jiajunzhi,25727048,3
+jieyaren,25727048,4
+1422378,25727048,3
+69575912,25727048,5
+nengyinyibeiwu,25727048,4
+lizishu,25727048,3
+71929336,25727048,3
+18586571,25727048,5
+3871980,25727048,3
+47025092,25727048,5
+56430618,25727048,3
+78690191,25727048,5
+82237419,25727048,4
+Eudaimonia,25727048,3
+127115937,25727048,4
+60743609,25727048,5
+emitvoice,25727048,5
+84219123,25727048,5
+3625223,25727048,5
+moonlightshit,25727048,3
+westhaven,25727048,-1
+3394942,25727048,4
+88817660,25727048,4
+64124840,25727048,3
+mayaaasun,25727048,3
+51688901,25727048,4
+92895370,25727048,4
+hollytsai,25727048,4
+dashan1928,25727048,4
+qianyanseu,25727048,3
+128533983,25727048,4
+121228834,25727048,4
+45590222,25727048,4
+25924528,25727048,3
+1778088,25727048,5
+grannys_bear,25727048,3
+veranoverana,25727048,4
+dearmaya,25727048,4
+1507059,25727048,5
+pilgrim_soul,25727048,3
+128514178,25727048,5
+Arielcong,25727048,4
+52057607,25727048,5
+allanlou,25727048,5
+45080512,25727048,4
+2592298,25727048,5
+9071897,25727048,5
+51689962,25727048,4
+Ahbing,25727048,5
+as442181966,25727048,4
+66089736,25727048,4
+1665835,25727048,5
+alacrity516,25727048,4
+43330235,25727048,4
+pandaouka,25727048,4
+65452477,25727048,3
+24387412,25727048,3
+63676625,25727048,3
+snow961003,25727048,3
+yukino,25727048,4
+kingfokings,25727048,5
+zhongshanaoli,25727048,4
+21606016,25727048,4
+92361239,25727048,5
+56975242,25727048,4
+maikocyan,25727048,4
+anliucom,25727048,5
+57803183,25727048,4
+129837323,25727048,5
+znrpiggey,25727048,4
+everisle,25727048,4
+sxmoapple,25727048,4
+steph6luna,25727048,4
+foxzool,25727048,4
+43625639,25727048,5
+30230782,25727048,5
+3601208,25727048,4
+70990506,25727048,3
+83772923,25727048,5
+65164486,25727048,3
+45716088,25727048,4
+38959372,25727048,4
+feng-AT---,25727048,4
+ravenhearst,25727048,5
+62497317,25727048,5
+61501630,25727048,3
+5129531,25727048,5
+65408583,25727048,4
+49411843,25727048,3
+candicechang,25727048,4
+64280317,25727048,5
+101746624,25727048,5
+38514261,25727048,4
+edwardbloom,25727048,5
+42368147,25727048,3
+raye.b,25727048,3
+67679868,25727048,4
+Jodiezhang,25727048,4
+fuziyang,25727048,4
+urslee,25727048,5
+reave,25727048,3
+ruilixiurui,25727048,4
+69930229,25727048,4
+84374264,25727048,4
+42006560,25727048,3
+conyichiya,25727048,4
+80518816,25727048,4
+4211678,25727048,4
+valiantwarrior,25727048,3
+25725176,25727048,3
+78601907,25727048,3
+82021088,25727048,5
+71931742,25727048,4
+yellowjanet,25727048,4
+124823143,25727048,4
+59244982,25727048,4
+135886747,25727048,5
+wei75820,25727048,3
+59516917,25727048,4
+96514775,25727048,4
+nicholasshen,25727048,4
+robinsparrow,25727048,-1
+lingjia,25727048,4
+44911825,25727048,5
+130051507,25727048,4
+59992839,25727048,3
+62309938,25727048,-1
+teikamouse,25727048,4
+3772811,25727048,4
+shiyoushian,25727048,5
+eastease,25727048,4
+63277654,25727048,4
+4320780,25727048,5
+faerysun,25727048,4
+84570165,25727048,4
+maureenz,25727048,5
+58137202,25727048,5
+1567784,25727048,3
+58888075,25727048,4
+fancyyan,25727048,4
+56430102,25727048,4
+76395595,25727048,4
+122713796,25727048,5
+zhangbohun,25727048,3
+33505653,25727048,4
+61671045,25727048,4
+fuzyu,25727048,4
+67097675,25727048,4
+3598072,25727048,3
+53344657,25727048,4
+masaike,25727048,3
+40970313,25727048,4
+benmutou,25727048,3
+94671887,25727048,3
+1821069,25727048,3
+51559890,25727048,5
+3171388,25727048,3
+68239707,25727048,4
+outsidereva,25727048,3
+Lixiang1201,25727048,4
+40447897,25727048,3
+oksklok,25727048,4
+silence0716,25727048,5
+fansherlocked,25727048,3
+36250262,25727048,5
+loveyijingji,25727048,5
+whisaly,25727048,3
+dontdee14,25727048,5
+c.g,25727048,2
+1831746,25727048,4
+bearhearted,25727048,5
+64309170,25727048,3
+58094531,25727048,3
+108481476,25727048,4
+firelifespy,25727048,4
+60406508,25727048,3
+44690899,25727048,3
+ktf1021,25727048,3
+54985855,25727048,4
+mib,25727048,4
+35294199,25727048,4
+kingkongbarbie,25727048,5
+post-rocker,25727048,3
+35780118,25727048,4
+37597928,25727048,4
+40067511,25727048,3
+67516737,25727048,5
+45753040,25727048,4
+49617324,25727048,4
+66974866,25727048,3
+96475500,25727048,4
+49125983,25727048,4
+57985209,25727048,5
+csi910,25727048,5
+gogo_wangwang,25727048,4
+59349509,25727048,5
+89972315,25727048,5
+folkasqueer,25727048,3
+zhenglei1919,25727048,4
+49698871,25727048,3
+56053447,25727048,2
+4777379,25727048,4
+KoeyLeung,25727048,4
+68585386,25727048,4
+38821099,25727048,5
+nihac,25727048,3
+51490972,25727048,4
+hahatedan,25727048,4
+3177593,25727048,3
+42082247,25727048,5
+3082910,25727048,5
+47546589,25727048,3
+sh1nnn,25727048,4
+121033638,25727048,4
+ooshan,25727048,4
+cyansugar,25727048,3
+cect,25727048,4
+97757646,25727048,4
+ohnirvana,25727048,4
+andersonyue,25727048,3
+littlepinkbang7,25727048,5
+idreammrs,25727048,4
+79822985,25727048,5
+45012026,25727048,5
+1132028,25727048,5
+54814792,25727048,4
+funne,25727048,4
+69126111,25727048,4
+43127616,25727048,4
+willinchang,25727048,4
+48479949,25727048,4
+3053086,25727048,3
+komahxl,25727048,4
+70390842,25727048,4
+nianshuiliucong,25727048,5
+iloveevanna,25727048,-1
+jluy,25727048,3
+43500933,25727048,4
+135128946,25727048,4
+106347535,25727048,4
+62699217,25727048,3
+68512611,25727048,3
+40141522,25727048,5
+44578870,25727048,4
+xusisu,25727048,3
+55390748,25727048,3
+48767459,25727048,4
+nianlu,25727048,3
+3614212,25727048,5
+80075061,25727048,5
+55764264,25727048,5
+115552732,25727048,4
+63067150,25727048,5
+43708089,25727048,5
+harriet,25727048,3
+xiaohundaban,25727048,4
+52091489,25727048,4
+60908358,25727048,4
+59620866,25727048,3
+91515979,25727048,5
+48787128,25727048,4
+hessen,25727048,4
+weijielin,25727048,5
+wingthelie,25727048,5
+theLastQuijote,25727048,4
+Mov1e-Clan,25727048,3
+willen007,25727048,4
+3864518,25727048,4
+50304819,25727048,5
+79127642,25727048,5
+AkiranoAsahi,25727048,5
+62877248,25727048,3
+badass420,25727048,-1
+4490766,25727048,5
+chenkefeng,25727048,4
+qiaomai,25727048,4
+koceya,25727048,5
+netsurfe,25727048,4
+45291333,25727048,3
+90217144,25727048,4
+115982359,25727048,4
+60316441,25727048,5
+53458096,25727048,4
+alisonpig,25727048,5
+42484020,25727048,4
+52079162,25727048,-1
+wcwc,25727048,5
+76999762,25727048,5
+sangou,25727048,5
+ys1013,25727048,3
+victor_pie,25727048,5
+61724448,25727048,4
+79869240,25727048,5
+jiraiyafugui,25727048,5
+68724407,25727048,5
+JJ88pig,25727048,4
+lostcat84,25727048,-1
+57609619,25727048,-1
+tuncat,25727048,3
+112048402,25727048,5
+m1ss.x2,25727048,5
+3894700,25727048,3
+Kyou_Kyou,25727048,4
+53941627,25727048,4
+youyeqiuxin,25727048,4
+iSaw11021,25727048,5
+65565070,25727048,5
+merengue,25727048,4
+desmond1982,25727048,4
+49415166,25727048,4
+104007429,25727048,4
+lc_ENo.,25727048,4
+44290578,25727048,5
+lomonv,25727048,4
+elppapple,25727048,4
+71246873,25727048,4
+brallow,25727048,3
+2600693,25727048,3
+120008046,25727048,4
+46832576,25727048,5
+AmadHatter,25727048,4
+GodAssassin,25727048,4
+48441113,25727048,4
+lubinfan,25727048,5
+42556657,25727048,4
+2182418,25727048,4
+104420355,25727048,3
+ssqian,25727048,4
+46310239,25727048,3
+2822373,25727048,-1
+pariseros,25727048,5
+41437311,25727048,3
+tinychen,25727048,4
+shuyedaxigua,25727048,4
+rosecheery,25727048,4
+132859823,25727048,3
+monster1000,25727048,4
+95621225,25727048,5
+46888824,25727048,2
+54430554,25727048,5
+angel_wang,25727048,5
+zyzloveair,25727048,4
+syuee,25727048,4
+gtmz,25727048,4
+cynthia3922,25727048,4
+novalol,25727048,4
+84512297,25727048,4
+57035177,25727048,4
+braveshengchun,25727048,5
+56161116,25727048,5
+emilyyee,25727048,4
+49338971,25727048,3
+42756036,25727048,5
+60307464,25727048,5
+luanwuCAT,25727048,4
+zhangrihe,25727048,4
+76909039,25727048,3
+80926875,25727048,4
+Jobszhuisui9,25727048,5
+7255952,25727048,5
+abuwangzi,25727048,3
+mrbg,25727048,4
+mizzro,25727048,4
+65562790,25727048,5
+2446517,25727048,3
+1886385,25727048,4
+92612279,25727048,4
+92147297,25727048,5
+88393319,25727048,3
+foxlovewhitecat,25727048,5
+56400825,25727048,3
+121820822,25727048,5
+xunnight,25727048,5
+18045809,25727048,4
+25741831,25727048,4
+duluosen,25727048,4
+126152053,25727048,4
+116284858,25727048,4
+58153202,25727048,5
+isjmje,25727048,5
+51638198,25727048,4
+89263357,25727048,4
+56694430,25727048,4
+60078288,25727048,4
+terry_f,25727048,-1
+nirvanayl,25727048,5
+122458396,25727048,3
+63093559,25727048,5
+tofrom,25727048,5
+126703081,25727048,4
+tofrom,25727048,5
+126703081,25727048,4
+46436685,25727048,4
+95442218,25727048,4
+114864918,25727048,5
+3421868,25727048,3
+56392220,25727048,3
+yooyoooooo,25727048,3
+50054232,25727048,4
+fuyouforest,25727048,4
+iear,25727048,3
+67477422,25727048,4
+50415463,25727048,3
+GLSQ,25727048,5
+1669108,25727048,4
+4535772,25727048,4
+69550899,25727048,4
+2588271,25727048,3
+iRayc,25727048,4
+shine495_,25727048,4
+61712734,25727048,4
+zhangrenran,25727048,3
+85179488,25727048,5
+4418842,25727048,4
+kingtreetooth,25727048,4
+124640229,25727048,4
+3540779,25727048,5
+45513879,25727048,4
+59220835,25727048,5
+88138298,25727048,4
+57610615,25727048,4
+103510487,25727048,5
+69986931,25727048,5
+sandalwoods,25727048,4
+36463636,25727048,-1
+nemomoc,25727048,5
+archisong,25727048,4
+58142969,25727048,4
+44006704,25727048,4
+49545340,25727048,3
+89984750,25727048,4
+66178804,25727048,4
+81316047,25727048,4
+73959584,25727048,4
+135451199,25727048,5
+44105688,25727048,3
+65840127,25727048,5
+46656528,25727048,4
+70043382,25727048,5
+63005451,25727048,4
+3740351,25727048,5
+4208005,25727048,3
+raquelycidas,25727048,3
+mkfinch,25727048,4
+1593742,25727048,2
+fay19881025,25727048,3
+dreamorangemoon,25727048,-1
+63612050,25727048,4
+maomixiaosu,25727048,3
+lijie,25727048,3
+lzq3315,25727048,4
+103406589,25727048,4
+64110948,25727048,4
+3871806,25727048,4
+surishaw,25727048,5
+1001195,25727048,5
+alcudish,25727048,4
+jinyatou,25727048,5
+Jkroggee,25727048,1
+misayxt,25727048,3
+2304340,25727048,4
+69989183,25727048,5
+34184832,25727048,5
+51156405,25727048,4
+teafragments,25727048,3
+3218379,25727048,3
+3801481,25727048,4
+allancat,25727048,5
+liyueshisan,25727048,-1
+132564292,25727048,4
+122858309,25727048,4
+124142241,25727048,4
+52333341,25727048,4
+4067779,25727048,4
+snowelf,25727048,4
+92081294,25727048,4
+67332045,25727048,5
+momohei,25727048,4
+60298610,25727048,4
+moonstyle000,25727048,4
+cat_yr,25727048,5
+132082727,25727048,5
+54166163,25727048,4
+130311142,25727048,4
+70757944,25727048,4
+CloudeHou,25727048,4
+butterful,25727048,5
+115613463,25727048,5
+40559858,25727048,3
+90944162,25727048,2
+90944162,25727048,2
+48164798,25727048,4
+47058104,25727048,3
+2258556,25727048,3
+seventhworkshop,25727048,4
+2561289,25727048,4
+simbelmyne,25727048,4
+53430352,25727048,4
+ccaokunn,25727048,4
+yvone1220,25727048,4
+xlee,25727048,4
+njtintin,25727048,2
+107437673,25727048,5
+17672710,25727048,4
+sixlou6,25727048,5
+bolikongqi,25727048,2
+70487817,25727048,4
+96171071,25727048,4
+49712766,25727048,4
+104592207,25727048,3
+61014893,25727048,3
+plagueangel,25727048,-1
+33482278,25727048,4
+8312118,25727048,3
+sara36,25727048,5
+snailache,25727048,5
+manyucastle,25727048,4
+enjoymyjoy,25727048,4
+MrMia,25727048,4
+gloriabrigida,25727048,3
+104409838,25727048,4
+128169347,25727048,4
+84837446,25727048,5
+44504599,25727048,3
+footprintszyy,25727048,5
+guanxin898,25727048,4
+68390208,25727048,4
+seafans,25727048,4
+AldrickBanks,25727048,4
+47591131,25727048,-1
+gufengbyluoluo,25727048,4
+53559432,25727048,3
+30302894,25727048,4
+113286141,25727048,4
+57077807,25727048,3
+55850316,25727048,5
+79173880,25727048,5
+119807484,25727048,2
+Ste_corleone,25727048,4
+2429292,25727048,4
+acspooky,25727048,3
+135441375,25727048,5
+67838216,25727048,5
+juwujian,25727048,4
+39840965,25727048,5
+fournight,25727048,5
+ericandlisa,25727048,4
+79897130,25727048,4
+hotaru0223,25727048,4
+wqz19910915,25727048,5
+wqz19910915,25727048,5
+58161520,25727048,4
+59479604,25727048,4
+64326764,25727048,4
+Aroulin,25727048,5
+36475827,25727048,4
+gongshw,25727048,4
+123250951,25727048,5
+30417180,25727048,5
+81420973,25727048,4
+LuckybBamboo,25727048,3
+kiki204629,25727048,4
+HYGUY,25727048,3
+yinkun,25727048,3
+61753912,25727048,5
+44630019,25727048,4
+12667477,25727048,4
+63531003,25727048,4
+87631296,25727048,4
+yuchishangjiu,25727048,4
+3547067,25727048,3
+87909245,25727048,5
+4568910,25727048,5
+129158063,25727048,4
+AeroAnte,25727048,4
+1870447,25727048,4
+122708996,25727048,4
+68608061,25727048,4
+cmyssssssss,25727048,5
+120443847,25727048,3
+135874162,25727048,4
+59502573,25727048,4
+2099122,25727048,4
+kkx2222,25727048,3
+sheldonkao,25727048,3
+53197529,25727048,5
+2277226,25727048,4
+i.nightwind,25727048,2
+42531507,25727048,4
+tonyteng,25727048,3
+33325877,25727048,4
+Her_Mione,25727048,4
+vandanger,25727048,4
+duoduoshuwu,25727048,-1
+63647766,25727048,5
+liutianhong1992,25727048,5
+1418040,25727048,5
+129764944,25727048,4
+fyby,25727048,4
+71697872,25727048,4
+slothbug,25727048,3
+looknana,25727048,4
+36458786,25727048,3
+77536605,25727048,4
+sxy921026,25727048,3
+Kesseler,25727048,5
+lawrence_gao,25727048,4
+93892137,25727048,4
+119489543,25727048,3
+chen_cao,25727048,3
+68732725,25727048,5
+philosophos,25727048,-1
+58576630,25727048,4
+59313594,25727048,4
+57756222,25727048,4
+44590127,25727048,4
+q164511490,25727048,4
+99199366,25727048,3
+64821728,25727048,4
+wendyrain,25727048,4
+129956441,25727048,5
+2803619,25727048,5
+fish_in_desert,25727048,5
+45484348,25727048,4
+50499996,25727048,5
+74913423,25727048,4
+116727584,25727048,5
+46899693,25727048,2
+erobin,25727048,3
+60854174,25727048,5
+1495292,25727048,3
+paulinekp,25727048,-1
+67014677,25727048,4
+53064653,25727048,3
+133755742,25727048,4
+yeeeeeee,25727048,4
+no-potato,25727048,4
+31744734,25727048,4
+50017356,25727048,3
+76413878,25727048,3
+niazion,25727048,4
+ximozhe,25727048,4
+46818877,25727048,4
+ww.happiness,25727048,5
+16820487,25727048,4
+79841047,25727048,3
+dudumozart,25727048,3
+Ihuiyao,25727048,4
+ricechow,25727048,4
+47958996,25727048,4
+62489520,25727048,5
+Sharpay0405,25727048,4
+lovingmomo,25727048,4
+120895151,25727048,5
+BeanInk,25727048,4
+wuzouhuanghun,25727048,4
+54410090,25727048,3
+59556078,25727048,4
+132192126,25727048,4
+Jaytaoo,25727048,4
+62887483,25727048,5
+impossible_ww,25727048,5
+janeyyxl,25727048,4
+57191172,25727048,5
+45079617,25727048,4
+74768790,25727048,4
+monsieurC,25727048,5
+126980247,25727048,5
+53491052,25727048,4
+49926539,25727048,5
+fei-never,25727048,4
+67388709,25727048,4
+129696124,25727048,4
+39649962,25727048,4
+136063439,25727048,5
+MissNight,25727048,4
+zhoubaicai,25727048,4
+97917605,25727048,4
+CCCCCCXU,25727048,5
+45076514,25727048,4
+lilyigreg,25727048,5
+49022504,25727048,5
+hidemyhead,25727048,4
+47564545,25727048,4
+2404986,25727048,4
+Home-sweet,25727048,-1
+4664344,25727048,5
+96044338,25727048,4
+godi,25727048,5
+dionysian,25727048,4
+14002029,25727048,4
+deactivate,25727048,5
+133471355,25727048,3
+114333216,25727048,5
+100625194,25727048,4
+JeanTam,25727048,-1
+ProfThunder,25727048,5
+78053734,25727048,3
+31787144,25727048,5
+loveximo,25727048,4
+58865216,25727048,4
+daphneleaf,25727048,3
+52214552,25727048,4
+77084511,25727048,-1
+63733166,25727048,4
+53803517,25727048,4
+46132797,25727048,4
+XXXOXXX,25727048,5
+2390185,25727048,5
+31068430,25727048,4
+78588214,25727048,4
+50769743,25727048,4
+50592672,25727048,4
+92165422,25727048,2
+4473082,25727048,4
+wayneZ_z,25727048,5
+mowo,25727048,4
+54449997,25727048,5
+wiwie,25727048,4
+4154813,25727048,4
+eiji218837,25727048,3
+lynnesay,25727048,5
+mokop,25727048,4
+57968864,25727048,5
+xyhen,25727048,4
+4320404,25727048,3
+mlcf,25727048,4
+yao2137,25727048,4
+islandzii,25727048,3
+81804473,25727048,4
+btone0808,25727048,3
+amaterase,25727048,4
+45567916,25727048,4
+dbhungry,25727048,3
+lanyangyangdecc,25727048,4
+leiii,25727048,3
+FFLonestar,25727048,3
+36086845,25727048,5
+Jungler,25727048,3
+soasbefore,25727048,5
+51978840,25727048,5
+114781822,25727048,4
+35609833,25727048,4
+heidyxu,25727048,3
+62862861,25727048,4
+gingatomeiro,25727048,2
+Vantt,25727048,4
+wallaceLee,25727048,4
+71988436,25727048,2
+woowawa,25727048,4
+42221402,25727048,4
+50900048,25727048,3
+lovemj4ever,25727048,5
+jennychang,25727048,4
+chenchangxing,25727048,4
+74636063,25727048,4
+58059498,25727048,4
+51874216,25727048,4
+51909890,25727048,5
+2788057,25727048,2
+1069770,25727048,4
+66236412,25727048,3
+78871037,25727048,4
+61105521,25727048,5
+smellymouse,25727048,3
+foxbaby_1104,25727048,4
+54618299,25727048,4
+wcschalke,25727048,5
+2248619,25727048,4
+48514176,25727048,5
+42062370,25727048,3
+64674632,25727048,5
+adelineadele,25727048,5
+49390806,25727048,4
+44549735,25727048,4
+131632042,25727048,4
+79429448,25727048,5
+113124571,25727048,5
+51774042,25727048,5
+59217273,25727048,4
+127755762,25727048,3
+JakeNow,25727048,3
+rohi,25727048,5
+vanesce,25727048,4
+62496308,25727048,-1
+silvanelf,25727048,4
+72745150,25727048,4
+46627349,25727048,3
+1892627,25727048,3
+66147865,25727048,4
+brigittehoo,25727048,4
+Arenas4.-_-Hreo,25727048,5
+54090244,25727048,5
+44191956,25727048,4
+47153711,25727048,1
+61223167,25727048,5
+53710950,25727048,4
+30101737,25727048,4
+Thulcandra,25727048,4
+60443008,25727048,4
+ILWTFT,25727048,3
+BOAT-GUO,25727048,4
+44182814,25727048,4
+1627193,25727048,5
+65547971,25727048,5
+busanbusia,25727048,5
+zhaoyao0919,25727048,4
+rampage_akasha,25727048,4
+yeppy,25727048,5
+deppdeep,25727048,5
+68115096,25727048,4
+54494232,25727048,4
+baimuli,25727048,3
+ruo1996,25727048,3
+riceseedling,25727048,3
+flowermumu,25727048,4
+64725454,25727048,4
+disheron,25727048,3
+60413211,25727048,4
+47782519,25727048,4
+51593691,25727048,3
+49048693,25727048,5
+68510883,25727048,4
+dbsays,25727048,5
+92462355,25727048,4
+51384913,25727048,3
+61069242,25727048,4
+shoyru077,25727048,4
+christopherlin,25727048,5
+66442233,25727048,5
+kildren2013,25727048,5
+83018108,25727048,4
+92154012,25727048,4
+46091388,25727048,4
+88097347,25727048,4
+99414276,25727048,4
+65366516,25727048,3
+50065042,25727048,4
+70862123,25727048,4
+kay0108,25727048,4
+foleyfan,25727048,3
+51410491,25727048,4
+70930463,25727048,3
+71829281,25727048,4
+4424927,25727048,4
+87651171,25727048,1
+point1to1,25727048,4
+cris7ss,25727048,3
+thekk,25727048,3
+25110019,25727048,3
+Vycia,25727048,4
+43867607,25727048,2
+trianglecat,25727048,4
+iamanthony,25727048,4
+lixiadegua,25727048,-1
+annbabyyan,25727048,4
+2985135,25727048,4
+1076176,25727048,5
+4105483,25727048,4
+71953415,25727048,4
+72792251,25727048,4
+122891449,25727048,4
+villezhan,25727048,5
+gentlepuppy,25727048,2
+SoniaLu-douban,25727048,4
+1209665,25727048,4
+69404620,25727048,5
+80319931,25727048,4
+gray1210,25727048,-1
+92569558,25727048,3
+95313700,25727048,4
+129028198,25727048,4
+2045883,25727048,3
+93476152,25727048,5
+xirenju,25727048,5
+lesc,25727048,4
+leslianboe,25727048,5
+Zukunft,25727048,4
+cqyyAyy,25727048,5
+62090248,25727048,5
+90476779,25727048,5
+babbye,25727048,4
+lleheaven,25727048,3
+56858678,25727048,3
+131535153,25727048,5
+3158818,25727048,3
+57991654,25727048,4
+57429985,25727048,3
+sunluilui,25727048,4
+75896027,25727048,5
+121084172,25727048,4
+54853596,25727048,5
+62411560,25727048,5
+87035372,25727048,4
+hudali,25727048,4
+52424511,25727048,4
+hahahahahahah,25727048,5
+70006548,25727048,4
+119181217,25727048,4
+zcsgdbd,25727048,5
+69365887,25727048,4
+1815039,25727048,3
+3483729,25727048,3
+SINOFU,25727048,3
+67758880,25727048,3
+34801955,25727048,-1
+54141112,25727048,3
+51061132,25727048,4
+133497035,25727048,5
+2005598,25727048,4
+Mini_Dragon,25727048,4
+1016029,25727048,5
+120441883,25727048,4
+67811520,25727048,2
+yeyinihao,25727048,4
+38513029,25727048,4
+dunyong,25727048,4
+108051142,25727048,5
+61679358,25727048,2
+3514261,25727048,3
+winnie0212,25727048,3
+benihi,25727048,4
+88652488,25727048,4
+27261422,25727048,4
+121033172,25727048,4
+63422177,25727048,4
+64051414,25727048,4
+84338967,25727048,4
+2053906,25727048,4
+sevseven,25727048,3
+sevseven,25727048,3
+alibaba40,25727048,5
+37424688,25727048,3
+pm,25727048,3
+3202437,25727048,3
+53321679,25727048,5
+63730928,25727048,5
+Strangefamiliar,25727048,4
+82687720,25727048,3
+iker-estrella,25727048,3
+126876806,25727048,4
+67880800,25727048,3
+sgsenv,25727048,4
+36936880,25727048,4
+zoe970829,25727048,5
+EveNotended,25727048,5
+50130752,25727048,4
+drennuz,25727048,-1
+zhaodancuc,25727048,4
+69356155,25727048,5
+80470246,25727048,2
+diliber,25727048,4
+zhouxin95,25727048,4
+61509352,25727048,4
+92468807,25727048,3
+49539687,25727048,3
+48354152,25727048,4
+qianjinlai,25727048,4
+7609988,25727048,3
+Bening,25727048,5
+64972660,25727048,3
+kellyouka,25727048,3
+heraunty,25727048,4
+jhy007,25727048,4
+2876544,25727048,5
+130540529,25727048,3
+21771687,25727048,3
+101956762,25727048,5
+paprika,25727048,4
+55379993,25727048,4
+45743155,25727048,4
+fakegrapher,25727048,5
+lxgend,25727048,3
+Charlotte.Q,25727048,5
+yuetomorrow,25727048,2
+4234913,25727048,4
+violetsnow,25727048,5
+lilymoonlight,25727048,3
+toucHero,25727048,3
+sunshine2.0,25727048,3
+56008028,25727048,4
+47941742,25727048,-1
+nancyyan,25727048,5
+108238162,25727048,4
+54463600,25727048,3
+123851520,25727048,3
+guosiyao,25727048,5
+69722979,25727048,4
+1416020,25727048,-1
+lhomeA7,25727048,4
+neema,25727048,3
+86091558,25727048,4
+78542473,25727048,4
+eggy,25727048,4
+2118868,25727048,4
+freya-chen,25727048,-1
+131987227,25727048,-1
+123663607,25727048,4
+sthforlong,25727048,-1
+shushanshao,25727048,4
+A.Mo,25727048,4
+millettellim,25727048,4
+pzaiqueen,25727048,3
+jeonwoo,25727048,5
+tsubaki1108,25727048,4
+45925568,25727048,4
+126804729,25727048,4
+chiarachan,25727048,4
+SANDMANECW,25727048,3
+51142187,25727048,5
+ulva,25727048,5
+64743673,25727048,4
+72970549,25727048,3
+2853604,25727048,2
+58106727,25727048,4
+deadmonica,25727048,4
+leahahaha,25727048,4
+94717948,25727048,5
+ruyine,25727048,3
+lynnwhite,25727048,4
+1900968,25727048,4
+qixuelun,25727048,4
+loulou-mae,25727048,4
+ppa007hot,25727048,5
+2397641,25727048,3
+dearjo,25727048,4
+chenvii,25727048,4
+Ylraeon,25727048,-1
+2640900,25727048,5
+craigga,25727048,4
+32267845,25727048,4
+3619881,25727048,4
+68588893,25727048,3
+60378678,25727048,3
+xixymonkey,25727048,5
+loiscybier,25727048,4
+58018487,25727048,5
+LiDaLoVe,25727048,4
+78376415,25727048,5
+cloudiness,25727048,5
+letsrock,25727048,5
+vermouthsama,25727048,3
+moviecafe,25727048,4
+124626577,25727048,4
+tuntunv,25727048,4
+anthony1123,25727048,4
+1477412,25727048,4
+LilHayah,25727048,5
+26039197,25727048,3
+52832097,25727048,4
+zzkiara,25727048,5
+katherine0620,25727048,3
+55368233,25727048,-1
+81061741,25727048,5
+3280103,25727048,5
+DandelionHan,25727048,4
+33309594,25727048,-1
+sukaka51,25727048,4
+silvan1117,25727048,4
+clareleung,25727048,3
+88334924,25727048,4
+jolyne,25727048,3
+featherfancy,25727048,4
+joycerabbit,25727048,5
+jasonyxj,25727048,4
+sinbone,25727048,3
+3591915,25727048,4
+zhuerba1,25727048,4
+towelcatryna,25727048,4
+21197410,25727048,4
+variabled,25727048,4
+freekami,25727048,4
+sky2903932,25727048,2
+Sh1neYuan,25727048,3
+baoding,25727048,4
+Jkoim,25727048,4
+51603593,25727048,4
+53932443,25727048,5
+59794185,25727048,5
+4338616,25727048,4
+3673640,25727048,5
+78426497,25727048,4
+supermalin,25727048,4
+47897617,25727048,4
+ste0815,25727048,3
+Macmania,25727048,3
+4640924,25727048,4
+shinjong,25727048,3
+4684799,25727048,3
+2829909,25727048,3
+23883662,25727048,4
+64650530,25727048,4
+45963261,25727048,5
+toby_7,25727048,5
+imedi,25727048,4
+seasonkiddo,25727048,5
+dasyure,25727048,5
+Leslie221,25727048,4
+sinfulwolf,25727048,5
+58482756,25727048,3
+36768577,25727048,2
+miziiiiii,25727048,4
+FIMLML,25727048,-1
+1462465,25727048,5
+ytismile,25727048,3
+79412322,25727048,4
+67570964,25727048,4
+simonyao,25727048,4
+vieplivee,25727048,4
+Alicestormrage,25727048,-1
+Alicestormrage,25727048,-1
+jackybaby,25727048,4
+Lancelot365,25727048,4
+xchen149,25727048,4
+3000438,25727048,4
+54003589,25727048,3
+wildkidpk,25727048,4
+53247764,25727048,4
+fevotw,25727048,4
+1632116,25727048,3
+34929495,25727048,5
+59281167,25727048,3
+57608956,25727048,5
+yingzicao4869,25727048,4
+50855912,25727048,4
+amethysts,25727048,5
+rhuang,25727048,4
+rabbitcai,25727048,4
+YuRAY,25727048,4
+coolriver99,25727048,5
+para77,25727048,3
+75621811,25727048,4
+60470039,25727048,-1
+littlelu,25727048,4
+wlj2lhx,25727048,5
+2700292,25727048,4
+81404706,25727048,4
+troublemakerjoy,25727048,3
+47874303,25727048,3
+44070862,25727048,5
+fuloli,25727048,4
+52705401,25727048,5
+caihongxiguamei,25727048,5
+blueskyfly,25727048,4
+34407636,25727048,2
+ayueshuo,25727048,3
+85671125,25727048,4
+unfoldway,25727048,4
+46973538,25727048,4
+deardearvan,25727048,4
+tfdlyoo,25727048,-1
+eatswasabi,25727048,4
+breeeeee,25727048,4
+ousophie,25727048,4
+shooting_woo,25727048,3
+69331187,25727048,5
+56198749,25727048,3
+52269090,25727048,5
+orlando_6,25727048,3
+fionayqx,25727048,4
+44777109,25727048,3
+judeli,25727048,4
+66585349,25727048,4
+crazycathr,25727048,3
+aggerek,25727048,-1
+wsqabc,25727048,3
+nini_wang,25727048,3
+HowardRoark,25727048,4
+fishy,25727048,4
+51833370,25727048,5
+aries23,25727048,4
+84221666,25727048,5
+115713999,25727048,5
+parfumo,25727048,4
+Sammyzheng,25727048,4
+clarehsu0203,25727048,4
+Sean__Wang,25727048,4
+44600352,25727048,3
+65530128,25727048,-1
+12627114,25727048,4
+carinawang,25727048,3
+pipituliuliu,25727048,3
+75215757,25727048,4
+2678412,25727048,4
+dr_new,25727048,2
+46886901,25727048,4
+73126266,25727048,5
+hecaba,25727048,4
+85143816,25727048,4
+53392958,25727048,3
+103735356,25727048,4
+pumpkin_s,25727048,4
+roseandwater,25727048,3
+85811535,25727048,3
+63547117,25727048,4
+75189651,25727048,4
+xxxcjr,25727048,2
+2248658,25727048,4
+suki,25727048,3
+shenbaijun,25727048,5
+3540441,25727048,4
+48610227,25727048,-1
+119559372,25727048,4
+44206290,25727048,5
+poemorning0326,25727048,4
+130581811,25727048,3
+77289829,25727048,4
+53833067,25727048,4
+4664312,25727048,5
+4519637,25727048,4
+vinra,25727048,4
+Elinde,25727048,4
+imnothan,25727048,4
+3421677,25727048,5
+70870817,25727048,3
+iloveEminem,25727048,3
+scorpiogirljill,25727048,3
+3879838,25727048,3
+30796197,25727048,4
+diorsunrise,25727048,4
+65058502,25727048,5
+PKUelbereth,25727048,4
+vampire0312,25727048,4
+siemielu,25727048,3
+66189087,25727048,3
+joyeblog,25727048,5
+Ask,25727048,3
+goeatshit,25727048,3
+casablancayx,25727048,4
+1159054,25727048,4
+oralm,25727048,3
+kyoki,25727048,4
+17114874,25727048,3
+103118450,25727048,3
+53033730,25727048,4
+leafmela,25727048,2
+neverbutterfly,25727048,3
+DolceKaze,25727048,4
+xrfeifei,25727048,4
+1830523,25727048,4
+madeofwater,25727048,5
+53376712,25727048,-1
+will_u,25727048,4
+lowai,25727048,4
+stupidcat7652,25727048,5
+48847270,25727048,4
+impzz,25727048,4
+1108707,25727048,4
+jiqingyi,25727048,4
+aicbgyihai,25727048,3
+ecane,25727048,4
+33973764,25727048,5
+4114032,25727048,3
+3061502,25727048,3
+4842930,25727048,3
+83195287,25727048,3
+1412532,25727048,4
+60842177,25727048,4
+ruthchai,25727048,4
+70586246,25727048,3
+2529003,25727048,4
+nanra,25727048,3
+Sabrina19,25727048,4
+kidpt,25727048,4
+vesperxu,25727048,-1
+iamnian,25727048,3
+83188361,25727048,4
+momo077,25727048,4
+pigguo,25727048,5
+lazydesigner,25727048,4
+2039569,25727048,3
+120943212,25727048,3
+53312962,25727048,5
+51940752,25727048,3
+TiramisuPig,25727048,3
+lil1314,25727048,4
+48395509,25727048,5
+46689542,25727048,3
+fjmxy,25727048,5
+grandmama,25727048,4
+QuainChu,25727048,4
+mo_hui06,25727048,4
+qingmuwu,25727048,4
+44079904,25727048,3
+duanzizai,25727048,4
+3341659,25727048,5
+Jurys_lin,25727048,3
+Rayrui,25727048,-1
+heartandsoul,25727048,3
+siming1805,25727048,4
+operaticfrances,25727048,4
+megan_feb22nd,25727048,3
+yaoyaodaren,25727048,5
+leftsidestory,25727048,4
+58121967,25727048,3
+darrrrcy,25727048,4
+kekeximi,25727048,4
+43602749,25727048,-1
+besify,25727048,4
+60673865,25727048,4
+79874579,25727048,5
+Pincent,25727048,4
+glorymanutd,25727048,4
+59014235,25727048,3
+47537834,25727048,4
+manyandandan,25727048,4
+magic.rhythm,25727048,5
+amberose,25727048,5
+parkxiahky,25727048,4
+4895932,25727048,4
+violette,25727048,4
+queenchelsea,25727048,3
+cynthiaaw,25727048,5
+fishandbicycle,25727048,4
+cindychan89,25727048,4
+PinKame,25727048,3
+13038312,25727048,4
+xiamudemao,25727048,4
+ydlxiaolong,25727048,4
+Moanin,25727048,-1
+audreyc,25727048,4
+53584260,25727048,4
+the7th_bloom,25727048,3
+49126736,25727048,5
+77607736,25727048,5
+103532692,25727048,4
+65182759,25727048,-1
+55549387,25727048,4
+44725365,25727048,4
+jisixue0111,25727048,4
+60237257,25727048,5
+47585871,25727048,4
+catvoldemort,25727048,3
+29370418,25727048,3
+subuuti,25727048,4
+2309931,25727048,4
+vacutue,25727048,4
+liweiheng,25727048,5
+60127812,25727048,5
+linngallery,25727048,5
+riverheai,25727048,-1
+crankysophia,25727048,4
+iloveudear,25727048,5
+52155192,25727048,5
+49691795,25727048,5
+62917415,25727048,4
+stanza,25727048,5
+2094664,25727048,4
+sophia.x,25727048,4
+73291837,25727048,4
+43208363,25727048,5
+3982089,25727048,4
+4347027,25727048,4
+48078859,25727048,4
+hushabyy,25727048,4
+51393119,25727048,4
+48363016,25727048,4
+35591333,25727048,3
+cat_rs,25727048,5
+wunching,25727048,4
+zeroiris,25727048,4
+53644977,25727048,4
+51004773,25727048,4
+dec255,25727048,3
+59319026,25727048,4
+73102223,25727048,4
+96149760,25727048,4
+43559686,25727048,4
+sensitivebastar,25727048,5
+dentist,25727048,4
+50739519,25727048,3
+63144138,25727048,5
+sk4ever,25727048,4
+2761343,25727048,-1
+116049427,25727048,3
+53789319,25727048,4
+dustblue,25727048,4
+usewelltheday,25727048,4
+Ikergzy,25727048,2
+fshigh,25727048,5
+121758259,25727048,5
+25533910,25727048,4
+xuyq,25727048,3
+tieliuwudi,25727048,5
+singlecell,25727048,5
+74756120,25727048,4
+MOVIE--KO,25727048,3
+61105278,25727048,5
+1848337,25727048,4
+koala676,25727048,4
+kamegemma,25727048,3
+2752956,25727048,5
+zhongkaiyan,25727048,5
+3205834,25727048,4
+Fomy,25727048,4
+56543116,25727048,4
+rex2xt,25727048,4
+75612172,25727048,5
+yangqiaohe,25727048,3
+iwei,25727048,4
+51491569,25727048,4
+paulzhong1082,25727048,4
+36826973,25727048,5
+52561499,25727048,5
+84162494,25727048,4
+59366761,25727048,-1
+tinker828,25727048,4
+27028067,25727048,4
+sunny_i,25727048,5
+68361818,25727048,4
+1532459,25727048,-1
+kelly0223,25727048,4
+78851730,25727048,4
+biptwjw,25727048,4
+82237784,25727048,5
+51965596,25727048,5
+urielwang,25727048,4
+virginiawood,25727048,5
+NysUn,25727048,4
+62915355,25727048,5
+45428000,25727048,4
+63593169,25727048,5
+68640061,25727048,4
+Richardzsj-FA,25727048,5
+ninoliu,25727048,4
+49228717,25727048,5
+helloface0819,25727048,2
+56812940,25727048,4
+46271571,25727048,4
+63869528,25727048,3
+28869490,25727048,5
+43471768,25727048,3
+43703010,25727048,4
+57212988,25727048,5
+tunerchiang,25727048,4
+Cheeranita,25727048,5
+takaramono,25727048,4
+50031038,25727048,4
+75007342,25727048,2
+cheth,25727048,4
+70781768,25727048,-1
+shaber,25727048,4
+2802817,25727048,4
+2942819,25727048,3
+1376657,25727048,4
+xinziai,25727048,4
+2557436,25727048,5
+lihen,25727048,5
+nofish,25727048,4
+peterrobin,25727048,4
+huaxiren,25727048,5
+ddkkh,25727048,3
+47066484,25727048,4
+fuckyeahfaithy,25727048,5
+eyesfetish,25727048,4
+helene9933,25727048,4
+Leojane,25727048,5
+planoto,25727048,3
+77033669,25727048,3
+64780091,25727048,4
+Plumed__Serpent,25727048,5
+dujiachen,25727048,5
+83387941,25727048,5
+znteen,25727048,4
+40335342,25727048,5
+49326623,25727048,4
+31528814,25727048,4
+yanglu,25727048,3
+jeremydu777,25727048,4
+91365822,25727048,5
+boomXXboomXX,25727048,5
+hudodo0314,25727048,-1
+72096774,25727048,5
+rajorAn,25727048,4
+3976831,25727048,3
+62297944,25727048,4
+albertyui,25727048,4
+BBmachtalles,25727048,5
+pandoranavi,25727048,4
+50629676,25727048,4
+rudygiraffe,25727048,4
+astridchan,25727048,4
+shezaizuyi,25727048,4
+straizer,25727048,5
+olivia_wwj,25727048,4
+aiolia,25727048,4
+bxhOTZ,25727048,3
+83842502,25727048,-1
+Deepoxygen,25727048,5
+yangshuangblue,25727048,4
+52399993,25727048,4
+61453526,25727048,5
+duoyun2,25727048,-1
+34700595,25727048,5
+65388114,25727048,5
+54150368,25727048,3
+ekkus66,25727048,5
+78636509,25727048,5
+54026491,25727048,4
+hashtable,25727048,4
+52583553,25727048,4
+71741760,25727048,5
+1933139,25727048,4
+45325169,25727048,5
+twetwo,25727048,3
+cyrus_wong,25727048,3
+ltp19950208,25727048,4
+81299938,25727048,4
+66174740,25727048,-1
+79254578,25727048,4
+tobewith0216,25727048,4
+72684898,25727048,4
+88188816,25727048,3
+Hanamizuki,25727048,3
+goldenslumber,25727048,4
+cherry0908,25727048,4
+2640849,25727048,4
+itms,25727048,3
+oliviamai,25727048,4
+Cheney__,25727048,4
+56596051,25727048,5
+fxiaobo,25727048,4
+cheye,25727048,4
+p3atlus,25727048,4
+shelleyhsu,25727048,3
+yuanzhigao_0,25727048,2
+4739809,25727048,4
+135893024,25727048,3
+135808534,25727048,5
+nlai,25727048,4
+52366349,25727048,2
+YewChing,25727048,5
+vivifyvivi,25727048,3
+weblinder,25727048,5
+2266117,25727048,-1
+liuruomei,25727048,4
+61915402,25727048,4
+eefee,25727048,4
+129979276,25727048,5
+77056370,25727048,4
+116138651,25727048,3
+53466542,25727048,3
+59101445,25727048,4
+3301961,25727048,3
+74882629,25727048,4
+50087846,25727048,3
+82570233,25727048,4
+kinkiman,25727048,4
+56390401,25727048,4
+Lo,25727048,4
+yway1101,25855951,5
+4387690,25855951,4
+73530411,25855951,4
+36556180,25855951,5
+lanyangyangdecc,25855951,4
+zyd0527,25855951,4
+136339347,25855951,3
+134574897,25855951,4
+47535024,25855951,3
+66552525,25855951,5
+92962162,25855951,4
+48148912,25855951,5
+49538698,25855951,4
+hohoyuhu,25855951,5
+Tracy.Guo,25855951,5
+56435930,25855951,4
+77490356,25855951,5
+3641355,25855951,3
+54327177,25855951,4
+59741946,25855951,3
+3772330,25855951,4
+phoebeface,25855951,-1
+red.,25855951,4
+yeyidao,25855951,3
+fiona-cin,25855951,4
+muini,25855951,4
+kidbbmm,25855951,-1
+90190322,25855951,4
+77001369,25855951,4
+137555231,25855951,4
+135234490,25855951,5
+51588465,25855951,5
+clyee,25855951,5
+78640879,25855951,4
+40872813,25855951,4
+25817605,25855951,4
+3816104,25855951,3
+50992070,25855951,3
+aurawang95,25855951,4
+lbc21,25855951,4
+QQQQQQQla,25855951,5
+102626556,25855951,4
+47065864,25855951,5
+teaword,25855951,5
+69095425,25855951,5
+65635790,25855951,4
+kateniceday,25855951,3
+2654386,25855951,4
+78370041,25855951,4
+58456907,25855951,4
+73110105,25855951,4
+45969996,25855951,4
+bons,25855951,4
+59901599,25855951,5
+53656219,25855951,4
+1135887,25855951,4
+94033941,25855951,5
+48898826,25855951,4
+jesterselby,25855951,3
+137244496,25855951,4
+63021522,25855951,5
+125796731,25855951,5
+49624513,25855951,5
+42167889,25855951,3
+GraceChow,25855951,4
+68575125,25855951,4
+49104566,25855951,5
+50319429,25855951,4
+66135071,25855951,5
+109488189,25855951,4
+68366606,25855951,3
+108972448,25855951,5
+49273030,25855951,4
+84015091,25855951,3
+125102922,25855951,3
+80072126,25855951,5
+lovedtomma,25855951,4
+52983818,25855951,-1
+2543390,25855951,4
+44823994,25855951,3
+62154991,25855951,5
+43359124,25855951,4
+W3IQ7,25855951,4
+Cool4ZBL,25855951,4
+123855693,25855951,5
+121920760,25855951,3
+56583743,25855951,3
+91474719,25855951,5
+45545911,25855951,4
+69495229,25855951,4
+51909890,25855951,4
+Ruty1985,25855951,5
+120854619,25855951,3
+85339597,25855951,3
+gsherwin,25855951,4
+130541613,25855951,4
+51836053,25855951,5
+71835476,25855951,4
+gzzing,25855951,4
+64164384,25855951,5
+HugoVince,25855951,4
+134580402,25855951,5
+65110384,25855951,4
+isnico,25855951,3
+135818499,25855951,4
+xu77,25855951,4
+17906829,25855951,3
+73222054,25855951,5
+princess921129,25855951,5
+ctrl-moon,25855951,3
+136199952,25855951,5
+126041738,25855951,3
+bigshuoshu,25855951,5
+77282488,25855951,5
+47037959,25855951,4
+76635599,25855951,3
+68521104,25855951,4
+52635394,25855951,3
+127457458,25855951,4
+79865014,25855951,3
+rosaline,25855951,4
+90681003,25855951,4
+68123525,25855951,4
+47866207,25855951,4
+npe,25855951,4
+103277074,25855951,4
+49277404,25855951,5
+98014856,25855951,4
+btfunv,25855951,5
+shizhewenmonica,25855951,2
+PennyCCC,25855951,4
+121766750,25855951,3
+136097755,25855951,4
+77715371,25855951,4
+134581502,25855951,4
+59897220,25855951,5
+RAKA,25855951,4
+encorepanda,25855951,4
+whatsuplaura,25855951,4
+131380048,25855951,5
+1013761,25855951,5
+58466744,25855951,5
+qqb143,25855951,4
+shoose2525,25855951,4
+49112807,25855951,4
+duoerjiayou,25855951,5
+48732344,25855951,4
+68153956,25855951,4
+44228322,25855951,5
+zh91,25855951,5
+136995611,25855951,5
+88345455,25855951,5
+74753192,25855951,4
+58750002,25855951,5
+longsuiyun,25855951,5
+121460001,25855951,4
+mypal,25855951,5
+tangmm,25855951,5
+57754572,25855951,5
+137437939,25855951,5
+61300490,25855951,5
+123000223,25855951,5
+97491371,25855951,5
+keven.496,25855951,5
+92333338,25855951,5
+134648175,25855951,5
+128891178,25855951,5
+91093296,25855951,5
+4245501,25855951,4
+131761032,25855951,4
+137235653,25855951,4
+77532413,25855951,5
+monkeek,25855951,4
+puccaa,25855951,5
+134499178,25855951,5
+60743609,25855951,5
+suzie09-20,25855951,5
+77822767,25855951,4
+120736861,25855951,4
+doubaning,25855951,4
+zoe_dl,25855951,4
+13283104,25855951,4
+134362348,25855951,3
+67605510,25855951,4
+cuacfxx,25855951,3
+emchan,25855951,5
+64082591,25855951,4
+mustundead,25855951,4
+134625303,25855951,4
+136144400,25855951,4
+59629580,25855951,4
+79157004,25855951,5
+64086832,25855951,-1
+39584121,25855951,4
+63402468,25855951,5
+137305184,25855951,4
+72431740,25855951,5
+bignoodle,25855951,5
+75173381,25855951,4
+q296579068,25855951,5
+1941226,25855951,5
+Guessy,25855951,5
+87869082,25855951,5
+68744286,25855951,4
+50106349,25855951,4
+69439267,25855951,4
+133125055,25855951,4
+84263251,25855951,4
+SgL,25855951,4
+95968737,25855951,4
+ourtwinsyi,25855951,5
+81752466,25855951,4
+4332802,25855951,5
+ensi,25855951,4
+kamine,25855951,3
+timliutianxiang,25855951,3
+3079947,25855951,5
+98956225,25855951,5
+37853313,25855951,3
+123111535,25855951,4
+bulijite,25855951,4
+lunacake,25855951,4
+131909298,25855951,3
+xiyuanyumutou,25855951,5
+zoeisadoll,25855951,5
+rockyaozi,25855951,5
+52540412,25855951,5
+115051698,25855951,4
+MotherConfessor,25855951,5
+57288678,25855951,4
+84943776,25855951,5
+1459659,25855951,3
+crazysheepmoon,25855951,-1
+87546829,25855951,4
+bougainvillea,25855951,-1
+83390803,25855951,5
+96728684,25855951,4
+48815569,25855951,5
+137129598,25855951,5
+62554570,25855951,4
+68120354,25855951,4
+68352338,25855951,4
+3656658,25855951,5
+51766131,25855951,5
+69459491,25855951,5
+64245784,25855951,5
+53091923,25855951,4
+134532187,25855951,4
+sukijuri,25855951,5
+55950775,25855951,4
+tringle,25855951,5
+135248605,25855951,4
+77182257,25855951,4
+59942467,25855951,5
+72413093,25855951,4
+126959230,25855951,4
+52208903,25855951,4
+sk4ever,25855951,5
+44709496,25855951,3
+127080746,25855951,4
+92496772,25855951,3
+compauline1010,25855951,5
+87637608,25855951,4
+137303234,25855951,4
+104609991,25855951,5
+75175940,25855951,4
+70330680,25855951,4
+68550655,25855951,4
+3183207,25855951,-1
+67862292,25855951,4
+64552831,25855951,5
+16460262,25855951,4
+27241168,25855951,5
+104489015,25855951,3
+57424312,25855951,5
+121554454,25855951,5
+46594843,25855951,5
+2571322,25855951,4
+52864366,25855951,5
+135996237,25855951,5
+48966304,25855951,5
+54296399,25855951,5
+shine714,25855951,5
+qianqian0504,25855951,5
+134462242,25855951,5
+130270800,25855951,4
+137206904,25855951,4
+45278107,25855951,4
+62705311,25855951,2
+56918033,25855951,4
+123404476,25855951,3
+44965572,25855951,4
+131020888,25855951,3
+137058497,25855951,3
+137058479,25855951,3
+109418017,25855951,3
+bontemps,25855951,5
+qianmoch,25855951,5
+yoonjae_,25855951,4
+32528538,25855951,4
+weizen,25855951,4
+137127942,25855951,4
+64865370,25855951,4
+45268716,25855951,4
+103807559,25855951,5
+xiangpi34,25855951,5
+astrogirl1028,25855951,4
+42375246,25855951,4
+84020070,25855951,2
+1765291,25855951,4
+50186647,25855951,5
+58435887,25855951,5
+5467957,25855951,3
+Ikino,25855951,5
+130952703,25855951,4
+74418129,25855951,4
+70363510,25855951,4
+131402261,25855951,4
+lingdongling,25855951,4
+130563496,25855951,4
+62228721,25855951,5
+121925373,25855951,4
+suiffeng0504,25855951,4
+3845314,25855951,2
+48090771,25855951,4
+131025711,25855951,3
+136356191,25855951,5
+61675448,25855951,4
+129964938,25855951,3
+61496311,25855951,4
+137073841,25855951,5
+137076197,25855951,5
+fisin,25855951,5
+58956706,25855951,4
+131088732,25855951,4
+133533083,25855951,3
+60233121,25855951,4
+137072980,25855951,4
+78667352,25855951,5
+137069221,25855951,4
+gezi921054,25855951,4
+1394142,25855951,3
+96000077,25855951,5
+80537833,25855951,3
+67626687,25855951,4
+76302090,25855951,5
+39781506,25855951,1
+130445057,25855951,4
+y19940504,25855951,5
+96388706,25855951,4
+133689309,25855951,2
+122868077,25855951,4
+130702415,25855951,4
+46030549,25855951,4
+rachel19940329,25855951,4
+70687104,25855951,4
+114090542,25855951,4
+92809978,25855951,3
+lovesay,25855951,4
+122933129,25855951,4
+45646209,25855951,5
+122656795,25855951,4
+83402921,25855951,5
+44322726,25855951,-1
+127131340,25855951,1
+30112682,25855951,5
+57126994,25855951,5
+66715562,25855951,3
+Charlotte.Q,25855951,4
+48363400,25855951,4
+60002715,25855951,5
+RRDaDa,25855951,2
+122932689,25855951,4
+77625620,25855951,4
+Riverwatcher,25855951,4
+jiaquan0526,25855951,5
+65710892,25855951,5
+xd0812,25855951,3
+134509898,25855951,5
+zdoudou,25855951,3
+58930966,25855951,3
+102906934,25855951,5
+84309358,25855951,5
+wx330,25855951,5
+81619869,25855951,4
+50480913,25855951,5
+61169740,25855951,4
+91005322,25855951,5
+jluy,25855951,3
+weini0410,25855951,4
+katherinezzh,25855951,4
+79834547,25855951,3
+allenwon,25855951,5
+108864744,25855951,5
+vickyzhoumore,25855951,5
+paranoid_0,25855951,5
+59142560,25855951,5
+aspir1n13,25855951,5
+42116635,25855951,5
+67162659,25855951,3
+oakhui,25855951,4
+134854042,25855951,4
+lulu1011,25855951,4
+132571441,25855951,5
+66664616,25855951,5
+111627446,25855951,4
+126564641,25855951,5
+slowwalker,25855951,4
+8523675,25855951,4
+74446199,25855951,4
+120830060,25855951,5
+2751113,25855951,5
+127515076,25855951,5
+54308994,25855951,3
+54222505,25855951,3
+77241502,25855951,5
+55972613,25855951,4
+85309350,25855951,4
+108285360,25855951,4
+85454895,25855951,5
+124640229,25855951,3
+89102019,25855951,4
+82995055,25855951,5
+momojenny,25855951,4
+102129178,25855951,5
+126876806,25855951,5
+2562419,25855951,4
+mayday_anne,25855951,5
+44975807,25855951,5
+38612058,25855951,4
+47941742,25855951,5
+47561224,25855951,5
+70469575,25855951,5
+xxxiyybabe,25855951,5
+79994497,25855951,5
+Charline-2015,25855951,4
+112278711,25855951,4
+59197305,25855951,5
+84607154,25855951,5
+77691678,25855951,4
+77691678,25855951,4
+134417369,25855951,4
+52389655,25855951,4
+chending,25855951,4
+xita,25855951,5
+45069650,25855951,4
+miaotuanzi,25855951,5
+70990506,25855951,3
+52368554,25855951,4
+134545730,25855951,4
+givenchy_,25855951,4
+136666385,25855951,5
+28058521,25855951,5
+72098592,25855951,3
+1219326,25855951,5
+sunny1992,25855951,3
+48313436,25855951,5
+73014879,25855951,5
+49037811,25855951,4
+122064580,25855951,5
+122064580,25855951,5
+windirt,25855951,3
+86615375,25855951,4
+mingming1124530,25855951,4
+post-rocker,25855951,4
+2348623,25855951,-1
+dmcmh,25855951,5
+niubinuo,25855951,5
+lanup,25855951,4
+77222475,25855951,5
+45935605,25855951,4
+hinnie_addict,25855951,4
+62413537,25855951,4
+49927976,25855951,4
+simbelmyne,25855951,5
+Hunjianxia,25855951,4
+pedant,25855951,4
+35475264,25855951,4
+mr-kill,25855951,4
+elinorshen,25855951,3
+66115129,25855951,4
+superrao,25855951,4
+64342708,25855951,5
+136323962,25855951,4
+63371041,25855951,5
+116290357,25855951,4
+85288278,25855951,5
+BritpopStarFeel,25855951,4
+53144206,25855951,5
+40066621,25855951,4
+tangnin,25855951,3
+66803513,25855951,5
+1226511,25855951,3
+52726734,25855951,5
+92377736,25855951,5
+129577459,25855951,3
+101472907,25855951,5
+74207601,25855951,5
+mongrue,25855951,5
+136427944,25855951,5
+136427944,25855951,5
+55601948,25855951,5
+48165079,25855951,4
+68027461,25855951,4
+136519738,25855951,5
+113285477,25855951,3
+123593065,25855951,-1
+67040528,25855951,5
+foxlovewhitecat,25855951,5
+49246032,25855951,3
+Andred,25855951,5
+68371671,25855951,4
+mysalvation,25855951,4
+8319224,25855951,4
+49827426,25855951,4
+55310143,25855951,4
+panyoubing,25855951,5
+gothes,25855951,3
+70648645,25855951,5
+37620368,25855951,3
+64297776,25855951,-1
+55997229,25855951,5
+58379345,25855951,-1
+2106137,25855951,5
+36654222,25855951,5
+Sun1989,25855951,3
+HYGUY,25855951,4
+3729384,25855951,5
+akuiwuyan,25855951,5
+yoteamomucho,25855951,4
+74123608,25855951,-1
+47467918,25855951,5
+DemiZhang1218,25855951,5
+4021192,25855951,5
+120094445,25855951,4
+yq1ng,25855951,4
+68699271,25855951,3
+at_summer,25855951,4
+130940103,25855951,4
+70470057,25855951,4
+50199718,25855951,3
+115897834,25855951,3
+73731178,25855951,3
+85213640,25855951,5
+45937846,25855951,5
+55593779,25855951,4
+evgeni1955,25855951,3
+64586433,25855951,5
+47838456,25855951,5
+2858394,25855951,5
+momojasper,25855951,4
+61536847,25855951,1
+66142939,25855951,5
+roczhong,25855951,3
+61935443,25855951,4
+78176677,25855951,4
+136223897,25855951,3
+49691795,25855951,-1
+wangsmoly,25855951,4
+43409918,25855951,4
+102627576,25855951,3
+123738666,25855951,5
+136337190,25855951,4
+xlei130,25855951,3
+cynthiaesfeliz,25855951,5
+50348086,25855951,3
+14168896,25855951,5
+81586403,25855951,5
+2449818,25855951,3
+50611156,25855951,-1
+tyidly,25855951,5
+71950308,25855951,3
+50997457,25855951,3
+51098227,25855951,3
+83274268,25855951,4
+shmilyeve,25855951,5
+3169785,25855951,4
+dawnbyfish,25855951,5
+yuyu427,25855951,5
+2182116,25855951,4
+2182116,25855951,4
+53346531,25855951,5
+39611799,25855951,3
+tofrom,25855951,4
+136290817,25855951,4
+frances-6,25855951,5
+moshushinihao,25855951,4
+zhonglizhongli,25855951,5
+wusuowei102,25855951,5
+tracytraztse,25855951,3
+52961473,25855951,3
+loulou-mae,25855951,4
+60222551,25855951,4
+32445045,25855951,5
+53962357,25855951,4
+sxy921026,25855951,3
+jesuispomme,25855951,5
+44344508,25855951,4
+hahatedan,25855951,4
+50130752,25855951,4
+67387298,25855951,5
+136216084,25855951,4
+jiandanjiuhaio,25855951,-1
+shizhier,25855951,4
+49384394,25855951,4
+57609376,25855951,5
+16910877,25855951,5
+129107764,25855951,5
+127728111,25855951,4
+92232503,25855951,4
+3205834,25855951,4
+97277841,25855951,4
+71586293,25855951,5
+37751161,25855951,4
+65438741,25855951,4
+119858082,25855951,4
+duoduoshuwu,25855951,5
+81836452,25855951,5
+1920062,25855951,3
+75077274,25855951,4
+honestydudu,25855951,5
+60596975,25855951,5
+rabbitzhuyin,25855951,4
+2749331,25855951,5
+yiritang,25855951,5
+121125023,25855951,3
+bzslovely,25855951,4
+suncloudy,25855951,5
+62675898,25855951,2
+59524621,25855951,3
+33544921,25855951,4
+127632434,25855951,4
+49319979,25855951,4
+1482191,25855951,4
+45291333,25855951,4
+42880272,25855951,4
+54090244,25855951,3
+46318577,25855951,5
+43258085,25855951,5
+laiquziyouIris,25855951,4
+60336114,25855951,4
+2231082,25855951,5
+131068311,25855951,4
+62063835,25855951,4
+seayo,25855951,5
+binzhao,25855951,5
+halfhalf,25855951,5
+44359880,25855951,5
+57821710,25855951,4
+110447556,25855951,5
+119081444,25855951,4
+64397699,25855951,4
+zhangweishi,25855951,5
+131535153,25855951,4
+66977263,25855951,5
+jonasjonaszy,25855951,5
+79560195,25855951,5
+134495648,25855951,4
+16319906,25855951,4
+65175679,25855951,5
+chocoqiao,25855951,5
+JustStayReal,25855951,5
+walkingtime,25855951,4
+75993500,25855951,4
+2986985,25855951,4
+133822939,25855951,4
+3299770,25855951,4
+alapeach,25855951,4
+57568722,25855951,5
+134171030,25855951,5
+ice41322,25855951,5
+edward1988,25855951,4
+80399701,25855951,4
+wanghuzou,25855951,4
+66871580,25855951,3
+ofish0,25855951,3
+84010010,25855951,4
+73693664,25855951,5
+135762513,25855951,5
+47233944,25855951,2
+chils,25855951,5
+Liew_qing,25855951,5
+54744490,25855951,5
+61485977,25855951,4
+115827848,25855951,4
+Iamzhexuan,25855951,4
+76633519,25855951,4
+4564661,25855951,-1
+50624143,25855951,4
+willese,25855951,4
+103039257,25855951,5
+YuSu,25855951,3
+59244982,25855951,5
+127301550,25855951,5
+88730050,25855951,3
+princessfrog,25855951,5
+49443898,25855951,4
+mangomaluko,25855951,3
+66632216,25855951,5
+53718073,25855951,4
+C-Plus,25855951,4
+25676059,25855951,5
+longlanglang,25855951,4
+133033817,25855951,4
+yan599083337,25855951,4
+108253828,25855951,5
+56062808,25855951,5
+59943822,25855951,5
+3805082,25855951,3
+54727803,25855951,3
+66776645,25855951,5
+40681472,25855951,5
+4134812,25855951,4
+57968508,25855951,5
+125770398,25855951,4
+46228308,25855951,5
+45362948,25855951,3
+32608753,25855951,3
+nengyinyibeiwu,25855951,4
+125959627,25855951,4
+51215014,25855951,4
+121074324,25855951,4
+50769986,25855951,5
+LadyA,25855951,4
+porquetevas,25855951,4
+125010605,25855951,4
+2352198,25855951,5
+eashion,25855951,5
+41634233,25855951,5
+cyushu,25855951,5
+51224776,25855951,4
+jayleehoho,25855951,4
+50785660,25855951,5
+59820755,25855951,5
+59127988,25855951,4
+91348351,25855951,4
+47782519,25855951,4
+56044350,25855951,5
+63793789,25855951,4
+thisisdaisy,25855951,4
+reeboir,25855951,4
+kanzaki666,25855951,5
+64104549,25855951,5
+131849470,25855951,5
+69388384,25855951,5
+kadai929,25855951,4
+59035824,25855951,5
+126331855,25855951,4
+53774748,25855951,3
+noeee_j,25855951,5
+70202233,25855951,5
+65795567,25855951,4
+nevertry,25855951,5
+56739185,25855951,4
+mickyxj,25855951,5
+2843167,25855951,4
+3655113,25855951,4
+6303192,25855951,1
+diana961108,25855951,-1
+lt-2988,25855951,4
+lt-2988,25855951,4
+65546282,25855951,4
+kongfucat,25855951,4
+2801118,25855951,4
+131921881,25855951,4
+iswh,25855951,5
+132410810,25855951,5
+cdf,25855951,5
+jack_eminem,25855951,4
+62309938,25855951,5
+36617894,25855951,5
+101503219,25855951,4
+hazel-y,25855951,4
+36412946,25855951,5
+Smilene_22,25855951,-1
+73293463,25855951,5
+4709296,25855951,5
+66713897,25855951,5
+68511299,25855951,5
+50629676,25855951,4
+120038071,25855951,5
+6474153,25855951,5
+62275045,25855951,4
+sakuras1412,25855951,3
+46152001,25855951,5
+50878855,25855951,4
+4105472,25855951,3
+85345440,25855951,5
+78885050,25855951,-1
+4520580,25855951,5
+59301340,25855951,4
+papa1968,25855951,4
+135067568,25855951,4
+47877779,25855951,4
+sentimento-rose,25855951,4
+1956404,25855951,5
+55910584,25855951,4
+69790989,25855951,5
+52142248,25855951,4
+greenpeaser,25855951,5
+dawdle,25855951,4
+nofer,25855951,3
+lokaven,25855951,5
+69459951,25855951,5
+56392220,25855951,5
+Tracy1230,25855951,4
+127606527,25855951,3
+bananazookeeper,25855951,4
+4251957,25855951,-1
+90005274,25855951,3
+77607736,25855951,4
+weiwei_ya,25855951,4
+2328580,25855951,5
+80912012,25855951,4
+decemberhuan,25855951,4
+48131107,25855951,5
+39551885,25855951,5
+69710712,25855951,-1
+turandot0815,25855951,3
+AeroAnte,25855951,5
+Jessiecutie,25855951,5
+68825025,25855951,4
+aaaaaaalice,25855951,5
+34702944,25855951,5
+52056943,25855951,2
+mirror-y,25855951,4
+ALTNATIONAL,25855951,4
+tavi0529,25855951,5
+59164249,25855951,4
+122124788,25855951,3
+kathychu,25855951,4
+104409838,25855951,5
+Woody58,25855951,4
+on1ooker,25855951,4
+johnnietomay,25855951,-1
+52967718,25855951,4
+43213326,25855951,4
+laurelni,25855951,4
+76739176,25855951,4
+clytzesmile,25855951,5
+49893438,25855951,5
+h7766,25855951,4
+34422499,25855951,4
+121228834,25855951,5
+55772953,25855951,4
+3571623,25855951,4
+114057522,25855951,4
+3531890,25855951,5
+neverdeathjia,25855951,5
+30395338,25855951,5
+kaaaaayi,25855951,4
+83694969,25855951,5
+46054766,25855951,-1
+63287141,25855951,4
+40766162,25855951,5
+hephan,25855951,-1
+55849798,25855951,4
+52618134,25855951,5
+53854833,25855951,3
+47565712,25855951,4
+3598072,25855951,3
+amhunter,25855951,4
+76566444,25855951,4
+47701954,25855951,4
+88327391,25855951,5
+46845668,25855951,3
+ritamov,25855951,5
+1936710,25855951,5
+78645703,25855951,4
+4603766,25855951,5
+89847136,25855951,5
+47542853,25855951,3
+viviennewww,25855951,4
+xiricuo,25855951,5
+63044059,25855951,3
+46144446,25855951,4
+changeable123,25855951,5
+120120305,25855951,5
+73868761,25855951,4
+hela,25855951,3
+60054131,25855951,4
+gxyvonne,25855951,4
+64366698,25855951,5
+3120655,25855951,4
+66597062,25855951,5
+49322971,25855951,5
+63572086,25855951,4
+47633821,25855951,3
+55660651,25855951,4
+63090885,25855951,4
+izzyxiaobai,25855951,4
+42221402,25855951,3
+134203219,25855951,5
+54234447,25855951,5
+132827615,25855951,2
+54695369,25855951,4
+121534057,25855951,3
+80437815,25855951,4
+iamgriffin,25855951,5
+48877341,25855951,-1
+43979428,25855951,5
+3521179,25855951,5
+120299687,25855951,3
+xiaolian818,25855951,4
+54543581,25855951,4
+80555404,25855951,4
+3592617,25855951,4
+43602293,25855951,4
+78925849,25855951,5
+36747339,25855951,5
+KUBRICK2OO1,25855951,5
+Ciris,25855951,5
+28219717,25855951,4
+50139701,25855951,4
+Yven,25855951,5
+lancer04,25855951,4
+ideyes,25855951,3
+weiliaoliao,25855951,5
+52956090,25855951,4
+65590168,25855951,5
+amyiwlyf,25855951,3
+52446548,25855951,3
+sarahbeibei,25855951,5
+55439146,25855951,5
+54191288,25855951,3
+103842541,25855951,5
+cameron18,25855951,5
+zqkc,25855951,5
+68588893,25855951,5
+akiralovedark,25855951,4
+leiii,25855951,4
+45905762,25855951,4
+61939090,25855951,4
+OpenSpaces,25855951,4
+55916506,25855951,3
+43840425,25855951,5
+44001440,25855951,4
+lyivy9032,25855951,4
+jinzhawithyou,25855951,4
+34309421,25855951,3
+LadySandra,25855951,5
+103182067,25855951,4
+83133983,25855951,4
+67345896,25855951,5
+Bebefore,25855951,4
+64459545,25855951,5
+100279661,25855951,4
+berengere,25855951,5
+45344133,25855951,5
+62436945,25855951,4
+lijingyu1027,25855951,4
+lenka,25855951,4
+48925648,25855951,5
+dustblue,25855951,4
+50930270,25855951,4
+2346529,25855951,4
+roxanneKwan,25855951,5
+xuyinaxxxxxxx,25855951,5
+54618299,25855951,4
+13569368,25855951,4
+2265138,25855951,5
+47833534,25855951,5
+84394974,25855951,4
+sangou,25855951,5
+134523911,25855951,4
+moisen_yx,25855951,5
+MrMia,25855951,4
+75323893,25855951,5
+wezhang,25855951,5
+48194135,25855951,4
+61476996,25855951,3
+62274501,25855951,-1
+villus,25855951,5
+63332200,25855951,4
+78847176,25855951,3
+49662983,25855951,4
+72606790,25855951,4
+2610640,25855951,4
+127844486,25855951,5
+loveserein,25855951,5
+guo4901,25855951,3
+65666219,25855951,5
+49491933,25855951,4
+FindingKnightly,25855951,4
+14247291,25855951,4
+Anastasia16,25855951,4
+miss_orange,25855951,5
+Lin_Ling,25855951,5
+49298107,25855951,4
+yeeeeeee,25855951,5
+72725890,25855951,5
+105859099,25855951,5
+132830115,25855951,3
+130860796,25855951,5
+36659083,25855951,5
+Mr.KNight,25855951,5
+1909194,25855951,4
+61448696,25855951,4
+45673380,25855951,5
+lynnstefanie,25855951,3
+2860461,25855951,5
+61375666,25855951,4
+1174148,25855951,4
+88574021,25855951,4
+kinobear,25855951,5
+96475500,25855951,5
+131073434,25855951,2
+126304635,25855951,5
+2746985,25855951,4
+40982141,25855951,4
+yvone1220,25855951,3
+115910211,25855951,4
+21606016,25855951,4
+4605484,25855951,4
+BaBaBaL,25855951,4
+earthchild,25855951,4
+78089832,25855951,-1
+62923758,25855951,4
+3783693,25855951,5
+57430540,25855951,4
+57430540,25855951,4
+sakurahao,25855951,5
+2919381,25855951,5
+75231611,25855951,4
+hsumo,25855951,5
+57523146,25855951,5
+61525287,25855951,4
+61992166,25855951,5
+73312122,25855951,4
+jamfever,25855951,5
+3729693,25855951,4
+59593088,25855951,4
+30322114,25855951,5
+72867351,25855951,5
+70214878,25855951,5
+46585688,25855951,4
+82417434,25855951,4
+99804851,25855951,4
+119288592,25855951,4
+3818284,25855951,4
+3818284,25855951,4
+65021113,25855951,5
+Cicinnurus,25855951,4
+87820646,25855951,4
+127688878,25855951,3
+tiny___Lee,25855951,5
+74896165,25855951,5
+61801657,25855951,5
+41083928,25855951,4
+sylvia_6,25855951,5
+46462063,25855951,5
+55771467,25855951,5
+66025578,25855951,4
+58094874,25855951,-1
+45242330,25855951,4
+63406200,25855951,5
+121746557,25855951,5
+46774756,25855951,3
+czy940903,25855951,5
+130823206,25855951,5
+130823206,25855951,5
+56919953,25855951,5
+Coletta,25855951,5
+45340915,25855951,4
+HermionenoimreH,25855951,4
+51901036,25855951,4
+81930957,25855951,4
+Minimalis,25855951,4
+1463503,25855951,4
+1201937,25855951,4
+wxw1900,25855951,4
+59110325,25855951,4
+LoveHugo,25855951,5
+119276408,25855951,4
+3971708,25855951,3
+70006548,25855951,5
+74800894,25855951,5
+49408765,25855951,-1
+14408023,25855951,5
+120328914,25855951,5
+34864713,25855951,4
+49268204,25855951,4
+130328147,25855951,4
+MaxinAn,25855951,4
+128563651,25855951,4
+haorensisi-,25855951,5
+89399541,25855951,4
+o3333333,25855951,5
+126449855,25855951,5
+8459513,25855951,4
+1115686,25855951,4
+88564672,25855951,3
+49194367,25855951,3
+35653009,25855951,3
+cowsumy,25855951,3
+133914507,25855951,5
+47086941,25855951,4
+53868679,25855951,5
+vividtime,25855951,4
+46637165,25855951,5
+1929758,25855951,4
+jadexyy,25855951,4
+1527797,25855951,4
+2154904,25855951,4
+riohead,25855951,5
+77661771,25855951,4
+63231702,25855951,3
+elaimi,25855951,4
+berrysweery,25855951,4
+3741660,25855951,4
+37160658,25855951,4
+hljmsfy,25855951,5
+maixiaohuang,25855951,4
+2598306,25855951,4
+Loveneverfail,25855951,5
+mudingcatshere,25855951,-1
+51271400,25855951,4
+liyue8848,25855951,5
+92945557,25855951,4
+35068096,25855951,5
+83206457,25855951,3
+falent,25855951,5
+magicancer,25855951,4
+59010544,25855951,5
+53682563,25855951,5
+virtuosowang,25855951,5
+120018328,25855951,5
+3880844,25855951,-1
+2305028,25855951,4
+4195703,25855951,4
+48509984,25855951,5
+48712788,25855951,4
+1268296,25855951,5
+104310668,25855951,3
+55965923,25855951,4
+myxiguachong,25855951,4
+xiaobai_zw,25855951,4
+54512951,25855951,2
+46989842,25855951,4
+126335298,25855951,4
+126335298,25855951,4
+100637778,25855951,3
+79970005,25855951,-1
+92919500,25855951,5
+47199948,25855951,3
+wangxj524,25855951,5
+38559039,25855951,4
+Suuun,25855951,4
+3501606,25855951,4
+121148510,25855951,4
+55450968,25855951,5
+3324844,25855951,5
+1151029,25855951,-1
+72657219,25855951,4
+zaozi,25855951,5
+52872697,25855951,4
+HappySummerlily,25855951,5
+51693234,25855951,-1
+1077635,25855951,4
+46949606,25855951,4
+67957454,25855951,4
+34753066,25855951,4
+61076987,25855951,3
+yvonneliu,25855951,4
+zhenzhen,25855951,4
+57734564,25855951,4
+46818877,25855951,4
+81360818,25855951,5
+73714750,25855951,3
+66935704,25855951,5
+70730114,25855951,5
+72995081,25855951,2
+4197973,25855951,4
+sabina0116,25855951,4
+Ruthwang,25855951,5
+53958094,25855951,5
+57783752,25855951,4
+guyewuzhe,25855951,3
+yukyzhang88,25855951,5
+ricochen,25855951,5
+59718039,25855951,4
+yalindongdong,25855951,4
+74636626,25855951,4
+64273735,25855951,4
+corbelle,25855951,5
+48589119,25855951,4
+67072789,25855951,5
+baladong123,25855951,4
+Sheeplady,25855951,4
+1973521,25855951,4
+23853027,25855951,3
+33787195,25855951,5
+dana_dana,25855951,5
+65132102,25855951,4
+daisyinblossom,25855951,5
+64528316,25855951,3
+81134195,25855951,4
+sure,25855951,5
+jaerson,25855951,5
+2218729,25855951,5
+53405110,25855951,4
+3479695,25855951,4
+2774375,25855951,3
+55677796,25855951,3
+xxh911,25855951,4
+132983057,25855951,4
+87035372,25855951,4
+65448112,25855951,4
+1371141,25855951,3
+75328137,25855951,5
+39030467,25855951,-1
+45127178,25855951,5
+1288276,25855951,3
+60197347,25855951,5
+guitarain,25855951,4
+38676304,25855951,4
+79734997,25855951,3
+szdd,25855951,4
+32911120,25855951,3
+40027917,25855951,5
+xiaojiongxia,25855951,4
+52680941,25855951,5
+63338415,25855951,4
+82687720,25855951,3
+64110948,25855951,4
+48751710,25855951,5
+61797915,25855951,4
+37040851,25855951,5
+79698189,25855951,4
+43771540,25855951,5
+96473743,25855951,5
+44549735,25855951,5
+47807328,25855951,4
+norker,25855951,2
+77092352,25855951,4
+69406009,25855951,5
+Live4now,25855951,5
+maryormarry,25855951,5
+61823510,25855951,4
+44436573,25855951,4
+64618863,25855951,4
+92196607,25855951,4
+57097536,25855951,5
+68584442,25855951,4
+129585590,25855951,3
+luzhiyu,25855951,4
+25982397,25855951,4
+33538142,25855951,4
+83188009,25855951,5
+124517309,25855951,4
+73690547,25855951,5
+58338006,25855951,3
+88724154,25855951,4
+56314850,25855951,4
+ligoligo,25855951,5
+93951315,25855951,4
+133575194,25855951,3
+josephgyal,25855951,4
+76086734,25855951,4
+100364124,25855951,5
+37950189,25855951,5
+dsn,25855951,5
+40742605,25855951,3
+hayeke2325156,25855951,3
+62210177,25855951,4
+47941861,25855951,5
+35135916,25855951,5
+62971799,25855951,4
+50210563,25855951,4
+44514155,25855951,4
+4057118,25855951,3
+2813940,25855951,5
+126529625,25855951,4
+67843456,25855951,4
+hengyunyixiang,25855951,3
+64543856,25855951,4
+cometlulu,25855951,5
+71692693,25855951,4
+2446730,25855951,4
+joey12255555,25855951,5
+Fassonhymn,25855951,5
+62258561,25855951,4
+47832961,25855951,4
+42426766,25855951,4
+65121646,25855951,5
+11020421,25855951,4
+58211668,25855951,5
+55814996,25855951,4
+cora_lu,25855951,4
+51367308,25855951,4
+melodygxl,25855951,5
+12629797,25855951,4
+2480244,25855951,4
+78073626,25855951,4
+leeang,25855951,5
+119806823,25855951,5
+Lieutenant_Lu,25855951,4
+53080002,25855951,4
+38222446,25855951,5
+longya,25855951,4
+xuqianxun,25855951,5
+53356414,25855951,5
+86248756,25855951,3
+jeremydu777,25855951,3
+74217191,25855951,5
+4421474,25855951,5
+43589213,25855951,4
+61223246,25855951,5
+freenest,25855951,4
+89410418,25855951,4
+2664199,25855951,5
+26503826,25855951,3
+87469999,25855951,4
+71583788,25855951,4
+58854842,25855951,4
+60570203,25855951,5
+123366348,25855951,5
+130599620,25855951,5
+75288450,25855951,3
+62318575,25855951,5
+66110301,25855951,5
+yibantiantang,25855951,4
+64972660,25855951,3
+41629334,25855951,3
+87488566,25855951,5
+30532525,25855951,5
+longestname,25855951,4
+47591131,25855951,-1
+76032805,25855951,4
+1844596,25855951,5
+35623829,25855951,4
+merryliang,25855951,4
+106548711,25855951,5
+55770875,25855951,3
+64757557,25855951,4
+4643954,25855951,3
+39603909,25855951,5
+doubandayima,25855951,3
+lengshan,25855951,5
+49798956,25855951,3
+53996515,25855951,5
+4295980,25855951,5
+puppy33,25855951,5
+25968212,25855951,4
+2310497,25855951,4
+hehudie13,25855951,5
+3832888,25855951,4
+6651647,25855951,5
+49389540,25855951,5
+13262749,25855951,4
+54863567,25855951,4
+131861322,25855951,4
+dreamss,25855951,5
+85038471,25855951,5
+dangmy,25855951,-1
+53932937,25855951,5
+xingyinfa,25855951,4
+74193285,25855951,4
+71706618,25855951,4
+29710107,25855951,4
+54750396,25855951,5
+35224934,25855951,4
+Demo21,25855951,4
+60732201,25855951,2
+tangjiaqi,25855951,4
+chengyaojiang,25855951,3
+83317663,25855951,4
+102652403,25855951,5
+59129484,25855951,3
+chrisqi310,25855951,3
+wjmm,25855951,5
+shanjin,25855951,4
+58107870,25855951,4
+19734042,25855951,3
+83269650,25855951,3
+cunsir,25855951,4
+kiki204629,25855951,4
+2604164,25855951,5
+88077335,25855951,5
+4338846,25855951,5
+46038064,25855951,4
+intotool,25855951,4
+89984750,25855951,4
+78710041,25855951,4
+75436336,25855951,5
+48673422,25855951,4
+33914811,25855951,-1
+51237014,25855951,4
+48590382,25855951,4
+99623107,25855951,5
+2600833,25855951,4
+evenone,25855951,-1
+115728798,25855951,4
+CatWitch,25855951,3
+bess2rui,25855951,4
+56567872,25855951,5
+124010047,25855951,3
+Nibrina,25855951,4
+dadou417,25855951,3
+68938607,25855951,3
+46184375,25855951,4
+83723594,25855951,5
+jimmy88lau,25855951,5
+1929074,25855951,5
+88951785,25855951,4
+hdjjys,25855951,3
+105864771,25855951,5
+3218379,25855951,4
+4056731,25855951,4
+spaceli,25855951,4
+4496644,25855951,3
+118607602,25855951,5
+bkata_mtama,25855951,4
+yfqc24pippo,25855951,4
+62513276,25855951,-1
+108227036,25855951,4
+130919245,25855951,5
+99623872,25855951,4
+72792251,25855951,3
+91609335,25855951,4
+hwylesley,25855951,3
+61529233,25855951,4
+orangesuan,25855951,3
+buzhiyuba,25855951,3
+xiongyuzhen,25855951,5
+67374627,25855951,4
+132592664,25855951,4
+121369705,25855951,4
+97313597,25855951,2
+45786010,25855951,4
+43930540,25855951,4
+2026482,25855951,4
+bozzi,25855951,4
+100100468,25855951,3
+1951882,25855951,3
+62342347,25855951,4
+F7LOWER,25855951,5
+59238229,25855951,4
+mmcv,25855951,2
+1469928,25855951,3
+perperperper,25855951,5
+Amulp,25855951,4
+35575281,25855951,2
+37773080,25855951,5
+62095303,25855951,4
+82058525,25855951,5
+50179433,25855951,5
+78914788,25855951,5
+yangjuzi,25855951,5
+129135232,25855951,3
+66967732,25855951,4
+ningning9164,25855951,-1
+55887555,25855951,5
+Exaiy,25855951,4
+4242859,25855951,4
+73135988,25855951,4
+lycinspire,25855951,5
+67205440,25855951,5
+47357911,25855951,5
+52692373,25855951,4
+53817584,25855951,4
+smallhappies,25855951,4
+103680149,25855951,4
+63965908,25855951,4
+120263299,25855951,5
+47467920,25855951,4
+123689430,25855951,-1
+Dushanbe,25855951,4
+52070312,25855951,4
+75860030,25855951,4
+JoooNE,25855951,3
+41370734,25855951,5
+60311898,25855951,4
+69685570,25855951,5
+52957567,25855951,5
+74084887,25855951,4
+126828053,25855951,5
+johnmcclane,25855951,4
+4345264,25855951,4
+52832866,25855951,4
+4705854,25855951,4
+48067046,25855951,5
+43430592,25855951,-1
+61165254,25855951,4
+huoshuyinhua,25855951,3
+Coka-Less,25855951,4
+rocksun,25855951,5
+vaniadyq,25855951,4
+miomiomeng,25855951,4
+92032476,25855951,5
+64044442,25855951,5
+57490076,25855951,5
+125270666,25855951,-1
+57386472,25855951,5
+65520417,25855951,5
+3106221,25855951,4
+pzaiqueen,25855951,4
+qingtongkuihua,25855951,4
+74290800,25855951,1
+57293187,25855951,5
+Yinaly,25855951,4
+59768370,25855951,4
+2485313,25855951,5
+Ianyeah,25855951,5
+29662178,25855951,4
+53025259,25855951,4
+aiiicat,25855951,4
+52583509,25855951,4
+qiao1123,25855951,5
+43235070,25855951,4
+49266863,25855951,3
+59945460,25855951,4
+36927005,25855951,4
+49397696,25855951,3
+104592207,25855951,4
+82982497,25855951,5
+1097543,25855951,5
+63277654,25855951,4
+floraDing,25855951,-1
+2498446,25855951,3
+53239037,25855951,5
+jackguo,25855951,4
+banbeizi,25855951,-1
+Nakaiaoi,25855951,5
+72712114,25855951,4
+51416132,25855951,4
+2769574,25855951,5
+xxberny,25855951,5
+3412422,25855951,4
+linchuzhuang,25855951,4
+54853596,25855951,4
+hannahhsing,25855951,3
+guanjian0505,25855951,5
+Lepoo,25855951,4
+43039008,25855951,5
+44045443,25855951,3
+2596592,25855951,3
+28462417,25855951,4
+78903709,25855951,5
+95010587,25855951,4
+62602235,25855951,5
+elviabenny,25855951,4
+53362350,25855951,4
+35297714,25855951,4
+58112933,25855951,4
+49257621,25855951,5
+36118700,25855951,5
+64821728,25855951,4
+ann-in-april,25855951,5
+DonCorleone,25855951,3
+50060410,25855951,4
+49073345,25855951,4
+51782661,25855951,4
+Immortal-mo,25855951,4
+yayayayay,25855951,5
+puccino,25855951,5
+73660377,25855951,3
+65312708,25855951,5
+Zhaokai0226,25855951,5
+54222336,25855951,4
+53894863,25855951,5
+54325025,25855951,5
+56071242,25855951,4
+61569747,25855951,5
+hamleto2,25855951,4
+lostcat84,25855951,-1
+60230223,25855951,4
+72354881,25855951,5
+37477455,25855951,4
+54631317,25855951,3
+59993815,25855951,3
+vicky-maomao,25855951,4
+45949533,25855951,5
+chelemege,25855951,5
+92155502,25855951,4
+Ryogi_Shiki,25855951,4
+CityOfShadows,25855951,-1
+58114980,25855951,5
+54035553,25855951,4
+2349644,25855951,4
+tuniu1,25855951,4
+58575244,25855951,4
+1480415,25855951,4
+56524561,25855951,3
+103060200,25855951,5
+1595012,25855951,5
+51353897,25855951,5
+42965778,25855951,4
+Gilberte,25855951,4
+78473890,25855951,5
+yuaner,25855951,-1
+48939653,25855951,4
+52529736,25855951,4
+52247790,25855951,3
+50337627,25855951,3
+4183098,25855951,3
+59195846,25855951,4
+36086845,25855951,5
+suixipijian,25855951,5
+40237768,25855951,5
+44486984,25855951,4
+92047884,25855951,4
+53323941,25855951,2
+66268458,25855951,5
+116138651,25855951,4
+Ms.G,25855951,5
+niazion,25855951,4
+89870657,25855951,4
+68774599,25855951,5
+42036458,25855951,4
+yuemengjiji,25855951,5
+96662969,25855951,4
+2135257,25855951,5
+Apanggg,25855951,4
+65538675,25855951,5
+63321066,25855951,3
+56480029,25855951,5
+1666477,25855951,5
+4228988,25855951,5
+68779054,25855951,5
+79519421,25855951,4
+61919532,25855951,4
+42003350,25855951,4
+pussyyy,25855951,4
+48349431,25855951,4
+Nages,25855951,5
+4033467,25855951,-1
+Chrisdrunker,25855951,4
+82345039,25855951,5
+1564139,25855951,5
+115750334,25855951,4
+2822373,25855951,-1
+80240498,25855951,4
+78160726,25855951,5
+64725454,25855951,4
+58494684,25855951,4
+68160177,25855951,4
+onlyloll,25855951,4
+59772984,25855951,4
+52614794,25855951,3
+52614794,25855951,3
+52046312,25855951,4
+58290785,25855951,2
+3801481,25855951,4
+Tachibanaeva,25855951,4
+55850316,25855951,3
+48957896,25855951,4
+kidadida,25855951,5
+45193149,25855951,4
+64469327,25855951,5
+wunie,25855951,4
+jeffersontang,25855951,4
+53317988,25855951,4
+50188089,25855951,5
+47709338,25855951,4
+simpledeer,25855951,4
+guanchen76,25855951,4
+106347535,25855951,4
+59725036,25855951,4
+52775018,25855951,5
+45221878,25855951,4
+65062380,25855951,5
+Solo-n,25855951,3
+32817284,25855951,4
+45736693,25855951,4
+x-inter,25855951,3
+60725481,25855951,5
+chenkefeng,25855951,4
+4242728,25855951,4
+59129237,25855951,5
+47257949,25855951,5
+Wsuansuan,25855951,4
+mubin,25855951,4
+67330888,25855951,5
+87317687,25855951,5
+viorxx,25855951,4
+MissUnderwater,25855951,5
+laneddy,25855951,5
+mrf,25855951,4
+xiaotuo,25855951,4
+diysad,25855951,4
+sussylee,25855951,5
+14327084,25855951,5
+3451324,25855951,4
+59149801,25855951,5
+50230966,25855951,5
+58216497,25855951,5
+68596231,25855951,4
+denkenjing,25855951,3
+114353499,25855951,4
+autumnsa117,25855951,5
+46053347,25855951,3
+54983933,25855951,3
+amanjj,25855951,-1
+91567656,25855951,3
+62504024,25855951,3
+jessicascarlet,25855951,4
+2722876,25855951,4
+white940105,25855951,4
+44646589,25855951,3
+46144873,25855951,4
+He.Loves.QKL,25855951,5
+deathlegend,25855951,4
+ainiruyanjing,25855951,3
+gaoqr,25855951,4
+65369148,25855951,3
+41387006,25855951,4
+ovanisho,25855951,4
+1603592,25855951,5
+CatherXiao,25855951,5
+120322125,25855951,3
+2119013,25855951,3
+JasonEllision,25855951,3
+65058502,25855951,5
+121641170,25855951,5
+sofasay,25855951,5
+3471791,25855951,5
+49283063,25855951,4
+JonLu,25855951,4
+pengpeng,25855951,3
+currant,25855951,4
+68201628,25855951,4
+jupengorall,25855951,4
+84250012,25855951,4
+papaduty,25855951,4
+85193188,25855951,5
+72934606,25855951,5
+45985032,25855951,4
+2954378,25855951,4
+51777314,25855951,4
+44387904,25855951,3
+119450504,25855951,2
+sunzeya,25855951,5
+74789050,25855951,5
+75189651,25855951,4
+zuoshoudezuo,25855951,5
+30166860,25855951,4
+64467057,25855951,4
+48990593,25855951,3
+2170932,25855951,4
+amphy,25855951,-1
+4320404,25855951,3
+28953793,25855951,4
+2829310,25855951,4
+53476786,25855951,5
+92655993,25855951,4
+62776173,25855951,5
+sunq,25855951,4
+48028421,25855951,5
+66931955,25855951,4
+49054831,25855951,3
+51239314,25855951,4
+122901063,25855951,4
+59556078,25855951,4
+45742129,25855951,5
+4217605,25855951,-1
+ruoxiaochan,25855951,5
+84472857,25855951,5
+61504169,25855951,4
+53554219,25855951,4
+77497039,25855951,5
+51288517,25855951,3
+deepseashell,25855951,4
+56198749,25855951,3
+sho2mon4e4y,25855951,4
+62928630,25855951,5
+1335533,25855951,4
+117235320,25855951,4
+52499368,25855951,3
+58512408,25855951,5
+49147828,25855951,3
+42093808,25855951,5
+toyuan,25855951,3
+49190910,25855951,5
+80559391,25855951,5
+49082695,25855951,4
+53247764,25855951,4
+57931932,25855951,5
+55631098,25855951,5
+8718496,25855951,5
+75756405,25855951,4
+76163964,25855951,4
+53339781,25855951,4
+105146664,25855951,5
+65208315,25855951,3
+67575567,25855951,3
+hgbcqz,25855951,4
+67331748,25855951,3
+jwhmayday,25855951,5
+88450760,25855951,5
+cynthia3922,25855951,4
+60381439,25855951,4
+60559982,25855951,4
+68542833,25855951,5
+45876548,25855951,5
+yingtaoher,25855951,5
+fannyl,25855951,5
+79846892,25855951,5
+60455917,25855951,5
+zeusdream,25855951,4
+55438716,25855951,5
+74959611,25855951,5
+26713841,25855951,4
+126702436,25855951,3
+67878115,25855951,5
+51564570,25855951,5
+berialgreener,25855951,3
+sparkylee,25855951,-1
+53573790,25855951,5
+1840162,25855951,4
+Never_mind,25855951,4
+43207309,25855951,4
+4884094,25855951,-1
+64509169,25855951,5
+1614995,25855951,5
+ddmsl,25855951,5
+51940652,25855951,5
+2745009,25855951,4
+48286955,25855951,4
+66230509,25855951,5
+4292817,25855951,4
+xuylu,25855951,3
+103028552,25855951,4
+76564763,25855951,4
+impzz,25855951,5
+zhousophia,25855951,4
+56686931,25855951,5
+47852493,25855951,4
+honeybunny9048,25855951,5
+Hc66,25855951,5
+manxiaoyue,25855951,3
+80121770,25855951,5
+130654352,25855951,4
+2808574,25855951,5
+3720128,25855951,4
+trianglecat,25855951,4
+67238808,25855951,4
+zyjj141,25855951,4
+6023961,25855951,4
+Esacpe.,25855951,5
+firematch,25855951,5
+60042358,25855951,5
+67946884,25855951,4
+coitany,25855951,5
+subseer,25855951,4
+mhyigeren,25855951,5
+65907866,25855951,4
+82227481,25855951,3
+119644008,25855951,4
+zozododo,25855951,5
+sellthetime,25855951,5
+40223789,25855951,4
+cristinali,25855951,5
+119407405,25855951,4
+iyyhua,25855951,4
+50620276,25855951,5
+64818522,25855951,4
+3894700,25855951,4
+chenhuayang,25855951,4
+60298571,25855951,5
+72984075,25855951,4
+40198971,25855951,5
+68199229,25855951,5
+33293514,25855951,4
+gs21cn,25855951,3
+Bollin,25855951,5
+xiaoyuhen,25855951,4
+58564872,25855951,5
+suck-man,25855951,5
+3508861,25855951,5
+momot,25855951,4
+1486502,25855951,4
+28856648,25855951,4
+essemoon,25855951,5
+8316667,25855951,3
+curlooo,25855951,5
+63686665,25855951,5
+PsychoMissSo,25855951,5
+120187893,25855951,4
+61398424,25855951,4
+48042943,25855951,3
+YeahYeahYeahs,25855951,5
+djzengwei,25855951,4
+wplee,25855951,3
+71929336,25855951,5
+twetwo,25855951,3
+49155719,25855951,5
+astroangel,25855951,4
+56160592,25855951,4
+2325349,25855951,4
+July_AuE,25855951,3
+67514961,25855951,5
+67781678,25855951,3
+92468807,25855951,4
+2494337,25855951,4
+hsx,25855951,-1
+75519812,25855951,4
+45594123,25855951,3
+Zamai,25855951,4
+51574052,25855951,5
+celebrate,25855951,4
+p2165,25855951,4
+45193513,25855951,5
+shamkle,25855951,4
+121385842,25855951,5
+4527041,25855951,4
+sd0225,25855951,5
+mumcy,25855951,4
+49129088,25855951,4
+58059498,25855951,3
+61558143,25855951,4
+4581200,25855951,5
+35330234,25855951,4
+tamakiyoko,25855951,5
+69855322,25855951,4
+YH222,25855951,3
+46311374,25855951,5
+37058834,25855951,5
+62644533,25855951,3
+50282986,25855951,-1
+69066580,25855951,3
+103771999,25855951,4
+47583585,25855951,4
+11630561,25855951,5
+53512949,25855951,5
+61426958,25855951,4
+73787415,25855951,4
+4391066,25855951,5
+vradica,25855951,4
+57511259,25855951,4
+mxmxmxxx,25855951,3
+54989820,25855951,4
+43517175,25855951,4
+51965596,25855951,4
+chenrongrong28,25855951,4
+koalalalalala,25855951,5
+52811536,25855951,3
+55793666,25855951,-1
+yikexin12,25855951,5
+youngtoo,25855951,4
+youngtoo,25855951,4
+57676648,25855951,3
+63036215,25855951,4
+1665848,25855951,3
+pii3you,25855951,5
+zhuzhuzhuz,25855951,5
+90930462,25855951,4
+zzerica,25855951,4
+101504179,25855951,4
+janfle,25855951,5
+pershingsay,25855951,5
+Ryan-Z,25855951,4
+50741674,25855951,4
+coocooloot,25855951,4
+61389067,25855951,4
+67727072,25855951,4
+52918110,25855951,4
+53644623,25855951,2
+rockyblur,25855951,4
+47055120,25855951,3
+50451911,25855951,4
+AuRevoir7,25855951,4
+sanzang007,25855951,4
+72685963,25855951,3
+72820019,25855951,4
+psycheeee,25855951,3
+69970746,25855951,4
+69855575,25855951,5
+38770333,25855951,5
+51257333,25855951,5
+58679862,25855951,2
+92544403,25855951,4
+PLP,25855951,4
+53560863,25855951,4
+1767558,25855951,4
+zbar1234,25855951,4
+tianranzijiegou,25855951,4
+48542981,25855951,5
+keytoworld,25855951,4
+xuxiaoben,25855951,5
+sunnykatty,25855951,4
+12794807,25855951,4
+78974642,25855951,4
+findmusic,25855951,5
+35218078,25855951,3
+3550233,25855951,5
+3710093,25855951,5
+TERRYBEAR,25855951,4
+yangqiaohe,25855951,4
+36854196,25855951,5
+dannyyy,25855951,4
+119587434,25855951,4
+46287830,25855951,-1
+helene9933,25855951,4
+idiot.child,25855951,4
+78414144,25855951,5
+2009122,25855951,5
+128915580,25855951,4
+64780091,25855951,3
+tsoo416,25855951,4
+63989347,25855951,5
+YanPeiPan,25855951,4
+yumecraft,25855951,3
+68982698,25855951,4
+1074069,25855951,5
+foleyfan,25855951,5
+51939738,25855951,4
+beibeiyu,25855951,5
+59236586,25855951,5
+120291697,25855951,5
+Rick_Film,25855951,5
+43214468,25855951,4
+52378291,25855951,4
+3907593,25855951,3
+73836689,25855951,4
+34347136,25855951,4
+76309125,25855951,5
+sodavovo,25855951,4
+51320337,25855951,5
+8572226,25855951,-1
+monkeycupl,25855951,5
+2320667,25855951,5
+pearltear,25855951,5
+51157596,25855951,4
+morpihine,25855951,3
+ky1on,25855951,4
+harukolin,25855951,5
+66637654,25855951,5
+63068333,25855951,-1
+roy_box,25855951,5
+58085348,25855951,4
+4013382,25855951,5
+59224056,25855951,5
+qijiuzhiyue,25855951,4
+60392839,25855951,3
+52918898,25855951,5
+yestar,25855951,2
+antiekin,25855951,3
+104261144,25855951,4
+27791559,25855951,2
+121674354,25855951,3
+4516862,25855951,4
+73959584,25855951,5
+43496561,25855951,5
+43062111,25855951,4
+ge383203180xin,25855951,4
+echodtatu,25855951,5
+91721618,25855951,5
+thunderous,25855951,4
+sea-lucky,25855951,3
+HEYHo,25855951,5
+Justinboyland,25855951,5
+59258558,25855951,5
+82308347,25855951,4
+3517710,25855951,-1
+51426516,25855951,4
+1344334,25855951,4
+4643817,25855951,4
+83259241,25855951,5
+Madao_D,25855951,4
+misuna,25855951,4
+109381843,25855951,4
+66759401,25855951,5
+HJS_L,25855951,4
+66595969,25855951,4
+2005598,25855951,4
+120792651,25855951,5
+1133756,25855951,4
+34936131,25855951,5
+45484403,25855951,4
+2201238,25855951,-1
+2914378,25855951,4
+60788126,25855951,4
+unaunaquantro,25855951,4
+51711938,25855951,5
+66445932,25855951,3
+sylin,25855951,4
+Dmili,25855951,4
+iamxiongjiani,25855951,3
+43748947,25855951,5
+67098541,25855951,5
+yueyuedad1972,25855951,5
+parisxxx,25855951,5
+guotong,25855951,5
+1369129,25855951,5
+65699766,25855951,3
+2803147,25855951,4
+85811535,25855951,4
+tev,25855951,5
+52897840,25855951,5
+45463396,25855951,3
+43648335,25855951,3
+63281322,25855951,5
+45347825,25855951,3
+1821069,25855951,4
+mumu_1314,25855951,4
+3943144,25855951,4
+43532104,25855951,5
+xhlaxhla,25855951,4
+3677368,25855951,4
+4248478,25855951,4
+annsjl,25855951,4
+3465717,25855951,4
+everytimedouble,25855951,4
+feller,25855951,4
+2748249,25855951,4
+63657398,25855951,4
+120828757,25855951,5
+albinoni,25855951,4
+themoonforgets,25855951,5
+4231432,25855951,2
+68441395,25855951,4
+46060990,25855951,5
+77267201,25855951,4
+58858218,25855951,4
+74824888,25855951,5
+62200093,25855951,5
+4153442,25855951,4
+2208504,25855951,5
+82774953,25855951,4
+43297403,25855951,4
+52655756,25855951,-1
+wendyhsu,25855951,5
+3679222,25855951,-1
+everlastingEGO,25855951,4
+60149752,25855951,5
+6019834,25855951,4
+suian918,25855951,4
+kastin,25855951,5
+21372450,25855951,5
+amyenvy,25855951,4
+53115614,25855951,4
+eto,25855951,5
+4154813,25855951,5
+chara1987,25855951,4
+CKyan,25855951,5
+34088097,25855951,4
+48878590,25855951,5
+121512625,25855951,5
+119630839,25855951,5
+QiangL,25855951,4
+malu,25855951,4
+4325552,25855951,4
+2488091,25855951,3
+M.Roseline,25855951,3
+3744867,25855951,4
+45355870,25855951,4
+rachsun,25855951,5
+43787285,25855951,4
+jiachangting,25855951,5
+27775242,25855951,4
+51227412,25855951,4
+64168650,25855951,4
+51260993,25855951,5
+53392958,25855951,3
+54272292,25855951,3
+68772933,25855951,-1
+MOKUZJY,25855951,5
+62210978,25855951,5
+38139628,25855951,4
+83201171,25855951,4
+67529255,25855951,5
+2282279,25855951,3
+93332466,25855951,3
+53927357,25855951,4
+yubaozilee,25855951,5
+vivienmoe,25855951,4
+someoneunknown,25855951,5
+78500828,25855951,4
+whitestones,25855951,5
+46593881,25855951,5
+52424511,25855951,4
+94000337,25855951,4
+llllsy1991,25855951,4
+constancef,25855951,3
+58064281,25855951,4
+3430345,25855951,5
+Betty818,25855951,3
+fx1104,25855951,5
+txiawd,25855951,1
+xinzoe,25855951,-1
+50708726,25855951,4
+zx8713,25855951,5
+10489432,25855951,4
+52961960,25855951,4
+130071542,25855951,4
+4804072,25855951,4
+74758139,25855951,3
+moins,25855951,4
+47216469,25855951,4
+36125277,25855951,5
+26077972,25855951,3
+Dasiycat,25855951,4
+hm512,25855951,4
+montcalgary,25855951,5
+80756861,25855951,-1
+4132596,25855951,3
+103374377,25855951,5
+3676726,25855951,4
+44121250,25855951,4
+44121250,25855951,4
+62798977,25855951,4
+fangmingeva,25855951,4
+PsyLadyTricky,25855951,4
+3065583,25855951,5
+37465637,25855951,4
+121679794,25855951,4
+65709225,25855951,4
+roseandwater,25855951,5
+66260297,25855951,3
+115549792,25855951,4
+76879423,25855951,5
+58098693,25855951,4
+acbc115,25855951,5
+62517955,25855951,-1
+4791622,25855951,5
+61726273,25855951,4
+81316047,25855951,4
+92361571,25855951,5
+61953901,25855951,5
+61953901,25855951,5
+sarabilau2,25855951,3
+liqiyao8931,25855951,5
+56802615,25855951,3
+106570148,25855951,4
+76005313,25855951,5
+71561935,25855951,2
+122316474,25855951,4
+edward2wong,25855951,4
+39104472,25855951,4
+imKuku,25855951,3
+83842502,25855951,4
+sweetiantian,25855951,4
+CB.7,25855951,5
+50352361,25855951,5
+60011676,25855951,5
+51284624,25855951,5
+50229670,25855951,3
+54930854,25855951,4
+59378291,25855951,2
+59378291,25855951,2
+liguligu,25855951,3
+baicaitai,25855951,5
+67758784,25855951,-1
+43372151,25855951,4
+yyy1240,25855951,5
+102912620,25855951,4
+70238336,25855951,4
+81281958,25855951,4
+43778462,25855951,-1
+70413922,25855951,4
+40748484,25855951,5
+66035702,25855951,4
+60088640,25855951,3
+mint_pegasus,25855951,5
+68557847,25855951,5
+eva01,25855951,5
+92340097,25855951,-1
+zhengminlive,25855951,5
+GMDY,25855951,4
+53467813,25855951,4
+28743020,25855951,4
+115083844,25855951,5
+chinesean,25855951,3
+2834857,25855951,-1
+kgbbeer,25855951,4
+72781855,25855951,4
+u_know_who,25855951,4
+3481297,25855951,4
+64856511,25855951,5
+xi_1483,25855951,5
+70454973,25855951,4
+79559178,25855951,3
+42368147,25855951,3
+4204545,25855951,4
+ximentang,25855951,5
+4236071,25855951,3
+yktimeless,25855951,5
+28736165,25855951,4
+81757410,25855951,4
+alec13131,25855951,4
+59339605,25855951,5
+pinomax,25855951,3
+130154428,25855951,4
+80245550,25855951,5
+49845781,25855951,4
+winnie0212,25855951,5
+anoukhood,25855951,5
+InfoG,25855951,1
+4196011,25855951,4
+49483832,25855951,5
+icescreameeeer,25855951,5
+69386924,25855951,5
+51605730,25855951,4
+ireneyan,25855951,5
+81404706,25855951,3
+Asylee,25855951,5
+mixj93,25855951,4
+63059985,25855951,4
+57048842,25855951,5
+52954426,25855951,4
+podolski,25855951,4
+45080512,25855951,5
+70168807,25855951,5
+66993627,25855951,4
+annie-bean,25855951,3
+2402858,25855951,4
+70081984,25855951,5
+Ophelia-108,25855951,5
+55382934,25855951,5
+63583816,25855951,4
+63513932,25855951,5
+Jash1118,25855951,4
+45878132,25855951,4
+63915564,25855951,3
+79571475,25855951,4
+57256419,25855951,5
+3570630,25855951,4
+ps2xboxgbaxbox,25855951,4
+elletys,25855951,4
+dengxian123,25855951,4
+44029751,25855951,5
+mickey19900513,25855951,5
+55621323,25855951,4
+49364738,25855951,4
+61572428,25855951,4
+dadadongdada,25855951,5
+Yetton,25855951,4
+tedious-ing420,25855951,5
+ycsgj,25855951,5
+49083776,25855951,3
+nyesunflower,25855951,5
+57992148,25855951,5
+53908274,25855951,5
+5967502,25855951,5
+69168173,25855951,3
+mufishchi,25855951,4
+36360139,25855951,4
+68353669,25855951,4
+jianfeirun,25855951,3
+54536885,25855951,5
+yourblossom,25855951,5
+chrisWen,25855951,3
+mengaxin,25855951,4
+more-u-are,25855951,3
+43518138,25855951,5
+bbbbbbbw,25855951,4
+ishtarie,25855951,5
+thomsonkoo,25855951,3
+53982181,25855951,4
+69016984,25855951,3
+29613060,25855951,4
+doufutou,25855951,3
+49003252,25855951,3
+74942804,25855951,4
+louis4498,25855951,5
+28959917,25855951,4
+willsofshatter,25855951,5
+64898125,25855951,4
+48572094,25855951,5
+47876726,25855951,5
+may5may,25855951,5
+1730596,25855951,4
+126980247,25855951,3
+70827051,25855951,5
+45390521,25855951,4
+XenFOne,25855951,1
+64902667,25855951,5
+loveirina,25855951,3
+4288348,25855951,4
+76351812,25855951,5
+18360610,25855951,4
+2539442,25855951,4
+54213688,25855951,4
+56803551,25855951,4
+3878442,25855951,5
+isisshirley,25855951,-1
+125750519,25855951,2
+50703649,25855951,4
+83017050,25855951,5
+59997800,25855951,3
+70752801,25855951,2
+49862758,25855951,5
+cianshijie,25855951,5
+62298442,25855951,4
+missdonglian,25855951,4
+yuanzai7,25855951,5
+nini8328,25855951,5
+18508363,25855951,5
+46021968,25855951,4
+tiwtmit,25855951,-1
+secrettie,25855951,3
+duduxiongzhifu,25855951,4
+3229572,25855951,4
+60808695,25855951,4
+lazzaro,25855951,3
+68597225,25855951,5
+4324772,25855951,3
+47684343,25855951,4
+103214078,25855951,3
+9415490,25855951,3
+feiyuting,25855951,4
+4453892,25855951,-1
+47259806,25855951,4
+Pikachu1127,25855951,3
+2079807,25855951,5
+17342003,25855951,4
+febechan,25855951,5
+46143252,25855951,5
+57149541,25855951,3
+56755911,25855951,4
+Listen.,25855951,5
+dabao_0107,25855951,5
+69814261,25855951,4
+39192898,25855951,5
+47308476,25855951,5
+littleumbrella,25855951,4
+Michellekids,25855951,4
+60154183,25855951,4
+bonhan,25855951,5
+79448884,25855951,-1
+107663768,25855951,4
+highmore91,25855951,4
+cyansugar,25855951,4
+58364140,25855951,3
+zhqi11,25855951,3
+68982758,25855951,5
+2600693,25855951,2
+53248408,25855951,5
+sabrina.zmy,25855951,5
+3410857,25855951,4
+37826043,25855951,5
+80140628,25855951,5
+brew,25855951,4
+44129141,25855951,4
+96070457,25855951,4
+36819020,25855951,-1
+haejia,25855951,5
+53278965,25855951,5
+74679165,25855951,4
+darendaren,25855951,5
+44714353,25855951,5
+anliucom,25855951,3
+50118479,25855951,3
+80576484,25855951,5
+lori34,25855951,5
+fish,25855951,4
+126344543,25855951,5
+crazydu,25855951,4
+fuck_time,25855951,5
+126183742,25855951,4
+50405543,25855951,5
+1233038,25855951,4
+wangjia0702,25855951,4
+51653649,25855951,5
+vivienvb,25855951,4
+2760910,25855951,5
+61272579,25855951,5
+45869247,25855951,5
+69568967,25855951,5
+124673109,25855951,5
+57088195,25855951,4
+yyhhf,25855951,-1
+1383301,25855951,4
+mpower007,25855951,3
+luffyisdancing,25855951,4
+antee,25855951,4
+bigmiao,25855951,4
+30524544,25855951,5
+50769743,25855951,4
+32433633,25855951,3
+mcbird3017,25855951,5
+52199185,25855951,5
+1010302,25855951,3
+126849700,25855951,4
+40504340,25855951,3
+emor1106,25855951,3
+67861538,25855951,4
+76435601,25855951,5
+53132873,25855951,5
+lesleyjiang,25855951,4
+2782757,25855951,4
+36678476,25855951,5
+57026267,25855951,5
+4190834,25855951,4
+txiaomiao,25855951,5
+62904904,25855951,5
+130050979,25855951,5
+sjch,25855951,4
+70034039,25855951,3
+yytttna,25855951,4
+1351696,25855951,5
+69019465,25855951,4
+53485894,25855951,5
+44628811,25855951,3
+xiaozhusi,25855951,4
+47902481,25855951,-1
+61602922,25855951,4
+jisixue0111,25855951,3
+BluebellGrace,25855951,4
+BluebellGrace,25855951,4
+56599917,25855951,5
+ovosophia,25855951,4
+41220701,25855951,5
+wsbaihu,25855951,5
+CrazyChan,25855951,4
+xxs127,25855951,3
+35929918,25855951,4
+1068125,25855951,4
+83507458,25855951,4
+47319867,25855951,5
+1848337,25855951,4
+Lucky_zx,25855951,4
+41976054,25855951,3
+mrbrightside,25855951,4
+YukiYou,25855951,4
+58087167,25855951,4
+47757084,25855951,4
+53878159,25855951,4
+2529749,25855951,4
+2529749,25855951,4
+20242950,25855951,5
+55272945,25855951,5
+74536227,25855951,5
+shijianchangan,25855951,4
+vivianqizai,25855951,5
+maomis,25855951,4
+77568488,25855951,4
+newbear,25855951,4
+120008046,25855951,4
+evanye,25855951,4
+83418476,25855951,4
+bankeed,25855951,5
+45543286,25855951,3
+gloria1102,25855951,4
+72153259,25855951,3
+52167289,25855951,5
+Issac416,25855951,5
+27656435,25855951,4
+pywx,25855951,4
+58249010,25855951,5
+3896991,25855951,4
+3712644,25855951,5
+tongna,25855951,3
+57095832,25855951,4
+76887347,25855951,4
+76157804,25855951,4
+48407248,25855951,4
+49045641,25855951,4
+50797982,25855951,4
+2294404,25855951,3
+83143884,25855951,3
+58783819,25855951,4
+xilouchen,25855951,4
+bdlcS,25855951,5
+xuaoling,25855951,4
+xiaohundaban,25855951,4
+52770411,25855951,5
+41130036,25855951,4
+94394247,25855951,3
+56498451,25855951,5
+judybear,25855951,4
+68481342,25855951,5
+44517407,25855951,5
+warmblanket,25855951,-1
+7221416,25855951,5
+58536535,25855951,4
+SeyfriedAriel,25855951,-1
+beepee,25855951,4
+3873448,25855951,5
+116054561,25855951,5
+zod798,25855951,4
+limitedlife,25855951,4
+38736772,25855951,3
+45261585,25855951,4
+jiangrui89,25855951,3
+54963261,25855951,4
+82424254,25855951,5
+41012306,25855951,4
+chuleiwu,25855951,4
+52696829,25855951,4
+lbeer,25855951,5
+Candy_Ghost,25855951,5
+zypq,25855951,4
+79452257,25855951,4
+59797746,25855951,4
+favezhihao,25855951,5
+41786402,25855951,5
+51086058,25855951,5
+3202437,25855951,4
+1335163,25855951,4
+35051709,25855951,4
+3006521,25855951,4
+65813989,25855951,5
+1901600,25855951,4
+petterzhang,25855951,3
+sb54ha,25855951,5
+78753463,25855951,5
+yixi7,25855951,5
+71416831,25855951,3
+53147371,25855951,4
+lotusworld,25855951,4
+zybxixi,25855951,5
+kkx2222,25855951,4
+72438301,25855951,4
+67148832,25855951,5
+63281299,25855951,4
+98524765,25855951,5
+36664361,25855951,5
+Heyimwalker,25855951,3
+57980305,25855951,5
+47021535,25855951,-1
+wuzouhuanghun,25855951,4
+satanprince,25855951,5
+chenzi19890718,25855951,5
+62846835,25855951,5
+46011907,25855951,5
+73958470,25855951,5
+128907449,25855951,4
+50867193,25855951,4
+67449498,25855951,4
+lingweiran_0305,25855951,5
+76278431,25855951,3
+50079024,25855951,-1
+75426424,25855951,5
+cozylee,25855951,4
+52156870,25855951,5
+yededi8821,25855951,4
+42804016,25855951,5
+christopherlin,25855951,4
+wxxxx,25855951,3
+66138098,25855951,5
+39107236,25855951,5
+61058075,25855951,3
+heartandsoul,25855951,4
+119288749,25855951,5
+royin.chao,25855951,4
+80654901,25855951,5
+127905303,25855951,-1
+64880714,25855951,2
+52281129,25855951,-1
+62036935,25855951,5
+kingkongbarbie,25855951,4
+70296365,25855951,4
+79782865,25855951,4
+89852120,25855951,5
+36458457,25855951,4
+106794129,25855951,4
+thehours_lxx,25855951,4
+61133613,25855951,5
+65164486,25855951,5
+dodoo7,25855951,5
+39306601,25855951,5
+2592575,25855951,5
+80470246,25855951,3
+92298233,25855951,5
+120563917,25855951,5
+1917670,25855951,4
+7609988,25855951,3
+1114835,25855951,3
+Dragon13,25855951,5
+31548307,25855951,5
+3274950,25855951,-1
+52968697,25855951,2
+67393303,25855951,4
+jasonwzz,25855951,5
+114743754,25855951,5
+glorymanutd,25855951,4
+113050393,25855951,5
+77048663,25855951,5
+80659174,25855951,5
+guanzihuiji,25855951,5
+riceseedling,25855951,3
+87636985,25855951,4
+50718256,25855951,4
+casoon,25855951,5
+53735887,25855951,5
+2576205,25855951,5
+59217273,25855951,4
+115474394,25855951,5
+50880780,25855951,3
+121657475,25855951,5
+91926682,25855951,4
+52072030,25855951,4
+wena,25855951,5
+Annlee1891,25855951,5
+2578076,25855951,5
+35640176,25855951,5
+Clarke,25855951,3
+55421766,25855951,5
+41505204,25855951,4
+Curry_Egg,25855951,3
+59789186,25855951,5
+45375152,25855951,5
+76933799,25855951,5
+75952866,25855951,4
+buddhajump,25855951,4
+62569679,25855951,4
+47321536,25855951,5
+1159296,25855951,4
+65408583,25855951,4
+G--er,25855951,4
+66136937,25855951,5
+2597019,25855951,5
+ryeon,25855951,4
+liszt_pp,25855951,4
+18133718,25855951,5
+baozha,25855951,4
+107554806,25855951,5
+74286517,25855951,4
+chuqihua,25855951,4
+Polo79,25855951,4
+kellykelly,25855951,5
+53518992,25855951,5
+jean627,25855951,5
+4561838,25855951,-1
+61823164,25855951,3
+40219878,25855951,5
+97327551,25855951,3
+49921068,25855951,5
+wen_Schwartz,25855951,4
+7255952,25855951,4
+illusion,25855951,3
+fan0208,25855951,4
+MAOXIAOCHENG,25855951,4
+kuangren79,25855951,3
+3355859,25855951,4
+67763944,25855951,4
+109055681,25855951,3
+justsay,25855951,5
+52466141,25855951,5
+65087582,25855951,5
+besim6ple,25855951,3
+ally11,25855951,5
+33597419,25855951,3
+2060005,25855951,5
+leeyzh,25855951,3
+44881183,25855951,4
+2853604,25855951,3
+muxiaoxu,25855951,5
+72432038,25855951,4
+122353324,25855951,5
+61602134,25855951,3
+souffle-,25855951,4
+53559432,25855951,3
+3610351,25855951,4
+50405560,25855951,3
+23631754,25855951,5
+54770734,25855951,5
+qinyouxuan,25855951,4
+47338150,25855951,5
+76153086,25855951,4
+45761304,25855951,4
+kp81ndlf,25855951,3
+2694556,25855951,4
+99223990,25855951,5
+78656769,25855951,4
+aeolia1966,25855951,5
+72297194,25855951,5
+80828015,25855951,5
+51445817,25855951,3
+2125225,25855951,5
+iiizero,25855951,5
+49197725,25855951,-1
+26907758,25855951,3
+42149787,25855951,3
+blueskyfly,25855951,3
+80346808,25855951,4
+79390200,25855951,-1
+68165258,25855951,5
+2200377,25855951,5
+2174443,25855951,5
+32128731,25855951,4
+shyspring,25855951,4
+43840561,25855951,5
+8752115,25855951,4
+61575348,25855951,4
+Poisonnn,25855951,5
+kanghao413,25855951,4
+COCOCOQUEEN,25855951,4
+44887198,25855951,5
+29074419,25855951,4
+57714176,25855951,4
+80826623,25855951,5
+51256449,25855951,4
+47297203,25855951,4
+113487954,25855951,5
+2181075,25855951,3
+linningmeng,25855951,4
+zhujiao,25855951,5
+holdingtt,25855951,4
+45577366,25855951,4
+67489382,25855951,5
+meters,25855951,5
+75260597,25855951,5
+clementinetsu,25855951,3
+80234954,25855951,4
+2671857,25855951,5
+Ovilia.,25855951,4
+4372093,25855951,5
+lulunicol,25855951,5
+3952754,25855951,5
+49149424,25855951,4
+xxfx,25855951,4
+xhtml.tc,25855951,5
+53592125,25855951,4
+naonaosite,25855951,4
+kay_oo7,25855951,5
+shawnNK,25855951,3
+47218241,25855951,5
+ys1013,25855951,3
+57818188,25855951,3
+48787128,25855951,5
+antwon,25855951,5
+misspi,25855951,-1
+54715376,25855951,5
+65664176,25855951,3
+95817419,25855951,5
+lolypop,25855951,5
+2429292,25855951,4
+124142241,25855951,4
+oscarwp,25855951,4
+8312118,25855951,3
+34217360,25855951,4
+8549482,25855951,5
+lostoldboy,25855951,5
+37303827,25855951,4
+46920813,25855951,3
+32033896,25855951,5
+39529333,25855951,4
+126327911,25855951,5
+claudie,25855951,4
+61741541,25855951,4
+markshi425,25855951,5
+shelleyhsu,25855951,3
+59830709,25855951,4
+leodic,25855951,5
+84386523,25855951,4
+43595031,25855951,4
+2209141,25855951,5
+zhtianyu,25855951,5
+february_,25855951,4
+jianinglee,25855951,3
+xiamudemao,25855951,4
+62614786,25855951,5
+52098312,25855951,4
+41007086,25855951,4
+52282089,25855951,4
+81850559,25855951,4
+barcelonazhou,25855951,4
+53344657,25855951,4
+58110414,25855951,5
+59607562,25855951,4
+22871754,25855951,5
+67077607,25855951,4
+caocaoa,25855951,4
+gongqiong,25855951,4
+52657880,25855951,5
+53975225,25855951,4
+67292272,25855951,5
+80110880,25855951,5
+catherine_koo,25855951,4
+80017178,25855951,4
+47285151,25855951,3
+lephemera,25855951,4
+summermaoyi,25855951,4
+65930256,25855951,4
+11105664,25855951,5
+77622567,25855951,4
+yaya_chichi,25855951,4
+49228448,25855951,5
+62582526,25855951,4
+Vivian77,25855951,5
+29800647,25855951,4
+68260130,25855951,-1
+66394593,25855951,3
+dorothylee0406,25855951,3
+45661291,25855951,4
+66234722,25855951,4
+willydeutsh,25855951,-1
+cloverzxy,25855951,4
+mishi,25855951,4
+Aroma.11,25855951,4
+OrianneLau,25855951,3
+2803619,25855951,2
+83983151,25855951,5
+coolang,25855951,5
+3588917,25855951,3
+ycmcif,25855951,4
+119304037,25855951,5
+zhangyired,25855951,5
+42632136,25855951,3
+la_ficine,25855951,2
+60027417,25855951,4
+arcadia1985,25855951,5
+sirk,25855951,4
+Charloo,25855951,4
+63593169,25855951,5
+54166163,25855951,4
+52143519,25855951,3
+97431474,25855951,3
+63941479,25855951,5
+1333942,25855951,4
+sgzjhw,25855951,3
+hichai,25855951,4
+77350146,25855951,4
+3432362,25855951,4
+47870683,25855951,3
+illiteracy,25855951,3
+xiaoxiaonong,25855951,5
+Forrestgary,25855951,5
+89108079,25855951,5
+2424181,25855951,5
+reginwon,25855951,4
+Vantt,25855951,4
+zhangmazii,25855951,5
+2923778,25855951,4
+willd,25855951,-1
+4597338,25855951,3
+cloudy20011128,25855951,4
+61222044,25855951,5
+39663881,25855951,5
+jackoldbear,25855951,4
+72098236,25855951,5
+Stephanieman,25855951,4
+FerrariCake,25855951,5
+4040058,25855951,3
+74103020,25855951,3
+49393280,25855951,4
+73615666,25855951,5
+flora1228,25855951,4
+emma1219,25855951,4
+ThatNL,25855951,5
+50174936,25855951,4
+70236644,25855951,3
+3881393,25855951,5
+ossianshiwo,25855951,3
+1867072,25855951,3
+74778874,25855951,4
+weexf,25855951,4
+81249317,25855951,4
+58343870,25855951,5
+58540622,25855951,4
+Ashtrayyyyy,25855951,4
+PP_wei,25855951,5
+61708833,25855951,5
+90554090,25855951,4
+lujuan,25855951,4
+mylovelylove,25855951,4
+lunatique,25855951,4
+48034975,25855951,4
+koxlcz,25855951,5
+2298833,25855951,4
+58257487,25855951,5
+3658863,25855951,4
+soyimmen,25855951,5
+51472613,25855951,5
+Lylaohyeah,25855951,5
+45804814,25855951,4
+maomao19901108,25855951,5
+3334081,25855951,4
+nan313,25855951,4
+iEels,25855951,5
+65366516,25855951,4
+67516737,25855951,5
+fuzyu,25855951,4
+29345085,25855951,5
+58106727,25855951,4
+huaiyundemazha,25855951,3
+keeliu67,25855951,4
+50527578,25855951,4
+33245540,25855951,5
+44436066,25855951,3
+sp0328,25855951,5
+87651171,25855951,3
+88236856,25855951,4
+raising_dawn,25855951,4
+55364280,25855951,4
+btone0808,25855951,3
+96044338,25855951,3
+96044338,25855951,3
+61506971,25855951,5
+74855673,25855951,4
+63014642,25855951,4
+12391728,25855951,5
+elijahh,25855951,4
+tanya_yan,25855951,5
+dudududu,25855951,5
+lisbet,25855951,3
+cul_de_sac27,25855951,4
+sickboy,25855951,4
+52732364,25855951,4
+vivifyvivi,25855951,4
+wanyueyan,25855951,4
+3826970,25855951,-1
+3953760,25855951,4
+3007182,25855951,4
+45665171,25855951,5
+blindekat,25855951,5
+mylittlehero,25855951,3
+99973348,25855951,5
+qwersteve,25855951,-1
+67823084,25855951,4
+49890012,25855951,4
+27128433,25855951,4
+1417391,25855951,4
+57749181,25855951,4
+65662348,25855951,5
+46963738,25855951,4
+55993064,25855951,5
+citruss,25855951,4
+2974918,25855951,4
+Jacandrews,25855951,4
+3504477,25855951,4
+50732923,25855951,5
+maxianwei,25855951,4
+sandyran,25855951,4
+73790083,25855951,5
+hyocheong,25855951,4
+52278915,25855951,4
+xiqi,25855951,4
+Chrysilla-chunc,25855951,5
+werder100,25855951,4
+verrivanii,25855951,4
+47920799,25855951,3
+46911931,25855951,5
+56924619,25855951,4
+traceypuyue,25855951,4
+ruo1996,25855951,3
+aprilwind_shi,25855951,5
+41792966,25855951,4
+59774628,25855951,5
+62743500,25855951,5
+hedgehog,25855951,5
+29827748,25855951,5
+63069817,25855951,4
+44206290,25855951,5
+58576630,25855951,5
+66057217,25855951,5
+xinziai,25855951,3
+49612534,25855951,5
+tjz230,25855951,5
+teselaaaaaaa,25855951,3
+claireqq,25855951,4
+87209971,25855951,4
+viviansun,25855951,5
+2219965,25855951,5
+FrankWasabi,25855951,3
+choushabi,25855951,3
+42927229,25855951,4
+camellee,25855951,4
+31281892,25855951,-1
+63422177,25855951,4
+3509096,25855951,5
+Cincky.XiN,25855951,3
+stream_wang,25855951,4
+proband,25855951,3
+3540441,25855951,4
+poissons19,25855951,4
+ydlxiaolong,25855951,4
+wwbread,25855951,5
+2468582,25855951,4
+39977631,25855951,5
+fenglimuren,25855951,4
+deepurple,25855951,1
+25911106,25855951,5
+fernandosong,25855951,5
+dyq930211,25855951,4
+petercat,25855951,3
+81221310,25855951,4
+miracle1985,25855951,3
+115188831,25855951,5
+Lida0932,25855951,5
+zhy88fish,25855951,5
+2996485,25855951,4
+dillys,25855951,4
+li_euan,25855951,4
+129035428,25855951,4
+zumaqiong,25855951,4
+36810592,25855951,4
+36416205,25855951,4
+yway1101,25855951,5
+4387690,25855951,4
+73530411,25855951,4
+36556180,25855951,5
+lanyangyangdecc,25855951,4
+zyd0527,25855951,4
+136339347,25855951,3
+134574897,25855951,4
+47535024,25855951,3
+66552525,25855951,5
+92962162,25855951,4
+48148912,25855951,5
+49538698,25855951,4
+hohoyuhu,25855951,5
+Tracy.Guo,25855951,5
+56435930,25855951,4
+77490356,25855951,5
+3641355,25855951,3
+54327177,25855951,4
+70990506,26303865,4
+yushi,26303865,3
+31102423,26303865,4
+52765670,26303865,3
+134625303,26303865,3
+june.q,26303865,4
+Nokia95,26303865,5
+wunie,26303865,2
+74499406,26303865,2
+57824649,26303865,4
+49116416,26303865,3
+78731933,26303865,3
+1900968,26303865,3
+2298833,26303865,4
+yxm8854,26303865,5
+61619787,26303865,5
+christianwong,26303865,5
+1651604,26303865,3
+liweiheng,26303865,3
+82687720,26303865,4
+49062387,26303865,3
+2089491,26303865,4
+59127988,26303865,4
+50527578,26303865,-1
+104592207,26303865,3
+83295870,26303865,1
+masaikejun,26303865,3
+cutoo,26303865,5
+18586571,26303865,3
+82628734,26303865,4
+78857918,26303865,3
+75364199,26303865,5
+chuqihua,26303865,4
+60392839,26303865,2
+46976040,26303865,1
+magic1029,26303865,4
+3251070,26303865,-1
+73571891,26303865,4
+yiyedu,26303865,4
+87602683,26303865,3
+87602683,26303865,3
+lpoihy,26303865,2
+33620830,26303865,5
+18360610,26303865,3
+ys1013,26303865,2
+72485230,26303865,5
+58930883,26303865,2
+2278139,26303865,3
+60486561,26303865,2
+evenrain2008,26303865,4
+Obtson,26303865,3
+leeleoxia,26303865,5
+72279651,26303865,3
+3252036,26303865,3
+50771966,26303865,4
+4214564,26303865,4
+lingrui1995,26303865,3
+sai27,26303865,5
+2429292,26303865,3
+ps2xboxgbaxbox,26303865,3
+jude_chen,26303865,5
+117339283,26303865,2
+76737589,26303865,5
+charleskam,26303865,2
+AeroAnte,26303865,4
+77236741,26303865,4
+127797249,26303865,4
+78667352,26303865,4
+l---j,26303865,4
+abin520918,26303865,4
+caocaoa,26303865,3
+56922790,26303865,5
+milanmao,26303865,4
+51997514,26303865,2
+63531003,26303865,5
+61845850,26303865,3
+70930463,26303865,3
+starstargoo,26303865,2
+lingdongling,26303865,3
+66552525,26303865,4
+66552525,26303865,4
+3529035,26303865,-1
+nemoprincess,26303865,-1
+kp81ndlf,26303865,3
+yol0321,26303865,4
+pjcs,26303865,3
+57965328,26303865,5
+kevin_lu1001,26303865,4
+62749551,26303865,4
+82248938,26303865,2
+66904861,26303865,4
+63612050,26303865,4
+1070762,26303865,3
+ameba,26303865,-1
+jasocn,26303865,5
+btone0808,26303865,3
+99117906,26303865,1
+19627331,26303865,4
+yfqc24pippo,26303865,3
+62375548,26303865,5
+130349170,26303865,5
+83371422,26303865,-1
+stevenfive,26303865,3
+zhaowei78,26303865,4
+48541726,26303865,4
+1886385,26303865,4
+88439681,26303865,3
+cecilelover,26303865,-1
+45158897,26303865,4
+48885291,26303865,1
+donnie,26303865,3
+120008046,26303865,5
+48510181,26303865,-1
+shanxr,26303865,1
+luoyunxiang72,26303865,5
+65366516,26303865,4
+54141112,26303865,4
+67238808,26303865,3
+dai-yi,26303865,5
+67681966,26303865,4
+schuni,26303865,5
+56769317,26303865,4
+55972806,26303865,3
+87651171,26303865,2
+jiaxintuanzi,26303865,3
+70392127,26303865,3
+3065454,26303865,4
+51992445,26303865,4
+49995537,26303865,4
+yuanyang1100,26303865,5
+115125689,26303865,4
+120287477,26303865,3
+2196262,26303865,4
+55677796,26303865,3
+luhua,26303865,3
+132418453,26303865,4
+43557662,26303865,4
+cocojamboo,26303865,4
+66057217,26303865,4
+baoshumin,26303865,4
+3941641,26303865,5
+65699766,26303865,5
+thomsonkoo,26303865,4
+79955875,26303865,4
+4516843,26303865,5
+asanisimasa,26303865,3
+52872697,26303865,2
+47086941,26303865,3
+MaclovenZD,26303865,4
+67843912,26303865,3
+HYGUY,26303865,4
+61945985,26303865,3
+sxy921026,26303865,4
+136004166,26303865,5
+63973080,26303865,5
+64667835,26303865,4
+8523675,26303865,4
+100020528,26303865,3
+Armande,26303865,4
+101778299,26303865,4
+101778299,26303865,4
+2979287,26303865,2
+paltrow,26303865,3
+51974103,26303865,4
+1800854,26303865,4
+25960765,26303865,4
+106347535,26303865,4
+77049026,26303865,4
+55929307,26303865,1
+cappuccino-jl,26303865,3
+3410802,26303865,5
+102077432,26303865,5
+laomo,26303865,4
+63403641,26303865,2
+26312947,26303865,3
+bearblindman,26303865,3
+QYDZYZQ,26303865,3
+yangqiaohe,26303865,4
+59276802,26303865,2
+zyx1991313,26303865,-1
+73983245,26303865,5
+55324515,26303865,3
+54046955,26303865,5
+Yanan8,26303865,5
+maggiemars,26303865,4
+7609988,26303865,3
+53021898,26303865,3
+65940627,26303865,5
+49322454,26303865,2
+82339358,26303865,2
+53650868,26303865,4
+45238478,26303865,5
+xfdzl,26303865,1
+136105746,26303865,5
+losrfuu,26303865,4
+136969391,26303865,3
+2085918,26303865,4
+57007520,26303865,3
+muxiaoxu,26303865,4
+81799497,26303865,4
+25350324,26303865,-1
+48156038,26303865,4
+58369888,26303865,4
+fontain,26303865,4
+51635179,26303865,4
+54814792,26303865,3
+95968737,26303865,5
+62034584,26303865,4
+1892627,26303865,4
+1806463,26303865,3
+99093340,26303865,4
+65176170,26303865,5
+liwanjun,26303865,4
+92468807,26303865,4
+1364563,26303865,4
+4217605,26303865,4
+42368147,26303865,3
+66716197,26303865,1
+122868077,26303865,3
+49272831,26303865,4
+65635790,26303865,3
+58364140,26303865,5
+94394247,26303865,5
+Fesvia,26303865,4
+63306444,26303865,4
+47417998,26303865,4
+lisbet,26303865,3
+25740506,26303865,5
+vividtime,26303865,4
+COCOCOQUEEN,26303865,4
+106663926,26303865,3
+28219717,26303865,4
+88415094,26303865,4
+waterskop,26303865,3
+50900048,26303865,4
+iuheuxnehc,26303865,3
+73064038,26303865,4
+48567695,26303865,3
+52693663,26303865,4
+ILWTFT,26303865,3
+ALEC1874,26303865,4
+87035372,26303865,3
+81107474,26303865,4
+ruilixiurui,26303865,3
+122232090,26303865,3
+null12345,26303865,4
+impzz,26303865,4
+foleyfan,26303865,3
+tongwandou11,26303865,-1
+3809045,26303865,4
+69325397,26303865,4
+stagechiu,26303865,4
+2722876,26303865,4
+48687824,26303865,4
+53269895,26303865,5
+matchbox,26303865,5
+Huxinghang510,26303865,5
+coldmountain_,26303865,3
+mackalex,26303865,3
+98956225,26303865,4
+122932689,26303865,4
+51564570,26303865,4
+xusisu,26303865,3
+roseandwater,26303865,4
+53773216,26303865,4
+48168328,26303865,3
+121920760,26303865,4
+afterthis,26303865,5
+59458875,26303865,4
+jewelshao,26303865,4
+48090771,26303865,4
+xiaopang1106,26303865,4
+127265847,26303865,4
+h514367193,26303865,4
+61601559,26303865,4
+73530411,26303865,4
+130540529,26303865,4
+lingxiaoni,26303865,5
+spottedowl,26303865,2
+irrisawu,26303865,4
+yinxiang,26303865,4
+tjz230,26303865,5
+102712467,26303865,4
+26713841,26303865,3
+52695229,26303865,4
+pandoranavi,26303865,5
+direvil,26303865,3
+69311284,26303865,3
+1828278,26303865,4
+dreamheartfly,26303865,4
+BeenThereBefore,26303865,4
+kleinerminerva,26303865,4
+47094437,26303865,5
+superxiaoqi123,26303865,5
+yyt0105,26303865,4
+120441883,26303865,4
+65536885,26303865,5
+narcissus_iris,26303865,-1
+50570726,26303865,4
+66400312,26303865,3
+65710892,26303865,5
+3006833,26303865,3
+lollypain,26303865,-1
+44969749,26303865,3
+huanghunzhiniao,26303865,4
+67099663,26303865,5
+tfdlyoo,26303865,5
+3547067,26303865,2
+92399399,26303865,3
+doro,26303865,5
+zhongshanaoli,26303865,4
+lowai,26303865,3
+91882592,26303865,4
+conanemily,26303865,3
+33342391,26303865,4
+Jacandrews,26303865,4
+ruthchai,26303865,4
+merleau,26303865,2
+chloe_huang,26303865,4
+errena,26303865,4
+errena,26303865,4
+heptahedron,26303865,5
+noodles1948,26303865,1
+43948105,26303865,3
+vera240192,26303865,3
+75812054,26303865,4
+49048693,26303865,5
+octopus0831,26303865,3
+moviecafe,26303865,4
+45345873,26303865,4
+TATA641,26303865,5
+55658171,26303865,5
+pogostar,26303865,4
+Xmelie,26303865,4
+55943262,26303865,4
+burymyhead,26303865,4
+sickboy,26303865,5
+77092352,26303865,3
+42680177,26303865,5
+46070819,26303865,4
+46989267,26303865,2
+ellestmorte,26303865,3
+79846892,26303865,4
+58520151,26303865,4
+poneebyponee,26303865,-1
+tenkappa,26303865,2
+3812638,26303865,-1
+43169329,26303865,4
+judy0420,26303865,3
+40535199,26303865,-1
+abigale13,26303865,4
+oursonkuma,26303865,3
+kop-de,26303865,4
+terry_f,26303865,-1
+1746842,26303865,5
+51394725,26303865,3
+loveirina,26303865,4
+Vampire0704,26303865,3
+37676493,26303865,3
+4819599,26303865,4
+3540441,26303865,4
+linlu93112,26303865,3
+15912473,26303865,3
+20676116,26303865,4
+rainerrilke,26303865,3
+goldenfish,26303865,5
+musicard,26303865,-1
+whuizw,26303865,5
+79272694,26303865,3
+et2o,26303865,2
+58114980,26303865,3
+hceline,26303865,4
+yangcht,26303865,4
+3670070,26303865,4
+39097779,26303865,4
+hugowai,26303865,4
+petitespot,26303865,4
+3509096,26303865,4
+naitil,26303865,5
+45615367,26303865,5
+45615367,26303865,5
+3561547,26303865,3
+Moretoless,26303865,4
+Pabalee,26303865,4
+41419698,26303865,4
+31713107,26303865,4
+Brad_King,26303865,5
+aimeangus,26303865,5
+43840561,26303865,2
+50116920,26303865,5
+fxoc,26303865,3
+33542922,26303865,4
+Mllelovelife,26303865,5
+41370734,26303865,5
+yeeeeeee,26303865,4
+babeblue,26303865,5
+43385063,26303865,4
+Spring_LQ,26303865,4
+guto,26303865,5
+36939317,26303865,5
+sakurasong,26303865,4
+1051433,26303865,5
+4347027,26303865,4
+fakeyouout,26303865,4
+winterzone,26303865,3
+yinkun,26303865,5
+dklovesmovie,26303865,3
+66595969,26303865,4
+hushabyy,26303865,3
+34347136,26303865,5
+overlysilly,26303865,4
+27199413,26303865,4
+74248985,26303865,3
+owen289607833,26303865,5
+edward1988,26303865,2
+52864366,26303865,3
+46911720,26303865,5
+enderstar,26303865,3
+78500828,26303865,3
+4251957,26303865,-1
+59774628,26303865,4
+47974911,26303865,4
+clqm,26303865,3
+1485397,26303865,4
+iravari,26303865,4
+60067719,26303865,-1
+shoushouan,26303865,3
+shenggu,26303865,4
+mp4_20,26303865,4
+jouk,26303865,4
+melynda,26303865,4
+helenhong,26303865,3
+58059498,26303865,4
+janejeh,26303865,4
+6910069,26303865,-1
+85665063,26303865,4
+iris29,26303865,3
+63422177,26303865,4
+sodawon,26303865,2
+SamsonOu,26303865,4
+80063534,26303865,5
+wangdoudou20,26303865,3
+lea_x,26303865,4
+colintide,26303865,4
+shallwinyee,26303865,5
+Emina_,26303865,5
+emlia,26303865,4
+1902646,26303865,3
+samantha-jy,26303865,3
+77164733,26303865,5
+rajorAn,26303865,4
+emilywj,26303865,4
+53559432,26303865,5
+38258575,26303865,5
+BBmachtalles,26303865,5
+AspireY,26303865,4
+4338616,26303865,4
+duoyun2,26303865,-1
+TERRYBEAR,26303865,4
+ruo1996,26303865,4
+infero,26303865,2
+yeslie,26303865,4
+shezaizuyi,26303865,4
+terenceyibo,26303865,4
+63730928,26303865,4
+snow962464,26303865,5
+nieblalan,26303865,4
+81555856,26303865,4
+yangshuangblue,26303865,4
+85643943,26303865,4
+petercat,26303865,4
+luzhiyu,26303865,4
+vikingxxx,26303865,4
+136496500,26303865,3
+101694101,26303865,4
+73736228,26303865,5
+panpzy,26303865,4
+82495754,26303865,1
+82490510,26303865,4
+2492404,26303865,5
+70990506,26303865,4
+yushi,26303865,3
+31102423,26303865,4
+52765670,26303865,3
+134625303,26303865,3
+june.q,26303865,4
+Nokia95,26303865,5
+wunie,26303865,2
+74499406,26303865,2
+57824649,26303865,4
+49116416,26303865,3
+78731933,26303865,3
+1900968,26303865,3
+2298833,26303865,4
+yxm8854,26303865,5
+61619787,26303865,5
+christianwong,26303865,5
+1651604,26303865,3
+liweiheng,26303865,3
+82687720,26303865,4
+88345379,26304268,2
+csp,26304268,4
+Zizou_Vam,26304268,3
+eefee,26304268,4
+96638998,26304268,4
+60317509,26304268,4
+yeallingmay,26304268,3
+83295870,26304268,3
+blue_gemini,26304268,4
+virginiaboat,26304268,-1
+Kostova,26304268,5
+137669101,26304268,3
+darkhands,26304268,4
+81132475,26304268,3
+68551392,26304268,4
+35224934,26304268,4
+59341748,26304268,3
+45135037,26304268,3
+Like_zsy,26304268,3
+vivifyvivi,26304268,1
+pulingfans,26304268,3
+3006385,26304268,4
+68607460,26304268,2
+2244887,26304268,4
+41115422,26304268,3
+liaozhongchao,26304268,4
+W3IQ7,26304268,4
+3187343,26304268,3
+103271136,26304268,3
+meront,26304268,4
+16928498,26304268,3
+47243761,26304268,3
+duc_k,26304268,3
+3789295,26304268,3
+66692285,26304268,3
+likecake,26304268,2
+48065972,26304268,3
+58338006,26304268,4
+xiaopin19,26304268,3
+skay,26304268,3
+58629032,26304268,3
+128991169,26304268,5
+ohahahu,26304268,3
+46914347,26304268,3
+sharkspeare,26304268,3
+sofafish,26304268,2
+54880973,26304268,4
+zl99,26304268,4
+76549265,26304268,3
+13262103,26304268,3
+58009000,26304268,4
+41634233,26304268,5
+2266030,26304268,3
+yangfengdouban,26304268,3
+27323715,26304268,4
+47193126,26304268,3
+123543090,26304268,4
+73572671,26304268,4
+48674547,26304268,1
+missapple,26304268,-1
+3572516,26304268,2
+LolaLola,26304268,-1
+2849700,26304268,3
+52750268,26304268,5
+80660240,26304268,5
+78786637,26304268,4
+45594123,26304268,3
+73218161,26304268,5
+casablanca0912,26304268,3
+79235702,26304268,4
+1623065,26304268,4
+52286623,26304268,3
+2039887,26304268,4
+92399399,26304268,2
+AspireY,26304268,3
+STanLey_TanSoLo,26304268,3
+jiujiuprincess,26304268,3
+2265138,26304268,3
+86714653,26304268,4
+doubaning,26304268,4
+yeming727,26304268,3
+20196112,26304268,5
+Shanhui_Xu,26304268,-1
+fanzling,26304268,2
+66965988,26304268,3
+135643960,26304268,4
+lazydesigner,26304268,3
+88213659,26304268,4
+50452092,26304268,3
+71335687,26304268,3
+91524337,26304268,4
+66341284,26304268,5
+ashley17,26304268,2
+yumofu,26304268,2
+58064926,26304268,3
+LoveHugo,26304268,4
+127062843,26304268,3
+65441937,26304268,2
+70390842,26304268,4
+51165620,26304268,2
+chrisyx,26304268,4
+Ruty1985,26304268,4
+Daruke,26304268,2
+yueyuedad1972,26304268,4
+84363352,26304268,4
+lpoihy,26304268,3
+49863332,26304268,4
+3201544,26304268,4
+121173641,26304268,-1
+2273276,26304268,4
+yushi,26304268,4
+65316211,26304268,3
+xiza,26304268,4
+dlchen,26304268,3
+61797915,26304268,3
+93469106,26304268,3
+53826602,26304268,4
+lanhouzi,26304268,3
+73939740,26304268,4
+xlei130,26304268,2
+xlei130,26304268,2
+35363595,26304268,4
+62457534,26304268,4
+55504722,26304268,3
+LIUYUANZI,26304268,2
+ideyes,26304268,3
+127893299,26304268,4
+66197208,26304268,4
+bingbingaloe,26304268,4
+33042240,26304268,3
+56076845,26304268,4
+102938445,26304268,3
+61619787,26304268,4
+68631195,26304268,3
+riceseedling,26304268,3
+116073490,26304268,4
+1981762,26304268,4
+55916506,26304268,3
+103277074,26304268,4
+jianchen810,26304268,3
+59619244,26304268,4
+phoeasonix,26304268,3
+131909298,26304268,3
+137555231,26304268,3
+52084130,26304268,2
+2335013,26304268,3
+84708478,26304268,4
+ericdo,26304268,3
+68657829,26304268,-1
+ljjchn,26304268,4
+3519752,26304268,2
+80850838,26304268,3
+75328137,26304268,3
+wen1028,26304268,-1
+zhibiaoshi,26304268,3
+huoxiaoliang,26304268,3
+134146468,26304268,5
+54494232,26304268,4
+94394247,26304268,3
+48160969,26304268,2
+115695650,26304268,3
+yihengxi,26304268,4
+71561935,26304268,3
+45655057,26304268,3
+Webboy,26304268,4
+62023518,26304268,2
+shanayoyo,26304268,4
+137206904,26304268,3
+4116226,26304268,4
+68568891,26304268,3
+1226511,26304268,3
+104707030,26304268,5
+49602795,26304268,4
+adi,26304268,3
+133599006,26304268,1
+csaver,26304268,5
+43466652,26304268,3
+48834090,26304268,2
+3789079,26304268,4
+61409715,26304268,4
+TangJing1229,26304268,5
+43625639,26304268,3
+58901835,26304268,3
+samy0868,26304268,4
+4295298,26304268,3
+1795919,26304268,3
+123645263,26304268,3
+schuni,26304268,2
+puhonglei,26304268,3
+60019384,26304268,3
+4016064,26304268,3
+87638833,26304268,2
+115051698,26304268,3
+133125055,26304268,3
+54119781,26304268,2
+vermeer-dust,26304268,4
+79914885,26304268,4
+135402146,26304268,2
+79240544,26304268,4
+62314563,26304268,3
+78574533,26304268,4
+51852729,26304268,3
+72086305,26304268,3
+1482191,26304268,4
+doomthr,26304268,3
+cazze,26304268,4
+71516012,26304268,3
+48860832,26304268,4
+26487427,26304268,4
+127797249,26304268,5
+136663776,26304268,3
+51377015,26304268,3
+49266863,26304268,4
+31102423,26304268,4
+40684892,26304268,4
+dorothylee0406,26304268,3
+mihuaka,26304268,3
+colourchen,26304268,3
+131800557,26304268,3
+4200336,26304268,4
+ilovehouyi,26304268,4
+felinoshuffle,26304268,3
+2692091,26304268,4
+128614662,26304268,-1
+130251472,26304268,3
+mydar,26304268,-1
+115131162,26304268,4
+68547609,26304268,3
+graycat5,26304268,-1
+66481682,26304268,3
+71937916,26304268,3
+58598277,26304268,3
+wanyaozhe,26304268,4
+jolinalbert,26304268,3
+48247472,26304268,5
+zbar1234,26304268,3
+69024870,26304268,4
+98956225,26304268,4
+sunzeya,26304268,3
+82602637,26304268,2
+53920626,26304268,3
+58269983,26304268,4
+62308831,26304268,3
+71778727,26304268,3
+129134167,26304268,4
+50306536,26304268,5
+67732575,26304268,2
+PASSMEBY,26304268,3
+125553548,26304268,4
+46015207,26304268,1
+137122181,26304268,3
+cloverllx,26304268,3
+34960572,26304268,3
+136727796,26304268,4
+andy87819,26304268,3
+41651433,26304268,5
+Octing,26304268,4
+61366971,26304268,4
+7510013,26304268,3
+cicely521,26304268,3
+32008707,26304268,3
+Kerry121,26304268,4
+1559062,26304268,3
+shinnodoo,26304268,2
+3571623,26304268,4
+dydyd_douban,26304268,3
+63307905,26304268,3
+qiabeibei314,26304268,3
+xita,26304268,4
+zommy,26304268,3
+53710768,26304268,3
+vidania,26304268,4
+1463503,26304268,3
+47227699,26304268,5
+60608137,26304268,3
+3873448,26304268,3
+llamame,26304268,3
+barzin,26304268,3
+lanyangyangdecc,26304268,3
+66352565,26304268,2
+alexyou,26304268,3
+freedom4ever_L,26304268,3
+renshendou,26304268,3
+jessica_21,26304268,4
+bxg555,26304268,-1
+41069819,26304268,3
+nemo2man,26304268,3
+A-Marvin-T,26304268,3
+joyjay,26304268,5
+33880591,26304268,2
+3514261,26304268,3
+68798188,26304268,4
+85665063,26304268,4
+27518977,26304268,3
+52635539,26304268,4
+103053604,26304268,3
+48773692,26304268,3
+121976150,26304268,4
+4467675,26304268,4
+58649588,26304268,3
+69236289,26304268,3
+Paradox_Q,26304268,3
+121619687,26304268,3
+Repression,26304268,4
+4364181,26304268,3
+zhongxiaojun,26304268,3
+xiao7jl,26304268,3
+51222661,26304268,-1
+41740929,26304268,4
+48925752,26304268,4
+70162864,26304268,2
+61742449,26304268,4
+qinxuanzi,26304268,3
+Ann-e,26304268,3
+79090756,26304268,2
+47847703,26304268,3
+38740648,26304268,3
+1525882,26304268,2
+y888888888,26304268,3
+wndtlkr,26304268,3
+chushuo,26304268,4
+4582318,26304268,3
+45520180,26304268,4
+jewelshao,26304268,4
+F_monkey,26304268,2
+regalo,26304268,3
+faycheung,26304268,4
+kissofdead,26304268,3
+li_chiao_chieh,26304268,4
+90051465,26304268,3
+tony.w,26304268,2
+121182825,26304268,2
+124717846,26304268,2
+131020888,26304268,2
+53797804,26304268,3
+4404541,26304268,3
+60392839,26304268,3
+70686440,26304268,4
+59620866,26304268,2
+43409918,26304268,2
+127688878,26304268,5
+kleinbottle,26304268,2
+47724316,26304268,3
+52765670,26304268,3
+muyiya,26304268,3
+purefoto,26304268,-1
+76467871,26304268,3
+dou_1223,26304268,4
+86926721,26304268,3
+whereshallwego,26304268,4
+52968697,26304268,4
+pm,26304268,3
+carerina,26304268,3
+104174985,26304268,4
+34727533,26304268,3
+2305028,26304268,4
+sukixiaojie,26304268,4
+124499471,26304268,4
+50930270,26304268,4
+52961960,26304268,4
+106570148,26304268,4
+4118830,26304268,5
+45446401,26304268,4
+6270415,26304268,3
+ludj_007,26304268,3
+1316648,26304268,3
+36678476,26304268,5
+ljm1213,26304268,4
+4077370,26304268,3
+127298823,26304268,-1
+51688901,26304268,4
+49460136,26304268,3
+61506971,26304268,2
+136293291,26304268,-1
+51787481,26304268,3
+Obtson,26304268,4
+61872443,26304268,2
+Amo621,26304268,4
+15367255,26304268,4
+yf611x,26304268,3
+smile_1314,26304268,4
+54158411,26304268,2
+66344990,26304268,4
+loveanimals,26304268,3
+126329792,26304268,4
+130594464,26304268,3
+105736560,26304268,3
+56916670,26304268,3
+Heyimwalker,26304268,3
+134156002,26304268,3
+xiaosaorui,26304268,3
+50769743,26304268,3
+124640229,26304268,3
+58625918,26304268,4
+57088195,26304268,3
+MaclovenZD,26304268,3
+27632752,26304268,3
+58215137,26304268,-1
+31849844,26304268,3
+xiaodou52,26304268,4
+2191537,26304268,3
+35505123,26304268,3
+66834234,26304268,3
+88938201,26304268,3
+64713560,26304268,3
+57977721,26304268,3
+121623088,26304268,5
+CClaire,26304268,3
+60333531,26304268,2
+61681574,26304268,3
+bigmiao,26304268,3
+64740791,26304268,3
+92610102,26304268,2
+1001195,26304268,3
+o0_0smile,26304268,3
+30776774,26304268,3
+Pincent,26304268,4
+leiii,26304268,4
+Hunjianxia,26304268,4
+66057217,26304268,3
+dltmw,26304268,2
+50865043,26304268,4
+68186986,26304268,4
+46513744,26304268,-1
+45278107,26304268,3
+71177487,26304268,4
+1892627,26304268,3
+djoko,26304268,3
+40067511,26304268,4
+63927330,26304268,3
+marco_0708,26304268,4
+118096038,26304268,3
+flxjp,26304268,3
+89474196,26304268,3
+56260072,26304268,3
+owenclv,26304268,3
+65854158,26304268,4
+phoebe0_0nn,26304268,4
+gezi921054,26304268,2
+133380603,26304268,3
+2187326,26304268,3
+48093431,26304268,2
+40395158,26304268,2
+33990008,26304268,4
+129577798,26304268,3
+3598072,26304268,3
+30984923,26304268,3
+85296243,26304268,2
+66136937,26304268,3
+44006704,26304268,3
+33528664,26304268,3
+60655621,26304268,2
+suixi,26304268,3
+wen_Schwartz,26304268,3
+adair-wang,26304268,3
+XSizuka,26304268,5
+xong,26304268,5
+tjz230,26304268,4
+51981466,26304268,2
+61807648,26304268,4
+61807648,26304268,4
+jennychang,26304268,3
+2106137,26304268,4
+34592808,26304268,3
+75983220,26304268,3
+66716197,26304268,3
+sym1001,26304268,3
+kenc,26304268,3
+62828901,26304268,3
+qiang_LV10,26304268,3
+53477720,26304268,3
+51357131,26304268,3
+58087167,26304268,4
+youknow810,26304268,4
+2580780,26304268,3
+timorrowmain,26304268,4
+tofrom,26304268,5
+57449856,26304268,4
+2984167,26304268,3
+SEVEN.ELEVEN,26304268,3
+120547538,26304268,3
+92468807,26304268,3
+48589119,26304268,3
+85089180,26304268,-1
+lxl1990,26304268,4
+52264660,26304268,4
+rurucat,26304268,3
+40994633,26304268,3
+46815070,26304268,3
+jiaosally,26304268,3
+2429292,26304268,3
+2598729,26304268,3
+sxy921026,26304268,3
+zonovo,26304268,3
+51950822,26304268,3
+1967409,26304268,3
+yoyoj,26304268,2
+31466605,26304268,3
+ldracos,26304268,4
+1786605,26304268,3
+leedong1981,26304268,3
+62418513,26304268,3
+48559229,26304268,4
+68406313,26304268,4
+54415980,26304268,4
+scuzz,26304268,-1
+everyfish,26304268,3
+sousou,26304268,2
+84176426,26304268,3
+42646716,26304268,3
+83472045,26304268,3
+64880714,26304268,3
+3741660,26304268,3
+shalouzhitong,26304268,4
+zechewang007,26304268,3
+lingdongling,26304268,-1
+37402473,26304268,3
+54011582,26304268,3
+57544065,26304268,5
+43356588,26304268,3
+43356588,26304268,3
+61204028,26304268,4
+34901213,26304268,4
+lovewaiter,26304268,3
+queenchelsea,26304268,2
+68093704,26304268,3
+4291528,26304268,3
+curemyself,26304268,3
+103039257,26304268,5
+38477082,26304268,5
+lieye,26304268,4
+134625303,26304268,3
+2809081,26304268,-1
+3964565,26304268,3
+51227412,26304268,4
+9054621,26304268,4
+58059498,26304268,4
+54653189,26304268,1
+45933152,26304268,3
+Phyrra,26304268,3
+sheldonkao,26304268,3
+ooosky,26304268,3
+2099122,26304268,3
+33406946,26304268,3
+54440659,26304268,4
+67039563,26304268,2
+56684398,26304268,3
+puhuahua,26304268,3
+47379077,26304268,3
+47990890,26304268,3
+yoteamomucho,26304268,3
+spaceli,26304268,4
+39051094,26304268,3
+calla,26304268,4
+1380354,26304268,3
+TVBVSBON,26304268,3
+cappuccino-jl,26304268,2
+51329457,26304268,4
+59524621,26304268,3
+3527968,26304268,4
+xilouchen,26304268,2
+43585255,26304268,3
+leahahaha,26304268,4
+deandai,26304268,3
+50060410,26304268,4
+Jiayun,26304268,4
+122605310,26304268,3
+70948915,26304268,4
+59061748,26304268,4
+A.Mo,26304268,3
+3933823,26304268,4
+96146816,26304268,3
+doitbig,26304268,3
+53652021,26304268,3
+2309931,26304268,4
+59538070,26304268,3
+65366516,26304268,4
+edgeyeung,26304268,4
+63862765,26304268,3
+kimi-1119,26304268,3
+Dreamer.Chen,26304268,4
+journeyqiqi,26304268,5
+61486120,26304268,3
+4559768,26304268,3
+125750519,26304268,5
+HAPPYFFF,26304268,3
+92232503,26304268,3
+51606142,26304268,3
+65937174,26304268,4
+51653649,26304268,3
+nerochan,26304268,4
+131352783,26304268,3
+sakuras1412,26304268,-1
+30322114,26304268,3
+78601907,26304268,3
+1344334,26304268,3
+4405401,26304268,3
+50180510,26304268,4
+82550997,26304268,3
+lostinfire,26304268,3
+ps2xboxgbaxbox,26304268,3
+49116416,26304268,3
+zementary,26304268,3
+70915171,26304268,3
+evich,26304268,4
+3489125,26304268,4
+61712114,26304268,3
+ilovefashion,26304268,3
+foxbaby_1104,26304268,3
+Cicinnurus,26304268,4
+4190834,26304268,3
+1663187,26304268,3
+fightim,26304268,2
+33597419,26304268,4
+60664918,26304268,1
+98090779,26304268,2
+35234764,26304268,5
+66609737,26304268,4
+113124571,26304268,5
+idiotmike,26304268,5
+1609757,26304268,4
+3355859,26304268,4
+honestydudu,26304268,3
+120378701,26304268,3
+4239908,26304268,4
+sho2mon4e4y,26304268,3
+xuyansong,26304268,3
+44412475,26304268,3
+48770075,26304268,3
+74030317,26304268,-1
+39015968,26304268,3
+59760298,26304268,4
+38652742,26304268,5
+3078221,26304268,4
+119867722,26304268,2
+49154020,26304268,3
+emma1219,26304268,4
+50527578,26304268,3
+52656841,26304268,3
+abby987,26304268,3
+71390552,26304268,3
+90161175,26304268,2
+74575002,26304268,2
+51549155,26304268,4
+w112233,26304268,2
+39023511,26304268,3
+46970893,26304268,4
+shenluos,26304268,3
+64247507,26304268,4
+67238808,26304268,3
+4324772,26304268,2
+59451032,26304268,3
+kuroneko2002,26304268,4
+46193203,26304268,3
+71455965,26304268,4
+133454212,26304268,3
+grannys_bear,26304268,3
+i.nightwind,26304268,3
+59164881,26304268,3
+40280658,26304268,2
+68661080,26304268,4
+nanzang,26304268,4
+67679868,26304268,4
+57255280,26304268,3
+reave,26304268,5
+55617091,26304268,3
+57080555,26304268,4
+126980247,26304268,4
+67541144,26304268,2
+84250012,26304268,3
+63223538,26304268,3
+65442139,26304268,3
+41419698,26304268,4
+53656219,26304268,3
+69532674,26304268,2
+75809533,26304268,3
+46132797,26304268,3
+54400449,26304268,2
+64009647,26304268,3
+63278789,26304268,4
+xyhen,26304268,4
+63794285,26304268,1
+119829181,26304268,4
+louis15yao,26304268,4
+64771060,26304268,1
+103559115,26304268,3
+76964275,26304268,2
+135874162,26304268,2
+58059972,26304268,4
+51882704,26304268,2
+3426596,26304268,3
+jiqingyi,26304268,3
+louisyoung1026,26304268,2
+ifuya,26304268,4
+duoduoshuwu,26304268,3
+119644008,26304268,3
+61497577,26304268,4
+1101928,26304268,3
+51836771,26304268,3
+lizandliz,26304268,4
+andrewrhao,26304268,3
+river_me1212,26304268,2
+chowmo,26304268,3
+4411166,26304268,4
+3053086,26304268,3
+58520151,26304268,4
+4520667,26304268,3
+46510966,26304268,3
+ffx1201,26304268,4
+48251188,26304268,3
+99117906,26304268,2
+42368147,26304268,3
+3939038,26304268,4
+Vivi17,26304268,4
+1233038,26304268,3
+74768790,26304268,3
+oooooqqq,26304268,3
+TalkChan,26304268,3
+135687100,26304268,3
+1411336,26304268,4
+1411336,26304268,4
+48480567,26304268,4
+Nio.,26304268,3
+lycanthropy,26304268,2
+64110948,26304268,3
+123871672,26304268,4
+52433144,26304268,3
+54359040,26304268,5
+131535153,26304268,4
+47897617,26304268,3
+kelvinshaw,26304268,3
+6239310,26304268,3
+lauer,26304268,3
+70990506,26304268,3
+57580969,26304268,3
+66051391,26304268,3
+75413985,26304268,2
+49519192,26304268,5
+rudygiraffe,26304268,3
+fuzyu,26304268,4
+allblue,26304268,2
+1886385,26304268,3
+132192126,26304268,4
+qijiuzhiyue,26304268,3
+41136064,26304268,5
+61666468,26304268,3
+me2shy,26304268,2
+78914788,26304268,3
+83507458,26304268,4
+1302983,26304268,3
+57650145,26304268,4
+angelababy_,26304268,4
+62582526,26304268,3
+Fice,26304268,3
+45008619,26304268,4
+3789801,26304268,4
+25314137,26304268,3
+64223729,26304268,4
+48694579,26304268,-1
+kevin_lu1001,26304268,3
+cangbaicanku,26304268,3
+43762131,26304268,4
+xml1112,26304268,4
+xiaoshengfish,26304268,3
+jiaozhidao,26304268,4
+46068969,26304268,4
+61134223,26304268,3
+midautumnsong,26304268,2
+matt33,26304268,4
+2187951,26304268,3
+crazyeight,26304268,2
+mian11,26304268,3
+55972806,26304268,3
+4154813,26304268,4
+72719769,26304268,3
+momodawang,26304268,3
+55021237,26304268,3
+60956966,26304268,5
+47609007,26304268,3
+gothickid,26304268,3
+babbye,26304268,3
+51205654,26304268,3
+45804814,26304268,3
+73112329,26304268,3
+49539687,26304268,4
+gabrielle0822,26304268,3
+4392021,26304268,2
+dudumozart,26304268,3
+47917208,26304268,4
+62269931,26304268,4
+121187259,26304268,3
+87357593,26304268,3
+FuckUrMother,26304268,3
+fangmuchen1314,26304268,3
+56686931,26304268,3
+52637584,26304268,3
+joe0317,26304268,2
+7609988,26304268,3
+57077807,26304268,3
+summerdayday,26304268,3
+67436408,26304268,3
+iSaw11021,26304268,4
+Rouwell,26304268,3
+49020007,26304268,1
+43978378,26304268,3
+62987065,26304268,5
+liudawa,26304268,4
+61223246,26304268,3
+40762850,26304268,3
+starstargoo,26304268,3
+59128714,26304268,3
+4722347,26304268,3
+duduxiongzhifu,26304268,3
+bearblindman,26304268,3
+63676625,26304268,3
+2718163,26304268,5
+4649236,26304268,-1
+52408878,26304268,4
+37424688,26304268,3
+52470011,26304268,3
+129617606,26304268,3
+58231376,26304268,4
+87651171,26304268,3
+niazion,26304268,3
+athenasaga,26304268,4
+68327060,26304268,3
+btone0808,26304268,2
+63422177,26304268,3
+snowbusy,26304268,-1
+54141112,26304268,3
+1898022,26304268,3
+63612050,26304268,3
+115819915,26304268,4
+62877248,26304268,3
+cabaret,26304268,4
+135019667,26304268,3
+cyrus_wong,26304268,3
+46338692,26304268,3
+119883443,26304268,3
+135402889,26304268,4
+50900048,26304268,4
+1900968,26304268,3
+Sandorothy,26304268,3
+14247291,26304268,3
+merengue,26304268,4
+106663926,26304268,4
+jhxxs,26304268,4
+zzfuck,26304268,4
+102682916,26304268,4
+luoyunxiang72,26304268,3
+hushaohan,26304268,5
+raychau,26304268,4
+lonaliu,26304268,3
+kong_bai_ge,26304268,3
+36619966,26304268,4
+matchbox,26304268,2
+1793759,26304268,3
+83298227,26304268,4
+cantona_x,26304268,5
+128914340,26304268,4
+shadowpursuer,26304268,4
+49269031,26304268,4
+70781177,26304268,5
+54034056,26304268,2
+Jan111,26304268,3
+48380446,26304268,2
+4597338,26304268,3
+53518939,26304268,3
+78065496,26304268,4
+mspengmei,26304268,4
+MrMia,26304268,2
+Jealousy,26304268,4
+91604108,26304268,3
+edward1988,26304268,4
+luyut1an,26304268,5
+47320573,26304268,4
+tututu1990,26304268,3
+136133409,26304268,3
+7542909,26304268,3
+74106602,26304268,3
+sgzjhw,26304268,4
+zhangcoolhaas,26304268,2
+ILWTFT,26304268,3
+46856109,26304268,-1
+50062390,26304268,3
+fallenisland,26304268,4
+60230905,26304268,3
+63730928,26304268,3
+kratos0008,26304268,3
+After1217,26304268,4
+54133944,26304268,3
+ruo,26304268,3
+56812940,26304268,3
+songy,26304268,4
+51138955,26304268,3
+zita07,26304268,4
+49988944,26304268,3
+35066546,26304268,3
+winnie0212,26304268,3
+14750296,26304268,3
+14750296,26304268,3
+4347930,26304268,1
+61779592,26304268,3
+yuebeifan,26304268,3
+acepatrick,26304268,4
+fanfanmero,26304268,3
+120541509,26304268,3
+lucyseven,26304268,4
+jakpot,26304268,3
+Liangkui,26304268,3
+hysteries,26304268,3
+56239687,26304268,3
+shinesday,26304268,5
+jimmy47,26304268,4
+108278256,26304268,4
+50563105,26304268,3
+48800025,26304268,4
+120187474,26304268,3
+elainemumu,26304268,3
+99977887,26304268,4
+68531336,26304268,2
+70119569,26304268,3
+53061557,26304268,3
+134574099,26304268,3
+2039569,26304268,2
+thechamp,26304268,3
+130930909,26304268,5
+134469731,26304268,3
+liuningba,26304268,3
+72362453,26304268,3
+lenalena,26304268,3
+62297944,26304268,3
+2221831,26304268,2
+63262081,26304268,4
+yarenzhuyi,26304268,4
+14791938,26304268,4
+37344756,26304268,3
+2600693,26304268,3
+5580630,26304268,4
+jackiex,26304268,4
+Castieal,26304268,4
+93294169,26304268,3
+1668414,26304268,3
+Jerry-Zeng,26304268,3
+noodles1948,26304268,2
+34722246,26304268,3
+helicopter,26304268,3
+67306781,26304268,5
+keira0308,26304268,3
+1898701,26304268,4
+50153711,26304268,3
+75612172,26304268,-1
+millayQ,26304268,3
+Evenray,26304268,3
+1867292,26304268,4
+13919840,26304268,5
+blueskd,26304268,3
+52708083,26304268,3
+supermalin,26304268,3
+CineBibliophile,26304268,3
+enchanted13,26304268,3
+anearl,26304268,4
+lovelyjoy991,26304268,3
+heptahedron,26304268,5
+2012350,26304268,3
+gothique,26304268,4
+amaranth_i,26304268,3
+jiangziwen,26304268,4
+brad_tsye,26304268,3
+garuru,26304268,2
+80722428,26304268,3
+jaycee103,26304268,4
+125565417,26304268,4
+2624414,26304268,3
+4896950,26304268,2
+zhangyanwen,26304268,4
+29107256,26304268,4
+qizy,26304268,2
+14542773,26304268,3
+43263362,26304268,3
+43877735,26304268,5
+cyanu,26304268,4
+nursesrun1,26304268,4
+chilldream,26304268,4
+ytstyan,26304268,3
+dixueyaxiaojie,26304268,4
+65468696,26304268,5
+RingoYeung,26304268,-1
+wwwhilary,26304268,4
+38854651,26304268,4
+lulush,26304268,2
+bebesummer,26304268,1
+45791464,26304268,3
+2947080,26304268,4
+craigga,26304268,4
+45351422,26304268,4
+ssb,26304268,4
+Little09Captain,26304268,5
+53046630,26304268,4
+biglaitythecure,26304268,5
+62596790,26304268,3
+yangyy,26304268,4
+lyzhie,26304268,3
+34922072,26304268,4
+4331920,26304268,3
+51070910,26304268,3
+38138105,26304268,3
+novrhapsody,26304268,3
+46228199,26304268,3
+28877862,26304268,4
+25538128,26304268,3
+iamsyh,26304268,3
+4641764,26304268,3
+dirtywest,26304268,4
+81280379,26304268,3
+julypoem,26304268,3
+socalledgin,26304268,3
+jasontodd,26304268,4
+tiffanyqiang,26304268,3
+liyiyu,26304268,4
+zjstheking,26304268,3
+Wristcut,26304268,3
+39255754,26304268,3
+ytismile,26304268,3
+ayueshuo,26304268,3
+chaoz-mozart,26304268,4
+76432110,26304268,4
+Carmeliano,26304268,4
+ziyoupaifeizai,26304268,4
+47660748,26304268,3
+eYeMeteor,26304268,2
+81404706,26304268,3
+89451365,26304268,4
+92978277,26304268,4
+65338235,26304268,3
+46144657,26304268,3
+81652871,26304268,3
+72327409,26304268,3
+64260595,26304268,4
+2812955,26304268,4
+42948156,26304268,3
+1223424,26304268,4
+fafashit,26304268,3
+80063534,26304268,4
+GinaJJ,26304268,4
+lujcmss,26304268,4
+lv_zhichao,26304268,3
+cold24,26304268,4
+tonyyoung1110,26304268,4
+rjjj,26304268,3
+4412169,26304268,4
+wqmeoe,26304268,3
+tasubaby,26304268,4
+36008103,26304268,3
+iceboal,26304268,3
+46360410,26304268,3
+35575281,26304268,2
+3542591,26304268,3
+1223426,26304268,3
+taylorzc,26304268,4
+taylorzc,26304268,4
+43257195,26304268,3
+37521902,26304268,3
+2326027,26304268,4
+46963529,26304268,3
+caspianwky,26304268,1
+zxmys,26304268,3
+izhangzhu,26304268,5
+73126266,26304268,4
+45446265,26304268,3
+sinbone,26304268,3
+65164486,26304268,3
+55594289,26304268,4
+stetehe,26304268,4
+xs2019,26304268,4
+66237715,26304268,3
+caihongxiguamei,26304268,3
+54467510,26304268,2
+zzzzwt,26304268,4
+dian24,26304268,4
+Alicestormrage,26304268,-1
+pandanian,26304268,3
+61077712,26304268,4
+shes42change,26304268,1
+51646167,26304268,2
+mymay17,26304268,3
+lisa417,26304268,4
+3348318,26304268,3
+momo.lan,26304268,5
+renxiaoheng,26304268,1
+4175111,26304268,4
+cai_hua,26304268,2
+49322454,26304268,5
+86834710,26304268,4
+hedgehog,26304268,3
+36321216,26304268,4
+51393119,26304268,3
+82391952,26304268,5
+edisonme,26304268,3
+appreciation,26304268,3
+120496189,26304268,2
+3802312,26304268,-1
+fenglai,26304268,4
+52519025,26304268,3
+hallie324,26304268,4
+boomXXboomXX,26304268,4
+47587724,26304268,3
+dawenxi,26304268,3
+54150368,26304268,3
+78414144,26304268,-1
+Artystayshungry,26304268,3
+57214774,26304268,3
+128112191,26304268,5
+veronicavee,26304268,5
+toyshen,26304268,4
+Hanndiex_,26304268,3
+saosaoxy,26304268,4
+49326623,26304268,4
+67763944,26304268,3
+72365328,26304268,4
+1657637,26304268,3
+108077404,26304268,4
+102231174,26304268,4
+110901020,26304268,3
+laineyq,26304268,4
+shireenzhu,26304268,4
+glorymanutd,26304268,3
+crystalloid,26304268,4
+3082910,26304268,4
+45963261,26304268,5
+bfa1950,26304268,3
+mearcher,26304268,4
+Aspirin129,26304268,3
+53559432,26304268,3
+69986931,26304268,3
+charles1102,26304268,4
+54463600,26304268,4
+75842929,26304268,3
+oralm,26304268,4
+MOVIE--KO,26304268,3
+62079405,26304268,3
+49671837,26304268,5
+xiaoluohao,26304268,3
+50802363,26304268,4
+47911343,26304268,3
+33328876,26304268,4
+Maniacwild,26304268,3
+fatday,26304268,4
+50673336,26304268,4
+GeoLogus,26304268,3
+UNVS,26304268,4
+cocacolasjcn,26304268,4
+34929495,26304268,3
+sinkeyq,26304268,-1
+xumhandy,26304268,3
+46366293,26304268,5
+54278419,26304268,3
+19676752,26304268,4
+BB512,26304268,3
+aries23,26304268,-1
+4009151,26304268,3
+theperisherme,26304268,4
+Veronicam,26304268,4
+67159768,26304268,2
+3587005,26304268,4
+sinikami,26304268,4
+9549001,26304268,4
+taylorwang,26304268,4
+douding1024,26304268,2
+pumpkin_s,26304268,4
+axiu0122,26304268,4
+50219893,26304268,4
+Sh1neYuan,26304268,3
+70742333,26304268,4
+60008101,26304268,-1
+69172097,26304268,2
+rednoodles,26304268,4
+Sophieless,26304268,4
+130581811,26304268,3
+85811535,26304268,3
+bayer04040404,26304268,4
+amberose,26304268,3
+54507832,26304268,3
+manyandandan,26304268,4
+spzmoon,26304268,4
+1780860,26304268,4
+68931689,26304268,3
+40625984,26304268,3
+ninoliu,26304268,4
+given0709,26304268,5
+meeser,26304268,3
+75215757,26304268,4
+vermouthhu,26304268,4
+50255660,26304268,3
+stella_zhou,26304268,5
+sinfulwolf,26304268,4
+ghlznh,26304268,-1
+36930975,26304268,3
+rackylo,26304268,4
+77092352,26304268,3
+psyche213,26304268,3
+42962790,26304268,4
+59774628,26304268,4
+seafans,26304268,1
+edwardpanda,26304268,5
+49038928,26304268,3
+76026872,26304268,4
+amazingacao,26304268,5
+NICOLE_,26304268,-1
+66189087,26304268,4
+x-n-x,26304268,3
+crankysophia,26304268,4
+dasyure,26304268,5
+131838639,26304268,5
+48474156,26304268,4
+fishy,26304268,4
+2248138,26304268,5
+travelaway,26304268,4
+52285742,26304268,4
+57416285,26304268,4
+lilshadow,26304268,-1
+3643871,26304268,4
+jomey,26304268,4
+liarelaw,26304268,2
+64985545,26304268,-1
+super77,26304268,4
+roy325,26304268,4
+57906332,26304268,3
+49784857,26304268,4
+framtid,26304268,3
+26039197,26304268,5
+50378172,26304268,5
+within0226,26304268,4
+3506465,26304268,4
+huaixuan,26304268,5
+53247764,26304268,4
+2499433,26304268,4
+wuhaoyu,26304268,4
+2220298,26304268,4
+chassit,26304268,4
+ninjiushinin,26304268,4
+13038312,26304268,4
+danger8413,26304268,2
+jasonwzz,26304268,4
+Lancelot365,26304268,4
+wann_,26304268,3
+vancion,26304268,4
+never-me,26304268,3
+SeanShepherd,26304268,4
+singlesinger,26304268,4
+39414781,26304268,3
+46712687,26304268,4
+TERRYBEAR,26304268,3
+cllee,26304268,-1
+35591333,26304268,4
+c541223724,26304268,3
+138269575,26304268,4
+38921279,26304268,3
+33050798,26304268,2
+48189297,26304268,4
+88345379,26304268,2
+csp,26304268,4
+Zizou_Vam,26304268,3
+eefee,26304268,4
+96638998,26304268,4
+60317509,26304268,4
+yeallingmay,26304268,3
+83295870,26304268,3
+blue_gemini,26304268,4
+virginiaboat,26304268,-1
+Kostova,26304268,5
+137669101,26304268,3
+darkhands,26304268,4
+81132475,26304268,3
+68551392,26304268,4
+35224934,26304268,4
+59341748,26304268,3
+45135037,26304268,3
+Like_zsy,26304268,3
+vivifyvivi,26304268,1
+65283286,25728010,4
+84398440,25728010,4
+50190840,25728010,5
+chenjiusan,25728010,3
+23288310,25728010,4
+46738101,25728010,4
+ijihoon,25728010,3
+40748484,25728010,5
+52892284,25728010,4
+56435930,25728010,3
+109558086,25728010,5
+starstargoo,25728010,4
+chongfei,25728010,4
+60390276,25728010,4
+49177191,25728010,3
+82570233,25728010,4
+30962131,25728010,3
+134574897,25728010,4
+53256243,25728010,4
+136434557,25728010,3
+71330808,25728010,4
+radia,25728010,4
+42006560,25728010,4
+75441561,25728010,2
+108282995,25728010,4
+82876812,25728010,4
+lijie278723248,25728010,5
+53031430,25728010,5
+83459700,25728010,3
+122729888,25728010,4
+58456907,25728010,4
+3431557,25728010,4
+2033498,25728010,4
+64884887,25728010,4
+64757557,25728010,5
+2978891,25728010,4
+85293907,25728010,3
+57077807,25728010,3
+61905304,25728010,5
+47587270,25728010,3
+moshanghu,25728010,5
+50897220,25728010,4
+4842718,25728010,5
+malliyana,25728010,3
+43611766,25728010,4
+15497319,25728010,4
+39168682,25728010,4
+96410540,25728010,5
+1122936,25728010,3
+42808876,25728010,3
+45241922,25728010,4
+64456556,25728010,3
+81651557,25728010,4
+65725947,25728010,5
+mspengmei,25728010,3
+40443774,25728010,3
+57295120,25728010,4
+62304027,25728010,3
+3789295,25728010,3
+4172986,25728010,4
+61911747,25728010,3
+pppppisces,25728010,4
+pikoarc,25728010,4
+ForeverMoon,25728010,5
+123645823,25728010,3
+1657637,25728010,3
+weiweiguoer,25728010,4
+npzhd,25728010,5
+92926718,25728010,4
+57262819,25728010,5
+53768020,25728010,3
+42270798,25728010,4
+68884636,25728010,5
+65137092,25728010,5
+65911258,25728010,4
+3137688,25728010,4
+120627904,25728010,3
+timorrowmain,25728010,4
+113550835,25728010,5
+61845850,25728010,4
+50992070,25728010,4
+53028133,25728010,4
+59162431,25728010,5
+58244101,25728010,5
+41943699,25728010,4
+55822408,25728010,3
+67877483,25728010,5
+131834377,25728010,4
+103525640,25728010,4
+yore.,25728010,4
+128142899,25728010,3
+lingfriendly,25728010,4
+80663628,25728010,3
+3884732,25728010,3
+91870642,25728010,5
+a.lili,25728010,4
+65388874,25728010,5
+1253917,25728010,5
+63099215,25728010,2
+103020260,25728010,4
+75198919,25728010,5
+70362034,25728010,3
+musicyue21,25728010,4
+52408842,25728010,4
+hmhuang,25728010,4
+74115900,25728010,3
+57779578,25728010,3
+qxtbeyond,25728010,4
+130939164,25728010,4
+yoyomint,25728010,3
+119315593,25728010,3
+14352801,25728010,4
+82054541,25728010,4
+66744703,25728010,3
+60173971,25728010,5
+57556048,25728010,5
+65339606,25728010,4
+11630561,25728010,3
+77293647,25728010,3
+40591271,25728010,4
+nuolanuolanuola,25728010,3
+jakehkj,25728010,4
+somehoow,25728010,3
+102911668,25728010,4
+32223373,25728010,3
+Corrinne,25728010,3
+49433742,25728010,3
+46721798,25728010,4
+3512598,25728010,5
+wei75820,25728010,4
+joanne_do,25728010,4
+71181579,25728010,3
+sheldonkao,25728010,3
+125028814,25728010,-1
+68630000,25728010,3
+75310522,25728010,3
+68630098,25728010,3
+59775132,25728010,3
+137874424,25728010,4
+103580957,25728010,3
+81962971,25728010,3
+3959996,25728010,5
+Kevin3,25728010,4
+122868077,25728010,3
+1887825,25728010,3
+Bryan_westtown,25728010,3
+54406386,25728010,3
+115557406,25728010,5
+leftear86,25728010,3
+wanlili520,25728010,5
+130978369,25728010,3
+beckhacong,25728010,4
+46230886,25728010,4
+132065592,25728010,3
+fiona_DQ,25728010,4
+137353380,25728010,4
+3176021,25728010,4
+41791950,25728010,4
+4750660,25728010,5
+99483183,25728010,3
+76553080,25728010,3
+2543390,25728010,-1
+115483881,25728010,5
+dongguac10,25728010,3
+84176426,25728010,4
+yuxiaoyan0908,25728010,2
+119600892,25728010,4
+54404280,25728010,4
+zoeybatman,25728010,3
+guoyandao,25728010,4
+sakurazizi,25728010,3
+43820792,25728010,5
+53982181,25728010,3
+69439267,25728010,3
+3771717,25728010,4
+79779762,25728010,4
+jiang66,25728010,4
+H897120417,25728010,4
+3489632,25728010,3
+43211032,25728010,4
+gilyun,25728010,3
+53404081,25728010,3
+4028140,25728010,5
+yihengxi,25728010,3
+IAMVILLIAN,25728010,3
+1314672,25728010,3
+71539697,25728010,4
+quintessence,25728010,4
+53858902,25728010,3
+70246803,25728010,4
+85017469,25728010,5
+115593440,25728010,3
+50907283,25728010,-1
+59101445,25728010,4
+88345829,25728010,3
+46620424,25728010,3
+103325989,25728010,4
+psychodying,25728010,3
+48379683,25728010,2
+41837755,25728010,3
+william_wue,25728010,4
+132035196,25728010,5
+67905670,25728010,4
+102751216,25728010,4
+59290556,25728010,5
+48102959,25728010,4
+ccushuaia1220,25728010,-1
+62842608,25728010,3
+65020198,25728010,-1
+61366288,25728010,4
+ideyes,25728010,3
+42069458,25728010,3
+53068177,25728010,4
+60977504,25728010,4
+55412522,25728010,4
+79855798,25728010,2
+goodbyelenin,25728010,3
+pearltsang,25728010,4
+ygws,25728010,5
+67861218,25728010,4
+59619244,25728010,4
+39108497,25728010,3
+12360363,25728010,4
+68478979,25728010,4
+jianchen810,25728010,4
+40674382,25728010,4
+58309873,25728010,3
+125827809,25728010,2
+Hehh,25728010,-1
+fufu28,25728010,3
+momot,25728010,3
+62164438,25728010,3
+131812075,25728010,4
+53369904,25728010,4
+91356257,25728010,3
+1437339,25728010,4
+yolanda_kin,25728010,4
+55425319,25728010,4
+49587059,25728010,3
+78066054,25728010,3
+38702982,25728010,4
+61162296,25728010,-1
+mAggietll,25728010,-1
+47496790,25728010,4
+acbc115,25728010,4
+4495249,25728010,3
+renyuanstella,25728010,3
+79330359,25728010,5
+32536351,25728010,3
+55013431,25728010,4
+54352343,25728010,4
+51368936,25728010,4
+42817015,25728010,4
+51133130,25728010,5
+50427973,25728010,4
+45505797,25728010,4
+88997815,25728010,5
+48251188,25728010,3
+73901440,25728010,3
+54741903,25728010,5
+1943610,25728010,3
+61328119,25728010,4
+Wkw1129BZBHS,25728010,4
+60908358,25728010,4
+65316211,25728010,3
+christforever,25728010,4
+35578162,25728010,4
+maerdaifu,25728010,4
+1865714,25728010,4
+qiushengtang,25728010,3
+lhlqzhuge,25728010,4
+129462089,25728010,4
+tammysky,25728010,4
+Formosaxxx,25728010,3
+128167486,25728010,4
+54633830,25728010,3
+62489919,25728010,4
+103480987,25728010,5
+30515688,25728010,3
+8980158,25728010,4
+callmemrcoolman,25728010,-1
+51967154,25728010,4
+133556437,25728010,4
+133033817,25728010,4
+115088665,25728010,4
+136601824,25728010,5
+119463229,25728010,3
+linxiaoleng,25728010,4
+cloudy20011128,25728010,4
+70990506,25728010,3
+52247790,25728010,4
+59555735,25728010,4
+59556078,25728010,4
+68446356,25728010,-1
+53868140,25728010,4
+134580402,25728010,4
+1066031,25728010,3
+songxiaoci,25728010,4
+56533866,25728010,3
+standbyyou,25728010,3
+63650151,25728010,4
+133162014,25728010,3
+chouchou0707,25728010,3
+62379540,25728010,4
+135795752,25728010,4
+66339819,25728010,4
+46175639,25728010,3
+33064145,25728010,4
+52668501,25728010,3
+37865911,25728010,3
+34707868,25728010,3
+82629572,25728010,3
+45123579,25728010,3
+2126183,25728010,3
+61602134,25728010,2
+89804270,25728010,4
+biby9475,25728010,3
+97847268,25728010,4
+agnes223,25728010,3
+csaver,25728010,5
+114270381,25728010,3
+36304941,25728010,4
+p0pking,25728010,4
+47025279,25728010,3
+136768505,25728010,3
+129611474,25728010,3
+1876785,25728010,3
+61134223,25728010,4
+137107411,25728010,5
+50367027,25728010,4
+41236968,25728010,3
+51006124,25728010,4
+35902122,25728010,4
+136489657,25728010,5
+98956225,25728010,2
+132463662,25728010,4
+131471616,25728010,3
+duduxiongzhifu,25728010,3
+62936115,25728010,5
+3541486,25728010,3
+fcinter,25728010,4
+linchencun,25728010,5
+54879429,25728010,4
+landelanle,25728010,3
+51531796,25728010,5
+137439604,25728010,4
+29885063,25728010,4
+136767484,25728010,4
+58338006,25728010,4
+jill-volleyball,25728010,5
+yujiuwei,25728010,4
+weixiaoP,25728010,4
+68941794,25728010,5
+Kingnima,25728010,3
+65189939,25728010,3
+posuoluo,25728010,3
+53012671,25728010,4
+68020683,25728010,5
+4627411,25728010,3
+60307076,25728010,5
+39890190,25728010,3
+Smilene_22,25728010,3
+xuanxide,25728010,5
+34727533,25728010,3
+4145186,25728010,4
+131351538,25728010,3
+128596881,25728010,4
+winmaxangle,25728010,3
+yeyinger,25728010,4
+61619787,25728010,3
+52109390,25728010,3
+98954264,25728010,3
+james0769,25728010,5
+68161081,25728010,4
+1941226,25728010,3
+76203879,25728010,4
+120250936,25728010,3
+60956500,25728010,4
+72993143,25728010,3
+53275472,25728010,5
+35745537,25728010,5
+68574931,25728010,4
+65121646,25728010,5
+33204818,25728010,4
+giacintaxx,25728010,4
+7795838,25728010,5
+48183944,25728010,4
+xinzhouyang,25728010,4
+cheeseberry,25728010,4
+50648419,25728010,4
+96797723,25728010,4
+watcher486,25728010,3
+buleddoll,25728010,3
+120018293,25728010,3
+lmx1220,25728010,4
+hejiabin,25728010,4
+dennisgerrard,25728010,5
+87704099,25728010,-1
+58772458,25728010,5
+2750884,25728010,3
+2803203,25728010,-1
+57142558,25728010,4
+96473743,25728010,4
+vanilla666,25728010,4
+rachelkaka,25728010,4
+2414691,25728010,4
+99508404,25728010,3
+S.H.I.L.E.R,25728010,4
+May_T,25728010,4
+44816197,25728010,2
+1997569,25728010,5
+122603381,25728010,3
+69178821,25728010,5
+seafans,25728010,3
+knoxie,25728010,4
+122872269,25728010,1
+72936098,25728010,4
+49738101,25728010,5
+58512408,25728010,4
+70557752,25728010,4
+129051527,25728010,3
+2187827,25728010,5
+woshigejilao,25728010,5
+imqxq,25728010,-1
+51213478,25728010,5
+51965596,25728010,3
+119858439,25728010,5
+42173846,25728010,5
+3394942,25728010,4
+73308380,25728010,5
+amor_fati,25728010,4
+x1Ao_y,25728010,3
+92853414,25728010,4
+3428014,25728010,4
+113285477,25728010,3
+lesley30stm,25728010,3
+uncleyang,25728010,4
+14327084,25728010,5
+1510862,25728010,4
+41948651,25728010,4
+62496308,25728010,-1
+32475683,25728010,3
+76335653,25728010,3
+to-july,25728010,4
+63528456,25728010,3
+senseangeldb,25728010,4
+lightwing86,25728010,5
+8925767,25728010,4
+kirahome,25728010,3
+81336001,25728010,5
+kedoumili,25728010,3
+48078859,25728010,3
+64122386,25728010,3
+59399939,25728010,3
+41039099,25728010,3
+134288385,25728010,3
+131909298,25728010,3
+84698699,25728010,4
+waisel,25728010,5
+70668435,25728010,3
+70668435,25728010,3
+mystory0310,25728010,4
+2369225,25728010,3
+75812054,25728010,4
+He.Loves.QKL,25728010,3
+133264793,25728010,3
+137206904,25728010,3
+banbeizi,25728010,-1
+A.Plus,25728010,4
+119306223,25728010,4
+41083928,25728010,3
+68156660,25728010,3
+70680016,25728010,4
+qilichafang,25728010,3
+wakeng,25728010,4
+zzfznp,25728010,3
+48950860,25728010,4
+27675083,25728010,4
+127563675,25728010,4
+49550156,25728010,4
+Mistly,25728010,4
+46338692,25728010,4
+16739191,25728010,5
+3854647,25728010,3
+1626349,25728010,4
+136293291,25728010,-1
+56684398,25728010,3
+2039569,25728010,3
+samixuan.,25728010,4
+parkxiahky,25728010,3
+65417437,25728010,5
+36060435,25728010,2
+87344411,25728010,4
+37950189,25728010,4
+98174233,25728010,4
+137136099,25728010,3
+46754344,25728010,3
+121305318,25728010,3
+63266479,25728010,3
+91317144,25728010,4
+60974097,25728010,5
+Ken,25728010,3
+57350477,25728010,5
+1587535,25728010,4
+Migpam,25728010,5
+heming_way,25728010,4
+113050393,25728010,3
+2308650,25728010,3
+127725727,25728010,4
+69680398,25728010,4
+misawang,25728010,3
+107694354,25728010,5
+55446081,25728010,5
+104818700,25728010,3
+yanjing7611,25728010,4
+39382448,25728010,5
+memphisss,25728010,3
+coka1999,25728010,3
+1364563,25728010,4
+14504992,25728010,4
+83737381,25728010,4
+55598262,25728010,5
+64713560,25728010,4
+127111031,25728010,3
+YuSu,25728010,3
+supermelon,25728010,5
+44975625,25728010,3
+hichai,25728010,4
+41517741,25728010,3
+61681574,25728010,3
+79583588,25728010,3
+mingming1124530,25728010,3
+74752187,25728010,2
+68630108,25728010,3
+bxg555,25728010,-1
+1981762,25728010,3
+wusuowei102,25728010,4
+58463356,25728010,1
+dadangou,25728010,4
+xyxyxyxyxy1995,25728010,5
+lianmaomi,25728010,4
+38146297,25728010,3
+79567337,25728010,4
+YAMAHA_GO,25728010,3
+48435609,25728010,4
+23073485,25728010,3
+ock,25728010,4
+3418984,25728010,4
+leiii,25728010,4
+CatTrefle,25728010,3
+17004593,25728010,3
+52705405,25728010,4
+87997485,25728010,4
+London1,25728010,5
+zcy0505,25728010,4
+84593268,25728010,3
+114435379,25728010,4
+127128928,25728010,5
+50638011,25728010,3
+51289323,25728010,4
+124618760,25728010,3
+4332802,25728010,5
+gezi921054,25728010,4
+72257329,25728010,4
+50255025,25728010,3
+58057180,25728010,3
+43207309,25728010,4
+46177546,25728010,3
+45491031,25728010,2
+57615935,25728010,3
+3318847,25728010,4
+36055864,25728010,3
+27475876,25728010,3
+35111006,25728010,-1
+82235882,25728010,4
+whitney0417,25728010,4
+109351948,25728010,4
+52967718,25728010,4
+66178513,25728010,4
+104592207,25728010,3
+82235522,25728010,4
+62960950,25728010,4
+11566740,25728010,4
+122932689,25728010,4
+32128581,25728010,4
+6270415,25728010,3
+35892009,25728010,4
+72685963,25728010,4
+113560444,25728010,4
+66057217,25728010,4
+130648493,25728010,4
+kp81ndlf,25728010,4
+njuhmj,25728010,5
+67072789,25728010,5
+4766893,25728010,4
+BryanZ,25728010,4
+53554219,25728010,4
+30166414,25728010,4
+135662029,25728010,3
+orangeorange6,25728010,3
+4143335,25728010,3
+2361637,25728010,4
+damao,25728010,2
+y18188805152,25728010,4
+132541787,25728010,5
+128468373,25728010,2
+14021756,25728010,5
+51620794,25728010,3
+62608491,25728010,4
+koukoukou,25728010,1
+banruoliuli,25728010,4
+99401561,25728010,4
+helloivan,25728010,3
+133886774,25728010,3
+88256583,25728010,5
+34363424,25728010,3
+51592058,25728010,4
+106596511,25728010,3
+XY920521,25728010,5
+sousou,25728010,3
+kayslv,25728010,3
+47974911,25728010,3
+51955688,25728010,4
+49054831,25728010,4
+64797594,25728010,4
+62482710,25728010,3
+leechambo,25728010,3
+ohagur,25728010,4
+81611338,25728010,4
+gossip3micky,25728010,3
+lingdongling,25728010,3
+darktravelor,25728010,4
+54129779,25728010,4
+sosofly,25728010,4
+panvivien,25728010,4
+39095645,25728010,3
+134625303,25728010,3
+2842937,25728010,3
+26950131,25728010,4
+2668037,25728010,4
+2994216,25728010,3
+sunata,25728010,4
+57570888,25728010,4
+66185314,25728010,4
+5318547,25728010,3
+guoqichepiao,25728010,3
+116617620,25728010,4
+61944030,25728010,3
+lovingecho,25728010,4
+nengyinyibeiwu,25728010,3
+136216464,25728010,4
+4605484,25728010,4
+48171385,25728010,4
+81097879,25728010,4
+ghostneng,25728010,4
+24357802,25728010,3
+72035913,25728010,3
+74943239,25728010,3
+biguniverse,25728010,4
+freddy_xu,25728010,4
+72086305,25728010,2
+4254864,25728010,4
+57639200,25728010,3
+64810171,25728010,5
+51855635,25728010,3
+civey,25728010,4
+74779260,25728010,4
+75318000,25728010,4
+52399993,25728010,2
+53722280,25728010,3
+72607148,25728010,4
+131337124,25728010,4
+58569504,25728010,4
+62862861,25728010,4
+monica_ning,25728010,3
+136810733,25728010,3
+1260390,25728010,3
+dewar,25728010,3
+91473851,25728010,4
+79400267,25728010,4
+53245934,25728010,5
+131352783,25728010,3
+44146004,25728010,5
+127131340,25728010,3
+51606142,25728010,3
+4509995,25728010,5
+65723913,25728010,3
+willen007,25728010,4
+136629154,25728010,5
+26648697,25728010,4
+easytodo,25728010,3
+54126303,25728010,5
+1164443,25728010,3
+sssssstutter,25728010,4
+71561935,25728010,3
+lingdonging,25728010,3
+andrew12,25728010,3
+1986183,25728010,4
+115560708,25728010,4
+z1on7,25728010,3
+sho2mon4e4y,25728010,4
+101112458,25728010,4
+eightsbar,25728010,3
+122943812,25728010,3
+hanyoyo2000,25728010,5
+xuyimeng,25728010,3
+fandongzhuantou,25728010,3
+61196519,25728010,3
+112895942,25728010,4
+bilibili01,25728010,3
+buzhishilikai,25728010,4
+60808695,25728010,4
+4251160,25728010,3
+65055905,25728010,4
+34309421,25728010,2
+11546343,25728010,-1
+66967732,25728010,4
+neopolis,25728010,4
+56557982,25728010,5
+yutang,25728010,3
+25503918,25728010,4
+134264976,25728010,4
+30820346,25728010,1
+83188339,25728010,4
+50887988,25728010,4
+76851962,25728010,4
+55766145,25728010,5
+42658773,25728010,5
+shiningvi,25728010,3
+131887197,25728010,3
+66388538,25728010,4
+120239157,25728010,3
+yixiaoyan_,25728010,4
+joelipam,25728010,3
+134318408,25728010,2
+134545730,25728010,4
+BackToNight,25728010,4
+49587951,25728010,4
+49872726,25728010,5
+43344167,25728010,3
+134584881,25728010,5
+47285151,25728010,3
+48843786,25728010,-1
+83389859,25728010,3
+76866442,25728010,5
+foollance,25728010,4
+mavisa,25728010,4
+135628007,25728010,5
+102981930,25728010,2
+44470776,25728010,4
+53437305,25728010,4
+54141112,25728010,4
+61292565,25728010,4
+35668888,25728010,4
+43030795,25728010,3
+2756953,25728010,4
+70427822,25728010,4
+50353681,25728010,3
+64359754,25728010,5
+biquan,25728010,4
+1544332,25728010,5
+2723511,25728010,5
+102631650,25728010,3
+kid45698,25728010,3
+50195547,25728010,4
+72263938,25728010,4
+96392036,25728010,3
+43891940,25728010,3
+46007359,25728010,3
+29789085,25728010,4
+71696729,25728010,2
+122879836,25728010,4
+68564015,25728010,4
+63522902,25728010,4
+58158842,25728010,4
+flydolphin,25728010,3
+30099819,25728010,3
+sjt641100358,25728010,4
+47782519,25728010,3
+135369125,25728010,4
+ymj718,25728010,5
+51909458,25728010,3
+43375121,25728010,5
+26715515,25728010,4
+48409104,25728010,3
+40027917,25728010,3
+50875593,25728010,3
+121475864,25728010,4
+111792249,25728010,4
+80140628,25728010,4
+81174351,25728010,4
+anmian,25728010,4
+smart-ass,25728010,4
+36342485,25728010,3
+64535817,25728010,5
+Bebefore,25728010,3
+xianxianchen,25728010,4
+3170513,25728010,3
+37486963,25728010,5
+53467813,25728010,3
+nleydy,25728010,3
+yao120,25728010,4
+134938707,25728010,2
+53847386,25728010,4
+88345379,25728010,3
+66803513,25728010,4
+sby37,25728010,5
+Seeos,25728010,3
+49056997,25728010,4
+agentying,25728010,3
+ivy0713,25728010,5
+76327264,25728010,4
+fancywind,25728010,5
+79963490,25728010,3
+65442139,25728010,4
+45505109,25728010,5
+4344464,25728010,3
+119105590,25728010,4
+matthew1323,25728010,3
+46209502,25728010,5
+12198403,25728010,3
+50180272,25728010,4
+flowertide,25728010,3
+74145867,25728010,4
+shirleycore,25728010,4
+11503015,25728010,4
+2756490,25728010,3
+62153097,25728010,4
+65580779,25728010,4
+gjx189,25728010,4
+wangleku0310,25728010,3
+30499670,25728010,5
+131533540,25728010,5
+58009329,25728010,2
+marage,25728010,4
+33245540,25728010,4
+xong,25728010,3
+66993193,25728010,4
+47357292,25728010,4
+timeispassing,25728010,4
+64252910,25728010,3
+xxxeleven,25728010,3
+58351753,25728010,4
+32033776,25728010,3
+48816803,25728010,4
+69133855,25728010,4
+46043739,25728010,3
+67375279,25728010,4
+Twdrop,25728010,4
+51638198,25728010,3
+furore,25728010,4
+WN-ninja,25728010,-1
+48165079,25728010,3
+76160573,25728010,4
+49170151,25728010,4
+44028431,25728010,4
+gu_yan,25728010,3
+83387474,25728010,4
+RITABMW,25728010,5
+49199639,25728010,4
+lionking198176,25728010,4
+81619869,25728010,4
+2808574,25728010,3
+58792200,25728010,3
+2843764,25728010,5
+jayelhy,25728010,5
+58051377,25728010,4
+121821498,25728010,3
+63822026,25728010,4
+duoduo0410,25728010,3
+island-lll,25728010,3
+104427009,25728010,3
+136654188,25728010,5
+56602222,25728010,4
+45791628,25728010,5
+liyanyi,25728010,5
+2820924,25728010,-1
+tuzichiluobo,25728010,4
+87694483,25728010,4
+121318701,25728010,4
+69061545,25728010,3
+2919840,25728010,4
+1214123,25728010,4
+83881122,25728010,4
+135843569,25728010,4
+DEMO9266,25728010,4
+72442723,25728010,3
+71811082,25728010,3
+anlrj,25728010,3
+1730018,25728010,4
+hanqiu1995,25728010,4
+ruocun123,25728010,4
+61795649,25728010,4
+62768440,25728010,3
+48593748,25728010,3
+70668132,25728010,3
+lephemera,25728010,4
+73507188,25728010,5
+47764376,25728010,3
+83192314,25728010,5
+wuyanghuxi,25728010,3
+40823380,25728010,4
+yaojunzi,25728010,5
+baiguopi,25728010,4
+2349644,25728010,3
+45646209,25728010,4
+2449818,25728010,3
+64223729,25728010,4
+51277324,25728010,4
+3722910,25728010,3
+yuhuaizi,25728010,4
+shinjong,25728010,3
+58847654,25728010,5
+37402473,25728010,4
+126838227,25728010,2
+3470100,25728010,4
+104742376,25728010,5
+87852350,25728010,2
+solavre,25728010,4
+50616281,25728010,4
+50616281,25728010,4
+1467089,25728010,2
+huoruiting,25728010,4
+58691394,25728010,4
+62798977,25728010,3
+51297351,25728010,3
+32424363,25728010,3
+2883655,25728010,3
+candyrice,25728010,4
+119362745,25728010,4
+4295298,25728010,4
+1702693,25728010,3
+40659159,25728010,4
+rip626,25728010,4
+82823263,25728010,3
+dudumozart,25728010,3
+emilyrubbish,25728010,4
+46818877,25728010,3
+119203760,25728010,3
+61877419,25728010,5
+48232992,25728010,4
+3397745,25728010,3
+TomiOh,25728010,3
+53396330,25728010,4
+34901213,25728010,4
+53990985,25728010,3
+135802167,25728010,5
+flyingdove,25728010,4
+50833916,25728010,3
+69099872,25728010,4
+49148779,25728010,4
+4795748,25728010,5
+58956237,25728010,5
+mountainriver,25728010,3
+136219305,25728010,4
+57122585,25728010,4
+65878913,25728010,4
+daniel_gao,25728010,3
+lalalaho,25728010,4
+67528548,25728010,4
+68219887,25728010,3
+Rurutia7,25728010,3
+58848925,25728010,3
+bora2547,25728010,3
+dahuilang15656,25728010,5
+91140276,25728010,3
+80171347,25728010,4
+49164545,25728010,4
+2265138,25728010,4
+zooyam,25728010,3
+kidify,25728010,3
+3922229,25728010,4
+48608212,25728010,4
+59303781,25728010,4
+5439991,25728010,4
+49449526,25728010,3
+iamjessi,25728010,4
+56766936,25728010,3
+109040050,25728010,5
+49949826,25728010,-1
+sweetmisscat,25728010,4
+melodygxl,25728010,3
+94227961,25728010,4
+4615290,25728010,3
+Georgewen,25728010,5
+48497184,25728010,5
+29844884,25728010,4
+richion,25728010,3
+136496987,25728010,4
+doraeman,25728010,4
+1226511,25728010,3
+26461987,25728010,4
+4428736,25728010,-1
+57915460,25728010,5
+9172847,25728010,5
+42862661,25728010,4
+108404098,25728010,4
+83476878,25728010,5
+129574538,25728010,-1
+on1ooker,25728010,4
+38737800,25728010,4
+129556271,25728010,4
+lanmichelle,25728010,5
+ivis1989,25728010,5
+3818284,25728010,4
+54783024,25728010,4
+goalps,25728010,4
+yaoyaoxiaozhan,25728010,3
+badblueeyes,25728010,4
+78660676,25728010,4
+91808189,25728010,4
+40931837,25728010,4
+131616351,25728010,3
+liuzhenhuadedou,25728010,3
+d8day,25728010,5
+51367308,25728010,3
+72387570,25728010,5
+51152524,25728010,3
+tonyteng,25728010,4
+Zaytun,25728010,5
+93940379,25728010,4
+MISTER.X,25728010,1
+JunkRoad,25728010,4
+throughtherock,25728010,5
+dieonTV,25728010,4
+50580162,25728010,4
+chloevdw,25728010,3
+133083146,25728010,4
+45392337,25728010,4
+2429292,25728010,3
+81316047,25728010,4
+jiangjiang1214,25728010,4
+scarlett.,25728010,5
+120355745,25728010,4
+43181758,25728010,4
+53226499,25728010,4
+72985710,25728010,4
+2288902,25728010,3
+3321382,25728010,4
+37620368,25728010,3
+37620368,25728010,3
+shadowshame,25728010,3
+81285027,25728010,-1
+4525795,25728010,4
+cho2000,25728010,4
+81998298,25728010,3
+ice41322,25728010,3
+73959584,25728010,3
+126949865,25728010,3
+88688180,25728010,4
+60994756,25728010,5
+62169194,25728010,5
+43127337,25728010,3
+2583639,25728010,3
+62736630,25728010,3
+smartstar,25728010,4
+136475671,25728010,3
+2694391,25728010,3
+83295870,25728010,4
+125151595,25728010,4
+goodjelly,25728010,4
+64519164,25728010,4
+48396212,25728010,4
+59344442,25728010,5
+104469563,25728010,4
+81845294,25728010,5
+2698249,25728010,4
+50109761,25728010,3
+yangguangyi2,25728010,4
+49544157,25728010,4
+towne,25728010,4
+hbwsbo,25728010,4
+zxb42195,25728010,3
+59334722,25728010,3
+1411336,25728010,4
+gzbl8497,25728010,5
+25350324,25728010,3
+57688571,25728010,3
+nizhenhua1981,25728010,4
+47705439,25728010,4
+47784827,25728010,4
+83412988,25728010,4
+54162328,25728010,5
+2159606,25728010,4
+74541103,25728010,3
+3308358,25728010,3
+1507786,25728010,4
+62726844,25728010,4
+70284743,25728010,4
+kuangren79,25728010,3
+83361236,25728010,4
+41483799,25728010,3
+chopsticks7,25728010,3
+128902296,25728010,4
+xiaopangcherry,25728010,5
+1189608,25728010,4
+3109810,25728010,4
+mikarly,25728010,4
+50280331,25728010,4
+rye39,25728010,3
+zhonggeer,25728010,3
+3254520,25728010,4
+shadow1,25728010,4
+mufengqin,25728010,4
+122452433,25728010,5
+67758880,25728010,4
+134463446,25728010,3
+72233130,25728010,5
+lingxishuyu,25728010,3
+44856917,25728010,5
+TaTaxxxx,25728010,5
+serphim8,25728010,5
+ruilixiurui,25728010,4
+angelababy_,25728010,3
+33525277,25728010,3
+57088195,25728010,2
+115131162,25728010,4
+59370142,25728010,3
+tongziyam,25728010,4
+32144547,25728010,5
+45507123,25728010,3
+1795295,25728010,3
+58285537,25728010,4
+3491366,25728010,-1
+8459513,25728010,3
+135715294,25728010,4
+77620661,25728010,4
+63742684,25728010,4
+snowlydouban,25728010,2
+65931842,25728010,4
+3386344,25728010,4
+46220008,25728010,4
+Lost_Atlantis,25728010,4
+41130036,25728010,4
+69477344,25728010,4
+47112558,25728010,3
+44622740,25728010,4
+weexf,25728010,3
+62871612,25728010,4
+52160935,25728010,4
+4251044,25728010,3
+bigmiao,25728010,4
+FinalFantasy,25728010,4
+anna923,25728010,5
+134417369,25728010,-1
+3617977,25728010,4
+Mszombie,25728010,4
+76467871,25728010,4
+97181253,25728010,5
+josephgyal,25728010,4
+42084433,25728010,4
+9915911,25728010,5
+50865792,25728010,4
+2701338,25728010,4
+2481028,25728010,4
+56739185,25728010,4
+WSSWHL,25728010,2
+48604788,25728010,4
+80044439,25728010,4
+cherrywoodpig,25728010,5
+cherrywoodpig,25728010,5
+xml1112,25728010,3
+47802404,25728010,3
+coctelxw,25728010,4
+bearhao1976,25728010,4
+delchisio,25728010,3
+41680643,25728010,4
+1095652,25728010,4
+122679284,25728010,3
+96042555,25728010,3
+96042007,25728010,4
+48037393,25728010,-1
+120619243,25728010,4
+55964278,25728010,4
+67330888,25728010,5
+laow-f-cain,25728010,3
+qfy,25728010,3
+Simon_Wu,25728010,3
+128405947,25728010,4
+57405167,25728010,3
+88324576,25728010,5
+1831746,25728010,3
+blueskyfly,25728010,4
+43605260,25728010,5
+44669432,25728010,2
+119858082,25728010,4
+52408878,25728010,3
+91498001,25728010,3
+53899164,25728010,3
+49116416,25728010,4
+1929758,25728010,3
+43968644,25728010,5
+58855650,25728010,5
+93576254,25728010,4
+erbility,25728010,4
+135402146,25728010,3
+63011235,25728010,3
+4093543,25728010,3
+123373729,25728010,4
+4453892,25728010,-1
+4453892,25728010,-1
+50572502,25728010,4
+54984584,25728010,3
+jkjk1920,25728010,4
+mzmuxin,25728010,3
+36601365,25728010,4
+135694361,25728010,4
+Chiunotfortoday,25728010,5
+AllenHarris,25728010,4
+lolitazly,25728010,3
+63223538,25728010,4
+choy,25728010,4
+crowsz,25728010,3
+youlala,25728010,4
+68477521,25728010,4
+summerguagua,25728010,3
+xcyangel111,25728010,4
+vinra,25728010,4
+91319965,25728010,5
+chendi,25728010,4
+74073932,25728010,4
+yueyuebetty,25728010,-1
+suh5213,25728010,3
+babyxy006,25728010,4
+JohnJuniors,25728010,3
+athrun1009,25728010,3
+67238808,25728010,3
+30492787,25728010,4
+1580717,25728010,5
+33960706,25728010,4
+81149989,25728010,3
+71861591,25728010,4
+131364833,25728010,3
+56552029,25728010,3
+50971465,25728010,3
+42803233,25728010,5
+70034039,25728010,3
+52554533,25728010,3
+kelvinshaw,25728010,3
+65260404,25728010,3
+65260404,25728010,3
+37945803,25728010,5
+54653189,25728010,1
+bqx0888,25728010,3
+63211106,25728010,4
+47305840,25728010,3
+67232116,25728010,-1
+59129484,25728010,5
+72642943,25728010,3
+68596231,25728010,3
+56800653,25728010,2
+51385232,25728010,4
+47913948,25728010,3
+53362350,25728010,4
+69914993,25728010,3
+60631421,25728010,3
+132885035,25728010,4
+ranke0129,25728010,5
+87558213,25728010,4
+jiujiuprincess,25728010,4
+124359273,25728010,4
+hrm880716,25728010,4
+3287454,25728010,3
+1406185,25728010,4
+52994758,25728010,5
+40558804,25728010,4
+52889400,25728010,2
+xiongguagua,25728010,4
+3818190,25728010,5
+62948547,25728010,4
+64859517,25728010,4
+heydzi,25728010,4
+Sid,25728010,2
+69277440,25728010,5
+zhangxiaolu,25728010,4
+90512502,25728010,4
+63672355,25728010,3
+33819207,25728010,5
+80936991,25728010,3
+Sissilo,25728010,4
+52128308,25728010,3
+2223862,25728010,-1
+91243092,25728010,5
+imauve,25728010,4
+49082619,25728010,-1
+103717477,25728010,4
+46700100,25728010,4
+77026559,25728010,5
+58840542,25728010,4
+3718804,25728010,3
+ariellau,25728010,4
+34544680,25728010,4
+1482191,25728010,3
+3088126,25728010,4
+121849085,25728010,3
+121768645,25728010,5
+46067098,25728010,5
+92549037,25728010,5
+2092765,25728010,4
+120113112,25728010,3
+62380646,25728010,5
+52046312,25728010,3
+spicymilk,25728010,3
+83942238,25728010,4
+play0829,25728010,4
+47529528,25728010,3
+50413289,25728010,3
+94546976,25728010,3
+2320060,25728010,5
+3922372,25728010,4
+me2shy,25728010,2
+47724316,25728010,5
+masaikejun,25728010,3
+25982397,25728010,3
+14965275,25728010,3
+34737598,25728010,5
+xiaozhubaobao,25728010,5
+r0ur0u,25728010,5
+LUCKYLYB,25728010,5
+59604055,25728010,2
+mingyaback,25728010,4
+bt4ever,25728010,4
+mayee1121,25728010,4
+53749303,25728010,3
+winterTTr,25728010,4
+mair2b8hk,25728010,5
+45650024,25728010,4
+liqiyao8931,25728010,1
+twitodd,25728010,4
+bbong9,25728010,4
+47471992,25728010,3
+wangDP,25728010,4
+65714390,25728010,4
+76185877,25728010,3
+24274750,25728010,3
+133151466,25728010,4
+2298833,25728010,3
+huapiqiu,25728010,5
+2216167,25728010,3
+55831492,25728010,5
+132841345,25728010,4
+120198349,25728010,4
+ler.sky.,25728010,4
+62180561,25728010,4
+xuanlihuan,25728010,5
+hi_blue,25728010,4
+81752466,25728010,4
+34162362,25728010,4
+47847363,25728010,5
+73603686,25728010,3
+sgzjhw,25728010,4
+1233038,25728010,3
+51229956,25728010,-1
+kimxixi,25728010,3
+56524460,25728010,3
+40966373,25728010,4
+reave,25728010,4
+87308057,25728010,4
+shenyong6813,25728010,-1
+123997874,25728010,5
+123997874,25728010,5
+anonymousor,25728010,3
+109055681,25728010,3
+41806618,25728010,4
+72365575,25728010,4
+yutingamy,25728010,3
+lubinfan,25728010,4
+silent_island,25728010,3
+left-em,25728010,4
+samy0868,25728010,4
+54706735,25728010,3
+juneismiranda,25728010,5
+46287830,25728010,-1
+eksmemo,25728010,4
+1414261,25728010,4
+60038262,25728010,3
+92908596,25728010,4
+62715368,25728010,5
+48854947,25728010,3
+2863429,25728010,3
+frozone,25728010,3
+76393487,25728010,3
+iconsume,25728010,3
+113437204,25728010,5
+devilnue,25728010,5
+2076258,25728010,3
+91268300,25728010,4
+58027511,25728010,4
+luomengyuan,25728010,5
+fxiaobo,25728010,4
+46423055,25728010,4
+48168328,25728010,4
+4320088,25728010,4
+92774823,25728010,3
+gongyansong,25728010,4
+YeLLow_qst,25728010,4
+jidecengjing,25728010,4
+it-fans,25728010,3
+59433731,25728010,4
+xzx2011,25728010,3
+95543629,25728010,1
+49182005,25728010,4
+49161974,25728010,2
+9998453,25728010,-1
+campbellii,25728010,4
+bailuoliuwei,25728010,5
+14234896,25728010,2
+3171388,25728010,4
+43393007,25728010,3
+73157691,25728010,5
+65764407,25728010,3
+chenruan,25728010,4
+48158663,25728010,5
+135248938,25728010,5
+130496328,25728010,3
+2596903,25728010,3
+37228673,25728010,4
+62575629,25728010,3
+yangqihang,25728010,4
+122232090,25728010,3
+45042581,25728010,3
+huaiyao,25728010,4
+54150368,25728010,3
+pengyaos,25728010,4
+66168101,25728010,4
+47022632,25728010,4
+74536227,25728010,5
+57240144,25728010,4
+58059498,25728010,3
+1495064,25728010,4
+biteorange,25728010,5
+4777379,25728010,4
+Paranoidc,25728010,4
+55484051,25728010,5
+14484123,25728010,3
+2968227,25728010,4
+71946766,25728010,4
+58332166,25728010,4
+vipdayu,25728010,5
+45012026,25728010,4
+40067511,25728010,3
+59695133,25728010,4
+hanxingmei,25728010,3
+lidi9,25728010,3
+107554806,25728010,5
+63463854,25728010,3
+63110366,25728010,3
+deathlegend,25728010,-1
+135128946,25728010,4
+zbar1234,25728010,3
+4408219,25728010,4
+58850320,25728010,2
+iyuge,25728010,4
+56884321,25728010,3
+8244005,25728010,5
+60999102,25728010,3
+49419366,25728010,3
+72781855,25728010,3
+46572945,25728010,5
+43500933,25728010,4
+42057184,25728010,4
+123833891,25728010,5
+132303246,25728010,4
+45968027,25728010,4
+60486561,25728010,4
+2258556,25728010,2
+zjia,25728010,4
+69101082,25728010,4
+49366823,25728010,4
+jasonai,25728010,3
+81834646,25728010,3
+chenkefeng,25728010,4
+52079162,25728010,4
+33149603,25728010,5
+resurgam92dawn,25728010,3
+53182459,25728010,4
+59623092,25728010,4
+70132891,25728010,4
+babbye,25728010,4
+5772280,25728010,4
+grannys_bear,25728010,4
+lelelelelelelel,25728010,4
+64954480,25728010,3
+52840916,25728010,3
+62455742,25728010,3
+126922158,25728010,4
+104167946,25728010,3
+53833067,25728010,4
+3572516,25728010,3
+55438034,25728010,4
+51653649,25728010,4
+126937145,25728010,4
+57785387,25728010,4
+mmpymmpy,25728010,3
+2892568,25728010,3
+45129270,25728010,5
+3063479,25728010,4
+70389132,25728010,4
+45008619,25728010,3
+85239246,25728010,4
+46735351,25728010,5
+40237768,25728010,4
+58489881,25728010,3
+61726072,25728010,5
+2867984,25728010,4
+3457326,25728010,5
+jackieyer,25728010,4
+104559183,25728010,3
+minquan,25728010,4
+107497974,25728010,-1
+yukisun,25728010,5
+122394659,25728010,4
+57351487,25728010,3
+69612357,25728010,1
+87686821,25728010,5
+conglin2537,25728010,4
+colorwind,25728010,3
+HanHi,25728010,3
+90105219,25728010,4
+49519192,25728010,3
+3540779,25728010,3
+4210996,25728010,4
+lyzw,25728010,4
+84231339,25728010,3
+kulapika,25728010,4
+104397819,25728010,5
+59353616,25728010,5
+32737561,25728010,4
+121471027,25728010,4
+100169550,25728010,5
+xfile99,25728010,3
+longya,25728010,2
+62503467,25728010,3
+130248738,25728010,3
+71107908,25728010,3
+masaike,25728010,3
+ienen,25728010,3
+daesu_u,25728010,4
+59425944,25728010,3
+65784611,25728010,3
+63989347,25728010,3
+kyo62,25728010,4
+4192759,25728010,3
+44517782,25728010,4
+58999340,25728010,4
+1143666,25728010,3
+51183805,25728010,4
+46722690,25728010,3
+fanzling,25728010,3
+121920760,25728010,4
+81721634,25728010,4
+xiaobaohys,25728010,2
+74818677,25728010,3
+51314858,25728010,3
+caixiaoqiang,25728010,4
+50455314,25728010,4
+64110948,25728010,4
+2431779,25728010,4
+turinglee,25728010,3
+53317988,25728010,3
+4380478,25728010,5
+33977432,25728010,4
+37106108,25728010,4
+49266863,25728010,4
+49404071,25728010,3
+136113347,25728010,4
+63394553,25728010,5
+rurucat,25728010,3
+58290785,25728010,3
+60131423,25728010,3
+76636095,25728010,4
+thirdsummer,25728010,3
+Light_L,25728010,-1
+njtintin,25728010,4
+36952373,25728010,5
+65372022,25728010,3
+49712766,25728010,4
+zini8023,25728010,3
+79336159,25728010,4
+42106999,25728010,3
+foxbaby_1104,25728010,4
+frosteeeee,25728010,3
+1651604,25728010,4
+33282308,25728010,2
+12074004,25728010,4
+63352492,25728010,3
+westender,25728010,4
+89852120,25728010,3
+68568891,25728010,4
+cgy0330,25728010,4
+102938445,25728010,4
+129175694,25728010,4
+56161116,25728010,4
+59716419,25728010,5
+124789721,25728010,4
+canaryyang,25728010,3
+xiyuanaries,25728010,4
+74797419,25728010,-1
+115714696,25728010,5
+69378440,25728010,4
+48354152,25728010,3
+chowmo,25728010,3
+61311789,25728010,3
+63971578,25728010,3
+77048663,25728010,5
+73084756,25728010,5
+63965908,25728010,-1
+15342214,25728010,3
+wyjfl,25728010,3
+Obtson,25728010,3
+90694420,25728010,5
+124093629,25728010,4
+yzone,25728010,4
+21606016,25728010,3
+97936654,25728010,4
+13129748,25728010,3
+37751161,25728010,3
+63923908,25728010,3
+54757798,25728010,5
+1766764,25728010,3
+68265970,25728010,4
+79822624,25728010,4
+45165612,25728010,4
+50663434,25728010,4
+AILUHAN123,25728010,3
+19009449,25728010,4
+46534834,25728010,4
+78413869,25728010,2
+115660168,25728010,4
+Aso,25728010,4
+4213331,25728010,-1
+63547117,25728010,3
+56941343,25728010,3
+ixiawyj,25728010,2
+72169675,25728010,4
+komos,25728010,4
+flowermoi,25728010,4
+zc1020,25728010,4
+69805658,25728010,3
+51503621,25728010,4
+dun_z,25728010,3
+66481682,25728010,4
+atk914,25728010,4
+8701005,25728010,4
+1383301,25728010,5
+jiane,25728010,3
+seventhworkshop,25728010,4
+70296365,25728010,4
+3791953,25728010,3
+48356258,25728010,4
+hkl0711,25728010,4
+60536729,25728010,5
+87831764,25728010,3
+51195696,25728010,3
+4516843,25728010,4
+liangzhuzaoshu,25728010,-1
+47869637,25728010,3
+ProfThunder,25728010,4
+J13,25728010,3
+44105688,25728010,3
+1767400,25728010,4
+2110961,25728010,4
+80226411,25728010,3
+50069501,25728010,4
+zhangying0913,25728010,3
+zhaoyu1222,25728010,5
+36031855,25728010,3
+68990799,25728010,5
+Fxlly3,25728010,5
+babychoc,25728010,4
+sangou,25728010,3
+9167697,25728010,-1
+52951268,25728010,4
+youknow810,25728010,3
+lingkong911,25728010,3
+raychau,25728010,3
+54721365,25728010,3
+48589119,25728010,4
+sunxuhang,25728010,3
+fan_tuan,25728010,3
+paeonia19,25728010,4
+48848721,25728010,3
+61111185,25728010,5
+beanny,25728010,4
+48441373,25728010,4
+63688559,25728010,4
+51318360,25728010,4
+62536526,25728010,4
+3588917,25728010,4
+90807462,25728010,4
+3599865,25728010,4
+zy421,25728010,4
+48509446,25728010,4
+juwujian,25728010,3
+Exaiy,25728010,4
+smartsz,25728010,4
+fuka0621,25728010,-1
+40907907,25728010,3
+3305024,25728010,4
+2048402,25728010,5
+70879537,25728010,3
+classical622,25728010,3
+83415615,25728010,2
+58209087,25728010,4
+18080670,25728010,4
+126980247,25728010,4
+50074678,25728010,4
+83662787,25728010,3
+2225215,25728010,4
+1530502,25728010,-1
+127354177,25728010,5
+43507289,25728010,4
+126417194,25728010,3
+42149787,25728010,4
+Havilia,25728010,4
+codeyu,25728010,4
+70057422,25728010,4
+tom926,25728010,3
+48826276,25728010,4
+55937876,25728010,5
+yhn33,25728010,4
+faiel,25728010,3
+meijiangshi,25728010,3
+14088916,25728010,2
+einverne,25728010,5
+61110479,25728010,4
+zhangcoolhaas,25728010,4
+jiangnanmgf,25728010,5
+xiaoling1218,25728010,5
+49576050,25728010,5
+40593729,25728010,3
+tijuana,25728010,3
+119750263,25728010,4
+17672710,25728010,3
+jyuelovejay,25728010,4
+49997537,25728010,4
+trianglecat,25728010,3
+102618249,25728010,4
+42347630,25728010,3
+64249051,25728010,4
+135886747,25728010,4
+124640229,25728010,4
+14836914,25728010,3
+moveqiu,25728010,3
+84047449,25728010,4
+jielunaimomo,25728010,5
+zaozi,25728010,4
+3403174,25728010,5
+58886429,25728010,5
+63306444,25728010,3
+50060410,25728010,2
+dongbai,25728010,-1
+huyouyou,25728010,4
+zuoshoudezuo,25728010,4
+76331020,25728010,4
+60270558,25728010,3
+124403595,25728010,5
+59568163,25728010,3
+51951428,25728010,4
+cyansugar,25728010,3
+82250645,25728010,5
+66657271,25728010,3
+81244293,25728010,4
+46970893,25728010,4
+81404706,25728010,3
+zxt1219,25728010,4
+48119914,25728010,3
+62659146,25728010,2
+133471355,25728010,4
+83777012,25728010,3
+qiaomai,25728010,3
+131984957,25728010,4
+heroting,25728010,4
+Esther.,25728010,4
+58369888,25728010,3
+48700507,25728010,5
+61258936,25728010,5
+tjvicwong,25728010,4
+twogang,25728010,4
+75874484,25728010,4
+75874484,25728010,4
+52373612,25728010,5
+Max-66,25728010,4
+90546251,25728010,4
+saosaoxy,25728010,4
+76244481,25728010,3
+1230444,25728010,3
+120287477,25728010,3
+btone0808,25728010,2
+xuaoling,25728010,3
+56104621,25728010,3
+63844800,25728010,3
+1593742,25728010,3
+lynnstefanie,25728010,-1
+65983445,25728010,3
+52838594,25728010,3
+65187145,25728010,3
+59217273,25728010,4
+128614166,25728010,5
+42923614,25728010,4
+51093087,25728010,3
+whisperstone,25728010,5
+Annandan,25728010,4
+2350018,25728010,3
+1613608,25728010,4
+69475039,25728010,4
+87275356,25728010,3
+52374368,25728010,4
+sail308,25728010,-1
+108451433,25728010,4
+38863376,25728010,3
+39937848,25728010,4
+edward1988,25728010,2
+ffx1201,25728010,4
+53798089,25728010,5
+phunny,25728010,3
+vensli,25728010,4
+yogaeven,25728010,4
+landy1995,25728010,5
+12794807,25728010,3
+kitor,25728010,4
+3189714,25728010,5
+kimling,25728010,4
+45810109,25728010,3
+78601907,25728010,3
+53656219,25728010,4
+2202819,25728010,5
+44714353,25728010,4
+51833331,25728010,4
+liang9527,25728010,4
+122173068,25728010,4
+25240448,25728010,4
+77626905,25728010,4
+nangle,25728010,4
+wind_gxh,25728010,3
+41732863,25728010,5
+62055066,25728010,4
+52539806,25728010,4
+103214078,25728010,3
+JustStayReal,25728010,4
+4239908,25728010,5
+120267137,25728010,4
+69273736,25728010,4
+53416381,25728010,5
+VIPP,25728010,4
+65313383,25728010,3
+gardenia17,25728010,4
+56475433,25728010,4
+31812370,25728010,4
+68635736,25728010,3
+55585297,25728010,4
+75446135,25728010,2
+51515100,25728010,4
+80568483,25728010,5
+74056494,25728010,3
+73600166,25728010,4
+imjerry,25728010,3
+3177593,25728010,3
+zhangleyuan,25728010,3
+59013874,25728010,5
+surishaw,25728010,5
+1458725,25728010,4
+bearbean,25728010,4
+43778462,25728010,-1
+zhaoyao0919,25728010,4
+weijianjian,25728010,4
+48712788,25728010,4
+qiqihhappy,25728010,5
+87691265,25728010,2
+81384030,25728010,5
+flora_panda,25728010,4
+110104355,25728010,3
+49762208,25728010,4
+4613921,25728010,5
+45529514,25728010,3
+119415852,25728010,3
+64009647,25728010,3
+50061483,25728010,3
+69838036,25728010,2
+48542981,25728010,3
+44006704,25728010,4
+68985594,25728010,5
+12031989,25728010,4
+70549270,25728010,5
+nearlloveyou,25728010,3
+Redd,25728010,4
+Sophieless,25728010,3
+46053347,25728010,4
+84109824,25728010,5
+7510013,25728010,3
+Grace_Xuliang,25728010,4
+yoonjae_,25728010,3
+35846375,25728010,4
+fuck_time,25728010,4
+yededi8821,25728010,4
+49338971,25728010,3
+zod798,25728010,3
+128661562,25728010,3
+80887950,25728010,3
+67730092,25728010,4
+37840696,25728010,4
+28152891,25728010,3
+2374657,25728010,4
+49884766,25728010,4
+SVEN-YR,25728010,5
+62709413,25728010,4
+48047032,25728010,3
+2106137,25728010,4
+18586571,25728010,3
+31102423,25728010,3
+57149541,25728010,3
+huanghuang0227,25728010,3
+w23,25728010,4
+66794531,25728010,4
+41634233,25728010,5
+132915990,25728010,-1
+CWQ1030,25728010,4
+91543095,25728010,3
+36008103,25728010,5
+63793789,25728010,4
+56159025,25728010,4
+weiwei1020,25728010,4
+80290185,25728010,3
+54756616,25728010,4
+77774632,25728010,4
+58139142,25728010,5
+135973466,25728010,5
+hualideweisuo,25728010,5
+75043360,25728010,3
+1523488,25728010,5
+61935443,25728010,4
+63612050,25728010,4
+47068033,25728010,5
+63359487,25728010,4
+52917026,25728010,4
+61438656,25728010,5
+54034056,25728010,4
+45291333,25728010,4
+60883554,25728010,-1
+4841197,25728010,4
+4841197,25728010,4
+4154813,25728010,3
+zhuzaixuanyabia,25728010,4
+63598192,25728010,4
+59693690,25728010,3
+colinpanda,25728010,4
+65184093,25728010,3
+47836887,25728010,3
+108077404,25728010,3
+82836529,25728010,4
+Veronicachai,25728010,3
+57653061,25728010,4
+56922790,25728010,5
+47821826,25728010,4
+90467667,25728010,3
+74566437,25728010,3
+falsefish,25728010,5
+2829310,25728010,3
+65369148,25728010,3
+jes77,25728010,4
+jes77,25728010,4
+46812658,25728010,5
+3105123,25728010,5
+85250768,25728010,3
+gluttony6,25728010,3
+45594123,25728010,4
+54781799,25728010,3
+28834737,25728010,3
+35414122,25728010,4
+37424688,25728010,3
+Yubk111111,25728010,5
+79526047,25728010,5
+63287823,25728010,5
+130888340,25728010,4
+84418105,25728010,-1
+115474584,25728010,5
+zcc225,25728010,5
+60155135,25728010,4
+heiziyefengkuan,25728010,4
+2482985,25728010,4
+1886385,25728010,3
+52287609,25728010,3
+44457357,25728010,2
+yinhedang,25728010,5
+49456596,25728010,4
+wqmeoe,25728010,3
+74700188,25728010,4
+3202437,25728010,4
+70699214,25728010,3
+fenris,25728010,5
+41786270,25728010,3
+120480108,25728010,4
+68390208,25728010,3
+62457534,25728010,5
+50953807,25728010,4
+68186986,25728010,5
+81162851,25728010,4
+caohongmei,25728010,3
+2600693,25728010,3
+80797429,25728010,3
+miaoyan,25728010,3
+130488268,25728010,3
+93595508,25728010,5
+59276645,25728010,4
+yalindongdong,25728010,4
+babywineer,25728010,3
+130823206,25728010,4
+marco_0708,25728010,5
+imoviekobe,25728010,3
+85472462,25728010,4
+moonbird39,25728010,4
+2788057,25728010,3
+48272875,25728010,4
+127809639,25728010,4
+90214054,25728010,3
+119931381,25728010,5
+123386745,25728010,4
+1786605,25728010,3
+45804814,25728010,3
+1333942,25728010,3
+aaaaaaaaaaa,25728010,3
+rainbowjae,25728010,3
+soya43464983,25728010,4
+1666477,25728010,3
+allblue,25728010,4
+88214819,25728010,3
+43508209,25728010,3
+1743097,25728010,4
+57409980,25728010,3
+70055114,25728010,4
+pariseros,25728010,5
+lukaka,25728010,4
+shuizhimuhua,25728010,4
+1364278,25728010,4
+42388686,25728010,5
+53485894,25728010,3
+58375992,25728010,3
+xjrm,25728010,4
+45215375,25728010,3
+49082695,25728010,3
+83017283,25728010,4
+willinchang,25728010,4
+99550697,25728010,1
+121042228,25728010,-1
+qqs,25728010,4
+58035552,25728010,3
+3657702,25728010,4
+helloajun,25728010,5
+ilovehouyi,25728010,4
+61223167,25728010,4
+SheRrySweets,25728010,4
+64725454,25728010,2
+120884684,25728010,5
+edgeyeung,25728010,5
+122399571,25728010,5
+46436685,25728010,-1
+2049622,25728010,2
+88138031,25728010,5
+71625816,25728010,4
+51886935,25728010,5
+vc2046,25728010,4
+TZX119WADE,25728010,4
+52550764,25728010,4
+55287270,25728010,3
+63941479,25728010,4
+4411646,25728010,3
+56981196,25728010,5
+3830976,25728010,3
+3478406,25728010,4
+44849027,25728010,5
+65546282,25728010,4
+70248212,25728010,4
+79379701,25728010,4
+96044338,25728010,3
+93104938,25728010,4
+3644112,25728010,-1
+feiranny,25728010,3
+2784226,25728010,3
+vexit,25728010,-1
+wusiqi,25728010,3
+63531003,25728010,4
+ruo1996,25728010,2
+45712857,25728010,5
+damao7923,25728010,3
+doexist,25728010,3
+wtforz,25728010,3
+1378503,25728010,4
+liuningba,25728010,4
+47257949,25728010,3
+lesones,25728010,3
+1324592,25728010,4
+46815070,25728010,3
+2198031,25728010,4
+93332466,25728010,3
+58720878,25728010,-1
+luluzhou,25728010,2
+sean_chen,25728010,3
+50900048,25728010,2
+69392447,25728010,-1
+2866973,25728010,3
+135228152,25728010,4
+51165620,25728010,2
+63778802,25728010,2
+73542789,25728010,3
+fafnir5251,25728010,5
+3598072,25728010,3
+feisha,25728010,2
+sxy921026,25728010,3
+34070573,25728010,5
+crystal612,25728010,4
+3874094,25728010,3
+1632116,25728010,3
+4462311,25728010,3
+2196104,25728010,3
+71235824,25728010,4
+43886305,25728010,3
+45890616,25728010,4
+68542833,25728010,2
+justlulu,25728010,3
+82995055,25728010,5
+70310265,25728010,5
+6243740,25728010,5
+44412475,25728010,5
+74246341,25728010,5
+56866137,25728010,5
+daetou,25728010,4
+hudali,25728010,3
+51730167,25728010,4
+83861463,25728010,5
+1892627,25728010,3
+summerdayday,25728010,4
+71806570,25728010,3
+84675514,25728010,4
+Suiyee,25728010,4
+120938785,25728010,3
+69605901,25728010,4
+kumasan,25728010,-1
+fyl00,25728010,4
+59110325,25728010,4
+11035464,25728010,3
+49919541,25728010,4
+55405486,25728010,4
+93423717,25728010,4
+57969965,25728010,5
+49072248,25728010,5
+baijixing,25728010,5
+58179619,25728010,4
+53531270,25728010,4
+asfhl,25728010,4
+ask4more,25728010,-1
+asanisimasa,25728010,2
+65981408,25728010,3
+unnanae,25728010,3
+68878726,25728010,3
+131887292,25728010,5
+53246779,25728010,3
+4391066,25728010,4
+4159460,25728010,5
+63730928,25728010,3
+1898022,25728010,3
+Vanessa.,25728010,3
+3756476,25728010,5
+59012758,25728010,4
+35008425,25728010,3
+61706956,25728010,2
+64276762,25728010,4
+4190834,25728010,4
+133914507,25728010,4
+jieyaren,25728010,3
+yo911217,25728010,5
+1762955,25728010,4
+61219748,25728010,3
+BlackPure,25728010,4
+119243560,25728010,4
+yscysc803,25728010,4
+73784914,25728010,3
+veverlee,25728010,3
+52819229,25728010,4
+68324587,25728010,4
+80319931,25728010,3
+70954003,25728010,3
+4597338,25728010,3
+127741400,25728010,4
+crazylr9,25728010,4
+airan712,25728010,3
+mackalex,25728010,3
+adelebleu,25728010,4
+65907866,25728010,3
+121678709,25728010,4
+4026585,25728010,4
+cyt597851526,25728010,4
+68007629,25728010,4
+64880714,25728010,3
+maxdoreen,25728010,-1
+snowandrain,25728010,3
+mxing,25728010,4
+49604766,25728010,5
+f91_82,25728010,3
+82456210,25728010,3
+81691649,25728010,4
+127688878,25728010,5
+csp,25728010,3
+2790802,25728010,4
+66802637,25728010,5
+63569379,25728010,4
+1352823,25728010,5
+125760534,25728010,5
+2341945,25728010,3
+TalkChan,25728010,4
+135886452,25728010,5
+52143519,25728010,4
+41437311,25728010,4
+61312247,25728010,3
+41686939,25728010,3
+43153098,25728010,4
+69469805,25728010,5
+43171172,25728010,4
+fatfish1882,25728010,5
+70201706,25728010,4
+57795255,25728010,4
+Curry_Egg,25728010,4
+53477720,25728010,4
+64759279,25728010,3
+yeslie,25728010,4
+98790915,25728010,5
+60392839,25728010,4
+Tiamo0118,25728010,4
+4348683,25728010,4
+ricechow,25728010,4
+illiteracy,25728010,3
+45770435,25728010,4
+p2165,25728010,3
+a1b2c31221,25728010,5
+48863239,25728010,4
+ILWTFT,25728010,4
+laespoirao,25728010,5
+86093744,25728010,2
+96166134,25728010,5
+fanyichao,25728010,4
+2947080,25728010,4
+43966741,25728010,4
+2717266,25728010,4
+84564093,25728010,4
+44725365,25728010,4
+zhirunze,25728010,4
+4422872,25728010,4
+48253364,25728010,4
+godspeedcl,25728010,-1
+55287492,25728010,5
+62877248,25728010,3
+wangxiaoerhehe,25728010,4
+103550111,25728010,4
+53710950,25728010,4
+133533044,25728010,5
+2820162,25728010,3
+120496189,25728010,4
+lolarun,25728010,3
+charo,25728010,5
+63422177,25728010,3
+58231376,25728010,4
+13984024,25728010,5
+hanblues,25728010,5
+jongwook,25728010,3
+53935985,25728010,4
+3066956,25728010,4
+64636485,25728010,5
+41065595,25728010,5
+113119005,25728010,5
+52456948,25728010,4
+57998290,25728010,3
+87532340,25728010,3
+joe0317,25728010,2
+73843195,25728010,3
+51736421,25728010,-1
+2238966,25728010,3
+kiryoYNG,25728010,4
+angelmagazine,25728010,4
+63890745,25728010,5
+akalin,25728010,5
+55324515,25728010,4
+42582235,25728010,5
+66111849,25728010,5
+71036525,25728010,5
+xiaoye780621,25728010,-1
+45526237,25728010,-1
+70043510,25728010,4
+2505733,25728010,4
+41606567,25728010,5
+45198943,25728010,4
+45951993,25728010,4
+68318202,25728010,5
+79560195,25728010,3
+datouma,25728010,-1
+69476809,25728010,5
+estersssss,25728010,2
+50271595,25728010,4
+64259816,25728010,3
+4412898,25728010,4
+121227270,25728010,4
+30765497,25728010,-1
+135604751,25728010,3
+128747636,25728010,3
+3456571,25728010,-1
+38612058,25728010,4
+52887670,25728010,5
+oldmanriver,25728010,3
+fenglimuren,25728010,3
+41629334,25728010,3
+L1nda,25728010,4
+68792801,25728010,4
+4251957,25728010,-1
+76873283,25728010,3
+63588779,25728010,3
+quanzhouren,25728010,4
+yongzhenkaiyuan,25728010,2
+shaojinvivian,25728010,4
+90091065,25728010,3
+48474156,25728010,4
+46891725,25728010,4
+94032593,25728010,3
+59431794,25728010,4
+49482611,25728010,4
+lancy27,25728010,4
+76288538,25728010,4
+winterjane,25728010,4
+ding1yi,25728010,3
+lesley921206,25728010,4
+49273575,25728010,3
+51061132,25728010,3
+3540441,25728010,4
+52844553,25728010,5
+9386655,25728010,3
+65400706,25728010,3
+xiaosongqu,25728010,3
+Youandi4,25728010,-1
+30885179,25728010,4
+lingrui1995,25728010,3
+63241642,25728010,3
+59113427,25728010,4
+64162059,25728010,4
+103622760,25728010,4
+55769530,25728010,4
+realbrownie,25728010,4
+52073671,25728010,2
+miracle1025,25728010,4
+61752391,25728010,3
+46934074,25728010,3
+3060891,25728010,2
+61591334,25728010,5
+saintkaka,25728010,4
+kkkhahajill,25728010,3
+3783132,25728010,4
+50566140,25728010,-1
+60841792,25728010,-1
+82520014,25728010,4
+68869311,25728010,4
+71267265,25728010,4
+zhr19951204,25728010,4
+2180501,25728010,4
+57148360,25728010,3
+xingze,25728010,4
+yeeeeeee,25728010,4
+57784183,25728010,4
+42680639,25728010,4
+lee9,25728010,3
+hollycn,25728010,5
+47485602,25728010,3
+chenpei0318521,25728010,4
+yrming,25728010,4
+53324194,25728010,5
+2465698,25728010,4
+weichengluanma,25728010,3
+little_mari0,25728010,3
+idmmdi,25728010,5
+caixiaopao,25728010,3
+52451276,25728010,3
+zuoxian,25728010,5
+sharonbao,25728010,5
+donglaixia,25728010,4
+13646967,25728010,4
+80634044,25728010,5
+wj8198026,25728010,4
+shshshadow,25728010,-1
+wusiyi,25728010,3
+48167750,25728010,3
+douxinrui,25728010,5
+2230826,25728010,3
+wangmuyang,25728010,4
+49711912,25728010,2
+jessemeng,25728010,4
+47381919,25728010,5
+119987907,25728010,4
+severus,25728010,4
+kimyoujin,25728010,4
+45459664,25728010,4
+AugustSeven,25728010,3
+Regina2007,25728010,4
+51095448,25728010,5
+41764429,25728010,4
+ss25,25728010,3
+1414083,25728010,3
+66979855,25728010,4
+84896098,25728010,4
+44589835,25728010,5
+zidane1983,25728010,4
+52744740,25728010,5
+hushibookstore,25728010,4
+shinyhjx,25728010,5
+zhangjian_1q26,25728010,3
+57214774,25728010,4
+4470965,25728010,5
+3801810,25728010,4
+xiebingning,25728010,4
+westhaven,25728010,5
+122753398,25728010,4
+WuDingShang,25728010,5
+19469713,25728010,5
+64277319,25728010,5
+airgraceful,25728010,-1
+78602807,25728010,4
+catherine_koo,25728010,4
+chesterchoi,25728010,4
+snowbusy,25728010,-1
+89843774,25728010,4
+52284149,25728010,3
+59774628,25728010,3
+47675907,25728010,2
+66836438,25728010,3
+HHHLLLDDD,25728010,3
+76026872,25728010,3
+cyrus_wong,25728010,4
+biskup,25728010,3
+hwf254,25728010,4
+62582526,25728010,3
+39660567,25728010,3
+Goudy,25728010,5
+vacancy_,25728010,3
+68732725,25728010,4
+76611723,25728010,4
+64093040,25728010,3
+3594852,25728010,3
+130953760,25728010,4
+68894222,25728010,3
+50902906,25728010,-1
+MOVIE--KO,25728010,3
+74855673,25728010,3
+Lycheeciel,25728010,4
+helene9933,25728010,3
+56160592,25728010,4
+127108498,25728010,3
+lanpi,25728010,3
+130075345,25728010,4
+43678253,25728010,3
+131171128,25728010,3
+123185013,25728010,3
+lyne7,25728010,3
+28559746,25728010,4
+4372978,25728010,3
+4789105,25728010,4
+36149701,25728010,4
+65283286,25728010,4
+84398440,25728010,4
+50190840,25728010,5
+chenjiusan,25728010,3
+23288310,25728010,4
+46738101,25728010,4
+ijihoon,25728010,3
+40748484,25728010,5
+52892284,25728010,4
+56435930,25728010,3
+109558086,25728010,5
+starstargoo,25728010,4
+chongfei,25728010,4
+60390276,25728010,4
+49177191,25728010,3
+82570233,25728010,4
+30962131,25728010,3
+134574897,25728010,4
+53256243,25728010,4
+136434557,25728010,3
+meiying1989,21937450,4
+53381423,21937450,5
+73530411,21937450,3
+50561433,21937450,4
+70546993,21937450,4
+45485577,21937450,5
+sungminlee,21937450,3
+81611618,21937450,4
+54865791,21937450,4
+ho000,21937450,4
+47038913,21937450,5
+sissyinene,21937450,4
+48051561,21937450,5
+121920760,21937450,3
+66922310,21937450,5
+132842672,21937450,4
+3858083,21937450,4
+69168057,21937450,5
+moushenglingyu,21937450,4
+56435930,21937450,4
+potatotomato,21937450,5
+64242774,21937450,3
+108821133,21937450,4
+lingdongling,21937450,3
+136619363,21937450,4
+Juicewly,21937450,4
+sevenplus,21937450,3
+58456907,21937450,5
+Sugar23,21937450,4
+liarb,21937450,5
+131535153,21937450,4
+baoxiaolin0913,21937450,4
+4087422,21937450,4
+106548711,21937450,5
+csaver,21937450,5
+46934074,21937450,4
+50632642,21937450,5
+26820371,21937450,4
+fangfang5,21937450,5
+131723853,21937450,5
+130978369,21937450,4
+towne,21937450,4
+2076258,21937450,4
+63663908,21937450,5
+45580337,21937450,5
+47127791,21937450,4
+99543696,21937450,4
+136842545,21937450,4
+lanyangyangdecc,21937450,4
+59158037,21937450,4
+wuyunoy,21937450,3
+50034582,21937450,5
+53275472,21937450,5
+62608491,21937450,4
+yimomomo,21937450,5
+81445026,21937450,2
+errrlilly,21937450,4
+97453118,21937450,4
+94925902,21937450,5
+74115900,21937450,4
+43271004,21937450,4
+81697410,21937450,4
+szlbanxia,21937450,5
+1845398,21937450,4
+56035155,21937450,3
+heaven0618,21937450,4
+122932689,21937450,4
+49460136,21937450,4
+50683342,21937450,4
+75168640,21937450,4
+52139708,21937450,5
+57928250,21937450,5
+75961277,21937450,4
+114057522,21937450,3
+3104945,21937450,-1
+73382181,21937450,5
+ruilixiurui,21937450,4
+4597153,21937450,5
+SunandShadow,21937450,5
+53479153,21937450,5
+6745246,21937450,4
+monet-l,21937450,3
+60390807,21937450,4
+99483183,21937450,4
+1437339,21937450,5
+110901020,21937450,3
+34990334,21937450,4
+woniu0125,21937450,4
+61196519,21937450,3
+8244005,21937450,5
+beckhacong,21937450,5
+64332284,21937450,5
+xiaodou52,21937450,4
+78455506,21937450,5
+36759958,21937450,5
+gluttony6,21937450,4
+134271581,21937450,5
+55997229,21937450,4
+zhz586,21937450,4
+2387348,21937450,4
+tanmingdong,21937450,3
+57418562,21937450,4
+68592556,21937450,5
+58802831,21937450,4
+64203397,21937450,4
+48066058,21937450,5
+archieyeah,21937450,3
+q296579068,21937450,4
+81916130,21937450,5
+47785072,21937450,3
+59290556,21937450,4
+84176426,21937450,5
+57350477,21937450,5
+123270343,21937450,5
+Youandi4,21937450,-1
+shiningmonkey,21937450,4
+37184493,21937450,4
+ABQK,21937450,4
+46230886,21937450,5
+89804270,21937450,3
+cyrus_wong,21937450,3
+cai1st,21937450,5
+5116652,21937450,3
+guolibin,21937450,5
+120358201,21937450,5
+100418686,21937450,3
+80193020,21937450,3
+eciah,21937450,5
+46506835,21937450,5
+Ghost.Melody,21937450,4
+55319176,21937450,5
+47037959,21937450,3
+WhyHowWhen,21937450,5
+57430820,21937450,4
+122944258,21937450,3
+1459659,21937450,4
+132463662,21937450,4
+58629032,21937450,3
+135179267,21937450,5
+58854842,21937450,3
+135610617,21937450,4
+83119838,21937450,4
+90681003,21937450,4
+103277074,21937450,3
+40674382,21937450,4
+67143504,21937450,5
+102713623,21937450,5
+78377702,21937450,4
+2206946,21937450,4
+jiang66,21937450,4
+aa7100089741,21937450,4
+78236258,21937450,4
+51753128,21937450,4
+77241502,21937450,5
+44228322,21937450,5
+41946814,21937450,5
+1286114,21937450,2
+50318763,21937450,3
+73308278,21937450,4
+50570726,21937450,3
+62308831,21937450,5
+59880621,21937450,5
+67409530,21937450,4
+48251188,21937450,4
+123274527,21937450,4
+ketsu214,21937450,5
+juliekathy,21937450,5
+65832475,21937450,5
+baby861708,21937450,4
+119683375,21937450,5
+55739456,21937450,4
+134528559,21937450,4
+127131340,21937450,2
+65260404,21937450,5
+54991804,21937450,4
+Vanessa...,21937450,4
+130993032,21937450,-1
+46340614,21937450,4
+32650866,21937450,4
+53907956,21937450,4
+53907956,21937450,4
+76075796,21937450,5
+14699938,21937450,4
+106341534,21937450,4
+liuyang1227,21937450,5
+54976256,21937450,4
+98956225,21937450,4
+69439267,21937450,4
+75360409,21937450,5
+spicymilk,21937450,4
+crosas,21937450,3
+72086305,21937450,3
+liyan1011,21937450,4
+34144556,21937450,5
+115051698,21937450,4
+RITABMW,21937450,3
+2305028,21937450,4
+115803435,21937450,4
+123111535,21937450,4
+40207458,21937450,5
+satanprince,21937450,4
+elviabenny,21937450,4
+MudDog,21937450,4
+leeconping,21937450,5
+131471616,21937450,5
+85245609,21937450,3
+137350189,21937450,5
+duffei,21937450,4
+LoveXXin,21937450,5
+136216464,21937450,4
+87546829,21937450,4
+40926979,21937450,5
+59273600,21937450,3
+njuhmj,21937450,4
+yore.,21937450,5
+Exaiy,21937450,4
+93892137,21937450,5
+99037241,21937450,4
+65635790,21937450,4
+3394942,21937450,5
+49833321,21937450,5
+76667923,21937450,5
+68430723,21937450,4
+131909298,21937450,3
+1941226,21937450,5
+kkkccc,21937450,4
+134279175,21937450,5
+120792651,21937450,4
+137244496,21937450,4
+teresa_leaves,21937450,3
+50640951,21937450,5
+87704099,21937450,4
+diysad,21937450,-1
+103663034,21937450,4
+53771727,21937450,3
+Elf_Moon_,21937450,5
+119399393,21937450,5
+yaomian,21937450,4
+flowervirus,21937450,5
+123645263,21937450,4
+OpenSpaces,21937450,2
+agentying,21937450,4
+11886721,21937450,4
+11630561,21937450,5
+36805272,21937450,5
+91243092,21937450,4
+59006405,21937450,5
+37040851,21937450,4
+2622237,21937450,5
+128991169,21937450,5
+58088047,21937450,5
+15321915,21937450,4
+39720218,21937450,3
+137206904,21937450,5
+1498974,21937450,4
+62705311,21937450,2
+82497315,21937450,4
+123404476,21937450,3
+131020888,21937450,3
+4158163,21937450,4
+137058497,21937450,3
+70549270,21937450,5
+137058479,21937450,3
+sun_g,21937450,5
+134625303,21937450,3
+44975625,21937450,4
+49223911,21937450,5
+61197777,21937450,4
+70603009,21937450,5
+123002309,21937450,3
+56739185,21937450,4
+66860143,21937450,3
+irenemi,21937450,5
+74376371,21937450,4
+6270415,21937450,-1
+130563496,21937450,5
+130445057,21937450,2
+131025711,21937450,4
+53381748,21937450,4
+68630108,21937450,2
+wusuowei102,21937450,5
+36499503,21937450,3
+xxxeleven,21937450,2
+137073841,21937450,4
+137076197,21937450,4
+63077328,21937450,4
+tofrom,21937450,5
+koukoukou,21937450,2
+26512977,21937450,2
+73715669,21937450,5
+78667352,21937450,5
+137071245,21937450,-1
+xubeisi,21937450,4
+y19940504,21937450,4
+84408746,21937450,5
+83389859,21937450,5
+128025495,21937450,5
+37879706,21937450,4
+74718384,21937450,5
+weekendmilk,21937450,5
+coldcall,21937450,5
+66993193,21937450,4
+130333236,21937450,4
+64063237,21937450,4
+66799313,21937450,5
+58797277,21937450,4
+115097585,21937450,3
+53809848,21937450,5
+56779406,21937450,4
+1730018,21937450,4
+3254520,21937450,5
+yoyo3105,21937450,4
+62482710,21937450,5
+77840043,21937450,5
+leechambo,21937450,4
+47630541,21937450,4
+charlesdt,21937450,5
+79104110,21937450,5
+132016475,21937450,4
+81193574,21937450,4
+57570888,21937450,5
+132802176,21937450,4
+1871649,21937450,5
+46565536,21937450,5
+58180925,21937450,3
+fuyu8818,21937450,4
+26950131,21937450,4
+59066202,21937450,3
+48497184,21937450,5
+ilovehouyi,21937450,5
+134854042,21937450,4
+78601907,21937450,4
+136629154,21937450,5
+3618233,21937450,3
+84593268,21937450,4
+yutang,21937450,5
+33528664,21937450,3
+123373729,21937450,4
+96161152,21937450,4
+83662787,21937450,4
+75721685,21937450,2
+rosemaomi,21937450,5
+49713409,21937450,4
+84560634,21937450,5
+4616483,21937450,4
+73307715,21937450,4
+121540770,21937450,5
+131878915,21937450,5
+xguozi,21937450,4
+102916412,21937450,5
+1285158,21937450,5
+kinso,21937450,3
+124640229,21937450,3
+2913672,21937450,4
+91313551,21937450,5
+65448112,21937450,4
+momoko1024,21937450,5
+41532813,21937450,4
+68578532,21937450,5
+4409969,21937450,5
+bulijite,21937450,4
+tuka0710,21937450,4
+46421123,21937450,4
+71863067,21937450,3
+71026194,21937450,5
+136736172,21937450,5
+66320772,21937450,3
+45250315,21937450,5
+58901835,21937450,3
+ivy0713,21937450,5
+MS13,21937450,4
+65339606,21937450,5
+39913165,21937450,3
+59993815,21937450,3
+75446135,21937450,4
+hot_air,21937450,4
+42862661,21937450,4
+69977937,21937450,5
+pinecone511,21937450,1
+77048663,21937450,5
+122779208,21937450,5
+jinliping,21937450,5
+komos,21937450,4
+xfpeng,21937450,4
+136113347,21937450,5
+136083805,21937450,4
+xiesicong,21937450,3
+kunkunxiansheng,21937450,4
+128353754,21937450,4
+1503790,21937450,5
+60435322,21937450,5
+2990853,21937450,4
+48313436,21937450,3
+suntiaotiao,21937450,4
+136496987,21937450,4
+43762131,21937450,4
+130488268,21937450,4
+1552126,21937450,5
+tianchi1989,21937450,4
+41318343,21937450,3
+59878606,21937450,5
+40306743,21937450,4
+57156729,21937450,4
+2423100,21937450,3
+96869610,21937450,5
+74471598,21937450,4
+58927688,21937450,4
+gegecheng,21937450,5
+ccguodong,21937450,4
+1702693,21937450,4
+dianyingzhizui,21937450,5
+maoxiaomao,21937450,4
+51226277,21937450,5
+xingwei521,21937450,5
+52140378,21937450,4
+gooo111,21937450,4
+52243098,21937450,4
+zaiyuepaoduosh,21937450,5
+128405947,21937450,2
+49115709,21937450,5
+105859099,21937450,3
+mabeysomeday,21937450,4
+thana19tos90,21937450,3
+65656855,21937450,3
+81316047,21937450,3
+cescshen,21937450,4
+1709876,21937450,5
+45933152,21937450,4
+120268837,21937450,4
+92377736,21937450,4
+moonlightshit,21937450,5
+70831868,21937450,4
+55933493,21937450,4
+bravefish,21937450,4
+yaoyaoxiaozhan,21937450,4
+83025643,21937450,5
+justgin,21937450,4
+kidify,21937450,4
+codeyu,21937450,4
+127345355,21937450,5
+95059521,21937450,4
+gj_1987,21937450,5
+hugocross,21937450,4
+37355445,21937450,4
+37620368,21937450,4
+3512976,21937450,3
+136475671,21937450,4
+133083146,21937450,5
+43393007,21937450,3
+zxb42195,21937450,4
+47025279,21937450,4
+jennyseath,21937450,3
+2043777,21937450,2
+3783132,21937450,5
+liudideard,21937450,4
+128409852,21937450,3
+andrpirl,21937450,2
+50698955,21937450,4
+134668230,21937450,4
+4303837,21937450,5
+tongziyam,21937450,4
+41130036,21937450,4
+zbar1234,21937450,3
+4251044,21937450,5
+43698664,21937450,4
+55272555,21937450,4
+45071489,21937450,4
+nicdone,21937450,3
+wood0913,21937450,3
+131988839,21937450,1
+52273132,21937450,5
+qq1294689526,21937450,4
+55916506,21937450,5
+71055026,21937450,5
+68090825,21937450,4
+1434867,21937450,3
+3166954,21937450,5
+135694361,21937450,4
+64134058,21937450,4
+AllenHarris,21937450,5
+eloc,21937450,4
+63292246,21937450,4
+25982397,21937450,2
+45182133,21937450,3
+53416381,21937450,5
+47821826,21937450,3
+55309646,21937450,4
+acomplexman,21937450,4
+44574851,21937450,4
+29894151,21937450,4
+4906139,21937450,4
+ranke0129,21937450,4
+azlu,21937450,4
+53089248,21937450,5
+49082619,21937450,4
+58086381,21937450,4
+melonking,21937450,3
+2441016,21937450,4
+55717894,21937450,4
+134540692,21937450,3
+81809037,21937450,5
+cam1lla,21937450,5
+69605901,21937450,5
+83881122,21937450,4
+63423532,21937450,4
+izaijin,21937450,3
+59366761,21937450,4
+57084794,21937450,5
+maichao,21937450,3
+46766109,21937450,4
+48509446,21937450,3
+63672355,21937450,5
+3537100,21937450,5
+1205451,21937450,3
+54967455,21937450,4
+1095652,21937450,4
+4123019,21937450,3
+magicxiaobi,21937450,4
+29753984,21937450,4
+37160658,21937450,4
+73655476,21937450,3
+seriousz,21937450,4
+123635851,21937450,5
+120112831,21937450,-1
+50222808,21937450,4
+50541233,21937450,-1
+1739582,21937450,5
+caixiaoqiang,21937450,5
+29844884,21937450,5
+91942139,21937450,4
+jinjidexiong,21937450,2
+61741541,21937450,3
+114441069,21937450,3
+2849700,21937450,5
+1658796,21937450,3
+134417369,21937450,4
+126703081,21937450,4
+55840610,21937450,4
+68294915,21937450,5
+kgbbeer,21937450,4
+132183694,21937450,4
+135012811,21937450,3
+123645823,21937450,3
+32737561,21937450,4
+54721365,21937450,4
+37382236,21937450,4
+3693991,21937450,4
+25635000,21937450,4
+50271595,21937450,4
+AAAxiaowei,21937450,3
+4405668,21937450,4
+128005150,21937450,3
+80763196,21937450,5
+49983823,21937450,3
+Regina2007,21937450,3
+ruiye,21937450,3
+4614026,21937450,4
+4217605,21937450,3
+allahking,21937450,4
+115819915,21937450,4
+65233662,21937450,5
+powerfultony,21937450,5
+59378291,21937450,5
+YuSu,21937450,3
+63793789,21937450,5
+babychoc,21937450,5
+61536847,21937450,4
+45529514,21937450,5
+49995331,21937450,3
+48542981,21937450,4
+81742461,21937450,4
+133689309,21937450,4
+69010983,21937450,5
+94715443,21937450,4
+49824578,21937450,5
+63598192,21937450,4
+35414122,21937450,4
+105749305,21937450,5
+promise_717,21937450,4
+45291333,21937450,4
+135788425,21937450,4
+134495648,21937450,3
+1370640,21937450,2
+2841721,21937450,3
+123470496,21937450,5
+90546251,21937450,3
+65772452,21937450,5
+81834646,21937450,-1
+70029025,21937450,5
+classical622,21937450,4
+54931017,21937450,4
+80072984,21937450,5
+50054232,21937450,4
+45808380,21937450,4
+banyinxie,21937450,4
+yueyuebetty,21937450,3
+135906410,21937450,5
+68749284,21937450,4
+56411907,21937450,3
+58364140,21937450,3
+1443563,21937450,4
+127688878,21937450,5
+135682333,21937450,5
+42646716,21937450,4
+39717671,21937450,4
+64425214,21937450,5
+52376240,21937450,4
+1437723,21937450,3
+47599277,21937450,4
+3249318,21937450,3
+92154450,21937450,5
+25960765,21937450,4
+135030304,21937450,4
+2187326,21937450,3
+45069650,21937450,5
+41758984,21937450,4
+46737279,21937450,4
+cuiyingjun,21937450,5
+135697509,21937450,3
+Zenforfree,21937450,5
+1400739,21937450,4
+48312397,21937450,5
+ice41322,21937450,2
+1369113,21937450,3
+pandakun,21937450,5
+67489382,21937450,5
+4582130,21937450,5
+bensdiary,21937450,3
+81149989,21937450,4
+2265138,21937450,4
+63872170,21937450,5
+58064281,21937450,3
+66871580,21937450,-1
+43767898,21937450,4
+47504578,21937450,5
+hanlisen,21937450,5
+70201706,21937450,5
+jijillwang,21937450,4
+xumhandy,21937450,4
+135762513,21937450,5
+135762513,21937450,5
+40211770,21937450,3
+77026559,21937450,5
+zhangqiong07,21937450,5
+131463434,21937450,5
+61485977,21937450,3
+134171030,21937450,4
+baisechengai,21937450,4
+70392138,21937450,4
+53830250,21937450,4
+57534338,21937450,3
+45927442,21937450,3
+79053164,21937450,4
+42803127,21937450,4
+40436997,21937450,4
+52948477,21937450,3
+60908358,21937450,5
+1491898,21937450,4
+ttoohh,21937450,5
+59113427,21937450,5
+120902753,21937450,5
+TomiOh,21937450,4
+gaojie0114,21937450,3
+richer725,21937450,2
+jammy48,21937450,2
+133471355,21937450,4
+98174233,21937450,5
+131533540,21937450,5
+49929451,21937450,5
+45789849,21937450,4
+61132884,21937450,3
+34727533,21937450,4
+45875943,21937450,4
+4441196,21937450,4
+49631776,21937450,5
+sandlee1986,21937450,5
+79151265,21937450,3
+76413878,21937450,4
+130146633,21937450,4
+immortal_light,21937450,4
+133245536,21937450,3
+51648708,21937450,5
+127768866,21937450,4
+97879198,21937450,5
+51578168,21937450,5
+135248938,21937450,5
+merengue,21937450,4
+face_off,21937450,4
+63051365,21937450,5
+68528163,21937450,3
+fenshoudashi,21937450,4
+iCyBLeu,21937450,4
+80319931,21937450,3
+62821858,21937450,4
+freddie,21937450,5
+4366766,21937450,-1
+envyandecho,21937450,5
+nintendog,21937450,-1
+43921829,21937450,3
+1061597,21937450,5
+1209155,21937450,4
+83942238,21937450,3
+73836689,21937450,4
+luot,21937450,5
+3051599,21937450,5
+aihepin,21937450,4
+3857465,21937450,4
+84778949,21937450,4
+47052162,21937450,4
+44349387,21937450,5
+42841033,21937450,4
+90669017,21937450,5
+8718496,21937450,4
+leaween,21937450,5
+1132056,21937450,5
+58774315,21937450,4
+1831746,21937450,3
+64479752,21937450,3
+40970313,21937450,4
+44002119,21937450,-1
+56655457,21937450,5
+szdd,21937450,4
+88690250,21937450,4
+wj8198026,21937450,4
+56657947,21937450,-1
+3253959,21937450,5
+64397699,21937450,4
+58044501,21937450,5
+43507289,21937450,4
+134503726,21937450,4
+levislong,21937450,4
+88938201,21937450,4
+50480913,21937450,4
+Zamai,21937450,4
+88230298,21937450,5
+66511912,21937450,5
+121080553,21937450,5
+79094382,21937450,5
+85055779,21937450,4
+70619574,21937450,5
+unruturn,21937450,5
+dodov,21937450,4
+70001053,21937450,3
+42093443,21937450,4
+74865532,21937450,5
+shengqingyue,21937450,4
+95442218,21937450,4
+coctelxw,21937450,4
+1943869,21937450,4
+AtJuly,21937450,4
+1837285,21937450,5
+basil_yying,21937450,5
+48997081,21937450,4
+archiechen,21937450,5
+63604607,21937450,5
+46999271,21937450,5
+131632042,21937450,5
+135396561,21937450,3
+78908924,21937450,5
+80289790,21937450,5
+4442564,21937450,4
+63463854,21937450,5
+ajiuyo,21937450,4
+fuzyu,21937450,5
+Happyprince,21937450,4
+50618978,21937450,4
+14949134,21937450,5
+42011516,21937450,4
+callmeX5,21937450,5
+soya43464983,21937450,5
+67289981,21937450,5
+48636603,21937450,2
+uniooo,21937450,5
+81998298,21937450,3
+36853373,21937450,5
+64529500,21937450,4
+49351576,21937450,3
+4411646,21937450,4
+51457792,21937450,4
+4709296,21937450,4
+125760534,21937450,-1
+58622210,21937450,4
+4918742,21937450,-1
+41685674,21937450,4
+61317429,21937450,4
+1360789,21937450,4
+77419999,21937450,4
+2813940,21937450,3
+81850559,21937450,4
+42535832,21937450,4
+47807102,21937450,4
+75937419,21937450,2
+33663451,21937450,4
+aben,21937450,4
+wxhsolo,21937450,5
+wakeng,21937450,4
+shiiirley,21937450,3
+dashdot,21937450,4
+49558819,21937450,4
+63223538,21937450,4
+cristinali,21937450,4
+97955936,21937450,4
+Grey1128,21937450,4
+108077404,21937450,5
+66178639,21937450,3
+121471027,21937450,5
+51606142,21937450,2
+69914528,21937450,3
+79834928,21937450,5
+97354586,21937450,4
+4568924,21937450,3
+55847546,21937450,3
+3678176,21937450,5
+90205716,21937450,4
+Aimovie,21937450,3
+97181253,21937450,5
+jimmy037,21937450,4
+hellovito,21937450,4
+2383316,21937450,5
+58079231,21937450,1
+119559372,21937450,5
+73540633,21937450,5
+133651758,21937450,3
+28398689,21937450,3
+together1018,21937450,3
+79161066,21937450,5
+47191946,21937450,3
+Hey-Anan,21937450,-1
+elainefish,21937450,2
+126980247,21937450,4
+4129696,21937450,3
+66965988,21937450,5
+kalasnikf,21937450,4
+1815954,21937450,4
+82979684,21937450,5
+43500933,21937450,3
+1133756,21937450,3
+65907866,21937450,2
+64725454,21937450,3
+1654472,21937450,4
+wjj5991985,21937450,4
+a_lying_eight,21937450,4
+43067179,21937450,4
+3569506,21937450,4
+73603686,21937450,3
+92344823,21937450,5
+68913582,21937450,4
+danielsoha,21937450,5
+59353616,21937450,4
+1101928,21937450,3
+71078758,21937450,5
+79075918,21937450,4
+52997011,21937450,5
+49893647,21937450,5
+58057180,21937450,4
+96473743,21937450,4
+Aiyouyouyouyou,21937450,5
+65062440,21937450,5
+3547067,21937450,1
+133533044,21937450,4
+3535619,21937450,3
+76951999,21937450,4
+93294169,21937450,5
+84558178,21937450,5
+129936841,21937450,4
+51126355,21937450,5
+40596238,21937450,3
+36458786,21937450,4
+74290800,21937450,4
+71918297,21937450,4
+55438034,21937450,4
+30322114,21937450,3
+3729693,21937450,4
+62541843,21937450,5
+83322081,21937450,3
+119681197,21937450,5
+42368147,21937450,2
+57459962,21937450,5
+71890436,21937450,4
+73995122,21937450,4
+3142312,21937450,4
+amake,21937450,3
+fishzdream,21937450,5
+nicy119,21937450,5
+125972621,21937450,5
+oraclefrank,21937450,4
+wusiyi,21937450,4
+55484274,21937450,3
+74053506,21937450,4
+59110325,21937450,4
+3687712,21937450,5
+72995803,21937450,-1
+54059457,21937450,3
+63901336,21937450,5
+3379883,21937450,5
+56941343,21937450,5
+121479059,21937450,4
+shuaihuanggua,21937450,4
+neillee312,21937450,3
+68760385,21937450,4
+130496328,21937450,3
+105196709,21937450,5
+al1ene,21937450,4
+87818830,21937450,5
+41431313,21937450,4
+70176975,21937450,4
+57609384,21937450,4
+weberchung,21937450,5
+124142229,21937450,5
+62960950,21937450,4
+51583306,21937450,5
+131921881,21937450,4
+18080670,21937450,4
+61752391,21937450,3
+69691925,21937450,4
+55446081,21937450,3
+43330595,21937450,5
+ovanisho,21937450,4
+doylerao,21937450,5
+81250941,21937450,4
+governorofwuxi,21937450,3
+xingjiaqi0622,21937450,5
+Ruthwang,21937450,4
+zhanmingzhang,21937450,5
+52161408,21937450,4
+131183374,21937450,5
+133965029,21937450,5
+59301808,21937450,4
+yuanaibing,21937450,3
+105188554,21937450,5
+64284331,21937450,5
+51378440,21937450,5
+tijuana,21937450,2
+59040075,21937450,4
+62309781,21937450,3
+62094946,21937450,3
+49785601,21937450,4
+84300026,21937450,4
+47154620,21937450,5
+furore,21937450,4
+53396901,21937450,4
+48589119,21937450,3
+3187951,21937450,5
+quarter,21937450,3
+133556437,21937450,4
+1595012,21937450,5
+2596903,21937450,2
+likecake,21937450,2
+85250768,21937450,4
+93136822,21937450,3
+56252551,21937450,4
+124425803,21937450,4
+cgy0330,21937450,4
+70840584,21937450,5
+ajaymina,21937450,5
+43253714,21937450,4
+chedan-NB,21937450,5
+norker,21937450,4
+104823188,21937450,4
+75328137,21937450,3
+66946937,21937450,4
+78797281,21937450,5
+ihzoail,21937450,5
+133586070,21937450,4
+120322125,21937450,4
+103415530,21937450,4
+tourstory,21937450,4
+54485775,21937450,5
+85830142,21937450,5
+48156038,21937450,3
+34724471,21937450,3
+87852350,21937450,3
+64895995,21937450,3
+65546282,21937450,2
+cherryli5288,21937450,5
+93190703,21937450,4
+29725427,21937450,5
+ymwtime,21937450,5
+62678962,21937450,4
+2428233,21937450,4
+jieyaren,21937450,3
+46038896,21937450,4
+44777564,21937450,3
+53152938,21937450,5
+44748882,21937450,5
+89604223,21937450,5
+pursuemylove,21937450,5
+3772330,21937450,4
+124517309,21937450,5
+lumins,21937450,4
+98956475,21937450,5
+43589213,21937450,4
+x18304373131,21937450,5
+45123579,21937450,5
+93102985,21937450,4
+69970746,21937450,4
+Seeos,21937450,4
+hushibookstore,21937450,5
+62380646,21937450,5
+zhuoying,21937450,5
+64933961,21937450,4
+78934649,21937450,4
+62465119,21937450,-1
+zhangying0913,21937450,3
+78144849,21937450,3
+longya,21937450,4
+66735315,21937450,4
+heydzi,21937450,3
+davidyxy798,21937450,4
+63755124,21937450,3
+73471648,21937450,5
+4242859,21937450,4
+72292155,21937450,5
+67575567,21937450,4
+94791211,21937450,5
+32776828,21937450,3
+70121713,21937450,-1
+pii3you,21937450,4
+nxam,21937450,4
+61221215,21937450,4
+78603493,21937450,4
+shaochen,21937450,3
+ms_one,21937450,4
+67695514,21937450,5
+85395609,21937450,5
+119284862,21937450,4
+roger589,21937450,4
+114977043,21937450,3
+hengyunyixiang,21937450,3
+14352801,21937450,4
+104903420,21937450,4
+48117298,21937450,5
+snowintheheaven,21937450,5
+54863567,21937450,5
+49041663,21937450,4
+132433995,21937450,3
+52513783,21937450,5
+34894274,21937450,3
+38559106,21937450,4
+81097879,21937450,4
+yiliaobailiao,21937450,4
+81639579,21937450,4
+tavi0529,21937450,4
+1211087,21937450,3
+ccushuaia1220,21937450,-1
+4527709,21937450,4
+71861591,21937450,5
+wangmuyang,21937450,5
+freenest,21937450,5
+68938607,21937450,5
+1482191,21937450,4
+132936108,21937450,5
+2135257,21937450,4
+24357802,21937450,4
+90660703,21937450,4
+51618406,21937450,4
+banruoliuli,21937450,3
+53817584,21937450,4
+65361448,21937450,5
+54542205,21937450,5
+71663707,21937450,5
+50663434,21937450,4
+54272292,21937450,5
+93667110,21937450,4
+heidiholic,21937450,4
+realcathy,21937450,4
+37756107,21937450,4
+78914788,21937450,5
+69838036,21937450,4
+86248756,21937450,3
+28843399,21937450,3
+QiangGeFML,21937450,3
+sevenmurmurs,21937450,3
+SJzzy314,21937450,4
+61309406,21937450,4
+50558148,21937450,5
+130848820,21937450,4
+27891262,21937450,4
+4106948,21937450,5
+58429306,21937450,5
+84629340,21937450,5
+63391208,21937450,4
+3959996,21937450,4
+wyh89,21937450,5
+86638464,21937450,5
+87069686,21937450,4
+129051527,21937450,3
+131470546,21937450,4
+73287736,21937450,4
+44849027,21937450,5
+50219991,21937450,4
+46220008,21937450,5
+Lemonsir,21937450,3
+holy-fishman,21937450,4
+53935985,21937450,4
+gualan,21937450,3
+orangesuan,21937450,3
+tripster,21937450,4
+Dream-Sky,21937450,4
+88574021,21937450,5
+81628425,21937450,3
+atao226,21937450,5
+manue1,21937450,4
+66602695,21937450,4
+48346917,21937450,5
+91114065,21937450,5
+crainmax,21937450,5
+61569747,21937450,4
+monana,21937450,4
+lovejidi,21937450,4
+umissi,21937450,4
+54653189,21937450,4
+70236644,21937450,3
+77092352,21937450,4
+107635262,21937450,3
+xuluman,21937450,4
+69463567,21937450,5
+57217580,21937450,3
+2311976,21937450,3
+SKubrick,21937450,3
+houjingmeng,21937450,4
+3137688,21937450,4
+60676290,21937450,5
+99349662,21937450,4
+36825112,21937450,4
+badjian,21937450,3
+47053575,21937450,2
+91034167,21937450,5
+55532506,21937450,5
+35909565,21937450,5
+liusuer,21937450,4
+83853096,21937450,4
+69301715,21937450,4
+noisH,21937450,3
+119183809,21937450,5
+43096733,21937450,4
+1486502,21937450,3
+xiaojirou007,21937450,3
+72712114,21937450,4
+108173445,21937450,-1
+61886291,21937450,5
+53724452,21937450,3
+52056943,21937450,1
+91464573,21937450,4
+21136727,21937450,5
+loewefree,21937450,4
+131841419,21937450,5
+64818522,21937450,4
+58457804,21937450,2
+92155502,21937450,4
+2426655,21937450,5
+14345802,21937450,5
+chelsea1214,21937450,4
+43621347,21937450,4
+38404027,21937450,5
+joybang,21937450,5
+airgraceful,21937450,-1
+procxu,21937450,4
+124283847,21937450,5
+71688338,21937450,-1
+72063309,21937450,4
+44109266,21937450,3
+47612067,21937450,2
+27675083,21937450,5
+64406910,21937450,5
+1766794,21937450,4
+duduxiongzhifu,21937450,2
+erobin,21937450,4
+49711912,21937450,4
+3391447,21937450,1
+70426965,21937450,4
+TomThend,21937450,4
+120443579,21937450,5
+2713839,21937450,3
+dearruby,21937450,5
+2965888,21937450,5
+51938291,21937450,4
+42907481,21937450,4
+atlas0413,21937450,3
+115714696,21937450,5
+feixianggod,21937450,5
+49319217,21937450,5
+3759700,21937450,4
+vivianlovesun,21937450,5
+1958405,21937450,4
+53586447,21937450,4
+2843086,21937450,5
+57979645,21937450,3
+xiongweilin,21937450,4
+30959598,21937450,3
+90564869,21937450,4
+84884580,21937450,4
+71133348,21937450,5
+Colin-Mason,21937450,5
+fkimi,21937450,4
+hashayaqi,21937450,2
+IANMUSHUNER,21937450,3
+caicaihuang,21937450,4
+demoncat,21937450,2
+cooiky,21937450,5
+55901947,21937450,5
+lancaoqin,21937450,4
+55568427,21937450,4
+68583230,21937450,5
+48183944,21937450,3
+44579499,21937450,4
+49368228,21937450,5
+131887292,21937450,5
+44134802,21937450,4
+126123688,21937450,3
+127345510,21937450,4
+83548080,21937450,4
+58515570,21937450,4
+47183512,21937450,5
+67162659,21937450,3
+78757579,21937450,3
+yaole,21937450,3
+79823709,21937450,4
+56890909,21937450,5
+95769207,21937450,5
+51277324,21937450,4
+66706245,21937450,4
+68366606,21937450,3
+49384394,21937450,4
+47081544,21937450,4
+60885961,21937450,5
+67039563,21937450,3
+superstar666,21937450,4
+59491193,21937450,-1
+Tianyangyang,21937450,5
+netsurfe,21937450,3
+Cathyo,21937450,5
+44939590,21937450,5
+melancholyhill,21937450,4
+46572945,21937450,5
+53936094,21937450,5
+63732204,21937450,5
+wennie1995,21937450,4
+55454756,21937450,5
+70892372,21937450,4
+128596881,21937450,5
+75332568,21937450,5
+bbbonniechan,21937450,5
+70805035,21937450,3
+76018725,21937450,4
+SpenceAguilar,21937450,4
+nailuoyitai,21937450,4
+openMiss,21937450,5
+lionelwait,21937450,5
+1371141,21937450,3
+anvirdo,21937450,5
+dudumozart,21937450,4
+129857157,21937450,5
+CJPVIP,21937450,3
+46564377,21937450,5
+13053957,21937450,3
+youlala,21937450,5
+4361447,21937450,3
+53437305,21937450,4
+47496790,21937450,5
+55414544,21937450,5
+50154536,21937450,4
+47983226,21937450,5
+48939653,21937450,5
+57882904,21937450,4
+73405553,21937450,5
+58369888,21937450,5
+61457577,21937450,3
+jessica_21,21937450,4
+79834547,21937450,5
+yangqinghe1101,21937450,5
+80854961,21937450,3
+jjq8590188,21937450,5
+56936714,21937450,5
+124028516,21937450,4
+Ka_D_chy,21937450,-1
+76359081,21937450,2
+127118502,21937450,4
+mingyaback,21937450,4
+teselaaaaaaa,21937450,3
+65257168,21937450,4
+3192663,21937450,5
+71899949,21937450,5
+77214430,21937450,4
+44284522,21937450,4
+3436526,21937450,5
+44600167,21937450,5
+63644078,21937450,5
+1397901,21937450,5
+131383041,21937450,4
+1068202,21937450,5
+JustStayReal,21937450,4
+68732725,21937450,5
+61831900,21937450,-1
+wiping,21937450,5
+58454098,21937450,5
+51156582,21937450,4
+67878115,21937450,3
+Andred,21937450,3
+53378505,21937450,4
+58716721,21937450,5
+70011209,21937450,5
+46436685,21937450,-1
+2320548,21937450,4
+iwh35,21937450,-1
+1796542,21937450,5
+75001572,21937450,5
+87719942,21937450,4
+62388980,21937450,4
+stellaaa,21937450,5
+lyishaou,21937450,5
+agenta,21937450,4
+128012079,21937450,4
+43327545,21937450,3
+69572250,21937450,4
+ihee1995,21937450,5
+1665848,21937450,2
+131268122,21937450,4
+sunwiner,21937450,3
+YHC08300604,21937450,5
+YHC08300604,21937450,5
+130817915,21937450,4
+1416219,21937450,2
+55663940,21937450,-1
+fufu28,21937450,4
+50502799,21937450,5
+1220427,21937450,-1
+43334830,21937450,5
+4196011,21937450,4
+furien,21937450,4
+4867707,21937450,4
+1926472,21937450,4
+2821824,21937450,5
+46196075,21937450,4
+87691265,21937450,3
+58197963,21937450,3
+128641812,21937450,3
+42695630,21937450,5
+papa1968,21937450,4
+13070662,21937450,4
+y609660876,21937450,5
+37420300,21937450,5
+61935443,21937450,4
+tofuchico,21937450,4
+67072789,21937450,5
+51239314,21937450,5
+62671036,21937450,3
+84618418,21937450,3
+1155174,21937450,4
+80559391,21937450,5
+73669959,21937450,5
+3655806,21937450,5
+eadon,21937450,5
+67148832,21937450,3
+61922996,21937450,3
+65517433,21937450,4
+123283464,21937450,5
+liangsu,21937450,5
+4407883,21937450,3
+kkbear,21937450,4
+2617866,21937450,4
+78746228,21937450,5
+99707810,21937450,4
+V_Gemma,21937450,5
+74341937,21937450,4
+108113145,21937450,3
+52499368,21937450,5
+1029394,21937450,2
+57543745,21937450,4
+delchisio,21937450,4
+49961224,21937450,4
+66904097,21937450,5
+51222661,21937450,4
+97062329,21937450,4
+2058011,21937450,5
+34070623,21937450,4
+47835044,21937450,4
+2152546,21937450,4
+50451911,21937450,5
+53561160,21937450,4
+54196095,21937450,5
+52521119,21937450,2
+2849436,21937450,4
+100303280,21937450,4
+58065568,21937450,4
+56969619,21937450,4
+130919245,21937450,3
+54688945,21937450,4
+29433181,21937450,4
+zyzyzythl,21937450,-1
+36638409,21937450,4
+bigmiao,21937450,4
+39791533,21937450,3
+starry_liu,21937450,3
+1467433,21937450,3
+51284624,21937450,5
+64739308,21937450,4
+roseandwater,21937450,3
+66771297,21937450,5
+2671857,21937450,4
+changkxs,21937450,3
+zzlcslg,21937450,-1
+49091580,21937450,3
+3111681,21937450,3
+48120700,21937450,3
+87402327,21937450,4
+Lucy.Y,21937450,4
+80466570,21937450,4
+73280607,21937450,4
+51406263,21937450,4
+53513282,21937450,4
+50942732,21937450,4
+52680941,21937450,4
+50790931,21937450,4
+126225635,21937450,3
+41486823,21937450,3
+76255268,21937450,-1
+formyself,21937450,5
+ziv_tmac,21937450,5
+41216171,21937450,4
+zhouxiaoxian007,21937450,5
+60201729,21937450,4
+94514917,21937450,4
+52967718,21937450,3
+85191711,21937450,4
+30494029,21937450,4
+36100413,21937450,5
+wplee,21937450,5
+2230826,21937450,4
+36457443,21937450,5
+63281322,21937450,5
+121516783,21937450,5
+56809398,21937450,4
+61524961,21937450,4
+yakov,21937450,2
+mfmash,21937450,4
+67517659,21937450,-1
+66601743,21937450,5
+101915984,21937450,3
+121675139,21937450,4
+33538142,21937450,5
+83413131,21937450,4
+Wasted,21937450,4
+68841907,21937450,3
+AAAAFENG,21937450,5
+92544403,21937450,2
+115827848,21937450,5
+32433633,21937450,3
+45127178,21937450,5
+lovexunxun,21937450,5
+44276090,21937450,5
+41209497,21937450,3
+4627411,21937450,4
+66610462,21937450,5
+36475827,21937450,3
+59945441,21937450,4
+48990593,21937450,3
+62605100,21937450,5
+72584615,21937450,4
+4821642,21937450,4
+aiziyuer,21937450,3
+2788057,21937450,5
+121042228,21937450,-1
+64974509,21937450,5
+zhuweihui,21937450,-1
+43462039,21937450,5
+66488510,21937450,5
+shadow.u,21937450,3
+69117478,21937450,4
+18046588,21937450,4
+82087372,21937450,5
+kikyobei,21937450,4
+tipseek,21937450,2
+46103242,21937450,4
+qiangqiangzhang,21937450,3
+50230966,21937450,4
+65714390,21937450,5
+4534711,21937450,4
+48540834,21937450,3
+1752562,21937450,4
+64477541,21937450,5
+3521983,21937450,3
+72362309,21937450,5
+yushihui,21937450,3
+68201628,21937450,3
+sakurahao,21937450,4
+46152001,21937450,4
+130518384,21937450,5
+87636985,21937450,2
+97210124,21937450,4
+jiangliuer0518,21937450,4
+50519870,21937450,4
+71741571,21937450,-1
+why20061108,21937450,5
+56375945,21937450,3
+hellopunk,21937450,-1
+48878590,21937450,4
+72792251,21937450,3
+lanhouzi,21937450,3
+turnip_,21937450,5
+turnip_,21937450,5
+102938752,21937450,4
+1840162,21937450,4
+88564672,21937450,4
+jianchen810,21937450,3
+1929758,21937450,3
+52076778,21937450,3
+53937396,21937450,5
+48676534,21937450,5
+98793162,21937450,5
+fivero,21937450,3
+30058751,21937450,3
+41236968,21937450,4
+44575289,21937450,4
+117018256,21937450,5
+53551601,21937450,2
+51414722,21937450,5
+80901919,21937450,5
+torrors,21937450,5
+youyang1991,21937450,5
+88951785,21937450,4
+130069802,21937450,3
+34442427,21937450,3
+64886603,21937450,5
+105433832,21937450,4
+5747784,21937450,4
+54273337,21937450,3
+51330947,21937450,5
+69251373,21937450,3
+48975477,21937450,4
+54611843,21937450,4
+79381189,21937450,4
+52278915,21937450,4
+wanlili520,21937450,5
+flykyle,21937450,4
+36253770,21937450,1
+60426133,21937450,3
+88260197,21937450,4
+92592691,21937450,5
+Irissadness,21937450,4
+cool123cool,21937450,3
+1796581,21937450,5
+ranchho,21937450,3
+80461629,21937450,3
+tanghaoyun,21937450,5
+3276784,21937450,5
+72977963,21937450,4
+catsama77,21937450,4
+64476746,21937450,3
+29472366,21937450,5
+45876548,21937450,5
+63915564,21937450,4
+56138640,21937450,3
+qingmuwu,21937450,4
+42270798,21937450,3
+96142455,21937450,4
+51289504,21937450,5
+7223165,21937450,4
+88078787,21937450,4
+1056656,21937450,4
+1056656,21937450,4
+52530490,21937450,5
+1265797,21937450,4
+18508363,21937450,4
+M1993interspace,21937450,5
+4411528,21937450,5
+51909421,21937450,4
+atatstone,21937450,3
+2607605,21937450,3
+oliviapalermo,21937450,3
+66718384,21937450,5
+47876726,21937450,5
+78926576,21937450,5
+xiaopang1106,21937450,4
+117339283,21937450,2
+62677477,21937450,5
+fragment,21937450,5
+116744504,21937450,5
+63821120,21937450,3
+songxiaoci,21937450,3
+aprilwind_shi,21937450,4
+122092126,21937450,4
+LAMAU,21937450,4
+58338006,21937450,4
+justsay,21937450,2
+68260130,21937450,-1
+121828142,21937450,5
+78576225,21937450,2
+62949952,21937450,4
+82520014,21937450,5
+3848544,21937450,4
+48440561,21937450,-1
+59491063,21937450,3
+69235852,21937450,5
+55405960,21937450,3
+73925877,21937450,5
+81475444,21937450,3
+69133855,21937450,4
+44499287,21937450,4
+48751988,21937450,5
+130154428,21937450,3
+sousou,21937450,3
+122394659,21937450,5
+63150756,21937450,4
+SamuelYan,21937450,4
+63105886,21937450,3
+65388874,21937450,5
+48056336,21937450,4
+3598072,21937450,5
+66089736,21937450,4
+2532339,21937450,4
+38979539,21937450,3
+carl1988,21937450,4
+64757557,21937450,5
+63969160,21937450,3
+55272945,21937450,-1
+67922393,21937450,5
+allblue,21937450,3
+1450381,21937450,3
+heechen,21937450,5
+58926065,21937450,4
+129242545,21937450,4
+1856731,21937450,4
+18045809,21937450,3
+COKAINGZ,21937450,5
+61888159,21937450,4
+61497577,21937450,4
+50833916,21937450,5
+jiaowodlam,21937450,5
+13454833,21937450,3
+71051752,21937450,4
+xly-kk,21937450,5
+3471096,21937450,4
+77071490,21937450,3
+56198749,21937450,4
+MOKUZJY,21937450,3
+47619462,21937450,5
+64254116,21937450,-1
+jogirl,21937450,5
+122778853,21937450,5
+129967050,21937450,4
+68561607,21937450,4
+49914687,21937450,4
+64182296,21937450,5
+66627790,21937450,4
+80024991,21937450,4
+44045443,21937450,3
+71108776,21937450,4
+fanyichao,21937450,5
+41283752,21937450,2
+qq469463678,21937450,4
+luoxiaomumu,21937450,5
+xuaoling,21937450,4
+54224355,21937450,3
+62132064,21937450,4
+106597439,21937450,3
+1505559,21937450,4
+xiaoan7EF,21937450,4
+djazyd,21937450,5
+43375121,21937450,4
+maqingyun,21937450,5
+45818433,21937450,3
+4386130,21937450,4
+88585728,21937450,3
+71709733,21937450,4
+55925373,21937450,5
+62455169,21937450,5
+10557307,21937450,3
+yuyuyuyuyuyuyu,21937450,2
+91498001,21937450,5
+2483772,21937450,5
+25560643,21937450,5
+65199752,21937450,4
+huoxingzhuyao,21937450,5
+SHOUYOU,21937450,3
+84057160,21937450,5
+27475876,21937450,4
+61084664,21937450,4
+Half-Face,21937450,-1
+leonlancelot,21937450,5
+leonlancelot,21937450,5
+67449498,21937450,4
+80134372,21937450,4
+37567693,21937450,2
+90814793,21937450,-1
+76636095,21937450,4
+doraeman,21937450,5
+mascot,21937450,-1
+Sh1neYuan,21937450,4
+50312843,21937450,5
+128494995,21937450,4
+106730683,21937450,1
+62041863,21937450,5
+66919459,21937450,3
+53135086,21937450,4
+GHOSTJIN,21937450,4
+63568179,21937450,3
+77457194,21937450,5
+kingcopushu,21937450,3
+edward2wong,21937450,4
+edward2wong,21937450,4
+1793879,21937450,4
+Vicky0507,21937450,5
+49170151,21937450,5
+57615935,21937450,4
+104127028,21937450,3
+75691865,21937450,5
+60145877,21937450,4
+13009847,21937450,3
+dovm,21937450,5
+leibirdy,21937450,5
+29202128,21937450,5
+ATPud,21937450,5
+79454142,21937450,3
+einmalig,21937450,3
+49108399,21937450,4
+66824195,21937450,5
+91631692,21937450,5
+zombiekid,21937450,3
+57714176,21937450,3
+57984537,21937450,5
+54067845,21937450,5
+2360360,21937450,5
+50482233,21937450,5
+louis4498,21937450,4
+89436229,21937450,5
+vipzole,21937450,4
+88853288,21937450,5
+fuck09,21937450,5
+2387426,21937450,4
+98524765,21937450,4
+59892824,21937450,4
+beijinglife,21937450,5
+1493686,21937450,3
+48033961,21937450,5
+binmusiq,21937450,4
+lukaka,21937450,3
+thaddeuskhu,21937450,3
+15799355,21937450,4
+4058668,21937450,4
+4614939,21937450,4
+dongdayou,21937450,5
+lovecimi,21937450,2
+48047032,21937450,4
+125151595,21937450,5
+45278107,21937450,3
+57819875,21937450,4
+wenliangno1,21937450,4
+58801998,21937450,5
+1530502,21937450,4
+littlejy,21937450,4
+97076624,21937450,4
+yuni192,21937450,5
+njtintin,21937450,5
+Jacobzebra,21937450,5
+26907758,21937450,4
+119230037,21937450,5
+suian918,21937450,4
+81404706,21937450,4
+47637789,21937450,4
+TaTaxxxx,21937450,3
+79404532,21937450,4
+fengzide,21937450,5
+61462956,21937450,4
+sylvia1991hu,21937450,3
+zhuzaixuanyabia,21937450,3
+2416826,21937450,3
+81199576,21937450,5
+64039605,21937450,3
+poppw,21937450,5
+60304638,21937450,5
+78933331,21937450,4
+43130617,21937450,4
+28212620,21937450,3
+60618166,21937450,5
+75310522,21937450,5
+3633287,21937450,-1
+fanlv,21937450,4
+68424766,21937450,4
+64218065,21937450,4
+gjr1027,21937450,4
+tom926,21937450,2
+Minimalis,21937450,3
+67350499,21937450,3
+125038920,21937450,4
+74404471,21937450,-1
+78847176,21937450,2
+62908552,21937450,5
+fly_low,21937450,3
+89757493,21937450,3
+baby_wyx,21937450,3
+4590478,21937450,5
+61281204,21937450,2
+45241922,21937450,4
+struggle410,21937450,4
+36619966,21937450,4
+67763944,21937450,3
+61500590,21937450,5
+changefiona,21937450,4
+izhukai,21937450,5
+izhukai,21937450,5
+81336001,21937450,4
+68981521,21937450,4
+28356235,21937450,5
+63531003,21937450,5
+blue4light,21937450,4
+heisland,21937450,4
+naples5,21937450,4
+theSabayon,21937450,4
+81939398,21937450,4
+53862196,21937450,5
+43256737,21937450,5
+sxy921026,21937450,3
+tricky_V,21937450,3
+51921097,21937450,3
+59784525,21937450,4
+1378503,21937450,3
+malu,21937450,3
+lloy,21937450,5
+112083584,21937450,5
+61062297,21937450,5
+49206730,21937450,5
+winterpills,21937450,5
+74599483,21937450,5
+104445642,21937450,4
+81589227,21937450,5
+qhfls,21937450,4
+89410418,21937450,4
+126389489,21937450,5
+47193126,21937450,3
+zjia,21937450,4
+47437377,21937450,5
+aibaobaoguai327,21937450,4
+73359835,21937450,5
+zisu1115,21937450,4
+63414399,21937450,5
+58180247,21937450,5
+52529736,21937450,4
+56557788,21937450,4
+41634233,21937450,5
+40237768,21937450,5
+127934825,21937450,5
+52790172,21937450,3
+92156048,21937450,4
+18360610,21937450,3
+84989711,21937450,3
+talk2linx,21937450,4
+46870778,21937450,5
+puhuahua,21937450,5
+siaa,21937450,3
+57319381,21937450,2
+spiritsun,21937450,3
+76789340,21937450,3
+59541262,21937450,4
+52552585,21937450,5
+48369826,21937450,4
+82821279,21937450,3
+52401020,21937450,4
+37106108,21937450,5
+128513143,21937450,5
+51490972,21937450,4
+127933526,21937450,5
+47576659,21937450,4
+79453297,21937450,5
+wanpunleo,21937450,4
+61328119,21937450,5
+81240977,21937450,5
+4143335,21937450,4
+spaceli,21937450,5
+65764407,21937450,3
+49991488,21937450,4
+55846970,21937450,4
+1971105,21937450,4
+freedi2009,21937450,4
+zhangzhangzhang,21937450,4
+82838350,21937450,5
+51155213,21937450,4
+45184440,21937450,4
+ijihoon,21937450,4
+thomsonkoo,21937450,4
+79411589,21937450,3
+longlanglang,21937450,3
+52624380,21937450,3
+49926967,21937450,5
+67216908,21937450,3
+bayuquandi,21937450,3
+40659159,21937450,4
+53886643,21937450,5
+bzys,21937450,4
+69101082,21937450,4
+haejia,21937450,5
+hdjjys,21937450,3
+55439146,21937450,4
+51653649,21937450,4
+97434116,21937450,4
+cwyalpha,21937450,3
+linchuzhuang,21937450,5
+73163829,21937450,5
+59571520,21937450,4
+50299714,21937450,5
+34043000,21937450,5
+61514882,21937450,5
+76309125,21937450,3
+likuliku,21937450,5
+1096571,21937450,4
+mhyigeren,21937450,4
+108942456,21937450,3
+58545738,21937450,5
+39863972,21937450,4
+93104938,21937450,5
+55886490,21937450,5
+veiko,21937450,4
+minsi,21937450,4
+3622487,21937450,4
+wuliangmouji,21937450,3
+vivifyvivi,21937450,3
+Obtson,21937450,3
+65890025,21937450,4
+122115730,21937450,4
+65664176,21937450,4
+67843385,21937450,5
+53554219,21937450,5
+67758880,21937450,4
+kashing,21937450,4
+54234433,21937450,5
+11289468,21937450,4
+84171597,21937450,3
+Betty818,21937450,5
+bestsecretlife,21937450,3
+tp111111,21937450,5
+3170513,21937450,4
+7132062,21937450,4
+97314140,21937450,5
+iiibuwan,21937450,4
+1516524,21937450,3
+suobang11,21937450,4
+49913788,21937450,5
+xiaotuo,21937450,3
+shesanjin,21937450,5
+cqwz,21937450,4
+61128841,21937450,4
+50924290,21937450,5
+1905433,21937450,3
+58051571,21937450,4
+hchwhite,21937450,4
+dianman,21937450,3
+45543286,21937450,4
+joyyoyo,21937450,4
+57915415,21937450,5
+boonup,21937450,3
+vivicky320,21937450,4
+57080555,21937450,4
+33302704,21937450,4
+lm9527,21937450,5
+ding1yi,21937450,3
+chelseawangqin,21937450,2
+81819960,21937450,3
+45712857,21937450,5
+4409109,21937450,4
+a1b2c31221,21937450,5
+xiaolianlian,21937450,3
+swwol32,21937450,4
+53467813,21937450,2
+sheenshuay,21937450,3
+53920626,21937450,4
+71984544,21937450,4
+thesue,21937450,3
+qsmuzhuo,21937450,5
+54285836,21937450,4
+46754344,21937450,3
+53841308,21937450,2
+60032003,21937450,3
+guyewuzhe,21937450,2
+2125225,21937450,4
+63454673,21937450,3
+51490342,21937450,4
+bijin,21937450,4
+71121390,21937450,5
+2288902,21937450,3
+chenhuayang,21937450,4
+KKKCI,21937450,4
+58132194,21937450,5
+J_Seraph,21937450,3
+76811076,21937450,4
+32033776,21937450,5
+128681174,21937450,5
+68342686,21937450,4
+128679548,21937450,4
+58776763,21937450,3
+4818146,21937450,5
+50752972,21937450,4
+54000391,21937450,5
+5964944,21937450,4
+73856461,21937450,3
+yanpealew,21937450,4
+80429601,21937450,5
+missdonglian,21937450,4
+1782017,21937450,1
+wsz910919,21937450,4
+1333997,21937450,3
+49282329,21937450,4
+hatter,21937450,4
+79194135,21937450,5
+47331203,21937450,4
+68138320,21937450,4
+63013195,21937450,4
+127788106,21937450,5
+Vanaf,21937450,5
+57291251,21937450,5
+51951428,21937450,4
+39607607,21937450,4
+3663654,21937450,4
+89565628,21937450,4
+juwujian,21937450,3
+50452092,21937450,3
+yangqiaohe,21937450,4
+60591590,21937450,4
+Jobszhuisui9,21937450,5
+niuniupipi1997,21937450,4
+1786605,21937450,3
+1929074,21937450,5
+57688571,21937450,3
+72665241,21937450,3
+61223246,21937450,5
+49128296,21937450,2
+2864670,21937450,4
+childdream,21937450,5
+hljmsfy,21937450,2
+45553197,21937450,5
+zhefengtalk,21937450,5
+40027917,21937450,4
+37266138,21937450,4
+48310966,21937450,4
+48590382,21937450,4
+54150965,21937450,4
+2449818,21937450,3
+djoko,21937450,3
+2694506,21937450,2
+102974670,21937450,4
+35640176,21937450,5
+37450029,21937450,3
+82767053,21937450,4
+43378617,21937450,5
+106955962,21937450,5
+40325281,21937450,4
+3089552,21937450,5
+woodyallen_1935,21937450,2
+126014934,21937450,5
+leehomstyle,21937450,4
+50811466,21937450,5
+52838594,21937450,3
+78164697,21937450,5
+abpeter,21937450,3
+65258617,21937450,4
+53557989,21937450,4
+rolemodel,21937450,5
+53099754,21937450,5
+seasonart,21937450,3
+127766292,21937450,5
+54188941,21937450,4
+sanchor,21937450,3
+91473851,21937450,3
+3318463,21937450,4
+74670373,21937450,5
+31636992,21937450,5
+71814035,21937450,4
+66957442,21937450,4
+80074512,21937450,5
+lolitahanhan,21937450,4
+4440208,21937450,5
+73907495,21937450,5
+62304049,21937450,5
+4273687,21937450,4
+67742715,21937450,3
+2174443,21937450,5
+roroholic,21937450,-1
+jingmeng_xiahti,21937450,4
+2641925,21937450,5
+66138098,21937450,3
+fang0079,21937450,4
+21606016,21937450,4
+84852383,21937450,4
+8425223,21937450,5
+77774632,21937450,4
+koreadream,21937450,5
+62842401,21937450,4
+114096414,21937450,4
+zy421,21937450,4
+58151132,21937450,3
+67615408,21937450,5
+triumph,21937450,5
+59638655,21937450,4
+1026974,21937450,4
+49748817,21937450,4
+88131394,21937450,3
+54782120,21937450,4
+4366193,21937450,4
+56998996,21937450,4
+T.V.Zoe,21937450,4
+2424181,21937450,5
+64780091,21937450,3
+lokaven,21937450,4
+jammie2011,21937450,5
+96290717,21937450,5
+60635722,21937450,4
+75441561,21937450,5
+39427061,21937450,-1
+qijiuzhiyue,21937450,3
+62174984,21937450,5
+64391309,21937450,5
+thehours_lxx,21937450,3
+57142558,21937450,4
+easytodo,21937450,2
+HBHelena,21937450,4
+yuimi5,21937450,5
+40488240,21937450,5
+67758784,21937450,5
+42420072,21937450,4
+68983294,21937450,4
+yingyingyixiao,21937450,4
+1330470,21937450,4
+50739519,21937450,3
+40760358,21937450,4
+2773012,21937450,4
+71946766,21937450,4
+maikatse,21937450,4
+32128731,21937450,4
+iamenen,21937450,-1
+54594928,21937450,4
+scha-_-,21937450,4
+122109669,21937450,5
+kuangren79,21937450,3
+GMDY,21937450,5
+muxuehan,21937450,5
+71188767,21937450,3
+1795295,21937450,5
+28743020,21937450,5
+81351219,21937450,2
+duanxxx,21937450,4
+61823164,21937450,5
+travelzmc,21937450,3
+2881197,21937450,5
+79914885,21937450,3
+leeyzh,21937450,5
+xiaoranbao,21937450,3
+4239908,21937450,5
+63359487,21937450,4
+57262819,21937450,4
+64901268,21937450,4
+64218724,21937450,4
+Daisy777777777,21937450,-1
+2450715,21937450,4
+cherrymaruko,21937450,4
+60836223,21937450,3
+53884376,21937450,4
+70589885,21937450,5
+imarco,21937450,3
+88747698,21937450,4
+54342307,21937450,4
+51733805,21937450,4
+sail308,21937450,-1
+49731840,21937450,2
+2718336,21937450,5
+83517836,21937450,5
+4418328,21937450,4
+121365508,21937450,2
+48091725,21937450,5
+zhaoyao0919,21937450,3
+51305060,21937450,4
+80936991,21937450,3
+66637654,21937450,5
+43071558,21937450,5
+51059686,21937450,3
+58039910,21937450,4
+53242249,21937450,4
+59820461,21937450,2
+52678874,21937450,4
+73444446,21937450,5
+84947801,21937450,3
+42224701,21937450,5
+42224701,21937450,5
+zhuang13,21937450,3
+yueyuedad1972,21937450,4
+2465698,21937450,4
+1319405,21937450,3
+amyzong,21937450,5
+caizixuan,21937450,5
+41437311,21937450,5
+104600848,21937450,3
+61319449,21937450,4
+47869637,21937450,3
+67287207,21937450,4
+79016211,21937450,2
+leoglory,21937450,5
+50926664,21937450,4
+87997485,21937450,4
+Vanchi,21937450,5
+63177196,21937450,5
+62279554,21937450,5
+1248182,21937450,4
+ukimuknow,21937450,4
+48726212,21937450,4
+72626479,21937450,3
+49921068,21937450,4
+53511991,21937450,4
+113050393,21937450,5
+46087498,21937450,4
+70238336,21937450,5
+59725036,21937450,4
+76869434,21937450,4
+62871612,21937450,5
+everlastingEGO,21937450,3
+dewriver,21937450,4
+ranfei,21937450,3
+66458815,21937450,3
+57030185,21937450,4
+xuanlihuan,21937450,5
+onlyyoung,21937450,3
+64801860,21937450,5
+tankdriver,21937450,3
+chaiyanchao,21937450,5
+tonitoni,21937450,4
+52859781,21937450,2
+1411336,21937450,4
+ALTNATIONAL,21937450,5
+62113425,21937450,4
+70034039,21937450,3
+61506971,21937450,3
+52935115,21937450,4
+74325973,21937450,4
+58012559,21937450,3
+38150776,21937450,5
+63278789,21937450,5
+giacintaxx,21937450,5
+x1Ao_y,21937450,4
+3287454,21937450,2
+celldweller,21937450,5
+zhengkangkang,21937450,3
+62503467,21937450,4
+72479190,21937450,4
+71002924,21937450,4
+62298442,21937450,4
+52924173,21937450,5
+3871452,21937450,4
+26650310,21937450,5
+1156918,21937450,4
+73834908,21937450,4
+39520405,21937450,3
+rurucat,21937450,2
+68532789,21937450,3
+FadingMemories,21937450,5
+41517741,21937450,5
+50851821,21937450,4
+68821518,21937450,4
+42680639,21937450,4
+37840696,21937450,4
+61331002,21937450,4
+56025709,21937450,4
+72985710,21937450,5
+65369148,21937450,4
+ruocun123,21937450,5
+64110948,21937450,4
+Aspirin129,21937450,3
+2640651,21937450,3
+july5412,21937450,5
+32709376,21937450,4
+99459615,21937450,5
+40337501,21937450,5
+57473615,21937450,3
+4453892,21937450,-1
+szfdouban,21937450,3
+jxncm,21937450,4
+39200780,21937450,3
+talentygw,21937450,4
+40591271,21937450,4
+70954003,21937450,4
+104559183,21937450,4
+51552631,21937450,5
+mishi,21937450,4
+88324576,21937450,5
+randomforever,21937450,4
+55603094,21937450,4
+65312708,21937450,4
+58166241,21937450,5
+63818892,21937450,2
+pangzimiao,21937450,4
+51370063,21937450,5
+mufanxuanji,21937450,4
+3078958,21937450,-1
+nothingfish,21937450,5
+40094782,21937450,5
+53592649,21937450,4
+75952866,21937450,4
+76193683,21937450,5
+50888167,21937450,3
+69814261,21937450,5
+weepie,21937450,5
+37682814,21937450,4
+55800838,21937450,4
+69678068,21937450,5
+50060410,21937450,3
+81161924,21937450,4
+63548568,21937450,3
+domp,21937450,4
+67273212,21937450,5
+69805658,21937450,4
+43984924,21937450,4
+station123,21937450,5
+foxv1,21937450,-1
+72257329,21937450,5
+54543228,21937450,4
+99199366,21937450,5
+shuqian7hao,21937450,5
+jessie962464,21937450,4
+redjar,21937450,4
+48167450,21937450,3
+sezhu,21937450,5
+xuehaotian,21937450,4
+44397532,21937450,5
+87057947,21937450,4
+49419366,21937450,5
+61405357,21937450,4
+belyone,21937450,5
+57062967,21937450,4
+42006560,21937450,4
+ljwcurry,21937450,4
+119031382,21937450,4
+liugedian,21937450,5
+Xia0_K,21937450,3
+dz8135,21937450,5
+82177383,21937450,4
+BennyK,21937450,5
+3538758,21937450,5
+31102423,21937450,3
+51505905,21937450,4
+blankscreen,21937450,3
+53682563,21937450,5
+mjjeje0126,21937450,2
+84759549,21937450,4
+50947816,21937450,5
+62119961,21937450,5
+ForeverMoon,21937450,5
+37733981,21937450,3
+xiaoyuhen,21937450,4
+56533866,21937450,4
+105864771,21937450,5
+sakura001,21937450,3
+40870953,21937450,4
+XenFOne,21937450,5
+45008619,21937450,4
+96645605,21937450,4
+75313122,21937450,5
+monica19881012,21937450,3
+thespencer,21937450,5
+3478406,21937450,3
+2298833,21937450,5
+2171738,21937450,5
+37453587,21937450,5
+zaozi,21937450,4
+1189608,21937450,4
+liszt_pp,21937450,3
+xiaowuhou,21937450,4
+1780764,21937450,5
+48112826,21937450,5
+124408864,21937450,3
+66585195,21937450,5
+70708338,21937450,5
+cannlow,21937450,5
+3807164,21937450,4
+lylayh,21937450,5
+1356234,21937450,5
+41264823,21937450,5
+jyuelovejay,21937450,5
+48126061,21937450,4
+53485894,21937450,3
+103638490,21937450,5
+shj0709,21937450,4
+43508209,21937450,3
+68942746,21937450,4
+54034056,21937450,4
+115324297,21937450,3
+sophiejiang,21937450,4
+36664361,21937450,4
+44952303,21937450,4
+comewinni,21937450,5
+125797467,21937450,5
+53692479,21937450,4
+metkee,21937450,3
+45242330,21937450,3
+42964262,21937450,5
+lizhiqiang127,21937450,5
+70310265,21937450,4
+3581018,21937450,4
+niubility1258,21937450,5
+GloriaBryant,21937450,4
+zhaoboss,21937450,5
+81895663,21937450,5
+59129484,21937450,5
+summer11007,21937450,5
+57748469,21937450,4
+46576049,21937450,3
+zhibiaoshi,21937450,4
+92809978,21937450,3
+2341945,21937450,3
+59798760,21937450,4
+43910063,21937450,4
+46179321,21937450,5
+56529814,21937450,5
+67039999,21937450,5
+84899568,21937450,3
+4605484,21937450,5
+54652758,21937450,5
+nnnn3,21937450,3
+ilovehotcoffee,21937450,-1
+64756291,21937450,4
+forhj,21937450,2
+124953430,21937450,5
+68117825,21937450,5
+faiel,21937450,4
+2783746,21937450,4
+37465662,21937450,5
+cherrysoda1993,21937450,4
+33261301,21937450,2
+61954615,21937450,4
+13753094,21937450,4
+82507807,21937450,5
+49920983,21937450,4
+youngtoo,21937450,4
+mklop2008,21937450,5
+87095553,21937450,3
+68706440,21937450,5
+linzexu,21937450,4
+49460058,21937450,5
+122128201,21937450,5
+49449526,21937450,3
+97431474,21937450,3
+iyuxingcao,21937450,5
+zoeybatman,21937450,4
+84800146,21937450,4
+67235309,21937450,5
+67235309,21937450,5
+laoshububen,21937450,4
+42957757,21937450,5
+hongzhouche,21937450,5
+43556775,21937450,4
+zod798,21937450,4
+63778802,21937450,3
+nancy8787,21937450,4
+47374105,21937450,5
+30476944,21937450,5
+4462311,21937450,3
+abbynmagic,21937450,3
+3119464,21937450,5
+59997800,21937450,4
+4766893,21937450,4
+57818340,21937450,3
+ge383203180xin,21937450,4
+53362350,21937450,3
+103081138,21937450,5
+qiaomai,21937450,4
+zuoshoudezuo,21937450,4
+timbbm,21937450,4
+3610351,21937450,4
+52470011,21937450,4
+65373191,21937450,5
+cinvro,21937450,4
+81222178,21937450,4
+zerooorez,21937450,3
+77186305,21937450,4
+kbs---ak,21937450,4
+16901476,21937450,5
+luyang21,21937450,-1
+54930854,21937450,5
+3245046,21937450,5
+3033835,21937450,5
+48396212,21937450,3
+63770733,21937450,5
+whereshallwego,21937450,5
+52160935,21937450,4
+121366919,21937450,5
+64700587,21937450,4
+74056494,21937450,3
+68034921,21937450,4
+aki-lee,21937450,4
+3322566,21937450,3
+miawanzi,21937450,4
+56496405,21937450,4
+doctoroh,21937450,5
+oakhui,21937450,3
+caligula114,21937450,4
+75086193,21937450,4
+2119013,21937450,2
+10724888,21937450,5
+63716048,21937450,3
+dmyra1011,21937450,5
+21871450,21937450,3
+simaxiangru118,21937450,3
+Frank_cx,21937450,3
+62130099,21937450,4
+55774823,21937450,5
+49558870,21937450,5
+50769743,21937450,4
+44388338,21937450,3
+seven-day,21937450,-1
+rainjoy,21937450,3
+48919627,21937450,5
+33684021,21937450,3
+yukiann,21937450,3
+hshmm,21937450,5
+63927412,21937450,5
+62014355,21937450,4
+jeffrey21,21937450,5
+sadie_xiong,21937450,3
+vinette,21937450,5
+44726824,21937450,5
+53625494,21937450,4
+91304159,21937450,4
+loneblog,21937450,4
+58249010,21937450,5
+conetoiles,21937450,4
+74818677,21937450,4
+61104985,21937450,3
+88071858,21937450,5
+BBBomb,21937450,2
+3183207,21937450,-1
+Eunyul,21937450,4
+45463396,21937450,4
+46310239,21937450,3
+4706549,21937450,-1
+43891940,21937450,3
+47112113,21937450,5
+ileonwii,21937450,4
+2322487,21937450,4
+43445443,21937450,5
+114814068,21937450,5
+79407609,21937450,3
+88838556,21937450,-1
+3671869,21937450,3
+haimingwei123,21937450,4
+3611128,21937450,4
+yinsumin128,21937450,5
+42484020,21937450,5
+61862511,21937450,-1
+xiaoshizhan,21937450,4
+58231376,21937450,4
+Dasiycat,21937450,3
+noknowon,21937450,5
+52482326,21937450,5
+3984653,21937450,5
+57351487,21937450,5
+40344873,21937450,3
+51416132,21937450,5
+Loba,21937450,5
+shuimudeyu1990,21937450,5
+53550866,21937450,4
+72034380,21937450,5
+50118479,21937450,3
+shuhaiFC,21937450,3
+15338047,21937450,4
+jiekchenid,21937450,4
+vanessadali,21937450,5
+smg,21937450,4
+lbeer,21937450,5
+52628024,21937450,4
+hsueason,21937450,4
+61273534,21937450,5
+ecgaoxiang,21937450,5
+sunxuhang,21937450,2
+fullmoon924,21937450,4
+56051610,21937450,5
+38252612,21937450,4
+51469731,21937450,4
+3451536,21937450,4
+34005818,21937450,5
+65358890,21937450,3
+huohuo1314,21937450,5
+bearhao1976,21937450,4
+59062851,21937450,5
+57853281,21937450,5
+2309689,21937450,5
+nain,21937450,5
+120611241,21937450,4
+papayoung,21937450,3
+47361549,21937450,5
+56800653,21937450,2
+3397745,21937450,-1
+59915493,21937450,4
+36695909,21937450,2
+64273735,21937450,3
+Veronicam,21937450,4
+65814779,21937450,4
+47764376,21937450,5
+43773144,21937450,3
+102945477,21937450,3
+33204818,21937450,4
+ahmu,21937450,4
+44087578,21937450,3
+haman,21937450,5
+1443838,21937450,4
+66844511,21937450,2
+48857179,21937450,5
+65014427,21937450,4
+dhh1030,21937450,5
+51783252,21937450,4
+71697872,21937450,4
+47274903,21937450,5
+missingworld,21937450,3
+73843394,21937450,4
+amy0303,21937450,5
+dear-lc,21937450,4
+3762146,21937450,4
+94546976,21937450,3
+38283482,21937450,5
+woyee,21937450,3
+michaelhhu,21937450,5
+57943867,21937450,5
+1821069,21937450,3
+66079738,21937450,3
+15872244,21937450,3
+exodusg,21937450,5
+37751161,21937450,5
+75607691,21937450,4
+39878848,21937450,4
+imjerry,21937450,4
+f91_82,21937450,3
+3867251,21937450,4
+izzn,21937450,4
+fengxiaoliang,21937450,5
+61054715,21937450,3
+30852407,21937450,4
+60069124,21937450,5
+lok0702,21937450,4
+yededi8821,21937450,4
+4727036,21937450,4
+66620291,21937450,5
+72781855,21937450,4
+kp81ndlf,21937450,3
+62275045,21937450,3
+LLsupportsJIM,21937450,3
+grayfoxever,21937450,5
+64276762,21937450,5
+56876245,21937450,4
+120036481,21937450,4
+127682733,21937450,3
+nutbean,21937450,4
+63325454,21937450,4
+1145403,21937450,3
+2150866,21937450,4
+42630408,21937450,3
+civey,21937450,5
+2668037,21937450,5
+33245540,21937450,5
+53616420,21937450,5
+66430665,21937450,3
+53353169,21937450,5
+stetehe,21937450,2
+NotY,21937450,4
+53908274,21937450,5
+61809588,21937450,5
+80088314,21937450,5
+hellomo,21937450,4
+49798956,21937450,5
+2287090,21937450,4
+3510245,21937450,4
+congxi0407,21937450,5
+51612219,21937450,4
+yvette820,21937450,2
+10851412,21937450,4
+66993627,21937450,4
+humaoxiao,21937450,5
+yayaamy,21937450,5
+49529006,21937450,2
+73600166,21937450,5
+3922229,21937450,4
+shangrilanotes,21937450,3
+44412475,21937450,5
+46735351,21937450,5
+anhongeaini,21937450,5
+ilovemyylc,21937450,5
+52902931,21937450,3
+56381828,21937450,3
+122393456,21937450,2
+hlfpeter,21937450,5
+hermes01033,21937450,5
+laperseus,21937450,3
+49456596,21937450,4
+lxxself,21937450,4
+52576282,21937450,5
+71700227,21937450,4
+solokimi,21937450,5
+126529625,21937450,5
+71421150,21937450,5
+45804814,21937450,3
+dorothylee0406,21937450,3
+catning,21937450,3
+49104566,21937450,3
+liqiyao8931,21937450,1
+3183758,21937450,4
+hanax4,21937450,4
+50093835,21937450,4
+koi_M,21937450,4
+54277204,21937450,3
+43513094,21937450,5
+caocaoa,21937450,3
+78656769,21937450,4
+88997815,21937450,1
+Yo-Yo-Hoo,21937450,4
+50062390,21937450,4
+45408474,21937450,3
+43713017,21937450,4
+51721466,21937450,3
+46671305,21937450,3
+48889968,21937450,4
+49617147,21937450,5
+67212610,21937450,4
+sjt641100358,21937450,4
+101792652,21937450,5
+xinsunflower,21937450,3
+47460482,21937450,5
+59856519,21937450,4
+2641147,21937450,5
+GraceBinbin,21937450,4
+127603477,21937450,4
+49369904,21937450,1
+81757410,21937450,5
+39255754,21937450,4
+jisixue0111,21937450,3
+52898119,21937450,4
+doublebao,21937450,3
+14327084,21937450,5
+fasshinetti,21937450,5
+44354950,21937450,5
+madelinezl,21937450,5
+4210872,21937450,5
+34575902,21937450,3
+roy_box,21937450,5
+4881092,21937450,5
+62263229,21937450,4
+41786270,21937450,5
+kidwayne,21937450,5
+114614912,21937450,5
+67679868,21937450,3
+christopherlin,21937450,4
+68102477,21937450,5
+52199185,21937450,5
+59217273,21937450,4
+CraziLaura,21937450,5
+57615243,21937450,3
+tianranzijiegou,21937450,3
+Tomatochaoegg,21937450,-1
+2473194,21937450,5
+66754337,21937450,5
+tanyujing2,21937450,5
+63127179,21937450,3
+1373968,21937450,5
+81296522,21937450,4
+zuolun2046,21937450,5
+73587524,21937450,4
+72459703,21937450,4
+1433006,21937450,4
+63612050,21937450,4
+Janone,21937450,4
+61298903,21937450,4
+zhengweipiao,21937450,5
+102546806,21937450,4
+117130584,21937450,4
+57139809,21937450,4
+47022632,21937450,4
+47285151,21937450,3
+30517667,21937450,4
+46497522,21937450,4
+81478198,21937450,4
+69320250,21937450,5
+1651604,21937450,5
+124533965,21937450,5
+lxp,21937450,5
+deathlegend,21937450,-1
+79733760,21937450,4
+tanowen,21937450,4
+54415980,21937450,3
+79108534,21937450,4
+livinoreal,21937450,4
+69153563,21937450,5
+46005086,21937450,4
+77058316,21937450,5
+lepd,21937450,2
+sibylwang,21937450,3
+flowml,21937450,3
+98452549,21937450,5
+48042943,21937450,3
+46209502,21937450,4
+50836111,21937450,3
+77380461,21937450,4
+91659747,21937450,4
+74589582,21937450,5
+heyflower,21937450,5
+chencheng2046,21937450,5
+53711612,21937450,4
+2600693,21937450,5
+64359754,21937450,4
+46920813,21937450,5
+shorechain,21937450,5
+60002715,21937450,3
+1149126,21937450,4
+12794807,21937450,4
+4190834,21937450,5
+3177593,21937450,3
+103315563,21937450,5
+tcff,21937450,5
+clqm,21937450,4
+zpoo2009,21937450,3
+15655185,21937450,5
+76119662,21937450,5
+1585106,21937450,3
+53605408,21937450,4
+63844800,21937450,4
+49348063,21937450,5
+49397482,21937450,4
+miyuwen,21937450,3
+3182859,21937450,4
+46024167,21937450,5
+89852120,21937450,4
+52046312,21937450,2
+69845618,21937450,5
+seven-zh,21937450,4
+2842505,21937450,4
+imagefly,21937450,4
+yido312,21937450,5
+54770734,21937450,5
+4841197,21937450,4
+3214725,21937450,4
+51413778,21937450,5
+imdiaosi,21937450,3
+39350933,21937450,4
+47510305,21937450,2
+3274950,21937450,-1
+37424688,21937450,3
+48721213,21937450,5
+o3333333,21937450,5
+54159008,21937450,5
+42659677,21937450,3
+62457534,21937450,5
+kuangk,21937450,5
+80598638,21937450,3
+jinyuji,21937450,4
+52353213,21937450,3
+HHHLLLDDD,21937450,3
+102938445,21937450,4
+holystar,21937450,4
+iswitchon,21937450,4
+50791807,21937450,5
+119879596,21937450,5
+3218379,21937450,4
+81129445,21937450,3
+4743407,21937450,5
+mayday728,21937450,5
+81845294,21937450,5
+youmuyishu,21937450,5
+kimxixi,21937450,4
+Heyimwalker,21937450,4
+lionking198176,21937450,3
+64011512,21937450,4
+bike24,21937450,4
+37551097,21937450,3
+61219748,21937450,1
+2033498,21937450,5
+50229670,21937450,5
+53055862,21937450,3
+62452314,21937450,5
+bubblewing,21937450,4
+masterobert,21937450,5
+92081294,21937450,3
+nyandjm,21937450,4
+37311123,21937450,4
+mmoonhs,21937450,-1
+phoebefly,21937450,5
+2597570,21937450,5
+64859517,21937450,4
+59543064,21937450,5
+62877248,21937450,4
+70182542,21937450,5
+1713591,21937450,-1
+sharon_c,21937450,3
+Dannylynn,21937450,5
+xiaochangness,21937450,5
+1138531,21937450,5
+westmelon_0,21937450,5
+ziv_yll,21937450,5
+51420600,21937450,4
+64025963,21937450,4
+evisu.wu,21937450,4
+30166414,21937450,5
+57964854,21937450,3
+2610640,21937450,2
+btone0808,21937450,2
+51858297,21937450,3
+15716080,21937450,4
+buwubuhui,21937450,4
+43258987,21937450,4
+1909194,21937450,4
+73958470,21937450,5
+87820826,21937450,4
+laneddy,21937450,2
+4408577,21937450,4
+4597338,21937450,2
+68792801,21937450,3
+joey12255555,21937450,4
+misawang,21937450,4
+115547734,21937450,3
+3980916,21937450,4
+49825242,21937450,3
+7913986,21937450,4
+dabai2011,21937450,5
+66178513,21937450,5
+jiujiuprincess,21937450,5
+lnsc,21937450,5
+summerguagua,21937450,4
+34063715,21937450,4
+52789161,21937450,4
+treeingx,21937450,4
+agnes23,21937450,5
+oathkeeper,21937450,4
+superzc,21937450,5
+jayzhung2011,21937450,5
+60339642,21937450,-1
+49003252,21937450,4
+49164545,21937450,4
+83694704,21937450,3
+Curry_Egg,21937450,3
+55842990,21937450,3
+73868761,21937450,2
+67249578,21937450,5
+donly,21937450,5
+gongyansong,21937450,2
+kingdoucloud,21937450,4
+121519477,21937450,4
+2060005,21937450,4
+baqian,21937450,4
+9074831,21937450,4
+48939731,21937450,3
+46882541,21937450,3
+63813824,21937450,5
+48407248,21937450,4
+midoukj,21937450,5
+newbear,21937450,4
+mo0921,21937450,5
+73972149,21937450,3
+lazing0611,21937450,5
+Asukaluo,21937450,4
+65662005,21937450,5
+47734035,21937450,4
+119836922,21937450,5
+Ryu_9320,21937450,3
+4294774,21937450,4
+weekie,21937450,4
+114353499,21937450,4
+111072325,21937450,3
+Caroline.H,21937450,5
+ikouyalix,21937450,5
+52259960,21937450,4
+50797453,21937450,5
+70841124,21937450,5
+k-moon,21937450,5
+63715607,21937450,4
+46815070,21937450,2
+1452797,21937450,3
+imachild,21937450,5
+Ark1992,21937450,4
+snowbusy,21937450,3
+59509564,21937450,4
+103622760,21937450,5
+falsefish,21937450,4
+63356616,21937450,4
+52214552,21937450,4
+48246448,21937450,4
+119490218,21937450,2
+47832961,21937450,4
+46722209,21937450,4
+kim899,21937450,5
+2634600,21937450,5
+58379589,21937450,4
+30338291,21937450,5
+59901599,21937450,5
+68812580,21937450,5
+52499863,21937450,4
+67375279,21937450,4
+48165079,21937450,4
+52905046,21937450,3
+54186144,21937450,5
+goalps,21937450,5
+103214078,21937450,4
+2238966,21937450,3
+76185877,21937450,4
+54757798,21937450,4
+124980141,21937450,5
+vinciwang,21937450,4
+52325322,21937450,5
+88345379,21937450,4
+phy,21937450,1
+60392839,21937450,3
+74536227,21937450,2
+play0829,21937450,3
+46954285,21937450,4
+50663566,21937450,3
+lincolnhong,21937450,4
+54720200,21937450,3
+96044338,21937450,3
+pretendor,21937450,4
+52788881,21937450,5
+59792119,21937450,5
+70844899,21937450,4
+50953723,21937450,3
+47418045,21937450,3
+xiaoyushudai,21937450,4
+52287609,21937450,2
+2875239,21937450,4
+yym0227,21937450,4
+67238808,21937450,3
+29526345,21937450,4
+quanzhouren,21937450,5
+quanzhouren,21937450,5
+39095645,21937450,3
+73160841,21937450,5
+Youoen,21937450,3
+ondinehz,21937450,3
+38606077,21937450,5
+78977506,21937450,3
+nuolanuolanuola,21937450,5
+AILUHAN123,21937450,3
+58596058,21937450,4
+48158663,21937450,5
+youeqian,21937450,4
+127337655,21937450,5
+3588917,21937450,4
+70055114,21937450,3
+1462255,21937450,2
+57308565,21937450,2
+66035182,21937450,5
+mufengqin,21937450,3
+79822624,21937450,3
+53932937,21937450,5
+4678321,21937450,4
+65889401,21937450,5
+60127464,21937450,4
+Makoto614,21937450,4
+zython,21937450,4
+68597884,21937450,4
+47471992,21937450,4
+102747303,21937450,2
+2606816,21937450,4
+62476143,21937450,3
+51445023,21937450,4
+2440348,21937450,5
+82906785,21937450,5
+allenzn125,21937450,4
+57028649,21937450,4
+1666477,21937450,5
+80240498,21937450,2
+85239246,21937450,4
+54706735,21937450,5
+1217745,21937450,4
+1550135,21937450,4
+95833998,21937450,3
+3399267,21937450,4
+sungminshuang,21937450,-1
+2584631,21937450,3
+52087392,21937450,4
+66230509,21937450,5
+55338878,21937450,4
+82629572,21937450,4
+27432217,21937450,4
+53022241,21937450,4
+1801052,21937450,5
+43966741,21937450,3
+IHUGEjae,21937450,3
+42171704,21937450,4
+87558213,21937450,5
+121880026,21937450,5
+56758013,21937450,5
+42149787,21937450,-1
+96513948,21937450,2
+43602749,21937450,4
+cerrol,21937450,3
+lirovise,21937450,5
+84741817,21937450,3
+sannqi,21937450,5
+moryfor,21937450,2
+59429891,21937450,3
+3045195,21937450,4
+regalo,21937450,3
+36109086,21937450,5
+edininja,21937450,5
+59116664,21937450,4
+59433731,21937450,4
+55609637,21937450,4
+39306601,21937450,4
+xiaoye780621,21937450,5
+45630966,21937450,4
+kaisherk,21937450,3
+iyuantian,21937450,3
+3501606,21937450,4
+jenniferxiao,21937450,2
+vivienmoe,21937450,3
+kenny_w,21937450,5
+58309873,21937450,5
+hrj21,21937450,4
+tierra,21937450,3
+74566437,21937450,4
+46276564,21937450,3
+61700568,21937450,4
+64163380,21937450,3
+44423459,21937450,5
+lzy_tc,21937450,5
+29211262,21937450,3
+67843912,21937450,2
+15163815,21937450,2
+nleydy,21937450,4
+122788862,21937450,5
+33977432,21937450,5
+75625244,21937450,-1
+vincent2010,21937450,4
+50616224,21937450,5
+116617620,21937450,5
+tommylin,21937450,4
+bcnk,21937450,4
+86140576,21937450,5
+87621689,21937450,5
+63014642,21937450,5
+51849992,21937450,5
+4749427,21937450,5
+120645527,21937450,4
+56409875,21937450,5
+chenruan,21937450,3
+fufei,21937450,4
+4632449,21937450,4
+73084756,21937450,4
+49893438,21937450,5
+61200952,21937450,4
+septembersummer,21937450,4
+57903009,21937450,5
+57903009,21937450,5
+v99Alice,21937450,5
+75300369,21937450,4
+78679982,21937450,5
+48143172,21937450,3
+znrpiggey,21937450,3
+80345579,21937450,5
+2106137,21937450,5
+68558336,21937450,4
+66053525,21937450,4
+60303704,21937450,5
+21893924,21937450,3
+sherryxie0805,21937450,-1
+60881895,21937450,5
+56252937,21937450,5
+zyt_69,21937450,4
+doooob,21937450,3
+punk90,21937450,4
+75552573,21937450,3
+norlesamourai,21937450,-1
+43127616,21937450,5
+4246182,21937450,5
+windbo,21937450,-1
+claudie,21937450,5
+84042964,21937450,3
+vvtutu,21937450,4
+55348878,21937450,4
+50152674,21937450,4
+71496445,21937450,4
+13026676,21937450,4
+Stephen2046,21937450,5
+46723550,21937450,4
+48470366,21937450,5
+65806426,21937450,4
+vicky83,21937450,5
+66057217,21937450,4
+79895962,21937450,3
+2906141,21937450,5
+74573393,21937450,3
+1226511,21937450,5
+95545615,21937450,4
+65184093,21937450,4
+57276589,21937450,4
+46266851,21937450,3
+46375249,21937450,5
+freya1919,21937450,4
+49511491,21937450,3
+49845781,21937450,4
+4422872,21937450,3
+27545760,21937450,2
+60160154,21937450,5
+73571191,21937450,4
+milky33,21937450,5
+Asen123,21937450,-1
+57982827,21937450,4
+80036973,21937450,3
+92908596,21937450,4
+8523675,21937450,3
+shaozhiyao,21937450,4
+80033918,21937450,5
+37619405,21937450,5
+49072248,21937450,5
+41039099,21937450,5
+50971465,21937450,3
+89909651,21937450,3
+xyc86,21937450,5
+84390206,21937450,4
+64009647,21937450,4
+ruo1996,21937450,2
+104178936,21937450,5
+63522426,21937450,5
+59742770,21937450,5
+CZchan,21937450,4
+122456206,21937450,5
+2830223,21937450,5
+4154813,21937450,5
+51095448,21937450,3
+2935568,21937450,1
+51183805,21937450,5
+108352341,21937450,4
+nangle,21937450,2
+43667084,21937450,3
+4040058,21937450,3
+AgiHan0221,21937450,5
+53366819,21937450,5
+lagumili,21937450,4
+63422177,21937450,3
+4249905,21937450,3
+kanghao413,21937450,4
+41742989,21937450,5
+48167750,21937450,3
+83268589,21937450,5
+63730928,21937450,5
+yuri-near,21937450,5
+JHSDOUBAN,21937450,5
+3977584,21937450,4
+31305546,21937450,5
+Renoooo,21937450,5
+62952954,21937450,5
+zhangrenran,21937450,4
+4327266,21937450,-1
+yalindongdong,21937450,4
+48671713,21937450,-1
+fqlv5,21937450,4
+MMMangojz,21937450,4
+papa_christmas,21937450,4
+lovedlove,21937450,3
+53067576,21937450,-1
+43175039,21937450,5
+Sunx,21937450,4
+JonathanX,21937450,4
+63569379,21937450,4
+78602807,21937450,5
+62489919,21937450,4
+12900199,21937450,3
+114086034,21937450,5
+57818188,21937450,5
+aprilfoollee,21937450,-1
+122868077,21937450,4
+liao_le,21937450,3
+4096793,21937450,4
+58361095,21937450,5
+65513668,21937450,1
+illiteracy,21937450,4
+76290755,21937450,5
+3594852,21937450,3
+minquan,21937450,4
+44506499,21937450,3
+53370067,21937450,5
+vannnns,21937450,3
+1614995,21937450,3
+71561935,21937450,4
+39002982,21937450,3
+zjdb,21937450,3
+60155135,21937450,3
+seafans,21937450,5
+122753398,21937450,1
+65930256,21937450,4
+tobekalorce,21937450,5
+80110950,21937450,2
+80110950,21937450,2
+43297403,21937450,4
+65417437,21937450,3
+43035936,21937450,4
+87527536,21937450,5
+3202437,21937450,2
+61366288,21937450,4
+34596748,21937450,4
+49005223,21937450,3
+ydlxiaolong,21937450,3
+doris19921203,21937450,3
+yihuiw,21937450,4
+almas2011,21937450,5
+59149853,21937450,4
+113775615,21937450,4
+62582526,21937450,4
+63395542,21937450,4
+45217994,21937450,5
+47733868,21937450,3
+58847654,21937450,4
+65784611,21937450,4
+66641094,21937450,4
+raffee,21937450,5
+anonymousor,21937450,3
+38567114,21937450,5
+44457357,21937450,2
+66502007,21937450,3
+mackalex,21937450,3
+48354152,21937450,3
+55324515,21937450,3
+xingxing0204,21937450,2
+59425944,21937450,4
+93595508,21937450,5
+2202819,21937450,4
+masaike,21937450,4
+100637778,21937450,2
+2717266,21937450,3
+wangliuchi,21937450,4
+andrewyang,21937450,4
+thegrudge,21937450,3
+62773931,21937450,-1
+52734180,21937450,4
+87035372,21937450,3
+53982181,21937450,4
+92468807,21937450,4
+57723619,21937450,5
+72327409,21937450,5
+62036162,21937450,4
+67393303,21937450,4
+37196055,21937450,3
+47593124,21937450,4
+sanwenli,21937450,5
+LAURANOWHERE,21937450,5
+p2165,21937450,3
+45968027,21937450,5
+60667221,21937450,5
+81138274,21937450,2
+76153086,21937450,3
+hasukihaga,21937450,5
+68465476,21937450,3
+71953415,21937450,3
+nadjacho,21937450,3
+4681033,21937450,4
+saosaoxy,21937450,3
+102104781,21937450,5
+56233303,21937450,5
+simpledeer,21937450,3
+47302179,21937450,4
+42600622,21937450,-1
+19469713,21937450,5
+VVIVXIV,21937450,5
+63193528,21937450,5
+44005693,21937450,3
+92032476,21937450,3
+57319762,21937450,3
+leee14,21937450,5
+82978093,21937450,2
+2999259,21937450,5
+53656219,21937450,4
+58229675,21937450,5
+56922790,21937450,5
+sho2mon4e4y,21937450,4
+liuningba,21937450,4
+63890745,21937450,5
+67941529,21937450,4
+15286223,21937450,5
+goodbyelenin,21937450,3
+zhongshanaoli,21937450,4
+57468138,21937450,3
+53010578,21937450,-1
+monii,21937450,3
+51898920,21937450,2
+63310083,21937450,5
+123287997,21937450,5
+70699214,21937450,3
+i1256,21937450,3
+80098161,21937450,5
+lishidai93,21937450,4
+64519164,21937450,3
+54493645,21937450,4
+lazzaro,21937450,3
+iwei,21937450,4
+panda.wen,21937450,4
+71330808,21937450,5
+7609988,21937450,3
+4364847,21937450,4
+nineism,21937450,4
+57812522,21937450,4
+105736560,21937450,5
+2561513,21937450,3
+74248985,21937450,3
+62083246,21937450,5
+2808581,21937450,4
+roro0306,21937450,5
+4320404,21937450,4
+70915171,21937450,4
+84564093,21937450,3
+58267808,21937450,3
+landcrosser,21937450,5
+duanmengzhen,21937450,5
+52716682,21937450,5
+48976619,21937450,4
+zqy931213,21937450,4
+dddhkbj2333,21937450,5
+52675266,21937450,5
+47403212,21937450,4
+49730004,21937450,4
+huyouyou,21937450,5
+edward1988,21937450,3
+40077606,21937450,4
+cowbie,21937450,4
+53353162,21937450,4
+4251957,21937450,-1
+74855673,21937450,4
+1401632,21937450,5
+78500828,21937450,4
+2049622,21937450,3
+2258556,21937450,4
+cyblocker,21937450,4
+60597569,21937450,5
+4896156,21937450,4
+81670146,21937450,5
+25503918,21937450,4
+55942870,21937450,4
+108282995,21937450,4
+dyq930211,21937450,3
+cjshangbuqi,21937450,5
+78214422,21937450,4
+pershingsay,21937450,3
+43703010,21937450,4
+90807462,21937450,3
+lyzbeishida,21937450,5
+babyxy006,21937450,4
+64880714,21937450,3
+67211309,21937450,4
+samsyu,21937450,2
+3540441,21937450,5
+68640061,21937450,4
+Mr.champagne,21937450,4
+69833440,21937450,5
+1333942,21937450,3
+92348000,21937450,3
+xunliyu,21937450,4
+47243761,21937450,5
+52388257,21937450,4
+114143378,21937450,5
+ffantuan,21937450,3
+3108764,21937450,4
+2201753,21937450,4
+55960754,21937450,5
+4532340,21937450,5
+cxl951404897,21937450,3
+Do-my-self,21937450,4
+46287830,21937450,-1
+yzone,21937450,5
+85129985,21937450,5
+xiaohei0919,21937450,4
+2530595,21937450,5
+lilanning,21937450,4
+TalkChan,21937450,4
+88127492,21937450,4
+57581825,21937450,3
+25350324,21937450,3
+hexiaoqin,21937450,4
+swirl1164,21937450,5
+36031855,21937450,4
+enochyang,21937450,5
+39310626,21937450,4
+61911747,21937450,4
+janie225,21937450,5
+44028431,21937450,4
+hikari_xx,21937450,5
+cyansugar,21937450,3
+limpidness,21937450,4
+71625816,21937450,5
+76290826,21937450,4
+jinj_1991,21937450,5
+44178660,21937450,3
+57795255,21937450,4
+shshshadow,21937450,-1
+49146355,21937450,3
+46712687,21937450,2
+49298107,21937450,4
+jensen8985,21937450,4
+36156854,21937450,3
+59568163,21937450,5
+acepatrick,21937450,4
+70296365,21937450,5
+48168328,21937450,5
+tonyleung2046,21937450,-1
+elinnao,21937450,4
+28903343,21937450,4
+47194125,21937450,5
+72432038,21937450,4
+sqjane,21937450,5
+74479513,21937450,5
+luzhiyu,21937450,3
+foreveraegeanse,21937450,5
+52615010,21937450,5
+88452602,21937450,4
+Nagini,21937450,4
+59774628,21937450,4
+66332847,21937450,5
+killmystery,21937450,1
+ts1089,21937450,3
+52744740,21937450,4
+3067106,21937450,4
+104354748,21937450,5
+97277841,21937450,4
+yeslie,21937450,3
+56918151,21937450,4
+46637165,21937450,3
+88692915,21937450,2
+kimyoujin,21937450,5
+74004503,21937450,4
+65736985,21937450,5
+49540422,21937450,5
+59716419,21937450,5
+parkmicky6002,21937450,5
+fengxue102,21937450,5
+made-by-stan,21937450,3
+61591334,21937450,4
+4533182,21937450,3
+xxzy93,21937450,5
+zaky,21937450,5
+44589835,21937450,5
+58179619,21937450,4
+58343870,21937450,4
+52948312,21937450,5
+119243560,21937450,5
+lione8,21937450,5
+sunflowermay,21937450,4
+47675907,21937450,4
+1414083,21937450,4
+johnmcclane,21937450,4
+64694528,21937450,5
+52286623,21937450,3
+taffybaby,21937450,4
+houzipaidebing,21937450,5
+50814790,21937450,3
+meiying1989,21937450,4
+53381423,21937450,5
+73530411,21937450,3
+50561433,21937450,4
+70546993,21937450,4
+45485577,21937450,5
+sungminlee,21937450,3
+81611618,21937450,4
+54865791,21937450,4
+ho000,21937450,4
+47038913,21937450,5
+sissyinene,21937450,4
+48051561,21937450,5
+121920760,21937450,3
+66922310,21937450,5
+132842672,21937450,4
+3858083,21937450,4
+69168057,21937450,5
+moushenglingyu,21937450,4
+56435930,21937450,4
+huiverci,25838463,3
+57290496,25838463,4
+121633982,25838463,3
+64092114,25838463,2
+71702160,25838463,3
+38858410,25838463,2
+tola95,25838463,2
+41943699,25838463,2
+93484113,25838463,5
+2920373,25838463,2
+2014095,25838463,3
+platinhom,25838463,4
+84775751,25838463,3
+134309409,25838463,3
+137613097,25838463,3
+10345879,25838463,3
+54064610,25838463,3
+60973742,25838463,4
+80590035,25838463,5
+43864936,25838463,3
+55656004,25838463,2
+Clepher,25838463,4
+68092386,25838463,3
+4624601,25838463,3
+135753239,25838463,3
+2592170,25838463,2
+90983705,25838463,2
+toishiki,25838463,3
+33532944,25838463,3
+131254424,25838463,2
+83166758,25838463,2
+64244966,25838463,3
+byeprincess,25838463,2
+59341748,25838463,4
+55333647,25838463,3
+ValentineQ,25838463,3
+ZWJ1996716,25838463,4
+45402904,25838463,3
+83965297,25838463,3
+sanzhiling,25838463,3
+127691419,25838463,-1
+Adrift_eternity,25838463,2
+53061280,25838463,3
+122025364,25838463,1
+101978260,25838463,4
+54488747,25838463,3
+55320320,25838463,4
+3826970,25838463,-1
+rethatevon,25838463,4
+maxmum,25838463,4
+RouYang,25838463,4
+47297505,25838463,4
+loafingnick,25838463,4
+44103412,25838463,3
+lampin,25838463,3
+83261887,25838463,3
+jbecks,25838463,3
+33664731,25838463,2
+MudDog,25838463,3
+4249661,25838463,3
+68791794,25838463,3
+46144446,25838463,4
+3789801,25838463,2
+balancee,25838463,4
+80676300,25838463,4
+gj_1987,25838463,2
+maimai251,25838463,2
+88926842,25838463,4
+keningisgod,25838463,2
+2187670,25838463,3
+43671128,25838463,4
+2639245,25838463,3
+shenshenet,25838463,3
+ZettonToHana,25838463,2
+81939398,25838463,2
+65777896,25838463,2
+2856696,25838463,2
+snowyhowe,25838463,2
+54334991,25838463,2
+54984584,25838463,2
+67575567,25838463,1
+monii,25838463,3
+oOUmi,25838463,4
+cairongjia,25838463,3
+71974219,25838463,3
+stevense,25838463,3
+71016890,25838463,5
+57421160,25838463,3
+9779192,25838463,3
+51358310,25838463,3
+Aurore.C,25838463,2
+3130809,25838463,2
+cloudlandlord,25838463,3
+78793402,25838463,5
+92004174,25838463,3
+jiushigesuren,25838463,2
+54983344,25838463,2
+92878802,25838463,3
+vivichris,25838463,3
+icyleaf,25838463,-1
+le_grand_bleu,25838463,3
+hcsh,25838463,2
+dongjh,25838463,3
+kingiknow,25838463,3
+yetmeaningless,25838463,1
+onlyforny,25838463,3
+josiezs,25838463,3
+77073926,25838463,2
+43803797,25838463,3
+34006126,25838463,3
+3770809,25838463,4
+3341865,25838463,3
+37679542,25838463,2
+likecake,25838463,2
+RealDigit,25838463,3
+Shynezzrui,25838463,4
+grace-z,25838463,3
+50653408,25838463,2
+65134309,25838463,3
+duducool,25838463,5
+124037045,25838463,4
+51362669,25838463,4
+30251701,25838463,3
+autumnday916,25838463,2
+64748860,25838463,3
+83088038,25838463,3
+61316939,25838463,4
+136578921,25838463,3
+64801771,25838463,2
+37597902,25838463,2
+crowtina,25838463,4
+sky12,25838463,3
+stevexia,25838463,3
+56128547,25838463,4
+47768622,25838463,4
+locking,25838463,4
+16404633,25838463,2
+72972634,25838463,4
+janie225,25838463,5
+57673827,25838463,3
+137582289,25838463,2
+85770148,25838463,3
+rongyan1223,25838463,3
+73161188,25838463,3
+davia1107,25838463,4
+innocentethan,25838463,3
+kovin8888,25838463,3
+54910721,25838463,3
+80733083,25838463,2
+3923065,25838463,5
+67220317,25838463,3
+luoyuhu,25838463,2
+120271064,25838463,3
+89928823,25838463,3
+csprite,25838463,3
+49791122,25838463,4
+92589362,25838463,1
+75792815,25838463,4
+52512202,25838463,3
+96638998,25838463,4
+38265968,25838463,2
+69470816,25838463,3
+58338006,25838463,3
+90480927,25838463,3
+3864613,25838463,3
+maxine_9395,25838463,4
+2167176,25838463,2
+59556078,25838463,2
+kelvinshaw,25838463,3
+137555231,25838463,2
+64089189,25838463,2
+121681688,25838463,2
+nn1987814,25838463,2
+60043726,25838463,3
+44359880,25838463,3
+60164301,25838463,3
+Pinnsvin,25838463,3
+99119028,25838463,3
+yang_fan_,25838463,3
+znrpiggey,25838463,2
+131838063,25838463,2
+ttuk,25838463,3
+kiwikiwifruit,25838463,2
+2221031,25838463,3
+zhanghanha,25838463,3
+59802133,25838463,3
+86026697,25838463,2
+12846871,25838463,3
+4522191,25838463,2
+sibylwang,25838463,3
+chaikuan,25838463,3
+127062843,25838463,3
+sunhaoren,25838463,4
+ghostneng,25838463,4
+124822296,25838463,5
+51965596,25838463,3
+3855637,25838463,3
+10321693,25838463,5
+zjy564896041,25838463,4
+57742250,25838463,3
+57742250,25838463,3
+122401708,25838463,3
+2752525,25838463,3
+108684193,25838463,5
+73530411,25838463,3
+zykino,25838463,2
+49025271,25838463,2
+53233343,25838463,2
+37653990,25838463,4
+79330359,25838463,2
+72367482,25838463,1
+4315200,25838463,2
+87603533,25838463,4
+lena0517,25838463,2
+4495255,25838463,1
+Yunsta,25838463,3
+59992323,25838463,3
+45856827,25838463,3
+isnico,25838463,2
+69856173,25838463,2
+134519666,25838463,4
+36877826,25838463,4
+nknymphet,25838463,3
+xiaocheng88,25838463,4
+vinciwang,25838463,2
+48443053,25838463,2
+1319405,25838463,2
+45543897,25838463,4
+kainsown,25838463,4
+56898241,25838463,2
+fcinter,25838463,3
+shuai19930426,25838463,3
+kwokchloe,25838463,3
+61215850,25838463,3
+38615886,25838463,2
+Ghost.Melody,25838463,2
+2435805,25838463,2
+39378921,25838463,2
+56807111,25838463,2
+suttie,25838463,-1
+cdhd,25838463,3
+3629247,25838463,2
+kusch,25838463,3
+yuyucara,25838463,3
+56111522,25838463,2
+79287577,25838463,2
+RoveSoul,25838463,4
+kisscat890505,25838463,3
+96736403,25838463,2
+halcyon0,25838463,3
+87411768,25838463,3
+marla711,25838463,-1
+1493686,25838463,2
+1614995,25838463,3
+57259895,25838463,5
+bigredapple,25838463,4
+kidchan,25838463,4
+103277074,25838463,2
+levid,25838463,2
+134629399,25838463,3
+134629399,25838463,3
+12360363,25838463,3
+kiyono9,25838463,2
+jianchen810,25838463,3
+45580110,25838463,2
+134815283,25838463,4
+35953090,25838463,3
+5594345,25838463,2
+68174256,25838463,3
+38837868,25838463,4
+25284374,25838463,3
+127449662,25838463,1
+SPIRITUA,25838463,3
+121878138,25838463,3
+112133874,25838463,2
+64992164,25838463,2
+yumiaowater,25838463,3
+lfyaya,25838463,3
+66575578,25838463,2
+48540705,25838463,3
+Mandy0619,25838463,1
+1662059,25838463,3
+amycc,25838463,4
+44523640,25838463,3
+3846866,25838463,2
+65551720,25838463,3
+28481892,25838463,2
+73084756,25838463,4
+4587143,25838463,3
+137680050,25838463,3
+fdid,25838463,2
+1929074,25838463,4
+lucky498,25838463,3
+leejy,25838463,3
+48990139,25838463,3
+80206205,25838463,4
+101926210,25838463,3
+1427744,25838463,2
+marsdream,25838463,2
+126432892,25838463,3
+61557157,25838463,2
+71135239,25838463,-1
+68936553,25838463,2
+3852877,25838463,4
+74199863,25838463,2
+oriclschu,25838463,3
+3075584,25838463,4
+108168194,25838463,2
+62352485,25838463,2
+dorothylee0406,25838463,4
+67702705,25838463,3
+Shirleywjz,25838463,3
+137640498,25838463,2
+48990593,25838463,4
+alabataille,25838463,3
+125739150,25838463,2
+61506965,25838463,2
+50620528,25838463,3
+97570215,25838463,4
+83354741,25838463,3
+fishgor,25838463,3
+fisaco,25838463,3
+121321169,25838463,3
+40645830,25838463,2
+shenggxhz,25838463,3
+68592556,25838463,3
+gcd0318,25838463,3
+56871040,25838463,1
+fydi,25838463,3
+49659191,25838463,3
+jsyzsun,25838463,4
+32536351,25838463,3
+icedolly,25838463,3
+daystar22,25838463,3
+19240319,25838463,3
+103016365,25838463,1
+AngelikaSigrid,25838463,2
+lostcat84,25838463,-1
+68744286,25838463,5
+xmap,25838463,3
+fangpeishi,25838463,3
+fameloo,25838463,4
+4028097,25838463,3
+107481201,25838463,3
+nupta,25838463,5
+juliazhuli,25838463,3
+62392709,25838463,2
+3273386,25838463,3
+day-break,25838463,2
+mymx,25838463,3
+ikonion,25838463,4
+kristin0711,25838463,4
+Bingbing.,25838463,4
+maerdaifu,25838463,4
+maoyaoeryi,25838463,3
+2572066,25838463,3
+32008102,25838463,4
+1033653,25838463,3
+ddwang,25838463,5
+47580309,25838463,3
+120931613,25838463,4
+memeko,25838463,3
+133155707,25838463,4
+dongboqi,25838463,4
+63509644,25838463,3
+43554408,25838463,3
+calvinlv,25838463,3
+OneiLulu,25838463,2
+kimomo,25838463,3
+84854172,25838463,2
+67740691,25838463,3
+32727331,25838463,3
+58354549,25838463,3
+2408283,25838463,4
+44052755,25838463,3
+2776901,25838463,1
+19124466,25838463,3
+76170749,25838463,2
+4513407,25838463,2
+8527993,25838463,3
+ryod,25838463,3
+foollance,25838463,3
+50624143,25838463,3
+61085061,25838463,3
+ysj,25838463,3
+DrLoop,25838463,3
+2917148,25838463,4
+53033730,25838463,3
+wsyzoscar,25838463,3
+3201544,25838463,4
+59955851,25838463,3
+hijikataT,25838463,3
+85156145,25838463,4
+49340336,25838463,4
+vanvin,25838463,3
+fengwanlu,25838463,3
+2483074,25838463,3
+122656795,25838463,5
+57640790,25838463,3
+60072437,25838463,3
+134580402,25838463,2
+59975190,25838463,2
+lansunlong,25838463,1
+66456284,25838463,3
+3769878,25838463,3
+77879422,25838463,3
+62374245,25838463,2
+king-kong,25838463,4
+64751584,25838463,4
+4587408,25838463,3
+funfunjoy,25838463,3
+92906741,25838463,3
+51277491,25838463,3
+82099941,25838463,3
+bulijite,25838463,2
+freya1919,25838463,4
+57596518,25838463,4
+120566787,25838463,3
+74188273,25838463,3
+97260007,25838463,-1
+74188273,25838463,3
+97260007,25838463,-1
+12232981,25838463,2
+137483520,25838463,2
+eededfcd,25838463,3
+budong110,25838463,3
+13129748,25838463,2
+celinedsam,25838463,3
+137398525,25838463,3
+princessfrog,25838463,1
+64110948,25838463,3
+130773923,25838463,-1
+cyjcandychan,25838463,3
+98956225,25838463,2
+76379695,25838463,3
+46774756,25838463,2
+62001753,25838463,5
+deerpark,25838463,2
+jaward,25838463,3
+50594732,25838463,2
+31630076,25838463,4
+64325413,25838463,4
+63243620,25838463,1
+91095353,25838463,5
+137046543,25838463,3
+joe0317,25838463,4
+gintokiyin,25838463,3
+66162952,25838463,3
+64350273,25838463,3
+tako88,25838463,3
+72984075,25838463,3
+48247472,25838463,2
+liuzechuen,25838463,2
+horadric,25838463,2
+kero.dai,25838463,2
+LoveXXin,25838463,2
+85333070,25838463,3
+lovelyladys,25838463,2
+123264996,25838463,4
+129419034,25838463,3
+94380874,25838463,2
+57624031,25838463,3
+62153097,25838463,3
+137419815,25838463,-1
+62148442,25838463,5
+karen_n,25838463,4
+50158586,25838463,3
+elephantjun,25838463,2
+132509537,25838463,4
+aeon4ever,25838463,2
+shennanqing,25838463,2
+50670787,25838463,3
+49246555,25838463,2
+2810818,25838463,5
+yzk2237084,25838463,2
+arthurwen,25838463,1
+janelandy,25838463,-1
+zizaitianqi,25838463,3
+50210563,25838463,4
+82075343,25838463,3
+97452265,25838463,2
+51795855,25838463,3
+122288316,25838463,3
+61524961,25838463,4
+qiangruo,25838463,1
+48175935,25838463,3
+41463110,25838463,4
+rainbow0815,25838463,3
+80602343,25838463,3
+waka7,25838463,3
+60662764,25838463,4
+53454251,25838463,3
+130353620,25838463,3
+aoliaoli,25838463,2
+doon7,25838463,3
+44832442,25838463,3
+109273896,25838463,3
+40073195,25838463,5
+funnypunny,25838463,3
+48240826,25838463,3
+130564437,25838463,3
+xd880820,25838463,3
+56493761,25838463,3
+61619787,25838463,2
+oliviapalermo,25838463,2
+130937021,25838463,3
+127856691,25838463,2
+136714687,25838463,3
+64238881,25838463,3
+98954264,25838463,3
+42421580,25838463,5
+98524192,25838463,3
+45987978,25838463,3
+43982125,25838463,3
+loveisnothing,25838463,2
+40694256,25838463,3
+YamaHao,25838463,-1
+124233692,25838463,4
+23802219,25838463,4
+79936861,25838463,3
+3646602,25838463,3
+34553514,25838463,4
+43820792,25838463,3
+yi_yang,25838463,2
+60919975,25838463,3
+rainhao,25838463,3
+liuyuntianma,25838463,5
+43445712,25838463,3
+48613954,25838463,2
+133081838,25838463,3
+83119838,25838463,3
+Hope0105,25838463,3
+57824542,25838463,3
+3801481,25838463,4
+63626568,25838463,4
+67883683,25838463,2
+96241491,25838463,3
+11181555,25838463,3
+70790963,25838463,3
+80607844,25838463,2
+60045233,25838463,2
+junwuchen,25838463,3
+123011203,25838463,3
+61551663,25838463,3
+gujiang1994,25838463,3
+64902103,25838463,1
+76800095,25838463,2
+36662892,25838463,1
+45325169,25838463,4
+2848616,25838463,3
+harjol,25838463,4
+136489190,25838463,2
+67697254,25838463,3
+39923615,25838463,3
+yyq871,25838463,2
+tammysky,25838463,3
+1667633,25838463,1
+zbpp1986,25838463,3
+zsq0028347,25838463,3
+jacky19910904,25838463,-1
+fylingy,25838463,3
+80915286,25838463,2
+135970045,25838463,2
+60634927,25838463,3
+96428900,25838463,5
+3575164,25838463,4
+VICKI000,25838463,4
+49961036,25838463,3
+marioshuairen,25838463,5
+istrangers,25838463,3
+echofrancis,25838463,4
+64345409,25838463,3
+128905184,25838463,3
+137303234,25838463,3
+63785417,25838463,3
+79573537,25838463,3
+50527578,25838463,-1
+memor,25838463,2
+ruanzebang,25838463,5
+132552358,25838463,1
+132552358,25838463,1
+33688715,25838463,3
+xseac,25838463,4
+hill__,25838463,2
+4361353,25838463,4
+137244622,25838463,2
+3563996,25838463,4
+fmloveme,25838463,2
+bill86101,25838463,1
+windowscat,25838463,4
+1977618,25838463,3
+2728631,25838463,3
+1898022,25838463,2
+59478720,25838463,3
+ravingrabbid,25838463,3
+44216952,25838463,2
+49663103,25838463,3
+136801905,25838463,3
+putaonat,25838463,3
+sircayden,25838463,3
+sircayden,25838463,3
+tywan,25838463,1
+hcxx,25838463,3
+44990923,25838463,1
+99397835,25838463,3
+MRJO,25838463,2
+72820019,25838463,3
+72540789,25838463,3
+longmao_83,25838463,1
+4158163,25838463,2
+MrJlol,25838463,3
+136175260,25838463,-1
+134417369,25838463,3
+Fomy,25838463,3
+Jacqueline.,25838463,5
+68850635,25838463,4
+jopees,25838463,3
+4724531,25838463,-1
+SS13.,25838463,2
+46729768,25838463,1
+alvivi,25838463,1
+kkkhahajill,25838463,1
+122592912,25838463,5
+72430905,25838463,3
+3783132,25838463,3
+3481421,25838463,5
+50203852,25838463,3
+liaozhongchao,25838463,4
+yyangle,25838463,4
+37340433,25838463,3
+48523065,25838463,3
+36669166,25838463,3
+58245871,25838463,2
+46202201,25838463,4
+127119228,25838463,3
+cw2011,25838463,4
+130192486,25838463,3
+123112465,25838463,2
+130175424,25838463,3
+137206904,25838463,3
+56447812,25838463,1
+68163117,25838463,5
+38462134,25838463,3
+135487682,25838463,4
+60977504,25838463,5
+july5412,25838463,4
+49384394,25838463,3
+96758494,25838463,5
+47597913,25838463,3
+127365822,25838463,2
+llh1991,25838463,3
+57591346,25838463,3
+42022756,25838463,4
+3014602,25838463,2
+calamusrain,25838463,3
+47209223,25838463,4
+51909421,25838463,2
+44852938,25838463,3
+Kios,25838463,3
+mousebomb,25838463,-1
+mousebomb,25838463,-1
+djoko,25838463,2
+47037959,25838463,-1
+104257497,25838463,4
+129611474,25838463,3
+InvisibleViper,25838463,4
+zero01,25838463,4
+53721065,25838463,2
+Q1187240392,25838463,3
+64717864,25838463,3
+136988227,25838463,2
+24139618,25838463,4
+131909298,25838463,4
+vivifyvivi,25838463,3
+52872697,25838463,4
+136293291,25838463,-1
+130265501,25838463,4
+55573490,25838463,1
+136113347,25838463,3
+67742715,25838463,2
+1098294,25838463,4
+xianxiansushou,25838463,1
+51483335,25838463,4
+125373467,25838463,2
+45268716,25838463,4
+82303781,25838463,3
+70996426,25838463,3
+61955906,25838463,4
+56095656,25838463,2
+134574897,25838463,3
+54584141,25838463,-1
+60764482,25838463,3
+87558213,25838463,4
+83467877,25838463,4
+3569090,25838463,2
+66826461,25838463,2
+121148510,25838463,2
+38258575,25838463,3
+2385429,25838463,3
+78286354,25838463,-1
+131020888,25838463,3
+Dreamer.Chen,25838463,2
+42987621,25838463,2
+Juice.,25838463,2
+68630108,25838463,2
+72870354,25838463,3
+114435379,25838463,3
+fishlsy,25838463,4
+92335297,25838463,3
+58215137,25838463,2
+36276299,25838463,1
+huangzuomin,25838463,2
+130419426,25838463,2
+65025231,25838463,2
+Immafrady,25838463,3
+landystar,25838463,3
+belovedme,25838463,1
+52506105,25838463,2
+121925373,25838463,2
+naich,25838463,2
+69095785,25838463,3
+62705311,25838463,2
+sue0524,25838463,4
+3429384,25838463,2
+pangpangguanzhe,25838463,-1
+61496311,25838463,2
+69225702,25838463,2
+SnowChou,25838463,3
+68632898,25838463,3
+Charloo,25838463,3
+122889599,25838463,1
+shimengyan0326,25838463,5
+61748227,25838463,3
+pyengu,25838463,2
+136978639,25838463,3
+38780906,25838463,3
+68738740,25838463,3
+119189786,25838463,3
+61348061,25838463,5
+100083138,25838463,3
+42275944,25838463,3
+57761897,25838463,2
+66766065,25838463,3
+53201086,25838463,3
+4113112,25838463,3
+45449329,25838463,4
+57262819,25838463,4
+50256135,25838463,3
+56260072,25838463,2
+100091686,25838463,2
+qixian1125,25838463,2
+49886917,25838463,3
+xiaoxinadd,25838463,3
+rebean,25838463,4
+monikalife,25838463,3
+caicaihuang,25838463,3
+60721327,25838463,3
+54897892,25838463,2
+mangobird,25838463,2
+kissofdead,25838463,2
+kissofdead,25838463,2
+79556624,25838463,2
+covering,25838463,2
+133486848,25838463,3
+136274462,25838463,4
+75144901,25838463,1
+lilianzly,25838463,3
+127111031,25838463,3
+1689067,25838463,3
+134040475,25838463,1
+16499451,25838463,3
+45464563,25838463,-1
+66382241,25838463,2
+74800513,25838463,2
+53839043,25838463,4
+deazrael,25838463,2
+littlejunjun,25838463,3
+3350824,25838463,4
+hexiaoqin,25838463,4
+poornicky,25838463,3
+104001150,25838463,4
+125559870,25838463,3
+134195556,25838463,3
+33960706,25838463,2
+67193570,25838463,4
+71712974,25838463,4
+131068311,25838463,3
+jimmyjiayou,25838463,3
+CLOWN9527521,25838463,3
+57442857,25838463,3
+78634802,25838463,1
+134325436,25838463,3
+114635463,25838463,4
+83217907,25838463,3
+66845875,25838463,4
+131928487,25838463,2
+33379860,25838463,5
+56653103,25838463,3
+75117514,25838463,4
+74197493,25838463,3
+52638193,25838463,4
+130445057,25838463,3
+1446460,25838463,2
+48126534,25838463,5
+seoyoungeun,25838463,3
+130428066,25838463,4
+hidemyhead,25838463,3
+136048332,25838463,4
+sakura8839,25838463,4
+72936086,25838463,3
+43037534,25838463,2
+59065986,25838463,2
+49041524,25838463,3
+3874009,25838463,3
+Bye_air,25838463,5
+76980448,25838463,3
+136826257,25838463,3
+6793669,25838463,2
+zxyang,25838463,1
+on1ooker,25838463,3
+135725446,25838463,3
+4077370,25838463,3
+Danys,25838463,3
+2493346,25838463,-1
+moneylatem,25838463,2
+adam1992,25838463,3
+44134959,25838463,4
+122981729,25838463,2
+136409582,25838463,3
+senioroneleo,25838463,3
+92806168,25838463,4
+135662029,25838463,2
+48251188,25838463,3
+sasa926,25838463,2
+hanhanq,25838463,2
+62799720,25838463,4
+89778884,25838463,3
+3329918,25838463,3
+47819841,25838463,2
+cangjie1900,25838463,3
+55444463,25838463,2
+134509898,25838463,3
+27241168,25838463,3
+59586505,25838463,3
+44903919,25838463,2
+vera0902,25838463,4
+3021551,25838463,4
+54757798,25838463,5
+2929500,25838463,3
+52606273,25838463,2
+50055726,25838463,3
+122274250,25838463,3
+fivero,25838463,3
+88114103,25838463,3
+124572311,25838463,2
+90551968,25838463,2
+44695980,25838463,-1
+catlover33,25838463,3
+2870561,25838463,2
+76109816,25838463,4
+72111097,25838463,2
+17280012,25838463,2
+yaoliu,25838463,3
+122394659,25838463,4
+55419617,25838463,2
+107143032,25838463,2
+39975348,25838463,2
+61226866,25838463,3
+74662933,25838463,3
+128422906,25838463,5
+jukiloveu,25838463,2
+57122585,25838463,3
+59336433,25838463,3
+Seraph.1011,25838463,3
+killthatfirefly,25838463,4
+s_issi,25838463,3
+50532923,25838463,2
+48003571,25838463,3
+134589409,25838463,3
+130045954,25838463,4
+34558131,25838463,3
+pandaxk001,25838463,1
+45181987,25838463,3
+44628811,25838463,3
+61489786,25838463,4
+derek8356,25838463,2
+59480546,25838463,2
+cy91255,25838463,3
+128569083,25838463,3
+45059307,25838463,3
+zhchtcm,25838463,3
+47100012,25838463,4
+32566267,25838463,3
+60647471,25838463,4
+51405185,25838463,3
+millylyu,25838463,1
+Sennir,25838463,4
+34674400,25838463,3
+69470974,25838463,5
+58677705,25838463,3
+48623750,25838463,2
+shawshank321,25838463,3
+fxxxfancy,25838463,3
+79846050,25838463,2
+91512792,25838463,3
+66087282,25838463,5
+134903918,25838463,2
+amanjj,25838463,-1
+52934173,25838463,3
+3129978,25838463,1
+64692199,25838463,2
+fengxinhe,25838463,2
+liuxiangchao,25838463,4
+127688878,25838463,3
+50698115,25838463,4
+dhlingchi,25838463,3
+133350413,25838463,3
+yaoyamin,25838463,4
+79935599,25838463,3
+tbchange,25838463,5
+134402728,25838463,3
+seaunt,25838463,3
+103271136,25838463,4
+136739686,25838463,4
+49853837,25838463,4
+a960629,25838463,2
+67796115,25838463,2
+54452935,25838463,2
+glhxanthus,25838463,3
+48322392,25838463,5
+41717444,25838463,3
+MoviesandI,25838463,2
+scarface,25838463,4
+64702519,25838463,3
+4758428,25838463,4
+58158290,25838463,2
+yixiaoyan_,25838463,1
+1775081,25838463,2
+69168057,25838463,4
+1588264,25838463,4
+lovekym,25838463,3
+65532755,25838463,2
+63777033,25838463,3
+3856901,25838463,3
+yxh0715,25838463,4
+63435812,25838463,3
+50474286,25838463,3
+1717832,25838463,2
+LadyMavis,25838463,2
+115762881,25838463,2
+cirrus,25838463,3
+84872284,25838463,3
+zpp100,25838463,3
+136019111,25838463,1
+walinee,25838463,3
+44975625,25838463,3
+49854579,25838463,2
+yushuuk,25838463,3
+53377652,25838463,3
+onlyloll,25838463,3
+3541486,25838463,3
+mrkingdom,25838463,1
+17578809,25838463,3
+57902072,25838463,1
+45177549,25838463,2
+78645703,25838463,1
+kiwimomo,25838463,4
+100750697,25838463,2
+76028703,25838463,2
+55661989,25838463,4
+gooo111,25838463,3
+mmmcc,25838463,2
+36125735,25838463,-1
+130410512,25838463,3
+3119825,25838463,3
+82245250,25838463,2
+lqc_amen,25838463,2
+Faust_Tsai,25838463,2
+chinriya,25838463,3
+110565024,25838463,3
+3410802,25838463,2
+nyx0115,25838463,3
+ttnspike,25838463,3
+cyz0313,25838463,3
+49232664,25838463,5
+58051077,25838463,1
+4545627,25838463,3
+53450077,25838463,-1
+129287014,25838463,3
+gloomsky,25838463,3
+61223246,25838463,3
+64218724,25838463,3
+nafil,25838463,3
+chinabeta,25838463,3
+guagua1992,25838463,3
+136593943,25838463,2
+35224934,25838463,3
+lugia1989,25838463,4
+53077082,25838463,2
+songsida,25838463,3
+61229226,25838463,3
+54562055,25838463,3
+124812731,25838463,3
+136754802,25838463,1
+62379540,25838463,5
+1220412,25838463,4
+59535372,25838463,3
+41288485,25838463,1
+121976150,25838463,4
+128991169,25838463,4
+yeming727,25838463,3
+104707030,25838463,3
+kkbear,25838463,2
+41853736,25838463,5
+54530898,25838463,3
+81564048,25838463,4
+2265615,25838463,3
+47650145,25838463,3
+lqloveyozoh,25838463,4
+114831639,25838463,3
+114831639,25838463,3
+2781564,25838463,1
+46683408,25838463,3
+35670312,25838463,4
+44188649,25838463,5
+127563675,25838463,1
+beijusenlin,25838463,1
+39145175,25838463,3
+54419821,25838463,3
+vanilla666,25838463,4
+gene4ever,25838463,3
+nononeonenoneno,25838463,3
+25420581,25838463,4
+65647086,25838463,3
+122195421,25838463,1
+60808695,25838463,2
+xulewyw,25838463,-1
+64477118,25838463,2
+62509398,25838463,5
+80658200,25838463,4
+42948649,25838463,4
+jzhsu,25838463,3
+yu830,25838463,2
+46493467,25838463,2
+4010095,25838463,3
+zimu1990,25838463,3
+126916102,25838463,3
+55847546,25838463,3
+lina017890,25838463,4
+121679857,25838463,-1
+4580722,25838463,3
+83895101,25838463,4
+2273276,25838463,3
+134159627,25838463,2
+4001333,25838463,3
+lc_galaxy,25838463,2
+44699129,25838463,3
+36942754,25838463,2
+67810943,25838463,4
+3116272,25838463,2
+nemo2man,25838463,2
+l309788500,25838463,3
+acseleon,25838463,3
+41014466,25838463,3
+102791213,25838463,3
+moon_shiny,25838463,3
+38850701,25838463,4
+alanis,25838463,4
+70415985,25838463,3
+62635497,25838463,2
+92934548,25838463,4
+honey10151106,25838463,2
+67898553,25838463,3
+80140628,25838463,3
+42069458,25838463,4
+15726816,25838463,3
+136738123,25838463,-1
+sanjay,25838463,5
+felt,25838463,3
+135874162,25838463,3
+asvra,25838463,4
+haire43,25838463,4
+4491930,25838463,2
+3137688,25838463,3
+71416831,25838463,-1
+1487998,25838463,4
+49945467,25838463,2
+Magicians,25838463,3
+120119799,25838463,2
+EmmaChow,25838463,3
+55764073,25838463,4
+gardeniaJ,25838463,2
+57522113,25838463,4
+74150636,25838463,3
+dgzy1644,25838463,5
+80584214,25838463,1
+shiro666,25838463,2
+89660429,25838463,2
+83387941,25838463,3
+36886500,25838463,3
+58064521,25838463,4
+majolica,25838463,5
+63963645,25838463,4
+42049587,25838463,3
+nimonnwang,25838463,4
+132348134,25838463,3
+123270668,25838463,2
+58543683,25838463,3
+68098280,25838463,4
+93208688,25838463,3
+72880439,25838463,3
+62275261,25838463,2
+68715109,25838463,3
+65854158,25838463,4
+keechen,25838463,2
+4652776,25838463,3
+51032242,25838463,-1
+sixpie,25838463,2
+94220348,25838463,2
+136693733,25838463,5
+4378595,25838463,3
+3078221,25838463,3
+luziyujiang,25838463,3
+corina0717,25838463,3
+hollydoyle,25838463,3
+115310630,25838463,4
+39771066,25838463,3
+3012688,25838463,3
+36342485,25838463,2
+127598543,25838463,4
+pvo,25838463,4
+greyrainofsy,25838463,4
+45722938,25838463,3
+phibby,25838463,3
+romanbaby,25838463,2
+qianhenbangye,25838463,4
+QingAIAliur,25838463,3
+136673934,25838463,3
+55978838,25838463,4
+3887933,25838463,3
+Hariseldon,25838463,3
+mountaindew,25838463,3
+47631716,25838463,3
+67249578,25838463,5
+liarb,25838463,3
+im1dao,25838463,4
+hdjjys,25838463,2
+83387474,25838463,2
+84708478,25838463,5
+136672836,25838463,-1
+letyoufindme,25838463,4
+54220607,25838463,2
+musicide,25838463,3
+anderose,25838463,2
+32636504,25838463,4
+69532674,25838463,4
+78490842,25838463,2
+60963394,25838463,3
+fox116,25838463,4
+83982465,25838463,2
+51942148,25838463,3
+134362348,25838463,2
+41487335,25838463,3
+49367011,25838463,4
+49011755,25838463,4
+Kya,25838463,2
+38736772,25838463,2
+78389609,25838463,2
+48096896,25838463,3
+42803233,25838463,3
+120547538,25838463,3
+10200994,25838463,4
+64515288,25838463,3
+3972045,25838463,4
+benbenmuxi,25838463,3
+59378291,25838463,3
+77763115,25838463,3
+53227132,25838463,3
+70588269,25838463,3
+3704222,25838463,3
+36601365,25838463,2
+changgu4290,25838463,3
+41671241,25838463,2
+59524621,25838463,3
+3959996,25838463,5
+raeji,25838463,3
+54717954,25838463,4
+25972257,25838463,3
+1340632,25838463,4
+lingdonging,25838463,2
+127695510,25838463,2
+bzking,25838463,1
+halfyoyo,25838463,2
+125760534,25838463,3
+50817761,25838463,4
+kiruto,25838463,1
+91018518,25838463,5
+OnlyCoffee,25838463,3
+summerxiao,25838463,1
+22562500,25838463,2
+65696190,25838463,3
+lovexiaoyan,25838463,3
+45843509,25838463,2
+121318701,25838463,3
+23712460,25838463,3
+69396109,25838463,4
+18088011,25838463,5
+3884732,25838463,5
+14484123,25838463,3
+81845294,25838463,4
+elfvogue,25838463,4
+60213828,25838463,3
+81336001,25838463,4
+3765207,25838463,3
+59638655,25838463,3
+73856461,25838463,3
+76294374,25838463,3
+bhg,25838463,3
+51491569,25838463,3
+62388997,25838463,2
+81986503,25838463,3
+59968700,25838463,3
+120623061,25838463,3
+3966971,25838463,4
+135680157,25838463,4
+136607252,25838463,4
+zzfznp,25838463,2
+49948273,25838463,3
+60119202,25838463,3
+64037870,25838463,4
+48566494,25838463,4
+136319459,25838463,4
+allwordswrong,25838463,4
+41655130,25838463,2
+46820034,25838463,2
+JayKiller,25838463,4
+61888159,25838463,3
+127141779,25838463,2
+55550016,25838463,4
+120735552,25838463,3
+4409440,25838463,2
+3709827,25838463,3
+zhairen,25838463,5
+Chappell.Wat,25838463,2
+cat_yr,25838463,4
+47541374,25838463,-1
+libin.douban,25838463,3
+44412254,25838463,3
+84250012,25838463,3
+musofan,25838463,4
+Zoe-MU,25838463,3
+3687958,25838463,5
+126076199,25838463,3
+4582318,25838463,2
+50973990,25838463,3
+53853976,25838463,4
+78412332,25838463,3
+72431740,25838463,2
+59043900,25838463,3
+Talos,25838463,4
+9971388,25838463,1
+72083821,25838463,3
+127948974,25838463,4
+56911400,25838463,2
+126980247,25838463,3
+115553730,25838463,4
+73534330,25838463,3
+19734042,25838463,3
+52573795,25838463,4
+fremental,25838463,3
+58783502,25838463,3
+blusia4,25838463,3
+29081326,25838463,4
+dltmw,25838463,4
+31427645,25838463,3
+14327084,25838463,2
+2993640,25838463,3
+130370376,25838463,3
+134026402,25838463,2
+sunmiaoran,25838463,4
+sunmiaoran,25838463,4
+135882446,25838463,3
+32835447,25838463,3
+coldmist,25838463,3
+59760298,25838463,3
+CloudRiver,25838463,3
+2121850,25838463,3
+102710634,25838463,3
+50836475,25838463,4
+41842523,25838463,3
+fidotoy,25838463,3
+66555498,25838463,3
+65178670,25838463,2
+xsky1988,25838463,4
+cristiana,25838463,5
+60732201,25838463,3
+darkstars,25838463,3
+shiovero,25838463,4
+57275922,25838463,3
+FilmYan,25838463,3
+43409918,25838463,3
+51194509,25838463,3
+51729072,25838463,4
+59257575,25838463,1
+saibei,25838463,4
+48377628,25838463,3
+66242700,25838463,3
+132034967,25838463,3
+77546752,25838463,3
+123927119,25838463,3
+60378678,25838463,2
+RivenZhong,25838463,3
+hedgehog,25838463,3
+dsqingdao,25838463,-1
+nancyyan,25838463,3
+129274650,25838463,-1
+12573860,25838463,2
+SK8_frank,25838463,3
+kally_allen,25838463,2
+winter-h,25838463,2
+76013835,25838463,3
+fightim,25838463,3
+135463251,25838463,2
+ambrosia.levine,25838463,3
+36757046,25838463,5
+103208454,25838463,4
+7223165,25838463,3
+4347889,25838463,2
+70932292,25838463,2
+lidiss,25838463,3
+76881504,25838463,3
+42832142,25838463,4
+achrista,25838463,3
+2376689,25838463,-1
+Edward_Elric,25838463,3
+79420252,25838463,3
+forzando,25838463,3
+paza,25838463,4
+44940078,25838463,3
+weiranwei,25838463,4
+rasler,25838463,2
+3493629,25838463,2
+tonyteng,25838463,3
+125010605,25838463,3
+59358119,25838463,2
+a83848400,25838463,2
+69223309,25838463,5
+49712271,25838463,3
+52470011,25838463,3
+sky69,25838463,-1
+37017024,25838463,3
+52631968,25838463,4
+lh12123,25838463,3
+2210399,25838463,2
+18984732,25838463,3
+58096357,25838463,2
+1498656,25838463,2
+44266204,25838463,4
+imoioi,25838463,1
+81316047,25838463,2
+81316047,25838463,2
+gilyun,25838463,3
+miucather,25838463,3
+zhouweijuezhe,25838463,3
+81998298,25838463,3
+ligend,25838463,3
+56771343,25838463,3
+136429512,25838463,4
+72730648,25838463,1
+wxgigi0617,25838463,3
+66066002,25838463,3
+Tea1116.,25838463,2
+4159892,25838463,2
+126221146,25838463,3
+56143102,25838463,4
+68333051,25838463,4
+113404948,25838463,3
+hqwxyz,25838463,3
+123379059,25838463,3
+64252611,25838463,4
+48664391,25838463,3
+GUAN,25838463,3
+72035913,25838463,3
+109208426,25838463,3
+chandler821,25838463,2
+leixiao86,25838463,3
+65935512,25838463,3
+49813578,25838463,2
+116089509,25838463,4
+57996084,25838463,3
+61944030,25838463,2
+1411336,25838463,3
+61602134,25838463,3
+67143504,25838463,2
+135907100,25838463,4
+79951487,25838463,3
+126895739,25838463,2
+40093986,25838463,4
+122789808,25838463,4
+3768837,25838463,2
+134632462,25838463,-1
+61569380,25838463,3
+48699954,25838463,4
+61448696,25838463,4
+85119623,25838463,4
+sumengsumeng,25838463,3
+60181393,25838463,2
+Fayviola,25838463,1
+128409852,25838463,2
+2180956,25838463,2
+48459304,25838463,1
+52224188,25838463,4
+89919283,25838463,4
+55389424,25838463,3
+andrpirl,25838463,2
+79237122,25838463,3
+70335483,25838463,3
+75667669,25838463,3
+59273600,25838463,2
+chengchen0121,25838463,4
+48717993,25838463,4
+freak_lee,25838463,3
+wen_Schwartz,25838463,1
+84418105,25838463,-1
+lipiaopiao,25838463,3
+2073049,25838463,2
+42781557,25838463,1
+61504033,25838463,3
+panfangjie,25838463,4
+135012811,25838463,3
+56976495,25838463,3
+11889754,25838463,2
+3198566,25838463,2
+130233240,25838463,3
+25282878,25838463,3
+richardsun1234,25838463,4
+70058362,25838463,4
+64954480,25838463,4
+58601681,25838463,4
+mino29,25838463,4
+x1ngstar,25838463,3
+135703346,25838463,2
+45037324,25838463,2
+zepwhen,25838463,3
+54961914,25838463,4
+95264069,25838463,4
+bluesky1314,25838463,4
+Light_L,25838463,-1
+baigao,25838463,3
+wwwwwwwwCi,25838463,3
+1383913,25838463,4
+J13,25838463,5
+princesssyn,25838463,2
+64883992,25838463,4
+46004647,25838463,5
+52710825,25838463,3
+48042943,25838463,2
+62914151,25838463,1
+57880300,25838463,5
+45382410,25838463,4
+85174401,25838463,3
+eleven0205,25838463,1
+84207817,25838463,2
+45403701,25838463,3
+62843075,25838463,2
+50118479,25838463,3
+75829238,25838463,3
+shuaziwang,25838463,4
+123630666,25838463,1
+57577352,25838463,3
+tongnixcv,25838463,3
+67561364,25838463,5
+74016648,25838463,3
+2417785,25838463,2
+eslier,25838463,2
+54351544,25838463,3
+58194710,25838463,4
+40140527,25838463,3
+71335687,25838463,4
+126804729,25838463,3
+iwei,25838463,3
+73958470,25838463,2
+55657617,25838463,4
+Tobar,25838463,5
+132386823,25838463,3
+52636646,25838463,3
+50137334,25838463,3
+kafaka,25838463,4
+vivienvb,25838463,3
+51790635,25838463,2
+70388691,25838463,5
+linchuzhuang,25838463,2
+3547067,25838463,1
+33693061,25838463,3
+82275664,25838463,3
+1145937,25838463,4
+3722340,25838463,2
+50698955,25838463,2
+122605310,25838463,2
+2713167,25838463,2
+125942088,25838463,3
+135144421,25838463,3
+dustblue,25838463,1
+delchisio,25838463,3
+40237768,25838463,3
+50404313,25838463,5
+lellex,25838463,3
+hulunaikou,25838463,3
+xiaomo1,25838463,3
+45008619,25838463,4
+96336225,25838463,2
+78786637,25838463,3
+3392902,25838463,3
+oracle218,25838463,3
+71093640,25838463,3
+45906911,25838463,3
+132954430,25838463,4
+41566646,25838463,3
+136340093,25838463,4
+101395285,25838463,3
+A-Marvin-T,25838463,2
+41396729,25838463,3
+61111034,25838463,4
+53303336,25838463,4
+chenhuayang,25838463,3
+cappuccino-jl,25838463,3
+82989959,25838463,1
+NikkiG,25838463,4
+83991598,25838463,3
+xiaodou52,25838463,3
+a632157547,25838463,3
+119374507,25838463,3
+ddww911028,25838463,1
+89478595,25838463,4
+125810771,25838463,3
+44406151,25838463,2
+journeyboy,25838463,3
+70794815,25838463,3
+2187326,25838463,3
+58513319,25838463,4
+77459141,25838463,3
+clover1,25838463,4
+135042340,25838463,4
+19627331,25838463,4
+80914640,25838463,3
+121152580,25838463,4
+lawbody,25838463,3
+126842883,25838463,3
+ymtahaq,25838463,4
+119405586,25838463,4
+yisideta,25838463,2
+53872605,25838463,2
+Fadai,25838463,3
+47285151,25838463,2
+18628004,25838463,3
+62860351,25838463,3
+3851833,25838463,1
+cpt21,25838463,3
+61413214,25838463,1
+1658796,25838463,3
+viola_ting,25838463,5
+OldYuan,25838463,3
+37448450,25838463,4
+122742837,25838463,3
+lumins,25838463,2
+37916151,25838463,-1
+122107585,25838463,4
+m0rtiny,25838463,2
+37879706,25838463,1
+2467328,25838463,2
+ideyes,25838463,3
+50335410,25838463,3
+JaceJing,25838463,2
+Mounail,25838463,2
+78277982,25838463,3
+appreciation,25838463,2
+135694361,25838463,3
+2316813,25838463,3
+quliaoliao,25838463,4
+77111727,25838463,4
+kanrenao,25838463,3
+cianshijie,25838463,2
+howlformousai,25838463,3
+kuaml,25838463,-1
+leftliu,25838463,4
+69024870,25838463,2
+136272758,25838463,3
+NINEYR,25838463,4
+70927104,25838463,4
+4596072,25838463,3
+132463662,25838463,3
+bebesummer,25838463,2
+78599391,25838463,2
+mhkm,25838463,3
+greatdung,25838463,2
+f_ckshane,25838463,3
+48622975,25838463,2
+5854721,25838463,4
+82191110,25838463,3
+2275556,25838463,2
+132347906,25838463,1
+38727371,25838463,4
+lunal,25838463,4
+Lingeomor,25838463,5
+freewhao,25838463,3
+52396951,25838463,4
+127345355,25838463,3
+mecerdes,25838463,2
+60311898,25838463,2
+69788935,25838463,3
+94830928,25838463,5
+36008300,25838463,2
+Elvis-lx3,25838463,3
+Yu-Tommy,25838463,3
+132168348,25838463,3
+53450833,25838463,5
+guaitai19960115,25838463,4
+10011120,25838463,5
+goldenday,25838463,3
+71778727,25838463,5
+wzq1981,25838463,4
+122855833,25838463,3
+4620614,25838463,4
+103442771,25838463,3
+dhlp,25838463,4
+46148106,25838463,3
+78846848,25838463,5
+cjdmn1984,25838463,2
+11192863,25838463,2
+2616668,25838463,4
+jolllllly,25838463,3
+Car1116,25838463,3
+foun,25838463,5
+75255232,25838463,2
+63676625,25838463,3
+75869572,25838463,4
+iriszhong,25838463,2
+Youmans,25838463,3
+46370564,25838463,4
+39748225,25838463,2
+33886622,25838463,4
+baniujun,25838463,3
+47837056,25838463,3
+netbeginner,25838463,1
+122697552,25838463,4
+120764499,25838463,1
+125602185,25838463,5
+17871243,25838463,3
+uniooo,25838463,4
+hana0707,25838463,3
+48335787,25838463,3
+assassinzzh,25838463,3
+76364366,25838463,3
+52656841,25838463,3
+qjp0h,25838463,3
+sburrow,25838463,4
+46684749,25838463,3
+47822950,25838463,3
+62209386,25838463,4
+63299321,25838463,3
+60746988,25838463,3
+79546225,25838463,1
+78667857,25838463,5
+53768301,25838463,3
+71865681,25838463,3
+Liberty14,25838463,3
+45905762,25838463,3
+49968268,25838463,1
+49060307,25838463,3
+tianchuan,25838463,2
+83881122,25838463,4
+orangeT,25838463,3
+erin_yyi,25838463,4
+91039965,25838463,3
+qxtbeyond,25838463,3
+35066963,25838463,4
+47795407,25838463,2
+xuyansong,25838463,3
+123813887,25838463,3
+12410068,25838463,3
+87039028,25838463,5
+2166366,25838463,3
+2622237,25838463,3
+ading4171,25838463,3
+4237075,25838463,3
+64575050,25838463,3
+41351821,25838463,3
+4066025,25838463,3
+36621771,25838463,3
+1990474,25838463,2
+52350910,25838463,3
+129977566,25838463,3
+63510104,25838463,3
+116007343,25838463,3
+michelleluo,25838463,3
+54530527,25838463,3
+78683544,25838463,2
+125180351,25838463,5
+55870223,25838463,5
+nicdone,25838463,3
+newzallery,25838463,5
+weblinder,25838463,3
+69886132,25838463,4
+butina,25838463,3
+81163129,25838463,2
+4563516,25838463,4
+132190479,25838463,2
+suika1986,25838463,2
+134203222,25838463,3
+72086305,25838463,2
+57398318,25838463,2
+50256249,25838463,3
+127426227,25838463,5
+zhujiao,25838463,3
+48786976,25838463,4
+48972272,25838463,2
+miaomiao1213,25838463,3
+Hans_Du,25838463,3
+79863608,25838463,4
+50249730,25838463,4
+62097858,25838463,3
+71070026,25838463,2
+3087894,25838463,3
+blackmeajump,25838463,3
+51606142,25838463,2
+idealtemple,25838463,1
+93257261,25838463,1
+50860943,25838463,2
+HL-_-0205,25838463,3
+69130681,25838463,2
+34155630,25838463,3
+82624798,25838463,4
+73118410,25838463,3
+92490871,25838463,3
+zzyzeal,25838463,2
+59366761,25838463,-1
+77089569,25838463,4
+Arc_tao,25838463,3
+89050593,25838463,3
+73536867,25838463,3
+nuansheng,25838463,2
+fero7,25838463,4
+lion87,25838463,2
+tiancity1108,25838463,4
+97365571,25838463,4
+135893630,25838463,2
+jeansgarden,25838463,3
+2095236,25838463,3
+OpenSpaces,25838463,4
+let7,25838463,3
+14247291,25838463,3
+37306803,25838463,3
+kidsama,25838463,2
+aquariusyoyo,25838463,3
+brandnewstart,25838463,2
+3887848,25838463,3
+42006560,25838463,2
+62210177,25838463,3
+LXJAAA,25838463,3
+sailorcooper,25838463,2
+Daniel-Cheung,25838463,4
+46505445,25838463,3
+110172016,25838463,3
+sirkee,25838463,3
+WitNesS-C,25838463,2
+122879836,25838463,3
+2386412,25838463,3
+62776173,25838463,3
+40950202,25838463,2
+44857445,25838463,3
+53718083,25838463,4
+jimmy037,25838463,2
+lydialuo,25838463,4
+88101207,25838463,3
+wiwikuang,25838463,2
+wjferic,25838463,3
+47188130,25838463,4
+78169012,25838463,1
+zly117,25838463,2
+57176881,25838463,4
+57176881,25838463,4
+59629692,25838463,2
+lovinest,25838463,3
+115714696,25838463,5
+dizzyluke,25838463,2
+65133684,25838463,3
+80011707,25838463,3
+52884834,25838463,3
+69388384,25838463,2
+92590936,25838463,3
+51070910,25838463,4
+39533104,25838463,-1
+piaoyull,25838463,3
+82357316,25838463,3
+115614631,25838463,3
+130404838,25838463,3
+ivanovski,25838463,-1
+99078833,25838463,3
+68674122,25838463,3
+27334745,25838463,3
+94391686,25838463,3
+23881938,25838463,4
+coolfax,25838463,4
+125971465,25838463,3
+62530102,25838463,3
+114467456,25838463,3
+sevend106,25838463,2
+30762446,25838463,3
+119710944,25838463,2
+liujunhe123,25838463,4
+52167289,25838463,2
+73651442,25838463,3
+46700100,25838463,5
+49825242,25838463,2
+veronicaz,25838463,3
+wolfdharky,25838463,3
+nailaandpusky,25838463,1
+66461284,25838463,3
+40195954,25838463,2
+wunie,25838463,2
+39108497,25838463,3
+3492952,25838463,3
+118854321,25838463,3
+83244806,25838463,5
+87954216,25838463,2
+yiri,25838463,-1
+LunaticPandora,25838463,4
+jjjade,25838463,3
+74927236,25838463,1
+127118502,25838463,3
+47501890,25838463,2
+90105219,25838463,3
+65441937,25838463,4
+1066031,25838463,2
+114284723,25838463,3
+73059881,25838463,3
+3061502,25838463,2
+121943500,25838463,3
+Nebulium,25838463,3
+64879609,25838463,2
+129798303,25838463,2
+2064399,25838463,3
+53906378,25838463,2
+50925149,25838463,2
+kericw,25838463,3
+67346668,25838463,4
+50040990,25838463,1
+47776464,25838463,3
+65396178,25838463,4
+102987982,25838463,4
+51983779,25838463,3
+YAMAHA_GO,25838463,3
+m_l,25838463,4
+125136984,25838463,3
+37965167,25838463,-1
+kitian616,25838463,3
+swwol32,25838463,4
+2426372,25838463,2
+justsomebody,25838463,5
+chowmo,25838463,3
+41474557,25838463,3
+61095376,25838463,4
+newman,25838463,-1
+68990236,25838463,5
+baiyizhou,25838463,5
+3740351,25838463,4
+Kevin3,25838463,3
+88539374,25838463,3
+46525176,25838463,3
+chesterchoi,25838463,3
+135355635,25838463,4
+53868140,25838463,4
+69790989,25838463,3
+sunjialin1989,25838463,3
+131021845,25838463,4
+49849512,25838463,2
+2348623,25838463,-1
+tzytime,25838463,4
+45290589,25838463,4
+xifengweiyu,25838463,1
+130321312,25838463,3
+63100903,25838463,-1
+51836771,25838463,3
+131358078,25838463,3
+61716471,25838463,3
+64241350,25838463,2
+63997496,25838463,5
+weizheren,25838463,2
+ddcchenfei,25838463,3
+90051465,25838463,3
+hchwhite,25838463,3
+swordx,25838463,3
+16212011,25838463,2
+julian_lu,25838463,4
+123593065,25838463,4
+jiguangpianyu,25838463,4
+hernansun,25838463,1
+78760255,25838463,3
+3105123,25838463,3
+lijinhui,25838463,3
+lijinhui,25838463,3
+55362670,25838463,3
+63306713,25838463,3
+61169740,25838463,3
+kyo85,25838463,1
+35363595,25838463,4
+127477742,25838463,2
+76467871,25838463,3
+abby0109,25838463,2
+22997328,25838463,2
+madbug,25838463,1
+4912264,25838463,4
+4200336,25838463,4
+47417777,25838463,1
+Camusdead,25838463,3
+3557466,25838463,5
+60664918,25838463,2
+36576530,25838463,4
+goldendali,25838463,4
+cabrite,25838463,4
+cabrite,25838463,4
+1653790,25838463,3
+68023271,25838463,3
+31286837,25838463,2
+2213401,25838463,3
+43308232,25838463,4
+dobima,25838463,4
+66966914,25838463,3
+ingie,25838463,2
+62882653,25838463,2
+Gabriel_Mars,25838463,3
+jinzimiao,25838463,5
+mufengqin,25838463,3
+sleeper_arashi,25838463,3
+2997234,25838463,4
+123645263,25838463,3
+2218265,25838463,3
+62930321,25838463,3
+hui_112233,25838463,3
+2280920,25838463,3
+50451911,25838463,2
+53833067,25838463,4
+47190979,25838463,2
+bzfdu,25838463,3
+105895178,25838463,3
+baoziyudigua,25838463,5
+120223686,25838463,4
+wutheringshi,25838463,3
+3249318,25838463,4
+soundofu,25838463,3
+p0pking,25838463,3
+wenjunlwj,25838463,2
+69753373,25838463,1
+121053336,25838463,3
+cloverllx,25838463,3
+mspengmei,25838463,3
+53362350,25838463,3
+66185314,25838463,2
+52689721,25838463,4
+baby861708,25838463,2
+60649832,25838463,3
+fruit_,25838463,5
+46712687,25838463,1
+63277654,25838463,3
+1233601,25838463,4
+79879080,25838463,4
+94578244,25838463,2
+133067591,25838463,4
+54783483,25838463,3
+4352751,25838463,2
+47418311,25838463,4
+121850166,25838463,2
+48905575,25838463,2
+131632042,25838463,3
+50362657,25838463,3
+2325728,25838463,3
+81680542,25838463,2
+62536526,25838463,4
+iamaprilm,25838463,2
+meskelil,25838463,3
+65930356,25838463,3
+57379426,25838463,3
+judehehe,25838463,3
+85082421,25838463,3
+wsgstrike,25838463,3
+4916602,25838463,4
+Coke,25838463,3
+flytomilan,25838463,2
+130541613,25838463,4
+lilithyi,25838463,4
+59202996,25838463,3
+58706786,25838463,-1
+kitor,25838463,5
+OrangeWeiei,25838463,3
+52100772,25838463,4
+1840916,25838463,3
+57405167,25838463,1
+WSSWHL,25838463,1
+4380586,25838463,3
+121921036,25838463,2
+51736421,25838463,-1
+119487629,25838463,3
+lainf,25838463,2
+18746695,25838463,2
+81770301,25838463,4
+42293953,25838463,3
+98665982,25838463,4
+98090779,25838463,4
+2462353,25838463,1
+77182257,25838463,3
+81326728,25838463,1
+cplcs,25838463,4
+kennan,25838463,3
+67322553,25838463,3
+54791351,25838463,3
+26487427,25838463,2
+83268589,25838463,4
+ZERGer-,25838463,3
+aragakki,25838463,3
+ms1919,25838463,3
+64854561,25838463,3
+40837725,25838463,3
+92117507,25838463,3
+2305028,25838463,3
+60822788,25838463,3
+EtionT,25838463,1
+65303828,25838463,3
+123000223,25838463,4
+53009307,25838463,3
+nighthanwei,25838463,2
+16313678,25838463,3
+49465823,25838463,4
+zest,25838463,2
+127450235,25838463,2
+51887534,25838463,2
+51297703,25838463,3
+48057625,25838463,3
+stolee,25838463,1
+61049464,25838463,3
+64309170,25838463,3
+14836914,25838463,2
+3939599,25838463,4
+braunschweigen,25838463,2
+80370344,25838463,4
+kingkongofkhan,25838463,3
+3487458,25838463,5
+GZ,25838463,3
+131131042,25838463,3
+Snoopeacer,25838463,4
+59302218,25838463,2
+82847789,25838463,3
+1495292,25838463,3
+aiyos,25838463,3
+67550307,25838463,3
+53322141,25838463,3
+56159025,25838463,2
+124027537,25838463,3
+arthaschu,25838463,1
+87387635,25838463,4
+35967033,25838463,4
+rebry,25838463,3
+135617631,25838463,3
+65545100,25838463,5
+66830762,25838463,3
+135724867,25838463,3
+Dreamology525,25838463,3
+68988452,25838463,3
+3622707,25838463,4
+yvone1220,25838463,2
+yoyo92Iris,25838463,3
+36458457,25838463,3
+lish5621,25838463,1
+frdom,25838463,3
+108338399,25838463,5
+69257163,25838463,3
+63598192,25838463,2
+79599953,25838463,1
+55022065,25838463,4
+48542981,25838463,2
+naizhengtan,25838463,4
+59979647,25838463,3
+77691678,25838463,2
+blazel,25838463,2
+56288464,25838463,3
+103343443,25838463,2
+69673873,25838463,4
+Nolicier,25838463,-1
+52057607,25838463,3
+4392294,25838463,2
+130078634,25838463,3
+52578342,25838463,2
+3890631,25838463,3
+vividtime,25838463,3
+iamliving,25838463,3
+hustfisher,25838463,1
+AsleepOrDead,25838463,4
+81304385,25838463,5
+47785072,25838463,2
+youtuo_,25838463,5
+45886049,25838463,3
+71772436,25838463,5
+67653468,25838463,3
+134062078,25838463,4
+79044954,25838463,3
+83994671,25838463,2
+42272839,25838463,1
+57295120,25838463,3
+46722209,25838463,2
+45498889,25838463,3
+80209748,25838463,3
+57426078,25838463,5
+65063068,25838463,2
+135320329,25838463,3
+3642691,25838463,3
+3722910,25838463,3
+68655237,25838463,1
+67330324,25838463,1
+38718376,25838463,2
+36936880,25838463,3
+45804814,25838463,4
+lady0627,25838463,3
+beijingzz,25838463,3
+20054715,25838463,3
+87783060,25838463,3
+puppysora,25838463,2
+57617460,25838463,2
+119353813,25838463,4
+zhangdahua,25838463,-1
+82970357,25838463,4
+43628275,25838463,3
+88566153,25838463,3
+gold5king,25838463,3
+45693911,25838463,3
+100935420,25838463,4
+sinkpad,25838463,4
+4060704,25838463,3
+zipaiwang,25838463,3
+69360513,25838463,3
+60486798,25838463,4
+QPF,25838463,2
+QPF,25838463,2
+134495648,25838463,3
+53815086,25838463,3
+29822921,25838463,3
+125282020,25838463,3
+cukia,25838463,4
+59142384,25838463,4
+2994648,25838463,3
+1821069,25838463,2
+11166766,25838463,1
+120241385,25838463,3
+81001577,25838463,3
+61694611,25838463,4
+3959689,25838463,4
+Papa423,25838463,3
+lovewaiter,25838463,3
+iisakura,25838463,2
+59591751,25838463,3
+riplilse7en,25838463,3
+54947602,25838463,4
+sarabsc,25838463,2
+65720947,25838463,4
+hermit90,25838463,3
+54033607,25838463,5
+121562470,25838463,1
+edgeyeung,25838463,3
+81406768,25838463,3
+61302881,25838463,2
+3934959,25838463,4
+39061280,25838463,-1
+87834837,25838463,1
+2684193,25838463,4
+131606948,25838463,2
+40311454,25838463,3
+1763109,25838463,1
+sentexiaohu,25838463,3
+55312255,25838463,4
+83460153,25838463,-1
+62762871,25838463,1
+katerzo,25838463,3
+simona_mae,25838463,2
+10935764,25838463,3
+92522884,25838463,3
+135838359,25838463,4
+69353582,25838463,4
+25572888,25838463,3
+55529322,25838463,5
+53925910,25838463,3
+Sunbowinrain,25838463,3
+Zealx,25838463,2
+Jessica.clr,25838463,3
+york_wu,25838463,2
+bayueliusu,25838463,3
+yyscamper,25838463,2
+3275817,25838463,3
+42349049,25838463,1
+2511906,25838463,5
+46221574,25838463,3
+Colt76,25838463,5
+43652499,25838463,2
+57530916,25838463,5
+4655887,25838463,3
+52799019,25838463,5
+96204394,25838463,3
+53443769,25838463,4
+virgin,25838463,3
+102682916,25838463,4
+20194870,25838463,2
+tuirt,25838463,3
+lygirl989193,25838463,3
+117339283,25838463,1
+106137917,25838463,4
+bluedada,25838463,4
+92975823,25838463,3
+129472402,25838463,3
+yfqc24pippo,25838463,3
+57243281,25838463,1
+45792584,25838463,2
+Time-Trust,25838463,2
+60762947,25838463,3
+47680901,25838463,3
+jhy007,25838463,4
+65415712,25838463,3
+nonoloveu,25838463,4
+131675347,25838463,5
+2620783,25838463,3
+51697302,25838463,3
+47052463,25838463,3
+65832475,25838463,4
+q168,25838463,3
+46133817,25838463,3
+18046588,25838463,3
+yelano,25838463,3
+58840542,25838463,4
+45329595,25838463,4
+97786845,25838463,4
+58091237,25838463,3
+fish_in_desert,25838463,4
+dkjune,25838463,1
+51490972,25838463,2
+44866431,25838463,3
+100162086,25838463,3
+ProfThunder,25838463,4
+gaojianchong,25838463,3
+75826878,25838463,3
+2788057,25838463,3
+skyaim,25838463,3
+56478943,25838463,3
+127180672,25838463,3
+55867399,25838463,3
+88259412,25838463,2
+43003860,25838463,3
+52518211,25838463,4
+133887142,25838463,3
+yunl988,25838463,4
+st1na,25838463,3
+zcsgdbd,25838463,4
+newcomer,25838463,3
+84994751,25838463,4
+45295442,25838463,3
+ourpeerlesshero,25838463,2
+1468930,25838463,4
+sulphurlee,25838463,3
+72123222,25838463,2
+66714330,25838463,2
+alianzhao,25838463,2
+40081609,25838463,3
+Optimus-Prime,25838463,3
+67586472,25838463,2
+3069618,25838463,4
+116618365,25838463,2
+49253215,25838463,3
+xiaozhumomo,25838463,3
+65856924,25838463,4
+52341431,25838463,3
+37160658,25838463,3
+79261821,25838463,3
+51549155,25838463,3
+candyhorse,25838463,4
+irene826,25838463,3
+53255833,25838463,4
+sh1nnn,25838463,2
+facetosky,25838463,3
+2283860,25838463,3
+129698032,25838463,4
+1291925,25838463,4
+maoyu,25838463,3
+41483799,25838463,3
+75555205,25838463,3
+40687803,25838463,2
+MaclovenZD,25838463,2
+1708377,25838463,4
+46333522,25838463,4
+55906515,25838463,3
+6102978,25838463,2
+97468014,25838463,4
+120172771,25838463,3
+hanlu1991,25838463,3
+luhongchuan,25838463,3
+IWANNABEWIND,25838463,1
+IWANNABEWIND,25838463,1
+jimmyusher,25838463,2
+Adnachiel,25838463,4
+135374569,25838463,3
+131186872,25838463,4
+124825941,25838463,3
+lovehaddison,25838463,4
+37349595,25838463,3
+allanlou,25838463,3
+doris19921203,25838463,3
+buobo,25838463,3
+l-duke,25838463,1
+fangyuan1mi,25838463,3
+dinoel,25838463,3
+yangyucn,25838463,2
+59408878,25838463,3
+133904204,25838463,2
+janxin,25838463,3
+60188579,25838463,3
+phenix3443,25838463,2
+karain,25838463,3
+NTkyrie,25838463,3
+4584444,25838463,1
+36238876,25838463,4
+4712419,25838463,2
+sujijiu,25838463,3
+zzfuck,25838463,5
+50919323,25838463,3
+49699512,25838463,3
+Smeagol,25838463,3
+kandyball,25838463,3
+longlanglang,25838463,3
+135530165,25838463,4
+3387308,25838463,3
+122048565,25838463,2
+132560934,25838463,4
+myo,25838463,3
+46996433,25838463,2
+75007342,25838463,3
+iett815,25838463,3
+69729743,25838463,3
+kulapika,25838463,2
+44888850,25838463,4
+68597225,25838463,4
+Eternal.n1ce,25838463,3
+108693709,25838463,4
+42202741,25838463,3
+68325010,25838463,4
+crazydouban,25838463,4
+115134728,25838463,3
+37698619,25838463,3
+110364577,25838463,3
+56267380,25838463,3
+findSally,25838463,3
+1016554,25838463,3
+blueYY,25838463,3
+65187145,25838463,2
+56566421,25838463,3
+morechou,25838463,3
+dhflockyer00,25838463,3
+youngwayne,25838463,3
+50023640,25838463,5
+50963591,25838463,2
+45982566,25838463,2
+54599799,25838463,2
+pantasu,25838463,3
+73507188,25838463,3
+1831069,25838463,4
+74169906,25838463,2
+65808735,25838463,2
+51730167,25838463,2
+70242437,25838463,2
+53682563,25838463,3
+52393301,25838463,3
+49439503,25838463,3
+saintxi,25838463,3
+51265951,25838463,3
+52777499,25838463,2
+54107765,25838463,4
+50532974,25838463,4
+2162982,25838463,4
+ROMAN10,25838463,4
+49141660,25838463,3
+4527709,25838463,2
+4340826,25838463,4
+59504522,25838463,3
+46781917,25838463,-1
+131796541,25838463,3
+47246915,25838463,2
+55561510,25838463,3
+76146142,25838463,3
+120542127,25838463,1
+44946309,25838463,3
+ll-luly,25838463,4
+63897988,25838463,2
+2202819,25838463,3
+kinozhang,25838463,-1
+64741757,25838463,3
+choulaoya,25838463,4
+xibeigua,25838463,2
+ivis1989,25838463,1
+53851569,25838463,4
+53502773,25838463,2
+68445549,25838463,3
+45910532,25838463,3
+135175472,25838463,5
+4475648,25838463,3
+shenluos,25838463,3
+2168233,25838463,2
+netsurfe,25838463,3
+seven_mu,25838463,3
+104445642,25838463,2
+27017814,25838463,4
+I-COURAGE,25838463,4
+78945703,25838463,4
+6474153,25838463,3
+3616413,25838463,3
+121945022,25838463,5
+leocas,25838463,3
+127066563,25838463,4
+lindada,25838463,4
+2350156,25838463,3
+89187307,25838463,4
+58040215,25838463,3
+andyzhang1995,25838463,1
+24398573,25838463,-1
+ikuei,25838463,4
+12177460,25838463,2
+balltaker,25838463,4
+iPoder,25838463,4
+aiaiapple,25838463,1
+2227798,25838463,3
+50559047,25838463,2
+miaoamiao,25838463,2
+Emperor1996107,25838463,-1
+Jimmyuy,25838463,4
+52163063,25838463,3
+lanxiaoyang710,25838463,5
+dribeno,25838463,3
+vastyin,25838463,3
+60655749,25838463,3
+59318451,25838463,2
+37390884,25838463,1
+leiweiyu,25838463,3
+61469542,25838463,3
+93336298,25838463,3
+59062761,25838463,3
+miao_1,25838463,2
+55761413,25838463,4
+samsaran,25838463,3
+onceme,25838463,5
+veronbb,25838463,3
+54761530,25838463,-1
+urpk,25838463,4
+54538975,25838463,3
+61369928,25838463,3
+mrlp,25838463,2
+49681731,25838463,1
+79745413,25838463,4
+69406009,25838463,4
+53177130,25838463,4
+14820638,25838463,-1
+hljmsfy,25838463,3
+74106602,25838463,2
+51472613,25838463,3
+49354530,25838463,3
+101956762,25838463,4
+51226041,25838463,3
+56955441,25838463,3
+58827869,25838463,5
+JJ88pig,25838463,5
+nalusea,25838463,4
+42646716,25838463,4
+3198764,25838463,3
+38371308,25838463,4
+49301416,25838463,2
+70055114,25838463,2
+68661080,25838463,3
+megzzy,25838463,3
+lovebenedict,25838463,3
+lovebenedict,25838463,3
+32865838,25838463,3
+51945136,25838463,3
+34733301,25838463,3
+70488224,25838463,4
+49531398,25838463,3
+52021826,25838463,4
+zz6801286,25838463,2
+1932670,25838463,3
+summerday510,25838463,4
+66168101,25838463,3
+57479148,25838463,4
+libowen,25838463,4
+80566761,25838463,3
+4145186,25838463,3
+67352190,25838463,3
+miniqian0228,25838463,3
+53988209,25838463,3
+4042513,25838463,2
+59094570,25838463,5
+muiy,25838463,3
+46901322,25838463,3
+49190092,25838463,2
+52988951,25838463,3
+suchengmo,25838463,3
+63805238,25838463,2
+40684892,25838463,4
+68227584,25838463,4
+75490431,25838463,3
+96505956,25838463,3
+53378505,25838463,4
+48862073,25838463,3
+SpanishAnt,25838463,3
+130745675,25838463,2
+qinaideliji,25838463,4
+lyzw,25838463,3
+3475246,25838463,3
+60413211,25838463,3
+127464842,25838463,2
+aki0726,25838463,3
+74796937,25838463,3
+128952855,25838463,2
+sakurawei,25838463,4
+51860822,25838463,3
+GKTThh,25838463,4
+43115240,25838463,2
+28312683,25838463,2
+135705904,25838463,4
+blindye,25838463,5
+54721365,25838463,2
+71928655,25838463,2
+trianglecat,25838463,4
+snow961003,25838463,3
+zhengxianmin,25838463,3
+sophytao,25838463,3
+yinyaofan,25838463,4
+50988229,25838463,3
+sulang,25838463,3
+qishidengxian,25838463,2
+47162155,25838463,4
+vsunan,25838463,3
+yuyin518,25838463,2
+elfz,25838463,3
+62671989,25838463,3
+67728245,25838463,3
+73532203,25838463,5
+61366971,25838463,4
+normanzee,25838463,4
+54826965,25838463,3
+Chinajoke,25838463,3
+woshihaoren123,25838463,3
+lidayuanly,25838463,2
+heydenny,25838463,3
+3550233,25838463,3
+yuanzedong,25838463,3
+53559369,25838463,5
+tatanolove,25838463,2
+bdnet,25838463,3
+58066035,25838463,4
+ilovehongkou,25838463,4
+81870071,25838463,3
+Skin.C,25838463,3
+lianmumu,25838463,4
+2579882,25838463,3
+2473165,25838463,3
+LoveNCherish,25838463,3
+36511417,25838463,5
+Aurora707,25838463,2
+50455323,25838463,2
+4667776,25838463,1
+miyavikame,25838463,3
+keith_z,25838463,4
+64519164,25838463,3
+cooloh,25838463,2
+72432038,25838463,3
+youknow810,25838463,2
+75246716,25838463,4
+hm512,25838463,2
+103180003,25838463,4
+49685592,25838463,5
+yuantown,25838463,2
+AJ.neverland,25838463,3
+movieview,25838463,2
+32402352,25838463,3
+49266863,25838463,2
+4488230,25838463,2
+57224796,25838463,3
+17471764,25838463,-1
+86768814,25838463,3
+92318310,25838463,3
+4355562,25838463,3
+yidakefacaishu,25838463,5
+48786722,25838463,4
+70700918,25838463,3
+lionelwait,25838463,3
+126260186,25838463,4
+44865012,25838463,4
+26650310,25838463,4
+83880297,25838463,1
+33329266,25838463,3
+117348494,25838463,4
+neojmax,25838463,2
+54888937,25838463,4
+RedSnowRose,25838463,3
+50800754,25838463,4
+freakyoyo,25838463,3
+51904993,25838463,2
+56524460,25838463,4
+alice-cat,25838463,3
+83942238,25838463,3
+76536277,25838463,-1
+49365587,25838463,4
+ClaireL,25838463,2
+54905705,25838463,1
+119829181,25838463,3
+89270889,25838463,3
+45505109,25838463,3
+windyolivia,25838463,3
+59272939,25838463,2
+57947466,25838463,4
+50570726,25838463,3
+zhangqidashu,25838463,5
+54361360,25838463,4
+Jaytaoo,25838463,3
+48329538,25838463,2
+nini1030,25838463,3
+133493380,25838463,2
+darendaren,25838463,-1
+92232503,25838463,4
+35805626,25838463,-1
+lovingmomo,25838463,3
+70350780,25838463,4
+echo_ch,25838463,3
+46499991,25838463,3
+49807065,25838463,3
+violin1112,25838463,4
+fengge1990,25838463,2
+128821686,25838463,5
+52214552,25838463,3
+4596560,25838463,2
+74701610,25838463,3
+shmilyyan,25838463,2
+48445532,25838463,3
+49191117,25838463,4
+58009329,25838463,1
+fenshoudashi,25838463,3
+108419935,25838463,3
+fromdeark,25838463,3
+evelyn0508,25838463,2
+qingfengvicky,25838463,3
+DLRay,25838463,5
+52652829,25838463,4
+MarLee,25838463,5
+2028913,25838463,2
+4213331,25838463,-1
+himarkcn,25838463,2
+enjoy39,25838463,3
+49038278,25838463,2
+35858270,25838463,3
+skloveshaka,25838463,3
+56263010,25838463,4
+62710966,25838463,3
+50042577,25838463,2
+cjsjason,25838463,3
+49519192,25838463,5
+merryliang,25838463,4
+JHSDOUBAN,25838463,2
+52951780,25838463,2
+lovelieren,25838463,3
+44966176,25838463,4
+45276725,25838463,2
+49550156,25838463,3
+88072113,25838463,3
+62825984,25838463,4
+catheringli,25838463,3
+3438507,25838463,3
+94782987,25838463,2
+4627071,25838463,2
+2761282,25838463,2
+11566740,25838463,3
+64797594,25838463,3
+4657884,25838463,3
+63127179,25838463,3
+64123749,25838463,3
+anluos,25838463,2
+44903969,25838463,4
+1406185,25838463,2
+2415600,25838463,3
+iml5,25838463,2
+48434496,25838463,2
+hhgu1983,25838463,3
+66827780,25838463,3
+3209696,25838463,1
+64333232,25838463,-1
+41471584,25838463,5
+ElaineZhu,25838463,1
+cassiewang,25838463,1
+HeroineDaode,25838463,2
+44706331,25838463,3
+89528523,25838463,4
+55008345,25838463,3
+norker,25838463,2
+commemoration,25838463,3
+taoj1,25838463,3
+guzhuyin,25838463,2
+ileonwii,25838463,3
+63188562,25838463,4
+39015968,25838463,3
+48164798,25838463,3
+62864359,25838463,3
+ABoyIsUgly,25838463,4
+94260167,25838463,1
+yangisyang,25838463,3
+1824542,25838463,3
+63223538,25838463,3
+77619786,25838463,3
+master-photon,25838463,4
+83668746,25838463,5
+3219666,25838463,4
+fanfouxiong,25838463,2
+133173153,25838463,3
+70990506,25838463,4
+45199791,25838463,5
+45390359,25838463,4
+38246464,25838463,4
+aivnce,25838463,3
+66612367,25838463,4
+uuul,25838463,3
+mr_han1991,25838463,2
+xchill,25838463,2
+52046624,25838463,3
+57490076,25838463,3
+81084741,25838463,3
+81979742,25838463,4
+Win-DY,25838463,3
+1751335,25838463,3
+leonardodicapri,25838463,3
+83141101,25838463,3
+103632905,25838463,3
+Habelchocy,25838463,-1
+kuensun,25838463,3
+51476394,25838463,4
+34256368,25838463,4
+xyz0805,25838463,3
+49946146,25838463,3
+fallenstar,25838463,3
+57729721,25838463,-1
+38061358,25838463,5
+15810065,25838463,3
+83781615,25838463,3
+deadblue,25838463,-1
+130991219,25838463,4
+53437305,25838463,3
+120832541,25838463,4
+youzidao,25838463,3
+121469548,25838463,2
+55556011,25838463,2
+skutiee,25838463,4
+28074817,25838463,2
+foxduck,25838463,3
+3701919,25838463,3
+36505752,25838463,3
+cheesechee,25838463,2
+51116372,25838463,3
+i.may.day.,25838463,4
+froggrandpa,25838463,3
+72364160,25838463,4
+56627146,25838463,3
+weiilele,25838463,3
+44173188,25838463,3
+lannn,25838463,5
+fortblk,25838463,2
+missbean1993,25838463,3
+1437339,25838463,3
+suixi,25838463,3
+80452095,25838463,3
+68747518,25838463,5
+anna923,25838463,3
+efscpig,25838463,5
+yeeye,25838463,3
+lsadalin,25838463,4
+Sylvan_S,25838463,3
+81211425,25838463,1
+gb333,25838463,2
+darkone,25838463,3
+halfrice1984,25838463,3
+mocean,25838463,3
+47924726,25838463,3
+39255754,25838463,3
+101803011,25838463,1
+67330888,25838463,2
+59220835,25838463,2
+40971398,25838463,3
+64757557,25838463,4
+58016445,25838463,3
+66423049,25838463,1
+54493645,25838463,2
+yukileung,25838463,3
+52097421,25838463,4
+darkness211,25838463,3
+73810775,25838463,4
+126348691,25838463,3
+liudingxin,25838463,2
+dzone,25838463,3
+89062167,25838463,2
+4446932,25838463,4
+84308662,25838463,3
+130762415,25838463,2
+2600693,25838463,2
+88429697,25838463,4
+VEmokst,25838463,3
+99109335,25838463,4
+79831664,25838463,1
+102594722,25838463,3
+67656730,25838463,4
+49922437,25838463,3
+44318435,25838463,4
+91848569,25838463,4
+63732204,25838463,3
+48673024,25838463,3
+129913268,25838463,2
+67679868,25838463,2
+Hellen,25838463,3
+115467690,25838463,3
+53185889,25838463,1
+115231190,25838463,3
+nangongmocheng,25838463,3
+74243951,25838463,2
+74971419,25838463,3
+doger,25838463,3
+nathanyun,25838463,5
+4109418,25838463,3
+phoenixjanezhai,25838463,3
+130514270,25838463,4
+46082327,25838463,3
+hrj21,25838463,2
+3794173,25838463,2
+changle0605,25838463,3
+27037345,25838463,2
+39957958,25838463,3
+49813166,25838463,4
+sleepydaisy,25838463,3
+68983294,25838463,3
+46453072,25838463,3
+41428857,25838463,2
+69623056,25838463,3
+51002009,25838463,3
+64394442,25838463,2
+i3song,25838463,4
+121352269,25838463,3
+127554011,25838463,1
+82631325,25838463,2
+40478089,25838463,3
+55886831,25838463,3
+matherfucker,25838463,3
+hatanomio,25838463,3
+80628102,25838463,3
+19008518,25838463,3
+62370377,25838463,4
+67990351,25838463,4
+icefishe,25838463,3
+59891692,25838463,5
+2828111,25838463,3
+4026585,25838463,3
+socary,25838463,3
+128617296,25838463,2
+4134812,25838463,3
+70930410,25838463,3
+68792841,25838463,1
+chenhongyu1222,25838463,2
+1118054,25838463,3
+gothickid,25838463,3
+lidejun,25838463,3
+1373290,25838463,3
+75182939,25838463,2
+60856294,25838463,3
+lsg_lsg,25838463,3
+82993911,25838463,3
+45080512,25838463,3
+1259506,25838463,3
+63340395,25838463,4
+letonk,25838463,4
+81061970,25838463,5
+78473931,25838463,2
+pansin,25838463,3
+anlrj,25838463,3
+48845864,25838463,4
+AspireY,25838463,3
+46828936,25838463,3
+kistrike,25838463,-1
+44373371,25838463,5
+2674873,25838463,4
+violin0714,25838463,4
+willsummer,25838463,2
+49489943,25838463,3
+tojohnonly,25838463,5
+fortanxu,25838463,3
+zhaoda,25838463,4
+73033279,25838463,3
+50909921,25838463,3
+58628233,25838463,3
+30181678,25838463,3
+Godort,25838463,3
+yellowcroaker,25838463,2
+48427684,25838463,2
+ashwind,25838463,3
+fatia0,25838463,1
+50602510,25838463,3
+60826813,25838463,3
+annho,25838463,4
+Sinept,25838463,3
+pajas,25838463,4
+3390237,25838463,2
+26681291,25838463,1
+loserbullet,25838463,4
+rebecca.psy,25838463,3
+43056732,25838463,4
+cca2222223,25838463,4
+58015177,25838463,4
+babyelyse,25838463,4
+75215757,25838463,3
+42650469,25838463,3
+47805986,25838463,3
+44326064,25838463,3
+shinpaopao,25838463,3
+51411741,25838463,1
+2898299,25838463,4
+84978476,25838463,1
+66483711,25838463,3
+49651317,25838463,4
+fay2,25838463,5
+54375575,25838463,3
+2374847,25838463,3
+4740160,25838463,2
+miuk,25838463,2
+suzihan,25838463,4
+71455965,25838463,2
+38513029,25838463,2
+37382236,25838463,3
+cskywalker,25838463,2
+darlingm,25838463,5
+120342469,25838463,5
+4239908,25838463,3
+130817915,25838463,3
+58993842,25838463,3
+xuyinaxxxxxxx,25838463,5
+wrx1203,25838463,3
+62163111,25838463,5
+41874215,25838463,3
+zhangleyuan,25838463,2
+deandai,25838463,2
+memoricry,25838463,3
+4465654,25838463,2
+fivestone,25838463,4
+58568255,25838463,2
+lovemimidog,25838463,4
+116551398,25838463,3
+minilbiss,25838463,2
+44720442,25838463,5
+52294863,25838463,3
+76515207,25838463,3
+whz1143243564,25838463,3
+30765497,25838463,3
+68162187,25838463,3
+51060168,25838463,4
+63575195,25838463,2
+2022222,25838463,5
+58025611,25838463,3
+pink-24978590,25838463,3
+77571393,25838463,3
+fzw83035379,25838463,2
+deerCherry,25838463,4
+nicer,25838463,3
+Smileysnow,25838463,4
+imarco,25838463,3
+v5boss,25838463,3
+135270390,25838463,2
+yilianche,25838463,4
+63093559,25838463,3
+67181847,25838463,-1
+ColinMorgan,25838463,4
+4911976,25838463,1
+83258649,25838463,4
+78518168,25838463,2
+loooli,25838463,3
+45832248,25838463,2
+135118827,25838463,3
+73011629,25838463,3
+47289236,25838463,2
+35768537,25838463,4
+81042933,25838463,1
+67325492,25838463,3
+66992293,25838463,4
+47810404,25838463,2
+78172493,25838463,3
+67393303,25838463,2
+135491689,25838463,3
+61898774,25838463,4
+120597236,25838463,2
+84744874,25838463,3
+b_less,25838463,4
+116908080,25838463,2
+83653194,25838463,3
+linxiaolin_,25838463,2
+60046536,25838463,1
+49198911,25838463,4
+kooooh,25838463,2
+67024367,25838463,4
+piccl,25838463,1
+wwyihuayishijie,25838463,1
+45388031,25838463,3
+xuxu2333,25838463,5
+47413356,25838463,3
+Bubble-Geek,25838463,4
+kakawoka,25838463,3
+freekami,25838463,3
+64825748,25838463,3
+1364563,25838463,3
+xiaohundaban,25838463,2
+54806925,25838463,2
+54806925,25838463,2
+66582764,25838463,4
+78724440,25838463,3
+42291376,25838463,2
+qianshiyang,25838463,3
+kouxu,25838463,4
+58433028,25838463,2
+s1219snow,25838463,2
+127281589,25838463,2
+eeagle,25838463,3
+baladong123,25838463,3
+gw150080,25838463,4
+124314239,25838463,5
+44027480,25838463,1
+35545320,25838463,3
+zhongxiaojun,25838463,2
+120640865,25838463,3
+lumingtao,25838463,2
+37424688,25838463,3
+52606660,25838463,4
+46173103,25838463,3
+3218379,25838463,-1
+115131162,25838463,3
+42568988,25838463,2
+51300433,25838463,5
+3026459,25838463,3
+41636718,25838463,3
+52004957,25838463,3
+minquan,25838463,2
+134528233,25838463,3
+44690899,25838463,2
+Ranice,25838463,3
+carrieloveless,25838463,2
+SeanShepherd,25838463,4
+Stina327,25838463,3
+75261344,25838463,3
+caocaoa,25838463,1
+1187053,25838463,3
+62821858,25838463,4
+liuyunxuan333,25838463,3
+62737807,25838463,2
+nicoleant,25838463,4
+y.u,25838463,1
+55782908,25838463,4
+hichai,25838463,3
+kenji0102,25838463,2
+Solo-n,25838463,3
+45078275,25838463,4
+mczane,25838463,3
+mrschan,25838463,3
+68014143,25838463,3
+anxel,25838463,-1
+58112577,25838463,2
+64779909,25838463,4
+1563945,25838463,-1
+alphes,25838463,3
+79301017,25838463,3
+wincy_5c,25838463,3
+pp3288,25838463,1
+joyjay,25838463,4
+61435009,25838463,3
+47867887,25838463,2
+45000967,25838463,3
+75370211,25838463,3
+zoe_dl,25838463,3
+91805538,25838463,4
+49176180,25838463,5
+135383710,25838463,4
+102756270,25838463,5
+59984702,25838463,3
+FK621,25838463,2
+43378862,25838463,4
+1651604,25838463,4
+97491371,25838463,2
+80055631,25838463,1
+2030100,25838463,3
+Sk.Young,25838463,3
+Emily_witch,25838463,3
+shf993,25838463,3
+ydyie,25838463,2
+ydyie,25838463,2
+lihanbin,25838463,5
+ainaonao,25838463,2
+133471355,25838463,4
+vinniezhao,25838463,2
+josephliu37,25838463,3
+49342454,25838463,3
+58204448,25838463,5
+42661364,25838463,3
+40659159,25838463,3
+54097424,25838463,5
+64677693,25838463,3
+45483327,25838463,4
+94479704,25838463,3
+58258546,25838463,3
+3142824,25838463,3
+59221485,25838463,3
+imai,25838463,3
+jiaxintuanzi,25838463,3
+40832047,25838463,3
+dataroom,25838463,2
+64394091,25838463,2
+130872044,25838463,3
+colorwind,25838463,3
+CworkOrange,25838463,3
+kaka0805,25838463,3
+66140949,25838463,2
+59136619,25838463,2
+1595315,25838463,2
+4733255,25838463,4
+phxxx,25838463,2
+67795566,25838463,3
+steve-zhang,25838463,3
+applesan,25838463,2
+54449997,25838463,3
+52523730,25838463,3
+4909186,25838463,2
+50620373,25838463,3
+63927330,25838463,4
+76707175,25838463,4
+121304224,25838463,4
+4728940,25838463,1
+4030280,25838463,3
+badaalle,25838463,3
+41659361,25838463,4
+73332736,25838463,2
+Helianthustree,25838463,4
+prague2046,25838463,3
+84078952,25838463,3
+wuyaa1215,25838463,4
+70001053,25838463,3
+digdug,25838463,4
+59044334,25838463,3
+37865911,25838463,3
+69273736,25838463,4
+48276999,25838463,3
+75658713,25838463,4
+3703670,25838463,4
+zuoshoudezuo,25838463,3
+duoran,25838463,4
+62093986,25838463,1
+yuyusuper2,25838463,1
+60589380,25838463,2
+91567656,25838463,3
+yan_fang,25838463,3
+44834038,25838463,3
+51387684,25838463,3
+yueqingge,25838463,4
+2304340,25838463,3
+snowplum,25838463,4
+okkk1999,25838463,1
+47849591,25838463,3
+68835916,25838463,5
+tenspace,25838463,3
+1903091,25838463,3
+77645193,25838463,3
+unamm,25838463,3
+45925639,25838463,3
+dairytea,25838463,3
+uzbaby,25838463,3
+xiaomujunjun,25838463,2
+45953948,25838463,3
+56068033,25838463,3
+8087992,25838463,3
+48697353,25838463,4
+44758840,25838463,3
+133224570,25838463,2
+qiQ,25838463,3
+106730683,25838463,2
+16928498,25838463,2
+130248738,25838463,3
+2415644,25838463,3
+132010641,25838463,3
+37450030,25838463,3
+ohahahu,25838463,2
+90027945,25838463,3
+72141762,25838463,3
+50519870,25838463,2
+diylove,25838463,1
+2705619,25838463,5
+allanzlau,25838463,3
+L_islander,25838463,3
+116271195,25838463,3
+2737013,25838463,3
+49827246,25838463,4
+67758880,25838463,4
+67544902,25838463,3
+Fedsay,25838463,3
+1369113,25838463,3
+61495974,25838463,3
+tincnie,25838463,2
+lili9790,25838463,2
+cheng_Ting,25838463,3
+hzjppkk,25838463,3
+53248531,25838463,4
+souldestroyin,25838463,2
+airzx,25838463,5
+lovetatum,25838463,3
+hesson,25838463,4
+2820792,25838463,3
+55600787,25838463,5
+58913556,25838463,3
+65930256,25838463,1
+17006018,25838463,3
+love13hao,25838463,4
+47549750,25838463,4
+130551483,25838463,4
+91737693,25838463,2
+128811063,25838463,3
+79699248,25838463,4
+71534592,25838463,5
+63635904,25838463,3
+62920331,25838463,5
+eastern,25838463,1
+ronanbread,25838463,3
+kaverjody,25838463,2
+73278464,25838463,5
+3656028,25838463,5
+75963174,25838463,3
+riverbrother,25838463,4
+47584127,25838463,4
+45099354,25838463,4
+Qyaoyao,25838463,-1
+52732779,25838463,1
+49568187,25838463,3
+EveNotended,25838463,4
+54403769,25838463,3
+kimxixi,25838463,2
+youngsimple,25838463,3
+51367308,25838463,3
+4057770,25838463,4
+grayer,25838463,-1
+44599413,25838463,2
+64875949,25838463,3
+undeadmonster,25838463,2
+muyu125,25838463,2
+pandaleilei,25838463,3
+63680075,25838463,5
+dannytheking,25838463,2
+74565811,25838463,3
+42086136,25838463,4
+3142312,25838463,3
+72509443,25838463,3
+76914057,25838463,3
+64138699,25838463,4
+ronaldojxz,25838463,2
+toka,25838463,3
+2221077,25838463,4
+76393487,25838463,3
+81506415,25838463,4
+3930387,25838463,2
+izzie,25838463,-1
+2275412,25838463,3
+53644623,25838463,2
+43612401,25838463,2
+tengAkame,25838463,3
+fyyksyh,25838463,3
+91296075,25838463,4
+njtintin,25838463,4
+wednesday.coffe,25838463,4
+62524902,25838463,3
+52965302,25838463,5
+tjf1022,25838463,1
+56617946,25838463,3
+53031430,25838463,5
+58924080,25838463,3
+51283005,25838463,3
+63064889,25838463,3
+62224516,25838463,5
+wangdale,25838463,3
+57218999,25838463,3
+71946766,25838463,4
+93471623,25838463,1
+72557807,25838463,3
+59753699,25838463,4
+127748889,25838463,3
+38514261,25838463,3
+smumy,25838463,3
+52655756,25838463,-1
+4121613,25838463,3
+sskllt,25838463,3
+2831524,25838463,3
+gyd,25838463,3
+59332452,25838463,3
+1480836,25838463,-1
+stardust1900,25838463,4
+61449405,25838463,3
+2850261,25838463,3
+2725034,25838463,4
+50638011,25838463,3
+52599868,25838463,4
+80060056,25838463,3
+114734252,25838463,3
+Rocwong,25838463,3
+49979829,25838463,5
+kev1989,25838463,5
+46960084,25838463,2
+vivianbloom,25838463,4
+131497544,25838463,5
+landelanle,25838463,3
+53896534,25838463,4
+33078631,25838463,2
+130433536,25838463,3
+olereo,25838463,2
+114499538,25838463,4
+65042146,25838463,2
+fuckinboy,25838463,4
+67866798,25838463,4
+liuchang223,25838463,4
+59166988,25838463,-1
+53646130,25838463,3
+54463600,25838463,3
+66895907,25838463,3
+moohyuk,25838463,5
+yayomi,25838463,3
+smallsugar,25838463,4
+51582662,25838463,2
+van2,25838463,3
+joemayxu,25838463,3
+61261995,25838463,5
+goby7,25838463,5
+51281553,25838463,4
+Karilyn,25838463,2
+qiangzhuang,25838463,1
+54083120,25838463,3
+3511814,25838463,4
+51483570,25838463,4
+78768709,25838463,3
+57725456,25838463,2
+43301248,25838463,4
+33981553,25838463,3
+43867607,25838463,3
+103928221,25838463,3
+132983057,25838463,2
+zhangtiexun,25838463,2
+szk13731584239,25838463,3
+2172840,25838463,3
+3984993,25838463,-1
+135361130,25838463,5
+45057209,25838463,3
+49588596,25838463,3
+51909458,25838463,3
+zcy0505,25838463,5
+6120725,25838463,3
+littlezhisandra,25838463,3
+85423911,25838463,3
+51244681,25838463,2
+losiuhong,25838463,1
+51138955,25838463,3
+cumming,25838463,5
+lieds,25838463,3
+agenta,25838463,5
+46799195,25838463,3
+lazzaro,25838463,2
+76548979,25838463,4
+55617091,25838463,3
+ting_shark,25838463,-1
+soranya,25838463,3
+55324515,25838463,3
+83343003,25838463,4
+67615771,25838463,5
+zbar1234,25838463,2
+mijalo,25838463,3
+consheep,25838463,3
+iammonna,25838463,3
+74507379,25838463,2
+gcllr,25838463,4
+75259314,25838463,3
+Q9,25838463,2
+bingoh2o,25838463,3
+38303495,25838463,5
+4442564,25838463,4
+33371000,25838463,2
+58082975,25838463,3
+7605327,25838463,2
+2368703,25838463,4
+72629481,25838463,4
+41864568,25838463,2
+122228928,25838463,4
+50363542,25838463,3
+49581171,25838463,4
+50143205,25838463,4
+53674696,25838463,5
+bora2547,25838463,3
+bLue.C,25838463,2
+75325570,25838463,3
+eill,25838463,3
+81645668,25838463,1
+70952079,25838463,2
+lemoncan,25838463,3
+89388502,25838463,4
+pierrewrs,25838463,2
+cajiln,25838463,4
+impony,25838463,3
+50610129,25838463,3
+xianzz,25838463,4
+mysterymiao,25838463,5
+HINSun,25838463,3
+59733450,25838463,5
+127728111,25838463,3
+127728111,25838463,3
+dawdle,25838463,5
+3786096,25838463,3
+jovigne,25838463,4
+dolphinfu,25838463,3
+onlyqinping,25838463,3
+46095841,25838463,4
+46429312,25838463,3
+69420649,25838463,2
+snow523,25838463,4
+35294199,25838463,3
+120675468,25838463,3
+54742628,25838463,5
+keneyzhao,25838463,4
+47043061,25838463,3
+70464788,25838463,4
+81530706,25838463,2
+frankxumomo,25838463,3
+103500023,25838463,4
+3623604,25838463,-1
+yizhifeng313,25838463,2
+14453874,25838463,3
+52021990,25838463,4
+intion,25838463,-1
+ShoneSpeaking,25838463,3
+122232090,25838463,3
+xiongxin414,25838463,3
+3864518,25838463,3
+cactusr,25838463,3
+fenglingcp,25838463,2
+leafsong,25838463,2
+121883364,25838463,2
+iloveEminem,25838463,4
+4295513,25838463,3
+81059128,25838463,3
+76187253,25838463,2
+61110479,25838463,2
+alex.tseng,25838463,2
+liamcai,25838463,2
+Niaofei618,25838463,3
+46735351,25838463,5
+64124840,25838463,3
+122124788,25838463,3
+63768527,25838463,4
+103178758,25838463,2
+coolluo_zw,25838463,2
+34187825,25838463,4
+karasu419,25838463,4
+fallenangle3,25838463,2
+kangmeng,25838463,3
+89399541,25838463,4
+AnitaXSteps,25838463,2
+1758433,25838463,3
+72091054,25838463,3
+givindream,25838463,4
+j1angvei,25838463,3
+53440294,25838463,3
+xiangfo,25838463,3
+lsx8270,25838463,5
+34363043,25838463,3
+112098382,25838463,3
+69156553,25838463,2
+ice-F,25838463,2
+61779592,25838463,2
+ycy19870313,25838463,3
+83704448,25838463,3
+54653189,25838463,3
+58583668,25838463,2
+Makoto614,25838463,2
+78166009,25838463,2
+jite,25838463,3
+74572703,25838463,3
+3921724,25838463,3
+63612050,25838463,2
+68607460,25838463,3
+85831631,25838463,-1
+Granadn,25838463,4
+lovelesswings,25838463,-1
+axlcore,25838463,4
+53920626,25838463,3
+53920626,25838463,3
+yangqiaohe,25838463,2
+61307239,25838463,4
+zhaobiao1988,25838463,4
+123580530,25838463,3
+77536605,25838463,3
+Grace_Xuliang,25838463,2
+freeup157,25838463,-1
+may-may,25838463,3
+annow,25838463,-1
+53603424,25838463,3
+30852407,25838463,-1
+zsy_azure,25838463,2
+celia_xy,25838463,3
+51398532,25838463,3
+3941641,25838463,4
+helenooc,25838463,4
+46379813,25838463,3
+61422378,25838463,3
+lu...lu,25838463,3
+hakuhaku,25838463,2
+88292094,25838463,4
+38897108,25838463,-1
+50875593,25838463,3
+123875477,25838463,2
+xiaofeipedia,25838463,-1
+k-j-p,25838463,2
+hwf254,25838463,-1
+75389100,25838463,3
+skinnymonkey,25838463,5
+134792608,25838463,5
+willdb,25838463,-1
+56161116,25838463,2
+readwang,25838463,-1
+NinaAobi,25838463,5
+23260274,25838463,3
+51855182,25838463,4
+zh91,25838463,4
+49467804,25838463,-1
+43132253,25838463,2
+62017090,25838463,4
+tree-mu,25838463,2
+2106137,25838463,4
+93900680,25838463,3
+alla,25838463,3
+38770627,25838463,1
+4559768,25838463,2
+50081676,25838463,4
+119299697,25838463,3
+52917026,25838463,4
+34592808,25838463,-1
+88171857,25838463,5
+KathyChin,25838463,-1
+kugooer,25838463,3
+3439248,25838463,2
+78925849,25838463,3
+72997506,25838463,3
+casanova_11,25838463,-1
+1728191,25838463,4
+103735356,25838463,2
+3531316,25838463,2
+chitb,25838463,3
+if0lily,25838463,-1
+88393319,25838463,4
+suzyfine,25838463,5
+3141917,25838463,3
+mylbj,25838463,-1
+tianranzijiegou,25838463,3
+125929186,25838463,1
+65321007,25838463,3
+70469575,25838463,4
+mickey0725,25838463,4
+61415856,25838463,3
+brightchai,25838463,2
+bobolu,25838463,3
+coto,25838463,4
+hanuit,25838463,2
+veronicavee,25838463,4
+joycedevil,25838463,2
+35241807,25838463,3
+summerwalnut,25838463,2
+43919989,25838463,-1
+2266030,25838463,-1
+sunseekerns,25838463,3
+58963446,25838463,2
+69678068,25838463,-1
+54378428,25838463,2
+graffitizy,25838463,-1
+60323807,25838463,4
+127467448,25838463,5
+66802637,25838463,3
+58161942,25838463,2
+65912201,25838463,4
+3331579,25838463,3
+vloiter,25838463,3
+3661713,25838463,4
+76800713,25838463,1
+daisyhantt,25838463,3
+130044129,25838463,3
+3869328,25838463,3
+mixmx,25838463,4
+23450183,25838463,-1
+40125342,25838463,3
+woshimasi,25838463,3
+128648728,25838463,3
+46799623,25838463,3
+AAAHHHAAA,25838463,4
+63724956,25838463,3
+48715746,25838463,3
+Rae8023,25838463,3
+18080670,25838463,3
+sunanna,25838463,3
+27452429,25838463,2
+yoyo-v,25838463,5
+2809964,25838463,4
+2570876,25838463,3
+4044749,25838463,3
+80283476,25838463,3
+LAMAU,25838463,-1
+13301536,25838463,3
+evelyn69,25838463,2
+107586571,25838463,5
+66803034,25838463,4
+3915429,25838463,2
+sunyangchina,25838463,2
+50747236,25838463,4
+41899297,25838463,4
+50256775,25838463,3
+63989347,25838463,3
+56694630,25838463,2
+48261192,25838463,3
+Tiara0211,25838463,3
+130860796,25838463,2
+knightingale,25838463,2
+53517811,25838463,3
+fandarin,25838463,2
+ma13426085_,25838463,3
+34493482,25838463,2
+80166253,25838463,3
+52424511,25838463,3
+4337719,25838463,3
+50820231,25838463,4
+48160969,25838463,3
+33195651,25838463,3
+MICROCHIP,25838463,4
+shunb,25838463,3
+shiguagji,25838463,2
+66016685,25838463,2
+48932419,25838463,2
+2275229,25838463,2
+garfield210,25838463,4
+72485230,25838463,5
+moryfor,25838463,2
+shaliwen,25838463,3
+73189108,25838463,3
+fanyi0109,25838463,3
+102651290,25838463,4
+72491217,25838463,4
+90751686,25838463,5
+69068097,25838463,4
+2761343,25838463,-1
+53681673,25838463,3
+1458725,25838463,2
+66552525,25838463,3
+37903408,25838463,3
+17748095,25838463,3
+candy_littrell,25838463,1
+11882042,25838463,3
+peterpanty,25838463,3
+72297338,25838463,2
+3429762,25838463,3
+36324525,25838463,4
+nanasemaru,25838463,2
+leanworker,25838463,-1
+41417678,25838463,1
+45789849,25838463,3
+50353681,25838463,3
+50430721,25838463,3
+bjoneday,25838463,4
+62279554,25838463,4
+49937909,25838463,4
+zonovo,25838463,3
+75001572,25838463,3
+71879067,25838463,2
+wetony,25838463,3
+50813433,25838463,5
+62989333,25838463,3
+Hyke,25838463,3
+58216177,25838463,4
+1169676,25838463,1
+counting_crows,25838463,3
+81616503,25838463,2
+49449526,25838463,2
+waiting0605,25838463,4
+52763361,25838463,1
+61350699,25838463,3
+38466277,25838463,3
+88079513,25838463,1
+47459977,25838463,3
+71325468,25838463,4
+53565685,25838463,2
+121270653,25838463,3
+75328137,25838463,3
+4685842,25838463,5
+56578863,25838463,2
+keaqy,25838463,4
+67861218,25838463,4
+za7ck,25838463,3
+71141044,25838463,3
+lifangze,25838463,3
+48182921,25838463,5
+59842125,25838463,3
+4107737,25838463,-1
+48116369,25838463,2
+bearyumi,25838463,2
+114541045,25838463,5
+69417205,25838463,5
+63120961,25838463,3
+action552200,25838463,4
+54277204,25838463,3
+2917441,25838463,3
+shenqiongye,25838463,3
+77922789,25838463,3
+57568491,25838463,5
+108212384,25838463,4
+yetiaoruo,25838463,4
+63132063,25838463,4
+61762178,25838463,2
+zhtianyu,25838463,1
+13131244,25838463,3
+62996817,25838463,3
+missliyu,25838463,3
+yimoyoulan916,25838463,2
+54069821,25838463,2
+49446093,25838463,5
+61871207,25838463,3
+beckham7,25838463,4
+131647140,25838463,2
+hunhunsui,25838463,2
+2716948,25838463,3
+113999648,25838463,2
+29685065,25838463,3
+impoki,25838463,2
+31849844,25838463,3
+52841977,25838463,4
+yanmingsky,25838463,4
+flowerish,25838463,3
+beckham4ever,25838463,3
+46038574,25838463,2
+Jastine,25838463,3
+59099811,25838463,3
+68669440,25838463,2
+ca5h,25838463,4
+lauretta2acm,25838463,4
+53626260,25838463,4
+2110097,25838463,3
+64742404,25838463,2
+33392381,25838463,4
+2917503,25838463,3
+51165620,25838463,2
+51165620,25838463,2
+132099750,25838463,2
+43378617,25838463,3
+Jacky_L,25838463,3
+36630443,25838463,2
+panda2pepsi,25838463,3
+67244429,25838463,2
+extremisme,25838463,3
+95768578,25838463,3
+42084433,25838463,3
+yaya102,25838463,4
+61970061,25838463,2
+44290240,25838463,3
+ai7love,25838463,2
+53935985,25838463,3
+2636027,25838463,4
+50811466,25838463,4
+83855853,25838463,3
+53721830,25838463,4
+38820904,25838463,1
+132039953,25838463,3
+3251343,25838463,5
+1984991,25838463,3
+edwardbloom,25838463,5
+4541876,25838463,3
+54025015,25838463,4
+75260597,25838463,3
+84281755,25838463,4
+65141663,25838463,3
+lewuleyi,25838463,3
+hirochi,25838463,3
+114469142,25838463,2
+83550216,25838463,3
+62668317,25838463,3
+35703098,25838463,3
+65150024,25838463,4
+googollee,25838463,3
+46311374,25838463,3
+1831746,25838463,4
+50226238,25838463,3
+76617762,25838463,4
+2235381,25838463,2
+63492561,25838463,-1
+61485916,25838463,5
+naiveal,25838463,3
+jok13,25838463,4
+MattB,25838463,4
+69091213,25838463,3
+61324818,25838463,-1
+49270534,25838463,3
+monet_c,25838463,3
+leafwaiting,25838463,4
+45463396,25838463,2
+87837876,25838463,2
+xiyanbyluo,25838463,4
+iris29,25838463,4
+50394173,25838463,3
+29271779,25838463,4
+matter,25838463,3
+46064171,25838463,4
+54860840,25838463,5
+Fienix,25838463,4
+92232299,25838463,1
+pbc0615,25838463,2
+35407270,25838463,3
+ancatne,25838463,3
+51120293,25838463,2
+127029651,25838463,3
+55281661,25838463,4
+3420320,25838463,4
+49216618,25838463,4
+luanjunyi,25838463,4
+44904163,25838463,3
+tennystime,25838463,3
+wishbao,25838463,2
+hypochondria,25838463,2
+58110144,25838463,3
+70517273,25838463,3
+57025568,25838463,3
+63571575,25838463,3
+44854300,25838463,4
+rinalee,25838463,3
+129760491,25838463,3
+21133666,25838463,3
+kimiyooo,25838463,-1
+zbc_endo,25838463,2
+yanxiaobao,25838463,3
+70764851,25838463,3
+66973670,25838463,3
+Georginaxx,25838463,3
+50352774,25838463,3
+fufufufuxk,25838463,3
+122920362,25838463,2
+66740319,25838463,2
+gtxyxyz,25838463,5
+alcudish,25838463,3
+58369913,25838463,4
+46397565,25838463,3
+50412116,25838463,3
+70742254,25838463,3
+snipersteve,25838463,3
+61030127,25838463,4
+114082783,25838463,5
+Devil.Q,25838463,3
+4374610,25838463,4
+3678762,25838463,2
+66716197,25838463,3
+63617641,25838463,2
+sunshinean2000,25838463,2
+doll88,25838463,3
+74768790,25838463,3
+83760985,25838463,3
+51477202,25838463,2
+48745872,25838463,4
+arsenal4ever,25838463,1
+53752220,25838463,4
+85324202,25838463,3
+83143884,25838463,3
+1019579,25838463,2
+44373773,25838463,4
+66717642,25838463,1
+49456596,25838463,3
+82391952,25838463,3
+sheldonkao,25838463,4
+53511670,25838463,4
+JasmineYu,25838463,5
+chevalier7,25838463,3
+bxg555,25838463,-1
+1457618,25838463,5
+Leslie_ontheway,25838463,3
+jiajunzhi,25838463,3
+122725527,25838463,5
+lishiyangmayo,25838463,3
+Son47,25838463,3
+Jensen4ever,25838463,3
+121844395,25838463,2
+longfei39,25838463,4
+glasstar,25838463,3
+41529515,25838463,3
+jinasong,25838463,3
+63689594,25838463,3
+69572285,25838463,-1
+65145861,25838463,4
+lianadreaming,25838463,4
+CharlesChou,25838463,2
+122420292,25838463,3
+38184816,25838463,2
+yestar,25838463,3
+134137352,25838463,-1
+62817881,25838463,2
+7421779,25838463,2
+reformer92,25838463,3
+mfslalala,25838463,3
+lensliao,25838463,4
+fuzyu,25838463,3
+demoncat,25838463,3
+44006704,25838463,2
+78601907,25838463,3
+64173822,25838463,4
+54543639,25838463,2
+54422705,25838463,5
+hls_304,25838463,1
+55774018,25838463,1
+68842910,25838463,2
+101636872,25838463,3
+88026032,25838463,1
+ringringrainlsy,25838463,3
+73956595,25838463,4
+62751293,25838463,4
+52345284,25838463,2
+a3615,25838463,5
+63027509,25838463,4
+tianjiaforever,25838463,4
+stetehe,25838463,3
+Icerush,25838463,5
+3631042,25838463,3
+45390521,25838463,2
+30740764,25838463,4
+43375121,25838463,4
+queenayip,25838463,2
+Knighail,25838463,3
+3944394,25838463,3
+65240470,25838463,4
+Erotica,25838463,5
+73764109,25838463,4
+82299258,25838463,5
+32474474,25838463,3
+2539331,25838463,3
+135187743,25838463,4
+131887772,25838463,3
+gogom,25838463,3
+62709413,25838463,4
+97477466,25838463,5
+75685464,25838463,3
+twopages,25838463,4
+LumenisOnejay,25838463,4
+2544651,25838463,3
+64563247,25838463,4
+2020855,25838463,3
+80826623,25838463,2
+64740791,25838463,2
+twopersons,25838463,5
+62877248,25838463,3
+2600677,25838463,3
+72251882,25838463,3
+47680886,25838463,3
+74418627,25838463,2
+119313402,25838463,5
+93299177,25838463,5
+65724655,25838463,5
+77809977,25838463,5
+92462355,25838463,1
+49314605,25838463,1
+31306878,25838463,5
+49905882,25838463,4
+ZeRo.0821,25838463,4
+51426516,25838463,3
+51927148,25838463,5
+5747784,25838463,3
+flora_panda,25838463,3
+134498032,25838463,3
+130777439,25838463,3
+52093119,25838463,2
+clever528,25838463,4
+PatrickMYK,25838463,1
+7798390,25838463,4
+toool,25838463,2
+40104210,25838463,3
+108821133,25838463,4
+92321464,25838463,2
+91372102,25838463,3
+130890583,25838463,3
+74202953,25838463,2
+35546848,25838463,3
+46968893,25838463,3
+faiel,25838463,3
+60392839,25838463,2
+83123138,25838463,3
+76549265,25838463,3
+Jodiezhang,25838463,3
+64780259,25838463,4
+82570789,25838463,2
+cocojamboo,25838463,2
+3514066,25838463,3
+84972499,25838463,5
+smallazure,25838463,3
+93160401,25838463,3
+Longinuss,25838463,1
+85155782,25838463,3
+48770075,25838463,3
+44063969,25838463,3
+57452457,25838463,3
+48852517,25838463,2
+xyl19900815,25838463,3
+104559183,25838463,3
+callmeX5,25838463,4
+42797473,25838463,3
+51803624,25838463,3
+122775909,25838463,5
+MeyouYu,25838463,3
+paandpa,25838463,4
+45055967,25838463,4
+74932520,25838463,2
+eksmemo,25838463,2
+justinwu0129,25838463,4
+50062390,25838463,2
+2425388,25838463,-1
+82817836,25838463,4
+43471268,25838463,3
+wangxiaoyou,25838463,4
+45787212,25838463,4
+loftywain,25838463,3
+91543549,25838463,3
+89474196,25838463,3
+99196855,25838463,2
+sherlockbc,25838463,5
+41122541,25838463,3
+76621126,25838463,3
+51945032,25838463,4
+zhr19951204,25838463,2
+134434591,25838463,3
+118036743,25838463,3
+82238487,25838463,2
+49298107,25838463,3
+Ayaaa,25838463,-1
+gaishixiaogui,25838463,1
+132592815,25838463,3
+eva01,25838463,4
+37599552,25838463,2
+guomx,25838463,2
+padme,25838463,3
+45182133,25838463,2
+56390988,25838463,3
+61573146,25838463,4
+shotout,25838463,4
+49993320,25838463,-1
+4553271,25838463,3
+szhiji,25838463,4
+xiaoliok,25838463,4
+kellylr,25838463,2
+48509446,25838463,3
+70194363,25838463,3
+43330235,25838463,3
+wuh,25838463,3
+40537905,25838463,1
+40424921,25838463,1
+zhusiyang,25838463,4
+85003945,25838463,3
+59537499,25838463,4
+55860957,25838463,3
+99178213,25838463,4
+KINGRUNRUN,25838463,4
+xuzhezhen,25838463,3
+imcaoli,25838463,2
+zhangjian_1q26,25838463,-1
+62588625,25838463,5
+87946647,25838463,3
+49491466,25838463,3
+2853926,25838463,4
+wxhsolo,25838463,2
+68887897,25838463,5
+qingxiaolin,25838463,2
+edward4th,25838463,3
+A-sun,25838463,5
+103420044,25838463,2
+75433053,25838463,4
+85367661,25838463,3
+125087126,25838463,4
+BarbieZ,25838463,4
+121917998,25838463,4
+MihoKomatsu,25838463,3
+1558709,25838463,4
+44486984,25838463,2
+52718281,25838463,4
+128317552,25838463,5
+87651171,25838463,1
+53485894,25838463,3
+66557828,25838463,1
+106407230,25838463,1
+53478105,25838463,2
+zzyjane,25838463,4
+125773849,25838463,4
+121893790,25838463,4
+sui2,25838463,3
+jack_eminem,25838463,3
+1532705,25838463,3
+manchukhan,25838463,4
+88938201,25838463,3
+bluesmilery,25838463,4
+23853027,25838463,4
+2244671,25838463,3
+niumingzhe,25838463,3
+dhtcwd,25838463,3
+Tracy1230,25838463,2
+littleflowercan,25838463,3
+58253013,25838463,3
+47193126,25838463,2
+77640366,25838463,3
+cuixin1976,25838463,4
+IloveyouDanica,25838463,3
+VLR,25838463,3
+75991915,25838463,3
+daiginnko,25838463,3
+brad_tsye,25838463,3
+54584070,25838463,2
+74714802,25838463,3
+64854726,25838463,3
+easonkoko,25838463,2
+95817419,25838463,5
+50414498,25838463,-1
+83192314,25838463,4
+78406452,25838463,3
+134340947,25838463,3
+43098377,25838463,4
+48480567,25838463,2
+wangying2325,25838463,4
+1494112,25838463,3
+128583623,25838463,1
+50444681,25838463,3
+6615487,25838463,4
+51245049,25838463,1
+2005598,25838463,2
+2213454,25838463,3
+fanyamin,25838463,2
+133382410,25838463,4
+ccbadger,25838463,2
+48973534,25838463,3
+85143816,25838463,2
+79372078,25838463,4
+2574364,25838463,3
+liancheng,25838463,3
+57996678,25838463,3
+67072789,25838463,5
+45394138,25838463,1
+1886385,25838463,3
+41482074,25838463,3
+aimurol,25838463,5
+3383915,25838463,2
+leader4,25838463,2
+liuzisen,25838463,3
+for_love,25838463,4
+47591131,25838463,-1
+xuansushine,25838463,3
+2684151,25838463,5
+CJPVIP,25838463,3
+39104472,25838463,3
+43004579,25838463,1
+whtsky,25838463,2
+2040497,25838463,3
+61624406,25838463,1
+40549441,25838463,3
+47779615,25838463,4
+68226125,25838463,3
+3489125,25838463,2
+50792790,25838463,2
+2668037,25838463,3
+stardust1030,25838463,3
+34407636,25838463,3
+53094126,25838463,5
+46572945,25838463,3
+zhaopusheng,25838463,2
+zhangyifendou,25838463,1
+64326764,25838463,2
+lavender47,25838463,2
+wangdoudou20,25838463,2
+CharlesLC,25838463,3
+64645898,25838463,2
+zhuangbixia,25838463,3
+119428504,25838463,3
+58774315,25838463,2
+naoyareiji,25838463,2
+74809836,25838463,3
+3429671,25838463,4
+4116226,25838463,4
+YHRui0831,25838463,5
+tangputao,25838463,3
+54670322,25838463,3
+72946203,25838463,3
+imimi,25838463,3
+xiajinlv,25838463,3
+summer712,25838463,5
+46175747,25838463,4
+antimercydou,25838463,3
+1809252,25838463,3
+71811082,25838463,2
+evaun,25838463,5
+128144959,25838463,3
+shipisanliang,25838463,2
+allthesame,25838463,5
+Jillyan,25838463,2
+38821407,25838463,3
+3540441,25838463,3
+4398085,25838463,3
+63084559,25838463,1
+1077771,25838463,3
+52468739,25838463,4
+1656255,25838463,3
+57761188,25838463,4
+120625991,25838463,4
+marilia0125,25838463,5
+47325319,25838463,5
+2030775,25838463,4
+chuleiwu,25838463,3
+Chickenfly,25838463,1
+57208317,25838463,4
+swell1019,25838463,4
+sherrybecks,25838463,5
+tocend,25838463,4
+zizi.p,25838463,2
+63367486,25838463,3
+68647916,25838463,3
+oguri-sama,25838463,3
+69272143,25838463,4
+22077242,25838463,3
+56196018,25838463,3
+123833891,25838463,4
+44848574,25838463,3
+68968517,25838463,2
+47589972,25838463,3
+45795420,25838463,3
+130692853,25838463,2
+4435016,25838463,2
+35051547,25838463,4
+83025470,25838463,3
+4267240,25838463,3
+67416002,25838463,2
+3455014,25838463,2
+46865711,25838463,3
+134552123,25838463,3
+deasil,25838463,2
+84755665,25838463,3
+1200829,25838463,4
+48398238,25838463,3
+74636467,25838463,4
+35731905,25838463,4
+shunong,25838463,1
+82511491,25838463,2
+cranehwqzqh,25838463,4
+35819210,25838463,3
+rhh,25838463,4
+mason0128,25838463,4
+114505500,25838463,4
+106663926,25838463,3
+2173034,25838463,-1
+68163321,25838463,2
+hahafly,25838463,4
+132893137,25838463,3
+cc409082324,25838463,4
+99834805,25838463,3
+AmadHatter,25838463,2
+108229820,25838463,3
+35552430,25838463,3
+42133843,25838463,3
+67888545,25838463,3
+57441290,25838463,4
+134854042,25838463,4
+74573393,25838463,4
+3009345,25838463,3
+arkana,25838463,4
+46333291,25838463,3
+yue919,25838463,5
+60072533,25838463,4
+yuanzi123,25838463,3
+wdxyj,25838463,3
+58258651,25838463,3
+55362027,25838463,4
+70264385,25838463,3
+64687652,25838463,4
+27710094,25838463,3
+59129484,25838463,3
+pangdashen,25838463,4
+135075217,25838463,4
+43258797,25838463,5
+65784611,25838463,2
+vincentjones,25838463,2
+127322008,25838463,3
+Youoen,25838463,2
+53743649,25838463,4
+snokin,25838463,2
+61572428,25838463,4
+61572428,25838463,4
+3571623,25838463,3
+87743685,25838463,2
+mae626,25838463,3
+2488091,25838463,2
+47821989,25838463,3
+61700663,25838463,5
+57501453,25838463,2
+sisiliya,25838463,3
+115128718,25838463,1
+47358102,25838463,3
+63531003,25838463,2
+49107356,25838463,3
+93856616,25838463,4
+oycl,25838463,3
+4501745,25838463,3
+62346407,25838463,4
+74550936,25838463,2
+btone0808,25838463,3
+50301048,25838463,4
+xellossking,25838463,3
+63393137,25838463,4
+15778860,25838463,2
+49048693,25838463,2
+Swangshu,25838463,3
+59967875,25838463,3
+emotion7,25838463,4
+woshixiaoyatou,25838463,3
+tjz230,25838463,3
+WakeUpDead,25838463,3
+75605847,25838463,3
+73705875,25838463,3
+36360632,25838463,2
+73335242,25838463,3
+42912613,25838463,4
+68621390,25838463,4
+yuuka0765,25838463,4
+63107787,25838463,3
+susimai,25838463,2
+43494568,25838463,-1
+129689166,25838463,5
+thesharing,25838463,4
+99550697,25838463,2
+redrabbit,25838463,3
+115551507,25838463,3
+47882268,25838463,3
+annieshuo,25838463,3
+67437110,25838463,-1
+ashinkangkang,25838463,5
+nobodyhome,25838463,1
+4675447,25838463,4
+49635484,25838463,1
+125691923,25838463,4
+yzone,25838463,4
+zhqi11,25838463,2
+55800838,25838463,3
+51061132,25838463,3
+yzr8979,25838463,2
+125064631,25838463,2
+90217144,25838463,4
+siwachan,25838463,-1
+hanlu219,25838463,5
+113966573,25838463,3
+sueneko,25838463,4
+edisonme,25838463,3
+92775477,25838463,3
+83497810,25838463,-1
+1423262,25838463,3
+uranus_taotao,25838463,3
+VampirX,25838463,3
+49301222,25838463,3
+13713408,25838463,4
+58112867,25838463,4
+74742803,25838463,3
+Showanoyume,25838463,4
+jaltahiti,25838463,3
+37146663,25838463,1
+85104639,25838463,3
+www0221,25838463,4
+36982718,25838463,4
+130024032,25838463,4
+3234538,25838463,3
+Malivoni,25838463,3
+IMINCR,25838463,-1
+52990147,25838463,1
+133380603,25838463,3
+3582010,25838463,4
+130474636,25838463,3
+65738414,25838463,3
+majide,25838463,3
+62480013,25838463,3
+81159938,25838463,3
+zaozao928,25838463,3
+51277324,25838463,2
+71740215,25838463,2
+cuisandy,25838463,3
+51786034,25838463,3
+99329704,25838463,2
+59361957,25838463,3
+36825112,25838463,4
+134131182,25838463,3
+61282149,25838463,1
+75569999,25838463,4
+languheshang,25838463,2
+2144442,25838463,3
+70630808,25838463,3
+2233781,25838463,2
+WXFAN,25838463,3
+64708561,25838463,3
+123516848,25838463,5
+2586114,25838463,3
+hawkingwang,25838463,3
+4800478,25838463,3
+Gordoncoco,25838463,3
+3608735,25838463,3
+renminling,25838463,4
+51577920,25838463,4
+ys1013,25838463,2
+120066819,25838463,1
+joyfish0912,25838463,3
+30517667,25838463,2
+58674331,25838463,3
+lostoldboy,25838463,2
+49319979,25838463,3
+57088096,25838463,2
+50644881,25838463,2
+84915183,25838463,5
+76261616,25838463,4
+70255132,25838463,3
+2174521,25838463,2
+ile,25838463,2
+xiaopin19,25838463,2
+hey_m1loca_,25838463,5
+2772729,25838463,3
+55866534,25838463,1
+34851656,25838463,3
+96009356,25838463,3
+59029832,25838463,3
+123940380,25838463,4
+kururuken,25838463,4
+70873982,25838463,1
+2655191,25838463,4
+41674321,25838463,3
+53768020,25838463,4
+48942866,25838463,5
+celia550,25838463,5
+47172452,25838463,2
+2889153,25838463,4
+132959097,25838463,3
+zkxloveytt,25838463,3
+61816824,25838463,3
+shadowalker,25838463,3
+wallaceLee,25838463,1
+8257883,25838463,2
+45944952,25838463,2
+rongki,25838463,4
+90695987,25838463,4
+133609434,25838463,4
+73901440,25838463,3
+63033488,25838463,4
+graygem,25838463,4
+41403989,25838463,4
+fiona_rocku,25838463,3
+47026915,25838463,5
+43050742,25838463,2
+60858827,25838463,4
+49041999,25838463,3
+35029280,25838463,2
+52129512,25838463,3
+raynawen,25838463,3
+134983577,25838463,2
+yokotang,25838463,4
+1144905,25838463,3
+sizuka3n,25838463,5
+26860515,25838463,4
+dearjan,25838463,5
+jinneewang,25838463,2
+chidaoshu,25838463,3
+67774999,25838463,2
+108243039,25838463,2
+64882417,25838463,4
+83717387,25838463,4
+56049570,25838463,5
+64816700,25838463,3
+63454673,25838463,4
+66267433,25838463,2
+gstone1723,25838463,3
+1275109,25838463,3
+64287168,25838463,3
+2615650,25838463,4
+46891374,25838463,1
+82978093,25838463,3
+paranoidtomato,25838463,5
+1169348,25838463,2
+3815024,25838463,-1
+bestkfx,25838463,5
+39747577,25838463,4
+2961232,25838463,3
+Sillygril,25838463,3
+yoicy,25838463,3
+73034014,25838463,5
+129283684,25838463,4
+97075618,25838463,4
+shxhkun,25838463,2
+w_weixing,25838463,2
+59997515,25838463,3
+wangfei,25838463,1
+crea,25838463,1
+ceciliayiyi,25838463,4
+63569379,25838463,3
+133161561,25838463,5
+49090392,25838463,3
+58903343,25838463,3
+CJAP,25838463,3
+chloe6668,25838463,3
+ataiii,25838463,5
+tildali1214,25838463,3
+44225219,25838463,3
+21834685,25838463,4
+daisylau,25838463,3
+121247615,25838463,5
+69016984,25838463,2
+60980785,25838463,3
+130648005,25838463,3
+57964940,25838463,4
+58133063,25838463,4
+shoufy,25838463,3
+xiaochan83,25838463,5
+60354573,25838463,4
+xzw1407,25838463,4
+58901658,25838463,3
+133254262,25838463,3
+46121551,25838463,3
+102484426,25838463,4
+2339752,25838463,4
+36499503,25838463,2
+61703830,25838463,4
+61449100,25838463,2
+69822507,25838463,1
+bikibiki,25838463,5
+drawblue,25838463,3
+feelnothing,25838463,3
+luoyiyu,25838463,3
+56414016,25838463,4
+summerose,25838463,4
+2189211,25838463,3
+127071890,25838463,3
+moonwater,25838463,3
+Lotosschnee,25838463,3
+4357598,25838463,3
+83391483,25838463,4
+78127436,25838463,3
+youziyiyang,25838463,3
+59465835,25838463,2
+67876533,25838463,3
+sevendream129,25838463,4
+lcisco,25838463,3
+43664862,25838463,3
+62476289,25838463,3
+46720194,25838463,3
+38924619,25838463,2
+lizzy2005,25838463,3
+48421988,25838463,4
+geovana,25838463,2
+68968781,25838463,3
+55487659,25838463,4
+3852753,25838463,3
+dayandnights,25838463,2
+zajm,25838463,3
+61235459,25838463,3
+11054187,25838463,3
+moshanghu,25838463,3
+120784937,25838463,4
+79840078,25838463,3
+3180760,25838463,3
+duanxiu,25838463,1
+74011152,25838463,5
+63097689,25838463,4
+40241060,25838463,3
+4542640,25838463,4
+46359852,25838463,3
+46066530,25838463,4
+130461977,25838463,3
+61984344,25838463,3
+77288583,25838463,4
+81729720,25838463,4
+SIFE,25838463,2
+xslidian,25838463,3
+50212998,25838463,3
+43345158,25838463,4
+42636733,25838463,5
+xjrwjh,25838463,3
+Dx-cai,25838463,1
+noenough,25838463,1
+genlegen,25838463,4
+mypeterpan,25838463,3
+87603831,25838463,4
+67285298,25838463,3
+49133007,25838463,3
+38324807,25838463,3
+lunaa,25838463,3
+50017356,25838463,3
+40241549,25838463,2
+3791482,25838463,3
+53058729,25838463,2
+48679133,25838463,3
+69585394,25838463,5
+130391371,25838463,3
+79170497,25838463,4
+53507443,25838463,4
+4318344,25838463,3
+45020999,25838463,4
+106176250,25838463,5
+66103395,25838463,2
+62705115,25838463,2
+65108877,25838463,3
+jennychang,25838463,3
+50222908,25838463,4
+yufei707,25838463,2
+qianqianfei,25838463,3
+64926839,25838463,3
+57311033,25838463,3
+48892199,25838463,3
+braquentin,25838463,2
+89480416,25838463,3
+aircrow,25838463,3
+together1018,25838463,2
+49804217,25838463,3
+68085632,25838463,4
+62086431,25838463,4
+blackcatzh,25838463,3
+134937215,25838463,4
+tegs,25838463,3
+daniel_gao,25838463,3
+wqlotus,25838463,4
+3438238,25838463,3
+81611618,25838463,2
+70039420,25838463,5
+ivyuan,25838463,3
+1308850,25838463,3
+yui0102,25838463,2
+4738444,25838463,3
+78819457,25838463,2
+76818492,25838463,3
+32561363,25838463,3
+42962790,25838463,3
+36355185,25838463,1
+122273764,25838463,2
+aaaai,25838463,3
+1736294,25838463,3
+tt2792654,25838463,3
+Dakota_,25838463,3
+zhou33,25838463,3
+44724487,25838463,2
+44303270,25838463,4
+yoyospace,25838463,2
+67351514,25838463,5
+133916826,25838463,3
+kejinlong,25838463,2
+88382820,25838463,2
+tanhuiwendy,25838463,3
+59604055,25838463,2
+liyinqi,25838463,5
+luke89,25838463,4
+Easter77,25838463,3
+aless13,25838463,3
+Roguet,25838463,5
+78619194,25838463,3
+tt1426,25838463,4
+gabrielle.li,25838463,3
+huxiaotian,25838463,3
+68160177,25838463,3
+63777506,25838463,4
+Ray_u,25838463,4
+manmandemange,25838463,3
+129548672,25838463,4
+20819315,25838463,5
+57354984,25838463,2
+75855875,25838463,2
+misstorlii,25838463,3
+misstorlii,25838463,3
+julynan,25838463,3
+56364233,25838463,4
+82583986,25838463,2
+51081852,25838463,-1
+ran3233,25838463,3
+102658217,25838463,2
+yan6,25838463,3
+132216519,25838463,4
+42144339,25838463,-1
+103807559,25838463,3
+131947965,25838463,4
+69939429,25838463,3
+jervis1012,25838463,3
+29024580,25838463,2
+63093856,25838463,5
+bluetracy0113,25838463,4
+53323361,25838463,4
+libertyer,25838463,4
+60080171,25838463,3
+71863067,25838463,3
+43429533,25838463,3
+lloopkw,25838463,3
+52392093,25838463,2
+72828410,25838463,3
+sunzeya,25838463,3
+miss_coffee,25838463,3
+68145483,25838463,4
+55998424,25838463,4
+huihuiai1314,25838463,4
+76602042,25838463,5
+4232580,25838463,3
+52025804,25838463,4
+120425760,25838463,3
+132082727,25838463,4
+disheron,25838463,3
+flywingsy,25838463,4
+crony09,25838463,4
+RaphaelDom,25838463,-1
+vivizhang,25838463,3
+108705565,25838463,2
+aibamoe,25838463,3
+67875277,25838463,4
+26534687,25838463,3
+kangshuying,25838463,3
+57880931,25838463,4
+85191711,25838463,4
+112114589,25838463,5
+treasures_dd,25838463,-1
+2320667,25838463,4
+75271278,25838463,3
+maggiore,25838463,4
+SvenTuen,25838463,5
+121044112,25838463,3
+hasyan,25838463,3
+wood008,25838463,3
+SkyGrain,25838463,3
+Javian,25838463,3
+Articuno,25838463,1
+46137946,25838463,4
+pikoor,25838463,3
+65721466,25838463,2
+fare-pussy,25838463,3
+54231509,25838463,3
+58260712,25838463,4
+DSFTEM_TANG,25838463,4
+134888389,25838463,3
+wokson,25838463,3
+53466167,25838463,4
+zhangying0913,25838463,2
+61104459,25838463,2
+48853437,25838463,5
+37693865,25838463,5
+34864713,25838463,3
+Monica007,25838463,5
+133074819,25838463,1
+45137335,25838463,3
+132585780,25838463,4
+129273075,25838463,5
+wowtim,25838463,4
+24678754,25838463,4
+hxiaoyang,25838463,3
+baby-giG,25838463,4
+67781678,25838463,3
+zivee-1uo,25838463,4
+38952175,25838463,4
+48118281,25838463,4
+3835994,25838463,3
+bluesorry,25838463,4
+k-blog,25838463,4
+86705212,25838463,5
+131680692,25838463,4
+46427546,25838463,4
+mercuryleehom,25838463,3
+134180658,25838463,3
+83401102,25838463,3
+70671271,25838463,5
+sanrio1992,25838463,5
+63606216,25838463,3
+64266034,25838463,4
+57578844,25838463,3
+aiwangyue,25838463,3
+4842718,25838463,3
+qiangqiangzhang,25838463,3
+124841480,25838463,2
+qingjuesikong,25838463,4
+67605510,25838463,3
+little_MOMO,25838463,4
+80880920,25838463,2
+yanleung1102,25838463,2
+116036519,25838463,2
+sweetrain0229,25838463,5
+shuang331,25838463,3
+76373102,25838463,3
+56666765,25838463,5
+103291886,25838463,4
+4422335,25838463,3
+127932340,25838463,4
+28530130,25838463,2
+50335163,25838463,-1
+yuwenzhilian,25838463,4
+56388358,25838463,5
+zhangluning,25838463,3
+3054506,25838463,2
+131189459,25838463,3
+48604788,25838463,5
+aukry,25838463,2
+47022625,25838463,4
+72549209,25838463,3
+Zhpher,25838463,4
+51060145,25838463,3
+zhangyunji,25838463,3
+68971338,25838463,3
+4165611,25838463,3
+huangxie,25838463,4
+134013208,25838463,1
+28029502,25838463,3
+3382542,25838463,4
+51628420,25838463,3
+45540102,25838463,3
+heck,25838463,2
+53017810,25838463,4
+nbyidao,25838463,4
+fishzero,25838463,2
+1308821,25838463,3
+66580589,25838463,3
+62153703,25838463,5
+52273132,25838463,4
+zzjackonline,25838463,2
+xianlovezhi,25838463,3
+87574770,25838463,3
+Sapporo,25838463,1
+47602699,25838463,3
+dearmeng,25838463,3
+66290511,25838463,3
+32995807,25838463,2
+2320060,25838463,2
+84019906,25838463,5
+2195388,25838463,3
+4656826,25838463,4
+125053842,25838463,2
+wangshiqian1024,25838463,3
+35183435,25838463,5
+48823348,25838463,4
+mushroom198812,25838463,4
+lq_lemon,25838463,-1
+33969609,25838463,3
+Kumiko_Tan,25838463,5
+snooppi,25838463,3
+42036980,25838463,3
+3313195,25838463,2
+52101882,25838463,4
+3063479,25838463,3
+90556805,25838463,5
+59944601,25838463,4
+joephie,25838463,-1
+65084443,25838463,4
+122869293,25838463,3
+Just_So_So,25838463,3
+ZXL29011076,25838463,3
+ZXL29011076,25838463,3
+131587002,25838463,4
+1794910,25838463,2
+15789389,25838463,1
+lymh,25838463,2
+13636828,25838463,3
+46338692,25838463,3
+royin.chao,25838463,2
+77213278,25838463,4
+fsivyneof4,25838463,4
+4223889,25838463,1
+63819525,25838463,3
+suitxiv,25838463,3
+68401259,25838463,2
+42221402,25838463,2
+121618912,25838463,4
+53431737,25838463,3
+41595553,25838463,3
+68767704,25838463,3
+54158519,25838463,4
+54158519,25838463,4
+100236370,25838463,3
+dearing,25838463,4
+K531678326,25838463,3
+64429364,25838463,3
+69616241,25838463,3
+47507946,25838463,4
+72970549,25838463,3
+liyuanli0824,25838463,4
+4525795,25838463,3
+2747271,25838463,3
+siyedesiye,25838463,4
+Echo_castle,25838463,4
+47418045,25838463,3
+52679855,25838463,4
+huang.jr,25838463,2
+a326715,25838463,3
+50226054,25838463,4
+Guan-Er-,25838463,5
+4716984,25838463,2
+thriller32,25838463,3
+arriey,25838463,3
+btcatsun,25838463,3
+87602683,25838463,3
+Lurethal,25838463,4
+37922395,25838463,3
+49282329,25838463,3
+sho2mon4e4y,25838463,4
+57217044,25838463,3
+3914860,25838463,3
+63766149,25838463,4
+Lisa.L,25838463,3
+49195936,25838463,5
+Jake52592,25838463,4
+ReyC,25838463,3
+61858967,25838463,3
+45819377,25838463,1
+30714456,25838463,4
+dinajiang,25838463,3
+62831329,25838463,3
+52536969,25838463,4
+97364834,25838463,4
+130945059,25838463,3
+57209076,25838463,3
+51126215,25838463,3
+82980188,25838463,2
+53255772,25838463,3
+lummyboyla,25838463,2
+56553588,25838463,3
+49721809,25838463,2
+49278748,25838463,4
+17797747,25838463,3
+122259735,25838463,4
+gray_dust,25838463,3
+117808839,25838463,2
+Hsummer,25838463,-1
+121569917,25838463,2
+69842524,25838463,3
+28460777,25838463,2
+starHSE,25838463,3
+starHSE,25838463,3
+76857499,25838463,4
+Isabella0712,25838463,3
+120043182,25838463,4
+themoonforgets,25838463,3
+sundea,25838463,1
+64179222,25838463,3
+smilingfishl,25838463,3
+Akashi_yan,25838463,4
+bobogaga,25838463,3
+43393053,25838463,3
+1205451,25838463,5
+49866554,25838463,3
+133398715,25838463,1
+96804163,25838463,4
+goace,25838463,5
+75434556,25838463,3
+126857138,25838463,3
+85002998,25838463,2
+65645276,25838463,4
+44034563,25838463,4
+ywyjennifer,25838463,3
+spiro,25838463,4
+2310497,25838463,2
+54533341,25838463,4
+summer_waiting,25838463,4
+cherryhj,25838463,2
+71133348,25838463,1
+wendyfield,25838463,3
+seamouse,25838463,5
+qingfengpushang,25838463,3
+78508432,25838463,3
+63981568,25838463,4
+31600047,25838463,4
+54998421,25838463,3
+88780244,25838463,3
+92697402,25838463,4
+hubin,25838463,3
+83343779,25838463,4
+132985387,25838463,4
+1884591,25838463,3
+2721249,25838463,3
+42663693,25838463,5
+61165885,25838463,3
+javey386,25838463,4
+2118444,25838463,3
+4231858,25838463,4
+wjww2128,25838463,4
+catherinehom,25838463,5
+63071400,25838463,2
+13643786,25838463,3
+sonofsam,25838463,3
+nshen121,25838463,4
+kakasissi,25838463,4
+Angel.Sun,25838463,3
+happysadop,25838463,4
+FILANIEYOTE,25838463,2
+negoning,25838463,3
+kuroneko2002,25838463,3
+sun.kids,25838463,4
+sun.kids,25838463,4
+fancy8612,25838463,3
+sysop,25838463,4
+a529105502,25838463,4
+52958278,25838463,3
+129214543,25838463,3
+60166916,25838463,4
+3774014,25838463,5
+ily98426,25838463,4
+vivianya,25838463,2
+54896584,25838463,5
+hippowitz,25838463,3
+59822585,25838463,4
+48958931,25838463,3
+121930638,25838463,3
+meganmoon,25838463,2
+68606759,25838463,3
+66726580,25838463,3
+ukimuknow,25838463,3
+alianhei,25838463,4
+yukidelei,25838463,3
+120530215,25838463,3
+132328783,25838463,-1
+lahmiro,25838463,3
+morvin,25838463,3
+onlyburger,25838463,3
+87431056,25838463,5
+57132937,25838463,3
+60211181,25838463,2
+shoutdogg,25838463,5
+yusanlv,25838463,4
+103811016,25838463,5
+estabon,25838463,-1
+45088175,25838463,3
+8872886,25838463,3
+60082328,25838463,4
+1264144,25838463,3
+4349474,25838463,3
+84303160,25838463,2
+83360787,25838463,3
+62688277,25838463,3
+98165549,25838463,3
+ALee301302,25838463,2
+2286926,25838463,3
+shallwe07,25838463,3
+55410872,25838463,3
+55628165,25838463,3
+flydonkey,25838463,2
+27643874,25838463,3
+ring_ring,25838463,4
+landy0514,25838463,3
+4605744,25838463,3
+vickkid,25838463,3
+52750268,25838463,4
+thesillyone,25838463,5
+62932403,25838463,3
+coconutZii,25838463,4
+tanronghong,25838463,2
+92480023,25838463,5
+banyinxie,25838463,3
+60818460,25838463,1
+50418082,25838463,3
+lly950412,25838463,2
+37785613,25838463,3
+Hello-Momoko,25838463,4
+4745004,25838463,-1
+81654169,25838463,5
+34161257,25838463,3
+aarcher,25838463,3
+62798977,25838463,3
+45250315,25838463,2
+133382870,25838463,4
+51083261,25838463,3
+EggPlant629,25838463,3
+roseandwater,25838463,5
+46912803,25838463,3
+55466404,25838463,3
+supermyhero,25838463,3
+71585704,25838463,4
+63099220,25838463,3
+52893055,25838463,2
+115793590,25838463,5
+soffie,25838463,3
+easonlau,25838463,3
+87906259,25838463,2
+socalledgin,25838463,4
+54410446,25838463,4
+69616363,25838463,4
+xialehe,25838463,-1
+adamhu,25838463,4
+63717089,25838463,3
+102413399,25838463,4
+aprilpear,25838463,3
+62880392,25838463,4
+37574982,25838463,2
+1655091,25838463,3
+haidaisisi,25838463,-1
+50094357,25838463,2
+50588044,25838463,4
+75219384,25838463,4
+NEONGirl,25838463,4
+118176177,25838463,4
+omniwillpotent,25838463,2
+suxiaopo,25838463,1
+56085825,25838463,5
+51057131,25838463,2
+67955955,25838463,3
+59244982,25838463,3
+summer000000,25838463,3
+lazygalaxy,25838463,2
+IchBinHerrMAO,25838463,3
+wakaka1986,25838463,3
+ayaya88,25838463,4
+PranChen,25838463,5
+121194917,25838463,5
+unakao,25838463,5
+Midoriccc,25838463,4
+1556266,25838463,2
+64926044,25838463,3
+65086127,25838463,3
+Lefien,25838463,3
+4518731,25838463,3
+36735477,25838463,5
+fbndragona,25838463,5
+55386181,25838463,2
+50577348,25838463,2
+jurijiangmm,25838463,2
+43671403,25838463,4
+miketseng,25838463,3
+47310524,25838463,3
+zhentms,25838463,-1
+49206550,25838463,5
+kinobear,25838463,4
+Hey_825,25838463,4
+duoluowenren,25838463,2
+84892114,25838463,5
+anyuancat,25838463,3
+Mignonette-W,25838463,3
+58474530,25838463,3
+65027660,25838463,3
+RaphaelDeng,25838463,4
+ky_linChen,25838463,3
+46943216,25838463,4
+copy6,25838463,2
+abysselysion,25838463,2
+29839643,25838463,4
+congshuli,25838463,2
+young-lazy,25838463,5
+16040985,25838463,5
+54339602,25838463,3
+Microka,25838463,3
+92707476,25838463,3
+31978586,25838463,3
+41543402,25838463,4
+72317166,25838463,1
+monicsolomon,25838463,3
+cherry_lee,25838463,3
+karupisu,25838463,4
+rienge,25838463,4
+54848736,25838463,4
+62089597,25838463,2
+91361689,25838463,4
+4633084,25838463,4
+skyray,25838463,3
+meilingmj,25838463,3
+55608107,25838463,3
+Loreley333,25838463,4
+45194143,25838463,2
+FayVan,25838463,2
+28628487,25838463,2
+javy,25838463,5
+127515076,25838463,5
+61312900,25838463,3
+5466368,25838463,3
+wumingzaish,25838463,4
+133141228,25838463,3
+49751665,25838463,4
+1227418,25838463,3
+raizzt,25838463,4
+50065768,25838463,3
+61366288,25838463,3
+64003394,25838463,3
+zoewen1984,25838463,3
+lanlande,25838463,4
+1536142,25838463,2
+coolgun,25838463,1
+54764633,25838463,3
+akanishi_0704,25838463,4
+theasir,25838463,3
+daisy702,25838463,4
+66824818,25838463,2
+62578070,25838463,2
+128937113,25838463,1
+zihaozai0407,25838463,3
+73349181,25838463,3
+58195982,25838463,3
+tongyc8844,25838463,3
+59237362,25838463,2
+MK9294,25838463,4
+lovinggarfield,25838463,3
+ZotterElaine,25838463,4
+62972938,25838463,1
+smilehuhu,25838463,4
+1757021,25838463,2
+68091356,25838463,3
+58373774,25838463,4
+93240060,25838463,5
+8240576,25838463,-1
+REALEYE,25838463,3
+39789288,25838463,4
+66987875,25838463,1
+helenghosny,25838463,5
+yunduan6,25838463,5
+64707906,25838463,2
+134306404,25838463,2
+roger589,25838463,3
+56458792,25838463,2
+2370392,25838463,4
+JTG,25838463,3
+yuuto,25838463,4
+phoenixfannie,25838463,3
+98379378,25838463,3
+1520336,25838463,4
+58625918,25838463,3
+95313700,25838463,4
+cuixuelei,25838463,3
+54588486,25838463,2
+babyroll,25838463,4
+killrec,25838463,3
+58934879,25838463,3
+renmeng,25838463,3
+56193837,25838463,3
+2550503,25838463,4
+1346719,25838463,2
+58580022,25838463,5
+2256967,25838463,3
+53482752,25838463,3
+Ziya,25838463,2
+dongdayeah,25838463,4
+65360552,25838463,1
+3565376,25838463,3
+2846758,25838463,4
+floraalma,25838463,3
+59774310,25838463,4
+ArsenalCH,25838463,2
+hey00,25838463,4
+4485928,25838463,3
+tricky_V,25838463,1
+jiongmimi,25838463,3
+ilu4u,25838463,5
+97304737,25838463,4
+songjia0227,25838463,3
+134574178,25838463,2
+im-zhuang,25838463,-1
+55802778,25838463,3
+35565374,25838463,5
+kiss_lavender,25838463,4
+44880621,25838463,3
+54506898,25838463,2
+97517593,25838463,3
+97011307,25838463,4
+lushrene,25838463,3
+48253364,25838463,3
+withshane,25838463,3
+66779947,25838463,4
+44367163,25838463,1
+4260903,25838463,3
+4890522,25838463,2
+42657229,25838463,3
+2456676,25838463,3
+54783024,25838463,3
+43326904,25838463,5
+80039937,25838463,3
+3589399,25838463,4
+50269699,25838463,4
+kangecho,25838463,3
+34058654,25838463,2
+58550778,25838463,2
+49079570,25838463,2
+62182604,25838463,4
+Lelio090101,25838463,3
+52244645,25838463,3
+sui_1130,25838463,4
+ichigogogo,25838463,3
+130370822,25838463,4
+47462245,25838463,4
+1926472,25838463,2
+90462809,25838463,3
+58207796,25838463,2
+zhanghr,25838463,5
+EBO,25838463,4
+zizon,25838463,4
+114567490,25838463,5
+m2cky,25838463,3
+27028067,25838463,-1
+41583177,25838463,4
+54806083,25838463,3
+46145669,25838463,3
+salonman,25838463,3
+JEWELzxx,25838463,3
+51199402,25838463,3
+45107933,25838463,2
+1609757,25838463,2
+uniking,25838463,3
+94324210,25838463,3
+ween339,25838463,4
+lrc940928,25838463,3
+59314175,25838463,1
+Lapel,25838463,4
+131013584,25838463,2
+carolgogo,25838463,4
+bolijiao,25838463,3
+33512208,25838463,-1
+QQY,25838463,3
+84530034,25838463,2
+35516602,25838463,3
+deany,25838463,3
+60786536,25838463,2
+53743879,25838463,1
+45256525,25838463,5
+26318012,25838463,2
+52146606,25838463,3
+fikichow,25838463,4
+3603410,25838463,5
+49544235,25838463,1
+109038183,25838463,5
+harryuharryu,25838463,1
+3621260,25838463,4
+45311964,25838463,3
+cyyzzz,25838463,3
+4247204,25838463,2
+58670685,25838463,3
+60187036,25838463,3
+60787717,25838463,2
+58587564,25838463,4
+67011634,25838463,2
+82849854,25838463,4
+61718820,25838463,-1
+3917363,25838463,4
+35350032,25838463,3
+49891918,25838463,5
+91358615,25838463,2
+33245540,25838463,3
+49196106,25838463,2
+72745150,25838463,3
+62522931,25838463,4
+flawless,25838463,3
+45725575,25838463,2
+84343760,25838463,4
+pws2008,25838463,3
+132806311,25838463,5
+kiki204629,25838463,3
+far_away,25838463,4
+shamandandelion,25838463,5
+jashia,25838463,3
+58063696,25838463,4
+4841197,25838463,2
+the_catcher,25838463,1
+ReyRab,25838463,4
+52023052,25838463,3
+67848471,25838463,5
+Fanxia,25838463,2
+63924842,25838463,3
+sunlightsilent,25838463,3
+53829658,25838463,3
+62013379,25838463,2
+47361556,25838463,2
+46266194,25838463,3
+59165099,25838463,3
+zeoh,25838463,3
+46430154,25838463,3
+yolanda0416,25838463,3
+37150686,25838463,4
+70162907,25838463,2
+xumingzhen,25838463,4
+2601089,25838463,2
+solokimi,25838463,2
+49749063,25838463,5
+a1234567,25838463,3
+88789846,25838463,3
+Cricketsong,25838463,3
+JulyTang,25838463,4
+crab56,25838463,5
+4650728,25838463,3
+62489520,25838463,3
+Ces7,25838463,3
+ashengr,25838463,1
+eugne,25838463,4
+yekui,25838463,3
+lingqingchun,25838463,-1
+lzannie823,25838463,3
+36822469,25838463,4
+impossible_ww,25838463,3
+ameliefei,25838463,3
+50414826,25838463,2
+89565628,25838463,3
+67910969,25838463,5
+49148901,25838463,3
+67232894,25838463,3
+TaTaxxxx,25838463,4
+109572191,25838463,3
+48507146,25838463,3
+mimizang,25838463,4
+132714507,25838463,3
+sirs,25838463,4
+53173397,25838463,3
+88922357,25838463,4
+edonsuffinos,25838463,4
+53024139,25838463,4
+66869185,25838463,5
+ryec,25838463,1
+55625887,25838463,5
+55755674,25838463,4
+71450042,25838463,3
+3501784,25838463,1
+6440487,25838463,4
+2327858,25838463,4
+ruudfu,25838463,2
+moonx,25838463,2
+asoma,25838463,4
+maolu,25838463,2
+4014339,25838463,4
+14042957,25838463,4
+BackToNight,25838463,2
+56430530,25838463,3
+53893192,25838463,3
+27008930,25838463,3
+47515047,25838463,4
+102126440,25838463,3
+74244754,25838463,3
+77451005,25838463,5
+jean4you,25838463,3
+57820083,25838463,3
+lastunicorn,25838463,3
+78824064,25838463,3
+57720008,25838463,4
+shmilykz,25838463,3
+lizhiqiang127,25838463,4
+66711391,25838463,4
+58079597,25838463,4
+100234092,25838463,5
+131293570,25838463,4
+rechyo,25838463,4
+3192663,25838463,3
+Madaotaku,25838463,4
+joyotone,25838463,4
+78410323,25838463,2
+1504581,25838463,3
+58067641,25838463,3
+44996808,25838463,3
+63192896,25838463,4
+la-mer,25838463,2
+miraclegd,25838463,3
+BUZZSHUNJES,25838463,3
+46035799,25838463,2
+130888784,25838463,3
+houmuchiloveyou,25838463,3
+Rainbowww,25838463,3
+Shiely,25838463,3
+65623605,25838463,4
+9172847,25838463,4
+41776399,25838463,3
+46692711,25838463,2
+sungmaki,25838463,4
+eddy_charlie,25838463,3
+feng166439,25838463,4
+sakura9686,25838463,4
+66838621,25838463,1
+frankfankai,25838463,4
+1247796,25838463,3
+zhuzi_33,25838463,4
+52140378,25838463,4
+sonicxs,25838463,4
+xiaoshi0212,25838463,3
+50047548,25838463,-1
+127330626,25838463,3
+m2529,25838463,2
+leafxiaoying,25838463,1
+danielpaolod,25838463,3
+51883093,25838463,4
+xiaobai096,25838463,2
+kweer,25838463,4
+idlelz,25838463,3
+tongshang,25838463,4
+72588392,25838463,5
+99329587,25838463,2
+yoghurtnn,25838463,3
+caesarphoenix,25838463,2
+85516664,25838463,2
+58165479,25838463,4
+wulebuzuo,25838463,1
+azizi,25838463,4
+OnePiece0505,25838463,3
+Pallas_Athena,25838463,3
+20885358,25838463,5
+130875614,25838463,4
+53317988,25838463,1
+gavinturkey,25838463,3
+71188390,25838463,4
+2511809,25838463,5
+54191288,25838463,4
+wylwddjz,25838463,3
+63167875,25838463,3
+54385496,25838463,3
+56890476,25838463,3
+78475246,25838463,5
+60140602,25838463,3
+52456948,25838463,3
+Real-One,25838463,3
+79503433,25838463,4
+Nicolelingji,25838463,3
+2561289,25838463,2
+wendyhsu,25838463,3
+kinbery,25838463,3
+59380890,25838463,4
+gushenshen,25838463,3
+Vanessa.,25838463,2
+66719737,25838463,2
+60166330,25838463,2
+53560863,25838463,4
+62079416,25838463,4
+7549744,25838463,5
+131713125,25838463,2
+116718171,25838463,2
+52087447,25838463,2
+57786267,25838463,3
+66688383,25838463,-1
+45312368,25838463,2
+njlhwx,25838463,4
+4195703,25838463,4
+Cccc4_,25838463,3
+54265487,25838463,3
+38191056,25838463,4
+21927784,25838463,3
+87867332,25838463,2
+66875274,25838463,3
+whitelavender,25838463,5
+123739111,25838463,3
+yujingfenglove,25838463,4
+RightFromWrong,25838463,3
+2206999,25838463,2
+idiotxu,25838463,3
+86807524,25838463,4
+28079955,25838463,3
+49269031,25838463,2
+3690205,25838463,2
+80126415,25838463,5
+47183487,25838463,4
+36847672,25838463,4
+57293187,25838463,4
+54038667,25838463,4
+45749483,25838463,3
+39956390,25838463,3
+dtreer,25838463,2
+76777443,25838463,3
+aikki27,25838463,-1
+2404315,25838463,4
+44708171,25838463,3
+verylolicon,25838463,4
+yelia926,25838463,4
+53536011,25838463,4
+116538943,25838463,3
+134500343,25838463,3
+tinylong,25838463,3
+leexiaoxiao,25838463,2
+xiaoJay,25838463,4
+67619742,25838463,3
+94254038,25838463,2
+53256209,25838463,4
+lotusworld,25838463,3
+17549723,25838463,3
+52762831,25838463,3
+109102443,25838463,5
+7768202,25838463,4
+wangjijuzi,25838463,4
+52153576,25838463,3
+4481826,25838463,2
+45753459,25838463,3
+88213659,25838463,4
+toda0607,25838463,3
+silverstro,25838463,-1
+3382037,25838463,5
+5750489,25838463,2
+50978224,25838463,5
+37268394,25838463,3
+32566689,25838463,4
+cain69,25838463,3
+39611534,25838463,2
+73863026,25838463,3
+10750432,25838463,5
+lotusjunepp,25838463,3
+91653104,25838463,2
+44349376,25838463,4
+cmandie,25838463,3
+23612143,25838463,2
+alefmugen,25838463,3
+67677954,25838463,3
+65977866,25838463,4
+64005388,25838463,3
+47959588,25838463,4
+saac,25838463,2
+1353605,25838463,4
+xueyuno1,25838463,-1
+16531942,25838463,5
+13262103,25838463,3
+57297847,25838463,3
+119833132,25838463,4
+41522528,25838463,3
+2991905,25838463,1
+45099103,25838463,3
+48615299,25838463,3
+41177087,25838463,5
+35742329,25838463,3
+tenaciousdragon,25838463,3
+102806375,25838463,3
+sunshinetoo,25838463,1
+shenxuzhu,25838463,3
+72101886,25838463,5
+Daryl,25838463,1
+silencewong,25838463,2
+47289557,25838463,1
+yqdz,25838463,5
+51777015,25838463,4
+souring,25838463,2
+46057903,25838463,5
+yemiaoxihuan,25838463,3
+70222675,25838463,1
+82929649,25838463,4
+damnm,25838463,3
+63041714,25838463,4
+129549176,25838463,3
+ccinder,25838463,-1
+qihaoqiuchang,25838463,4
+kiara1988,25838463,3
+129599627,25838463,3
+cqmccb,25838463,4
+98914244,25838463,3
+zhuxiaoxuan,25838463,4
+48662310,25838463,3
+23154088,25838463,4
+48717761,25838463,2
+xjehan,25838463,3
+peridot,25838463,-1
+38811434,25838463,3
+119482459,25838463,3
+25621274,25838463,3
+6968778,25838463,2
+showmeet111,25838463,3
+43856464,25838463,2
+CMLcml6666667,25838463,5
+32541723,25838463,4
+4590058,25838463,5
+GL-LOLI,25838463,5
+32264752,25838463,2
+45733786,25838463,2
+dark_glede,25838463,3
+qfsongshuang,25838463,4
+63461045,25838463,3
+Pius,25838463,2
+wikimedia,25838463,4
+joesmine,25838463,5
+xiaoluozi,25838463,-1
+PoooZz,25838463,3
+f91_82,25838463,2
+61716367,25838463,3
+30108942,25838463,2
+47048376,25838463,4
+101905187,25838463,3
+lene1207,25838463,4
+sqxmy,25838463,4
+as_shmily,25838463,3
+1164662,25838463,4
+63417408,25838463,1
+SELVEN,25838463,3
+82690334,25838463,3
+47755264,25838463,5
+60053622,25838463,4
+76933799,25838463,2
+53988247,25838463,3
+44837247,25838463,4
+aatt,25838463,3
+36109432,25838463,3
+3975278,25838463,2
+no1like_u,25838463,5
+62134225,25838463,5
+songya247,25838463,4
+Vizkoko,25838463,3
+134312513,25838463,3
+110142217,25838463,4
+50139701,25838463,3
+127378719,25838463,3
+xiaoyuhen,25838463,3
+104823216,25838463,3
+nekozamurai,25838463,5
+98794202,25838463,3
+121892572,25838463,3
+93226079,25838463,3
+ceh19930603,25838463,2
+39857951,25838463,4
+42274147,25838463,3
+130699016,25838463,2
+wzdradon,25838463,3
+102621793,25838463,4
+yytaizi,25838463,4
+50620996,25838463,1
+74392239,25838463,3
+48634684,25838463,2
+53589909,25838463,3
+amberasharon,25838463,1
+89768114,25838463,3
+MusiCspace,25838463,4
+48792138,25838463,3
+120795158,25838463,3
+48167301,25838463,3
+JaneWangJ,25838463,3
+57561564,25838463,5
+2407582,25838463,4
+49554240,25838463,1
+49232801,25838463,2
+63326273,25838463,4
+2367544,25838463,2
+egeria1225,25838463,4
+4236071,25838463,3
+91388404,25838463,3
+corinnecnjp,25838463,4
+29755688,25838463,4
+54813786,25838463,4
+50437623,25838463,4
+102920786,25838463,3
+leonx818,25838463,3
+4079951,25838463,3
+59904940,25838463,3
+121806588,25838463,3
+2211361,25838463,2
+4324357,25838463,2
+51312051,25838463,-1
+seafans,25838463,3
+jasonliu0315,25838463,3
+60357094,25838463,2
+dingdangneko,25838463,5
+zayaza,25838463,3
+133978729,25838463,3
+shenhuxi,25838463,-1
+62658973,25838463,3
+83989454,25838463,4
+leecheng0208,25838463,3
+am2.5,25838463,3
+56074823,25838463,4
+131798159,25838463,5
+emilycou,25838463,4
+4380978,25838463,5
+zlqll,25838463,2
+lvy823823,25838463,2
+papa1968,25838463,2
+93161752,25838463,1
+36627775,25838463,-1
+21042861,25838463,1
+122054884,25838463,2
+Rottenmudpit,25838463,3
+134057557,25838463,3
+meisacc,25838463,3
+2834857,25838463,-1
+77644475,25838463,5
+soultaker,25838463,3
+zion12345,25838463,4
+129087038,25838463,4
+114275619,25838463,5
+113287715,25838463,3
+56655394,25838463,2
+fateV,25838463,4
+91063309,25838463,4
+28677254,25838463,3
+66269083,25838463,4
+4157643,25838463,2
+4602733,25838463,3
+gyql_h,25838463,4
+42360628,25838463,2
+78955356,25838463,4
+lbc21,25838463,4
+3093793,25838463,5
+56419266,25838463,4
+62968482,25838463,1
+luxiaoyan,25838463,4
+121131242,25838463,5
+49249930,25838463,1
+2240638,25838463,3
+56844373,25838463,4
+4618269,25838463,3
+81391880,25838463,2
+56936714,25838463,3
+64995430,25838463,3
+64041722,25838463,3
+dirkhysteria,25838463,4
+gambler801,25838463,4
+66405994,25838463,4
+twxpda,25838463,4
+86821204,25838463,4
+AlBiKlose,25838463,5
+3311212,25838463,2
+121131953,25838463,5
+tinyshmily,25838463,5
+kaye-mi,25838463,1
+taylorman,25838463,4
+87659880,25838463,5
+haidonsun,25838463,2
+25752889,25838463,3
+90767458,25838463,4
+upyougo,25838463,5
+52543100,25838463,-1
+xbegg,25838463,3
+gogogounclesam,25838463,5
+41805226,25838463,1
+1386311,25838463,2
+tinyvip,25838463,3
+47054813,25838463,4
+40593048,25838463,3
+medievaldream32,25838463,3
+48369698,25838463,1
+79419474,25838463,3
+q5240689,25838463,3
+laodao9527,25838463,3
+cooiky,25838463,-1
+3846319,25838463,3
+artistrylong,25838463,-1
+39879452,25838463,4
+Patrick_Kang,25838463,4
+51188157,25838463,4
+121351165,25838463,2
+1378705,25838463,3
+zhaimozi,25838463,3
+yumeki,25838463,3
+48846649,25838463,3
+61875293,25838463,2
+69441778,25838463,5
+119583854,25838463,4
+cris7ss,25838463,2
+Miralte,25838463,4
+saya0510,25838463,4
+29662178,25838463,4
+93224854,25838463,5
+93224854,25838463,5
+80239706,25838463,3
+71758766,25838463,2
+77118319,25838463,2
+44579499,25838463,3
+meow-3-,25838463,4
+2853442,25838463,5
+3717542,25838463,3
+creekseven,25838463,3
+13972691,25838463,4
+91808189,25838463,-1
+54341660,25838463,1
+niu513,25838463,-1
+feicai1nan,25838463,4
+54103480,25838463,2
+66015206,25838463,3
+63436872,25838463,1
+51482628,25838463,4
+banana77,25838463,3
+6455488,25838463,3
+mustafay,25838463,3
+125350437,25838463,3
+80943037,25838463,1
+62535973,25838463,3
+movie-liang,25838463,2
+50769743,25838463,3
+48238044,25838463,3
+1201937,25838463,2
+havethedream,25838463,3
+21338461,25838463,4
+worm.in.amber,25838463,5
+53908274,25838463,3
+45305916,25838463,4
+58428248,25838463,5
+56416276,25838463,5
+44471889,25838463,3
+121675172,25838463,4
+2322224,25838463,4
+Deepoxygen,25838463,5
+xiaoxiaose,25838463,2
+37250784,25838463,1
+42894246,25838463,3
+gailsylee,25838463,3
+1569342,25838463,3
+81042721,25838463,3
+87681382,25838463,-1
+68242891,25838463,4
+ren40631284,25838463,3
+Tuliatrust,25838463,5
+51422581,25838463,3
+69857353,25838463,4
+132333627,25838463,3
+Saggezza,25838463,4
+55479744,25838463,4
+53917736,25838463,2
+reika_scar,25838463,2
+Kenneth_mu,25838463,1
+36850965,25838463,2
+darling425,25838463,4
+82404312,25838463,3
+Sakura-feng,25838463,4
+Irma26,25838463,3
+t2yan,25838463,5
+4560479,25838463,3
+November_nie,25838463,2
+d.brown,25838463,2
+35477330,25838463,1
+131628245,25838463,3
+1137384,25838463,3
+37850023,25838463,3
+31673634,25838463,1
+58189352,25838463,3
+120459070,25838463,3
+45809263,25838463,4
+Free-cat,25838463,5
+myserendipity,25838463,3
+125198992,25838463,3
+53807437,25838463,3
+47363252,25838463,2
+muary,25838463,5
+2005299,25838463,4
+xiaohesophia,25838463,4
+66935122,25838463,5
+52932658,25838463,5
+grinch,25838463,3
+4163899,25838463,5
+132506140,25838463,4
+4593542,25838463,2
+3705182,25838463,3
+xiangkayi,25838463,2
+46218615,25838463,5
+makc,25838463,3
+52451378,25838463,3
+spx,25838463,3
+49856775,25838463,3
+2857621,25838463,-1
+48857179,25838463,3
+59695133,25838463,3
+62604002,25838463,4
+2590080,25838463,4
+8640305,25838463,3
+45508468,25838463,2
+1929758,25838463,2
+58283218,25838463,4
+31704533,25838463,3
+missneuf,25838463,2
+oasisercher,25838463,2
+128963320,25838463,2
+28448565,25838463,4
+Summer_passion,25838463,3
+52988218,25838463,4
+74463127,25838463,4
+65675536,25838463,4
+freakfreakfreak,25838463,5
+Waterity,25838463,3
+34246698,25838463,2
+FeiDiQiuShengWu,25838463,3
+yan7478,25838463,3
+43536991,25838463,4
+82229788,25838463,3
+huotian,25838463,4
+rockduan1987,25838463,5
+49408765,25838463,-1
+3689558,25838463,2
+4429031,25838463,4
+henhen7,25838463,5
+59262140,25838463,3
+Zy1017,25838463,1
+92017036,25838463,4
+122594677,25838463,4
+3619392,25838463,4
+rocdeng,25838463,3
+junlucy,25838463,3
+1414370,25838463,2
+hellomilky,25838463,3
+2614716,25838463,2
+52876797,25838463,4
+2912846,25838463,5
+3246025,25838463,3
+76999200,25838463,3
+46056151,25838463,3
+46118793,25838463,1
+3970952,25838463,3
+53396330,25838463,3
+qxyz514,25838463,4
+74913423,25838463,3
+44157753,25838463,2
+70257063,25838463,2
+53932616,25838463,2
+48488105,25838463,3
+xyy_1214,25838463,3
+49544406,25838463,5
+airforce_one,25838463,5
+houpinchao,25838463,3
+102647493,25838463,3
+bommipark,25838463,4
+37906609,25838463,2
+57319762,25838463,2
+michaelcc,25838463,3
+DERRICK_ROSE,25838463,3
+DERRICK_ROSE,25838463,3
+s.a.k.u.r.a,25838463,5
+jcw214,25838463,3
+81901410,25838463,3
+49647213,25838463,3
+zhangqiyuan,25838463,4
+49343055,25838463,2
+39518332,25838463,4
+39034881,25838463,4
+18313578,25838463,2
+56978693,25838463,2
+lnow,25838463,2
+BaDa..,25838463,2
+70394248,25838463,3
+eden_zong,25838463,3
+58992165,25838463,2
+88605317,25838463,3
+58852431,25838463,4
+127299578,25838463,3
+2565217,25838463,2
+Daruke,25838463,3
+69875694,25838463,3
+8907036,25838463,3
+shipan,25838463,3
+4491309,25838463,3
+ankui,25838463,4
+Yokizyz,25838463,4
+84339238,25838463,4
+56867346,25838463,1
+58255987,25838463,1
+3308651,25838463,5
+yele,25838463,3
+28305452,25838463,2
+2113603,25838463,3
+24274750,25838463,3
+67388709,25838463,2
+qi-shao-shang,25838463,2
+kfsj,25838463,3
+62206917,25838463,5
+michelle88411,25838463,2
+michelle88411,25838463,2
+liminzhang,25838463,3
+3442595,25838463,3
+64463407,25838463,4
+23643772,25838463,3
+45099441,25838463,4
+honey-honey,25838463,3
+51812849,25838463,4
+81143099,25838463,1
+93651159,25838463,4
+mlzizi,25838463,4
+76999762,25838463,2
+susidai,25838463,3
+lbwqqq,25838463,5
+53212541,25838463,5
+11786089,25838463,4
+104215998,25838463,3
+57699906,25838463,4
+48852309,25838463,3
+1338530,25838463,3
+40640167,25838463,1
+49991288,25838463,-1
+doubanfujin1995,25838463,2
+66545613,25838463,-1
+47794724,25838463,3
+ppyy,25838463,4
+47993403,25838463,1
+2265138,25838463,4
+2219602,25838463,4
+wongzayoi,25838463,3
+liyixuanorz,25838463,2
+junylovejuny,25838463,4
+iD415,25838463,5
+61722322,25838463,3
+55643387,25838463,4
+liujiao808,25838463,2
+43253714,25838463,4
+zafki,25838463,4
+131194167,25838463,3
+99868218,25838463,-1
+fallwood,25838463,3
+kharkov,25838463,3
+4058668,25838463,2
+37655368,25838463,4
+12794807,25838463,3
+57065086,25838463,3
+little.m,25838463,4
+avrilyian,25838463,2
+26312947,25838463,3
+89301982,25838463,3
+vikawang,25838463,2
+50709050,25838463,4
+1238604,25838463,3
+79148662,25838463,-1
+4664430,25838463,4
+WAZYZ1115,25838463,3
+shouJUer,25838463,2
+134243700,25838463,5
+58810422,25838463,3
+56360766,25838463,1
+72480107,25838463,3
+Ston3s,25838463,3
+isabella_shi,25838463,3
+63264576,25838463,3
+57251364,25838463,2
+41471656,25838463,-1
+54906300,25838463,1
+71995699,25838463,4
+87659310,25838463,1
+chieng,25838463,1
+sai27,25838463,3
+43872050,25838463,4
+meathill,25838463,5
+126168366,25838463,2
+71961235,25838463,3
+3438528,25838463,5
+46793847,25838463,4
+ricechow,25838463,2
+ninquelote,25838463,4
+chrisyx,25838463,3
+44452876,25838463,3
+sofein,25838463,2
+52889197,25838463,3
+42600622,25838463,-1
+70398974,25838463,1
+55536180,25838463,4
+122749983,25838463,5
+Psycho_L,25838463,3
+conansense,25838463,3
+126944723,25838463,5
+ccleung,25838463,3
+snowallsky,25838463,4
+pandalam,25838463,4
+103370606,25838463,3
+56670282,25838463,2
+55886618,25838463,5
+130496328,25838463,1
+imxiaobei,25838463,4
+2280761,25838463,4
+53075931,25838463,3
+53075931,25838463,3
+piecelost,25838463,5
+58044228,25838463,2
+65590168,25838463,4
+64139791,25838463,4
+126693961,25838463,3
+zeph1462,25838463,4
+bakuman,25838463,5
+91604108,25838463,3
+maddison,25838463,3
+120764662,25838463,4
+79913596,25838463,4
+119447313,25838463,5
+71298339,25838463,4
+57949283,25838463,3
+121885852,25838463,3
+47809178,25838463,2
+108165633,25838463,2
+66077019,25838463,4
+gin1110,25838463,4
+68869311,25838463,4
+55444870,25838463,4
+57679372,25838463,3
+Never_mind,25838463,3
+46180905,25838463,2
+123276791,25838463,2
+19848707,25838463,2
+runcastor,25838463,5
+60262421,25838463,3
+89723194,25838463,1
+57545593,25838463,3
+50147481,25838463,3
+125618871,25838463,3
+59038571,25838463,3
+1353079,25838463,4
+TerryPrince,25838463,3
+127073783,25838463,4
+127386249,25838463,3
+ohohzhizhi,25838463,1
+ggjjpp2288,25838463,4
+jjkkfive,25838463,3
+min6,25838463,3
+YUKi.R,25838463,5
+clytzesmile,25838463,3
+sassy22,25838463,4
+Beginstosee,25838463,3
+bigmama,25838463,2
+minoyi,25838463,3
+67141829,25838463,4
+liuGrey,25838463,3
+kanzaki666,25838463,3
+30457423,25838463,4
+supersun1005,25838463,2
+quite-yacca,25838463,3
+58630944,25838463,4
+1495717,25838463,5
+21395164,25838463,3
+55759696,25838463,2
+Ming926,25838463,5
+biglovebigbang,25838463,4
+123449328,25838463,3
+Boomer,25838463,3
+null12345,25838463,2
+68700662,25838463,4
+samkaka,25838463,4
+51030434,25838463,2
+49511491,25838463,4
+51683273,25838463,3
+69998360,25838463,3
+102823150,25838463,-1
+inrelief,25838463,4
+Smilene_22,25838463,5
+AdamWu,25838463,3
+40934646,25838463,3
+tangqy,25838463,5
+45838830,25838463,3
+62531945,25838463,3
+fangmengxin,25838463,1
+50624204,25838463,2
+34570824,25838463,3
+jaslee,25838463,3
+Katherinexiaoya,25838463,3
+88941806,25838463,4
+45496736,25838463,-1
+1864146,25838463,3
+4834635,25838463,4
+15088576,25838463,3
+phunny,25838463,3
+126514473,25838463,3
+63091718,25838463,4
+alantsai,25838463,3
+49855743,25838463,3
+darlingtudai,25838463,-1
+cuppa,25838463,4
+SZH19920707,25838463,2
+caprice_vvn,25838463,3
+36241769,25838463,4
+35087113,25838463,3
+80523939,25838463,3
+Demonbane,25838463,4
+48943856,25838463,4
+1039253,25838463,3
+54519295,25838463,3
+122517698,25838463,5
+124514675,25838463,4
+51399526,25838463,2
+TonyMraz,25838463,2
+liyang3228082,25838463,4
+MarsOrMoon,25838463,2
+summerhanabi,25838463,4
+95404424,25838463,3
+105631790,25838463,2
+2049714,25838463,3
+64635717,25838463,-1
+mao_mao,25838463,2
+60054131,25838463,2
+chilliza,25838463,3
+reneena,25838463,3
+3905808,25838463,3
+54885866,25838463,2
+80240044,25838463,2
+74224240,25838463,3
+yekciR,25838463,4
+94269146,25838463,3
+virginiaboat,25838463,-1
+changefiona,25838463,4
+127355532,25838463,2
+48725322,25838463,3
+probeen,25838463,3
+4102228,25838463,1
+64459545,25838463,3
+carmen8212,25838463,4
+4753861,25838463,3
+46835510,25838463,5
+65292706,25838463,1
+52346645,25838463,-1
+pangtoufeng,25838463,1
+Cerberuske,25838463,3
+sooochent,25838463,3
+graceinjune,25838463,3
+8491923,25838463,3
+1951296,25838463,4
+52830384,25838463,2
+124499471,25838463,4
+fifa10,25838463,3
+98145981,25838463,4
+55897368,25838463,2
+56535276,25838463,4
+aprilwind_shi,25838463,3
+63391988,25838463,1
+47182866,25838463,3
+67618719,25838463,2
+41801093,25838463,3
+2804944,25838463,3
+130977720,25838463,3
+4147553,25838463,5
+40104674,25838463,2
+64351070,25838463,5
+34623045,25838463,1
+122115093,25838463,4
+34623045,25838463,1
+122115093,25838463,4
+50506429,25838463,4
+58928033,25838463,3
+130252198,25838463,3
+zhangzhangzhang,25838463,3
+126769592,25838463,4
+tigerwu,25838463,3
+sf12447411,25838463,4
+65688183,25838463,3
+dongxuanlan,25838463,3
+37037916,25838463,3
+58061236,25838463,4
+77606289,25838463,2
+1779389,25838463,1
+3540779,25838463,-1
+55985856,25838463,3
+51259360,25838463,3
+46788119,25838463,2
+90795414,25838463,2
+119877759,25838463,3
+59446610,25838463,3
+listenmumu,25838463,2
+ssmario,25838463,3
+phoebefly,25838463,4
+magicsunshine,25838463,3
+60653503,25838463,5
+67182363,25838463,3
+43650750,25838463,4
+fukujune,25838463,-1
+119683375,25838463,3
+nanonino,25838463,4
+jiaosally,25838463,4
+92245110,25838463,4
+62130444,25838463,4
+csaver,25838463,4
+3395040,25838463,4
+Athenalotr,25838463,4
+72014043,25838463,1
+betty5230,25838463,4
+74679165,25838463,5
+1178759,25838463,3
+80727161,25838463,4
+bluefrog,25838463,-1
+91906703,25838463,3
+iyouga,25838463,2
+132698884,25838463,4
+65850343,25838463,3
+minhom,25838463,4
+52856760,25838463,1
+52267466,25838463,5
+116856151,25838463,4
+athenasaga,25838463,4
+48490607,25838463,4
+123331677,25838463,3
+minishine,25838463,4
+5122074,25838463,-1
+132446691,25838463,4
+57668007,25838463,-1
+silenceeeee,25838463,4
+ZJ1231,25838463,3
+46706719,25838463,5
+akinotsubasa,25838463,3
+4534557,25838463,3
+xiaopinshan,25838463,4
+81143696,25838463,4
+67232116,25838463,1
+79364792,25838463,4
+61302654,25838463,3
+3922372,25838463,3
+3041750,25838463,2
+53312629,25838463,4
+35506270,25838463,4
+57539497,25838463,2
+88444727,25838463,2
+130223345,25838463,2
+48474852,25838463,3
+4214141,25838463,3
+47492761,25838463,1
+reave,25838463,3
+120780634,25838463,4
+122336700,25838463,4
+edie1924,25838463,4
+AdagioTotoro,25838463,4
+63352248,25838463,3
+67728756,25838463,4
+Cherie.,25838463,-1
+xilouchen,25838463,3
+62024381,25838463,2
+givenchy_,25838463,3
+windirt,25838463,3
+92698705,25838463,3
+angelapple_zh,25838463,4
+63399051,25838463,2
+133053658,25838463,2
+65116292,25838463,3
+2705335,25838463,3
+76999503,25838463,2
+dbhungry,25838463,2
+sunjinrui,25838463,3
+57886651,25838463,3
+li2150,25838463,3
+kellyleaf123,25838463,3
+80732468,25838463,3
+3182137,25838463,4
+71900698,25838463,2
+maokezhiwu,25838463,3
+129543968,25838463,5
+39384615,25838463,3
+dodorene,25838463,4
+tree0912,25838463,-1
+130603786,25838463,3
+yangyiyin,25838463,4
+12822970,25838463,3
+1237533,25838463,1
+ilvhsq,25838463,4
+70294430,25838463,3
+1815039,25838463,3
+marvelwei,25838463,2
+102960018,25838463,4
+81425135,25838463,1
+77661771,25838463,3
+81957032,25838463,3
+49364044,25838463,3
+kid131,25838463,3
+71654816,25838463,3
+hika99,25838463,2
+61715230,25838463,2
+4454692,25838463,3
+48967940,25838463,1
+51501663,25838463,5
+58603704,25838463,3
+76933633,25838463,3
+128895955,25838463,3
+119267623,25838463,5
+37956992,25838463,4
+sandlee1986,25838463,2
+monkeydoll,25838463,3
+51584292,25838463,4
+56396911,25838463,3
+sandimu,25838463,2
+45307960,25838463,4
+Katharine205,25838463,2
+waWa.tomato,25838463,5
+atouworld,25838463,3
+Guardianangel,25838463,3
+56273353,25838463,2
+40195223,25838463,3
+Iamabadman,25838463,2
+74700188,25838463,5
+silverhawk,25838463,3
+lxklzy,25838463,3
+sheeppark,25838463,4
+36753404,25838463,3
+74449417,25838463,5
+yanhongcheng,25838463,3
+apollofay,25838463,2
+51227412,25838463,2
+2914496,25838463,4
+71317241,25838463,2
+126162318,25838463,3
+pussycat100,25838463,3
+gxyvonne,25838463,2
+leexieyun,25838463,3
+58281873,25838463,3
+Miss.Panda,25838463,4
+52286623,25838463,3
+132146700,25838463,1
+93486979,25838463,1
+63125194,25838463,3
+62402779,25838463,4
+Creep_,25838463,2
+2599607,25838463,4
+kidddaisy,25838463,-1
+1001195,25838463,2
+91958061,25838463,5
+4161489,25838463,3
+juuarashi,25838463,3
+sequel,25838463,4
+72365328,25838463,4
+snoopypark,25838463,3
+chanel0214,25838463,3
+NAGISHO,25838463,3
+leslie93,25838463,3
+paggyxu,25838463,3
+42128136,25838463,3
+penjing1026,25838463,4
+MaymySumOn,25838463,3
+know,25838463,3
+63822026,25838463,4
+33921766,25838463,3
+imp1206,25838463,3
+Milckhy,25838463,4
+56104621,25838463,1
+67501952,25838463,4
+52259960,25838463,3
+55683912,25838463,2
+tenderhearted,25838463,2
+4503886,25838463,1
+49388614,25838463,1
+55970012,25838463,2
+51149079,25838463,3
+SETiiiii,25838463,3
+67231520,25838463,4
+1631122,25838463,3
+127245295,25838463,3
+80066409,25838463,3
+BiXiaoBengZhuRe,25838463,4
+62970247,25838463,1
+71262182,25838463,4
+54619955,25838463,2
+caijiewen,25838463,3
+65021113,25838463,3
+isabellagreen,25838463,-1
+imoviekobe,25838463,2
+54612022,25838463,3
+74420414,25838463,3
+4057118,25838463,3
+shuangyugongjue,25838463,4
+132438473,25838463,1
+55554354,25838463,3
+maihiseki,25838463,5
+46953232,25838463,-1
+128176886,25838463,5
+66234722,25838463,3
+65529304,25838463,4
+67235309,25838463,4
+2404348,25838463,3
+v-end,25838463,4
+52868226,25838463,3
+svicy31,25838463,3
+4396558,25838463,4
+124454581,25838463,3
+70160255,25838463,3
+xujinjing,25838463,3
+86246804,25838463,-1
+54679074,25838463,3
+2386807,25838463,2
+43232986,25838463,1
+corona92cml,25838463,3
+2984220,25838463,5
+124687211,25838463,5
+baozha,25838463,3
+65232993,25838463,3
+foreversleepy,25838463,5
+3884472,25838463,3
+i90hou,25838463,2
+metkee,25838463,3
+steve647,25838463,1
+candyisme,25838463,3
+bay2fun,25838463,2
+62419434,25838463,3
+adora,25838463,3
+90884547,25838463,2
+58010436,25838463,3
+frannie312,25838463,5
+53280545,25838463,3
+trista1022,25838463,1
+FTY364002361,25838463,3
+azureINBLUR,25838463,3
+36829119,25838463,3
+124749541,25838463,4
+62720771,25838463,3
+justQiu,25838463,2
+did-it,25838463,3
+2268636,25838463,4
+16413081,25838463,5
+sevenready,25838463,3
+sebasverm,25838463,4
+dummdumm,25838463,3
+64898125,25838463,2
+65826453,25838463,1
+xuqingkuang,25838463,1
+78447440,25838463,4
+2381238,25838463,2
+82319390,25838463,2
+3484320,25838463,3
+14290269,25838463,5
+csee1121,25838463,4
+3538572,25838463,2
+3538572,25838463,2
+31004958,25838463,3
+TLSL,25838463,4
+123049067,25838463,3
+32663616,25838463,3
+y19940504,25838463,4
+49094152,25838463,3
+sif7,25838463,4
+42759061,25838463,4
+57534573,25838463,1
+43743828,25838463,3
+127905530,25838463,2
+72985710,25838463,4
+65045632,25838463,5
+theykilledbill,25838463,3
+45819950,25838463,2
+Ertu,25838463,5
+62664539,25838463,3
+feil1016,25838463,5
+mayxoxo,25838463,4
+3520940,25838463,3
+97305087,25838463,4
+baizi886,25838463,2
+ya829,25838463,3
+leexiang,25838463,3
+74408663,25838463,4
+ms0604,25838463,3
+enanm,25838463,3
+i7COLORS,25838463,4
+blackout,25838463,2
+47564941,25838463,3
+65750183,25838463,4
+108247778,25838463,1
+2571757,25838463,3
+50268348,25838463,2
+108282995,25838463,5
+57836753,25838463,3
+Chainsaw,25838463,2
+4804994,25838463,3
+126846791,25838463,4
+48406181,25838463,5
+121545000,25838463,3
+52730427,25838463,1
+DVforever,25838463,4
+friendsay66,25838463,3
+51091763,25838463,4
+lovely_love,25838463,3
+1727088,25838463,4
+crystal53451,25838463,3
+55548424,25838463,4
+imhjl412,25838463,3
+greatabel,25838463,-1
+felinoshuffle,25838463,4
+68662298,25838463,4
+119182014,25838463,3
+dutianxiong,25838463,5
+shmily_yummy,25838463,1
+pawear,25838463,3
+xuanmg,25838463,5
+stknight,25838463,2
+34728183,25838463,3
+131722641,25838463,4
+121763704,25838463,3
+134600773,25838463,4
+poisoncake,25838463,3
+kane7,25838463,3
+48950860,25838463,4
+115819300,25838463,1
+nbyuan,25838463,3
+zuotianyou,25838463,4
+51590061,25838463,3
+rajorAn,25838463,4
+kimi_che,25838463,5
+49826646,25838463,3
+3155091,25838463,4
+KeithMoon,25838463,1
+63693392,25838463,3
+130119581,25838463,3
+ypp_ah,25838463,3
+46771775,25838463,4
+63118459,25838463,1
+45608534,25838463,1
+59105676,25838463,3
+fre7dom,25838463,3
+BURIALBLACK,25838463,3
+49892892,25838463,4
+49661788,25838463,3
+chanelluo,25838463,3
+37216410,25838463,3
+pinpining,25838463,3
+17298456,25838463,4
+wenbo2003,25838463,4
+11581911,25838463,4
+ben0712,25838463,-1
+ngqmtm,25838463,1
+118843817,25838463,5
+3671869,25838463,4
+shennessy,25838463,4
+79731878,25838463,5
+44669432,25838463,1
+133900665,25838463,3
+84849322,25838463,2
+stellalula,25838463,3
+xiaomengyuanr,25838463,4
+2058011,25838463,3
+cherybeckham,25838463,2
+47243761,25838463,3
+49986348,25838463,3
+1209155,25838463,2
+onotou,25838463,3
+74827424,25838463,3
+41964570,25838463,5
+63359487,25838463,4
+niazion,25838463,4
+69013234,25838463,2
+43342048,25838463,4
+63401093,25838463,4
+54309403,25838463,1
+akprussia,25838463,4
+T.V.Zoe,25838463,3
+133239175,25838463,3
+Monster_004,25838463,3
+133733832,25838463,2
+marvirah,25838463,5
+53092429,25838463,2
+71985811,25838463,2
+drnapster,25838463,5
+B-B-B-Side,25838463,3
+62649072,25838463,4
+47288802,25838463,2
+q2lee,25838463,4
+iyyhua,25838463,3
+wangyi2011,25838463,3
+62622177,25838463,3
+75653628,25838463,5
+4370686,25838463,2
+52635539,25838463,2
+104890249,25838463,2
+55434870,25838463,1
+33226742,25838463,4
+zixixiangxiang,25838463,5
+45833897,25838463,3
+52935293,25838463,3
+39730031,25838463,2
+2754399,25838463,3
+ivylan,25838463,4
+123963583,25838463,4
+69048541,25838463,3
+Shanna_Q,25838463,5
+50493709,25838463,3
+54154563,25838463,5
+zoehuan,25838463,3
+49750852,25838463,4
+sheldonC,25838463,2
+49855278,25838463,3
+104409838,25838463,3
+newbear,25838463,5
+82463994,25838463,5
+violinyuki,25838463,4
+122101793,25838463,3
+109446676,25838463,2
+60670888,25838463,2
+4228858,25838463,3
+SunjinG,25838463,5
+71869905,25838463,3
+54113299,25838463,3
+lynn52009863,25838463,4
+quanquan0616,25838463,3
+sweetxyy,25838463,4
+sstss411,25838463,5
+3728206,25838463,2
+59301340,25838463,4
+flower_ryoo,25838463,2
+85207439,25838463,3
+lucyn,25838463,4
+46630645,25838463,5
+47193539,25838463,3
+SH51244,25838463,5
+pure0918,25838463,3
+39813056,25838463,3
+69104253,25838463,4
+134327676,25838463,5
+NG,25838463,4
+120978925,25838463,3
+82582719,25838463,3
+90564869,25838463,3
+64978409,25838463,4
+60583715,25838463,4
+79027376,25838463,2
+Renee101,25838463,3
+hawords,25838463,4
+LeeMar,25838463,4
+35233003,25838463,2
+53578475,25838463,4
+cazze,25838463,2
+57583046,25838463,2
+42149787,25838463,4
+aptx1010,25838463,3
+mush24,25838463,3
+87799350,25838463,2
+61667274,25838463,2
+61420594,25838463,4
+47034969,25838463,2
+Milk_Solo,25838463,3
+alongy,25838463,5
+45065016,25838463,1
+73766860,25838463,5
+momoko_huang,25838463,3
+50574309,25838463,2
+85574139,25838463,5
+3446950,25838463,4
+82575834,25838463,3
+Stwphanie,25838463,5
+gongzitian,25838463,1
+76029249,25838463,4
+meysure,25838463,5
+55603094,25838463,2
+70481744,25838463,2
+wrdouban,25838463,3
+122258109,25838463,3
+crystalice1918,25838463,3
+sodasue,25838463,3
+4818146,25838463,3
+iimozart,25838463,5
+76487332,25838463,3
+34017621,25838463,3
+42137156,25838463,4
+83932735,25838463,3
+cantona_x,25838463,3
+66266161,25838463,3
+59548337,25838463,5
+46915487,25838463,4
+63825498,25838463,5
+2396187,25838463,3
+xss0791,25838463,3
+52698885,25838463,2
+94343814,25838463,5
+132686664,25838463,3
+129536307,25838463,2
+61280115,25838463,3
+umaymaymay,25838463,3
+mymydemon,25838463,3
+58151506,25838463,2
+61479485,25838463,5
+2495913,25838463,3
+121516783,25838463,2
+2883655,25838463,3
+126899663,25838463,4
+Emily723,25838463,3
+ssxl,25838463,4
+69900690,25838463,3
+cloverwish,25838463,3
+73405940,25838463,2
+44671906,25838463,3
+78728562,25838463,4
+62941422,25838463,5
+cainroziel,25838463,3
+60082922,25838463,3
+pzaiqueen,25838463,2
+thehours_lxx,25838463,4
+50043116,25838463,4
+85901553,25838463,3
+heartlesstree,25838463,4
+45549330,25838463,3
+YVANFUS,25838463,4
+62743500,25838463,4
+83264508,25838463,5
+19996731,25838463,2
+62662196,25838463,5
+notgiven,25838463,3
+elenadivita,25838463,4
+babyblue715,25838463,4
+mumurose,25838463,2
+25240448,25838463,3
+126192589,25838463,3
+63151314,25838463,2
+Night_shadow,25838463,3
+qijiuzhiyue,25838463,3
+forever0801,25838463,3
+52607696,25838463,4
+zhtqqi,25838463,4
+soulmatestarry,25838463,5
+xly7788,25838463,3
+52925540,25838463,4
+huster-lion,25838463,4
+4905483,25838463,-1
+88439681,25838463,2
+QQ3BlueRose,25838463,4
+62623186,25838463,3
+73445722,25838463,2
+Yiz-Chan,25838463,2
+134361038,25838463,4
+68952248,25838463,5
+71888272,25838463,1
+2472187,25838463,3
+imlyc,25838463,3
+50169026,25838463,3
+113752134,25838463,3
+90187672,25838463,5
+59378260,25838463,4
+78321047,25838463,5
+bigev5,25838463,3
+cijfer,25838463,1
+44816197,25838463,4
+48807966,25838463,2
+53373861,25838463,2
+smallhu,25838463,1
+129040380,25838463,1
+49199928,25838463,3
+17004593,25838463,4
+utopialand,25838463,4
+25892548,25838463,4
+125543859,25838463,5
+59716419,25838463,4
+3954052,25838463,3
+foodcup,25838463,4
+41629334,25838463,1
+wtforz,25838463,3
+82663579,25838463,3
+4255750,25838463,4
+qunlangzhishou,25838463,3
+dirtylee,25838463,2
+121920760,25838463,2
+32090748,25838463,2
+63371877,25838463,2
+47458392,25838463,1
+53719859,25838463,3
+icepenny77,25838463,3
+34316735,25838463,2
+lostheart,25838463,3
+wanganqi,25838463,4
+qiaqia320,25838463,2
+magicpencil,25838463,4
+61707984,25838463,5
+51840690,25838463,3
+130642973,25838463,2
+99655397,25838463,4
+kyleul,25838463,5
+90598022,25838463,3
+4638543,25838463,2
+pandorapple,25838463,3
+cyrus_wong,25838463,2
+51629650,25838463,3
+68435101,25838463,3
+76193646,25838463,1
+fenxinyu,25838463,3
+57980305,25838463,3
+1132028,25838463,5
+57542378,25838463,2
+Janone,25838463,2
+2107978,25838463,3
+Iamfull,25838463,4
+52899063,25838463,4
+67641940,25838463,5
+63343874,25838463,2
+ji2uu,25838463,2
+mozkii,25838463,2
+8444736,25838463,2
+june.q,25838463,3
+122052846,25838463,1
+epichao,25838463,5
+51181829,25838463,5
+TiM2012start,25838463,5
+yonghengyanggua,25838463,3
+4342105,25838463,-1
+58197963,25838463,5
+3422449,25838463,3
+74563489,25838463,3
+50648969,25838463,4
+Betty_king,25838463,4
+130533856,25838463,4
+51402436,25838463,3
+130082458,25838463,3
+60553727,25838463,5
+bekgst,25838463,3
+1284677,25838463,3
+longbookstore,25838463,3
+66825713,25838463,2
+amhuming,25838463,3
+99448311,25838463,4
+2807910,25838463,3
+96443589,25838463,3
+67695770,25838463,3
+zcx1990,25838463,3
+128328073,25838463,2
+41220794,25838463,4
+102007900,25838463,5
+50367338,25838463,3
+72538808,25838463,3
+linyuxi,25838463,5
+momoran,25838463,3
+131845858,25838463,2
+wongbur,25838463,4
+Yanna_z,25838463,3
+misscalla,25838463,2
+donna12355,25838463,4
+lotusz23,25838463,3
+guanwaiguicai,25838463,3
+92231929,25838463,3
+menethil,25838463,3
+yangborui,25838463,3
+myiesha,25838463,3
+108289411,25838463,3
+yzMorph,25838463,2
+blair77,25838463,2
+doraeman,25838463,3
+61134398,25838463,3
+4401243,25838463,4
+wangxhtt,25838463,4
+koko18910906,25838463,3
+49891610,25838463,1
+43891249,25838463,1
+57920741,25838463,4
+schauer,25838463,4
+stevecarell,25838463,3
+44222331,25838463,4
+2964464,25838463,4
+ying03011224,25838463,3
+ciell,25838463,3
+Strawberry-U,25838463,4
+56493831,25838463,3
+kikkki,25838463,3
+dawnxxx,25838463,4
+43528546,25838463,3
+103894071,25838463,4
+jessie1230,25838463,4
+58403534,25838463,3
+sunshinezz1991,25838463,4
+130866861,25838463,4
+61967626,25838463,3
+ahao25,25838463,3
+jinlinyuyu,25838463,3
+65442139,25838463,3
+14157576,25838463,2
+MyLittleWhite,25838463,3
+Jeff-poon,25838463,3
+64619116,25838463,2
+75874484,25838463,3
+wyjlazy,25838463,4
+74698401,25838463,4
+60348817,25838463,3
+Popdai,25838463,5
+90884269,25838463,4
+yol0321,25838463,-1
+shanguicheng,25838463,4
+Kiwi1126,25838463,3
+58142762,25838463,4
+CTT696,25838463,3
+p2165,25838463,2
+70043510,25838463,3
+tonyuanChen,25838463,3
+56072564,25838463,3
+4335163,25838463,2
+FrankWasabi,25838463,1
+dreamending,25838463,2
+findeva,25838463,2
+achen130,25838463,4
+134298368,25838463,3
+114079849,25838463,2
+lalalasummer,25838463,3
+darkdio,25838463,3
+97705695,25838463,4
+95907760,25838463,4
+who_knows,25838463,3
+59015401,25838463,3
+102921046,25838463,5
+66673109,25838463,5
+anjia617,25838463,4
+sherlocknh2fan,25838463,5
+48058704,25838463,3
+iris77yaxo,25838463,3
+121055562,25838463,1
+77320088,25838463,3
+blackboard0215,25838463,4
+61392222,25838463,4
+2597570,25838463,3
+chowregina,25838463,4
+25179405,25838463,2
+53243920,25838463,5
+79991595,25838463,1
+ezra_lee,25838463,2
+liuanan0606,25838463,3
+Rosier,25838463,4
+hzlqy,25838463,4
+78906900,25838463,2
+48362404,25838463,4
+133042123,25838463,3
+seki_kan,25838463,2
+89451372,25838463,5
+lingrui1995,25838463,3
+122484981,25838463,4
+nini_wang,25838463,3
+2592459,25838463,4
+sxqs,25838463,5
+49672172,25838463,4
+vplumage,25838463,2
+angelliujiayun,25838463,3
+Tsukishima,25838463,2
+49490666,25838463,3
+83058780,25838463,5
+goeatshit,25838463,3
+75721226,25838463,3
+1038194,25838463,3
+39871697,25838463,2
+sophie1900,25838463,3
+buzzsunny,25838463,5
+90904421,25838463,3
+35261395,25838463,3
+variabled,25838463,4
+3745423,25838463,2
+77914968,25838463,1
+54184798,25838463,3
+2862311,25838463,3
+judy0420,25838463,1
+59667285,25838463,4
+DesmondDAI,25838463,3
+chrisicgong,25838463,3
+vermouthsama,25838463,3
+76781369,25838463,4
+70379849,25838463,3
+83513831,25838463,4
+T.T.Fung,25838463,2
+119296421,25838463,3
+123469142,25838463,3
+77758955,25838463,3
+83989831,25838463,3
+46046838,25838463,3
+zuochangyu,25838463,3
+cyy9828,25838463,4
+4357121,25838463,3
+58482756,25838463,3
+smallove816,25838463,-1
+59699461,25838463,3
+nocturnelee,25838463,2
+44254923,25838463,2
+7609988,25838463,2
+61419341,25838463,4
+66836438,25838463,2
+80784091,25838463,3
+Alex-boil,25838463,3
+johnqz874,25838463,4
+swwwrui,25838463,3
+34724471,25838463,4
+127329113,25838463,4
+2352547,25838463,2
+louql,25838463,3
+princepy,25838463,4
+3515481,25838463,3
+64658457,25838463,3
+59372106,25838463,3
+63765493,25838463,2
+cmisland,25838463,2
+49062914,25838463,4
+58121967,25838463,2
+57812990,25838463,3
+27675083,25838463,4
+zuojian07,25838463,3
+76943413,25838463,2
+1021243,25838463,2
+21771687,25838463,4
+79102924,25838463,3
+121933047,25838463,2
+Craigso,25838463,5
+shanshanyouli,25838463,3
+MelodyGrass,25838463,5
+126302017,25838463,2
+14434696,25838463,4
+LilC,25838463,2
+xisochakaihuale,25838463,3
+zenbi,25838463,3
+HEISONWONG,25838463,3
+3522630,25838463,2
+2561513,25838463,3
+50293215,25838463,3
+itayloriswift,25838463,5
+lydiaxanthe,25838463,3
+Lauren1010,25838463,5
+4308803,25838463,4
+55943262,25838463,3
+56631465,25838463,4
+46529301,25838463,4
+angelababy_,25838463,3
+nakoruru,25838463,4
+loreleishanny,25838463,2
+47101317,25838463,5
+83836566,25838463,3
+jzcatherine1990,25838463,3
+133623551,25838463,4
+48507134,25838463,3
+MenTsung,25838463,1
+cat-in-black,25838463,3
+42644353,25838463,3
+leftsidestory,25838463,3
+68918996,25838463,4
+30872266,25838463,1
+mushroomcloud,25838463,3
+miniville,25838463,4
+34434303,25838463,4
+sickroom305,25838463,3
+9274036,25838463,4
+qq1294689526,25838463,3
+35465619,25838463,3
+98014979,25838463,3
+55549387,25838463,3
+mabbit,25838463,4
+2731510,25838463,3
+3478821,25838463,3
+41686934,25838463,3
+34855007,25838463,2
+jimxie,25838463,2
+guoyandao,25838463,2
+3086188,25838463,3
+39200949,25838463,3
+3881204,25838463,3
+vicness,25838463,3
+3464738,25838463,4
+67516737,25838463,3
+bluebamboo,25838463,2
+43802399,25838463,4
+reader-shuo,25838463,-1
+Perfume_,25838463,3
+36993897,25838463,3
+jojoy41,25838463,4
+dakotazheng,25838463,2
+121215156,25838463,5
+43752216,25838463,4
+jesais,25838463,4
+18081032,25838463,3
+lixiaoshall,25838463,2
+froggie,25838463,2
+mikimake,25838463,3
+3946449,25838463,4
+54947463,25838463,3
+alick9188,25838463,4
+KO0,25838463,-1
+4320404,25838463,3
+88236856,25838463,2
+1237270,25838463,4
+yummysama,25838463,4
+muyi9,25838463,4
+73929218,25838463,4
+liussdy,25838463,2
+miemiefever,25838463,4
+irisyours,25838463,4
+102986629,25838463,2
+ericyxh,25838463,3
+kathyy,25838463,4
+43002828,25838463,4
+Linkinport,25838463,3
+47941742,25838463,3
+miracle1025,25838463,3
+tzhou730,25838463,3
+zzkiara,25838463,3
+81061741,25838463,3
+sunnykisskins,25838463,3
+xycapocalyptica,25838463,3
+1752320,25838463,3
+79695986,25838463,3
+57666783,25838463,3
+59733385,25838463,3
+14542773,25838463,3
+8490514,25838463,3
+fashional,25838463,4
+eggtree,25838463,4
+Chilwoo,25838463,4
+49872790,25838463,2
+59990067,25838463,3
+119626702,25838463,2
+popo1990,25838463,4
+subuuti,25838463,2
+yzx_901215,25838463,4
+Silencege,25838463,4
+jolyne,25838463,3
+65726915,25838463,2
+kiwiflmi,25838463,3
+45344133,25838463,3
+1252761,25838463,3
+sinbone,25838463,2
+81845055,25838463,2
+luoluomicky,25838463,4
+luoluomicky,25838463,4
+21967116,25838463,4
+bzslovely,25838463,2
+adamyoung1518,25838463,3
+4560780,25838463,3
+catherinecheung,25838463,4
+125495885,25838463,3
+anzhenyunyou,25838463,2
+sissigoon,25838463,1
+2221143,25838463,4
+64526026,25838463,2
+hangecho,25838463,3
+117234787,25838463,3
+59101445,25838463,3
+spark0601,25838463,3
+janeyyxl,25838463,3
+51559906,25838463,4
+middleair,25838463,3
+64354015,25838463,3
+ly_yun811,25838463,3
+wotaomei,25838463,3
+MarquisX,25838463,3
+75180994,25838463,4
+43473868,25838463,2
+erin522,25838463,3
+ypapa,25838463,1
+131663027,25838463,2
+59372484,25838463,4
+51435361,25838463,3
+parala,25838463,4
+38040905,25838463,2
+gretchenshu,25838463,-1
+Aras,25838463,3
+puppyfanfan,25838463,3
+80634044,25838463,4
+66057217,25838463,3
+alienyoyo,25838463,-1
+1963086,25838463,4
+kekeximi,25838463,3
+silence2top,25838463,1
+58905615,25838463,4
+4629060,25838463,3
+5617300,25838463,3
+larisali,25838463,3
+sansanzy,25838463,2
+33019737,25838463,3
+131838639,25838463,2
+maclauring,25838463,4
+satanyyy,25838463,4
+simonyao,25838463,1
+zillyromantic,25838463,4
+crescentz,25838463,4
+35595189,25838463,2
+Frankyooo,25838463,4
+120122662,25838463,-1
+thefireworker,25838463,-1
+58801678,25838463,3
+96149760,25838463,3
+38243770,25838463,1
+4307749,25838463,4
+yozoh96119,25838463,3
+67979559,25838463,3
+sky890802,25838463,3
+49020193,25838463,4
+2111262,25838463,4
+shunjun,25838463,3
+33285857,25838463,-1
+55545848,25838463,3
+41791950,25838463,3
+goldenhornking,25838463,3
+53518939,25838463,3
+3386344,25838463,3
+64172980,25838463,2
+50887625,25838463,2
+izume,25838463,5
+loveirina,25838463,3
+backinblack,25838463,3
+68596231,25838463,3
+129548719,25838463,4
+51638198,25838463,3
+79425472,25838463,3
+42948156,25838463,4
+EloiseL,25838463,3
+38774242,25838463,2
+leeqi,25838463,5
+ciaoxu,25838463,3
+dazhao,25838463,3
+3739759,25838463,3
+63422177,25838463,2
+fay619,25838463,-1
+3000438,25838463,3
+27969330,25838463,2
+51297889,25838463,3
+mm_ww,25838463,2
+petitespot,25838463,2
+B.immortal,25838463,4
+sabrinakeh,25838463,2
+126344543,25838463,4
+jaredspecter,25838463,1
+3661298,25838463,-1
+3661298,25838463,-1
+mingchu,25838463,2
+dasyhiqiang,25838463,3
+53967478,25838463,-1
+joarieas,25838463,3
+steventian,25838463,3
+24598372,25838463,4
+jaycee103,25838463,3
+wohui1989,25838463,3
+garuru,25838463,3
+52157367,25838463,2
+70308764,25838463,5
+cassiopeiaxiah,25838463,2
+jaredc,25838463,4
+kiplinghu,25838463,4
+3178602,25838463,2
+44070862,25838463,4
+pamelayang,25838463,3
+49891735,25838463,5
+45607199,25838463,-1
+39725541,25838463,2
+34461821,25838463,3
+txiaomiao,25838463,3
+Jessica824,25838463,2
+ellestmorte,25838463,2
+Pabalee,25838463,3
+43877735,25838463,2
+56523090,25838463,4
+mrcoolchina,25838463,2
+53031868,25838463,1
+59916348,25838463,5
+tequi1a,25838463,3
+alan_fanfan,25838463,3
+123004306,25838463,4
+julia_duan,25838463,3
+83250285,25838463,4
+violette,25838463,3
+iam_ci,25838463,3
+Guzzi,25838463,4
+2913201,25838463,2
+2632873,25838463,4
+4340710,25838463,3
+teapot,25838463,2
+44576253,25838463,3
+kimmo,25838463,3
+78487387,25838463,3
+lynnwhite,25838463,3
+terrubunny,25838463,5
+pandanian,25838463,3
+38854651,25838463,3
+sixeva65,25838463,1
+59235742,25838463,4
+92580665,25838463,3
+52374368,25838463,3
+63631634,25838463,4
+56244631,25838463,2
+35301521,25838463,3
+sadakofuji,25838463,4
+shiori,25838463,1
+satellitecity,25838463,3
+ameliewang,25838463,3
+4663105,25838463,3
+49515197,25838463,3
+vanessa07,25838463,4
+Claire1990,25838463,4
+5580630,25838463,2
+stephanieyy,25838463,2
+z_zkagami,25838463,2
+babe_of_pisces,25838463,3
+sccforye,25838463,3
+52523145,25838463,3
+samii,25838463,3
+49119255,25838463,1
+4102414,25838463,3
+ringogo,25838463,3
+softshock,25838463,3
+33201871,25838463,1
+Chris.Wu,25838463,3
+Mr.Alice,25838463,4
+71547837,25838463,5
+90931195,25838463,5
+sindyfan,25838463,3
+66833229,25838463,3
+4583369,25838463,3
+marauder,25838463,4
+43364606,25838463,3
+3328450,25838463,5
+52197489,25838463,2
+52413397,25838463,5
+ballsirius,25838463,1
+abcclk,25838463,5
+lujcmss,25838463,3
+darcy0306,25838463,3
+eaufavor,25838463,2
+vickychen110,25838463,4
+unicorno,25838463,3
+silent_island,25838463,1
+lampslovesterry,25838463,2
+67390212,25838463,2
+22263173,25838463,2
+65741899,25838463,4
+1296624,25838463,2
+Xpirits,25838463,4
+121491917,25838463,-1
+sinpor,25838463,4
+woshizengjiujiu,25838463,2
+recheng,25838463,3
+jushang,25838463,1
+50088258,25838463,4
+61664242,25838463,3
+79416306,25838463,4
+rackylo,25838463,5
+taotaomvp,25838463,3
+78486968,25838463,3
+tina0330,25838463,2
+3894700,25838463,2
+54278419,25838463,5
+12744710,25838463,4
+3731360,25838463,5
+65758167,25838463,3
+45220439,25838463,2
+ichee,25838463,5
+nikubenki,25838463,3
+65190817,25838463,4
+shinesday,25838463,3
+julypoem,25838463,3
+60871322,25838463,1
+4161702,25838463,3
+1159054,25838463,1
+Aaronyy,25838463,3
+71316784,25838463,3
+jerry1992,25838463,4
+53893558,25838463,3
+2923778,25838463,3
+57758091,25838463,4
+35003294,25838463,3
+27527393,25838463,4
+50776710,25838463,2
+79272694,25838463,4
+62877748,25838463,3
+liarelaw,25838463,1
+58110414,25838463,3
+sherry1004,25838463,4
+58741014,25838463,-1
+81404706,25838463,3
+zc1997,25838463,4
+Sean__Wang,25838463,2
+adaxinyi,25838463,3
+63878764,25838463,5
+Moretoless,25838463,3
+yangshuangblue,25838463,3
+47295015,25838463,3
+120943212,25838463,3
+57395743,25838463,2
+Eileke,25838463,3
+84608070,25838463,2
+foleyfan,25838463,5
+yre,25838463,4
+58863431,25838463,4
+WyBaby,25838463,3
+126702436,25838463,3
+lxu,25838463,3
+49636760,25838463,3
+8312118,25838463,3
+68404885,25838463,4
+42706088,25838463,-1
+35591333,25838463,4
+daysofyouth,25838463,3
+rhythmfish,25838463,4
+44589835,25838463,5
+moodymooday,25838463,2
+58691394,25838463,3
+julia1989,25838463,4
+54467510,25838463,4
+60838109,25838463,3
+96796487,25838463,3
+53586597,25838463,3
+lovemetomato,25838463,3
+41257912,25838463,4
+121685799,25838463,5
+80847771,25838463,4
+1793602,25838463,4
+benjune,25838463,3
+lydiapy,25838463,4
+59135946,25838463,5
+97396333,25838463,3
+83240850,25838463,3
+longyue0609,25838463,5
+57974419,25838463,5
+52054385,25838463,4
+92155502,25838463,3
+48787128,25838463,4
+86601635,25838463,3
+1503417,25838463,2
+yalindongdong,25838463,2
+RicoCC,25838463,3
+57678157,25838463,3
+veiking,25838463,3
+Janny_blue,25838463,2
+umissdaisy,25838463,4
+lazydesigner,25838463,-1
+49761291,25838463,4
+59735300,25838463,3
+61426958,25838463,3
+87609683,25838463,5
+51911229,25838463,4
+2858394,25838463,4
+star2s,25838463,4
+alwaysbestrong,25838463,4
+janetbubble,25838463,2
+119161304,25838463,2
+DukeTc,25838463,3
+77874799,25838463,3
+super0zero0,25838463,3
+microblue,25838463,3
+87069723,25838463,3
+63412313,25838463,3
+3561552,25838463,4
+driftorhu,25838463,2
+10149854,25838463,4
+vigshane,25838463,3
+q164511490,25838463,5
+guoxiaolu1447,25838463,3
+64780091,25838463,2
+dakusaido,25838463,4
+53591524,25838463,3
+43603952,25838463,2
+52484586,25838463,4
+jieeeed,25838463,2
+forzajuve,25838463,3
+MOVIE--KO,25838463,2
+52234152,25838463,3
+johnny86,25838463,4
+66770871,25838463,4
+39649962,25838463,4
+129764944,25838463,3
+57285744,25838463,4
+47870683,25838463,4
+wangxiaojunwjj,25838463,3
+52111433,25838463,3
+gionlau,25838463,4
+78914788,25838463,3
+yale2010,25838463,2
+83389859,25838463,3
+94032593,25838463,1
+LunaSunny,25838463,3
+Goudy,25838463,5
+iskl,25838463,3
+fengzaifei,25838463,4
+btjd,25838463,3
+MLKGOD,25838463,4
+shaoyi,25838463,3
+47556778,25838463,3
+69629165,25838463,1
+55328158,25838463,3
+mrcandy,25838463,4
+66707798,25838463,4
+luzhiyu,25838463,2
+49988944,25838463,4
+piaoweier,25838463,3
+jiqiuqiu,25838463,4
+nebgnahz,25838463,4
+48845052,25838463,2
+5675912,25838463,4
+81652871,25838463,3
+DrRay,25838463,3
+59281167,25838463,3
+43556775,25838463,3
+67924559,25838463,2
+shushibi,25838463,4
+51224776,25838463,3
+tinker828,25838463,4
+2946363,25838463,4
+103559115,25838463,2
+100294226,25838463,-1
+Do-my-self,25838463,3
+libra-nai,25838463,3
+33177895,25838463,2
+2386302,25838463,4
+somelolitas,25838463,5
+triumph,25838463,5
+ooyoo,25838463,5
+fang0079,25838463,3
+sapphiresea1130,25838463,4
+64741291,25838463,3
+122821584,25838463,4
+86091558,25838463,3
+128234602,25838463,1
+caspertang,25838463,1
+34794492,25838463,4
+73627549,25838463,3
+49082695,25838463,3
+66505410,25838463,3
+HowShouldIKnow,25838463,5
+96948133,25838463,3
+62862861,25838463,2
+arrogantcolonel,25838463,4
+98110262,25838463,4
+64933961,25838463,4
+71181579,25838463,2
+acbc115,25838463,3
+goson,25838463,4
+muxiaoxu,25838463,3
+45536018,25838463,3
+32019435,25838463,3
+1786804,25838463,1
+HarryOng,25838463,3
+hecategk,25838463,4
+2766911,25838463,3
+TheprettyXXXX,25838463,1
+jockey_kyd,25838463,5
+79262344,25838463,2
+65734199,25838463,5
+HarryBabel,25838463,2
+54404280,25838463,3
+evilQin,25838463,4
+73064038,25838463,3
+60863980,25838463,4
+53830411,25838463,3
+19676752,25838463,3
+zizzyzizz,25838463,5
+59958478,25838463,4
+51636486,25838463,3
+105023809,25838463,3
+53247764,25838463,3
+jackar,25838463,4
+Shin7KYO,25838463,3
+103214078,25838463,3
+110063984,25838463,5
+49338392,25838463,-1
+littlelu,25838463,4
+61879680,25838463,4
+87468773,25838463,3
+56809398,25838463,2
+yangjianmeiyang,25838463,3
+yorihisa,25838463,2
+46920813,25838463,3
+mrbeishuo,25838463,3
+problemchildren,25838463,3
+67322058,25838463,5
+83188680,25838463,3
+64113646,25838463,5
+jinghanxing,25838463,3
+3308637,25838463,2
+45611235,25838463,3
+61235400,25838463,5
+68984410,25838463,-1
+Time4meal,25838463,3
+48687824,25838463,3
+59648249,25838463,3
+62101965,25838463,2
+4913356,25838463,2
+urasucker,25838463,4
+61069338,25838463,3
+53602254,25838463,3
+3412422,25838463,4
+34789541,25838463,3
+41099863,25838463,5
+xulu_films,25838463,2
+53546281,25838463,3
+aquahst,25838463,3
+80063534,25838463,2
+lonelysin,25838463,3
+102611391,25838463,4
+gl56770978,25838463,3
+108573841,25838463,3
+mabel4100,25838463,5
+92451147,25838463,2
+sfroompp,25838463,1
+rin993,25838463,4
+51229713,25838463,2
+Ada_quan,25838463,-1
+jazonion,25838463,5
+onetwothreefar,25838463,3
+53904124,25838463,2
+kirika,25838463,3
+65111838,25838463,5
+51342796,25838463,3
+evey42,25838463,2
+80598638,25838463,5
+hgn2007,25838463,2
+callmev,25838463,2
+50031038,25838463,3
+3488671,25838463,4
+army8735,25838463,3
+49294840,25838463,3
+55817697,25838463,2
+62221399,25838463,3
+48394300,25838463,-1
+LilHayah,25838463,5
+yupz,25838463,3
+75043360,25838463,2
+72622855,25838463,-1
+ccj0212,25838463,3
+evanye,25838463,3
+jerostudio,25838463,1
+zisic,25838463,3
+sirk,25838463,4
+Tinyk,25838463,2
+liuxingfeiban,25838463,4
+3091791,25838463,3
+huiverci,25838463,3
+57290496,25838463,4
+121633982,25838463,3
+64092114,25838463,2
+71702160,25838463,3
+38858410,25838463,2
+tola95,25838463,2
+41943699,25838463,2
+93484113,25838463,5
+2920373,25838463,2
+2014095,25838463,3
+platinhom,25838463,4
+84775751,25838463,3
+134309409,25838463,3
+137613097,25838463,3
+10345879,25838463,3
+54064610,25838463,3
+60973742,25838463,4
+80590035,25838463,5
+50629676,25821461,3
+1493686,25821461,3
+Byebye-mylove,25821461,4
+jason000021,25821461,5
+47917142,25821461,4
+Son47,25821461,4
+56435930,25821461,3
+2643418,25821461,4
+83188009,25821461,4
+131288571,25821461,3
+daisyx1108,25821461,4
+98942278,25821461,5
+pandawin,25821461,2
+67958148,25821461,4
+58059498,25821461,3
+56917736,25821461,2
+121148510,25821461,3
+COCOCOQUEEN,25821461,3
+catsama77,25821461,3
+suyanz,25821461,4
+poooooop,25821461,3
+ValentineQ,25821461,5
+44398603,25821461,3
+nongnong424,25821461,3
+manasarovar,25821461,4
+66179494,25821461,4
+xiaojing,25821461,5
+58106727,25821461,3
+81316047,25821461,4
+1271021,25821461,5
+roseforu,25821461,4
+64252611,25821461,3
+102910233,25821461,3
+MaymySumOn,25821461,5
+shuyea,25821461,3
+67763944,25821461,4
+4242728,25821461,3
+52392787,25821461,1
+62515119,25821461,-1
+83596429,25821461,5
+huoxiaoliang,25821461,3
+tristanfree,25821461,3
+Ms.Curiosity,25821461,5
+4404766,25821461,3
+ilv1840,25821461,4
+beikou,25821461,3
+48259477,25821461,2
+regalo,25821461,4
+Zizou_Vam,25821461,4
+DOLEIMI,25821461,4
+yushi,25821461,4
+2265138,25821461,4
+40027917,25821461,3
+2808574,25821461,2
+130978369,25821461,4
+q962265267,25821461,5
+47576659,25821461,3
+59217273,25821461,4
+57090877,25821461,5
+76722357,25821461,-1
+ovanisho,25821461,5
+47008277,25821461,4
+131740688,25821461,4
+mandy0610,25821461,4
+49712766,25821461,3
+4828260,25821461,4
+44394014,25821461,3
+31102423,25821461,4
+57774434,25821461,4
+50527578,25821461,-1
+Chenallen,25821461,4
+34648146,25821461,3
+87909103,25821461,4
+49191117,25821461,4
+51297351,25821461,4
+xj2006062,25821461,3
+71218944,25821461,-1
+18814360,25821461,5
+63793789,25821461,5
+angalny,25821461,3
+chrisyx,25821461,4
+79875260,25821461,5
+74601156,25821461,4
+xiaolian818,25821461,3
+94417927,25821461,-1
+87035372,25821461,4
+53389044,25821461,5
+131987227,25821461,5
+iamwhatiam,25821461,5
+natureandreal,25821461,4
+53900071,25821461,5
+4024297,25821461,4
+sundancingkid,25821461,5
+61845850,25821461,3
+47334850,25821461,3
+18045809,25821461,1
+sickboy,25821461,4
+63050490,25821461,3
+michellengan,25821461,2
+55321453,25821461,4
+119374613,25821461,4
+jessicascarlet,25821461,4
+x1.,25821461,2
+everisle,25821461,-1
+55930112,25821461,3
+64969001,25821461,4
+1526774,25821461,-1
+72086305,25821461,2
+1821069,25821461,2
+AeroAnte,25821461,3
+45626722,25821461,4
+anviliu,25821461,4
+Like_zsy,25821461,5
+70518379,25821461,2
+92610102,25821461,3
+taylorman,25821461,3
+49691795,25821461,-1
+39945204,25821461,5
+coldcall,25821461,3
+68630108,25821461,2
+68152466,25821461,4
+80584214,25821461,5
+xuyimeng,25821461,5
+3922229,25821461,5
+came1,25821461,4
+122708996,25821461,5
+83143884,25821461,4
+55656322,25821461,3
+chending,25821461,3
+laomo,25821461,4
+61486120,25821461,3
+4400726,25821461,5
+4247034,25821461,3
+63960808,25821461,3
+26713841,25821461,4
+ideyes,25821461,4
+pandatou,25821461,5
+62974718,25821461,4
+62455742,25821461,4
+119991897,25821461,4
+qiujing0305,25821461,5
+masaikejun,25821461,5
+alexyou,25821461,3
+4753861,25821461,4
+AuZeonFung,25821461,4
+80873754,25821461,4
+87869082,25821461,5
+49711912,25821461,4
+moneylatem,25821461,4
+83550377,25821461,5
+cunzeg,25821461,4
+66717059,25821461,3
+64926044,25821461,3
+Annie3,25821461,4
+andrpirl,25821461,4
+69439267,25821461,3
+67679868,25821461,4
+yomaybe,25821461,4
+FilmYan,25821461,4
+52810889,25821461,3
+supersnail59515,25821461,4
+caocaoa,25821461,3
+2307180,25821461,5
+77048663,25821461,4
+51965596,25821461,5
+rabbitin,25821461,5
+43912809,25821461,-1
+88434665,25821461,4
+xyhen,25821461,4
+x-inter,25821461,5
+68550655,25821461,4
+2336034,25821461,4
+diorsunrise,25821461,4
+FlowerCharlotte,25821461,4
+baozha,25821461,3
+58523083,25821461,4
+98956225,25821461,3
+Green_chestnut,25821461,5
+128991169,25821461,3
+63506712,25821461,4
+jasmine22,25821461,4
+pengyaos,25821461,-1
+54327177,25821461,3
+swell1019,25821461,4
+ashley17,25821461,4
+liujialalalala,25821461,5
+lave,25821461,4
+68664986,25821461,4
+LHone,25821461,4
+2614660,25821461,4
+Vivi17,25821461,5
+june.q,25821461,4
+liqiyao8931,25821461,3
+49246555,25821461,1
+1558354,25821461,-1
+62169883,25821461,4
+61076584,25821461,4
+119669908,25821461,4
+50181250,25821461,5
+92399399,25821461,3
+songzi,25821461,1
+yelucaizi,25821461,3
+62932402,25821461,5
+ellie911,25821461,4
+60023707,25821461,3
+64425214,25821461,3
+65930236,25821461,4
+saosaoxy,25821461,5
+mattni,25821461,4
+131909298,25821461,3
+Jan111,25821461,-1
+dolphinshotel,25821461,4
+catjiji,25821461,4
+49397696,25821461,4
+96336225,25821461,3
+dawdle,25821461,4
+chidaoshu,25821461,3
+36072726,25821461,4
+67801477,25821461,4
+otherheaven,25821461,3
+icyqh,25821461,4
+4573696,25821461,-1
+80757193,25821461,4
+51606142,25821461,3
+crazylr9,25821461,3
+127313933,25821461,4
+xiamudemao,25821461,4
+woheyizhimiao,25821461,5
+127675582,25821461,2
+medeHOW,25821461,4
+uiuiluna,25821461,5
+sun-happy,25821461,3
+30101737,25821461,4
+59821834,25821461,5
+secretdust,25821461,4
+64247507,25821461,3
+9411327,25821461,5
+38258402,25821461,4
+130540529,25821461,4
+loisli,25821461,5
+66584790,25821461,5
+Oceanor,25821461,4
+2813940,25821461,4
+GIGILENUG,25821461,5
+72792251,25821461,4
+vienC,25821461,4
+yunxin,25821461,5
+azlarizual_sk8,25821461,5
+2187326,25821461,3
+A-Cat,25821461,5
+49778804,25821461,4
+testimony,25821461,5
+Dasiycat,25821461,4
+54069821,25821461,4
+69292249,25821461,4
+134503726,25821461,4
+bunny_Shen,25821461,4
+71102846,25821461,5
+dmcmh,25821461,4
+2822373,25821461,-1
+59556482,25821461,4
+1291946,25821461,4
+52091489,25821461,4
+paltrow,25821461,-1
+weini0410,25821461,3
+50769743,25821461,4
+3880844,25821461,3
+85811535,25821461,3
+73830337,25821461,4
+zebramomo,25821461,4
+65699766,25821461,3
+Lancezhao,25821461,5
+110718557,25821461,4
+41351821,25821461,3
+2518392,25821461,-1
+2323154,25821461,5
+aquar25,25821461,-1
+14247291,25821461,4
+lidesheng,25821461,-1
+qinxuanzi,25821461,4
+liutianhong1992,25821461,5
+62160897,25821461,5
+52278915,25821461,4
+Heroic-Deborah,25821461,5
+ccushuaia1220,25821461,-1
+45174381,25821461,4
+65010225,25821461,4
+iisakura,25821461,3
+104409838,25821461,4
+6972638,25821461,3
+59378291,25821461,2
+light0829,25821461,5
+somnor,25821461,4
+lulinhaohan,25821461,4
+ifimeetyou,25821461,4
+66745395,25821461,3
+46287060,25821461,3
+133728824,25821461,-1
+KUBRICK2OO1,25821461,3
+65930256,25821461,4
+65930256,25821461,4
+alanzlunzi,25821461,4
+72783015,25821461,3
+42625255,25821461,4
+Windbroken,25821461,3
+alamao,25821461,-1
+49190112,25821461,5
+40184032,25821461,5
+134574897,25821461,4
+cabaret,25821461,4
+106347535,25821461,4
+65907866,25821461,5
+62378439,25821461,4
+post-rocker,25821461,3
+56672985,25821461,4
+88109580,25821461,4
+l601512254,25821461,4
+tytony890115,25821461,4
+43708089,25821461,5
+steflover,25821461,4
+81594429,25821461,4
+tobekalorce,25821461,5
+iScandinavia,25821461,5
+130952703,25821461,4
+catyypp,25821461,5
+psychodying,25821461,4
+75941536,25821461,5
+4242859,25821461,4
+96000077,25821461,4
+121925373,25821461,3
+xiangxiangx,25821461,5
+53491052,25821461,5
+120114687,25821461,3
+43778462,25821461,-1
+64713560,25821461,3
+61681574,25821461,3
+47941742,25821461,4
+2361128,25821461,4
+43576863,25821461,5
+43557662,25821461,3
+mysalvation,25821461,5
+tanhuiwendy,25821461,5
+51440754,25821461,4
+136397251,25821461,-1
+currant,25821461,4
+skgn,25821461,3
+65434971,25821461,5
+hahatedan,25821461,4
+92516233,25821461,4
+82602677,25821461,4
+Rouwell,25821461,4
+3547067,25821461,3
+64618863,25821461,3
+4882025,25821461,4
+effy.an,25821461,1
+aaaaaaalice,25821461,4
+xuliking,25821461,3
+liria521,25821461,-1
+89334098,25821461,4
+69432026,25821461,3
+6270415,25821461,4
+48286955,25821461,4
+134968905,25821461,4
+7510013,25821461,4
+wxhsolo,25821461,4
+106663926,25821461,4
+wsp2008,25821461,4
+124142241,25821461,4
+zooyam,25821461,4
+43628836,25821461,3
+43909634,25821461,4
+LunaticSothis,25821461,-1
+jill426,25821461,3
+41370734,25821461,4
+81930957,25821461,4
+1164443,25821461,5
+guavashine,25821461,5
+Acinom,25821461,5
+2822340,25821461,-1
+cheeseflower,25821461,4
+84252695,25821461,4
+27396956,25821461,4
+xlei130,25821461,2
+Happyprince,25821461,2
+emeline,25821461,5
+60463486,25821461,3
+37306803,25821461,3
+76413878,25821461,3
+26545118,25821461,4
+3151445,25821461,4
+56416143,25821461,5
+52967718,25821461,3
+61184196,25821461,3
+36936880,25821461,4
+RITABMW,25821461,3
+hjing1993,25821461,3
+51713291,25821461,4
+Sid,25821461,1
+aprilray,25821461,5
+4320404,25821461,3
+2429292,25821461,3
+85533858,25821461,4
+132841345,25821461,4
+ich_spreche,25821461,4
+50116920,25821461,5
+dusk.xiyang,25821461,4
+bline,25821461,4
+62673042,25821461,4
+64880714,25821461,3
+61260966,25821461,5
+60908358,25821461,3
+41680643,25821461,3
+35051709,25821461,3
+LoveHugo,25821461,5
+58520151,25821461,4
+136887989,25821461,4
+96062684,25821461,3
+Ada_quan,25821461,-1
+47709338,25821461,4
+liltwo,25821461,4
+48119351,25821461,3
+64367551,25821461,3
+liuchuanzi,25821461,4
+43297403,25821461,4
+1153279,25821461,3
+112421128,25821461,4
+121920760,25821461,4
+winnie0212,25821461,3
+1066031,25821461,5
+bunny622,25821461,5
+67681966,25821461,5
+dizzydancer,25821461,3
+49596265,25821461,5
+117836887,25821461,3
+2106137,25821461,3
+108481476,25821461,4
+49269031,25821461,4
+ydlxiaolong,25821461,4
+vanexu,25821461,4
+127466089,25821461,4
+91471590,25821461,4
+89021640,25821461,4
+52918154,25821461,2
+75776370,25821461,5
+57612915,25821461,-1
+DemiYoung123,25821461,4
+130270800,25821461,3
+135147851,25821461,3
+athenasaga,25821461,5
+34727533,25821461,4
+cyansugar,25821461,3
+45080512,25821461,4
+xingxin6,25821461,5
+52961960,25821461,4
+3741660,25821461,4
+suuunino,25821461,-1
+xilouchen,25821461,3
+132291529,25821461,5
+56938346,25821461,5
+1935613,25821461,3
+pzaiqueen,25821461,3
+ishra,25821461,4
+1631968,25821461,3
+3571623,25821461,3
+mercla,25821461,5
+foreverwait,25821461,5
+50851987,25821461,3
+chinkingman,25821461,4
+50152175,25821461,3
+96044338,25821461,3
+duoduoshuwu,25821461,2
+136738123,25821461,-1
+63612050,25821461,4
+imoviekobe,25821461,4
+46589297,25821461,4
+yoory,25821461,-1
+Carriemine,25821461,5
+91609335,25821461,4
+erhuyouxuan,25821461,4
+whateverJoan,25821461,5
+hhl199504,25821461,4
+moonisastar,25821461,4
+2600693,25821461,4
+An.s,25821461,-1
+49319979,25821461,2
+53872605,25821461,4
+15112169,25821461,5
+eto,25821461,5
+Max-66,25821461,4
+79498814,25821461,4
+adelebleu,25821461,5
+fei-never,25821461,4
+1503749,25821461,4
+3085207,25821461,4
+Kidz,25821461,1
+1892627,25821461,3
+115203825,25821461,4
+79452257,25821461,3
+106570148,25821461,3
+ceoimon,25821461,3
+96042555,25821461,3
+94000337,25821461,3
+ershisan,25821461,-1
+80936991,25821461,4
+126980247,25821461,4
+47417998,25821461,4
+50570726,25821461,5
+74106602,25821461,2
+chuqihua,25821461,4
+78757579,25821461,3
+kiki204629,25821461,4
+56270845,25821461,5
+3405132,25821461,-1
+Turkeyears,25821461,4
+71543587,25821461,3
+surejia,25821461,4
+66400312,25821461,4
+chaoshidejijie,25821461,-1
+btone0808,25821461,2
+AntheaVc,25821461,5
+AntheaVc,25821461,5
+56194836,25821461,5
+vivianlovesun,25821461,4
+qinxiaoyiqu,25821461,4
+54761457,25821461,4
+karenasong,25821461,5
+4918742,25821461,4
+121744214,25821461,4
+120835880,25821461,4
+3880942,25821461,3
+133906973,25821461,2
+48687824,25821461,4
+callmemrcoolman,25821461,3
+1978347,25821461,4
+wuxi4945,25821461,5
+52765670,25821461,5
+veronicavee,25821461,5
+38821099,25821461,4
+qiaomai,25821461,4
+merolan,25821461,2
+merolan,25821461,2
+edenhsu,25821461,4
+53559432,25821461,3
+65366516,25821461,1
+64009647,25821461,3
+73856461,25821461,2
+3421868,25821461,3
+50403801,25821461,5
+mcbird3017,25821461,4
+44849027,25821461,4
+41634233,25821461,4
+62877248,25821461,3
+sai27,25821461,5
+76858763,25821461,4
+63676625,25821461,3
+46196075,25821461,4
+lephemera,25821461,4
+58783819,25821461,1
+direvil,25821461,5
+68420280,25821461,3
+xianxianchen,25821461,3
+67823084,25821461,4
+zuiaidaluobo,25821461,4
+50900048,25821461,3
+60310098,25821461,3
+63422177,25821461,4
+87651171,25821461,1
+1233038,25821461,3
+64725454,25821461,2
+ofish0,25821461,4
+49539687,25821461,4
+43409918,25821461,2
+49326623,25821461,3
+yunxiaoj,25821461,5
+clementinetsu,25821461,4
+37965167,25821461,-1
+oliva,25821461,5
+32791958,25821461,4
+99601239,25821461,1
+yinkun,25821461,4
+50378172,25821461,5
+56396911,25821461,4
+1892501,25821461,1
+vincentjones,25821461,4
+muxiaoxu,25821461,3
+everlastingEGO,25821461,4
+50867253,25821461,4
+120496189,25821461,4
+1560232,25821461,4
+49267718,25821461,4
+1943869,25821461,4
+82722362,25821461,4
+nemomoc,25821461,4
+50875954,25821461,-1
+53247764,25821461,4
+xiaopang1106,25821461,3
+8718496,25821461,4
+goodbyelenin,25821461,4
+lunamu,25821461,4
+troublemakerjoy,25821461,4
+66860468,25821461,4
+50144933,25821461,4
+47874303,25821461,4
+kekeximi,25821461,4
+edward1988,25821461,3
+61602605,25821461,5
+catvoldemort,25821461,5
+68542833,25821461,5
+maixiaohuang,25821461,4
+Ms.G,25821461,4
+47804762,25821461,4
+ggiggle,25821461,4
+bzslovely,25821461,4
+cindyhello,25821461,5
+jkk0620,25821461,4
+ruo1996,25821461,4
+47974911,25821461,4
+enderstar,25821461,3
+35176558,25821461,4
+ALTNATIONAL,25821461,5
+yoshimi,25821461,3
+70025157,25821461,-1
+willingnotto,25821461,5
+48563980,25821461,5
+53458096,25821461,5
+2099122,25821461,5
+tristasmile,25821461,5
+59253003,25821461,4
+cat-afi,25821461,5
+38108960,25821461,5
+49893438,25821461,5
+wildold,25821461,4
+Christina63,25821461,4
+orange450046,25821461,5
+yeeeeeee,25821461,4
+43006313,25821461,3
+annia0216,25821461,4
+suisui214,25821461,5
+gisellefang,25821461,5
+Annlee1891,25821461,5
+brbaarlab,25821461,5
+dydyd_douban,25821461,3
+nancyyan,25821461,5
+Macmania,25821461,4
+WierdMinds,25821461,3
+ghlznh,25821461,-1
+thechamp,25821461,5
+millettellim,25821461,5
+43260783,25821461,4
+56571660,25821461,3
+mufishchi,25821461,4
+SOU77ESS,25821461,4
+soyas,25821461,4
+superziyi,25821461,5
+ann-in-april,25821461,5
+80066409,25821461,5
+frifriday,25821461,5
+46891725,25821461,4
+62079405,25821461,4
+impzz,25821461,5
+impzz,25821461,5
+dianero,25821461,5
+gavinqk,25821461,5
+57906332,25821461,4
+1632116,25821461,4
+xinziai,25821461,3
+yaquapril,25821461,4
+nanoButterMint,25821461,3
+2726477,25821461,4
+isabelguan,25821461,4
+60382121,25821461,4
+amoresperros,25821461,4
+ballsirius,25821461,4
+37217307,25821461,-1
+zouy1216,25821461,3
+sunshine2.0,25821461,4
+59311627,25821461,5
+Irice,25821461,4
+mavis42,25821461,4
+jamnee,25821461,4
+jamnee,25821461,4
+idiosyncraticml,25821461,4
+joycejoycejoyce,25821461,4
+anncloudy,25821461,4
+claireqq,25821461,5
+59774628,25821461,3
+1291866,25821461,4
+terry_f,25821461,-1
+39628944,25821461,-1
+4590078,25821461,5
+lea_x,25821461,5
+lilypepper,25821461,5
+66595969,25821461,4
+48062280,25821461,4
+43840561,25821461,5
+3540441,25821461,4
+YuRAY,25821461,5
+36654308,25821461,4
+Candy_Ghost,25821461,5
+heyheygun,25821461,4
+teddysun,25821461,4
+53477720,25821461,3
+MOVIE--KO,25821461,3
+Strangefamiliar,25821461,3
+raychau,25821461,4
+48363016,25821461,4
+72684898,25821461,4
+enchanted13,25821461,4
+pigpearl,25821461,5
+93733457,25821461,3
+62749551,25821461,5
+lline,25821461,5
+73955317,25821461,4
+reki2,25821461,3
+135893024,25821461,4
+c541223724,25821461,4
+31118556,25821461,4
+rockdragon,25821461,5
+XXXU,25821461,4
+upper5433,25821461,-1
+50629676,25821461,3
+1493686,25821461,3
+Byebye-mylove,25821461,4
+jason000021,25821461,5
+47917142,25821461,4
+Son47,25821461,4
+56435930,25821461,3
+2643418,25821461,4
+83188009,25821461,4
+131288571,25821461,3
+daisyx1108,25821461,4
+98942278,25821461,5
+pandawin,25821461,2
+67958148,25821461,4
+58059498,25821461,3
+56917736,25821461,2
+121148510,25821461,3
+COCOCOQUEEN,25821461,3
+catsama77,25821461,3
+suyanz,25821461,4
+28271170,21350962,3
+92610102,21350962,2
+47980331,21350962,3
+37259247,21350962,3
+43652685,21350962,2
+53728053,21350962,3
+wuxipaopao,21350962,2
+eefee,21350962,2
+WANG_RS,21350962,3
+3722910,21350962,2
+Hyke,21350962,2
+59609548,21350962,3
+40684892,21350962,3
+80209748,21350962,2
+3923065,21350962,4
+134574897,21350962,2
+71217329,21350962,3
+11080929,21350962,4
+69168057,21350962,4
+76128506,21350962,2
+huaxiyan,21350962,4
+csaver,21350962,5
+80011707,21350962,3
+74169906,21350962,2
+35003294,21350962,3
+34727533,21350962,3
+52636646,21350962,2
+51636486,21350962,3
+44284522,21350962,3
+68547609,21350962,3
+92670176,21350962,3
+53260595,21350962,3
+43921829,21350962,3
+90983705,21350962,4
+12464795,21350962,2
+hushaohan,21350962,2
+71865681,21350962,4
+winter-h,21350962,3
+kofvigo,21350962,4
+26487427,21350962,3
+67372006,21350962,2
+51734671,21350962,4
+63385457,21350962,2
+119685812,21350962,4
+62216044,21350962,5
+3090557,21350962,-1
+48050176,21350962,3
+53404081,21350962,-1
+49957530,21350962,1
+106548711,21350962,3
+131987227,21350962,3
+42808876,21350962,2
+OpenSpaces,21350962,3
+qiaomai,21350962,3
+lfy610,21350962,3
+jideknight,21350962,3
+39107236,21350962,5
+23318493,21350962,4
+88926842,21350962,4
+szuysk,21350962,3
+52061855,21350962,3
+51796463,21350962,2
+xuqianxun,21350962,2
+3078221,21350962,2
+52080305,21350962,2
+ivyforone,21350962,2
+60977504,21350962,2
+46827374,21350962,2
+4077370,21350962,3
+2827733,21350962,3
+8313519,21350962,3
+17705611,21350962,3
+61375984,21350962,4
+50073106,21350962,3
+urpk,21350962,3
+3939599,21350962,5
+53233343,21350962,1
+cloudlandlord,21350962,2
+68607460,21350962,2
+83195287,21350962,3
+cay_gene,21350962,-1
+69529350,21350962,2
+69463567,21350962,2
+giguemgigue,21350962,2
+hyocheong,21350962,2
+lhchanchen,21350962,2
+3922341,21350962,3
+renchenwei,21350962,3
+131878915,21350962,3
+84948949,21350962,1
+seafans,21350962,2
+dltmw,21350962,2
+2798381,21350962,4
+qncs,21350962,3
+34805463,21350962,4
+2305028,21350962,3
+1773768,21350962,4
+fanyichao,21350962,3
+1268296,21350962,4
+12291244,21350962,2
+67342694,21350962,3
+57966587,21350962,5
+47546589,21350962,3
+3063479,21350962,3
+49759767,21350962,2
+81645668,21350962,3
+90051465,21350962,3
+binnnn,21350962,2
+68835916,21350962,4
+43612401,21350962,2
+Ann-e,21350962,4
+49583310,21350962,2
+91656862,21350962,4
+131881210,21350962,3
+allenlooplee,21350962,4
+yangisyang,21350962,2
+agreedoes,21350962,3
+80323022,21350962,3
+33960706,21350962,2
+56970395,21350962,2
+80681000,21350962,4
+67352190,21350962,3
+4200336,21350962,2
+60140602,21350962,2
+piaoyull,21350962,3
+136272866,21350962,4
+59366761,21350962,-1
+33016220,21350962,2
+4153237,21350962,3
+52728523,21350962,3
+53559369,21350962,3
+diracot,21350962,3
+52481154,21350962,3
+38184816,21350962,2
+goodmengmeng,21350962,3
+129045691,21350962,3
+4509681,21350962,3
+84595954,21350962,3
+63363335,21350962,2
+mpower007,21350962,3
+CharlesChou,21350962,2
+47876726,21350962,4
+4469131,21350962,2
+minicatss,21350962,2
+aiwengfan,21350962,2
+92301412,21350962,2
+39543914,21350962,1
+65108877,21350962,3
+chengnanxuan,21350962,3
+71993909,21350962,2
+87390770,21350962,4
+47946267,21350962,2
+31849844,21350962,3
+30302894,21350962,3
+66575578,21350962,1
+68851209,21350962,4
+2265138,21350962,3
+51683768,21350962,2
+antony007007,21350962,3
+135724867,21350962,3
+kyo85,21350962,1
+dsqingdao,21350962,3
+81251411,21350962,2
+131632042,21350962,3
+joybang,21350962,2
+60650202,21350962,2
+caocaoa,21350962,1
+27517816,21350962,3
+1767400,21350962,2
+coldmist,21350962,3
+75555205,21350962,2
+122973986,21350962,3
+103343443,21350962,1
+72972634,21350962,3
+lotua,21350962,3
+135679613,21350962,2
+yangdy1,21350962,2
+skj,21350962,4
+74188273,21350962,3
+41842523,21350962,3
+134943005,21350962,3
+70057422,21350962,2
+3951034,21350962,3
+47461599,21350962,2
+32033776,21350962,2
+71517855,21350962,3
+49917587,21350962,2
+Fadai,21350962,1
+50414764,21350962,4
+78925849,21350962,2
+70160255,21350962,1
+tuirt,21350962,3
+nickson987,21350962,3
+52524178,21350962,3
+76417903,21350962,3
+78937198,21350962,3
+49342454,21350962,3
+72232333,21350962,3
+99598599,21350962,4
+Nichtsmoines,21350962,1
+mumucha,21350962,3
+2187326,21350962,3
+70549270,21350962,4
+72642943,21350962,3
+longnel,21350962,2
+48774263,21350962,1
+1980904,21350962,1
+2106137,21350962,3
+yojoisgod,21350962,2
+44326808,21350962,3
+k-j-p,21350962,3
+116089509,21350962,3
+52631968,21350962,3
+62688110,21350962,3
+1205451,21350962,3
+52308161,21350962,4
+47026147,21350962,3
+ccj0212,21350962,3
+Du_sunflower,21350962,3
+biexianju,21350962,4
+tijuana,21350962,2
+103247709,21350962,5
+76467871,21350962,2
+Light_L,21350962,-1
+60460597,21350962,3
+1236338,21350962,3
+136594496,21350962,4
+12873508,21350962,3
+Kevin3,21350962,4
+tywan,21350962,2
+4134812,21350962,3
+wangxiaoerhehe,21350962,3
+45139557,21350962,3
+yanxiaowen,21350962,2
+52656841,21350962,3
+65361718,21350962,2
+WitNesS-C,21350962,2
+49825242,21350962,2
+50337627,21350962,3
+33679145,21350962,3
+33679145,21350962,3
+2273276,21350962,3
+cpt21,21350962,4
+lt-2988,21350962,4
+calove,21350962,3
+80304181,21350962,3
+109239059,21350962,2
+52381766,21350962,5
+56609049,21350962,3
+1609033,21350962,4
+yyumen,21350962,3
+48591645,21350962,3
+109273896,21350962,3
+dajusha,21350962,3
+realien,21350962,3
+spicybear,21350962,4
+lagloria,21350962,2
+69530712,21350962,4
+4139518,21350962,3
+eaufavor,21350962,2
+heartbreakerkid,21350962,3
+67861218,21350962,4
+45509766,21350962,4
+12360363,21350962,3
+4286666,21350962,2
+93186343,21350962,4
+55295040,21350962,2
+83295870,21350962,2
+lsg_lsg,21350962,3
+137555231,21350962,2
+131535843,21350962,3
+84708478,21350962,1
+zhibiaoshi,21350962,3
+mouq,21350962,3
+70440245,21350962,3
+newzallery,21350962,4
+71679335,21350962,1
+85369618,21350962,-1
+100020528,21350962,2
+1078571,21350962,4
+135753239,21350962,2
+1084703,21350962,2
+3895814,21350962,3
+skyFei,21350962,1
+1943610,21350962,3
+53791114,21350962,3
+daisydann,21350962,3
+starpieces,21350962,-1
+58526834,21350962,3
+iCyBLeu,21350962,3
+mriruis,21350962,3
+buuwp,21350962,4
+43910063,21350962,3
+59164249,21350962,3
+Cryostatgirl,21350962,5
+42713356,21350962,2
+vaneptune,21350962,2
+norah6964,21350962,3
+75826878,21350962,3
+119182643,21350962,4
+2728851,21350962,3
+1176730,21350962,2
+109351948,21350962,3
+79400267,21350962,3
+124439210,21350962,4
+103735356,21350962,3
+68551392,21350962,3
+3571623,21350962,3
+1326010,21350962,3
+laviwoo,21350962,3
+66081323,21350962,3
+2625768,21350962,2
+metkee,21350962,2
+57477830,21350962,-1
+115125689,21350962,3
+134972244,21350962,2
+65111838,21350962,3
+56484149,21350962,3
+ideyes,21350962,2
+131800557,21350962,2
+2934232,21350962,3
+38489729,21350962,5
+77048663,21350962,3
+114179686,21350962,3
+redcookie,21350962,3
+13129748,21350962,2
+125474588,21350962,3
+64195325,21350962,4
+98956225,21350962,3
+88072113,21350962,4
+132392000,21350962,5
+kildren2013,21350962,3
+83513831,21350962,3
+lingrui1995,21350962,2
+44973722,21350962,3
+48247472,21350962,2
+114734252,21350962,3
+81895989,21350962,4
+gilyun,21350962,4
+sharkspeare,21350962,3
+wangzhumei,21350962,3
+51283005,21350962,3
+135662436,21350962,4
+65474816,21350962,1
+64713560,21350962,2
+16834974,21350962,2
+43308232,21350962,4
+vito0719,21350962,4
+vinnywang,21350962,3
+whz1143243564,21350962,3
+banyinxie,21350962,3
+7633150,21350962,4
+64572749,21350962,2
+49620873,21350962,2
+4486102,21350962,1
+3473162,21350962,3
+34507934,21350962,2
+53454251,21350962,3
+rurucat,21350962,1
+tobekalorce,21350962,2
+junlucy,21350962,3
+67125371,21350962,3
+71985811,21350962,2
+jaward,21350962,4
+35967033,21350962,3
+amofirenze,21350962,3
+39817838,21350962,3
+Yubk111111,21350962,3
+61021408,21350962,2
+43786893,21350962,3
+iRayc,21350962,3
+61594655,21350962,3
+baimaheizong,21350962,3
+27928039,21350962,4
+kushaf,21350962,2
+35409946,21350962,4
+45864291,21350962,3
+57824542,21350962,3
+beckham7,21350962,2
+Ronanllk,21350962,3
+66713336,21350962,4
+TiAmoWangQiXin,21350962,1
+122394685,21350962,3
+96638998,21350962,3
+lorry316,21350962,1
+129764944,21350962,3
+109417341,21350962,1
+53908274,21350962,2
+59802835,21350962,4
+1033629,21350962,2
+Broderick,21350962,2
+50629676,21350962,2
+48973534,21350962,4
+2597570,21350962,3
+88452602,21350962,3
+soucy,21350962,2
+97034712,21350962,3
+129472402,21350962,3
+50570726,21350962,3
+tlbin1989,21350962,2
+suyi1031,21350962,3
+57054575,21350962,4
+100418686,21350962,3
+44586783,21350962,3
+liancheng,21350962,3
+23049142,21350962,4
+84043997,21350962,2
+monorol,21350962,-1
+chenlijuan1003,21350962,2
+8752115,21350962,3
+holy-fishman,21350962,3
+49266863,21350962,2
+wuhuihong1992,21350962,2
+nienieli,21350962,2
+hxhj,21350962,4
+53190172,21350962,4
+91906703,21350962,3
+71985328,21350962,3
+DOPHPIRATE,21350962,3
+54463600,21350962,3
+54463600,21350962,3
+XTian0806,21350962,3
+cyrus_wong,21350962,1
+caozhuo,21350962,3
+62308831,21350962,3
+49116416,21350962,2
+88760391,21350962,1
+86638464,21350962,4
+134417369,21350962,2
+3541486,21350962,3
+meercat,21350962,3
+muer1986,21350962,3
+1898022,21350962,2
+sc43791909,21350962,3
+52415788,21350962,3
+60746988,21350962,3
+earlytalk,21350962,3
+zini8023,21350962,2
+45962163,21350962,3
+14479133,21350962,3
+yushi,21350962,3
+41694563,21350962,2
+64247507,21350962,4
+airinsky,21350962,4
+50078504,21350962,2
+roseforu,21350962,3
+89103199,21350962,3
+2759174,21350962,3
+119322563,21350962,3
+achenlydia,21350962,2
+64345409,21350962,4
+42850714,21350962,2
+54732272,21350962,2
+41805226,21350962,5
+129857538,21350962,3
+126980247,21350962,2
+macroideal,21350962,4
+liuchuanzi,21350962,2
+lcfmaple,21350962,1
+lynnesay,21350962,3
+53768020,21350962,3
+62906196,21350962,3
+60861914,21350962,2
+61183733,21350962,3
+67653468,21350962,3
+131909298,21350962,3
+136293291,21350962,-1
+Sennir,21350962,4
+2854749,21350962,-1
+66183026,21350962,4
+55573490,21350962,1
+4445926,21350962,2
+Vivi17,21350962,4
+aciv,21350962,1
+136133409,21350962,1
+87558213,21350962,4
+119201771,21350962,3
+2148283,21350962,-1
+dj7373dj,21350962,3
+blacktea077,21350962,2
+4165631,21350962,3
+ldzy,21350962,3
+3142312,21350962,3
+michaelcc,21350962,2
+88256455,21350962,1
+4446932,21350962,3
+124640229,21350962,2
+luvsherry,21350962,3
+1095652,21350962,2
+94032593,21350962,2
+impossible_ww,21350962,5
+125663520,21350962,3
+xiaosaorui,21350962,3
+121925373,21350962,3
+70923979,21350962,4
+73707994,21350962,5
+68770847,21350962,3
+137110783,21350962,2
+linxhe,21350962,3
+62187339,21350962,2
+69550899,21350962,1
+131088732,21350962,3
+84854172,21350962,3
+ycy19870313,21350962,2
+64056530,21350962,4
+53316539,21350962,3
+116267652,21350962,2
+xuanyushuo,21350962,3
+taralz0527,21350962,3
+4118910,21350962,4
+47958996,21350962,2
+ke-ke,21350962,4
+antifast,21350962,3
+136978639,21350962,4
+1233601,21350962,2
+48666472,21350962,3
+andycarpenter,21350962,3
+31630076,21350962,2
+71861591,21350962,2
+3426596,21350962,-1
+71861591,21350962,2
+3426596,21350962,-1
+jozenky,21350962,4
+58094531,21350962,3
+129556271,21350962,2
+11566740,21350962,4
+nimenime,21350962,5
+42306867,21350962,2
+Zukunft,21350962,1
+78534395,21350962,5
+60620572,21350962,4
+137070872,21350962,2
+18997911,21350962,3
+lingdongling,21350962,3
+xellgio,21350962,2
+121920760,21350962,3
+37640485,21350962,3
+outsider-hk,21350962,3
+Jasonsoso,21350962,3
+34028726,21350962,2
+nocita,21350962,3
+gezi921054,21350962,2
+sophiaforfree,21350962,2
+62436425,21350962,1
+60442939,21350962,3
+2341945,21350962,2
+wtforz,21350962,3
+68024590,21350962,3
+dylanzh,21350962,3
+59217273,21350962,3
+57665696,21350962,2
+1689067,21350962,5
+119495221,21350962,3
+Charloo,21350962,-1
+41636718,21350962,3
+64124818,21350962,2
+maskman0917,21350962,1
+55422325,21350962,5
+Ikergzy,21350962,3
+3682455,21350962,4
+45804814,21350962,2
+finalaic,21350962,4
+119313402,21350962,4
+113999648,21350962,2
+kidify,21350962,3
+132388146,21350962,4
+2227016,21350962,2
+134625303,21350962,3
+121573417,21350962,2
+largecool,21350962,2
+matthew1323,21350962,3
+lyych,21350962,4
+61212508,21350962,2
+wangmuse,21350962,3
+64163444,21350962,2
+65722669,21350962,4
+blackscreen,21350962,3
+catherine_koo,21350962,3
+54467510,21350962,5
+63218478,21350962,3
+languheshang,21350962,2
+133486848,21350962,3
+adonis72,21350962,3
+cinsmiles,21350962,1
+bebesummer,21350962,2
+111743603,21350962,-1
+19469713,21350962,3
+ultrachen,21350962,4
+4582318,21350962,2
+allanlou,21350962,4
+2603031,21350962,3
+94220348,21350962,1
+75767959,21350962,3
+131479104,21350962,2
+52241071,21350962,2
+jackalthe,21350962,3
+julia_duan,21350962,3
+janxin,21350962,3
+64375697,21350962,4
+soranya,21350962,2
+65178670,21350962,2
+Cathybebrave,21350962,3
+Skin.C,21350962,3
+79407609,21350962,4
+leechambo,21350962,2
+3429384,21350962,4
+82054541,21350962,2
+dddsy,21350962,3
+130154428,21350962,2
+winderwing,21350962,3
+tenspace,21350962,3
+51463036,21350962,3
+71400865,21350962,3
+3705182,21350962,3
+65086672,21350962,3
+127091291,21350962,5
+31043480,21350962,4
+reaco,21350962,2
+63017768,21350962,3
+littleshy,21350962,2
+115714696,21350962,3
+4369388,21350962,3
+sharkbaby,21350962,-1
+putin36,21350962,3
+Finnegans,21350962,2
+35545320,21350962,3
+endlishock,21350962,5
+amwtt,21350962,1
+92017036,21350962,3
+43390539,21350962,4
+38924619,21350962,2
+64715710,21350962,3
+24387412,21350962,3
+4314682,21350962,3
+4159460,21350962,2
+1361476,21350962,4
+agiha,21350962,2
+47810404,21350962,2
+55619717,21350962,2
+janeyyxl,21350962,2
+janeyyxl,21350962,2
+64259939,21350962,3
+1672417,21350962,1
+56203117,21350962,2
+3592617,21350962,3
+136878015,21350962,2
+36621771,21350962,2
+55596130,21350962,3
+catmic,21350962,2
+56228022,21350962,3
+50683342,21350962,4
+Just_vv,21350962,3
+44182814,21350962,2
+82456210,21350962,2
+92775477,21350962,2
+GZ,21350962,3
+130496028,21350962,2
+pierrewrs,21350962,3
+44412475,21350962,2
+87488888,21350962,3
+87488888,21350962,3
+47589972,21350962,4
+66716197,21350962,3
+27675083,21350962,3
+50233060,21350962,4
+25972265,21350962,4
+windirt,21350962,2
+wklappt,21350962,2
+49711912,21350962,3
+14247291,21350962,3
+51423653,21350962,5
+37160547,21350962,3
+64841580,21350962,3
+41693160,21350962,3
+60432679,21350962,3
+73536867,21350962,3
+3884732,21350962,3
+flower_crossing,21350962,2
+61935561,21350962,1
+Royeka.Es,21350962,3
+radiooo,21350962,2
+Aroundight,21350962,3
+41717444,21350962,2
+55677796,21350962,2
+dongxuanlan,21350962,3
+59604055,21350962,2
+calafalas,21350962,4
+72504662,21350962,4
+70043510,21350962,3
+57255280,21350962,3
+38514261,21350962,3
+60214722,21350962,4
+fanshuren,21350962,3
+59524621,21350962,3
+69068097,21350962,3
+fengzaifei,21350962,2
+115842172,21350962,3
+134232275,21350962,4
+Shawn_lecter,21350962,3
+72418572,21350962,4
+shinysky,21350962,4
+75651301,21350962,3
+91746178,21350962,2
+84637749,21350962,2
+3649265,21350962,3
+52179978,21350962,-1
+sl_player,21350962,5
+50527578,21350962,-1
+ricy-rice,21350962,2
+62497317,21350962,1
+1324079,21350962,2
+yalindongdong,21350962,2
+47025279,21350962,3
+gongzitian,21350962,2
+38461766,21350962,3
+1517235,21350962,2
+spade3,21350962,3
+85324202,21350962,2
+35736307,21350962,2
+4211678,21350962,3
+33245540,21350962,3
+nigu_lulu,21350962,3
+mailman,21350962,2
+OOXXWJW,21350962,3
+79169198,21350962,2
+watcher486,21350962,3
+quyang19930607,21350962,4
+gloriabrigida,21350962,2
+131834272,21350962,3
+99116078,21350962,2
+30067864,21350962,-1
+sleeper_arashi,21350962,4
+88393319,21350962,3
+102446060,21350962,3
+antiquezz,21350962,-1
+59960623,21350962,3
+133471355,21350962,4
+78871037,21350962,2
+35066546,21350962,3
+57025568,21350962,3
+22510137,21350962,1
+60347813,21350962,2
+hehe2day,21350962,2
+badjian,21350962,3
+1371874,21350962,3
+8802832,21350962,3
+45080512,21350962,1
+51549155,21350962,3
+136593943,21350962,1
+yadnomeulb,21350962,2
+mian11,21350962,2
+64911962,21350962,2
+90027945,21350962,3
+68664261,21350962,3
+57124272,21350962,1
+amazingcamel,21350962,3
+73307715,21350962,2
+62710966,21350962,3
+37424688,21350962,3
+lkjdafo,21350962,1
+49326502,21350962,2
+129595269,21350962,3
+48409104,21350962,3
+68244610,21350962,4
+4722347,21350962,1
+131811211,21350962,3
+andrea_tang,21350962,4
+yf611x,21350962,4
+ichigomint,21350962,3
+1363290,21350962,3
+80066409,21350962,3
+34383842,21350962,3
+115985324,21350962,2
+8079258,21350962,3
+diamondglimmer,21350962,2
+42039153,21350962,2
+INN4T3,21350962,1
+93527647,21350962,4
+1450381,21350962,3
+idontcarebitch,21350962,3
+caosl,21350962,3
+lb-fighting,21350962,2
+136173252,21350962,5
+colorwind,21350962,3
+maxmartin,21350962,4
+2718163,21350962,5
+85621966,21350962,3
+51836771,21350962,3
+47025092,21350962,2
+59451032,21350962,3
+43979908,21350962,4
+laurathealine,21350962,3
+44078114,21350962,2
+cheng4496,21350962,4
+closet,21350962,3
+w_j_y,21350962,3
+47172452,21350962,1
+58012559,21350962,2
+133794602,21350962,3
+34674400,21350962,2
+34674400,21350962,2
+zmiya,21350962,3
+62798977,21350962,3
+116908080,21350962,3
+1340085,21350962,2
+48153292,21350962,3
+ADmoviemtime,21350962,2
+131068311,21350962,3
+60504195,21350962,3
+46891725,21350962,3
+2304340,21350962,3
+robins1979,21350962,2
+charlie_xumeng,21350962,3
+127051370,21350962,3
+3331579,21350962,3
+49125983,21350962,2
+53920626,21350962,3
+68988452,21350962,2
+54030275,21350962,3
+65009709,21350962,3
+47187983,21350962,3
+42539278,21350962,3
+hher,21350962,1
+61779592,21350962,2
+136523352,21350962,2
+57404631,21350962,3
+sisyphos,21350962,3
+121146638,21350962,3
+3476767,21350962,3
+AkiranoAsahi,21350962,1
+framtid,21350962,1
+48963798,21350962,4
+61415856,21350962,2
+53362350,21350962,3
+36669166,21350962,3
+crystal53451,21350962,-1
+l592864429,21350962,3
+114809892,21350962,4
+134203219,21350962,3
+3275817,21350962,2
+1851702,21350962,3
+63403641,21350962,2
+dashizi,21350962,4
+matikr,21350962,3
+53639016,21350962,3
+75310522,21350962,3
+xizhoumei,21350962,2
+Jessica_Nangong,21350962,2
+maikocyan,21350962,1
+51542054,21350962,3
+60378678,21350962,3
+71298339,21350962,2
+67679868,21350962,2
+125741123,21350962,2
+62635497,21350962,2
+85084961,21350962,2
+wndtlkr,21350962,3
+50242818,21350962,4
+119991913,21350962,1
+tree-mu,21350962,2
+75033795,21350962,3
+47079979,21350962,-1
+51227412,21350962,4
+47199948,21350962,2
+133820326,21350962,3
+125282020,21350962,3
+134062078,21350962,3
+houjingmeng,21350962,5
+79044274,21350962,3
+kevinsy,21350962,3
+AndersonNeo,21350962,3
+62417186,21350962,4
+88101207,21350962,4
+79108534,21350962,3
+keke_flyr,21350962,4
+matt33,21350962,2
+124703569,21350962,1
+103315563,21350962,4
+xuyinaxxxxxxx,21350962,3
+austinswift,21350962,3
+32541271,21350962,3
+66023684,21350962,3
+1558709,21350962,4
+15923288,21350962,3
+fccc,21350962,3
+58543683,21350962,3
+50851987,21350962,3
+Emir-vision,21350962,2
+hudali,21350962,-1
+122616416,21350962,2
+2921812,21350962,3
+B.angus,21350962,4
+monsterkill,21350962,3
+136265610,21350962,3
+tongliyu,21350962,2
+freeyoru,21350962,4
+63927330,21350962,4
+88078787,21350962,2
+58759061,21350962,4
+64224391,21350962,3
+sigma_root,21350962,3
+134732771,21350962,2
+weizheren,21350962,2
+133380603,21350962,3
+L5.P4,21350962,3
+sillygirll,21350962,3
+42646716,21350962,3
+79240544,21350962,3
+86019559,21350962,1
+1831746,21350962,5
+63319802,21350962,3
+68747518,21350962,4
+136277670,21350962,2
+99215743,21350962,3
+130888340,21350962,3
+59290556,21350962,2
+84250012,21350962,3
+69273736,21350962,2
+zhuore,21350962,3
+52710825,21350962,3
+kuroda_sakaki,21350962,4
+JeffreyYan,21350962,-1
+67383515,21350962,3
+54113299,21350962,2
+132192126,21350962,4
+34592808,21350962,3
+47243761,21350962,3
+susidai,21350962,2
+31474682,21350962,4
+miracletan,21350962,1
+xita,21350962,2
+lidesheng,21350962,1
+71224941,21350962,4
+99977887,21350962,5
+89778884,21350962,2
+brallow,21350962,2
+82096379,21350962,3
+52917026,21350962,2
+97786845,21350962,3
+2943338,21350962,2
+abysselysion,21350962,3
+duanziyu,21350962,2
+80797429,21350962,1
+48065972,21350962,2
+kalla,21350962,3
+49900100,21350962,-1
+84047449,21350962,4
+56988288,21350962,3
+JakeNow,21350962,3
+s5ven,21350962,1
+123617593,21350962,3
+bpzhai,21350962,1
+58305570,21350962,3
+janice5680,21350962,2
+64124840,21350962,-1
+63822026,21350962,3
+riusmary,21350962,1
+77922789,21350962,3
+81197029,21350962,3
+77774632,21350962,1
+50663434,21350962,1
+marvin42,21350962,3
+36474412,21350962,4
+Chromosome,21350962,3
+btone0808,21350962,2
+verbiage,21350962,3
+lave,21350962,2
+nealwzn,21350962,3
+tsf,21350962,4
+Freedomlove,21350962,4
+50353681,21350962,3
+21767774,21350962,3
+53024139,21350962,3
+81169417,21350962,2
+lostinfire,21350962,3
+48509446,21350962,3
+121675139,21350962,3
+78601907,21350962,3
+66188129,21350962,1
+61312247,21350962,1
+MR.Pain,21350962,3
+63364633,21350962,3
+61449405,21350962,4
+89852120,21350962,3
+100154613,21350962,1
+115547734,21350962,2
+sonicyang,21350962,3
+yangcht,21350962,2
+fortanxu,21350962,3
+63592658,21350962,2
+34853215,21350962,3
+1576915,21350962,3
+49082695,21350962,3
+64740791,21350962,2
+112941907,21350962,1
+98728218,21350962,4
+babybluebb,21350962,3
+104592207,21350962,3
+Longinuss,21350962,3
+Clara0916,21350962,3
+123818120,21350962,3
+tilovefa,21350962,3
+44006704,21350962,1
+coollamb,21350962,4
+xjksama,21350962,3
+dusk.xiyang,21350962,3
+2280920,21350962,3
+tt1426,21350962,4
+60919975,21350962,3
+2094664,21350962,-1
+42132888,21350962,3
+121318701,21350962,3
+79879080,21350962,3
+4703013,21350962,3
+4364181,21350962,2
+52606809,21350962,3
+108212384,21350962,3
+arthurwen,21350962,2
+103182067,21350962,3
+Sharpay0405,21350962,3
+Sk.Young,21350962,2
+133995843,21350962,3
+2705335,21350962,3
+thinhunan,21350962,5
+Clarke,21350962,-1
+liang9527,21350962,3
+hnnyzxh,21350962,2
+59940868,21350962,3
+66096605,21350962,3
+136499591,21350962,2
+rechyo,21350962,4
+46046729,21350962,3
+dylcf,21350962,5
+hbwsbo,21350962,3
+1886385,21350962,3
+48644057,21350962,4
+Daniel-Cheung,21350962,4
+56711007,21350962,3
+66168101,21350962,3
+DDZZJ,21350962,4
+95313700,21350962,3
+action552200,21350962,1
+63923908,21350962,1
+yunxiaoj,21350962,4
+follytinge,21350962,3
+42065664,21350962,4
+43837570,21350962,4
+62742561,21350962,3
+27410191,21350962,1
+45440059,21350962,4
+103550111,21350962,3
+62761738,21350962,4
+28883826,21350962,4
+2858394,21350962,2
+48773692,21350962,1
+Joseph_8.12,21350962,5
+54112368,21350962,3
+76617762,21350962,4
+liuboyxl,21350962,2
+57742250,21350962,3
+56981196,21350962,1
+39696481,21350962,2
+70681955,21350962,3
+90847864,21350962,2
+VampirX,21350962,5
+41109416,21350962,4
+81660493,21350962,2
+jushang,21350962,2
+bora2547,21350962,2
+91721618,21350962,4
+52325322,21350962,3
+guiluo,21350962,3
+125281406,21350962,1
+60826813,21350962,3
+68656765,21350962,2
+92242218,21350962,3
+119406391,21350962,3
+xxxxxoxxxxx,21350962,3
+89847136,21350962,4
+hengacheung,21350962,3
+76621126,21350962,3
+124228223,21350962,5
+49416713,21350962,3
+40067511,21350962,2
+dear-anonymous,21350962,4
+Ophelia14,21350962,2
+66016685,21350962,2
+62498352,21350962,1
+ys1013,21350962,1
+LimpG,21350962,-1
+64779909,21350962,2
+58009000,21350962,2
+130024032,21350962,3
+88938201,21350962,3
+ricechow,21350962,2
+winnie0212,21350962,3
+54403769,21350962,3
+65912201,21350962,2
+39923615,21350962,2
+wy320,21350962,-1
+49099822,21350962,3
+zebra168,21350962,3
+75215757,21350962,3
+kevin_lu1001,21350962,3
+hichai,21350962,3
+128514178,21350962,3
+107481201,21350962,3
+14327084,21350962,4
+47317447,21350962,3
+16304195,21350962,2
+erobin,21350962,3
+yeeeeeee,21350962,3
+70571885,21350962,3
+reave,21350962,3
+deandai,21350962,4
+elppapple,21350962,2
+118090821,21350962,4
+89700756,21350962,4
+73064038,21350962,2
+faiel,21350962,2
+Son47,21350962,3
+Lazy__cat,21350962,2
+68967658,21350962,2
+24317297,21350962,-1
+4318021,21350962,2
+1077570,21350962,3
+54588630,21350962,3
+75043360,21350962,3
+51904993,21350962,1
+zhou_sheng,21350962,3
+jiajunzhi,21350962,3
+78065496,21350962,2
+Illbeamyouup,21350962,4
+2593133,21350962,4
+liujing214,21350962,2
+115131162,21350962,3
+xuaoling,21350962,4
+53833067,21350962,1
+55617091,21350962,2
+59033325,21350962,3
+TalkChan,21350962,3
+1795295,21350962,3
+45055967,21350962,4
+61898774,21350962,1
+51004773,21350962,3
+asparkle,21350962,3
+42202741,21350962,3
+42803233,21350962,3
+38256965,21350962,3
+41482074,21350962,4
+care4only1,21350962,-1
+129617606,21350962,2
+47821989,21350962,3
+62375548,21350962,3
+eternalblue,21350962,4
+Deepoxygen,21350962,1
+1651604,21350962,3
+xfile99,21350962,3
+LazyCatZ,21350962,3
+50210563,21350962,3
+134362348,21350962,3
+57409980,21350962,3
+132151907,21350962,3
+62877248,21350962,3
+33757247,21350962,3
+72639962,21350962,3
+78409802,21350962,3
+jeskovampire,21350962,2
+70933657,21350962,2
+angelababy_,21350962,3
+87818830,21350962,4
+41640054,21350962,-1
+91645081,21350962,3
+61030127,21350962,3
+83833965,21350962,3
+120966909,21350962,2
+helloivan,21350962,2
+115551507,21350962,3
+verababe,21350962,3
+101232797,21350962,3
+101232797,21350962,3
+59867809,21350962,3
+caesarzx,21350962,1
+1565707,21350962,-1
+3592750,21350962,3
+vagabonder912,21350962,4
+ferkmavie,21350962,3
+Secilia,21350962,2
+iamyzgf,21350962,2
+rockyanhua,21350962,4
+SophiaCGuo,21350962,2
+42822318,21350962,4
+kimidon,21350962,3
+38651346,21350962,3
+floraman,21350962,3
+hgn2007,21350962,5
+sable_in_red,21350962,4
+chrisWen,21350962,2
+yangfu,21350962,3
+nevertori,21350962,3
+52849543,21350962,1
+103148277,21350962,2
+Chliztian,21350962,4
+shiyun.sherry,21350962,2
+67123426,21350962,3
+piratecaptain,21350962,3
+62354535,21350962,5
+floragarfield,21350962,4
+casusu,21350962,4
+2401872,21350962,3
+79013811,21350962,2
+53416126,21350962,4
+134428824,21350962,4
+40950202,21350962,3
+ilovedraco,21350962,5
+59418689,21350962,3
+idao,21350962,5
+severus,21350962,3
+57979645,21350962,2
+66967830,21350962,3
+131602471,21350962,3
+ericandlisa,21350962,3
+2600693,21350962,1
+35963638,21350962,3
+2700292,21350962,1
+shadow_break,21350962,2
+sinfulwolf,21350962,3
+purepureheart,21350962,3
+lotuskate,21350962,4
+54131075,21350962,3
+50023640,21350962,3
+45794051,21350962,4
+3592524,21350962,-1
+Jayne_pig,21350962,3
+shine531,21350962,-1
+miracle1025,21350962,3
+1158392,21350962,3
+46004647,21350962,5
+vivie7,21350962,3
+45231087,21350962,2
+echo920905,21350962,3
+Rosier,21350962,2
+pillbug,21350962,1
+9274036,21350962,3
+nononon,21350962,2
+131913480,21350962,2
+SANDMANECW,21350962,2
+smallove816,21350962,-1
+ktXIIIjk,21350962,5
+konghanlei,21350962,2
+2920373,21350962,3
+yupian,21350962,3
+85100591,21350962,2
+yinyet,21350962,4
+turnsole,21350962,3
+38040905,21350962,3
+subuuti,21350962,2
+129760491,21350962,3
+violette,21350962,4
+42682850,21350962,2
+42682850,21350962,2
+imwiththou,21350962,5
+icemankobe,21350962,3
+eisenhajime,21350962,1
+AlienSuger,21350962,2
+leee14,21350962,3
+dmp,21350962,4
+zpvera,21350962,3
+49310157,21350962,4
+shinjong,21350962,3
+3890631,21350962,4
+46429312,21350962,2
+FinnieXu,21350962,3
+3514261,21350962,5
+jianghucrab,21350962,4
+2261797,21350962,3
+Moretoless,21350962,3
+RITABMW,21350962,4
+DesmondDAI,21350962,2
+huanxinkid,21350962,3
+37009398,21350962,2
+bunny-say,21350962,3
+89972315,21350962,3
+30461202,21350962,1
+amberose,21350962,4
+sevenbucks,21350962,3
+4234937,21350962,3
+a1553538238,21350962,-1
+vplumage,21350962,3
+izume,21350962,2
+70308764,21350962,4
+85168864,21350962,5
+133879672,21350962,3
+26157793,21350962,3
+yytaizi,21350962,4
+fenglimuren,21350962,3
+3597472,21350962,2
+4357121,21350962,3
+84384668,21350962,3
+53683391,21350962,4
+ColinMorgan,21350962,3
+SeaterWei,21350962,2
+110988180,21350962,3
+coto,21350962,3
+stevecarell,21350962,3
+13919840,21350962,3
+irisli777,21350962,4
+3670070,21350962,4
+dnarna_vicky,21350962,-1
+dick8045,21350962,2
+Leslie221,21350962,3
+teatiara,21350962,3
+renyouy,21350962,1
+shuijun,21350962,2
+58905615,21350962,2
+tigerteethzhang,21350962,4
+Jigsaw709,21350962,2
+wonderfultimes,21350962,2
+mlgg,21350962,4
+septembre,21350962,3
+39443528,21350962,3
+procxu,21350962,3
+zoelovepuppy,21350962,2
+WantonQueer,21350962,2
+34550540,21350962,3
+miserablefaith,21350962,2
+38986432,21350962,4
+51950822,21350962,3
+2632873,21350962,3
+Espange,21350962,3
+negiluka,21350962,3
+NICOLE_,21350962,2
+cxxxmonster531,21350962,3
+lohasking,21350962,2
+heity,21350962,3
+58018487,21350962,4
+silentbean,21350962,2
+93180377,21350962,1
+131838639,21350962,3
+MansonBao,21350962,3
+idiotxu,21350962,3
+MenTsung,21350962,4
+Ada_quan,21350962,-1
+56710239,21350962,4
+52111433,21350962,3
+xenia-xie,21350962,2
+vicness,21350962,3
+80722428,21350962,3
+therealfifi,21350962,3
+barbaraqin,21350962,3
+57416285,21350962,3
+85811535,21350962,3
+52523145,21350962,3
+Pabalee,21350962,4
+viterly,21350962,3
+65113325,21350962,4
+kohakukira,21350962,3
+2166426,21350962,3
+catbeartakasan,21350962,3
+2169828,21350962,4
+iris59,21350962,-1
+45600222,21350962,3
+FK621,21350962,3
+Hello.girl,21350962,5
+summer_Remember,21350962,3
+pandanian,21350962,3
+glorymanutd,21350962,2
+et2o,21350962,3
+66057217,21350962,3
+RanQixi,21350962,3
+46797478,21350962,3
+ThomasMore,21350962,4
+bekgst,21350962,4
+46340614,21350962,3
+62917415,21350962,4
+83415261,21350962,3
+Alicestormrage,21350962,-1
+yyw0306,21350962,2
+102770095,21350962,3
+59101445,21350962,3
+59101445,21350962,3
+50293215,21350962,2
+79272694,21350962,3
+2738218,21350962,3
+39051094,21350962,3
+54507832,21350962,3
+lunatique,21350962,3
+loveirina,21350962,2
+notexistatall,21350962,3
+backinblack,21350962,3
+envyandecho,21350962,3
+damon-l,21350962,3
+zillyromantic,21350962,3
+58482756,21350962,3
+33663451,21350962,3
+66028912,21350962,2
+Christina63,21350962,4
+108637207,21350962,3
+2177155,21350962,3
+36321216,21350962,2
+1780860,21350962,4
+120445406,21350962,4
+disheron,21350962,3
+PsyLadyTricky,21350962,3
+89869233,21350962,1
+119626702,21350962,2
+52137256,21350962,4
+ldf320,21350962,2
+finsy,21350962,4
+1225917,21350962,3
+Violetleite,21350962,3
+48763298,21350962,3
+77905933,21350962,3
+bushido,21350962,4
+ziyoupaifeizai,21350962,2
+lolo1220,21350962,4
+66266382,21350962,4
+34476599,21350962,-1
+93294169,21350962,4
+80063534,21350962,1
+49671837,21350962,3
+notyetdone,21350962,2
+3166954,21350962,3
+50151167,21350962,4
+shiralees,21350962,3
+1296624,21350962,2
+lovelikemagic,21350962,4
+samii,21350962,1
+64260595,21350962,3
+3122796,21350962,4
+fengqingyuexia,21350962,3
+moi.s,21350962,4
+jomey,21350962,3
+shushibi,21350962,3
+45942443,21350962,3
+49515197,21350962,3
+32023588,21350962,2
+2184780,21350962,4
+yumi-yumi,21350962,3
+ztftom,21350962,3
+passerbyv,21350962,3
+130787806,21350962,1
+stetehe,21350962,2
+ddddo,21350962,3
+4096732,21350962,3
+3419902,21350962,3
+6023961,21350962,2
+67843912,21350962,1
+49588349,21350962,5
+jimmy47,21350962,4
+cindyncindy,21350962,3
+46329517,21350962,-1
+maoduoli,21350962,4
+R.Samsara,21350962,-1
+54278419,21350962,3
+3403979,21350962,3
+3086188,21350962,2
+Summer0903,21350962,2
+landcrosser,21350962,2
+lixiaoshall,21350962,3
+jackieatdnv,21350962,3
+littlecy,21350962,4
+bettercharlot,21350962,3
+43289725,21350962,2
+4553271,21350962,3
+exvi,21350962,4
+126344543,21350962,5
+harrymoon,21350962,2
+21771687,21350962,1
+rantao,21350962,2
+55780099,21350962,2
+51342796,21350962,3
+1359052,21350962,3
+jaredc,21350962,3
+lirovise,21350962,3
+Renovatio84,21350962,3
+130386812,21350962,2
+73967200,21350962,5
+wsya,21350962,4
+lynnwhite,21350962,4
+78487387,21350962,3
+geniustar,21350962,3
+3464738,21350962,5
+4042513,21350962,2
+90548650,21350962,3
+ninoliu,21350962,1
+46169869,21350962,5
+landissey,21350962,3
+77762525,21350962,5
+chassit,21350962,3
+1383722,21350962,2
+roy325,21350962,2
+heylucyliu,21350962,2
+57613764,21350962,-1
+yaoye,21350962,3
+zuochangyu,21350962,3
+58664067,21350962,-1
+sinbone,21350962,3
+36881560,21350962,3
+4649236,21350962,3
+63534440,21350962,3
+madlab,21350962,4
+middleair,21350962,3
+47514365,21350962,2
+holyzach,21350962,5
+55680066,21350962,5
+4685727,21350962,3
+52705401,21350962,4
+shaniagao,21350962,1
+58919934,21350962,3
+3540441,21350962,2
+62915355,21350962,2
+119559372,21350962,3
+fang0079,21350962,4
+liukaco,21350962,4
+31932913,21350962,4
+83268589,21350962,3
+4202836,21350962,4
+lynn7lynch,21350962,2
+82134708,21350962,-1
+57651178,21350962,4
+63381133,21350962,4
+1657637,21350962,3
+vv_gh,21350962,4
+75645970,21350962,3
+63422177,21350962,1
+68583230,21350962,2
+87559103,21350962,4
+35591333,21350962,3
+124697172,21350962,4
+1412532,21350962,1
+donglaixia,21350962,1
+7083923,21350962,-1
+49405022,21350962,2
+lazydesigner,21350962,3
+63033488,21350962,3
+WiseUncleWu,21350962,4
+MihoKomatsu,21350962,3
+q164511490,21350962,3
+deathangel54,21350962,1
+65442139,21350962,3
+61132884,21350962,3
+silence17,21350962,3
+1390047,21350962,4
+36993897,21350962,5
+61512967,21350962,3
+MOVIE--KO,21350962,3
+50367338,21350962,4
+53644977,21350962,3
+variabled,21350962,4
+60871322,21350962,1
+Do-my-self,21350962,3
+mspengmei,21350962,2
+60577747,21350962,3
+104803569,21350962,3
+palpattine,21350962,-1
+xzyzsk7,21350962,3
+nancyyan,21350962,3
+lianghongyu,21350962,5
+bailinlin,21350962,-1
+claud,21350962,3
+fortblk,21350962,1
+66612367,21350962,5
+42188128,21350962,2
+92906741,21350962,3
+lonelysin,21350962,3
+73919831,21350962,5
+xixi9000,21350962,4
+3572503,21350962,2
+carried,21350962,3
+windson7,21350962,3
+56090963,21350962,-1
+54404280,21350962,3
+49145944,21350962,4
+vivamian,21350962,3
+heyowl,21350962,-1
+undertree,21350962,2
+44687623,21350962,4
+4058674,21350962,3
+iwei,21350962,3
+iwei,21350962,3
+oathkeeper,21350962,3
+dulllennon,21350962,1
+52943250,21350962,4
+34700595,21350962,3
+99546421,21350962,5
+win2012,21350962,3
+evey42,21350962,2
+77033669,21350962,3
+brad_tsye,21350962,2
+zra-liu,21350962,3
+fakeyou,21350962,2
+135893024,21350962,1
+53433099,21350962,3
+58401861,21350962,3
+hunmio,21350962,-1
+devilmaclulu,21350962,4
+76962577,21350962,3
+2145423,21350962,3
+ZhouQiQi1990,21350962,3
+28271170,21350962,3
+92610102,21350962,2
+47980331,21350962,3
+37259247,21350962,3
+43652685,21350962,2
+53728053,21350962,3
+wuxipaopao,21350962,2
+eefee,21350962,2
+WANG_RS,21350962,3
+3722910,21350962,2
+Hyke,21350962,2
+59609548,21350962,3
+40684892,21350962,3
+80209748,21350962,2
+3923065,21350962,4
+134574897,21350962,2
+71217329,21350962,3
+11080929,21350962,4
+69168057,21350962,4
+76128506,21350962,2
+72480107,3445457,4
+wxhsolo,3445457,4
+74856830,3445457,-1
+4557987,3445457,4
+67330888,3445457,4
+Hunjianxia,3445457,4
+potatotomato,3445457,4
+1319176,3445457,5
+35224934,3445457,4
+36086845,3445457,3
+44006704,3445457,3
+itzhaoxiangyu,3445457,4
+metkee,3445457,4
+tipseek,3445457,4
+106548711,3445457,5
+65309880,3445457,3
+7510013,3445457,3
+54984584,3445457,5
+xixione,3445457,4
+43039629,3445457,5
+2202819,3445457,4
+skay,3445457,4
+9401262,3445457,3
+marlonlieshere,3445457,3
+yutang,3445457,4
+76066640,3445457,4
+51330947,3445457,4
+51587083,3445457,4
+1778088,3445457,4
+136101337,3445457,5
+31044829,3445457,5
+51733805,3445457,4
+125313881,3445457,5
+popfeng,3445457,4
+xusisu,3445457,-1
+64242774,3445457,4
+58697566,3445457,3
+szfdouban,3445457,4
+67671170,3445457,4
+2265138,3445457,5
+40027917,3445457,3
+66764182,3445457,3
+31102423,3445457,3
+xiaoxiaonong,3445457,4
+wsgstrike,3445457,4
+39002982,3445457,4
+60392839,3445457,4
+51165620,3445457,3
+1904875,3445457,5
+62375548,3445457,4
+nbyuan,3445457,3
+Aso,3445457,4
+valewang,3445457,3
+48198537,3445457,5
+67231468,3445457,4
+4727036,3445457,5
+56856472,3445457,3
+2295492,3445457,4
+79879080,3445457,4
+66191716,3445457,4
+papaduty,3445457,4
+wenliangno1,3445457,4
+calvinlv,3445457,4
+63805238,3445457,3
+4190834,3445457,3
+UNDERMONKEY,3445457,5
+1371019,3445457,4
+99632498,3445457,3
+56922790,3445457,4
+76873283,3445457,3
+2955357,3445457,4
+1340685,3445457,4
+81685996,3445457,4
+yaole,3445457,5
+70487817,3445457,3
+91527446,3445457,5
+jessica_21,3445457,4
+caocaoa,3445457,5
+67865489,3445457,4
+14408023,3445457,4
+WillZz,3445457,3
+66557005,3445457,3
+81916004,3445457,5
+133033817,3445457,4
+regalo,3445457,4
+63873621,3445457,5
+21606016,3445457,3
+64713560,3445457,3
+68630108,3445457,4
+veronica1013,3445457,4
+1943610,3445457,3
+115886514,3445457,4
+55503051,3445457,5
+81445026,3445457,4
+Claire_Ding,3445457,4
+63225381,3445457,5
+119826470,3445457,4
+109314414,3445457,5
+61085061,3445457,4
+60274677,3445457,3
+58338006,3445457,4
+133125055,3445457,3
+71157955,3445457,5
+63785417,3445457,5
+52810889,3445457,3
+hher,3445457,3
+84943776,3445457,4
+76529709,3445457,3
+38538166,3445457,3
+2561289,3445457,5
+133858603,3445457,5
+72122656,3445457,4
+52408878,3445457,4
+coredog,3445457,3
+exex,3445457,4
+133485515,3445457,4
+98956225,3445457,3
+83747600,3445457,3
+2733941,3445457,5
+50469035,3445457,3
+ISRAFEL,3445457,4
+catsilence,3445457,3
+65735567,3445457,5
+53162024,3445457,2
+72098495,3445457,5
+83295870,3445457,4
+53559432,3445457,3
+41185421,3445457,4
+3766371,3445457,4
+63923908,3445457,3
+bobo32,3445457,4
+fontain,3445457,4
+69874247,3445457,4
+54467510,3445457,5
+42149787,3445457,4
+eiji218837,3445457,4
+75894162,3445457,3
+131909298,3445457,3
+75270004,3445457,5
+nicolelan,3445457,3
+131500891,3445457,4
+theflyingjamie,3445457,5
+75812054,3445457,4
+sooora,3445457,5
+74768790,3445457,4
+70296365,3445457,3
+madgoogle,3445457,5
+xm89757,3445457,3
+30067864,3445457,4
+zhangleyuan,3445457,3
+51898267,3445457,4
+59888468,3445457,4
+4321081,3445457,3
+127675582,3445457,5
+66716197,3445457,5
+129288424,3445457,4
+Narcisken,3445457,4
+58059972,3445457,3
+70915171,3445457,4
+49147207,3445457,4
+novich,3445457,4
+lionelwait,3445457,5
+edward1988,3445457,4
+songxuancheng,3445457,4
+67561364,3445457,5
+matthew1323,3445457,4
+131183374,3445457,4
+52852194,3445457,4
+zbar1234,3445457,5
+dun_z,3445457,5
+AndyYue,3445457,4
+28373638,3445457,4
+DalSegno,3445457,4
+66057217,3445457,3
+127797249,3445457,5
+66993627,3445457,4
+34894274,3445457,4
+x5,3445457,5
+3668297,3445457,2
+50769743,3445457,4
+102740179,3445457,4
+61111185,3445457,4
+6972638,3445457,3
+126140067,3445457,3
+53523221,3445457,4
+84652846,3445457,5
+51759111,3445457,5
+wunie,3445457,3
+45291333,3445457,4
+84593268,3445457,4
+81351219,3445457,3
+54378428,3445457,4
+2482985,3445457,4
+83188009,3445457,3
+fan_tuan,3445457,4
+127688878,3445457,4
+shrekD,3445457,3
+everlastingEGO,3445457,4
+64618863,3445457,4
+136219305,3445457,3
+1898022,3445457,4
+ge383203180xin,3445457,4
+136293291,3445457,-1
+sentexiaohu,3445457,3
+47658546,3445457,3
+36060435,3445457,2
+59378291,3445457,3
+strawman81,3445457,3
+44345461,3445457,4
+2148283,3445457,-1
+starstargoo,3445457,3
+1068202,3445457,4
+zhanggongzi,3445457,3
+84047449,3445457,4
+79201115,3445457,3
+58369888,3445457,4
+78925849,3445457,4
+65025231,3445457,4
+lorry316,3445457,4
+56454388,3445457,4
+47821989,3445457,5
+36339118,3445457,5
+61681574,3445457,3
+suixipijian,3445457,5
+ash1a1ym,3445457,4
+132025988,3445457,4
+44373773,3445457,4
+YAMAHA_GO,3445457,4
+58059498,3445457,3
+63325454,3445457,5
+56065743,3445457,4
+104409838,3445457,5
+134613226,3445457,3
+42221402,3445457,4
+64445510,3445457,4
+heyeast,3445457,5
+ps2xboxgbaxbox,3445457,3
+cocojamboo,3445457,5
+Zany.,3445457,4
+4529884,3445457,4
+gezi921054,3445457,3
+54405104,3445457,4
+130564437,3445457,4
+35929918,3445457,3
+66578884,3445457,3
+115897834,3445457,3
+79108534,3445457,3
+6270415,3445457,3
+13823787,3445457,5
+48784410,3445457,4
+51945032,3445457,4
+53362350,3445457,3
+37653990,3445457,4
+77555967,3445457,3
+78966790,3445457,4
+81850559,3445457,4
+67668223,3445457,-1
+hichai,3445457,3
+119262714,3445457,3
+zooyam,3445457,3
+colorwind,3445457,5
+barcelonazhou,3445457,3
+102938445,3445457,4
+zhaowei78,3445457,4
+59129484,3445457,5
+shinjong,3445457,3
+136903794,3445457,4
+14715966,3445457,5
+66344990,3445457,4
+45509766,3445457,5
+enderstar,3445457,2
+42376655,3445457,3
+2979287,3445457,3
+75175463,3445457,4
+122757661,3445457,4
+1947232,3445457,5
+55465032,3445457,5
+3764940,3445457,5
+48661917,3445457,4
+47425655,3445457,5
+3894055,3445457,3
+hikirres,3445457,3
+paltrow,3445457,-1
+apple-dudu,3445457,4
+5318547,3445457,4
+36936880,3445457,4
+carsick,3445457,4
+cchestnut,3445457,3
+LincolnSixEcho,3445457,3
+31466605,3445457,3
+iamdengdeng,3445457,5
+64879609,3445457,3
+55596130,3445457,3
+9054621,3445457,5
+k2,3445457,-1
+2555357,3445457,2
+huangwei0079,3445457,4
+103484667,3445457,4
+131351538,3445457,4
+78667352,3445457,5
+57398096,3445457,5
+69465675,3445457,-1
+zf468930104,3445457,5
+masaikejun,3445457,5
+119858082,3445457,3
+70034039,3445457,4
+gogo5,3445457,3
+70586246,3445457,3
+lovelyladys,3445457,5
+GMDY,3445457,4
+38652742,3445457,5
+55677796,3445457,3
+82237405,3445457,3
+4589325,3445457,4
+131352783,3445457,3
+102595989,3445457,4
+57139809,3445457,4
+65260404,3445457,4
+49713409,3445457,-1
+136333363,3445457,4
+vishalee,3445457,4
+52641872,3445457,3
+39628944,3445457,-1
+52918154,3445457,5
+59902712,3445457,4
+63110366,3445457,5
+61619787,3445457,4
+fuzyu,3445457,5
+34799839,3445457,4
+37751161,3445457,5
+2106137,3445457,-1
+42291376,3445457,3
+73084756,3445457,5
+119942879,3445457,4
+81316047,3445457,3
+114734252,3445457,3
+121920760,3445457,4
+73119546,3445457,4
+136837238,3445457,4
+59217273,3445457,4
+36013177,3445457,4
+65187145,3445457,4
+aircentee,3445457,3
+duduxiongzhifu,3445457,3
+58009329,3445457,5
+84152502,3445457,4
+laomo,3445457,4
+88951785,3445457,3
+2429292,3445457,4
+ruocun123,3445457,4
+80589934,3445457,4
+60722327,3445457,3
+tofrom,3445457,5
+54770734,3445457,4
+15342214,3445457,4
+84131231,3445457,4
+2580780,3445457,3
+mtl,3445457,4
+47845902,3445457,3
+60377456,3445457,3
+INN4T3,3445457,3
+2334493,3445457,5
+120547538,3445457,3
+32911120,3445457,4
+84390206,3445457,4
+82670007,3445457,4
+73830337,3445457,4
+46781917,3445457,-1
+62121101,3445457,5
+muer1986,3445457,4
+47633821,3445457,4
+74145867,3445457,4
+1364563,3445457,4
+59571520,3445457,4
+58878500,3445457,3
+dusk.xiyang,3445457,3
+3003169,3445457,5
+62318575,3445457,4
+macrocheng,3445457,4
+44862479,3445457,3
+104592207,3445457,3
+64880714,3445457,3
+1892627,3445457,4
+yalindongdong,3445457,3
+81913192,3445457,4
+matchbox,3445457,3
+catxiaoai,3445457,3
+crony09,3445457,4
+43771540,3445457,4
+45590222,3445457,4
+ruo1996,3445457,3
+8989333,3445457,4
+49266863,3445457,3
+83202177,3445457,3
+4391563,3445457,3
+zhangrihe,3445457,4
+1017956,3445457,4
+49076895,3445457,5
+76663316,3445457,-1
+2388590,3445457,4
+85288278,3445457,4
+96044338,3445457,4
+3571623,3445457,4
+120480108,3445457,3
+80437815,3445457,4
+83484959,3445457,4
+98547691,3445457,5
+67987921,3445457,4
+3322308,3445457,3
+shelockcrc,3445457,3
+HanHi,3445457,4
+65442139,3445457,3
+bananacm,3445457,3
+56914134,3445457,3
+65445656,3445457,4
+61633382,3445457,4
+1651604,3445457,4
+mmmpgcd,3445457,4
+45863415,3445457,4
+65545100,3445457,4
+oraclefrank,3445457,5
+2777003,3445457,3
+IridescentSin,3445457,5
+1795295,3445457,3
+67679868,3445457,4
+116055027,3445457,5
+duanziyu,3445457,3
+69218509,3445457,4
+13053957,3445457,3
+1029394,3445457,3
+47755926,3445457,4
+120358201,3445457,3
+dahuilang15656,3445457,3
+wind_gxh,3445457,5
+8802832,3445457,4
+newbear,3445457,4
+liux516,3445457,4
+JustStayReal,3445457,4
+janice5680,3445457,3
+xiaopangcherry,3445457,4
+78656769,3445457,4
+130657915,3445457,4
+62737941,3445457,4
+snowbusy,3445457,3
+beckham4ever,3445457,4
+xiaoaifansion,3445457,3
+gdpan,3445457,5
+matikr,3445457,4
+guyewuzhe,3445457,3
+108077404,3445457,4
+btone0808,3445457,3
+82391952,3445457,4
+sugarman638,3445457,5
+CallaPussy,3445457,4
+136689269,3445457,5
+84638987,3445457,5
+50319429,3445457,4
+57497232,3445457,3
+100294226,3445457,5
+dizebra,3445457,3
+52128308,3445457,3
+66710303,3445457,4
+47564941,3445457,4
+103124319,3445457,5
+92364458,3445457,5
+76365309,3445457,5
+81244293,3445457,4
+121318701,3445457,4
+dutianxiong,3445457,3
+51045384,3445457,4
+BackToNight,3445457,4
+47357292,3445457,4
+yangui,3445457,4
+126980247,3445457,4
+59127988,3445457,4
+devilnue,3445457,5
+fox116,3445457,5
+flightalone,3445457,5
+3178602,3445457,4
+119318539,3445457,5
+106347535,3445457,4
+87035372,3445457,3
+70954003,3445457,3
+84564093,3445457,4
+51179038,3445457,3
+50663434,3445457,3
+45712857,3445457,5
+Ask,3445457,4
+45238478,3445457,4
+seafans,3445457,4
+89852120,3445457,3
+100637778,3445457,3
+rajorAn,3445457,4
+sinceiloveu,3445457,3
+stolee,3445457,3
+numenazy,3445457,4
+China.He,3445457,4
+60763444,3445457,4
+81385890,3445457,5
+128111484,3445457,-1
+64218724,3445457,4
+2174443,3445457,5
+74553304,3445457,5
+3560717,3445457,3
+RemyAnderson,3445457,-1
+isabella_tk,3445457,2
+115590835,3445457,4
+45455917,3445457,4
+3643017,3445457,5
+38258575,3445457,5
+131125229,3445457,3
+42368147,3445457,3
+61260966,3445457,5
+njtintin,3445457,3
+l---j,3445457,4
+14327084,3445457,4
+81404706,3445457,3
+3903753,3445457,4
+nightmare505,3445457,4
+slimseven,3445457,3
+slimseven,3445457,3
+68990799,3445457,5
+mufengqin,3445457,3
+43409918,3445457,3
+52039512,3445457,5
+cyrus_wong,3445457,4
+74499406,3445457,3
+42106999,3445457,3
+5485569,3445457,5
+silent_island,3445457,3
+70990506,3445457,3
+96062684,3445457,4
+44457357,3445457,3
+andrewrhao,3445457,4
+44412475,3445457,4
+nangle,3445457,3
+1631968,3445457,3
+49269031,3445457,3
+82687720,3445457,3
+luoyang11405,3445457,3
+70134774,3445457,4
+magic1029,3445457,3
+muxiaoxu,3445457,3
+108636262,3445457,4
+xilouchen,3445457,3
+106663926,3445457,5
+63531003,3445457,5
+ljjchn,3445457,4
+ritz,3445457,4
+joyjay,3445457,5
+46815070,3445457,3
+40595579,3445457,4
+lukaka,3445457,3
+63730928,3445457,3
+38397417,3445457,5
+nieblalan,3445457,4
+19243879,3445457,4
+wood0913,3445457,4
+2203673,3445457,3
+1806463,3445457,3
+87651171,3445457,3
+59113427,3445457,3
+59774628,3445457,3
+york_wu,3445457,5
+92468807,3445457,4
+pengyaos,3445457,4
+75043360,3445457,3
+4398857,3445457,4
+2788057,3445457,5
+50210563,3445457,3
+jeansolove,3445457,3
+65366516,3445457,3
+afterthis,3445457,4
+3656028,3445457,5
+ILWTFT,3445457,3
+63422177,3445457,4
+50032889,3445457,4
+43649189,3445457,5
+58863205,3445457,2
+moviecafe,3445457,3
+maohei,3445457,4
+zeph1462,3445457,5
+34092145,3445457,2
+yinkun,3445457,2
+rudygiraffe,3445457,3
+53644977,3445457,4
+104600854,3445457,5
+conanemily,3445457,3
+3540441,3445457,3
+vickychen110,3445457,4
+shezaizuyi,3445457,4
+7609988,3445457,4
+4347027,3445457,4
+87863211,3445457,3
+mackalex,3445457,3
+fishy,3445457,4
+89984750,3445457,4
+cb1030,3445457,4
+79865158,3445457,4
+53247764,3445457,4
+cabaret,3445457,4
+YuRAY,3445457,3
+MOVIE--KO,3445457,4
+johnsnow,3445457,4
+1867292,3445457,4
+51833331,3445457,3
+79262344,3445457,3
+119744329,3445457,4
+aayayaya,3445457,3
+65369148,3445457,3
+heptahedron,3445457,3
+119559372,3445457,4
+dawenxi,3445457,3
+18586571,3445457,4
+chinriya,3445457,3
+ttt0000,3445457,3
+115547734,3445457,3
+1632116,3445457,4
+twoherb,3445457,-1
+terenceyibo,3445457,3
+83756975,3445457,-1
+29844884,3445457,3
+lea_x,3445457,3
+63611898,3445457,4
+3028189,3445457,4
+33050798,3445457,5
+61389070,3445457,4
+yacasy,3445457,4
+hjy332016,3445457,4
+andert,3445457,4
+yiechow,3445457,3
+53438708,3445457,3
+kypyy,3445457,4
+SouthLateWinter,3445457,3
+lsh1,3445457,4
+2406761,3445457,4
+36419478,3445457,4
+71207673,3445457,3
+135574091,3445457,4
+137511577,3445457,4
+72480107,3445457,4
+wxhsolo,3445457,4
+74856830,3445457,-1
+4557987,3445457,4
+67330888,3445457,4
+Hunjianxia,3445457,4
+potatotomato,3445457,4
+1319176,3445457,5
+35224934,3445457,4
+36086845,3445457,3
+44006704,3445457,3
+itzhaoxiangyu,3445457,4
+metkee,3445457,4
+tipseek,3445457,4
+106548711,3445457,5
+65309880,3445457,3
+7510013,3445457,3
+54984584,3445457,5
+xixione,3445457,4
+43039629,3445457,5
+131503183,10773239,4
+73530411,10773239,3
+39584121,10773239,4
+1271021,10773239,5
+63929108,10773239,5
+61619787,10773239,3
+Robert_Cpc,10773239,4
+26897119,10773239,5
+64707906,10773239,5
+132132858,10773239,4
+122258109,10773239,4
+helloldq,10773239,5
+morningmiao0819,10773239,4
+kingflower,10773239,2
+116073490,10773239,4
+64242774,10773239,4
+93007927,10773239,5
+121148510,10773239,3
+46138752,10773239,3
+48541726,10773239,4
+1314588,10773239,3
+58338006,10773239,4
+josiezs,10773239,4
+60600742,10773239,4
+56435930,10773239,4
+53370159,10773239,4
+122834615,10773239,5
+3641355,10773239,4
+131233204,10773239,5
+80704682,10773239,4
+54327177,10773239,2
+129670010,10773239,4
+60987007,10773239,3
+kelvinshaw,10773239,3
+103614841,10773239,5
+gloria1102,10773239,3
+46767985,10773239,4
+sai27,10773239,3
+60864856,10773239,4
+4643817,10773239,2
+46666599,10773239,3
+78370041,10773239,4
+64164384,10773239,5
+61085061,10773239,4
+xiaocaomeifay,10773239,5
+54611627,10773239,4
+59898887,10773239,5
+xizhijun,10773239,3
+skylabay,10773239,5
+1210493,10773239,4
+132399094,10773239,3
+71848127,10773239,3
+1574861,10773239,5
+55325883,10773239,3
+58612152,10773239,3
+2048402,10773239,5
+2750778,10773239,3
+52878910,10773239,-1
+2164915,10773239,4
+92919500,10773239,4
+53278902,10773239,5
+98249073,10773239,4
+122932689,10773239,4
+moca87,10773239,4
+57784370,10773239,5
+121920760,10773239,3
+126708539,10773239,5
+52852194,10773239,4
+64107417,10773239,3
+67004506,10773239,4
+88659862,10773239,4
+65105804,10773239,4
+136088336,10773239,5
+spaghettiss,10773239,4
+71589272,10773239,4
+77799876,10773239,3
+50348086,10773239,3
+62504399,10773239,5
+51445817,10773239,4
+futoublog,10773239,4
+besupposedto,10773239,2
+39362601,10773239,4
+tlgn0430,10773239,4
+44811675,10773239,4
+3706515,10773239,4
+41758984,10773239,3
+bigsnaky,10773239,-1
+peggyzhu,10773239,5
+3943144,10773239,4
+47034241,10773239,5
+136792202,10773239,4
+shaesum,10773239,5
+137814359,10773239,4
+130541613,10773239,5
+19734042,10773239,4
+58096357,10773239,3
+masaikejun,10773239,3
+51965596,10773239,4
+128422906,10773239,4
+44483182,10773239,4
+telegraph,10773239,4
+137350189,10773239,4
+hljmsfy,10773239,3
+49358861,10773239,3
+57758414,10773239,4
+92427949,10773239,5
+93825881,10773239,4
+31698933,10773239,3
+131187465,10773239,5
+87853134,10773239,3
+50579554,10773239,3
+80561643,10773239,5
+afterdead,10773239,5
+132463662,10773239,4
+46997070,10773239,4
+135610617,10773239,5
+136509793,10773239,3
+killsusie,10773239,3
+16807244,10773239,4
+freebox,10773239,3
+QQQQQQQla,10773239,4
+90616646,10773239,3
+137221434,10773239,4
+131909298,10773239,4
+studyzy,10773239,5
+63105886,10773239,3
+48966304,10773239,4
+82262295,10773239,3
+95148578,10773239,4
+52183902,10773239,5
+52508494,10773239,5
+65832475,10773239,4
+67370268,10773239,2
+homedrama,10773239,3
+65869124,10773239,5
+43845160,10773239,3
+131787614,10773239,3
+42832142,10773239,5
+qiushengtang,10773239,3
+131761032,10773239,4
+49351576,10773239,4
+70519062,10773239,2
+46728828,10773239,4
+36601365,10773239,3
+62210177,10773239,4
+48406181,10773239,4
+128955983,10773239,5
+80079876,10773239,3
+97365571,10773239,5
+gracegsmile,10773239,5
+69439267,10773239,3
+43004579,10773239,4
+49376492,10773239,5
+3003169,10773239,5
+135745978,10773239,4
+73784914,10773239,2
+Cgj111,10773239,5
+127457458,10773239,4
+85119913,10773239,5
+45351745,10773239,3
+njust_ITer_1991,10773239,5
+43083123,10773239,3
+122656795,10773239,4
+115051698,10773239,4
+79059134,10773239,5
+76500537,10773239,5
+37853313,10773239,3
+BennyB,10773239,5
+80763196,10773239,5
+86253613,10773239,4
+129057188,10773239,5
+67330888,10773239,5
+98956225,10773239,2
+81685996,10773239,4
+44412603,10773239,4
+kongyinmingye,10773239,5
+61276700,10773239,4
+emchan,10773239,4
+87546829,10773239,4
+1523711,10773239,5
+75667669,10773239,2
+137129598,10773239,5
+47100950,10773239,4
+131020888,10773239,3
+82075343,10773239,4
+44292349,10773239,4
+coldcall,10773239,4
+47037959,10773239,3
+53454251,10773239,4
+59276802,10773239,2
+72097640,10773239,4
+sukijuri,10773239,5
+MrMia,10773239,3
+130937021,10773239,4
+meizu2016,10773239,3
+jacoxu,10773239,4
+84263251,10773239,4
+119372898,10773239,5
+52652829,10773239,4
+42665673,10773239,4
+121806653,10773239,4
+122858309,10773239,4
+TiAmoWangQiXin,10773239,3
+123220825,10773239,4
+49041524,10773239,4
+135466412,10773239,4
+xiaoheng1116,10773239,5
+87298117,10773239,5
+lyntsubasa,10773239,5
+127080746,10773239,4
+70680445,10773239,-1
+77319228,10773239,5
+46190025,10773239,4
+42337387,10773239,4
+75740449,10773239,4
+l592864429,10773239,4
+spwwl,10773239,3
+AnYeChuanXing,10773239,4
+kildren2013,10773239,3
+wch2020,10773239,4
+119247583,10773239,3
+119084646,10773239,3
+122274250,10773239,4
+65025231,10773239,5
+yoky,10773239,5
+1740354,10773239,4
+9463369,10773239,4
+2571322,10773239,4
+58497726,10773239,4
+131034480,10773239,4
+46818877,10773239,3
+133335985,10773239,4
+46462063,10773239,3
+52158790,10773239,4
+136420676,10773239,3
+130817915,10773239,5
+61945985,10773239,4
+82269433,10773239,5
+122944258,10773239,4
+83662787,10773239,4
+3297100,10773239,5
+137206904,10773239,4
+135487682,10773239,3
+45278107,10773239,4
+55335684,10773239,3
+76295495,10773239,4
+62705311,10773239,3
+IkaIIIUku,10773239,5
+65791600,10773239,4
+135248605,10773239,4
+52883078,10773239,5
+60981662,10773239,5
+64713560,10773239,4
+55934911,10773239,4
+127347148,10773239,5
+49335696,10773239,4
+84020070,10773239,2
+123002309,10773239,3
+70313784,10773239,4
+67727072,10773239,4
+137058479,10773239,4
+on1ooker,10773239,3
+45069650,10773239,4
+132938345,10773239,4
+130952703,10773239,4
+tujianting,10773239,5
+43244299,10773239,4
+131402261,10773239,4
+130563496,10773239,5
+137058497,10773239,3
+123404476,10773239,4
+72660093,10773239,5
+65635790,10773239,4
+59583944,10773239,4
+61024723,10773239,4
+42556657,10773239,4
+kamine,10773239,3
+131025711,10773239,4
+68632898,10773239,4
+134625303,10773239,4
+4245970,10773239,2
+123001004,10773239,4
+68630108,10773239,3
+90412571,10773239,3
+137076197,10773239,4
+echo520f1,10773239,4
+137073841,10773239,4
+137070872,10773239,3
+61015297,10773239,4
+48179852,10773239,5
+64252611,10773239,4
+44096316,10773239,4
+70469575,10773239,4
+y19940504,10773239,4
+3003736,10773239,5
+122868077,10773239,4
+60002715,10773239,3
+70195308,10773239,4
+123105162,10773239,4
+16460262,10773239,4
+130445057,10773239,3
+1319464,10773239,5
+53227132,10773239,4
+136333363,10773239,4
+2760834,10773239,5
+bctc,10773239,4
+shengqingyue,10773239,5
+124076510,10773239,3
+83274268,10773239,4
+45717339,10773239,5
+omgjingjing,10773239,4
+29662178,10773239,4
+earthchild,10773239,4
+summermaoyi,10773239,4
+119867722,10773239,4
+joanna0728,10773239,4
+vigilgt,10773239,3
+44578565,10773239,5
+113285477,10773239,3
+79560195,10773239,3
+1891993,10773239,4
+onlysassy,10773239,4
+120830060,10773239,4
+91054460,10773239,5
+thisisisabella,10773239,-1
+64810171,10773239,4
+yukiloh,10773239,3
+57142558,10773239,4
+52499368,10773239,4
+57383545,10773239,2
+47587289,10773239,3
+3925373,10773239,5
+kiethope,10773239,3
+4495771,10773239,5
+54783858,10773239,3
+127131340,10773239,4
+zdoudou,10773239,4
+A989898,10773239,5
+14369952,10773239,5
+52076370,10773239,4
+58901835,10773239,3
+did-it,10773239,4
+59244982,10773239,5
+125650125,10773239,3
+61754773,10773239,4
+xiki.m,10773239,4
+1122936,10773239,5
+mirror-y,10773239,4
+104347602,10773239,4
+chenmiaoyang,10773239,5
+2632979,10773239,-1
+54090532,10773239,4
+133065964,10773239,4
+dusk.xiyang,10773239,3
+Vinceshen,10773239,4
+24639587,10773239,4
+109548241,10773239,4
+42674885,10773239,3
+97917605,10773239,3
+4190834,10773239,4
+dakusaido,10773239,3
+60573283,10773239,4
+tutudance,10773239,4
+imoviemaker,10773239,3
+57848317,10773239,5
+103533221,10773239,3
+jennychang,10773239,4
+128353754,10773239,3
+58903847,10773239,5
+77222475,10773239,4
+134891014,10773239,4
+julingshen,10773239,3
+99692207,10773239,4
+51870876,10773239,4
+48561660,10773239,4
+125758030,10773239,4
+yjybibby,10773239,4
+39975348,10773239,4
+1324079,10773239,3
+21606016,10773239,4
+xyc1987,10773239,5
+134417369,10773239,4
+robinjrt,10773239,4
+97152342,10773239,-1
+135079919,10773239,4
+131987227,10773239,5
+121460001,10773239,5
+102594722,10773239,4
+1690690,10773239,4
+67160845,10773239,2
+70694742,10773239,4
+61289790,10773239,4
+79104613,10773239,3
+3435038,10773239,4
+65795567,10773239,4
+129577459,10773239,2
+75096447,10773239,4
+vanexu,10773239,4
+56966752,10773239,4
+74150414,10773239,4
+gunneryx,10773239,4
+46285519,10773239,3
+109868590,10773239,3
+50304819,10773239,5
+fengyue12358,10773239,4
+63462794,10773239,5
+134884392,10773239,5
+58927688,10773239,4
+68190189,10773239,-1
+45155872,10773239,4
+54455379,10773239,4
+wondersue,10773239,3
+134574897,10773239,4
+windirt,10773239,4
+grace0327,10773239,3
+so-it-is,10773239,4
+53144206,10773239,4
+136323962,10773239,5
+49065754,10773239,1
+45935605,10773239,2
+45935605,10773239,2
+iiDonkey,10773239,-1
+52216845,10773239,5
+24369298,10773239,3
+91140276,10773239,4
+2825367,10773239,4
+Erdbeeren,10773239,5
+walkingtime,10773239,4
+menethil,10773239,5
+majolica,10773239,5
+2388590,10773239,4
+45890616,10773239,3
+127760481,10773239,4
+130896859,10773239,5
+q164511490,10773239,5
+45174381,10773239,4
+103415530,10773239,4
+3204643,10773239,4
+104397819,10773239,5
+holynight,10773239,-1
+holynight,10773239,-1
+52968030,10773239,4
+chobit.w,10773239,4
+61536847,10773239,3
+43978378,10773239,3
+37620368,10773239,4
+3634776,10773239,4
+amao1412,10773239,4
+xinen,10773239,5
+jiangjianxiao,10773239,4
+4116226,10773239,4
+121622673,10773239,5
+leexiaoxiao,10773239,3
+63150042,10773239,-1
+88172434,10773239,5
+emilychoy,10773239,5
+maodou_,10773239,5
+52046312,10773239,3
+75762298,10773239,4
+47838456,10773239,4
+47838456,10773239,4
+cangbaicanku,10773239,4
+59543064,10773239,5
+65675496,10773239,5
+robinchenjiang,10773239,3
+134748999,10773239,5
+xlei130,10773239,3
+134528559,10773239,4
+135629558,10773239,4
+gdpan,10773239,5
+33914811,10773239,-1
+wangmuse,10773239,5
+little_cupid,10773239,3
+53477033,10773239,3
+52726734,10773239,5
+129527421,10773239,5
+136223897,10773239,4
+DoraDorara,10773239,4
+2978891,10773239,4
+tatoo,10773239,4
+70310265,10773239,4
+19224434,10773239,4
+renth,10773239,3
+46338692,10773239,5
+LoveHugo,10773239,5
+2275412,10773239,4
+50603452,10773239,5
+2449818,10773239,3
+50405161,10773239,3
+cool123cool,10773239,3
+evanie2046,10773239,4
+128063403,10773239,4
+43409918,10773239,3
+115897834,10773239,5
+119081444,10773239,4
+70006917,10773239,4
+lalamie,10773239,4
+3956478,10773239,4
+shirers,10773239,5
+128836726,10773239,4
+onlymelody,10773239,4
+58899374,10773239,3
+sodajulia,10773239,5
+121916264,10773239,4
+135694361,10773239,4
+55333217,10773239,4
+huoLayfeng,10773239,5
+96388706,10773239,4
+103191068,10773239,4
+1386491,10773239,5
+wuhuihong1992,10773239,3
+3340797,10773239,5
+SldneyZhang,10773239,5
+36581508,10773239,3
+85981309,10773239,3
+66399520,10773239,3
+EricBiao,10773239,4
+4883944,10773239,5
+landcontinent,10773239,4
+52316841,10773239,5
+dengxian123,10773239,4
+110664087,10773239,4
+Xsoda,10773239,4
+69168173,10773239,4
+29827748,10773239,5
+3766371,10773239,4
+123997874,10773239,5
+55531622,10773239,5
+132341201,10773239,3
+50010079,10773239,4
+dingguanglin,10773239,4
+79855798,10773239,4
+49384394,10773239,4
+40237768,10773239,3
+87082148,10773239,5
+1205451,10773239,3
+136209318,10773239,5
+28587995,10773239,4
+82371523,10773239,5
+57255280,10773239,5
+25676059,10773239,4
+97277841,10773239,5
+67577717,10773239,5
+fritzar,10773239,5
+131977440,10773239,5
+64933961,10773239,4
+jiandanjiuhaio,10773239,-1
+66686350,10773239,4
+2162982,10773239,4
+JustStayReal,10773239,4
+45985032,10773239,5
+3940617,10773239,4
+133254262,10773239,5
+25394516,10773239,4
+65698345,10773239,5
+AkiranoAsahi,10773239,4
+gsherwin,10773239,3
+x.sunday,10773239,4
+36329991,10773239,5
+2849990,10773239,3
+2849990,10773239,3
+103480987,10773239,5
+48619599,10773239,1
+52899567,10773239,5
+67077471,10773239,3
+96497379,10773239,4
+52278915,10773239,5
+85179488,10773239,4
+tom926,10773239,3
+60596975,10773239,5
+14451354,10773239,5
+125592796,10773239,5
+34628842,10773239,3
+5894610,10773239,3
+69313361,10773239,5
+63733166,10773239,5
+44470643,10773239,5
+43030795,10773239,4
+55930112,10773239,4
+4378228,10773239,4
+88262083,10773239,4
+107718660,10773239,4
+126929965,10773239,5
+mrfengge,10773239,5
+87910708,10773239,5
+95968737,10773239,4
+58964778,10773239,5
+54065263,10773239,5
+54183087,10773239,4
+45572942,10773239,5
+4405668,10773239,3
+49983823,10773239,3
+63136253,10773239,4
+83089085,10773239,5
+huilingxi,10773239,4
+laiquziyouIris,10773239,5
+sajie,10773239,5
+82507807,10773239,4
+duoduoshuwu,10773239,3
+xianxiansushou,10773239,4
+16910877,10773239,5
+38850701,10773239,5
+102912620,10773239,2
+green198641,10773239,4
+52872697,10773239,4
+4617488,10773239,3
+mashushu,10773239,4
+1669108,10773239,4
+govgouviiiiiiii,10773239,5
+45291333,10773239,4
+43975366,10773239,5
+134194471,10773239,4
+sunreturn,10773239,4
+66552525,10773239,4
+53346531,10773239,5
+64184921,10773239,4
+47618742,10773239,4
+2260580,10773239,4
+73731178,10773239,5
+67150876,10773239,5
+52734180,10773239,4
+135731721,10773239,5
+54232655,10773239,4
+73156181,10773239,5
+49319979,10773239,4
+132235046,10773239,5
+79875260,10773239,4
+120008046,10773239,3
+45975893,10773239,4
+65612558,10773239,4
+68163340,10773239,4
+1298150,10773239,4
+2655191,10773239,4
+86469978,10773239,5
+35547072,10773239,5
+42368147,10773239,2
+tamiwang,10773239,5
+134495648,10773239,3
+mai_k,10773239,5
+3481297,10773239,4
+zaohe,10773239,4
+92139778,10773239,5
+53443769,10773239,4
+84176426,10773239,5
+caocaoa,10773239,3
+OpenSpaces,10773239,5
+Yu-Tommy,10773239,5
+125010605,10773239,4
+justsay,10773239,3
+zhongshanaoli,10773239,4
+tofrom,10773239,3
+59904891,10773239,4
+allanlou,10773239,4
+dadajiaozhu,10773239,4
+freya1919,10773239,4
+A.Plus,10773239,4
+1165091,10773239,3
+1094032,10773239,3
+46276510,10773239,4
+91752037,10773239,3
+73948805,10773239,4
+122031722,10773239,3
+59164945,10773239,4
+41634233,10773239,5
+jiayu0923,10773239,5
+childdream,10773239,5
+62314563,10773239,4
+61640481,10773239,4
+lalalaSun1022,10773239,-1
+55850316,10773239,5
+1406185,10773239,4
+edward2wong,10773239,4
+sunqianze,10773239,-1
+2820792,10773239,5
+60191465,10773239,5
+127603477,10773239,4
+xiaodao102,10773239,4
+54101827,10773239,5
+CatherXiao,10773239,3
+49022504,10773239,5
+2448099,10773239,5
+1786804,10773239,2
+50217070,10773239,5
+63927330,10773239,4
+59942467,10773239,5
+121282615,10773239,5
+77114225,10773239,4
+zy5h,10773239,4
+4520580,10773239,5
+89399541,10773239,4
+54757798,10773239,5
+xuanmg,10773239,5
+103148277,10773239,3
+133906973,10773239,5
+47514694,10773239,5
+60310098,10773239,4
+Wyc1,10773239,5
+3039896,10773239,5
+zangbianxuegu,10773239,3
+rainhao,10773239,4
+Swing105,10773239,-1
+36743264,10773239,5
+46936953,10773239,3
+icy_,10773239,5
+47129931,10773239,3
+66766065,10773239,5
+69406009,10773239,5
+GHOSTJIN,10773239,4
+60468202,10773239,4
+58209087,10773239,5
+58125563,10773239,4
+Black_Star,10773239,4
+72061303,10773239,4
+75322883,10773239,4
+61797911,10773239,4
+55290189,10773239,4
+51086058,10773239,5
+foleyfan,10773239,3
+54105776,10773239,4
+69164081,10773239,4
+69192951,10773239,5
+vforvv,10773239,5
+120408223,10773239,4
+44349387,10773239,5
+staryanxing,10773239,5
+69973045,10773239,3
+62113049,10773239,5
+41850911,10773239,5
+4711830,10773239,5
+38737800,10773239,4
+chris_Cody,10773239,5
+xuyinaxxxxxxx,10773239,4
+56905320,10773239,5
+laycher,10773239,5
+58591290,10773239,4
+51909421,10773239,4
+80845935,10773239,4
+89467395,10773239,4
+67112573,10773239,5
+46144446,10773239,4
+45484403,10773239,4
+46098710,10773239,4
+76200653,10773239,5
+av13,10773239,2
+gaoxiafang,10773239,3
+38839922,10773239,5
+foenix,10773239,5
+xiaoqianguo,10773239,3
+63793789,10773239,4
+60376200,10773239,3
+hou7,10773239,-1
+46385811,10773239,4
+77017255,10773239,4
+xiaoyuhekeer,10773239,5
+48014611,10773239,5
+ovanisho,10773239,4
+130993032,10773239,5
+43562341,10773239,2
+3799579,10773239,4
+2366858,10773239,5
+69072673,10773239,3
+jaycee103,10773239,4
+looktwice,10773239,4
+50785660,10773239,5
+yuanoz,10773239,2
+63781325,10773239,5
+77886672,10773239,3
+2770592,10773239,5
+48286955,10773239,4
+7292654,10773239,4
+120828757,10773239,5
+68585121,10773239,3
+demondeng,10773239,5
+70323086,10773239,4
+juech171,10773239,4
+1280092,10773239,4
+134489537,10773239,5
+shienboO99z,10773239,4
+fansherlocked,10773239,2
+infante,10773239,4
+infante,10773239,4
+49162672,10773239,4
+42628691,10773239,4
+66840319,10773239,4
+86248756,10773239,4
+Kwanzi,10773239,4
+89528523,10773239,5
+64277816,10773239,4
+lova_fan,10773239,4
+54660213,10773239,5
+surfire1206,10773239,5
+kgbbeer,10773239,4
+14113539,10773239,5
+43560923,10773239,4
+Aurore.C,10773239,4
+133118810,10773239,3
+alabataille,10773239,4
+6303192,10773239,2
+69574803,10773239,5
+73715669,10773239,4
+73715669,10773239,4
+4709296,10773239,5
+1892627,10773239,3
+itzhaoxiangyu,10773239,-1
+58697566,10773239,-1
+nownowwan,10773239,5
+60366003,10773239,4
+50192238,10773239,-1
+wanwan______,10773239,1
+131730057,10773239,2
+133125055,10773239,4
+62317789,10773239,5
+51571478,10773239,4
+120287477,10773239,3
+4013382,10773239,4
+52464033,10773239,4
+76515207,10773239,5
+cappuccino-jl,10773239,3
+60834627,10773239,5
+46721798,10773239,4
+34842183,10773239,4
+christopherlin,10773239,3
+huiverci,10773239,4
+121321169,10773239,4
+85135062,10773239,5
+65011068,10773239,1
+35224934,10773239,5
+58110144,10773239,4
+AllanBen,10773239,4
+72978621,10773239,5
+68327060,10773239,3
+2227016,10773239,2
+4678247,10773239,5
+51897080,10773239,5
+53560863,10773239,4
+linchuzhuang,10773239,5
+120654245,10773239,4
+131485100,10773239,5
+1334269,10773239,4
+53027731,10773239,4
+84100874,10773239,4
+vivifyvivi,10773239,3
+32608753,10773239,4
+loverowe,10773239,4
+74106602,10773239,3
+dapao7738,10773239,4
+bingoooooo,10773239,5
+50347814,10773239,4
+KUBRICK2OO1,10773239,2
+36627836,10773239,3
+135097592,10773239,5
+42695400,10773239,4
+114435379,10773239,3
+66319252,10773239,5
+pbc0615,10773239,4
+52712309,10773239,5
+49079570,10773239,3
+43621347,10773239,5
+2834895,10773239,4
+120172771,10773239,3
+41017931,10773239,4
+65376509,10773239,5
+134161390,10773239,5
+84573367,10773239,4
+hss18384939520,10773239,5
+58543683,10773239,5
+3513677,10773239,3
+54898944,10773239,4
+58123651,10773239,4
+xcyangel111,10773239,4
+82177383,10773239,5
+wanghuzou,10773239,4
+gongzitian,10773239,3
+67388709,10773239,5
+3571623,10773239,5
+soul92114,10773239,4
+shahua,10773239,5
+szdd,10773239,4
+59711389,10773239,5
+16031234,10773239,-1
+57262819,10773239,4
+88132855,10773239,3
+126980247,10773239,5
+SHOUYOU,10773239,3
+moxiLQ,10773239,5
+hong526653838,10773239,3
+29839010,10773239,4
+34694249,10773239,4
+43005070,10773239,3
+87694483,10773239,4
+62498830,10773239,5
+fishlittle,10773239,4
+92411376,10773239,4
+46037656,10773239,4
+Mobius.wang,10773239,4
+126183742,10773239,4
+dustblue,10773239,3
+83110463,10773239,4
+84093369,10773239,3
+73331491,10773239,5
+90551968,10773239,4
+SaxaTamija,10773239,5
+1381698,10773239,5
+37927926,10773239,5
+ccushuaia1220,10773239,-1
+44045443,10773239,3
+2677937,10773239,2
+xiaopang1106,10773239,5
+DoDoangell,10773239,4
+bdlcS,10773239,4
+31772056,10773239,5
+66227708,10773239,4
+4096272,10773239,4
+iyyhua,10773239,4
+69848404,10773239,4
+92399399,10773239,3
+holdingtt,10773239,4
+99074736,10773239,3
+55916506,10773239,4
+49721814,10773239,4
+26696495,10773239,2
+zhengkangkang,10773239,4
+74418129,10773239,4
+2298833,10773239,4
+48973065,10773239,3
+101516177,10773239,4
+48877341,10773239,5
+sentimento-rose,10773239,3
+66970039,10773239,3
+70413922,10773239,3
+53126913,10773239,4
+3323980,10773239,4
+50092555,10773239,3
+AlanSheen,10773239,-1
+59872953,10773239,4
+121511870,10773239,4
+57591346,10773239,3
+Awesomez,10773239,4
+givindream,10773239,5
+115787279,10773239,4
+60333709,10773239,1
+50139701,10773239,3
+98625316,10773239,5
+suuunino,10773239,2
+105864771,10773239,3
+44610838,10773239,4
+3845314,10773239,3
+75940485,10773239,4
+92569558,10773239,4
+40783225,10773239,4
+81296522,10773239,4
+14597192,10773239,3
+zzerica,10773239,5
+maydays81,10773239,4
+XenFOne,10773239,5
+83484959,10773239,3
+clarkk,10773239,5
+null12345,10773239,4
+64886603,10773239,5
+viliyo,10773239,3
+slowwalker,10773239,3
+60880337,10773239,5
+84135690,10773239,4
+blueskyfly,10773239,3
+xingyinfa,10773239,4
+jammy48,10773239,4
+49060712,10773239,3
+128535871,10773239,-1
+4638925,10773239,4
+123346219,10773239,4
+60357094,10773239,3
+12360363,10773239,4
+99078833,10773239,5
+91604108,10773239,3
+Stephen2046,10773239,5
+D-cherry,10773239,4
+45076514,10773239,4
+Cgangs,10773239,-1
+40027917,10773239,4
+shadowfoxxuan,10773239,4
+77318318,10773239,4
+karsa,10773239,5
+79027376,10773239,4
+49663773,10773239,5
+3851155,10773239,5
+kiplinghu,10773239,4
+80659174,10773239,5
+65588257,10773239,4
+46766450,10773239,3
+48972391,10773239,5
+yuan425,10773239,4
+57026267,10773239,4
+100229529,10773239,5
+longsuiyun,10773239,5
+ffei593,10773239,4
+79383062,10773239,2
+40116451,10773239,5
+53049553,10773239,4
+mercikill,10773239,-1
+52386668,10773239,5
+119063618,10773239,4
+81404706,10773239,4
+2566410,10773239,-1
+81893070,10773239,3
+nicoleding,10773239,5
+134632462,10773239,4
+40684892,10773239,4
+61801657,10773239,4
+84010010,10773239,-1
+70790963,10773239,4
+lionlsh,10773239,4
+22930383,10773239,4
+LincolnSixEcho,10773239,3
+34543110,10773239,4
+53682563,10773239,4
+46979178,10773239,5
+d8day,10773239,5
+70619574,10773239,3
+3065272,10773239,5
+81962971,10773239,4
+50402097,10773239,4
+34585399,10773239,3
+120779558,10773239,3
+48072909,10773239,3
+101067288,10773239,5
+83269650,10773239,3
+3446088,10773239,4
+weizheren,10773239,4
+Minimalis,10773239,3
+46712687,10773239,2
+62347727,10773239,5
+131551681,10773239,5
+104890249,10773239,5
+49529006,10773239,2
+14260607,10773239,4
+49273541,10773239,4
+120556407,10773239,3
+showeryoung,10773239,4
+59777760,10773239,5
+l309788500,10773239,5
+61504169,10773239,4
+yikexin12,10773239,4
+Rurutia7,10773239,3
+47155108,10773239,5
+122420292,10773239,4
+bearblindman,10773239,5
+ki-jlp,10773239,4
+53608504,10773239,4
+yuuuummy,10773239,3
+101549160,10773239,5
+Xia0_K,10773239,3
+48369826,10773239,5
+84652846,10773239,3
+miaoza,10773239,5
+49051976,10773239,-1
+115958498,10773239,4
+terranceZC,10773239,5
+LillianLuan,10773239,5
+xiongkaihang,10773239,4
+liaorenee,10773239,3
+121057399,10773239,5
+46499372,10773239,4
+2600693,10773239,3
+74641801,10773239,3
+66993627,10773239,4
+133914507,10773239,5
+84309358,10773239,4
+qingdaofu,10773239,5
+65725947,10773239,4
+laijiojio,10773239,1
+64446670,10773239,5
+49555978,10773239,5
+43814222,10773239,5
+73871573,10773239,4
+92516233,10773239,4
+1587535,10773239,5
+64739790,10773239,4
+67007418,10773239,4
+55571572,10773239,5
+68732725,10773239,4
+68732725,10773239,4
+lovesheng,10773239,4
+2106137,10773239,3
+96638998,10773239,5
+ran52000,10773239,5
+63912359,10773239,4
+87838848,10773239,4
+85108077,10773239,5
+63934272,10773239,4
+52371666,10773239,4
+2420853,10773239,4
+54512951,10773239,4
+18635744,10773239,5
+2917148,10773239,3
+131129670,10773239,5
+carinawang,10773239,3
+131900820,10773239,4
+61012713,10773239,4
+anmao,10773239,4
+47417998,10773239,4
+47417998,10773239,4
+49145683,10773239,5
+40728608,10773239,4
+pii3you,10773239,4
+3969339,10773239,4
+mengtianjun,10773239,-1
+48676614,10773239,3
+M1racle,10773239,4
+105008682,10773239,5
+fuckoffpussy,10773239,4
+74022856,10773239,5
+60222551,10773239,5
+83601248,10773239,4
+83787429,10773239,5
+114487129,10773239,4
+qinyouxuan,10773239,5
+2119013,10773239,4
+124061437,10773239,5
+79970005,10773239,-1
+silencewong,10773239,4
+57179724,10773239,3
+38371308,10773239,5
+35135916,10773239,3
+60819367,10773239,3
+BritpopStarFeel,10773239,3
+Lin-,10773239,4
+54780204,10773239,4
+53800394,10773239,5
+justsoso80s,10773239,3
+35360002,10773239,4
+133793253,10773239,5
+74894651,10773239,5
+53504947,10773239,-1
+131632042,10773239,4
+norlesamourai,10773239,-1
+luerdelphic,10773239,5
+chidaoshu,10773239,4
+132172419,10773239,3
+49004115,10773239,4
+95767683,10773239,3
+82096379,10773239,5
+prince-bei,10773239,5
+14408023,10773239,5
+134324511,10773239,5
+82629572,10773239,3
+43308232,10773239,5
+99761346,10773239,5
+wrdeam,10773239,4
+41263739,10773239,5
+40581527,10773239,4
+61905540,10773239,2
+CANCER75,10773239,3
+78656769,10773239,5
+Michellekids,10773239,3
+130069802,10773239,5
+87783033,10773239,4
+love-99,10773239,5
+joyjay,10773239,5
+58376944,10773239,3
+74053506,10773239,4
+74053506,10773239,4
+82072691,10773239,5
+phoebe0_0nn,10773239,5
+37504538,10773239,3
+echodtatu,10773239,5
+zhouyou0717,10773239,4
+133296826,10773239,4
+67310334,10773239,5
+DCBinseven,10773239,4
+alphy,10773239,4
+65104793,10773239,3
+52277845,10773239,4
+87852350,10773239,3
+12919014,10773239,5
+ido_idoing,10773239,2
+78544069,10773239,3
+yetmeaningless,10773239,2
+58421094,10773239,4
+jiayouqiufeng,10773239,4
+49073345,10773239,2
+78966790,10773239,3
+cocojamboo,10773239,3
+yvone1220,10773239,4
+124027537,10773239,5
+45789022,10773239,5
+daniboy,10773239,5
+119533372,10773239,-1
+53378505,10773239,4
+ruanzebang,10773239,4
+120996153,10773239,4
+yY.,10773239,4
+74768790,10773239,4
+60645894,10773239,5
+schilthorn,10773239,-1
+130154428,10773239,4
+82562378,10773239,4
+adonis72,10773239,4
+antilo,10773239,4
+50886843,10773239,4
+zhawl,10773239,4
+MaxinAn,10773239,4
+23416699,10773239,4
+yueryu,10773239,5
+68804843,10773239,4
+63008915,10773239,3
+hanrui0204,10773239,4
+4361727,10773239,1
+2654815,10773239,4
+63833151,10773239,5
+4596244,10773239,5
+changx,10773239,5
+daphneluo,10773239,5
+116044095,10773239,3
+35012892,10773239,-1
+pianohood,10773239,5
+120162458,10773239,4
+130132099,10773239,3
+134198005,10773239,5
+2322719,10773239,4
+wangjingyin,10773239,3
+wangjia0702,10773239,4
+65902578,10773239,3
+57821710,10773239,3
+51683792,10773239,3
+62677053,10773239,4
+47347838,10773239,4
+64776955,10773239,5
+ARREN,10773239,4
+paradoxwill,10773239,5
+lovelyting58,10773239,4
+23262980,10773239,5
+2667938,10773239,4
+62540914,10773239,4
+1211087,10773239,4
+flowervirus,10773239,5
+57001880,10773239,3
+hey_zhan,10773239,5
+27891262,10773239,4
+55630387,10773239,5
+48102561,10773239,3
+1558354,10773239,4
+79008626,10773239,3
+17692199,10773239,3
+sj1_1ei,10773239,4
+102221538,10773239,3
+33722118,10773239,5
+66269073,10773239,4
+56198518,10773239,4
+catfacegirl,10773239,4
+94000337,10773239,4
+miaotuanzi,10773239,3
+kocymars,10773239,3
+snowwjq,10773239,4
+67682492,10773239,5
+1452797,10773239,3
+guitarain,10773239,4
+58545738,10773239,5
+132192126,10773239,4
+83432844,10773239,4
+2658066,10773239,5
+58509595,10773239,4
+46039273,10773239,5
+62451151,10773239,4
+61196519,10773239,5
+36872538,10773239,5
+51208655,10773239,5
+73856461,10773239,5
+57511259,10773239,5
+47996487,10773239,-1
+bLue.C,10773239,3
+42029452,10773239,4
+49198824,10773239,3
+52932994,10773239,3
+17147202,10773239,5
+78937198,10773239,4
+91567656,10773239,3
+47565928,10773239,4
+31954151,10773239,4
+44105688,10773239,3
+51953711,10773239,5
+60188894,10773239,5
+misswell,10773239,5
+49585135,10773239,5
+falent,10773239,5
+rabbityear,10773239,5
+68172611,10773239,-1
+94786667,10773239,5
+84969413,10773239,3
+77905447,10773239,-1
+ran4027,10773239,5
+71887351,10773239,2
+1133756,10773239,4
+1793084,10773239,4
+56386044,10773239,5
+ytismile,10773239,4
+58375992,10773239,4
+54876127,10773239,5
+56777779,10773239,4
+75624548,10773239,5
+yanranaduo,10773239,4
+50667944,10773239,4
+toxy,10773239,5
+37918404,10773239,-1
+85811535,10773239,3
+44056562,10773239,3
+43773144,10773239,5
+81316047,10773239,4
+hellopunk,10773239,5
+83143884,10773239,3
+1907882,10773239,5
+xiaoxiao9492,10773239,5
+50054594,10773239,3
+4588595,10773239,4
+61328119,10773239,4
+41660790,10773239,5
+xieyixi,10773239,4
+puffman,10773239,5
+85245609,10773239,3
+mr121,10773239,3
+58562865,10773239,4
+60274677,10773239,3
+15338047,10773239,3
+47114271,10773239,5
+taylormay,10773239,5
+41089034,10773239,-1
+48480901,10773239,4
+66295147,10773239,1
+60591590,10773239,5
+50890852,10773239,4
+35051709,10773239,4
+133997393,10773239,3
+proust999,10773239,4
+92893963,10773239,4
+64981286,10773239,4
+120913568,10773239,5
+66973670,10773239,5
+Fienix,10773239,4
+53794132,10773239,4
+xtrats,10773239,4
+85734464,10773239,5
+119999330,10773239,4
+92945557,10773239,3
+4804072,10773239,-1
+50663566,10773239,4
+94715443,10773239,5
+62610096,10773239,4
+72536627,10773239,5
+3312608,10773239,4
+51606142,10773239,2
+azureINBLUR,10773239,3
+47258009,10773239,4
+zydBB,10773239,3
+3634800,10773239,5
+pekoisagirl,10773239,5
+68213997,10773239,3
+25982397,10773239,3
+84698736,10773239,5
+3887848,10773239,5
+81760631,10773239,5
+46949606,10773239,5
+64700587,10773239,3
+45463936,10773239,4
+66794531,10773239,4
+78925849,10773239,4
+120695517,10773239,4
+27945420,10773239,4
+44387904,10773239,4
+54415980,10773239,3
+oyxp,10773239,4
+1958405,10773239,5
+shiiirley,10773239,5
+aking,10773239,4
+49556694,10773239,5
+57045979,10773239,5
+66087282,10773239,4
+yoory,10773239,-1
+sunnybest,10773239,4
+2921449,10773239,3
+93190703,10773239,4
+52961473,10773239,4
+Jaytaoo,10773239,5
+languheshang,10773239,4
+49182642,10773239,5
+thehours_lxx,10773239,4
+68424766,10773239,3
+2350018,10773239,4
+48168328,10773239,5
+Fionsay,10773239,4
+elizabethwang,10773239,4
+superzoe1219,10773239,4
+3712644,10773239,5
+46256555,10773239,4
+4171802,10773239,4
+63119659,10773239,3
+65664176,10773239,5
+80803700,10773239,4
+luoyunxiang72,10773239,4
+Cyder,10773239,4
+67758880,10773239,4
+dancealone,10773239,5
+guyewuzhe,10773239,3
+echozhan,10773239,3
+41130036,10773239,4
+49028231,10773239,2
+EdwardLear,10773239,5
+47285151,10773239,4
+61398424,10773239,4
+62737807,10773239,4
+68597225,10773239,4
+4688576,10773239,4
+louis4498,10773239,4
+120542127,10773239,4
+63873567,10773239,5
+127688878,10773239,5
+119583067,10773239,5
+33973051,10773239,3
+susimai,10773239,3
+67137878,10773239,4
+zhaoru,10773239,4
+love_my_dog,10773239,5
+love_my_dog,10773239,5
+kp81ndlf,10773239,4
+Toyeeeee,10773239,5
+nancyindream,10773239,4
+48092760,10773239,5
+67547256,10773239,5
+77186305,10773239,4
+46184375,10773239,3
+128468373,10773239,4
+lephemera,10773239,3
+Mr.Island,10773239,-1
+HYW,10773239,4
+66230509,10773239,5
+59786510,10773239,5
+70354931,10773239,5
+50774706,10773239,4
+formeswong,10773239,3
+yaozhilan,10773239,4
+doubanbaojun,10773239,4
+4433954,10773239,4
+120358201,10773239,5
+58480988,10773239,4
+49611742,10773239,4
+45789849,10773239,5
+Artiewatchmovie,10773239,5
+68102477,10773239,4
+lincolnhong,10773239,3
+daneimitan008,10773239,5
+44392983,10773239,4
+vincent_77,10773239,3
+67615408,10773239,5
+36253770,10773239,3
+3880844,10773239,4
+51483335,10773239,4
+52635394,10773239,3
+57538254,10773239,4
+40853957,10773239,4
+bulijite,10773239,4
+hong324,10773239,4
+53722280,10773239,4
+88073919,10773239,3
+sevenVSseven,10773239,3
+Johannisberg,10773239,4
+sjch,10773239,4
+64880714,10773239,2
+huiha,10773239,4
+angalny,10773239,3
+133516099,10773239,5
+57651140,10773239,4
+1259506,10773239,4
+63859433,10773239,4
+65369148,10773239,3
+ecroment,10773239,4
+traylor,10773239,3
+83879581,10773239,5
+63331578,10773239,5
+kblexel,10773239,5
+stompbabe,10773239,4
+70173493,10773239,4
+53932283,10773239,4
+34765454,10773239,4
+68982698,10773239,3
+haizor,10773239,5
+118812578,10773239,5
+96661826,10773239,5
+Coreasshole,10773239,4
+8718496,10773239,4
+doubandayima,10773239,3
+41540943,10773239,4
+75869572,10773239,5
+4340710,10773239,3
+53064989,10773239,4
+127324447,10773239,5
+wuxi4945,10773239,3
+108821133,10773239,4
+73507935,10773239,5
+BruceBack,10773239,3
+LailaiET,10773239,3
+97779949,10773239,4
+61506971,10773239,4
+61506971,10773239,4
+61504628,10773239,4
+80923059,10773239,3
+candicechang,10773239,4
+75118396,10773239,5
+anison,10773239,3
+64757557,10773239,5
+dd54,10773239,4
+ishra,10773239,3
+13307772,10773239,4
+47633821,10773239,4
+hichai,10773239,5
+48746387,10773239,5
+2901407,10773239,5
+WXFAN,10773239,5
+113171403,10773239,5
+56480029,10773239,4
+heyflower,10773239,5
+Ashtrayyyyy,10773239,5
+98956501,10773239,4
+littlestoner,10773239,4
+120964846,10773239,4
+54597801,10773239,3
+violinyuki,10773239,5
+120895686,10773239,4
+73061172,10773239,5
+33684021,10773239,4
+51777015,10773239,4
+75965960,10773239,5
+59137046,10773239,4
+xiaohundaban,10773239,2
+67026649,10773239,4
+85109921,10773239,5
+flxjp,10773239,3
+52228251,10773239,4
+126008793,10773239,5
+Ghostlin,10773239,5
+82847789,10773239,4
+lushangrensheng,10773239,4
+48518214,10773239,5
+64725454,10773239,4
+56973040,10773239,3
+4143335,10773239,4
+yusquid,10773239,4
+11137381,10773239,-1
+90051465,10773239,3
+mayxoxo,10773239,3
+SleeplessQueen,10773239,3
+98588124,10773239,-1
+99826769,10773239,5
+4242859,10773239,4
+48156038,10773239,3
+67072789,10773239,5
+phoebe9982,10773239,4
+53252879,10773239,4
+zhuoweather,10773239,5
+41842523,10773239,1
+133680477,10773239,5
+48300398,10773239,5
+56369104,10773239,4
+56369104,10773239,4
+46705875,10773239,4
+47190944,10773239,4
+54043321,10773239,3
+54631317,10773239,5
+1776736,10773239,5
+43354228,10773239,4
+aitiaowudemeng,10773239,5
+nini8328,10773239,2
+68972539,10773239,4
+1786605,10773239,3
+84567467,10773239,5
+14836914,10773239,4
+xiaoranbao,10773239,4
+82980188,10773239,4
+51234730,10773239,5
+liugedian,10773239,3
+43703010,10773239,3
+73947236,10773239,5
+1369113,10773239,2
+71408490,10773239,4
+58523083,10773239,3
+88213659,10773239,5
+huachai1021,10773239,4
+56765956,10773239,-1
+juanjuan1984,10773239,4
+75168640,10773239,5
+yifengraner,10773239,4
+99598599,10773239,3
+50763897,10773239,4
+28271170,10773239,4
+72657219,10773239,5
+79506720,10773239,4
+shiyoushian,10773239,4
+121042228,10773239,-1
+53416381,10773239,5
+44619943,10773239,4
+52104896,10773239,4
+35546528,10773239,5
+45484348,10773239,5
+40692692,10773239,5
+75328137,10773239,4
+61580324,10773239,4
+53806726,10773239,4
+47873718,10773239,5
+49754687,10773239,3
+raniii,10773239,5
+132449743,10773239,5
+28314639,10773239,-1
+doingcando,10773239,3
+133623050,10773239,5
+60923783,10773239,-1
+133620700,10773239,5
+iamgriffin,10773239,4
+53590675,10773239,5
+76452322,10773239,-1
+3298204,10773239,4
+4200336,10773239,2
+44574545,10773239,4
+133593177,10773239,4
+naiz3583685,10773239,4
+heraunty,10773239,4
+amzyangyk,10773239,4
+88077335,10773239,4
+Edie.Chang,10773239,-1
+80346808,10773239,4
+C37twocold,10773239,-1
+71809535,10773239,-1
+Dasiycat,10773239,4
+74818677,10773239,3
+61016995,10773239,5
+shasha9022,10773239,4
+115750334,10773239,5
+Holacomida,10773239,4
+alianhei,10773239,5
+69117478,10773239,4
+65087582,10773239,4
+51482168,10773239,4
+wuzouhuanghun,10773239,4
+86851971,10773239,4
+51472613,10773239,3
+trianglecat,10773239,3
+Obtson,10773239,3
+dingDX,10773239,4
+steal-someone,10773239,5
+60848897,10773239,5
+2420665,10773239,4
+raincoat1115,10773239,-1
+50570726,10773239,4
+hakuhaku,10773239,3
+75215757,10773239,3
+MUSELILYS,10773239,-1
+108077404,10773239,3
+62879944,10773239,3
+68311988,10773239,1
+53022241,10773239,5
+39757002,10773239,5
+53229163,10773239,4
+54816766,10773239,5
+123250951,10773239,3
+63040433,10773239,4
+glorymanutd,10773239,4
+18081083,10773239,5
+15716080,10773239,5
+63132023,10773239,5
+antee,10773239,4
+AeroAnte,10773239,4
+thomsonkoo,10773239,3
+122556292,10773239,3
+LeiSilver,10773239,5
+parism,10773239,5
+nengyinyibeiwu,10773239,4
+54543581,10773239,5
+jenniferxiao,10773239,3
+76161583,10773239,5
+cyisbroken,10773239,5
+33538142,10773239,5
+wllh2345,10773239,5
+120830012,10773239,4
+heloisehexiao,10773239,-1
+43185799,10773239,5
+53055862,10773239,4
+leeyzh,10773239,4
+3249318,10773239,4
+59340784,10773239,4
+YWC,10773239,4
+likecake,10773239,4
+takizawa,10773239,5
+ivy532,10773239,4
+cilar,10773239,4
+50319429,10773239,4
+4040058,10773239,3
+46742077,10773239,4
+53430352,10773239,5
+57734564,10773239,4
+joyce1991,10773239,4
+15098138,10773239,3
+28346145,10773239,4
+120564093,10773239,4
+124536699,10773239,5
+55283261,10773239,4
+55888632,10773239,4
+96891194,10773239,5
+50775215,10773239,4
+79091050,10773239,3
+Watermonster,10773239,5
+4357598,10773239,4
+Year0201,10773239,5
+62401840,10773239,3
+J7N,10773239,4
+75169318,10773239,3
+92340097,10773239,-1
+69939429,10773239,4
+32311749,10773239,3
+106019096,10773239,4
+bonniekillu,10773239,3
+GracieG,10773239,3
+4292817,10773239,4
+73868761,10773239,3
+4355421,10773239,5
+jyuelovejay,10773239,5
+81107474,10773239,3
+chaiyanchao,10773239,4
+19789619,10773239,4
+38548988,10773239,4
+JarsunCrow2957,10773239,5
+Jsadx,10773239,4
+54234447,10773239,5
+54447945,10773239,5
+52160935,10773239,4
+16851519,10773239,5
+paco,10773239,3
+96365067,10773239,5
+72225494,10773239,4
+somewhereland,10773239,5
+49355592,10773239,5
+quadoooo,10773239,4
+70214878,10773239,5
+81850559,10773239,3
+59993815,10773239,2
+59993815,10773239,2
+61078362,10773239,4
+6923590,10773239,4
+81586403,10773239,4
+64104549,10773239,5
+68699271,10773239,3
+mandeeeee,10773239,4
+15535572,10773239,5
+44486984,10773239,4
+70446008,10773239,5
+41823520,10773239,4
+76789340,10773239,4
+80726886,10773239,4
+Van07,10773239,4
+2005598,10773239,4
+80433862,10773239,4
+116695354,10773239,5
+53900071,10773239,4
+wangxiaoqing,10773239,5
+tobekalorce,10773239,4
+45517976,10773239,5
+3151785,10773239,4
+54083120,10773239,4
+74217185,10773239,4
+8523675,10773239,4
+3139594,10773239,4
+14363390,10773239,4
+62489520,10773239,5
+122416010,10773239,3
+71026194,10773239,5
+kloccd,10773239,5
+tanzhengyun,10773239,4
+1795295,10773239,4
+anantitheist,10773239,3
+49794211,10773239,5
+wstl,10773239,5
+eskimo_lee,10773239,5
+53656219,10773239,4
+detail-shot,10773239,5
+3317072,10773239,4
+30218761,10773239,4
+133471355,10773239,2
+49255582,10773239,5
+tobbylovestobby,10773239,4
+46713517,10773239,4
+120645527,10773239,3
+71879999,10773239,5
+86734236,10773239,4
+96992534,10773239,3
+manymanyny,10773239,4
+3439248,10773239,4
+2586114,10773239,4
+51124303,10773239,4
+alternative,10773239,4
+3772330,10773239,4
+cijunbutileng,10773239,5
+kahosense,10773239,5
+xiongxiong1994,10773239,4
+58012559,10773239,4
+92504226,10773239,5
+37619405,10773239,5
+wangxiaobei89,10773239,5
+72783015,10773239,4
+59769443,10773239,4
+57473807,10773239,5
+53908274,10773239,3
+Jessie816,10773239,5
+1480836,10773239,5
+44006704,10773239,3
+1459659,10773239,4
+57101279,10773239,3
+129278118,10773239,5
+iswh,10773239,4
+montcalgary,10773239,5
+68795801,10773239,4
+42841062,10773239,5
+50851987,10773239,2
+2428233,10773239,4
+hakueiluvjonne,10773239,4
+4553271,10773239,3
+4553271,10773239,3
+51617797,10773239,5
+3742491,10773239,3
+81335043,10773239,4
+63586324,10773239,4
+91851250,10773239,4
+65399283,10773239,4
+109381843,10773239,3
+loli_ta_,10773239,5
+cangjie1900,10773239,3
+4280782,10773239,4
+4657028,10773239,3
+119559372,10773239,4
+upyougo,10773239,5
+50624143,10773239,4
+1603592,10773239,5
+70034039,10773239,4
+3352510,10773239,4
+36458457,10773239,3
+104365503,10773239,4
+100054657,10773239,4
+FrozenShow,10773239,4
+southstarj,10773239,3
+tocend,10773239,3
+104881508,10773239,1
+logai,10773239,5
+105023809,10773239,4
+52473311,10773239,5
+40446795,10773239,3
+julyhaha,10773239,5
+59164249,10773239,4
+lonelyloner,10773239,5
+66066002,10773239,3
+127725727,10773239,4
+51977317,10773239,5
+kingkongofkhan,10773239,3
+hnnyzxh,10773239,3
+126613880,10773239,5
+Korever,10773239,4
+iloveEminem,10773239,4
+blackbanana3Y,10773239,4
+43779419,10773239,4
+l.don,10773239,3
+3441451,10773239,3
+121761822,10773239,4
+71141044,10773239,5
+anitajoy,10773239,3
+lwx624,10773239,4
+70026542,10773239,5
+toyshen,10773239,3
+45633608,10773239,5
+53195450,10773239,4
+soyimmen,10773239,5
+64459545,10773239,4
+92238375,10773239,5
+longestname,10773239,3
+73312122,10773239,4
+46018704,10773239,4
+48028421,10773239,4
+52915843,10773239,4
+52915843,10773239,4
+57674944,10773239,3
+49433742,10773239,4
+freshvege,10773239,4
+3634203,10773239,4
+Guoshushu,10773239,4
+48899980,10773239,5
+54220607,10773239,4
+131506547,10773239,5
+57597596,10773239,5
+76777124,10773239,4
+yxy321,10773239,4
+haman,10773239,5
+49539687,10773239,4
+74123608,10773239,-1
+51048386,10773239,5
+68399998,10773239,4
+51191835,10773239,4
+50451911,10773239,4
+vradica,10773239,4
+48047032,10773239,3
+66057217,10773239,4
+71861591,10773239,3
+84899568,10773239,3
+53512949,10773239,5
+bearlost,10773239,2
+3588917,10773239,4
+91138119,10773239,2
+58956706,10773239,3
+34544680,10773239,4
+49266863,10773239,3
+60808695,10773239,3
+51236215,10773239,5
+127771292,10773239,4
+kevinrise,10773239,4
+121304565,10773239,5
+44939590,10773239,4
+linzexu,10773239,5
+longya,10773239,3
+3202437,10773239,4
+airstory,10773239,-1
+MOON_CHUNG,10773239,5
+52111442,10773239,5
+65854158,10773239,4
+54653189,10773239,2
+3540441,10773239,2
+1840162,10773239,4
+67843385,10773239,4
+gov,10773239,4
+eleven_k,10773239,4
+88951785,10773239,3
+46832337,10773239,4
+50271595,10773239,4
+98632982,10773239,4
+50947152,10773239,5
+57633355,10773239,5
+FlowerCharlotte,10773239,4
+HL0919,10773239,4
+3592617,10773239,4
+56071242,10773239,4
+58992948,10773239,3
+duxiaoyu,10773239,4
+briefyyq,10773239,4
+50739519,10773239,3
+4154813,10773239,5
+privateroom,10773239,4
+45833709,10773239,5
+birdersky,10773239,3
+db924519251,10773239,3
+89984750,10773239,3
+119225276,10773239,5
+32727331,10773239,5
+55978536,10773239,5
+28953793,10773239,4
+3626442,10773239,5
+nezorf,10773239,1
+Edward_Elric,10773239,4
+yeeeeeee,10773239,4
+2894358,10773239,4
+69008426,10773239,4
+xyjoll,10773239,4
+8312118,10773239,4
+71709733,10773239,5
+51534769,10773239,5
+Schwarzwaelder,10773239,-1
+73568250,10773239,5
+1246201,10773239,4
+a960629,10773239,4
+PUNK16YEARS,10773239,5
+67011551,10773239,4
+daidai1113,10773239,4
+superonie,10773239,4
+122285833,10773239,5
+4841197,10773239,4
+51132496,10773239,5
+25803795,10773239,5
+62416822,10773239,4
+63730928,10773239,5
+floragrx,10773239,3
+hirochi,10773239,5
+36553134,10773239,5
+67330324,10773239,5
+55925373,10773239,4
+43504927,10773239,5
+novel,10773239,4
+smr1992,10773239,4
+51505905,10773239,5
+35068096,10773239,5
+74056494,10773239,4
+67561366,10773239,3
+30166860,10773239,4
+jewelshao,10773239,5
+xuliking,10773239,4
+3797778,10773239,3
+38465519,10773239,-1
+60703777,10773239,3
+ecgaoxiang,10773239,4
+zhibiaoshi,10773239,4
+122184294,10773239,4
+107794504,10773239,4
+Ailil,10773239,5
+bella99,10773239,-1
+50510383,10773239,3
+liujingqiheihei,10773239,4
+64771060,10773239,4
+62989333,10773239,5
+74959611,10773239,5
+chedan-NB,10773239,5
+50079024,10773239,4
+Solo-n,10773239,4
+masterobert,10773239,4
+lyzw,10773239,5
+kingdoucloud,10773239,4
+68990799,10773239,5
+65079476,10773239,4
+53356414,10773239,5
+104445642,10773239,4
+25618688,10773239,4
+68865370,10773239,5
+62608491,10773239,4
+50797453,10773239,5
+xulu_films,10773239,4
+Chi-L.love,10773239,5
+49083776,10773239,5
+1956404,10773239,5
+42143940,10773239,5
+AstridL411,10773239,3
+ruthchai,10773239,4
+done13,10773239,5
+4774837,10773239,5
+sxy921026,10773239,4
+37646652,10773239,5
+lishidai93,10773239,3
+zaobai,10773239,3
+59217273,10773239,4
+89525142,10773239,4
+44276090,10773239,3
+61165254,10773239,4
+CKyan,10773239,2
+mizzro,10773239,4
+bzfdu,10773239,5
+ca3as2caco3,10773239,5
+76467871,10773239,3
+14247291,10773239,4
+66764182,10773239,4
+130561733,10773239,5
+54277204,10773239,3
+mackalex,10773239,2
+59220835,10773239,5
+124778162,10773239,5
+46920813,10773239,4
+87863001,10773239,4
+casoon,10773239,5
+hyy_lili,10773239,5
+47852493,10773239,5
+llllsy1991,10773239,4
+1551241,10773239,-1
+drkc,10773239,5
+Castellan199,10773239,4
+130787417,10773239,4
+51824277,10773239,4
+92361571,10773239,4
+piao_yao_,10773239,4
+102691553,10773239,5
+zcsgdbd,10773239,5
+zybxixi,10773239,5
+61422043,10773239,1
+Summersun-Iris,10773239,5
+49711912,10773239,3
+119806823,10773239,5
+57391597,10773239,4
+dfzxqqian,10773239,4
+calvingaga,10773239,5
+65916785,10773239,4
+68510883,10773239,3
+3212190,10773239,5
+LoveJHart,10773239,4
+49339916,10773239,5
+ka15ir,10773239,5
+87551744,10773239,5
+87551744,10773239,5
+weenn,10773239,4
+57942746,10773239,-1
+yytttna,10773239,4
+37879706,10773239,2
+tangchaozs,10773239,4
+44579499,10773239,3
+61879467,10773239,4
+35152500,10773239,4
+34851409,10773239,3
+1519013,10773239,4
+57650145,10773239,4
+83667346,10773239,4
+YAMAHA_GO,10773239,3
+50683342,10773239,4
+68776992,10773239,5
+68584171,10773239,5
+94090316,10773239,5
+1565567,10773239,4
+86140576,10773239,-1
+48523065,10773239,4
+73958470,10773239,4
+51227412,10773239,5
+49207878,10773239,4
+53833067,10773239,4
+regal,10773239,5
+50174936,10773239,5
+78891799,10773239,4
+3703670,10773239,5
+47556732,10773239,5
+2109718,10773239,4
+dumian,10773239,4
+bxhOTZ,10773239,3
+q962265267,10773239,4
+54193081,10773239,3
+37160658,10773239,3
+punkyml,10773239,4
+62153310,10773239,4
+98842359,10773239,5
+jiangtaopeter,10773239,4
+jiangtaopeter,10773239,4
+dear-lc,10773239,3
+3294725,10773239,4
+18360610,10773239,4
+132811341,10773239,4
+lovewar,10773239,5
+14234896,10773239,3
+57156729,10773239,4
+62455169,10773239,4
+115665873,10773239,4
+yingcao,10773239,5
+3177593,10773239,3
+78630653,10773239,4
+50754390,10773239,5
+bramasole0528,10773239,4
+43258987,10773239,4
+83236815,10773239,4
+74217191,10773239,4
+buddhajump,10773239,3
+127682733,10773239,4
+haorensisi-,10773239,4
+genie37,10773239,4
+87095553,10773239,4
+88078787,10773239,4
+Simonsaye,10773239,5
+20967601,10773239,4
+46815070,10773239,2
+123322108,10773239,3
+41396729,10773239,4
+50769743,10773239,4
+jelly_bessie,10773239,4
+echorus-walker,10773239,4
+48889989,10773239,4
+84610412,10773239,5
+siniang,10773239,2
+51084713,10773239,5
+59723418,10773239,4
+MeyouYu,10773239,4
+sharkzifan,10773239,4
+58899302,10773239,3
+58899302,10773239,3
+pzlxj,10773239,4
+69265405,10773239,4
+sylviasun2011,10773239,5
+63488867,10773239,2
+kiki204629,10773239,4
+fattyme,10773239,3
+37546445,10773239,5
+82480164,10773239,5
+abenoseimei,10773239,3
+48081150,10773239,5
+45089855,10773239,5
+hidemyhead,10773239,5
+Yinaly,10773239,5
+liqiyao8931,10773239,4
+Labradorbear,10773239,5
+42646716,10773239,3
+huiyu,10773239,4
+1704769,10773239,5
+imoviekobe,10773239,3
+59607562,10773239,3
+69838036,10773239,5
+71953415,10773239,3
+AuRevoir7,10773239,3
+52286623,10773239,4
+88853288,10773239,4
+23712945,10773239,5
+116540697,10773239,5
+littleumbrella,10773239,3
+39607607,10773239,5
+satanforever,10773239,4
+xiaojiongxia,10773239,4
+alan_fanfan,10773239,4
+SgL,10773239,5
+52898475,10773239,5
+49705526,10773239,4
+42135670,10773239,4
+Olesama,10773239,3
+momojasper,10773239,4
+45661291,10773239,3
+51138955,10773239,4
+71790709,10773239,2
+73655476,10773239,4
+70134774,10773239,5
+3394942,10773239,5
+68366606,10773239,4
+96771412,10773239,4
+75196233,10773239,4
+i_chips,10773239,3
+3416514,10773239,5
+Longinuss,10773239,4
+44228798,10773239,5
+30791290,10773239,5
+4223764,10773239,5
+53735887,10773239,4
+52562065,10773239,4
+winnie0212,10773239,5
+63856676,10773239,4
+74392239,10773239,4
+4021192,10773239,5
+3039936,10773239,3
+47897617,10773239,3
+hawords,10773239,5
+3897637,10773239,4
+132224232,10773239,5
+80234954,10773239,4
+37311123,10773239,4
+121287845,10773239,4
+1159296,10773239,4
+youyeyi,10773239,5
+3328964,10773239,3
+45864291,10773239,4
+yangyixiu1218,10773239,4
+2187326,10773239,3
+66856933,10773239,5
+120222665,10773239,5
+37402473,10773239,4
+50335308,10773239,5
+65925279,10773239,5
+CharlotteKo,10773239,3
+snowbusy,10773239,2
+83188361,10773239,3
+53815013,10773239,5
+4197973,10773239,3
+75956787,10773239,3
+3969292,10773239,4
+59969817,10773239,5
+jiii,10773239,5
+rukia-ichigo,10773239,3
+60566231,10773239,5
+EugeneWong,10773239,4
+57638199,10773239,4
+28736165,10773239,4
+EchoHusky,10773239,4
+andreaqi,10773239,4
+wakin1707,10773239,3
+57968508,10773239,4
+94422178,10773239,4
+66631115,10773239,4
+wongelephant,10773239,4
+3078221,10773239,4
+65111838,10773239,5
+50046368,10773239,4
+lynnblue,10773239,4
+59556482,10773239,5
+48418094,10773239,5
+sukuangllp,10773239,5
+72391986,10773239,4
+47089339,10773239,4
+whisaly,10773239,4
+57783752,10773239,4
+68933107,10773239,5
+jakexiong,10773239,5
+xuaoling,10773239,4
+49242708,10773239,4
+lxl1990,10773239,4
+bunengbuniu,10773239,5
+4453892,10773239,-1
+58783819,10773239,4
+56170551,10773239,-1
+120018328,10773239,4
+3618040,10773239,5
+redjar,10773239,3
+115547734,10773239,3
+88305337,10773239,4
+122757661,10773239,3
+xinkaijun,10773239,4
+96513847,10773239,4
+papalangji,10773239,4
+119632712,10773239,5
+53339781,10773239,3
+63519845,10773239,5
+66077816,10773239,5
+podolski,10773239,5
+1282175,10773239,4
+59149801,10773239,4
+35186553,10773239,5
+1971688,10773239,5
+emma1219,10773239,5
+thinson,10773239,5
+121657475,10773239,5
+renee_bai,10773239,3
+1821069,10773239,3
+64680807,10773239,2
+75348259,10773239,4
+126327911,10773239,5
+48500918,10773239,5
+74513536,10773239,5
+43704705,10773239,4
+42200744,10773239,5
+62952735,10773239,5
+49298107,10773239,3
+56236132,10773239,-1
+2039097,10773239,3
+82248938,10773239,3
+owenclv,10773239,4
+39961322,10773239,4
+halouwai,10773239,5
+48056684,10773239,4
+leucex,10773239,4
+48056684,10773239,4
+leucex,10773239,4
+mdx622813,10773239,4
+121471027,10773239,5
+elijahh,10773239,4
+50629676,10773239,4
+48593748,10773239,4
+85621966,10773239,5
+41242185,10773239,4
+33982496,10773239,5
+1496227,10773239,3
+turnsole,10773239,4
+78473890,10773239,-1
+Georgewen,10773239,4
+hmily0316,10773239,5
+50547349,10773239,1
+mountaindew,10773239,3
+gang43998,10773239,4
+99117906,10773239,5
+1073807,10773239,5
+yueyarom,10773239,3
+128991169,10773239,4
+yyhhf,10773239,4
+fairyhui521,10773239,4
+froggie,10773239,5
+QQ3BlueRose,10773239,5
+132943674,10773239,4
+60168447,10773239,4
+63346835,10773239,5
+46842067,10773239,5
+yangyucn,10773239,4
+61742449,10773239,5
+77075195,10773239,3
+79151265,10773239,4
+61716750,10773239,4
+93036792,10773239,5
+40910948,10773239,4
+78341321,10773239,5
+Rebecca_618,10773239,4
+sethyoung,10773239,4
+2307180,10773239,5
+55942870,10773239,5
+cartman716,10773239,5
+gooo111,10773239,5
+62821858,10773239,3
+Dreaming1989712,10773239,4
+joegago,10773239,5
+captainanlie,10773239,5
+78314856,10773239,4
+4373936,10773239,5
+36288410,10773239,-1
+veronicavee,10773239,5
+BakeryforMe,10773239,5
+52996552,10773239,5
+3418984,10773239,4
+Yb1204,10773239,3
+47969171,10773239,3
+58294250,10773239,4
+63873840,10773239,4
+chibbo,10773239,5
+lumins,10773239,4
+RJ861126,10773239,4
+2921812,10773239,5
+37098429,10773239,3
+68020683,10773239,5
+chesterchoi,10773239,4
+119882836,10773239,4
+39015968,10773239,3
+45344133,10773239,4
+50341989,10773239,4
+fakeyouout,10773239,4
+14407650,10773239,4
+simig,10773239,4
+4063991,10773239,5
+dongkuichen,10773239,4
+nanzang,10773239,5
+59378291,10773239,4
+4527709,10773239,4
+69970746,10773239,4
+61468605,10773239,4
+70390842,10773239,5
+77009335,10773239,5
+70212980,10773239,4
+77092352,10773239,2
+46405443,10773239,4
+52576698,10773239,4
+124236435,10773239,4
+59129484,10773239,4
+4146399,10773239,4
+fm532,10773239,4
+62668317,10773239,5
+41083928,10773239,4
+43556775,10773239,4
+8238892,10773239,5
+akinotsubasa,10773239,4
+lynnesay,10773239,5
+81189396,10773239,5
+72063309,10773239,5
+49397696,10773239,4
+49028309,10773239,5
+52117173,10773239,5
+32144547,10773239,4
+eazi2,10773239,4
+76960780,10773239,4
+58888075,10773239,4
+Grace_Xuliang,10773239,4
+prunusmume,10773239,4
+132277209,10773239,4
+57980305,10773239,4
+48198502,10773239,5
+91348351,10773239,3
+59997800,10773239,4
+sgzjhw,10773239,3
+3741660,10773239,4
+92129486,10773239,3
+1767558,10773239,4
+100294226,10773239,5
+100625194,10773239,5
+Her_Mione,10773239,3
+55875465,10773239,4
+72012626,10773239,4
+54265487,10773239,4
+2671857,10773239,3
+70475796,10773239,4
+27090335,10773239,4
+shiningvi,10773239,-1
+youlovekevin,10773239,2
+yalindongdong,10773239,3
+61072952,10773239,5
+71402960,10773239,5
+Hdodo,10773239,4
+bonjourlouise,10773239,4
+mpor2,10773239,5
+78847176,10773239,3
+62342347,10773239,4
+61098125,10773239,5
+66136937,10773239,4
+fernweh,10773239,4
+102655585,10773239,4
+66771297,10773239,5
+66771297,10773239,5
+64618863,10773239,3
+74013716,10773239,4
+67734917,10773239,5
+102885531,10773239,2
+122394685,10773239,5
+twitodd,10773239,4
+104582980,10773239,3
+Oliver_Lu,10773239,4
+gray520,10773239,4
+Exaiy,10773239,4
+99448311,10773239,4
+evich,10773239,3
+53238210,10773239,3
+darlingtudai,10773239,-1
+56922790,10773239,4
+82075201,10773239,5
+solodog,10773239,3
+63531003,10773239,5
+47193126,10773239,3
+MOVIE--KO,10773239,3
+129047985,10773239,3
+luuyoo,10773239,4
+49980268,10773239,5
+3844441,10773239,4
+btone0808,10773239,3
+stanlyking,10773239,3
+60186583,10773239,3
+60667221,10773239,5
+65038141,10773239,3
+simaxiangru118,10773239,3
+queenolivia,10773239,3
+70043510,10773239,5
+Sophieless,10773239,4
+daysofyouth,10773239,5
+deist,10773239,4
+Fedsay,10773239,4
+loverwenzi22,10773239,4
+duanziyu,10773239,4
+gingcha,10773239,5
+56884321,10773239,3
+80442320,10773239,5
+50618027,10773239,4
+1831746,10773239,3
+mdccyoga,10773239,3
+61059314,10773239,5
+45319686,10773239,3
+xilouchen,10773239,4
+48770075,10773239,4
+manxiaoyue,10773239,3
+75288520,10773239,5
+hedgehog,10773239,4
+63929239,10773239,5
+64796008,10773239,4
+63422177,10773239,2
+68786967,10773239,5
+2759466,10773239,4
+128072383,10773239,4
+2429292,10773239,4
+58726406,10773239,4
+42940595,10773239,5
+4151637,10773239,5
+pjcs,10773239,3
+3934047,10773239,5
+astroangel,10773239,5
+1896089,10773239,4
+xixi9000,10773239,4
+81845294,10773239,4
+muzipic,10773239,4
+89852120,10773239,3
+3386741,10773239,4
+39255754,10773239,4
+101407442,10773239,4
+135893024,10773239,4
+131471608,10773239,4
+stehui,10773239,5
+64243860,10773239,4
+137951012,10773239,4
+muzhiyoumu,10773239,5
+yokyyeung,10773239,4
+131503183,10773239,4
+73530411,10773239,3
+39584121,10773239,4
+1271021,10773239,5
+63929108,10773239,5
+61619787,10773239,3
+Robert_Cpc,10773239,4
+26897119,10773239,5
+64707906,10773239,5
+132132858,10773239,4
+122258109,10773239,4
+helloldq,10773239,5
+morningmiao0819,10773239,4
+kingflower,10773239,2
+116073490,10773239,4
+64242774,10773239,4
+93007927,10773239,5
+121148510,10773239,3
+46138752,10773239,3
+48541726,10773239,4
+DLZ0724,24397586,4
+136663776,24397586,4
+63636223,24397586,5
+134625303,24397586,4
+19124466,24397586,4
+smallqianqian,24397586,4
+127480277,24397586,4
+49883816,24397586,5
+134518908,24397586,3
+66950541,24397586,5
+eefee,24397586,4
+40872813,24397586,4
+131380048,24397586,4
+72866809,24397586,4
+120168498,24397586,2
+120712105,24397586,2
+beryl2500,24397586,5
+69807491,24397586,4
+97693514,24397586,4
+122891503,24397586,5
+60211609,24397586,5
+127587816,24397586,5
+48377465,24397586,4
+121883364,24397586,5
+58994072,24397586,4
+135970045,24397586,4
+53623002,24397586,5
+memox,24397586,5
+135101430,24397586,4
+byeprincess,24397586,3
+55333647,24397586,5
+sevenplus,24397586,5
+42111921,24397586,4
+Just-My-Luck.,24397586,4
+ruocun123,24397586,4
+kaxidou,24397586,5
+101978260,24397586,5
+w849917387,24397586,4
+crazy.zheng,24397586,5
+4087422,24397586,4
+cathy_59,24397586,3
+67173543,24397586,5
+135225419,24397586,5
+55717242,24397586,2
+122938233,24397586,4
+55606448,24397586,5
+xuanxuan1209,24397586,5
+colatea,24397586,5
+50221695,24397586,3
+80438415,24397586,5
+132012316,24397586,5
+59899621,24397586,3
+hmngoo,24397586,4
+zerone1,24397586,5
+61085061,24397586,4
+82435721,24397586,4
+wuyunoy,24397586,4
+3582364,24397586,4
+58810077,24397586,5
+Bookthief,24397586,3
+136947773,24397586,5
+136291795,24397586,4
+lolipig,24397586,4
+73830337,24397586,3
+zangtianfly,24397586,5
+76460934,24397586,4
+62956939,24397586,3
+48355482,24397586,4
+135357583,24397586,5
+VickyMonster,24397586,4
+122932689,24397586,4
+leejiatu987,24397586,5
+54340327,24397586,4
+39209718,24397586,3
+1590586,24397586,4
+131129670,24397586,5
+2917148,24397586,3
+55610335,24397586,5
+choulaoya,24397586,5
+89034625,24397586,3
+50642394,24397586,3
+99669308,24397586,4
+57116591,24397586,5
+83486677,24397586,3
+89607627,24397586,4
+simplelyq,24397586,4
+135683345,24397586,3
+35023074,24397586,4
+136296573,24397586,5
+2161404,24397586,4
+28194529,24397586,4
+81235824,24397586,4
+46266479,24397586,-1
+53794095,24397586,5
+yustone,24397586,3
+137075359,24397586,5
+3328450,24397586,5
+82087372,24397586,5
+88033603,24397586,4
+amsingapore,24397586,3
+57088195,24397586,4
+zhuyaoyao,24397586,4
+70194363,24397586,5
+62375548,24397586,3
+44402590,24397586,4
+hanhanq,24397586,5
+princess921129,24397586,5
+kellywhite,24397586,5
+103247038,24397586,5
+nevoisbug,24397586,4
+2121850,24397586,3
+61315672,24397586,4
+IvyTsai,24397586,4
+131837471,24397586,5
+116044095,24397586,4
+62159923,24397586,-1
+47037959,24397586,4
+virus11,24397586,3
+137503237,24397586,4
+jianyadaodao,24397586,3
+yeqing611,24397586,3
+38603350,24397586,5
+51463765,24397586,5
+66242700,24397586,3
+68549464,24397586,5
+135928273,24397586,-1
+136842545,24397586,5
+1373185,24397586,5
+ruinlry,24397586,3
+51224776,24397586,5
+125827809,24397586,4
+93390371,24397586,5
+langsusu,24397586,5
+121878138,24397586,4
+youyuanshanren,24397586,4
+3386344,24397586,4
+129618880,24397586,5
+136672775,24397586,4
+131816687,24397586,4
+52368554,24397586,5
+40302528,24397586,4
+82849854,24397586,4
+3421868,24397586,5
+137582289,24397586,3
+60736687,24397586,5
+83214911,24397586,-1
+64713560,24397586,4
+132115249,24397586,5
+121432679,24397586,5
+136941405,24397586,4
+51325422,24397586,5
+lostcindy,24397586,5
+131761032,24397586,4
+1760922,24397586,-1
+51964877,24397586,5
+1666477,24397586,5
+137449600,24397586,3
+46823718,24397586,2
+136454222,24397586,3
+85484617,24397586,5
+15689369,24397586,4
+2579882,24397586,3
+2296984,24397586,5
+137305184,24397586,4
+1730018,24397586,3
+63243620,24397586,5
+136971594,24397586,4
+94299562,24397586,3
+41521750,24397586,5
+59881123,24397586,5
+july0007,24397586,4
+81412709,24397586,4
+64038122,24397586,4
+cristinagu,24397586,-1
+137543599,24397586,4
+46829398,24397586,5
+134631211,24397586,4
+snailjia,24397586,5
+61304869,24397586,4
+zhixiayufei,24397586,5
+51658550,24397586,4
+sudadude,24397586,5
+vigilgt,24397586,3
+123111535,24397586,4
+62834139,24397586,4
+137398525,24397586,4
+46188146,24397586,5
+126341666,24397586,3
+1524737,24397586,5
+81685996,24397586,4
+33990008,24397586,4
+48247472,24397586,4
+123000223,24397586,4
+3949161,24397586,3
+vaudevillian,24397586,4
+137129598,24397586,5
+137235653,24397586,4
+60600742,24397586,5
+56095656,24397586,4
+103277074,24397586,5
+103277074,24397586,5
+3314389,24397586,4
+58290785,24397586,5
+130540894,24397586,4
+2843360,24397586,5
+Doctory,24397586,5
+H897120417,24397586,5
+NosyBunny,24397586,4
+64060154,24397586,4
+127313933,24397586,4
+CoffeeYuan,24397586,3
+48276312,24397586,5
+xiaoxinadd,24397586,5
+133986166,24397586,4
+Granadn,24397586,5
+jolyne,24397586,3
+65025231,24397586,4
+48481364,24397586,4
+89528523,24397586,5
+miaotuanzi,24397586,5
+sanggolden,24397586,5
+doufutou,24397586,5
+66715752,24397586,5
+137244496,24397586,5
+41559583,24397586,5
+kkshopcc,24397586,5
+137297663,24397586,5
+Ranice,24397586,4
+featherfancy,24397586,5
+62979030,24397586,5
+120469325,24397586,3
+48998348,24397586,5
+137129170,24397586,4
+137127465,24397586,4
+63178392,24397586,4
+deactivate,24397586,5
+35690595,24397586,5
+69649993,24397586,4
+127619617,24397586,4
+osakiyunyun,24397586,5
+osakiyunyun,24397586,5
+weichuu,24397586,5
+70313784,24397586,4
+131909298,24397586,4
+122944258,24397586,4
+137206904,24397586,5
+37879706,24397586,2
+130192486,24397586,4
+62705311,24397586,3
+129857538,24397586,4
+83119838,24397586,4
+47959291,24397586,5
+137058497,24397586,3
+137058479,24397586,3
+61496861,24397586,4
+ilovesusan,24397586,4
+fuckeverybody,24397586,3
+chaud,24397586,3
+moshushinihao,24397586,3
+45268716,24397586,5
+77799876,24397586,1
+131815669,24397586,4
+24639587,24397586,4
+yimoyoulan916,24397586,3
+123002309,24397586,3
+luckyzx,24397586,5
+136957081,24397586,4
+6972638,24397586,4
+131020888,24397586,3
+98956225,24397586,4
+4514711,24397586,5
+billryan,24397586,4
+130563496,24397586,4
+127119228,24397586,4
+68630098,24397586,3
+68990945,24397586,5
+121925373,24397586,5
+45099103,24397586,4
+hcxx,24397586,4
+69095785,24397586,4
+13424583,24397586,4
+42375246,24397586,4
+61681574,24397586,4
+61675448,24397586,4
+64136344,24397586,4
+130944083,24397586,3
+131025711,24397586,3
+4118910,24397586,3
+137073841,24397586,4
+137076197,24397586,5
+68630108,24397586,3
+67880800,24397586,3
+123404476,24397586,4
+137070872,24397586,4
+2246232,24397586,5
+50217070,24397586,4
+gezi921054,24397586,3
+54782120,24397586,4
+suitsue0504,24397586,5
+81244916,24397586,4
+48090771,24397586,4
+48093431,24397586,3
+mangobird,24397586,4
+55942518,24397586,-1
+3003736,24397586,5
+134473693,24397586,5
+1380828,24397586,4
+4079659,24397586,5
+50950772,24397586,5
+123001004,24397586,4
+74418129,24397586,5
+122656795,24397586,4
+96336225,24397586,2
+89814463,24397586,5
+61883535,24397586,4
+130445057,24397586,5
+122868077,24397586,4
+4668252,24397586,4
+130428066,24397586,4
+46815070,24397586,-1
+2791053,24397586,5
+58840542,24397586,4
+2825518,24397586,4
+79352949,24397586,3
+4523741,24397586,3
+idoloveyou,24397586,4
+119122218,24397586,4
+44903919,24397586,3
+3417035,24397586,5
+scarllet1984,24397586,4
+136765411,24397586,4
+qingyelingfeng,24397586,4
+50618978,24397586,5
+50140281,24397586,4
+104700864,24397586,4
+33921766,24397586,4
+45925638,24397586,-1
+127569899,24397586,4
+56136584,24397586,5
+59725846,24397586,3
+tinaxuang,24397586,4
+cStar,24397586,2
+31015846,24397586,3
+goontatata,24397586,-1
+136875339,24397586,5
+56807608,24397586,4
+35296764,24397586,5
+51004773,24397586,5
+summerpea,24397586,5
+101886998,24397586,5
+BeiloveR,24397586,3
+72276993,24397586,5
+jessiewang84,24397586,5
+1569618,24397586,5
+dasung,24397586,5
+78645703,24397586,3
+121318701,24397586,5
+110565024,24397586,3
+21331611,24397586,-1
+136695075,24397586,5
+136695075,24397586,5
+59887639,24397586,4
+62182093,24397586,-1
+135878317,24397586,5
+75117298,24397586,-1
+121059369,24397586,4
+39126171,24397586,3
+scarlywoo,24397586,4
+130978369,24397586,3
+dsgy,24397586,4
+52523730,24397586,5
+82046546,24397586,4
+62399137,24397586,4
+53222131,24397586,5
+53204240,24397586,5
+70548189,24397586,5
+1496371,24397586,5
+130934404,24397586,4
+45623690,24397586,3
+6014374,24397586,4
+AprilHo,24397586,5
+57880373,24397586,5
+zhukeke,24397586,5
+66234722,24397586,4
+90543489,24397586,3
+53324248,24397586,4
+34724313,24397586,5
+68552407,24397586,4
+39771066,24397586,5
+vfish,24397586,4
+83387474,24397586,4
+117339283,24397586,3
+43195130,24397586,5
+AMOHanMeimei,24397586,5
+120642083,24397586,5
+121650860,24397586,4
+136594390,24397586,4
+40970313,24397586,4
+119330514,24397586,4
+1689876,24397586,4
+43409918,24397586,5
+76926287,24397586,4
+44124671,24397586,4
+33693061,24397586,2
+zzzqi,24397586,5
+119413484,24397586,4
+yihengxi,24397586,4
+mentholcris,24397586,5
+wxgigi0617,24397586,4
+56694430,24397586,4
+51688901,24397586,5
+73383984,24397586,4
+84750944,24397586,4
+miucather,24397586,5
+73365749,24397586,3
+52243098,24397586,4
+56906475,24397586,5
+vesyinz,24397586,4
+clay,24397586,4
+120167569,24397586,4
+fan0208,24397586,4
+80604085,24397586,4
+9549001,24397586,5
+34148676,24397586,5
+136571406,24397586,4
+44140767,24397586,4
+67658660,24397586,5
+83749765,24397586,5
+anygned,24397586,-1
+xigua2015,24397586,5
+135164338,24397586,4
+2842120,24397586,4
+tcheng,24397586,5
+134958534,24397586,5
+52169768,24397586,3
+67570635,24397586,3
+135985786,24397586,3
+55354703,24397586,4
+bibiko7,24397586,4
+65976416,24397586,5
+61268751,24397586,4
+113404948,24397586,5
+ayurine,24397586,4
+71108776,24397586,4
+4740160,24397586,4
+24571201,24397586,5
+2620278,24397586,4
+61693521,24397586,4
+46806968,24397586,4
+130940103,24397586,4
+48686812,24397586,2
+4144985,24397586,3
+Awezhang,24397586,4
+66552525,24397586,5
+134494053,24397586,4
+3198566,24397586,4
+3638314,24397586,5
+74337586,24397586,5
+134748999,24397586,5
+80622644,24397586,5
+53477033,24397586,4
+122246232,24397586,5
+weixiaojia,24397586,4
+1083198,24397586,4
+47810404,24397586,3
+kiethope,24397586,5
+asato,24397586,4
+136337190,24397586,3
+88984296,24397586,5
+sodaorchid,24397586,4
+sara810,24397586,5
+GeSMD,24397586,5
+126749714,24397586,4
+55931553,24397586,5
+wangxi,24397586,5
+59397449,24397586,4
+1096571,24397586,4
+cy7,24397586,-1
+130550035,24397586,4
+llefan,24397586,5
+heartbreakerkid,24397586,3
+56752723,24397586,4
+akert,24397586,5
+1130880,24397586,5
+121798050,24397586,5
+xx0301ll,24397586,4
+wstczy,24397586,4
+goldenslumber,24397586,4
+96146816,24397586,4
+135101148,24397586,3
+120674319,24397586,5
+ursyoyo,24397586,4
+SEEINGLAU,24397586,5
+amyammy,24397586,4
+Sunray0807,24397586,4
+40668438,24397586,5
+xingmie,24397586,5
+107437673,24397586,5
+deviline,24397586,5
+dasyhiqiang,24397586,3
+dasyhiqiang,24397586,3
+125314923,24397586,5
+zc_726,24397586,3
+nanshuo,24397586,4
+51338490,24397586,5
+134540692,24397586,5
+57853531,24397586,4
+131208902,24397586,4
+54983344,24397586,5
+hanuit,24397586,3
+71467734,24397586,5
+51208246,24397586,5
+ecstasybird,24397586,5
+46718528,24397586,3
+62072392,24397586,5
+47392394,24397586,5
+71837063,24397586,4
+gothicly16,24397586,4
+zzzhanglisha,24397586,-1
+3916320,24397586,3
+135128946,24397586,4
+48533366,24397586,4
+62699217,24397586,4
+83881122,24397586,4
+85161189,24397586,-1
+90321364,24397586,4
+4614727,24397586,5
+47660842,24397586,3
+64450294,24397586,3
+43176716,24397586,4
+aking,24397586,3
+45689152,24397586,4
+124640229,24397586,4
+55820297,24397586,4
+waterfront,24397586,4
+58854842,24397586,5
+senzai,24397586,5
+75322883,24397586,4
+6976560,24397586,4
+68024399,24397586,4
+jjinglee,24397586,5
+121943500,24397586,5
+13129748,24397586,4
+lilithyi,24397586,5
+45242330,24397586,4
+72174135,24397586,5
+102986629,24397586,4
+vinciwang,24397586,4
+yinxiang,24397586,4
+rukia-ichigo,24397586,5
+44411218,24397586,4
+58212317,24397586,5
+134498309,24397586,5
+120793472,24397586,3
+show.huang,24397586,4
+131478217,24397586,5
+zhangyunji,24397586,5
+yabincha,24397586,5
+43934370,24397586,1
+december.L,24397586,4
+2110961,24397586,4
+63252169,24397586,4
+gxx305,24397586,4
+48876836,24397586,5
+131183374,24397586,5
+62837123,24397586,3
+liong,24397586,4
+stand314,24397586,3
+18762925,24397586,4
+2499433,24397586,5
+51068875,24397586,4
+69257163,24397586,5
+summerose,24397586,3
+wjww2128,24397586,4
+46894439,24397586,4
+35380385,24397586,4
+45698347,24397586,3
+134495648,24397586,4
+77182257,24397586,4
+40836230,24397586,4
+102987982,24397586,5
+56739185,24397586,4
+63730928,24397586,5
+106597439,24397586,4
+134474194,24397586,5
+83467712,24397586,5
+cranky5555,24397586,4
+miong,24397586,4
+ZonaLau1997,24397586,5
+yyscamper,24397586,5
+PsychoMissSo,24397586,5
+iamyi,24397586,4
+Freiheit429,24397586,5
+82834599,24397586,5
+53248861,24397586,5
+cowgirlfanny,24397586,4
+38772760,24397586,3
+32534097,24397586,5
+88451732,24397586,5
+20960530,24397586,5
+45753040,24397586,5
+46387207,24397586,4
+50942013,24397586,4
+tougi,24397586,5
+Ms.G,24397586,4
+50775734,24397586,3
+59172571,24397586,5
+Scecta,24397586,4
+fzw83035379,24397586,5
+44162461,24397586,5
+secretofmemory,24397586,3
+87693385,24397586,5
+Tweff,24397586,4
+24556429,24397586,5
+74422444,24397586,5
+2402223,24397586,4
+64124886,24397586,3
+diwuweidi,24397586,5
+kiss_lavender,24397586,3
+114515666,24397586,4
+58250348,24397586,3
+jiujiuprincess,24397586,4
+87880107,24397586,5
+Bocahontas,24397586,5
+54551463,24397586,5
+77235154,24397586,5
+58866174,24397586,5
+52883078,24397586,4
+latterdaysaints,24397586,4
+37390884,24397586,3
+56976495,24397586,5
+30924600,24397586,5
+quills,24397586,2
+Alpinist,24397586,4
+mono1886,24397586,5
+laurawang,24397586,3
+gabrielying,24397586,5
+47472746,24397586,5
+huapiqiu,24397586,5
+81314800,24397586,5
+82095351,24397586,4
+villus,24397586,5
+ni484sa,24397586,3
+37883393,24397586,5
+56218882,24397586,4
+3863337,24397586,4
+NCelestial,24397586,5
+128643925,24397586,4
+80506084,24397586,4
+nalusea,24397586,4
+42084433,24397586,3
+cyyzzz,24397586,4
+121675172,24397586,5
+133439975,24397586,4
+syveen,24397586,5
+45279594,24397586,4
+aprilsunshine,24397586,4
+43069509,24397586,5
+One_apple,24397586,5
+zqzhuqiu,24397586,4
+2229167,24397586,5
+2842891,24397586,5
+54721365,24397586,4
+41694650,24397586,5
+132998627,24397586,4
+mlzizi,24397586,4
+60768165,24397586,3
+23400839,24397586,5
+61722748,24397586,5
+51706956,24397586,5
+54896883,24397586,4
+134096966,24397586,4
+92982249,24397586,4
+58387557,24397586,4
+2705619,24397586,5
+59537499,24397586,4
+akiwalnut,24397586,5
+24139618,24397586,5
+56627146,24397586,5
+laohao,24397586,5
+laohao,24397586,5
+54444481,24397586,5
+93289481,24397586,5
+58785321,24397586,5
+10007777,24397586,5
+wangxiaolu,24397586,5
+65074680,24397586,5
+donkeylv_2005,24397586,4
+120002421,24397586,5
+63383650,24397586,4
+leonardodicapri,24397586,4
+mimi...,24397586,4
+70970974,24397586,3
+115507760,24397586,4
+28490375,24397586,5
+Tale,24397586,5
+snowhawkyrf,24397586,4
+48898826,24397586,4
+miauwww,24397586,5
+45579641,24397586,5
+134417369,24397586,4
+59752375,24397586,5
+29590814,24397586,4
+j780417605,24397586,5
+2244671,24397586,3
+96648379,24397586,4
+30258501,24397586,4
+1789518,24397586,4
+92155502,24397586,4
+hydrangea99,24397586,4
+1557359,24397586,4
+closer_14,24397586,4
+54265487,24397586,4
+luoze,24397586,5
+wish430,24397586,4
+qianlongwu,24397586,5
+SuperWMY,24397586,3
+laurelni,24397586,5
+yixiujie,24397586,5
+pjwrain,24397586,5
+80655381,24397586,4
+65038039,24397586,4
+1801052,24397586,4
+41640054,24397586,-1
+70394248,24397586,4
+deartintin,24397586,5
+78337328,24397586,4
+2233963,24397586,5
+118090358,24397586,5
+71416831,24397586,3
+80850838,24397586,4
+2404315,24397586,4
+65138658,24397586,5
+porquetevas,24397586,3
+44105688,24397586,5
+blmingkong,24397586,5
+zoeniar,24397586,4
+pinkskin,24397586,4
+2664010,24397586,4
+ppyforever,24397586,4
+83853096,24397586,4
+maybeland,24397586,4
+43699027,24397586,5
+rabbityinyin,24397586,3
+69015164,24397586,5
+minniedai,24397586,3
+66576261,24397586,4
+blueandgreen,24397586,4
+58246468,24397586,5
+lbnew,24397586,5
+54715465,24397586,5
+43766729,24397586,5
+luyut1an,24397586,5
+gaoxiafang,24397586,5
+22531064,24397586,3
+3874094,24397586,4
+74365776,24397586,5
+paddlelala,24397586,4
+48977746,24397586,5
+68802617,24397586,3
+hibi,24397586,4
+1056656,24397586,4
+92613498,24397586,4
+izzie,24397586,5
+53171772,24397586,4
+80914640,24397586,4
+sixthchild,24397586,5
+63014082,24397586,5
+31319988,24397586,4
+supremedie,24397586,4
+hanqiu1995,24397586,3
+134874896,24397586,4
+42767182,24397586,5
+captainanlie,24397586,5
+82561993,24397586,3
+yinhun,24397586,4
+30640826,24397586,2
+rasimya,24397586,4
+hongzhouche,24397586,5
+wangxiaowu,24397586,4
+suekyshi,24397586,4
+53620031,24397586,4
+97057870,24397586,5
+119468081,24397586,5
+66578884,24397586,4
+67184394,24397586,4
+40009085,24397586,5
+Bluefly_208,24397586,4
+62898857,24397586,4
+qinxinzhu,24397586,4
+Leibnio,24397586,-1
+46247554,24397586,4
+enough45,24397586,5
+3655113,24397586,5
+1821069,24397586,4
+kongguyouju,24397586,5
+54342985,24397586,4
+70575528,24397586,3
+49588596,24397586,3
+2822846,24397586,2
+salonman,24397586,5
+81923941,24397586,4
+51945032,24397586,2
+52907369,24397586,4
+57474326,24397586,5
+45805618,24397586,4
+linaboxiannv,24397586,5
+62878556,24397586,5
+92944589,24397586,5
+3869328,24397586,4
+chyj926,24397586,-1
+121805239,24397586,4
+53726776,24397586,3
+134907491,24397586,3
+114616367,24397586,5
+68014143,24397586,4
+47650145,24397586,4
+57784183,24397586,-1
+laragreen,24397586,-1
+122039396,24397586,4
+unrealzhizhi,24397586,3
+1458725,24397586,5
+denkenjing,24397586,5
+45768110,24397586,-1
+120322125,24397586,-1
+ceh19930603,24397586,3
+deppdeep,24397586,5
+68692876,24397586,5
+bjoneday,24397586,5
+sparkylee,24397586,4
+lucyseven,24397586,4
+my1900,24397586,5
+68014946,24397586,3
+tangqian9921220,24397586,3
+129134167,24397586,4
+57393346,24397586,5
+61654956,24397586,4
+esballad,24397586,4
+zhanyangying,24397586,4
+12180035,24397586,4
+56493761,24397586,5
+78900467,24397586,4
+34175337,24397586,5
+36329145,24397586,4
+mymydemon,24397586,3
+moriaty139,24397586,5
+rainielo,24397586,4
+musicer03,24397586,4
+46812658,24397586,4
+43098377,24397586,3
+132182482,24397586,3
+83704448,24397586,5
+xubeisi,24397586,5
+60410320,24397586,5
+4589325,24397586,4
+wu1art,24397586,4
+40299293,24397586,4
+bankeed,24397586,3
+134726224,24397586,4
+55887072,24397586,3
+84596328,24397586,4
+shuyedaxigua,24397586,5
+45394138,24397586,5
+57876075,24397586,5
+Jacky_L,24397586,3
+53541312,24397586,5
+2030775,24397586,5
+FUMANCHU,24397586,5
+odin_chen,24397586,4
+80317889,24397586,4
+134161390,24397586,3
+1595012,24397586,5
+57135077,24397586,3
+lovekahn2002,24397586,4
+NIAIDE,24397586,4
+114441069,24397586,4
+48121857,24397586,5
+keikisky,24397586,4
+diaryread,24397586,4
+77660598,24397586,5
+chenxi19890711,24397586,5
+45056118,24397586,-1
+67368575,24397586,5
+81654169,24397586,4
+6539111,24397586,4
+63866031,24397586,4
+h7766,24397586,-1
+aquariusyoyo,24397586,5
+59386777,24397586,4
+56823011,24397586,4
+131771729,24397586,3
+69773745,24397586,4
+54283413,24397586,5
+64694278,24397586,4
+52573676,24397586,4
+1596435,24397586,5
+41761191,24397586,4
+83847642,24397586,3
+fengwanlu,24397586,4
+62664539,24397586,4
+95926994,24397586,5
+Puppyman,24397586,4
+hedgehog,24397586,4
+catq,24397586,4
+4271475,24397586,4
+hy1900,24397586,5
+47776008,24397586,4
+Decadeff,24397586,4
+53740988,24397586,3
+quriola,24397586,5
+60605965,24397586,5
+55443753,24397586,4
+4630769,24397586,5
+104582980,24397586,5
+70794815,24397586,5
+48511722,24397586,3
+48224071,24397586,5
+Ste_corleone,24397586,4
+69967091,24397586,5
+126994808,24397586,5
+wangholic,24397586,3
+41896230,24397586,5
+54618299,24397586,5
+127632434,24397586,5
+103650880,24397586,5
+Scorpio_1001,24397586,5
+34968891,24397586,4
+50443007,24397586,5
+114582332,24397586,5
+52886775,24397586,3
+76272908,24397586,5
+3644430,24397586,5
+qiaoxiaodu,24397586,4
+99344521,24397586,4
+39104472,24397586,4
+43172878,24397586,5
+71093640,24397586,5
+133736713,24397586,3
+96731709,24397586,5
+64677693,24397586,4
+67353177,24397586,4
+4116226,24397586,4
+75189651,24397586,4
+54145451,24397586,4
+58731052,24397586,5
+69469727,24397586,-1
+51773782,24397586,5
+134341434,24397586,5
+doexist,24397586,4
+sam_smile,24397586,3
+2995257,24397586,1
+ssb,24397586,4
+3023464,24397586,4
+64284331,24397586,4
+63223538,24397586,4
+silencewong,24397586,4
+2427012,24397586,-1
+Rae.Y,24397586,5
+119991897,24397586,3
+132584999,24397586,4
+48909711,24397586,5
+53602254,24397586,5
+akiralovedark,24397586,4
+Day111,24397586,5
+128063403,24397586,4
+javy,24397586,4
+102272768,24397586,3
+Y_Sss,24397586,5
+muorhaha,24397586,5
+100236370,24397586,3
+48743724,24397586,-1
+28953793,24397586,3
+2933555,24397586,5
+69455218,24397586,3
+66295147,24397586,5
+80820907,24397586,4
+103584497,24397586,4
+85307679,24397586,5
+TinyLens1990,24397586,4
+cll2132929,24397586,5
+120303134,24397586,5
+115714696,24397586,4
+hicat,24397586,5
+2597570,24397586,2
+51478034,24397586,5
+SQ17,24397586,5
+Coka-Less,24397586,3
+71772436,24397586,5
+lin7128jin,24397586,5
+132939013,24397586,5
+54158519,24397586,4
+sixiaokong,24397586,5
+70481744,24397586,3
+114336232,24397586,4
+3420891,24397586,4
+abin520918,24397586,3
+66178513,24397586,4
+68878530,24397586,4
+132827615,24397586,5
+jizunluosang,24397586,4
+huahuadaisy,24397586,5
+50699357,24397586,5
+followmydreams,24397586,5
+helloBek,24397586,4
+76018485,24397586,4
+44848574,24397586,4
+79383062,24397586,4
+122232090,24397586,2
+94886676,24397586,3
+67781034,24397586,-1
+124732668,24397586,3
+134630891,24397586,-1
+52395639,24397586,4
+67446786,24397586,3
+Aiyouyouyouyou,24397586,5
+40425458,24397586,5
+3322909,24397586,4
+34786731,24397586,5
+121920760,24397586,4
+tankdriver,24397586,5
+30935515,24397586,5
+wusequanwei,24397586,4
+44392983,24397586,4
+84837410,24397586,5
+iear,24397586,4
+he3764,24397586,5
+69614184,24397586,5
+53134670,24397586,5
+91543549,24397586,5
+singheartly,24397586,4
+82988070,24397586,5
+jdh233,24397586,4
+58723728,24397586,4
+74478890,24397586,5
+46718918,24397586,4
+32001555,24397586,3
+133901428,24397586,4
+130540529,24397586,4
+lionlsh,24397586,3
+yangyihu,24397586,5
+caunion,24397586,4
+73280633,24397586,5
+134508428,24397586,5
+4391066,24397586,4
+52285009,24397586,4
+88174577,24397586,4
+128614952,24397586,4
+ciciqq,24397586,5
+119141793,24397586,5
+ninjiushinin,24397586,5
+creese1010,24397586,5
+hzlqy,24397586,4
+13856427,24397586,4
+63500576,24397586,-1
+134498032,24397586,5
+66967732,24397586,4
+Faychang,24397586,4
+127965244,24397586,4
+68952248,24397586,5
+113999648,24397586,5
+mahanxue,24397586,4
+130533856,24397586,4
+4028097,24397586,5
+1452576,24397586,4
+45179970,24397586,5
+60095133,24397586,5
+45812371,24397586,4
+LoicLeung,24397586,3
+45681506,24397586,4
+44877103,24397586,4
+54882693,24397586,4
+43717763,24397586,4
+guaishou995,24397586,3
+119472529,24397586,5
+47574428,24397586,5
+30486993,24397586,3
+arielzhang,24397586,3
+131849470,24397586,5
+55416887,24397586,4
+BiXiaoBengZhuRe,24397586,3
+velevtgreen,24397586,5
+spottedowl,24397586,3
+gulisitan,24397586,4
+46207489,24397586,5
+73645330,24397586,5
+4547259,24397586,4
+56039933,24397586,-1
+44542969,24397586,5
+3129085,24397586,4
+tieliuwudi,24397586,5
+momoko11510,24397586,4
+Jackieee_28,24397586,3
+51426516,24397586,5
+lzh321,24397586,5
+amazeyw2015,24397586,5
+frnong,24397586,3
+wenlei1010,24397586,5
+liumang2,24397586,3
+lee0402,24397586,5
+1805712,24397586,5
+1805712,24397586,5
+54166163,24397586,4
+kakabka,24397586,4
+48554456,24397586,4
+2850261,24397586,4
+48384713,24397586,5
+mjh5920,24397586,2
+48792138,24397586,4
+75255232,24397586,4
+126202371,24397586,4
+52202142,24397586,5
+tiazhihen290,24397586,5
+68592556,24397586,5
+34087859,24397586,4
+16739191,24397586,5
+lincheng_,24397586,4
+49259090,24397586,5
+52143886,24397586,5
+80209748,24397586,5
+tutusky,24397586,3
+121764044,24397586,5
+81850200,24397586,5
+dasyure,24397586,5
+2029491,24397586,5
+34426625,24397586,4
+52271140,24397586,5
+67057631,24397586,5
+58896741,24397586,4
+laipixiaoxiuxiu,24397586,5
+97463781,24397586,5
+2299740,24397586,4
+107514210,24397586,3
+2128957,24397586,1
+DrGonzo,24397586,4
+karenzyr,24397586,5
+chsophie325,24397586,4
+75096112,24397586,5
+46061693,24397586,4
+75418722,24397586,4
+28566802,24397586,5
+65292306,24397586,4
+39517329,24397586,5
+yizuo,24397586,4
+EternityTT,24397586,5
+89804270,24397586,4
+69156553,24397586,4
+119296720,24397586,5
+pepc,24397586,3
+69448551,24397586,5
+31220552,24397586,5
+46781081,24397586,5
+green198641,24397586,-1
+102865398,24397586,5
+132433995,24397586,4
+chengbaobao,24397586,5
+120654245,24397586,5
+119189447,24397586,4
+120358782,24397586,4
+52236886,24397586,5
+liu1231,24397586,5
+45164185,24397586,3
+134324511,24397586,3
+66048476,24397586,5
+92871519,24397586,5
+65205962,24397586,5
+czy940903,24397586,5
+49587951,24397586,4
+70328279,24397586,4
+cappuccino-jl,24397586,3
+jhqmelody,24397586,4
+1995639,24397586,4
+lauraqi,24397586,4
+crazygrave,24397586,4
+42605365,24397586,4
+Jasmine_hapi,24397586,5
+133628416,24397586,5
+4185596,24397586,5
+XIONGXIN0523,24397586,5
+49891610,24397586,4
+48492395,24397586,1
+66683311,24397586,5
+3727303,24397586,5
+fengshurui,24397586,-1
+happy_cici,24397586,5
+62134358,24397586,5
+zephhhhh,24397586,4
+64024738,24397586,3
+Prague920510,24397586,3
+Youoen,24397586,4
+ZWJ1996716,24397586,5
+34569099,24397586,3
+68404885,24397586,4
+hlinwang,24397586,4
+4158908,24397586,3
+121893790,24397586,4
+52294863,24397586,4
+mukucelia,24397586,3
+hitoshio,24397586,5
+84019906,24397586,5
+zellux,24397586,4
+59821556,24397586,5
+monononono,24397586,5
+91842843,24397586,4
+122858787,24397586,5
+134246980,24397586,5
+45912977,24397586,5
+64092197,24397586,5
+48636312,24397586,3
+usefeet,24397586,4
+89717097,24397586,4
+winniewong021,24397586,4
+2504247,24397586,5
+ossianshiwo,24397586,2
+2028239,24397586,4
+81745530,24397586,3
+zhangziyi,24397586,4
+76654767,24397586,5
+70090327,24397586,5
+2174160,24397586,5
+96305246,24397586,4
+4283326,24397586,5
+61742449,24397586,5
+63748117,24397586,5
+Monte.L,24397586,5
+caspianwky,24397586,2
+87647683,24397586,5
+turandot0815,24397586,5
+sunnyhouseman,24397586,3
+119404591,24397586,5
+ink1020,24397586,3
+aprildaisy,24397586,4
+3809045,24397586,3
+quizas63,24397586,-1
+fuxiaopang,24397586,5
+lovecatsandbear,24397586,4
+ningning9164,24397586,-1
+119396712,24397586,5
+2742057,24397586,5
+52607886,24397586,4
+jaws886,24397586,5
+45439094,24397586,3
+134156437,24397586,5
+shiww,24397586,5
+youyeqiuxin,24397586,4
+58098918,24397586,4
+yexuexiange,24397586,4
+naizhengtan,24397586,5
+dec255,24397586,5
+ricochen,24397586,5
+paper-airplane,24397586,4
+50341396,24397586,4
+yuanchao-op,24397586,3
+94285229,24397586,5
+3648258,24397586,3
+55764073,24397586,4
+4412176,24397586,4
+msallsunday,24397586,-1
+sclpanda,24397586,5
+xq87,24397586,5
+127321478,24397586,5
+92105387,24397586,4
+lbc21,24397586,4
+39847804,24397586,4
+32460085,24397586,-1
+zipaiwang,24397586,3
+48053814,24397586,5
+35063229,24397586,4
+jadexyy,24397586,4
+babyfishjj,24397586,5
+3556906,24397586,3
+shaoraul,24397586,5
+67156192,24397586,5
+jiachangting,24397586,4
+emmacqq,24397586,4
+78501874,24397586,4
+97415424,24397586,3
+bruin1018,24397586,2
+sanganggongzi,24397586,5
+dayingying,24397586,5
+zb02,24397586,-1
+34729021,24397586,5
+56349029,24397586,5
+1563986,24397586,5
+Neurons,24397586,5
+kune,24397586,5
+2539543,24397586,4
+58434746,24397586,5
+minamy1227,24397586,4
+126868088,24397586,-1
+134146156,24397586,5
+5270734,24397586,4
+sjt641100358,24397586,3
+3296630,24397586,5
+yanransmiling,24397586,-1
+59307428,24397586,5
+zpvera,24397586,3
+55496858,24397586,3
+xixi-0303,24397586,3
+2200200,24397586,5
+37220457,24397586,4
+40681472,24397586,5
+3431102,24397586,-1
+58193839,24397586,4
+48335787,24397586,5
+lovemapaandhuhu,24397586,5
+70815428,24397586,5
+130988349,24397586,4
+sircayden,24397586,5
+1066031,24397586,3
+cai1st,24397586,5
+120268837,24397586,3
+44587806,24397586,4
+49346952,24397586,3
+tikchao,24397586,5
+87867332,24397586,5
+Cllindaoud,24397586,4
+133968272,24397586,5
+dorislee63,24397586,5
+77105796,24397586,4
+70055114,24397586,3
+132983057,24397586,5
+2585729,24397586,4
+3375154,24397586,4
+3745695,24397586,5
+33663407,24397586,3
+XuKyle,24397586,4
+120105236,24397586,5
+49197459,24397586,4
+3435038,24397586,3
+2448391,24397586,5
+mumcy,24397586,4
+theflyingjamie,24397586,5
+zbar1234,24397586,5
+52178339,24397586,4
+43161186,24397586,4
+92945557,24397586,2
+seayo,24397586,4
+64069869,24397586,5
+121057597,24397586,5
+119472433,24397586,4
+57824649,24397586,5
+wxcn843,24397586,4
+69393592,24397586,4
+Lindsay_rabbit,24397586,5
+unicorno,24397586,4
+ytismile,24397586,4
+127728111,24397586,4
+firepr,24397586,4
+3280518,24397586,5
+hahagoushinan,24397586,5
+60358393,24397586,4
+50187551,24397586,4
+86091558,24397586,4
+ann-in-april,24397586,4
+wuxiaohua,24397586,-1
+60795536,24397586,4
+92978277,24397586,5
+shiiirley,24397586,5
+walinee,24397586,3
+maskman0917,24397586,5
+3211358,24397586,5
+furien,24397586,5
+36355818,24397586,4
+65663691,24397586,5
+92830730,24397586,5
+91872215,24397586,4
+daidaianimal,24397586,4
+69918016,24397586,5
+macroideal,24397586,5
+lch_amo,24397586,3
+98009732,24397586,-1
+liero,24397586,4
+zooooooj,24397586,4
+122506785,24397586,5
+senlintu,24397586,4
+15058257,24397586,5
+4044320,24397586,5
+1295718,24397586,4
+guo4901,24397586,4
+jasmine-zhu,24397586,4
+3750983,24397586,5
+84109278,24397586,5
+zzzt29,24397586,4
+haoaining,24397586,3
+liuhan1213,24397586,5
+2493346,24397586,-1
+jieou1984,24397586,5
+58474530,24397586,4
+40446795,24397586,5
+60880769,24397586,5
+60020373,24397586,5
+zhaohuli,24397586,4
+103503223,24397586,4
+1366486,24397586,5
+51416132,24397586,3
+133027418,24397586,5
+winnie0032,24397586,4
+34986694,24397586,4
+82224797,24397586,5
+122492749,24397586,5
+34929495,24397586,2
+46754344,24397586,4
+1857885,24397586,4
+Jandeaux,24397586,4
+59477728,24397586,5
+marijo,24397586,5
+4265548,24397586,5
+56602541,24397586,5
+42661364,24397586,5
+51416551,24397586,4
+lanjingyu,24397586,-1
+55933493,24397586,4
+62727702,24397586,4
+donfer,24397586,3
+42413177,24397586,5
+badaalle,24397586,4
+75990882,24397586,5
+120833883,24397586,5
+erin_yyi,24397586,5
+50117779,24397586,4
+93465458,24397586,5
+2431455,24397586,4
+63927330,24397586,4
+notendbutand,24397586,5
+58347842,24397586,5
+82232780,24397586,2
+2135257,24397586,4
+127386685,24397586,4
+47582022,24397586,-1
+maggie594522,24397586,4
+46040413,24397586,5
+61235459,24397586,5
+eiffelwu,24397586,5
+everytimedouble,24397586,5
+yaozhilan,24397586,4
+57562576,24397586,4
+127406348,24397586,5
+43628615,24397586,5
+Travisea,24397586,5
+chengwq,24397586,4
+76668507,24397586,3
+last_quarter,24397586,2
+79465571,24397586,5
+35211592,24397586,5
+76624368,24397586,4
+lmelva,24397586,4
+Jungler,24397586,4
+ziv_yll,24397586,5
+104823216,24397586,5
+84250012,24397586,4
+53066275,24397586,5
+littlekunsheng,24397586,4
+48894602,24397586,4
+xiayichuan,24397586,5
+zzzzz23,24397586,4
+59156667,24397586,4
+ensi,24397586,4
+ms_one,24397586,3
+Ruty1985,24397586,-1
+nvxiahxx,24397586,5
+imKuku,24397586,5
+76630020,24397586,5
+57521129,24397586,5
+jh072,24397586,4
+66798898,24397586,3
+wishna,24397586,5
+44923935,24397586,5
+briggtta,24397586,4
+68584442,24397586,4
+dinoel,24397586,4
+45634421,24397586,4
+apple4520,24397586,3
+alessiagu,24397586,4
+131709746,24397586,5
+51045384,24397586,5
+49679739,24397586,4
+themissingken,24397586,4
+chaochaobro,24397586,5
+AuRevoir7,24397586,4
+82387095,24397586,5
+58535720,24397586,5
+nyx0115,24397586,5
+61519829,24397586,4
+36208276,24397586,4
+meme727,24397586,4
+3345658,24397586,3
+afreetsophia,24397586,4
+75173878,24397586,4
+sujieyi,24397586,4
+violetljj,24397586,3
+weijielin,24397586,5
+53412014,24397586,4
+3654230,24397586,4
+67843912,24397586,3
+bombbombbombbom,24397586,5
+66636570,24397586,5
+50166267,24397586,5
+1951463,24397586,5
+46588781,24397586,4
+41556922,24397586,4
+vividance,24397586,3
+43503664,24397586,3
+ilovejay79118,24397586,5
+blessyue,24397586,4
+ce-ce,24397586,5
+Coast0to0coast,24397586,4
+50410126,24397586,4
+58617905,24397586,4
+65820880,24397586,4
+lampslovesterry,24397586,3
+kittenvan,24397586,5
+3977584,24397586,4
+42146070,24397586,3
+Bubble-Geek,24397586,4
+4161317,24397586,4
+70866843,24397586,5
+91322725,24397586,4
+59705593,24397586,5
+goofy-G,24397586,5
+53836712,24397586,5
+59030523,24397586,4
+wtsy,24397586,5
+real_spain,24397586,4
+43132253,24397586,5
+53742632,24397586,5
+58202321,24397586,4
+50125049,24397586,2
+35068096,24397586,5
+qszone,24397586,4
+80163980,24397586,5
+muini,24397586,4
+46534834,24397586,5
+momon1900,24397586,5
+leexiaoxiao,24397586,3
+febechan,24397586,4
+81129445,24397586,4
+121381353,24397586,4
+lunacake,24397586,4
+oozhu,24397586,5
+44357083,24397586,5
+123961251,24397586,5
+44976171,24397586,3
+88386373,24397586,4
+92988194,24397586,5
+touya0229,24397586,4
+filbetty,24397586,5
+caicai1005,24397586,4
+2772825,24397586,4
+tuntunv,24397586,5
+54066175,24397586,5
+davidyxy798,24397586,4
+52498319,24397586,5
+juno_wang,24397586,4
+60048325,24397586,5
+buxiren,24397586,5
+4252061,24397586,-1
+37366802,24397586,5
+99253193,24397586,5
+51534769,24397586,4
+super0zero0,24397586,4
+sussylee,24397586,4
+131487816,24397586,5
+shjolin,24397586,3
+57392362,24397586,5
+superegg.,24397586,3
+133254262,24397586,4
+30158344,24397586,5
+cca2222223,24397586,5
+karasu419,24397586,4
+55572207,24397586,5
+81240800,24397586,5
+50063811,24397586,4
+dor0229,24397586,-1
+xiaoshang1818,24397586,4
+4835687,24397586,5
+blue828,24397586,4
+samendoon,24397586,4
+90854543,24397586,5
+80585311,24397586,4
+56488254,24397586,5
+Odawara-Hikari,24397586,4
+miaoza,24397586,5
+47139815,24397586,5
+76515207,24397586,5
+fulingke,24397586,5
+33900366,24397586,4
+49628933,24397586,5
+zhaoyihong,24397586,5
+48819084,24397586,4
+xiaodoudouban,24397586,5
+78174924,24397586,4
+raingong,24397586,-1
+102171845,24397586,4
+carcajou,24397586,4
+76417903,24397586,5
+hdkoo,24397586,5
+1271021,24397586,3
+81134195,24397586,3
+jessieq,24397586,5
+61268126,24397586,5
+2413203,24397586,5
+simonyao,24397586,2
+45864291,24397586,4
+63167150,24397586,4
+dearmia,24397586,5
+netant3000,24397586,5
+Lisa.L,24397586,3
+dxwsz1,24397586,4
+juliayunjie,24397586,3
+Swangshu,24397586,3
+2737013,24397586,5
+63424113,24397586,5
+75007342,24397586,3
+104432779,24397586,5
+faline,24397586,5
+75209751,24397586,5
+65181695,24397586,3
+sethqi,24397586,5
+67979559,24397586,4
+91017429,24397586,5
+63641303,24397586,5
+85179487,24397586,5
+2441545,24397586,5
+63196145,24397586,5
+133141228,24397586,5
+3603638,24397586,5
+53227132,24397586,4
+happyclam,24397586,5
+xuyansong,24397586,4
+nicy119,24397586,3
+108597970,24397586,5
+70441610,24397586,4
+stephanieyy,24397586,5
+driftaway,24397586,4
+1615580,24397586,5
+maodeercifang,24397586,-1
+22263173,24397586,4
+45332811,24397586,3
+30725262,24397586,4
+33663451,24397586,4
+Erinnnnnnn,24397586,3
+51888816,24397586,5
+66585349,24397586,4
+77879422,24397586,2
+54129779,24397586,5
+10349048,24397586,5
+littleisle,24397586,5
+51946959,24397586,4
+94690176,24397586,5
+126219233,24397586,5
+60241275,24397586,5
+122008020,24397586,5
+xiaodao102,24397586,4
+thomsonkoo,24397586,5
+biglazy,24397586,3
+freenest,24397586,4
+27068945,24397586,4
+45273631,24397586,5
+83701119,24397586,5
+4716984,24397586,5
+44834038,24397586,3
+46095087,24397586,4
+miaomiao0408,24397586,5
+85143493,24397586,5
+129778224,24397586,4
+happyangzi,24397586,5
+2722902,24397586,5
+46431247,24397586,4
+dianxuechaoren,24397586,5
+KatoShigeaki,24397586,4
+muyu125,24397586,4
+someoneunknown,24397586,2
+29202128,24397586,4
+3579800,24397586,4
+132171936,24397586,4
+eaufavor,24397586,4
+2974918,24397586,3
+Melody-Moon,24397586,3
+bodyblue,24397586,3
+80932579,24397586,5
+83641407,24397586,4
+Mr.KNight,24397586,3
+52246931,24397586,5
+ring_ring,24397586,5
+hiolivia,24397586,5
+josefina_sysbs,24397586,5
+fdid,24397586,4
+49587231,24397586,5
+49663103,24397586,5
+61059314,24397586,3
+55601098,24397586,5
+1608731,24397586,4
+4651036,24397586,5
+58955147,24397586,5
+la_ficine,24397586,4
+6133396,24397586,5
+84668219,24397586,4
+selfsura,24397586,5
+lunaprom,24397586,5
+46348903,24397586,5
+LeeMar,24397586,4
+36576530,24397586,4
+qijiejieblue,24397586,5
+103497855,24397586,5
+shutupfreud,24397586,4
+passerby-cyrene,24397586,4
+37677418,24397586,4
+61797911,24397586,4
+iamloco,24397586,5
+ViviaChen,24397586,4
+xweiway,24397586,4
+sunflowerqi,24397586,5
+bayer04040404,24397586,4
+125148047,24397586,4
+70315903,24397586,5
+52860115,24397586,4
+71127427,24397586,5
+46209502,24397586,5
+64540248,24397586,4
+3905412,24397586,5
+55705224,24397586,4
+babybluebb,24397586,3
+71673399,24397586,5
+64497522,24397586,4
+63760743,24397586,4
+tengAkame,24397586,4
+128836726,24397586,4
+42539278,24397586,3
+54791351,24397586,5
+jzcatherine1990,24397586,4
+49914687,24397586,4
+56282560,24397586,4
+xifengl,24397586,5
+beary,24397586,4
+87605757,24397586,5
+47715196,24397586,-1
+4912264,24397586,4
+18088237,24397586,3
+lassiedusky,24397586,3
+34057114,24397586,5
+lovedust,24397586,4
+123542528,24397586,4
+2432104,24397586,3
+80696645,24397586,3
+simplece,24397586,4
+73749265,24397586,5
+Rebecca_618,24397586,4
+54942314,24397586,4
+52508494,24397586,5
+inkeewang,24397586,3
+toka,24397586,4
+33904649,24397586,5
+hanxiao2060,24397586,4
+59129484,24397586,5
+hecaba,24397586,4
+leonh,24397586,4
+46171648,24397586,5
+jaciewho,24397586,5
+28709669,24397586,3
+46192114,24397586,3
+ontheroad93,24397586,3
+iconsume,24397586,5
+92948260,24397586,5
+zyv1224,24397586,4
+43156825,24397586,5
+41298606,24397586,5
+71513680,24397586,5
+4439510,24397586,4
+mumuki,24397586,5
+3783693,24397586,3
+3600589,24397586,5
+44531163,24397586,-1
+amzoey,24397586,4
+suncloudy,24397586,5
+61076987,24397586,4
+53478105,24397586,5
+Shyisnotshy,24397586,3
+75267382,24397586,5
+wateralong,24397586,5
+63522442,24397586,3
+azaleasmile,24397586,4
+90717862,24397586,3
+36321216,24397586,4
+nhlover,24397586,5
+novich,24397586,3
+39996045,24397586,4
+lucky0520,24397586,4
+128799458,24397586,5
+gaizadizadi,24397586,4
+130129200,24397586,3
+xiankanhualuo,24397586,4
+zhoukaka1121,24397586,4
+64872065,24397586,2
+NG,24397586,5
+Popdai,24397586,5
+3943144,24397586,5
+rosekiss,24397586,3
+29107256,24397586,4
+SylviaLiu,24397586,5
+122839892,24397586,3
+3254520,24397586,4
+67888896,24397586,5
+44821238,24397586,5
+fukujune,24397586,4
+49435214,24397586,5
+7768202,24397586,4
+2754370,24397586,5
+76681041,24397586,4
+grantqian,24397586,5
+vikawang,24397586,3
+77677293,24397586,5
+60430589,24397586,5
+soffeeyang,24397586,5
+Hermetic,24397586,5
+99027512,24397586,5
+40925231,24397586,-1
+2829909,24397586,3
+kkbear,24397586,3
+78502935,24397586,5
+lydiapy,24397586,5
+121126553,24397586,3
+52101882,24397586,5
+34063715,24397586,5
+53082027,24397586,3
+64649232,24397586,4
+64060084,24397586,5
+s399,24397586,4
+11012424,24397586,5
+muyuchao,24397586,4
+130860796,24397586,5
+Boomer,24397586,4
+beijusenlin,24397586,4
+narahana,24397586,3
+lovely_love,24397586,4
+8312118,24397586,3
+48632772,24397586,4
+77491930,24397586,5
+119290611,24397586,5
+rakumm,24397586,4
+2870309,24397586,-1
+2870309,24397586,-1
+79627181,24397586,5
+63564385,24397586,5
+stillfyou,24397586,5
+HikaruL,24397586,5
+Shoon,24397586,5
+4349980,24397586,5
+45042581,24397586,5
+66189087,24397586,4
+maomao19901108,24397586,5
+smshuimu,24397586,4
+49031495,24397586,4
+rackylo,24397586,4
+mjinga,24397586,5
+78525793,24397586,4
+44182814,24397586,5
+70385539,24397586,5
+harechan,24397586,5
+vagui,24397586,4
+wubei7231,24397586,4
+sisyneo,24397586,4
+62917415,24397586,4
+robins1979,24397586,4
+87636985,24397586,4
+yaerli,24397586,3
+lingtse,24397586,5
+woodleaf_723,24397586,5
+yysimida,24397586,5
+BobMing,24397586,5
+103446699,24397586,5
+3270926,24397586,4
+70386523,24397586,3
+71181418,24397586,4
+irockbunny,24397586,5
+3999163,24397586,4
+1972175,24397586,5
+Sedom,24397586,5
+holy-fishman,24397586,4
+70790963,24397586,3
+2040497,24397586,5
+2040497,24397586,5
+xuyinaxxxxxxx,24397586,4
+iori70599,24397586,5
+65458998,24397586,3
+mylittlechul_c,24397586,4
+49989946,24397586,5
+4281148,24397586,5
+57367354,24397586,4
+44690899,24397586,4
+dante8977,24397586,5
+mfishy,24397586,5
+44272314,24397586,5
+echodtatu,24397586,5
+telegraph,24397586,5
+3519575,24397586,5
+conanemily,24397586,4
+85421476,24397586,5
+1383301,24397586,4
+131985896,24397586,4
+vsunan,24397586,4
+69970746,24397586,4
+peilic1020,24397586,4
+48069479,24397586,4
+3894700,24397586,4
+37312382,24397586,5
+4115987,24397586,5
+clarehsu0203,24397586,4
+132711447,24397586,5
+fuyuwinter,24397586,3
+aicbgyihai,24397586,5
+51974103,24397586,4
+dearmagic,24397586,5
+Gau,24397586,5
+crazycathr,24397586,4
+1115920,24397586,5
+30796197,24397586,5
+50121697,24397586,4
+64149786,24397586,4
+48899980,24397586,5
+44499391,24397586,4
+49319181,24397586,4
+ziying35,24397586,4
+103222605,24397586,5
+77881111,24397586,3
+aboutdistance,24397586,5
+8402557,24397586,4
+110315543,24397586,4
+sanzhiling,24397586,4
+68957846,24397586,4
+jimodipingxian,24397586,5
+50867366,24397586,4
+greatzhujie,24397586,4
+4692009,24397586,4
+mysterymiao,24397586,5
+8806616,24397586,5
+wade,24397586,4
+tudounvjue,24397586,4
+75650896,24397586,3
+43020527,24397586,4
+63689594,24397586,4
+52872697,24397586,3
+59558511,24397586,5
+79412322,24397586,4
+102164266,24397586,5
+caosancat,24397586,4
+greatblue,24397586,3
+miaolele,24397586,5
+36900220,24397586,4
+avisj,24397586,4
+46184375,24397586,5
+zhuzhenning,24397586,4
+65154337,24397586,4
+120635430,24397586,5
+zhangzhangzhang,24397586,5
+49855278,24397586,4
+80345417,24397586,5
+u_hxy0504,24397586,4
+syrz,24397586,4
+42623950,24397586,4
+47098461,24397586,4
+45840485,24397586,3
+iamliving,24397586,4
+50219991,24397586,4
+pepperannn,24397586,5
+xiaochener,24397586,5
+14068242,24397586,5
+74805050,24397586,4
+67744266,24397586,4
+augusttt,24397586,4
+54876127,24397586,5
+dusk.xiyang,24397586,4
+partric,24397586,5
+53661945,24397586,5
+48873217,24397586,5
+3218379,24397586,3
+cannwindsor,24397586,3
+40839121,24397586,4
+79963490,24397586,4
+yuyuzstarry,24397586,4
+58706786,24397586,4
+89991541,24397586,3
+swayne,24397586,3
+2211361,24397586,4
+gualan,24397586,4
+kyhero,24397586,4
+4161702,24397586,5
+54325025,24397586,5
+40058269,24397586,5
+gibeon,24397586,4
+DizzMa,24397586,5
+43699457,24397586,3
+68728325,24397586,5
+jinglingwangzi,24397586,-1
+67742715,24397586,4
+61695974,24397586,2
+45641492,24397586,5
+coolfax,24397586,5
+57001973,24397586,5
+dabenxiaoqian,24397586,5
+90031915,24397586,5
+59071520,24397586,4
+64968243,24397586,4
+67707969,24397586,4
+112133874,24397586,4
+60486923,24397586,5
+Ech000000000000,24397586,5
+shiyun.sherry,24397586,3
+qingjinxiaohei,24397586,5
+81316047,24397586,4
+119325282,24397586,5
+mollydai,24397586,5
+x-inter,24397586,5
+yeyesinian,24397586,5
+63488867,24397586,4
+kimnatalie,24397586,5
+79667856,24397586,4
+lizandliz,24397586,4
+64543096,24397586,4
+andriylin,24397586,4
+56138640,24397586,4
+lowai,24397586,5
+windyzhu3949,24397586,4
+cuteeestar,24397586,5
+Kraatui,24397586,3
+93606686,24397586,5
+maundytime,24397586,4
+15183757,24397586,5
+4438579,24397586,-1
+52259543,24397586,5
+44929193,24397586,4
+121397901,24397586,5
+1380354,24397586,4
+52800930,24397586,5
+77344802,24397586,-1
+63915564,24397586,4
+36721828,24397586,5
+puhonglei,24397586,4
+64173610,24397586,4
+99632498,24397586,5
+efrey,24397586,3
+103593211,24397586,5
+68020354,24397586,4
+elsolmysun,24397586,5
+51214182,24397586,4
+peytonc,24397586,4
+amateur,24397586,-1
+130571706,24397586,3
+54893820,24397586,4
+Immafrady,24397586,5
+64213898,24397586,3
+tamakown,24397586,5
+132479981,24397586,4
+3290709,24397586,5
+33597647,24397586,5
+agnes223,24397586,4
+xiao__F,24397586,4
+56054406,24397586,5
+57459956,24397586,5
+68635821,24397586,5
+meijiangshi,24397586,4
+lokimicky,24397586,5
+av13,24397586,4
+50414498,24397586,5
+when3memory7,24397586,4
+58101535,24397586,4
+littlemiemie,24397586,5
+102605068,24397586,5
+lovejuicyj88,24397586,4
+38629632,24397586,4
+120824926,24397586,5
+43455276,24397586,5
+catar23310,24397586,5
+24473673,24397586,5
+moika,24397586,5
+46386865,24397586,4
+83263798,24397586,5
+bline,24397586,4
+53735887,24397586,4
+54827422,24397586,4
+53307722,24397586,5
+79978536,24397586,4
+vanie,24397586,4
+119848906,24397586,3
+46692711,24397586,4
+61994901,24397586,5
+55652120,24397586,4
+amzyangyk,24397586,4
+32796207,24397586,3
+1486195,24397586,4
+76707175,24397586,4
+douchebag,24397586,5
+56392889,24397586,5
+54513758,24397586,5
+ovivio,24397586,5
+gismine,24397586,5
+maochenmu,24397586,5
+kindy_,24397586,-1
+58515646,24397586,4
+75992903,24397586,4
+53042572,24397586,-1
+52588154,24397586,5
+thrush,24397586,5
+Chliztian,24397586,5
+131043269,24397586,5
+cuizixi,24397586,5
+tinysean,24397586,3
+cazze,24397586,3
+49074611,24397586,5
+51197261,24397586,4
+1569342,24397586,4
+AfterElev,24397586,4
+3009345,24397586,4
+melissawang,24397586,5
+62062477,24397586,4
+3911666,24397586,5
+nuderain,24397586,5
+dingjiandoris,24397586,5
+71057399,24397586,4
+50221817,24397586,4
+daoxunchang,24397586,4
+Hongyuan816,24397586,5
+54370157,24397586,5
+67503021,24397586,5
+131626464,24397586,5
+wingrl,24397586,5
+63485325,24397586,5
+moonmoonliu,24397586,5
+3884732,24397586,4
+62979514,24397586,5
+71211273,24397586,5
+alicelotus,24397586,4
+xk13,24397586,4
+127975111,24397586,4
+105407857,24397586,3
+erikzm,24397586,4
+54778746,24397586,3
+sue0213,24397586,4
+1667625,24397586,4
+yesbuters,24397586,3
+chuck0jessie,24397586,5
+3293781,24397586,5
+floragarfield,24397586,5
+emmalty,24397586,4
+39520405,24397586,5
+bunnylalala,24397586,5
+featherallover,24397586,5
+64245643,24397586,3
+1712422,24397586,-1
+61553411,24397586,5
+frankfankai,24397586,5
+hexiaoqin,24397586,3
+1388113,24397586,-1
+1575077,24397586,4
+liujunhe123,24397586,5
+mayimayi,24397586,5
+44820130,24397586,5
+131210503,24397586,5
+annxin19,24397586,5
+chloeti,24397586,4
+llh9277,24397586,4
+wallaceLee,24397586,5
+YHRui0831,24397586,5
+2234869,24397586,5
+4606615,24397586,2
+jhy007,24397586,5
+43650897,24397586,4
+55412711,24397586,5
+lygirl989193,24397586,4
+vicking,24397586,-1
+show06254444,24397586,4
+46979178,24397586,5
+iorange,24397586,5
+31555036,24397586,5
+moluodongxia,24397586,5
+graciesy,24397586,4
+103735356,24397586,4
+2361739,24397586,5
+PinkyL,24397586,3
+45347521,24397586,4
+74966541,24397586,5
+83231241,24397586,5
+48188623,24397586,5
+EBO,24397586,5
+jasonwang,24397586,4
+68532789,24397586,3
+4679905,24397586,5
+3013889,24397586,4
+4070673,24397586,5
+20710801,24397586,3
+emonino,24397586,5
+44034935,24397586,5
+43562341,24397586,5
+53557989,24397586,5
+ZotterElaine,24397586,5
+82909007,24397586,5
+joyceshan,24397586,4
+72629481,24397586,3
+42535832,24397586,5
+63358932,24397586,5
+37793108,24397586,4
+83879581,24397586,5
+little_cupid,24397586,4
+sakuras1412,24397586,-1
+50074678,24397586,5
+omegaenming,24397586,5
+existtoevendead,24397586,4
+Christina0710,24397586,5
+Who.care.,24397586,3
+61728346,24397586,5
+65562790,24397586,5
+madbamboo,24397586,4
+34674400,24397586,4
+PC_Mancola,24397586,4
+62629078,24397586,5
+108992688,24397586,3
+3855637,24397586,4
+76137236,24397586,5
+amethysts,24397586,5
+66339259,24397586,5
+55646304,24397586,5
+66361496,24397586,4
+lazydesigner,24397586,3
+63790894,24397586,4
+35350032,24397586,5
+dangdangbaba,24397586,3
+reverieE,24397586,3
+41823520,24397586,4
+65086870,24397586,4
+ripeconan,24397586,5
+4068572,24397586,5
+48961470,24397586,5
+94594889,24397586,4
+102856154,24397586,3
+43978557,24397586,5
+3435124,24397586,3
+octopusz,24397586,5
+122368219,24397586,3
+3932688,24397586,5
+102838934,24397586,4
+sissistar,24397586,3
+48227977,24397586,4
+41374892,24397586,4
+sky325,24397586,3
+Ali1065641315,24397586,4
+3677825,24397586,5
+zasu1100412,24397586,5
+67875068,24397586,5
+60804345,24397586,3
+ryogon,24397586,4
+supergububble,24397586,5
+85245609,24397586,3
+84851693,24397586,5
+56445943,24397586,-1
+ballteda,24397586,4
+arlmy,24397586,4
+3001594,24397586,4
+nois,24397586,4
+43212336,24397586,5
+4533857,24397586,5
+51833254,24397586,4
+78635378,24397586,5
+125136984,24397586,4
+60656963,24397586,5
+1820229,24397586,5
+80923059,24397586,4
+67890282,24397586,5
+79770724,24397586,5
+35252346,24397586,5
+48636603,24397586,4
+xiaoyao8705,24397586,4
+126152053,24397586,4
+65383227,24397586,4
+61461484,24397586,4
+4373310,24397586,4
+jaylia,24397586,5
+124536699,24397586,5
+132096780,24397586,5
+45799570,24397586,4
+vloiter,24397586,5
+61532165,24397586,4
+51306368,24397586,3
+faithfung,24397586,5
+krishino,24397586,5
+ichaos,24397586,3
+summerest,24397586,4
+3976831,24397586,5
+69814932,24397586,5
+82993911,24397586,4
+lensliao,24397586,4
+56478530,24397586,5
+110612243,24397586,-1
+4549005,24397586,4
+vaie,24397586,5
+63567071,24397586,3
+veronica_2015,24397586,4
+detective,24397586,3
+56136845,24397586,3
+7913986,24397586,-1
+52247156,24397586,5
+4456648,24397586,4
+bulijite,24397586,4
+tomiesky,24397586,4
+59880831,24397586,4
+77232684,24397586,5
+gekisoul,24397586,4
+zaozao928,24397586,5
+121997108,24397586,3
+14407697,24397586,5
+ciseibian,24397586,4
+58879384,24397586,4
+jack13,24397586,5
+yangziche,24397586,5
+ChrisNoth,24397586,5
+le_grand_bleu,24397586,3
+50258293,24397586,5
+88316927,24397586,4
+summertime727,24397586,-1
+zizi1201,24397586,4
+G-myloxg,24397586,5
+hahehahe,24397586,4
+47454676,24397586,5
+57697079,24397586,5
+122374018,24397586,4
+57083421,24397586,5
+52240587,24397586,3
+cqmccb,24397586,5
+51435556,24397586,5
+fakedrum,24397586,4
+bomshakalaka,24397586,5
+39957115,24397586,5
+1163926,24397586,4
+66197287,24397586,5
+76541238,24397586,5
+chatonxx,24397586,4
+5617300,24397586,3
+kingmue,24397586,4
+80770457,24397586,5
+papaduty,24397586,4
+50662959,24397586,3
+belyone,24397586,4
+Plesiosaurus,24397586,5
+46428362,24397586,5
+45984136,24397586,4
+little_baby,24397586,5
+mo2mo,24397586,5
+DKfeixiang,24397586,5
+49258293,24397586,3
+52356727,24397586,4
+6264939,24397586,5
+4156800,24397586,4
+55978897,24397586,4
+moviecafe,24397586,3
+DVforever,24397586,5
+48746387,24397586,5
+j5281,24397586,4
+Erman-Wei,24397586,3
+K,24397586,4
+manhattant,24397586,4
+31172327,24397586,4
+51067587,24397586,5
+grey_07,24397586,4
+pzaiqueen,24397586,4
+89667488,24397586,5
+64756768,24397586,4
+gudushamo,24397586,4
+lamchan,24397586,5
+tingdy,24397586,5
+52287609,24397586,3
+31305546,24397586,2
+3801481,24397586,5
+2276440,24397586,5
+57639200,24397586,4
+32131802,24397586,-1
+15195696,24397586,-1
+55474748,24397586,3
+113050393,24397586,5
+4367069,24397586,5
+checcazou,24397586,4
+Fay...,24397586,4
+sophie1214,24397586,4
+2167550,24397586,5
+58618323,24397586,5
+59945441,24397586,3
+69116114,24397586,5
+xxxxsxxxx,24397586,3
+83619054,24397586,4
+24557674,24397586,5
+42186843,24397586,3
+30079642,24397586,4
+51303183,24397586,5
+72470726,24397586,5
+53917736,24397586,5
+luzhumao,24397586,3
+nekoface,24397586,5
+iswear_4ever,24397586,4
+60720590,24397586,4
+2813940,24397586,3
+colorfulturtle,24397586,-1
+1052022,24397586,3
+131482779,24397586,5
+doddlegone,24397586,4
+9104603,24397586,4
+Sunny851020,24397586,4
+57962221,24397586,5
+115987406,24397586,3
+42009236,24397586,5
+62775210,24397586,4
+79560195,24397586,5
+Jhon_Lou,24397586,5
+Windbroken,24397586,4
+15019258,24397586,-1
+129732129,24397586,1
+66547713,24397586,4
+10344719,24397586,4
+freed0me,24397586,5
+evilregina,24397586,5
+54801845,24397586,5
+oathkeeper,24397586,4
+2265138,24397586,4
+74984713,24397586,5
+fifa10,24397586,4
+kidkid,24397586,5
+49314835,24397586,5
+ILOVEMANYEA,24397586,5
+23154088,24397586,4
+Frieda_,24397586,4
+130762342,24397586,5
+cinta-2012,24397586,4
+43927389,24397586,3
+46256452,24397586,4
+imoviekobe,24397586,5
+63716641,24397586,5
+SnowyOwl1402,24397586,5
+61400077,24397586,5
+45118601,24397586,4
+4373936,24397586,4
+gerralonso,24397586,4
+3591104,24397586,3
+123593065,24397586,4
+48603851,24397586,3
+48603851,24397586,3
+52705401,24397586,5
+Lolita1881,24397586,4
+51029420,24397586,5
+56845165,24397586,5
+57970851,24397586,4
+4359954,24397586,4
+58608944,24397586,3
+suck-man,24397586,5
+zlzzoe,24397586,4
+guosiyao,24397586,5
+3467736,24397586,4
+48201908,24397586,5
+1012932,24397586,4
+alicenana,24397586,4
+malishamarysamo,24397586,-1
+74176502,24397586,4
+94842809,24397586,5
+2746761,24397586,4
+Soniawoolf,24397586,4
+so-magic,24397586,4
+51840690,24397586,4
+xiaoyememories,24397586,4
+132190479,24397586,5
+73039194,24397586,4
+zxc_suki,24397586,5
+55842378,24397586,4
+73571891,24397586,4
+93208688,24397586,5
+purple2046,24397586,4
+yuriko233,24397586,4
+Ferloco,24397586,5
+72138781,24397586,4
+Magicians,24397586,5
+2495913,24397586,4
+stories7,24397586,4
+hechiyin,24397586,4
+sirk,24397586,4
+zdybit,24397586,5
+33911061,24397586,3
+lihan19970726,24397586,5
+80224563,24397586,5
+63049878,24397586,5
+hongdou626,24397586,-1
+53682563,24397586,4
+52951780,24397586,4
+72733523,24397586,5
+33133224,24397586,4
+josephgyal,24397586,3
+55455251,24397586,5
+lena0517,24397586,4
+44803026,24397586,5
+106379046,24397586,5
+50510383,24397586,2
+4039130,24397586,5
+45112822,24397586,5
+96233628,24397586,4
+ALLCOFFEE,24397586,5
+yamaaibani,24397586,3
+4398767,24397586,4
+44632827,24397586,5
+84207817,24397586,4
+131858556,24397586,5
+25960765,24397586,4
+xuecong,24397586,4
+miss-sun,24397586,5
+limabixiaojie,24397586,3
+52380838,24397586,5
+56710239,24397586,4
+23981651,24397586,5
+merengue,24397586,3
+sophiemay,24397586,4
+62196307,24397586,4
+62314563,24397586,3
+58544664,24397586,5
+62754677,24397586,4
+130360774,24397586,5
+72136277,24397586,5
+96383885,24397586,5
+xiaoyouhun,24397586,5
+46709909,24397586,5
+zerilin,24397586,-1
+96523797,24397586,5
+119267623,24397586,5
+ydyrxbsbxl,24397586,5
+70781768,24397586,-1
+1464431,24397586,5
+saieleven,24397586,5
+jing-junjie,24397586,4
+53475858,24397586,-1
+124465825,24397586,4
+pau,24397586,5
+Rae8023,24397586,5
+84531200,24397586,5
+43494097,24397586,5
+69515541,24397586,5
+2380878,24397586,4
+virginieds,24397586,4
+4019961,24397586,5
+bluered,24397586,5
+80682098,24397586,5
+55286449,24397586,5
+stonelcc,24397586,4
+53554219,24397586,4
+69298292,24397586,4
+57656194,24397586,5
+37925155,24397586,5
+99643447,24397586,-1
+51781734,24397586,4
+1282890,24397586,-1
+76589400,24397586,5
+47473847,24397586,3
+zclei,24397586,4
+58577720,24397586,5
+72684898,24397586,5
+sukaka51,24397586,4
+seoyoungeun,24397586,4
+asdf710667,24397586,5
+rebeccasen,24397586,4
+64489652,24397586,4
+64489652,24397586,4
+130937387,24397586,3
+18360610,24397586,3
+39107236,24397586,5
+sunyu_5499,24397586,4
+103458789,24397586,3
+boyeen,24397586,4
+70569522,24397586,4
+101182611,24397586,4
+42735872,24397586,4
+33569322,24397586,5
+luciferls,24397586,3
+2819380,24397586,5
+126831028,24397586,4
+130338838,24397586,4
+YMxiaocungu,24397586,3
+50573037,24397586,4
+iisakura,24397586,4
+1070762,24397586,4
+119203760,24397586,4
+119203760,24397586,4
+70915171,24397586,5
+78663673,24397586,5
+36621770,24397586,5
+68116821,24397586,5
+68100167,24397586,5
+cheeringo,24397586,5
+ziyanxue,24397586,4
+magilee0608,24397586,4
+63156510,24397586,4
+72677574,24397586,5
+33185021,24397586,5
+roylaw,24397586,4
+mushichong,24397586,5
+67030256,24397586,3
+63932737,24397586,5
+56609628,24397586,4
+2232531,24397586,-1
+59827485,24397586,3
+91949179,24397586,5
+69679800,24397586,5
+52689528,24397586,3
+sunA1n711,24397586,4
+57879244,24397586,-1
+39518332,24397586,4
+51909873,24397586,5
+62178164,24397586,3
+Your-Aries,24397586,4
+xiatian722,24397586,3
+66688383,24397586,-1
+60055945,24397586,4
+61142417,24397586,4
+130138879,24397586,5
+52296283,24397586,5
+74527805,24397586,5
+gemouwu,24397586,5
+45838830,24397586,4
+16991606,24397586,4
+60980785,24397586,4
+44400357,24397586,4
+33142981,24397586,4
+Ryan-Z,24397586,4
+sisyli51,24397586,4
+84396069,24397586,5
+48433802,24397586,5
+24274750,24397586,5
+lllianely,24397586,-1
+42555541,24397586,4
+122560765,24397586,5
+26194155,24397586,4
+Ada_quan,24397586,4
+121252030,24397586,5
+75513285,24397586,4
+land1314,24397586,4
+strange_kid,24397586,-1
+44708171,24397586,3
+48369193,24397586,3
+wildold,24397586,4
+53721830,24397586,5
+42663693,24397586,5
+42663693,24397586,5
+qingfengpushang,24397586,5
+9915911,24397586,3
+131120554,24397586,4
+rainloveyy,24397586,4
+lovejiaou,24397586,4
+42794944,24397586,4
+wangjingjuan,24397586,3
+Stephanie_zhong,24397586,5
+zlyxxm,24397586,4
+58294803,24397586,5
+97105227,24397586,3
+3344118,24397586,5
+zoefangqi,24397586,5
+sodamy4u,24397586,5
+andywenzhi,24397586,4
+27675083,24397586,5
+sunjianshuo,24397586,5
+4660563,24397586,5
+likecake,24397586,5
+14044230,24397586,5
+1512865,24397586,4
+127245295,24397586,3
+84268334,24397586,4
+wendyfield,24397586,4
+smilececi,24397586,5
+3248632,24397586,4
+53962357,24397586,4
+highlightxing,24397586,4
+nunusun,24397586,5
+47636927,24397586,5
+48130433,24397586,5
+131839277,24397586,3
+2418301,24397586,4
+SummerDuan,24397586,3
+43931054,24397586,5
+3522938,24397586,4
+cl1235,24397586,4
+30665792,24397586,5
+90532402,24397586,5
+moqee,24397586,4
+70272999,24397586,5
+25970354,24397586,3
+zhouzhenni,24397586,5
+vnoonv,24397586,-1
+57892517,24397586,3
+chenbing,24397586,3
+45816367,24397586,5
+duduxiongzhifu,24397586,4
+55386742,24397586,5
+1723553,24397586,4
+78917440,24397586,5
+axio,24397586,4
+42443171,24397586,5
+52015863,24397586,-1
+2039887,24397586,4
+Devil.Q,24397586,4
+woshixiaoqi,24397586,5
+adamhsieh,24397586,5
+pkbraveheart,24397586,5
+mollymouth,24397586,-1
+lazyyufeng,24397586,4
+mad_apple,24397586,4
+chinhao,24397586,4
+47170402,24397586,3
+46393158,24397586,5
+48634684,24397586,4
+yuyuyuyuyuxp,24397586,5
+47674074,24397586,4
+41703158,24397586,4
+efeimaomao,24397586,5
+canopy,24397586,5
+4089785,24397586,4
+47994222,24397586,5
+zzllxiaoxiao,24397586,4
+lrimbaud,24397586,5
+westleaf,24397586,5
+casper2fly,24397586,4
+mycage,24397586,3
+jackshuo,24397586,3
+RCN,24397586,5
+78475246,24397586,5
+4071278,24397586,4
+114420146,24397586,4
+Kev_,24397586,5
+yangshuangblue,24397586,4
+122361491,24397586,5
+lovejuan-foreve,24397586,5
+67746913,24397586,4
+4889336,24397586,5
+heyjj,24397586,4
+48966304,24397586,5
+61811494,24397586,5
+3410163,24397586,5
+82206581,24397586,5
+47818182,24397586,5
+62368815,24397586,5
+56647089,24397586,5
+51247678,24397586,4
+47652999,24397586,5
+47652999,24397586,5
+shaochen,24397586,5
+mimizang,24397586,4
+clever528,24397586,4
+51965075,24397586,4
+123689430,24397586,5
+22842369,24397586,4
+58158842,24397586,5
+61078362,24397586,3
+69961851,24397586,5
+julia_qi,24397586,5
+102336830,24397586,4
+vivien_princess,24397586,4
+2569425,24397586,4
+26650310,24397586,5
+65638659,24397586,5
+Tsukishima,24397586,5
+78192927,24397586,4
+3651501,24397586,5
+106497872,24397586,3
+106497872,24397586,3
+Fin.de.semana,24397586,4
+43887086,24397586,4
+51141420,24397586,4
+misskaka214,24397586,3
+gdpan,24397586,5
+chichi_g,24397586,4
+Little-bear.,24397586,3
+fuqianyu,24397586,4
+leosama,24397586,5
+zq8870690207,24397586,3
+1422594,24397586,5
+71361734,24397586,3
+72850800,24397586,3
+61845850,24397586,4
+babajiang,24397586,3
+xiuxiutiancai,24397586,3
+103111224,24397586,5
+52421629,24397586,-1
+wwto101,24397586,5
+2142284,24397586,4
+2809964,24397586,2
+45797092,24397586,2
+79420813,24397586,4
+null12345,24397586,4
+liuxustc,24397586,4
+zhazha0601,24397586,5
+71861591,24397586,4
+4267389,24397586,5
+jocellen,24397586,-1
+3613742,24397586,5
+foxzool,24397586,4
+Before,24397586,-1
+56948968,24397586,5
+63170647,24397586,4
+4534557,24397586,5
+lemoncake,24397586,5
+61506654,24397586,5
+Para.Five,24397586,-1
+124385874,24397586,5
+Yulia,24397586,3
+43720060,24397586,5
+34727533,24397586,4
+44562127,24397586,5
+18313578,24397586,5
+AirCastle,24397586,5
+gogom,24397586,3
+65734199,24397586,3
+62949401,24397586,4
+2914496,24397586,5
+4874301,24397586,4
+below17,24397586,3
+Lianyutou,24397586,5
+121499670,24397586,5
+3486254,24397586,4
+2239773,24397586,4
+4413666,24397586,4
+pentie,24397586,5
+xuweigrace,24397586,5
+Julilili,24397586,4
+minus16,24397586,4
+yishuiyimu,24397586,4
+Psycho_L,24397586,4
+71865681,24397586,5
+79846892,24397586,4
+3852778,24397586,4
+shuiseji,24397586,5
+59913885,24397586,-1
+summerwang,24397586,5
+63367426,24397586,5
+85821824,24397586,5
+123546301,24397586,5
+42644353,24397586,5
+41304325,24397586,3
+59018880,24397586,4
+132045687,24397586,5
+3303499,24397586,3
+53268951,24397586,5
+63977456,24397586,5
+60162544,24397586,5
+2167952,24397586,5
+supersun1005,24397586,4
+120084291,24397586,5
+79492851,24397586,5
+unali,24397586,5
+dadadongdada,24397586,5
+dixie_chen,24397586,4
+65534750,24397586,5
+45949533,24397586,2
+55809849,24397586,3
+coralbell,24397586,5
+zhawk008,24397586,3
+buhua,24397586,4
+99025591,24397586,5
+1295507,24397586,4
+57590168,24397586,4
+Pajerong,24397586,5
+59570753,24397586,5
+70081984,24397586,4
+gallria,24397586,3
+gallria,24397586,3
+mingmeng,24397586,4
+48829574,24397586,4
+124037977,24397586,5
+53704124,24397586,4
+lulu_power,24397586,5
+78937198,24397586,4
+abezhang,24397586,4
+yizhaisansheng,24397586,5
+lovelyyuchen,24397586,4
+93830323,24397586,5
+sea-lucky,24397586,5
+luocha,24397586,5
+abyssalsea,24397586,3
+47692286,24397586,4
+126324592,24397586,5
+72133915,24397586,3
+isolated_,24397586,5
+gaojfz,24397586,4
+50916167,24397586,5
+littlecar,24397586,4
+64326764,24397586,5
+43480485,24397586,3
+57898362,24397586,5
+2156872,24397586,5
+114339975,24397586,5
+ElyseLee,24397586,5
+49658554,24397586,3
+49298107,24397586,4
+43992020,24397586,4
+38648875,24397586,4
+hellozyn,24397586,3
+44971294,24397586,5
+2856840,24397586,4
+71929336,24397586,4
+zhubling,24397586,5
+76032805,24397586,3
+104551226,24397586,4
+Grace_Xuliang,24397586,5
+51100123,24397586,5
+74932520,24397586,5
+edward4th,24397586,4
+72783015,24397586,5
+92688516,24397586,4
+48364145,24397586,4
+candydarling,24397586,4
+wzdradon,24397586,5
+35780501,24397586,4
+74937470,24397586,4
+52127891,24397586,5
+yeorion,24397586,5
+pppaige,24397586,5
+1602396,24397586,4
+misshjz,24397586,5
+serendip,24397586,5
+38614200,24397586,5
+chan2j,24397586,5
+82775065,24397586,5
+2759466,24397586,5
+50207980,24397586,5
+emmadoudou,24397586,5
+49103272,24397586,5
+44317071,24397586,4
+ashleyzla,24397586,5
+swd3e,24397586,5
+48555554,24397586,5
+kilruk,24397586,4
+103769558,24397586,4
+119739719,24397586,5
+1527521,24397586,4
+75652838,24397586,5
+3408902,24397586,5
+skywwl,24397586,4
+nara1123,24397586,5
+cajiln,24397586,4
+43212907,24397586,5
+MYtachikoma,24397586,4
+Winky_R,24397586,4
+2153363,24397586,4
+momoko-rabbit,24397586,5
+56849444,24397586,5
+yukuai,24397586,-1
+siren-siren,24397586,5
+77097269,24397586,3
+55280839,24397586,4
+52909952,24397586,5
+Tinyk,24397586,4
+66599004,24397586,5
+12738365,24397586,4
+130799573,24397586,5
+97211660,24397586,5
+44394014,24397586,4
+3625223,24397586,5
+41383794,24397586,5
+131970953,24397586,5
+Hans_Du,24397586,5
+3699603,24397586,4
+92929903,24397586,5
+49257621,24397586,5
+loselove,24397586,5
+124666396,24397586,3
+leeyo,24397586,4
+61719919,24397586,5
+bobolu,24397586,4
+119428504,24397586,3
+2376121,24397586,5
+marlborosin,24397586,4
+64828664,24397586,5
+58603704,24397586,4
+bobim,24397586,3
+49515197,24397586,4
+46711642,24397586,5
+47896876,24397586,5
+EmilyLin,24397586,5
+53214728,24397586,5
+fantianyin,24397586,4
+3487006,24397586,5
+112970184,24397586,5
+ichee,24397586,5
+104575422,24397586,5
+124653543,24397586,5
+71141044,24397586,5
+anotheronexia,24397586,5
+52830384,24397586,4
+125666713,24397586,5
+25664582,24397586,4
+48744417,24397586,3
+16073149,24397586,4
+61898774,24397586,5
+46469157,24397586,4
+123067666,24397586,5
+63156283,24397586,3
+easternmoon,24397586,-1
+52640827,24397586,5
+beatrice_bei,24397586,5
+silvergrey,24397586,4
+58630530,24397586,5
+53134415,24397586,4
+60432635,24397586,4
+undas,24397586,4
+71541185,24397586,5
+ziwu,24397586,4
+48504551,24397586,5
+120956047,24397586,4
+T.V.Zoe,24397586,4
+mint4tops,24397586,5
+ecolizx,24397586,5
+Coposer,24397586,5
+joyful_jojo,24397586,4
+45630079,24397586,4
+4453892,24397586,-1
+49489943,24397586,4
+82813230,24397586,4
+123453657,24397586,4
+41516943,24397586,5
+v_vlll,24397586,4
+lemonke,24397586,5
+54635444,24397586,4
+ltec,24397586,5
+20914578,24397586,5
+56533866,24397586,5
+61679641,24397586,3
+57031441,24397586,4
+lesones,24397586,4
+allthesame,24397586,4
+82766218,24397586,4
+chufanyan,24397586,4
+74767482,24397586,5
+2821497,24397586,4
+50036042,24397586,5
+funk,24397586,5
+52056943,24397586,3
+52190902,24397586,5
+piupiuc,24397586,5
+3249318,24397586,5
+52399993,24397586,4
+71859163,24397586,4
+52499368,24397586,4
+essemoon,24397586,2
+123851520,24397586,3
+52545422,24397586,3
+86922509,24397586,-1
+yuantown,24397586,4
+50461060,24397586,4
+Anchoress_Yu,24397586,5
+rurucat,24397586,3
+49708644,24397586,3
+classical622,24397586,4
+1427766,24397586,5
+1863179,24397586,4
+tenaCious_D,24397586,-1
+Jaca,24397586,3
+129135232,24397586,5
+dancoldan,24397586,5
+reeves2014,24397586,5
+blue1997,24397586,4
+pipi1226,24397586,4
+45060818,24397586,4
+dustybaby,24397586,5
+yaliedu,24397586,3
+bzh03,24397586,5
+49922437,24397586,3
+81317162,24397586,4
+73530411,24397586,4
+55915138,24397586,3
+37424688,24397586,3
+83639322,24397586,4
+62309312,24397586,4
+56899985,24397586,5
+31698933,24397586,4
+130983822,24397586,3
+75862610,24397586,5
+49411879,24397586,4
+1428027,24397586,4
+56431276,24397586,5
+64166028,24397586,5
+88213659,24397586,5
+53166711,24397586,5
+huachunyan,24397586,4
+pigeye,24397586,4
+pigeye,24397586,4
+55856295,24397586,4
+min1,24397586,5
+65521542,24397586,2
+Rainlivelin,24397586,3
+76225555,24397586,3
+76395889,24397586,5
+snowonpath,24397586,4
+Nokia95,24397586,4
+iampromise,24397586,4
+machaochinaorc,24397586,5
+1364563,24397586,4
+baby_wyx,24397586,3
+stillm,24397586,4
+BlossomBlue,24397586,4
+windirt,24397586,3
+4165611,24397586,4
+Gemini_Pipi,24397586,5
+68640061,24397586,4
+78217997,24397586,5
+39628553,24397586,4
+81215779,24397586,2
+68277125,24397586,5
+69998360,24397586,5
+2521209,24397586,5
+69320295,24397586,5
+68583230,24397586,5
+99329704,24397586,4
+yoyofun,24397586,-1
+59361957,24397586,4
+sofans,24397586,5
+52464224,24397586,5
+potatoblack,24397586,4
+54443476,24397586,5
+1887182,24397586,3
+65930256,24397586,4
+blurspeed,24397586,4
+cskywalker,24397586,4
+29685065,24397586,5
+82353804,24397586,-1
+53935985,24397586,4
+clmp124,24397586,5
+54200818,24397586,4
+2763659,24397586,4
+59266603,24397586,3
+47361549,24397586,4
+zhousophia,24397586,4
+ricechow,24397586,5
+kaka121206,24397586,4
+43946346,24397586,5
+129149711,24397586,5
+shiro666,24397586,3
+34562691,24397586,5
+45648190,24397586,4
+66150896,24397586,4
+HugoVince,24397586,5
+99223990,24397586,4
+zhuxiaoxuan,24397586,4
+3717542,24397586,4
+rios2rui,24397586,5
+116392296,24397586,4
+34771983,24397586,4
+63618582,24397586,4
+45402904,24397586,4
+49574790,24397586,5
+55822570,24397586,4
+58498649,24397586,4
+46976674,24397586,4
+57563598,24397586,4
+3984228,24397586,5
+jackandivy,24397586,4
+61506965,24397586,-1
+8056035,24397586,5
+coco112,24397586,5
+103756653,24397586,4
+47443659,24397586,4
+joyestin,24397586,4
+vevine,24397586,5
+Gabrielle012,24397586,5
+myplanetb216,24397586,4
+126123688,24397586,3
+34723626,24397586,4
+vivicky320,24397586,5
+acepatrick,24397586,4
+76307011,24397586,5
+w1130,24397586,4
+ake1984,24397586,4
+4657884,24397586,5
+bluefaith_,24397586,4
+50437623,24397586,3
+62298176,24397586,5
+cumming,24397586,4
+pars,24397586,5
+42246037,24397586,5
+51061132,24397586,4
+78585148,24397586,3
+4111457,24397586,4
+70199300,24397586,5
+gynini,24397586,4
+chenru_liu,24397586,4
+66307816,24397586,4
+clover3377,24397586,5
+pipix,24397586,5
+62210177,24397586,4
+46163023,24397586,-1
+72393169,24397586,4
+47862106,24397586,5
+64065255,24397586,4
+49852947,24397586,4
+57744415,24397586,2
+dailyfriend,24397586,5
+4363426,24397586,5
+chinadaidai,24397586,4
+48226644,24397586,5
+caoxiyue,24397586,5
+52291505,24397586,4
+71455606,24397586,5
+sophiasue,24397586,5
+2233142,24397586,4
+49589129,24397586,5
+49589129,24397586,5
+36888094,24397586,3
+angelcheng728,24397586,3
+3371479,24397586,3
+hichai,24397586,4
+54140096,24397586,5
+34808540,24397586,5
+125984602,24397586,4
+53204374,24397586,3
+dreamk,24397586,5
+xianschool,24397586,5
+28312683,24397586,4
+50214253,24397586,4
+12928087,24397586,3
+antony1994,24397586,5
+80218946,24397586,4
+52828296,24397586,4
+115622817,24397586,4
+63953878,24397586,5
+a_marantine,24397586,4
+68190565,24397586,5
+lovewar,24397586,5
+62177769,24397586,4
+131884002,24397586,5
+28944657,24397586,5
+62922987,24397586,5
+77837992,24397586,5
+1395865,24397586,4
+131883057,24397586,5
+60952768,24397586,5
+48514173,24397586,4
+48370202,24397586,-1
+102337536,24397586,4
+rainhill,24397586,5
+rockable_,24397586,5
+64000366,24397586,5
+69383773,24397586,5
+coto,24397586,4
+dzone,24397586,3
+28086665,24397586,5
+80382193,24397586,3
+gravi,24397586,5
+67744034,24397586,3
+88780284,24397586,5
+lanjiaojiao,24397586,4
+DeWatson,24397586,4
+fakeyouout,24397586,4
+Ciel777,24397586,5
+tuliqin,24397586,4
+59623092,24397586,5
+37344756,24397586,4
+ci_lovecandy,24397586,5
+77883575,24397586,4
+3540779,24397586,4
+little-dog,24397586,5
+70682305,24397586,3
+71678016,24397586,3
+liaoxi,24397586,5
+PrincyinPeking,24397586,3
+cheergao,24397586,5
+eddy_charlie,24397586,4
+49859720,24397586,4
+45422614,24397586,3
+daliaodelinju,24397586,4
+61398424,24397586,5
+57546427,24397586,4
+50282986,24397586,5
+66088686,24397586,4
+72948360,24397586,4
+48217943,24397586,-1
+zpzs,24397586,5
+15054453,24397586,3
+huan19494114,24397586,4
+kangtacaty,24397586,4
+61712114,24397586,4
+6681296,24397586,5
+queenolivia,24397586,4
+1569872,24397586,5
+mysteryfan,24397586,5
+bakajun,24397586,5
+53362350,24397586,4
+callmeyoki,24397586,5
+52334443,24397586,4
+3323872,24397586,4
+1001195,24397586,5
+123389443,24397586,4
+68437259,24397586,4
+perfecttravel,24397586,4
+119189786,24397586,3
+screamers,24397586,5
+62369741,24397586,3
+gladychen,24397586,5
+Luxiyalu,24397586,4
+typezero,24397586,3
+bearinskirt,24397586,-1
+JohnnyJiong,24397586,4
+96728684,24397586,5
+tristasmile,24397586,4
+45953798,24397586,4
+3704222,24397586,3
+40979829,24397586,5
+1918584,24397586,4
+78529339,24397586,3
+zhangyue1989,24397586,5
+damaimmm,24397586,-1
+sueinjuly,24397586,4
+zcx1990,24397586,4
+95824497,24397586,4
+shenxiyu,24397586,4
+Innerplant,24397586,4
+sulovesu,24397586,5
+haodan91918,24397586,5
+littletraveler,24397586,2
+48042943,24397586,3
+75991915,24397586,5
+89082243,24397586,5
+caesarphoenix,24397586,4
+32409019,24397586,5
+3299443,24397586,5
+126123815,24397586,4
+57726967,24397586,4
+xinxinlyx,24397586,5
+88600705,24397586,5
+69344472,24397586,4
+Sophieven,24397586,3
+2894358,24397586,4
+Carlisle_,24397586,4
+28678505,24397586,5
+48939731,24397586,5
+101419547,24397586,3
+74913423,24397586,4
+fuxiu,24397586,5
+black9_eleven,24397586,3
+126862389,24397586,4
+juneyoyo,24397586,4
+figo341,24397586,4
+57695924,24397586,5
+52702832,24397586,5
+121385842,24397586,5
+123459554,24397586,4
+131470818,24397586,4
+cyeeing,24397586,5
+karen-wh.y,24397586,5
+59528107,24397586,4
+64467057,24397586,4
+76780337,24397586,4
+84345772,24397586,5
+51937637,24397586,4
+shuibingyuetama,24397586,4
+44134802,24397586,4
+callyyu,24397586,5
+jagpumpkin,24397586,4
+57605115,24397586,3
+53945299,24397586,3
+65410502,24397586,5
+45869247,24397586,4
+pumpkin_s,24397586,5
+momoko_huang,24397586,4
+82083975,24397586,5
+29992407,24397586,3
+40589857,24397586,3
+52992190,24397586,3
+120786974,24397586,5
+43001164,24397586,3
+67677954,24397586,4
+CrazyChan,24397586,4
+127278998,24397586,3
+46221574,24397586,4
+MarsOrMoon,24397586,5
+88922357,24397586,4
+winna91,24397586,4
+lullaby_,24397586,5
+120091522,24397586,4
+mecoco999,24397586,5
+48427684,24397586,5
+61697290,24397586,4
+47066378,24397586,5
+117348494,24397586,4
+63643901,24397586,4
+62969275,24397586,-1
+53350370,24397586,3
+ish2,24397586,5
+111742547,24397586,5
+yzk2237084,24397586,4
+106277735,24397586,3
+enjoyrachel,24397586,4
+helene9933,24397586,4
+selenesun,24397586,5
+3502778,24397586,5
+76716383,24397586,5
+37538848,24397586,4
+Amberine,24397586,4
+3082902,24397586,4
+yumiaowater,24397586,4
+fragrance_,24397586,3
+58070874,24397586,5
+3217927,24397586,4
+67910969,24397586,5
+rhythmfish,24397586,5
+mangosteen28,24397586,4
+mangosteen28,24397586,4
+131827779,24397586,4
+Silvia_song,24397586,3
+63550302,24397586,5
+Renascen,24397586,4
+yulejingshen,24397586,5
+42000833,24397586,4
+greenclover,24397586,4
+vliangfrank,24397586,5
+58967150,24397586,5
+78658609,24397586,4
+fengmaolin,24397586,5
+bazi16,24397586,5
+47633821,24397586,3
+ice41322,24397586,3
+2593133,24397586,5
+83155481,24397586,4
+73154787,24397586,5
+45841455,24397586,5
+amoykid,24397586,4
+muxieyes,24397586,5
+jakartaxie,24397586,5
+45383601,24397586,4
+130531955,24397586,4
+62961595,24397586,3
+104818700,24397586,5
+91787589,24397586,2
+41896370,24397586,5
+62564042,24397586,5
+90695987,24397586,5
+2740614,24397586,5
+folkbaba,24397586,4
+8605018,24397586,5
+2514000,24397586,5
+octobersophie,24397586,4
+63412313,24397586,4
+55640247,24397586,5
+mLTl,24397586,4
+lutosdan,24397586,3
+53143945,24397586,5
+alick9188,24397586,5
+2624414,24397586,4
+huangxiaokun,24397586,5
+79148662,24397586,-1
+septembersummer,24397586,4
+102661444,24397586,5
+4104741,24397586,4
+qichenzhang,24397586,5
+angelchien,24397586,4
+niiyaaaaa,24397586,5
+4905483,24397586,-1
+80689279,24397586,5
+solavre,24397586,-1
+47357292,24397586,5
+4015391,24397586,4
+85516664,24397586,4
+shrimpxi,24397586,4
+130435949,24397586,4
+63950951,24397586,5
+crystalnura,24397586,4
+woshihaoren123,24397586,4
+taiyouchashe,24397586,4
+69586800,24397586,4
+2906253,24397586,4
+129338201,24397586,4
+Jeuxdeaux,24397586,4
+wajwq781202,24397586,5
+3450880,24397586,4
+57084612,24397586,3
+120207668,24397586,3
+ggrise,24397586,4
+52213307,24397586,5
+45910532,24397586,3
+128767774,24397586,5
+67888545,24397586,3
+128905184,24397586,4
+annale,24397586,3
+52268964,24397586,4
+72808838,24397586,4
+spx,24397586,5
+angelapple_zh,24397586,5
+73536867,24397586,5
+74469721,24397586,4
+1394123,24397586,5
+15439490,24397586,5
+62469238,24397586,5
+1961185,24397586,4
+niu513,24397586,-1
+56396911,24397586,4
+athensmay,24397586,-1
+paradise624,24397586,4
+68498461,24397586,4
+131802134,24397586,4
+45204341,24397586,5
+Naya-Tse,24397586,5
+71680452,24397586,4
+129051527,24397586,4
+dxq1216,24397586,4
+popfeng,24397586,4
+40511679,24397586,3
+w189620829,24397586,5
+90005274,24397586,4
+41629007,24397586,4
+50213452,24397586,3
+56142020,24397586,5
+88504463,24397586,5
+jackguo,24397586,4
+tavi0529,24397586,5
+RemHop,24397586,-1
+KingJing12,24397586,4
+63873621,24397586,4
+sabrina.zmy,24397586,5
+yvettej,24397586,5
+alvie,24397586,5
+121741379,24397586,5
+60606413,24397586,4
+evangeline1101,24397586,4
+120743049,24397586,5
+1154422,24397586,5
+131197515,24397586,4
+wyjlwyy,24397586,4
+58135379,24397586,4
+lovewins2015,24397586,5
+imsugar,24397586,4
+61060366,24397586,4
+69773402,24397586,4
+chankawai,24397586,4
+119806823,24397586,4
+59660757,24397586,5
+suijingjing,24397586,4
+lurenjia__,24397586,4
+35886249,24397586,5
+60118209,24397586,3
+dy_idle,24397586,4
+59159384,24397586,5
+62191711,24397586,2
+54090532,24397586,5
+soul92114,24397586,3
+4218644,24397586,5
+44901258,24397586,5
+60357094,24397586,5
+huihuiliu,24397586,5
+49519356,24397586,-1
+Tone.C,24397586,3
+Baronera,24397586,3
+48033961,24397586,5
+2051768,24397586,-1
+52883244,24397586,5
+kicker10,24397586,4
+lindtf,24397586,4
+CVS24hours,24397586,5
+55801158,24397586,2
+85602254,24397586,5
+4310321,24397586,4
+sawakoluvian,24397586,4
+CanaanYoung,24397586,3
+1219663,24397586,4
+43004375,24397586,5
+127457297,24397586,5
+73929218,24397586,5
+112083584,24397586,4
+45513879,24397586,5
+67812928,24397586,4
+90171652,24397586,4
+76818492,24397586,4
+60888658,24397586,5
+67312036,24397586,5
+47985063,24397586,4
+51314726,24397586,3
+kongyan15,24397586,3
+130930909,24397586,4
+journeyforever,24397586,4
+79782728,24397586,4
+72438301,24397586,4
+irene826,24397586,4
+hitian,24397586,3
+wangzhanhei,24397586,4
+coolgun,24397586,5
+115504341,24397586,5
+67694954,24397586,4
+67694954,24397586,4
+81030268,24397586,5
+DrRay,24397586,4
+66946937,24397586,5
+1256832,24397586,5
+heartlesstree,24397586,4
+120162458,24397586,4
+47187938,24397586,3
+72781855,24397586,4
+znnancy,24397586,4
+cincincindy,24397586,3
+59725036,24397586,3
+Shirleysong,24397586,4
+lightwings,24397586,4
+colinhayashi,24397586,4
+67182363,24397586,5
+miku,24397586,4
+whateverwbwb,24397586,3
+hwh,24397586,3
+chenny515,24397586,4
+ceechu,24397586,5
+irisyours,24397586,4
+127345355,24397586,4
+kyleul,24397586,5
+64041406,24397586,5
+65908776,24397586,4
+102666107,24397586,3
+131380413,24397586,1
+64498203,24397586,2
+fffx9527,24397586,4
+120070082,24397586,5
+zhuluoo7,24397586,4
+80667291,24397586,5
+65032980,24397586,2
+nextfaye,24397586,5
+103583567,24397586,5
+ipanema,24397586,5
+rochand,24397586,4
+lovelyjoy991,24397586,5
+51953879,24397586,4
+62753703,24397586,5
+nlxs,24397586,-1
+69573255,24397586,5
+59301158,24397586,5
+youzhi,24397586,4
+69529988,24397586,4
+jiongreborn,24397586,4
+1378503,24397586,4
+50610588,24397586,5
+58899374,24397586,4
+zeph1462,24397586,4
+Sophie.,24397586,5
+65036885,24397586,4
+71062374,24397586,4
+77066905,24397586,5
+47058104,24397586,4
+75283214,24397586,4
+kenshinssz,24397586,4
+qianqianaini,24397586,5
+maidangdang,24397586,4
+wjlqnyrc,24397586,4
+56554410,24397586,5
+91504508,24397586,4
+BackToNight,24397586,5
+1532624,24397586,4
+49188433,24397586,5
+54237428,24397586,4
+qianricao,24397586,4
+renxiaoheng,24397586,5
+57542378,24397586,4
+miemiefever,24397586,5
+67863557,24397586,5
+dayandnights,24397586,4
+Countryding,24397586,5
+sidneylumet,24397586,5
+64163847,24397586,4
+43056732,24397586,4
+josephine1982,24397586,3
+deardearcat,24397586,4
+icemonique,24397586,4
+hollyvan,24397586,5
+3044833,24397586,4
+83177342,24397586,5
+35518301,24397586,5
+Pettyi,24397586,4
+ccccoffee,24397586,3
+45454544,24397586,4
+hetaodeyanjing,24397586,3
+55455640,24397586,4
+49308797,24397586,3
+76193646,24397586,4
+42143621,24397586,5
+124454581,24397586,4
+122943812,24397586,4
+AhLang,24397586,5
+4194244,24397586,4
+54367149,24397586,4
+36621771,24397586,4
+ailurophile-cr,24397586,5
+brucas,24397586,4
+chenxiliu,24397586,4
+HeyAriel,24397586,5
+83065402,24397586,5
+smilesleep,24397586,4
+knife413,24397586,4
+4160120,24397586,5
+ferkmavie,24397586,4
+4878767,24397586,5
+emma0105,24397586,3
+21217017,24397586,5
+twisterlily,24397586,3
+jiyishishu,24397586,5
+53466167,24397586,4
+miuzc.pei,24397586,5
+Elmusi,24397586,4
+Gally,24397586,5
+67145366,24397586,5
+84479943,24397586,4
+ttune,24397586,5
+61654063,24397586,5
+61654063,24397586,5
+54096811,24397586,4
+13191648,24397586,4
+F7LOWER,24397586,4
+128675043,24397586,4
+49984350,24397586,5
+Hi-yourself,24397586,5
+onshuway,24397586,4
+72946203,24397586,5
+3558690,24397586,-1
+44384908,24397586,5
+56034065,24397586,4
+3814695,24397586,5
+72257329,24397586,5
+36809297,24397586,4
+93951315,24397586,-1
+48787128,24397586,3
+14363390,24397586,5
+PARIADISE,24397586,4
+2394327,24397586,4
+2525784,24397586,4
+30457423,24397586,5
+nikan,24397586,5
+52739987,24397586,4
+chillyness,24397586,5
+sanyo,24397586,4
+lianjin,24397586,4
+lovesay,24397586,4
+82520014,24397586,5
+2744514,24397586,5
+QIYIYI,24397586,2
+54287320,24397586,3
+yumofu,24397586,4
+tyhuashengmi,24397586,4
+redrabbit,24397586,5
+63146878,24397586,4
+55406228,24397586,3
+dreamchris,24397586,4
+weldon,24397586,4
+63730848,24397586,5
+54382756,24397586,3
+3481340,24397586,3
+75325529,24397586,4
+56524460,24397586,4
+screwuuuuu,24397586,4
+2922353,24397586,3
+41926358,24397586,4
+shr7258,24397586,4
+pussycheer,24397586,5
+suertelore,24397586,4
+82982287,24397586,5
+runbing,24397586,3
+131406948,24397586,4
+57819809,24397586,4
+14683656,24397586,3
+40994633,24397586,4
+tatoo,24397586,5
+121948087,24397586,4
+46453072,24397586,5
+orangeumoon,24397586,4
+35374393,24397586,4
+33708910,24397586,4
+55792795,24397586,5
+69134335,24397586,5
+36507254,24397586,3
+79027376,24397586,4
+beiliya6261,24397586,5
+chocolateld,24397586,4
+die1021,24397586,5
+81864454,24397586,5
+1307904,24397586,5
+chendax,24397586,5
+23643772,24397586,5
+mississluu,24397586,4
+64547560,24397586,4
+3843442,24397586,4
+2649968,24397586,2
+snakinyang,24397586,5
+chevalier7,24397586,3
+57753980,24397586,5
+yukiyuko,24397586,4
+1653790,24397586,4
+44291286,24397586,4
+situxx,24397586,5
+50879673,24397586,5
+56044350,24397586,5
+62087939,24397586,3
+4749312,24397586,3
+81089052,24397586,5
+3531417,24397586,5
+babysd,24397586,4
+2488600,24397586,-1
+litsunny,24397586,4
+93664984,24397586,4
+37280239,24397586,4
+130880509,24397586,4
+yellow1010,24397586,5
+crystal1812,24397586,4
+48069958,24397586,5
+102718430,24397586,5
+27617505,24397586,4
+52915407,24397586,5
+73187224,24397586,4
+yaqian,24397586,4
+2060005,24397586,4
+billyjiang,24397586,5
+zhouyuan0124,24397586,4
+bluetiger,24397586,5
+wenwushan,24397586,4
+guliguo2046,24397586,4
+30327018,24397586,5
+29209369,24397586,5
+fansherlocked,24397586,4
+skferb,24397586,4
+2671857,24397586,4
+Reveriewardrob,24397586,4
+45996774,24397586,5
+60348245,24397586,5
+47256072,24397586,4
+42989054,24397586,5
+76207416,24397586,5
+Soso-L,24397586,5
+evergreeen,24397586,4
+Alexistding,24397586,4
+clean12,24397586,5
+47368327,24397586,5
+119631821,24397586,5
+lanbignsu,24397586,5
+57249703,24397586,4
+79835550,24397586,4
+2106137,24397586,4
+woruili,24397586,4
+4557738,24397586,5
+2183079,24397586,5
+67651517,24397586,5
+67388709,24397586,5
+HYGUY,24397586,4
+monkeycupl,24397586,4
+FOOL624,24397586,4
+71140874,24397586,4
+xizi90,24397586,4
+4529884,24397586,5
+bethsc,24397586,5
+48256975,24397586,3
+80763196,24397586,5
+lolitahanhan,24397586,4
+57408930,24397586,5
+illxg001,24397586,5
+48830904,24397586,5
+45003782,24397586,5
+18124381,24397586,1
+1161898,24397586,5
+89410418,24397586,5
+qfLLL,24397586,5
+lvhobbitdarren,24397586,5
+Charlie.Lee,24397586,3
+68791794,24397586,5
+Real-One,24397586,5
+83951064,24397586,2
+3119464,24397586,4
+1832992,24397586,-1
+2773656,24397586,5
+constancef,24397586,3
+130767502,24397586,4
+61879554,24397586,4
+ameliefei,24397586,4
+131714464,24397586,5
+lxu,24397586,5
+wuzouhuanghun,24397586,5
+shiguagji,24397586,5
+73667301,24397586,4
+127244778,24397586,4
+MoretzH,24397586,5
+sunkyeast,24397586,5
+changle0605,24397586,5
+myfairytale,24397586,-1
+kkguagangqin,24397586,5
+harlem,24397586,5
+kinobear,24397586,5
+70294430,24397586,5
+Cheshier,24397586,4
+47268974,24397586,5
+diysad,24397586,-1
+47873866,24397586,5
+sesey,24397586,3
+57890138,24397586,5
+58359527,24397586,5
+41582940,24397586,3
+125316227,24397586,5
+fbndragona,24397586,5
+129276779,24397586,4
+2340395,24397586,5
+allcybowie,24397586,5
+x1Ao_y,24397586,4
+35546848,24397586,4
+mercurix,24397586,5
+yinchuanfu,24397586,4
+91294623,24397586,5
+springfantasy,24397586,3
+1744785,24397586,4
+silverscreener,24397586,4
+butredm,24397586,3
+st5yan,24397586,3
+113775615,24397586,5
+shijinqi,24397586,4
+rulijing,24397586,4
+felinoshuffle,24397586,3
+foofights,24397586,4
+88097347,24397586,4
+DangerRose,24397586,5
+64987924,24397586,3
+taxi,24397586,3
+55953722,24397586,4
+lucyroyi,24397586,5
+38851141,24397586,3
+58725860,24397586,4
+jinniye,24397586,5
+16301105,24397586,4
+lilaaah,24397586,5
+48359321,24397586,5
+laoziiii,24397586,3
+38514261,24397586,4
+41127479,24397586,4
+39506344,24397586,5
+3840143,24397586,3
+128390764,24397586,4
+chanyochen,24397586,5
+smcc911,24397586,4
+redspring,24397586,3
+120418587,24397586,3
+88292094,24397586,3
+67796824,24397586,4
+34296475,24397586,5
+76150664,24397586,5
+82317907,24397586,4
+54467510,24397586,5
+127180672,24397586,4
+4359622,24397586,5
+75749621,24397586,5
+47286411,24397586,3
+50733014,24397586,5
+1151029,24397586,4
+zhaozhongxiang,24397586,5
+4909186,24397586,4
+rayzhou,24397586,4
+maggiore,24397586,4
+58063696,24397586,4
+Merioply,24397586,4
+57528820,24397586,4
+look,24397586,4
+59859111,24397586,4
+89700756,24397586,3
+geyao1994,24397586,4
+55686212,24397586,4
+lipengfeng2007,24397586,2
+99623872,24397586,-1
+44633309,24397586,5
+osaka-,24397586,4
+4720825,24397586,5
+45511772,24397586,4
+45511772,24397586,4
+62379540,24397586,5
+liebejenny,24397586,5
+ada7603,24397586,5
+61278455,24397586,5
+rujiayang,24397586,4
+46190025,24397586,4
+43639134,24397586,4
+2304686,24397586,5
+g-y,24397586,4
+83513831,24397586,4
+M-EastGirl,24397586,3
+4296907,24397586,5
+MK9294,24397586,3
+58197963,24397586,5
+62927689,24397586,5
+AmySpecial,24397586,5
+fanclrice,24397586,4
+4465654,24397586,5
+46683662,24397586,5
+35567760,24397586,4
+tanya_tian,24397586,5
+6987390,24397586,3
+45935605,24397586,4
+VrainbowL,24397586,4
+yutti,24397586,5
+yuccaliz,24397586,-1
+yqp1987,24397586,5
+56091106,24397586,5
+41796932,24397586,5
+32941683,24397586,5
+43258154,24397586,4
+94574301,24397586,5
+wulang55,24397586,5
+smilebox,24397586,4
+107863421,24397586,3
+glassonion,24397586,4
+kuroneko2002,24397586,4
+71574131,24397586,4
+44646589,24397586,5
+80841837,24397586,4
+evey42,24397586,5
+chenjiaqi1008,24397586,4
+hushli,24397586,4
+71953826,24397586,5
+117360867,24397586,4
+31978586,24397586,5
+104706942,24397586,5
+heedy,24397586,5
+52424511,24397586,4
+47004535,24397586,5
+canlaoda,24397586,5
+fishyuyue,24397586,5
+xiamudemao,24397586,3
+shazhiyuan,24397586,5
+haveyouever,24397586,5
+zhangjianpeng,24397586,4
+5336287,24397586,5
+52488791,24397586,4
+45916040,24397586,5
+2855599,24397586,4
+69089048,24397586,5
+GracieG,24397586,5
+2182564,24397586,5
+32541723,24397586,4
+enhengheng,24397586,5
+lucifer7th,24397586,5
+33949296,24397586,5
+1409570,24397586,5
+122327681,24397586,5
+franklinton,24397586,5
+feng-tracy,24397586,4
+1793748,24397586,4
+58289551,24397586,5
+otnemem,24397586,3
+wtforz,24397586,4
+gwaihir,24397586,5
+languheshang,24397586,5
+2144442,24397586,5
+HaoChao,24397586,5
+63600934,24397586,5
+naomi724,24397586,5
+55978304,24397586,4
+51202453,24397586,5
+55351606,24397586,5
+2331276,24397586,5
+70741788,24397586,5
+nancy425,24397586,5
+3442167,24397586,5
+1388786,24397586,4
+117149225,24397586,4
+52441493,24397586,5
+48674110,24397586,5
+LONGLU,24397586,5
+87942128,24397586,5
+57157420,24397586,4
+31778579,24397586,4
+54408577,24397586,4
+3412571,24397586,5
+2156064,24397586,4
+8099941,24397586,5
+4097878,24397586,4
+44401628,24397586,4
+72712114,24397586,4
+gesundheit,24397586,3
+40215450,24397586,4
+krypton,24397586,4
+SoCrazyNemo,24397586,4
+29484067,24397586,4
+xiaozhu19880805,24397586,3
+3772203,24397586,4
+55962178,24397586,3
+63214705,24397586,4
+adamhu,24397586,5
+67981371,24397586,5
+56855422,24397586,4
+58957770,24397586,4
+B-B-B-Side,24397586,4
+liuyunxuan333,24397586,5
+50095107,24397586,3
+100767439,24397586,5
+43387464,24397586,3
+RiliXu,24397586,5
+calamusrain,24397586,4
+tenacityqian,24397586,4
+sirluoji,24397586,4
+2849700,24397586,4
+65723913,24397586,4
+126046254,24397586,5
+wooh,24397586,5
+60363608,24397586,5
+ispinzhang,24397586,4
+zixixiangxiang,24397586,5
+f91_82,24397586,3
+cocozhao,24397586,3
+skylabay,24397586,5
+62116600,24397586,5
+78365414,24397586,3
+43648565,24397586,3
+2970579,24397586,-1
+58511868,24397586,5
+46047412,24397586,5
+xiaotuo,24397586,4
+42927631,24397586,4
+58614276,24397586,5
+49272831,24397586,3
+49343553,24397586,5
+22056950,24397586,4
+papalangji,24397586,3
+maeho,24397586,4
+songzer,24397586,5
+91860633,24397586,4
+zouzouwanwan,24397586,4
+elephantjun,24397586,5
+90140365,24397586,5
+annaanonly,24397586,5
+46632143,24397586,3
+50405954,24397586,5
+acha13,24397586,4
+metalmickey,24397586,5
+iamdesmond,24397586,-1
+130055833,24397586,5
+63060917,24397586,5
+yuebing123,24397586,5
+42877995,24397586,4
+yekie_yue,24397586,5
+SilverZhan,24397586,5
+92082038,24397586,4
+Utopia.YY,24397586,5
+fisin,24397586,4
+75285126,24397586,4
+32462724,24397586,5
+Nicky007,24397586,4
+72180654,24397586,4
+3951378,24397586,4
+umaso,24397586,5
+AchlysL,24397586,4
+kira1010,24397586,4
+55452001,24397586,4
+55446081,24397586,4
+winter-h,24397586,3
+2226886,24397586,4
+57583046,24397586,4
+54254523,24397586,4
+68367476,24397586,5
+51188157,24397586,4
+wss5336,24397586,5
+kuangren79,24397586,4
+1614995,24397586,3
+1327654,24397586,5
+44201606,24397586,4
+4221659,24397586,3
+41659361,24397586,4
+SoloAi,24397586,5
+73096568,24397586,5
+70507408,24397586,5
+imyoyo1116,24397586,4
+3846319,24397586,3
+76995484,24397586,4
+123049067,24397586,5
+43326393,24397586,4
+119833040,24397586,5
+50600162,24397586,4
+mayukijuju,24397586,5
+eastge,24397586,4
+beijinglife,24397586,2
+46665128,24397586,4
+62374245,24397586,5
+40254571,24397586,5
+sybilyuan,24397586,3
+IceKey,24397586,4
+41869884,24397586,4
+yousuosi77,24397586,3
+52889197,24397586,5
+annbabyyan,24397586,4
+56678240,24397586,4
+54096060,24397586,3
+indigo90,24397586,4
+hulagirl,24397586,3
+56451790,24397586,5
+miaohengla,24397586,3
+55362027,24397586,5
+changefiona,24397586,5
+120545050,24397586,4
+66920467,24397586,5
+54833034,24397586,4
+haidonsun,24397586,4
+59524378,24397586,4
+2846988,24397586,3
+43654432,24397586,5
+81003990,24397586,4
+yuanyuanshu,24397586,5
+4152314,24397586,5
+33902664,24397586,5
+43788388,24397586,4
+29776503,24397586,5
+3929718,24397586,5
+returnsh,24397586,4
+63488271,24397586,5
+68366606,24397586,4
+minoindemo,24397586,5
+rubage,24397586,5
+xinxinya,24397586,4
+newzallery,24397586,5
+53094976,24397586,5
+44529408,24397586,5
+66973670,24397586,4
+57580969,24397586,5
+vv_gh,24397586,5
+ruyi0619,24397586,5
+62930321,24397586,5
+120595100,24397586,4
+111461811,24397586,5
+52762831,24397586,4
+108264732,24397586,3
+Bobocaimiemie,24397586,5
+4468522,24397586,4
+forlig,24397586,4
+35456769,24397586,5
+35364683,24397586,3
+35364683,24397586,3
+42955100,24397586,4
+62517316,24397586,5
+3600496,24397586,4
+qinyouxuan,24397586,5
+acidpap,24397586,4
+sweet.teeth,24397586,5
+3576004,24397586,4
+imarilyn,24397586,4
+119694572,24397586,4
+48604788,24397586,3
+ninewords,24397586,5
+3177593,24397586,4
+Ink_Regina,24397586,4
+1988383,24397586,5
+madgirl,24397586,5
+65101306,24397586,4
+79118365,24397586,4
+6549258,24397586,5
+57101279,24397586,4
+57101279,24397586,4
+1386311,24397586,3
+53679520,24397586,4
+131610219,24397586,4
+Sitachiin,24397586,5
+43470149,24397586,5
+julypoem,24397586,5
+105456391,24397586,5
+91573235,24397586,4
+60159317,24397586,4
+1767634,24397586,4
+3677368,24397586,5
+34243036,24397586,4
+1482288,24397586,4
+90745367,24397586,4
+119476678,24397586,4
+70862123,24397586,4
+ruoyisisi,24397586,5
+1655091,24397586,4
+7085324,24397586,5
+2189989,24397586,4
+silverstro,24397586,-1
+56281076,24397586,4
+1840162,24397586,4
+masochiste,24397586,4
+1368116,24397586,-1
+63822026,24397586,5
+71450042,24397586,4
+AliceTang27,24397586,4
+2222473,24397586,4
+1815039,24397586,4
+sleepinapril,24397586,4
+kmars,24397586,5
+101026869,24397586,5
+kakaso,24397586,3
+123413024,24397586,3
+1515004,24397586,3
+87209971,24397586,4
+bbznj,24397586,4
+liangzhuzaoshu,24397586,5
+34111959,24397586,2
+louing,24397586,5
+yuyusuper2,24397586,4
+66989068,24397586,5
+47519598,24397586,5
+ruo1996,24397586,5
+paracel,24397586,3
+a-zhu,24397586,4
+63423532,24397586,5
+raquelycidas,24397586,5
+74890087,24397586,4
+wishlyx,24397586,5
+45276525,24397586,5
+b.jok,24397586,4
+96513948,24397586,3
+colorwind,24397586,4
+3856158,24397586,4
+2986990,24397586,4
+becky7,24397586,4
+48198672,24397586,5
+131592651,24397586,5
+13527027,24397586,5
+zykino,24397586,5
+122052846,24397586,5
+49983823,24397586,4
+4750967,24397586,4
+Shiely,24397586,5
+heathersiner,24397586,5
+winvic,24397586,5
+87069723,24397586,4
+4711331,24397586,5
+58273580,24397586,5
+64709234,24397586,5
+litesoar,24397586,5
+54479915,24397586,5
+Song1183,24397586,5
+ziquanzhifei,24397586,5
+AdaDream,24397586,4
+e2cat,24397586,5
+lynyean,24397586,5
+unclepenguin,24397586,5
+jaly2015,24397586,4
+1764284,24397586,4
+tzkeer,24397586,3
+107704699,24397586,5
+56072564,24397586,4
+kedoumili,24397586,5
+38191056,24397586,5
+silentjava,24397586,5
+junialtaeyu,24397586,4
+52118977,24397586,4
+xinxinbaby,24397586,4
+Mrssin,24397586,4
+allenle,24397586,4
+WierdMinds,24397586,3
+paiii,24397586,5
+60421761,24397586,5
+54095886,24397586,5
+crimsonmoon,24397586,5
+CKyan,24397586,3
+CKyan,24397586,3
+RATATKAIQI,24397586,4
+58180925,24397586,5
+49154372,24397586,5
+51978662,24397586,5
+89944772,24397586,4
+14406293,24397586,5
+CartoonKING,24397586,5
+90729667,24397586,4
+80658200,24397586,5
+vera0902,24397586,5
+chameleonic,24397586,3
+129255326,24397586,4
+zxy310,24397586,4
+dotchild,24397586,4
+119132994,24397586,5
+122352396,24397586,5
+goodbyelenin,24397586,4
+ovanisho,24397586,5
+81861287,24397586,4
+45868354,24397586,4
+43671696,24397586,4
+35363595,24397586,5
+131569723,24397586,1
+tomatozss,24397586,5
+65765914,24397586,5
+xiza,24397586,5
+be_a_ID-er,24397586,4
+10045748,24397586,4
+40645830,24397586,4
+79309643,24397586,5
+43258085,24397586,4
+47949405,24397586,4
+121858716,24397586,5
+69323349,24397586,4
+lulyly,24397586,5
+47214460,24397586,5
+92809978,24397586,4
+54704732,24397586,5
+131443110,24397586,4
+43650596,24397586,5
+W3IQ7,24397586,4
+mebossyounot,24397586,4
+116416248,24397586,4
+NO-doubanjiang,24397586,5
+83433400,24397586,3
+dreamersjcat,24397586,4
+115504725,24397586,3
+4410452,24397586,5
+53582924,24397586,4
+60046891,24397586,4
+42953573,24397586,5
+kongzong,24397586,4
+its90,24397586,3
+76169652,24397586,3
+60907220,24397586,5
+yishenmanli,24397586,5
+Victor-M,24397586,4
+Ashes-of-Roses,24397586,4
+3825600,24397586,3
+4140462,24397586,5
+130535859,24397586,4
+gongzitian,24397586,4
+mr.slow,24397586,4
+aprilwind_shi,24397586,5
+dekaixu,24397586,5
+41690409,24397586,5
+52925540,24397586,4
+43906549,24397586,4
+66203352,24397586,4
+52502063,24397586,5
+Sheeplady,24397586,5
+68833269,24397586,5
+horatio1921,24397586,5
+vianann,24397586,4
+chanel0214,24397586,5
+56177425,24397586,5
+weichengluanma,24397586,4
+84328091,24397586,5
+88439681,24397586,4
+34342600,24397586,4
+dearajiu,24397586,5
+69448308,24397586,5
+67641940,24397586,5
+nothingicare,24397586,3
+82368690,24397586,4
+63096690,24397586,5
+49082695,24397586,4
+bearblindman,24397586,4
+52071881,24397586,3
+moireveins,24397586,5
+95817419,24397586,5
+invastson,24397586,4
+realien,24397586,5
+lanxiong123,24397586,5
+59620866,24397586,4
+3701369,24397586,4
+39871697,24397586,4
+62993339,24397586,4
+Qearl7,24397586,5
+76304167,24397586,4
+rociowyc,24397586,5
+83739220,24397586,4
+27028067,24397586,5
+freemagic1988,24397586,4
+38538166,24397586,3
+yliu,24397586,4
+60032619,24397586,5
+62475168,24397586,5
+baliang,24397586,4
+60013985,24397586,5
+happuiness,24397586,4
+71696842,24397586,5
+114149260,24397586,4
+Page01,24397586,4
+marca,24397586,4
+acapellaminuet,24397586,5
+36090011,24397586,4
+masaikejun,24397586,4
+45449329,24397586,4
+ConverseAbbey,24397586,-1
+83401102,24397586,4
+disanfang,24397586,5
+82689458,24397586,4
+39322389,24397586,5
+kayxuan,24397586,5
+morgankuku,24397586,4
+121834283,24397586,5
+82018179,24397586,3
+124266239,24397586,4
+68497565,24397586,5
+43970229,24397586,-1
+66598168,24397586,4
+Uroboros,24397586,4
+ms0604,24397586,5
+126200097,24397586,5
+44542116,24397586,5
+131524150,24397586,1
+moleizhizhu,24397586,5
+115815894,24397586,5
+Rain77,24397586,4
+4804001,24397586,4
+46439800,24397586,4
+MissBao,24397586,4
+LeonJunki,24397586,5
+88367047,24397586,5
+79423569,24397586,-1
+luominlala,24397586,4
+121187003,24397586,4
+45129270,24397586,4
+2468582,24397586,5
+75215757,24397586,5
+57460299,24397586,4
+36497642,24397586,4
+65303828,24397586,5
+davyjones,24397586,5
+fenlanbingyan,24397586,4
+42222694,24397586,5
+50720441,24397586,3
+3489125,24397586,3
+title,24397586,5
+tintinxu,24397586,4
+62601567,24397586,5
+nicole24,24397586,4
+49945629,24397586,4
+evollozer,24397586,5
+seankada,24397586,5
+zhangreeki,24397586,5
+53431261,24397586,5
+xd880820,24397586,5
+19734042,24397586,4
+96535250,24397586,5
+lingrui1995,24397586,4
+99797421,24397586,4
+baizi886,24397586,4
+Obtson,24397586,4
+monbenben,24397586,5
+kistrike,24397586,5
+54940600,24397586,4
+chedan-NB,24397586,5
+vivifly,24397586,4
+abaqiao,24397586,4
+84831004,24397586,5
+2922610,24397586,3
+forevertrust,24397586,4
+zhangxingshen,24397586,5
+61297365,24397586,1
+53639016,24397586,4
+4370686,24397586,4
+56871206,24397586,4
+52234152,24397586,5
+Geraldine7,24397586,4
+50963591,24397586,5
+cukia,24397586,3
+63640040,24397586,3
+clh7,24397586,5
+47338150,24397586,5
+xuylu,24397586,4
+76739176,24397586,4
+chara547,24397586,4
+65714390,24397586,4
+zhjue,24397586,-1
+violette__zz,24397586,4
+19410556,24397586,5
+64259816,24397586,5
+angela2hotpotjn,24397586,5
+120874189,24397586,5
+heiheirage,24397586,4
+34097164,24397586,5
+mayoke,24397586,3
+1210763,24397586,4
+TitanNing,24397586,5
+efil_a_evil,24397586,5
+35066546,24397586,5
+42022756,24397586,5
+62815815,24397586,5
+yigerenzhu,24397586,4
+65214570,24397586,4
+51126355,24397586,5
+june.q,24397586,3
+71863067,24397586,3
+62132064,24397586,3
+tintintsang,24397586,4
+A-Marvin-T,24397586,4
+endofmay,24397586,4
+35342792,24397586,3
+2049714,24397586,4
+guisuishou,24397586,4
+potatotomato,24397586,5
+60223940,24397586,5
+dumz,24397586,4
+48227669,24397586,5
+kofereroji,24397586,5
+62776173,24397586,5
+79262344,24397586,5
+53707083,24397586,5
+zxlivon,24397586,5
+liancheng,24397586,5
+84269014,24397586,5
+75288450,24397586,3
+45575383,24397586,5
+wangyiqiu,24397586,4
+123945021,24397586,4
+amour1,24397586,5
+76393487,24397586,4
+niguize,24397586,3
+78362081,24397586,4
+johnqz874,24397586,5
+Shahtoosh,24397586,4
+maydayyqy,24397586,4
+94773780,24397586,3
+80786128,24397586,4
+locking,24397586,4
+3456645,24397586,4
+maxine_9395,24397586,4
+79503433,24397586,4
+66770871,24397586,4
+48290239,24397586,4
+86585180,24397586,4
+62743500,24397586,5
+fairyhui521,24397586,5
+vitaminJ,24397586,5
+ruilixiurui,24397586,4
+80846481,24397586,4
+mirandy,24397586,5
+104769374,24397586,3
+moth,24397586,4
+61504169,24397586,4
+61403829,24397586,5
+81002115,24397586,4
+29819963,24397586,5
+54390796,24397586,4
+richer725,24397586,3
+44881183,24397586,5
+4010650,24397586,3
+3374391,24397586,5
+75902309,24397586,4
+ZhuYeah,24397586,3
+likeumore,24397586,5
+juwushen,24397586,4
+3758190,24397586,5
+2853103,24397586,5
+55660651,24397586,5
+PennyZZZZZ,24397586,5
+kithrine,24397586,4
+dreamsun,24397586,3
+43176264,24397586,-1
+2260384,24397586,4
+129853005,24397586,5
+58478831,24397586,5
+89723194,24397586,2
+top8fm,24397586,5
+hippo2,24397586,-1
+51258589,24397586,5
+yingtaoher,24397586,5
+gtmdtj,24397586,5
+37402473,24397586,4
+xiaojiongxia,24397586,4
+1550127,24397586,4
+62769325,24397586,5
+66960634,24397586,4
+65628788,24397586,2
+62606235,24397586,4
+Solo-n,24397586,3
+kori_JJ,24397586,5
+3229150,24397586,5
+103645728,24397586,3
+tletaotaot,24397586,4
+jokerli,24397586,5
+49907411,24397586,5
+45459664,24397586,5
+49935216,24397586,4
+59579011,24397586,5
+wangxue1630,24397586,5
+s_issi,24397586,4
+50574950,24397586,5
+83836566,24397586,5
+66183182,24397586,5
+zyjj141,24397586,4
+amay1023,24397586,4
+88189018,24397586,5
+48354152,24397586,5
+89521275,24397586,4
+49321974,24397586,4
+53366599,24397586,5
+derekderek,24397586,4
+70052197,24397586,5
+34990141,24397586,5
+46149652,24397586,4
+48407248,24397586,5
+19891561,24397586,4
+51764700,24397586,5
+45808338,24397586,5
+57658364,24397586,5
+FrankWasabi,24397586,4
+47116857,24397586,5
+111795228,24397586,5
+43495791,24397586,5
+iyyhua,24397586,4
+83307271,24397586,4
+59205597,24397586,5
+45509766,24397586,5
+29116290,24397586,5
+46090800,24397586,5
+90688581,24397586,5
+shmilymichelle,24397586,3
+Alarecherche,24397586,2
+dewydu,24397586,4
+yuanzideweiba,24397586,5
+EloiseL,24397586,5
+69104253,24397586,5
+3336467,24397586,4
+56839601,24397586,5
+47163330,24397586,4
+127603477,24397586,5
+antiekin,24397586,3
+64821035,24397586,5
+summer0607,24397586,3
+61564654,24397586,5
+57598534,24397586,5
+1313926,24397586,4
+zhoujunfan,24397586,5
+dreamAnchor,24397586,4
+caosen,24397586,5
+Neverlandor,24397586,5
+moneylatem,24397586,4
+luzifer,24397586,4
+63985702,24397586,4
+69085272,24397586,4
+41122541,24397586,4
+54118264,24397586,5
+62716748,24397586,5
+julyhaha,24397586,5
+90904421,24397586,4
+73696070,24397586,5
+wangchenqd,24397586,5
+33323978,24397586,5
+Run_4,24397586,5
+78234449,24397586,5
+darkscorpion,24397586,5
+darkscorpion,24397586,5
+ache.vera,24397586,5
+hughll,24397586,4
+60304820,24397586,4
+48949608,24397586,4
+64455785,24397586,4
+Razzmatazz,24397586,4
+79913596,24397586,4
+52046624,24397586,4
+bigoo,24397586,5
+York29,24397586,5
+50607886,24397586,5
+64092595,24397586,5
+feifei0806,24397586,4
+lollybomb,24397586,4
+52775018,24397586,4
+71557459,24397586,5
+90609867,24397586,4
+131023271,24397586,5
+79948176,24397586,5
+48737936,24397586,5
+oops_mie,24397586,5
+yarnwang,24397586,4
+61260299,24397586,3
+robotstar,24397586,5
+1929758,24397586,5
+yikexin12,24397586,5
+xylose,24397586,4
+98733301,24397586,5
+jinyifan,24397586,4
+dnarna_vicky,24397586,-1
+63900378,24397586,5
+58929848,24397586,3
+kharkov,24397586,5
+41724158,24397586,5
+75940485,24397586,5
+Riskey,24397586,4
+become,24397586,4
+48551347,24397586,5
+130938650,24397586,4
+64757557,24397586,4
+67587735,24397586,5
+houtz,24397586,5
+108077404,24397586,4
+56565242,24397586,5
+76239452,24397586,4
+casper009,24397586,5
+44412254,24397586,4
+52259960,24397586,4
+76109816,24397586,5
+yunduan6,24397586,4
+xiaolanhou,24397586,4
+68420282,24397586,5
+63352248,24397586,4
+67679868,24397586,5
+misswatermelon,24397586,3
+grimy,24397586,3
+ChubbyCheek,24397586,5
+3681089,24397586,4
+3203277,24397586,5
+mavisvsenna,24397586,5
+42948649,24397586,5
+60858827,24397586,5
+57880300,24397586,4
+gavinturkey,24397586,5
+50570726,24397586,4
+65177104,24397586,5
+51320337,24397586,5
+ME.,24397586,5
+54411982,24397586,4
+Hennessy_,24397586,5
+76824704,24397586,5
+guanjunyan,24397586,-1
+1665848,24397586,5
+Kevinsoong,24397586,5
+moonwater,24397586,3
+SaxaTamija,24397586,4
+40395158,24397586,4
+yeeeeeee,24397586,4
+67143504,24397586,5
+54234447,24397586,5
+54193042,24397586,4
+zechewang007,24397586,3
+A.Plus,24397586,5
+2667938,24397586,5
+128541386,24397586,5
+faiel,24397586,3
+JennyDingding,24397586,5
+38465519,24397586,2
+85635101,24397586,5
+41206974,24397586,4
+61169740,24397586,4
+81351219,24397586,4
+jolllllly,24397586,5
+hudieyy89,24397586,5
+78208494,24397586,5
+youyousina,24397586,5
+115807401,24397586,4
+B.zVagabond,24397586,5
+sherryhaha,24397586,5
+52843468,24397586,5
+36185142,24397586,4
+4401259,24397586,3
+1133756,24397586,4
+122514534,24397586,5
+74575095,24397586,4
+43027312,24397586,5
+amyue,24397586,4
+bozzi,24397586,4
+4485911,24397586,3
+iaubry,24397586,5
+kidbrjj,24397586,4
+102319626,24397586,5
+66074572,24397586,5
+56160592,24397586,3
+129369858,24397586,4
+62019095,24397586,5
+69356627,24397586,4
+52262957,24397586,5
+doraeman,24397586,4
+doraeman,24397586,4
+raye.b,24397586,4
+chenrongrong28,24397586,5
+130582163,24397586,3
+4667045,24397586,-1
+61981962,24397586,5
+2311976,24397586,3
+74448596,24397586,3
+17582579,24397586,5
+aquahst,24397586,4
+sirius_zhang,24397586,5
+41142807,24397586,5
+ambersigh,24397586,5
+21098367,24397586,5
+46845276,24397586,5
+66035702,24397586,4
+9025203,24397586,5
+3169523,24397586,5
+73828343,24397586,5
+3205834,24397586,5
+60630888,24397586,4
+2896376,24397586,4
+49798561,24397586,4
+56102431,24397586,4
+mamamafalda,24397586,5
+49195473,24397586,4
+68966981,24397586,5
+16965088,24397586,5
+82367118,24397586,3
+34572726,24397586,5
+4519637,24397586,5
+58457174,24397586,5
+33688715,24397586,4
+56887114,24397586,4
+qq381525772,24397586,1
+124384968,24397586,3
+77356251,24397586,4
+50126982,24397586,5
+reneeyang,24397586,5
+rityou,24397586,4
+siujan,24397586,-1
+32033776,24397586,4
+91365372,24397586,3
+65339931,24397586,5
+74628004,24397586,4
+gothickid,24397586,4
+sysonchen,24397586,5
+51378440,24397586,4
+33091901,24397586,5
+2085950,24397586,-1
+65397009,24397586,5
+4294308,24397586,5
+53672963,24397586,5
+2088587,24397586,3
+53162024,24397586,3
+silviapan,24397586,5
+30722315,24397586,5
+DCBinseven,24397586,3
+JunKun,24397586,4
+mariaaa,24397586,4
+45541495,24397586,3
+genglihui,24397586,4
+120335723,24397586,-1
+58774315,24397586,5
+58352034,24397586,5
+49500956,24397586,-1
+jiphacle,24397586,4
+53829286,24397586,5
+ninalynnsaynia,24397586,4
+ifeeling,24397586,5
+63657398,24397586,3
+71455965,24397586,4
+xiaoshuang,24397586,5
+78183847,24397586,3
+72454425,24397586,5
+70713413,24397586,5
+vanvin,24397586,4
+domisol,24397586,5
+elijahh,24397586,5
+lidianxi1990,24397586,5
+46935032,24397586,3
+3727771,24397586,5
+57758135,24397586,4
+102477875,24397586,5
+54805491,24397586,5
+heping2046,24397586,4
+3751886,24397586,4
+79425472,24397586,4
+113068656,24397586,3
+iamamortal,24397586,4
+4228422,24397586,5
+itsmeymq,24397586,3
+57169604,24397586,5
+79605736,24397586,5
+1831427,24397586,5
+51605730,24397586,5
+lihen,24397586,4
+jjjade,24397586,4
+51845720,24397586,5
+114358395,24397586,4
+2752525,24397586,4
+10321693,24397586,5
+94673988,24397586,5
+57751641,24397586,4
+roy_box,24397586,4
+58767866,24397586,3
+92637851,24397586,3
+49355592,24397586,4
+53392958,24397586,4
+51222757,24397586,4
+tutti33,24397586,5
+94162680,24397586,4
+36927005,24397586,3
+4366776,24397586,3
+xiaoan7EF,24397586,2
+69054448,24397586,3
+wangsu,24397586,5
+2562419,24397586,5
+Monica__Wang,24397586,4
+4842786,24397586,4
+64708572,24397586,3
+97709203,24397586,5
+121065420,24397586,3
+shuimudeyu1990,24397586,3
+larene,24397586,5
+58999340,24397586,4
+65666219,24397586,5
+47095353,24397586,4
+40201382,24397586,4
+124136324,24397586,4
+43527549,24397586,3
+3561552,24397586,4
+cassidesert,24397586,5
+greenyiruo,24397586,-1
+69475039,24397586,5
+47193903,24397586,-1
+ben0813,24397586,4
+53063481,24397586,5
+104003575,24397586,5
+4068403,24397586,5
+79386827,24397586,5
+yangpp,24397586,2
+1238616,24397586,5
+beilegeju,24397586,5
+cozy421,24397586,4
+72381317,24397586,5
+120541183,24397586,4
+63972448,24397586,5
+suicidee,24397586,5
+49866554,24397586,5
+l_panda,24397586,4
+121064013,24397586,4
+eiji218837,24397586,5
+80228830,24397586,3
+2348623,24397586,-1
+3127403,24397586,-1
+99744438,24397586,5
+50307527,24397586,-1
+36475333,24397586,4
+cat_rs,24397586,4
+d300019,24397586,5
+chidaoshu,24397586,5
+58098693,24397586,5
+onlyqinping,24397586,4
+74541142,24397586,5
+maxiaoxi9527,24397586,5
+adorable-me,24397586,4
+69152346,24397586,4
+67237648,24397586,4
+wulige,24397586,5
+2600693,24397586,4
+122090145,24397586,-1
+Minimalis,24397586,5
+3065583,24397586,5
+36112089,24397586,5
+hennic,24397586,5
+bessiej,24397586,5
+34789541,24397586,5
+55355100,24397586,4
+wind_field,24397586,4
+97277841,24397586,4
+acbc115,24397586,4
+80559391,24397586,4
+lovemetomato,24397586,4
+37948273,24397586,5
+51777015,24397586,4
+48521109,24397586,5
+batongyang,24397586,5
+39670803,24397586,5
+64976213,24397586,5
+dudunvmotou,24397586,5
+aspartameeee,24397586,2
+53175256,24397586,4
+papa1968,24397586,5
+roseandwater,24397586,4
+Shadow..,24397586,5
+74137880,24397586,4
+ibluepurple,24397586,5
+tonypaopao,24397586,5
+83842502,24397586,4
+happysadop,24397586,4
+M.Roseline,24397586,4
+3233256,24397586,4
+monkeek,24397586,4
+53034676,24397586,5
+8752115,24397586,3
+43473712,24397586,5
+helloivan,24397586,4
+2517259,24397586,4
+hinna,24397586,4
+43122175,24397586,5
+gufengbyluoluo,24397586,4
+cassiethere,24397586,5
+57786639,24397586,5
+2413967,24397586,4
+59984229,24397586,4
+52688114,24397586,3
+jessie962464,24397586,5
+65566265,24397586,5
+CloudRiver,24397586,3
+glasstar,24397586,4
+3289683,24397586,4
+33019737,24397586,4
+nancy8787,24397586,5
+56416669,24397586,5
+Summerhoda,24397586,4
+51227412,24397586,5
+65885890,24397586,4
+1806185,24397586,3
+77868057,24397586,5
+mai_k,24397586,5
+50945725,24397586,5
+Zizou_Vam,24397586,4
+63953631,24397586,4
+lizi0522,24397586,5
+104261144,24397586,4
+43269770,24397586,5
+119763000,24397586,5
+75475788,24397586,4
+63774339,24397586,4
+69112472,24397586,5
+1751335,24397586,5
+Lylaohyeah,24397586,5
+56914134,24397586,5
+46151281,24397586,4
+28573005,24397586,5
+62462373,24397586,5
+ideyes,24397586,3
+80461629,24397586,3
+4223889,24397586,5
+kiwieternal,24397586,5
+eyesfromacat,24397586,5
+2415644,24397586,5
+57602836,24397586,5
+mouzhi,24397586,5
+deltax,24397586,5
+52460447,24397586,5
+76146142,24397586,4
+yeyeyoung,24397586,5
+63953384,24397586,4
+58255325,24397586,5
+shinehall,24397586,5
+81377941,24397586,5
+56055590,24397586,-1
+71900698,24397586,5
+lizzy2005,24397586,5
+fm4714,24397586,4
+48509984,24397586,4
+57096958,24397586,4
+mikeodj,24397586,3
+Pikachu1127,24397586,3
+ihavescar,24397586,5
+adelinewang,24397586,5
+46736455,24397586,5
+YoungChow,24397586,5
+scaring,24397586,3
+royin.chao,24397586,4
+weird_galaxy,24397586,3
+73122939,24397586,5
+littleteatea,24397586,-1
+brandnewstart,24397586,3
+54282219,24397586,3
+gingershoes,24397586,3
+2177082,24397586,-1
+129620267,24397586,5
+122224124,24397586,5
+eaaaa,24397586,5
+50284153,24397586,3
+9455174,24397586,5
+ekamiao,24397586,5
+50814168,24397586,5
+tmp2,24397586,5
+44720442,24397586,5
+36819020,24397586,3
+51754900,24397586,5
+yinyet,24397586,5
+63503398,24397586,5
+kaixian,24397586,5
+teaof1949,24397586,5
+51120293,24397586,5
+39378921,24397586,5
+bluelittlefish,24397586,4
+sypdeyu,24397586,5
+62455169,24397586,5
+53065744,24397586,4
+69656600,24397586,4
+zxyan,24397586,3
+18937847,24397586,5
+57416043,24397586,4
+45826317,24397586,5
+60796810,24397586,4
+2275412,24397586,5
+2856696,24397586,5
+baifakongchui,24397586,5
+cloverllx,24397586,3
+119533372,24397586,5
+3519752,24397586,3
+angel-A,24397586,4
+126183742,24397586,4
+94442097,24397586,5
+1493686,24397586,5
+Tylermrx,24397586,4
+liux5520,24397586,5
+neihi,24397586,5
+58134202,24397586,5
+65301310,24397586,5
+catvoldemort,24397586,3
+mismamadera,24397586,4
+ilovermb,24397586,5
+ayint,24397586,4
+jennychang,24397586,3
+60808695,24397586,5
+55866534,24397586,2
+lotus0417,24397586,5
+54006234,24397586,3
+ice_pudding,24397586,3
+54499489,24397586,5
+1791796,24397586,5
+55529089,24397586,5
+70034039,24397586,3
+61973775,24397586,3
+wlj13626,24397586,3
+vincent398,24397586,5
+38243770,24397586,4
+brutwater,24397586,4
+dairytea,24397586,4
+60846829,24397586,-1
+58598004,24397586,5
+dou4y,24397586,5
+2413295,24397586,5
+59038571,24397586,5
+Nathancai,24397586,5
+2387348,24397586,4
+43240998,24397586,5
+78625629,24397586,5
+108352341,24397586,5
+G--er,24397586,4
+2761282,24397586,5
+tikiloha,24397586,3
+Lungle,24397586,5
+1240037,24397586,4
+47402346,24397586,-1
+108821133,24397586,5
+75421983,24397586,3
+52350621,24397586,5
+3089552,24397586,4
+65696190,24397586,-1
+58917228,24397586,5
+75869572,24397586,5
+3690173,24397586,5
+2529632,24397586,5
+runningcat,24397586,4
+irenaleo,24397586,3
+52226268,24397586,5
+jackiex,24397586,4
+luluto,24397586,4
+70726919,24397586,4
+45193149,24397586,4
+4145491,24397586,4
+operaticfrances,24397586,5
+75994627,24397586,5
+zizaishanfang,24397586,4
+mick817,24397586,5
+blender,24397586,5
+119683375,24397586,4
+Elephant922,24397586,-1
+65946075,24397586,-1
+104373100,24397586,3
+14355410,24397586,4
+justinprc,24397586,5
+CherylGirl,24397586,5
+3726545,24397586,5
+43075256,24397586,5
+papayoung,24397586,4
+90214054,24397586,4
+aquabow,24397586,5
+121148510,24397586,4
+Emily723,24397586,4
+alcudish,24397586,4
+Acinom,24397586,4
+3555189,24397586,4
+30067864,24397586,5
+3363790,24397586,4
+littlehua,24397586,4
+54184798,24397586,5
+2324627,24397586,4
+54257539,24397586,5
+126980247,24397586,4
+1259506,24397586,3
+57915415,24397586,4
+Tetsuling,24397586,2
+45631897,24397586,4
+hljmsfy,24397586,4
+76755993,24397586,4
+64658435,24397586,5
+lyliaris,24397586,3
+48200475,24397586,5
+1101928,24397586,3
+93043305,24397586,4
+57442857,24397586,3
+82425034,24397586,4
+trista1202,24397586,4
+wangyujia520,24397586,4
+58386439,24397586,2
+Caicaizhi,24397586,5
+Zoe-MU,24397586,5
+65014224,24397586,4
+mackalex,24397586,4
+41014466,24397586,5
+58035376,24397586,4
+45183610,24397586,4
+magicpencil,24397586,4
+74575002,24397586,4
+64780259,24397586,4
+dearpluto,24397586,5
+untouchable,24397586,5
+53062972,24397586,5
+50405543,24397586,4
+ydlxiaolong,24397586,4
+vivianazone,24397586,5
+49567226,24397586,5
+64477541,24397586,5
+2206999,24397586,5
+miaolxh,24397586,5
+72086305,24397586,4
+54856887,24397586,5
+81930957,24397586,1
+2774375,24397586,4
+68664454,24397586,4
+2458122,24397586,4
+50003038,24397586,5
+46667318,24397586,3
+46714159,24397586,5
+wanglizhi2014,24397586,5
+59901599,24397586,5
+102791213,24397586,3
+88844052,24397586,3
+78347009,24397586,4
+2292966,24397586,5
+55556011,24397586,5
+55556011,24397586,5
+springmel,24397586,4
+87083244,24397586,5
+deargod123,24397586,4
+RedSnowRose,24397586,4
+52036087,24397586,5
+57605822,24397586,-1
+xuaoling,24397586,4
+1187053,24397586,4
+flyhighalan,24397586,5
+62484889,24397586,4
+61011795,24397586,3
+Dushanbe,24397586,4
+graffitizy,24397586,5
+braxin2007,24397586,4
+mryesbuter,24397586,5
+Traza,24397586,3
+49194047,24397586,5
+65161284,24397586,4
+Edward-Lockwood,24397586,2
+35745537,24397586,5
+ivy711,24397586,4
+59573485,24397586,3
+92656406,24397586,5
+124801307,24397586,5
+yurenxiaobai,24397586,5
+Tong323,24397586,4
+52054076,24397586,5
+ToscanaSole,24397586,5
+hikkii,24397586,4
+58753726,24397586,4
+rvlt,24397586,5
+62582526,24397586,5
+50167115,24397586,5
+42991062,24397586,4
+41973802,24397586,3
+67589382,24397586,5
+29998862,24397586,4
+53886643,24397586,4
+haorensisi-,24397586,5
+47717774,24397586,5
+50867193,24397586,4
+yvonneliu,24397586,4
+Sparta233,24397586,4
+2570198,24397586,5
+109071347,24397586,4
+63033488,24397586,3
+32776828,24397586,4
+evich,24397586,3
+59904891,24397586,4
+eyeinhand,24397586,4
+lancer04,24397586,5
+43802399,24397586,5
+59535372,24397586,4
+3864518,24397586,3
+poo0ooq,24397586,5
+helenrain553,24397586,4
+44103140,24397586,5
+49174691,24397586,5
+Uatchet,24397586,4
+justdoit360,24397586,5
+oakhui,24397586,5
+54664894,24397586,4
+129798303,24397586,5
+73901440,24397586,4
+shanguicheng,24397586,5
+76916226,24397586,4
+ming_203344,24397586,4
+marchduck,24397586,4
+yinw83,24397586,4
+35077550,24397586,4
+45490376,24397586,4
+59689360,24397586,-1
+61855461,24397586,5
+jean627,24397586,4
+34513979,24397586,4
+103680149,24397586,4
+28876488,24397586,5
+65442139,24397586,4
+71026194,24397586,5
+71026194,24397586,5
+idiotmike,24397586,3
+50826027,24397586,5
+lovehebey,24397586,4
+yanggc,24397586,4
+ryeon,24397586,3
+moranxianchen,24397586,5
+57661642,24397586,5
+odaki,24397586,4
+wyh89,24397586,5
+cyrus_wong,24397586,5
+chenjingxian,24397586,4
+122228928,24397586,5
+losiuhong,24397586,5
+69388384,24397586,4
+LillianLuan,24397586,5
+61402100,24397586,4
+kimmyaloha,24397586,5
+112527545,24397586,4
+puredoudou,24397586,4
+59333923,24397586,4
+14327084,24397586,3
+woshionion,24397586,5
+dreariness,24397586,5
+laijunsen,24397586,4
+yzzlovezj,24397586,3
+45278107,24397586,3
+49552014,24397586,5
+4582130,24397586,4
+zhuzaixuanyabia,24397586,4
+sanhao_love,24397586,5
+qjunny,24397586,2
+49689556,24397586,4
+44627749,24397586,5
+14277787,24397586,5
+lasto2,24397586,5
+ycsgj,24397586,5
+7255952,24397586,4
+wei1900,24397586,4
+54625208,24397586,5
+2332162,24397586,4
+2983314,24397586,1
+1582961,24397586,5
+80346808,24397586,4
+dongdayou,24397586,3
+maoxiaoci,24397586,5
+68631195,24397586,2
+vcvcvc,24397586,3
+74090555,24397586,5
+aini3851424215,24397586,5
+39529333,24397586,4
+40927982,24397586,5
+jadyx,24397586,4
+4209119,24397586,5
+49196106,24397586,5
+hey00,24397586,4
+easonkoko,24397586,4
+77075195,24397586,3
+mhyigeren,24397586,5
+foodtooth,24397586,5
+shuiashui,24397586,5
+59378291,24397586,5
+4134812,24397586,4
+shawnNK,24397586,3
+47218241,24397586,5
+slipper003,24397586,3
+wi3lau,24397586,4
+wsc7315,24397586,4
+62735975,24397586,5
+4236071,24397586,4
+81404706,24397586,3
+shir23,24397586,4
+lukaka,24397586,5
+120990428,24397586,4
+perfectdemon,24397586,4
+40027917,24397586,5
+aNeEr,24397586,4
+lxsiji,24397586,3
+52286623,24397586,4
+27157362,24397586,5
+Luoluoshang,24397586,5
+summertail,24397586,5
+hysunao,24397586,-1
+samra,24397586,4
+66057217,24397586,4
+94394247,24397586,3
+AeroAnte,24397586,4
+zhangrihe,24397586,4
+63483600,24397586,5
+41234171,24397586,4
+40740426,24397586,4
+123196053,24397586,5
+58545738,24397586,5
+zhujiao,24397586,5
+46774756,24397586,4
+duoduoshuwu,24397586,3
+51915169,24397586,5
+51273572,24397586,4
+2073013,24397586,3
+129508077,24397586,5
+43192927,24397586,5
+luzhenxing,24397586,5
+4325552,24397586,5
+lsx8270,24397586,4
+hayney,24397586,5
+52046312,24397586,5
+89925651,24397586,4
+38924619,24397586,4
+summerwith,24397586,5
+joyjay,24397586,5
+78955356,24397586,4
+40684892,24397586,5
+wendy426,24397586,5
+61161824,24397586,2
+3447044,24397586,5
+kazekiss,24397586,4
+81122892,24397586,5
+xwy04,24397586,5
+fuzyu,24397586,5
+80025291,24397586,5
+55942870,24397586,4
+51664612,24397586,5
+3981557,24397586,5
+hakuhaku,24397586,5
+48118281,24397586,4
+celinedsam,24397586,3
+84564093,24397586,4
+zhangxiaohua,24397586,5
+idealtemple,24397586,4
+bluesorry,24397586,5
+43558241,24397586,1
+85665063,24397586,5
+mdec,24397586,-1
+mnky,24397586,3
+margaux,24397586,4
+3510022,24397586,5
+janenuange,24397586,5
+57620266,24397586,5
+72967460,24397586,4
+july8903,24397586,4
+50176168,24397586,4
+56475433,24397586,5
+2625768,24397586,5
+64092114,24397586,5
+84093369,24397586,4
+36563636,24397586,5
+109238530,24397586,5
+jinjingjing,24397586,4
+22593878,24397586,5
+59425944,24397586,4
+121683298,24397586,5
+36470321,24397586,5
+41785476,24397586,4
+piaoweier,24397586,4
+4840048,24397586,4
+yinzhi83,24397586,5
+4603294,24397586,4
+zwbhappy,24397586,5
+hfguren,24397586,3
+57613614,24397586,5
+49237528,24397586,5
+3435535,24397586,5
+13833588,24397586,5
+73064038,24397586,4
+yanlee17,24397586,4
+72225494,24397586,-1
+50232198,24397586,5
+72354881,24397586,5
+Cicinnurus,24397586,4
+3547067,24397586,3
+mcbird3017,24397586,5
+36458457,24397586,4
+44852938,24397586,4
+49340336,24397586,4
+103208454,24397586,4
+50703649,24397586,5
+reave,24397586,5
+18522133,24397586,5
+56998996,24397586,2
+71321959,24397586,5
+justlikesue,24397586,5
+90465571,24397586,4
+48470366,24397586,5
+4190834,24397586,5
+yangjiemomo,24397586,4
+58591644,24397586,4
+JaceJing,24397586,4
+1457979,24397586,4
+46087148,24397586,4
+benihi,24397586,4
+cancerlies,24397586,4
+51716279,24397586,5
+annieangel,24397586,4
+59399193,24397586,5
+YoungWind,24397586,5
+49195870,24397586,5
+94563993,24397586,5
+Uvo,24397586,4
+weiminglu,24397586,4
+58935942,24397586,5
+42787791,24397586,3
+45571698,24397586,4
+4111389,24397586,4
+101462888,24397586,5
+47519520,24397586,4
+3978876,24397586,4
+48276926,24397586,5
+susimai,24397586,3
+dinge,24397586,-1
+1369113,24397586,4
+28116442,24397586,5
+87383835,24397586,4
+FinalFantasy,24397586,4
+4533540,24397586,5
+liususu,24397586,5
+50058727,24397586,4
+67739152,24397586,4
+ability2010,24397586,4
+121657475,24397586,5
+smumy,24397586,4
+88072113,24397586,4
+badblueeyes,24397586,5
+orangeT,24397586,4
+mengyu0811,24397586,3
+Opensky,24397586,4
+daizy_10,24397586,4
+74062182,24397586,4
+70927104,24397586,4
+57260239,24397586,4
+34347136,24397586,4
+64755839,24397586,4
+54439870,24397586,5
+seafans,24397586,4
+hyt,24397586,5
+55365789,24397586,5
+122124788,24397586,5
+25676059,24397586,5
+3107975,24397586,4
+akaluzz,24397586,5
+spaceli,24397586,5
+spaceli,24397586,5
+43282525,24397586,5
+26713841,24397586,5
+83693320,24397586,4
+49575753,24397586,5
+52418635,24397586,4
+4335163,24397586,5
+stvictoria,24397586,5
+15965977,24397586,4
+1371368,24397586,4
+45182133,24397586,5
+49604322,24397586,5
+tangmao2023,24397586,5
+46337332,24397586,4
+flowermumu,24397586,4
+zxl321,24397586,4
+hot_air_balloon,24397586,4
+4715561,24397586,4
+Kevin3,24397586,5
+TaTaxxxx,24397586,4
+1998897,24397586,2
+38567114,24397586,4
+liarelaw,24397586,4
+128747636,24397586,4
+2428233,24397586,3
+94381096,24397586,3
+holdingtt,24397586,4
+71765627,24397586,5
+w112233,24397586,5
+3713265,24397586,4
+liyao404,24397586,5
+lingcod,24397586,5
+65477691,24397586,5
+54365340,24397586,5
+100934769,24397586,-1
+duzhouchi,24397586,5
+kaiyu1028,24397586,5
+edocsil,24397586,4
+61486120,24397586,5
+kissofdead,24397586,5
+19463611,24397586,4
+love-99,24397586,5
+InMisery,24397586,5
+2252653,24397586,3
+kiddingjoyceluo,24397586,5
+Kevser,24397586,-1
+51338179,24397586,5
+102862890,24397586,4
+58291702,24397586,4
+Mi3ou,24397586,4
+78957265,24397586,-1
+33245540,24397586,4
+Utopiartist,24397586,3
+ylamb,24397586,4
+49872790,24397586,4
+39079545,24397586,5
+47914838,24397586,5
+67346668,24397586,3
+52345284,24397586,5
+beforetomorrow,24397586,5
+darlingtudai,24397586,-1
+70815999,24397586,5
+Kiwi1126,24397586,5
+40950202,24397586,5
+31213700,24397586,5
+baoxuerui,24397586,4
+littleelephant,24397586,4
+55383324,24397586,3
+91745449,24397586,5
+C7chuqi,24397586,5
+linchuzhuang,24397586,5
+75926558,24397586,5
+3689204,24397586,5
+seeyouaa,24397586,5
+chelsea_baker,24397586,5
+82629572,24397586,4
+53830411,24397586,4
+45362948,24397586,5
+78721713,24397586,5
+31849844,24397586,5
+68307753,24397586,4
+47464761,24397586,4
+33604129,24397586,5
+cyy9828,24397586,4
+46460474,24397586,5
+123232321,24397586,5
+63171651,24397586,5
+44457357,24397586,4
+liaojiafen,24397586,4
+49193605,24397586,5
+81521216,24397586,4
+46996433,24397586,4
+60591590,24397586,4
+64266034,24397586,5
+48941856,24397586,5
+puccino,24397586,5
+99448311,24397586,5
+54761724,24397586,3
+115505780,24397586,4
+little-aileen,24397586,5
+little-aileen,24397586,5
+29211262,24397586,4
+NatsuTrevor,24397586,4
+57980305,24397586,5
+MaclovenZD,24397586,4
+beckham7,24397586,5
+52689721,24397586,5
+enleyyy,24397586,5
+63989347,24397586,5
+19805046,24397586,3
+122411500,24397586,3
+daiginnko,24397586,5
+tianranzijiegou,24397586,4
+56922790,24397586,4
+raincatlee,24397586,5
+48909969,24397586,3
+18209533,24397586,5
+chenzhemu,24397586,4
+58158139,24397586,5
+56994216,24397586,4
+yiqiu8932,24397586,5
+66345679,24397586,5
+120008046,24397586,5
+yan6,24397586,3
+125643818,24397586,5
+artofhuh,24397586,5
+88612427,24397586,4
+4587542,24397586,4
+yuyangaiyang,24397586,5
+ask4more,24397586,4
+40848331,24397586,5
+babbye,24397586,4
+3770809,24397586,5
+thehours_lxx,24397586,4
+lauretta2acm,24397586,4
+61514882,24397586,4
+51297351,24397586,4
+spirit.seraph,24397586,5
+zonovo,24397586,4
+47997499,24397586,5
+115697810,24397586,4
+LincolnSixEcho,24397586,5
+flxjp,24397586,4
+59607562,24397586,3
+51855205,24397586,5
+danaest,24397586,5
+58807022,24397586,3
+2386590,24397586,4
+RaulG,24397586,5
+iliuweiming,24397586,4
+2431859,24397586,5
+79534422,24397586,5
+idleapple,24397586,4
+74803451,24397586,5
+elsaguoo,24397586,4
+DoDoangell,24397586,5
+48964211,24397586,4
+xiaoshuogege,24397586,5
+37450029,24397586,3
+ifiwere,24397586,4
+4296925,24397586,5
+jin_hw,24397586,5
+zhuanmingzhu,24397586,5
+4127720,24397586,5
+yoyoga,24397586,4
+65400706,24397586,5
+weijjcd,24397586,4
+manray,24397586,5
+77165599,24397586,-1
+47837056,24397586,4
+daysofyouth,24397586,5
+1532705,24397586,3
+55925233,24397586,3
+riceseedling,24397586,3
+62258561,24397586,5
+109084248,24397586,5
+39649962,24397586,4
+xiexian,24397586,5
+4105021,24397586,4
+113234997,24397586,5
+113234997,24397586,5
+34853481,24397586,4
+58556791,24397586,4
+danzi0105,24397586,5
+mrcandy,24397586,5
+Jaytaoo,24397586,4
+wildkidpk,24397586,4
+59524525,24397586,5
+MancunianJor,24397586,5
+58142762,24397586,5
+chenyuanyuan,24397586,4
+63531003,24397586,5
+anya2011,24397586,5
+87411768,24397586,5
+46722209,24397586,4
+102816814,24397586,5
+55631260,24397586,5
+70043510,24397586,3
+oncemygrandpa,24397586,4
+36981744,24397586,5
+54930854,24397586,4
+2209839,24397586,5
+76153086,24397586,5
+75416768,24397586,4
+39093072,24397586,5
+75691865,24397586,3
+128111484,24397586,-1
+Davidcyclone,24397586,-1
+54002998,24397586,-1
+bzfdu,24397586,4
+marco_0708,24397586,5
+cris7ss,24397586,4
+64926044,24397586,3
+71873825,24397586,5
+60392839,24397586,3
+43559686,24397586,4
+wjscxx,24397586,5
+nangle,24397586,3
+4501544,24397586,4
+blinglu,24397586,5
+1495292,24397586,4
+63014642,24397586,4
+81509803,24397586,4
+36193600,24397586,4
+HL0919,24397586,4
+3818273,24397586,5
+guwalgia,24397586,4
+wrdeam,24397586,4
+blueskyfly,24397586,5
+Woody89man,24397586,5
+2667573,24397586,5
+jackiam,24397586,3
+89108079,24397586,5
+43364606,24397586,4
+willdb,24397586,4
+daimaoqi,24397586,4
+2596592,24397586,5
+35409946,24397586,4
+64124840,24397586,4
+122981729,24397586,4
+2917441,24397586,2
+57311033,24397586,4
+18586571,24397586,4
+upyougo,24397586,5
+linkliu,24397586,5
+2823235,24397586,4
+smallbai406,24397586,4
+53220311,24397586,5
+66801407,24397586,4
+71879999,24397586,5
+58863205,24397586,3
+whisaly,24397586,5
+firewingwong,24397586,5
+Sunnydoer,24397586,5
+68089671,24397586,3
+justseverin,24397586,5
+82217018,24397586,3
+58620787,24397586,4
+66872229,24397586,5
+Jenny_1120,24397586,4
+47876521,24397586,-1
+formosante,24397586,5
+65672051,24397586,5
+28566695,24397586,4
+T.Shinoda,24397586,4
+Nicccki,24397586,4
+83019906,24397586,5
+55842990,24397586,3
+92344902,24397586,5
+127766292,24397586,5
+82669426,24397586,5
+fangbin0516,24397586,4
+46453605,24397586,5
+44255607,24397586,5
+50062390,24397586,5
+128580925,24397586,3
+77532413,24397586,4
+74103020,24397586,3
+zhuqifan,24397586,5
+48253364,24397586,4
+66269844,24397586,4
+63612050,24397586,3
+stardust.,24397586,4
+61165254,24397586,4
+8447509,24397586,5
+Sophieless,24397586,4
+46310239,24397586,3
+HeroineDaode,24397586,5
+Caterina,24397586,5
+p2165,24397586,3
+jujuxiii,24397586,3
+kkjoy2617,24397586,5
+49455308,24397586,3
+tingkelly,24397586,5
+angle223,24397586,4
+43840561,24397586,5
+83832332,24397586,-1
+3832465,24397586,4
+91432391,24397586,4
+horadric,24397586,3
+T-Tanny,24397586,-1
+49891735,24397586,5
+caocaoa,24397586,4
+ganlu58,24397586,4
+karsa,24397586,5
+50852406,24397586,5
+111745071,24397586,4
+61057938,24397586,5
+chenhuayang,24397586,4
+106130226,24397586,4
+98739826,24397586,4
+2622280,24397586,3
+june1111,24397586,5
+4239908,24397586,5
+61050167,24397586,5
+honey10151106,24397586,3
+123222453,24397586,5
+68775691,24397586,5
+39791533,24397586,5
+70535180,24397586,3
+49319979,24397586,4
+54422865,24397586,5
+39389388,24397586,4
+63454673,24397586,5
+43632851,24397586,3
+63770150,24397586,5
+49761291,24397586,4
+60894533,24397586,5
+74746507,24397586,4
+71715342,24397586,5
+69157660,24397586,3
+63463815,24397586,5
+52951268,24397586,5
+48975477,24397586,5
+piliyangyang,24397586,5
+46106251,24397586,4
+70542468,24397586,4
+merryliang,24397586,5
+3890374,24397586,5
+78640879,24397586,5
+yulelong,24397586,3
+2307180,24397586,5
+101747870,24397586,4
+paulzhong1082,24397586,4
+87909103,24397586,4
+4742366,24397586,4
+49445106,24397586,3
+zengt,24397586,4
+fanzling,24397586,4
+suedon,24397586,5
+3847164,24397586,4
+49930132,24397586,5
+56102108,24397586,5
+karain,24397586,5
+88171828,24397586,4
+superpanv,24397586,4
+icerabbitbaby,24397586,5
+90020186,24397586,5
+sunrain10,24397586,5
+52683154,24397586,5
+Eileke,24397586,4
+43042242,24397586,3
+36786928,24397586,5
+62571454,24397586,4
+78966790,24397586,4
+4896156,24397586,4
+55405486,24397586,4
+ceruleanice,24397586,5
+66230509,24397586,5
+Forrestgary,24397586,5
+72792251,24397586,3
+lavonnewang,24397586,5
+Mobius.wang,24397586,5
+51490972,24397586,4
+angelstone,24397586,-1
+54158411,24397586,5
+69951306,24397586,4
+hippocattle,24397586,4
+37586252,24397586,5
+xianyuxiaojie,24397586,5
+lihanbin,24397586,5
+ceciliayiyi,24397586,5
+73260608,24397586,4
+54926735,24397586,5
+53102131,24397586,4
+47698809,24397586,5
+rabbit_forest,24397586,4
+49078915,24397586,5
+crowdedstars,24397586,4
+52529736,24397586,5
+34799839,24397586,5
+cowsumy,24397586,5
+liqiyao8931,24397586,5
+22462455,24397586,4
+changgu4290,24397586,5
+52330304,24397586,3
+didopyj,24397586,3
+42724768,24397586,3
+23896933,24397586,5
+58429306,24397586,5
+62093986,24397586,1
+kning,24397586,5
+107663768,24397586,4
+xiangfo,24397586,4
+chauyeelee,24397586,5
+127651725,24397586,5
+100996286,24397586,5
+mushroom2011,24397586,5
+xqyamour,24397586,5
+50769743,24397586,4
+87651171,24397586,5
+scha-_-,24397586,5
+matt5,24397586,-1
+2802817,24397586,4
+84593268,24397586,5
+fsivyneof4,24397586,5
+arrogantcolonel,24397586,5
+115482550,24397586,4
+49397291,24397586,5
+58625918,24397586,4
+58625918,24397586,4
+candy_littrell,24397586,5
+1607209,24397586,5
+glooshou,24397586,5
+riverbrother,24397586,5
+dearcarrie,24397586,5
+39628944,24397586,-1
+72851212,24397586,5
+54963261,24397586,4
+inkhkkk,24397586,4
+43411603,24397586,4
+54150368,24397586,4
+Collins1995,24397586,4
+movieview,24397586,4
+126151029,24397586,5
+45315021,24397586,4
+dana_dana,24397586,5
+41063648,24397586,-1
+Latefordrama,24397586,5
+manxiaoyue,24397586,4
+tink_leung,24397586,4
+mwqqqqq,24397586,4
+lazzaro,24397586,4
+Mango99101185,24397586,5
+getefuxing,24397586,4
+adidasisallin,24397586,5
+Muha,24397586,5
+51721466,24397586,4
+70861303,24397586,5
+52235575,24397586,4
+126495450,24397586,-1
+wangmuse,24397586,5
+cmisland,24397586,4
+thistle_,24397586,3
+XenFOne,24397586,5
+47971865,24397586,5
+67126761,24397586,4
+57011017,24397586,5
+50600340,24397586,5
+kisass,24397586,4
+chelemege,24397586,5
+45820206,24397586,-1
+39217507,24397586,5
+100625194,24397586,5
+sinkerone,24397586,4
+zhibiaoshi,24397586,4
+58542369,24397586,5
+2939730,24397586,4
+64880714,24397586,4
+aiiicat,24397586,3
+Yb1204,24397586,4
+neverlandIvy,24397586,5
+3484320,24397586,3
+76996269,24397586,-1
+67884677,24397586,4
+SYF_923,24397586,5
+63271231,24397586,5
+3430040,24397586,5
+dafeinydia,24397586,4
+79169198,24397586,4
+rapistnodabear,24397586,5
+51328750,24397586,5
+Batcaty,24397586,4
+36758114,24397586,5
+103380368,24397586,4
+122708996,24397586,5
+Kidz,24397586,5
+weirdoToC,24397586,4
+phoebefly,24397586,5
+Orchid,24397586,4
+121583666,24397586,5
+2504153,24397586,4
+Mere_77,24397586,5
+28140485,24397586,5
+106514817,24397586,4
+aivnce,24397586,4
+110121611,24397586,-1
+45219094,24397586,5
+sheyinghui,24397586,5
+77922789,24397586,4
+1159296,24397586,4
+49228448,24397586,4
+119644008,24397586,4
+puccaa,24397586,4
+bonnie920311,24397586,3
+57743813,24397586,4
+62452772,24397586,4
+3976155,24397586,5
+125185442,24397586,4
+81217259,24397586,5
+ninecat,24397586,4
+nushou,24397586,2
+alan_fanfan,24397586,5
+yu830,24397586,5
+rabbit_roxas,24397586,4
+ultrasb,24397586,5
+58596058,24397586,4
+43039008,24397586,5
+40237768,24397586,5
+daijun1988,24397586,5
+60186583,24397586,5
+joanne_do,24397586,3
+32144547,24397586,5
+kimu97,24397586,5
+74603714,24397586,5
+loneblog,24397586,5
+84142287,24397586,4
+65408583,24397586,4
+58087167,24397586,4
+sungmaki,24397586,5
+125865860,24397586,4
+2640849,24397586,5
+75952866,24397586,4
+52543232,24397586,-1
+littlehorse,24397586,4
+43388025,24397586,5
+vivi112,24397586,5
+1226511,24397586,4
+49892872,24397586,4
+christopherlin,24397586,4
+wz1031h,24397586,4
+totorolove,24397586,4
+Leslie_ontheway,24397586,4
+49335664,24397586,5
+33684021,24397586,5
+marsdream,24397586,4
+70253982,24397586,5
+22698450,24397586,5
+87906955,24397586,5
+fuck_time,24397586,-1
+sugarjojo,24397586,4
+55961606,24397586,4
+32911120,24397586,2
+tinychen,24397586,4
+125733411,24397586,-1
+parala,24397586,5
+77631133,24397586,4
+71985811,24397586,4
+78914788,24397586,5
+72341993,24397586,5
+58913556,24397586,5
+55328158,24397586,4
+yangfu,24397586,4
+xichlo,24397586,5
+sunting322,24397586,5
+elaine14,24397586,5
+57419591,24397586,3
+xinziai,24397586,4
+70990506,24397586,3
+wann_,24397586,3
+2420853,24397586,4
+122300732,24397586,4
+41634233,24397586,5
+zybxixi,24397586,5
+fikichow,24397586,4
+MonisaDuu,24397586,5
+62907165,24397586,-1
+60724447,24397586,5
+lilylee1023,24397586,5
+50054734,24397586,4
+xuehaotian,24397586,5
+44561459,24397586,1
+1333942,24397586,3
+guoyandao,24397586,5
+1021243,24397586,4
+66572038,24397586,4
+35135916,24397586,4
+58044228,24397586,5
+88236856,24397586,3
+Cindylam,24397586,3
+56487740,24397586,5
+60311898,24397586,5
+62671036,24397586,3
+32433633,24397586,4
+84710865,24397586,5
+69602683,24397586,5
+83389859,24397586,5
+62862861,24397586,4
+YirenyH,24397586,5
+petulance,24397586,3
+64011512,24397586,4
+shanzesun,24397586,5
+52997821,24397586,4
+63359487,24397586,4
+yemiaoyi,24397586,5
+56007865,24397586,5
+lephemera,24397586,3
+57080292,24397586,-1
+polarbearzqm,24397586,5
+45797451,24397586,3
+44311860,24397586,5
+kistch_y,24397586,5
+donglaixia,24397586,4
+3826970,24397586,-1
+gentlepuppy,24397586,3
+45572942,24397586,3
+2005598,24397586,5
+71654816,24397586,4
+2393425,24397586,4
+xiaoyuhen,24397586,5
+Link0406,24397586,5
+4154813,24397586,5
+seraphimzhao,24397586,5
+1861486,24397586,5
+oscarxia,24397586,4
+NEUN1975,24397586,4
+57666783,24397586,5
+52699321,24397586,5
+weexf,24397586,4
+JomiNeverDies,24397586,5
+jinjidexiong,24397586,4
+61389067,24397586,5
+46920813,24397586,4
+olovc,24397586,5
+3509692,24397586,4
+45115069,24397586,5
+39285669,24397586,5
+jazzark,24397586,5
+68244610,24397586,5
+57501453,24397586,4
+Dpudding,24397586,5
+73872717,24397586,5
+80614014,24397586,3
+77017255,24397586,4
+2788057,24397586,4
+judeli,24397586,4
+huoxiaoliang,24397586,4
+103622140,24397586,5
+alonso_frame,24397586,4
+62877248,24397586,4
+Jsprite,24397586,4
+2236519,24397586,4
+73119546,24397586,5
+26786112,24397586,5
+sunnydaydoll,24397586,5
+buersongzi,24397586,5
+lovejidi,24397586,5
+47707866,24397586,5
+43871620,24397586,5
+55617091,24397586,5
+fengzaifei,24397586,4
+liwshuo,24397586,5
+47193126,24397586,4
+kejinlong,24397586,3
+rivers543,24397586,5
+1530125,24397586,4
+chuleiwu,24397586,4
+53247764,24397586,4
+steph6luna,24397586,5
+80867973,24397586,5
+Lofa,24397586,5
+7542909,24397586,4
+1068125,24397586,4
+xzz005,24397586,5
+43867607,24397586,4
+4583369,24397586,5
+cocojamboo,24397586,3
+121532564,24397586,4
+3588917,24397586,5
+54706735,24397586,5
+104818582,24397586,5
+zhr19951204,24397586,5
+punkshen,24397586,5
+jin811089856,24397586,5
+jhxxs,24397586,4
+seluti,24397586,5
+france_lj,24397586,3
+sentimento-rose,24397586,5
+83974267,24397586,5
+PCvarment,24397586,5
+maybeoneday,24397586,5
+millerwong,24397586,4
+65104793,24397586,4
+31102423,24397586,4
+61509352,24397586,5
+4841197,24397586,4
+70696513,24397586,4
+2309801,24397586,5
+exodusg,24397586,5
+lzw5546,24397586,4
+94000337,24397586,4
+75043360,24397586,5
+usewelltheday,24397586,-1
+4266952,24397586,5
+119490218,24397586,5
+bingkuaizhuiluo,24397586,5
+earism,24397586,3
+sherlyandnicole,24397586,4
+37497401,24397586,4
+61295594,24397586,5
+58783819,24397586,5
+67072789,24397586,4
+kiki204629,24397586,4
+yihuiw,24397586,5
+avian,24397586,5
+66458815,24397586,4
+metkee,24397586,4
+56268506,24397586,5
+sunseekerns,24397586,5
+yzone,24397586,4
+47593124,24397586,5
+gannimei,24397586,5
+82404312,24397586,4
+guotong,24397586,5
+brad_tsye,24397586,5
+64780091,24397586,5
+DamonCoxon,24397586,5
+xianxianchen,24397586,4
+51736421,24397586,5
+mingming1124530,24397586,3
+63395542,24397586,4
+97312448,24397586,3
+vect0r,24397586,5
+46370067,24397586,3
+59573093,24397586,5
+42600622,24397586,4
+45784298,24397586,4
+59110015,24397586,5
+3517979,24397586,5
+7609988,24397586,4
+55831735,24397586,4
+50900048,24397586,3
+47345728,24397586,5
+56638281,24397586,3
+CAROHANNAH,24397586,5
+12074004,24397586,5
+goer1991,24397586,4
+loserbullet,24397586,5
+83392570,24397586,4
+BG4KKS,24397586,4
+56606229,24397586,4
+81482476,24397586,4
+43326904,24397586,5
+43060611,24397586,5
+4248478,24397586,5
+hwf254,24397586,5
+75232634,24397586,5
+60654735,24397586,5
+119559372,24397586,5
+buddhajump,24397586,5
+126828053,24397586,4
+49419366,24397586,4
+pineapples,24397586,3
+cecilia.eve,24397586,5
+54153772,24397586,5
+lonelysin,24397586,3
+61012968,24397586,5
+Strangefamiliar,24397586,4
+54940586,24397586,4
+49069432,24397586,4
+88085556,24397586,5
+4251050,24397586,5
+1886385,24397586,4
+94961763,24397586,2
+83017477,24397586,5
+2853604,24397586,5
+42903485,24397586,5
+canhongfw,24397586,4
+50043116,24397586,5
+gyivv,24397586,5
+50712140,24397586,5
+48388719,24397586,4
+spoont,24397586,4
+53484226,24397586,5
+54251969,24397586,5
+52255874,24397586,4
+85245250,24397586,4
+xiqi,24397586,4
+catfish33,24397586,5
+62345168,24397586,5
+CTT696,24397586,5
+xxyilun,24397586,4
+yuexiaokan,24397586,4
+76935104,24397586,5
+54068370,24397586,-1
+4280274,24397586,5
+baibi,24397586,4
+35858270,24397586,5
+maomixiaosu,24397586,4
+58121967,24397586,4
+bellaG,24397586,4
+icefishe,24397586,5
+33982496,24397586,5
+wangxiaoerhehe,24397586,5
+tjz230,24397586,5
+rockleaf,24397586,5
+61426958,24397586,4
+46712687,24397586,5
+45107933,24397586,5
+55989737,24397586,5
+yijinnian51,24397586,5
+52544571,24397586,5
+xiaohuochai,24397586,5
+123452910,24397586,3
+80167368,24397586,5
+46942165,24397586,5
+cathyzcl,24397586,5
+nabiki1003,24397586,5
+Wristcut,24397586,3
+23730457,24397586,4
+EvelynReese,24397586,5
+nildesperandum,24397586,4
+jogy,24397586,5
+seabisuit,24397586,4
+1905721,24397586,4
+jite,24397586,4
+Ivy_bramble,24397586,5
+hezelee,24397586,5
+xuhailong87,24397586,5
+sunfolwer,24397586,4
+COCOCOQUEEN,24397586,5
+SalZburg1215,24397586,4
+82058525,24397586,3
+weakness,24397586,5
+rachel6703933,24397586,-1
+singeNicolas,24397586,5
+4320074,24397586,3
+charminglight,24397586,5
+65123381,24397586,4
+42284937,24397586,5
+debrah,24397586,4
+1359081,24397586,5
+hh55555,24397586,4
+liebestod,24397586,5
+loveirina,24397586,4
+1510862,24397586,4
+sdqz111,24397586,4
+3277999,24397586,5
+81275158,24397586,5
+dengxian123,24397586,4
+jam119,24397586,5
+120736500,24397586,4
+wu_dbpersonal,24397586,4
+petitespot,24397586,5
+bontemps,24397586,5
+48752205,24397586,4
+53769312,24397586,5
+kiara1988,24397586,5
+kkkwhite,24397586,5
+sunnianyu,24397586,3
+sunnianyu,24397586,3
+anicetime,24397586,5
+zookeeper,24397586,5
+63525530,24397586,5
+magus_qing,24397586,5
+Pomethos,24397586,5
+44758413,24397586,5
+2529003,24397586,4
+59237362,24397586,4
+Pre_Asura,24397586,5
+40654523,24397586,3
+maomaoye,24397586,5
+40141522,24397586,5
+2254195,24397586,5
+babydog,24397586,-1
+2920373,24397586,4
+4490276,24397586,5
+3915247,24397586,5
+73084756,24397586,4
+81752466,24397586,4
+26739863,24397586,4
+2118868,24397586,4
+4624601,24397586,3
+bebest,24397586,5
+44029743,24397586,3
+50180272,24397586,5
+lemons,24397586,5
+49921065,24397586,5
+db924519251,24397586,3
+mrbrightside,24397586,5
+choueryan,24397586,5
+tiansilence,24397586,4
+see2saw,24397586,5
+earthroom,24397586,5
+38324807,24397586,4
+Waiting.,24397586,5
+44549735,24397586,5
+tantantu,24397586,3
+63117182,24397586,5
+85114697,24397586,4
+85114697,24397586,4
+genie37,24397586,3
+cherrydyn,24397586,5
+3703670,24397586,4
+45543286,24397586,4
+dramaticlife,24397586,5
+JoooNE,24397586,5
+50404313,24397586,5
+laolei19900613,24397586,5
+lollypain,24397586,5
+rudygiraffe,24397586,4
+29839010,24397586,5
+13409094,24397586,5
+Cheeranita,24397586,5
+68984410,24397586,4
+37160658,24397586,5
+cabaret,24397586,4
+lastzoo,24397586,5
+Pabalee,24397586,5
+3509096,24397586,4
+et2o,24397586,5
+juehanjiang,24397586,4
+chrisWen,24397586,4
+3758730,24397586,5
+oursonkuma,24397586,5
+61355372,24397586,4
+115660168,24397586,3
+thedharmabum,24397586,5
+realpoubelle,24397586,5
+56523090,24397586,5
+siemielu,24397586,5
+klovez,24397586,3
+53453211,24397586,5
+katze-yi,24397586,5
+44451344,24397586,5
+Jouree,24397586,5
+shaodong,24397586,5
+70006548,24397586,5
+76769424,24397586,4
+miloz0908,24397586,5
+65058502,24397586,4
+58896419,24397586,5
+fxoc,24397586,4
+56812940,24397586,4
+izume,24397586,5
+lostinfire,24397586,5
+shelleyhsu,24397586,4
+34521636,24397586,4
+jemappelle651,24397586,4
+4896950,24397586,5
+superman-is-gay,24397586,5
+supermikam,24397586,4
+94725375,24397586,5
+62464125,24397586,4
+Fay59,24397586,4
+xulu_films,24397586,4
+36768577,24397586,5
+xlee,24397586,5
+junlucy,24397586,5
+lovelovecat,24397586,4
+punkino,24397586,5
+80852273,24397586,5
+zita07,24397586,4
+55581368,24397586,5
+47871037,24397586,4
+rantiankat,24397586,5
+56311207,24397586,5
+EliNagy,24397586,4
+3540441,24397586,4
+chuangbo,24397586,5
+Luin,24397586,5
+1613812,24397586,4
+loulou-mae,24397586,4
+48204771,24397586,5
+missleexx,24397586,4
+lamwithme,24397586,5
+Zoeeoz,24397586,4
+46265222,24397586,4
+adascat,24397586,4
+sevseven,24397586,3
+57124272,24397586,4
+narsarita,24397586,-1
+sunnykisskins,24397586,5
+46480304,24397586,4
+53616420,24397586,5
+sodom,24397586,5
+Tony_Sun,24397586,2
+50397830,24397586,4
+Pathon,24397586,4
+vivienvb,24397586,5
+i_chips,24397586,5
+59544418,24397586,5
+36872538,24397586,4
+jumaomao,24397586,4
+FILANIEYOTE,24397586,4
+2691011,24397586,4
+75608204,24397586,5
+1935824,24397586,4
+LoveJHart,24397586,4
+yalindongdong,24397586,4
+audreyc,24397586,3
+amelieho,24397586,5
+ulenka,24397586,5
+elaine1102,24397586,4
+ccrystall,24397586,5
+konghanlei,24397586,5
+92399399,24397586,4
+2456765,24397586,3
+27199413,24397586,4
+roro0306,24397586,5
+cora_lu,24397586,5
+67951946,24397586,5
+angalny,24397586,3
+4320404,24397586,3
+vanilla1991,24397586,4
+sisonzhang,24397586,4
+66104038,24397586,5
+ibenchenhk,24397586,5
+poooooop,24397586,4
+ilovedraco,24397586,5
+czuni,24397586,5
+cowbie,24397586,3
+fuckinghate,24397586,-1
+43473868,24397586,5
+1462465,24397586,4
+1393472,24397586,4
+1070044,24397586,4
+Shanna_Q,24397586,4
+1001637,24397586,3
+nigelcrane,24397586,3
+silentbean,24397586,5
+48510715,24397586,-1
+babycandy,24397586,5
+movielove,24397586,3
+ulva,24397586,4
+yolandamiu,24397586,5
+24368398,24397586,-1
+rouble-w,24397586,5
+lostshore,24397586,5
+mikeke,24397586,5
+glorymanutd,24397586,4
+okcomputer1800,24397586,3
+37746595,24397586,5
+essy,24397586,4
+bamby,24397586,5
+cauli65,24397586,4
+amberose,24397586,4
+24502706,24397586,4
+FK621,24397586,5
+champignon_lou,24397586,5
+doriskojima,24397586,3
+edward1988,24397586,4
+74248985,24397586,5
+joy2008,24397586,5
+Anniby-Jade,24397586,5
+wakaka1986,24397586,5
+amanda17mao,24397586,5
+lesleyxu,24397586,4
+53485894,24397586,5
+xiaochanzi,24397586,5
+cissy19901119,24397586,5
+luly_xy,24397586,5
+Pincent,24397586,4
+lesleylove,24397586,4
+65383649,24397586,5
+56988998,24397586,4
+irishyde,24397586,4
+kongkongruixin,24397586,5
+rockyblur,24397586,4
+nocturnelee,24397586,3
+3341659,24397586,-1
+easytodo,24397586,4
+91252299,24397586,5
+exex,24397586,5
+60237257,24397586,5
+sdmscuhm,24397586,5
+zuuu,24397586,5
+lilwhite,24397586,5
+xy22,24397586,-1
+3573130,24397586,4
+63422177,24397586,5
+ecane,24397586,4
+41601894,24397586,4
+lianadreaming,24397586,5
+dianahyacy,24397586,5
+megryan,24397586,3
+klakt,24397586,3
+blueglacier,24397586,4
+Heyimwalker,24397586,4
+btone0808,24397586,4
+miaoyi0531,24397586,4
+ywx100407,24397586,-1
+zison,24397586,5
+21133666,24397586,3
+36250262,24397586,5
+yangchenlingstr,24397586,3
+happythename,24397586,4
+64051414,24397586,4
+57017329,24397586,5
+4909767,24397586,5
+DLZ0724,24397586,4
+136663776,24397586,4
+63636223,24397586,5
+134625303,24397586,4
+19124466,24397586,4
+smallqianqian,24397586,4
+127480277,24397586,4
+49883816,24397586,5
+134518908,24397586,3
+66950541,24397586,5
+eefee,24397586,4
+40872813,24397586,4
+131380048,24397586,4
+72866809,24397586,4
+120168498,24397586,2
+120712105,24397586,2
+beryl2500,24397586,5
+69807491,24397586,4
+97693514,24397586,4
+122891503,24397586,5
+127029651,26275494,3
+64332109,26275494,2
+36610260,26275494,5
+cynthia3922,26275494,4
+49185550,26275494,-1
+61619787,26275494,4
+41786159,26275494,3
+70990506,26275494,3
+Davidcyclone,26275494,-1
+56416143,26275494,3
+podolski,26275494,4
+intotool,26275494,3
+127515076,26275494,4
+Ozu,26275494,3
+successlessness,26275494,4
+newjiayi,26275494,5
+17828049,26275494,4
+AdamWu,26275494,4
+Son47,26275494,4
+59621398,26275494,4
+80993583,26275494,4
+65670813,26275494,4
+muxiaoxu,26275494,3
+68024590,26275494,3
+wjferic,26275494,3
+40027917,26275494,3
+saosaoxy,26275494,4
+Andred,26275494,4
+5580630,26275494,3
+3829662,26275494,4
+vivienvb,26275494,5
+92569558,26275494,5
+51945032,26275494,2
+zhibiaoshi,26275494,3
+78713846,26275494,3
+44724487,26275494,3
+58096357,26275494,4
+jason000021,26275494,4
+58290785,26275494,2
+Blue_elephant,26275494,3
+1066031,26275494,3
+134625303,26275494,3
+70930463,26275494,3
+63912359,26275494,3
+53768179,26275494,-1
+Gloriamay,26275494,4
+hwjnbmyx,26275494,5
+zs278777745,26275494,4
+73272016,26275494,2
+Rouwell,26275494,3
+64252611,26275494,3
+dorothylee0406,26275494,3
+xiaoyushudai,26275494,2
+85017469,26275494,5
+60870044,26275494,2
+82974666,26275494,4
+colintide,26275494,4
+boncourage3,26275494,3
+39455049,26275494,5
+89528523,26275494,3
+127675582,26275494,5
+52765670,26275494,4
+38184816,26275494,3
+49266057,26275494,3
+cyrus_wong,26275494,4
+71918561,26275494,-1
+50041592,26275494,3
+35739179,26275494,3
+49015850,26275494,4
+honeysilence,26275494,3
+128140915,26275494,4
+35456769,26275494,4
+ovanisho,26275494,4
+pengzhou,26275494,5
+120807196,26275494,4
+43942858,26275494,5
+37402473,26275494,3
+blueskyfly,26275494,2
+1101928,26275494,3
+coctelxw,26275494,3
+122932689,26275494,4
+barzin,26275494,4
+75118396,26275494,2
+57811548,26275494,4
+62949271,26275494,3
+56922790,26275494,4
+70390842,26275494,5
+57422037,26275494,4
+56985246,26275494,4
+fanfouxiong,26275494,2
+kingkongofkhan,26275494,3
+66057217,26275494,3
+3350824,26275494,4
+lxd521,26275494,2
+4239908,26275494,4
+june.q,26275494,4
+Rovin,26275494,3
+106454659,26275494,5
+94394247,26275494,4
+136734165,26275494,3
+58520151,26275494,4
+41634233,26275494,4
+89975604,26275494,3
+73118410,26275494,4
+70586246,26275494,4
+69475039,26275494,5
+34744036,26275494,3
+3144882,26275494,4
+63779528,26275494,4
+58414355,26275494,5
+65907866,26275494,4
+tildali1214,26275494,4
+littlemen,26275494,5
+ydyie,26275494,1
+vilasecret,26275494,4
+130996928,26275494,3
+yeslie,26275494,3
+134417369,26275494,4
+48590382,26275494,3
+43037534,26275494,3
+vinkingking,26275494,4
+131909298,26275494,3
+2092765,26275494,4
+70487817,26275494,3
+87035372,26275494,4
+79879080,26275494,1
+59584497,26275494,4
+Clarke,26275494,4
+80304181,26275494,3
+75052025,26275494,5
+58466766,26275494,3
+75215757,26275494,4
+Q9,26275494,4
+yihuiw,26275494,4
+53396330,26275494,4
+50683342,26275494,3
+Niro-Zeng,26275494,5
+sickboy,26275494,4
+recyclebiner,26275494,3
+80722428,26275494,-1
+baggywalking,26275494,4
+136420600,26275494,4
+58094874,26275494,2
+84351170,26275494,2
+57568722,26275494,4
+47193126,26275494,3
+hayden001,26275494,3
+51227412,26275494,4
+lemons,26275494,5
+1037682,26275494,5
+75189651,26275494,3
+64618863,26275494,2
+39192898,26275494,5
+qzl,26275494,2
+89763899,26275494,4
+68406313,26275494,3
+54693337,26275494,4
+120002421,26275494,5
+nicer,26275494,2
+134094707,26275494,-1
+82227481,26275494,5
+3369724,26275494,-1
+39378921,26275494,3
+88087325,26275494,5
+AstridL411,26275494,4
+3177593,26275494,4
+133142786,26275494,4
+67911635,26275494,4
+Carlaaaaa,26275494,4
+59370142,26275494,4
+senlintu,26275494,4
+35330234,26275494,3
+wxhsolo,26275494,4
+78246162,26275494,4
+nanzang,26275494,5
+jakartaxie,26275494,4
+2174443,26275494,2
+ADmoviemtime,26275494,2
+shenliyang,26275494,5
+2512786,26275494,4
+72030393,26275494,3
+69439267,26275494,4
+guaikahahaha,26275494,-1
+zlljxm,26275494,2
+lanhouzi,26275494,4
+51836053,26275494,4
+42222694,26275494,4
+4869541,26275494,3
+particles,26275494,4
+62210177,26275494,2
+aiyongbo,26275494,4
+13766549,26275494,5
+53353034,26275494,3
+yuhanxi,26275494,3
+63760065,26275494,5
+49921068,26275494,3
+65366516,26275494,3
+42832142,26275494,4
+awesome_egg,26275494,3
+83433400,26275494,3
+gulunmu,26275494,4
+1341903,26275494,4
+48763298,26275494,3
+45319686,26275494,3
+54761457,26275494,-1
+caocaoa,26275494,4
+1831746,26275494,3
+liheping0310,26275494,5
+FindingKnightly,26275494,3
+wwnoah,26275494,4
+hjzj,26275494,4
+lionking198176,26275494,4
+61078362,26275494,3
+131632042,26275494,2
+115051698,26275494,4
+huawuze,26275494,4
+2825155,26275494,4
+nangle,26275494,4
+zmdoor,26275494,5
+3120655,26275494,3
+orange450046,26275494,4
+yangyihu,26275494,4
+49048693,26275494,4
+wandertree,26275494,5
+3456645,26275494,3
+12074004,26275494,3
+wen_Schwartz,26275494,5
+43409918,26275494,3
+74621161,26275494,4
+46394662,26275494,4
+50851987,26275494,3
+63506712,26275494,3
+75532370,26275494,3
+randidianying,26275494,3
+64195325,26275494,3
+98956225,26275494,3
+83143884,26275494,4
+135690272,26275494,1
+imaginarydiva,26275494,4
+87821425,26275494,4
+131535153,26275494,4
+62504399,26275494,4
+51854225,26275494,5
+kyhero,26275494,3
+Armande,26275494,4
+59378291,26275494,3
+freeia,26275494,4
+sxy921026,26275494,3
+letu,26275494,4
+Evenray,26275494,4
+p2165,26275494,4
+84943776,26275494,4
+122556292,26275494,4
+64713560,26275494,3
+2099122,26275494,4
+punkann,26275494,4
+133906973,26275494,5
+Wegmarken27,26275494,4
+DavyNight,26275494,3
+50403801,26275494,5
+evich,26275494,3
+54141112,26275494,3
+miof,26275494,5
+duduxiongzhifu,26275494,2
+kiki204629,26275494,4
+kejinlong,26275494,3
+Alexation,26275494,5
+6900674,26275494,5
+50761421,26275494,-1
+75756405,26275494,4
+60943458,26275494,4
+61726273,26275494,5
+31466605,26275494,4
+102744158,26275494,3
+120480108,26275494,4
+mengzhu91,26275494,5
+1892627,26275494,4
+lea_x,26275494,-1
+46815070,26275494,2
+narrowjiu,26275494,3
+narrowjiu,26275494,3
+62877248,26275494,2
+btone0808,26275494,2
+TTTevolt,26275494,1
+57947049,26275494,4
+35008425,26275494,3
+erobin,26275494,3
+xianxianchen,26275494,3
+dutianxiong,26275494,3
+4284029,26275494,4
+gunnmxzy,26275494,5
+87651171,26275494,5
+50720620,26275494,5
+79559178,26275494,4
+59253003,26275494,4
+snokin,26275494,5
+duc_k,26275494,-1
+50071514,26275494,-1
+59458875,26275494,4
+53559432,26275494,3
+53559432,26275494,3
+47958996,26275494,3
+29613060,26275494,3
+medeHOW,26275494,4
+wackdudu,26275494,4
+amvivid,26275494,3
+63357852,26275494,4
+liqiyao8931,26275494,2
+Pabalee,26275494,4
+67099663,26275494,4
+47847363,26275494,3
+AuRevoir7,26275494,4
+81244293,26275494,4
+49298107,26275494,3
+xilouchen,26275494,3
+ruilixiurui,26275494,4
+72569635,26275494,3
+131186363,26275494,3
+8523675,26275494,4
+bloodykiss,26275494,3
+1886385,26275494,4
+4476384,26275494,5
+50900048,26275494,3
+youngtoo,26275494,4
+lidesheng,26275494,4
+54069398,26275494,5
+yeeeeeee,26275494,4
+riceseedling,26275494,3
+92468807,26275494,4
+42368147,26275494,3
+93920997,26275494,4
+66715908,26275494,4
+47913481,26275494,5
+63422177,26275494,4
+guoboya,26275494,4
+80265155,26275494,4
+113050393,26275494,4
+xu77,26275494,3
+sai27,26275494,2
+oweuuu,26275494,-1
+48156038,26275494,4
+3586869,26275494,4
+57149006,26275494,5
+58059498,26275494,4
+59340784,26275494,4
+55910262,26275494,4
+63765493,26275494,4
+dailypop,26275494,2
+vividtime,26275494,4
+wangdoudou20,26275494,4
+120496189,26275494,3
+willdawn,26275494,5
+134532187,26275494,3
+66400312,26275494,4
+notyetdone,26275494,3
+43649189,26275494,5
+79865158,26275494,3
+rudygiraffe,26275494,4
+ILWTFT,26275494,3
+53247764,26275494,3
+MaxinAn,26275494,3
+1892501,26275494,1
+46845668,26275494,3
+47542853,26275494,3
+enderstar,26275494,2
+61939090,26275494,4
+edward1988,26275494,-1
+66585312,26275494,4
+buzzsunny,26275494,4
+51572703,26275494,3
+xusisu,26275494,-1
+tulate,26275494,4
+edenhsu,26275494,4
+starstargoo,26275494,5
+4320404,26275494,3
+xulewyw,26275494,-1
+never18,26275494,4
+whereiszoe,26275494,-1
+121916264,26275494,4
+63372142,26275494,3
+99261996,26275494,4
+94794463,26275494,4
+78164697,26275494,4
+troublemakerjoy,26275494,4
+53786356,26275494,3
+hexiaoqin,26275494,4
+81941883,26275494,3
+MOVIE--KO,26275494,3
+yoshimi,26275494,5
+43005070,26275494,3
+ohohzhizhi,26275494,2
+1631968,26275494,3
+yangshuangblue,26275494,4
+magic1029,26275494,3
+1746842,26275494,5
+fakeyouout,26275494,4
+cabaret,26275494,4
+39215455,26275494,4
+callmemrcoolman,26275494,3
+sylviacy,26275494,5
+72684898,26275494,4
+48687824,26275494,4
+dklovesmovie,26275494,4
+88439681,26275494,4
+zhangyired,26275494,4
+singlesinger,26275494,5
+Tasse1,26275494,4
+49326623,26275494,4
+conanemily,26275494,4
+130319108,26275494,3
+roy325,26275494,4
+3540441,26275494,4
+55658171,26275494,5
+winkido,26275494,4
+53644977,26275494,4
+millettellim,26275494,4
+12627114,26275494,5
+TERRYBEAR,26275494,3
+56339363,26275494,2
+60126428,26275494,5
+M.Roseline,26275494,4
+iamnian,26275494,3
+hushabyy,26275494,3
+1796639,26275494,5
+ruo1996,26275494,4
+32465562,26275494,5
+queeenababy,26275494,4
+cindyhello,26275494,5
+infero,26275494,3
+58163361,26275494,4
+101694101,26275494,3
+c541223724,26275494,3
+brianthian,26275494,4
+slowwitter,26275494,3
+matthewlgm,26275494,5
+3022334,26275494,1
+52793467,26275494,3
+51946509,26275494,4
+sheepwhale,26275494,3
+68555195,26275494,4
+127029651,26275494,3
+64332109,26275494,2
+36610260,26275494,5
+cynthia3922,26275494,4
+49185550,26275494,-1
+61619787,26275494,4
+41786159,26275494,3
+70990506,26275494,3
+Davidcyclone,26275494,-1
+56416143,26275494,3
+podolski,26275494,4
+intotool,26275494,3
+127515076,26275494,4
+Ozu,26275494,3
+successlessness,26275494,4
+newjiayi,26275494,5
+17828049,26275494,4
+AdamWu,26275494,4
+Son47,26275494,4
+59621398,26275494,4
+53219323,26297388,3
+73600166,26297388,3
+2913672,26297388,4
+babydog,26297388,5
+hashayaqi,26297388,4
+17654843,26297388,4
+tianranzijiegou,26297388,4
+46310239,26297388,4
+57217354,26297388,-1
+106794129,26297388,5
+1943610,26297388,3
+69378998,26297388,5
+126980247,26297388,4
+xusisu,26297388,2
+choushabi,26297388,4
+zhl19741130520,26297388,4
+43814222,26297388,5
+Ozu,26297388,5
+jszh,26297388,4
+3082225,26297388,5
+27126336,26297388,4
+122868077,26297388,4
+50831360,26297388,4
+1364563,26297388,4
+spiritual,26297388,5
+4342819,26297388,3
+136018303,26297388,-1
+57818340,26297388,4
+58762290,26297388,3
+1357759,26297388,3
+72143343,26297388,4
+xuyimeng,26297388,3
+53934293,26297388,5
+102618249,26297388,-1
+73830337,26297388,4
+62379540,26297388,2
+15920466,26297388,-1
+135147851,26297388,3
+2278139,26297388,4
+4597338,26297388,3
+63730928,26297388,3
+MissUnderwater,26297388,4
+mainemay,26297388,5
+jtothen,26297388,3
+2462135,26297388,5
+58184427,26297388,4
+3385352,26297388,4
+76726550,26297388,4
+Thulcandra,26297388,3
+l---j,26297388,4
+4210872,26297388,4
+71330808,26297388,3
+130154428,26297388,3
+magic1029,26297388,3
+130541613,26297388,4
+chenlangxxx,26297388,5
+3980916,26297388,4
+silent_island,26297388,4
+122932689,26297388,3
+122702445,26297388,4
+4685727,26297388,3
+4242859,26297388,2
+cherubickid,26297388,3
+flowertide,26297388,3
+130978369,26297388,4
+leotnnz,26297388,4
+hhl199504,26297388,3
+ys1013,26297388,2
+xiaosaorui,26297388,5
+48973065,26297388,-1
+136910570,26297388,3
+2568387,26297388,4
+128063403,26297388,3
+57998290,26297388,3
+MovieL,26297388,4
+kickyourleg,26297388,4
+gisellefang,26297388,4
+2298833,26297388,1
+68632898,26297388,3
+40077606,26297388,4
+liuningba,26297388,3
+53970847,26297388,4
+52128308,26297388,5
+yscysc803,26297388,4
+mrlp,26297388,3
+134625303,26297388,3
+inaturee,26297388,4
+56265983,26297388,4
+9491401,26297388,3
+58956224,26297388,5
+sanwenli,26297388,5
+zoe_dabai,26297388,3
+46287830,26297388,-1
+48214032,26297388,3
+43508209,26297388,3
+1821069,26297388,1
+42375246,26297388,4
+lozer,26297388,3
+65907866,26297388,3
+49266863,26297388,2
+veverlee,26297388,4
+71929336,26297388,3
+leahahaha,26297388,4
+pedant,26297388,4
+59458875,26297388,4
+60038262,26297388,3
+52726427,26297388,4
+nianwanger,26297388,5
+127115937,26297388,4
+68630108,26297388,2
+27545760,26297388,4
+79695986,26297388,4
+mayliyife,26297388,3
+58622210,26297388,3
+braxin2007,26297388,3
+2050679,26297388,3
+39279260,26297388,5
+peae,26297388,5
+44087578,26297388,-1
+3533589,26297388,3
+61809588,26297388,5
+Sigrid_Lu,26297388,3
+67072789,26297388,3
+87035372,26297388,4
+42680177,26297388,5
+Max-66,26297388,2
+tmas,26297388,5
+YuSu,26297388,5
+color.x,26297388,3
+9660153,26297388,5
+54131789,26297388,4
+104261144,26297388,4
+siniang,26297388,5
+konglingyiQQ,26297388,5
+46050477,26297388,5
+25350324,26297388,3
+66057217,26297388,3
+98760682,26297388,1
+2151824,26297388,5
+3177593,26297388,4
+qikapu,26297388,-1
+1867072,26297388,4
+alanwu28,26297388,4
+nangle,26297388,4
+69439267,26297388,4
+45242330,26297388,4
+91257239,26297388,4
+3598072,26297388,3
+3410802,26297388,4
+28958263,26297388,3
+eason0210,26297388,3
+4110485,26297388,1
+7255952,26297388,4
+joearde,26297388,4
+xianxianchen,26297388,3
+2089491,26297388,-1
+2106137,26297388,-1
+42555541,26297388,4
+rudygiraffe,26297388,4
+1898022,26297388,4
+70829890,26297388,2
+qinxuanzi,26297388,2
+125827809,26297388,3
+xxe,26297388,5
+97350616,26297388,3
+sosad,26297388,4
+59143830,26297388,4
+baozha,26297388,3
+lephemera,26297388,4
+46712687,26297388,4
+67679868,26297388,4
+52583509,26297388,3
+yuchishangjiu,26297388,4
+kiki204629,26297388,4
+35076658,26297388,3
+4040058,26297388,3
+52433144,26297388,3
+47377704,26297388,4
+98956225,26297388,4
+4242728,26297388,3
+131909298,26297388,2
+2214342,26297388,3
+supermelon,26297388,3
+62498352,26297388,4
+1378503,26297388,4
+1159296,26297388,4
+62198966,26297388,5
+luhua,26297388,5
+84351170,26297388,1
+kejinlong,26297388,1
+dashiontang,26297388,5
+jude_chen,26297388,4
+enanm,26297388,5
+60886329,26297388,4
+49170151,26297388,3
+76539063,26297388,5
+61512042,26297388,3
+32433633,26297388,5
+130353620,26297388,4
+2238966,26297388,4
+Nokia95,26297388,5
+deirdra,26297388,4
+ft5239328,26297388,5
+134463446,26297388,3
+difeijing,26297388,5
+132505637,26297388,4
+119287600,26297388,3
+52961960,26297388,-1
+7542909,26297388,4
+53920626,26297388,3
+asanisimasa,26297388,3
+ToDieByYourSide,26297388,4
+46815070,26297388,4
+takahashili,26297388,4
+freak_ivory,26297388,3
+70586246,26297388,4
+86093744,26297388,3
+btone0808,26297388,2
+Jash1118,26297388,5
+61591334,26297388,3
+61591334,26297388,3
+ruthchai,26297388,4
+silverlee,26297388,5
+meowarrier,26297388,4
+yurisong,26297388,4
+1892627,26297388,4
+46394662,26297388,4
+103269832,26297388,5
+119867722,26297388,2
+1514373,26297388,4
+53269895,26297388,4
+duduxiongzhifu,26297388,4
+niguize,26297388,4
+64009647,26297388,4
+65309880,26297388,3
+otherheaven,26297388,3
+kaka_a,26297388,4
+Cancer_x,26297388,-1
+58369888,26297388,4
+82387187,26297388,2
+dazhuang1990,26297388,5
+57544065,26297388,3
+bigmiao,26297388,5
+1886385,26297388,4
+87651171,26297388,3
+51476835,26297388,4
+81509803,26297388,4
+Ponderon,26297388,5
+131535153,26297388,4
+moliao,26297388,4
+qiaomai,26297388,5
+53559432,26297388,4
+tierra,26297388,3
+juwujian,26297388,3
+3007182,26297388,4
+zhanba,26297388,-1
+44457357,26297388,4
+leon_howe,26297388,-1
+70915171,26297388,4
+58364140,26297388,4
+situtu,26297388,5
+55373134,26297388,4
+x5,26297388,5
+3202437,26297388,3
+xiaoye780621,26297388,3
+64780091,26297388,3
+58179619,26297388,3
+128661562,26297388,5
+nieblalan,26297388,3
+50824639,26297388,5
+iyuge,26297388,4
+ev3ve,26297388,2
+hahatedan,26297388,3
+petercat,26297388,4
+p2165,26297388,4
+tongziyam,26297388,4
+120378701,26297388,4
+67235309,26297388,5
+48827728,26297388,3
+ruilixiurui,26297388,5
+lordbaker,26297388,3
+1019579,26297388,3
+WSSWHL,26297388,4
+89451365,26297388,4
+1221606,26297388,5
+yeslie,26297388,5
+3529035,26297388,3
+65617274,26297388,4
+flowermumu,26297388,4
+42368147,26297388,4
+ruo1996,26297388,5
+50900048,26297388,3
+Misleading,26297388,2
+58059498,26297388,4
+5754772,26297388,-1
+mackalex,26297388,4
+46230886,26297388,-1
+92468807,26297388,4
+fumihiko1985,26297388,4
+80797429,26297388,4
+ILWTFT,26297388,4
+59774628,26297388,3
+57109633,26297388,4
+fontain,26297388,5
+79560195,26297388,2
+51967154,26297388,5
+qinxiaoyiqu,26297388,3
+64880714,26297388,3
+53247764,26297388,4
+yangshuangblue,26297388,4
+ananpsc,26297388,4
+nihaoma,26297388,-1
+zhongxueyin,26297388,4
+61726273,26297388,3
+iisakura,26297388,3
+willingnotto,26297388,4
+30885179,26297388,5
+huayeah,26297388,4
+iamface,26297388,3
+dyalan,26297388,4
+4251957,26297388,-1
+bobohan,26297388,4
+zwj514235,26297388,4
+56571660,26297388,3
+mongwook,26297388,4
+fuzuyi,26297388,4
+1167641,26297388,4
+49082695,26297388,3
+xxhhcc,26297388,5
+131125229,26297388,4
+kimyoujin,26297388,4
+122232090,26297388,5
+jeansolove,26297388,5
+4412898,26297388,4
+1552160,26297388,3
+74353904,26297388,4
+giacintaxx,26297388,4
+samsyu,26297388,-1
+winkido,26297388,4
+miaoyan,26297388,4
+Youandi4,26297388,-1
+lfj1016,26297388,4
+52744740,26297388,4
+conanemily,26297388,5
+1169348,26297388,3
+janice5680,26297388,3
+helena_F,26297388,5
+dyylion,26297388,4
+zykmilan,26297388,3
+grbzywg,26297388,4
+brbaarlab,26297388,4
+49595588,26297388,4
+50782420,26297388,5
+vexit,26297388,-1
+3425333,26297388,5
+78347009,26297388,4
+raychau,26297388,4
+48953772,26297388,4
+lydiapy,26297388,4
+btr,26297388,4
+37571281,26297388,3
+bemei,26297388,2
+45345873,26297388,4
+ellie0314,26297388,4
+planoto,26297388,3
+tonyleung2046,26297388,-1
+coldmountain_,26297388,4
+59266552,26297388,-1
+boffin,26297388,3
+pogostar,26297388,4
+fenglao,26297388,4
+67843912,26297388,3
+43909634,26297388,4
+48779888,26297388,5
+35383379,26297388,1
+magnihew,26297388,-1
+yangui,26297388,4
+rp027,26297388,5
+52284149,26297388,4
+xxs127,26297388,4
+51572703,26297388,3
+61492149,26297388,4
+ellestmorte,26297388,3
+lline,26297388,3
+anYenna,26297388,5
+taugenichts,26297388,4
+1325646,26297388,5
+64969016,26297388,-1
+zhouqiao,26297388,4
+there5,26297388,4
+l00000000,26297388,4
+stripes,26297388,4
+65369148,26297388,3
+RIVERT,26297388,4
+yingliang,26297388,3
+48974424,26297388,4
+2224375,26297388,5
+green_alone,26297388,4
+zhaoyichen,26297388,4
+windtotem,26297388,4
+53219323,26297388,3
+73600166,26297388,3
+2913672,26297388,4
+babydog,26297388,5
+hashayaqi,26297388,4
+17654843,26297388,4
+tianranzijiegou,26297388,4
+46310239,26297388,4
+57217354,26297388,-1
+106794129,26297388,5
+1943610,26297388,3
+69378998,26297388,5
+126980247,26297388,4
+xusisu,26297388,2
+choushabi,26297388,4
+zhl19741130520,26297388,4
+43814222,26297388,5
+Ozu,26297388,5
+jszh,26297388,4
+3082225,26297388,5
+28271170,25955372,3
+34544680,25955372,2
+hennic,25955372,3
+42139869,25955372,4
+78491782,25955372,5
+130044129,25955372,4
+lecron,25955372,5
+zombiekid,25955372,2
+27432217,25955372,3
+55859844,25955372,4
+57588789,25955372,3
+50337203,25955372,4
+4867707,25955372,3
+STT810,25955372,3
+130445057,25955372,3
+lovelydaodao,25955372,4
+uicolourful,25955372,4
+3609952,25955372,3
+1722985,25955372,3
+52998664,25955372,4
+52998664,25955372,4
+77048663,25955372,5
+cocolifeeee,25955372,3
+50516869,25955372,4
+48582285,25955372,1
+47483300,25955372,4
+KOTY,25955372,4
+79760950,25955372,2
+136416982,25955372,3
+lulustyle,25955372,5
+hnnyzxh,25955372,3
+45176243,25955372,4
+49351272,25955372,3
+yongyuanziyou,25955372,4
+54345196,25955372,4
+47951202,25955372,4
+100582359,25955372,1
+63582688,25955372,3
+tristanfree,25955372,4
+6526260,25955372,3
+51733172,25955372,5
+121721375,25955372,3
+qichengshiwo,25955372,4
+2304340,25955372,4
+x-13,25955372,-1
+urhero,25955372,3
+2498717,25955372,4
+71732006,25955372,3
+ever4ever,25955372,3
+childroom,25955372,2
+1019579,25955372,2
+82793308,25955372,4
+Sylary,25955372,3
+41734674,25955372,3
+25350324,25955372,2
+2722795,25955372,3
+jsnakelet,25955372,-1
+1055848,25955372,-1
+bulijite,25955372,1
+122436404,25955372,5
+wangjjcrown,25955372,3
+zhaoray,25955372,3
+137206904,25955372,3
+45619504,25955372,-1
+120479152,25955372,5
+51462538,25955372,2
+michaelya,25955372,4
+69763543,25955372,4
+66083249,25955372,4
+65212183,25955372,4
+80125660,25955372,3
+50404313,25955372,3
+Popdai,25955372,5
+volacano,25955372,-1
+hejiangwin,25955372,5
+2408841,25955372,5
+3826970,25955372,-1
+35538811,25955372,4
+nyandjm,25955372,2
+123948134,25955372,4
+63190114,25955372,2
+56912820,25955372,4
+43958959,25955372,3
+2677448,25955372,3
+gogowa,25955372,2
+48792374,25955372,4
+3693808,25955372,1
+132686664,25955372,2
+34634914,25955372,5
+gm622yan,25955372,-1
+35224934,25955372,3
+57916639,25955372,3
+50706220,25955372,4
+1021230,25955372,3
+48079918,25955372,3
+21331611,25955372,-1
+120445293,25955372,3
+filmvivi,25955372,1
+121055436,25955372,3
+135424879,25955372,3
+61315672,25955372,3
+36621116,25955372,3
+134738255,25955372,4
+zhangzeren,25955372,5
+kelvinshaw,25955372,3
+pangjiansheng,25955372,4
+134516953,25955372,3
+51525177,25955372,2
+61466500,25955372,2
+sunruistone,25955372,4
+90055044,25955372,4
+3394037,25955372,4
+flowermumu,25955372,2
+49848172,25955372,3
+49186665,25955372,3
+79239508,25955372,3
+48763260,25955372,3
+Francis.chiang,25955372,2
+104310668,25955372,5
+36342464,25955372,3
+jinyuelibra,25955372,4
+131343395,25955372,4
+fengjiansun,25955372,3
+my-movie,25955372,3
+52840916,25955372,3
+35407310,25955372,2
+40140527,25955372,3
+84250012,25955372,2
+78236258,25955372,3
+64241350,25955372,4
+51469631,25955372,4
+qianmo86,25955372,3
+wyt0102,25955372,4
+136332806,25955372,5
+72094979,25955372,3
+fayewong77,25955372,3
+65341751,25955372,2
+131909298,25955372,3
+17871243,25955372,3
+50494910,25955372,4
+50494910,25955372,4
+78130627,25955372,4
+50474016,25955372,3
+80319590,25955372,2
+1061597,25955372,3
+2637848,25955372,4
+49082619,25955372,-1
+44209833,25955372,5
+znyzjhwl,25955372,5
+57128387,25955372,4
+regalo,25955372,2
+3277636,25955372,3
+119063618,25955372,3
+64076320,25955372,3
+34144556,25955372,3
+buwubuhui,25955372,2
+137685112,25955372,4
+beercos,25955372,3
+123288101,25955372,3
+135716425,25955372,5
+127131340,25955372,2
+guawenzhaizhu,25955372,3
+48848721,25955372,2
+71552096,25955372,2
+laozo,25955372,4
+38747364,25955372,4
+csaver,25955372,3
+105796566,25955372,5
+z30473,25955372,4
+cheng4496,25955372,2
+Twdrop,25955372,4
+56414992,25955372,4
+staramoi,25955372,4
+3685431,25955372,3
+eddychao,25955372,3
+3719378,25955372,-1
+violet_heaven,25955372,2
+zlljxm,25955372,3
+135197318,25955372,4
+3598086,25955372,1
+sophytao,25955372,2
+88075590,25955372,-1
+1623065,25955372,2
+morningormoenig,25955372,3
+59540342,25955372,-1
+115184493,25955372,5
+freedos,25955372,3
+47941534,25955372,3
+ecan1213,25955372,4
+zoewen1984,25955372,3
+61236336,25955372,4
+gaoxingyeah,25955372,2
+hejianjian,25955372,5
+57640790,25955372,4
+36583542,25955372,5
+137530007,25955372,3
+41150590,25955372,5
+76289844,25955372,5
+45299688,25955372,2
+1967409,25955372,1
+49013411,25955372,4
+64692199,25955372,2
+3423032,25955372,4
+mashasha,25955372,4
+2097170,25955372,3
+108576950,25955372,5
+jiao.s,25955372,2
+53739161,25955372,3
+yukizakura,25955372,4
+zhenglinfei,25955372,4
+64531746,25955372,4
+seagull0120,25955372,3
+wymanqin,25955372,3
+camelduck,25955372,2
+81521718,25955372,3
+4129696,25955372,2
+65133684,25955372,3
+61809588,25955372,5
+68075321,25955372,2
+55509648,25955372,3
+52460447,25955372,3
+tiger_journey,25955372,5
+52129512,25955372,3
+47446348,25955372,4
+missufinally,25955372,3
+ncmeteor,25955372,3
+85245609,25955372,1
+dunkkin,25955372,1
+48259477,25955372,3
+80398038,25955372,4
+104734535,25955372,5
+54652758,25955372,3
+103446908,25955372,-1
+anxin817,25955372,4
+74835284,25955372,2
+monademo,25955372,4
+57893927,25955372,3
+3779967,25955372,2
+70917351,25955372,3
+1598832,25955372,4
+1598832,25955372,4
+grayer,25955372,5
+TinyLens1990,25955372,2
+131205877,25955372,2
+YH222,25955372,3
+40185288,25955372,3
+85168008,25955372,3
+4823170,25955372,5
+62121101,25955372,3
+smileuna,25955372,3
+131974405,25955372,5
+87956504,25955372,4
+128569083,25955372,3
+3692181,25955372,5
+contour,25955372,1
+56058240,25955372,5
+kingpeace,25955372,3
+wood0913,25955372,3
+135637116,25955372,2
+61016072,25955372,2
+61016072,25955372,2
+62080615,25955372,5
+lolipig,25955372,4
+chesterchoi,25955372,3
+45522216,25955372,3
+53144700,25955372,3
+41653958,25955372,4
+42562073,25955372,4
+54203614,25955372,5
+71596124,25955372,3
+33720530,25955372,3
+47346958,25955372,4
+43751226,25955372,3
+3177593,25955372,2
+yuefulun,25955372,3
+4652178,25955372,3
+manyfish313,25955372,3
+48128948,25955372,-1
+74376371,25955372,3
+98942278,25955372,4
+61010750,25955372,3
+129857265,25955372,2
+3481297,25955372,3
+87910708,25955372,3
+2246466,25955372,4
+129507336,25955372,-1
+zoply6227,25955372,1
+SilentLookYou,25955372,-1
+52890891,25955372,4
+84708478,25955372,4
+yiyezhouzhaoyu,25955372,5
+55434870,25955372,2
+tianranzijiegou,25955372,3
+62770041,25955372,4
+kangwenyi,25955372,5
+65209107,25955372,3
+86093744,25955372,2
+98956225,25955372,4
+71181579,25955372,2
+FuckoffJinMu,25955372,3
+4486712,25955372,4
+76690071,25955372,3
+9285913,25955372,1
+vane918,25955372,4
+triwater1988,25955372,3
+monster1000,25955372,2
+huodijin,25955372,1
+3850532,25955372,4
+65720947,25955372,5
+56360766,25955372,4
+88312024,25955372,5
+70805035,25955372,2
+63075072,25955372,3
+76327951,25955372,3
+kiethope,25955372,2
+68951432,25955372,5
+minoyi,25955372,2
+44522146,25955372,4
+3598072,25955372,3
+122099416,25955372,4
+79518251,25955372,3
+119838921,25955372,4
+67125371,25955372,4
+55558648,25955372,2
+48000784,25955372,2
+unnanae,25955372,2
+39770268,25955372,3
+41786241,25955372,3
+65095857,25955372,3
+sezhu,25955372,3
+3082576,25955372,2
+bingno,25955372,3
+46890032,25955372,2
+yimoyoulan916,25955372,3
+liboyan,25955372,3
+113997112,25955372,5
+71561935,25955372,2
+91356257,25955372,4
+2187326,25955372,3
+122626070,25955372,3
+122626070,25955372,3
+aunsen,25955372,3
+80457179,25955372,3
+17036547,25955372,3
+69422415,25955372,4
+77419257,25955372,4
+miemiebao,25955372,3
+72220959,25955372,4
+wwnoah,25955372,3
+lanmai,25955372,4
+35499398,25955372,2
+62258561,25955372,2
+67585658,25955372,4
+57818340,25955372,3
+134048120,25955372,3
+132315557,25955372,3
+84610883,25955372,2
+4691315,25955372,-1
+1284659,25955372,2
+67574595,25955372,2
+51294674,25955372,2
+57616406,25955372,4
+119263777,25955372,3
+84699940,25955372,4
+124640229,25955372,3
+marysays,25955372,-1
+chapter2,25955372,3
+yoyoremote,25955372,2
+FrozenShow,25955372,2
+51689962,25955372,-1
+104592207,25955372,2
+yuedawei,25955372,3
+44228798,25955372,4
+60157141,25955372,3
+135229497,25955372,3
+shuoying,25955372,4
+83116719,25955372,4
+6594107,25955372,4
+4116226,25955372,3
+57175495,25955372,5
+51153180,25955372,3
+hettler,25955372,-1
+122421599,25955372,3
+xiamodegema,25955372,4
+59277068,25955372,3
+himmel-yan,25955372,-1
+3927394,25955372,-1
+53162024,25955372,2
+121368079,25955372,4
+severson,25955372,-1
+49212817,25955372,4
+81253472,25955372,3
+3596469,25955372,2
+sajmira,25955372,5
+80806690,25955372,3
+69067944,25955372,5
+103076371,25955372,3
+kinjio,25955372,2
+96898762,25955372,5
+90681003,25955372,3
+derek_major,25955372,3
+heenim18,25955372,3
+88197662,25955372,2
+1391757,25955372,4
+liuningba,25955372,4
+36630443,25955372,5
+2128762,25955372,3
+133861190,25955372,3
+135425839,25955372,3
+NapCote,25955372,2
+35076658,25955372,3
+freedom305,25955372,4
+yanggangzhiqi,25955372,-1
+3537161,25955372,4
+HwaMing,25955372,4
+126948377,25955372,3
+lcnverland,25955372,3
+4072762,25955372,5
+82357316,25955372,3
+75330539,25955372,2
+2778976,25955372,2
+1770378,25955372,2
+35474492,25955372,4
+106594383,25955372,3
+44006704,25955372,1
+70313784,25955372,3
+immmmm,25955372,4
+difeijing,25955372,2
+xiongweilin,25955372,2
+114487129,25955372,3
+136601824,25955372,4
+cloudydream,25955372,3
+aaaaaaaaaaa,25955372,3
+hekahuiqu,25955372,4
+127933526,25955372,1
+1029394,25955372,2
+sanotes,25955372,2
+63000903,25955372,4
+xzx2011,25955372,2
+62864634,25955372,2
+48120448,25955372,3
+80039334,25955372,3
+yangui,25955372,2
+50868040,25955372,3
+gkxiaokang,25955372,3
+clockwork-fish,25955372,2
+lucifermi,25955372,4
+27396956,25955372,2
+Nasing,25955372,4
+vivi-lee,25955372,3
+90676415,25955372,3
+127299578,25955372,4
+AmadHatter,25955372,2
+60943458,25955372,4
+78601907,25955372,3
+100146208,25955372,5
+peae,25955372,4
+bookbug,25955372,3
+64881542,25955372,3
+cenxi,25955372,5
+3541486,25955372,3
+67494152,25955372,3
+1433006,25955372,4
+71929336,25955372,2
+SevenJJing,25955372,2
+48885291,25955372,2
+4239908,25955372,4
+59835894,25955372,3
+58079311,25955372,3
+87570484,25955372,1
+49298107,25955372,2
+50190263,25955372,4
+3674593,25955372,3
+leeshiuan,25955372,3
+135843569,25955372,4
+Charlin_,25955372,3
+pennypq,25955372,-1
+leonyounger,25955372,2
+41918035,25955372,5
+43044713,25955372,4
+59366761,25955372,3
+44862021,25955372,4
+duoduoshuwu,25955372,4
+1503790,25955372,3
+1831746,25955372,2
+123298914,25955372,4
+52386668,25955372,2
+41374892,25955372,2
+54141112,25955372,3
+maxxue1994,25955372,3
+128758910,25955372,4
+gw150080,25955372,2
+Nanzwey,25955372,3
+120287193,25955372,3
+tianxianglouzhu,25955372,3
+1418534,25955372,5
+65723826,25955372,4
+58919934,25955372,2
+yiersansan,25955372,4
+84249631,25955372,3
+btone0808,25955372,3
+2447240,25955372,-1
+52113084,25955372,3
+130459392,25955372,3
+53663681,25955372,3
+3833311,25955372,3
+89726078,25955372,2
+100754011,25955372,3
+44245225,25955372,4
+eleventhsnow,25955372,4
+yurenxiaofeng,25955372,2
+48090771,25955372,2
+kingiknow,25955372,3
+40237768,25955372,3
+76573898,25955372,4
+merengue,25955372,4
+nothing925,25955372,4
+34417366,25955372,4
+49892458,25955372,2
+mingmw,25955372,5
+ricardo1213,25955372,-1
+45828294,25955372,4
+48474156,25955372,5
+58260094,25955372,1
+114435379,25955372,3
+xiaoluluu,25955372,3
+91388404,25955372,1
+49754258,25955372,4
+44029751,25955372,5
+Zgf-95,25955372,4
+dreams_be_dream,25955372,3
+James70s,25955372,1
+43764031,25955372,4
+90812716,25955372,3
+53769979,25955372,3
+norababy,25955372,4
+qq469463678,25955372,4
+cunyuren,25955372,3
+mcwong,25955372,3
+9951042,25955372,4
+49073345,25955372,2
+peterpan1004,25955372,1
+dong33382,25955372,4
+62117986,25955372,4
+67154069,25955372,5
+8240576,25955372,3
+60336002,25955372,4
+tinytracy,25955372,3
+57896614,25955372,1
+jerry437,25955372,5
+sen63,25955372,5
+39278293,25955372,3
+17084045,25955372,1
+81353237,25955372,4
+aumoli,25955372,5
+1328599,25955372,3
+64239272,25955372,2
+53462863,25955372,3
+60289458,25955372,1
+50702384,25955372,3
+50702384,25955372,3
+45463396,25955372,2
+sweetlalalove,25955372,3
+hanxueqianhun,25955372,4
+64939636,25955372,3
+einverne,25955372,3
+lsiori,25955372,3
+63672355,25955372,5
+9354883,25955372,2
+134661569,25955372,3
+33944015,25955372,2
+soulmate_z,25955372,3
+why20061108,25955372,3
+134094707,25955372,2
+2244688,25955372,4
+108253828,25955372,5
+119683375,25955372,3
+caesarphoenix,25955372,2
+cqcq7788,25955372,4
+1114835,25955372,3
+Andy9,25955372,4
+jingshuixian,25955372,4
+76206641,25955372,3
+70322933,25955372,4
+2635567,25955372,5
+lovejiangnan,25955372,2
+3573441,25955372,-1
+43400315,25955372,2
+124323823,25955372,3
+134531920,25955372,3
+121478447,25955372,5
+lele8,25955372,1
+33325157,25955372,4
+2754922,25955372,5
+96728684,25955372,4
+40212937,25955372,3
+wenjin_chen,25955372,3
+carrieluo,25955372,3
+y19940504,25955372,3
+miti32,25955372,3
+79211769,25955372,2
+37681863,25955372,4
+53300086,25955372,4
+kumasan,25955372,-1
+34132575,25955372,3
+casano,25955372,3
+37129296,25955372,2
+Amymy,25955372,2
+yprenkouer,25955372,3
+89451365,25955372,3
+49047710,25955372,2
+swan93,25955372,3
+46247554,25955372,5
+fantasy727,25955372,5
+ttlovetg,25955372,2
+crystalnian,25955372,5
+zydaydream,25955372,3
+1850328,25955372,5
+fumihiko1985,25955372,2
+bzlin,25955372,1
+lijingyu1027,25955372,2
+51217071,25955372,4
+43258797,25955372,5
+50748318,25955372,4
+33179901,25955372,3
+cat_water,25955372,3
+dennismark,25955372,5
+59602752,25955372,3
+57244499,25955372,4
+133648079,25955372,4
+winnce,25955372,4
+colorwind,25955372,3
+71467416,25955372,3
+40261325,25955372,-1
+lenvis,25955372,3
+48034227,25955372,3
+fanshousiwen,25955372,3
+53668304,25955372,1
+Marcia0714,25955372,3
+49864789,25955372,3
+2575898,25955372,4
+loyier,25955372,4
+wuuuuyu,25955372,1
+129716579,25955372,3
+119929736,25955372,5
+62274965,25955372,5
+80240498,25955372,2
+1260628,25955372,3
+maqingyun,25955372,5
+48399899,25955372,4
+myb,25955372,4
+36620883,25955372,3
+imoviekobe,25955372,1
+buchimifan,25955372,1
+mushiqiao,25955372,1
+duzhouchi,25955372,3
+41247402,25955372,2
+122052846,25955372,1
+xixi9000,25955372,3
+133648668,25955372,1
+68406313,25955372,1
+2049714,25955372,3
+roiroii,25955372,2
+2113555,25955372,-1
+52177262,25955372,5
+61282289,25955372,5
+3641686,25955372,4
+piaoweier,25955372,2
+51618406,25955372,2
+52944642,25955372,2
+aaronfighting,25955372,3
+71450042,25955372,2
+58956740,25955372,4
+shanguicheng,25955372,4
+Obtson,25955372,2
+RemoteTr,25955372,1
+MademoiselleXie,25955372,2
+46815070,25955372,1
+49604858,25955372,3
+seafans,25955372,4
+43716096,25955372,3
+wwandgg,25955372,1
+2761282,25955372,3
+missplay,25955372,3
+41850877,25955372,3
+stonesee,25955372,3
+roseunicorn,25955372,2
+thisisgap,25955372,5
+1609951,25955372,2
+graceanbaby,25955372,4
+ayal,25955372,2
+58350801,25955372,3
+qijiuzhiyue,25955372,2
+104803328,25955372,1
+yalindongdong,25955372,3
+angle223,25955372,2
+baizi886,25955372,3
+62766807,25955372,4
+1982485,25955372,-1
+giantguo,25955372,3
+62629922,25955372,3
+16413618,25955372,3
+88171828,25955372,2
+69223309,25955372,5
+34905979,25955372,4
+waiterli,25955372,4
+3410802,25955372,3
+7409012,25955372,4
+46095839,25955372,1
+oiwalk,25955372,2
+butzi,25955372,2
+MovieL,25955372,1
+cheeringo,25955372,2
+52523559,25955372,2
+58059498,25955372,1
+45345873,25955372,1
+richer725,25955372,2
+49272831,25955372,2
+ishtarie,25955372,4
+linzheren,25955372,3
+picnicskins,25955372,2
+17672710,25955372,2
+LolitaBerry,25955372,2
+91138119,25955372,1
+1333976,25955372,2
+june.q,25955372,1
+42948649,25955372,4
+sylvi,25955372,3
+50782420,25955372,3
+shuixia1825,25955372,3
+46480304,25955372,3
+102039687,25955372,5
+c541223724,25955372,2
+khjoe,25955372,2
+43441025,25955372,3
+zenfer,25955372,3
+blueseason,25955372,3
+72030965,25955372,3
+shixiaoyuren,25955372,2
+135442596,25955372,5
+40595579,25955372,2
+28271170,25955372,3
+34544680,25955372,2
+hennic,25955372,3
+42139869,25955372,4
+78491782,25955372,5
+130044129,25955372,4
+lecron,25955372,5
+zombiekid,25955372,2
+27432217,25955372,3
+55859844,25955372,4
+57588789,25955372,3
+50337203,25955372,4
+4867707,25955372,3
+STT810,25955372,3
+130445057,25955372,3
+lovelydaodao,25955372,4
+uicolourful,25955372,4
+3609952,25955372,3
+1722985,25955372,3
+58509538,25823840,3
+CptHaddock,25823840,4
+61099860,25823840,3
+maorui,25823840,3
+ying03011224,25823840,3
+131380048,25823840,3
+Youandi4,25823840,-1
+57927830,25823840,3
+107982589,25823840,4
+137273110,25823840,2
+lijiefu007,25823840,3
+49266863,25823840,5
+5607891,25823840,3
+4568741,25823840,4
+icy1004,25823840,3
+41813819,25823840,-1
+39605411,25823840,2
+94380874,25823840,3
+6270415,25823840,3
+58759380,25823840,1
+68979031,25823840,3
+31955384,25823840,3
+70872466,25823840,3
+2510548,25823840,4
+chenhuayang,25823840,3
+L-6206,25823840,1
+68791794,25823840,2
+DKJessica,25823840,3
+56655394,25823840,3
+59256917,25823840,4
+tanmingdong,25823840,3
+70954003,25823840,2
+87956504,25823840,3
+62208354,25823840,4
+xiaoyao123,25823840,4
+52907345,25823840,2
+ruruvia,25823840,4
+F-Mac,25823840,2
+53646129,25823840,3
+46911355,25823840,5
+53010578,25823840,-1
+108391256,25823840,3
+57479148,25823840,3
+12769559,25823840,4
+jixixi,25823840,3
+happytimeinmay,25823840,4
+42796272,25823840,3
+69529350,25823840,3
+131603099,25823840,3
+79235702,25823840,4
+50242818,25823840,3
+vivichris,25823840,3
+64094614,25823840,3
+45184440,25823840,-1
+88534332,25823840,4
+sid005,25823840,2
+137075359,25823840,4
+kid1121,25823840,3
+97940125,25823840,2
+thini,25823840,2
+71344622,25823840,4
+dreamseaworld,25823840,5
+135928484,25823840,3
+137720532,25823840,3
+65511273,25823840,4
+huapiqiu,25823840,3
+tt1122,25823840,4
+79349178,25823840,3
+82483462,25823840,5
+68506907,25823840,3
+42167889,25823840,4
+bigtailboy,25823840,4
+tuniu1,25823840,-1
+leeyizuo,25823840,4
+62157854,25823840,3
+76095036,25823840,3
+53378706,25823840,4
+Oliver_Lu,25823840,4
+MrBigKidney,25823840,3
+136199952,25823840,3
+136199952,25823840,3
+andybabyroy,25823840,3
+2161404,25823840,3
+4750660,25823840,3
+2543390,25823840,3
+60745185,25823840,4
+44973722,25823840,5
+135239811,25823840,4
+49987495,25823840,5
+102791213,25823840,3
+wanpunleo,25823840,1
+Elvaaaaa,25823840,3
+38966245,25823840,4
+136489657,25823840,-1
+L.ccnightcat,25823840,4
+yuuka0765,25823840,4
+69704401,25823840,3
+tsdphilia,25823840,3
+bancy,25823840,2
+50174936,25823840,3
+136755004,25823840,3
+51756917,25823840,5
+shinhwas1,25823840,3
+51277491,25823840,3
+wangyl_,25823840,4
+49545340,25823840,4
+88033603,25823840,2
+43827975,25823840,3
+122944258,25823840,3
+63958982,25823840,3
+49119255,25823840,1
+mllt,25823840,2
+kisscat890505,25823840,5
+62688110,25823840,3
+1981762,25823840,3
+49570590,25823840,3
+131909298,25823840,3
+121650860,25823840,3
+Kevin3,25823840,3
+48490344,25823840,5
+elinli00,25823840,4
+2428233,25823840,2
+77434550,25823840,3
+islander,25823840,3
+137154715,25823840,3
+to1900,25823840,3
+58460115,25823840,4
+49201790,25823840,-1
+136992518,25823840,3
+54968031,25823840,5
+17871243,25823840,3
+56557788,25823840,4
+xixiamimi,25823840,4
+104778875,25823840,3
+82849854,25823840,4
+79404532,25823840,2
+84406429,25823840,4
+xingmie,25823840,4
+xoman,25823840,2
+colorwind,25823840,3
+57489804,25823840,5
+18274942,25823840,3
+44041206,25823840,5
+62124507,25823840,3
+49052740,25823840,4
+98956225,25823840,4
+1418514,25823840,3
+115051698,25823840,4
+76630020,25823840,4
+ninecat,25823840,3
+zhangdayun,25823840,1
+45177549,25823840,3
+uncletofu,25823840,-1
+114179686,25823840,3
+102862890,25823840,1
+128923474,25823840,4
+52119694,25823840,5
+aimeeje,25823840,3
+135241177,25823840,3
+78065496,25823840,3
+54359368,25823840,3
+10277954,25823840,3
+137466112,25823840,4
+35438123,25823840,3
+137006409,25823840,5
+ruthchai,25823840,3
+131749314,25823840,3
+ItoHayachi,25823840,4
+39054257,25823840,-1
+64713560,25823840,3
+65119672,25823840,3
+56653103,25823840,3
+swallowling,25823840,-1
+69776394,25823840,4
+99037241,25823840,3
+38590154,25823840,4
+isatly,25823840,3
+67238808,25823840,3
+105462772,25823840,4
+96175707,25823840,4
+121633982,25823840,3
+yukiseventeen,25823840,3
+65542762,25823840,4
+62748351,25823840,3
+Cecilia925,25823840,4
+116271293,25823840,3
+tammysky,25823840,3
+88658178,25823840,3
+fawaixiaoyao,25823840,3
+120832097,25823840,2
+shuilingyuesha,25823840,3
+1627841,25823840,2
+76187986,25823840,3
+56669894,25823840,3
+mcfeemiki,25823840,5
+e3829069,25823840,3
+51738741,25823840,4
+120489158,25823840,-1
+125373467,25823840,3
+137303234,25823840,4
+59799761,25823840,5
+dandangobelieve,25823840,-1
+polkadancing,25823840,4
+136359567,25823840,4
+100417194,25823840,3
+113582401,25823840,2
+ontheroadtree,25823840,2
+66867402,25823840,2
+66711391,25823840,4
+builove,25823840,5
+64663567,25823840,4
+129172643,25823840,3
+sevenshaw,25823840,4
+58179619,25823840,4
+57968983,25823840,3
+135145481,25823840,4
+45962163,25823840,5
+xiaoyufan569801,25823840,2
+4271475,25823840,3
+chenhuangchao,25823840,3
+crystal_zhao,25823840,2
+137206904,25823840,3
+70487695,25823840,3
+ZhaHuanEr,25823840,2
+49536125,25823840,2
+4674424,25823840,3
+nrz1101,25823840,3
+34316490,25823840,4
+69439267,25823840,2
+81628425,25823840,3
+4002268,25823840,2
+55536823,25823840,4
+119929270,25823840,4
+34704440,25823840,3
+60760507,25823840,3
+77163449,25823840,5
+55653553,25823840,4
+2216479,25823840,4
+87891193,25823840,3
+57351658,25823840,3
+57351658,25823840,3
+115619646,25823840,3
+jibo1991,25823840,3
+124640229,25823840,3
+58215137,25823840,3
+momon1900,25823840,4
+56655499,25823840,2
+121925373,25823840,1
+60802675,25823840,2
+74520364,25823840,2
+46497691,25823840,3
+134584881,25823840,2
+63552363,25823840,5
+1643126,25823840,4
+61681574,25823840,3
+72970549,25823840,4
+63977206,25823840,3
+134625303,25823840,3
+3110943,25823840,4
+donutsss,25823840,-1
+2749090,25823840,3
+54069821,25823840,3
+leechambo,25823840,2
+gezi921054,25823840,2
+130438496,25823840,3
+aiecho,25823840,4
+15810065,25823840,3
+smileuna,25823840,2
+129233901,25823840,2
+78851730,25823840,2
+3030231,25823840,-1
+67284330,25823840,3
+130435949,25823840,4
+80781412,25823840,4
+100153718,25823840,3
+52399993,25823840,1
+huahui,25823840,3
+tinmiko,25823840,3
+54906280,25823840,3
+114149260,25823840,-1
+114149260,25823840,-1
+91687057,25823840,3
+31613621,25823840,4
+C443658,25823840,4
+127118502,25823840,3
+grave-,25823840,3
+52970455,25823840,3
+63587036,25823840,4
+58351753,25823840,4
+89438098,25823840,-1
+4458584,25823840,3
+tingchaosum,25823840,3
+49576050,25823840,3
+115657337,25823840,3
+135739193,25823840,3
+AngelaDayday,25823840,4
+70930463,25823840,3
+66141079,25823840,4
+82980188,25823840,3
+38265968,25823840,3
+38265968,25823840,3
+56024643,25823840,5
+6642488,25823840,4
+tianhualefei,25823840,2
+53662568,25823840,2
+oldmarychou,25823840,1
+1614995,25823840,3
+46493467,25823840,4
+simona_mae,25823840,3
+81725101,25823840,3
+54453173,25823840,4
+13307772,25823840,3
+akiko77,25823840,3
+13332687,25823840,3
+62416822,25823840,3
+134258576,25823840,4
+52885236,25823840,5
+70574692,25823840,3
+42011516,25823840,3
+49888583,25823840,4
+128192780,25823840,2
+neverland_qq,25823840,3
+127131340,25823840,2
+54717954,25823840,2
+wcwc,25823840,5
+liaozhongchao,25823840,4
+82911001,25823840,1
+128237011,25823840,5
+44691440,25823840,3
+ymm,25823840,1
+48395509,25823840,3
+75667260,25823840,4
+52628612,25823840,4
+119942879,25823840,4
+fanlove0_0,25823840,4
+64157680,25823840,2
+61683482,25823840,3
+kackl,25823840,3
+75189651,25823840,3
+millylyu,25823840,3
+1122936,25823840,2
+37612294,25823840,3
+49226040,25823840,5
+cleopatra927,25823840,3
+63113181,25823840,5
+xiaoxianbibi,25823840,2
+2583091,25823840,4
+104265782,25823840,3
+133372996,25823840,3
+43582868,25823840,5
+32144547,25823840,4
+lingqingchun,25823840,-1
+blue1997,25823840,3
+61746960,25823840,-1
+42952627,25823840,3
+121059369,25823840,2
+63707938,25823840,1
+mira_yukin,25823840,4
+sliaobellamy,25823840,3
+58096445,25823840,3
+58096445,25823840,3
+1792027,25823840,4
+126002983,25823840,4
+127396395,25823840,4
+53691373,25823840,5
+calaquendi,25823840,4
+robins1979,25823840,3
+67244429,25823840,4
+134796540,25823840,3
+96472990,25823840,1
+33619574,25823840,4
+65580779,25823840,3
+43762131,25823840,5
+114361347,25823840,4
+topxpp,25823840,5
+showhand1988,25823840,2
+91073792,25823840,3
+42340521,25823840,4
+lemoon9,25823840,3
+carrieloveless,25823840,3
+panyangdedouban,25823840,5
+82016647,25823840,3
+veverlee,25823840,2
+48168328,25823840,3
+airan712,25823840,3
+123270668,25823840,3
+xiaochongshan,25823840,2
+34885746,25823840,3
+40105087,25823840,2
+cigar621,25823840,4
+43326904,25823840,5
+46620424,25823840,3
+83387474,25823840,3
+Darkfallsnow,25823840,3
+72397969,25823840,-1
+48938261,25823840,2
+2496608,25823840,3
+evaisdead,25823840,5
+113834252,25823840,4
+45855923,25823840,3
+louisyoung1026,25823840,2
+4627477,25823840,4
+9411149,25823840,3
+zhuzhuzhuz,25823840,4
+45449396,25823840,1
+52128416,25823840,3
+yoo3,25823840,-1
+chelsea_baker,25823840,4
+96488948,25823840,4
+39646892,25823840,3
+echoningning,25823840,3
+1581275,25823840,5
+oak1890,25823840,2
+2145298,25823840,5
+9791060,25823840,4
+132271021,25823840,3
+74471598,25823840,3
+Cecily,25823840,3
+46839345,25823840,4
+49398797,25823840,3
+68491668,25823840,4
+harriet,25823840,2
+51898214,25823840,5
+51534915,25823840,4
+1595315,25823840,4
+3941641,25823840,3
+raptor,25823840,4
+62535973,25823840,3
+78347009,25823840,4
+74589582,25823840,4
+61483763,25823840,3
+51245229,25823840,3
+44552200,25823840,4
+61989466,25823840,3
+42556657,25823840,3
+80922094,25823840,2
+jerry20071012,25823840,3
+33293861,25823840,3
+47912416,25823840,4
+51238374,25823840,2
+laurayet,25823840,4
+60652352,25823840,4
+67010446,25823840,5
+4113291,25823840,-1
+124817749,25823840,3
+xuyan19891020,25823840,3
+J-1900,25823840,3
+58630944,25823840,3
+sophie1900,25823840,3
+78501893,25823840,-1
+peixinzhu,25823840,4
+a1b2c32046,25823840,4
+58321080,25823840,4
+pamelayang,25823840,3
+96512812,25823840,2
+79498937,25823840,3
+56085447,25823840,5
+zoe-chung,25823840,2
+moxiaocai,25823840,4
+136475671,25823840,4
+yao120,25823840,2
+103089307,25823840,4
+68912083,25823840,5
+yumami,25823840,4
+3160589,25823840,3
+80290185,25823840,3
+heavywoo,25823840,3
+130321609,25823840,1
+47838456,25823840,3
+56821325,25823840,3
+4042935,25823840,5
+aisa395,25823840,3
+54485796,25823840,4
+109055681,25823840,4
+83398649,25823840,-1
+tongnixcv,25823840,3
+weblinder,25823840,4
+134577129,25823840,3
+56752723,25823840,4
+71863067,25823840,3
+85250768,25823840,3
+135694361,25823840,3
+73734497,25823840,3
+52886592,25823840,3
+65280514,25823840,4
+46411887,25823840,-1
+126500017,25823840,3
+39381148,25823840,2
+121920760,25823840,2
+calypso29,25823840,3
+70470821,25823840,2
+81628764,25823840,4
+imxiaobei,25823840,4
+76127642,25823840,3
+liuc0804,25823840,4
+zhouzhoushen,25823840,4
+3814695,25823840,3
+134540692,25823840,4
+1759173,25823840,4
+122343842,25823840,3
+76176310,25823840,5
+74661878,25823840,3
+2013907,25823840,3
+icekiller,25823840,4
+dydyd_douban,25823840,3
+houx,25823840,4
+jamaica,25823840,4
+103480987,25823840,2
+yukisan,25823840,5
+135209955,25823840,3
+98773690,25823840,3
+Bai-Bbai,25823840,2
+135239127,25823840,3
+134384066,25823840,3
+kulapika,25823840,3
+doryrue,25823840,3
+70132891,25823840,3
+45431555,25823840,4
+50063811,25823840,3
+45134770,25823840,4
+kitchenbee,25823840,3
+68547609,25823840,3
+132183694,25823840,4
+sam920228,25823840,3
+2249428,25823840,3
+46301717,25823840,3
+yiri,25823840,-1
+futuxiaozhen,25823840,4
+135143930,25823840,3
+lolitalempick,25823840,5
+62500230,25823840,4
+OnlyCoffee,25823840,3
+huoyanshanbaofa,25823840,4
+ca5h,25823840,4
+4732229,25823840,3
+42913226,25823840,4
+kekeyuxi,25823840,2
+61176733,25823840,3
+umbrella722,25823840,4
+120506651,25823840,4
+52289478,25823840,3
+vava2046,25823840,4
+29783240,25823840,5
+127569899,25823840,3
+2725757,25823840,3
+esse34,25823840,3
+80850838,25823840,3
+hedmgh,25823840,4
+26331972,25823840,3
+82225198,25823840,3
+mspengmei,25823840,4
+2759426,25823840,4
+55742809,25823840,3
+december.L,25823840,2
+48257109,25823840,2
+leftone,25823840,4
+79048356,25823840,3
+coxat,25823840,3
+maxmartin,25823840,4
+xmcog,25823840,5
+xmcog,25823840,5
+Cpancakes,25823840,2
+3618040,25823840,4
+23494376,25823840,3
+126593246,25823840,3
+3425333,25823840,5
+69010983,25823840,4
+69475039,25823840,2
+3522393,25823840,4
+meyoo,25823840,5
+1831722,25823840,3
+45415867,25823840,3
+41912100,25823840,2
+35904729,25823840,2
+41083928,25823840,4
+134495648,25823840,2
+63730928,25823840,2
+135942012,25823840,-1
+2262469,25823840,3
+7971587,25823840,2
+treeofhope,25823840,3
+73741678,25823840,2
+2769218,25823840,4
+93946528,25823840,1
+3540779,25823840,3
+49698871,25823840,3
+60768165,25823840,3
+49362402,25823840,3
+101978267,25823840,3
+Levon,25823840,4
+63435651,25823840,3
+helvinyang,25823840,1
+zhhuang1980,25823840,4
+63950350,25823840,3
+tulipwings,25823840,2
+50739519,25823840,3
+losrfuu,25823840,4
+127367403,25823840,2
+57950573,25823840,4
+38252612,25823840,4
+110172016,25823840,4
+daxiong3ye,25823840,4
+peachgardn,25823840,4
+7134514,25823840,4
+109774060,25823840,3
+stare,25823840,2
+57062354,25823840,4
+79639135,25823840,4
+102996784,25823840,2
+lilacdays,25823840,3
+133890183,25823840,3
+80745781,25823840,4
+airy0409,25823840,3
+77182257,25823840,3
+125197885,25823840,3
+tuzichiluobo,25823840,4
+vinra,25823840,3
+joybang,25823840,4
+auslittlespace,25823840,4
+3052607,25823840,3
+3052607,25823840,3
+3689113,25823840,-1
+46338692,25823840,4
+119900869,25823840,4
+mingyaback,25823840,3
+51622479,25823840,2
+124014084,25823840,3
+waylybaye,25823840,4
+123078594,25823840,-1
+41456206,25823840,4
+45509766,25823840,5
+46781917,25823840,-1
+100418686,25823840,3
+puhonglei,25823840,4
+ayumiH,25823840,2
+43716096,25823840,2
+lanhouzi,25823840,3
+97869711,25823840,4
+46513410,25823840,1
+92468807,25823840,3
+59968700,25823840,5
+60746988,25823840,3
+38461766,25823840,4
+120694130,25823840,5
+3666746,25823840,3
+121342307,25823840,3
+acnes,25823840,4
+1159179,25823840,3
+52948477,25823840,2
+130701225,25823840,3
+guoziguoziguozi,25823840,4
+34801955,25823840,-1
+54953231,25823840,4
+2914721,25823840,3
+diaohui,25823840,5
+marilynj,25823840,3
+H-Akane,25823840,3
+84773489,25823840,3
+59538037,25823840,4
+69349657,25823840,5
+Ninetynineou,25823840,2
+78445664,25823840,4
+89062167,25823840,4
+76551061,25823840,3
+119990931,25823840,2
+104298228,25823840,4
+69037881,25823840,1
+23842256,25823840,5
+Angeldolphin,25823840,3
+3039896,25823840,3
+atu521,25823840,3
+122880766,25823840,5
+nangle,25823840,2
+3990864,25823840,5
+72745150,25823840,2
+124822296,25823840,2
+8895439,25823840,4
+zjackie,25823840,3
+56103928,25823840,4
+lincheng_,25823840,4
+lincheng_,25823840,4
+mabeysomeday,25823840,5
+sarahudan,25823840,3
+55883652,25823840,2
+67134272,25823840,2
+54530089,25823840,3
+4051028,25823840,1
+afux,25823840,2
+79407609,25823840,5
+62453656,25823840,5
+badjian,25823840,3
+46724815,25823840,5
+XSizuka,25823840,4
+133433272,25823840,3
+126192589,25823840,4
+39953503,25823840,3
+11905226,25823840,4
+1058726,25823840,-1
+diorsunrise,25823840,2
+60688819,25823840,-1
+cj895848939,25823840,3
+57831670,25823840,4
+134896142,25823840,3
+3556906,25823840,3
+3419883,25823840,4
+4134966,25823840,3
+135570170,25823840,3
+50005549,25823840,3
+4231664,25823840,4
+134427528,25823840,4
+45169064,25823840,1
+2805894,25823840,3
+54090244,25823840,3
+68811807,25823840,3
+73401827,25823840,3
+51420600,25823840,5
+66893773,25823840,2
+85103163,25823840,4
+46609900,25823840,3
+35792973,25823840,2
+fenshoudashi,25823840,3
+blancmanche,25823840,4
+55308180,25823840,3
+zakia12,25823840,-1
+56618669,25823840,4
+25635000,25823840,3
+114805643,25823840,4
+raphael0525,25823840,4
+54659341,25823840,5
+36879332,25823840,2
+81301929,25823840,3
+PATCHPAN,25823840,5
+68821782,25823840,5
+82991875,25823840,3
+94931189,25823840,3
+75728627,25823840,4
+131527494,25823840,3
+3053086,25823840,3
+69166545,25823840,2
+135377807,25823840,5
+54588486,25823840,3
+3559769,25823840,3
+79667856,25823840,3
+56582885,25823840,3
+Sylary,25823840,3
+sanhao_love,25823840,3
+54715465,25823840,3
+135469678,25823840,5
+114841876,25823840,5
+75723338,25823840,4
+christine1006,25823840,2
+48197946,25823840,4
+17589484,25823840,4
+59232987,25823840,5
+antivirus,25823840,3
+zzy0805,25823840,2
+4318512,25823840,3
+66642487,25823840,4
+yanbeixingren,25823840,3
+58258546,25823840,3
+59336433,25823840,3
+hejinwei0612,25823840,5
+68586004,25823840,4
+darlingyinsusu,25823840,4
+bifangxiaoC,25823840,3
+128774452,25823840,4
+71002924,25823840,1
+90972400,25823840,3
+releasej,25823840,1
+jaycee103,25823840,3
+47371112,25823840,3
+4231858,25823840,3
+4134812,25823840,3
+58082975,25823840,4
+83362692,25823840,3
+64068628,25823840,2
+solarshr,25823840,3
+44599413,25823840,5
+135396561,25823840,2
+70742254,25823840,2
+56652624,25823840,3
+JosephineQv,25823840,4
+73664006,25823840,4
+cheiry,25823840,3
+seeyouaa,25823840,2
+47207360,25823840,5
+70586150,25823840,5
+lmx1220,25823840,3
+131171695,25823840,4
+beyond_champion,25823840,2
+61845707,25823840,4
+116036519,25823840,1
+49074711,25823840,4
+icara,25823840,-1
+farewel,25823840,3
+78214422,25823840,3
+sevensuns,25823840,4
+elle.sc,25823840,3
+130609389,25823840,2
+caojing,25823840,4
+1128067,25823840,3
+122440508,25823840,5
+4175130,25823840,4
+91618313,25823840,3
+cchestnut,25823840,-1
+breezeinsummer,25823840,2
+61394120,25823840,4
+cute-candyan,25823840,3
+47294823,25823840,4
+62055273,25823840,3
+1658796,25823840,4
+50754510,25823840,2
+59362946,25823840,3
+solavre,25823840,-1
+56147728,25823840,4
+1985213,25823840,3
+112098382,25823840,4
+34343005,25823840,3
+2060087,25823840,4
+49177191,25823840,1
+49177191,25823840,1
+flora0013,25823840,4
+57260613,25823840,-1
+49684901,25823840,4
+69574803,25823840,-1
+79798477,25823840,1
+44539777,25823840,-1
+14455478,25823840,-1
+40786451,25823840,4
+57867141,25823840,4
+2039225,25823840,2
+80615965,25823840,4
+126348691,25823840,4
+48102408,25823840,4
+76653168,25823840,-1
+70522766,25823840,2
+82987051,25823840,5
+50689361,25823840,-1
+Mszombie,25823840,4
+135283185,25823840,4
+129304372,25823840,4
+62181038,25823840,4
+45198943,25823840,2
+zzlcslg,25823840,-1
+135222434,25823840,3
+60385100,25823840,-1
+59038571,25823840,3
+chaimengjie,25823840,3
+99473768,25823840,4
+54993997,25823840,3
+fuyu8818,25823840,4
+santonin,25823840,4
+yanbodiaoyu,25823840,4
+63794302,25823840,3
+pinxue,25823840,3
+chinalz,25823840,3
+54339174,25823840,4
+2190556,25823840,3
+83989831,25823840,3
+gspjazz,25823840,4
+lifeATR,25823840,3
+120913111,25823840,5
+128595847,25823840,5
+135237923,25823840,1
+61492149,25823840,3
+59372701,25823840,3
+85153072,25823840,5
+51325389,25823840,4
+Polo79,25823840,3
+86253847,25823840,2
+shepherded,25823840,2
+119330188,25823840,3
+59479819,25823840,3
+58816486,25823840,3
+59433731,25823840,4
+68799841,25823840,3
+60536729,25823840,5
+53620031,25823840,3
+sunvee,25823840,5
+97537742,25823840,4
+hellysunny,25823840,4
+loli.kim,25823840,5
+69531104,25823840,4
+pubolin,25823840,4
+85948759,25823840,5
+75690606,25823840,3
+12257490,25823840,3
+65697187,25823840,2
+ido_idoing,25823840,3
+LyleWang,25823840,2
+58763583,25823840,3
+3500331,25823840,4
+67744577,25823840,4
+92806168,25823840,3
+hakueibaby,25823840,4
+101450152,25823840,1
+35892009,25823840,-1
+49917861,25823840,4
+49191528,25823840,3
+43513326,25823840,3
+39104472,25823840,3
+56906009,25823840,3
+jewelshao,25823840,3
+TaylorAlisonSwi,25823840,3
+mwkang,25823840,5
+52684968,25823840,3
+131950727,25823840,3
+34984227,25823840,5
+66770422,25823840,3
+46053347,25823840,3
+puddingmoe,25823840,3
+69710712,25823840,-1
+64976230,25823840,4
+57510931,25823840,3
+114435379,25823840,3
+73210562,25823840,-1
+49680774,25823840,4
+78434416,25823840,3
+30184702,25823840,3
+3896074,25823840,4
+yf1989,25823840,3
+4222235,25823840,4
+xiaojingzi,25823840,4
+47165648,25823840,3
+Linfadi,25823840,2
+59970340,25823840,-1
+99353693,25823840,2
+53541312,25823840,2
+48823676,25823840,5
+57382521,25823840,1
+ZozoMY,25823840,3
+68093189,25823840,4
+84741578,25823840,2
+71946766,25823840,-1
+134161390,25823840,3
+81193574,25823840,3
+135077478,25823840,4
+68171864,25823840,4
+123246631,25823840,3
+65531183,25823840,2
+3322909,25823840,3
+74818677,25823840,3
+81257739,25823840,-1
+catsama77,25823840,-1
+60531919,25823840,3
+yogurt2202,25823840,5
+FeiDiQiuShengWu,25823840,4
+4568924,25823840,4
+48132079,25823840,2
+4496644,25823840,4
+66768802,25823840,4
+mousse_,25823840,5
+62743500,25823840,3
+59906784,25823840,3
+allen_y,25823840,4
+49979829,25823840,2
+China.He,25823840,5
+2740592,25823840,4
+121715773,25823840,-1
+50527578,25823840,-1
+48338073,25823840,3
+on1ooker,25823840,2
+1801383,25823840,3
+58539257,25823840,2
+h7766,25823840,4
+100042378,25823840,2
+2561289,25823840,3
+56344078,25823840,5
+126514473,25823840,5
+65832475,25823840,3
+69263659,25823840,2
+72930370,25823840,5
+tonitoni,25823840,3
+56995704,25823840,5
+56902514,25823840,4
+PC_Mancola,25823840,4
+35670244,25823840,3
+1115389,25823840,4
+45274666,25823840,4
+39115751,25823840,3
+cindol,25823840,-1
+74230231,25823840,2
+57927402,25823840,4
+37266138,25823840,3
+50313990,25823840,3
+3693808,25823840,2
+71765627,25823840,4
+1099666,25823840,4
+fxshigeshen,25823840,5
+56283170,25823840,4
+46680078,25823840,4
+79337395,25823840,3
+56957975,25823840,2
+129910475,25823840,3
+77095525,25823840,3
+68941794,25823840,4
+40643745,25823840,3
+56477010,25823840,5
+3425802,25823840,4
+dzl15,25823840,3
+14715966,25823840,4
+1384884,25823840,4
+84252919,25823840,4
+violajoe,25823840,4
+yinyujean,25823840,-1
+83461403,25823840,4
+qiluoluo,25823840,3
+77307938,25823840,4
+67348238,25823840,4
+134940711,25823840,5
+babybluebb,25823840,3
+1784208,25823840,3
+122060330,25823840,4
+yentlxing1005,25823840,4
+neofree,25823840,4
+134924552,25823840,3
+42998893,25823840,2
+73704160,25823840,5
+NeverEver1987,25823840,4
+51214182,25823840,4
+51214182,25823840,4
+79593752,25823840,4
+97304737,25823840,3
+loveubefor,25823840,3
+9962400,25823840,5
+85065723,25823840,4
+CLASSIC-MOVIE,25823840,4
+53897092,25823840,4
+68793839,25823840,4
+janetbubble,25823840,4
+Aiyouyouyouyou,25823840,4
+39294617,25823840,3
+48006997,25823840,4
+60067719,25823840,-1
+54644881,25823840,4
+63617713,25823840,4
+Makoto614,25823840,3
+luxi1988,25823840,2
+forlig,25823840,3
+76185877,25823840,4
+52897840,25823840,2
+49294840,25823840,4
+adlhblj,25823840,5
+51378899,25823840,3
+liheping0310,25823840,4
+calandra,25823840,3
+biteorange,25823840,5
+dearabbyabby,25823840,3
+57570888,25823840,5
+65903464,25823840,3
+2160015,25823840,3
+daisyshappiness,25823840,5
+118831166,25823840,3
+53504947,25823840,3
+xiaomaochen,25823840,5
+52392093,25823840,3
+30741393,25823840,2
+couple1314,25823840,3
+80429780,25823840,1
+joyzhai,25823840,3
+1815954,25823840,4
+3115385,25823840,3
+3474242,25823840,4
+yeqingyang,25823840,3
+55997229,25823840,3
+hedaxia,25823840,3
+61926092,25823840,4
+spaceli,25823840,3
+nighthanwei,25823840,4
+65417028,25823840,3
+small2121,25823840,3
+80925523,25823840,3
+everytimedouble,25823840,3
+51000075,25823840,3
+71719673,25823840,3
+73258869,25823840,3
+64974509,25823840,3
+4631031,25823840,5
+54807886,25823840,5
+maxiangge,25823840,5
+deppdeep,25823840,4
+63689594,25823840,4
+jedan,25823840,3
+muyu125,25823840,4
+luanluanvae,25823840,3
+65442139,25823840,3
+binmusiq,25823840,4
+37947794,25823840,4
+agwhy,25823840,3
+25960765,25823840,3
+ohmyshit,25823840,4
+49148779,25823840,-1
+androidboy00,25823840,4
+68310081,25823840,4
+70294430,25823840,3
+88951785,25823840,3
+90814793,25823840,-1
+71981162,25823840,5
+tongflower,25823840,2
+57606505,25823840,5
+35665174,25823840,3
+45763201,25823840,3
+122340180,25823840,4
+90338227,25823840,4
+42389605,25823840,-1
+baobabie,25823840,-1
+Echo2Echo,25823840,4
+47878839,25823840,3
+79855225,25823840,3
+70918450,25823840,3
+2510654,25823840,4
+AllenHarris,25823840,4
+ciseibian,25823840,3
+longyueye,25823840,4
+51841040,25823840,3
+less...,25823840,4
+4233861,25823840,3
+58301131,25823840,3
+Lao_K_Hao_Ye,25823840,2
+47165746,25823840,3
+56928474,25823840,1
+84038344,25823840,4
+skynland0,25823840,3
+chentianle,25823840,1
+56928605,25823840,3
+christinacyy,25823840,3
+60392839,25823840,3
+3799579,25823840,3
+76836090,25823840,4
+fidotoy,25823840,4
+44485632,25823840,4
+47335967,25823840,2
+66676801,25823840,3
+yifeng2013,25823840,3
+LKandZY,25823840,4
+gl56770978,25823840,4
+48499071,25823840,3
+belyone,25823840,3
+exploremore,25823840,4
+123653183,25823840,1
+vertigo1989,25823840,-1
+49135712,25823840,3
+78192927,25823840,3
+68340243,25823840,5
+59921067,25823840,4
+megane0931,25823840,5
+134391227,25823840,5
+nyandjm,25823840,4
+boxxx,25823840,3
+41520304,25823840,3
+lanyangyangdecc,25823840,3
+junqli86,25823840,3
+55536274,25823840,3
+Qianlumanman,25823840,3
+49258293,25823840,2
+SQ17,25823840,4
+chaochao85mao,25823840,-1
+47847112,25823840,5
+88304289,25823840,4
+94392173,25823840,2
+66236529,25823840,4
+68224632,25823840,5
+118277522,25823840,5
+2912846,25823840,4
+67516737,25823840,4
+chitian,25823840,4
+cowsumy,25823840,2
+merryliang,25823840,3
+61111185,25823840,4
+134018980,25823840,2
+44981584,25823840,5
+38397417,25823840,4
+55745424,25823840,4
+28346145,25823840,3
+134699978,25823840,-1
+134698620,25823840,4
+134698397,25823840,-1
+116551398,25823840,3
+72547163,25823840,4
+134195975,25823840,3
+34607988,25823840,4
+59556078,25823840,3
+52918154,25823840,3
+44109266,25823840,2
+119456408,25823840,4
+128698230,25823840,3
+91317144,25823840,4
+47913948,25823840,3
+mur3mur,25823840,4
+66844132,25823840,4
+ximozhe,25823840,4
+4766836,25823840,3
+57537354,25823840,2
+84593823,25823840,5
+bzlin,25823840,3
+49510973,25823840,4
+65316211,25823840,4
+flying030,25823840,5
+63973168,25823840,3
+vnoonv,25823840,-1
+vnoonv,25823840,-1
+d300019,25823840,3
+46823718,25823840,4
+49848992,25823840,4
+4568311,25823840,3
+N44,25823840,4
+66552525,25823840,2
+chenyanluli,25823840,3
+IcbM,25823840,4
+67209695,25823840,5
+23826255,25823840,1
+belonelyalife,25823840,3
+44977430,25823840,5
+STT810,25823840,3
+36355818,25823840,4
+jhourui,25823840,4
+magicsunshine,25823840,4
+57714176,25823840,3
+48961154,25823840,4
+stevenfive,25823840,3
+kingfokings,25823840,4
+jiang66,25823840,4
+68993722,25823840,5
+silence_queen,25823840,3
+68186986,25823840,5
+46920813,25823840,3
+xuyinaxxxxxxx,25823840,1
+57872112,25823840,3
+96152194,25823840,3
+4463635,25823840,3
+59855986,25823840,-1
+44473457,25823840,3
+63483063,25823840,2
+63399322,25823840,4
+96364228,25823840,2
+tianxiaodao,25823840,4
+moonbird39,25823840,4
+60042513,25823840,1
+83016108,25823840,3
+lulu511,25823840,4
+80993663,25823840,5
+63047551,25823840,4
+jiroleng,25823840,3
+50415284,25823840,3
+37402473,25823840,4
+youngmars,25823840,4
+134431620,25823840,3
+53668460,25823840,3
+LaneSatan,25823840,4
+Ciel777,25823840,4
+58866731,25823840,3
+ccl499508605,25823840,2
+white817,25823840,3
+2082288,25823840,4
+6595795,25823840,5
+47116857,25823840,1
+42040536,25823840,5
+justleeee,25823840,3
+134563704,25823840,-1
+2771217,25823840,3
+2946363,25823840,4
+sentexiaohu,25823840,3
+55398830,25823840,3
+49367100,25823840,3
+68657829,25823840,4
+70236644,25823840,3
+amandaccforever,25823840,4
+woyougongfubcei,25823840,3
+zichuanxiao,25823840,5
+57966600,25823840,4
+108289552,25823840,4
+71924539,25823840,4
+3966002,25823840,4
+95334971,25823840,3
+46009561,25823840,4
+everlastingEGO,25823840,2
+61345635,25823840,3
+dodoo7,25823840,3
+50939193,25823840,3
+55886551,25823840,3
+huahetao,25823840,3
+79474538,25823840,3
+46858223,25823840,4
+lostItard,25823840,-1
+wangyuwei526,25823840,3
+mayhsu0619,25823840,1
+85671125,25823840,2
+100589224,25823840,2
+1061597,25823840,3
+81278452,25823840,2
+128596881,25823840,4
+sue0213,25823840,3
+63863771,25823840,4
+weitongqi,25823840,5
+kalinin,25823840,5
+43370699,25823840,4
+zoe315,25823840,3
+83456365,25823840,4
+67626896,25823840,3
+RUOER,25823840,3
+46066560,25823840,4
+59995660,25823840,3
+61047391,25823840,4
+1818595,25823840,3
+sunyugo,25823840,2
+5594345,25823840,3
+70300693,25823840,3
+Xia0_K,25823840,3
+sidfify,25823840,4
+63154481,25823840,3
+51840690,25823840,4
+cusoo,25823840,4
+61660180,25823840,3
+64306350,25823840,3
+fatfish1882,25823840,2
+onshuway,25823840,3
+liquor,25823840,2
+51059118,25823840,2
+44761018,25823840,4
+fero7,25823840,2
+kangmeng,25823840,3
+67479654,25823840,3
+57475712,25823840,3
+69247286,25823840,4
+122288974,25823840,4
+ydouban,25823840,-1
+64096688,25823840,3
+132432039,25823840,4
+BaBaBaL,25823840,3
+zyzyzythl,25823840,-1
+51151809,25823840,4
+82090066,25823840,5
+63636223,25823840,3
+48876836,25823840,2
+Erica1011,25823840,4
+63049878,25823840,3
+66919459,25823840,4
+45518910,25823840,4
+ztr19920126,25823840,4
+kjjane,25823840,3
+musiqian,25823840,4
+45840537,25823840,4
+81445026,25823840,2
+48483774,25823840,3
+cutecool,25823840,4
+61380006,25823840,4
+Pastorale,25823840,2
+60764117,25823840,4
+115900561,25823840,3
+pengpengyue,25823840,3
+lovemycats,25823840,3
+Lira_13,25823840,1
+38047106,25823840,4
+jonenow,25823840,3
+spade3,25823840,4
+41787565,25823840,2
+122482788,25823840,4
+47376302,25823840,3
+82248938,25823840,1
+CSO-Botasky,25823840,2
+CSO-Botasky,25823840,2
+77451005,25823840,4
+58035013,25823840,4
+MMAOCOOL,25823840,5
+53437976,25823840,4
+dinosaw,25823840,4
+58464798,25823840,4
+103629201,25823840,1
+64230829,25823840,3
+2355408,25823840,4
+4520667,25823840,3
+taoxiaogu,25823840,3
+48165389,25823840,-1
+67616315,25823840,5
+50183635,25823840,1
+50405161,25823840,2
+134288385,25823840,5
+wxf19951218,25823840,4
+48459200,25823840,3
+Jerry-Zeng,25823840,2
+133627101,25823840,4
+57982370,25823840,3
+urani,25823840,3
+62464683,25823840,3
+126027447,25823840,3
+42576668,25823840,-1
+55506429,25823840,-1
+tearsslj,25823840,3
+spancercheng,25823840,1
+vipyuchao,25823840,1
+65358186,25823840,1
+Juneaitvxq,25823840,4
+GjS1022,25823840,2
+32734943,25823840,5
+1286114,25823840,3
+125806599,25823840,3
+40970313,25823840,2
+64947272,25823840,4
+134232275,25823840,4
+41825202,25823840,3
+1115686,25823840,4
+53212670,25823840,5
+130707216,25823840,2
+75860437,25823840,4
+di_xin,25823840,2
+34823550,25823840,2
+Houdong,25823840,1
+97181253,25823840,4
+zhangezra,25823840,3
+zaraatnike,25823840,3
+57732832,25823840,5
+yscysc803,25823840,4
+62948547,25823840,3
+1299948,25823840,3
+79763326,25823840,3
+42116561,25823840,3
+127365822,25823840,4
+provence1019,25823840,3
+gingerlea,25823840,3
+55381057,25823840,3
+55381057,25823840,3
+52063178,25823840,3
+46151281,25823840,3
+54056952,25823840,3
+yuyuchan,25823840,4
+taken-tee,25823840,3
+14944907,25823840,4
+53710950,25823840,2
+qiaomai,25823840,3
+68743424,25823840,3
+66895800,25823840,2
+1402905,25823840,3
+82334721,25823840,-1
+love_KAT-TUN,25823840,4
+61613598,25823840,5
+Ste_corleone,25823840,3
+122662265,25823840,4
+JJ88pig,25823840,4
+shawchuh,25823840,3
+vera-cheng,25823840,4
+sevenready,25823840,3
+missyun,25823840,3
+2980283,25823840,3
+81968574,25823840,3
+Eenina,25823840,4
+CatPeter,25823840,3
+60907191,25823840,4
+59375998,25823840,3
+funfan26,25823840,4
+yanala,25823840,3
+129846623,25823840,4
+susimai,25823840,3
+lephemera,25823840,3
+39504280,25823840,4
+62259012,25823840,3
+zjt2421,25823840,5
+127782706,25823840,4
+praguenight,25823840,2
+q164511490,25823840,3
+115657007,25823840,3
+119306223,25823840,4
+72319276,25823840,3
+44506499,25823840,3
+ljyhe001,25823840,1
+3801810,25823840,4
+64013773,25823840,2
+jianyadaodao,25823840,3
+64716010,25823840,4
+81897833,25823840,4
+43718634,25823840,5
+3013879,25823840,4
+69151342,25823840,3
+62346305,25823840,3
+divingsun,25823840,3
+kenc,25823840,3
+2933555,25823840,3
+46528708,25823840,3
+qinglang52,25823840,2
+Cheung93,25823840,4
+44599506,25823840,3
+113301718,25823840,4
+52112521,25823840,3
+44852938,25823840,3
+4350779,25823840,5
+xly7788,25823840,4
+zhongshanaoli,25823840,3
+129239528,25823840,-1
+70935394,25823840,3
+kerorocao,25823840,3
+55355100,25823840,4
+xyc1987,25823840,3
+xjksama,25823840,3
+joseph1213,25823840,4
+linngallery,25823840,4
+63324739,25823840,3
+69967865,25823840,3
+75937419,25823840,2
+127972732,25823840,3
+4249661,25823840,3
+101738421,25823840,4
+conquer-me,25823840,2
+134257842,25823840,4
+sxy921026,25823840,2
+67705949,25823840,4
+zc1020,25823840,3
+mumao,25823840,3
+47182696,25823840,4
+53068258,25823840,3
+82990219,25823840,1
+40979162,25823840,3
+morninglove,25823840,5
+kkx2222,25823840,3
+64473872,25823840,4
+121916264,25823840,3
+play0829,25823840,2
+4711458,25823840,3
+66810723,25823840,3
+53559432,25823840,4
+58710486,25823840,3
+tsywy,25823840,4
+121939824,25823840,2
+43377923,25823840,4
+46345500,25823840,4
+44535286,25823840,2
+56901042,25823840,5
+69854098,25823840,4
+xlhtdxx,25823840,4
+letong,25823840,3
+87657745,25823840,4
+46380360,25823840,3
+microblue,25823840,3
+viva,25823840,4
+juicysongy,25823840,-1
+fengxiaoyu,25823840,5
+xsyn,25823840,5
+127066563,25823840,3
+48845052,25823840,4
+TalkChan,25823840,3
+56493761,25823840,4
+69455218,25823840,3
+66846318,25823840,4
+120824926,25823840,4
+shuaihuanggua,25823840,4
+31787957,25823840,3
+91358615,25823840,2
+47755926,25823840,4
+Hfun33,25823840,4
+1668414,25823840,3
+52470011,25823840,3
+62418670,25823840,2
+56092754,25823840,4
+Andy9,25823840,4
+43200549,25823840,3
+Lily-C,25823840,1
+36317992,25823840,4
+dayandnights,25823840,4
+65898498,25823840,2
+93339436,25823840,1
+92697402,25823840,5
+imarlboro,25823840,3
+49326502,25823840,3
+steammoonsnow,25823840,4
+46818044,25823840,3
+67024367,25823840,3
+78634802,25823840,2
+strawman81,25823840,4
+37751161,25823840,4
+50439954,25823840,2
+96638998,25823840,3
+77320088,25823840,2
+SPIRITUA,25823840,3
+Samle-in-us,25823840,3
+w-leaf,25823840,3
+Mr.V,25823840,4
+moyuezhang,25823840,-1
+55906760,25823840,3
+63033488,25823840,2
+anarkhhom,25823840,3
+63536119,25823840,5
+76933799,25823840,3
+59967875,25823840,3
+5851064,25823840,3
+3178442,25823840,4
+coolsin,25823840,2
+61988364,25823840,5
+iamloco,25823840,3
+55942870,25823840,3
+slothbug,25823840,4
+4267240,25823840,3
+57609619,25823840,-1
+little_mari0,25823840,3
+51967154,25823840,1
+71779079,25823840,5
+monkeywen,25823840,5
+50201038,25823840,2
+elric07,25823840,4
+Psycho_,25823840,4
+10236919,25823840,3
+linyuzhu,25823840,4
+39529333,25823840,3
+longnel,25823840,4
+53536327,25823840,3
+49900100,25823840,3
+62957645,25823840,3
+60027173,25823840,4
+62210177,25823840,4
+53796875,25823840,3
+121628266,25823840,5
+132348413,25823840,3
+besim6ple,25823840,4
+51156826,25823840,3
+134148189,25823840,3
+73064038,25823840,2
+mouzhi,25823840,3
+51393445,25823840,3
+54211342,25823840,2
+57398096,25823840,4
+2581375,25823840,3
+night1992,25823840,5
+52241991,25823840,4
+66926829,25823840,5
+ludi0511,25823840,-1
+98506579,25823840,-1
+36718097,25823840,2
+benbenwinter,25823840,2
+68401918,25823840,4
+yangDAyun,25823840,3
+51172840,25823840,3
+54374689,25823840,2
+102938445,25823840,3
+BMY378670541,25823840,4
+TubieWang,25823840,4
+88732540,25823840,4
+2818730,25823840,4
+53708953,25823840,3
+38208418,25823840,3
+36740289,25823840,4
+jluy,25823840,3
+62731352,25823840,5
+dabianer,25823840,2
+dabianer,25823840,2
+65873693,25823840,3
+amberV,25823840,4
+Scarlett--YJ,25823840,4
+121538309,25823840,5
+41438322,25823840,2
+mi.even.live,25823840,4
+39061280,25823840,-1
+61348061,25823840,1
+1727088,25823840,3
+49785601,25823840,2
+40966373,25823840,-1
+72127449,25823840,3
+icy_u,25823840,3
+rouble-w,25823840,3
+53243609,25823840,4
+hengxi,25823840,4
+131216888,25823840,3
+aprilini,25823840,5
+confuzzle,25823840,2
+allenshao,25823840,3
+lovelessji,25823840,3
+50490367,25823840,3
+yinzhi83,25823840,5
+46593881,25823840,4
+116073490,25823840,3
+45238478,25823840,3
+hlinwang,25823840,3
+79525878,25823840,5
+mayee1121,25823840,3
+78863182,25823840,3
+53698984,25823840,3
+fish,25823840,1
+29100911,25823840,4
+2849862,25823840,5
+Perry_Chan,25823840,4
+68447756,25823840,5
+Paranoidc,25823840,4
+J.Wen,25823840,4
+zoujian-999,25823840,3
+cookie0829,25823840,4
+50633054,25823840,3
+crossrainbow92,25823840,3
+33620618,25823840,5
+44639489,25823840,3
+44953599,25823840,3
+51860561,25823840,4
+49876674,25823840,2
+50079947,25823840,5
+83854610,25823840,5
+90660899,25823840,3
+115622817,25823840,4
+7549744,25823840,4
+45778196,25823840,4
+57698084,25823840,3
+Amazire,25823840,2
+EMonica,25823840,3
+24137395,25823840,3
+NTkyrie,25823840,4
+78616781,25823840,2
+xuxiaogao,25823840,4
+67232713,25823840,3
+lotua,25823840,4
+cccpig,25823840,4
+Ryan-Z,25823840,2
+dou870220,25823840,5
+fuyulovehyde,25823840,3
+74201077,25823840,-1
+73910323,25823840,3
+62969848,25823840,3
+67957454,25823840,4
+41378496,25823840,-1
+44542969,25823840,5
+60616451,25823840,3
+46871806,25823840,4
+14277787,25823840,5
+love_sam,25823840,2
+scarlet_,25823840,4
+48604559,25823840,5
+68679029,25823840,4
+snowintheheaven,25823840,4
+48675954,25823840,3
+52940043,25823840,3
+131849470,25823840,3
+ashli,25823840,3
+47941534,25823840,4
+43500933,25823840,4
+niannian-,25823840,-1
+49364601,25823840,4
+Sissi.Wu,25823840,4
+102122606,25823840,2
+thorn_bird,25823840,4
+lclc911,25823840,4
+125148047,25823840,3
+woollen50,25823840,3
+1426157,25823840,2
+50372044,25823840,2
+34086492,25823840,3
+28220624,25823840,4
+sheng1992,25823840,3
+107539229,25823840,3
+58424103,25823840,4
+130086532,25823840,3
+32566267,25823840,3
+113999648,25823840,4
+45939025,25823840,2
+69072673,25823840,3
+a_marantine,25823840,4
+wanran8,25823840,3
+69196405,25823840,3
+71502534,25823840,3
+mopean,25823840,3
+49539143,25823840,3
+LemonRiver,25823840,5
+tofuchico,25823840,3
+nopharos,25823840,2
+binnnn,25823840,3
+63077328,25823840,4
+56811139,25823840,4
+marsradiance,25823840,4
+Mr.Roi,25823840,4
+SheEco,25823840,3
+4008035,25823840,2
+Laoyuelife,25823840,3
+58286468,25823840,4
+73292250,25823840,4
+44220638,25823840,4
+zengchinhuang,25823840,3
+51236001,25823840,5
+87739740,25823840,3
+50474968,25823840,2
+68204977,25823840,4
+cannabimos,25823840,3
+133889604,25823840,4
+63299955,25823840,4
+51547266,25823840,4
+ccmomi,25823840,3
+57563598,25823840,3
+wy320,25823840,-1
+60841792,25823840,-1
+2217112,25823840,-1
+103622140,25823840,3
+59798302,25823840,3
+47401966,25823840,4
+shiteng,25823840,4
+phl745,25823840,4
+xuefei94,25823840,3
+dogbus,25823840,3
+119472529,25823840,4
+70078862,25823840,3
+liebeida,25823840,4
+52209363,25823840,3
+60089109,25823840,3
+53678963,25823840,3
+qiqinaideziji,25823840,3
+3917788,25823840,4
+leavesye929,25823840,-1
+haheniwota,25823840,4
+loveyu0725,25823840,3
+50527952,25823840,3
+musichellsing,25823840,5
+65098968,25823840,4
+63906928,25823840,4
+31604289,25823840,4
+54497020,25823840,4
+93672714,25823840,4
+Erva,25823840,3
+33245540,25823840,4
+130903700,25823840,3
+81697516,25823840,3
+anikasun,25823840,4
+qilisa,25823840,3
+123250951,25823840,4
+49345225,25823840,4
+116007981,25823840,4
+allisabouthana,25823840,3
+joyous_youyou,25823840,5
+Fay59,25823840,3
+Luna_me,25823840,3
+6821770,25823840,4
+47050600,25823840,4
+63785417,25823840,4
+134004054,25823840,5
+yin972550997,25823840,4
+57953186,25823840,3
+63621382,25823840,3
+16968943,25823840,5
+44922872,25823840,4
+4700776,25823840,3
+45520575,25823840,3
+70042257,25823840,3
+47574034,25823840,3
+yrrahpotter,25823840,3
+1551936,25823840,4
+chara1987,25823840,4
+55990207,25823840,5
+104823188,25823840,3
+69011211,25823840,2
+shengdiao,25823840,5
+80429911,25823840,3
+LX971003,25823840,5
+51955912,25823840,4
+ringoo,25823840,5
+yuzhizhi,25823840,3
+115671532,25823840,3
+74651071,25823840,3
+70850538,25823840,4
+hollyvan,25823840,4
+slow-down,25823840,4
+Uranus_Qiang,25823840,2
+lynxmao,25823840,4
+qjunny,25823840,3
+40095548,25823840,4
+tammysoso,25823840,3
+55890752,25823840,1
+ak0402,25823840,5
+52097875,25823840,4
+Loudzone,25823840,4
+50618983,25823840,4
+8528137,25823840,4
+40482611,25823840,3
+2940942,25823840,3
+53511670,25823840,3
+63451407,25823840,3
+129266003,25823840,3
+67848029,25823840,2
+43551227,25823840,3
+56044387,25823840,-1
+80074512,25823840,3
+kikobbc,25823840,3
+46222244,25823840,1
+nonoyan,25823840,3
+zhy650218,25823840,4
+qianjin,25823840,3
+79964293,25823840,3
+30323334,25823840,3
+43796964,25823840,5
+3144827,25823840,2
+10724888,25823840,5
+Arielcong,25823840,3
+himesamala,25823840,3
+69123550,25823840,4
+57772675,25823840,4
+82995055,25823840,3
+ntz521,25823840,5
+66361496,25823840,5
+37110649,25823840,4
+103465229,25823840,3
+53950938,25823840,4
+122212002,25823840,5
+75874484,25823840,4
+51467287,25823840,4
+49161974,25823840,4
+122670225,25823840,2
+77736615,25823840,3
+sam_smile,25823840,3
+kangwenyi,25823840,4
+cvitamin,25823840,3
+64008981,25823840,4
+43833073,25823840,-1
+55825163,25823840,4
+90925925,25823840,5
+lxu,25823840,3
+66721136,25823840,4
+74825312,25823840,3
+3543290,25823840,4
+3802854,25823840,4
+55849765,25823840,2
+76621126,25823840,3
+misskanie,25823840,4
+pingfandeshabi,25823840,1
+58783405,25823840,4
+allenmarceau,25823840,-1
+48953772,25823840,3
+129857824,25823840,4
+96305246,25823840,4
+67978593,25823840,3
+60107866,25823840,3
+59573093,25823840,3
+DIC,25823840,3
+wangmuse,25823840,3
+52773740,25823840,-1
+58193839,25823840,3
+sakimay,25823840,3
+wowWicgam,25823840,3
+53131403,25823840,4
+43767898,25823840,3
+duzhouchi,25823840,3
+43343230,25823840,4
+snowfreak,25823840,5
+ruofeidangxia,25823840,4
+67043053,25823840,3
+57043665,25823840,4
+nanguodehaizi,25823840,3
+hedgew3w,25823840,4
+yan_fang,25823840,4
+4198339,25823840,4
+3322526,25823840,3
+75885274,25823840,4
+zmdouhua,25823840,3
+akuTsui,25823840,2
+63422353,25823840,3
+59886067,25823840,-1
+qianjinlai,25823840,2
+23621516,25823840,4
+57988123,25823840,3
+71621608,25823840,3
+47288828,25823840,3
+74684254,25823840,3
+banyinxie,25823840,3
+Broderick,25823840,3
+mm5340,25823840,5
+40027917,25823840,3
+58605674,25823840,2
+51909890,25823840,3
+petterzhang,25823840,3
+62876165,25823840,3
+59986635,25823840,4
+64424945,25823840,3
+83900259,25823840,3
+51023914,25823840,2
+121806059,25823840,4
+imcorrect,25823840,3
+53978584,25823840,5
+66044059,25823840,4
+Alien_Alice,25823840,4
+44078114,25823840,3
+ADMJAD,25823840,5
+76722357,25823840,4
+61518221,25823840,4
+131198769,25823840,4
+65911258,25823840,3
+58228097,25823840,4
+67609434,25823840,3
+27087669,25823840,4
+119883443,25823840,3
+july5412,25823840,3
+mwqqqqq,25823840,3
+Chorai42,25823840,4
+57910322,25823840,3
+59097774,25823840,4
+42842033,25823840,4
+46483875,25823840,3
+4627764,25823840,4
+50117482,25823840,3
+39048100,25823840,4
+40417109,25823840,2
+121194917,25823840,3
+athenacrystal,25823840,3
+57701070,25823840,3
+103251122,25823840,3
+huiverci,25823840,2
+69838036,25823840,2
+IkaIIIUku,25823840,4
+zhoumnnn,25823840,3
+rukiawang,25823840,3
+63403641,25823840,4
+59997800,25823840,2
+41990185,25823840,4
+75854272,25823840,3
+84710118,25823840,3
+131086560,25823840,4
+47243412,25823840,2
+49595588,25823840,3
+38744199,25823840,4
+2867984,25823840,3
+keero,25823840,4
+47949405,25823840,4
+xinnii,25823840,4
+83694969,25823840,5
+51391216,25823840,3
+CAYmomo,25823840,3
+69170430,25823840,4
+102905031,25823840,4
+yoyodove,25823840,4
+8438524,25823840,3
+46168266,25823840,4
+conanwansui,25823840,-1
+62600930,25823840,5
+70284743,25823840,4
+64324702,25823840,-1
+AnguesZoe,25823840,4
+70880759,25823840,2
+mango12580,25823840,3
+4101720,25823840,3
+71386826,25823840,4
+83513831,25823840,5
+62514800,25823840,3
+89423046,25823840,5
+lies583,25823840,3
+paeony,25823840,4
+115552732,25823840,4
+48226644,25823840,4
+skferb,25823840,3
+74232483,25823840,3
+imr3,25823840,3
+j.mago,25823840,5
+66458815,25823840,2
+sylarxian,25823840,4
+ChanelFive,25823840,4
+2796824,25823840,5
+60303197,25823840,3
+4482032,25823840,4
+Seeress,25823840,3
+64927243,25823840,4
+55860957,25823840,4
+53228107,25823840,4
+61974686,25823840,5
+qinxuanzi,25823840,3
+42689253,25823840,4
+U.0,25823840,4
+58723728,25823840,1
+124331286,25823840,3
+chm2014chm,25823840,3
+126225635,25823840,3
+85368660,25823840,4
+just_yeat,25823840,3
+54116882,25823840,3
+vikshare,25823840,2
+khuntracie,25823840,4
+Juno14,25823840,4
+45422614,25823840,3
+graceoklove,25823840,3
+97470773,25823840,4
+52790172,25823840,2
+66232190,25823840,3
+fsdyf,25823840,-1
+3428014,25823840,3
+59968133,25823840,3
+131194167,25823840,4
+iamnew.,25823840,4
+129042505,25823840,5
+78728709,25823840,3
+56892226,25823840,1
+58863257,25823840,5
+69943229,25823840,4
+neallau1221,25823840,2
+panda919,25823840,4
+133254262,25823840,4
+bobluvpop,25823840,4
+Mr_juanmao,25823840,3
+64284331,25823840,3
+67278708,25823840,3
+54706735,25823840,3
+59027708,25823840,4
+69253645,25823840,3
+81131709,25823840,4
+58305570,25823840,4
+1169851,25823840,3
+60463486,25823840,4
+74059129,25823840,4
+52125579,25823840,4
+83040147,25823840,3
+62652935,25823840,-1
+124741216,25823840,4
+68472138,25823840,5
+133872279,25823840,-1
+126078605,25823840,2
+gigalo,25823840,3
+52638193,25823840,5
+shea,25823840,4
+57386472,25823840,4
+40474222,25823840,3
+yangyiyouye,25823840,4
+mingyuejiang,25823840,4
+127424592,25823840,5
+neardemon,25823840,3
+38248181,25823840,2
+102751216,25823840,3
+64252050,25823840,5
+51672014,25823840,4
+76613301,25823840,4
+120740156,25823840,3
+fengxue102,25823840,3
+jukiloveu,25823840,2
+43849260,25823840,2
+2201462,25823840,2
+1977618,25823840,4
+53708555,25823840,3
+23253638,25823840,3
+133080033,25823840,5
+67659493,25823840,3
+43958775,25823840,4
+3193612,25823840,4
+kingkid,25823840,3
+Sunx,25823840,3
+3507179,25823840,4
+smell00,25823840,4
+94422178,25823840,4
+viviwanghoho,25823840,3
+3977584,25823840,3
+61193045,25823840,3
+61633166,25823840,3
+103339430,25823840,3
+3843442,25823840,4
+67606836,25823840,4
+109381843,25823840,3
+76163964,25823840,4
+53416381,25823840,3
+120259879,25823840,4
+stardust.,25823840,4
+55980175,25823840,3
+55598262,25823840,5
+moonwater,25823840,3
+Qsays,25823840,4
+bodysun,25823840,3
+52539615,25823840,3
+yaya,25823840,3
+65510626,25823840,3
+Kishimoto,25823840,3
+132959097,25823840,3
+62663500,25823840,3
+FOOL624,25823840,4
+40252291,25823840,5
+43233504,25823840,3
+101860430,25823840,5
+66707798,25823840,3
+3420891,25823840,1
+44699537,25823840,3
+kouchi,25823840,5
+60542765,25823840,4
+deardeer92,25823840,5
+tasha2011,25823840,4
+102400051,25823840,2
+49788914,25823840,4
+gloria1206,25823840,4
+63779461,25823840,3
+carolinazhang,25823840,4
+3768837,25823840,3
+52624708,25823840,4
+42593023,25823840,4
+68633136,25823840,3
+50124375,25823840,4
+59623092,25823840,3
+erin522,25823840,3
+42786624,25823840,3
+44594188,25823840,2
+nina,25823840,3
+56083517,25823840,4
+91995423,25823840,3
+iries,25823840,5
+9274036,25823840,3
+60356718,25823840,4
+62290511,25823840,2
+47993943,25823840,4
+rocekrong,25823840,-1
+57639704,25823840,3
+4051279,25823840,4
+clever_trick,25823840,4
+79506720,25823840,5
+cruer,25823840,3
+zhoubb,25823840,1
+fish.in.bottle,25823840,4
+35149263,25823840,4
+37461715,25823840,3
+ohohblue,25823840,3
+1225917,25823840,2
+MusiCspace,25823840,3
+53600614,25823840,3
+seagreenskyblue,25823840,3
+coolluo_zw,25823840,4
+78753463,25823840,2
+Joseph_8.12,25823840,3
+2762219,25823840,3
+liudinglan,25823840,3
+73150320,25823840,3
+44903919,25823840,5
+2841066,25823840,1
+1211087,25823840,1
+wucaicai,25823840,4
+3633800,25823840,3
+26044083,25823840,4
+lan1999,25823840,3
+66992520,25823840,4
+Sherry0ai88,25823840,4
+83304203,25823840,3
+43258987,25823840,5
+surrealcage,25823840,4
+colour-blue,25823840,4
+115608839,25823840,4
+131551681,25823840,2
+52119631,25823840,3
+63616731,25823840,4
+89341086,25823840,3
+quanquan0817,25823840,4
+71127427,25823840,4
+3676726,25823840,3
+121940753,25823840,4
+zhanghutou1215,25823840,3
+53081187,25823840,4
+3671903,25823840,1
+54475580,25823840,3
+53080124,25823840,4
+49011902,25823840,3
+35986570,25823840,3
+70297769,25823840,4
+4777385,25823840,3
+59993040,25823840,4
+55320874,25823840,3
+Bixbite,25823840,4
+1222025,25823840,4
+dongbai,25823840,3
+1138243,25823840,3
+erjiulingqi,25823840,-1
+46754344,25823840,3
+73074752,25823840,2
+120996063,25823840,5
+120984787,25823840,3
+128130996,25823840,2
+113231911,25823840,4
+chuan1989,25823840,4
+68620213,25823840,3
+53396901,25823840,3
+67910969,25823840,5
+104440181,25823840,3
+73035941,25823840,4
+44556984,25823840,5
+93190703,25823840,4
+104645523,25823840,4
+Susan1224,25823840,5
+Susan1224,25823840,5
+54117885,25823840,4
+106663926,25823840,4
+Alice-in-Bed,25823840,4
+Asmodeus777,25823840,4
+79872021,25823840,4
+93179604,25823840,4
+62309312,25823840,4
+tonytang777,25823840,4
+63125194,25823840,2
+79236287,25823840,5
+58120441,25823840,3
+XUYUN-,25823840,2
+53847648,25823840,3
+71412117,25823840,4
+127606527,25823840,3
+62143130,25823840,3
+mozhangnunu,25823840,3
+53082027,25823840,2
+4154813,25823840,3
+4154813,25823840,3
+35623829,25823840,3
+58786397,25823840,4
+San_king,25823840,3
+mantuoluo,25823840,4
+3513677,25823840,3
+69980622,25823840,3
+130521789,25823840,3
+120594965,25823840,4
+71938369,25823840,3
+lisuansuan,25823840,-1
+32212881,25823840,4
+superT,25823840,5
+48047168,25823840,4
+86856114,25823840,4
+120216633,25823840,4
+1963507,25823840,4
+3678658,25823840,2
+122021533,25823840,3
+comehe,25823840,-1
+48787302,25823840,3
+Razzmatazz,25823840,2
+64486055,25823840,4
+80430212,25823840,3
+43594988,25823840,3
+38677012,25823840,5
+liim87,25823840,3
+as_shmily,25823840,2
+imtutu,25823840,4
+49089345,25823840,4
+133715937,25823840,5
+124425803,25823840,3
+63946983,25823840,2
+73901440,25823840,3
+38956092,25823840,3
+48145924,25823840,4
+46630645,25823840,4
+onless,25823840,5
+CPUCMX,25823840,2
+95190543,25823840,-1
+wheatkittymew,25823840,2
+65044305,25823840,4
+SiyeonYeung,25823840,4
+27598248,25823840,3
+60968661,25823840,3
+ThisIsYangJing,25823840,4
+67557903,25823840,5
+67943015,25823840,4
+133442862,25823840,4
+63274793,25823840,3
+103039257,25823840,3
+tbc379,25823840,3
+2118444,25823840,3
+47807328,25823840,3
+hahaha1983,25823840,3
+133629797,25823840,-1
+Christina63,25823840,5
+133620157,25823840,-1
+53771727,25823840,3
+1905433,25823840,3
+68872792,25823840,3
+46870778,25823840,5
+million,25823840,-1
+58181516,25823840,3
+guandao--,25823840,3
+Mllelovelife,25823840,2
+67759623,25823840,4
+43507289,25823840,3
+65878913,25823840,3
+48332023,25823840,3
+41636718,25823840,3
+67323158,25823840,3
+43793736,25823840,3
+xiaopin19,25823840,2
+78488765,25823840,3
+vastgrassland,25823840,3
+anneka,25823840,3
+35287664,25823840,4
+102024318,25823840,4
+3133331,25823840,-1
+87852350,25823840,2
+52701456,25823840,4
+62660312,25823840,3
+pastilles,25823840,2
+3990146,25823840,3
+4626230,25823840,3
+53542403,25823840,4
+72886574,25823840,4
+movielove,25823840,4
+49428801,25823840,3
+zhangzhai,25823840,3
+1494955,25823840,4
+too_up,25823840,4
+58658233,25823840,3
+gloomsky,25823840,4
+sunmounstar,25823840,1
+50644195,25823840,4
+designed11,25823840,4
+3369417,25823840,2
+62461752,25823840,3
+fionafaye,25823840,2
+2073110,25823840,3
+5355133,25823840,2
+1926472,25823840,4
+3349587,25823840,1
+coolfax,25823840,4
+1441718,25823840,3
+chjack,25823840,5
+41892297,25823840,3
+42040921,25823840,4
+49048693,25823840,2
+xianxiansushou,25823840,3
+52004251,25823840,4
+124517309,25823840,1
+123149153,25823840,5
+63230779,25823840,3
+3818567,25823840,4
+91139241,25823840,4
+46968893,25823840,4
+pgdzhua,25823840,3
+ivyforone,25823840,3
+92509576,25823840,5
+2472751,25823840,4
+41801093,25823840,4
+53512949,25823840,2
+53479679,25823840,1
+51912673,25823840,3
+mingtaiyupao,25823840,3
+Iamlazylady,25823840,3
+106596511,25823840,4
+yao2TVXQ,25823840,3
+29386645,25823840,3
+stompbabe,25823840,3
+46902321,25823840,3
+yuanweiru,25823840,3
+EthanChu,25823840,4
+justxuanyi,25823840,4
+my1507,25823840,4
+Gordoncoco,25823840,4
+caorong1023,25823840,3
+pirate_cat,25823840,3
+15277249,25823840,-1
+46064508,25823840,3
+48940214,25823840,4
+lulujay,25823840,5
+2709569,25823840,3
+61049464,25823840,3
+117339283,25823840,3
+75133926,25823840,4
+39877849,25823840,3
+51870876,25823840,4
+57971814,25823840,4
+62380646,25823840,4
+xiabingxia,25823840,4
+Zoe9898Joy,25823840,-1
+resurgam92dawn,25823840,4
+hichai,25823840,3
+Whitefactory,25823840,3
+74139940,25823840,1
+73741113,25823840,3
+117018256,25823840,1
+67922307,25823840,4
+xiangjiaopian,25823840,2
+1713793,25823840,3
+fedorajiang,25823840,-1
+zzoozz_111,25823840,2
+sui2,25823840,3
+56797287,25823840,4
+57589585,25823840,4
+54839416,25823840,3
+Omalimalibebeho,25823840,4
+52854962,25823840,3
+OuTalK,25823840,3
+zzzt29,25823840,2
+55822408,25823840,4
+58956740,25823840,4
+123063664,25823840,4
+zhr19951204,25823840,3
+riplilse7en,25823840,4
+79194135,25823840,2
+big_peach,25823840,3
+Candy_Can,25823840,3
+alwayscrowded,25823840,3
+lesones,25823840,3
+xdy1990,25823840,3
+67958578,25823840,3
+74227062,25823840,3
+121816227,25823840,4
+34132006,25823840,4
+wangleku0310,25823840,3
+53558102,25823840,1
+76446728,25823840,3
+44834038,25823840,3
+52522904,25823840,-1
+farewell2286492,25823840,3
+bfa1950,25823840,3
+perperperper,25823840,3
+55717894,25823840,4
+huliwang,25823840,5
+sphynx,25823840,4
+huliwang,25823840,5
+sphynx,25823840,4
+nicer,25823840,4
+47172452,25823840,3
+63635904,25823840,3
+2320667,25823840,3
+52231356,25823840,3
+60731189,25823840,4
+131533202,25823840,3
+82222392,25823840,4
+43222334,25823840,3
+yelling2012,25823840,1
+28712164,25823840,4
+yigerenlvxing,25823840,-1
+83376578,25823840,3
+56194866,25823840,2
+77165599,25823840,-1
+qingjuesikong,25823840,2
+duanzizai,25823840,3
+55916506,25823840,3
+19317163,25823840,5
+60049868,25823840,4
+70246803,25823840,4
+25774865,25823840,4
+oakhui,25823840,2
+guandongdaxia,25823840,3
+myTrista,25823840,4
+126929965,25823840,4
+1773126,25823840,3
+Anw77,25823840,3
+127148800,25823840,4
+killian9999,25823840,5
+65641173,25823840,4
+piggychu,25823840,2
+53744550,25823840,3
+xj2006062,25823840,4
+43891940,25823840,3
+122848551,25823840,3
+50109761,25823840,4
+49247233,25823840,3
+45390359,25823840,3
+nanruo13,25823840,5
+sleepinglynn,25823840,4
+jojojoyce,25823840,3
+120912084,25823840,3
+junebug51fan,25823840,-1
+jiwenhe,25823840,3
+dodov,25823840,3
+57930885,25823840,3
+nicy119,25823840,3
+45529743,25823840,3
+dabyrowe,25823840,3
+3100582,25823840,3
+cherub235,25823840,4
+SokSolon,25823840,5
+solanachen,25823840,5
+43229954,25823840,-1
+xiaoyuhen,25823840,2
+xiongxiong1994,25823840,3
+51753128,25823840,3
+70176975,25823840,3
+57591346,25823840,2
+50616224,25823840,3
+128613808,25823840,2
+57437837,25823840,5
+50638011,25823840,3
+63451140,25823840,3
+119683375,25823840,4
+66624462,25823840,4
+luocaochengsi,25823840,-1
+46792617,25823840,2
+BABABALA,25823840,3
+kratos0008,25823840,1
+1530155,25823840,3
+30749625,25823840,4
+71372922,25823840,4
+36863750,25823840,3
+willinchang,25823840,2
+91446742,25823840,4
+43303328,25823840,3
+2548730,25823840,3
+53984450,25823840,3
+32798278,25823840,4
+danie7,25823840,5
+36664715,25823840,4
+62498352,25823840,-1
+3468206,25823840,5
+10595793,25823840,3
+74073932,25823840,3
+xiaozaofan,25823840,-1
+sheepoy,25823840,1
+34464499,25823840,2
+zcysandra,25823840,3
+4245980,25823840,4
+126404198,25823840,4
+iamjzk,25823840,1
+1260390,25823840,3
+MR.Pain,25823840,4
+ellabaoc,25823840,-1
+64780259,25823840,3
+wangxiaolei,25823840,3
+63454756,25823840,3
+43045516,25823840,3
+79846802,25823840,-1
+huayeah,25823840,4
+stilllive,25823840,4
+123258422,25823840,3
+imarco,25823840,2
+zoeyqyq,25823840,4
+107586571,25823840,4
+30762446,25823840,3
+108573841,25823840,2
+l92599,25823840,2
+xuaoling,25823840,3
+114734252,25823840,5
+yinshan1025,25823840,3
+52763361,25823840,3
+loveleo,25823840,3
+thecrespo,25823840,3
+aiouliya,25823840,4
+wangmian0729,25823840,1
+qiongdong,25823840,4
+2569116,25823840,4
+77904577,25823840,3
+69361608,25823840,3
+2623718,25823840,4
+suxun,25823840,3
+35938658,25823840,5
+xs_212121,25823840,4
+98643202,25823840,-1
+87902611,25823840,-1
+chrisairfly,25823840,2
+1843710,25823840,3
+79151265,25823840,2
+guaishou1017,25823840,4
+2168969,25823840,4
+47835316,25823840,3
+91790285,25823840,2
+fuckoffpussy,25823840,4
+65311254,25823840,4
+65060474,25823840,-1
+joxy,25823840,3
+69422415,25823840,2
+51276928,25823840,3
+ZeRo.0821,25823840,3
+132936108,25823840,3
+oakJ,25823840,5
+84796559,25823840,3
+59129484,25823840,-1
+44501154,25823840,2
+106426699,25823840,5
+jijillwang,25823840,3
+61739872,25823840,3
+53783506,25823840,-1
+127677329,25823840,2
+81090277,25823840,4
+Leibnio,25823840,-1
+banruoliuli,25823840,3
+41142807,25823840,4
+34403067,25823840,5
+51491569,25823840,1
+serphim8,25823840,4
+6170863,25823840,3
+daiyuanvian,25823840,4
+97159850,25823840,4
+1452797,25823840,3
+34628842,25823840,3
+129157418,25823840,2
+41298606,25823840,3
+soha_s,25823840,3
+C37twocold,25823840,-1
+68270832,25823840,2
+62527134,25823840,4
+128991169,25823840,5
+45429498,25823840,1
+64543096,25823840,3
+74169906,25823840,3
+72226986,25823840,2
+40703330,25823840,5
+54076009,25823840,4
+102627576,25823840,3
+zoue,25823840,4
+particles,25823840,3
+68226125,25823840,3
+71861595,25823840,4
+2562115,25823840,3
+mona2010,25823840,4
+78793402,25823840,2
+Scorpio_lxs,25823840,3
+14836914,25823840,4
+csprite,25823840,3
+50433074,25823840,3
+54989059,25823840,4
+50030842,25823840,5
+ZY-Monster,25823840,5
+117806969,25823840,4
+yyy1240,25823840,3
+51618406,25823840,4
+datou77,25823840,3
+91603860,25823840,4
+34155630,25823840,3
+48054921,25823840,4
+56273353,25823840,2
+29534182,25823840,3
+103614841,25823840,3
+catchingcold,25823840,1
+wintercoldrain,25823840,3
+47112558,25823840,5
+57006141,25823840,4
+52325341,25823840,3
+15146438,25823840,3
+81317162,25823840,2
+langran1029,25823840,3
+16048346,25823840,4
+nagi_echo-king,25823840,4
+53025831,25823840,2
+82802978,25823840,2
+2404315,25823840,4
+57238055,25823840,3
+jiatianyu1,25823840,2
+39517329,25823840,3
+akilaa,25823840,2
+85973285,25823840,5
+126325126,25823840,1
+104445642,25823840,3
+a674022367,25823840,2
+39108497,25823840,3
+53477635,25823840,5
+youknow810,25823840,3
+SafeHaven,25823840,2
+126758799,25823840,4
+1378503,25823840,3
+41637265,25823840,1
+3139871,25823840,2
+48961693,25823840,4
+90546235,25823840,4
+59108154,25823840,3
+42209180,25823840,4
+lancangghost,25823840,3
+96161847,25823840,1
+Uatchet,25823840,4
+36055864,25823840,4
+41786241,25823840,3
+94052787,25823840,4
+62319857,25823840,4
+60656876,25823840,4
+starry_liu,25823840,3
+56100807,25823840,4
+mime,25823840,4
+122742837,25823840,3
+10085322,25823840,2
+cherry1207,25823840,-1
+40716634,25823840,4
+57639200,25823840,4
+3608735,25823840,3
+phoebechaung,25823840,3
+64872065,25823840,3
+57269428,25823840,4
+xxb,25823840,3
+2859857,25823840,4
+2859857,25823840,4
+koushisi,25823840,4
+juliazhuli,25823840,4
+imvesper,25823840,2
+49041524,25823840,4
+65233252,25823840,3
+52171347,25823840,4
+85958266,25823840,1
+70238336,25823840,3
+fifiyard,25823840,-1
+58988950,25823840,3
+64184937,25823840,3
+S-hit,25823840,-1
+79936861,25823840,3
+silvia2011,25823840,4
+40645830,25823840,3
+90814609,25823840,5
+bihanguan,25823840,4
+gossip3micky,25823840,4
+4736613,25823840,3
+d8day,25823840,2
+kirahome,25823840,1
+67062923,25823840,4
+liuine,25823840,5
+retall,25823840,3
+diamond911,25823840,4
+124744172,25823840,4
+SsilverW,25823840,3
+54349281,25823840,4
+96492695,25823840,3
+fishzero,25823840,-1
+zoeybatman,25823840,3
+qunlangzhishou,25823840,3
+Rocklisa,25823840,4
+131274504,25823840,2
+MissCaptain,25823840,3
+56206646,25823840,4
+2060005,25823840,3
+74397322,25823840,3
+49981766,25823840,3
+duoran,25823840,4
+Dasiycat,25823840,2
+killthatfirefly,25823840,4
+63510104,25823840,4
+63732204,25823840,3
+43442263,25823840,4
+rucool,25823840,2
+79915546,25823840,3
+chanbc,25823840,3
+burclover,25823840,3
+63490736,25823840,3
+72120142,25823840,1
+4338735,25823840,3
+15118982,25823840,-1
+naples5,25823840,4
+banlizi,25823840,2
+22031277,25823840,-1
+lirongrong,25823840,4
+4353729,25823840,3
+64132743,25823840,2
+64132743,25823840,2
+44122722,25823840,3
+mmshine,25823840,3
+theMicky,25823840,4
+65800533,25823840,3
+25110019,25823840,3
+60272362,25823840,3
+65021672,25823840,3
+athenasaga,25823840,3
+3307804,25823840,-1
+49824578,25823840,4
+3311665,25823840,4
+1456706,25823840,3
+121337200,25823840,2
+65739692,25823840,3
+65836711,25823840,4
+59596431,25823840,3
+blacktea077,25823840,3
+72062989,25823840,3
+90249795,25823840,4
+4598800,25823840,5
+kate101,25823840,3
+guoyunya,25823840,3
+63791834,25823840,5
+wc1222,25823840,4
+rosekiss,25823840,4
+49678404,25823840,4
+66040410,25823840,3
+41997696,25823840,3
+MillayWang,25823840,5
+Mayumi720,25823840,4
+42957757,25823840,3
+58038251,25823840,4
+35504548,25823840,4
+Her_Mione,25823840,2
+49808652,25823840,2
+27028067,25823840,-1
+49490666,25823840,3
+DivaTequila,25823840,3
+Sigrid_Lu,25823840,2
+63966439,25823840,3
+4269560,25823840,2
+xilouchen,25823840,2
+68206013,25823840,4
+4849573,25823840,3
+74248244,25823840,4
+nanchizi,25823840,-1
+huxy1983,25823840,4
+zifa,25823840,3
+1550127,25823840,2
+67244165,25823840,4
+87069686,25823840,4
+55283261,25823840,3
+youngoceano,25823840,3
+jtaiyang,25823840,2
+zjia,25823840,4
+geeseken,25823840,4
+starry_ripple,25823840,3
+cherryhj,25823840,3
+delicioussalad,25823840,4
+delicioussalad,25823840,4
+79307909,25823840,4
+73152155,25823840,4
+47021231,25823840,2
+92462355,25823840,2
+zsqsophy,25823840,4
+slcws,25823840,2
+melodygxl,25823840,3
+4686407,25823840,4
+77624574,25823840,5
+itsmeymq,25823840,5
+44812730,25823840,4
+91576800,25823840,4
+amaranth_i,25823840,3
+42149787,25823840,3
+kellyouka,25823840,3
+79627181,25823840,-1
+bongbird,25823840,-1
+argoowz,25823840,2
+81542585,25823840,3
+81542585,25823840,3
+wndtlkr,25823840,4
+49002133,25823840,4
+66089736,25823840,2
+thesinner,25823840,4
+vikkistyle,25823840,-1
+50219991,25823840,2
+62023518,25823840,5
+39447144,25823840,1
+51720308,25823840,3
+71929336,25823840,4
+never_zj,25823840,3
+1236338,25823840,3
+nansizhuang,25823840,4
+1498731,25823840,5
+57501453,25823840,1
+tt1426,25823840,3
+55643876,25823840,-1
+V.P,25823840,4
+66477838,25823840,4
+2626730,25823840,3
+49539292,25823840,5
+51003719,25823840,3
+43606810,25823840,2
+63929108,25823840,2
+AuRevoir7,25823840,3
+45271195,25823840,-1
+53734026,25823840,3
+102941926,25823840,4
+leejiatu987,25823840,-1
+52390566,25823840,3
+53185889,25823840,5
+1662140,25823840,4
+icemonique,25823840,3
+36247676,25823840,3
+spirit.seraph,25823840,3
+50624143,25823840,3
+52781294,25823840,4
+BerryFan,25823840,3
+43115135,25823840,4
+yueyuebetty,25823840,-1
+63602303,25823840,5
+DominatingCHW,25823840,3
+52524732,25823840,3
+59164249,25823840,3
+43648335,25823840,3
+cherrywang0118,25823840,3
+49465683,25823840,4
+57834233,25823840,3
+82463994,25823840,3
+eastern,25823840,2
+4535772,25823840,3
+emilyrubbish,25823840,3
+1236656,25823840,2
+GeiaoGeiao,25823840,3
+lemonjam903,25823840,2
+pandoll,25823840,4
+43671696,25823840,3
+Ronicalee,25823840,2
+50228169,25823840,5
+84745831,25823840,4
+41289155,25823840,3
+yyxmy,25823840,4
+redcookie,25823840,3
+32195292,25823840,4
+47609007,25823840,2
+miyayeah,25823840,3
+roger589,25823840,4
+56390988,25823840,4
+3627066,25823840,3
+78458256,25823840,3
+tianjinwangai,25823840,3
+41627268,25823840,3
+keytoworld,25823840,3
+40013410,25823840,3
+46466887,25823840,3
+59213940,25823840,3
+68629660,25823840,4
+48040831,25823840,3
+mekrey,25823840,-1
+66551951,25823840,3
+yny23,25823840,3
+48763298,25823840,3
+FM_Julia,25823840,2
+bearzx,25823840,3
+119362745,25823840,3
+bananayuan,25823840,1
+wqljane,25823840,3
+fengs,25823840,-1
+MeloTheFisher,25823840,4
+4006467,25823840,3
+jezad,25823840,2
+Princewhiteme,25823840,3
+lhlqzhuge,25823840,4
+3529058,25823840,3
+4509681,25823840,3
+sunjunhuang,25823840,4
+49193605,25823840,4
+goldenhornking,25823840,2
+benchaos,25823840,3
+115629295,25823840,4
+59371719,25823840,3
+65383456,25823840,-1
+Rachel.L,25823840,3
+5483875,25823840,3
+83691770,25823840,3
+languheshang,25823840,4
+53672963,25823840,1
+sweetxyy,25823840,3
+56727126,25823840,3
+zzheng,25823840,4
+nicdone,25823840,3
+125892567,25823840,2
+58484976,25823840,2
+zhongda925,25823840,3
+68311988,25823840,3
+64681992,25823840,4
+winter-h,25823840,1
+58239121,25823840,5
+fyyksyh,25823840,4
+43628993,25823840,4
+nathan_R,25823840,2
+47041593,25823840,5
+55606165,25823840,3
+55561919,25823840,3
+60856714,25823840,5
+yuanchloe,25823840,4
+kyhero,25823840,3
+52259960,25823840,2
+dazzzhhh,25823840,4
+56181037,25823840,4
+50030620,25823840,3
+liuzelei,25823840,5
+57421635,25823840,4
+49705536,25823840,-1
+miucather,25823840,2
+aprilwind_shi,25823840,3
+samsyu,25823840,1
+derivatives,25823840,2
+Youoen,25823840,2
+Youoen,25823840,2
+lensliao,25823840,2
+SUNSAD,25823840,4
+ximutudan,25823840,3
+4432753,25823840,4
+rhea_deng,25823840,4
+3313195,25823840,4
+47810301,25823840,3
+43866584,25823840,2
+fengqingyuexia,25823840,4
+55937351,25823840,4
+CRazYBoX,25823840,4
+kokakoa,25823840,4
+chitty411,25823840,3
+fine-3-,25823840,5
+45578211,25823840,3
+75739581,25823840,4
+typhonyan,25823840,5
+wuzouhuanghun,25823840,3
+emmalove1314,25823840,5
+47692735,25823840,4
+50587917,25823840,4
+4831799,25823840,4
+53815086,25823840,4
+ann817,25823840,3
+4217386,25823840,3
+darktravelor,25823840,4
+kelvinshaw,25823840,3
+76550501,25823840,4
+lazzaro,25823840,2
+Knight9,25823840,3
+2653727,25823840,3
+38811434,25823840,2
+48046648,25823840,5
+1929758,25823840,3
+78320811,25823840,4
+echo88,25823840,2
+cocainehcl,25823840,3
+2374448,25823840,3
+tomtit,25823840,3
+wonderfulsavvy,25823840,3
+49225161,25823840,-1
+68286512,25823840,5
+70043510,25823840,1
+29844884,25823840,3
+2783573,25823840,2
+61661593,25823840,1
+119934133,25823840,4
+biao1020,25823840,4
+103180412,25823840,2
+3575164,25823840,2
+47876726,25823840,3
+zhhsbkl,25823840,3
+sunny333,25823840,4
+65308090,25823840,2
+senelu,25823840,3
+115467690,25823840,3
+42940595,25823840,4
+1631122,25823840,-1
+robinjrt,25823840,5
+81412165,25823840,3
+Alage,25823840,3
+fumihiko1985,25823840,3
+79720313,25823840,4
+56057081,25823840,3
+leekay0830,25823840,-1
+66669225,25823840,3
+63530256,25823840,4
+85562867,25823840,2
+51067589,25823840,4
+53024812,25823840,4
+2224035,25823840,3
+momo077,25823840,2
+K_kk,25823840,2
+1897420,25823840,3
+4238746,25823840,1
+57157420,25823840,3
+46699560,25823840,4
+80040060,25823840,3
+60073105,25823840,4
+demeterloveQ,25823840,3
+mrying,25823840,-1
+4421085,25823840,3
+63171651,25823840,3
+97300287,25823840,2
+88938201,25823840,3
+50233060,25823840,4
+1783337,25823840,3
+50289608,25823840,4
+50144933,25823840,3
+34805220,25823840,2
+Yuimokin,25823840,3
+78869411,25823840,4
+bearhao1976,25823840,4
+2466721,25823840,3
+xuliking,25823840,3
+58227367,25823840,1
+56281039,25823840,4
+54540243,25823840,3
+62288515,25823840,4
+43784506,25823840,2
+2265138,25823840,4
+49959307,25823840,4
+4495249,25823840,3
+terrybj,25823840,3
+crystal612,25823840,3
+1958405,25823840,3
+47739471,25823840,4
+58457804,25823840,2
+90780570,25823840,3
+64996012,25823840,3
+90941910,25823840,2
+fickKPCh,25823840,1
+rabbityinyin,25823840,-1
+119183809,25823840,3
+46669786,25823840,3
+123433215,25823840,3
+23730457,25823840,5
+30067864,25823840,5
+65723913,25823840,3
+sunziao0508,25823840,3
+C121,25823840,2
+zorrozj,25823840,3
+73627549,25823840,2
+47810404,25823840,3
+100622662,25823840,3
+108693709,25823840,2
+monkey1721,25823840,2
+ziquanzhifei,25823840,4
+75199665,25823840,3
+63612050,25823840,3
+41356238,25823840,3
+60435322,25823840,4
+givindream,25823840,4
+62178164,25823840,1
+78603515,25823840,3
+127741400,25823840,2
+63559969,25823840,3
+WSSWHL,25823840,3
+103020260,25823840,4
+mmmmiao,25823840,3
+79895962,25823840,2
+66591270,25823840,3
+1120386,25823840,3
+freedomandlove,25823840,3
+49902324,25823840,4
+69679800,25823840,3
+heyheygun,25823840,3
+yanjing7611,25823840,3
+3666019,25823840,2
+2665943,25823840,3
+3020102,25823840,3
+binin,25823840,4
+3173232,25823840,3
+60143969,25823840,3
+73948805,25823840,2
+60878801,25823840,5
+126039569,25823840,4
+2104918,25823840,2
+72251882,25823840,3
+jinjidexiong,25823840,2
+dusk.xiyang,25823840,2
+1923202,25823840,2
+46818877,25823840,4
+55925373,25823840,4
+saintage,25823840,3
+shinnodoo,25823840,3
+55822752,25823840,3
+115131162,25823840,3
+dijionnn,25823840,4
+1980246,25823840,4
+Lethe8,25823840,4
+43830625,25823840,2
+64444161,25823840,2
+GMDY,25823840,4
+78387852,25823840,3
+59012176,25823840,4
+4733255,25823840,4
+95572191,25823840,3
+zxjtmac,25823840,4
+84564093,25823840,3
+58847654,25823840,3
+1747318,25823840,3
+luhua,25823840,3
+2812420,25823840,-1
+2733941,25823840,2
+Shadowman,25823840,4
+15583757,25823840,5
+3682487,25823840,3
+68476661,25823840,2
+74766860,25823840,3
+2327781,25823840,4
+herohaha,25823840,3
+afou,25823840,4
+58289345,25823840,3
+Veronicachai,25823840,2
+ChubbyCheek,25823840,2
+75807285,25823840,3
+froggrandpa,25823840,2
+ntxjw,25823840,3
+ntxjw,25823840,3
+lady_jjj,25823840,4
+moshushi1123,25823840,4
+22930383,25823840,4
+68427539,25823840,2
+57831051,25823840,2
+12360363,25823840,4
+50752972,25823840,4
+youdianhuanjue,25823840,3
+sonia1014,25823840,1
+62559082,25823840,3
+aiconanao,25823840,3
+MonisaDuu,25823840,5
+rotowu,25823840,5
+88256583,25823840,3
+Jeromepoon,25823840,3
+68467794,25823840,2
+68332314,25823840,3
+yeskor,25823840,4
+45362948,25823840,1
+44844360,25823840,3
+39544426,25823840,2
+50040621,25823840,4
+dennycn,25823840,3
+misswatermelon,25823840,2
+50835910,25823840,2
+superseahell,25823840,3
+summerdayday,25823840,4
+52587900,25823840,3
+66168101,25823840,4
+51222575,25823840,1
+14946098,25823840,3
+FujiwaraSai,25823840,1
+nuntic,25823840,2
+49146355,25823840,3
+72361227,25823840,4
+49319217,25823840,4
+52702832,25823840,2
+62754758,25823840,3
+71648483,25823840,4
+56807111,25823840,4
+33366667,25823840,3
+59378072,25823840,4
+74951548,25823840,4
+64123295,25823840,2
+44837247,25823840,4
+76704934,25823840,3
+42096631,25823840,-1
+mylittletower,25823840,4
+caocaoa,25823840,2
+92140787,25823840,1
+52484761,25823840,3
+yukizakura,25823840,3
+92490871,25823840,3
+1319405,25823840,1
+62115196,25823840,3
+4363393,25823840,3
+62897451,25823840,3
+62383479,25823840,4
+49340336,25823840,5
+71974219,25823840,4
+56524460,25823840,3
+80466570,25823840,1
+apple-timeless,25823840,5
+GarYZuA,25823840,4
+106207289,25823840,4
+55446081,25823840,2
+essemoon,25823840,1
+5336287,25823840,2
+80726886,25823840,3
+62753939,25823840,4
+122048990,25823840,4
+schweinyu,25823840,2
+juejibinhuodao,25823840,4
+beanrobbie,25823840,3
+mossmoss,25823840,3
+62635497,25823840,2
+44778788,25823840,3
+edwardpanda,25823840,2
+kiralove00,25823840,3
+46815070,25823840,-1
+69608520,25823840,4
+52193336,25823840,3
+mklop2008,25823840,3
+62721036,25823840,4
+rsdch,25823840,4
+Emily723,25823840,-1
+60818367,25823840,1
+dixueyaxiaojie,25823840,2
+2738420,25823840,5
+4415692,25823840,3
+62217128,25823840,4
+63356616,25823840,3
+69223309,25823840,4
+69238909,25823840,5
+43853456,25823840,5
+27668778,25823840,3
+Alice-Mu,25823840,3
+76351812,25823840,3
+JohnJuniors,25823840,4
+wangxiangjiqi,25823840,3
+77592151,25823840,5
+55622350,25823840,4
+76459660,25823840,3
+61606236,25823840,2
+61775961,25823840,3
+65924681,25823840,4
+67243233,25823840,3
+1352823,25823840,4
+51777015,25823840,3
+36164981,25823840,-1
+122394659,25823840,2
+lunacake,25823840,2
+47514908,25823840,2
+3637289,25823840,5
+afasia,25823840,2
+weiaibuduideng,25823840,1
+dailypop,25823840,1
+67981371,25823840,3
+2168659,25823840,3
+josaa,25823840,2
+59268463,25823840,4
+44311860,25823840,3
+1069869,25823840,3
+3509692,25823840,2
+53717367,25823840,2
+PaPajudy,25823840,3
+75298987,25823840,4
+54754236,25823840,2
+stena,25823840,4
+lc19861226,25823840,4
+share329,25823840,4
+poepoe,25823840,3
+42646716,25823840,3
+3762146,25823840,2
+roseandwater,25823840,3
+Lylaohyeah,25823840,5
+78724440,25823840,2
+ZawadaRiiin,25823840,3
+yihaifei,25823840,3
+75666359,25823840,3
+3545976,25823840,4
+60751111,25823840,2
+37803671,25823840,3
+75790133,25823840,3
+91785401,25823840,2
+kuangren79,25823840,3
+54489877,25823840,5
+108992454,25823840,3
+cbw506021,25823840,3
+69068342,25823840,2
+9104603,25823840,3
+66502007,25823840,3
+16321180,25823840,-1
+kuangk,25823840,4
+55817097,25823840,1
+55309646,25823840,2
+57818340,25823840,4
+111461811,25823840,3
+53682563,25823840,3
+60823869,25823840,2
+2322719,25823840,3
+wanghui1979,25823840,4
+8499887,25823840,4
+dasyhiqiang,25823840,2
+71181418,25823840,2
+yigesong,25823840,1
+58391749,25823840,3
+42567950,25823840,3
+1452888,25823840,-1
+49454136,25823840,2
+jiangxu,25823840,3
+6303192,25823840,4
+48787128,25823840,2
+122124788,25823840,3
+sona302,25823840,4
+64266034,25823840,4
+maoluyang,25823840,4
+59572879,25823840,4
+orangesuan,25823840,3
+128675043,25823840,4
+oueidw,25823840,4
+hotfall,25823840,3
+28808683,25823840,4
+45459664,25823840,4
+52835573,25823840,3
+solarlion,25823840,2
+92067028,25823840,2
+88243608,25823840,3
+44175959,25823840,3
+3634776,25823840,3
+car.men,25823840,3
+xiaopang1106,25823840,3
+3656658,25823840,3
+60307076,25823840,5
+59264326,25823840,4
+80382193,25823840,3
+53107666,25823840,2
+61753215,25823840,3
+11893352,25823840,2
+81160704,25823840,5
+81016849,25823840,4
+37975199,25823840,3
+ranwei,25823840,3
+90467667,25823840,4
+51526777,25823840,4
+xiaojiaoluo1990,25823840,2
+gnepeux,25823840,4
+50663434,25823840,3
+67297999,25823840,4
+blueskyfly,25823840,3
+78389609,25823840,3
+49706708,25823840,-1
+97152342,25823840,2
+68853437,25823840,3
+dizai,25823840,5
+wolf2046,25823840,3
+52702022,25823840,3
+35076658,25823840,3
+hushibookstore,25823840,4
+GloriaBryant,25823840,3
+40511976,25823840,-1
+Joycejingtong,25823840,3
+103638490,25823840,4
+49404071,25823840,3
+fzw83035379,25823840,3
+56500125,25823840,4
+1177906,25823840,3
+58035552,25823840,1
+102823150,25823840,4
+47944291,25823840,3
+kyo_21,25823840,3
+yuedawei,25823840,2
+simphiwe_zuma,25823840,3
+41255136,25823840,3
+33177895,25823840,2
+42546446,25823840,4
+2645593,25823840,3
+65079823,25823840,2
+47230684,25823840,-1
+Bakeneko,25823840,2
+hualideweisuo,25823840,5
+mariahbfly,25823840,4
+39696481,25823840,3
+RITABMW,25823840,3
+49194390,25823840,4
+58929132,25823840,3
+more-u-are,25823840,2
+2445750,25823840,5
+2808574,25823840,2
+lovesicker,25823840,3
+wandousama,25823840,3
+allblue,25823840,3
+68138320,25823840,2
+59113427,25823840,4
+4600665,25823840,3
+4509995,25823840,4
+61877419,25823840,5
+wilder_vagrant,25823840,5
+duoxingxing,25823840,3
+43558241,25823840,4
+87118528,25823840,-1
+eitarou,25823840,1
+molyjieyi,25823840,4
+130787417,25823840,3
+4026025,25823840,3
+2111262,25823840,3
+l-duke,25823840,4
+34740477,25823840,4
+hrj21,25823840,3
+hedwig14,25823840,2
+65397076,25823840,4
+B-162,25823840,3
+64345409,25823840,4
+61467288,25823840,2
+94976163,25823840,4
+hgbcqz,25823840,2
+83433400,25823840,3
+59375457,25823840,2
+45712857,25823840,-1
+45712857,25823840,-1
+xiaosanye,25823840,3
+81870071,25823840,4
+1545634,25823840,3
+89757493,25823840,1
+43231750,25823840,4
+oriolekoh,25823840,-1
+14352801,25823840,2
+58696141,25823840,4
+alphatym,25823840,4
+paeon,25823840,4
+53429515,25823840,-1
+vivian1165,25823840,2
+53082193,25823840,2
+65724655,25823840,4
+90415514,25823840,4
+2309937,25823840,3
+liuxinyuxiao,25823840,3
+82743334,25823840,3
+56755911,25823840,3
+66698052,25823840,3
+Lou-yingying,25823840,3
+50782893,25823840,4
+dongdongqing,25823840,3
+36457443,25823840,5
+75332568,25823840,3
+qikapu,25823840,2
+68543528,25823840,2
+falsefish,25823840,3
+119487629,25823840,3
+77774632,25823840,2
+Decadeff,25823840,3
+sherryxie0805,25823840,3
+Pengjianjun,25823840,3
+46209502,25823840,4
+65162419,25823840,3
+104427009,25823840,3
+4228422,25823840,3
+nighteye1123,25823840,3
+75961162,25823840,1
+75961162,25823840,1
+datongtong,25823840,4
+yeon15,25823840,3
+83022085,25823840,2
+79858645,25823840,4
+3192065,25823840,-1
+3597938,25823840,3
+75568395,25823840,4
+jessica_joy5,25823840,2
+66766065,25823840,2
+96044338,25823840,2
+64309170,25823840,2
+songai0609,25823840,2
+niangyue,25823840,4
+41990236,25823840,3
+36352996,25823840,4
+52750268,25823840,4
+73280633,25823840,3
+1237270,25823840,5
+72191576,25823840,3
+72191576,25823840,3
+nianlu,25823840,2
+44399575,25823840,2
+34006126,25823840,3
+3944394,25823840,2
+JosephGordon,25823840,4
+Kev.Garnett,25823840,3
+62109232,25823840,3
+Arieskitty,25823840,1
+4217605,25823840,3
+QingAIAliur,25823840,3
+fjmxy,25823840,5
+59220796,25823840,3
+114353499,25823840,4
+michaelYeb,25823840,4
+64585406,25823840,1
+84530034,25823840,4
+93399266,25823840,-1
+54770734,25823840,3
+64444919,25823840,4
+4684799,25823840,3
+45305916,25823840,4
+memokun,25823840,3
+wtforz,25823840,3
+maxdoreen,25823840,2
+abc1985,25823840,3
+52597615,25823840,3
+51221372,25823840,3
+2191830,25823840,2
+64221396,25823840,3
+115782738,25823840,2
+62120599,25823840,1
+walkeri,25823840,3
+50307120,25823840,2
+dictionary13,25823840,3
+66828927,25823840,5
+57768466,25823840,3
+alft-huahua,25823840,3
+53311098,25823840,3
+48582918,25823840,4
+41403989,25823840,4
+1994712,25823840,3
+4462311,25823840,3
+ew94kmd,25823840,3
+31120990,25823840,5
+cicisj,25823840,3
+100324519,25823840,2
+aiyoushuia,25823840,3
+53021898,25823840,2
+2555357,25823840,2
+49130645,25823840,4
+41109416,25823840,3
+55292823,25823840,3
+jin811089856,25823840,3
+52902931,25823840,3
+46722209,25823840,3
+13314482,25823840,2
+34592808,25823840,4
+17990829,25823840,3
+121569446,25823840,1
+3938730,25823840,2
+47302179,25823840,3
+51515100,25823840,3
+46538324,25823840,4
+70893868,25823840,3
+36118700,25823840,5
+31335200,25823840,5
+55643387,25823840,2
+quanzhouren,25823840,3
+2062909,25823840,3
+halconnen,25823840,4
+1550135,25823840,2
+63189763,25823840,5
+81441568,25823840,2
+30852407,25823840,5
+50803160,25823840,3
+127366745,25823840,4
+30791290,25823840,3
+angela0122,25823840,3
+ishtarie,25823840,4
+ishtarie,25823840,4
+46736701,25823840,3
+67140637,25823840,4
+69594701,25823840,4
+p2165,25823840,2
+welle213,25823840,3
+47314582,25823840,3
+73949056,25823840,2
+mizimoxi,25823840,-1
+4582318,25823840,2
+43359124,25823840,2
+jiekkie,25823840,4
+59251112,25823840,3
+ohahahu,25823840,3
+84343760,25823840,2
+88127492,25823840,4
+ahuasist,25823840,3
+3874094,25823840,3
+cenwenyuan,25823840,2
+maoamao,25823840,3
+woodfishman,25823840,-1
+mouq,25823840,2
+jeasy725,25823840,4
+93866634,25823840,3
+troy521,25823840,3
+zhaogyrain,25823840,3
+willgabuta,25823840,5
+ermao_jiujiu,25823840,5
+46912263,25823840,4
+48224628,25823840,4
+4839154,25823840,2
+eaudevie,25823840,3
+79841047,25823840,2
+ruler21san,25823840,-1
+102653753,25823840,2
+masaike,25823840,3
+64089533,25823840,3
+54150368,25823840,2
+panyadie,25823840,2
+92908596,25823840,4
+92908596,25823840,4
+3592617,25823840,3
+evollove,25823840,4
+49162813,25823840,3
+mzmuxin,25823840,3
+43732485,25823840,-1
+117804515,25823840,5
+nolita527,25823840,3
+Silvia_song,25823840,4
+YYweiwancheng,25823840,4
+74899897,25823840,4
+42961895,25823840,3
+shenshanlaoma,25823840,3
+2143112,25823840,-1
+kaixian,25823840,1
+lv_shuang,25823840,2
+59471293,25823840,4
+61532678,25823840,3
+60620572,25823840,3
+43703010,25823840,3
+43703010,25823840,3
+AcrossTheClouds,25823840,3
+mengC,25823840,2
+conifer,25823840,3
+32746698,25823840,4
+53577893,25823840,3
+82391492,25823840,1
+70310265,25823840,2
+87831764,25823840,3
+bike24,25823840,2
+4366193,25823840,3
+sixeva65,25823840,4
+66148182,25823840,4
+21946696,25823840,3
+77035699,25823840,-1
+25533910,25823840,2
+ambermio,25823840,3
+4531748,25823840,3
+wnovic,25823840,3
+53585489,25823840,3
+59553409,25823840,3
+53722775,25823840,3
+81929147,25823840,4
+jifashi,25823840,2
+54655088,25823840,3
+4026585,25823840,2
+oldmanriver,25823840,-1
+78565044,25823840,4
+124421219,25823840,2
+71414997,25823840,2
+51951428,25823840,3
+yanhui1024,25823840,3
+68984410,25823840,3
+26545118,25823840,3
+Lotus,25823840,3
+27466679,25823840,4
+46310239,25823840,3
+smalldandelion,25823840,4
+87818830,25823840,3
+armitt,25823840,2
+dnarna_vicky,25823840,-1
+102200849,25823840,4
+taiyanyinke1984,25823840,3
+66340559,25823840,3
+2984695,25823840,3
+vic-huang,25823840,3
+mayacrystal,25823840,4
+72781855,25823840,3
+mercury0302,25823840,3
+57969665,25823840,3
+jingly,25823840,3
+wsqabc,25823840,3
+44182814,25823840,4
+56839601,25823840,4
+Lost_Atlantis,25823840,2
+1837285,25823840,3
+sugarsugarcane,25823840,5
+1892627,25823840,2
+camellowang,25823840,3
+Iayours,25823840,3
+Iayours,25823840,3
+poros,25823840,-1
+2087622,25823840,2
+49511491,25823840,5
+121539453,25823840,1
+fyby,25823840,3
+kfc2005,25823840,2
+seafans,25823840,2
+yvonne9254,25823840,3
+annerabbit1127,25823840,-1
+q1q1_yoci,25823840,3
+50913544,25823840,3
+susan-no-home,25823840,3
+52892284,25823840,3
+79108534,25823840,2
+wunie,25823840,1
+71561935,25823840,3
+47411441,25823840,3
+74360713,25823840,-1
+JaceJing,25823840,2
+58899603,25823840,4
+3609679,25823840,2
+49149424,25823840,3
+Nancy117,25823840,3
+104862721,25823840,5
+102521015,25823840,3
+zombiebaby,25823840,4
+53906378,25823840,4
+foxcraneleo,25823840,4
+57597976,25823840,5
+44517782,25823840,3
+juliannie,25823840,-1
+dora418,25823840,3
+72682584,25823840,1
+64064632,25823840,-1
+jyamolmiry,25823840,2
+67677954,25823840,3
+61462956,25823840,3
+68539735,25823840,3
+63422177,25823840,2
+bbass,25823840,2
+44664939,25823840,4
+princessamigo,25823840,3
+61595915,25823840,4
+59293395,25823840,5
+76153086,25823840,3
+59690413,25823840,-1
+lls719,25823840,4
+zxmushroom,25823840,3
+ChooseChange,25823840,3
+52765670,25823840,3
+70837095,25823840,4
+61465510,25823840,4
+Sophieven,25823840,3
+lightreus,25823840,3
+2987938,25823840,3
+68675383,25823840,4
+Wyl.,25823840,2
+53668796,25823840,4
+jinxinsun,25823840,3
+jinxinsun,25823840,3
+121602100,25823840,3
+80765435,25823840,4
+yiboinsisu,25823840,5
+lnss,25823840,2
+manxiaoyue,25823840,3
+newbear,25823840,3
+62843301,25823840,3
+63395542,25823840,3
+53732542,25823840,3
+daesu_u,25823840,3
+71755062,25823840,1
+4579831,25823840,3
+57407135,25823840,-1
+47873866,25823840,4
+xiarenge,25823840,-1
+45030880,25823840,3
+imcybill,25823840,3
+goodbyemyprince,25823840,2
+Gdeer,25823840,3
+91582621,25823840,4
+meimei1985,25823840,-1
+taoshixiao911,25823840,5
+12074004,25823840,3
+67125371,25823840,3
+Poisonnn,25823840,5
+73942250,25823840,3
+5800448,25823840,3
+lxzyen,25823840,3
+22991326,25823840,2
+6873140,25823840,-1
+39305452,25823840,5
+58919934,25823840,4
+28959917,25823840,2
+Just_vv,25823840,3
+60628561,25823840,4
+36877826,25823840,2
+4299425,25823840,-1
+47602699,25823840,3
+67748032,25823840,-1
+57915415,25823840,4
+I-L-Greeny,25823840,3
+31713107,25823840,4
+zymstefanieYB,25823840,3
+4313043,25823840,4
+TenkyAn,25823840,4
+pillbug,25823840,2
+51670628,25823840,2
+67736549,25823840,2
+89000705,25823840,4
+72207422,25823840,3
+66763163,25823840,4
+76790888,25823840,3
+67163006,25823840,5
+37241155,25823840,3
+78857918,25823840,-1
+foxzy5,25823840,3
+109084248,25823840,4
+banxian,25823840,3
+afterhanabinigh,25823840,3
+wanyuanhus1,25823840,2
+76626194,25823840,1
+74545384,25823840,4
+tierra,25823840,2
+67777170,25823840,3
+2315992,25823840,2
+51179062,25823840,-1
+55279877,25823840,2
+Hero14,25823840,3
+29608626,25823840,1
+amyaima,25823840,3
+1831746,25823840,3
+125281406,25823840,3
+67325426,25823840,4
+HYGUY,25823840,2
+cherrytiaotiao,25823840,3
+130960149,25823840,4
+2730322,25823840,4
+panrunni,25823840,-1
+56725355,25823840,-1
+51950051,25823840,3
+120332872,25823840,3
+caosancat,25823840,4
+55813091,25823840,3
+78977506,25823840,4
+31313042,25823840,4
+67220317,25823840,3
+78925849,25823840,3
+84868621,25823840,-1
+Mountain_mist,25823840,2
+126949865,25823840,4
+49033983,25823840,3
+3177593,25823840,1
+60871322,25823840,2
+annhyukwon,25823840,3
+57061041,25823840,4
+liverine,25823840,3
+2483011,25823840,3
+yiyedu,25823840,3
+100135816,25823840,2
+yangshishi,25823840,5
+52832781,25823840,4
+72387570,25823840,5
+Henry-Maugham,25823840,4
+meteorpop,25823840,5
+84091392,25823840,3
+1344306,25823840,3
+merchase,25823840,4
+55883774,25823840,2
+57819875,25823840,-1
+115125689,25823840,4
+4380901,25823840,3
+119157867,25823840,3
+68607460,25823840,3
+63903749,25823840,4
+87537150,25823840,2
+2912475,25823840,3
+124887489,25823840,4
+shuizhimuhua,25823840,3
+ease14,25823840,-1
+61775024,25823840,4
+110953624,25823840,3
+59263516,25823840,3
+56613176,25823840,1
+oow00u,25823840,4
+annbabyyan,25823840,-1
+76824704,25823840,3
+53920626,25823840,2
+60074125,25823840,3
+kelpthun,25823840,3
+2940018,25823840,3
+elegant619,25823840,4
+dbhungry,25823840,4
+SoniaLu-douban,25823840,5
+narsarita,25823840,-1
+70481744,25823840,4
+cllee,25823840,-1
+49848120,25823840,5
+4623210,25823840,4
+eien99999,25823840,4
+68982698,25823840,3
+yangfan0628,25823840,3
+cherrygeisha,25823840,2
+faiel,25823840,3
+65361448,25823840,4
+60201729,25823840,2
+shermie1996,25823840,1
+126200097,25823840,2
+4126419,25823840,3
+90676415,25823840,3
+68668145,25823840,3
+2238966,25823840,3
+35860055,25823840,5
+wangmei,25823840,2
+62582526,25823840,2
+1381390,25823840,3
+somehoow,25823840,2
+34309421,25823840,3
+44457357,25823840,3
+BenedictusVI,25823840,1
+2106137,25823840,3
+Fiiiiiii,25823840,1
+75723891,25823840,3
+yinleo,25823840,3
+55850316,25823840,4
+120886080,25823840,2
+ssrslydia,25823840,3
+63773233,25823840,4
+46421296,25823840,3
+63941479,25823840,2
+65391055,25823840,3
+65948631,25823840,5
+84171597,25823840,3
+61392222,25823840,3
+47193126,25823840,3
+89451365,25823840,4
+richey_,25823840,3
+56437151,25823840,3
+57249057,25823840,4
+43901390,25823840,2
+53317988,25823840,3
+61459253,25823840,1
+65116292,25823840,3
+105433262,25823840,4
+69785918,25823840,4
+Vinno22,25823840,4
+35780501,25823840,3
+incy,25823840,4
+14504992,25823840,3
+128396305,25823840,3
+25795086,25823840,3
+71434417,25823840,4
+29433181,25823840,2
+G-TOKDing,25823840,3
+53889267,25823840,1
+3949776,25823840,2
+btone0808,25823840,3
+a1b2c31221,25823840,4
+69532674,25823840,3
+44875082,25823840,4
+maruoama,25823840,3
+59390060,25823840,2
+45749483,25823840,3
+49836065,25823840,2
+49298107,25823840,3
+jiangchongzhi,25823840,4
+43751226,25823840,4
+30323984,25823840,2
+33149603,25823840,5
+25892548,25823840,4
+49104566,25823840,4
+dkjune,25823840,2
+37424688,25823840,3
+57460299,25823840,3
+mylonelytomorro,25823840,2
+120116458,25823840,3
+79822624,25823840,3
+45837126,25823840,4
+82808408,25823840,3
+PatrickK2A,25823840,4
+103214078,25823840,3
+87691265,25823840,2
+aerinthehouse,25823840,3
+42600622,25823840,-1
+56776280,25823840,2
+67572632,25823840,4
+43297511,25823840,3
+83245766,25823840,3
+59883729,25823840,4
+azil,25823840,3
+2866011,25823840,4
+126107243,25823840,3
+longqiaobo,25823840,4
+68731662,25823840,4
+102384774,25823840,3
+64143961,25823840,3
+xiubei,25823840,-1
+138206243,25823840,3
+byemirana,25823840,2
+51059175,25823840,5
+58509538,25823840,3
+CptHaddock,25823840,4
+61099860,25823840,3
+maorui,25823840,3
+ying03011224,25823840,3
+131380048,25823840,3
+Youandi4,25823840,-1
+57927830,25823840,3
+107982589,25823840,4
+137273110,25823840,2
+lijiefu007,25823840,3
+49266863,25823840,5
+5607891,25823840,3
+4568741,25823840,4
+icy1004,25823840,3
+41813819,25823840,-1
+39605411,25823840,2
+94380874,25823840,3
+6270415,25823840,3
+58759380,25823840,1
+66333721,11624706,3
+63145913,11624706,4
+64713560,11624706,3
+36416205,11624706,3
+46162055,11624706,2
+goodmorninglife,11624706,4
+waiting.u,11624706,3
+67019496,11624706,3
+shane90,11624706,4
+88262927,11624706,4
+19124466,11624706,3
+4204545,11624706,3
+64092114,11624706,5
+126209354,11624706,3
+1921019,11624706,3
+eefee,11624706,4
+83486677,11624706,3
+47857020,11624706,3
+swmzzz,11624706,5
+73766908,11624706,3
+73766908,11624706,3
+YTT_LS,11624706,4
+wenjunlwj,11624706,3
+shuai19930426,11624706,3
+97693514,11624706,4
+1574710,11624706,3
+43409918,11624706,3
+65053075,11624706,3
+2142898,11624706,3
+lolsucia,11624706,3
+5607891,11624706,3
+70552607,11624706,3
+46277073,11624706,4
+90480927,11624706,3
+60987007,11624706,5
+74106453,11624706,3
+krisleung,11624706,3
+fuyuwinter,11624706,4
+emilia1990,11624706,4
+blueviolet816,11624706,5
+51057847,11624706,3
+121362164,11624706,3
+steveliux,11624706,3
+Kittyworkhard,11624706,4
+43960066,11624706,4
+76428013,11624706,3
+50065002,11624706,3
+4624601,11624706,3
+doubleshuang,11624706,3
+42722588,11624706,5
+fmiu,11624706,4
+90983705,11624706,3
+131254424,11624706,3
+51716279,11624706,5
+jihilo,11624706,4
+1155736,11624706,3
+Daruke,11624706,4
+62585916,11624706,4
+45402904,11624706,3
+dingxuefeng0918,11624706,3
+101978260,11624706,4
+paradise624,11624706,4
+wakopa,11624706,4
+paper-airplane,11624706,4
+37212337,11624706,4
+49334857,11624706,4
+137046543,11624706,4
+46929736,11624706,3
+Ninesformrv,11624706,3
+44103412,11624706,4
+48514608,11624706,3
+stillrays_f,11624706,4
+64297776,11624706,3
+83261887,11624706,3
+55969190,11624706,5
+57024226,11624706,5
+1851027,11624706,4
+Ms.ZzZz,11624706,3
+65531183,11624706,3
+54202610,11624706,1
+136460394,11624706,3
+14891442,11624706,4
+SHDA,11624706,4
+124385874,11624706,4
+2435646,11624706,-1
+64499160,11624706,3
+137555231,11624706,3
+48056684,11624706,3
+39360207,11624706,3
+56810105,11624706,4
+yuhuaizi,11624706,3
+weakest,11624706,4
+103381846,11624706,5
+4582130,11624706,4
+65804378,11624706,2
+81589343,11624706,3
+50414826,11624706,4
+47430062,11624706,4
+65917587,11624706,4
+70759577,11624706,3
+stevense,11624706,3
+50755551,11624706,3
+121354261,11624706,3
+vanvan07,11624706,3
+49923430,11624706,3
+48335260,11624706,4
+arrowkey,11624706,4
+91713449,11624706,3
+108391256,11624706,4
+yamapibaby,11624706,4
+65137092,11624706,4
+39463332,11624706,3
+zl1237,11624706,3
+47800725,11624706,2
+2970713,11624706,3
+67467815,11624706,5
+56519940,11624706,4
+38572458,11624706,3
+3278681,11624706,4
+54270482,11624706,3
+1817565,11624706,-1
+veranannan,11624706,3
+mohemishuo,11624706,4
+137786065,11624706,4
+wuyunoy,11624706,2
+4971645,11624706,4
+49023586,11624706,4
+134525766,11624706,2
+82643605,11624706,3
+1296067,11624706,5
+103525640,11624706,5
+uniquegino,11624706,4
+135588947,11624706,3
+sunhaoxiang,11624706,5
+xsky,11624706,3
+2052146,11624706,-1
+dicky1986,11624706,4
+51927674,11624706,-1
+barontree,11624706,4
+82913743,11624706,2
+fvalentine,11624706,-1
+sandie21,11624706,4
+74215772,11624706,3
+waitthesun,11624706,4
+3654230,11624706,4
+joycema,11624706,-1
+gogonj,11624706,5
+3341865,11624706,4
+76858812,11624706,5
+33226742,11624706,4
+orderly,11624706,4
+2206615,11624706,3
+76460934,11624706,3
+laodao9527,11624706,2
+sibylwang,11624706,4
+94556650,11624706,3
+tinmiko,11624706,3
+haima8824,11624706,3
+28086665,11624706,5
+sigurros,11624706,4
+54413129,11624706,3
+58764888,11624706,4
+54866440,11624706,4
+naizhengtan,11624706,5
+fantasy1117,11624706,4
+rhodenbarr,11624706,2
+38228503,11624706,5
+iamtough,11624706,3
+annie-bean,11624706,-1
+134542917,11624706,4
+xunnn,11624706,5
+24918393,11624706,5
+85770148,11624706,4
+luoyanbella,11624706,4
+yuchenyuan,11624706,3
+77266126,11624706,4
+136096165,11624706,5
+68992474,11624706,4
+81133859,11624706,5
+81163129,11624706,2
+81163129,11624706,2
+127533482,11624706,3
+16486933,11624706,4
+nimenime,11624706,4
+yuehairong,11624706,5
+summer0706,11624706,3
+95458643,11624706,4
+55496858,11624706,5
+33158247,11624706,5
+137849195,11624706,-1
+clandia,11624706,3
+53526243,11624706,3
+97188703,11624706,2
+49900100,11624706,-1
+3410802,11624706,3
+PasS__bY,11624706,2
+Joseph_8.12,11624706,4
+86160535,11624706,4
+44587158,11624706,5
+Bryan_westtown,11624706,3
+70370638,11624706,4
+31555036,11624706,4
+62446309,11624706,3
+lolipig,11624706,4
+spaghettiss,11624706,5
+Collins1995,11624706,3
+43018283,11624706,3
+1991085,11624706,4
+58629032,11624706,3
+3864613,11624706,2
+137898837,11624706,-1
+72405316,11624706,3
+maydophin,11624706,5
+100297843,11624706,4
+45220705,11624706,4
+2161404,11624706,3
+gypsophilia,11624706,5
+Pinnsvin,11624706,-1
+10007777,11624706,4
+99119028,11624706,-1
+81507911,11624706,4
+bettersnail,11624706,-1
+39362601,11624706,4
+3028605,11624706,2
+131838063,11624706,5
+81504290,11624706,3
+78850806,11624706,3
+yoan90,11624706,3
+60010871,11624706,3
+45382410,11624706,5
+zhuyaoyao,11624706,4
+leechenger,11624706,5
+Hello.Linda,11624706,5
+CharlotteKo,11624706,4
+61707424,11624706,3
+3850532,11624706,4
+rethatevon,11624706,4
+48181580,11624706,-1
+1011562,11624706,4
+mickjoust,11624706,4
+51795664,11624706,3
+83980387,11624706,5
+lizizi,11624706,3
+cmybbbb,11624706,4
+53206696,11624706,2
+mrsmsr,11624706,3
+xuanhualiutao,11624706,2
+45025869,11624706,4
+63959089,11624706,3
+kring,11624706,4
+77403848,11624706,3
+48443053,11624706,5
+Tz0202,11624706,3
+135610064,11624706,3
+53794095,11624706,4
+beomi,11624706,5
+51053103,11624706,4
+35698262,11624706,5
+29783892,11624706,4
+134911051,11624706,3
+89804270,11624706,3
+lijianliang,11624706,3
+137800179,11624706,4
+59992323,11624706,3
+Mr_movie,11624706,-1
+59237379,11624706,5
+kyo85,11624706,2
+14628401,11624706,-1
+isnico,11624706,3
+dujianpeng,11624706,2
+bossdjy,11624706,3
+msfigaro,11624706,4
+99975380,11624706,3
+strawberry415,11624706,3
+87082148,11624706,3
+4161758,11624706,5
+MihoKomatsu,11624706,3
+65441803,11624706,-1
+99372325,11624706,3
+76866338,11624706,3
+doroink,11624706,4
+74416708,11624706,4
+137075359,11624706,4
+yeqing611,11624706,3
+Akindwoman,11624706,4
+63550302,11624706,3
+49832106,11624706,4
+125386250,11624706,5
+SPIRITUA,11624706,4
+58051077,11624706,3
+eiffel009,11624706,3
+49190092,11624706,4
+119374507,11624706,2
+3252036,11624706,4
+zhang_zhang,11624706,5
+IronCock,11624706,5
+63243620,11624706,3
+33329266,11624706,2
+chesty,11624706,3
+71792025,11624706,4
+67861218,11624706,4
+49521977,11624706,3
+1309486,11624706,4
+85084961,11624706,3
+46949718,11624706,4
+50931526,11624706,3
+62926012,11624706,4
+64023969,11624706,4
+65869294,11624706,-1
+119991897,11624706,4
+chachaa,11624706,2
+126759406,11624706,5
+tracywu0326,11624706,2
+8342264,11624706,4
+jianchen810,11624706,3
+NY.S,11624706,3
+114869711,11624706,5
+Andromedashun,11624706,-1
+88072113,11624706,3
+35986168,11624706,2
+35986168,11624706,2
+51592058,11624706,3
+3519353,11624706,3
+120566787,11624706,3
+mixdream,11624706,3
+fusk,11624706,2
+daomeideshu,11624706,3
+Serena.du,11624706,4
+4586959,11624706,2
+74145867,11624706,4
+48966304,11624706,4
+83773769,11624706,3
+59378291,11624706,3
+chenhuayang,11624706,3
+bozzvalen,11624706,5
+101017245,11624706,5
+2788446,11624706,3
+erfolgqun,11624706,1
+61879467,11624706,3
+ciciywg,11624706,3
+4434079,11624706,4
+51403238,11624706,4
+41486781,11624706,5
+EavenTao,11624706,3
+64741757,11624706,4
+129618880,11624706,3
+whdxaamark,11624706,4
+coldcall,11624706,4
+fan_tuan,11624706,3
+88532423,11624706,2
+68941642,11624706,5
+1758433,11624706,1
+14583847,11624706,3
+sunflowermay,11624706,3
+taoyataozi,11624706,4
+4733166,11624706,3
+vincent41,11624706,3
+77434550,11624706,4
+136097347,11624706,4
+87230484,11624706,3
+50698115,11624706,5
+136193935,11624706,3
+46668318,11624706,3
+xiaojingjj,11624706,3
+levin815,11624706,5
+121740137,11624706,2
+51362669,11624706,4
+71736113,11624706,4
+126842883,11624706,3
+YH222,11624706,4
+48869247,11624706,-1
+62161898,11624706,4
+74199863,11624706,4
+9491401,11624706,5
+45969996,11624706,2
+94468324,11624706,3
+sun-sun-emma,11624706,-1
+79846802,11624706,-1
+xuhaooo,11624706,5
+51445817,11624706,4
+51445817,11624706,4
+137640498,11624706,3
+53063568,11624706,3
+kongkong7,11624706,3
+JunSta,11624706,3
+60332808,11624706,3
+64716871,11624706,4
+125282375,11624706,3
+3682998,11624706,4
+63034919,11624706,-1
+68123525,11624706,4
+1760922,11624706,-1
+64069869,11624706,2
+landystar,11624706,3
+11463115,11624706,4
+49003814,11624706,2
+2593997,11624706,4
+zepwhen,11624706,5
+58487163,11624706,3
+aeb2366,11624706,4
+ibx,11624706,4
+66967732,11624706,3
+doon7,11624706,5
+missplay,11624706,3
+46767985,11624706,5
+83201171,11624706,3
+11189422,11624706,3
+93621596,11624706,2
+ryannys,11624706,3
+57925126,11624706,3
+59629580,11624706,4
+1534419,11624706,3
+41949292,11624706,4
+washing,11624706,3
+82742487,11624706,5
+135074228,11624706,5
+60746988,11624706,4
+4474468,11624706,4
+lubolin,11624706,3
+43471974,11624706,5
+60861914,11624706,3
+2590994,11624706,4
+gracegsmile,11624706,4
+57785589,11624706,3
+2652338,11624706,4
+34243551,11624706,3
+49570590,11624706,4
+67740691,11624706,3
+47743714,11624706,5
+suewss,11624706,5
+2925501,11624706,4
+137059867,11624706,4
+63063946,11624706,3
+69192844,11624706,3
+81412709,11624706,3
+2718091,11624706,4
+61754188,11624706,2
+74022856,11624706,4
+ysj,11624706,2
+qncs,11624706,4
+1032754,11624706,4
+101182611,11624706,5
+lae,11624706,4
+Bright0574,11624706,-1
+81351219,11624706,3
+77607736,11624706,4
+22074065,11624706,5
+68547609,11624706,4
+2376689,11624706,-1
+h1805331722,11624706,4
+48678826,11624706,3
+JaceJing,11624706,3
+59975190,11624706,3
+134580402,11624706,5
+126467467,11624706,4
+winnersj,11624706,4
+64751584,11624706,4
+Uatchet,11624706,5
+55529089,11624706,4
+one-spitle,11624706,3
+48163178,11624706,-1
+61506971,11624706,3
+88256455,11624706,3
+120885239,11624706,3
+funfunjoy,11624706,5
+30166860,11624706,3
+131800557,11624706,4
+58752596,11624706,5
+4200336,11624706,3
+57747110,11624706,3
+58658233,11624706,2
+97260007,11624706,-1
+ivyzhu,11624706,-1
+JEAN325,11624706,5
+fdid,11624706,2
+46968893,11624706,3
+52872697,11624706,3
+137398525,11624706,3
+72858627,11624706,4
+foun,11624706,2
+mikesun,11624706,3
+freemanlau,11624706,2
+94028247,11624706,4
+58318026,11624706,4
+56254034,11624706,3
+10277954,11624706,2
+98956225,11624706,5
+ovivio,11624706,3
+62419584,11624706,3
+46341101,11624706,3
+64332038,11624706,4
+travelpegion,11624706,4
+qiongdong,11624706,3
+y328675858,11624706,3
+suixi,11624706,2
+81941883,11624706,1
+59393765,11624706,3
+63399051,11624706,2
+47405010,11624706,4
+kero.dai,11624706,2
+45856827,11624706,3
+85223779,11624706,3
+46557102,11624706,3
+mamie88,11624706,5
+122365805,11624706,3
+62799720,11624706,5
+53477033,11624706,3
+78076129,11624706,3
+1295097,11624706,2
+luhongchuan,11624706,4
+26459598,11624706,5
+104645021,11624706,3
+81685996,11624706,4
+akitang,11624706,5
+68390155,11624706,3
+fishtheobscure,11624706,4
+3639998,11624706,3
+50478596,11624706,3
+4077370,11624706,3
+69776394,11624706,4
+BobMing,11624706,2
+jodis,11624706,4
+angelcjq,11624706,3
+71132041,11624706,5
+sue0524,11624706,4
+82075343,11624706,3
+liangtong,11624706,3
+22596190,11624706,2
+chenchensu,11624706,2
+tytyty,11624706,2
+rainhao,11624706,3
+ajang,11624706,3
+69255956,11624706,4
+130421778,11624706,4
+2162982,11624706,4
+fallinrnb,11624706,3
+64607654,11624706,3
+3306665,11624706,4
+69776981,11624706,4
+128451151,11624706,3
+1865066,11624706,4
+98954264,11624706,4
+2210223,11624706,3
+135247004,11624706,4
+133471355,11624706,3
+50097106,11624706,5
+61490761,11624706,3
+14027517,11624706,3
+gooxx,11624706,4
+54358340,11624706,4
+3000688,11624706,3
+mary2009,11624706,4
+69096076,11624706,4
+51139499,11624706,4
+35967033,11624706,4
+136714687,11624706,5
+jermen,11624706,3
+122274250,11624706,4
+52887592,11624706,3
+1956404,11624706,5
+mollymouth,11624706,-1
+43982125,11624706,4
+3646602,11624706,3
+xingxin6,11624706,3
+Doctory,11624706,4
+48467281,11624706,3
+73319989,11624706,3
+116271293,11624706,5
+alexda1da2da3,11624706,4
+122738024,11624706,4
+hildasu,11624706,4
+88658178,11624706,3
+45177549,11624706,3
+3801481,11624706,5
+45797451,11624706,3
+ecane,11624706,2
+4323578,11624706,1
+Shynezzrui,11624706,4
+4679551,11624706,2
+68549464,11624706,4
+68549464,11624706,4
+52469578,11624706,3
+64060154,11624706,4
+46068341,11624706,4
+71778727,11624706,3
+137347852,11624706,4
+48973217,11624706,2
+2767001,11624706,3
+136489190,11624706,5
+107911126,11624706,4
+2586114,11624706,3
+66937674,11624706,5
+126959230,11624706,5
+33020235,11624706,3
+4620614,11624706,3
+77319228,11624706,3
+67976989,11624706,4
+40623897,11624706,4
+66572171,11624706,-1
+ciseibian,11624706,3
+ciseibian,11624706,3
+Vanessa.,11624706,3
+43395025,11624706,3
+bhg,11624706,3
+53349812,11624706,5
+A-Marvin-T,11624706,3
+62298442,11624706,3
+istrangers,11624706,3
+136971594,11624706,4
+onlyblue16,11624706,3
+49552014,11624706,3
+lagrandeillusio,11624706,4
+56431276,11624706,2
+compauline1010,11624706,3
+62699217,11624706,3
+62745677,11624706,3
+68917720,11624706,3
+77233451,11624706,3
+66620661,11624706,5
+whereru,11624706,4
+60072437,11624706,3
+51504042,11624706,5
+29958349,11624706,3
+69546299,11624706,4
+ireneirene1990,11624706,4
+JW_taoY,11624706,3
+brad_tsye,11624706,2
+82914758,11624706,5
+4361353,11624706,4
+137244622,11624706,5
+48711534,11624706,3
+westleaf,11624706,4
+51158611,11624706,-1
+doral11,11624706,2
+allahking,11624706,4
+102901525,11624706,3
+113404948,11624706,3
+135675840,11624706,2
+49445106,11624706,1
+79092004,11624706,4
+guppyfish,11624706,3
+64585406,11624706,4
+kiyono9,11624706,3
+57438535,11624706,4
+cloudy47,11624706,3
+81628425,11624706,2
+crainmax,11624706,2
+136409582,11624706,3
+oOUmi,11624706,3
+64345037,11624706,4
+wakaka1986,11624706,4
+ravingrabbid,11624706,4
+62371973,11624706,5
+51210267,11624706,4
+136156775,11624706,2
+120461858,11624706,3
+113582401,11624706,4
+justyiye,11624706,-1
+68989213,11624706,3
+87498473,11624706,4
+125200763,11624706,-1
+45162443,11624706,4
+86138741,11624706,4
+125655628,11624706,3
+colorwind,11624706,3
+aime30,11624706,3
+125151032,11624706,4
+47037959,11624706,5
+skyline0623,11624706,3
+44990923,11624706,3
+beyongchenlong,11624706,4
+ly_1218,11624706,1
+Xingda,11624706,4
+40166841,11624706,4
+sparkylee,11624706,2
+47852349,11624706,3
+71150988,11624706,5
+57824649,11624706,1
+34739546,11624706,3
+60736257,11624706,4
+60736257,11624706,4
+137004271,11624706,3
+momojenny,11624706,3
+oasis1987915,11624706,3
+2416285,11624706,3
+136454222,11624706,2
+49081343,11624706,3
+134417369,11624706,4
+17432337,11624706,2
+131412359,11624706,4
+75048470,11624706,3
+33775213,11624706,4
+Fomy,11624706,3
+59982291,11624706,4
+3818284,11624706,2
+88033603,11624706,4
+Bonnie9562,11624706,4
+80327675,11624706,4
+136974711,11624706,3
+130567322,11624706,3
+120272196,11624706,1
+everlastingEGO,11624706,2
+70996341,11624706,2
+115496664,11624706,4
+kjjane,11624706,3
+68241844,11624706,-1
+67759095,11624706,3
+73946835,11624706,4
+zhuzhenning,11624706,4
+chenweikeke,11624706,-1
+83899962,11624706,3
+127119228,11624706,3
+74329329,11624706,5
+123112465,11624706,3
+137206904,11624706,4
+49434419,11624706,4
+xuanyushuo,11624706,3
+Oil,11624706,4
+huamogu,11624706,5
+120135948,11624706,3
+120135948,11624706,3
+102108363,11624706,3
+45340658,11624706,5
+6260234,11624706,4
+57562576,11624706,3
+58580494,11624706,4
+62132064,11624706,4
+48998348,11624706,4
+28313985,11624706,5
+carboot,11624706,3
+83119838,11624706,5
+pegsnow,11624706,4
+joy4,11624706,4
+christineye,11624706,3
+123228313,11624706,4
+45890616,11624706,3
+67031001,11624706,2
+115555926,11624706,5
+haojvv,11624706,4
+64717864,11624706,4
+davetw,11624706,5
+55573490,11624706,5
+jeansgarden,11624706,4
+63253187,11624706,4
+lstarss,11624706,3
+128102502,11624706,5
+36930708,11624706,4
+2417136,11624706,4
+85951065,11624706,3
+137061387,11624706,4
+xingren912,11624706,3
+125373467,11624706,5
+45268716,11624706,4
+60764482,11624706,-1
+54441804,11624706,3
+68666528,11624706,3
+Moyuyu111,11624706,4
+jofanie,11624706,5
+Sunray0807,11624706,3
+reyico,11624706,4
+Ildf,11624706,4
+iammagic,11624706,4
+125760534,11624706,3
+70313784,11624706,3
+68629139,11624706,3
+skyisquiet,11624706,3
+43871044,11624706,3
+134258996,11624706,4
+on1ooker,11624706,3
+36537385,11624706,3
+124848293,11624706,3
+55887072,11624706,3
+45261657,11624706,2
+hrhy1976,11624706,4
+1461112,11624706,4
+38808960,11624706,3
+71205725,11624706,4
+s-h-eet,11624706,2
+4448227,11624706,3
+apple-dudu,11624706,3
+silviaxy816,11624706,4
+58215137,11624706,2
+130419426,11624706,3
+135850955,11624706,3
+4748258,11624706,3
+65025231,11624706,3
+lingdongling,11624706,-1
+59583944,11624706,-1
+62705311,11624706,3
+lowbroadway,11624706,-1
+61681574,11624706,4
+120162602,11624706,5
+y1991513,11624706,5
+131205877,11624706,4
+51290521,11624706,3
+houmengdie,11624706,2
+127757365,11624706,4
+108198970,11624706,4
+88345829,11624706,3
+73416424,11624706,5
+49838718,11624706,4
+dawanzi_c,11624706,5
+47163180,11624706,3
+55399562,11624706,4
+4469134,11624706,3
+4115756,11624706,4
+Qixiaoqiang,11624706,3
+137061783,11624706,5
+3855619,11624706,3
+103271136,11624706,3
+100132122,11624706,4
+43864936,11624706,2
+5237003,11624706,2
+wendycampbell,11624706,3
+4113112,11624706,5
+76824704,11624706,4
+131186363,11624706,2
+112725692,11624706,5
+59163778,11624706,3
+48094617,11624706,3
+112727402,11624706,4
+1524737,11624706,3
+73868761,11624706,1
+3264232,11624706,3
+hyacinthiris,11624706,3
+48335787,11624706,2
+90115301,11624706,4
+57761897,11624706,2
+56095656,11624706,3
+76327951,11624706,5
+68881946,11624706,5
+50410160,11624706,3
+50255025,11624706,3
+jijillwang,11624706,3
+53300404,11624706,1
+SOPHYSUN,11624706,-1
+65496704,11624706,3
+123220825,11624706,4
+58503450,11624706,4
+4545627,11624706,4
+jianbrother,11624706,3
+3003736,11624706,4
+136274462,11624706,5
+ingie,11624706,4
+127111031,11624706,4
+1689067,11624706,5
+wendu0909,11624706,3
+79820861,11624706,4
+laotao,11624706,3
+37784979,11624706,3
+43858158,11624706,4
+2772927,11624706,3
+43842293,11624706,4
+maobowen,11624706,4
+123277373,11624706,4
+136910570,11624706,4
+134271856,11624706,3
+80781412,11624706,4
+ilovehotcoffee,11624706,-1
+99940075,11624706,3
+4789722,11624706,3
+xuyansong,11624706,3
+AlphaScan,11624706,4
+66845875,11624706,4
+80554420,11624706,3
+DansMonile,11624706,4
+26655727,11624706,4
+71078758,11624706,5
+Joan_J,11624706,3
+136912286,11624706,3
+danaebirds,11624706,5
+61883535,11624706,5
+130445057,11624706,3
+hua621321,11624706,3
+57697460,11624706,4
+60304820,11624706,4
+13631484,11624706,3
+130580816,11624706,3
+suiffeng0504,11624706,5
+3074747,11624706,3
+3074747,11624706,3
+pengpengyue,11624706,4
+48589119,11624706,4
+ADmoviemtime,11624706,3
+2404115,11624706,3
+hidemyhead,11624706,4
+yincesc,11624706,3
+36390210,11624706,4
+60585416,11624706,3
+zchvera,11624706,-1
+127313933,11624706,3
+84544522,11624706,4
+67509576,11624706,1
+47659966,11624706,5
+119079844,11624706,3
+136333363,11624706,2
+78198155,11624706,2
+6793669,11624706,3
+zxyang,11624706,2
+1098294,11624706,2
+54443287,11624706,4
+lynchor,11624706,3
+131445124,11624706,4
+2234216,11624706,2
+78906906,11624706,3
+junoqi,11624706,5
+2493346,11624706,-1
+122889599,11624706,4
+40312304,11624706,1
+53561667,11624706,3
+jinsongjianren,11624706,4
+35261395,11624706,3
+hanhanq,11624706,4
+49495441,11624706,3
+73476943,11624706,1
+120931613,11624706,5
+132395688,11624706,3
+leechambo,11624706,3
+49576050,11624706,3
+honey10151106,11624706,3
+136245098,11624706,4
+122949105,11624706,3
+4446932,11624706,3
+121195542,11624706,5
+iamliving,11624706,4
+54237869,11624706,3
+4373936,11624706,3
+116908080,11624706,2
+133860777,11624706,3
+134625303,11624706,3
+34305909,11624706,3
+15668115,11624706,3
+yangruozheng,11624706,4
+tata419,11624706,4
+128675043,11624706,3
+yaoliu,11624706,4
+shikechen,11624706,4
+68585121,11624706,3
+boogeyman,11624706,4
+136765411,11624706,4
+fmxiaofei,11624706,3
+21606016,11624706,4
+67668223,11624706,-1
+82729736,11624706,4
+siyannnn,11624706,3
+78668658,11624706,4
+84706587,11624706,4
+3546937,11624706,4
+iamsbp,11624706,4
+90543489,11624706,4
+lamianaiai,11624706,3
+7605327,11624706,1
+flyingwhale,11624706,2
+Rolin,11624706,3
+50005438,11624706,4
+62013752,11624706,5
+renxinn,11624706,3
+67176964,11624706,2
+76589411,11624706,5
+54715138,11624706,2
+51405185,11624706,3
+129002163,11624706,3
+45925638,11624706,-1
+50785660,11624706,5
+54323000,11624706,3
+2078402,11624706,4
+58205969,11624706,5
+64266034,11624706,5
+4632833,11624706,3
+79352949,11624706,3
+1707563,11624706,3
+93907270,11624706,5
+aspoon,11624706,5
+duklyon1983,11624706,3
+pacifica,11624706,4
+2761282,11624706,4
+freeup157,11624706,2
+4324027,11624706,5
+3129978,11624706,2
+43271380,11624706,5
+51390172,11624706,4
+4162948,11624706,3
+Elinna0525,11624706,5
+63454014,11624706,3
+65303828,11624706,2
+68314541,11624706,4
+79237255,11624706,4
+134476648,11624706,5
+1981762,11624706,4
+37959469,11624706,2
+91912832,11624706,3
+raeji,11624706,4
+35578162,11624706,4
+87353422,11624706,4
+107594537,11624706,3
+piaoyull,11624706,3
+50249730,11624706,4
+50730385,11624706,4
+62607131,11624706,4
+4065013,11624706,-1
+xuyuansundae,11624706,3
+136671375,11624706,5
+flora1201,11624706,-1
+131678685,11624706,5
+75034696,11624706,4
+yuan-wang,11624706,4
+48089294,11624706,5
+maoamaoa,11624706,1
+yuuka0765,11624706,3
+49218440,11624706,3
+36621771,11624706,3
+m155pappyWh0,11624706,5
+yttx,11624706,4
+51935302,11624706,3
+EMOROAM,11624706,3
+69326188,11624706,3
+25676059,11624706,4
+136857424,11624706,4
+46565536,11624706,4
+49985202,11624706,4
+49985202,11624706,4
+136019111,11624706,3
+66934395,11624706,4
+136826257,11624706,3
+104764228,11624706,5
+sunlinght,11624706,3
+4464633,11624706,4
+53742648,11624706,4
+50249739,11624706,4
+134079617,11624706,4
+48566494,11624706,3
+50817761,11624706,3
+58061236,11624706,4
+14479133,11624706,4
+w2jmoe,11624706,3
+47047251,11624706,1
+4668252,11624706,3
+100710908,11624706,4
+zhouxuan,11624706,4
+Coldon,11624706,-1
+goldenslumber,11624706,3
+54925658,11624706,3
+xiaoshuiliuqiao,11624706,3
+liudiudiu,11624706,4
+63568126,11624706,3
+135906739,11624706,4
+4563034,11624706,4
+119288592,11624706,4
+Nur,11624706,4
+58575244,11624706,2
+dabyrowe,11624706,3
+ypppp,11624706,3
+38103612,11624706,4
+110565024,11624706,3
+t-chen,11624706,3
+128760790,11624706,4
+97645479,11624706,4
+83184870,11624706,5
+MilkyWayH,11624706,3
+kiethope,11624706,3
+47186001,11624706,3
+dreamer629,11624706,3
+135739193,11624706,4
+78757579,11624706,3
+8792564,11624706,4
+miaommiki,11624706,4
+58829197,11624706,4
+65178670,11624706,3
+68580898,11624706,3
+136510389,11624706,3
+2009298,11624706,4
+46133817,11624706,3
+43921829,11624706,4
+39544151,11624706,3
+59172571,11624706,5
+133549553,11624706,4
+51636486,11624706,3
+easyfeel,11624706,4
+65976416,11624706,5
+81102769,11624706,3
+63443426,11624706,4
+lsadalin,11624706,5
+lvmeansdonkey,11624706,3
+64110948,11624706,4
+4251816,11624706,2
+136754802,11624706,4
+47218974,11624706,3
+63277654,11624706,3
+4075628,11624706,2
+66897207,11624706,3
+kingsitcome,11624706,2
+13424583,11624706,4
+3966971,11624706,4
+79515371,11624706,3
+blue1997,11624706,4
+miyaM,11624706,4
+torreslee,11624706,4
+47768622,11624706,4
+50600067,11624706,3
+1892420,11624706,5
+3338302,11624706,3
+weimengxiao,11624706,4
+58549515,11624706,4
+WDGT,11624706,3
+47100012,11624706,3
+candiceevans,11624706,5
+tutudance,11624706,4
+tofrom,11624706,1
+136638970,11624706,5
+64035088,11624706,3
+2756953,11624706,4
+1364563,11624706,3
+imoviemaker,11624706,4
+42650469,11624706,3
+60768165,11624706,3
+64009809,11624706,4
+sirroy,11624706,4
+sisyphos,11624706,3
+4010095,11624706,3
+41294098,11624706,4
+41294098,11624706,4
+sidneybig,11624706,2
+43891940,11624706,3
+lqloveyozoh,11624706,-1
+57937486,11624706,4
+77222475,11624706,4
+121780577,11624706,4
+shijinqi,11624706,3
+42298202,11624706,3
+102356757,11624706,2
+2334495,11624706,-1
+57577352,11624706,3
+135042340,11624706,3
+81363781,11624706,3
+75288450,11624706,4
+51651483,11624706,3
+4136302,11624706,5
+echo520f1,11624706,4
+65635790,11624706,3
+X-forest,11624706,2
+51041248,11624706,4
+green912,11624706,3
+68149806,11624706,4
+72276993,11624706,4
+3116272,11624706,3
+newzaiku,11624706,-1
+xiaoshan0201,11624706,4
+48096896,11624706,3
+44832442,11624706,3
+tony07monkey,11624706,5
+136744877,11624706,4
+32653092,11624706,3
+49552465,11624706,3
+OneiLulu,11624706,2
+44105688,11624706,3
+53769380,11624706,4
+50597852,11624706,4
+134730691,11624706,4
+53988209,11624706,3
+wt1112,11624706,-1
+wt1112,11624706,-1
+Sophieless,11624706,-1
+56258332,11624706,5
+YiShine,11624706,3
+62513276,11624706,-1
+hengyueofapril,11624706,3
+ORBR,11624706,3
+68542419,11624706,3
+chinriya,11624706,2
+45846589,11624706,3
+annewu1987,11624706,4
+42144253,11624706,4
+75344428,11624706,3
+haire43,11624706,5
+1297671,11624706,2
+65236397,11624706,4
+4415376,11624706,3
+Sparta233,11624706,2
+gexiaohan,11624706,4
+100939284,11624706,3
+40395158,11624706,3
+71416831,11624706,-1
+48503456,11624706,5
+75086193,11624706,3
+70894278,11624706,2
+mydream_allblue,11624706,4
+EmmaChow,11624706,4
+alei7774,11624706,4
+44013526,11624706,3
+53800868,11624706,3
+134574897,11624706,3
+83981496,11624706,3
+64667821,11624706,4
+52883078,11624706,4
+130054425,11624706,3
+47963545,11624706,4
+LXH88888888,11624706,5
+119850013,11624706,4
+yolanda_w,11624706,3
+75721226,11624706,3
+75721226,11624706,3
+1921806,11624706,2
+we_are_Smug,11624706,4
+saky,11624706,3
+wangys82,11624706,4
+oscarknvb,11624706,4
+63547769,11624706,5
+mojian,11624706,4
+39975348,11624706,2
+1831157,11624706,4
+jinggo,11624706,3
+69739114,11624706,4
+48664391,11624706,3
+1909194,11624706,4
+xchen5,11624706,3
+auntiejuno,11624706,5
+andy5,11624706,4
+idaisylife,11624706,4
+39771066,11624706,4
+64132743,11624706,4
+64132743,11624706,4
+70967069,11624706,3
+136364437,11624706,3
+136673934,11624706,3
+2385262,11624706,3
+125428809,11624706,1
+vfish,11624706,3
+StokisWatson,11624706,3
+83387474,11624706,5
+87758868,11624706,3
+43062061,11624706,4
+48938261,11624706,4
+31849844,11624706,3
+1569021,11624706,3
+92953634,11624706,5
+136667671,11624706,3
+wade,11624706,3
+136666408,11624706,1
+laura13,11624706,-1
+136523517,11624706,1
+42049587,11624706,4
+41487335,11624706,5
+84060429,11624706,3
+43308521,11624706,4
+3318502,11624706,4
+42128136,11624706,3
+wsyuaiai,11624706,3
+124602530,11624706,3
+angelliujiayun,11624706,4
+103016546,11624706,2
+54613104,11624706,3
+112126305,11624706,3
+secretsoda,11624706,4
+70588269,11624706,4
+toffee.A,11624706,4
+Gengxiaolele,11624706,4
+8447509,11624706,5
+shuoshuochong,11624706,4
+89792617,11624706,5
+edgeyeung,11624706,4
+erbility,11624706,3
+47152561,11624706,3
+54139363,11624706,4
+121557775,11624706,3
+imtf521,11624706,4
+136252307,11624706,3
+46238099,11624706,3
+66601327,11624706,4
+52484368,11624706,3
+37495463,11624706,3
+conyichiya,11624706,4
+40995885,11624706,3
+1061597,11624706,4
+Lotus511,11624706,4
+64750790,11624706,3
+3704222,11624706,3
+64465114,11624706,2
+47095353,11624706,4
+2814849,11624706,4
+66277108,11624706,2
+66277108,11624706,2
+55993143,11624706,3
+soildsnake,11624706,2
+53283120,11624706,3
+kidozz,11624706,3
+74115192,11624706,3
+3092747,11624706,3
+47837056,11624706,3
+55626118,11624706,4
+3254520,11624706,3
+125282020,11624706,2
+52750876,11624706,3
+2987938,11624706,3
+58983340,11624706,5
+SilviaVicky1995,11624706,3
+79739756,11624706,5
+31316457,11624706,5
+sakuras1412,11624706,-1
+longlee0622,11624706,3
+36413097,11624706,3
+yumanre,11624706,2
+stardust1900,11624706,3
+elvawang,11624706,3
+35224934,11624706,3
+bzfdu,11624706,4
+OnlyCoffee,11624706,4
+FilmYan,11624706,3
+coolfax,11624706,5
+1658796,11624706,3
+3884732,11624706,5
+byzod,11624706,3
+70202233,11624706,4
+50668923,11624706,4
+43416259,11624706,3
+2622237,11624706,4
+yihengxi,11624706,3
+1101928,11624706,3
+67205440,11624706,4
+wangyi_0117,11624706,-1
+mitdudu,11624706,5
+49929215,11624706,3
+93242497,11624706,4
+45789849,11624706,3
+lumen,11624706,4
+47045725,11624706,5
+seeyouaa,11624706,4
+KyoQueen,11624706,3
+1998991,11624706,4
+chewin,11624706,4
+nengyinyibeiwu,11624706,3
+SK8_frank,11624706,4
+60352980,11624706,3
+ines0724,11624706,4
+zhudasu,11624706,3
+2164915,11624706,-1
+sugerlovingyou,11624706,3
+sophiaforfree,11624706,3
+58927688,11624706,3
+42560232,11624706,3
+32475683,11624706,3
+114617164,11624706,4
+tsubomi_sun,11624706,3
+74471598,11624706,3
+136607252,11624706,4
+47475734,11624706,3
+85423911,11624706,3
+135774638,11624706,4
+55561510,11624706,4
+64976267,11624706,4
+4295298,11624706,4
+84750944,11624706,4
+76413878,11624706,2
+83297028,11624706,5
+131804706,11624706,2
+64326954,11624706,3
+93208688,11624706,4
+1457201,11624706,3
+68759948,11624706,4
+136593943,11624706,3
+sona302,11624706,2
+61944030,11624706,3
+28345745,11624706,3
+84718161,11624706,3
+1077635,11624706,3
+47292684,11624706,4
+qingyelingfeng,11624706,3
+52243098,11624706,3
+Zoe-MU,11624706,4
+42646716,11624706,3
+gyn6biggun,11624706,4
+3502559,11624706,3
+2432383,11624706,2
+haruka87,11624706,4
+DTShow,11624706,4
+fish_peanut,11624706,3
+72431740,11624706,2
+elinorshen,11624706,4
+ooolinda,11624706,3
+vera0902,11624706,2
+47840172,11624706,3
+83268589,11624706,5
+nicdone,11624706,3
+shinaya,11624706,4
+huangzhn,11624706,3
+wjwclever,11624706,2
+Brenda_Chan,11624706,3
+63509644,11624706,2
+135349165,11624706,3
+59878626,11624706,4
+74589582,11624706,4
+84517047,11624706,3
+57471580,11624706,5
+58783502,11624706,4
+34821395,11624706,-1
+tonytina,11624706,5
+59203729,11624706,4
+jiushigesuren,11624706,3
+127397854,11624706,5
+6961043,11624706,4
+mumucha,11624706,2
+71861591,11624706,3
+59027708,11624706,4
+120764499,11624706,5
+ganwunv,11624706,5
+125455262,11624706,3
+78689518,11624706,4
+46370067,11624706,2
+1380354,11624706,3
+135882446,11624706,2
+33693061,11624706,2
+63493367,11624706,5
+87902611,11624706,-1
+130952703,11624706,3
+parala,11624706,4
+75667669,11624706,2
+CloudRiver,11624706,4
+66844504,11624706,3
+53518939,11624706,3
+80715685,11624706,5
+Aidaner,11624706,3
+49949826,11624706,4
+UC0083,11624706,3
+56139397,11624706,4
+xiaoshuogege,11624706,3
+keke729,11624706,4
+micky_619,11624706,2
+47346958,11624706,3
+jtaiyang,11624706,3
+evara77,11624706,4
+ageha8878,11624706,5
+58485268,11624706,5
+jhkhjkg,11624706,5
+windson7,11624706,3
+65173505,11624706,5
+52606660,11624706,4
+51856482,11624706,3
+41842523,11624706,2
+32463016,11624706,4
+shine495_,11624706,5
+81198978,11624706,-1
+62861526,11624706,5
+3759585,11624706,3
+106570148,11624706,3
+lemed,11624706,3
+26461987,11624706,3
+kysen,11624706,5
+AuZeonFung,11624706,4
+dsqingdao,11624706,-1
+2808574,11624706,4
+moonlightshit,11624706,3
+129274650,11624706,3
+12573860,11624706,4
+Stanleyhai,11624706,3
+lvshanqiang,11624706,4
+54119533,11624706,5
+yejiuyi,11624706,4
+Zizou_Vam,11624706,2
+103297087,11624706,4
+1442531,11624706,4
+3972045,11624706,3
+samra,11624706,3
+52091489,11624706,3
+70932292,11624706,4
+31640275,11624706,3
+71905329,11624706,5
+71335687,11624706,3
+65345941,11624706,5
+63322339,11624706,5
+82245250,11624706,5
+3993233,11624706,2
+61229226,11624706,3
+1460780,11624706,4
+69187139,11624706,4
+84309321,11624706,3
+57444454,11624706,3
+135949040,11624706,4
+29126479,11624706,4
+2099374,11624706,3
+jeanann,11624706,3
+inout,11624706,3
+tcheng,11624706,5
+xiaopang1106,11624706,3
+49712271,11624706,3
+108451433,11624706,3
+135634294,11624706,3
+OshimaWatson,11624706,4
+57402036,11624706,4
+65078128,11624706,3
+59408878,11624706,3
+52656841,11624706,4
+sabina0116,11624706,-1
+94976751,11624706,2
+foleyfan,11624706,4
+maerdaifu,11624706,4
+131619623,11624706,4
+53980581,11624706,2
+134156029,11624706,3
+daran-,11624706,4
+pbc0615,11624706,3
+53345657,11624706,3
+72191576,11624706,5
+74641801,11624706,4
+poochai,11624706,4
+ChangeQ,11624706,4
+131147743,11624706,3
+56975242,11624706,3
+82917732,11624706,4
+59043123,11624706,4
+136429512,11624706,4
+58547901,11624706,4
+cjjeff,11624706,3
+ruyibuzairuyi,11624706,3
+sisley-,11624706,4
+35282603,11624706,3
+81666344,11624706,4
+55354703,11624706,4
+Tea1116.,11624706,4
+59235428,11624706,5
+136291795,11624706,3
+134076104,11624706,3
+80658200,11624706,5
+127466089,11624706,3
+62855309,11624706,4
+4111457,11624706,2
+musicide,11624706,3
+zhaozhaolv,11624706,3
+130648493,11624706,3
+134588423,11624706,2
+51784561,11624706,3
+59538070,11624706,5
+61492149,11624706,2
+136199952,11624706,4
+songsida,11624706,2
+68454681,11624706,4
+51933689,11624706,4
+54064610,11624706,5
+67184394,11624706,2
+49137650,11624706,3
+majormaureen,11624706,4
+61602134,11624706,3
+pppretty,11624706,4
+64820636,11624706,2
+96336225,11624706,3
+87410268,11624706,5
+65695073,11624706,1
+ensi,11624706,2
+75333690,11624706,4
+30158344,11624706,5
+128409852,11624706,3
+52088164,11624706,3
+LyleWang,11624706,3
+light0829,11624706,5
+23881938,11624706,3
+131358078,11624706,4
+braunschweigen,11624706,3
+3495111,11624706,3
+OrangeWeiei,11624706,4
+1145937,11624706,3
+121602316,11624706,3
+sunnyleaves,11624706,3
+80859927,11624706,5
+inrelief,11624706,4
+orangeT,11624706,2
+34005046,11624706,5
+92900392,11624706,3
+lear7,11624706,4
+98985063,11624706,3
+84418105,11624706,-1
+56976495,11624706,3
+zqdouban,11624706,2
+135580696,11624706,3
+2426372,11624706,3
+90967085,11624706,5
+db924519251,11624706,3
+46398519,11624706,4
+49854579,11624706,3
+3941641,11624706,3
+qianjin,11624706,4
+rikko,11624706,4
+cyg,11624706,3
+47193126,11624706,3
+135751000,11624706,4
+49148882,11624706,2
+68800261,11624706,3
+64826972,11624706,3
+x1ngstar,11624706,3
+azuremoon0118,11624706,-1
+53316406,11624706,3
+peyman,11624706,3
+37667663,11624706,4
+yixiaoyan_,11624706,5
+MightyAtom,11624706,3
+william_fung,11624706,4
+2401613,11624706,3
+132839401,11624706,2
+114115384,11624706,3
+58340906,11624706,5
+2387705,11624706,5
+74693421,11624706,3
+62169194,11624706,4
+57137451,11624706,4
+125040121,11624706,2
+lollipopwyj,11624706,3
+102791213,11624706,3
+TERRYBEAR,11624706,2
+zech,11624706,4
+3969292,11624706,3
+54351544,11624706,4
+115714696,11624706,4
+badapple,11624706,5
+63170647,11624706,3
+henry2004,11624706,4
+121146638,11624706,4
+67992127,11624706,5
+49953053,11624706,3
+68622477,11624706,3
+DKfeixiang,11624706,4
+45754818,11624706,3
+1885523,11624706,2
+50416946,11624706,5
+zhuzaixuanyabia,11624706,2
+51297703,11624706,3
+50516384,11624706,2
+lostgraduate,11624706,3
+58064743,11624706,3
+cy7,11624706,-1
+65084443,11624706,3
+tangmm,11624706,3
+114733320,11624706,5
+4858389,11624706,4
+3307476,11624706,4
+45755121,11624706,4
+2294404,11624706,3
+74513536,11624706,4
+121318701,11624706,4
+3501606,11624706,3
+68076968,11624706,2
+pvo,11624706,3
+116614076,11624706,3
+3139782,11624706,3
+81283209,11624706,4
+duckt,11624706,2
+62499348,11624706,-1
+Xsoda,11624706,3
+yyangle,11624706,5
+rainloveyy,11624706,3
+132954430,11624706,4
+91162618,11624706,5
+52606273,11624706,3
+tea123,11624706,3
+56487740,11624706,5
+dhlingchi,11624706,2
+93023839,11624706,4
+41396729,11624706,3
+49583310,11624706,3
+49748372,11624706,5
+53303336,11624706,3
+icecream308,11624706,4
+TOXIMUS,11624706,3
+3034073,11624706,5
+3034073,11624706,5
+134930896,11624706,4
+51064764,11624706,5
+134726224,11624706,-1
+43127616,11624706,3
+tianchuan,11624706,3
+2917441,11624706,3
+xiaojiongxia,11624706,3
+70924936,11624706,3
+76364366,11624706,4
+135802167,11624706,4
+oracle218,11624706,3
+18628004,11624706,4
+86955055,11624706,3
+134345540,11624706,-1
+northernlights,11624706,3
+46667318,11624706,3
+32502933,11624706,3
+113552306,11624706,3
+Lyn.L.Lee,11624706,3
+eric-ma,11624706,5
+62871612,11624706,4
+120263854,11624706,3
+43869534,11624706,3
+32727331,11624706,3
+amytsai,11624706,3
+juve_vidal23,11624706,4
+kristenxin,11624706,4
+linayan,11624706,3
+bankeed,11624706,4
+32094199,11624706,4
+81539455,11624706,5
+lfz,11624706,4
+38884692,11624706,2
+1105862,11624706,3
+Mounail,11624706,4
+cof-island,11624706,3
+16824263,11624706,2
+45312368,11624706,3
+amyammy,11624706,3
+129764944,11624706,3
+Jessiecutie,11624706,-1
+57843938,11624706,4
+68029503,11624706,4
+Matchamario,11624706,5
+121595559,11624706,3
+41086018,11624706,4
+jennystar,11624706,3
+shaoraul,11624706,4
+pantuwang,11624706,4
+50023999,11624706,3
+alabataille,11624706,4
+44537605,11624706,4
+68596231,11624706,2
+102348144,11624706,3
+bbloveff,11624706,2
+56143102,11624706,5
+58513319,11624706,4
+xylor,11624706,3
+123252296,11624706,4
+50603894,11624706,5
+60773482,11624706,4
+52305274,11624706,3
+59221485,11624706,5
+134867156,11624706,5
+nining,11624706,2
+110392919,11624706,3
+55835825,11624706,3
+50782612,11624706,3
+funnyfoxydy,11624706,3
+39520405,11624706,3
+tt1426,11624706,4
+freewhao,11624706,3
+balabara,11624706,5
+3208300,11624706,3
+51379336,11624706,2
+Anjue,11624706,2
+131993570,11624706,4
+hikarulea,11624706,3
+1385012,11624706,5
+zc_726,11624706,3
+79846050,11624706,4
+anix,11624706,5
+36008300,11624706,3
+36825112,11624706,4
+hecategk,11624706,3
+40139547,11624706,1
+47823442,11624706,5
+3646381,11624706,3
+122855833,11624706,3
+Mirac1e,11624706,3
+49827426,11624706,3
+50413289,11624706,1
+33195867,11624706,2
+Otta,11624706,-1
+83360600,11624706,4
+56111522,11624706,4
+Tina.qian,11624706,4
+47081544,11624706,3
+60923783,11624706,-1
+44373773,11624706,5
+4657541,11624706,4
+62209386,11624706,4
+125000015,11624706,4
+26734576,11624706,4
+41655130,11624706,3
+wangleku,11624706,4
+ancg,11624706,3
+60822788,11624706,3
+64166028,11624706,5
+83881122,11624706,4
+74984713,11624706,5
+56871040,11624706,2
+76719047,11624706,4
+mjtang,11624706,3
+62754651,11624706,5
+ninaperfume,11624706,3
+51356260,11624706,3
+mao87523,11624706,4
+134969713,11624706,3
+80013900,11624706,4
+1985403,11624706,3
+59849943,11624706,3
+42293953,11624706,1
+48472429,11624706,3
+38727371,11624706,2
+48866539,11624706,1
+66969255,11624706,4
+HengGeZaiMa,11624706,4
+48623750,11624706,3
+3633901,11624706,5
+28748505,11624706,3
+63884743,11624706,4
+byandong,11624706,2
+62232875,11624706,4
+63993568,11624706,4
+4706306,11624706,5
+2191059,11624706,5
+aiknow,11624706,2
+youknow810,11624706,2
+iamcaojie,11624706,4
+longlanglang,11624706,4
+ecstasybird,11624706,-1
+118854497,11624706,4
+55613939,11624706,4
+45792584,11624706,3
+icetyle,11624706,4
+130596799,11624706,4
+38850701,11624706,4
+2364299,11624706,2
+4074165,11624706,3
+athena51244,11624706,4
+54530527,11624706,3
+55286449,11624706,3
+Rae.Y,11624706,3
+paranoidascetic,11624706,4
+130404838,11624706,4
+dodododoxhu,11624706,4
+88122881,11624706,3
+mouse920127,11624706,2
+88122881,11624706,3
+mouse920127,11624706,2
+132974606,11624706,5
+30110594,11624706,2
+alexander1224,11624706,3
+74835284,11624706,3
+71837063,11624706,1
+44545731,11624706,3
+jiguang92,11624706,4
+134203222,11624706,5
+106109346,11624706,3
+lcpeng,11624706,4
+2528826,11624706,4
+butina,11624706,4
+2157105,11624706,2
+83739647,11624706,3
+hicode,11624706,2
+2520901,11624706,3
+JamesPound,11624706,4
+132416998,11624706,5
+132416998,11624706,5
+135372483,11624706,3
+89050593,11624706,4
+130370376,11624706,4
+52765670,11624706,3
+50865043,11624706,4
+OpenSpaces,11624706,4
+31449811,11624706,5
+lizishu,11624706,4
+56017394,11624706,4
+2544330,11624706,4
+wenwbingb,11624706,4
+Sk.Young,11624706,3
+monononono,11624706,3
+2565519,11624706,3
+enralphle,11624706,4
+48661159,11624706,2
+dobbie1516,11624706,3
+64716585,11624706,3
+125264394,11624706,3
+60449837,11624706,5
+greenbeast,11624706,4
+53718083,11624706,4
+136161089,11624706,4
+70668435,11624706,2
+Cesart,11624706,4
+3465796,11624706,3
+46505445,11624706,4
+129599627,11624706,3
+136009334,11624706,3
+122879836,11624706,2
+132388146,11624706,3
+103187802,11624706,3
+chanelluo,11624706,4
+65766101,11624706,4
+lalamaggie,11624706,4
+104167946,11624706,2
+56974841,11624706,4
+2291010,11624706,5
+Sophieven,11624706,3
+55840798,11624706,3
+brahms49,11624706,2
+flyingbean,11624706,3
+45746626,11624706,4
+zz6801286,11624706,4
+goldendali,11624706,3
+58672259,11624706,4
+60043373,11624706,4
+48855139,11624706,5
+summonercarl,11624706,4
+jally89,11624706,4
+zyzloveair,11624706,3
+mashangjian5,11624706,2
+74491212,11624706,3
+2305028,11624706,3
+49455308,11624706,3
+54454466,11624706,4
+heropaopao,11624706,3
+seanseal,11624706,-1
+54092067,11624706,4
+48143172,11624706,3
+Daniel-Cheung,11624706,3
+68476661,11624706,3
+51358310,11624706,3
+3666746,11624706,3
+JosephineQv,11624706,3
+pinkjar,11624706,2
+40371866,11624706,4
+fighting-ing,11624706,3
+85447526,11624706,3
+1730018,11624706,2
+58731052,11624706,3
+39108497,11624706,4
+45059307,11624706,2
+Popdai,11624706,5
+62478064,11624706,3
+55820297,11624706,3
+135302519,11624706,3
+GSP2006,11624706,3
+136133409,11624706,3
+tongtong7,11624706,3
+CrossGigi,11624706,3
+19509960,11624706,3
+119281931,11624706,1
+59610543,11624706,4
+fayfayhao,11624706,3
+104601424,11624706,4
+57991654,11624706,4
+66319337,11624706,5
+muxichahua,11624706,4
+2206901,11624706,5
+amibubai,11624706,3
+kidrun,11624706,3
+135143930,11624706,4
+127375314,11624706,3
+3202710,11624706,3
+73218161,11624706,4
+pipi1226,11624706,3
+114034987,11624706,2
+120383320,11624706,3
+71938334,11624706,5
+56898241,11624706,4
+56475433,11624706,3
+65396178,11624706,5
+bogjebote,11624706,4
+i-m17,11624706,5
+mango-mian,11624706,4
+73039194,11624706,3
+chowmo,11624706,4
+56378325,11624706,3
+62149151,11624706,4
+roger0420,11624706,5
+69130681,11624706,4
+quinyu,11624706,5
+kasimsophie,11624706,4
+102164266,11624706,2
+83842649,11624706,4
+ssssherry,11624706,4
+sslclz,11624706,3
+16959294,11624706,3
+121051122,11624706,4
+75490431,11624706,3
+hermit90,11624706,4
+RosemaryChou,11624706,3
+128111484,11624706,-1
+33439516,11624706,1
+68871897,11624706,4
+38412910,11624706,1
+4239908,11624706,3
+79745413,11624706,5
+31061992,11624706,4
+36238876,11624706,4
+sheensangyu,11624706,4
+kubrick_dy,11624706,4
+66979226,11624706,3
+130321312,11624706,3
+103480987,11624706,3
+2180956,11624706,2
+modas,11624706,4
+74720152,11624706,3
+74720152,11624706,3
+45468596,11624706,5
+79861493,11624706,4
+115891597,11624706,2
+93828886,11624706,4
+mxmfly,11624706,2
+61482064,11624706,3
+laiquziyouIris,11624706,4
+66353833,11624706,3
+99337614,11624706,5
+antimido,11624706,4
+48977746,11624706,3
+PaoPaoface,11624706,5
+57698822,11624706,3
+2060825,11624706,3
+abby0109,11624706,3
+newslizi,11624706,5
+45620399,11624706,4
+57343717,11624706,3
+ClarityKing,11624706,3
+103355322,11624706,3
+62882653,11624706,2
+bluemind,11624706,5
+ljojingle,11624706,3
+39835336,11624706,2
+2673058,11624706,4
+4107737,11624706,-1
+zorrozj,11624706,4
+31044829,11624706,4
+ashleystella,11624706,3
+52020821,11624706,4
+73651442,11624706,4
+47200046,11624706,2
+yuh17,11624706,1
+70499715,11624706,5
+yangshu1991,11624706,3
+frank_chen,11624706,3
+Adnachiel,11624706,4
+1801052,11624706,3
+12360363,11624706,4
+45299688,11624706,5
+4231937,11624706,4
+44823364,11624706,2
+aki0726,11624706,4
+48264510,11624706,3
+Slim1996Mc,11624706,3
+twogang,11624706,4
+80854961,11624706,5
+134905637,11624706,3
+57616940,11624706,4
+gloria1102,11624706,2
+ddsto,11624706,4
+mylittlejane,11624706,-1
+72750731,11624706,2
+48227947,11624706,3
+1793602,11624706,4
+hugowai,11624706,3
+129454490,11624706,2
+37471230,11624706,4
+67489382,11624706,3
+36832783,11624706,4
+132326708,11624706,3
+80370344,11624706,3
+loyanymve,11624706,4
+zhijunyo,11624706,4
+tongshang,11624706,5
+68947670,11624706,4
+69605901,11624706,3
+olioli2006,11624706,3
+93856616,11624706,4
+34805156,11624706,4
+wolfqinqin,11624706,5
+49020270,11624706,4
+dearza01,11624706,4
+2667938,11624706,3
+crazyant,11624706,3
+yustone,11624706,3
+50919323,11624706,3
+1099721,11624706,2
+54679074,11624706,3
+69944887,11624706,3
+51766131,11624706,4
+56159025,11624706,3
+5854721,11624706,5
+60226199,11624706,3
+2713167,11624706,3
+louis15yao,11624706,4
+69983717,11624706,5
+60079529,11624706,4
+91016564,11624706,4
+hero2845,11624706,4
+53322141,11624706,3
+40328329,11624706,3
+baiqitun,11624706,-1
+68674122,11624706,4
+hism,11624706,4
+62594160,11624706,4
+41845607,11624706,2
+yigangya,11624706,3
+119593236,11624706,3
+47601113,11624706,4
+43748947,11624706,2
+55755674,11624706,3
+135833975,11624706,2
+qingjuesikong,11624706,3
+126489180,11624706,4
+54404280,11624706,2
+3043359,11624706,3
+anniex,11624706,4
+sleeper0803,11624706,3
+49181189,11624706,3
+65981408,11624706,3
+131033417,11624706,3
+135868666,11624706,2
+4404354,11624706,3
+brightchai,11624706,4
+N44,11624706,4
+88566153,11624706,3
+125145528,11624706,4
+springmel,11624706,3
+Faithy26,11624706,4
+PinkyL,11624706,2
+50126982,11624706,4
+mickey0725,11624706,3
+jopees,11624706,3
+52244457,11624706,5
+73118174,11624706,2
+48707650,11624706,3
+103424753,11624706,3
+51491347,11624706,5
+xuyuhong,11624706,5
+127305625,11624706,5
+et-evelyn,11624706,2
+20886546,11624706,4
+120948560,11624706,2
+zmwtf,11624706,3
+4258941,11624706,5
+cidishenhao,11624706,2
+64968500,11624706,4
+sunniva,11624706,3
+64968500,11624706,4
+sunniva,11624706,3
+3284189,11624706,3
+wxcn843,11624706,4
+xianyunfei,11624706,4
+fuckinboy,11624706,3
+104204726,11624706,4
+cai1st,11624706,4
+dustblue,11624706,2
+taoqishu,11624706,5
+milansunshine,11624706,4
+hdjjys,11624706,4
+135211181,11624706,2
+131597292,11624706,5
+2684193,11624706,4
+40311454,11624706,3
+Susan1206,11624706,3
+1623664,11624706,2
+53486801,11624706,4
+62632051,11624706,4
+scheny,11624706,3
+48625929,11624706,3
+76216989,11624706,3
+zbar1234,11624706,3
+119903956,11624706,1
+73649626,11624706,5
+ariesking,11624706,2
+47471768,11624706,3
+48113232,11624706,3
+49798956,11624706,3
+36807657,11624706,3
+52484586,11624706,4
+dark19,11624706,4
+120244834,11624706,3
+133230127,11624706,-1
+63189132,11624706,2
+sicheung,11624706,5
+58709526,11624706,4
+miong,11624706,4
+ZonaLau1997,11624706,4
+motou0328,11624706,4
+47618855,11624706,-1
+66185314,11624706,3
+2769218,11624706,4
+77223468,11624706,1
+71391201,11624706,4
+34909792,11624706,3
+siriusvicky,11624706,3
+77357087,11624706,4
+54108257,11624706,4
+93861419,11624706,4
+68270832,11624706,4
+38001119,11624706,3
+amydsr,11624706,3
+36962430,11624706,1
+yhelxx,11624706,-1
+58511967,11624706,4
+58697098,11624706,5
+101405544,11624706,5
+50840996,11624706,4
+22746190,11624706,4
+92975823,11624706,4
+moonflora,11624706,5
+qfsstj,11624706,5
+xfangbao,11624706,4
+tangnin,11624706,3
+49338966,11624706,3
+2010767,11624706,2
+Razzmatazz,11624706,3
+Rubbish_,11624706,3
+3592617,11624706,3
+66340674,11624706,3
+51865184,11624706,4
+2541348,11624706,3
+131675347,11624706,4
+133814929,11624706,3
+46144978,11624706,5
+62340238,11624706,4
+dongdansh,11624706,5
+Singfukua,11624706,3
+41651079,11624706,2
+58466744,11624706,3
+4291693,11624706,3
+48652112,11624706,4
+yiyufan84,11624706,4
+76933799,11624706,3
+51908195,11624706,3
+95264069,11624706,4
+88740388,11624706,2
+36307732,11624706,4
+longxiyi,11624706,3
+67030468,11624706,4
+PARIADISE,11624706,4
+28582386,11624706,2
+tmdolphin,11624706,3
+ccbadger,11624706,4
+34434303,11624706,3
+avrilyian,11624706,3
+halk,11624706,5
+114809892,11624706,3
+63924134,11624706,3
+mhyigeren,11624706,4
+50264214,11624706,2
+78568607,11624706,5
+sisyneo,11624706,2
+62757407,11624706,3
+50176168,11624706,3
+SBtripleplus,11624706,5
+44273309,11624706,3
+yuanzailv,11624706,3
+45295442,11624706,3
+govgouviiiiiiii,11624706,1
+fish_in_desert,11624706,2
+ursyoyo,11624706,3
+129696567,11624706,4
+cabbage_chou,11624706,4
+nsxrb,11624706,4
+zxjtmac,11624706,4
+3620484,11624706,3
+airqueen,11624706,3
+shadowboxer,11624706,4
+ccguodong,11624706,2
+3030951,11624706,5
+37364562,11624706,-1
+132496835,11624706,3
+63226607,11624706,4
+tong0803,11624706,3
+minminskyi,11624706,3
+64959073,11624706,3
+20960530,11624706,4
+114879006,11624706,3
+31461025,11624706,5
+Melissa_Fung,11624706,3
+116618365,11624706,3
+45066097,11624706,2
+75444425,11624706,4
+58158245,11624706,2
+130680494,11624706,5
+zhangrihe,11624706,3
+41125061,11624706,4
+82847789,11624706,4
+14836914,11624706,4
+127043703,11624706,4
+103208454,11624706,4
+104699208,11624706,3
+36872538,11624706,3
+41575985,11624706,3
+48200557,11624706,3
+Illbeamyouup,11624706,5
+baolidao,11624706,3
+41370751,11624706,4
+40687803,11624706,3
+64531485,11624706,3
+40792263,11624706,3
+64165773,11624706,5
+78977201,11624706,2
+68822610,11624706,2
+135202426,11624706,3
+zz_lucy,11624706,2
+55022659,11624706,4
+nangongmocheng,11624706,3
+48909711,11624706,4
+2830413,11624706,2
+bunnytoothed,11624706,3
+qkl330,11624706,4
+89100656,11624706,3
+3617275,11624706,3
+81898202,11624706,3
+yangziqiang,11624706,2
+59833001,11624706,2
+52981185,11624706,4
+anmour,11624706,4
+49338428,11624706,3
+yuyude,11624706,3
+39337478,11624706,4
+53493320,11624706,3
+92154450,11624706,4
+colormoon,11624706,3
+3009345,11624706,3
+68821782,11624706,2
+huazeivy,11624706,4
+michaelxu1205,11624706,4
+SpringLamb,11624706,4
+2456676,11624706,3
+andreamomozby,11624706,3
+131073434,11624706,3
+119262543,11624706,1
+zooissad,11624706,3
+50574309,11624706,5
+poppy830606,11624706,3
+91227853,11624706,3
+120099712,11624706,5
+122529370,11624706,3
+janice_wong,11624706,4
+46066822,11624706,4
+59290404,11624706,4
+57848317,11624706,4
+3629598,11624706,3
+65125200,11624706,4
+64020906,11624706,3
+iriszhong,11624706,2
+babyili,11624706,2
+houx,11624706,3
+84831004,11624706,3
+68023271,11624706,5
+55850316,11624706,2
+lovehaddison,11624706,4
+64308036,11624706,3
+67552884,11624706,4
+49886917,11624706,5
+3854905,11624706,3
+48398238,11624706,5
+1198621,11624706,3
+69192715,11624706,4
+he1990,11624706,3
+3140118,11624706,3
+xiao8888,11624706,3
+69265405,11624706,4
+81680542,11624706,2
+jluy,11624706,3
+karain,11624706,4
+EgoEchoooo,11624706,4
+60013985,11624706,5
+50703946,11624706,3
+125644658,11624706,4
+53815086,11624706,4
+sujijiu,11624706,3
+62385653,11624706,4
+kevinsmemoirs,11624706,3
+68793477,11624706,2
+132132858,11624706,4
+26512977,11624706,3
+70474463,11624706,4
+t77cp3,11624706,4
+65557756,11624706,2
+79862222,11624706,3
+jhy007,11624706,3
+63319802,11624706,3
+shgy,11624706,3
+41127479,11624706,4
+108685938,11624706,3
+blacksora,11624706,4
+134524468,11624706,5
+134063330,11624706,3
+thisisgap,11624706,3
+134563962,11624706,3
+132560934,11624706,4
+76935104,11624706,4
+1558709,11624706,4
+64620630,11624706,3
+86203854,11624706,4
+123593065,11624706,3
+hushaohan,11624706,3
+43467166,11624706,3
+62555864,11624706,3
+82935134,11624706,4
+69729743,11624706,5
+76017260,11624706,4
+80014341,11624706,3
+73706521,11624706,1
+131909298,11624706,4
+37371711,11624706,5
+43542310,11624706,5
+126981940,11624706,4
+Eternal.n1ce,11624706,2
+3618983,11624706,4
+132151907,11624706,4
+yinuokayi,11624706,-1
+panyari,11624706,5
+95767683,11624706,3
+periswallow,11624706,5
+3163781,11624706,3
+114567490,11624706,3
+3363546,11624706,3
+60930994,11624706,3
+54551463,11624706,4
+floraforever21,11624706,4
+57406267,11624706,3
+Rovin,11624706,3
+forever_val,11624706,5
+133408896,11624706,3
+49911339,11624706,4
+83161147,11624706,4
+66888888,11624706,3
+62842608,11624706,3
+123734503,11624706,4
+66519184,11624706,4
+at_summer,11624706,3
+102603343,11624706,3
+91428740,11624706,1
+51292681,11624706,4
+sarabilau2,11624706,3
+122328640,11624706,4
+57052407,11624706,3
+erhuyouxuan,11624706,2
+44610743,11624706,4
+barrentime,11624706,3
+Medusa_fc,11624706,4
+80398365,11624706,4
+44275592,11624706,4
+68277125,11624706,3
+63490052,11624706,3
+42127640,11624706,2
+nicole900116,11624706,2
+45290589,11624706,3
+72547163,11624706,4
+49585303,11624706,3
+63676625,11624706,3
+68739479,11624706,5
+faunus,11624706,4
+mingyaback,11624706,5
+weiweiguoer,11624706,5
+vliangfrank,11624706,4
+3478508,11624706,4
+xiaojiaheng,11624706,3
+52944051,11624706,4
+2344307,11624706,4
+50166173,11624706,2
+wutong1854,11624706,3
+74169906,11624706,3
+97531934,11624706,4
+65808735,11624706,3
+37837626,11624706,4
+61116917,11624706,3
+73634799,11624706,3
+52179978,11624706,4
+8184556,11624706,3
+raphael0525,11624706,3
+47464761,11624706,3
+66557005,11624706,4
+62367037,11624706,5
+72440781,11624706,5
+4340826,11624706,3
+44020426,11624706,3
+3116575,11624706,2
+ccccissy,11624706,3
+60311898,11624706,3
+102598019,11624706,5
+82269158,11624706,4
+yoonjae_,11624706,2
+37306803,11624706,4
+52562065,11624706,3
+73715669,11624706,4
+119512559,11624706,1
+Frankyooo,11624706,1
+50256249,11624706,4
+skeay,11624706,4
+TMMelody,11624706,4
+firewingwong,11624706,4
+65221116,11624706,4
+90161175,11624706,1
+myjayway,11624706,4
+119929736,11624706,4
+66768802,11624706,4
+113418380,11624706,4
+47583222,11624706,3
+21407911,11624706,5
+135788425,11624706,3
+10214816,11624706,5
+37160658,11624706,3
+65073778,11624706,3
+ll-luly,11624706,5
+MaclovenZD,11624706,3
+134863795,11624706,3
+49077360,11624706,3
+never_zj,11624706,4
+muziadao,11624706,4
+xibeigua,11624706,2
+53851569,11624706,3
+47842769,11624706,5
+63431252,11624706,2
+una_107,11624706,4
+71942975,11624706,3
+65301397,11624706,3
+134498032,11624706,3
+4040316,11624706,3
+133315176,11624706,4
+seven_mu,11624706,4
+luanshishusheng,11624706,4
+135628685,11624706,5
+78389639,11624706,4
+115697810,11624706,4
+catails,11624706,3
+chris310-nan,11624706,4
+135101148,11624706,4
+xiaomeng416,11624706,3
+74985362,11624706,5
+Obtson,11624706,2
+51003719,11624706,3
+68698778,11624706,5
+6474153,11624706,3
+56044350,11624706,3
+34728183,11624706,5
+aprisliver,11624706,3
+wen1228,11624706,4
+61793765,11624706,4
+127451032,11624706,3
+48476618,11624706,2
+50404313,11624706,4
+102633830,11624706,3
+119451467,11624706,3
+51288639,11624706,4
+133883408,11624706,3
+107702772,11624706,-1
+16347879,11624706,2
+44156071,11624706,3
+3659300,11624706,3
+135703307,11624706,5
+133319509,11624706,4
+65268125,11624706,4
+78713846,11624706,3
+52914401,11624706,4
+44993232,11624706,3
+balltaker,11624706,5
+ggwxn1126,11624706,3
+david880614,11624706,3
+124559600,11624706,5
+131616351,11624706,3
+49891253,11624706,3
+70729984,11624706,3
+49667048,11624706,5
+miaoamiao,11624706,4
+44582885,11624706,4
+35902122,11624706,4
+4899436,11624706,3
+115937929,11624706,3
+andymaruko,11624706,2
+AhDor,11624706,3
+4238363,11624706,3
+122748598,11624706,4
+51563212,11624706,3
+3700581,11624706,4
+68354862,11624706,3
+54790827,11624706,3
+99677951,11624706,5
+ziyuyouyou,11624706,4
+john1220,11624706,4
+miao_1,11624706,3
+ni484sa,11624706,3
+127102772,11624706,3
+zouzhiruo,11624706,3
+darrenskywalker,11624706,1
+79951487,11624706,3
+86922296,11624706,3
+53303549,11624706,2
+79718486,11624706,3
+46168428,11624706,3
+huibaofighting,11624706,4
+56218882,11624706,5
+lovesummers,11624706,3
+131610219,11624706,3
+72709092,11624706,3
+qibacha,11624706,3
+45537265,11624706,5
+135396561,11624706,5
+candychan,11624706,4
+132846280,11624706,3
+125971465,11624706,4
+77229106,11624706,4
+farewell3,11624706,3
+NCelestial,11624706,4
+61016200,11624706,3
+lovebenedict,11624706,2
+120489253,11624706,3
+120556407,11624706,2
+tlbb008,11624706,3
+60490305,11624706,3
+2464466,11624706,-1
+jmj1998,11624706,5
+muyunattitude,11624706,3
+maggiexu,11624706,4
+99291502,11624706,5
+silenceeeee,11624706,1
+2216479,11624706,3
+baby9410,11624706,3
+nalusea,11624706,3
+42180560,11624706,3
+70562159,11624706,3
+72023919,11624706,5
+82224797,11624706,2
+2672889,11624706,3
+52846746,11624706,3
+yjjhyxy,11624706,4
+134915437,11624706,5
+2744514,11624706,4
+64963282,11624706,5
+3583078,11624706,4
+greed27,11624706,5
+vividzjr,11624706,3
+64328101,11624706,4
+84773489,11624706,4
+nullspace,11624706,3
+53586919,11624706,4
+34733301,11624706,2
+70488224,11624706,3
+31945324,11624706,3
+59552861,11624706,4
+49531398,11624706,4
+49888856,11624706,2
+33509749,11624706,3
+lijin606,11624706,4
+52021826,11624706,5
+50384647,11624706,3
+tabbysmile,11624706,4
+72110829,11624706,4
+52671677,11624706,2
+10449879,11624706,3
+135445524,11624706,2
+2884967,11624706,3
+hpjoe,11624706,2
+summerday510,11624706,4
+64658435,11624706,4
+4900400,11624706,3
+54039981,11624706,3
+eileen08,11624706,3
+87237465,11624706,3
+45820206,11624706,3
+59020474,11624706,4
+102961718,11624706,3
+77182086,11624706,4
+vixendol,11624706,3
+53437669,11624706,3
+80566761,11624706,4
+aprilsunshine,11624706,4
+67875477,11624706,4
+134104313,11624706,3
+121100970,11624706,3
+hizoK,11624706,5
+lovelessvicky,11624706,4
+65666219,11624706,3
+wawzh,11624706,4
+21749153,11624706,4
+36863032,11624706,3
+freakg,11624706,4
+53408262,11624706,5
+84800146,11624706,4
+jackie020,11624706,4
+93853675,11624706,4
+52424511,11624706,3
+47098539,11624706,4
+47098539,11624706,4
+56064396,11624706,3
+58070874,11624706,-1
+zhuobiaini,11624706,3
+130345686,11624706,4
+svtg,11624706,2
+106130226,11624706,4
+yaffywin,11624706,2
+47867679,11624706,2
+candy_maoshijia,11624706,4
+4573436,11624706,4
+2858772,11624706,2
+3725383,11624706,3
+chelseaq,11624706,2
+sarahyangs,11624706,3
+tatayu19900729,11624706,3
+35445911,11624706,-1
+91958040,11624706,2
+34592808,11624706,3
+3215021,11624706,2
+56260072,11624706,3
+127131340,11624706,3
+79254578,11624706,3
+doudou8798,11624706,5
+83982465,11624706,3
+taolitianxia,11624706,4
+sanyo,11624706,-1
+qinaideliji,11624706,3
+liux5520,11624706,4
+huxzhao,11624706,3
+103981840,11624706,5
+103979483,11624706,4
+57240144,11624706,4
+hey-an,11624706,3
+126749714,11624706,4
+ningxiaoyang,11624706,5
+84167567,11624706,4
+71718481,11624706,3
+51860822,11624706,3
+133087571,11624706,3
+125602185,11624706,3
+41786241,11624706,4
+roysama,11624706,4
+lucykamui,11624706,2
+116073490,11624706,4
+60536729,11624706,5
+GKTThh,11624706,5
+52948477,11624706,2
+60180314,11624706,3
+58894061,11624706,3
+134523911,11624706,4
+135705904,11624706,4
+44446125,11624706,4
+3694786,11624706,2
+46266479,11624706,-1
+127722422,11624706,4
+1048791,11624706,4
+48545446,11624706,3
+3616413,11624706,4
+1673161,11624706,3
+47230580,11624706,5
+71928655,11624706,3
+89878561,11624706,2
+56493761,11624706,5
+XiaXiaokuan,11624706,2
+55504631,11624706,2
+yvonnexiong,11624706,3
+122633809,11624706,3
+65027660,11624706,4
+tptainine,11624706,3
+ancientbabylon,11624706,3
+135703346,11624706,3
+innocentwarm,11624706,5
+3588825,11624706,5
+121342307,11624706,4
+2718324,11624706,5
+3732240,11624706,4
+122499072,11624706,3
+43087425,11624706,5
+33522082,11624706,3
+119263813,11624706,4
+ROYA,11624706,4
+123026958,11624706,3
+iceanjing,11624706,3
+77576230,11624706,1
+bolanboy,11624706,3
+130770428,11624706,3
+atdogdoor,11624706,2
+violin1112,11624706,5
+49199639,11624706,2
+kasaier,11624706,3
+52452422,11624706,3
+Gabriel_Mars,11624706,3
+2753727,11624706,3
+67119457,11624706,-1
+zpj86,11624706,3
+car.men,11624706,3
+laq22,11624706,5
+91114065,11624706,3
+misssunshinerr,11624706,3
+45864291,11624706,3
+52907369,11624706,2
+SueZhao,11624706,3
+aiyos,11624706,3
+cby1993v,11624706,4
+bb0708,11624706,2
+sunny-lj,11624706,4
+122709202,11624706,3
+18088011,11624706,4
+2036689,11624706,4
+64563247,11624706,5
+65979615,11624706,1
+44045443,11624706,3
+liberal-,11624706,3
+simor0105uknow,11624706,3
+Aurora707,11624706,3
+69125337,11624706,5
+37879706,11624706,2
+zhl19741130520,11624706,4
+58140027,11624706,3
+raes,11624706,3
+50570726,11624706,4
+viola-x,11624706,3
+mustundead,11624706,3
+wan9,11624706,4
+52622844,11624706,5
+dangdangbaba,11624706,-1
+4051819,11624706,5
+edhua,11624706,5
+49685592,11624706,3
+djdaisy1874,11624706,3
+67849931,11624706,5
+gcmw,11624706,3
+59005316,11624706,3
+73123286,11624706,4
+JAZMINA,11624706,-1
+weiweiyu8,11624706,3
+55432699,11624706,3
+97949514,11624706,3
+FreezeJenny,11624706,5
+120902096,11624706,4
+oceanyue,11624706,3
+yanranaduo,11624706,5
+3584350,11624706,2
+akiwalnut,11624706,3
+80622644,11624706,4
+122536695,11624706,4
+44420749,11624706,4
+87599661,11624706,3
+sissiwowo,11624706,5
+44865012,11624706,4
+LrioWong,11624706,3
+135681079,11624706,3
+yewen,11624706,-1
+babylou,11624706,5
+83880297,11624706,4
+37883393,11624706,3
+69030272,11624706,3
+lanhui,11624706,3
+amberasharon,11624706,3
+71062611,11624706,4
+BiXiaoBengZhuRe,11624706,4
+71179615,11624706,3
+60088640,11624706,3
+135677694,11624706,4
+43958775,11624706,3
+mailaoshi,11624706,3
+zly117,11624706,4
+48369698,11624706,1
+52202300,11624706,3
+41720872,11624706,3
+63270983,11624706,3
+Chloe-IZUMI,11624706,4
+69495099,11624706,4
+bettysmile,11624706,4
+114743620,11624706,3
+36617894,11624706,4
+41214898,11624706,4
+58043448,11624706,5
+53676052,11624706,4
+themissingken,11624706,3
+alice-cat,11624706,4
+absinthwhite,11624706,3
+127879044,11624706,3
+MAXIAOLONG,11624706,5
+45271252,11624706,3
+tomsnakewang,11624706,4
+61795649,11624706,3
+kokuryuu,11624706,4
+48308518,11624706,2
+76536277,11624706,-1
+54990235,11624706,3
+stellariver,11624706,3
+12528508,11624706,4
+wulaoshan,11624706,3
+dlllllll,11624706,4
+mudinvwu,11624706,3
+37757920,11624706,4
+vermis_sum,11624706,4
+71966545,11624706,4
+89270889,11624706,3
+cyygigig,11624706,4
+57577418,11624706,3
+3041980,11624706,3
+72576116,11624706,3
+Y_yucheng,11624706,4
+46215737,11624706,3
+56416062,11624706,3
+115560712,11624706,4
+60834286,11624706,4
+4848799,11624706,4
+3293932,11624706,5
+17790607,11624706,3
+119938228,11624706,4
+67939755,11624706,3
+nini1030,11624706,3
+74358640,11624706,3
+46167382,11624706,4
+90796911,11624706,5
+122645096,11624706,4
+32224711,11624706,-1
+35805626,11624706,3
+yezisnow,11624706,3
+103492790,11624706,3
+echojan,11624706,1
+2833033,11624706,4
+gaxiaomi,11624706,5
+Kevser,11624706,-1
+55886505,11624706,3
+2997234,11624706,3
+12232981,11624706,4
+zoefangqi,11624706,3
+21990858,11624706,5
+49364303,11624706,3
+57585289,11624706,4
+63043822,11624706,4
+43526618,11624706,4
+30830742,11624706,4
+58697210,11624706,4
+3534752,11624706,3
+95074857,11624706,5
+jishaoting,11624706,5
+hans.tung,11624706,3
+pengze840128,11624706,2
+75651763,11624706,3
+51935455,11624706,3
+45775512,11624706,3
+yanism,11624706,3
+69856173,11624706,3
+43001670,11624706,4
+34094574,11624706,3
+2871622,11624706,5
+3039896,11624706,4
+vastyin,11624706,4
+atu521,11624706,3
+87682878,11624706,4
+64672521,11624706,4
+49191117,11624706,4
+108419935,11624706,4
+1586971,11624706,3
+132056696,11624706,3
+preconscious,11624706,3
+133742198,11624706,3
+58078105,11624706,4
+89341086,11624706,3
+57543745,11624706,3
+2438025,11624706,3
+3248654,11624706,3
+karen-wh.y,11624706,3
+135647354,11624706,3
+63896551,11624706,4
+Roohuan,11624706,2
+56357426,11624706,5
+57980704,11624706,2
+rumo,11624706,2
+lotuslalay,11624706,4
+killrec,11624706,-1
+130446592,11624706,4
+13728402,11624706,3
+49270206,11624706,3
+45276725,11624706,3
+82438598,11624706,4
+PIG-ADD,11624706,3
+60974953,11624706,4
+lingdu_zora,11624706,3
+133497939,11624706,4
+nothing7139,11624706,3
+127515076,11624706,4
+47345174,11624706,4
+64981286,11624706,3
+yf611x,11624706,3
+huangshuzhen000,11624706,4
+49550156,11624706,3
+sam920228,11624706,4
+momoko1024,11624706,5
+87653122,11624706,3
+4496437,11624706,3
+2341369,11624706,4
+48407855,11624706,2
+87741143,11624706,5
+38258402,11624706,4
+kafuxi,11624706,4
+Jessica.clr,11624706,3
+125484892,11624706,3
+yunijiajia,11624706,4
+rhythmfish,11624706,2
+wenyijiji,11624706,4
+yolanda_qin,11624706,5
+53823432,11624706,5
+ilikebluewater,11624706,3
+58142666,11624706,2
+eeeemo,11624706,3
+shiro26,11624706,3
+61375666,11624706,3
+3930745,11624706,5
+75332945,11624706,3
+MuFish,11624706,4
+tengteng58,11624706,4
+sinky1022,11624706,-1
+57195945,11624706,4
+48217121,11624706,5
+yum0808,11624706,3
+jiyuuroku,11624706,5
+65134309,11624706,5
+2415600,11624706,3
+50785163,11624706,4
+aoniki,11624706,4
+15439490,11624706,5
+zh369ao,11624706,-1
+sugertk,11624706,3
+47950267,11624706,3
+tayee,11624706,4
+63475932,11624706,4
+48048904,11624706,4
+70350780,11624706,4
+hermint,11624706,3
+49455574,11624706,3
+93465827,11624706,3
+58364355,11624706,-1
+vicky_vampire,11624706,5
+40567146,11624706,3
+114645921,11624706,4
+nycharline,11624706,-1
+3506866,11624706,4
+clytze09,11624706,4
+BabySchumi,11624706,3
+63462151,11624706,5
+65718372,11624706,3
+sakurawinter,11624706,4
+63188562,11624706,2
+77169093,11624706,4
+59917153,11624706,4
+52913878,11624706,2
+z15311118229,11624706,5
+95460891,11624706,5
+54147990,11624706,4
+103045657,11624706,3
+78533472,11624706,3
+30343256,11624706,4
+46864491,11624706,3
+allanzlau,11624706,4
+135409833,11624706,2
+121826501,11624706,3
+hwh,11624706,3
+74137590,11624706,3
+34893825,11624706,2
+83421554,11624706,4
+60118052,11624706,2
+maydayharuhi,11624706,5
+54910721,11624706,4
+Cmille_Kong,11624706,5
+135178254,11624706,4
+summer_waiting,11624706,3
+32223373,11624706,3
+52429464,11624706,4
+saisyou,11624706,2
+lingdesign,11624706,-1
+looknana,11624706,3
+133173153,11624706,4
+127328567,11624706,3
+49594661,11624706,3
+39376423,11624706,3
+bolijiao,11624706,3
+73107117,11624706,5
+46504649,11624706,4
+50913544,11624706,3
+128237011,11624706,4
+bilin,11624706,4
+anran0711,11624706,4
+seasing1992,11624706,4
+101508207,11624706,5
+47977266,11624706,3
+63805238,11624706,2
+48984520,11624706,4
+27037345,11624706,2
+30200244,11624706,3
+angelstone,11624706,1
+48304899,11624706,3
+2569325,11624706,-1
+50002640,11624706,2
+57421160,11624706,3
+65662348,11624706,3
+yutooooooo,11624706,4
+qqb143,11624706,4
+fumaolianxi,11624706,-1
+56062808,11624706,2
+89615473,11624706,3
+leonardodicapri,11624706,3
+39268690,11624706,3
+xiaoxingxing,11624706,4
+47719447,11624706,4
+hyt,11624706,4
+1614995,11624706,3
+binkychou,11624706,3
+1328765,11624706,4
+66016685,11624706,2
+46202201,11624706,4
+xyz0805,11624706,4
+103724232,11624706,3
+121870116,11624706,4
+132914473,11624706,4
+3265509,11624706,4
+48399486,11624706,5
+122552772,11624706,3
+jeanwoo,11624706,3
+youzidao,11624706,4
+visvivi,11624706,2
+121469548,11624706,4
+3969339,11624706,4
+59215571,11624706,4
+76692022,11624706,5
+93505964,11624706,3
+90805572,11624706,3
+bcyoyo,11624706,4
+54794006,11624706,5
+28490375,11624706,3
+frances-6,11624706,3
+Tale,11624706,3
+dscmaroon15,11624706,3
+120780592,11624706,3
+4626587,11624706,3
+61856030,11624706,3
+63110579,11624706,5
+68770847,11624706,4
+ranljron,11624706,4
+45910532,11624706,3
+51271683,11624706,5
+2635056,11624706,5
+stonesmith,11624706,3
+PTO,11624706,4
+Woody58,11624706,3
+barbaraqin,11624706,3
+joakimtong,11624706,-1
+48350741,11624706,5
+33635879,11624706,4
+59760298,11624706,3
+76270911,11624706,3
+RoveSoul,11624706,5
+shallwe07,11624706,3
+55669660,11624706,3
+Cello7_11,11624706,4
+61054348,11624706,5
+semenov,11624706,4
+soulless_jo,11624706,3
+38500219,11624706,4
+122220563,11624706,3
+67489519,11624706,3
+tessai,11624706,4
+26830263,11624706,3
+44525790,11624706,2
+97839085,11624706,4
+Pyrrho,11624706,3
+2630618,11624706,3
+hinyon,11624706,3
+62575629,11624706,3
+92119764,11624706,3
+4506904,11624706,3
+44848256,11624706,5
+angelcheng728,11624706,4
+66344319,11624706,5
+50831726,11624706,3
+hechiyin,11624706,4
+selenesun,11624706,3
+XHY4,11624706,2
+52701456,11624706,2
+63768527,11624706,4
+133839811,11624706,4
+59136661,11624706,1
+11886721,11624706,3
+62971730,11624706,3
+jane19860903,11624706,4
+60356224,11624706,2
+58016445,11624706,5
+Rosieash,11624706,3
+windson120,11624706,3
+58880510,11624706,3
+tcrabbit,11624706,4
+DeanK,11624706,3
+2548575,11624706,2
+YvetteYvette,11624706,3
+46588781,11624706,3
+shaxiaohai,11624706,5
+55976862,11624706,5
+80660240,11624706,5
+2708531,11624706,1
+51814081,11624706,4
+68983294,11624706,3
+39522500,11624706,3
+1613863,11624706,4
+73810775,11624706,5
+yumiaodemao,11624706,4
+133764875,11624706,3
+GOEVERYWHERE,11624706,3
+49303961,11624706,3
+7429116,11624706,5
+80045582,11624706,5
+4563516,11624706,5
+qingyue516,11624706,3
+52192858,11624706,3
+56008028,11624706,4
+67325426,11624706,4
+131204717,11624706,4
+chufanyan,11624706,2
+47814757,11624706,4
+57756222,11624706,3
+yikouerren,11624706,4
+yifeng2013,11624706,4
+46897484,11624706,4
+80580864,11624706,2
+43612401,11624706,3
+keiraS,11624706,4
+29438275,11624706,5
+67784702,11624706,4
+Catball,11624706,3
+63435236,11624706,5
+126248170,11624706,4
+Jake52592,11624706,3
+frian,11624706,4
+99483183,11624706,3
+71118924,11624706,5
+misspomelo21,11624706,3
+3425239,11624706,2
+escapis,11624706,2
+131858556,11624706,4
+56678240,11624706,4
+122545234,11624706,4
+48445532,11624706,4
+59567078,11624706,2
+maynardleung,11624706,3
+rainboo,11624706,5
+2262469,11624706,3
+lulu_sheep,11624706,2
+38238164,11624706,3
+71633312,11624706,3
+danzi0105,11624706,5
+31616755,11624706,3
+120581904,11624706,2
+46693500,11624706,-1
+131874236,11624706,3
+115231190,11624706,3
+2623464,11624706,3
+piggy007,11624706,2
+1856358,11624706,4
+21147092,11624706,4
+alialialik,11624706,5
+celinedsam,11624706,3
+93032494,11624706,3
+48854028,11624706,3
+tangshundgar,11624706,4
+chenxizi,11624706,4
+53323190,11624706,4
+65596478,11624706,3
+z-tianhua,11624706,3
+4134812,11624706,3
+41833593,11624706,4
+108755224,11624706,4
+13301536,11624706,3
+luoze,11624706,2
+69814261,11624706,2
+2424837,11624706,3
+120655995,11624706,3
+fishhome40,11624706,5
+133986166,11624706,4
+42570419,11624706,4
+135335880,11624706,2
+sleepydaisy,11624706,3
+57387221,11624706,3
+45986784,11624706,4
+herofox,11624706,4
+2856580,11624706,4
+67832658,11624706,4
+62963853,11624706,5
+57750976,11624706,4
+34727533,11624706,3
+azurepeach,11624706,5
+84864634,11624706,2
+62635630,11624706,4
+119694219,11624706,4
+38702110,11624706,4
+128160386,11624706,4
+128160386,11624706,4
+12470657,11624706,4
+130978369,11624706,3
+51435663,11624706,2
+62274710,11624706,4
+zixiaosun731,11624706,4
+f05041220,11624706,4
+2398760,11624706,3
+83217670,11624706,2
+135551793,11624706,3
+62545138,11624706,3
+63874245,11624706,3
+48508304,11624706,-1
+31714780,11624706,4
+42280664,11624706,4
+51505905,11624706,3
+MissBunny,11624706,2
+62521105,11624706,1
+69232236,11624706,4
+neisha,11624706,3
+neisha,11624706,3
+33534935,11624706,2
+59111075,11624706,4
+4586261,11624706,3
+riverrun,11624706,3
+127554011,11624706,3
+junliny,11624706,4
+doace,11624706,3
+65641173,11624706,4
+INTERSECTION,11624706,4
+80655381,11624706,3
+135342073,11624706,3
+linsleyzhou,11624706,5
+16531942,11624706,4
+49963574,11624706,3
+60377102,11624706,3
+63793789,11624706,3
+58307426,11624706,5
+2483060,11624706,2
+82847999,11624706,5
+72834038,11624706,5
+meiyaobaobao0,11624706,1
+51276505,11624706,5
+48085462,11624706,1
+zxqing,11624706,4
+12835196,11624706,3
+80121316,11624706,3
+66468870,11624706,5
+63019074,11624706,3
+70734436,11624706,3
+83284105,11624706,2
+socary,11624706,3
+60752975,11624706,3
+35156084,11624706,2
+ariesyesung,11624706,3
+128617296,11624706,3
+possion007,11624706,3
+c___you,11624706,4
+miaodiaoni,11624706,3
+72040927,11624706,4
+68492607,11624706,4
+aiwangyue,11624706,4
+135463478,11624706,4
+48381492,11624706,4
+river_me1212,11624706,2
+liandlisa,11624706,3
+135279641,11624706,4
+fredayan501,11624706,5
+2007742,11624706,3
+34062723,11624706,4
+tankdriver,11624706,3
+chamori,11624706,3
+66537947,11624706,3
+132361096,11624706,4
+119263777,11624706,2
+littlejoong,11624706,2
+1601177,11624706,4
+89759439,11624706,4
+2674873,11624706,4
+75792815,11624706,5
+4019961,11624706,5
+2422390,11624706,3
+55408701,11624706,5
+ringo_uknow,11624706,3
+121693868,11624706,4
+14605992,11624706,3
+49489943,11624706,3
+48526181,11624706,4
+v5boss,11624706,3
+64632377,11624706,3
+bluegrid,11624706,5
+suki_mcx,11624706,5
+59634338,11624706,2
+135518553,11624706,3
+56090186,11624706,4
+46862579,11624706,4
+56070920,11624706,3
+54537877,11624706,3
+clumsybean,11624706,2
+cqz5960,11624706,4
+58719132,11624706,3
+45762104,11624706,2
+2095236,11624706,4
+64208268,11624706,4
+123375229,11624706,4
+FluffYisF,11624706,5
+76073983,11624706,4
+yzy16,11624706,3
+33665319,11624706,3
+yuanlovenic,11624706,4
+41894992,11624706,4
+annhyukwon,11624706,4
+104177960,11624706,3
+51469977,11624706,4
+MarLee,11624706,1
+sheep864,11624706,3
+48850482,11624706,3
+29575216,11624706,3
+cklchocolate,11624706,3
+2082235,11624706,4
+46672889,11624706,3
+44537655,11624706,5
+qianshiyang,11624706,3
+joemayxu,11624706,3
+moqulss,11624706,4
+63662895,11624706,5
+rebecca.psy,11624706,3
+nancy8787,11624706,3
+75174389,11624706,2
+monkeydoll,11624706,5
+50490367,11624706,3
+zhaotongtong,11624706,4
+8026660,11624706,5
+babyelyse,11624706,4
+56199113,11624706,2
+64901083,11624706,5
+seki_kan,11624706,4
+xiaopie,11624706,3
+56918033,11624706,4
+123340510,11624706,4
+49956294,11624706,2
+hana-neverland,11624706,3
+50636469,11624706,4
+momodeshang,11624706,3
+rainforing,11624706,3
+xiaoheng,11624706,2
+56783392,11624706,2
+Coky.M,11624706,3
+59968133,11624706,4
+82208015,11624706,4
+EternityParis,11624706,3
+33142981,11624706,5
+drinking,11624706,-1
+56896542,11624706,2
+122946337,11624706,3
+94672080,11624706,3
+4130152,11624706,5
+potatoblack,11624706,3
+74237278,11624706,3
+62786223,11624706,2
+58959538,11624706,5
+momoaamomo,11624706,3
+1023714,11624706,5
+125553826,11624706,5
+Alan59,11624706,4
+43270152,11624706,3
+97009601,11624706,3
+darlingm,11624706,3
+49494443,11624706,5
+71039483,11624706,2
+stephy_mi,11624706,3
+120447606,11624706,2
+niking,11624706,1
+imarco,11624706,3
+60306425,11624706,3
+97312448,11624706,2
+76617762,11624706,5
+52493179,11624706,4
+1173354,11624706,4
+48164798,11624706,3
+47025677,11624706,5
+40814354,11624706,3
+98277632,11624706,3
+49173755,11624706,3
+25635000,11624706,3
+moodsaying,11624706,3
+59116425,11624706,3
+28079955,11624706,3
+55820389,11624706,5
+luziyujiang,11624706,3
+78277982,11624706,3
+57687882,11624706,4
+132620744,11624706,5
+53608326,11624706,4
+102122606,11624706,3
+46984307,11624706,3
+yuanzedong,11624706,3
+130309969,11624706,4
+42006614,11624706,5
+dannyveronica,11624706,3
+58132844,11624706,4
+119741073,11624706,4
+Lizyjs,11624706,2
+bons,11624706,-1
+127901122,11624706,4
+68749284,11624706,3
+2393231,11624706,3
+51773782,11624706,3
+73795534,11624706,3
+43148544,11624706,3
+62362677,11624706,4
+45786589,11624706,4
+76535928,11624706,3
+96777492,11624706,3
+Greenyni,11624706,3
+deerCherry,11624706,3
+76187253,11624706,4
+misshuyunyi,11624706,4
+113440847,11624706,4
+82909007,11624706,5
+bbbiabb,11624706,4
+52422400,11624706,4
+58064521,11624706,3
+62762871,11624706,2
+weizaia,11624706,3
+marco_0708,11624706,2
+56926782,11624706,4
+28559275,11624706,4
+cory1990,11624706,3
+46497404,11624706,4
+127323071,11624706,2
+52574332,11624706,3
+qingru,11624706,-1
+61888159,11624706,2
+73465341,11624706,3
+csaver,11624706,3
+kather,11624706,3
+52493468,11624706,3
+81059128,11624706,3
+1235613,11624706,-1
+60606998,11624706,5
+127489630,11624706,3
+gdragon-ily,11624706,5
+stower,11624706,4
+lukemeiyu,11624706,4
+123533077,11624706,3
+35768537,11624706,5
+ryogon,11624706,4
+81042933,11624706,3
+3855018,11624706,3
+syanns,11624706,4
+76937893,11624706,3
+40238373,11624706,2
+66976207,11624706,3
+48286955,11624706,4
+63378049,11624706,5
+AJIONG119,11624706,3
+3285893,11624706,3
+127027482,11624706,1
+123174311,11624706,3
+lchdonkey,11624706,4
+unamm,11624706,3
+135491689,11624706,4
+114438599,11624706,4
+76903484,11624706,5
+llllllazy,11624706,3
+65595818,11624706,5
+63798643,11624706,5
+58754090,11624706,4
+64345449,11624706,3
+48614440,11624706,3
+SwaggyB40,11624706,3
+viloil,11624706,4
+131198769,11624706,3
+82531582,11624706,4
+52926805,11624706,-1
+44134802,11624706,4
+nicemonster_,11624706,5
+49198911,11624706,5
+30531434,11624706,3
+48251188,11624706,4
+119470403,11624706,3
+62500230,11624706,2
+56646259,11624706,2
+aipa,11624706,3
+fatgreyrabbit,11624706,5
+64825748,11624706,4
+3184650,11624706,3
+83660187,11624706,3
+89792510,11624706,3
+119700569,11624706,3
+70862164,11624706,5
+Lilyheshit,11624706,3
+61823164,11624706,3
+wangzhumei,11624706,4
+33607978,11624706,2
+66582764,11624706,5
+131510377,11624706,3
+135475569,11624706,4
+1221938,11624706,5
+2367248,11624706,3
+1456080,11624706,3
+58433028,11624706,3
+BigheadBepa,11624706,3
+N-CHOU,11624706,4
+brookett,11624706,5
+32776828,11624706,4
+68151450,11624706,4
+35361792,11624706,3
+37450030,11624706,2
+luxianlx,11624706,4
+94830928,11624706,3
+131128711,11624706,5
+59562131,11624706,4
+58952579,11624706,2
+zhangyangan,11624706,4
+eeagle,11624706,3
+90610268,11624706,4
+78408840,11624706,2
+48012130,11624706,3
+linqihoho,11624706,5
+82767121,11624706,2
+76156719,11624706,4
+123395236,11624706,4
+48355491,11624706,3
+arielwong,11624706,5
+75517223,11624706,5
+64664895,11624706,3
+3310337,11624706,2
+54471920,11624706,4
+roselee,11624706,-1
+thesouthking,11624706,3
+52286838,11624706,5
+87735422,11624706,4
+zeph1462,11624706,3
+perseph_rita,11624706,3
+2812415,11624706,4
+82498439,11624706,3
+53168940,11624706,4
+doudouu,11624706,3
+50063811,11624706,3
+75925121,11624706,4
+64172361,11624706,4
+phnix,11624706,4
+honestydudu,11624706,4
+heatherhx,11624706,4
+49585616,11624706,4
+122104657,11624706,3
+kat.is.kathy,11624706,4
+36077927,11624706,5
+AtomuHZ,11624706,4
+4618089,11624706,3
+57880300,11624706,2
+53168702,11624706,3
+121776616,11624706,5
+81923941,11624706,3
+66269083,11624706,3
+38453085,11624706,4
+omg-_-,11624706,5
+51165620,11624706,3
+haolloyin,11624706,3
+pipixia1095,11624706,3
+Youmans,11624706,3
+121424085,11624706,4
+haozi1990,11624706,4
+lshlsh,11624706,5
+48920065,11624706,4
+121568598,11624706,4
+43909634,11624706,3
+58343189,11624706,4
+46083908,11624706,5
+43574449,11624706,3
+51686196,11624706,5
+87344013,11624706,3
+119990931,11624706,4
+33432860,11624706,2
+34705755,11624706,4
+3760681,11624706,5
+78636018,11624706,4
+72676164,11624706,3
+72676164,11624706,3
+92613498,11624706,4
+58704040,11624706,4
+QQQQQQQla,11624706,3
+63422353,11624706,3
+nowingcolorful,11624706,2
+82437320,11624706,3
+53582924,11624706,2
+82268934,11624706,5
+4652194,11624706,4
+127700575,11624706,3
+53968834,11624706,4
+79301017,11624706,3
+62091486,11624706,2
+101602751,11624706,4
+59691399,11624706,4
+44377776,11624706,5
+129837323,11624706,2
+71741760,11624706,4
+pp3288,11624706,3
+orangeumoon,11624706,3
+71953826,11624706,4
+ireneism,11624706,5
+123435691,11624706,4
+emelyne,11624706,2
+49433742,11624706,4
+135383710,11624706,5
+3921995,11624706,5
+63367486,11624706,3
+134508223,11624706,3
+mxlzyd,11624706,3
+133582771,11624706,3
+41304325,11624706,3
+44105012,11624706,3
+mrschan,11624706,4
+2634600,11624706,1
+corrinneh,11624706,4
+hibi,11624706,4
+110670624,11624706,3
+elva_M,11624706,3
+a_zi,11624706,3
+yeahe83,11624706,4
+77571393,11624706,3
+50351476,11624706,3
+yazizi77,11624706,3
+47572613,11624706,4
+3758998,11624706,2
+46456526,11624706,3
+52449680,11624706,4
+36867618,11624706,2
+46371689,11624706,4
+130692591,11624706,3
+68796799,11624706,3
+lihanbin,11624706,4
+44011336,11624706,2
+35744087,11624706,3
+43390539,11624706,3
+SaneWoo,11624706,3
+33415384,11624706,3
+pennicechen,11624706,3
+64597422,11624706,5
+tikrothia,11624706,4
+4016687,11624706,5
+4349980,11624706,5
+33986793,11624706,4
+58153202,11624706,3
+50233060,11624706,3
+wangxiaona,11624706,2
+IIGHTENYZING,11624706,3
+129645509,11624706,3
+52174133,11624706,4
+74871304,11624706,4
+3946199,11624706,2
+52017448,11624706,3
+76051077,11624706,3
+131739660,11624706,2
+EvenUp,11624706,3
+55593785,11624706,3
+63760706,11624706,3
+96876973,11624706,3
+Dison-cheng,11624706,4
+94514917,11624706,3
+47695093,11624706,3
+104147841,11624706,3
+mengqingjiao,11624706,3
+65927273,11624706,4
+129375035,11624706,1
+52192997,11624706,5
+119078818,11624706,4
+CworkOrange,11624706,3
+heathlon,11624706,4
+lpjxc,11624706,1
+voidintovoid,11624706,4
+yangdicat,11624706,4
+z1079698649,11624706,4
+31955384,11624706,4
+79146336,11624706,3
+titibird,11624706,4
+37226632,11624706,3
+127383061,11624706,5
+juech171,11624706,4
+57377685,11624706,5
+wtsy,11624706,3
+62659146,11624706,3
+134751390,11624706,5
+129472402,11624706,4
+24387412,11624706,4
+67892984,11624706,3
+tracyloveeric,11624706,1
+tetcato,11624706,4
+52523730,11624706,3
+49167214,11624706,5
+61552559,11624706,3
+58064955,11624706,5
+geisbzhimaoyi,11624706,3
+48585920,11624706,5
+4429031,11624706,5
+46553524,11624706,4
+73332736,11624706,3
+wins,11624706,3
+62379540,11624706,5
+38748585,11624706,3
+135144421,11624706,3
+48129305,11624706,4
+gloryofnt,11624706,4
+60551662,11624706,4
+4397835,11624706,3
+130550035,11624706,3
+70001053,11624706,3
+forevrelove,11624706,3
+4684266,11624706,3
+benbenmuxi,11624706,3
+2191624,11624706,3
+vivienne432,11624706,4
+133809272,11624706,-1
+135072611,11624706,3
+52279001,11624706,4
+121594498,11624706,4
+2429836,11624706,3
+wdxc999999,11624706,2
+2451603,11624706,4
+62644880,11624706,3
+135274775,11624706,4
+120313404,11624706,5
+cattieknights,11624706,4
+27090157,11624706,4
+wy5151,11624706,4
+49421412,11624706,2
+3590324,11624706,4
+135419353,11624706,4
+electroniXtar,11624706,4
+has5211314,11624706,3
+Gemma_whatever,11624706,4
+2897878,11624706,4
+48086861,11624706,3
+114485241,11624706,4
+xuxuyooxi,11624706,5
+yatiour,11624706,4
+71166070,11624706,3
+43130115,11624706,3
+124570974,11624706,4
+yuanpy,11624706,3
+134494328,11624706,3
+118854321,11624706,3
+73456502,11624706,4
+37698619,11624706,4
+onedayonesay,11624706,2
+42989054,11624706,2
+77645193,11624706,3
+45925639,11624706,3
+2431413,11624706,2
+4750288,11624706,4
+61775961,11624706,4
+47434041,11624706,3
+68206013,11624706,3
+heathercone,11624706,3
+1902232,11624706,4
+2721249,11624706,4
+57678650,11624706,3
+2904142,11624706,3
+52866099,11624706,3
+45748609,11624706,3
+53557989,11624706,5
+52992118,11624706,2
+56814340,11624706,3
+derekderek,11624706,3
+53570723,11624706,4
+68518544,11624706,5
+43110758,11624706,3
+98480325,11624706,3
+nununi,11624706,4
+74676863,11624706,4
+46307188,11624706,4
+procrastinating,11624706,3
+78973755,11624706,3
+wingfay,11624706,4
+hussi,11624706,4
+76442168,11624706,4
+129331938,11624706,3
+umi-kumo,11624706,3
+sulphurlee,11624706,3
+77595746,11624706,4
+135088317,11624706,5
+hoaxstar,11624706,4
+remember08,11624706,3
+76497080,11624706,4
+133633087,11624706,4
+77056370,11624706,5
+serapheee,11624706,4
+131171695,11624706,5
+58863205,11624706,2
+cherry0120,11624706,4
+62685954,11624706,3
+71427030,11624706,3
+63372238,11624706,4
+55323573,11624706,2
+116271195,11624706,4
+liujiabin1002,11624706,3
+29685065,11624706,4
+80090755,11624706,3
+80090755,11624706,3
+59731496,11624706,3
+15722769,11624706,3
+44339182,11624706,5
+92960717,11624706,3
+126331855,11624706,4
+cheng_Ting,11624706,4
+104823115,11624706,3
+131727337,11624706,2
+91661265,11624706,3
+120399785,11624706,4
+71615690,11624706,4
+4906772,11624706,4
+zoeyi,11624706,2
+113574630,11624706,5
+my_zing,11624706,3
+fameloo,11624706,4
+24071740,11624706,4
+QQY,11624706,3
+54107257,11624706,5
+79699248,11624706,3
+130551483,11624706,3
+Serena201314,11624706,3
+51953999,11624706,3
+81578324,11624706,4
+41605259,11624706,3
+63093593,11624706,3
+48664010,11624706,3
+85527854,11624706,3
+131239316,11624706,3
+72004354,11624706,3
+119239652,11624706,4
+135361130,11624706,5
+69056312,11624706,3
+131490533,11624706,2
+apieceofpaper,11624706,3
+34800119,11624706,3
+nianchangning,11624706,3
+92571087,11624706,3
+superbin1014,11624706,3
+132461589,11624706,2
+42471589,11624706,3
+92409264,11624706,2
+47800794,11624706,2
+120449053,11624706,3
+80240044,11624706,3
+LinWoo,11624706,3
+54992495,11624706,2
+54817405,11624706,2
+43873778,11624706,4
+TSUGUMIKO,11624706,4
+59647725,11624706,3
+shenqianqian,11624706,3
+ally7,11624706,5
+44599413,11624706,3
+68236592,11624706,-1
+40155699,11624706,5
+113924103,11624706,3
+pawear,11624706,5
+127282214,11624706,4
+59493620,11624706,4
+4068988,11624706,5
+74565811,11624706,4
+blossombao,11624706,5
+bluecucumber,11624706,5
+73287736,11624706,3
+kkgrace,11624706,4
+82578171,11624706,4
+49034223,11624706,3
+53235124,11624706,4
+66711391,11624706,4
+ronaldojxz,11624706,3
+60458294,11624706,4
+94285229,11624706,5
+88509619,11624706,3
+13198756,11624706,3
+47489065,11624706,3
+82054063,11624706,4
+36862106,11624706,3
+84628421,11624706,3
+84628421,11624706,3
+izzie,11624706,3
+98152851,11624706,1
+ZawadaRiiin,11624706,3
+59946746,11624706,4
+towndone,11624706,3
+14706464,11624706,3
+97017536,11624706,2
+54130094,11624706,4
+you-jian,11624706,3
+3526992,11624706,3
+mrxiaos,11624706,1
+biganws,11624706,3
+summersugarb,11624706,4
+kugames,11624706,2
+stuyannnnnnnnnn,11624706,4
+73314180,11624706,3
+dorothyzhang,11624706,3
+yimairen,11624706,3
+82887043,11624706,4
+102390671,11624706,5
+64618863,11624706,2
+51814585,11624706,2
+AJDENOLE-,11624706,3
+wj8198026,11624706,4
+46668535,11624706,2
+lidongyu,11624706,4
+73427598,11624706,4
+73901440,11624706,4
+63229273,11624706,4
+58697350,11624706,4
+flowerfrommars,11624706,3
+75444584,11624706,3
+43625639,11624706,4
+59753699,11624706,2
+benyuh,11624706,4
+stoneshen,11624706,3
+qingxuan0706,11624706,-1
+53370159,11624706,3
+57393346,11624706,5
+57393346,11624706,5
+3981138,11624706,3
+kissyoutonight,11624706,4
+125367351,11624706,4
+53694005,11624706,4
+1783337,11624706,3
+kero-zx1-yjx,11624706,3
+121152580,11624706,3
+68891981,11624706,3
+fc404931881,11624706,3
+34831031,11624706,3
+sophiayou,11624706,3
+liaoxiaoben,11624706,5
+yueguangszy,11624706,3
+leebins,11624706,3
+69999895,11624706,4
+2034101,11624706,3
+115898172,11624706,5
+43936347,11624706,4
+49649488,11624706,3
+muyuchao,11624706,3
+84570896,11624706,4
+43287608,11624706,4
+47212245,11624706,3
+56163108,11624706,3
+52599868,11624706,3
+joideyy,11624706,4
+colorfee,11624706,3
+128100069,11624706,4
+tsuan,11624706,-1
+132255514,11624706,5
+34284665,11624706,3
+43978557,11624706,4
+55999310,11624706,4
+72706122,11624706,4
+44623703,11624706,5
+64334718,11624706,3
+131497544,11624706,1
+130433536,11624706,4
+126648793,11624706,5
+114499538,11624706,4
+41742499,11624706,3
+poooooop,11624706,4
+51429861,11624706,4
+42093808,11624706,3
+1327257,11624706,4
+120879032,11624706,4
+69008622,11624706,2
+SamuelYan,11624706,2
+54455940,11624706,3
+80675926,11624706,4
+114616367,11624706,2
+Rihaulin,11624706,3
+70085940,11624706,4
+2891105,11624706,4
+mrkingdom,11624706,3
+47548547,11624706,-1
+87907452,11624706,3
+89736194,11624706,3
+120392055,11624706,3
+16718270,11624706,4
+58094874,11624706,3
+wudihy,11624706,5
+53952389,11624706,3
+50042577,11624706,3
+36043786,11624706,4
+88174189,11624706,4
+4048973,11624706,4
+25282878,11624706,3
+lianliying,11624706,4
+Xpirits,11624706,3
+66083647,11624706,3
+27432217,11624706,3
+84961343,11624706,4
+1162046,11624706,3
+May_T,11624706,3
+72086305,11624706,2
+51572844,11624706,1
+3523793,11624706,4
+q962265267,11624706,4
+choppernini,11624706,3
+Paranoid7,11624706,2
+51493263,11624706,3
+70204811,11624706,2
+45320268,11624706,3
+51955912,11624706,5
+34892434,11624706,3
+pear_zi,11624706,3
+al1ene,11624706,3
+133436680,11624706,3
+53910261,11624706,3
+59263792,11624706,3
+xyhere,11624706,4
+76914057,11624706,3
+98578639,11624706,3
+zooooooj,11624706,3
+82882772,11624706,3
+gaotianoye,11624706,3
+74106602,11624706,3
+64495212,11624706,4
+3078831,11624706,4
+45647958,11624706,5
+xiawu1130,11624706,4
+61333256,11624706,4
+cumming,11624706,4
+91936277,11624706,4
+36072726,11624706,4
+35353317,11624706,3
+119997789,11624706,3
+62880392,11624706,3
+konojiujiji,11624706,4
+bigEggplant,11624706,3
+izune,11624706,4
+81131709,11624706,3
+4506778,11624706,4
+44724487,11624706,1
+skynland0,11624706,2
+130272080,11624706,4
+proths,11624706,4
+59752532,11624706,3
+eightsbar,11624706,2
+4237135,11624706,5
+2205975,11624706,3
+53820803,11624706,3
+134434017,11624706,4
+1600664,11624706,3
+mexihu,11624706,5
+97680809,11624706,3
+75896027,11624706,3
+58865216,11624706,4
+48801010,11624706,4
+feixiamm,11624706,4
+ZhangBui,11624706,4
+Seeress,11624706,3
+datoutuzi,11624706,5
+woodyallen,11624706,4
+1971410,11624706,4
+89856330,11624706,1
+4175130,11624706,4
+seven1874,11624706,4
+seven1874,11624706,4
+54022320,11624706,4
+chaokunwang,11624706,3
+75489500,11624706,3
+58685022,11624706,-1
+Kingmmz,11624706,4
+Linjingx,11624706,3
+47680177,11624706,-1
+74551171,11624706,5
+jingying11,11624706,4
+catundertree,11624706,4
+lstra,11624706,5
+babude,11624706,4
+mijalo,11624706,3
+19734042,11624706,3
+94573352,11624706,2
+imqiankai,11624706,4
+63626568,11624706,4
+eliekiss,11624706,4
+62565824,11624706,4
+120945947,11624706,3
+53350576,11624706,4
+124554880,11624706,3
+qiaoqiezi,11624706,3
+chan-ki,11624706,2
+2368703,11624706,3
+75706045,11624706,5
+134503572,11624706,3
+2322224,11624706,3
+2302405,11624706,3
+libaokui,11624706,4
+135331170,11624706,5
+xiaody,11624706,2
+evilhyde,11624706,3
+youyu1229,11624706,4
+65053754,11624706,2
+78589932,11624706,5
+125584224,11624706,4
+40100770,11624706,5
+49581171,11624706,4
+wolfgood,11624706,3
+135337821,11624706,4
+1509986,11624706,3
+Carmenn_n,11624706,3
+60628308,11624706,2
+46416495,11624706,5
+39754117,11624706,3
+yvone1220,11624706,3
+sanzanglx,11624706,3
+129857824,11624706,4
+pure_115,11624706,4
+49316755,11624706,4
+128590668,11624706,5
+134275392,11624706,4
+75217622,11624706,1
+twooneseven,11624706,3
+132092156,11624706,5
+75237378,11624706,2
+120193254,11624706,5
+135270390,11624706,3
+68710909,11624706,4
+2810818,11624706,4
+92249126,11624706,5
+60192811,11624706,4
+134269871,11624706,4
+4655496,11624706,2
+39696481,11624706,3
+shuyan50,11624706,4
+rheasimidapabo,11624706,4
+1407063,11624706,4
+uf0,11624706,3
+68970958,11624706,4
+15182824,11624706,5
+73569982,11624706,5
+46095841,11624706,3
+4682542,11624706,2
+121945022,11624706,3
+1525048,11624706,3
+65420358,11624706,3
+120675468,11624706,4
+holic_mao,11624706,3
+wangdahe,11624706,3
+69515899,11624706,4
+53717841,11624706,4
+131079037,11624706,5
+keneyzhao,11624706,2
+135327429,11624706,5
+fishbone523,11624706,3
+38626642,11624706,2
+87956504,11624706,4
+103712811,11624706,3
+yangui,11624706,3
+koukouxuanhe,11624706,4
+michaelcc,11624706,4
+129387167,11624706,3
+76302090,11624706,4
+131622596,11624706,3
+hiddenIris,11624706,4
+49554214,11624706,3
+jshingen,11624706,3
+zhouruowan,11624706,3
+34484262,11624706,5
+127917425,11624706,5
+59289371,11624706,2
+46640524,11624706,5
+56137069,11624706,4
+easternmoon,11624706,4
+LLLLLei,11624706,-1
+eva0320,11624706,4
+43631542,11624706,3
+44437703,11624706,4
+80609092,11624706,4
+josephcat,11624706,3
+myselfsese,11624706,3
+60576670,11624706,3
+joaquina,11624706,4
+existtoevendead,11624706,3
+130088939,11624706,3
+Anti_Ether,11624706,4
+80923328,11624706,3
+80923328,11624706,3
+91814028,11624706,4
+62739963,11624706,4
+1187053,11624706,3
+77121969,11624706,3
+77862080,11624706,3
+90784248,11624706,4
+ccdetiantang,11624706,3
+snow523,11624706,4
+dujiaodaxian,11624706,4
+fallenangle3,11624706,3
+112387290,11624706,4
+50135797,11624706,4
+51890472,11624706,-1
+131368901,11624706,4
+57738437,11624706,3
+47682956,11624706,3
+106310454,11624706,4
+lingchenchen,11624706,4
+A-fu-,11624706,4
+3491773,11624706,2
+4587293,11624706,3
+cecideng,11624706,3
+52120311,11624706,-1
+abbynmagic,11624706,5
+59217273,11624706,3
+anoTherTeezy,11624706,3
+maiya_2004,11624706,2
+mintiii,11624706,4
+breezemx,11624706,2
+shx303766095,11624706,4
+112098382,11624706,4
+susan_says,11624706,3
+chx93,11624706,3
+49469319,11624706,-1
+lsx8270,11624706,2
+73547471,11624706,2
+76199552,11624706,5
+2371357,11624706,3
+57725542,11624706,4
+81721687,11624706,3
+16156953,11624706,3
+59427727,11624706,3
+HSY0308,11624706,3
+88256583,11624706,3
+2457971,11624706,-1
+133372996,11624706,5
+guangying0211,11624706,4
+DizzyFox,11624706,3
+15870290,11624706,4
+cindytintin,11624706,3
+82915619,11624706,3
+4266482,11624706,3
+48972272,11624706,2
+103143960,11624706,4
+2733047,11624706,2
+11192863,11624706,4
+121391257,11624706,3
+2016454,11624706,4
+boringsly,11624706,5
+57910521,11624706,3
+35373128,11624706,1
+77619808,11624706,1
+Lost_Atlantis,11624706,-1
+111981766,11624706,3
+61307239,11624706,5
+90749669,11624706,3
+47414610,11624706,4
+iD415,11624706,3
+84475486,11624706,4
+51082446,11624706,5
+131955464,11624706,5
+40272500,11624706,3
+godblessrobin,11624706,2
+44539777,11624706,-1
+135297886,11624706,2
+74016648,11624706,5
+helenooc,11624706,3
+45637706,11624706,-1
+skyearthone,11624706,2
+zx8713,11624706,4
+freezinggl,11624706,2
+67871819,11624706,4
+wxxxx,11624706,2
+53240525,11624706,3
+90201276,11624706,4
+yuxiaodi1988,11624706,3
+26473546,11624706,-1
+93413999,11624706,-1
+50459772,11624706,4
+2741490,11624706,3
+bellaG,11624706,4
+67334357,11624706,3
+52396131,11624706,-1
+myserendipity,11624706,4
+wohouhou,11624706,4
+lululovexiah,11624706,-1
+43002105,11624706,4
+4336395,11624706,3
+42661364,11624706,4
+135290784,11624706,3
+58009329,11624706,3
+46844509,11624706,4
+nalanxiang,11624706,3
+4019279,11624706,3
+28776614,11624706,2
+135284429,11624706,4
+23260274,11624706,3
+66593618,11624706,5
+ningjing0215,11624706,3
+Devilhunter,11624706,-1
+zh91,11624706,3
+31788770,11624706,-1
+120305816,11624706,5
+131013584,11624706,4
+maomaoye,11624706,3
+59528107,11624706,2
+52673788,11624706,4
+MandyinSunshine,11624706,4
+39648072,11624706,3
+47345199,11624706,3
+96744890,11624706,5
+danielwan,11624706,4
+76189804,11624706,4
+didiaoyuanwei,11624706,4
+cometoloveme,11624706,4
+Murmur256,11624706,4
+cplcs,11624706,-1
+62961178,11624706,3
+46436685,11624706,-1
+52965302,11624706,5
+58742522,11624706,5
+53377652,11624706,4
+50073602,11624706,3
+48919879,11624706,3
+16166133,11624706,2
+sunnyfify,11624706,4
+119299697,11624706,3
+fkimi,11624706,3
+arlotte,11624706,4
+arlotte,11624706,4
+44656032,11624706,-1
+61771440,11624706,5
+4525488,11624706,3
+115510735,11624706,2
+jasper1312,11624706,-1
+13972691,11624706,2
+101033924,11624706,4
+47982116,11624706,3
+62181038,11624706,-1
+50753568,11624706,-1
+suikame,11624706,-1
+47238636,11624706,-1
+cdpnerv,11624706,3
+83177067,11624706,4
+48194344,11624706,4
+orsule,11624706,3
+chaoz-mozart,11624706,-1
+51534374,11624706,4
+70397135,11624706,3
+70794815,11624706,4
+78362081,11624706,5
+85642211,11624706,5
+43919989,11624706,-1
+55849798,11624706,4
+70335483,11624706,3
+127283446,11624706,4
+47633821,11624706,1
+82928298,11624706,5
+66103395,11624706,3
+120109041,11624706,4
+82834599,11624706,4
+1159179,11624706,3
+76616285,11624706,-1
+4049920,11624706,4
+127467448,11624706,5
+ciyoandcicy,11624706,4
+62659371,11624706,-1
+47165433,11624706,-1
+40067937,11624706,4
+vloiter,11624706,3
+87982146,11624706,3
+k-kuai,11624706,-1
+elvina,11624706,3
+73134068,11624706,4
+48434294,11624706,4
+59554628,11624706,3
+85245250,11624706,3
+abe_y,11624706,4
+eileenxx,11624706,-1
+mixmx,11624706,5
+fenxinyu,11624706,4
+129213368,11624706,3
+135257732,11624706,3
+woshimasi,11624706,5
+Yanna_z,11624706,5
+looma,11624706,-1
+66716197,11624706,5
+50062390,11624706,3
+emiliaysean,11624706,-1
+64543096,11624706,3
+134503726,11624706,3
+134005955,11624706,4
+97171614,11624706,4
+65532452,11624706,4
+52299764,11624706,-1
+128621146,11624706,4
+37471534,11624706,5
+2570876,11624706,3
+128272992,11624706,3
+58439081,11624706,-1
+48218453,11624706,4
+130510398,11624706,5
+53312629,11624706,5
+tongnixcv,11624706,3
+64217349,11624706,3
+yang0826,11624706,4
+123645263,11624706,3
+50079736,11624706,3
+92189909,11624706,3
+45892109,11624706,5
+99473768,11624706,3
+1402990,11624706,5
+1478783,11624706,5
+Tiara0211,11624706,4
+vaie,11624706,3
+3729649,11624706,4
+47525784,11624706,3
+131286609,11624706,2
+neilacr,11624706,3
+47867887,11624706,2
+77199851,11624706,2
+myapril,11624706,-1
+mapleclam,11624706,2
+cheryl_wang,11624706,4
+meko1206,11624706,3
+71717101,11624706,3
+allaboutamo,11624706,3
+80250339,11624706,3
+61007953,11624706,5
+61007953,11624706,5
+wdshouji,11624706,4
+56694630,11624706,5
+xiaokate,11624706,4
+65973294,11624706,3
+misummer08,11624706,1
+79080942,11624706,3
+87997485,11624706,3
+2275229,11624706,3
+47032431,11624706,4
+96149760,11624706,3
+58194812,11624706,3
+71180219,11624706,3
+121038500,11624706,1
+48932419,11624706,2
+55865463,11624706,3
+92354006,11624706,3
+124491349,11624706,3
+47463766,11624706,4
+Lynnxj,11624706,2
+s-a-d,11624706,3
+94073624,11624706,5
+51526777,11624706,1
+59931529,11624706,3
+109365835,11624706,3
+24159540,11624706,4
+90751686,11624706,1
+jerryzou,11624706,4
+3355684,11624706,3
+liusicong,11624706,5
+77111727,11624706,3
+54703835,11624706,4
+68621838,11624706,2
+50694268,11624706,4
+imsugar,11624706,4
+57599139,11624706,3
+lollipop_yogo,11624706,3
+rei2613,11624706,-1
+124825941,11624706,4
+1458725,11624706,3
+AdileGuan,11624706,3
+glorialgy,11624706,4
+29725427,11624706,5
+68991888,11624706,5
+54754387,11624706,5
+54356096,11624706,4
+73538837,11624706,3
+50814680,11624706,5
+110834897,11624706,1
+remuse,11624706,2
+53175256,11624706,3
+ghlee,11624706,2
+Weiliangliang,11624706,3
+winterbreak,11624706,4
+37001196,11624706,5
+81679660,11624706,3
+30486993,11624706,3
+48555554,11624706,3
+88174425,11624706,3
+leafwaiting,11624706,3
+leafwaiting,11624706,3
+79559178,11624706,2
+56771366,11624706,4
+4520580,11624706,3
+41000067,11624706,3
+50430721,11624706,4
+60133071,11624706,2
+96488948,11624706,4
+99351353,11624706,5
+lychee_2007,11624706,4
+43212336,11624706,3
+75001572,11624706,4
+50813433,11624706,5
+lokimicky,11624706,4
+71888272,11624706,3
+89525445,11624706,3
+cyan_xi,11624706,4
+hijoly,11624706,5
+38466277,11624706,3
+2326921,11624706,3
+114841876,11624706,5
+yzzlovezj,11624706,3
+orochichris,11624706,3
+2260580,11624706,4
+mnxn889,11624706,3
+47319867,11624706,5
+imlove,11624706,2
+49287269,11624706,4
+59721065,11624706,3
+2647768,11624706,3
+42709375,11624706,2
+35015768,11624706,4
+y.u,11624706,3
+49332776,11624706,2
+123855693,11624706,3
+65379257,11624706,4
+126201751,11624706,3
+lambxlamb,11624706,4
+changgu4290,11624706,4
+kangwenyi,11624706,5
+126072260,11624706,4
+41294131,11624706,2
+LeeMar,11624706,3
+shenqiongye,11624706,3
+47698809,11624706,2
+cloverMu,11624706,4
+windyeagle,11624706,3
+43618252,11624706,3
+46493903,11624706,4
+elwy,11624706,5
+zwbhappy,11624706,4
+cherrytiaotiao,11624706,4
+73550571,11624706,4
+49659484,11624706,4
+YeshuaComm,11624706,4
+67200006,11624706,3
+33792508,11624706,3
+35308768,11624706,5
+54069821,11624706,3
+135222434,11624706,3
+35737386,11624706,5
+1519166,11624706,3
+81793893,11624706,3
+50214253,11624706,4
+multiple,11624706,3
+50743687,11624706,5
+bearyumi,11624706,3
+59197107,11624706,3
+1762540,11624706,4
+hunhunsui,11624706,3
+74551493,11624706,4
+93924879,11624706,3
+Dorothycheer,11624706,3
+yunge_s,11624706,3
+yeli570579421,11624706,4
+131183374,11624706,4
+gzgaoyuan,11624706,5
+zyt090919,11624706,5
+99969448,11624706,5
+52331791,11624706,4
+87819452,11624706,4
+JarviStark,11624706,3
+gcd0318,11624706,3
+53080002,11624706,4
+iloveamei,11624706,4
+edisonme,11624706,3
+60867302,11624706,4
+37785613,11624706,5
+9349453,11624706,4
+84168657,11624706,4
+xiaol123456,11624706,5
+63730928,11624706,2
+56369223,11624706,3
+134483925,11624706,5
+51229534,11624706,3
+stillfyou,11624706,3
+128156169,11624706,4
+115838732,11624706,3
+2107728,11624706,4
+tree-mu,11624706,3
+mandy087,11624706,3
+caoenjian,11624706,2
+2110097,11624706,4
+51945136,11624706,3
+JC921004,11624706,3
+ABQK,11624706,4
+73042317,11624706,4
+bancy,11624706,3
+2917503,11624706,3
+130909390,11624706,4
+72972634,11624706,4
+xifengqishi,11624706,3
+laoT,11624706,3
+49585596,11624706,3
+interestqiu,11624706,-1
+erica953,11624706,4
+57591346,11624706,5
+bluesun1031,11624706,3
+78377948,11624706,3
+74286517,11624706,4
+74286517,11624706,4
+46513410,11624706,3
+60019067,11624706,2
+an-sirens,11624706,3
+monicachan,11624706,2
+40105087,11624706,4
+132516248,11624706,4
+50529481,11624706,5
+34725478,11624706,5
+34842183,11624706,2
+34885746,11624706,3
+lwx27,11624706,4
+irismile,11624706,3
+79378805,11624706,3
+48091725,11624706,4
+134727615,11624706,5
+103194933,11624706,5
+2601973,11624706,3
+97666446,11624706,3
+37181999,11624706,3
+35779488,11624706,-1
+mayoke,11624706,3
+33078631,11624706,4
+132039953,11624706,3
+2103500,11624706,3
+76429798,11624706,4
+1806185,11624706,3
+misamore,11624706,4
+sjsry,11624706,3
+46202965,11624706,4
+Miss.Hyacinth,11624706,4
+60925123,11624706,3
+hhy890809,11624706,3
+61100170,11624706,3
+62497317,11624706,1
+47250941,11624706,1
+48400292,11624706,4
+wlee21,11624706,4
+hirochi,11624706,4
+Doglee110,11624706,5
+47001489,11624706,3
+fan0208,11624706,2
+menkoumahu,11624706,4
+weexf,11624706,4
+tricy_y,11624706,-1
+jasonwcy,11624706,4
+Little_bear,11624706,5
+Movllmo,11624706,4
+duax,11624706,3
+2039225,11624706,3
+44032446,11624706,4
+51620794,11624706,3
+wzy4u,11624706,4
+superotter,11624706,3
+51275614,11624706,5
+116406928,11624706,5
+67838185,11624706,3
+94460148,11624706,4
+68978681,11624706,3
+54825070,11624706,3
+54825070,11624706,3
+veady,11624706,4
+58283218,11624706,3
+theninthmonth,11624706,3
+40447897,11624706,3
+68124742,11624706,3
+muxu413,11624706,4
+alianzhao,11624706,-1
+jiatianhui,11624706,3
+59902712,11624706,4
+lionlsh,11624706,4
+84762957,11624706,3
+48188874,11624706,4
+67135692,11624706,5
+51483335,11624706,3
+levone,11624706,3
+58691476,11624706,4
+48190546,11624706,3
+kev1989,11624706,3
+41895346,11624706,4
+monet_c,11624706,4
+71519677,11624706,3
+gb333,11624706,3
+85527494,11624706,3
+didilovemovie31,11624706,3
+48830084,11624706,4
+lave,11624706,2
+57610615,11624706,2
+54561082,11624706,4
+87837876,11624706,3
+63137779,11624706,3
+zhouzhoushen,11624706,3
+65730802,11624706,1
+huxiaotian,11624706,3
+qiuqiongxu,11624706,3
+tea_dream,11624706,4
+123002309,11624706,4
+123208179,11624706,4
+Zhaokai0226,11624706,3
+37673954,11624706,4
+37673954,11624706,4
+matter,11624706,4
+54538414,11624706,3
+D_DAY_OFF,11624706,4
+46064171,11624706,4
+54860840,11624706,4
+hechenguang,11624706,4
+49919460,11624706,2
+demonsshadow,11624706,5
+51058241,11624706,4
+4335554,11624706,4
+29589660,11624706,3
+63255619,11624706,2
+114435379,11624706,4
+134498765,11624706,4
+firstcause,11624706,4
+jiaozhenshayne,11624706,3
+131829692,11624706,4
+getto1234,11624706,3
+65546282,11624706,3
+65546282,11624706,3
+55281661,11624706,3
+JTG,11624706,4
+64305274,11624706,5
+42068010,11624706,2
+88648524,11624706,2
+shynic89,11624706,3
+3310872,11624706,4
+amyzane,11624706,3
+60973173,11624706,4
+48531338,11624706,3
+69277267,11624706,3
+119364695,11624706,5
+T.O.E,11624706,4
+misszuoweimen,11624706,3
+onlysmile,11624706,4
+dearforget,11624706,3
+47917777,11624706,3
+49520443,11624706,3
+83480928,11624706,3
+chesterchoi,11624706,3
+sep10th,11624706,4
+92462355,11624706,3
+70764851,11624706,4
+106153294,11624706,5
+96388706,11624706,4
+68898069,11624706,3
+gyivv,11624706,3
+51760780,11624706,3
+67862373,11624706,2
+64017906,11624706,4
+119396712,11624706,5
+tengyuanmeihong,11624706,2
+16583407,11624706,4
+modoulvxing,11624706,3
+71940900,11624706,3
+fengwuyaoye,11624706,3
+53547991,11624706,3
+AnchorS,11624706,3
+67368013,11624706,3
+62822588,11624706,3
+63083952,11624706,4
+anna017,11624706,4
+68364127,11624706,4
+61030127,11624706,4
+heedy,11624706,4
+vivimao128,11624706,4
+14510418,11624706,5
+74908482,11624706,-1
+132230547,11624706,5
+70742254,11624706,3
+64858326,11624706,4
+gutt727,11624706,3
+134402728,11624706,4
+114608710,11624706,5
+80050743,11624706,4
+2990497,11624706,4
+48258273,11624706,4
+sssssstutter,11624706,2
+2248587,11624706,3
+4380133,11624706,3
+zcq741433220,11624706,3
+KathyChao,11624706,3
+68632515,11624706,4
+132772322,11624706,3
+83943798,11624706,4
+88428743,11624706,4
+134677330,11624706,2
+46370564,11624706,4
+104344457,11624706,4
+60461731,11624706,5
+Taco_0511,11624706,4
+54067198,11624706,4
+35538541,11624706,3
+75312647,11624706,5
+61506735,11624706,3
+ohagur,11624706,3
+52371477,11624706,4
+3762011,11624706,2
+78588109,11624706,5
+59782027,11624706,2
+farmerdouban,11624706,2
+yanan928,11624706,3
+aiiicat,11624706,2
+juliazhuli,11624706,4
+95076327,11624706,4
+monser,11624706,5
+48511248,11624706,3
+61059314,11624706,4
+JasmineYu,11624706,5
+chevalier7,11624706,4
+49892458,11624706,3
+49161384,11624706,4
+fourteendepp,11624706,3
+74062182,11624706,3
+133958431,11624706,4
+1495064,11624706,5
+chanrumao,11624706,4
+vince717,11624706,4
+58489881,11624706,3
+70539132,11624706,3
+44318435,11624706,4
+39635413,11624706,-1
+92775477,11624706,3
+63029694,11624706,4
+135196279,11624706,-1
+40723514,11624706,4
+46804098,11624706,5
+In2004.6.,11624706,1
+yeats1865,11624706,3
+131112631,11624706,3
+59672518,11624706,2
+131626464,11624706,5
+mr_han1991,11624706,3
+YJJlovelife,11624706,5
+64628791,11624706,3
+27021178,11624706,4
+41197911,11624706,2
+winifred911,11624706,3
+jinasong,11624706,4
+43045516,11624706,4
+seraphhoo,11624706,3
+lan_nal,11624706,4
+rainielo,11624706,3
+90035469,11624706,2
+61963666,11624706,3
+yizhao,11624706,3
+125477201,11624706,1
+120659032,11624706,3
+51583738,11624706,2
+lilyhmmm,11624706,2
+41457619,11624706,5
+59782208,11624706,3
+66104038,11624706,4
+novocaine,11624706,4
+40887848,11624706,3
+58772458,11624706,3
+1305491,11624706,3
+boygo,11624706,2
+Azexi,11624706,5
+54916993,11624706,3
+54613586,11624706,3
+56157459,11624706,3
+ethalz,11624706,4
+31667362,11624706,3
+127406348,11624706,4
+i_Soda,11624706,4
+63589265,11624706,4
+zoe24,11624706,4
+ketsu214,11624706,4
+56075427,11624706,4
+132813456,11624706,5
+68699271,11624706,3
+Little-bear.,11624706,3
+fbndragona,11624706,5
+120582805,11624706,5
+49658554,11624706,3
+yigesong,11624706,3
+62751293,11624706,4
+73956595,11624706,5
+52345284,11624706,3
+43082674,11624706,3
+34217360,11624706,2
+89990085,11624706,4
+SunnyLuo,11624706,4
+haizhiyue,11624706,4
+nowaking,11624706,2
+medievaldream32,11624706,1
+60070241,11624706,5
+97354586,11624706,3
+53026146,11624706,3
+56281076,11624706,3
+2596903,11624706,2
+zzmynn,11624706,3
+112276419,11624706,5
+doggymx,11624706,4
+131858047,11624706,4
+70569834,11624706,3
+59940868,11624706,5
+xiaoshimimi,11624706,2
+gogom,11624706,3
+93300402,11624706,2
+12534073,11624706,3
+96428900,11624706,4
+97477466,11624706,4
+27704994,11624706,4
+1225389,11624706,4
+41837755,11624706,3
+121325958,11624706,3
+52956842,11624706,4
+127191688,11624706,3
+jessie962464,11624706,4
+stonepei,11624706,4
+62526582,11624706,3
+kaca_tana,11624706,4
+78632463,11624706,3
+twopages,11624706,5
+16073149,11624706,4
+53455622,11624706,4
+3540979,11624706,4
+47549750,11624706,2
+2789109,11624706,5
+85124225,11624706,4
+60835831,11624706,4
+cherryhood,11624706,4
+neochao,11624706,4
+133593752,11624706,4
+wjiandan,11624706,3
+46113187,11624706,4
+stone-ron,11624706,3
+63681438,11624706,2
+57474326,11624706,3
+mshandy,11624706,3
+48275353,11624706,4
+119795456,11624706,3
+52727144,11624706,2
+evachfu,11624706,1
+EMonica,11624706,4
+64123749,11624706,4
+49905882,11624706,2
+4708937,11624706,4
+88452602,11624706,4
+85109921,11624706,4
+51449484,11624706,4
+lc1993520,11624706,3
+nbyidao,11624706,2
+clever528,11624706,4
+64692199,11624706,4
+1423904,11624706,2
+1811724,11624706,4
+44733447,11624706,3
+yujianengyi,11624706,3
+counting_crows,11624706,3
+134085133,11624706,5
+47798709,11624706,5
+1227418,11624706,3
+67820201,11624706,4
+83956629,11624706,3
+32838368,11624706,3
+62076752,11624706,5
+108821133,11624706,4
+2513938,11624706,2
+libangsi,11624706,4
+21729477,11624706,3
+59249650,11624706,4
+roseforu,11624706,5
+58556474,11624706,3
+fancyyan,11624706,2
+50362657,11624706,5
+69099920,11624706,4
+49995550,11624706,3
+52213307,11624706,5
+chariey,11624706,3
+lyh1014,11624706,3
+71374005,11624706,4
+80368846,11624706,5
+35546848,11624706,3
+53503878,11624706,3
+76549265,11624706,4
+23543377,11624706,4
+36121445,11624706,2
+sunsizhe,11624706,3
+41198660,11624706,5
+81913864,11624706,5
+2116000,11624706,3
+13263646,11624706,4
+57981494,11624706,4
+57449957,11624706,3
+93160401,11624706,5
+70192323,11624706,5
+125523961,11624706,5
+5130267,11624706,4
+weiminglu,11624706,5
+musicer03,11624706,4
+xubeisi,11624706,4
+31130349,11624706,4
+52268964,11624706,3
+Casiopea_yh,11624706,5
+paandpa,11624706,4
+2563968,11624706,3
+52260644,11624706,3
+50797855,11624706,4
+4640701,11624706,4
+41680643,11624706,4
+wangxiaoyou,11624706,5
+65449858,11624706,4
+52877982,11624706,3
+85205230,11624706,4
+83949510,11624706,3
+floraalma,11624706,2
+101221667,11624706,1
+egegegg,11624706,1
+bebest,11624706,3
+lonelyrabbit,11624706,4
+69395247,11624706,4
+JasonCheung1992,11624706,4
+smilybaby,11624706,3
+lemon19xx,11624706,4
+koonwah,11624706,3
+62330413,11624706,4
+45385294,11624706,3
+7510013,11624706,3
+4624620,11624706,2
+karee,11624706,4
+77200977,11624706,3
+cocojamboo,11624706,3
+48815744,11624706,4
+90225366,11624706,3
+gaishixiaogui,11624706,1
+61576058,11624706,4
+oppih,11624706,4
+52697673,11624706,3
+46343793,11624706,4
+124391754,11624706,4
+huiverci,11624706,3
+79939000,11624706,4
+117233942,11624706,2
+128551970,11624706,4
+84355222,11624706,2
+blessyue,11624706,4
+Jacky_L,11624706,4
+55489137,11624706,-1
+128148756,11624706,5
+41881220,11624706,4
+61095404,11624706,2
+janeao,11624706,4
+84975087,11624706,3
+rtg,11624706,4
+love1989,11624706,3
+45916040,11624706,3
+50226238,11624706,4
+junxuan,11624706,4
+35364683,11624706,4
+64260117,11624706,4
+cynthiachang,11624706,-1
+48646659,11624706,3
+90501682,11624706,3
+70311914,11624706,4
+sheenshuay,11624706,1
+61435009,11624706,5
+116283306,11624706,3
+67388458,11624706,4
+suitsue0504,11624706,4
+70194363,11624706,4
+ulenka,11624706,3
+125481969,11624706,5
+78272085,11624706,3
+dreamerangela,11624706,3
+YeonParadise,11624706,4
+anboli,11624706,4
+74117962,11624706,4
+yourinan,11624706,4
+2167975,11624706,3
+44724062,11624706,3
+peiyue,11624706,3
+51877834,11624706,3
+43698408,11624706,3
+86253418,11624706,3
+dodoo7,11624706,4
+pinkbebe,11624706,4
+53640227,11624706,4
+53839512,11624706,5
+102436486,11624706,2
+4646921,11624706,3
+daiyuxuan,11624706,3
+Bubble-Geek,11624706,3
+DreamDeeeer,11624706,5
+4145491,11624706,5
+annacullen,11624706,3
+55860957,11624706,5
+54448061,11624706,4
+34342600,11624706,2
+47342696,11624706,4
+49876674,11624706,3
+soyore,11624706,5
+1920062,11624706,3
+50137334,11624706,4
+49748458,11624706,3
+rin993,11624706,3
+84524937,11624706,2
+cat23love,11624706,3
+77207422,11624706,4
+59813466,11624706,4
+128389549,11624706,3
+49921497,11624706,3
+97184237,11624706,3
+2752525,11624706,5
+ilovemyself,11624706,5
+50717732,11624706,2
+josieyang,11624706,5
+4564418,11624706,2
+zjuyjy,11624706,4
+44149860,11624706,4
+ariellau,11624706,3
+HY827889104,11624706,4
+2733941,11624706,2
+78169762,11624706,3
+50583394,11624706,2
+119165923,11624706,3
+4624478,11624706,4
+59007642,11624706,2
+2809964,11624706,3
+102662130,11624706,5
+52984450,11624706,1
+102426428,11624706,5
+peacefulkid,11624706,4
+48503019,11624706,2
+2198085,11624706,-1
+longfei39,11624706,1
+3834748,11624706,1
+citytan,11624706,5
+79457098,11624706,5
+43258797,11624706,5
+125691923,11624706,3
+wangyan13,11624706,4
+68608061,11624706,4
+83016243,11624706,4
+122977131,11624706,3
+littlemoon218,11624706,4
+aa_alien,11624706,4
+krugwoman,11624706,4
+133035351,11624706,2
+50472589,11624706,4
+icyiwing,11624706,2
+43626938,11624706,4
+yikobest,11624706,5
+119221214,11624706,4
+yovng,11624706,4
+deltayuan,11624706,3
+65111838,11624706,3
+49298846,11624706,4
+2221536,11624706,3
+yangyin827,11624706,4
+beelover,11624706,4
+mahehe,11624706,3
+littleflowercan,11624706,4
+Curlylin,11624706,4
+53387777,11624706,3
+135145215,11624706,4
+55777311,11624706,4
+97159850,11624706,1
+103442120,11624706,4
+daangel,11624706,3
+66175108,11624706,4
+Debby.Q,11624706,4
+89989677,11624706,4
+52111153,11624706,4
+78557858,11624706,4
+yokezhu,11624706,-1
+joycelam,11624706,5
+38632566,11624706,3
+sakura114,11624706,4
+54208015,11624706,3
+CSO-Botasky,11624706,4
+79934332,11624706,2
+49855573,11624706,4
+83192314,11624706,3
+42785040,11624706,4
+tonyuanChen,11624706,3
+52709908,11624706,3
+Zukunft,11624706,1
+4514078,11624706,3
+59856519,11624706,4
+3588521,11624706,4
+72354881,11624706,5
+135041231,11624706,4
+aRmstrong-Kiss,11624706,4
+52296283,11624706,5
+51049554,11624706,4
+122287111,11624706,3
+77037611,11624706,3
+2847632,11624706,-1
+48509984,11624706,4
+Fanyahoo,11624706,3
+huang_w,11624706,2
+4287768,11624706,4
+51078000,11624706,2
+122240307,11624706,5
+eureka7,11624706,3
+131361061,11624706,3
+chenquan91,11624706,2
+60889084,11624706,4
+33449368,11624706,5
+Rocky_neverland,11624706,4
+71476951,11624706,4
+chenling_1011,11624706,3
+4363649,11624706,3
+cn50344,11624706,4
+50444681,11624706,5
+84646038,11624706,4
+ILOVEMOVIES,11624706,4
+94352576,11624706,4
+65417028,11624706,3
+ops-out,11624706,3
+63786695,11624706,5
+109027259,11624706,4
+77579023,11624706,3
+violet_heaven,11624706,3
+fanyamin,11624706,2
+4733232,11624706,4
+60149646,11624706,2
+3975532,11624706,4
+2574364,11624706,5
+Aprilnight,11624706,3
+74137880,11624706,4
+rhea860618,11624706,3
+anisezww,11624706,3
+115740561,11624706,3
+98344279,11624706,3
+gz222,11624706,4
+47653703,11624706,4
+52120890,11624706,3
+dengbilin,11624706,4
+75019987,11624706,4
+carlyarthur,11624706,3
+33954209,11624706,4
+1170659,11624706,3
+geliwei,11624706,4
+131274312,11624706,4
+51156864,11624706,4
+54258626,11624706,3
+Droitcity,11624706,2
+oneyijia,11624706,4
+58872286,11624706,3
+61926092,11624706,5
+81985285,11624706,4
+47216352,11624706,3
+caicaisweat,11624706,4
+51571110,11624706,3
+53134415,11624706,4
+leafxiaoying,11624706,4
+121397901,11624706,5
+missfuluola,11624706,4
+119262734,11624706,4
+82052556,11624706,5
+49220225,11624706,5
+107437673,11624706,4
+74679165,11624706,3
+51786128,11624706,3
+4816272,11624706,4
+49497563,11624706,5
+mogujunmomo,11624706,3
+cyjcandychan,11624706,3
+49069432,11624706,5
+52119631,11624706,3
+pylee,11624706,3
+youyeqiuxin,11624706,3
+2040497,11624706,5
+alunnihao,11624706,4
+tiny_loo,11624706,3
+61624406,11624706,3
+7669558,11624706,4
+xxxcici123,11624706,3
+littlemansay,11624706,5
+44052755,11624706,3
+yuli2333,11624706,3
+135022920,11624706,4
+57104894,11624706,3
+too_up,11624706,3
+2465698,11624706,3
+62415146,11624706,5
+70327080,11624706,2
+131779880,11624706,3
+3703647,11624706,2
+aaaai,11624706,4
+48937128,11624706,2
+80725917,11624706,4
+60181393,11624706,2
+2677448,11624706,3
+135126816,11624706,3
+42781557,11624706,3
+tracycw618,11624706,3
+131771853,11624706,3
+44603618,11624706,2
+40074179,11624706,4
+71887540,11624706,3
+llms,11624706,4
+zajm,11624706,3
+34493482,11624706,4
+AdorableMe,11624706,3
+zhangyifendou,11624706,2
+56150909,11624706,2
+yee_ing,11624706,5
+johnnybai,11624706,3
+noooo2,11624706,3
+113286915,11624706,4
+zhuangbixia,11624706,3
+kimi-1119,11624706,3
+79181519,11624706,3
+soapyxuspirit,11624706,3
+johnnyshen90,11624706,5
+lorrainelsy,11624706,5
+SBgirl,11624706,5
+40671381,11624706,3
+49529006,11624706,3
+99251376,11624706,2
+bubbbble,11624706,4
+2991153,11624706,5
+brucedt,11624706,3
+mayness,11624706,3
+YHRui0831,11624706,5
+shitting,11624706,2
+3845576,11624706,3
+72946203,11624706,3
+xiajinlv,11624706,4
+1448721,11624706,4
+3774521,11624706,5
+71880775,11624706,4
+81106134,11624706,3
+101067288,11624706,5
+64497662,11624706,2
+woodwool,11624706,2
+cskywalker,11624706,4
+71811082,11624706,4
+94254044,11624706,4
+53665936,11624706,3
+yysimida,11624706,4
+47328394,11624706,2
+3752454,11624706,4
+50739468,11624706,3
+3752454,11624706,4
+50739468,11624706,3
+121682845,11624706,4
+mi-hang,11624706,4
+53867160,11624706,4
+72991242,11624706,4
+130583862,11624706,5
+karenin,11624706,3
+66292362,11624706,3
+3407555,11624706,3
+63084559,11624706,3
+93715801,11624706,3
+Erinnerung,11624706,3
+1077771,11624706,3
+Andrea530,11624706,3
+59608454,11624706,4
+52468739,11624706,4
+72316189,11624706,5
+50773161,11624706,4
+50770418,11624706,4
+mentholcris,11624706,-1
+3859112,11624706,4
+75869760,11624706,2
+57761188,11624706,3
+92945557,11624706,3
+87344411,11624706,4
+76356022,11624706,3
+120604736,11624706,4
+101040376,11624706,3
+68879069,11624706,4
+watchboy,11624706,5
+134488722,11624706,3
+126931660,11624706,2
+quanzhongyang,11624706,3
+leaf615,11624706,5
+2030775,11624706,4
+103277074,11624706,4
+123469699,11624706,2
+61861749,11624706,3
+48065738,11624706,4
+51478709,11624706,4
+61054715,11624706,3
+127876966,11624706,3
+57725456,11624706,4
+B-B-B-Side,11624706,3
+69476809,11624706,5
+Chilwoo,11624706,2
+sherrybecks,11624706,4
+3483902,11624706,1
+42086535,11624706,5
+80503759,11624706,2
+nivakyo,11624706,3
+131463434,11624706,4
+49740890,11624706,3
+wyjlwyy,11624706,4
+chen69,11624706,2
+cao_mq1989.,11624706,3
+51836771,11624706,4
+feizhuangzhuang,11624706,3
+64547560,11624706,4
+115772568,11624706,3
+71093640,11624706,3
+19613347,11624706,4
+4247653,11624706,5
+guojie,11624706,3
+2711621,11624706,3
+36234545,11624706,3
+2579882,11624706,3
+huangsiqi21,11624706,3
+46917427,11624706,4
+mayturner,11624706,4
+131488271,11624706,4
+45743155,11624706,4
+leona_2624c,11624706,3
+66066828,11624706,4
+74520364,11624706,4
+67922307,11624706,4
+sarah59,11624706,3
+59186096,11624706,4
+66991215,11624706,3
+66991215,11624706,3
+99048843,11624706,1
+133106464,11624706,4
+134686831,11624706,3
+43595713,11624706,4
+117808839,11624706,3
+andichou,11624706,4
+linyuxi,11624706,5
+78160357,11624706,2
+54484555,11624706,3
+1771263,11624706,3
+131849470,11624706,4
+56578668,11624706,4
+127089919,11624706,4
+jolyne,11624706,2
+bodyblue,11624706,2
+Immafrady,11624706,2
+50494817,11624706,2
+45795420,11624706,3
+89027238,11624706,5
+74105180,11624706,5
+rvlt,11624706,3
+35051547,11624706,3
+31530097,11624706,2
+lovemetomato,11624706,4
+52596376,11624706,3
+71900698,11624706,3
+119301627,11624706,4
+52790172,11624706,4
+71679335,11624706,3
+67240733,11624706,4
+kehr,11624706,4
+xhm,11624706,5
+34156068,11624706,3
+75240553,11624706,4
+78445664,11624706,4
+134552123,11624706,3
+70658647,11624706,3
+everyage,11624706,4
+GreenCard,11624706,3
+61535646,11624706,3
+66405994,11624706,4
+lyutian,11624706,3
+84530034,11624706,3
+53951936,11624706,4
+43783147,11624706,3
+104605800,11624706,5
+teuhyuk,11624706,3
+67232713,11624706,4
+132540342,11624706,2
+48540615,11624706,-1
+84975793,11624706,5
+1447706,11624706,3
+120899384,11624706,3
+1179798,11624706,3
+lasenli,11624706,3
+4158579,11624706,3
+1849986,11624706,3
+46720130,11624706,4
+mingren2588,11624706,4
+66967497,11624706,3
+yiydao,11624706,5
+78663925,11624706,4
+78728562,11624706,3
+89399422,11624706,-1
+kiwihello,11624706,3
+49294840,11624706,1
+trista-smily,11624706,5
+summer9186,11624706,2
+59366583,11624706,4
+54209528,11624706,2
+4067480,11624706,5
+85659565,11624706,5
+waldo0121,11624706,4
+tanguohong,11624706,5
+133533083,11624706,3
+evich,11624706,1
+92335297,11624706,4
+99834805,11624706,3
+122164611,11624706,4
+51467153,11624706,3
+2069523,11624706,4
+123389634,11624706,3
+Mangocc,11624706,4
+53820448,11624706,3
+49842297,11624706,4
+youxuanmu,11624706,4
+83143884,11624706,3
+35552430,11624706,3
+73729558,11624706,2
+101982187,11624706,4
+40757284,11624706,4
+4028097,11624706,4
+apr1lcoo,11624706,4
+53430150,11624706,3
+Str,11624706,3
+55919901,11624706,3
+46692711,11624706,3
+1074069,11624706,4
+135077083,11624706,2
+lingfriendly,11624706,4
+130603884,11624706,1
+crystal_ww,11624706,5
+57411563,11624706,3
+yangyangjt,11624706,5
+49437518,11624706,5
+46661278,11624706,3
+44614198,11624706,2
+121679857,11624706,-1
+130421783,11624706,5
+InvisibleViper,11624706,5
+78766701,11624706,3
+bxc1988yiderky,11624706,4
+bibiko7,11624706,5
+48204509,11624706,3
+bebabay,11624706,3
+59099833,11624706,2
+xinxinyu,11624706,3
+sangelsangel,11624706,5
+80060716,11624706,-1
+39691117,11624706,3
+serena_lol,11624706,3
+84603183,11624706,2
+70091695,11624706,3
+14508573,11624706,5
+41370734,11624706,3
+1759587,11624706,3
+121917998,11624706,2
+2859552,11624706,3
+50780437,11624706,5
+114441069,11624706,5
+36071533,11624706,3
+everisle,11624706,3
+80274259,11624706,4
+84654420,11624706,3
+ets,11624706,3
+darkleo1008,11624706,3
+73948612,11624706,4
+67950329,11624706,3
+2561289,11624706,3
+pangdashen,11624706,3
+87547812,11624706,3
+62136582,11624706,-1
+liaojiafen,11624706,3
+42143621,11624706,5
+48278113,11624706,4
+53293207,11624706,4
+zhurou,11624706,4
+72385276,11624706,5
+53437305,11624706,3
+59428764,11624706,5
+jiaxintuanzi,11624706,3
+90164423,11624706,4
+99027512,11624706,3
+102853868,11624706,3
+53743649,11624706,3
+31548307,11624706,2
+66800718,11624706,5
+103163383,11624706,4
+121180696,11624706,4
+51689078,11624706,3
+bluewater777,11624706,5
+59705681,11624706,3
+wushishiwo,11624706,1
+yogurt2202,11624706,3
+124765626,11624706,3
+46032671,11624706,3
+fallenisland,11624706,4
+little-dog,11624706,4
+fengyuanli,11624706,3
+pupuleaf,11624706,3
+89312806,11624706,4
+60428418,11624706,3
+46590871,11624706,4
+Emily0803,11624706,3
+134907491,11624706,3
+80177881,11624706,4
+nicaland,11624706,3
+51304362,11624706,5
+52396951,11624706,5
+sisiliya,11624706,4
+96660784,11624706,5
+Fin.de.semana,11624706,3
+hela,11624706,-1
+36643443,11624706,2
+68835395,11624706,4
+128266356,11624706,3
+117359316,11624706,4
+syd_sumo,11624706,3
+62498885,11624706,4
+49107356,11624706,4
+86253613,11624706,3
+aijin1011,11624706,4
+62810246,11624706,3
+64163444,11624706,4
+42060804,11624706,5
+50634686,11624706,-1
+xhermes,11624706,2
+4642464,11624706,4
+52236886,11624706,4
+72138630,11624706,4
+133239175,11624706,4
+futoublog,11624706,-1
+48941229,11624706,4
+1769463,11624706,1
+59798433,11624706,4
+appleright,11624706,3
+71143154,11624706,2
+madbug,11624706,3
+44705986,11624706,3
+41851712,11624706,5
+75650896,11624706,3
+Lava_R,11624706,2
+55838627,11624706,2
+aiyutao,11624706,4
+64601119,11624706,3
+emotion7,11624706,4
+46397487,11624706,2
+ServerError,11624706,3
+ichliebedich,11624706,-1
+121058318,11624706,3
+mycforever,11624706,-1
+WakeUpDead,11624706,5
+35453500,11624706,5
+42912613,11624706,4
+46249272,11624706,4
+68621390,11624706,4
+64225325,11624706,4
+turingsj,11624706,3
+yimin99,11624706,3
+132818328,11624706,4
+87869082,11624706,4
+62736610,11624706,5
+42678961,11624706,3
+1169676,11624706,5
+gyd,11624706,2
+46073568,11624706,4
+57741485,11624706,3
+2882324,11624706,4
+roseunicorn,11624706,3
+roseunicorn,11624706,3
+67958148,11624706,3
+14355410,11624706,4
+Tianyangyang,11624706,4
+104559183,11624706,3
+bunnyyz,11624706,5
+gozn,11624706,3
+seal4,11624706,2
+115551507,11624706,2
+16084893,11624706,3
+jinzimiao,11624706,3
+46942165,11624706,5
+85113803,11624706,4
+49128296,11624706,4
+littlepea,11624706,-1
+skag,11624706,3
+1535266,11624706,4
+tianranzijiegou,11624706,3
+63603619,11624706,3
+17298456,11624706,4
+17298456,11624706,4
+67795566,11624706,4
+asa-yan,11624706,3
+yiya77,11624706,4
+133816961,11624706,5
+48750685,11624706,5
+2012682,11624706,1
+34936131,11624706,4
+xxfyxl,11624706,3
+kaopuYan0731,11624706,5
+43846305,11624706,2
+59272939,11624706,5
+116089509,11624706,2
+120119010,11624706,4
+11867512,11624706,3
+fiona_77,11624706,3
+sueneko,11624706,5
+Pikachu1127,11624706,3
+45689152,11624706,3
+49301222,11624706,5
+2721730,11624706,4
+80011707,11624706,3
+119189447,11624706,2
+119215261,11624706,2
+69319715,11624706,4
+2021116,11624706,2
+62879196,11624706,1
+36982718,11624706,3
+57688571,11624706,3
+yangqihang,11624706,3
+102153568,11624706,4
+ladynnn,11624706,4
+amanjj,11624706,-1
+melanie_je,11624706,4
+66889726,11624706,4
+130735639,11624706,4
+71877767,11624706,3
+little_cupid,11624706,2
+84758064,11624706,4
+zhxyuh,11624706,4
+53721569,11624706,4
+41968793,11624706,3
+121007768,11624706,3
+Franna,11624706,2
+67330888,11624706,2
+kinjio,11624706,3
+91259259,11624706,5
+133380603,11624706,3
+51378582,11624706,1
+51277324,11624706,5
+58316570,11624706,3
+PIERRELIU,11624706,5
+Monte.L,11624706,4
+zaozao928,11624706,4
+2028239,11624706,3
+50837451,11624706,4
+58158842,11624706,4
+lovetatum,11624706,4
+yanlee17,11624706,5
+56445943,11624706,2
+126220956,11624706,5
+hotzenplotz,11624706,2
+54152146,11624706,3
+129563214,11624706,2
+sunny1989,11624706,3
+52399993,11624706,3
+2562419,11624706,4
+turecoffee,11624706,4
+shania0912,11624706,3
+nongnong424,11624706,2
+52519025,11624706,4
+81601608,11624706,4
+53268448,11624706,5
+57083190,11624706,3
+63281804,11624706,2
+1898022,11624706,4
+4248478,11624706,5
+ggx29225692,11624706,3
+frdom,11624706,2
+damichongamy,11624706,4
+InveRno,11624706,4
+3410512,11624706,3
+135012811,11624706,4
+50224943,11624706,4
+46641274,11624706,5
+41376663,11624706,4
+81045053,11624706,3
+somnor,11624706,5
+46524843,11624706,3
+80386991,11624706,3
+44105969,11624706,3
+14944907,11624706,3
+rainjoy,11624706,2
+78145448,11624706,3
+nan0521,11624706,2
+128233338,11624706,3
+58065564,11624706,3
+ivanla,11624706,5
+56539741,11624706,5
+51253098,11624706,3
+62298176,11624706,3
+103399006,11624706,3
+122666264,11624706,4
+59013874,11624706,3
+joshvietti,11624706,4
+superlims,11624706,4
+hawkingwang,11624706,4
+3851402,11624706,3
+Qianlumanman,11624706,4
+45283092,11624706,1
+38789187,11624706,4
+ohcherrysama,11624706,5
+37101036,11624706,3
+68880594,11624706,3
+73710640,11624706,2
+59800464,11624706,5
+15655185,11624706,5
+Se7en_017,11624706,2
+2520052,11624706,3
+120066819,11624706,2
+3590759,11624706,4
+65804780,11624706,3
+46009658,11624706,-1
+catsama77,11624706,4
+Lonelydark,11624706,3
+45396935,11624706,3
+4889156,11624706,4
+52234182,11624706,3
+3571623,11624706,5
+72108532,11624706,4
+119238337,11624706,4
+82539513,11624706,5
+49232578,11624706,3
+2832706,11624706,3
+mihion,11624706,3
+57088096,11624706,3
+4368925,11624706,3
+58770434,11624706,2
+50644881,11624706,3
+126934669,11624706,5
+84915183,11624706,2
+83242010,11624706,4
+101462888,11624706,3
+61740178,11624706,4
+jeanne68240109,11624706,3
+polars,11624706,3
+poppy7777,11624706,3
+yY.,11624706,4
+ile,11624706,4
+yummygirl,11624706,2
+53920626,11624706,3
+62319312,11624706,3
+43376668,11624706,3
+2429499,11624706,3
+1590523,11624706,4
+131055900,11624706,2
+61515893,11624706,5
+cattyiyoungeoon,11624706,5
+54676136,11624706,4
+88695508,11624706,2
+83847642,11624706,4
+duhuitang,11624706,5
+91479757,11624706,3
+yanpealew,11624706,3
+46710908,11624706,3
+47166487,11624706,2
+59029832,11624706,4
+46301744,11624706,3
+69323349,11624706,3
+campbellii,11624706,4
+lmelva,11624706,3
+mixi456,11624706,3
+66228440,11624706,5
+63381991,11624706,5
+fengwanlu,11624706,4
+43378617,11624706,3
+42421580,11624706,5
+41984834,11624706,-1
+53867313,11624706,5
+nanshuo,11624706,3
+41258503,11624706,4
+celia550,11624706,3
+exploremore,11624706,4
+121763445,11624706,5
+38652161,11624706,5
+idiotmike,11624706,3
+missair,11624706,4
+SpanishAnt,11624706,4
+junko,11624706,2
+doriskojima,11624706,4
+90412275,11624706,4
+ningning316,11624706,4
+45944952,11624706,5
+54703119,11624706,4
+sssa1,11624706,3
+81144305,11624706,4
+44349913,11624706,5
+Sulla_Zhou,11624706,5
+xixi-0303,11624706,3
+xuanxuan1209,11624706,4
+113073174,11624706,5
+122059760,11624706,3
+57545593,11624706,2
+61547123,11624706,4
+92490871,11624706,3
+zhiyutianhaozi,11624706,5
+131092031,11624706,5
+beech,11624706,3
+1860715,11624706,4
+58848925,11624706,3
+26860515,11624706,4
+valevalevale,11624706,4
+4132864,11624706,2
+vanny77,11624706,4
+66302894,11624706,2
+52466141,11624706,4
+68294357,11624706,3
+49607126,11624706,2
+dylite,11624706,3
+xxschou,11624706,4
+63512552,11624706,3
+backYi,11624706,2
+44837247,11624706,4
+64091286,11624706,3
+waiting0605,11624706,4
+4221659,11624706,4
+lslgreen,11624706,3
+69679169,11624706,4
+MrBaby,11624706,3
+68152865,11624706,4
+62034201,11624706,5
+6863418,11624706,3
+orangelynn,11624706,5
+3969854,11624706,4
+44329176,11624706,3
+Liverpoolsun,11624706,3
+ivy722,11624706,-1
+krsnik,11624706,2
+x-inter,11624706,3
+127154004,11624706,3
+35233003,11624706,5
+119999952,11624706,2
+4040333,11624706,5
+47004535,11624706,4
+2687910,11624706,-1
+39280389,11624706,3
+49116772,11624706,3
+58999997,11624706,4
+Amordyf,11624706,3
+40140527,11624706,3
+houjingmeng,11624706,5
+nicos,11624706,4
+zyy_317,11624706,3
+alorsmi,11624706,5
+78667857,11624706,5
+65948274,11624706,-1
+Lillian-LYL,11624706,3
+55664199,11624706,3
+26312947,11624706,4
+83244806,11624706,3
+yumofu,11624706,1
+2691861,11624706,5
+52045308,11624706,3
+hanuit,11624706,3
+vivianchance,11624706,4
+deeslove,11624706,3
+46123999,11624706,3
+1427744,11624706,3
+70443066,11624706,4
+55404773,11624706,4
+7633150,11624706,4
+moyuhuansha,11624706,4
+55460987,11624706,4
+ling0816,11624706,3
+lyshan,11624706,5
+hfguren,11624706,3
+78469944,11624706,3
+ceciliayiyi,11624706,5
+47256072,11624706,4
+39270011,11624706,4
+39270011,11624706,4
+116380975,11624706,4
+63829772,11624706,5
+48047032,11624706,3
+44555018,11624706,4
+jjcarolyn0609,11624706,4
+68647916,11624706,4
+64071683,11624706,4
+34975211,11624706,2
+40643841,11624706,4
+57420118,11624706,2
+41002683,11624706,2
+53646130,11624706,4
+AzukiXu,11624706,2
+88732540,11624706,3
+54387469,11624706,4
+67483108,11624706,4
+16303104,11624706,-1
+boonup,11624706,5
+BeatirceLee,11624706,4
+tinydust_90,11624706,3
+Yokizyz,11624706,5
+3127403,11624706,-1
+61957820,11624706,5
+zhangsunset,11624706,3
+48633478,11624706,4
+umbrella722,11624706,4
+49742235,11624706,3
+philia_eo,11624706,4
+tt0523_hitomi,11624706,4
+61551903,11624706,5
+danny1105,11624706,5
+77735645,11624706,3
+60980785,11624706,4
+2033349,11624706,3
+88327119,11624706,3
+68946693,11624706,2
+59776363,11624706,4
+mikiaries,11624706,4
+zsq0028347,11624706,4
+58798538,11624706,4
+48036288,11624706,3
+113425405,11624706,5
+etsuko120,11624706,4
+61095536,11624706,2
+49345312,11624706,3
+christyjun,11624706,4
+68327761,11624706,5
+53318325,11624706,4
+59134594,11624706,4
+51061404,11624706,3
+134924552,11624706,4
+sherrytu,11624706,4
+133651758,11624706,2
+121922821,11624706,3
+61703830,11624706,3
+lemonjam903,11624706,4
+82305871,11624706,4
+47610030,11624706,4
+63619081,11624706,3
+1998897,11624706,3
+bikibiki,11624706,4
+63406200,11624706,3
+evilecho,11624706,4
+60882741,11624706,3
+47531635,11624706,4
+63483596,11624706,3
+69378440,11624706,3
+68921506,11624706,1
+52899301,11624706,3
+34227236,11624706,3
+juyi214,11624706,4
+drawblue,11624706,4
+48581609,11624706,3
+boredblooming,11624706,5
+2425435,11624706,-1
+lynyean,11624706,3
+63523895,11624706,4
+2481956,11624706,3
+migaor,11624706,-1
+58196889,11624706,4
+27632752,11624706,5
+16820487,11624706,3
+zslkazz,11624706,3
+Dallowave,11624706,4
+131704250,11624706,2
+74230231,11624706,5
+planty,11624706,3
+nineC,11624706,2
+59570753,11624706,2
+lyreforever,11624706,3
+67936485,11624706,4
+crystalnura,11624706,3
+verababe,11624706,3
+leecarol,11624706,3
+emma_er,11624706,4
+jingxian302206,11624706,3
+70272999,11624706,5
+layne37,11624706,3
+cherrywang0118,11624706,4
+amycc,11624706,4
+47849551,11624706,2
+47810404,11624706,3
+74771823,11624706,2
+lilmi13,11624706,4
+wangmian0729,11624706,4
+istas,11624706,4
+4357598,11624706,5
+79684421,11624706,4
+40133458,11624706,5
+kakai0u,11624706,3
+41430865,11624706,2
+34888785,11624706,2
+42625939,11624706,2
+2050459,11624706,2
+17106986,11624706,3
+134789261,11624706,2
+49703092,11624706,3
+rainelf1215,11624706,3
+50508303,11624706,4
+57775883,11624706,4
+distance_scar,11624706,4
+120516607,11624706,4
+stevenzhaodl,11624706,2
+94574301,11624706,4
+130880509,11624706,-1
+68211622,11624706,4
+canhongfw,11624706,3
+39322389,11624706,5
+37865911,11624706,3
+58804593,11624706,3
+lvxg521,11624706,5
+51223777,11624706,-1
+butuisedelan,11624706,3
+zp913,11624706,3
+68968781,11624706,-1
+74308770,11624706,5
+3255312,11624706,3
+49270267,11624706,4
+zhaoyong922,11624706,4
+oliver521,11624706,-1
+carmen8212,11624706,4
+45848079,11624706,4
+t1n9_520,11624706,4
+102046989,11624706,3
+11054187,11624706,5
+ALee301302,11624706,2
+53751991,11624706,4
+Evilblood,11624706,2
+79105910,11624706,3
+125741123,11624706,4
+53871159,11624706,4
+120784937,11624706,3
+79840078,11624706,2
+35914058,11624706,3
+59413586,11624706,4
+64260734,11624706,5
+2461589,11624706,3
+schumibati,11624706,3
+31507629,11624706,4
+59292045,11624706,4
+sweety124,11624706,5
+malaowu,11624706,2
+52512744,11624706,3
+102141154,11624706,2
+ilovesnoopy3,11624706,4
+2340744,11624706,3
+4542640,11624706,3
+56329701,11624706,3
+60625092,11624706,3
+130461977,11624706,3
+3344118,11624706,4
+62672535,11624706,3
+pupu19891230,11624706,4
+79478187,11624706,3
+48313436,11624706,3
+130368500,11624706,3
+50059470,11624706,3
+xslidian,11624706,3
+85239246,11624706,3
+93385129,11624706,3
+119669141,11624706,4
+58924080,11624706,5
+62836138,11624706,4
+36792290,11624706,1
+karlkongkong,11624706,4
+70790963,11624706,4
+1377143,11624706,4
+49133007,11624706,3
+116652565,11624706,4
+89984750,11624706,2
+89421913,11624706,3
+91180216,11624706,4
+59563055,11624706,3
+129932923,11624706,3
+50017356,11624706,4
+59210685,11624706,3
+PrinceLu,11624706,3
+debussy,11624706,3
+wangliuwei,11624706,4
+48679133,11624706,5
+63327576,11624706,4
+2225897,11624706,4
+52447788,11624706,2
+132943950,11624706,3
+69324457,11624706,3
+changkxs,11624706,3
+xianschool,11624706,4
+ghosthan2007,11624706,4
+130391371,11624706,3
+49905941,11624706,5
+88124263,11624706,4
+slcws,11624706,2
+phl745,11624706,4
+littleyellowhat,11624706,4
+60119754,11624706,3
+ohAnthea,11624706,4
+shallio,11624706,4
+mae626,11624706,3
+75898047,11624706,4
+nanoyi,11624706,3
+yumizai,11624706,3
+109576871,11624706,5
+92348113,11624706,4
+4056710,11624706,3
+90599205,11624706,3
+imhechang,11624706,5
+mufengqin,11624706,4
+38494486,11624706,3
+latml,11624706,1
+45488064,11624706,2
+35822684,11624706,5
+aircrow,11624706,3
+45016565,11624706,2
+59795953,11624706,4
+41796932,11624706,3
+29174787,11624706,1
+4630769,11624706,3
+hotaru925,11624706,2
+35369841,11624706,3
+48921552,11624706,3
+33275779,11624706,4
+50573037,11624706,4
+70039420,11624706,5
+caomuyiyi,11624706,4
+43968587,11624706,3
+youwanttobe,11624706,4
+3705182,11624706,4
+48905575,11624706,3
+54257539,11624706,3
+4125258,11624706,4
+68729830,11624706,4
+floraxu,11624706,3
+78819457,11624706,3
+68648492,11624706,2
+crystal12345678,11624706,2
+42412497,11624706,3
+71156044,11624706,3
+chengbaobao,11624706,4
+KINGRUNRUN,11624706,2
+geminitang,11624706,5
+58720878,11624706,2
+hivhivwhm,11624706,5
+79847195,11624706,3
+37832420,11624706,3
+134528559,11624706,4
+55628932,11624706,3
+sixsea,11624706,4
+54761530,11624706,-1
+vinoruan,11624706,5
+43087480,11624706,3
+57541099,11624706,4
+14820638,11624706,-1
+66532466,11624706,3
+wendyrain,11624706,5
+26044083,11624706,3
+duduxiongzhifu,11624706,2
+65364463,11624706,4
+6352011,11624706,3
+77491930,11624706,4
+77491930,11624706,4
+66714330,11624706,4
+46431893,11624706,5
+57557138,11624706,4
+49201867,11624706,3
+vanwhebin,11624706,3
+13441174,11624706,5
+purple2046,11624706,3
+yumaomao123,11624706,3
+77215273,11624706,3
+zht90130,11624706,5
+68498461,11624706,4
+tanhuiwendy,11624706,-1
+nicoletao,11624706,4
+126500017,11624706,4
+41328613,11624706,3
+xiaoxinadd,11624706,4
+1923916,11624706,3
+lucia_star,11624706,2
+wenbo2003,11624706,3
+36477514,11624706,3
+67774999,11624706,4
+heyan0225,11624706,3
+124697172,11624706,3
+9429775,11624706,4
+56371381,11624706,4
+43372151,11624706,3
+128616169,11624706,5
+7697946,11624706,5
+128616856,11624706,4
+46481404,11624706,3
+bjoneday,11624706,5
+seizeup,11624706,3
+68146250,11624706,4
+83691770,11624706,4
+wenguochen,11624706,2
+jade0711,11624706,4
+3768837,11624706,1
+dogtile_vicky,11624706,3
+60624598,11624706,3
+85040313,11624706,3
+124393680,11624706,4
+37278837,11624706,3
+90812716,11624706,4
+abbysky,11624706,4
+smilewsy,11624706,-1
+53243920,11624706,-1
+2435169,11624706,3
+manmandemange,11624706,4
+55807035,11624706,4
+73331491,11624706,5
+46907907,11624706,3
+62879258,11624706,4
+sophie-july23,11624706,2
+cageyz,11624706,1
+121235168,11624706,5
+yinmengtan,11624706,3
+48122099,11624706,5
+gigiloveblue,11624706,4
+57588789,11624706,3
+kelvinshaw,11624706,3
+3085056,11624706,3
+HanaANDcat,11624706,3
+sjt641100358,11624706,3
+3569090,11624706,5
+43109240,11624706,3
+xmuliushuo,11624706,1
+3617977,11624706,3
+ran3233,11624706,4
+122825199,11624706,3
+qianxun_lin,11624706,2
+92119199,11624706,4
+4414323,11624706,4
+3159067,11624706,3
+54776806,11624706,4
+yuuyu,11624706,4
+59361957,11624706,4
+27710094,11624706,3
+28678505,11624706,5
+104761006,11624706,4
+103807559,11624706,4
+33973051,11624706,4
+60750005,11624706,4
+76980448,11624706,3
+52316424,11624706,2
+Elvis_Young,11624706,2
+sunjm,11624706,3
+59262140,11624706,3
+meganlee,11624706,3
+48929050,11624706,4
+44409988,11624706,3
+lingxiaolan,11624706,5
+58113364,11624706,4
+superwwll,11624706,3
+51221763,11624706,2
+48539445,11624706,4
+32853386,11624706,4
+134503446,11624706,3
+34557052,11624706,3
+52851561,11624706,3
+43429533,11624706,4
+128606975,11624706,2
+45158500,11624706,4
+shenaringo,11624706,3
+MariaMovie,11624706,5
+8275729,11624706,4
+67342694,11624706,3
+UU0707,11624706,4
+124596897,11624706,3
+48745932,11624706,3
+3134922,11624706,4
+101790054,11624706,5
+46827374,11624706,4
+119992317,11624706,2
+eileenlim,11624706,3
+64865282,11624706,5
+Exquisitely,11624706,-1
+64540248,11624706,3
+4420194,11624706,1
+42981900,11624706,3
+64996012,11624706,3
+52680941,11624706,5
+29839643,11624706,3
+48349929,11624706,2
+68325010,11624706,3
+Mihiyo,11624706,3
+128213623,11624706,-1
+58785321,11624706,4
+engel17,11624706,2
+70872466,11624706,4
+53182459,11624706,4
+54953444,11624706,3
+32359738,11624706,3
+56977444,11624706,3
+47786775,11624706,3
+52530490,11624706,5
+121215156,11624706,4
+2550814,11624706,5
+131479331,11624706,4
+aibamoe,11624706,3
+48090448,11624706,3
+70543045,11624706,3
+46911720,11624706,3
+80110021,11624706,3
+yoyoyoyoyoyoyo,11624706,1
+57080555,11624706,3
+lucifer7th,11624706,5
+64113646,11624706,4
+83145085,11624706,3
+97491371,11624706,4
+58338006,11624706,4
+COTOPE,11624706,5
+wangxu200,11624706,5
+cxp0730,11624706,3
+37395154,11624706,4
+52384624,11624706,3
+49016330,11624706,3
+baobaolilei,11624706,4
+amanda.zhang,11624706,3
+sunaiyue,11624706,4
+froggrandpa,11624706,2
+isay_,11624706,3
+sunshineautumn,11624706,3
+80363475,11624706,4
+mafeiyxq,11624706,3
+68037802,11624706,4
+62818720,11624706,4
+60410434,11624706,3
+missbean1993,11624706,4
+vegenious,11624706,3
+119018319,11624706,4
+133402651,11624706,4
+88380892,11624706,5
+16902359,11624706,4
+58596965,11624706,4
+love_of_kitty,11624706,5
+Rae8023,11624706,3
+48160969,11624706,2
+50347486,11624706,5
+59660757,11624706,4
+panwealth,11624706,4
+1346384,11624706,4
+yousu,11624706,-1
+54231509,11624706,3
+119838841,11624706,3
+monkeycupl,11624706,4
+levid,11624706,3
+3265100,11624706,5
+80393914,11624706,3
+79647492,11624706,4
+45447780,11624706,4
+41295937,11624706,5
+dou4y,11624706,3
+simple_v,11624706,3
+134908010,11624706,4
+qinmochu,11624706,5
+89448095,11624706,3
+3986652,11624706,2
+yanashiny,11624706,2
+sophie_star,11624706,4
+opheliafeeling,11624706,3
+17913616,11624706,4
+2833136,11624706,3
+46944255,11624706,4
+64622433,11624706,4
+cynicfyzj,11624706,4
+52046624,11624706,5
+53222149,11624706,3
+134905591,11624706,4
+120669387,11624706,4
+winvic,11624706,5
+xflunlove,11624706,-1
+wodezuiai99,11624706,3
+47568574,11624706,3
+47306356,11624706,4
+hxiaoyang,11624706,4
+1645946,11624706,4
+47314582,11624706,2
+SFN20100429,11624706,3
+53546400,11624706,2
+56326446,11624706,4
+35297314,11624706,2
+evim,11624706,3
+86138673,11624706,5
+loveubefor,11624706,3
+46656559,11624706,4
+shenxueying,11624706,4
+icecream0330,11624706,2
+alft-huahua,11624706,4
+52903037,11624706,3
+82131016,11624706,4
+124347540,11624706,3
+122039396,11624706,3
+127535930,11624706,5
+41896230,11624706,5
+45238478,11624706,3
+45698347,11624706,4
+77493243,11624706,3
+we_15,11624706,1
+z0830,11624706,4
+77864053,11624706,3
+50942013,11624706,4
+34415572,11624706,2
+44411218,11624706,3
+arneis,11624706,2
+auvpe,11624706,4
+4842718,11624706,4
+within.april,11624706,4
+4355562,11624706,4
+ice41322,11624706,3
+49139242,11624706,3
+63526709,11624706,4
+41541165,11624706,3
+89860575,11624706,1
+62930321,11624706,4
+43017535,11624706,4
+128142501,11624706,4
+46424200,11624706,3
+deepdesire,11624706,3
+nightw1sh,11624706,3
+62943026,11624706,-1
+65060474,11624706,-1
+45137077,11624706,4
+sweetrain0229,11624706,3
+119456408,11624706,3
+alwaysbestrong,11624706,4
+37824700,11624706,3
+74966541,11624706,3
+chenruijie1111,11624706,3
+50335163,11624706,4
+y-3y17,11624706,-1
+4507417,11624706,3
+46338692,11624706,3
+79139857,11624706,1
+34107081,11624706,4
+19579481,11624706,3
+65521542,11624706,2
+103469083,11624706,4
+50443007,11624706,5
+65922740,11624706,3
+42974933,11624706,-1
+Pennyui,11624706,5
+guiwuu,11624706,3
+34990527,11624706,4
+wh396011051,11624706,4
+125603682,11624706,3
+59970963,11624706,4
+3392727,11624706,4
+cilar,11624706,2
+78447440,11624706,5
+68990945,11624706,3
+fying,11624706,3
+shhry,11624706,5
+nevershuo,11624706,4
+134896142,11624706,5
+134691111,11624706,5
+51522345,11624706,4
+126658027,11624706,3
+2119013,11624706,3
+yezihanxu,11624706,3
+108693709,11624706,2
+48898252,11624706,3
+134479956,11624706,3
+huangxie,11624706,2
+127014101,11624706,4
+50376263,11624706,4
+2642604,11624706,5
+51628420,11624706,3
+67394660,11624706,4
+40135086,11624706,3
+keita1,11624706,4
+70687104,11624706,3
+127529044,11624706,4
+echo-jian,11624706,3
+17685672,11624706,3
+37551097,11624706,3
+tusling,11624706,3
+wul1fang,11624706,3
+61366288,11624706,3
+63572086,11624706,4
+fishzero,11624706,-1
+mkbl,11624706,5
+nvq7Gin,11624706,3
+48260143,11624706,3
+56244786,11624706,-1
+reneesnow,11624706,5
+2092765,11624706,3
+54380467,11624706,3
+51258589,11624706,5
+37746468,11624706,4
+adore1992,11624706,3
+73118410,11624706,3
+zincky,11624706,4
+bulijite,11624706,3
+51098652,11624706,2
+Knight9,11624706,4
+35064724,11624706,2
+52755028,11624706,4
+3852877,11624706,4
+2655191,11624706,3
+49643631,11624706,4
+36212126,11624706,5
+58959669,11624706,4
+77098637,11624706,5
+LillianLeelll,11624706,3
+66997400,11624706,2
+47587270,11624706,4
+76877046,11624706,5
+GAJI,11624706,3
+83197005,11624706,3
+56486542,11624706,4
+yangxi1987,11624706,4
+kaye-mi,11624706,4
+joxy,11624706,4
+119489564,11624706,4
+1751335,11624706,3
+33907274,11624706,-1
+star-b612,11624706,3
+35183435,11624706,4
+75938815,11624706,3
+linpcha,11624706,2
+61301677,11624706,5
+yiquwuji,11624706,4
+35905722,11624706,4
+zoply6227,11624706,4
+119879807,11624706,5
+1794910,11624706,2
+73189108,11624706,3
+43682942,11624706,3
+fanbucloud,11624706,3
+pp_jing,11624706,5
+130084772,11624706,3
+121182825,11624706,3
+ashin52,11624706,3
+91656862,11624706,5
+44975625,11624706,4
+35497511,11624706,5
+tenacityqian,11624706,2
+62187148,11624706,5
+59944601,11624706,3
+graygem,11624706,2
+49138712,11624706,4
+drawtang,11624706,3
+49051976,11624706,3
+chenxingyi,11624706,3
+59414293,11624706,3
+3400522,11624706,3
+GracieG,11624706,2
+4826633,11624706,3
+1240620,11624706,4
+madhatterlalice,11624706,4
+34268718,11624706,2
+68409423,11624706,5
+shuoyin,11624706,4
+125929186,11624706,4
+51398742,11624706,3
+seven1122,11624706,4
+78801731,11624706,3
+29481623,11624706,3
+74768790,11624706,2
+yeexue,11624706,3
+58399217,11624706,3
+41966800,11624706,3
+jy0820,11624706,4
+ElyseLee,11624706,4
+55605353,11624706,4
+hilca,11624706,3
+2843086,11624706,3
+3873758,11624706,4
+wanlili520,11624706,3
+vtmonkey,11624706,4
+66919177,11624706,3
+68420280,11624706,4
+serenity.,11624706,5
+yoursna,11624706,3
+51774232,11624706,4
+58287607,11624706,4
+60388741,11624706,3
+cajiln,11624706,4
+huilam0123,11624706,2
+63819525,11624706,3
+32551454,11624706,3
+Jenn__ifer,11624706,4
+ichaos,11624706,4
+61392222,11624706,3
+52893055,11624706,2
+122691745,11624706,5
+daisylikeu,11624706,4
+Zosen,11624706,3
+chunchunderen,11624706,3
+hujing324,11624706,5
+40258007,11624706,4
+48349431,11624706,3
+47978030,11624706,5
+zhanshenzhy,11624706,3
+56480795,11624706,3
+adlhblj,11624706,4
+100236370,11624706,2
+115351276,11624706,3
+1498974,11624706,4
+1338192,11624706,3
+riusmary,11624706,4
+snowhair,11624706,3
+dayandnights,11624706,3
+44976171,11624706,3
+dhflockyer00,11624706,3
+53068258,11624706,3
+58212317,11624706,4
+80536863,11624706,3
+jelly-8,11624706,3
+3822591,11624706,3
+shables,11624706,4
+2870309,11624706,-1
+39779867,11624706,4
+blackout,11624706,2
+52512622,11624706,3
+2747271,11624706,3
+3323980,11624706,3
+MancunianJor,11624706,4
+59329084,11624706,5
+84718748,11624706,4
+67104840,11624706,2
+44651571,11624706,5
+44253593,11624706,4
+120940336,11624706,4
+yiyi9love,11624706,5
+rechal1218,11624706,4
+121334018,11624706,3
+dfzxqqian,11624706,3
+huang.jr,11624706,5
+remenbercc,11624706,3
+51700021,11624706,4
+50226054,11624706,5
+126225635,11624706,3
+54467692,11624706,3
+wakainibakandao,11624706,5
+43133361,11624706,3
+dearruby,11624706,2
+104050982,11624706,4
+61776681,11624706,4
+miemiefever,11624706,3
+122531288,11624706,5
+SuperWMY,11624706,2
+cold_sophie,11624706,3
+joyfish0912,11624706,3
+57646854,11624706,4
+arriey,11624706,4
+4114315,11624706,5
+60390953,11624706,5
+1530155,11624706,3
+46140866,11624706,4
+yuki_kaze,11624706,3
+ghslyvia,11624706,4
+29469143,11624706,5
+39098592,11624706,4
+64972660,11624706,3
+80643965,11624706,5
+76294374,11624706,3
+benjemin,11624706,3
+60818564,11624706,2
+132082727,11624706,3
+37922395,11624706,4
+ryec,11624706,4
+77078751,11624706,4
+65441937,11624706,3
+127071131,11624706,2
+3446088,11624706,4
+ckino,11624706,3
+DdotRabbit,11624706,5
+27783640,11624706,5
+15716080,11624706,3
+EstellaSun,11624706,4
+69998780,11624706,3
+117808564,11624706,4
+futurecoke,11624706,3
+67061542,11624706,2
+basaya,11624706,2
+kim730,11624706,3
+1718944,11624706,4
+MOKUZJY,11624706,4
+1691509,11624706,3
+yourmint,11624706,3
+69202875,11624706,2
+73258002,11624706,5
+cold_warm,11624706,2
+TTEminem,11624706,5
+58881939,11624706,4
+57209076,11624706,4
+30714456,11624706,5
+calfqingqing,11624706,4
+12945910,11624706,3
+64195578,11624706,2
+36009516,11624706,2
+5214442,11624706,4
+134874653,11624706,3
+43004375,11624706,5
+violetsnow,11624706,4
+63963645,11624706,4
+32785698,11624706,3
+102913887,11624706,5
+51618406,11624706,3
+mfishoo,11624706,2
+lummyboyla,11624706,3
+29631507,11624706,4
+84796406,11624706,3
+kuangren79,11624706,3
+27223833,11624706,3
+3760870,11624706,2
+ddumplling,11624706,3
+sugar.yao,11624706,3
+130599620,11624706,3
+6754857,11624706,5
+72257329,11624706,3
+Hsummer,11624706,-1
+26893682,11624706,1
+128742398,11624706,3
+52970998,11624706,4
+65042146,11624706,3
+124595459,11624706,3
+68031244,11624706,3
+62761738,11624706,3
+42808435,11624706,3
+imbella,11624706,4
+li_han,11624706,5
+singlebuddy,11624706,3
+1366592,11624706,2
+49302309,11624706,4
+80091139,11624706,5
+94832319,11624706,5
+optimisery,11624706,3
+75428247,11624706,2
+mo1027,11624706,3
+frogwangzi,11624706,4
+4196011,11624706,5
+60735046,11624706,3
+40198777,11624706,1
+58290750,11624706,4
+werder100,11624706,2
+sweet2wingsky,11624706,3
+38785285,11624706,3
+imagefly,11624706,3
+120043182,11624706,4
+wuyiye,11624706,2
+66872229,11624706,5
+49957120,11624706,5
+28460777,11624706,3
+sara39aiba,11624706,3
+CamilleChang,11624706,4
+87570484,11624706,2
+2728631,11624706,4
+43393053,11624706,4
+134500343,11624706,5
+48873217,11624706,4
+133398715,11624706,3
+dreaming66,11624706,5
+carebear,11624706,3
+partric,11624706,4
+5747784,11624706,-1
+126857138,11624706,5
+77609153,11624706,3
+42111921,11624706,4
+xiaohundaban,11624706,3
+6278260,11624706,3
+michaeliama,11624706,3
+watercolor823,11624706,3
+44034563,11624706,4
+dearmeng,11624706,5
+44878423,11624706,4
+130755105,11624706,3
+amiaschen,11624706,5
+48216346,11624706,3
+50335410,11624706,4
+45099103,11624706,3
+yaoyoyo,11624706,3
+52129503,11624706,3
+80893099,11624706,4
+71133348,11624706,5
+4367727,11624706,5
+samuel_liu,11624706,3
+snooming,11624706,4
+63981568,11624706,4
+nyx1224,11624706,3
+61452974,11624706,4
+83267313,11624706,5
+sosisarah,11624706,3
+15497319,11624706,3
+Ke-_-vin,11624706,3
+124935841,11624706,2
+smilediva,11624706,3
+53829658,11624706,3
+wyczy,11624706,4
+Candy_Can,11624706,3
+1884591,11624706,4
+4231858,11624706,4
+2252653,11624706,3
+3302374,11624706,5
+wjww2128,11624706,3
+thymedy,11624706,3
+57783651,11624706,4
+61398424,11624706,3
+kakasissi,11624706,3
+59426800,11624706,3
+121074324,11624706,2
+2402223,11624706,3
+124340762,11624706,4
+2634815,11624706,4
+4284841,11624706,4
+4891885,11624706,4
+magicxiaobi,11624706,3
+56571196,11624706,4
+andrpirl,11624706,2
+45108609,11624706,3
+43096733,11624706,4
+wsgstrike,11624706,4
+luot,11624706,3
+60015294,11624706,4
+apubit,11624706,3
+dearerxia,11624706,4
+51056568,11624706,-1
+coryzh,11624706,3
+zhangzhai,11624706,3
+orangeo,11624706,4
+sue0213,11624706,3
+CherryChI,11624706,2
+yoshidaerika,11624706,5
+1380828,11624706,4
+essemoon,11624706,3
+39138192,11624706,4
+81729720,11624706,4
+43793736,11624706,5
+2244671,11624706,3
+76603396,11624706,4
+Lucifer4219,11624706,4
+27068979,11624706,5
+anarkhhom,11624706,2
+46655241,11624706,3
+vivianya,11624706,3
+tofuchico,11624706,2
+bramblesinwind,11624706,4
+Nickhsu,11624706,5
+122377549,11624706,4
+Valentina1919,11624706,5
+41959776,11624706,3
+48958931,11624706,3
+tuviel,11624706,5
+59867809,11624706,2
+3277999,11624706,2
+YOHaYY,11624706,3
+iysy,11624706,3
+maixiaobao,11624706,3
+121976150,11624706,3
+31513632,11624706,5
+mmj-lli,11624706,4
+yangyiwen,11624706,4
+78900467,11624706,4
+rummy0115,11624706,4
+cl1235,11624706,3
+simplece,11624706,4
+44367163,11624706,3
+libinghe,11624706,4
+3574648,11624706,3
+65283286,11624706,3
+81336001,11624706,4
+xqsmao,11624706,3
+wilshere19,11624706,4
+43156253,11624706,3
+icrush,11624706,4
+onlyburger,11624706,2
+48421988,11624706,5
+flower-ye,11624706,5
+yusanlv,11624706,5
+3840143,11624706,4
+130513128,11624706,3
+45088175,11624706,2
+73619061,11624706,4
+emi881008,11624706,4
+akkabby,11624706,3
+120860718,11624706,3
+loveBJuncle,11624706,5
+leilalee,11624706,3
+FOOL624,11624706,4
+Crispy,11624706,3
+sekijiang,11624706,4
+4349474,11624706,4
+56854681,11624706,3
+redbean0_0,11624706,3
+121206161,11624706,3
+sharn,11624706,4
+sanganggongzi,11624706,3
+61469153,11624706,3
+51792609,11624706,5
+jingshuixian,11624706,3
+xiaoyuan_0310,11624706,3
+44506499,11624706,2
+yurifuta,11624706,5
+56555191,11624706,4
+75301981,11624706,3
+LynnHsu,11624706,4
+47854967,11624706,4
+70081048,11624706,3
+2286926,11624706,3
+Simplexity,11624706,4
+emmaxu,11624706,2
+aki.sh,11624706,3
+nickycqf,11624706,3
+53212300,11624706,3
+55628165,11624706,4
+129490479,11624706,2
+27068945,11624706,4
+3474242,11624706,3
+83994671,11624706,3
+yangyanyi_ash,11624706,5
+75611903,11624706,4
+2456765,11624706,4
+evelyn69,11624706,3
+shiguagji,11624706,5
+lizujie,11624706,2
+3139871,11624706,5
+coconutZii,11624706,3
+60234558,11624706,4
+56956858,11624706,-1
+4564555,11624706,4
+ChenYufei,11624706,2
+55539986,11624706,4
+sentimento-rose,11624706,3
+66460349,11624706,2
+62788704,11624706,2
+55501438,11624706,3
+VicS,11624706,3
+46794907,11624706,3
+4310321,11624706,4
+34493197,11624706,5
+5520945,11624706,3
+54771764,11624706,5
+50418082,11624706,3
+37720840,11624706,5
+leisurelee,11624706,3
+weakness,11624706,2
+48148912,11624706,3
+13293153,11624706,5
+54529720,11624706,2
+2883884,11624706,2
+73948805,11624706,3
+unrealzhizhi,11624706,5
+49134732,11624706,3
+54899239,11624706,3
+55737384,11624706,3
+34161257,11624706,5
+60685540,11624706,5
+54076009,11624706,3
+52471318,11624706,4
+79192198,11624706,3
+whuzhangli,11624706,3
+3161053,11624706,4
+67726824,11624706,3
+84311404,11624706,3
+64333232,11624706,-1
+4155347,11624706,4
+mafiafansv,11624706,4
+junod,11624706,3
+xudifang13,11624706,5
+sophigrace,11624706,5
+adrian.chai.au,11624706,3
+2181401,11624706,-1
+rockduan1987,11624706,3
+Monderian,11624706,3
+134854783,11624706,1
+1796714,11624706,3
+65576748,11624706,-1
+22645353,11624706,4
+easonlau,11624706,3
+81984190,11624706,4
+Seraph.D,11624706,4
+59740753,11624706,4
+Enozhou,11624706,3
+3911272,11624706,3
+72885322,11624706,3
+54309403,11624706,5
+cody555,11624706,3
+65933190,11624706,3
+65933190,11624706,3
+82812012,11624706,4
+55507630,11624706,4
+71082385,11624706,4
+124812731,11624706,4
+51029451,11624706,3
+3432048,11624706,5
+63998046,11624706,4
+69433312,11624706,5
+102602713,11624706,4
+71972126,11624706,3
+57558861,11624706,4
+sherrychris,11624706,4
+49466976,11624706,4
+lan0519,11624706,3
+36943871,11624706,4
+shenda,11624706,4
+Patrickfey,11624706,4
+mtz,11624706,5
+131882002,11624706,3
+50335651,11624706,2
+73530078,11624706,3
+wyfsmd,11624706,4
+3910950,11624706,5
+80161354,11624706,3
+yueningxin,11624706,2
+chalam,11624706,5
+51057131,11624706,2
+memoricry,11624706,4
+1167276,11624706,2
+120107044,11624706,3
+70927104,11624706,4
+lemonoo,11624706,3
+buuwp,11624706,4
+katherine2008,11624706,5
+67208403,11624706,4
+89308667,11624706,3
+sarahbuxia,11624706,4
+70416197,11624706,4
+unakao,11624706,4
+66848071,11624706,4
+listencucumb,11624706,3
+62462968,11624706,4
+bloodleopard,11624706,3
+CyanWong,11624706,-1
+June_1,11624706,3
+1867121,11624706,3
+4283595,11624706,5
+willer16,11624706,3
+3956381,11624706,3
+4486712,11624706,3
+40718617,11624706,2
+yyq811,11624706,3
+pierrewrs,11624706,3
+116037812,11624706,4
+56875123,11624706,4
+81962971,11624706,4
+jerry_zou,11624706,3
+33921766,11624706,4
+50451093,11624706,3
+48354152,11624706,3
+54625709,11624706,4
+41471656,11624706,3
+Eileen-Adagio,11624706,4
+76749847,11624706,2
+49465683,11624706,5
+imqxq,11624706,-1
+65923312,11624706,5
+DreamCoocoo,11624706,-1
+47310524,11624706,4
+AirScript,11624706,3
+llbd0621,11624706,4
+82817836,11624706,4
+94085565,11624706,3
+huadouyeying,11624706,4
+46207489,11624706,3
+27178360,11624706,1
+64382911,11624706,3
+69349654,11624706,4
+92717529,11624706,4
+69430764,11624706,4
+maeho,11624706,4
+i7COLORS,11624706,5
+67987874,11624706,4
+57386589,11624706,3
+44556444,11624706,3
+48999424,11624706,4
+ky_linChen,11624706,4
+54452935,11624706,4
+57728302,11624706,3
+RaphaelDeng,11624706,4
+67865489,11624706,5
+60352370,11624706,4
+126219233,11624706,5
+MissCaptain,11624706,4
+4752519,11624706,2
+123962549,11624706,5
+duduben1861,11624706,4
+Tekis33,11624706,5
+xiusezhitiao,11624706,5
+summer-12,11624706,3
+69833008,11624706,3
+68812181,11624706,2
+aqinxia,11624706,3
+114586204,11624706,4
+tttuan,11624706,5
+46943216,11624706,3
+4575064,11624706,3
+55680257,11624706,3
+winna91,11624706,4
+63554215,11624706,4
+1584930,11624706,4
+116539336,11624706,4
+63125194,11624706,3
+121340954,11624706,4
+lianadreaming,11624706,4
+yishenmanli,11624706,4
+134495648,11624706,4
+mayuki,11624706,4
+121243676,11624706,2
+51879316,11624706,2
+kanachim,11624706,5
+54108756,11624706,4
+4082102,11624706,4
+tom80s,11624706,1
+WG92,11624706,4
+noangel05,11624706,3
+3496526,11624706,3
+47875215,11624706,5
+mush24,11624706,2
+98620419,11624706,4
+119330188,11624706,4
+taylor_fu,11624706,4
+132342610,11624706,2
+48322771,11624706,3
+103651770,11624706,3
+Loreley333,11624706,4
+2162065,11624706,2
+61648064,11624706,2
+51144464,11624706,3
+62781351,11624706,4
+xusara,11624706,3
+hecky,11624706,3
+74220901,11624706,5
+2209318,11624706,4
+133141228,11624706,4
+47924060,11624706,3
+crvigne,11624706,5
+lvhobbitdarren,11624706,3
+dmcrgiye,11624706,4
+aileen880401,11624706,2
+52524176,11624706,5
+84086649,11624706,4
+59876227,11624706,3
+4106814,11624706,5
+104823204,11624706,3
+khuntracie,11624706,5
+28152891,11624706,3
+29472366,11624706,5
+57877709,11624706,4
+57877709,11624706,4
+119226922,11624706,4
+lovinggarfield,11624706,5
+daisy702,11624706,4
+57328342,11624706,4
+85183443,11624706,3
+sircayden,11624706,5
+bunnydoll,11624706,4
+52350621,11624706,-1
+yufeichen,11624706,5
+75437175,11624706,4
+128937113,11624706,2
+3904908,11624706,4
+capricornprince,11624706,4
+badjian,11624706,4
+62728845,11624706,4
+61302763,11624706,5
+sygzs,11624706,4
+53268951,11624706,5
+zhipeng_zzpp,11624706,3
+65851485,11624706,3
+litsunny,11624706,4
+131733366,11624706,3
+luoliningmou,11624706,4
+67524096,11624706,3
+53447840,11624706,3
+zullnverno,11624706,4
+65526333,11624706,3
+58797277,11624706,4
+57486272,11624706,3
+56115601,11624706,3
+play0829,11624706,3
+74742103,11624706,2
+44297232,11624706,3
+65520405,11624706,5
+55353580,11624706,5
+119151261,11624706,3
+40645830,11624706,3
+44283837,11624706,5
+37291572,11624706,3
+ouyangjie123,11624706,4
+57500887,11624706,3
+peoplehlj,11624706,3
+1585143,11624706,4
+53323361,11624706,5
+80133214,11624706,4
+65065266,11624706,4
+59942467,11624706,3
+2209906,11624706,2
+66071713,11624706,5
+52685737,11624706,3
+edisondd,11624706,2
+huangjungeng,11624706,2
+ajulia,11624706,5
+miaojiaguo,11624706,4
+56758013,11624706,4
+45490337,11624706,5
+42622045,11624706,5
+56081235,11624706,3
+90787689,11624706,3
+90787689,11624706,3
+die_humans,11624706,4
+50778273,11624706,3
+134630183,11624706,2
+Anges_momo,11624706,-1
+55350236,11624706,4
+66273636,11624706,4
+chuan111,11624706,-1
+79394514,11624706,3
+peipeilan,11624706,4
+tflib,11624706,5
+54588486,11624706,2
+54216898,11624706,5
+41805060,11624706,4
+70615998,11624706,5
+72788853,11624706,4
+71574131,11624706,4
+silencehuang,11624706,5
+65264332,11624706,2
+qwertyxxx,11624706,3
+comicsuperman,11624706,4
+imKuku,11624706,2
+renmeng,11624706,3
+123235799,11624706,-1
+kimchi_chips,11624706,4
+57826492,11624706,3
+67977532,11624706,4
+43445712,11624706,4
+vickyfanyan,11624706,3
+46369381,11624706,5
+HarryBabel,11624706,1
+35687471,11624706,3
+67370965,11624706,4
+45229731,11624706,2
+66236209,11624706,3
+47175598,11624706,4
+44854300,11624706,3
+lanhouzi,11624706,4
+53557522,11624706,3
+45537891,11624706,4
+lyjrainbow,11624706,3
+57217044,11624706,3
+123000223,11624706,4
+seren,11624706,4
+131473143,11624706,3
+limewater,11624706,3
+41853736,11624706,3
+134586200,11624706,5
+65974526,11624706,3
+122817304,11624706,-1
+37229684,11624706,2
+psychycokie,11624706,4
+xiangs,11624706,4
+132099750,11624706,5
+91152583,11624706,4
+57275978,11624706,5
+69753373,11624706,5
+oolongtea_lsy,11624706,4
+62578070,11624706,5
+shmilyisf,11624706,3
+daisylq,11624706,3
+64173610,11624706,3
+132217575,11624706,4
+100746508,11624706,3
+44275423,11624706,2
+51784477,11624706,5
+127704028,11624706,3
+3676198,11624706,3
+57059547,11624706,3
+1734232,11624706,3
+124395368,11624706,2
+kiss_lavender,11624706,4
+kikoliu999,11624706,5
+smiduo,11624706,-1
+128580162,11624706,5
+53594562,11624706,5
+yaya102,11624706,3
+88335567,11624706,3
+83701119,11624706,4
+orange1027,11624706,4
+49637787,11624706,3
+76790888,11624706,2
+youyiwanan,11624706,5
+41499752,11624706,4
+65018405,11624706,5
+jzhang1610,11624706,1
+102416411,11624706,3
+120984787,11624706,5
+timejin,11624706,2
+48428436,11624706,1
+77068606,11624706,3
+3661713,11624706,5
+qijiejieblue,11624706,3
+yinyannan,11624706,5
+3974458,11624706,3
+61650073,11624706,3
+73585315,11624706,2
+44892859,11624706,3
+65123381,11624706,2
+fu-tao,11624706,2
+42657229,11624706,5
+bigsu,11624706,5
+summerchocolate,11624706,3
+8412009,11624706,3
+54579149,11624706,3
+75605625,11624706,4
+tanyue,11624706,1
+leonking7,11624706,3
+4881092,11624706,5
+63194711,11624706,4
+65544568,11624706,4
+yangzai508,11624706,4
+xx_jmlx,11624706,3
+2842505,11624706,3
+46010081,11624706,3
+DKJessica,11624706,3
+bea0819,11624706,4
+127298823,11624706,4
+62182604,11624706,4
+44431964,11624706,5
+51143310,11624706,5
+49086981,11624706,4
+raintail,11624706,3
+up117,11624706,4
+52244645,11624706,3
+68739318,11624706,4
+asglass,11624706,3
+jbecks,11624706,3
+57753272,11624706,3
+hoxx,11624706,2
+vicky8302,11624706,3
+56039933,11624706,-1
+imaginarydiva,11624706,4
+38698116,11624706,4
+Hawalulu,11624706,3
+130370822,11624706,3
+4602733,11624706,3
+2330877,11624706,4
+ivyfire,11624706,4
+4075741,11624706,5
+53075236,11624706,5
+119078211,11624706,3
+2626566,11624706,4
+beaux,11624706,4
+DarkKate,11624706,3
+Aviva.mc,11624706,3
+wmz1106,11624706,3
+122662265,11624706,3
+EBO,11624706,4
+sidneylumet,11624706,2
+buzzsunny,11624706,5
+jessedong,11624706,3
+Shirleywjz,11624706,3
+50180662,11624706,3
+125521901,11624706,4
+50588044,11624706,3
+134140438,11624706,1
+67435615,11624706,3
+106454248,11624706,3
+28081193,11624706,4
+50977532,11624706,5
+ym.7,11624706,5
+17767456,11624706,4
+39603909,11624706,3
+catterhu,11624706,5
+56906475,11624706,3
+49587951,11624706,4
+83057102,11624706,3
+132686664,11624706,5
+3648785,11624706,5
+Jack_Yan,11624706,3
+Carman.Feng,11624706,4
+2708623,11624706,3
+liuyi0821,11624706,5
+ween339,11624706,1
+Cp0204,11624706,2
+89159179,11624706,2
+justin_lw,11624706,5
+2211361,11624706,2
+wfay,11624706,3
+115195972,11624706,5
+54056952,11624706,3
+3289583,11624706,4
+4543967,11624706,2
+mabeysomeday,11624706,4
+junostar,11624706,5
+niushansuan313,11624706,3
+66475895,11624706,3
+sophia_n2,11624706,3
+52813259,11624706,2
+x7summer,11624706,4
+41431118,11624706,2
+mariewyssa,11624706,4
+55465032,11624706,4
+68399606,11624706,3
+2202605,11624706,4
+80381774,11624706,2
+62440574,11624706,5
+109038183,11624706,3
+52999233,11624706,4
+52999233,11624706,4
+36539973,11624706,4
+2575457,11624706,4
+41686662,11624706,3
+benjaminsmith,11624706,5
+veronicaz,11624706,4
+62184065,11624706,-1
+114358187,11624706,5
+57553454,11624706,4
+77640366,11624706,4
+48979561,11624706,3
+102641702,11624706,4
+133323909,11624706,3
+DQIN,11624706,3
+45311964,11624706,3
+anya0215,11624706,4
+yintianyi420,11624706,4
+131337124,11624706,4
+4459976,11624706,4
+30569646,11624706,5
+Cristina.Yang,11624706,4
+44649844,11624706,3
+65826312,11624706,4
+93757846,11624706,3
+45347825,11624706,3
+70858340,11624706,2
+Ivy_bramble,11624706,2
+nkkun,11624706,4
+4603863,11624706,2
+53319390,11624706,4
+124886620,11624706,4
+52972063,11624706,3
+122228928,11624706,5
+57795507,11624706,3
+75492929,11624706,4
+3470120,11624706,3
+66813486,11624706,4
+54404217,11624706,3
+52745181,11624706,2
+miaow,11624706,4
+miaow,11624706,4
+brightwsx,11624706,3
+huahuadaisy,11624706,2
+chuan1989,11624706,3
+85487157,11624706,3
+yisideta,11624706,4
+77459141,11624706,3
+sam_smile,11624706,4
+45123579,11624706,3
+vision-young,11624706,5
+9614176,11624706,3
+52639138,11624706,5
+49874489,11624706,4
+jun.jun.,11624706,4
+43680833,11624706,3
+selavyzhou,11624706,3
+misstiming,11624706,2
+pigSu,11624706,3
+48713524,11624706,3
+34834989,11624706,4
+34834989,11624706,4
+even,11624706,4
+41534595,11624706,3
+51569553,11624706,3
+92692605,11624706,3
+formeswong,11624706,3
+zazaza,11624706,-1
+47546589,11624706,2
+37212118,11624706,5
+75909451,11624706,4
+PP-RAIN,11624706,4
+cutebbluckygirl,11624706,3
+AmenGeb,11624706,3
+tinysean,11624706,3
+yangcosta,11624706,4
+2057913,11624706,4
+moqianyao,11624706,3
+chenjingxian,11624706,4
+43717763,11624706,4
+1743250,11624706,4
+jashia,11624706,3
+MrJlol,11624706,4
+79891044,11624706,4
+49450997,11624706,4
+RUOER,11624706,4
+soffie,11624706,2
+97350616,11624706,3
+Whitestonelily,11624706,4
+fm532,11624706,3
+wangzhanhei,11624706,-1
+everytimedouble,11624706,4
+70650937,11624706,5
+bigbei,11624706,3
+48473875,11624706,4
+Leslie_Cheung,11624706,2
+82844631,11624706,4
+yesewenrou,11624706,3
+54030694,11624706,3
+63381075,11624706,5
+cellursoda,11624706,4
+61282710,11624706,4
+58159662,11624706,3
+ALWAYSP2Q,11624706,5
+xxffffxx,11624706,3
+57598902,11624706,4
+119829181,11624706,5
+102626192,11624706,4
+123374707,11624706,5
+60532883,11624706,3
+89768114,11624706,3
+72291192,11624706,5
+Ann,11624706,3
+zeoh,11624706,3
+loribo,11624706,4
+lianlian0626,11624706,4
+115203825,11624706,3
+hephan,11624706,-1
+baozi1008,11624706,4
+115853836,11624706,3
+72319276,11624706,3
+75602395,11624706,3
+bliss24,11624706,4
+70912936,11624706,4
+Fedsay,11624706,2
+49965099,11624706,2
+dkjune,11624706,2
+xizi90,11624706,4
+SummerCn,11624706,3
+mangomaluko,11624706,4
+fidotoy,11624706,4
+nian-an,11624706,3
+flowermoon,11624706,4
+4629758,11624706,2
+kioce,11624706,3
+abenmao,11624706,3
+4639431,11624706,3
+echo-shuang,11624706,5
+46579820,11624706,2
+75527586,11624706,2
+34674400,11624706,3
+1834928,11624706,3
+53363833,11624706,5
+wasdiban,11624706,3
+48603851,11624706,4
+xiangyuliu,11624706,4
+84408132,11624706,2
+46013743,11624706,3
+romaweb,11624706,4
+49141660,11624706,3
+2217349,11624706,4
+44716146,11624706,4
+chrisloveleslie,11624706,3
+cave,11624706,4
+43326393,11624706,4
+51789221,11624706,3
+70149072,11624706,3
+130982873,11624706,5
+53984808,11624706,4
+homchong,11624706,4
+115370500,11624706,4
+101629689,11624706,3
+91236974,11624706,3
+30323984,11624706,4
+coco0609,11624706,3
+133001857,11624706,4
+28169414,11624706,5
+51606142,11624706,3
+haitao,11624706,1
+mimizang,11624706,5
+112757196,11624706,3
+57926101,11624706,5
+taochongshaozhu,11624706,3
+swarovskii,11624706,4
+50147481,11624706,3
+68401918,11624706,3
+64144494,11624706,4
+34245923,11624706,3
+63548451,11624706,3
+queenie830,11624706,3
+radia,11624706,3
+67179244,11624706,3
+44063969,11624706,3
+26018442,11624706,5
+38803533,11624706,4
+34549773,11624706,3
+3435124,11624706,4
+lingnuo,11624706,4
+lixiaobai1987,11624706,5
+46455848,11624706,3
+s1ngleMan,11624706,4
+sowhatanyi,11624706,3
+48973674,11624706,3
+fiona-cin,11624706,3
+lovelikecissy,11624706,4
+22140861,11624706,4
+70659345,11624706,3
+68909177,11624706,5
+wuyulun1211,11624706,3
+snowbusy,11624706,1
+Tavico,11624706,-1
+3505428,11624706,4
+InMisery,11624706,4
+65645276,11624706,3
+32539484,11624706,3
+26906705,11624706,5
+yoyo156,11624706,3
+46451520,11624706,3
+3613903,11624706,4
+82520014,11624706,3
+2327858,11624706,4
+asoma,11624706,4
+yue_cp,11624706,4
+pichajemo,11624706,5
+75362296,11624706,4
+122603381,11624706,5
+angeswong,11624706,4
+BackToNight,11624706,4
+below17,11624706,2
+69028094,11624706,3
+52292753,11624706,5
+48227977,11624706,4
+l_panda,11624706,5
+56143225,11624706,3
+morachen,11624706,2
+39646892,11624706,4
+lizhiqiang127,11624706,4
+29620245,11624706,4
+lushrene,11624706,3
+fayless,11624706,2
+2843581,11624706,4
+41843142,11624706,4
+79109261,11624706,3
+46045638,11624706,3
+77160079,11624706,4
+wohui1989,11624706,5
+78824064,11624706,4
+128412701,11624706,2
+56866915,11624706,2
+wangshiqian1024,11624706,4
+127606527,11624706,2
+missunshine,11624706,5
+monsterjune,11624706,3
+51686369,11624706,2
+34969112,11624706,4
+qianyuqianxun-d,11624706,4
+2935013,11624706,3
+66636487,11624706,2
+shine714,11624706,3
+83139491,11624706,3
+drinkme,11624706,5
+51983779,11624706,3
+132194245,11624706,4
+61238439,11624706,3
+134180658,11624706,4
+56580928,11624706,4
+34971709,11624706,3
+amyiwlyf,11624706,4
+minikuso,11624706,3
+94782987,11624706,4
+taylorman,11624706,4
+umaymaymay,11624706,3
+129087038,11624706,3
+Elizabeth-Lee,11624706,4
+shuimudeyu1990,11624706,3
+ivy_lmj,11624706,3
+88154137,11624706,2
+xnh01,11624706,4
+eden1009,11624706,3
+lailai_tu,11624706,3
+2489180,11624706,3
+115895353,11624706,3
+1030614,11624706,4
+75015059,11624706,-1
+41776399,11624706,4
+panpanpenny,11624706,4
+1653942,11624706,3
+68130706,11624706,3
+84849322,11624706,4
+Jollie,11624706,5
+ring_ring,11624706,4
+86136547,11624706,4
+sophie.sue,11624706,4
+GianfrancoLee,11624706,3
+24812939,11624706,3
+50063528,11624706,3
+JackHChan,11624706,4
+54375575,11624706,3
+1971155,11624706,4
+122251698,11624706,3
+wusiyunfeng,11624706,4
+131608049,11624706,5
+84046293,11624706,4
+4454692,11624706,3
+17180865,11624706,4
+88025971,11624706,5
+zhuzi_33,11624706,5
+52463415,11624706,4
+67544902,11624706,4
+2755543,11624706,4
+55978536,11624706,3
+68599558,11624706,3
+97389604,11624706,5
+52064559,11624706,4
+kinochan,11624706,4
+63856676,11624706,3
+fayecat,11624706,3
+83977213,11624706,3
+48795907,11624706,4
+RingS915,11624706,4
+68363266,11624706,3
+108077404,11624706,2
+26960233,11624706,3
+61845707,11624706,4
+34404618,11624706,5
+ada7603,11624706,3
+M_,11624706,3
+3543860,11624706,3
+60593481,11624706,5
+frankfankai,11624706,4
+59281963,11624706,4
+69248100,11624706,4
+36563636,11624706,4
+38302530,11624706,4
+3310203,11624706,4
+azeizei,11624706,5
+21460919,11624706,3
+caesarphoenix,11624706,2
+38272558,11624706,5
+LNCYZM,11624706,4
+42833188,11624706,3
+3907593,11624706,4
+fannyone,11624706,3
+52730600,11624706,5
+51573307,11624706,-1
+wulebuzuo,11624706,2
+4557702,11624706,4
+4509525,11624706,4
+bennywongdonots,11624706,3
+8078899,11624706,4
+OnePiece0505,11624706,3
+llh9277,11624706,4
+77288583,11624706,5
+52619301,11624706,1
+phoebe0225,11624706,3
+qichongecho,11624706,4
+52939857,11624706,4
+58986739,11624706,4
+ddww911028,11624706,3
+lilaaah,11624706,2
+holly_xu,11624706,4
+44418908,11624706,3
+s7v7n86,11624706,3
+mobao0731,11624706,5
+129556271,11624706,4
+bedifferent,11624706,4
+50058629,11624706,3
+81061970,11624706,5
+Howen,11624706,3
+wen1011,11624706,3
+57453471,11624706,5
+133763996,11624706,3
+51071699,11624706,1
+34063715,11624706,3
+59526552,11624706,4
+96046921,11624706,3
+eyrehuang,11624706,4
+41290543,11624706,5
+126682168,11624706,4
+aolantuo7,11624706,3
+81728735,11624706,5
+134191128,11624706,3
+Tramyzzp,11624706,2
+119922502,11624706,5
+my_landscape,11624706,4
+51749125,11624706,3
+4187923,11624706,3
+Joyce_R,11624706,5
+JieloveMovie,11624706,2
+pinkskin,11624706,2
+jcpanda,11624706,4
+44556273,11624706,4
+simuvchen,11624706,3
+2223115,11624706,4
+sue526,11624706,2
+58744941,11624706,3
+43588127,11624706,4
+55916803,11624706,3
+15367255,11624706,3
+49493827,11624706,4
+57962526,11624706,4
+4765195,11624706,5
+tywan,11624706,4
+45996774,11624706,4
+28088228,11624706,4
+63171651,11624706,4
+59302581,11624706,3
+29988563,11624706,3
+phejohnwang,11624706,3
+ileonwii,11624706,4
+1028731,11624706,2
+rmemories,11624706,3
+2226350,11624706,1
+carmencoal,11624706,4
+45478417,11624706,4
+77769633,11624706,5
+4491930,11624706,5
+3964415,11624706,4
+49166988,11624706,3
+53560863,11624706,3
+swd3e,11624706,4
+119828861,11624706,3
+fyf719,11624706,3
+71265432,11624706,5
+49298562,11624706,-1
+miazz,11624706,4
+57846858,11624706,4
+131713125,11624706,5
+viviana_guo,11624706,1
+angelliuzhihui,11624706,3
+2731510,11624706,5
+2731510,11624706,5
+candicechang,11624706,3
+46810832,11624706,3
+54536948,11624706,2
+1412545,11624706,-1
+58038108,11624706,3
+66875274,11624706,4
+62889721,11624706,4
+83781615,11624706,3
+50880028,11624706,3
+vinjun,11624706,3
+wshuyi,11624706,5
+78586086,11624706,-1
+102673795,11624706,3
+14481441,11624706,5
+83264508,11624706,5
+34459327,11624706,4
+hawksbill,11624706,4
+61110479,11624706,3
+83391761,11624706,3
+3978591,11624706,-1
+63167875,11624706,3
+aileencheung,11624706,4
+lyy819,11624706,3
+46950457,11624706,5
+47183487,11624706,4
+102033140,11624706,4
+36669166,11624706,3
+XXXXXmian,11624706,2
+fucklester,11624706,4
+stefanie3nana3,11624706,3
+celes,11624706,3
+EbiCo,11624706,3
+128580925,11624706,3
+62667852,11624706,4
+sunyixin,11624706,5
+57560468,11624706,3
+huihuiai1314,11624706,5
+mjj5201314,11624706,4
+70990506,11624706,4
+25257094,11624706,1
+53536011,11624706,4
+64284331,11624706,3
+90551475,11624706,4
+84112502,11624706,3
+44708171,11624706,4
+128063403,11624706,3
+130623512,11624706,5
+aleung,11624706,3
+94254038,11624706,3
+muxieyes,11624706,4
+46056151,11624706,2
+51369610,11624706,5
+crazies,11624706,4
+msw0123,11624706,5
+60042378,11624706,3
+71378933,11624706,4
+2404315,11624706,3
+129543968,11624706,5
+53989389,11624706,5
+57436067,11624706,3
+51228579,11624706,1
+witchmignon,11624706,3
+52762831,11624706,4
+houjianjun,11624706,4
+mamalin,11624706,-1
+2875804,11624706,3
+BMY378670541,11624706,3
+36003110,11624706,5
+51664645,11624706,4
+55024644,11624706,3
+24678754,11624706,4
+73445722,11624706,4
+83650519,11624706,4
+zhengzaoliang,11624706,4
+49132390,11624706,4
+53821099,11624706,2
+65540792,11624706,3
+Jiang_jss,11624706,3
+kite2002,11624706,-1
+99864478,11624706,4
+ypp_ah,11624706,4
+4233861,11624706,3
+59307217,11624706,4
+UFO-75,11624706,1
+122248485,11624706,3
+128203745,11624706,1
+121065420,11624706,3
+charmine913,11624706,3
+58197963,11624706,5
+51904993,11624706,3
+jacky0717,11624706,4
+zpavel,11624706,3
+4336572,11624706,4
+cain69,11624706,3
+76529709,11624706,3
+frozone,11624706,2
+61621959,11624706,4
+74913423,11624706,4
+VampirX,11624706,4
+1462255,11624706,-1
+55536180,11624706,3
+81384765,11624706,5
+loveyu0725,11624706,4
+cookiesun0420,11624706,4
+kojima,11624706,4
+92480023,11624706,4
+3913762,11624706,3
+127802556,11624706,5
+4679905,11624706,4
+90612297,11624706,5
+10750432,11624706,3
+cnsjw,11624706,4
+6968778,11624706,3
+robaggio,11624706,3
+130270800,11624706,5
+126081007,11624706,5
+134369987,11624706,5
+63865073,11624706,4
+49520911,11624706,3
+schauer,11624706,4
+65912201,11624706,5
+2822846,11624706,2
+pineappledog,11624706,4
+71426897,11624706,3
+65580896,11624706,5
+134198569,11624706,3
+64233455,11624706,4
+16678153,11624706,4
+103604151,11624706,-1
+2439852,11624706,3
+68227944,11624706,3
+65977866,11624706,3
+30353667,11624706,2
+63053176,11624706,3
+120084471,11624706,5
+53866546,11624706,3
+doitnow14,11624706,3
+61845493,11624706,4
+61898837,11624706,3
+2654815,11624706,4
+90140365,11624706,5
+83413120,11624706,2
+shxhkun,11624706,3
+39328754,11624706,3
+aimeshen,11624706,3
+49585135,11624706,3
+yulelong,11624706,3
+lovely_fish,11624706,3
+kcinzz,11624706,3
+2226886,11624706,4
+takemeasiam,11624706,2
+132835611,11624706,4
+61992166,11624706,3
+ghzxjian,11624706,5
+2427012,11624706,-1
+TaylorAlisonSwi,11624706,4
+79236287,11624706,5
+45634652,11624706,1
+xiaoyinxuanpapa,11624706,4
+1504581,11624706,4
+twinkletears,11624706,4
+59634469,11624706,4
+58518290,11624706,4
+rabbit-bu,11624706,3
+130767926,11624706,2
+langyayue,11624706,3
+43375121,11624706,3
+10713175,11624706,4
+SH51244,11624706,5
+55275617,11624706,4
+52345195,11624706,3
+82817021,11624706,3
+54848736,11624706,3
+57729353,11624706,3
+46590028,11624706,5
+Injurer,11624706,4
+51817711,11624706,4
+41177087,11624706,3
+meetchris,11624706,5
+65628788,11624706,3
+58186855,11624706,4
+49318472,11624706,5
+120695517,11624706,4
+69569015,11624706,5
+fangxiaotang,11624706,4
+87978530,11624706,3
+s1219snow,11624706,4
+venusfour,11624706,3
+131197515,11624706,4
+55831879,11624706,5
+41516145,11624706,3
+33662084,11624706,4
+22725672,11624706,2
+102806375,11624706,2
+livingfly,11624706,3
+67848338,11624706,4
+99329587,11624706,1
+antilo,11624706,4
+sunnyniumei,11624706,3
+lpor,11624706,3
+Emily90,11624706,4
+63977456,11624706,3
+niuniurf,11624706,3
+62780296,11624706,4
+daiqiu920,11624706,5
+54806925,11624706,3
+43043664,11624706,3
+shouting0,11624706,2
+104489015,11624706,2
+labifenelm,11624706,2
+47289557,11624706,4
+glassspark,11624706,4
+68420935,11624706,5
+96000077,11624706,4
+50366197,11624706,3
+82889509,11624706,4
+46057903,11624706,4
+48088910,11624706,2
+AllenHarris,11624706,4
+82496421,11624706,4
+shirley115,11624706,4
+66793873,11624706,4
+kdslim,11624706,-1
+57449150,11624706,3
+58008902,11624706,3
+2933555,11624706,4
+haruka49,11624706,4
+122686185,11624706,4
+timeispassing,11624706,3
+38648875,11624706,3
+vitamin27,11624706,3
+62996817,11624706,3
+61297365,11624706,1
+44937867,11624706,3
+doomsayer,11624706,3
+glax,11624706,3
+13038456,11624706,3
+53852725,11624706,4
+2504153,11624706,4
+yangDAyun,11624706,4
+yxt1985,11624706,3
+51303183,11624706,3
+62876165,11624706,4
+cathyclan,11624706,3
+48717761,11624706,3
+dd54,11624706,3
+pandatou,11624706,4
+54271813,11624706,2
+jolinalbert,11624706,3
+54301123,11624706,4
+xbegg,11624706,4
+36964868,11624706,3
+121352269,11624706,3
+talinnablue,11624706,3
+peridot,11624706,4
+lanmai,11624706,3
+2774607,11624706,4
+greatzhujie,11624706,5
+109890829,11624706,4
+3612252,11624706,3
+ProfThunder,11624706,5
+125806599,11624706,2
+53322015,11624706,5
+60413316,11624706,2
+133968412,11624706,3
+51183747,11624706,5
+55985386,11624706,3
+121055562,11624706,4
+52275129,11624706,5
+52203160,11624706,3
+60041289,11624706,2
+3761305,11624706,4
+82317907,11624706,3
+adelineadele,11624706,4
+chiu-chiu,11624706,4
+46091379,11624706,4
+120172771,11624706,3
+55407923,11624706,4
+64113874,11624706,5
+kangecho,11624706,3
+134018980,11624706,2
+2664010,11624706,3
+balanco,11624706,4
+BrantLee,11624706,4
+gujingxue,11624706,5
+62559966,11624706,3
+105451131,11624706,4
+4115987,11624706,3
+wanghaoze,11624706,1
+linkahay,11624706,3
+EliNagy,11624706,3
+99942273,11624706,2
+58040832,11624706,2
+65543931,11624706,-1
+81301720,11624706,4
+cookie777hide,11624706,5
+133877898,11624706,3
+41922022,11624706,2
+jiangkui,11624706,3
+59164249,11624706,3
+morimiru,11624706,4
+sukey91,11624706,5
+71133496,11624706,3
+Mackintosh,11624706,2
+81660493,11624706,5
+timerainer,11624706,4
+64454222,11624706,4
+41465171,11624706,4
+4527041,11624706,3
+40638118,11624706,3
+3232896,11624706,3
+gps730,11624706,3
+47835044,11624706,5
+64110823,11624706,5
+suprun,11624706,5
+4360947,11624706,5
+H.T.Rockwall,11624706,5
+flowernim,11624706,2
+29687249,11624706,3
+55673285,11624706,2
+1773967,11624706,4
+44654150,11624706,3
+62352557,11624706,4
+80275782,11624706,5
+jiany,11624706,3
+46836947,11624706,4
+53500354,11624706,1
+howlformousai,11624706,3
+130294471,11624706,4
+rakbumps,11624706,-1
+65186830,11624706,4
+74170855,11624706,4
+123851520,11624706,4
+1596435,11624706,3
+89704649,11624706,4
+heartnow,11624706,4
+4311389,11624706,4
+62835550,11624706,3
+70308638,11624706,4
+49678481,11624706,4
+78607701,11624706,5
+70451060,11624706,4
+alegria,11624706,3
+130496028,11624706,3
+3392902,11624706,3
+6303192,11624706,2
+50222083,11624706,3
+64287254,11624706,4
+giacintaxx,11624706,3
+cheerjuno,11624706,3
+aumoli,11624706,4
+distinguished,11624706,4
+53988247,11624706,4
+58179366,11624706,3
+132961530,11624706,4
+Miphesto,11624706,3
+jinzhawithyou,11624706,3
+80922094,11624706,3
+130614733,11624706,3
+eason0210,11624706,3
+2920373,11624706,3
+50727167,11624706,-1
+67576170,11624706,4
+67896466,11624706,2
+44694238,11624706,3
+xiaocuikk,11624706,5
+sugarci,11624706,4
+62586177,11624706,2
+sanzhiling,11624706,4
+70121595,11624706,5
+42702997,11624706,2
+3709827,11624706,4
+60828677,11624706,4
+95017002,11624706,4
+Palomar123,11624706,4
+27641257,11624706,4
+Smileysnow,11624706,3
+Lumiere5200,11624706,4
+52836731,11624706,5
+cijunbutileng,11624706,4
+40927902,11624706,5
+4137502,11624706,4
+81920972,11624706,4
+sin1999,11624706,3
+movieview,11624706,3
+122764683,11624706,1
+4906139,11624706,3
+41522528,11624706,3
+68318109,11624706,4
+122612474,11624706,4
+54193081,11624706,4
+58419588,11624706,5
+38462134,11624706,3
+airo,11624706,3
+134778845,11624706,3
+neverfaraway,11624706,4
+133715428,11624706,4
+2165440,11624706,3
+48634684,11624706,3
+48634684,11624706,3
+21113489,11624706,3
+126980247,11624706,4
+july0007,11624706,5
+88584929,11624706,3
+43859610,11624706,5
+60448203,11624706,2
+2019155,11624706,5
+14363390,11624706,3
+hideer,11624706,3
+62223089,11624706,5
+122400330,11624706,4
+60815590,11624706,4
+chen157123569,11624706,5
+40938196,11624706,4
+1958405,11624706,3
+52209428,11624706,4
+75260597,11624706,3
+48936071,11624706,3
+ET-Ocean,11624706,3
+lin7128jin,11624706,2
+65719413,11624706,4
+xiaoxianwudi,11624706,3
+25978283,11624706,4
+133564346,11624706,4
+2587408,11624706,3
+corgi,11624706,-1
+akin11,11624706,5
+46843344,11624706,3
+58975463,11624706,3
+3745695,11624706,4
+sooochent,11624706,3
+35178783,11624706,3
+66688383,11624706,-1
+91238295,11624706,3
+58648435,11624706,5
+35964817,11624706,2
+sucila,11624706,3
+77194286,11624706,4
+127965244,11624706,3
+moxuyou,11624706,5
+42807068,11624706,5
+82572574,11624706,3
+zhy650218,11624706,3
+84287763,11624706,5
+132218568,11624706,3
+ETLoVeZL,11624706,3
+59138637,11624706,4
+woaiwudaokou,11624706,4
+4594496,11624706,4
+40553391,11624706,2
+dingjiandoris,11624706,3
+103584497,11624706,3
+71882861,11624706,3
+yi-minbb,11624706,5
+6576481,11624706,4
+yingluncheng,11624706,3
+cangjie1900,11624706,1
+59084050,11624706,3
+125474588,11624706,4
+125474588,11624706,4
+kerrylee621,11624706,4
+71765627,11624706,3
+116551398,11624706,5
+83649414,11624706,2
+45504808,11624706,5
+eileenx,11624706,3
+42976857,11624706,3
+60096895,11624706,3
+40339894,11624706,4
+66773730,11624706,3
+motzz,11624706,3
+3083714,11624706,4
+69673873,11624706,5
+48491570,11624706,3
+120671248,11624706,5
+2774956,11624706,3
+59904940,11624706,3
+xxxxiaoxiao,11624706,2
+81998298,11624706,4
+122670225,11624706,4
+52299023,11624706,2
+shelstar,11624706,3
+4631230,11624706,4
+db00goal,11624706,2
+88260020,11624706,4
+53737275,11624706,4
+58725600,11624706,3
+79757878,11624706,5
+on1yys,11624706,3
+1384818,11624706,4
+64247507,11624706,4
+64480930,11624706,4
+30174665,11624706,3
+hjhhappy,11624706,4
+68019993,11624706,3
+81745530,11624706,4
+1219037,11624706,3
+63008806,11624706,3
+34706621,11624706,4
+34706621,11624706,4
+29640209,11624706,5
+25560643,11624706,4
+46630645,11624706,4
+74532668,11624706,4
+answer0545716,11624706,3
+60201593,11624706,3
+61723144,11624706,3
+67437466,11624706,4
+miuye00,11624706,4
+69467986,11624706,4
+alfiestudio,11624706,4
+53238172,11624706,5
+55377496,11624706,2
+xly7788,11624706,4
+83989454,11624706,3
+coolwd,11624706,4
+92673816,11624706,4
+134256865,11624706,4
+38448469,11624706,3
+46015207,11624706,2
+yp52,11624706,5
+echoabc0409,11624706,5
+30332673,11624706,3
+52901753,11624706,4
+44653441,11624706,5
+82145185,11624706,4
+88345379,11624706,3
+90187672,11624706,5
+lintin23,11624706,4
+siman,11624706,3
+66676801,11624706,5
+xago,11624706,2
+41260318,11624706,3
+Q19931224,11624706,4
+60080560,11624706,3
+63849240,11624706,4
+67464328,11624706,3
+49272831,11624706,2
+83610296,11624706,3
+agnes223,11624706,4
+36276299,11624706,5
+83461362,11624706,4
+woshionion,11624706,3
+79037298,11624706,3
+candylyt,11624706,4
+1234051,11624706,4
+75971596,11624706,4
+54220607,11624706,3
+nocita,11624706,2
+JupiterGalileo,11624706,4
+nanacancer,11624706,2
+46881086,11624706,4
+79118365,11624706,5
+81846719,11624706,3
+57751641,11624706,4
+4519798,11624706,5
+50657559,11624706,3
+11501508,11624706,-1
+47297112,11624706,3
+44109266,11624706,4
+121131242,11624706,4
+62853485,11624706,3
+61477909,11624706,2
+dodo729,11624706,3
+63600934,11624706,5
+44865600,11624706,5
+39628553,11624706,3
+47566511,11624706,1
+bonny1111,11624706,3
+2280118,11624706,3
+4618269,11624706,3
+38216063,11624706,4
+75244611,11624706,5
+summercaimin,11624706,3
+56035155,11624706,2
+121756661,11624706,3
+yamina_won,11624706,5
+82847924,11624706,5
+Zmeters,11624706,3
+47879484,11624706,3
+52917026,11624706,3
+69443311,11624706,2
+49176180,11624706,5
+59405094,11624706,3
+cschester,11624706,3
+99074736,11624706,3
+kkoyoozs,11624706,4
+66580589,11624706,4
+65058797,11624706,2
+65186592,11624706,4
+77621365,11624706,5
+Peiyixuan,11624706,5
+48057004,11624706,5
+2202052,11624706,3
+3429762,11624706,3
+vertigo1989,11624706,-1
+45509766,11624706,3
+jinqianmei,11624706,1
+52112521,11624706,4
+120611241,11624706,4
+4338735,11624706,5
+Pius,11624706,2
+49554966,11624706,-1
+qianqiuwansui,11624706,2
+48859035,11624706,3
+45935605,11624706,3
+3399423,11624706,3
+2411985,11624706,4
+liujinjie,11624706,4
+40593048,11624706,4
+56886614,11624706,3
+55457012,11624706,3
+dvddvd,11624706,4
+49807065,11624706,4
+48214912,11624706,3
+yiliaobailiao,11624706,3
+nickbest0628,11624706,3
+82019070,11624706,4
+73983245,11624706,5
+litian19890502,11624706,4
+103500023,11624706,5
+ixxxxparis,11624706,2
+65836711,11624706,4
+1378705,11624706,4
+134750335,11624706,3
+88323753,11624706,3
+87633268,11624706,4
+66483711,11624706,3
+Patrick_Kang,11624706,4
+2857621,11624706,-1
+62287968,11624706,4
+119265628,11624706,3
+55765864,11624706,5
+yukiyuko,11624706,4
+1613980,11624706,3
+50814286,11624706,4
+69961851,11624706,4
+Han-Lyn,11624706,3
+38821369,11624706,5
+38821369,11624706,5
+torol,11624706,3
+69164081,11624706,3
+seodler,11624706,3
+mango12580,11624706,5
+58354549,11624706,5
+128299048,11624706,4
+canonzhang,11624706,3
+brucetown,11624706,3
+56319630,11624706,3
+51405192,11624706,3
+sailorcooper,11624706,2
+37917730,11624706,4
+80239706,11624706,3
+36268247,11624706,3
+iaubry,11624706,1
+justMog,11624706,1
+78240226,11624706,2
+56677474,11624706,5
+poemlhg,11624706,1
+TXS0331,11624706,4
+134160760,11624706,4
+dark_glede,11624706,3
+109102443,11624706,2
+54306143,11624706,5
+coto,11624706,3
+kinderbaby,11624706,4
+sunnybest,11624706,5
+38821099,11624706,4
+imCheryl,11624706,3
+42884654,11624706,5
+chidaoshu,11624706,3
+hingyyq,11624706,3
+veraaa,11624706,3
+janie225,11624706,5
+57683329,11624706,3
+56141863,11624706,5
+47939693,11624706,2
+122452558,11624706,3
+92649048,11624706,3
+127059947,11624706,5
+51863269,11624706,3
+vivienne1117,11624706,5
+25481348,11624706,3
+lovesunny,11624706,4
+yummy1986,11624706,3
+zeo-peanut,11624706,5
+1122386,11624706,2
+3724437,11624706,3
+122075064,11624706,4
+1391038,11624706,4
+47732306,11624706,3
+133522008,11624706,3
+69406100,11624706,5
+57286930,11624706,3
+75864215,11624706,4
+antebellum,11624706,5
+89451372,11624706,3
+freeandwind,11624706,4
+87234119,11624706,4
+lolitaj,11624706,3
+53772865,11624706,3
+4222235,11624706,3
+63579329,11624706,4
+ioy,11624706,3
+qdyoo,11624706,4
+77511021,11624706,4
+61734937,11624706,3
+superallen,11624706,3
+1256832,11624706,5
+42317337,11624706,1
+48238044,11624706,3
+92681134,11624706,4
+67664389,11624706,4
+78192927,11624706,4
+60408856,11624706,5
+50009835,11624706,4
+99039291,11624706,2
+63156283,11624706,3
+77052440,11624706,2
+84888319,11624706,2
+102960018,11624706,4
+84058913,11624706,5
+Arpil,11624706,4
+125773849,11624706,4
+108394568,11624706,3
+63633595,11624706,4
+51683768,11624706,3
+tiffanieee,11624706,3
+97291674,11624706,3
+81107134,11624706,4
+yuyue1849,11624706,3
+131425649,11624706,4
+gailsylee,11624706,5
+68523574,11624706,4
+69295551,11624706,3
+oct6th,11624706,3
+113267573,11624706,3
+59695133,11624706,3
+119253554,11624706,3
+benita0124,11624706,3
+50410126,11624706,4
+120054799,11624706,3
+3691770,11624706,4
+49358081,11624706,3
+mdt,11624706,4
+89516960,11624706,4
+gojin,11624706,4
+56941149,11624706,5
+56076845,11624706,2
+monica325,11624706,5
+107495405,11624706,5
+zhaimi,11624706,3
+66854443,11624706,3
+3176938,11624706,4
+49496749,11624706,3
+31673634,11624706,3
+quaner1126,11624706,-1
+73704277,11624706,3
+Cgangs,11624706,-1
+Cgangs,11624706,-1
+2049714,11624706,4
+62650980,11624706,3
+pjwrain,11624706,4
+63568179,11624706,5
+131628245,11624706,4
+3353584,11624706,3
+62988496,11624706,-1
+kalla,11624706,3
+vinciwang,11624706,4
+59712803,11624706,4
+andy-channel,11624706,4
+tommy00000,11624706,3
+72491929,11624706,4
+Analulu,11624706,4
+57626964,11624706,3
+120736500,11624706,3
+weepbird,11624706,2
+zengjinmeng,11624706,4
+44887235,11624706,3
+46371753,11624706,5
+61722748,11624706,-1
+yan6,11624706,3
+Stephanie-Lee,11624706,4
+44556619,11624706,4
+123504720,11624706,4
+1786804,11624706,1
+ningning9164,11624706,-1
+58061929,11624706,4
+53807437,11624706,3
+cydandelion,11624706,4
+91746178,11624706,4
+muyu125,11624706,3
+45127178,11624706,3
+77046292,11624706,3
+44221871,11624706,4
+83576575,11624706,4
+119843686,11624706,2
+66537516,11624706,2
+flowertide,11624706,3
+3168552,11624706,4
+ziying35,11624706,4
+leftpomelo,11624706,3
+34507934,11624706,3
+msuper,11624706,4
+leonman,11624706,3
+fox116,11624706,4
+ruan1117,11624706,2
+53230906,11624706,3
+fivero,11624706,4
+Fascinne,11624706,3
+lenalena,11624706,1
+50083716,11624706,5
+115874709,11624706,4
+132506140,11624706,4
+falouis,11624706,3
+31043480,11624706,4
+53236485,11624706,4
+spx,11624706,2
+73600166,11624706,4
+58402491,11624706,4
+51367762,11624706,5
+liuweilian,11624706,4
+52764365,11624706,3
+82910448,11624706,5
+68031960,11624706,4
+7549744,11624706,4
+solomon_da,11624706,4
+wuyaa1215,11624706,4
+70051066,11624706,3
+42401128,11624706,4
+21750080,11624706,3
+91263790,11624706,4
+pansini,11624706,3
+rinnnnka,11624706,5
+xuduoyuQAQ,11624706,3
+mysuyu,11624706,3
+33322981,11624706,5
+allwordswrong,11624706,3
+karyland,11624706,4
+68902275,11624706,4
+4740160,11624706,4
+46282005,11624706,3
+talk2linx,11624706,3
+14341331,11624706,4
+49338392,11624706,-1
+45508468,11624706,3
+Diviv,11624706,3
+41438322,11624706,3
+130190354,11624706,3
+Tracy.Wan,11624706,4
+1929758,11624706,3
+jiangjiang1214,11624706,3
+44345468,11624706,4
+73165513,11624706,3
+46460474,11624706,3
+lovehebey,11624706,5
+justsay,11624706,3
+mirror53,11624706,4
+100530673,11624706,3
+jiangying,11624706,4
+120445293,11624706,3
+theasir,11624706,3
+ziyanziyu1024,11624706,3
+alivevampire,11624706,3
+130601471,11624706,4
+SQ17,11624706,5
+50747236,11624706,4
+gelsey1992,11624706,4
+61097384,11624706,4
+smnag,11624706,4
+4313714,11624706,3
+85635101,11624706,4
+12510616,11624706,4
+52426499,11624706,4
+2763659,11624706,3
+68200387,11624706,3
+65675536,11624706,4
+36888465,11624706,2
+Robotme,11624706,2
+bluedaydreaming,11624706,3
+122184294,11624706,3
+43856297,11624706,3
+85581364,11624706,3
+69529350,11624706,5
+SusieHatake,11624706,5
+2576367,11624706,3
+104517766,11624706,2
+60657412,11624706,5
+49568187,11624706,4
+kimxixi,11624706,3
+seoyoungeun,11624706,3
+56875822,11624706,4
+13026676,11624706,4
+130642973,11624706,5
+51126064,11624706,3
+13902448,11624706,1
+18762469,11624706,5
+quanetta,11624706,3
+68404885,11624706,5
+85636644,11624706,3
+airan712,11624706,3
+lynn3737,11624706,3
+125827809,11624706,3
+79773701,11624706,3
+meilingmj,11624706,3
+61419341,11624706,1
+75756405,11624706,2
+103756653,11624706,4
+Lisa.L,11624706,4
+38923069,11624706,3
+132137179,11624706,5
+antiekin,11624706,2
+55548424,11624706,4
+lotusmomo,11624706,3
+littlemaybe,11624706,4
+72401201,11624706,3
+130706971,11624706,4
+20755333,11624706,5
+8701005,11624706,4
+sqbing,11624706,5
+suiyi7367,11624706,4
+abezhang,11624706,2
+1564139,11624706,4
+hcaelb,11624706,4
+3784972,11624706,5
+92017036,11624706,4
+122594677,11624706,4
+xunnight,11624706,4
+jzhshow,11624706,4
+44238908,11624706,3
+impossible_ww,11624706,5
+98640890,11624706,4
+48042943,11624706,4
+KFdaxiong,11624706,3
+50344211,11624706,5
+63754960,11624706,2
+50851768,11624706,5
+120605598,11624706,2
+lixiaoyer,11624706,4
+60378305,11624706,4
+3619392,11624706,5
+jzcrazy,11624706,5
+60944387,11624706,5
+sijinzi,11624706,4
+129503817,11624706,3
+72171780,11624706,5
+4664430,11624706,3
+Onik-112527,11624706,3
+2614716,11624706,3
+34440415,11624706,-1
+84753230,11624706,4
+87057947,11624706,4
+60763444,11624706,3
+69467775,11624706,5
+127508395,11624706,3
+Rachel.W,11624706,3
+127005452,11624706,4
+65800978,11624706,5
+baladong123,11624706,4
+53517811,11624706,4
+63236633,11624706,3
+76999200,11624706,4
+4839234,11624706,4
+3970952,11624706,5
+58693526,11624706,4
+sakura7788,11624706,3
+antime,11624706,5
+81986095,11624706,4
+aralebox,11624706,5
+44157753,11624706,2
+50518823,11624706,5
+1437339,11624706,3
+eliwong,11624706,3
+57530916,11624706,-1
+3455527,11624706,2
+pplanet,11624706,3
+53932937,11624706,4
+70257063,11624706,3
+68100167,11624706,3
+zhz586,11624706,2
+61020161,11624706,3
+48488105,11624706,3
+65239097,11624706,3
+82685125,11624706,3
+xyy_1214,11624706,4
+45454544,11624706,5
+OliviaZ,11624706,4
+freak_lee,11624706,3
+Nalam,11624706,3
+bommipark,11624706,4
+65317550,11624706,3
+62024381,11624706,5
+88219909,11624706,1
+Beginstosee,11624706,3
+46778345,11624706,4
+bill86101,11624706,3
+122139957,11624706,5
+119270472,11624706,4
+61515355,11624706,3
+54107659,11624706,2
+87648315,11624706,3
+23981651,11624706,5
+yaod10227,11624706,5
+39518332,11624706,5
+i.m.yours,11624706,4
+ephraimdw,11624706,3
+ielit,11624706,2
+70394248,11624706,4
+yinghefan,11624706,5
+130164378,11624706,4
+54551269,11624706,4
+gougougougou,11624706,4
+2565217,11624706,3
+51283005,11624706,4
+amour,11624706,4
+133161561,11624706,5
+76163964,11624706,4
+130778242,11624706,3
+48916409,11624706,4
+83587515,11624706,-1
+68732725,11624706,4
+66311081,11624706,5
+129266003,11624706,4
+59012758,11624706,4
+66700226,11624706,5
+53507443,11624706,4
+1141251,11624706,3
+77890563,11624706,3
+47436584,11624706,4
+l-snow,11624706,4
+134644116,11624706,2
+atsatyr,11624706,3
+128666486,11624706,4
+yele,11624706,3
+quelvasa,11624706,3
+57972366,11624706,3
+panda11,11624706,4
+24274750,11624706,3
+130546483,11624706,4
+48533366,11624706,3
+52056943,11624706,3
+80671336,11624706,4
+izy1984,11624706,3
+50186647,11624706,3
+61429044,11624706,4
+52840916,11624706,3
+yoyoyy,11624706,3
+qianhuibaizhuan,11624706,3
+96137054,11624706,2
+50268324,11624706,5
+46694434,11624706,-1
+4914375,11624706,5
+72454425,11624706,5
+47822950,11624706,5
+128234602,11624706,4
+13826202,11624706,4
+drxxuan,11624706,3
+129626635,11624706,5
+wsgjr,11624706,5
+34607988,11624706,3
+93651159,11624706,5
+70108831,11624706,3
+2752003,11624706,3
+darkbob,11624706,3
+Xadow,11624706,3
+130754309,11624706,3
+134195975,11624706,4
+little.m,11624706,1
+73795161,11624706,3
+66824818,11624706,4
+60310155,11624706,2
+66431238,11624706,2
+51457792,11624706,3
+szk13731584239,11624706,5
+deany,11624706,4
+Sapporo,11624706,3
+83091102,11624706,4
+tracciyu,11624706,2
+levycycca,11624706,3
+bluetiger,11624706,3
+Just_vv,11624706,5
+132111748,11624706,5
+poline,11624706,5
+xiaxia,11624706,3
+4882025,11624706,3
+johnnychen,11624706,2
+52431442,11624706,5
+LIUYUANZI,11624706,3
+47122000,11624706,3
+Bingbing.,11624706,3
+114420146,11624706,4
+2265138,11624706,3
+39517329,11624706,5
+zsuredrain,11624706,4
+75940383,11624706,4
+90321364,11624706,3
+109055681,11624706,5
+74920289,11624706,2
+58079597,11624706,4
+43618482,11624706,3
+Zhpher,11624706,3
+40733477,11624706,3
+fishgor,11624706,5
+49910264,11624706,4
+66128252,11624706,4
+84261396,11624706,4
+xiongguagua,11624706,3
+124385772,11624706,4
+61369928,11624706,2
+96636386,11624706,4
+66403603,11624706,4
+kthinker,11624706,3
+131466194,11624706,3
+59107827,11624706,5
+115474584,11624706,5
+shams,11624706,4
+groof,11624706,3
+tangputao,11624706,4
+100229529,11624706,5
+2292590,11624706,3
+51354667,11624706,5
+125111991,11624706,2
+j1angvei,11624706,3
+mofeike,11624706,3
+124773971,11624706,4
+wenwen7459,11624706,4
+57871767,11624706,3
+69223309,11624706,5
+56566421,11624706,3
+15440906,11624706,1
+56360766,11624706,3
+123232321,11624706,3
+lvcha_,11624706,4
+3972651,11624706,5
+cyyzzz,11624706,5
+47650145,11624706,4
+134691422,11624706,5
+33510302,11624706,5
+33553000,11624706,4
+julynan,11624706,3
+45262915,11624706,3
+maimaibupang,11624706,3
+21074898,11624706,3
+wubingheng,11624706,4
+66528852,11624706,4
+miucather,11624706,5
+fallistuzi,11624706,-1
+2097598,11624706,4
+34035451,11624706,4
+119795490,11624706,2
+18080670,11624706,3
+55655962,11624706,3
+62079416,11624706,3
+50593601,11624706,3
+eastge,11624706,3
+Jsmonica,11624706,4
+109284403,11624706,4
+niaoyuting,11624706,4
+121704943,11624706,2
+meathill,11624706,5
+2628019,11624706,5
+57418562,11624706,3
+50258787,11624706,3
+beamanly,11624706,5
+100303280,11624706,3
+shinpaopao,11624706,4
+61935443,11624706,4
+46793847,11624706,4
+61783140,11624706,4
+leftorright002,11624706,5
+134522617,11624706,4
+cc9055,11624706,4
+58777523,11624706,5
+toyshen,11624706,4
+doctoroh,11624706,4
+55410872,11624706,3
+talentygw,11624706,3
+ahuasist,11624706,4
+73530411,11624706,4
+119793205,11624706,4
+63156510,11624706,3
+suki8875,11624706,3
+cheng-hang,11624706,4
+33538142,11624706,3
+71100061,11624706,3
+sofein,11624706,2
+55930112,11624706,-1
+70024677,11624706,3
+80962006,11624706,5
+largind,11624706,3
+3765207,11624706,3
+roundtuan,11624706,5
+37102807,11624706,2
+129956212,11624706,2
+78662061,11624706,5
+yanala,11624706,4
+4581200,11624706,3
+81506415,11624706,2
+69681900,11624706,3
+103370606,11624706,5
+36686349,11624706,3
+70440738,11624706,3
+4058668,11624706,4
+81752466,11624706,2
+56053205,11624706,3
+99941855,11624706,5
+ty2012,11624706,3
+dark-otaku,11624706,4
+2029651,11624706,3
+ss433light,11624706,3
+longxsen,11624706,4
+52535672,11624706,3
+102572566,11624706,4
+83855853,11624706,3
+70238336,11624706,4
+58154691,11624706,4
+4151606,11624706,5
+2280761,11624706,4
+sarah0215,11624706,5
+130252934,11624706,5
+2639245,11624706,5
+57786267,11624706,4
+53075931,11624706,4
+3442167,11624706,3
+123049067,11624706,4
+JiejieHuhu,11624706,3
+42663693,11624706,5
+41037171,11624706,5
+piecelost,11624706,3
+131709746,11624706,5
+sanrin,11624706,3
+130098092,11624706,2
+126693961,11624706,3
+51752249,11624706,5
+1569342,11624706,4
+63307477,11624706,3
+47187501,11624706,2
+4353368,11624706,4
+134374898,11624706,3
+104708879,11624706,4
+2380878,11624706,4
+32841660,11624706,3
+4760755,11624706,3
+120764662,11624706,3
+79841047,11624706,3
+voyagexiao,11624706,3
+brad.dl,11624706,3
+brian4444,11624706,5
+132038522,11624706,5
+62189645,11624706,4
+25370634,11624706,3
+63208019,11624706,3
+58161520,11624706,5
+48640803,11624706,5
+119447313,11624706,4
+mihoutuan,11624706,3
+71298339,11624706,3
+joyjay,11624706,4
+65381163,11624706,3
+gaohame,11624706,4
+134681428,11624706,4
+64300426,11624706,3
+119498270,11624706,2
+76383724,11624706,3
+DNA.eNd,11624706,5
+amberVan,11624706,3
+57713230,11624706,3
+66077019,11624706,4
+2435805,11624706,2
+56795809,11624706,3
+83571302,11624706,4
+44662015,11624706,4
+52961960,11624706,2
+132959097,11624706,2
+26739863,11624706,3
+123238661,11624706,4
+79384441,11624706,4
+39971075,11624706,3
+dandan0451,11624706,4
+a1234567,11624706,3
+50941482,11624706,3
+setilis,11624706,3
+64778238,11624706,4
+1056656,11624706,2
+AmandaZhou,11624706,3
+58515646,11624706,4
+75465209,11624706,4
+46180905,11624706,3
+60447195,11624706,4
+vivi1993,11624706,3
+33597647,11624706,3
+z399037789,11624706,3
+renzhewei,11624706,1
+71336529,11624706,3
+32906170,11624706,5
+128422906,11624706,4
+67425224,11624706,4
+125618871,11624706,5
+woshiex,11624706,3
+woshiex,11624706,3
+68186986,11624706,5
+41354434,11624706,4
+1372054,11624706,3
+46269945,11624706,3
+idcyou,11624706,3
+58863431,11624706,2
+63014642,11624706,3
+103282452,11624706,5
+1271102,11624706,3
+2859580,11624706,3
+CatiWang,11624706,4
+41918653,11624706,3
+3531316,11624706,4
+48116599,11624706,4
+52190902,11624706,5
+casper2fly,11624706,3
+delchisio,11624706,3
+freedamao,11624706,3
+114361347,11624706,4
+122587004,11624706,3
+ziwanning,11624706,4
+28732062,11624706,5
+amadeo,11624706,-1
+121372048,11624706,4
+lafeegao,11624706,4
+zmx447684192,11624706,4
+51476394,11624706,4
+jjkkfive,11624706,5
+bigmama,11624706,4
+Sherry-qiu,11624706,3
+QingAIAliur,11624706,3
+52392093,11624706,3
+127024293,11624706,5
+47924726,11624706,4
+66494720,11624706,2
+minoyi,11624706,3
+72096774,11624706,5
+26889158,11624706,3
+87646803,11624706,4
+87646803,11624706,4
+134494053,11624706,5
+58258651,11624706,4
+3943602,11624706,5
+63211767,11624706,4
+66686811,11624706,3
+34216133,11624706,5
+47297505,11624706,1
+59835894,11624706,3
+VITAE,11624706,-1
+supersun1005,11624706,3
+42949382,11624706,3
+36995031,11624706,5
+88877033,11624706,3
+52352034,11624706,3
+69730287,11624706,3
+nanfengchuimu,11624706,3
+101603016,11624706,3
+119428504,11624706,3
+cicihappy,11624706,3
+kkkkaylee,11624706,3
+4654940,11624706,3
+71324630,11624706,4
+MaggieFA,11624706,4
+guoguojiang,11624706,4
+67831727,11624706,3
+Ming926,11624706,3
+biglovebigbang,11624706,5
+70242855,11624706,3
+2853103,11624706,5
+geminige,11624706,3
+46823718,11624706,2
+53412014,11624706,3
+52242753,11624706,3
+nathanyun,11624706,3
+todayjune,11624706,5
+57537354,11624706,3
+78636509,11624706,4
+nikkichou,11624706,4
+superxiaoqi123,11624706,3
+viviyin,11624706,4
+8056035,11624706,4
+20807282,11624706,5
+proband,11624706,2
+callmeX5,11624706,5
+samkaka,11624706,3
+69321134,11624706,4
+2636027,11624706,4
+69814097,11624706,3
+guominhua,11624706,5
+jimwang0106,11624706,2
+60055945,11624706,3
+51387684,11624706,4
+Freiheit429,11624706,5
+134136331,11624706,3
+120250612,11624706,2
+n_nancy,11624706,3
+44608963,11624706,4
+3676726,11624706,4
+doudoutang,11624706,4
+song,11624706,2
+51192966,11624706,3
+djm215,11624706,5
+40425458,11624706,5
+helenzhao0512,11624706,3
+sinkingjack,11624706,4
+glacepirouette,11624706,2
+51852760,11624706,5
+hyunbin.,11624706,4
+shijixue,11624706,3
+56778584,11624706,3
+53816383,11624706,4
+icewendy,11624706,4
+fangmengxin,11624706,1
+paradoxofTM,11624706,3
+highlightxing,11624706,4
+40549441,11624706,4
+honeyhh,11624706,3
+ytt1990,11624706,3
+jj-lee,11624706,4
+evencare,11624706,5
+linfact,11624706,1
+48981003,11624706,4
+Katherinexiaoya,11624706,3
+whitedrama,11624706,4
+twopersons,11624706,5
+1188503,11624706,3
+frogwawa,11624706,5
+yypudding,11624706,3
+minimium,11624706,2
+64631694,11624706,3
+mia52,11624706,4
+kuroneko2002,11624706,4
+shinexyt,11624706,5
+xiaochener,11624706,4
+daizy_10,11624706,3
+Javian,11624706,3
+35703098,11624706,4
+flyinjuly,11624706,2
+120980814,11624706,3
+57379426,11624706,3
+qjunny,11624706,3
+caprice_vvn,11624706,3
+kkirere,11624706,4
+44316758,11624706,4
+60307625,11624706,4
+25499527,11624706,5
+44504599,11624706,2
+Mobius.wang,11624706,4
+31068073,11624706,3
+2570265,11624706,3
+122517698,11624706,5
+36676686,11624706,4
+63314941,11624706,4
+4224058,11624706,4
+68804843,11624706,5
+ericyxh,11624706,3
+49285687,11624706,1
+48884000,11624706,4
+59901599,11624706,4
+50553011,11624706,2
+50405161,11624706,2
+97757646,11624706,3
+90741174,11624706,3
+131985896,11624706,3
+78593884,11624706,4
+liuyahuavv,11624706,3
+51171341,11624706,4
+103739242,11624706,5
+17547191,11624706,5
+chilliza,11624706,4
+92064878,11624706,1
+nanazou,11624706,3
+reneena,11624706,4
+43787285,11624706,2
+46411309,11624706,2
+3621482,11624706,2
+ttangelica,11624706,3
+Gita.,11624706,4
+mxl1988,11624706,2
+mxl1988,11624706,2
+Zesz,11624706,4
+7795838,11624706,3
+49359088,11624706,5
+1327654,11624706,-1
+14042957,11624706,3
+yekciR,11624706,3
+oldcandle,11624706,3
+80854714,11624706,4
+Sub___,11624706,5
+stellainovember,11624706,4
+seven-y,11624706,3
+1338530,11624706,3
+5318547,11624706,2
+49798561,11624706,5
+131194167,11624706,3
+cincincindy,11624706,5
+56351830,11624706,4
+67948455,11624706,3
+81619869,11624706,3
+68635821,11624706,3
+weihao,11624706,-1
+Maybo-Chang,11624706,4
+64397699,11624706,4
+51359075,11624706,3
+48840072,11624706,5
+56919674,11624706,2
+suren11,11624706,4
+79927646,11624706,4
+3725907,11624706,5
+52267466,11624706,4
+kencity,11624706,4
+43269770,11624706,3
+4016925,11624706,4
+loneyhell,11624706,3
+beijingstone,11624706,4
+47785072,11624706,3
+lovely-Sissi,11624706,4
+122604790,11624706,4
+52627644,11624706,4
+53031430,11624706,5
+45129270,11624706,4
+61746013,11624706,3
+enberry,11624706,4
+50695368,11624706,4
+twxpda,11624706,3
+1169348,11624706,2
+58928033,11624706,4
+43343642,11624706,3
+130252198,11624706,4
+53707366,11624706,4
+49207665,11624706,4
+nagle,11624706,4
+73421795,11624706,3
+33382680,11624706,-1
+1291925,11624706,5
+wuyuxin,11624706,5
+94165453,11624706,5
+kongxinzei,11624706,4
+58738342,11624706,4
+wangjijuzi,11624706,5
+46416150,11624706,3
+sugarman638,11624706,3
+shayy,11624706,3
+88857098,11624706,4
+staywithcc,11624706,3
+12822970,11624706,4
+73444446,11624706,3
+26539835,11624706,3
+17865557,11624706,4
+40399312,11624706,2
+3540779,11624706,-1
+1779389,11624706,2
+67665123,11624706,2
+1491950,11624706,3
+2593133,11624706,4
+jiangjixiang,11624706,5
+46390941,11624706,3
+37757378,11624706,5
+48971557,11624706,4
+56676539,11624706,3
+124319237,11624706,4
+43194552,11624706,3
+59126017,11624706,5
+73498520,11624706,3
+ido_idoing,11624706,4
+skytree1025,11624706,3
+magicsunshine,11624706,4
+sirluoji,11624706,2
+calypso29,11624706,3
+60539303,11624706,4
+sharrie,11624706,4
+57314870,11624706,3
+panluobo,11624706,3
+longlastingfad,11624706,3
+54225374,11624706,5
+55701734,11624706,4
+1631122,11624706,3
+68034921,11624706,3
+63629111,11624706,4
+HongAsura,11624706,3
+52106062,11624706,3
+64683048,11624706,4
+fancyflo,11624706,3
+91567656,11624706,3
+cynthia_nn_bbd,11624706,3
+xinxinyan,11624706,4
+2622808,11624706,1
+61350532,11624706,5
+DUNHILLJJ,11624706,3
+69723554,11624706,4
+51680395,11624706,3
+love_France,11624706,4
+90171652,11624706,4
+52935293,11624706,3
+108289478,11624706,4
+3871951,11624706,3
+cici198739,11624706,3
+jiaoyongqiu,11624706,3
+plvangogh,11624706,3
+jeremy926,11624706,3
+49548565,11624706,2
+70328279,11624706,4
+84612888,11624706,3
+95691041,11624706,4
+62039387,11624706,4
+45463396,11624706,3
+65850343,11624706,5
+134632462,11624706,4
+2836954,11624706,-1
+63992894,11624706,2
+luokuibumeng,11624706,5
+1357759,11624706,3
+49079570,11624706,3
+zhmmartin,11624706,3
+KissMovie,11624706,4
+vivizhang,11624706,4
+66178513,11624706,3
+yue919,11624706,5
+80681000,11624706,4
+92180775,11624706,3
+KissingLA,11624706,5
+50118479,11624706,2
+alice0574,11624706,2
+a.lili,11624706,3
+4214141,11624706,4
+44394931,11624706,3
+45804814,11624706,2
+42443171,11624706,4
+rogerjulia,11624706,4
+59421721,11624706,3
+dreamcm,11624706,3
+suijingjing,11624706,5
+azurec,11624706,5
+Jobszhuisui9,11624706,3
+60880769,11624706,3
+56887114,11624706,4
+74422661,11624706,4
+LaGrandBleu,11624706,-1
+124365930,11624706,3
+66758358,11624706,5
+45905762,11624706,4
+65116292,11624706,3
+119296664,11624706,4
+Bigric,11624706,5
+maggietan,11624706,5
+akinotsubasa,11624706,4
+xiaomo828,11624706,4
+4355421,11624706,3
+loveloki913,11624706,5
+jessie1989,11624706,4
+hey.nanzhuang,11624706,3
+43214194,11624706,4
+77583980,11624706,2
+Mr.pea,11624706,3
+li_1314,11624706,3
+lianwu,11624706,2
+toddzhou,11624706,4
+52324566,11624706,4
+lifewithbeauty,11624706,3
+m2cky,11624706,5
+58217947,11624706,4
+19595004,11624706,2
+78571558,11624706,4
+dreamingking,11624706,4
+dreamrobber,11624706,4
+allen_yan,11624706,-1
+78616781,11624706,3
+50868122,11624706,3
+NIGELeilei,11624706,4
+1977979,11624706,5
+84665982,11624706,2
+5894610,11624706,3
+66925472,11624706,5
+114732916,11624706,4
+jxzq007,11624706,3
+53731567,11624706,3
+76206641,11624706,3
+49230486,11624706,-1
+10562960,11624706,4
+66290511,11624706,5
+74835866,11624706,2
+40616987,11624706,4
+pepc,11624706,4
+45453010,11624706,-1
+131138737,11624706,3
+ccleung,11624706,3
+51803624,11624706,3
+luoweiliangchen,11624706,4
+47367894,11624706,5
+52763266,11624706,4
+hecongqi,11624706,3
+9112067,11624706,3
+46665128,11624706,2
+45094700,11624706,3
+53829509,11624706,4
+62675898,11624706,3
+64737081,11624706,4
+88600705,11624706,4
+44699129,11624706,4
+lily_gaga,11624706,3
+nathanxcc,11624706,4
+22187637,11624706,5
+otakuhn,11624706,4
+58603704,11624706,3
+42039153,11624706,3
+57295120,11624706,3
+54782004,11624706,5
+4159460,11624706,4
+2637449,11624706,3
+73701347,11624706,5
+120542127,11624706,4
+65744500,11624706,1
+CeciliaQueen,11624706,-1
+xuxiailing,11624706,3
+56396911,11624706,2
+55914846,11624706,4
+63635904,11624706,4
+107406039,11624706,1
+61907684,11624706,4
+56902514,11624706,4
+60348245,11624706,4
+wyue114,11624706,5
+66177469,11624706,3
+119327847,11624706,4
+bettermeloveme,11624706,4
+dadadidada,11624706,4
+91457550,11624706,4
+congshuli,11624706,5
+21139926,11624706,3
+49865900,11624706,4
+62367310,11624706,-1
+xiaoguaniu,11624706,4
+babyfairy,11624706,3
+snug,11624706,3
+wangyujia520,11624706,3
+2716948,11624706,2
+54646551,11624706,4
+WSZYJ,11624706,1
+66495218,11624706,3
+76501585,11624706,1
+Iamabadman,11624706,3
+KatoInoue,11624706,3
+117018256,11624706,4
+71868009,11624706,4
+kfc77,11624706,4
+38689213,11624706,-1
+57262819,11624706,4
+m.Blacky,11624706,5
+x706,11624706,2
+4736048,11624706,4
+4131568,11624706,4
+nethex,11624706,4
+122402162,11624706,4
+pussycat100,11624706,3
+85739611,11624706,2
+tm_lover,11624706,4
+71020138,11624706,4
+46138752,11624706,4
+ZERGer-,11624706,5
+4753861,11624706,3
+loverebel,11624706,5
+Dorothy321,11624706,5
+glasstar,11624706,3
+70307710,11624706,4
+lls17,11624706,4
+PrussianBlues,11624706,4
+122052999,11624706,1
+niazion,11624706,3
+xueyudexingkong,11624706,4
+53740100,11624706,3
+64769270,11624706,5
+62685262,11624706,4
+62546651,11624706,4
+79161906,11624706,5
+49893874,11624706,3
+NAGISHO,11624706,4
+lalack1987,11624706,3
+62979513,11624706,3
+alicelotus,11624706,3
+46067722,11624706,1
+2712047,11624706,5
+1896468,11624706,5
+MaorC,11624706,3
+xd880820,11624706,4
+nestark,11624706,3
+1818164,11624706,4
+havethedream,11624706,3
+63485325,11624706,3
+68309337,11624706,4
+47022724,11624706,3
+mirrorling,11624706,2
+twochow,11624706,2
+39225376,11624706,3
+103228646,11624706,3
+58091237,11624706,4
+70034039,11624706,3
+3430040,11624706,-1
+heihuawu,11624706,4
+17233438,11624706,3
+3629483,11624706,4
+misslian1990,11624706,5
+36530982,11624706,4
+know,11624706,3
+32705581,11624706,-1
+yuuuni,11624706,5
+44651418,11624706,2
+67413514,11624706,4
+35789464,11624706,3
+zykino,11624706,3
+84281755,11624706,5
+62968482,11624706,5
+63910386,11624706,3
+51031281,11624706,3
+126338898,11624706,3
+85356798,11624706,4
+peach_lee,11624706,3
+maxiaomeng,11624706,4
+LaddishXuan,11624706,3
+55683912,11624706,3
+bunny-_-,11624706,3
+zidary,11624706,4
+3603638,11624706,3
+aiyouwoca,11624706,3
+55915124,11624706,5
+cuion,11624706,3
+69095785,11624706,3
+4348573,11624706,3
+45970589,11624706,5
+vivifyvivi,11624706,2
+67626896,11624706,4
+49154510,11624706,3
+70206866,11624706,2
+thoris,11624706,3
+2668037,11624706,3
+54277204,11624706,3
+1032604,11624706,3
+xiaotao,11624706,2
+ElleXiah,11624706,3
+68166546,11624706,4
+102413399,11624706,5
+71270529,11624706,2
+4386130,11624706,4
+hikkii,11624706,4
+25982397,11624706,4
+67231520,11624706,4
+4623641,11624706,5
+78786637,11624706,2
+liususu,11624706,4
+Macready,11624706,2
+lazzaro,11624706,2
+53242249,11624706,3
+48690655,11624706,3
+2443488,11624706,4
+Bocahontas,11624706,4
+71262182,11624706,2
+stillm,11624706,4
+129778542,11624706,5
+54612022,11624706,3
+omi0604,11624706,4
+48929842,11624706,3
+34571461,11624706,2
+shuangyugongjue,11624706,5
+emilyvc,11624706,4
+Top129,11624706,3
+49109662,11624706,4
+78289516,11624706,4
+avro,11624706,4
+3932335,11624706,3
+chloelone,11624706,3
+57620266,11624706,3
+128939034,11624706,4
+134242130,11624706,4
+mojibai,11624706,3
+36502417,11624706,4
+61889296,11624706,2
+cowper56,11624706,4
+xiaopjie,11624706,4
+gloomy-l,11624706,3
+samsadhu,11624706,5
+85508803,11624706,2
+73125867,11624706,3
+nuannuanslove,11624706,3
+55549573,11624706,3
+anyvin,11624706,4
+68464777,11624706,2
+JerryFeng,11624706,4
+1919476,11624706,4
+122127116,11624706,4
+98916827,11624706,4
+61421224,11624706,5
+3350852,11624706,4
+1984029,11624706,-1
+49983823,11624706,2
+tanktank,11624706,4
+71051752,11624706,4
+elmo219,11624706,4
+47058104,11624706,4
+63985702,11624706,4
+57970979,11624706,4
+2984220,11624706,3
+yyl54110,11624706,2
+66552525,11624706,3
+67878319,11624706,-1
+65362150,11624706,4
+3178442,11624706,3
+1732339,11624706,3
+46988073,11624706,3
+gaoqr,11624706,2
+64934701,11624706,2
+62101965,11624706,3
+46766109,11624706,3
+yanxiaoan,11624706,4
+metkee,11624706,3
+xubuntu,11624706,3
+tiffanyji,11624706,4
+81804473,11624706,3
+52801695,11624706,4
+hi-orz,11624706,4
+48723518,11624706,5
+43343230,11624706,3
+61384734,11624706,-1
+85180680,11624706,4
+39243628,11624706,3
+ManiacMike,11624706,3
+121589777,11624706,5
+57580353,11624706,3
+reneeeee,11624706,3
+123710346,11624706,3
+soul92114,11624706,2
+63412313,11624706,3
+62419434,11624706,3
+85174401,11624706,3
+34052571,11624706,5
+71750332,11624706,3
+adora,11624706,5
+2568577,11624706,3
+78183847,11624706,4
+dewar,11624706,3
+Elsie_7,11624706,3
+58010436,11624706,4
+MELEM,11624706,2
+23826255,11624706,3
+53546281,11624706,3
+36829119,11624706,3
+47674074,11624706,4
+64190039,11624706,3
+49418217,11624706,2
+2268636,11624706,3
+did-it,11624706,4
+moruohan,11624706,4
+62720771,11624706,3
+TiAmoGuaibaobao,11624706,2
+3520200,11624706,4
+when31,11624706,4
+39795294,11624706,4
+52283291,11624706,5
+59820675,11624706,3
+53419926,11624706,5
+61021394,11624706,5
+62093986,11624706,4
+juliqian,11624706,3
+wangxiaoma27,11624706,4
+66035004,11624706,4
+mullerlahm,11624706,4
+65766110,11624706,5
+79934578,11624706,5
+69609271,11624706,-1
+132429541,11624706,5
+111416364,11624706,3
+61858967,11624706,3
+congyang77,11624706,5
+81454122,11624706,3
+8469986,11624706,2
+listenmumu,11624706,5
+127295660,11624706,3
+zhuakuangshitai,11624706,2
+bxlxxx,11624706,3
+alv1023,11624706,3
+53126915,11624706,3
+hexiaoshuang,11624706,5
+79970792,11624706,3
+1222692,11624706,-1
+59473087,11624706,3
+69998360,11624706,5
+123940380,11624706,4
+44079497,11624706,2
+31004958,11624706,4
+mangosteen28,11624706,4
+32663616,11624706,3
+14247291,11624706,3
+37355445,11624706,3
+samleq,11624706,4
+58539257,11624706,5
+mississluu,11624706,4
+barong,11624706,3
+sevseven,11624706,3
+134161390,11624706,1
+min1,11624706,4
+1105624,11624706,3
+MarsOrMoon,11624706,4
+theykilledbill,11624706,5
+onairhh,11624706,5
+62664539,11624706,4
+9784009,11624706,3
+3520940,11624706,3
+4173357,11624706,4
+chrisyx,11624706,3
+115658788,11624706,4
+53715801,11624706,3
+jingyajun,11624706,3
+62452692,11624706,3
+dOHOfenn,11624706,5
+37342177,11624706,4
+40883451,11624706,3
+124467661,11624706,3
+50926271,11624706,4
+1616450,11624706,4
+hh0417,11624706,-1
+xx0301ll,11624706,4
+19136693,11624706,2
+clover121,11624706,3
+51191835,11624706,4
+58113252,11624706,4
+36435105,11624706,3
+48593748,11624706,2
+47515047,11624706,3
+52036087,11624706,3
+108247778,11624706,2
+8872886,11624706,3
+S-Long,11624706,2
+73701438,11624706,5
+127950412,11624706,3
+aisa395,11624706,3
+hinna,11624706,5
+44149657,11624706,2
+52113990,11624706,4
+68387556,11624706,4
+sunsky625,11624706,2
+kkkki,11624706,3
+49063054,11624706,3
+shenluos,11624706,1
+fnyjessica,11624706,1
+spain7,11624706,3
+b_b_,11624706,4
+53142647,11624706,3
+joker619,11624706,5
+78065496,11624706,3
+4517313,11624706,3
+simon_liu,11624706,3
+Malivoni,11624706,4
+sozheng,11624706,4
+bola-hui,11624706,3
+qingfengvicky,11624706,4
+78208494,11624706,4
+120342469,11624706,4
+49063613,11624706,4
+127589546,11624706,4
+zhkaoe,11624706,3
+VeraHAU,11624706,4
+131117180,11624706,2
+veiko,11624706,3
+49123021,11624706,5
+zhuyuying,11624706,5
+76739176,11624706,4
+dd_sy918,11624706,4
+oosunshine,11624706,5
+83418476,11624706,3
+ZJ1231,11624706,3
+2237566,11624706,3
+120358282,11624706,3
+fatfay,11624706,4
+134600773,11624706,3
+1605613,11624706,3
+65189939,11624706,3
+1313358,11624706,2
+taoqianmo,11624706,4
+49826646,11624706,4
+lbwqqq,11624706,5
+119476678,11624706,4
+38487515,11624706,5
+93607054,11624706,4
+caiwenjing0919,11624706,2
+67885647,11624706,3
+godblesswho,11624706,3
+119803705,11624706,3
+oasisercher,11624706,4
+zzyzeal,11624706,3
+heureux666,11624706,5
+37445047,11624706,3
+81410150,11624706,4
+anicelv,11624706,3
+54028610,11624706,3
+chinabeta,11624706,3
+wutheringshi,11624706,3
+25691619,11624706,4
+58451504,11624706,1
+xizhaoming,11624706,3
+68351261,11624706,3
+53662568,11624706,3
+21042861,11624706,5
+47220302,11624706,4
+wendong262,11624706,5
+88097347,11624706,3
+65177243,11624706,4
+61549389,11624706,3
+53657118,11624706,5
+58158290,11624706,2
+mlzizi,11624706,4
+xiaxuexue,11624706,4
+3690052,11624706,1
+127852192,11624706,5
+113238011,11624706,5
+luyanan1943,11624706,4
+27658050,11624706,3
+49661788,11624706,5
+minusculeF,11624706,2
+59599234,11624706,5
+qinwenrene,11624706,5
+ainygo,11624706,4
+60619683,11624706,5
+fenris,11624706,5
+43897178,11624706,5
+43475473,11624706,3
+53937396,11624706,5
+89066076,11624706,3
+28677254,11624706,3
+52944642,11624706,3
+64816700,11624706,4
+jinsy,11624706,5
+heartfalure,11624706,4
+shirleyma,11624706,3
+127777711,11624706,2
+71061897,11624706,3
+echo0222,11624706,4
+3570314,11624706,2
+105436862,11624706,4
+57297847,11624706,3
+31698933,11624706,3
+14480826,11624706,5
+kkkkkkathy,11624706,4
+bleachdevil,11624706,4
+36252674,11624706,3
+ccmuzi,11624706,3
+66880325,11624706,3
+50023585,11624706,2
+85483622,11624706,3
+59808371,11624706,2
+130100257,11624706,3
+4315821,11624706,2
+17843797,11624706,4
+wawanghuan,11624706,3
+waiwaixiaohei,11624706,2
+crlazy_,11624706,3
+2216486,11624706,4
+cjc112,11624706,4
+37480581,11624706,3
+47373898,11624706,4
+48229480,11624706,1
+42689691,11624706,3
+orchild0517,11624706,3
+48357583,11624706,2
+50271561,11624706,3
+80273592,11624706,5
+4098661,11624706,3
+115553730,11624706,5
+ziting002,11624706,5
+ceccion,11624706,4
+six211,11624706,3
+48939731,11624706,5
+bravefish,11624706,3
+35954046,11624706,5
+133887142,11624706,5
+53608504,11624706,4
+47993544,11624706,1
+sumkid,11624706,-1
+127980934,11624706,5
+46195954,11624706,4
+longzhanyun,11624706,3
+87602683,11624706,3
+onlymoment,11624706,3
+cherrykuo,11624706,4
+92379459,11624706,4
+91428973,11624706,3
+51964381,11624706,3
+41874215,11624706,4
+flower_ryoo,11624706,3
+greenyiruo,11624706,-1
+sophielikeit,11624706,-1
+lucyn,11624706,5
+46709909,11624706,5
+smilehuhu,11624706,4
+3543290,11624706,1
+xchill,11624706,5
+wishtarot,11624706,4
+NG,11624706,3
+130743803,11624706,4
+52113084,11624706,4
+83411107,11624706,4
+114284723,11624706,4
+calvinlv,11624706,3
+allblue,11624706,3
+yaohooo,11624706,5
+jiuzao,11624706,3
+83300481,11624706,3
+4158908,11624706,3
+60583715,11624706,3
+54602120,11624706,4
+simonfishing,11624706,3
+wss70kg,11624706,4
+38615886,11624706,4
+53578475,11624706,3
+40970313,11624706,2
+4445748,11624706,3
+88317701,11624706,5
+4193022,11624706,2
+81691649,11624706,3
+50472438,11624706,3
+58782901,11624706,3
+su_karen,11624706,2
+JJWATERFISH,11624706,4
+46829398,11624706,-1
+127030924,11624706,4
+superloveCoral,11624706,4
+99380462,11624706,4
+XFlovesChrisH,11624706,3
+82459449,11624706,5
+132145463,11624706,3
+yingtaozi07,11624706,5
+42199631,11624706,5
+marvelwei,11624706,3
+55407953,11624706,1
+47358102,11624706,5
+63851237,11624706,3
+nancyxik,11624706,3
+104492031,11624706,4
+henryxuzimo,11624706,4
+79302633,11624706,4
+47809178,11624706,3
+circleyup,11624706,3
+53487515,11624706,5
+hatsukoitaste,11624706,4
+wrdouban,11624706,4
+CLASSIC-MOVIE,11624706,4
+Ston3s,11624706,2
+58264368,11624706,4
+3706220,11624706,3
+59548337,11624706,3
+65108877,11624706,4
+timonin,11624706,5
+130411267,11624706,4
+63877279,11624706,3
+68191014,11624706,3
+42799171,11624706,3
+qc1994,11624706,4
+122701852,11624706,3
+58574173,11624706,4
+61461484,11624706,3
+leexiang,11624706,4
+122258109,11624706,3
+27028067,11624706,4
+4095918,11624706,4
+1609757,11624706,3
+66244500,11624706,3
+hanlu1991,11624706,4
+67677954,11624706,3
+rikkuwang,11624706,4
+wanzi925,11624706,4
+36886500,11624706,4
+71347245,11624706,3
+sophiejiang,11624706,3
+53673765,11624706,4
+84593823,11624706,2
+70177724,11624706,3
+dodorene,11624706,3
+xiaozhuizhu,11624706,5
+130603786,11624706,4
+48369193,11624706,3
+2135609,11624706,5
+Holidayczz,11624706,3
+73405940,11624706,3
+51060145,11624706,4
+64157399,11624706,4
+54780669,11624706,3
+69822780,11624706,5
+59627511,11624706,4
+withshane,11624706,4
+49825242,11624706,3
+49285712,11624706,5
+51270451,11624706,4
+128307157,11624706,3
+44669555,11624706,2
+46519818,11624706,4
+62203429,11624706,3
+iker-estrella,11624706,3
+Walt_W,11624706,3
+85347919,11624706,3
+44531163,11624706,4
+iml5,11624706,3
+60282929,11624706,4
+joy21278,11624706,5
+62506001,11624706,5
+myvonne,11624706,4
+ylyat,11624706,2
+89610465,11624706,2
+vtao1989,11624706,5
+ctirad,11624706,3
+48051561,11624706,3
+16329981,11624706,5
+85901553,11624706,4
+93442022,11624706,3
+bluestereo,11624706,4
+zq8870690207,11624706,4
+2370135,11624706,2
+40141522,11624706,4
+62644085,11624706,5
+126876610,11624706,4
+takewater,11624706,4
+82437190,11624706,2
+3429384,11624706,3
+kobe_steak,11624706,3
+132210911,11624706,5
+132773025,11624706,4
+62969115,11624706,3
+122891503,11624706,5
+66883163,11624706,4
+56684398,11624706,4
+44005420,11624706,4
+qzl,11624706,2
+71790709,11624706,3
+hersinki,11624706,5
+55656322,11624706,2
+63778802,11624706,4
+119404798,11624706,-1
+Strangefamiliar,11624706,2
+3547067,11624706,1
+39670803,11624706,4
+89237437,11624706,3
+septembersummer,11624706,4
+12410068,11624706,3
+134562153,11624706,3
+120282120,11624706,3
+69785918,11624706,5
+63923908,11624706,3
+107718660,11624706,3
+133493079,11624706,3
+98688717,11624706,3
+58273580,11624706,4
+51058811,11624706,4
+yangziche,11624706,4
+51617541,11624706,3
+yoicy,11624706,4
+47390120,11624706,3
+119995299,11624706,3
+lxklzy,11624706,3
+50890852,11624706,2
+34585399,11624706,3
+59711389,11624706,3
+63882511,11624706,5
+44720442,11624706,4
+2472187,11624706,3
+68952248,11624706,4
+56924207,11624706,3
+57386300,11624706,2
+37230449,11624706,5
+52451378,11624706,3
+58921825,11624706,3
+2344931,11624706,4
+44737554,11624706,3
+80166253,11624706,4
+129214543,11624706,5
+resurrection,11624706,4
+51278564,11624706,4
+longsuiyun,11624706,4
+3815024,11624706,4
+132830115,11624706,4
+51125398,11624706,4
+119807484,11624706,5
+dhlp,11624706,4
+49382185,11624706,3
+snowyhowe,11624706,3
+48362404,11624706,5
+benbenzh,11624706,3
+49354246,11624706,5
+68726944,11624706,2
+15923288,11624706,2
+113992757,11624706,4
+49604858,11624706,4
+sable_in_red,11624706,4
+95794515,11624706,4
+xiao7,11624706,4
+Coka-Less,11624706,2
+121484921,11624706,4
+83134774,11624706,4
+2135351,11624706,3
+87681351,11624706,5
+lifeicai,11624706,4
+54782824,11624706,3
+zoechou128,11624706,4
+48263535,11624706,2
+bingyansue,11624706,-1
+2135053,11624706,4
+3613272,11624706,4
+kitsch2013,11624706,3
+74309480,11624706,3
+90125082,11624706,3
+tasuka_l,11624706,4
+echosanmao,11624706,4
+3954052,11624706,3
+verahan,11624706,-1
+56001919,11624706,5
+xiaofenzi,11624706,3
+48253364,11624706,3
+fukujune,11624706,4
+honey-honey,11624706,3
+45849847,11624706,4
+35294763,11624706,3
+27764324,11624706,3
+akizou,11624706,3
+49094152,11624706,3
+53769414,11624706,5
+34246698,11624706,3
+13856427,11624706,4
+78728709,11624706,4
+50632205,11624706,3
+35106644,11624706,4
+122392735,11624706,4
+134574099,11624706,3
+83720235,11624706,3
+rrspeaking,11624706,2
+55478954,11624706,4
+gymm18,11624706,4
+133401752,11624706,4
+zqt0,11624706,3
+66848309,11624706,4
+45542406,11624706,4
+49866554,11624706,3
+129338978,11624706,4
+tianmuxian,11624706,5
+netkr,11624706,3
+Jerusalem,11624706,4
+32541723,11624706,5
+molianshaonian,11624706,3
+130940103,11624706,4
+53630241,11624706,5
+71097682,11624706,3
+52341431,11624706,5
+2872266,11624706,3
+1211087,11624706,4
+66234722,11624706,4
+51732025,11624706,5
+89079545,11624706,3
+89747008,11624706,4
+50153652,11624706,4
+73533742,11624706,3
+35729058,11624706,3
+67388709,11624706,3
+65559590,11624706,4
+48649262,11624706,3
+ClaireL,11624706,3
+rachelleung,11624706,3
+anjyukaras,11624706,3
+66535614,11624706,3
+90445661,11624706,3
+52209772,11624706,3
+58794497,11624706,3
+54724200,11624706,3
+49017220,11624706,3
+130623061,11624706,4
+QQ3BlueRose,11624706,4
+100328938,11624706,5
+GameCEO,11624706,5
+Cycneverstop,11624706,3
+38815134,11624706,3
+75058618,11624706,3
+67192113,11624706,5
+momokitty,11624706,5
+ppmy,11624706,4
+62446851,11624706,4
+2288902,11624706,2
+yiweicoffee,11624706,1
+allsmiles,11624706,4
+4398085,11624706,4
+62743500,11624706,3
+csi910,11624706,4
+2597570,11624706,2
+glandlord,11624706,4
+124266215,11624706,4
+3424346,11624706,3
+mizuchan,11624706,5
+49136679,11624706,4
+moon124,11624706,5
+43019419,11624706,5
+52695229,11624706,4
+christinazeng,11624706,4
+36152086,11624706,4
+65995981,11624706,4
+50937061,11624706,4
+2453044,11624706,3
+53984450,11624706,4
+yshir,11624706,3
+tmd210,11624706,4
+39077146,11624706,4
+zhu_sha,11624706,3
+83462778,11624706,3
+42202741,11624706,3
+49443959,11624706,5
+72524329,11624706,2
+61355372,11624706,4
+xiaoniukou,11624706,4
+AriesW322,11624706,4
+53373861,11624706,3
+waka7,11624706,3
+72861793,11624706,5
+bluesorry,11624706,4
+people2,11624706,3
+66133000,11624706,1
+39587317,11624706,4
+1083198,11624706,5
+35506270,11624706,3
+71402960,11624706,5
+41736231,11624706,3
+80011490,11624706,-1
+57932629,11624706,2
+65214570,11624706,3
+83488893,11624706,5
+76150711,11624706,5
+nocturne1817,11624706,3
+48737936,11624706,4
+54158519,11624706,3
+ywyjennifer,11624706,4
+48167301,11624706,4
+61524550,11624706,3
+gingerbread-man,11624706,3
+56177980,11624706,3
+52867570,11624706,3
+renminling,11624706,4
+1972802,11624706,3
+boluzhang,11624706,4
+ivysyi,11624706,5
+71018147,11624706,2
+abaqiao,11624706,3
+nevermandy,11624706,2
+yoyoloveyou,11624706,4
+42679192,11624706,3
+3609679,11624706,3
+60150067,11624706,4
+98165549,11624706,4
+51376665,11624706,4
+freedomiron,11624706,4
+aliciajun,11624706,3
+47425487,11624706,4
+leon115,11624706,3
+62304049,11624706,3
+yuchishangjiu,11624706,3
+52622593,11624706,3
+4811269,11624706,4
+42533881,11624706,5
+rukewa,11624706,4
+4045991,11624706,3
+40934646,11624706,3
+xiaosongqu,11624706,2
+hytro,11624706,5
+50238501,11624706,4
+smileforever,11624706,5
+125334017,11624706,3
+dearmissluo,11624706,3
+gongtong,11624706,4
+iplumage,11624706,4
+3520910,11624706,4
+samadhi,11624706,3
+67905172,11624706,5
+ejw,11624706,5
+83687223,11624706,5
+84729919,11624706,4
+90677183,11624706,4
+r123456,11624706,4
+88081334,11624706,4
+51223136,11624706,4
+seabelhsu,11624706,3
+marvirah,11624706,4
+dxy0410,11624706,5
+44022921,11624706,1
+45799994,11624706,4
+2772729,11624706,4
+BaDa..,11624706,4
+131845858,11624706,3
+3346015,11624706,3
+74550936,11624706,3
+57666536,11624706,3
+51514734,11624706,3
+37309065,11624706,4
+happysadop,11624706,3
+1577518,11624706,1
+feibaobei,11624706,4
+ishama,11624706,4
+2550503,11624706,4
+7651105,11624706,3
+69940581,11624706,3
+loveyixiao,11624706,3
+renshaoqun,11624706,4
+62610096,11624706,3
+lovesay,11624706,3
+zyicestar,11624706,3
+qi7745723,11624706,2
+68493924,11624706,3
+Yolanda0830,11624706,3
+baxy,11624706,3
+lyych,11624706,4
+120547538,11624706,3
+renth,11624706,3
+74145154,11624706,4
+67143504,11624706,4
+69266204,11624706,4
+2300644,11624706,3
+60151849,11624706,2
+pinko333,11624706,4
+57572100,11624706,3
+48495296,11624706,4
+131482779,11624706,4
+sinceY,11624706,5
+8582710,11624706,3
+53318659,11624706,1
+2827133,11624706,4
+4709298,11624706,3
+83040147,11624706,2
+52538749,11624706,3
+34841595,11624706,3
+13331035,11624706,3
+puppysora,11624706,4
+34183802,11624706,1
+35252346,11624706,3
+kouchi,11624706,5
+yangyihu,11624706,2
+vicvictor1a,11624706,5
+131463589,11624706,4
+79847046,11624706,3
+doudoucai,11624706,3
+70009747,11624706,3
+2107978,11624706,4
+miga_sophia,11624706,4
+30762446,11624706,3
+Rabbitoe,11624706,4
+Ertu,11624706,2
+67695458,11624706,1
+71188390,11624706,4
+sugar-t,11624706,4
+yjzhuxiao,11624706,4
+55273592,11624706,3
+jieeeed,11624706,3
+2571588,11624706,3
+55823692,11624706,5
+ccccccIty,11624706,1
+122014449,11624706,5
+3415624,11624706,3
+after17-Lily,11624706,3
+bbfary,11624706,4
+4090221,11624706,3
+XterCollins,11624706,4
+linruoru,11624706,3
+lilypure,11624706,4
+AlexYJ,11624706,3
+44585668,11624706,4
+xmusicandy,11624706,3
+rainbow220,11624706,5
+105938526,11624706,3
+63765493,11624706,3
+70700918,11624706,4
+liebejenny,11624706,4
+leeezh,11624706,-1
+47146304,11624706,4
+60054829,11624706,4
+52777499,11624706,4
+vosr,11624706,5
+50565787,11624706,4
+120483001,11624706,4
+46979178,11624706,5
+40887619,11624706,-1
+violinyuki,11624706,5
+60882378,11624706,3
+123555998,11624706,4
+67843912,11624706,3
+1088369,11624706,5
+64648933,11624706,3
+angellailai,11624706,3
+130890583,11624706,5
+65223888,11624706,3
+tequi1a,11624706,3
+52636837,11624706,4
+SDx74,11624706,4
+60571216,11624706,4
+4560479,11624706,3
+127048108,11624706,4
+82887347,11624706,2
+2914496,11624706,4
+vero1012,11624706,3
+IloveyouDanica,11624706,4
+24853995,11624706,3
+88605317,11624706,3
+Waterity,11624706,3
+70692054,11624706,5
+132446691,11624706,3
+gdhdun,11624706,3
+qi-shao-shang,11624706,5
+62239273,11624706,5
+Anchoress_Yu,11624706,3
+52226268,11624706,3
+49283063,11624706,4
+fupp1119,11624706,5
+shaoyedn,11624706,3
+65719691,11624706,4
+62402215,11624706,2
+9791060,11624706,3
+88129971,11624706,5
+134329761,11624706,4
+tomyiyun,11624706,3
+qhyh,11624706,4
+129568726,11624706,4
+queen70,11624706,4
+111745071,11624706,4
+gyzan107,11624706,4
+71123769,11624706,4
+3596469,11624706,2
+zlxcedric,11624706,4
+124640229,11624706,4
+sunnybath,11624706,5
+lattice.lee,11624706,3
+Baoberlln,11624706,3
+52896143,11624706,3
+51911319,11624706,3
+21212589,11624706,3
+53908274,11624706,3
+coradevil,11624706,3
+126846791,11624706,4
+4456648,11624706,5
+119922273,11624706,4
+43747634,11624706,4
+lidianxi1990,11624706,3
+35925189,11624706,2
+52529736,11624706,3
+2187326,11624706,3
+lucienhuang,11624706,4
+14409304,11624706,4
+32340360,11624706,4
+69794753,11624706,4
+123127608,11624706,2
+134327676,11624706,5
+72387002,11624706,4
+xiaoyantheone,11624706,3
+51216556,11624706,5
+51259360,11624706,4
+Wenqian,11624706,3
+zera,11624706,5
+71863067,11624706,3
+56590853,11624706,3
+88214341,11624706,4
+38182265,11624706,4
+62748915,11624706,4
+82722362,11624706,2
+Masked-xia,11624706,3
+61807076,11624706,3
+assassinzzh,11624706,4
+itzhaoxiangyu,11624706,2
+68637205,11624706,2
+wgd0525,11624706,3
+51589899,11624706,4
+renchang,11624706,4
+sweetxyy,11624706,4
+gluecoco,11624706,3
+105023809,11624706,4
+icekramjoy,11624706,5
+88844052,11624706,3
+57036451,11624706,4
+48609178,11624706,4
+62676885,11624706,3
+tigermian,11624706,4
+jeremy-won,11624706,4
+60111124,11624706,-1
+56340290,11624706,3
+53404477,11624706,4
+53404477,11624706,4
+56682623,11624706,5
+16330214,11624706,3
+57968508,11624706,4
+3950084,11624706,5
+58008361,11624706,4
+tryphena,11624706,-1
+4466010,11624706,4
+62993339,11624706,4
+41320733,11624706,4
+45985335,11624706,4
+56326461,11624706,4
+58188727,11624706,3
+44100704,11624706,3
+48657704,11624706,5
+pausew,11624706,3
+4599465,11624706,3
+11603193,11624706,3
+lane1031,11624706,1
+125228083,11624706,4
+123546456,11624706,4
+78946319,11624706,3
+121225563,11624706,5
+aokam,11624706,4
+54520030,11624706,3
+110172016,11624706,2
+56952438,11624706,5
+61449794,11624706,3
+janiris,11624706,3
+55479744,11624706,5
+2324863,11624706,2
+74448596,11624706,4
+flower-flower25,11624706,-1
+134106579,11624706,-1
+3981876,11624706,3
+80305341,11624706,3
+62003160,11624706,3
+65806272,11624706,5
+turf85,11624706,3
+127972732,11624706,3
+78311238,11624706,3
+1557359,11624706,3
+56436331,11624706,4
+iimozart,11624706,4
+sequel,11624706,3
+45107933,11624706,3
+35015558,11624706,3
+49266057,11624706,4
+75325570,11624706,5
+36001548,11624706,4
+1496728,11624706,3
+yitull,11624706,4
+arthurd,11624706,3
+58734372,11624706,2
+ivyleague,11624706,1
+49012459,11624706,1
+clytzesmile,11624706,4
+99590209,11624706,3
+Kristy_Cheung,11624706,4
+littlemarss,11624706,5
+littlemarss,11624706,5
+azumalcd,11624706,3
+115870534,11624706,3
+89944772,11624706,5
+133991608,11624706,4
+46950995,11624706,4
+Chappell.Wat,11624706,3
+aurden,11624706,3
+oucxsy,11624706,5
+121570619,11624706,3
+SeptemberCherry,11624706,4
+xiyuemu26,11624706,3
+57332147,11624706,2
+xunwendy,11624706,2
+46423055,11624706,4
+126334650,11624706,4
+83467877,11624706,2
+4311473,11624706,4
+71063649,11624706,3
+gstone1723,11624706,4
+54484399,11624706,4
+1068202,11624706,5
+67182363,11624706,4
+81297479,11624706,3
+75773397,11624706,4
+62535973,11624706,3
+46661734,11624706,3
+MYtachikoma,11624706,3
+37268394,11624706,3
+56329683,11624706,4
+autsummer,11624706,3
+46462451,11624706,3
+anlygissing,11624706,3
+36753404,11624706,4
+3014602,11624706,3
+92427949,11624706,5
+49130506,11624706,4
+51312650,11624706,5
+her10ve,11624706,4
+liujiao808,11624706,3
+laijunsen,11624706,3
+2599607,11624706,3
+sirkee,11624706,4
+52049296,11624706,4
+dodopan,11624706,4
+67679868,11624706,2
+idlelz,11624706,4
+xiduowawa,11624706,5
+l3398785,11624706,4
+1763879,11624706,4
+zzqinxx,11624706,5
+63166175,11624706,5
+5122074,11624706,4
+45111580,11624706,5
+lovelyee,11624706,3
+43282525,11624706,4
+charge727,11624706,4
+daomeidi,11624706,3
+2667573,11624706,5
+sherry_mj,11624706,4
+clean12,11624706,5
+58028787,11624706,4
+jujubejuice,11624706,4
+1978347,11624706,4
+48849498,11624706,5
+Ink_Regina,11624706,5
+61570428,11624706,3
+32195292,11624706,2
+3681116,11624706,4
+68027461,11624706,4
+55886618,11624706,3
+nishijimaming,11624706,3
+52493813,11624706,4
+2373729,11624706,5
+sxjwxy1994,11624706,4
+86807524,11624706,3
+46206481,11624706,-1
+9401262,11624706,3
+junylovejuny,11624706,3
+turandot0815,11624706,3
+80429780,11624706,3
+52886775,11624706,4
+57981890,11624706,3
+49171528,11624706,4
+2514000,11624706,4
+25818207,11624706,4
+50926960,11624706,4
+tsangtszching,11624706,4
+61866931,11624706,-1
+47639252,11624706,4
+47754503,11624706,5
+Sigrid_Lu,11624706,3
+zeg,11624706,-1
+94678422,11624706,3
+asyanyang,11624706,4
+49565536,11624706,-1
+boboaibaobao,11624706,4
+134287799,11624706,2
+61562634,11624706,2
+3246311,11624706,3
+imyoyo1116,11624706,3
+3273386,11624706,3
+Joelia,11624706,4
+feng-tracy,11624706,3
+82982521,11624706,3
+1232701,11624706,2
+50880780,11624706,3
+83927943,11624706,2
+48861105,11624706,4
+55457402,11624706,5
+63223538,11624706,3
+30591753,11624706,5
+11581911,11624706,3
+snowsays,11624706,4
+kandyball,11624706,3
+56919953,11624706,4
+64821035,11624706,4
+128157735,11624706,4
+ninalynnsaynia,11624706,4
+53497780,11624706,3
+57496538,11624706,2
+dp0913,11624706,5
+douxiuwei,11624706,3
+83778628,11624706,4
+45324717,11624706,5
+echosun921,11624706,5
+42997943,11624706,4
+53554219,11624706,3
+cherryfane,11624706,4
+114680384,11624706,4
+50234828,11624706,3
+xss0791,11624706,5
+allenyip,11624706,4
+62651248,11624706,4
+104890249,11624706,3
+51095264,11624706,3
+62709413,11624706,4
+imyummy,11624706,4
+62658973,11624706,5
+58976778,11624706,5
+80688565,11624706,4
+84019906,11624706,5
+60788836,11624706,3
+1386311,11624706,4
+45855864,11624706,3
+89534065,11624706,3
+130159674,11624706,3
+119468081,11624706,4
+tianxkong,11624706,3
+119783761,11624706,4
+49733499,11624706,4
+2722902,11624706,4
+58429338,11624706,5
+3173862,11624706,3
+68771576,11624706,4
+65292706,11624706,5
+104531394,11624706,5
+32941683,11624706,4
+62600930,11624706,5
+amazinfiona,11624706,4
+66314549,11624706,4
+17549723,11624706,4
+76186940,11624706,5
+35123281,11624706,4
+66606480,11624706,-1
+godbewithme,11624706,3
+58393079,11624706,5
+89474196,11624706,2
+4617488,11624706,3
+kellyleaf123,11624706,5
+130484860,11624706,3
+62941422,11624706,4
+114540983,11624706,4
+DangerRose,11624706,4
+59677707,11624706,3
+iamloco,11624706,3
+69364818,11624706,4
+124741341,11624706,1
+sbandsth,11624706,3
+58171023,11624706,4
+90461578,11624706,4
+30804612,11624706,5
+90795622,11624706,3
+littlejuice,11624706,-1
+madgirl,11624706,4
+121484000,11624706,4
+92809978,11624706,3
+aurawang95,11624706,4
+duzhouchi,11624706,3
+52724535,11624706,3
+69854098,11624706,5
+108289325,11624706,3
+56224870,11624706,5
+chenolivia,11624706,3
+87988157,11624706,3
+121933047,11624706,3
+61168357,11624706,3
+64303470,11624706,3
+shirley317,11624706,5
+104580788,11624706,3
+charleypeng,11624706,5
+134434339,11624706,3
+57935610,11624706,2
+51045384,11624706,3
+48953697,11624706,4
+43644112,11624706,4
+67033239,11624706,4
+33177895,11624706,4
+rourouet,11624706,3
+122327681,11624706,5
+1430050,11624706,1
+128315720,11624706,4
+alvivi,11624706,2
+49484848,11624706,4
+Tonoah,11624706,4
+55617091,11624706,2
+RedSnowRose,11624706,3
+summermilan,11624706,5
+56484149,11624706,4
+sakura137,11624706,-1
+52286419,11624706,4
+4724078,11624706,4
+74762630,11624706,5
+thehours_lxx,11624706,4
+61345635,11624706,3
+54467510,11624706,5
+83467712,11624706,3
+hinsxj0523,11624706,4
+35505123,11624706,3
+manymany,11624706,3
+129040380,11624706,3
+58921414,11624706,5
+44816197,11624706,3
+yangchenlingstr,11624706,3
+54269016,11624706,3
+allenzn125,11624706,3
+70481744,11624706,4
+kathychu,11624706,4
+xiaoyudian,11624706,4
+shareyixia,11624706,4
+27656435,11624706,5
+leonhardtdb,11624706,2
+DeiDWang,11624706,4
+Gaspard,11624706,3
+3567588,11624706,3
+allthesame,11624706,4
+67728756,11624706,2
+tonyii06,11624706,4
+76454561,11624706,5
+56388358,11624706,5
+luanshijiaren,11624706,3
+SINCE1988,11624706,4
+77621226,11624706,4
+74472287,11624706,1
+1613608,11624706,4
+48728287,11624706,4
+ashes-and-snow,11624706,4
+MaymySumOn,11624706,3
+48499183,11624706,2
+19008518,11624706,3
+4584624,11624706,3
+gongzitian,11624706,1
+53411965,11624706,3
+88298074,11624706,3
+mosama7,11624706,3
+116778035,11624706,4
+hana0707,11624706,4
+122352396,11624706,3
+littlipig,11624706,4
+47809656,11624706,3
+JinSeraph,11624706,3
+SZH19920707,11624706,3
+poped,11624706,5
+lonelyjone,11624706,4
+39730031,11624706,2
+121920760,11624706,3
+1667633,11624706,3
+2707331,11624706,4
+93347677,11624706,4
+49893438,11624706,4
+84010010,11624706,3
+53586447,11624706,3
+kimiyooo,11624706,-1
+81652557,11624706,4
+1495717,11624706,5
+pangpangguanzhe,11624706,5
+56243256,11624706,4
+kyoko.,11624706,3
+55886551,11624706,3
+wangxiaomiao,11624706,3
+133864523,11624706,4
+46765688,11624706,5
+72560129,11624706,3
+51694524,11624706,4
+81616133,11624706,5
+133988097,11624706,5
+87411768,11624706,3
+2062961,11624706,3
+3307428,11624706,3
+2264793,11624706,3
+81322887,11624706,4
+122341232,11624706,4
+3322909,11624706,4
+69900690,11624706,3
+48379797,11624706,5
+79680480,11624706,3
+hirair,11624706,4
+imlyc,11624706,4
+fujiaying,11624706,5
+43447764,11624706,3
+82150919,11624706,3
+63972448,11624706,5
+yayadehu,11624706,5
+133303747,11624706,4
+36257603,11624706,4
+123105162,11624706,3
+lingjunxin,11624706,1
+makc,11624706,3
+jimmy037,11624706,3
+89723194,11624706,2
+4058158,11624706,4
+a-kico,11624706,4
+67435313,11624706,2
+68561607,11624706,3
+zitangyaye,11624706,5
+29898737,11624706,2
+45485577,11624706,3
+80197452,11624706,2
+crystal53451,11624706,-1
+dearing,11624706,5
+61209876,11624706,3
+50720023,11624706,4
+77378164,11624706,3
+51840690,11624706,2
+124749541,11624706,4
+mumurose,11624706,3
+40273043,11624706,4
+nicoreel,11624706,5
+4433770,11624706,4
+boohooer,11624706,4
+41545017,11624706,5
+54341660,11624706,5
+57439323,11624706,3
+flowermumu,11624706,3
+sentexiaohu,11624706,3
+77818044,11624706,2
+22648222,11624706,5
+58423983,11624706,3
+122336700,11624706,3
+43784582,11624706,4
+103583567,11624706,4
+67296353,11624706,4
+missliyu,11624706,3
+lostoldboy,11624706,3
+85748562,11624706,3
+65943333,11624706,4
+97105227,11624706,3
+34601889,11624706,5
+64534600,11624706,3
+1326095,11624706,3
+50680625,11624706,3
+alchain,11624706,3
+73496560,11624706,4
+fuyulovehyde,11624706,3
+1867729,11624706,-1
+53342408,11624706,5
+63053854,11624706,4
+67875068,11624706,4
+shunong,11624706,2
+63556085,11624706,4
+ms0604,11624706,3
+sky428,11624706,5
+chishu,11624706,3
+47752656,11624706,4
+62840293,11624706,3
+jokker,11624706,4
+wednesday.coffe,11624706,4
+liujinlin,11624706,4
+52125579,11624706,5
+onshuway,11624706,3
+82378885,11624706,3
+Irma26,11624706,3
+59534793,11624706,4
+12244253,11624706,5
+leon3777,11624706,3
+130225502,11624706,4
+66825713,11624706,-1
+wilhelmina,11624706,3
+babytara,11624706,3
+57477853,11624706,5
+49454136,11624706,3
+44474526,11624706,3
+121516783,11624706,4
+75678243,11624706,1
+93197518,11624706,3
+saosaoxy,11624706,3
+y_XO,11624706,3
+67141829,11624706,3
+ratbit,11624706,3
+5755075,11624706,3
+1643126,11624706,3
+hindu,11624706,3
+34055869,11624706,4
+120011949,11624706,4
+132974990,11624706,3
+54611595,11624706,-1
+103215074,11624706,3
+10124138,11624706,3
+131439287,11624706,4
+thesadyesterday,11624706,3
+127526905,11624706,5
+52293862,11624706,2
+lidusa,11624706,3
+LadyShino,11624706,4
+48094958,11624706,2
+29710107,11624706,5
+maimaisxj,11624706,5
+77644475,11624706,5
+izemo-sunny,11624706,4
+65367917,11624706,3
+40684892,11624706,3
+58276692,11624706,2
+james0769,11624706,2
+EdmondYan,11624706,3
+hichai,11624706,4
+69546651,11624706,4
+QIYIYI,11624706,3
+akprussia,11624706,5
+acseleon,11624706,3
+50601199,11624706,2
+94391686,11624706,4
+119078867,11624706,2
+73863026,11624706,4
+42689506,11624706,3
+3535619,11624706,5
+ssdysyyy,11624706,3
+72985710,11624706,5
+133899314,11624706,3
+62671989,11624706,3
+Madao_D,11624706,4
+inthemelody,11624706,3
+jy06030717,11624706,2
+36124836,11624706,4
+133520923,11624706,4
+63396418,11624706,5
+71121278,11624706,2
+39055204,11624706,3
+87693266,11624706,3
+1284659,11624706,4
+119311949,11624706,4
+sand_mao,11624706,2
+50346918,11624706,3
+louing,11624706,2
+132182241,11624706,3
+cazze,11624706,3
+75479053,11624706,4
+47308476,11624706,4
+55455640,11624706,2
+74940071,11624706,3
+Aurora0125,11624706,4
+maryshirley,11624706,4
+1298227,11624706,3
+4909737,11624706,2
+wudaguanren,11624706,3
+47494442,11624706,5
+guaishou995,11624706,3
+kanrenao,11624706,4
+49472133,11624706,5
+flower_lee,11624706,2
+64173822,11624706,5
+52051492,11624706,4
+39526350,11624706,3
+4160484,11624706,3
+67947610,11624706,5
+gonnacrack,11624706,4
+62591475,11624706,2
+72147052,11624706,4
+82431278,11624706,3
+frank_lz,11624706,5
+74818677,11624706,3
+terachi,11624706,5
+MissUnderwater,11624706,3
+90551968,11624706,3
+3483952,11624706,2
+43199610,11624706,4
+41629007,11624706,3
+62978822,11624706,4
+52878748,11624706,5
+caiduo7,11624706,4
+69842524,11624706,3
+59429825,11624706,4
+kkshopcc,11624706,4
+53766158,11624706,3
+36638272,11624706,5
+beramode,11624706,3
+ji2uu,11624706,2
+63672153,11624706,4
+58571573,11624706,4
+Boomer,11624706,3
+44020931,11624706,4
+81312576,11624706,4
+corona92cml,11624706,5
+leshu312,11624706,5
+kidsboom,11624706,3
+83188680,11624706,4
+xboncher233,11624706,3
+lazelanka,11624706,4
+fenlanbingyan,11624706,3
+47037056,11624706,5
+55970012,11624706,3
+72857405,11624706,3
+51035629,11624706,5
+1335654,11624706,3
+41505204,11624706,4
+49214799,11624706,2
+75060988,11624706,2
+14598994,11624706,3
+thezfwife,11624706,4
+B-162,11624706,4
+jump28157,11624706,2
+2978891,11624706,5
+cuixuelei,11624706,3
+2730418,11624706,4
+skywithocean,11624706,4
+1510862,11624706,3
+54770734,11624706,3
+marage,11624706,3
+himandy,11624706,3
+88273996,11624706,3
+cookie1995,11624706,4
+wongsin1,11624706,4
+belial_cheung,11624706,3
+58048362,11624706,3
+62306356,11624706,3
+10668148,11624706,5
+127066563,11624706,3
+56419266,11624706,3
+standingalone,11624706,2
+79115910,11624706,3
+130530674,11624706,4
+45833897,11624706,5
+samuelyoung,11624706,4
+74738582,11624706,-1
+110969952,11624706,3
+38090828,11624706,4
+4335163,11624706,3
+65862690,11624706,-1
+wddEileen,11624706,4
+57452457,11624706,3
+41806618,11624706,4
+garconne,11624706,-1
+83717387,11624706,4
+90005274,11624706,5
+51903311,11624706,3
+3617279,11624706,4
+littlefrogD,11624706,3
+aiolia,11624706,3
+127731912,11624706,5
+62601567,11624706,4
+karenizumi,11624706,3
+63672355,11624706,3
+61520831,11624706,3
+62370377,11624706,3
+mangojoan,11624706,1
+50095107,11624706,3
+63964754,11624706,4
+26638056,11624706,3
+Pillow_Lee,11624706,5
+10560080,11624706,4
+4541876,11624706,5
+91815909,11624706,3
+3160681,11624706,3
+4766836,11624706,3
+3010194,11624706,3
+evooone,11624706,2
+mabysomebody,11624706,3
+koyomi,11624706,4
+102917800,11624706,3
+4627477,11624706,5
+superdupp,11624706,3
+44517782,11624706,4
+w849917387,11624706,4
+71867547,11624706,3
+57827177,11624706,1
+50672411,11624706,4
+54533341,11624706,3
+2212675,11624706,3
+ekittying,11624706,5
+shawivy,11624706,4
+Azzz,11624706,4
+52113418,11624706,3
+16413081,11624706,4
+51713363,11624706,3
+61535364,11624706,4
+liancheng,11624706,5
+51721466,11624706,3
+80768830,11624706,4
+57542378,11624706,3
+papa1968,11624706,4
+46319235,11624706,3
+zjlovezj,11624706,3
+raymee,11624706,-1
+2295492,11624706,3
+60849825,11624706,4
+zhangzhan,11624706,3
+25642362,11624706,5
+Sorgenfrei,11624706,4
+f_floria,11624706,4
+34864713,11624706,4
+stratagem,11624706,4
+110142217,11624706,5
+Just_So_So,11624706,4
+68661080,11624706,5
+44166324,11624706,3
+56085825,11624706,5
+132998627,11624706,3
+surgdy1008,11624706,4
+honglu,11624706,4
+50966554,11624706,5
+samixuan.,11624706,3
+58249010,11624706,5
+67209695,11624706,4
+133864365,11624706,2
+stevenzha,11624706,4
+47821826,11624706,4
+70653531,11624706,3
+54728119,11624706,4
+chennanlydia,11624706,3
+26523193,11624706,4
+127276817,11624706,4
+NINEYR,11624706,4
+licinda,11624706,3
+34007283,11624706,-1
+35162448,11624706,5
+80115244,11624706,4
+130564437,11624706,5
+70013242,11624706,4
+63973142,11624706,3
+3015416,11624706,3
+58697566,11624706,4
+58697566,11624706,4
+83202830,11624706,4
+2404348,11624706,2
+116996584,11624706,3
+78508432,11624706,3
+45214246,11624706,4
+xylonapp,11624706,4
+55491094,11624706,3
+2056209,11624706,3
+44866153,11624706,5
+2752550,11624706,4
+55608107,11624706,3
+ghostray,11624706,3
+81319731,11624706,3
+56154643,11624706,4
+123460619,11624706,2
+starandstar,11624706,4
+67029502,11624706,3
+46428362,11624706,4
+mars9,11624706,4
+57977721,11624706,3
+ilovehongkou,11624706,4
+62198193,11624706,5
+64833909,11624706,4
+walkingtime,11624706,4
+63699428,11624706,5
+51629650,11624706,4
+wwnoah,11624706,3
+63063791,11624706,3
+windkidq,11624706,3
+97515933,11624706,3
+35192408,11624706,3
+43388025,11624706,4
+EffyQ,11624706,3
+65371902,11624706,3
+caffee_cup,11624706,4
+64024272,11624706,5
+62677519,11624706,3
+39245426,11624706,3
+2221077,11624706,4
+58802831,11624706,4
+woonpen,11624706,3
+78937198,11624706,5
+sweetestdreams,11624706,5
+87884178,11624706,2
+4533540,11624706,4
+84091392,11624706,4
+miketseng,11624706,2
+53308031,11624706,4
+2787490,11624706,2
+38479950,11624706,5
+50662959,11624706,4
+54444085,11624706,4
+55933493,11624706,4
+4088278,11624706,3
+2828081,11624706,4
+heweizhi,11624706,4
+40966373,11624706,4
+maggie1268,11624706,5
+50432570,11624706,4
+eill,11624706,4
+zizzyzizz,11624706,3
+127037591,11624706,3
+robinsparrow,11624706,-1
+129648449,11624706,3
+52933680,11624706,5
+102402027,11624706,4
+MagicBean,11624706,5
+26518628,11624706,5
+45193149,11624706,3
+ssumin,11624706,4
+66935122,11624706,1
+42748490,11624706,4
+milanmao,11624706,3
+quwaiwai,11624706,5
+104056203,11624706,1
+71947752,11624706,4
+67006833,11624706,5
+47574428,11624706,5
+82463994,11624706,4
+50146746,11624706,3
+sho2mon4e4y,11624706,4
+countcrows,11624706,3
+48829574,11624706,4
+1780152,11624706,4
+royin.chao,11624706,1
+RINEVER,11624706,1
+68664261,11624706,4
+dabeibao,11624706,4
+59716419,11624706,4
+drsoul,11624706,5
+Ryanzeng,11624706,3
+60370348,11624706,2
+63878965,11624706,4
+73749265,11624706,3
+leave_left,11624706,5
+78548715,11624706,3
+33326569,11624706,4
+47212439,11624706,3
+66088686,11624706,4
+40424921,11624706,2
+zihaozai0407,11624706,3
+waWa.tomato,11624706,5
+47737974,11624706,5
+67201475,11624706,3
+ray.mario,11624706,5
+35552022,11624706,2
+58096357,11624706,2
+66979796,11624706,4
+122416993,11624706,2
+littlecar,11624706,2
+57756642,11624706,3
+3969557,11624706,4
+46712687,11624706,2
+75874484,11624706,3
+60054131,11624706,3
+79741169,11624706,3
+57883052,11624706,4
+67694516,11624706,4
+130699016,11624706,3
+renzrxly,11624706,3
+102796007,11624706,4
+21631528,11624706,3
+4284000,11624706,3
+50402097,11624706,3
+48917306,11624706,5
+61318658,11624706,-1
+yjybibby,11624706,4
+45713039,11624706,-1
+53855491,11624706,5
+errena,11624706,3
+bluered,11624706,3
+55538609,11624706,4
+97305087,11624706,4
+2946787,11624706,3
+26818314,11624706,3
+48689695,11624706,4
+18013950,11624706,2
+Jensen4ever,11624706,3
+adamhu,11624706,4
+wongelephant,11624706,4
+67976109,11624706,4
+4367517,11624706,5
+74651071,11624706,5
+shinehall,11624706,5
+wongzayoi,11624706,4
+73419369,11624706,5
+wondershine,11624706,3
+kaarlo,11624706,2
+45541495,11624706,3
+zene,11624706,4
+66362134,11624706,2
+lhyendless,11624706,3
+51999705,11624706,3
+96383885,11624706,5
+shiyiforever,11624706,3
+mary27,11624706,4
+126061647,11624706,3
+41148862,11624706,3
+73809848,11624706,4
+xiaozhuo02,11624706,-1
+60407456,11624706,3
+22056950,11624706,4
+58067735,11624706,4
+chidaodexiaolou,11624706,2
+loserisit,11624706,3
+121985201,11624706,3
+sarahbeibei,11624706,4
+ipodmelody,11624706,2
+feel_sorrow,11624706,3
+reshaw,11624706,3
+54639887,11624706,3
+lewuleyi,11624706,5
+yaoyaolu,11624706,3
+2986990,11624706,3
+75768805,11624706,4
+zilan11,11624706,4
+10162011,11624706,5
+96674410,11624706,3
+13570007,11624706,4
+sujutotheme,11624706,3
+45536018,11624706,4
+53508209,11624706,4
+58927939,11624706,3
+62438264,11624706,3
+81850559,11624706,3
+42314305,11624706,4
+1156438,11624706,4
+joyxu,11624706,-1
+wsyu13,11624706,3
+44966176,11624706,5
+2756995,11624706,3
+oneofus,11624706,5
+aprilpear,11624706,4
+ngqmtm,11624706,1
+131606948,11624706,3
+gavinturkey,11624706,3
+60933677,11624706,5
+4163899,11624706,5
+73187224,11624706,3
+3582172,11624706,5
+75916776,11624706,5
+stknight,11624706,4
+102463790,11624706,3
+Vivian-KW,11624706,3
+Little-Shaily,11624706,-1
+42346736,11624706,3
+zhaoda,11624706,4
+78166009,11624706,3
+FreshSherlock,11624706,3
+48098094,11624706,5
+45507123,11624706,3
+62062793,11624706,4
+NONOJIA,11624706,3
+108037483,11624706,3
+50555792,11624706,4
+130520030,11624706,3
+119343743,11624706,5
+101114328,11624706,3
+130727558,11624706,5
+winnie.35,11624706,4
+45825237,11624706,4
+m-n,11624706,3
+55488825,11624706,3
+60336002,11624706,4
+mufanxuanji,11624706,3
+48471753,11624706,3
+gsjivy,11624706,5
+simysm,11624706,3
+52051860,11624706,4
+forever0801,11624706,4
+50660234,11624706,3
+10287741,11624706,5
+41106056,11624706,4
+57459956,11624706,3
+130353620,11624706,3
+jesmine114,11624706,3
+50689193,11624706,3
+50833058,11624706,5
+Verocia,11624706,4
+ankui,11624706,4
+velox,11624706,3
+57383174,11624706,3
+63546022,11624706,5
+lovevision,11624706,5
+28628487,11624706,3
+132410493,11624706,2
+qianqianfei,11624706,5
+126907863,11624706,5
+85482709,11624706,4
+64242792,11624706,5
+60620964,11624706,4
+82317477,11624706,4
+39539496,11624706,5
+68101692,11624706,5
+49930481,11624706,3
+2620783,11624706,4
+59067550,11624706,5
+70536154,11624706,4
+45305916,11624706,3
+119623175,11624706,4
+68936327,11624706,4
+leantong,11624706,2
+nbyuan,11624706,2
+67977752,11624706,3
+fb87,11624706,5
+supitia,11624706,5
+smilejackiekwok,11624706,4
+zhaowei78,11624706,4
+leann1217,11624706,3
+stary_gxh,11624706,4
+56768374,11624706,5
+catsSchrodinge,11624706,4
+46310239,11624706,3
+130377649,11624706,3
+63401093,11624706,5
+4300069,11624706,5
+4804994,11624706,3
+48179852,11624706,4
+131208902,11624706,3
+68384706,11624706,4
+60232571,11624706,3
+ylemliu,11624706,4
+62134225,11624706,5
+52153576,11624706,2
+56628925,11624706,-1
+60303704,11624706,4
+48608212,11624706,3
+prague2046,11624706,4
+68246069,11624706,5
+45932979,11624706,4
+49041095,11624706,4
+4272147,11624706,4
+131771988,11624706,5
+43342048,11624706,3
+AnastasiaChou,11624706,4
+52918154,11624706,3
+asanjiamomo,11624706,3
+ViamoLee,11624706,4
+adreaman,11624706,3
+47243761,11624706,5
+57654704,11624706,4
+100555334,11624706,5
+3922229,11624706,5
+129139352,11624706,4
+96241491,11624706,4
+zhou33,11624706,4
+36359450,11624706,4
+60386073,11624706,5
+35747194,11624706,5
+64047703,11624706,5
+dbxr,11624706,-1
+51100123,11624706,5
+Beth0204,11624706,3
+23643772,11624706,4
+132350496,11624706,3
+115900561,11624706,4
+haji,11624706,4
+yinhun,11624706,4
+69376612,11624706,3
+robins1979,11624706,4
+misskaka214,11624706,2
+maryoasis,11624706,3
+68424058,11624706,4
+68413404,11624706,5
+tanyangguang,11624706,5
+misssummer27,11624706,3
+babezeno,11624706,2
+48662310,11624706,2
+83320704,11624706,2
+122789808,11624706,5
+65734199,11624706,3
+louix,11624706,5
+3071428,11624706,4
+45182883,11624706,4
+109084248,11624706,5
+daisyyy1989,11624706,4
+97103358,11624706,4
+77156561,11624706,4
+40037855,11624706,3
+102783597,11624706,3
+xuanranoklove,11624706,-1
+50028019,11624706,3
+cherrywoodpig,11624706,5
+egeria1225,11624706,4
+43883337,11624706,3
+KSQ91,11624706,5
+102042212,11624706,4
+133900665,11624706,5
+Psycho_L,11624706,3
+56941343,11624706,2
+60337804,11624706,4
+80820907,11624706,4
+126584609,11624706,3
+leexiaoxiao,11624706,3
+53023463,11624706,4
+52737447,11624706,3
+53317988,11624706,3
+42962790,11624706,4
+64083865,11624706,3
+63924842,11624706,3
+yizhaisansheng,11624706,4
+wumengyu,11624706,3
+zhuxiaoqi,11624706,3
+tomerlaw,11624706,4
+73161604,11624706,3
+82630847,11624706,3
+113088428,11624706,2
+2471335,11624706,3
+119877759,11624706,3
+2320060,11624706,5
+aballking,11624706,4
+41833499,11624706,5
+67163006,11624706,2
+67900271,11624706,3
+120898625,11624706,3
+47776036,11624706,4
+52610142,11624706,5
+ragnarok1028,11624706,3
+4370686,11624706,4
+LoveRaul77,11624706,1
+vradica,11624706,3
+47104715,11624706,4
+58131621,11624706,3
+summerxiao,11624706,5
+danielruby,11624706,5
+gulisitan,11624706,4
+134013208,11624706,4
+130692853,11624706,5
+mandy23,11624706,5
+demoncat,11624706,3
+92177922,11624706,5
+3786096,11624706,3
+53723765,11624706,5
+zzzzzmc,11624706,3
+zhaifei-movie,11624706,2
+4394529,11624706,5
+cirosie,11624706,3
+apple_pie,11624706,3
+84675514,11624706,3
+cedrical,11624706,3
+22850702,11624706,3
+132010641,11624706,4
+lucifer-.,11624706,5
+air1104,11624706,3
+liyanyi,11624706,4
+snoopy198471,11624706,3
+74224240,11624706,3
+53880480,11624706,5
+MMMangojz,11624706,4
+1266223,11624706,-1
+42497545,11624706,1
+61937821,11624706,3
+Sheldon5,11624706,3
+daisylau,11624706,4
+fuckTMD,11624706,5
+73296985,11624706,3
+67077088,11624706,4
+yigerenzhu,11624706,3
+Dorie,11624706,4
+koway,11624706,4
+121248014,11624706,-1
+liqiyao8931,11624706,2
+68079880,11624706,4
+51396590,11624706,3
+1545440,11624706,-1
+1271321,11624706,3
+FATTED,11624706,1
+48505839,11624706,4
+36109432,11624706,3
+90751741,11624706,5
+Isabella_Meow,11624706,4
+49206550,11624706,3
+meysure,11624706,4
+87541020,11624706,2
+61726072,11624706,3
+61797796,11624706,3
+112933075,11624706,3
+66404994,11624706,3
+wfxs,11624706,4
+64326764,11624706,3
+danicahee,11624706,4
+71575345,11624706,3
+xiaosazi,11624706,4
+alisa_lea,11624706,5
+YYweiwancheng,11624706,3
+73675216,11624706,3
+64831069,11624706,4
+3791482,11624706,4
+Monster_004,11624706,4
+52655756,11624706,-1
+1821069,11624706,3
+51152974,11624706,3
+damon3liz,11624706,3
+changefiona,11624706,4
+18664682,11624706,2
+tweety778,11624706,3
+47556732,11624706,5
+45484861,11624706,3
+52763172,11624706,4
+40843838,11624706,3
+cathychou,11624706,2
+4145647,11624706,4
+adamhsieh,11624706,1
+haidonsun,11624706,1
+1527687,11624706,4
+29244553,11624706,4
+lachaohuage,11624706,3
+75952866,11624706,3
+sarashome,11624706,3
+94563993,11624706,3
+blurblur1234,11624706,3
+aprilwind_shi,11624706,3
+foreversleepy,11624706,4
+queensmary,11624706,3
+57276771,11624706,3
+130813425,11624706,4
+Vichair,11624706,4
+66025844,11624706,3
+54096060,11624706,4
+24066247,11624706,5
+zty1989,11624706,4
+likounin,11624706,3
+49733786,11624706,3
+zuotianyou,11624706,5
+56259362,11624706,5
+89565486,11624706,3
+101905187,11624706,4
+rayfrank,11624706,3
+FindingKnightly,11624706,4
+58386439,11624706,5
+hanxudaydayup,11624706,3
+52635539,11624706,5
+3613680,11624706,3
+63048659,11624706,2
+34946223,11624706,3
+45872414,11624706,5
+anshangwennuan,11624706,3
+sevendream129,11624706,3
+18586571,11624706,3
+71203011,11624706,2
+73011629,11624706,5
+17219055,11624706,4
+yt0310,11624706,3
+4558984,11624706,3
+lyanloveforever,11624706,4
+yoky,11624706,5
+44754472,11624706,4
+JEWELzxx,11624706,3
+callmekyle,11624706,5
+52830253,11624706,4
+x19920414,11624706,4
+givenchy_,11624706,5
+46531912,11624706,5
+62237138,11624706,4
+133375008,11624706,3
+yumiaowater,11624706,5
+2144848,11624706,3
+62507198,11624706,3
+yangyucn,11624706,3
+merlinl,11624706,4
+83044349,11624706,3
+28522579,11624706,4
+23733715,11624706,5
+121471027,11624706,4
+57479148,11624706,4
+taken-tee,11624706,4
+50928565,11624706,3
+127365822,11624706,4
+3634776,11624706,4
+junchao1988,11624706,3
+43328284,11624706,3
+68078730,11624706,3
+henry-va-parle,11624706,5
+2361739,11624706,5
+qijiang037,11624706,3
+122420292,11624706,2
+81792271,11624706,5
+44965595,11624706,3
+zoethree,11624706,5
+115368831,11624706,3
+49891918,11624706,4
+braveshengchun,11624706,3
+47054399,11624706,3
+zengkun100,11624706,2
+qiangqiangzhang,11624706,3
+kongyan15,11624706,4
+54776010,11624706,3
+61553411,11624706,4
+mayee1121,11624706,4
+tylerlv,11624706,2
+3645785,11624706,4
+83192271,11624706,4
+52662946,11624706,3
+49586478,11624706,2
+42186843,11624706,3
+134306404,11624706,4
+ImHuiY,11624706,4
+claireqq,11624706,3
+burn_in_blue,11624706,2
+bieshaohui,11624706,3
+Lizzie14,11624706,5
+50642394,11624706,2
+72549209,11624706,3
+xiaopoyu,11624706,4
+70357022,11624706,5
+133585734,11624706,3
+63662696,11624706,2
+missingsomebody,11624706,-1
+74608127,11624706,5
+reika_scar,11624706,4
+36840683,11624706,5
+95873636,11624706,3
+42759061,11624706,3
+103393160,11624706,3
+7398720,11624706,4
+3656467,11624706,4
+3502294,11624706,2
+64978409,11624706,4
+ophelia_m,11624706,3
+angelmissu,11624706,3
+79139745,11624706,2
+K220810,11624706,4
+127675582,11624706,5
+wonderer,11624706,3
+53266040,11624706,5
+59425944,11624706,3
+shuijingqiu,11624706,5
+kiara1988,11624706,4
+jean4you,11624706,3
+3440574,11624706,3
+porkwen,11624706,3
+sstss411,11624706,-1
+w7,11624706,2
+Tower1214,11624706,4
+bx,11624706,4
+54358561,11624706,3
+2121850,11624706,3
+74139024,11624706,2
+2799911,11624706,3
+yvett,11624706,5
+73410174,11624706,5
+raising_dawn,11624706,3
+yuikkk,11624706,4
+lalimaomao,11624706,3
+46721798,11624706,4
+amyzys1998,11624706,4
+olivialuan,11624706,4
+51132496,11624706,3
+130132099,11624706,5
+71325468,11624706,3
+4260903,11624706,4
+79372510,11624706,5
+35005590,11624706,5
+58938806,11624706,5
+mellowang,11624706,3
+50689721,11624706,5
+44266204,11624706,4
+joyestin,11624706,4
+87026553,11624706,1
+59378260,11624706,5
+57601400,11624706,4
+lanyangyangdecc,11624706,3
+58963446,11624706,4
+hiddddleston,11624706,5
+55817697,11624706,3
+Coast0to0coast,11624706,4
+2902661,11624706,4
+51931928,11624706,5
+jiong0713,11624706,3
+2548459,11624706,3
+znrpiggey,11624706,2
+127244778,11624706,3
+120643307,11624706,5
+46912803,11624706,3
+engcube,11624706,4
+70929695,11624706,1
+imPluto,11624706,2
+ramya99,11624706,2
+49189799,11624706,4
+harjol,11624706,5
+76395595,11624706,5
+66613325,11624706,4
+shouhulantian,11624706,3
+prepoet,11624706,4
+37250784,11624706,5
+69475039,11624706,2
+45648190,11624706,4
+yanrange1218,11624706,3
+46009561,11624706,4
+52014537,11624706,3
+108241953,11624706,4
+83637383,11624706,4
+Hc66,11624706,-1
+57580969,11624706,4
+34570824,11624706,4
+13906885,11624706,4
+76857499,11624706,4
+27669822,11624706,4
+alicepeng,11624706,5
+47034969,11624706,3
+yyy18n,11624706,2
+41848839,11624706,3
+4905483,11624706,-1
+36302037,11624706,4
+130554186,11624706,2
+50531541,11624706,3
+fabrique1987,11624706,3
+44924401,11624706,-1
+72808838,11624706,3
+50729959,11624706,4
+metalsi,11624706,4
+127297970,11624706,5
+3819480,11624706,5
+Daryl,11624706,2
+valanthecarey,11624706,5
+134499105,11624706,4
+64320090,11624706,5
+76356233,11624706,4
+36554662,11624706,3
+88439681,11624706,2
+58032065,11624706,4
+88392258,11624706,3
+Yanmui,11624706,-1
+51918172,11624706,5
+51422581,11624706,1
+honeylee,11624706,3
+133195723,11624706,5
+okmovie,11624706,2
+foolishrabbit,11624706,4
+75851842,11624706,5
+52146606,11624706,3
+66066845,11624706,4
+MRCellardoor,11624706,5
+pinkpinkychan,11624706,5
+csc,11624706,4
+46749955,11624706,3
+53179337,11624706,3
+58056819,11624706,4
+4536449,11624706,4
+46967065,11624706,3
+lokio,11624706,4
+63513932,11624706,3
+4211678,11624706,4
+GZ,11624706,3
+yu830,11624706,5
+88190785,11624706,5
+Rainlivelin,11624706,3
+2706232,11624706,3
+thomsonkoo,11624706,3
+133074819,11624706,1
+SHENCHIFENG,11624706,4
+kynno,11624706,3
+60373659,11624706,4
+103105403,11624706,3
+42243165,11624706,5
+whoseLotus,11624706,3
+115202720,11624706,4
+cherrybombbb,11624706,3
+26601106,11624706,3
+26601106,11624706,3
+42137156,11624706,3
+58474530,11624706,3
+53933902,11624706,3
+43908954,11624706,5
+55607390,11624706,3
+52898475,11624706,5
+fiona721,11624706,5
+babylucky,11624706,5
+anxin817,11624706,5
+50470282,11624706,3
+lululalalulu,11624706,3
+66352565,11624706,1
+61538847,11624706,3
+panicsun,11624706,4
+133011186,11624706,5
+3119464,11624706,3
+57702765,11624706,5
+61449510,11624706,5
+augustwxc,11624706,2
+yexuexiange,11624706,5
+36108304,11624706,3
+sunchao1989,11624706,3
+42955100,11624706,4
+34552812,11624706,3
+leiii,11624706,3
+55737203,11624706,3
+beatrice_bei,11624706,4
+whenhear,11624706,5
+damnm,11624706,4
+cainroziel,11624706,4
+lauer,11624706,4
+27891262,11624706,3
+128377373,11624706,5
+134026402,11624706,3
+41281992,11624706,4
+wangxiaolu,11624706,4
+15146438,11624706,4
+40201382,11624706,3
+fx20061006,11624706,3
+krypton,11624706,5
+34859400,11624706,5
+49855278,11624706,3
+shansss,11624706,3
+smumy,11624706,3
+14840393,11624706,3
+130535859,11624706,4
+102386704,11624706,4
+Microka,11624706,4
+52128416,11624706,4
+63329467,11624706,3
+3301137,11624706,4
+therealme,11624706,5
+iswear_4ever,11624706,3
+60903093,11624706,3
+zhuyuejun,11624706,3
+96861056,11624706,3
+62798104,11624706,4
+pupplane,11624706,4
+zhuqt,11624706,4
+50454330,11624706,4
+98379378,11624706,3
+Qling1982,11624706,5
+2447240,11624706,-1
+cantona_x,11624706,3
+35563914,11624706,3
+117806969,11624706,4
+41236968,11624706,2
+1159670,11624706,4
+jiangyuhang,11624706,-1
+43096716,11624706,5
+zhousophia,11624706,3
+4398601,11624706,1
+chongduoduo,11624706,3
+52925540,11624706,5
+80284693,11624706,3
+38412947,11624706,4
+julysummer,11624706,3
+134146156,11624706,3
+azcaban,11624706,3
+102626556,11624706,4
+29142546,11624706,4
+jammy48,11624706,2
+121187003,11624706,3
+55990410,11624706,2
+krator,11624706,5
+76870671,11624706,5
+65038272,11624706,4
+LEVELEEE,11624706,4
+43122192,11624706,3
+69048541,11624706,4
+junwuchen,11624706,5
+103602476,11624706,4
+2319130,11624706,3
+98877536,11624706,3
+ireneyan,11624706,3
+heartlesstree,11624706,5
+mikaLynn,11624706,1
+84563751,11624706,3
+54686261,11624706,4
+82404312,11624706,3
+3805082,11624706,2
+134137352,11624706,4
+LittleS,11624706,2
+3420320,11624706,4
+98107332,11624706,2
+106137917,11624706,4
+cealiannnnnn,11624706,5
+49082695,11624706,2
+60157945,11624706,4
+54542205,11624706,5
+KimDream,11624706,5
+25977714,11624706,2
+48132735,11624706,4
+48751595,11624706,3
+natsunokaori,11624706,-1
+sunxuhang,11624706,2
+70514763,11624706,3
+125001899,11624706,3
+45010437,11624706,3
+xiangkayi,11624706,4
+wangyi2011,11624706,3
+vaniadyq,11624706,4
+4468522,11624706,3
+51219877,11624706,4
+k7058,11624706,4
+71988580,11624706,3
+32019435,11624706,3
+59255037,11624706,3
+62432326,11624706,1
+48521258,11624706,3
+33195651,11624706,2
+coolgun,11624706,3
+48841040,11624706,3
+88425798,11624706,4
+chongguichenji,11624706,4
+61566876,11624706,5
+59306525,11624706,3
+edo-biscuit,11624706,-1
+rehin,11624706,4
+letonk,11624706,3
+64679422,11624706,3
+sxqs,11624706,3
+2961232,11624706,3
+57251364,11624706,3
+73866765,11624706,1
+adam1992,11624706,4
+133690949,11624706,3
+T.V.Zoe,11624706,3
+fairygarden,11624706,2
+59774310,11624706,4
+UtopianCarmen,11624706,4
+41220723,11624706,-1
+129453126,11624706,3
+62664965,11624706,5
+rajorAn,11624706,1
+82817173,11624706,4
+sherrydjm,11624706,5
+chen11640,11624706,3
+61132884,11624706,3
+61132884,11624706,3
+48377628,11624706,2
+Crystal_Fong,11624706,3
+97468014,11624706,4
+121883364,11624706,3
+37914560,11624706,4
+82435721,11624706,4
+87867332,11624706,4
+lovemusic007,11624706,3
+qunlangzhishou,11624706,4
+71814375,11624706,4
+3480125,11624706,4
+68390057,11624706,1
+loccyone,11624706,3
+54867328,11624706,4
+32402352,11624706,3
+phoebechin,11624706,3
+roseyan_lxy,11624706,4
+57671679,11624706,-1
+121947747,11624706,4
+43736593,11624706,3
+42149787,11624706,4
+124808104,11624706,4
+XING0131,11624706,4
+34065248,11624706,3
+GATIK,11624706,5
+3397020,11624706,3
+74249669,11624706,3
+aegeanguo,11624706,5
+sixiaokong,11624706,4
+atti0,11624706,2
+103339430,11624706,3
+102781440,11624706,3
+97561291,11624706,5
+liuxiyue,11624706,4
+gdamosusan,11624706,5
+12198403,11624706,2
+3832362,11624706,4
+1995141,11624706,3
+S.G,11624706,4
+41803938,11624706,3
+iiiiiliiiii,11624706,3
+cera,11624706,3
+1857885,11624706,4
+122227856,11624706,5
+bibodeng,11624706,4
+52583553,11624706,4
+dly009928,11624706,4
+37513501,11624706,2
+4388033,11624706,4
+kkguagangqin,11624706,3
+Prague920510,11624706,3
+71535507,11624706,5
+5489006,11624706,4
+2692321,11624706,5
+DVforever,11624706,4
+56223706,11624706,4
+natsukimi,11624706,3
+34347136,11624706,4
+132161257,11624706,3
+daoluan,11624706,2
+47920799,11624706,4
+27008930,11624706,4
+3129085,11624706,4
+2742057,11624706,4
+2580551,11624706,4
+zhangezra,11624706,3
+xxeeeeee,11624706,4
+55010232,11624706,4
+48263322,11624706,3
+87558584,11624706,3
+fm2011,11624706,2
+63592658,11624706,3
+56686931,11624706,2
+14439366,11624706,3
+129677600,11624706,3
+luckyumao,11624706,5
+kinokoneko,11624706,5
+79542238,11624706,4
+huoLayfeng,11624706,3
+sirs,11624706,3
+wp728,11624706,2
+80667366,11624706,3
+56526640,11624706,5
+gj88,11624706,4
+carolcai,11624706,4
+4909186,11624706,2
+33855845,11624706,3
+43757152,11624706,3
+67641940,11624706,5
+53534092,11624706,4
+littlevanny,11624706,4
+1499223,11624706,5
+45283744,11624706,4
+wowtim,11624706,3
+susidai,11624706,4
+millicent933,11624706,3
+62993397,11624706,2
+4775745,11624706,4
+jessica0118,11624706,5
+winya229,11624706,4
+43962345,11624706,3
+45838830,11624706,5
+71210783,11624706,3
+133687248,11624706,3
+87578435,11624706,3
+serein0423,11624706,5
+46020437,11624706,3
+summerhanabi,11624706,4
+51936728,11624706,4
+49948273,11624706,4
+42886827,11624706,4
+120061371,11624706,4
+57274562,11624706,3
+baliang,11624706,4
+Daisyyyue,11624706,5
+72169675,11624706,5
+102718430,11624706,3
+claireloveyou,11624706,5
+57092473,11624706,3
+11616101,11624706,3
+50280791,11624706,5
+xuziming,11624706,4
+71348074,11624706,5
+4603294,11624706,2
+mugglezwt,11624706,5
+gambler801,11624706,5
+balancee,11624706,3
+63101856,11624706,4
+53962357,11624706,4
+69763543,11624706,3
+43671403,11624706,5
+103251122,11624706,3
+122775909,11624706,5
+55373134,11624706,1
+115706838,11624706,3
+leeliu,11624706,2
+3442648,11624706,3
+58732271,11624706,5
+103269832,11624706,4
+46155111,11624706,3
+Life4Junson,11624706,4
+kanfeng,11624706,4
+notoshaz,11624706,3
+25240448,11624706,4
+17407986,11624706,5
+100420531,11624706,4
+HBHelena,11624706,4
+54082963,11624706,5
+28978843,11624706,4
+BaBaBaL,11624706,4
+tricky_V,11624706,3
+67910969,11624706,5
+3170874,11624706,3
+3843442,11624706,4
+beckham7,11624706,4
+108111137,11624706,2
+110771626,11624706,5
+freedom4ever_L,11624706,3
+3770809,11624706,5
+3770809,11624706,5
+42387352,11624706,5
+45164185,11624706,3
+mocun,11624706,3
+82232966,11624706,4
+45777047,11624706,4
+zhanghr,11624706,4
+16313678,11624706,4
+50451911,11624706,3
+52004957,11624706,3
+48174123,11624706,4
+80225385,11624706,2
+Kemuid,11624706,5
+125165455,11624706,4
+76193646,11624706,2
+67842305,11624706,3
+54541942,11624706,4
+129815984,11624706,5
+rebecca-luxueya,11624706,3
+aaronfighting,11624706,3
+65692300,11624706,4
+clover.k,11624706,3
+C37twocold,11624706,-1
+rechyo,11624706,4
+54989820,11624706,3
+lizhiweierdelu,11624706,2
+63822026,11624706,4
+aborigines,11624706,3
+sjzqzkn,11624706,3
+yeai3,11624706,5
+meisacc,11624706,4
+nohangover,11624706,4
+72658136,11624706,4
+53120711,11624706,2
+105153848,11624706,3
+46512598,11624706,3
+lovets,11624706,4
+lilian1991,11624706,-1
+132676591,11624706,4
+40017309,11624706,5
+133914507,11624706,4
+84279039,11624706,2
+4289781,11624706,3
+131514121,11624706,3
+yanyang210,11624706,-1
+15088576,11624706,-1
+vikkistyle,11624706,-1
+92082038,11624706,3
+93257261,11624706,2
+45186809,11624706,4
+luocaochengsi,11624706,3
+ndcharles,11624706,-1
+130845579,11624706,4
+133125055,11624706,3
+119695950,11624706,5
+leafsong,11624706,3
+unclepenguin,11624706,5
+73421771,11624706,3
+hawaiii,11624706,4
+HugoVince,11624706,3
+60159317,11624706,4
+lenairis,11624706,4
+46346785,11624706,4
+fqlv5,11624706,3
+115164997,11624706,-1
+61394930,11624706,5
+25495799,11624706,2
+91310062,11624706,4
+youngadventure,11624706,3
+78150719,11624706,5
+81551351,11624706,4
+lemon_ccc_,11624706,5
+121806059,11624706,5
+yangyq,11624706,3
+cindyya,11624706,3
+momoko11510,11624706,2
+92966403,11624706,4
+54443004,11624706,3
+133486624,11624706,4
+42778669,11624706,5
+3502898,11624706,4
+4652357,11624706,3
+2332373,11624706,3
+119834273,11624706,2
+82690334,11624706,3
+guanwaiguicai,11624706,4
+82367118,11624706,1
+73620876,11624706,5
+119081444,11624706,3
+92231929,11624706,1
+3928587,11624706,3
+friendsay66,11624706,3
+nidada,11624706,4
+76076514,11624706,5
+2173098,11624706,2
+56670282,11624706,3
+71995699,11624706,5
+utopialand,11624706,4
+whisper,11624706,3
+18313578,11624706,3
+richey_,11624706,4
+DrRay,11624706,3
+1313926,11624706,5
+78925849,11624706,3
+80039937,11624706,4
+dolphivy,11624706,-1
+jiachangting,11624706,4
+dxq1216,11624706,3
+dongchenxing,11624706,3
+souldestroyin,11624706,5
+liebedai,11624706,4
+82604234,11624706,5
+78728775,11624706,3
+33290727,11624706,4
+66803513,11624706,3
+35663577,11624706,3
+melonday,11624706,5
+78352623,11624706,4
+70856854,11624706,3
+61076987,11624706,3
+67742715,11624706,4
+oceanboo,11624706,4
+Lovezing,11624706,3
+60650614,11624706,3
+27498320,11624706,3
+75033795,11624706,4
+zizon,11624706,3
+60786536,11624706,4
+90729667,11624706,4
+idealtemple,11624706,3
+69443886,11624706,4
+JunKun,11624706,4
+35567760,11624706,3
+45418355,11624706,2
+49267852,11624706,2
+58741495,11624706,3
+47914559,11624706,4
+78089832,11624706,-1
+59625394,11624706,4
+96769747,11624706,4
+3730460,11624706,1
+74658279,11624706,4
+69616363,11624706,2
+46333291,11624706,3
+yan920131,11624706,5
+MLLEfanfan,11624706,4
+2909779,11624706,4
+54224355,11624706,3
+mojiwhat,11624706,3
+74628004,11624706,3
+79419474,11624706,3
+laozo,11624706,4
+67796824,11624706,3
+51257639,11624706,3
+54885866,11624706,3
+peaceup,11624706,4
+menethil,11624706,4
+54706735,11624706,3
+imp1206,11624706,3
+mianhua11,11624706,3
+92431654,11624706,4
+79701801,11624706,3
+x1Ao_y,11624706,4
+2126869,11624706,4
+57710980,11624706,4
+99329704,11624706,3
+Kevin3,11624706,3
+49110008,11624706,4
+Black_Star,11624706,3
+6926584,11624706,2
+51007365,11624706,5
+63927330,11624706,3
+y19940504,11624706,5
+126241024,11624706,5
+2018531,11624706,4
+78914788,11624706,3
+raquelycidas,11624706,2
+tls,11624706,3
+57139809,11624706,4
+67725950,11624706,4
+RenoTT,11624706,5
+134446098,11624706,3
+122052846,11624706,3
+52585646,11624706,4
+65079823,11624706,3
+dshiji,11624706,3
+tyu,11624706,4
+ceffee,11624706,4
+hyykkb,11624706,5
+17004593,11624706,5
+yangborui,11624706,5
+sky7va,11624706,4
+93667110,11624706,4
+2168902,11624706,4
+57886275,11624706,3
+120865817,11624706,5
+119583854,11624706,4
+50839444,11624706,5
+41279117,11624706,3
+53862196,11624706,-1
+shadowfoxxuan,11624706,3
+wen_Schwartz,11624706,2
+shutupfreud,11624706,3
+maomiwang809,11624706,4
+87636985,11624706,3
+62740578,11624706,3
+47047627,11624706,4
+beida2012,11624706,3
+52767062,11624706,5
+arlashi,11624706,3
+ID223,11624706,2
+62638144,11624706,4
+67225969,11624706,3
+56911400,11624706,3
+3615093,11624706,3
+45276525,11624706,3
+susie_qu,11624706,3
+shennessy,11624706,2
+xxwade,11624706,1
+53015845,11624706,3
+48020067,11624706,5
+48531084,11624706,2
+34087859,11624706,2
+morning.garden,11624706,3
+88719620,11624706,4
+3420387,11624706,5
+85008065,11624706,3
+68294915,11624706,4
+119793570,11624706,5
+applefloral,11624706,4
+2033981,11624706,3
+cosmtrek,11624706,4
+93179604,11624706,4
+3296630,11624706,3
+SpiritDrug,11624706,-1
+80356847,11624706,3
+83433400,11624706,3
+wzdradon,11624706,3
+104041207,11624706,3
+evianlespond,11624706,5
+4383968,11624706,4
+82582719,11624706,3
+3899360,11624706,4
+79132036,11624706,4
+littlezhisandra,11624706,5
+44483182,11624706,3
+3372273,11624706,4
+52116550,11624706,3
+qiaowu2,11624706,3
+iCath,11624706,5
+64276652,11624706,3
+binglanxier,11624706,4
+felinoshuffle,11624706,5
+64104549,11624706,4
+35360651,11624706,4
+50155335,11624706,5
+Suumer007,11624706,3
+71832192,11624706,3
+130531955,11624706,3
+41198675,11624706,4
+hexuanpomon,11624706,4
+LiLiLiLiLiLily,11624706,3
+charlielee,11624706,4
+43854747,11624706,5
+ceh19930603,11624706,2
+kirsty417,11624706,4
+79698960,11624706,3
+badayidi,11624706,3
+62832245,11624706,4
+75696184,11624706,5
+129598785,11624706,4
+72705775,11624706,5
+122667777,11624706,5
+59752375,11624706,4
+3739080,11624706,5
+49710379,11624706,3
+cross_x,11624706,4
+haxiepeia,11624706,3
+69094998,11624706,3
+rovsgonio,11624706,3
+25575565,11624706,3
+129575965,11624706,4
+91994560,11624706,3
+aomiz,11624706,5
+clemencechow,11624706,4
+3875131,11624706,2
+huimin13,11624706,4
+wangqiwen,11624706,-1
+fifa10,11624706,3
+76274839,11624706,3
+48609572,11624706,4
+111572690,11624706,2
+58310945,11624706,3
+67888545,11624706,5
+kyleul,11624706,5
+amaokk,11624706,4
+blinglu,11624706,4
+41629334,11624706,2
+Qiao929,11624706,3
+ccinder,11624706,-1
+Amulp,11624706,4
+onelifeonelove,11624706,3
+js10410,11624706,2
+65168884,11624706,3
+72703568,11624706,3
+dongxuanlan,11624706,4
+2993049,11624706,5
+31082152,11624706,5
+50641998,11624706,3
+Shimpear,11624706,3
+Skin.C,11624706,5
+Xia0_K,11624706,4
+wan1991m,11624706,3
+92999358,11624706,4
+69196405,11624706,4
+jiakaishow,11624706,4
+113050393,11624706,4
+1815039,11624706,3
+SmellyDong,11624706,4
+134427528,11624706,5
+134427528,11624706,5
+ink1020,11624706,3
+83495033,11624706,3
+lvwei_22,11624706,4
+xiaobai_zw,11624706,2
+79254008,11624706,4
+70209643,11624706,2
+77676134,11624706,4
+59742770,11624706,4
+55619638,11624706,4
+49813166,11624706,4
+65108655,11624706,3
+62489520,11624706,3
+87700432,11624706,3
+52558781,11624706,-1
+AaronJemm,11624706,4
+54928991,11624706,2
+124707703,11624706,4
+51002263,11624706,2
+dearmushroom,11624706,5
+132368658,11624706,5
+131795789,11624706,4
+133551897,11624706,5
+39384615,11624706,3
+mjxlyc,11624706,4
+54706509,11624706,5
+3519575,11624706,3
+58262326,11624706,4
+51048386,11624706,5
+aptxkim,11624706,3
+xiaxj,11624706,2
+4598379,11624706,5
+gilyun,11624706,4
+62736630,11624706,3
+47194139,11624706,4
+123690548,11624706,5
+58066035,11624706,4
+54578280,11624706,5
+fengxiaohelaoli,11624706,5
+chengchen0121,11624706,1
+nvxiahxx,11624706,3
+130562665,11624706,3
+gbluki,11624706,4
+50972547,11624706,4
+A.Plus,11624706,3
+59453880,11624706,4
+4521703,11624706,4
+4629060,11624706,3
+H897120417,11624706,5
+cca2222223,11624706,3
+2345634,11624706,4
+morvin,11624706,3
+steve647,11624706,2
+zzsycfx57,11624706,3
+4491309,11624706,5
+133978729,11624706,3
+4255750,11624706,3
+73149775,11624706,3
+84696017,11624706,2
+kazuki_,11624706,3
+50117171,11624706,2
+45430088,11624706,5
+45383601,11624706,5
+lymh,11624706,4
+2326564,11624706,3
+59249237,11624706,2
+roentgen,11624706,3
+csj0824,11624706,3
+Moqi,11624706,3
+52524732,11624706,4
+52160511,11624706,3
+92423237,11624706,3
+119749151,11624706,4
+53173594,11624706,3
+4542047,11624706,4
+76169652,11624706,3
+51965596,11624706,4
+3090957,11624706,4
+80012045,11624706,4
+3933863,11624706,4
+1182787,11624706,1
+39611534,11624706,5
+52951780,11624706,3
+32995807,11624706,3
+51229713,11624706,4
+62455186,11624706,3
+78667552,11624706,5
+blurspeed,11624706,4
+69129498,11624706,4
+49213332,11624706,3
+49560060,11624706,3
+31102423,11624706,2
+134461369,11624706,3
+53467813,11624706,4
+yoghurtfree,11624706,4
+74418627,11624706,3
+57901422,11624706,2
+3142312,11624706,4
+64876627,11624706,3
+80954767,11624706,4
+94799784,11624706,4
+65566265,11624706,3
+102014161,11624706,4
+63050000,11624706,3
+xfjzoe,11624706,3
+48545858,11624706,3
+61096170,11624706,4
+75136934,11624706,4
+ricik,11624706,4
+playtoy,11624706,3
+132539627,11624706,5
+callmev,11624706,4
+49233326,11624706,4
+yukinomi,11624706,4
+80283206,11624706,3
+darkdio,11624706,3
+MachineGun,11624706,5
+77631214,11624706,3
+may_you_never,11624706,5
+102196103,11624706,4
+95191376,11624706,4
+1369113,11624706,4
+Sovee091,11624706,4
+65086127,11624706,5
+huoxiaoliang,11624706,2
+Heroic-Deborah,11624706,5
+poria,11624706,3
+50164296,11624706,3
+thezzyh,11624706,3
+127377114,11624706,4
+49666316,11624706,3
+emmalove825,11624706,5
+88225935,11624706,3
+wayephang,11624706,3
+61937046,11624706,4
+36681127,11624706,3
+52369165,11624706,5
+dibvy,11624706,3
+132458103,11624706,5
+56557982,11624706,5
+53021898,11624706,3
+37390884,11624706,1
+51254854,11624706,3
+49735626,11624706,5
+80209748,11624706,3
+elegantcrazer,11624706,4
+84551349,11624706,2
+straw_here,11624706,2
+xiaopang2671,11624706,4
+128095249,11624706,5
+42172837,11624706,3
+72603121,11624706,4
+75096112,11624706,5
+poppysuen,11624706,4
+104230982,11624706,4
+fangyuan1mi,11624706,3
+62778442,11624706,3
+64491017,11624706,3
+65611753,11624706,4
+littleteatea,11624706,3
+58518153,11624706,3
+52087392,11624706,3
+34140064,11624706,3
+twentypercent,11624706,4
+huan19494114,11624706,2
+48497184,11624706,5
+50028709,11624706,2
+76236179,11624706,1
+115065521,11624706,5
+90105219,11624706,4
+23357719,11624706,3
+74990413,11624706,3
+51229956,11624706,4
+114991648,11624706,5
+52384106,11624706,3
+81765406,11624706,2
+54940586,11624706,3
+sudalufei,11624706,3
+102651290,11624706,3
+65133684,11624706,4
+51181829,11624706,5
+122154980,11624706,4
+DLZ0724,11624706,4
+59353616,11624706,2
+little-aileen,11624706,3
+daydream466,11624706,4
+67244429,11624706,3
+77130491,11624706,4
+59444662,11624706,2
+Xiomara,11624706,5
+liuruomei,11624706,3
+14140341,11624706,2
+zyqwendy,11624706,4
+MovieL,11624706,2
+2307180,11624706,5
+81518415,11624706,5
+51841351,11624706,3
+88938201,11624706,4
+70336022,11624706,4
+47853230,11624706,4
+47853230,11624706,4
+elfz,11624706,3
+69133093,11624706,4
+55937876,11624706,4
+madferit,11624706,2
+51628938,11624706,5
+38803170,11624706,4
+47458734,11624706,4
+LHone,11624706,3
+48792138,11624706,5
+53171610,11624706,3
+82521332,11624706,3
+46493467,11624706,2
+130087300,11624706,-1
+mrzeng1993,11624706,3
+59906784,11624706,3
+Minimalis,11624706,4
+64757557,11624706,3
+51109873,11624706,3
+45274666,11624706,5
+zhangqiyuan,11624706,3
+manhattant,11624706,3
+beyond1993,11624706,3
+76206117,11624706,3
+redoo,11624706,3
+119583067,11624706,5
+mr12,11624706,4
+sofahuang,11624706,4
+james089,11624706,3
+48514176,11624706,4
+53567005,11624706,3
+62271634,11624706,5
+38625392,11624706,4
+76446728,11624706,3
+bobolu,11624706,4
+Lourosa,11624706,4
+38770627,11624706,2
+56493831,11624706,3
+hedgehog,11624706,4
+babybluebb,11624706,3
+ymm,11624706,4
+future-lee,11624706,4
+4018918,11624706,4
+99004931,11624706,4
+66632216,11624706,4
+luocaoyaoyao,11624706,3
+46722209,11624706,3
+ChenJY971002,11624706,4
+51199476,11624706,3
+chicchit,11624706,4
+zhaoyao0919,11624706,3
+4151913,11624706,5
+134048364,11624706,3
+kedoumili,11624706,3
+59479482,11624706,4
+130097686,11624706,3
+XiaoShai,11624706,4
+1861971,11624706,3
+68365582,11624706,3
+45301941,11624706,2
+vipyuchao,11624706,2
+wukakah,11624706,4
+1522607,11624706,3
+100293359,11624706,4
+bonnie920311,11624706,4
+77162594,11624706,5
+clarattttt,11624706,4
+56390988,11624706,4
+63230793,11624706,3
+60874704,11624706,4
+RayruiSun,11624706,5
+jinlinyuyu,11624706,4
+47169625,11624706,5
+richer725,11624706,2
+49713409,11624706,3
+jessezoo,11624706,5
+53565685,11624706,3
+dreamchu,11624706,4
+molecule,11624706,3
+soyoung1986,11624706,3
+65885307,11624706,4
+xuyajing,11624706,5
+64877341,11624706,5
+46520547,11624706,-1
+ninababy25,11624706,5
+46499372,11624706,2
+83601248,11624706,3
+3878223,11624706,5
+45306000,11624706,4
+129224814,11624706,4
+101653337,11624706,3
+4165287,11624706,5
+133123885,11624706,5
+133734548,11624706,4
+landaishuyihao,11624706,5
+darkerthanwhite,11624706,5
+68778355,11624706,5
+4152095,11624706,5
+26915652,11624706,5
+as_shmily,11624706,3
+48082988,11624706,3
+59237362,11624706,4
+angelkalen,11624706,4
+telneter,11624706,4
+1484739,11624706,3
+50236278,11624706,3
+zoujian-999,11624706,3
+50497680,11624706,4
+47116857,11624706,3
+Kumamonnn,11624706,5
+49754687,11624706,4
+81391880,11624706,3
+nianlu,11624706,3
+108227368,11624706,5
+89587704,11624706,4
+maydaythering,11624706,2
+56104621,11624706,2
+merryliang,11624706,3
+134299691,11624706,2
+shanguicheng,11624706,5
+99977887,11624706,4
+markiexi,11624706,4
+FrankWasabi,11624706,2
+75867541,11624706,3
+49651317,11624706,3
+Zsaraj,11624706,2
+3930387,11624706,4
+85830142,11624706,4
+71172981,11624706,5
+xiaoyao8705,11624706,3
+34678139,11624706,3
+63062317,11624706,2
+74797419,11624706,-1
+2616909,11624706,3
+pengyn,11624706,4
+48837422,11624706,5
+127114583,11624706,3
+smilesleep,11624706,4
+FUCKINMIND,11624706,4
+50027948,11624706,4
+evey42,11624706,2
+54801845,11624706,4
+2340389,11624706,3
+marsdream,11624706,4
+69458682,11624706,3
+62259012,11624706,4
+xiaoxiao0504,11624706,5
+kiche,11624706,3
+junepotty,11624706,5
+133921096,11624706,-1
+huster-lion,11624706,5
+silverhawk,11624706,5
+57844859,11624706,3
+kissclover,11624706,2
+4559768,11624706,3
+waltz1991,11624706,-1
+66895800,11624706,3
+43590001,11624706,4
+liamcai,11624706,4
+59446610,11624706,4
+39378921,11624706,3
+54590924,11624706,4
+58467578,11624706,3
+46811981,11624706,3
+94976163,11624706,2
+47557018,11624706,5
+45955298,11624706,5
+csee1121,11624706,4
+60179177,11624706,4
+losite,11624706,3
+4841197,11624706,2
+3620788,11624706,4
+58086005,11624706,4
+43459920,11624706,4
+59005110,11624706,5
+41726005,11624706,5
+100639145,11624706,4
+zyhang2005,11624706,3
+113251096,11624706,4
+70222675,11624706,3
+kolzybe,11624706,4
+3382122,11624706,4
+CTT696,11624706,5
+127278343,11624706,5
+79420441,11624706,4
+130993618,11624706,3
+agyness,11624706,2
+nana_007,11624706,3
+39628944,11624706,-1
+62853956,11624706,5
+67353177,11624706,3
+102747303,11624706,3
+58596058,11624706,4
+63877649,11624706,4
+69455218,11624706,3
+48950860,11624706,4
+58963539,11624706,4
+57079811,11624706,4
+ayumiH,11624706,3
+leerayv587,11624706,2
+109446676,11624706,3
+3249318,11624706,4
+32433633,11624706,4
+echoT7,11624706,3
+87888275,11624706,4
+minhom,11624706,4
+60419092,11624706,3
+Nofeelings,11624706,3
+133554089,11624706,4
+3858718,11624706,4
+heydenny,11624706,4
+blackjason,11624706,3
+42006560,11624706,3
+78159814,11624706,5
+duanziyu,11624706,3
+58625918,11624706,2
+20054715,11624706,3
+sijizhp,11624706,2
+46973130,11624706,5
+Hayley_Tsu,11624706,3
+3374391,11624706,4
+4675447,11624706,5
+46045486,11624706,4
+dafuyuan,11624706,4
+lupinthe3rd,11624706,4
+132034967,11624706,4
+57698084,11624706,3
+pengpeng_0926,11624706,3
+wentaoxie,11624706,3
+30219085,11624706,4
+121386623,11624706,5
+hanqiu1995,11624706,2
+51176310,11624706,4
+xiaoan7EF,11624706,3
+81294259,11624706,5
+74536227,11624706,5
+youngmars,11624706,4
+vacancy_v,11624706,4
+dante8977,11624706,4
+broussaille,11624706,3
+cxl951404897,11624706,2
+LOVEyuduoduo,11624706,4
+121655638,11624706,3
+45455917,11624706,2
+55340250,11624706,4
+vianann,11624706,4
+47002629,11624706,3
+spirit.seraph,11624706,3
+70672684,11624706,3
+2737013,11624706,4
+82770763,11624706,5
+yeahqiang,11624706,4
+75168640,11624706,4
+52243326,11624706,2
+35294199,11624706,4
+49686732,11624706,4
+53654985,11624706,2
+3088126,11624706,4
+45953798,11624706,3
+59904891,11624706,4
+121353064,11624706,4
+50752972,11624706,3
+32920328,11624706,4
+65366516,11624706,4
+65586251,11624706,3
+91042136,11624706,5
+69807491,11624706,3
+mengxiangzhidi,11624706,5
+57795255,11624706,4
+28927892,11624706,5
+74973391,11624706,5
+51283351,11624706,3
+2965888,11624706,4
+45080512,11624706,2
+64227408,11624706,4
+35522961,11624706,4
+45984136,11624706,3
+3518493,11624706,5
+53810483,11624706,5
+96738155,11624706,2
+1727088,11624706,3
+4511323,11624706,2
+72532382,11624706,3
+99833662,11624706,4
+119489543,11624706,3
+midautumnsong,11624706,2
+122316474,11624706,3
+ZZZZF,11624706,3
+123630666,11624706,3
+76146142,11624706,4
+vespalee,11624706,3
+50682744,11624706,3
+1857975,11624706,3
+27318486,11624706,3
+42196106,11624706,4
+82629572,11624706,4
+iam7,11624706,4
+122604864,11624706,3
+ivy1969,11624706,4
+10411697,11624706,3
+robotstar,11624706,4
+127089161,11624706,3
+133351029,11624706,3
+43490938,11624706,5
+3484320,11624706,2
+41353092,11624706,4
+foreveryoung09,11624706,4
+annow,11624706,4
+moyuxxoomaomao,11624706,3
+44203991,11624706,5
+47928438,11624706,1
+LieberLukas,11624706,3
+heibaituzi,11624706,3
+47367046,11624706,4
+75436336,11624706,3
+42320046,11624706,4
+50222908,11624706,5
+62375548,11624706,4
+45912977,11624706,4
+carcajou,11624706,3
+62290897,11624706,5
+Shin7KYO,11624706,3
+n.ight,11624706,3
+55296496,11624706,3
+132186892,11624706,4
+lassiedusky,11624706,2
+babylon14,11624706,4
+88219822,11624706,5
+55412711,11624706,4
+arielwjx,11624706,4
+80727161,11624706,4
+54113299,11624706,4
+47043061,11624706,4
+huangguohuai,11624706,4
+75270955,11624706,4
+53719859,11624706,4
+46660321,11624706,4
+76170749,11624706,3
+55446081,11624706,3
+44852938,11624706,3
+songjia0227,11624706,4
+57614845,11624706,3
+65805429,11624706,-1
+icethawless,11624706,4
+53782984,11624706,3
+126380434,11624706,4
+aivnce,11624706,3
+94040558,11624706,3
+17433771,11624706,3
+snokin,11624706,2
+badaalle,11624706,3
+Geminiying,11624706,4
+61742449,11624706,3
+130813893,11624706,4
+92752299,11624706,3
+134224981,11624706,4
+52489598,11624706,4
+75555205,11624706,-1
+27381491,11624706,4
+ilovermb,11624706,4
+73259473,11624706,5
+59606439,11624706,3
+84719472,11624706,3
+Solo-n,11624706,4
+just-emma,11624706,4
+67162659,11624706,2
+penshan,11624706,3
+1796542,11624706,5
+2206999,11624706,4
+cris7ss,11624706,1
+meskelil,11624706,3
+106548711,11624706,5
+haiserlu,11624706,5
+jul.9th,11624706,5
+WZRY,11624706,4
+65233252,11624706,2
+27940854,11624706,5
+68776992,11624706,4
+simig,11624706,3
+luezhuan,11624706,3
+114689592,11624706,4
+1333997,11624706,3
+runawayZXY,11624706,3
+50477939,11624706,4
+aprildaisy,11624706,3
+pijin,11624706,2
+kistrike,11624706,5
+44392983,11624706,3
+81836452,11624706,5
+thoughts,11624706,4
+94034456,11624706,3
+pandorapple,11624706,1
+32251971,11624706,4
+78906900,11624706,4
+15012448,11624706,3
+70464788,11624706,4
+52928694,11624706,3
+blue-Petit,11624706,3
+joyinzone,11624706,4
+82915767,11624706,3
+77266400,11624706,3
+54391531,11624706,3
+sulovesu,11624706,4
+dengxuanhai,11624706,3
+51641962,11624706,5
+62195893,11624706,3
+CRA1G,11624706,3
+35350032,11624706,3
+51338179,11624706,4
+13294183,11624706,5
+lengxf_jx,11624706,3
+wendy426,11624706,3
+64701655,11624706,4
+68227139,11624706,3
+37150686,11624706,4
+119405586,11624706,4
+58399849,11624706,3
+raoyueroyale,11624706,5
+73525582,11624706,4
+pzaiqueen,11624706,3
+78686717,11624706,5
+56398520,11624706,1
+fenghudue,11624706,3
+41039519,11624706,2
+cindyhao,11624706,4
+52335106,11624706,5
+Phyllis5,11624706,2
+fishlittle,11624706,4
+3934959,11624706,4
+51242802,11624706,3
+60162366,11624706,5
+44613513,11624706,4
+McBee,11624706,4
+68014143,11624706,3
+45408474,11624706,3
+41970599,11624706,4
+togilj,11624706,3
+48317610,11624706,3
+48962197,11624706,4
+4442400,11624706,5
+4442400,11624706,5
+vivien_princess,11624706,5
+69156553,11624706,4
+71879067,11624706,5
+irisyours,11624706,3
+73910323,11624706,4
+76630020,11624706,4
+120828757,11624706,4
+29904054,11624706,3
+Bebop13,11624706,2
+movedstar,11624706,2
+1526094,11624706,5
+tiaoyu,11624706,3
+dai_tt,11624706,2
+62293051,11624706,3
+ionly1,11624706,4
+131340441,11624706,3
+6681586,11624706,3
+guccistories,11624706,4
+77193110,11624706,5
+tzkeer,11624706,3
+34590270,11624706,5
+1225013,11624706,-1
+45449630,11624706,4
+1357146,11624706,3
+goofy-G,11624706,5
+73807448,11624706,5
+chuleiwu,11624706,4
+babyfishjj,11624706,3
+mayielaine,11624706,3
+dor0229,11624706,-1
+46986910,11624706,4
+topsky_0,11624706,3
+yuantown,11624706,3
+hahagoushinan,11624706,4
+fan_1220,11624706,2
+54192615,11624706,4
+Oraen_,11624706,-1
+50353681,11624706,3
+QQYoung,11624706,-1
+56872447,11624706,4
+79763326,11624706,3
+birdicat,11624706,3
+65868986,11624706,3
+49467804,11624706,5
+hjfuykx,11624706,5
+60421761,11624706,4
+41843480,11624706,4
+52129512,11624706,4
+nini_wang,11624706,3
+45623540,11624706,4
+anison,11624706,3
+bruin1018,11624706,-1
+unaunaquantro,11624706,3
+42150092,11624706,3
+28953793,11624706,4
+46020433,11624706,2
+cloverllx,11624706,3
+yuyang1990720,11624706,4
+dolcelovingdoll,11624706,4
+72629481,11624706,4
+36470321,11624706,3
+4200380,11624706,4
+Cryostatgirl,11624706,5
+LynS,11624706,4
+75624548,11624706,4
+31301735,11624706,2
+cloudlandlord,11624706,3
+51909421,11624706,2
+EtionT,11624706,3
+88365911,11624706,3
+49794211,11624706,3
+agentying,11624706,4
+17871243,11624706,3
+weitianze,11624706,3
+chechengxuan,11624706,4
+searchforriver,11624706,5
+51855182,11624706,5
+56273353,11624706,3
+13871057,11624706,4
+1065097,11624706,4
+43871000,11624706,3
+vanie,11624706,4
+57501453,11624706,4
+61304869,11624706,3
+ahao25,11624706,3
+48754297,11624706,3
+3145512,11624706,3
+candyhorse,11624706,5
+80599867,11624706,5
+41785476,11624706,2
+daonian_1990,11624706,4
+48903762,11624706,-1
+57372938,11624706,4
+45094926,11624706,4
+44049094,11624706,3
+eaudevie,11624706,4
+65095857,11624706,4
+wanglutong,11624706,4
+71879999,11624706,3
+132425949,11624706,2
+62450111,11624706,5
+53927357,11624706,4
+65803818,11624706,3
+kwokchloe,11624706,4
+37220457,11624706,4
+48786722,11624706,3
+64456556,11624706,4
+90454898,11624706,5
+2287976,11624706,3
+59307428,11624706,4
+120109452,11624706,-1
+52642295,11624706,5
+52987923,11624706,4
+49708483,11624706,4
+79420813,11624706,3
+2548584,11624706,2
+114331044,11624706,3
+81939398,11624706,4
+cs314765478,11624706,3
+63978060,11624706,4
+52499368,11624706,3
+kassyxuemeng,11624706,5
+4889372,11624706,3
+69838429,11624706,5
+127281589,11624706,4
+63387672,11624706,1
+couple1314,11624706,3
+95871505,11624706,4
+96764185,11624706,3
+60015125,11624706,3
+63457669,11624706,3
+53484226,11624706,4
+Jandeaux,11624706,4
+48853437,11624706,4
+an_lee1107,11624706,4
+Cllindaoud,11624706,2
+42234148,11624706,3
+chrg6,11624706,3
+70160255,11624706,4
+69152346,11624706,3
+69875903,11624706,3
+89103199,11624706,3
+10834287,11624706,3
+50520105,11624706,4
+66904097,11624706,4
+55357697,11624706,4
+81217259,11624706,4
+70915171,11624706,5
+74566437,11624706,3
+lion87,11624706,5
+youtuo_,11624706,5
+52604916,11624706,3
+79066810,11624706,4
+61326336,11624706,3
+45599884,11624706,3
+DianyLee,11624706,2
+35892009,11624706,4
+133904204,11624706,4
+lasto2,11624706,3
+2030773,11624706,3
+oliviablog,11624706,4
+134062828,11624706,4
+48321205,11624706,3
+tongzai,11624706,5
+67843385,11624706,3
+europ,11624706,4
+63829269,11624706,5
+pm,11624706,3
+jiaterry,11624706,4
+47994797,11624706,4
+1653421,11624706,5
+119079602,11624706,3
+py962492,11624706,4
+132790620,11624706,3
+2413967,11624706,4
+64127845,11624706,5
+45909488,11624706,4
+mubin,11624706,4
+tonhyuk3507,11624706,5
+57367354,11624706,4
+86010283,11624706,3
+120900030,11624706,4
+wylwddjz,11624706,5
+zhuxiaoxuan,11624706,4
+84969413,11624706,4
+64227759,11624706,3
+134085839,11624706,4
+127688878,11624706,4
+62767345,11624706,3
+76548979,11624706,5
+jinglingwangzi,11624706,-1
+4643817,11624706,5
+15965977,11624706,5
+2598729,11624706,3
+2030100,11624706,3
+aioxvx,11624706,3
+44441839,11624706,3
+54664894,11624706,3
+aivae,11624706,3
+78412332,11624706,4
+133768318,11624706,3
+Cheshier,11624706,3
+4465352,11624706,5
+94546976,11624706,3
+60392839,11624706,2
+51227412,11624706,3
+wtlfj,11624706,3
+yangcht,11624706,3
+45055967,11624706,4
+checy,11624706,3
+58542371,11624706,4
+37736612,11624706,2
+71416031,11624706,4
+my1900,11624706,5
+hjing1993,11624706,2
+62688110,11624706,3
+50875593,11624706,4
+3302358,11624706,3
+jianfeirun,11624706,4
+42832142,11624706,4
+alivenotdead,11624706,5
+leavemerot,11624706,3
+25372576,11624706,4
+34011648,11624706,5
+houxusheng,11624706,4
+Yipham,11624706,4
+84899568,11624706,4
+alla,11624706,3
+manumission,11624706,5
+AzureSoc,11624706,4
+lovepeople,11624706,4
+confuzzle,11624706,3
+92978277,11624706,3
+superran,11624706,5
+34976631,11624706,5
+58310222,11624706,4
+66036408,11624706,3
+sugarjojo,11624706,3
+captainanlie,11624706,4
+captainanlie,11624706,4
+Vivian1121,11624706,3
+49935216,11624706,3
+43330235,11624706,3
+pengpeng,11624706,3
+LJOURNEY,11624706,4
+6752200,11624706,4
+let_it_be_me,11624706,4
+2415644,11624706,4
+133866670,11624706,4
+4520667,11624706,3
+YAMAHA_GO,11624706,4
+mysterystory,11624706,3
+60228734,11624706,4
+yangjiemomo,11624706,4
+singingxin,11624706,4
+zcx1990,11624706,5
+Alice-Mu,11624706,3
+60701395,11624706,3
+65723626,11624706,3
+41601748,11624706,4
+Stephanfan,11624706,4
+chococo,11624706,4
+45786010,11624706,2
+zakia12,11624706,2
+76621126,11624706,4
+47904693,11624706,3
+27385388,11624706,3
+missufinally,11624706,4
+72538808,11624706,5
+41766735,11624706,3
+3837692,11624706,3
+hljmsfy,11624706,3
+soberldly,11624706,3
+43713017,11624706,3
+132834328,11624706,3
+mic1990,11624706,3
+50229670,11624706,2
+45739977,11624706,4
+81149989,11624706,5
+38514261,11624706,2
+119883443,11624706,5
+23123546,11624706,2
+sirk,11624706,4
+minniedai,11624706,4
+1865714,11624706,4
+61110036,11624706,2
+54762793,11624706,3
+Nolonelyhere,11624706,4
+134055784,11624706,5
+70081984,11624706,3
+leslie_,11624706,4
+126818106,11624706,3
+57753980,11624706,4
+yujianwo49,11624706,5
+46369676,11624706,4
+CharlieXiaoxiao,11624706,2
+27881669,11624706,4
+TogetherWJ,11624706,1
+120378701,11624706,4
+Unibong,11624706,2
+2539442,11624706,4
+33663407,11624706,4
+55842990,11624706,3
+maskman0917,11624706,4
+3575164,11624706,4
+108212384,11624706,4
+javy,11624706,-1
+2386302,11624706,5
+130514270,11624706,4
+51038793,11624706,2
+52194196,11624706,3
+2412177,11624706,4
+freddie,11624706,3
+83115728,11624706,5
+61845850,11624706,3
+4596560,11624706,2
+65418503,11624706,3
+annieaiannie,11624706,2
+85421476,11624706,4
+69678068,11624706,3
+taotainiang,11624706,3
+4105021,11624706,3
+134044675,11624706,5
+10793041,11624706,3
+happyzkl,11624706,2
+64821728,11624706,3
+119296421,11624706,4
+bjmiss,11624706,5
+50081676,11624706,3
+aprileuro,11624706,4
+lecsi,11624706,4
+91484813,11624706,4
+48591645,11624706,4
+3722910,11624706,3
+64253762,11624706,4
+73033279,11624706,3
+91511148,11624706,3
+79330359,11624706,3
+84749284,11624706,3
+zipaiwang,11624706,2
+Vampire0704,11624706,4
+june.q,11624706,2
+1455145,11624706,3
+101896152,11624706,4
+sanhao_love,11624706,4
+hooklt,11624706,3
+51224776,11624706,4
+55866534,11624706,4
+15400541,11624706,4
+jimmyjimmyjimmy,11624706,4
+jiayouqiufeng,11624706,5
+leexiaomu,11624706,4
+133648079,11624706,4
+68989572,11624706,3
+61715230,11624706,5
+44748882,11624706,5
+61779592,11624706,4
+76668507,11624706,5
+69236111,11624706,4
+StanleyCheung,11624706,3
+stupidcat7652,11624706,2
+68893720,11624706,3
+33688715,11624706,4
+52023052,11624706,2
+46534834,11624706,4
+2771857,11624706,3
+Jerryxuch,11624706,3
+48200103,11624706,5
+Carmeliano,11624706,4
+46046838,11624706,3
+62491382,11624706,4
+yz501,11624706,2
+53085669,11624706,4
+27929984,11624706,4
+128739482,11624706,3
+2424966,11624706,5
+134022108,11624706,5
+79364792,11624706,3
+93975923,11624706,3
+dairytea,11624706,-1
+Erva,11624706,3
+71450042,11624706,4
+3977584,11624706,3
+88535863,11624706,4
+120043439,11624706,4
+bubblexxx,11624706,4
+84047449,11624706,5
+maydayyqy,11624706,4
+21395164,11624706,4
+luobo687,11624706,-1
+41931684,11624706,4
+130248738,11624706,4
+mornzhao,11624706,4
+6855368,11624706,3
+97342015,11624706,4
+hekahuiqu,11624706,3
+122943812,11624706,3
+129611474,11624706,4
+95824931,11624706,4
+95824931,11624706,4
+90847508,11624706,2
+16880014,11624706,5
+61169740,11624706,4
+4313535,11624706,3
+share329,11624706,5
+42186574,11624706,3
+73765169,11624706,5
+zhangleyuan,11624706,4
+68767704,11624706,3
+117348494,11624706,3
+51607336,11624706,4
+121112644,11624706,-1
+1239706,11624706,4
+4537211,11624706,3
+littlepussy_wf,11624706,4
+117934892,11624706,4
+54717954,11624706,4
+47916116,11624706,4
+1817000,11624706,2
+112133874,11624706,3
+73163829,11624706,3
+47798574,11624706,5
+tshane,11624706,3
+76740339,11624706,4
+93900680,11624706,3
+63451407,11624706,4
+54813786,11624706,4
+eyesfromacat,11624706,3
+65075320,11624706,4
+99702393,11624706,4
+132182651,11624706,3
+3041529,11624706,4
+1818595,11624706,3
+44492633,11624706,1
+120008046,11624706,3
+2265374,11624706,-1
+61448696,11624706,3
+67586472,11624706,3
+80429911,11624706,-1
+minazhang,11624706,5
+53362229,11624706,3
+qq1294689526,11624706,4
+75413985,11624706,5
+39530278,11624706,4
+98257348,11624706,3
+64734128,11624706,4
+65923241,11624706,5
+anpho,11624706,5
+63382462,11624706,-1
+119362745,11624706,4
+53327349,11624706,1
+52866523,11624706,3
+clever_trick,11624706,3
+74795936,11624706,4
+75043360,11624706,2
+72285462,11624706,5
+51754900,11624706,3
+tracyjian,11624706,3
+49617324,11624706,3
+Creep_,11624706,3
+4098434,11624706,3
+65183965,11624706,3
+92016654,11624706,5
+51693234,11624706,-1
+84238214,11624706,4
+14277787,11624706,4
+juliawawa,11624706,4
+45285515,11624706,3
+48874322,11624706,3
+3351778,11624706,3
+63154393,11624706,3
+72430905,11624706,5
+nothingicare,11624706,4
+49571123,11624706,5
+120268837,11624706,2
+64197994,11624706,4
+133825470,11624706,5
+darling425,11624706,5
+123543090,11624706,4
+67763944,11624706,4
+2711237,11624706,4
+41647476,11624706,3
+81007534,11624706,3
+46407577,11624706,3
+46899693,11624706,2
+62280098,11624706,3
+105188554,11624706,3
+49926539,11624706,5
+qingfengpushang,11624706,3
+cjshangbuqi,11624706,4
+zi,11624706,3
+48627175,11624706,4
+GMDY,11624706,4
+Michael54,11624706,4
+76722357,11624706,5
+uyuyhhyhhy,11624706,3
+imblind,11624706,5
+44173188,11624706,4
+treeplanting,11624706,5
+linshang,11624706,4
+60583997,11624706,3
+120338818,11624706,2
+2724143,11624706,2
+alal_clcl,11624706,2
+65029025,11624706,2
+82359622,11624706,3
+losiuhong,11624706,3
+29339350,11624706,4
+126351457,11624706,5
+4305373,11624706,3
+2877249,11624706,5
+meowjiong,11624706,5
+chendaying,11624706,4
+44387904,11624706,4
+xinziai,11624706,3
+Minky77,11624706,4
+51138894,11624706,3
+63044059,11624706,3
+51103959,11624706,3
+miuk,11624706,2
+Tylermrx,11624706,2
+precmomen,11624706,4
+francisshen,11624706,3
+42679394,11624706,4
+Edward-Lockwood,11624706,3
+56884321,11624706,3
+81407936,11624706,3
+63281322,11624706,5
+jukiloveu,11624706,3
+47239413,11624706,3
+marcamoy,11624706,4
+98187739,11624706,2
+65434599,11624706,3
+maomixiaosu,11624706,3
+69344472,11624706,5
+52524178,11624706,5
+2106137,11624706,4
+125570850,11624706,5
+66813798,11624706,2
+misskanie,11624706,4
+db_time,11624706,2
+2349644,11624706,3
+102006715,11624706,5
+58801998,11624706,4
+pineberry,11624706,4
+muini,11624706,3
+37424688,11624706,3
+zgoliver,11624706,4
+tjz230,11624706,4
+Jaytaoo,11624706,4
+48845052,11624706,4
+46617771,11624706,4
+54711146,11624706,4
+grinch,11624706,3
+daydayfree,11624706,5
+67372006,11624706,4
+35962191,11624706,4
+121142020,11624706,4
+4811365,11624706,4
+54643617,11624706,4
+sakurairo,11624706,3
+130533856,11624706,4
+snowchong1984,11624706,4
+fengshurui,11624706,-1
+xiaoyatoufengzi,11624706,3
+46173555,11624706,4
+113954593,11624706,5
+59032148,11624706,3
+129798303,11624706,3
+msvalentine,11624706,3
+60963394,11624706,3
+65224437,11624706,3
+92830730,11624706,4
+61921759,11624706,4
+43802399,11624706,3
+balelovesqian,11624706,3
+115083844,11624706,4
+59129484,11624706,5
+48899980,11624706,4
+57842655,11624706,3
+63354645,11624706,4
+60997769,11624706,3
+nicole_yang,11624706,3
+W-0,11624706,3
+54217393,11624706,5
+SKubrick,11624706,3
+61069242,11624706,5
+63866164,11624706,3
+67770399,11624706,5
+BoyZ,11624706,5
+52076607,11624706,3
+65551720,11624706,4
+66168101,11624706,4
+69236289,11624706,3
+axlcore,11624706,3
+a960629,11624706,2
+chenkefeng,11624706,2
+36610260,11624706,2
+64898125,11624706,4
+19410556,11624706,5
+curtis_zhu,11624706,4
+3275817,11624706,4
+82092717,11624706,5
+77208813,11624706,4
+69918016,11624706,5
+84131231,11624706,5
+poppy0219,11624706,4
+caixiaonong,11624706,5
+aNeEr,11624706,4
+40699267,11624706,4
+86091558,11624706,4
+aotui,11624706,3
+43814222,11624706,4
+44437279,11624706,3
+68592556,11624706,3
+73061172,11624706,3
+78966790,11624706,3
+65488479,11624706,4
+127329113,11624706,4
+59480546,11624706,3
+haungli_hl,11624706,3
+3783132,11624706,2
+feil1016,11624706,3
+62817881,11624706,2
+122675748,11624706,3
+40027917,11624706,3
+ruoxudeng,11624706,3
+7255952,11624706,4
+19598735,11624706,5
+97977278,11624706,4
+46774756,11624706,4
+63612050,11624706,3
+56561314,11624706,5
+4675885,11624706,5
+58090829,11624706,3
+2725739,11624706,3
+Sitachiin,11624706,5
+summerfaye,11624706,4
+88632956,11624706,4
+88632956,11624706,4
+126825199,11624706,3
+your-eye,11624706,4
+cyz0313,11624706,3
+60435322,11624706,4
+YAO-yao,11624706,3
+42556657,11624706,4
+seafans,11624706,2
+52868226,11624706,3
+54956203,11624706,1
+feiyangxzy,11624706,4
+chihee,11624706,5
+47345728,11624706,4
+46669786,11624706,4
+1155174,11624706,2
+91872215,11624706,5
+59571249,11624706,4
+Kraatui,11624706,3
+58827869,11624706,5
+sehunine,11624706,4
+40861362,11624706,4
+fsivyneof4,11624706,4
+nuansheng,11624706,3
+4157643,11624706,3
+1767731,11624706,4
+yangqiaohe,11624706,3
+kingflower,11624706,4
+l---j,11624706,3
+3794173,11624706,5
+83217907,11624706,4
+oyxp,11624706,3
+fuzyu,11624706,5
+130595050,11624706,5
+fireflyxin,11624706,4
+46722646,11624706,4
+16040985,11624706,5
+102911668,11624706,5
+Leslie_ontheway,11624706,3
+76804621,11624706,4
+120505140,11624706,3
+4347889,11624706,3
+50527578,11624706,-1
+mcyuane,11624706,5
+55550016,11624706,4
+sunyugo,11624706,3
+115131162,11624706,4
+betbet,11624706,-1
+3687958,11624706,5
+126575098,11624706,3
+anikijo,11624706,3
+57886651,11624706,3
+jasonscat,11624706,3
+62436425,11624706,2
+120218775,11624706,5
+4464121,11624706,4
+Dysphoria,11624706,4
+kemoaye,11624706,3
+90581117,11624706,3
+joyzhai,11624706,3
+78971867,11624706,5
+74869653,11624706,5
+113216618,11624706,3
+49335664,11624706,3
+17543193,11624706,3
+51392005,11624706,5
+vanros,11624706,3
+56272874,11624706,4
+4116226,11624706,4
+21133666,11624706,3
+65935512,11624706,4
+michelle1995,11624706,5
+70624068,11624706,3
+DCBinseven,11624706,4
+61426958,11624706,2
+71052883,11624706,3
+schweinyu,11624706,3
+61496861,11624706,5
+92353114,11624706,3
+121757659,11624706,-1
+W3IQ7,11624706,3
+81301624,11624706,3
+133083146,11624706,3
+15286223,11624706,4
+72792251,11624706,2
+68631195,11624706,3
+smiletolife,11624706,5
+wolfdharky,11624706,3
+122004304,11624706,3
+60884862,11624706,5
+DereyantChan,11624706,5
+44420768,11624706,3
+40237768,11624706,3
+slavica,11624706,5
+languheshang,11624706,4
+62492010,11624706,5
+Frank_cx,11624706,4
+120092472,11624706,4
+81530706,11624706,4
+53559369,11624706,4
+lionyoo,11624706,2
+dongkuichen,11624706,4
+PunksNotDead,11624706,3
+59556078,11624706,4
+2783035,11624706,3
+himarkcn,11624706,3
+52268031,11624706,4
+ssjj,11624706,4
+53374291,11624706,3
+lynxmao,11624706,4
+53041046,11624706,3
+nanday,11624706,2
+82849854,11624706,5
+nancyindream,11624706,1
+2705335,11624706,4
+67775093,11624706,5
+spidaman,11624706,4
+xyc1987,11624706,3
+RuthTsai,11624706,5
+46004647,11624706,4
+49871021,11624706,4
+49871021,11624706,4
+34280788,11624706,3
+76258962,11624706,5
+samantha_tl,11624706,3
+oliviapalermo,11624706,4
+67088127,11624706,4
+junqli86,11624706,2
+47172452,11624706,3
+lunaprom,11624706,4
+jerseydreamer,11624706,3
+Yichun_D,11624706,3
+lieds,11624706,3
+bettyzhu,11624706,3
+123625456,11624706,3
+64124886,11624706,4
+57288121,11624706,5
+lightreus,11624706,4
+lmhluvmovie,11624706,4
+42757817,11624706,3
+4292817,11624706,4
+shushudabaoz,11624706,3
+wang-jian,11624706,2
+simu19,11624706,3
+120427530,11624706,5
+kicker10,11624706,3
+51424042,11624706,3
+wwwhilary,11624706,3
+131533540,11624706,4
+48506304,11624706,5
+62469238,11624706,2
+waylybaye,11624706,5
+25553362,11624706,2
+65408583,11624706,3
+demondeng,11624706,3
+127687337,11624706,3
+49326623,11624706,3
+superman-cici,11624706,5
+45334763,11624706,4
+76452322,11624706,4
+35518301,11624706,3
+28467614,11624706,4
+129820587,11624706,4
+juliannie,11624706,3
+2112561,11624706,4
+70752428,11624706,3
+unicornlarry,11624706,4
+60781321,11624706,3
+47563229,11624706,3
+waking,11624706,3
+calculus123,11624706,3
+18181137,11624706,4
+vividtime,11624706,4
+3208406,11624706,3
+64239106,11624706,4
+28767206,11624706,4
+1886453,11624706,4
+heyseer,11624706,-1
+moonflows,11624706,4
+114755609,11624706,1
+91643745,11624706,3
+91643745,11624706,3
+la_luna,11624706,3
+17471764,11624706,-1
+huaanhuang,11624706,5
+xieyuhan1988,11624706,4
+yaozhilan,11624706,4
+yededi8821,11624706,3
+30002561,11624706,3
+fairyhui521,11624706,3
+44027480,11624706,2
+49382503,11624706,5
+93504074,11624706,3
+wqsmile,11624706,3
+poolish,11624706,-1
+yhn0535,11624706,3
+32033776,11624706,3
+2562395,11624706,3
+darkness211,11624706,4
+wanganqi,11624706,3
+61011795,11624706,2
+61011795,11624706,2
+120696771,11624706,4
+yoyodbh,11624706,2
+Garing,11624706,4
+onlyqinping,11624706,4
+caosancat,11624706,3
+133439262,11624706,4
+37751161,11624706,4
+76943413,11624706,1
+lihan19970726,11624706,3
+122394659,11624706,5
+83679704,11624706,4
+97302377,11624706,4
+7609988,11624706,2
+chennuo823,11624706,5
+103155046,11624706,3
+74269453,11624706,3
+chagrinbleu,11624706,3
+spitz0729,11624706,3
+43867607,11624706,3
+43867607,11624706,3
+carlebee,11624706,3
+atengbrilliance,11624706,3
+119680918,11624706,3
+ivykwok,11624706,3
+onecloud,11624706,3
+16026833,11624706,4
+jocelyn1031,11624706,5
+4342517,11624706,3
+61039882,11624706,4
+48559229,11624706,3
+64707906,11624706,4
+56400825,11624706,4
+wilmersdorf,11624706,4
+48590382,11624706,2
+26650310,11624706,4
+2428233,11624706,2
+2890229,11624706,4
+43430222,11624706,4
+ekodeng,11624706,4
+tojohnonly,11624706,5
+catfacegirl,11624706,3
+60413211,11624706,3
+maddaemon,11624706,4
+zhujjcn,11624706,4
+tonyteng,11624706,5
+4869932,11624706,4
+mourirank,11624706,5
+78497624,11624706,4
+purplemoon,11624706,3
+109530447,11624706,2
+35238754,11624706,2
+73203651,11624706,4
+zhuangdikun,11624706,3
+bozzi,11624706,3
+firepr,11624706,3
+120978925,11624706,3
+haihouzhi,11624706,3
+3783693,11624706,5
+1493686,11624706,4
+76755993,11624706,4
+beijinglife,11624706,5
+wangliuchi,11624706,5
+ff7758521,11624706,4
+55311188,11624706,4
+momohei,11624706,3
+119852340,11624706,3
+hh55555,11624706,3
+51433287,11624706,3
+97474180,11624706,2
+87693385,11624706,4
+93147839,11624706,3
+119203760,11624706,3
+27517816,11624706,3
+56978693,11624706,4
+23520450,11624706,4
+nearlloveyou,11624706,3
+66589358,11624706,4
+39074781,11624706,4
+anjinian,11624706,3
+tenspace,11624706,3
+60046891,11624706,3
+62886660,11624706,3
+25970354,11624706,3
+13262103,11624706,3
+32791891,11624706,3
+34711309,11624706,-1
+eva3190,11624706,5
+pennypq,11624706,-1
+41559583,11624706,5
+67007418,11624706,4
+monetsun,11624706,4
+75645970,11624706,4
+53362350,11624706,3
+76602042,11624706,5
+49324662,11624706,4
+69857353,11624706,3
+42859187,11624706,3
+4590078,11624706,3
+ET.papillon,11624706,3
+50929196,11624706,3
+114613060,11624706,4
+44345461,11624706,3
+4557738,11624706,5
+izaijin,11624706,3
+2555888,11624706,4
+74648826,11624706,3
+122450255,11624706,3
+46572945,11624706,5
+53612354,11624706,4
+qilerongrong,11624706,2
+4303543,11624706,3
+113037019,11624706,4
+zwj514235,11624706,-1
+2564859,11624706,3
+50519870,11624706,3
+75184606,11624706,4
+64880714,11624706,3
+84873418,11624706,5
+46252496,11624706,2
+127338813,11624706,3
+63689594,11624706,4
+70160400,11624706,3
+neoway,11624706,4
+80163980,11624706,4
+72394611,11624706,4
+earthchild,11624706,4
+4564971,11624706,4
+63409040,11624706,4
+41946814,11624706,3
+127370731,11624706,3
+59253003,11624706,3
+onlycf,11624706,4
+3568378,11624706,-1
+56387836,11624706,3
+U-Know-Who,11624706,3
+76589400,11624706,4
+3403075,11624706,3
+60046981,11624706,3
+4592782,11624706,5
+4592782,11624706,5
+87910088,11624706,3
+viking7117,11624706,3
+82832477,11624706,3
+PatrickMYK,11624706,3
+7768202,11624706,5
+maimufei,11624706,4
+102454533,11624706,4
+ninosun,11624706,2
+1502568,11624706,3
+55367082,11624706,4
+73770188,11624706,3
+56054406,11624706,4
+shinemypolaris,11624706,5
+68679029,11624706,4
+1205451,11624706,4
+70055114,11624706,2
+82588845,11624706,4
+50247416,11624706,3
+66636570,11624706,5
+littleshy,11624706,3
+holdingtt,11624706,4
+45627981,11624706,3
+112466936,11624706,2
+91365822,11624706,4
+longnel,11624706,3
+92004174,11624706,3
+helenghosny,11624706,5
+rosery11,11624706,4
+iwillbestrong4u,11624706,4
+xuylu,11624706,3
+15183757,11624706,3
+92541865,11624706,3
+61415856,11624706,5
+102996784,11624706,4
+Charlie.Lee,11624706,3
+1655485,11624706,4
+Vulpeculae,11624706,4
+4600351,11624706,5
+48568857,11624706,4
+30275495,11624706,4
+65393233,11624706,3
+ttcucu,11624706,3
+106596511,11624706,3
+48479692,11624706,3
+81126169,11624706,4
+hayden001,11624706,3
+102272768,11624706,5
+64780259,11624706,3
+49411986,11624706,4
+124465825,11624706,5
+lovingyoyo8ever,11624706,5
+CanaanYoung,11624706,2
+57337928,11624706,1
+124901304,11624706,4
+mm_ww,11624706,3
+yutingamy,11624706,3
+55018128,11624706,4
+4589325,11624706,3
+67630346,11624706,4
+58774315,11624706,4
+44929193,11624706,4
+106597439,11624706,4
+bzys,11624706,4
+1369129,11624706,3
+mymadworld,11624706,4
+94324210,11624706,4
+roymo,11624706,4
+whatsuplaura,11624706,2
+36794017,11624706,5
+jadyx,11624706,3
+chl199093,11624706,4
+cattentiste,11624706,4
+4638925,11624706,3
+49776648,11624706,3
+guwalgia,11624706,4
+white817,11624706,4
+formosante,11624706,4
+68655879,11624706,4
+60222551,11624706,4
+106457277,11624706,3
+50281819,11624706,2
+52689721,11624706,5
+50638011,11624706,3
+55389424,11624706,4
+4010650,11624706,3
+85360851,11624706,5
+83099680,11624706,5
+71848127,11624706,4
+throughyoursoul,11624706,3
+54342307,11624706,3
+fansherlocked,11624706,1
+ziv_yll,11624706,4
+52101882,11624706,3
+3783012,11624706,4
+27675083,11624706,4
+50515546,11624706,5
+89062167,11624706,3
+54783483,11624706,3
+stompbabe,11624706,2
+k5k,11624706,3
+83472025,11624706,1
+74866100,11624706,4
+wuchild,11624706,3
+46678115,11624706,5
+roryluo,11624706,3
+65369148,11624706,3
+56955441,11624706,5
+rae,11624706,3
+tonyzhao,11624706,4
+Son47,11624706,4
+moonjourney,11624706,3
+132753121,11624706,4
+7143853,11624706,3
+51951428,11624706,4
+81845294,11624706,4
+ya19910907,11624706,4
+EugeneWong,11624706,4
+14504992,11624706,4
+128641812,11624706,3
+46735351,11624706,4
+maocan,11624706,5
+a55h01e,11624706,4
+dingtian911,11624706,3
+43533675,11624706,3
+84638542,11624706,5
+Sharpay0405,11624706,4
+1471684,11624706,4
+3101572,11624706,5
+huntercong,11624706,3
+71267771,11624706,3
+59621398,11624706,4
+Rolls,11624706,2
+58836054,11624706,3
+120625991,11624706,3
+60733451,11624706,3
+74499406,11624706,2
+ospopi,11624706,3
+128140915,11624706,5
+72949033,11624706,3
+55571747,11624706,3
+91545129,11624706,3
+42340819,11624706,4
+121148510,11624706,3
+51490972,11624706,3
+51737601,11624706,3
+57148360,11624706,3
+58071000,11624706,4
+easonkoko,11624706,3
+132997902,11624706,4
+68701440,11624706,5
+50044744,11624706,5
+RemyAnderson,11624706,-1
+82362528,11624706,3
+83862633,11624706,4
+50723200,11624706,3
+2172840,11624706,3
+68324587,11624706,4
+71002924,11624706,4
+yq1ng,11624706,4
+71821737,11624706,4
+3028587,11624706,2
+yoyohome,11624706,3
+57859852,11624706,4
+75328137,11624706,3
+80240498,11624706,2
+40929874,11624706,3
+2615650,11624706,4
+30580516,11624706,2
+54622180,11624706,3
+masaikejun,11624706,3
+G-Dear,11624706,3
+71865681,11624706,4
+donfer,11624706,4
+45182133,11624706,3
+4842930,11624706,3
+60623155,11624706,3
+122232090,11624706,4
+103108509,11624706,4
+120597236,11624706,3
+59205597,11624706,3
+51481264,11624706,-1
+87034538,11624706,3
+ooshan,11624706,4
+jolllllly,11624706,3
+89667563,11624706,4
+47737663,11624706,-1
+jzhsu,11624706,4
+53356414,11624706,5
+2265615,11624706,4
+jiajunzhi,11624706,4
+36103812,11624706,5
+60132042,11624706,3
+49266863,11624706,3
+60172474,11624706,4
+108168194,11624706,4
+unmask_sage,11624706,3
+jetcui,11624706,-1
+34799839,11624706,4
+4161317,11624706,3
+53135086,11624706,4
+115853778,11624706,1
+augusttt,11624706,2
+deardeerdearme,11624706,2
+mariaaa,11624706,-1
+jiaosally,11624706,4
+superT,11624706,5
+51377015,11624706,2
+kiter0711,11624706,3
+82619026,11624706,5
+jianyadaodao,11624706,4
+kiplinghu,11624706,4
+tongbaojia,11624706,2
+48835764,11624706,3
+20047139,11624706,4
+JakeNow,11624706,3
+1803158,11624706,4
+68700662,11624706,5
+ldzy,11624706,4
+67374627,11624706,5
+pursuemylove,11624706,3
+56228022,11624706,4
+55978838,11624706,5
+103735356,11624706,3
+53425694,11624706,5
+imoviekobe,11624706,2
+122981729,11624706,2
+Ray_u,11624706,4
+70052197,11624706,3
+46797478,11624706,5
+wolvestime,11624706,4
+qjp0h,11624706,3
+91046092,11624706,3
+Jodiezhang,11624706,3
+54422637,11624706,2
+62148442,11624706,5
+55324515,11624706,3
+canlanzhikui,11624706,4
+67661617,11624706,3
+88174382,11624706,5
+51472613,11624706,2
+72040827,11624706,3
+60610338,11624706,2
+riceseedling,11624706,2
+60961304,11624706,5
+mitocad,11624706,-1
+zweikun,11624706,4
+49005223,11624706,3
+68841097,11624706,2
+115774720,11624706,4
+jinyuji,11624706,3
+42761507,11624706,4
+69436313,11624706,5
+71953415,11624706,3
+96480565,11624706,5
+windirt,11624706,3
+35365939,11624706,4
+44436573,11624706,3
+lumins,11624706,2
+lawrence_gao,11624706,4
+lawrence_gao,11624706,4
+65930256,11624706,3
+casoon,11624706,5
+xfile99,11624706,4
+65602766,11624706,3
+31854340,11624706,5
+43632851,11624706,4
+74059129,11624706,4
+50930270,11624706,5
+62582526,11624706,3
+121844395,11624706,3
+64771060,11624706,2
+zxin94264,11624706,2
+37228673,11624706,5
+73626689,11624706,3
+40066621,11624706,4
+81468340,11624706,4
+63531003,11624706,4
+77111309,11624706,3
+violin0714,11624706,4
+meijiangshi,11624706,2
+45362948,11624706,3
+64740791,11624706,1
+97772446,11624706,4
+45390521,11624706,3
+132885035,11624706,4
+kagural,11624706,5
+wuxuqian,11624706,3
+55942870,11624706,4
+128373341,11624706,3
+62710966,11624706,3
+kukusyaoran,11624706,4
+tianjinwangai,11624706,4
+62869942,11624706,4
+martian1996,11624706,4
+20194870,11624706,3
+58123651,11624706,3
+mouzhi,11624706,3
+64008832,11624706,4
+lukaka,11624706,4
+44006704,11624706,2
+62877248,11624706,3
+65832475,11624706,4
+53343599,11624706,4
+47227699,11624706,5
+GAYHOUSE,11624706,3
+51777015,11624706,4
+XinwenCheng,11624706,4
+zhushejia,11624706,5
+17778744,11624706,4
+53765771,11624706,3
+53035444,11624706,4
+51638198,11624706,3
+124514675,11624706,4
+pantomime,11624706,3
+namazzi,11624706,3
+52214552,11624706,4
+47755264,11624706,4
+36707138,11624706,3
+3683994,11624706,2
+132342909,11624706,5
+55807482,11624706,3
+jessetoo,11624706,4
+39269373,11624706,2
+33064145,11624706,2
+3014394,11624706,4
+53024139,11624706,4
+27121910,11624706,3
+sigua.z,11624706,3
+48509446,11624706,5
+54721365,11624706,3
+100855724,11624706,3
+calla,11624706,3
+fifiyard,11624706,1
+xyq1995,11624706,4
+13833588,11624706,4
+65664176,11624706,3
+MrKny,11624706,4
+69639881,11624706,5
+ask4more,11624706,4
+40395493,11624706,3
+fortblk,11624706,3
+111461811,11624706,5
+51703758,11624706,4
+50761421,11624706,4
+kylefun,11624706,5
+51855205,11624706,3
+linxiaolin_,11624706,4
+bloodli,11624706,4
+1259506,11624706,3
+56739185,11624706,4
+53061557,11624706,3
+49185326,11624706,4
+yuimayday,11624706,2
+53708555,11624706,5
+44992130,11624706,3
+f91_82,11624706,3
+merengue,11624706,3
+122605310,11624706,3
+64796008,11624706,3
+50094689,11624706,4
+ddforever233,11624706,3
+2600693,11624706,2
+zoe_dl,11624706,4
+60338101,11624706,4
+2283860,11624706,4
+wunie,11624706,3
+invierno,11624706,3
+84564093,11624706,4
+2136666,11624706,3
+toni_hand,11624706,2
+Miss.Panda,11624706,4
+1434687,11624706,4
+zhanghanha,11624706,3
+4586409,11624706,4
+130044129,11624706,4
+hongsiqi,11624706,-1
+rudygiraffe,11624706,2
+130860796,11624706,5
+45661291,11624706,3
+1482191,11624706,4
+63438574,11624706,3
+dugumy,11624706,4
+ltp19950208,11624706,4
+mrockfire,11624706,4
+flyingbottleL,11624706,4
+76119662,11624706,3
+67319725,11624706,3
+93143338,11624706,3
+3063479,11624706,3
+132495035,11624706,4
+49891610,11624706,3
+i840152811,11624706,4
+83307271,11624706,4
+kp81ndlf,11624706,3
+faiel,11624706,3
+66550666,11624706,4
+103646211,11624706,3
+43318411,11624706,3
+43822211,11624706,4
+68966981,11624706,2
+2783478,11624706,4
+Davidcyclone,11624706,-1
+67606509,11624706,4
+fanyichao,11624706,4
+130861035,11624706,4
+Qin-,11624706,5
+kickyourleg,11624706,1
+cloudwwb,11624706,3
+66228351,11624706,5
+2752956,11624706,3
+53961104,11624706,4
+51444963,11624706,5
+80280523,11624706,4
+102951329,11624706,5
+oolong12,11624706,4
+2387348,11624706,4
+lycheche,11624706,4
+FrozenToilet,11624706,-1
+30187417,11624706,5
+30187417,11624706,5
+4265186,11624706,3
+Enid,11624706,1
+62538300,11624706,1
+68922284,11624706,3
+51061132,11624706,2
+133654392,11624706,3
+zhhsbkl,11624706,5
+128313677,11624706,4
+1886385,11624706,3
+61014893,11624706,2
+annieer,11624706,4
+44977430,11624706,4
+55452001,11624706,3
+yigenong,11624706,3
+magic1029,11624706,3
+lch_amo,11624706,3
+62181928,11624706,3
+64124840,11624706,3
+commonalley,11624706,2
+44501029,11624706,3
+3489125,11624706,2
+68469839,11624706,4
+wang346591260,11624706,4
+lonist,11624706,5
+39788968,11624706,3
+gang4,11624706,5
+wwyihuayishijie,11624706,2
+huv,11624706,3
+espresso_,11624706,3
+2775168,11624706,4
+Bening,11624706,4
+132257242,11624706,4
+tangstar27,11624706,3
+46815070,11624706,2
+92468807,11624706,2
+52167842,11624706,4
+samsyu,11624706,4
+morpheus5,11624706,2
+georgelouis,11624706,4
+84406810,11624706,3
+ss25,11624706,3
+104823188,11624706,4
+120566516,11624706,5
+49514824,11624706,-1
+36552060,11624706,3
+100532908,11624706,5
+51369508,11624706,3
+Mrsmilence,11624706,4
+53639016,11624706,5
+44413368,11624706,-1
+TalkChan,11624706,4
+sesameduck,11624706,3
+Sirius_lost,11624706,5
+linkin99,11624706,4
+gamering,11624706,-1
+74017888,11624706,3
+61712114,11624706,3
+lrc893,11624706,1
+29187256,11624706,4
+94575573,11624706,2
+zhukeke,11624706,4
+CNatural,11624706,4
+wishna,11624706,4
+59783887,11624706,2
+ekling,11624706,3
+61311789,11624706,2
+22154717,11624706,4
+2149921,11624706,3
+48439446,11624706,5
+51197261,11624706,3
+42463723,11624706,4
+shiro666,11624706,4
+133122713,11624706,3
+potatozhuang,11624706,3
+A-BeR,11624706,4
+59465835,11624706,5
+edwardzhou,11624706,3
+xiaoqianquan,11624706,3
+kidrabbit,11624706,3
+82262914,11624706,3
+4638543,11624706,4
+roseandwater,11624706,4
+aghilnouz,11624706,3
+afreetsophia,11624706,3
+vincet,11624706,3
+1530125,11624706,4
+41220794,11624706,5
+102714413,11624706,5
+54655578,11624706,5
+56202988,11624706,4
+98014979,11624706,4
+juleye,11624706,-1
+49653767,11624706,4
+44589835,11624706,5
+47959588,11624706,5
+77615925,11624706,4
+delphiash,11624706,4
+91114476,11624706,3
+48956646,11624706,5
+48956646,11624706,5
+pjcs,11624706,3
+3649454,11624706,3
+wuxiaohua,11624706,-1
+104823216,11624706,4
+3555189,11624706,3
+41556922,11624706,4
+81895504,11624706,3
+paradisexue,11624706,2
+topgamer,11624706,3
+zhong335,11624706,3
+65902872,11624706,3
+67436408,11624706,3
+woshizengjiujiu,11624706,3
+1011787,11624706,3
+milkteaLayla,11624706,5
+raindawn,11624706,5
+bxhOTZ,11624706,3
+kitkat_kk1125,11624706,5
+pcc,11624706,3
+119806823,11624706,5
+stayreeal,11624706,3
+67852674,11624706,3
+Maqqieyaoyao,11624706,4
+59705593,11624706,4
+anlrj,11624706,4
+ClayDurer,11624706,5
+moliao,11624706,3
+53124457,11624706,3
+tinychen,11624706,4
+74698401,11624706,4
+shixianyong,11624706,4
+fuyouforest,11624706,3
+1951296,11624706,5
+xishy,11624706,2
+xyl412,11624706,4
+51559906,11624706,4
+lnmeng_9823,11624706,4
+53025831,11624706,4
+superzoukang,11624706,5
+68227584,11624706,5
+73312122,11624706,3
+70183540,11624706,-1
+57956404,11624706,4
+85022173,11624706,2
+68792801,11624706,3
+62129234,11624706,3
+momon1900,11624706,4
+93471236,11624706,4
+Ste_corleone,11624706,2
+56213524,11624706,5
+ccj0212,11624706,4
+43791681,11624706,3
+pastories,11624706,3
+65160778,11624706,4
+97537742,11624706,3
+ameliefei,11624706,3
+119632712,11624706,5
+sunshinewang,11624706,5
+33611960,11624706,3
+48941785,11624706,3
+67836391,11624706,4
+60633670,11624706,5
+57667810,11624706,5
+56237449,11624706,1
+43308232,11624706,3
+63527236,11624706,2
+13293190,11624706,4
+74959611,11624706,4
+65448112,11624706,3
+77848216,11624706,4
+92988194,11624706,5
+59082297,11624706,3
+69121798,11624706,5
+83447012,11624706,4
+33371604,11624706,2
+1585106,11624706,-1
+53229163,11624706,3
+83842502,11624706,-1
+121162406,11624706,3
+41423466,11624706,3
+clynch,11624706,3
+skyaim,11624706,4
+55924051,11624706,3
+Kodama,11624706,4
+60026177,11624706,4
+nate0710,11624706,3
+77038019,11624706,4
+59658494,11624706,2
+vincent_kwok,11624706,3
+piangpiangpiang,11624706,5
+54100046,11624706,3
+xixi0508,11624706,4
+49397439,11624706,3
+chiaky,11624706,3
+81442988,11624706,-1
+ps716,11624706,3
+anthony1123,11624706,3
+xueshene,11624706,3
+Princessia,11624706,4
+62135529,11624706,4
+baibo108,11624706,4
+44538646,11624706,4
+3919936,11624706,5
+2601748,11624706,4
+missing7V,11624706,3
+54501889,11624706,2
+Summersun-Iris,11624706,5
+128631374,11624706,2
+jennito,11624706,3
+Arielcong,11624706,4
+69420649,11624706,5
+lionxiyouming,11624706,4
+xgy0318,11624706,5
+56734943,11624706,4
+SoyQueenaTse,11624706,4
+47065864,11624706,4
+yaqing,11624706,5
+vanilla666,11624706,3
+3319103,11624706,3
+cherybeckham,11624706,3
+B.zVagabond,11624706,3
+54419821,11624706,4
+zhangyuwan1992,11624706,3
+35135916,11624706,5
+emisie,11624706,3
+65054384,11624706,4
+90854543,11624706,3
+taususy,11624706,4
+lilylillylillie,11624706,3
+67740158,11624706,-1
+samendoon,11624706,3
+3408360,11624706,3
+122748747,11624706,5
+fulingke,11624706,4
+Lycheeciel,11624706,5
+47821989,11624706,3
+tszwingtong,11624706,4
+45635139,11624706,3
+eeeeek,11624706,5
+53176363,11624706,2
+19863736,11624706,3
+68480782,11624706,4
+birdman5T,11624706,5
+62828901,11624706,3
+Leo-Andy,11624706,3
+91017429,11624706,4
+80571229,11624706,4
+3923065,11624706,5
+74553230,11624706,5
+greatcatti,11624706,1
+51945032,11624706,1
+45763132,11624706,5
+44435549,11624706,4
+50963591,11624706,4
+63060917,11624706,5
+foreversylvia,11624706,3
+4405668,11624706,4
+127785608,11624706,5
+70361131,11624706,3
+121346117,11624706,4
+DrGonzo,11624706,1
+cylarzc,11624706,4
+92016495,11624706,4
+62662196,11624706,5
+71267265,11624706,2
+31806975,11624706,3
+22593878,11624706,3
+56072639,11624706,4
+cryc,11624706,3
+true_,11624706,3
+4816694,11624706,-1
+57666783,11624706,4
+xiaoyujiejie,11624706,1
+3863626,11624706,4
+49456596,11624706,4
+63704631,11624706,4
+3311212,11624706,3
+MikaAU,11624706,4
+kaa77,11624706,3
+59537499,11624706,5
+69105282,11624706,4
+1813452,11624706,3
+121997108,11624706,3
+Neoo0,11624706,4
+65442139,11624706,4
+64447693,11624706,4
+73126266,11624706,3
+91397317,11624706,3
+happylun,11624706,3
+selinashin,11624706,3
+80140628,11624706,2
+126682047,11624706,4
+4280640,11624706,3
+2073049,11624706,3
+tr.ai.nspotting,11624706,3
+jimmyfallon,11624706,4
+49523598,11624706,3
+52113337,11624706,4
+46276510,11624706,2
+43536991,11624706,5
+49254748,11624706,4
+88859760,11624706,4
+virlee,11624706,-1
+9377177,11624706,3
+4765777,11624706,2
+3598360,11624706,5
+biubiubiuq,11624706,-1
+64317656,11624706,4
+2785136,11624706,4
+2322487,11624706,4
+65747014,11624706,5
+57947466,11624706,3
+48225934,11624706,5
+91133669,11624706,3
+pretendor,11624706,2
+mayshin,11624706,4
+Cheney__,11624706,3
+3464028,11624706,3
+66973670,11624706,3
+73730077,11624706,5
+121285266,11624706,3
+iumbrella,11624706,4
+zuochangyu,11624706,4
+44542969,11624706,3
+spongepea,11624706,5
+Rebecca_618,11624706,3
+121939824,11624706,3
+73498656,11624706,3
+42616654,11624706,5
+2373395,11624706,3
+48791538,11624706,-1
+55442751,11624706,3
+51763291,11624706,3
+76449166,11624706,5
+vicky-li,11624706,5
+onlysunkk,11624706,3
+ellenc,11624706,5
+6630496,11624706,-1
+princefelipe,11624706,5
+SesshuYang,11624706,4
+55864380,11624706,-1
+Wendyjiang,11624706,5
+55823750,11624706,3
+59542350,11624706,2
+besify,11624706,3
+133039983,11624706,5
+121607525,11624706,5
+129548719,11624706,4
+cakesama,11624706,3
+stevenfive,11624706,3
+NICOLE_,11624706,-1
+67099663,11624706,3
+2374654,11624706,2
+40760358,11624706,4
+1333942,11624706,4
+63229486,11624706,3
+87880107,11624706,5
+angalny,11624706,3
+46098367,11624706,4
+131063824,11624706,4
+37106430,11624706,4
+KuanKuannnn,11624706,2
+84289261,11624706,5
+69048692,11624706,4
+thevyi,11624706,5
+83743070,11624706,-1
+hear_linda,11624706,-1
+58422058,11624706,5
+julia_duan,11624706,4
+greenflowersea,11624706,4
+35051373,11624706,4
+53904124,11624706,3
+miluoya,11624706,5
+70019854,11624706,3
+100836149,11624706,2
+73869586,11624706,5
+121580684,11624706,4
+eloise0114,11624706,4
+41923387,11624706,5
+88175103,11624706,4
+57967414,11624706,5
+4224312,11624706,5
+9173752,11624706,4
+68844608,11624706,4
+sevengin,11624706,4
+S1990,11624706,2
+25504280,11624706,4
+reneelv,11624706,3
+126577157,11624706,4
+66875139,11624706,5
+92032476,11624706,3
+kimyeol,11624706,4
+yamaki,11624706,3
+haunting,11624706,5
+dong0621,11624706,4
+44095878,11624706,4
+75957964,11624706,4
+62639604,11624706,4
+46144657,11624706,2
+tracysyc,11624706,5
+fire-ya,11624706,4
+3869328,11624706,3
+XUYUN-,11624706,2
+yunyuanshuo,11624706,5
+132841407,11624706,5
+130856040,11624706,4
+50618978,11624706,4
+50703649,11624706,4
+49298107,11624706,3
+mues,11624706,4
+69175335,11624706,5
+132271449,11624706,5
+Simplelove_,11624706,4
+xsy2020,11624706,3
+81412725,11624706,5
+chaiyanchao,11624706,3
+60112538,11624706,4
+46218863,11624706,3
+48483774,11624706,3
+65086870,11624706,5
+huanxibushuohua,11624706,4
+51950822,11624706,3
+LJ_OuO,11624706,4
+34575902,11624706,3
+101503219,11624706,4
+132093275,11624706,3
+94214893,11624706,3
+Liangkui,11624706,3
+yoocat,11624706,3
+54371431,11624706,5
+39888720,11624706,5
+61236848,11624706,-1
+42209180,11624706,5
+sandraxiaole,11624706,3
+stillwalking29,11624706,3
+68957846,11624706,5
+43576863,11624706,4
+hennic,11624706,4
+49121957,11624706,3
+69355415,11624706,4
+66441737,11624706,4
+luhang363,11624706,5
+WeAreGolden,11624706,4
+mimimamahong_,11624706,3
+46100445,11624706,5
+rim0821,11624706,3
+72945702,11624706,3
+66650863,11624706,3
+98183739,11624706,3
+65183183,11624706,3
+64841580,11624706,-1
+notexistatall,11624706,1
+Hypnus2007,11624706,4
+starspell,11624706,4
+2275412,11624706,2
+xiaoshuyi123,11624706,4
+132126693,11624706,2
+beijusenlin,11624706,5
+122962617,11624706,3
+47822464,11624706,5
+76998416,11624706,2
+greenland,11624706,3
+wangchenqd,11624706,4
+aoisylier,11624706,5
+4089785,11624706,3
+vegali,11624706,2
+lvchencf,11624706,4
+59435031,11624706,3
+52623078,11624706,4
+ling_chen,11624706,3
+10356683,11624706,5
+60595610,11624706,2
+34691129,11624706,5
+lxsz2009,11624706,3
+4301426,11624706,5
+1561355,11624706,5
+47024160,11624706,4
+82299258,11624706,3
+2853604,11624706,3
+3835065,11624706,3
+60095742,11624706,-1
+vmile,11624706,4
+41930797,11624706,2
+Lianyutou,11624706,3
+linxiaoleng,11624706,4
+81404706,11624706,3
+54625208,11624706,3
+Lynnli,11624706,4
+jervis1012,11624706,4
+jeffmsu,11624706,3
+43297403,11624706,3
+57834233,11624706,4
+action552200,11624706,5
+lovekahn2002,11624706,3
+47903524,11624706,4
+2231127,11624706,2
+aliceshi,11624706,2
+4568021,11624706,4
+acouchpotato,11624706,4
+71278523,11624706,4
+terryoy,11624706,4
+4431102,11624706,5
+58840542,11624706,3
+zhtianyu,11624706,3
+17006018,11624706,5
+3623202,11624706,5
+spaceli,11624706,4
+formyownworld2,11624706,4
+53833037,11624706,5
+heymyfish,11624706,5
+amour1,11624706,4
+caocaoa,11624706,3
+48949608,11624706,4
+49131589,11624706,3
+102862602,11624706,3
+48690943,11624706,3
+3482835,11624706,5
+MayaDey,11624706,3
+aggieme11,11624706,4
+aggieme11,11624706,4
+nekozamurai,11624706,3
+49206442,11624706,4
+tezuka15,11624706,4
+be-my-mirror,11624706,3
+AWESOME0813,11624706,4
+aitiaowudemeng,11624706,3
+10040083,11624706,-1
+siemielu,11624706,4
+42546446,11624706,5
+4051279,11624706,5
+75481608,11624706,4
+shel_ley,11624706,4
+cheersdarlin,11624706,3
+hengyunyixiang,11624706,3
+123469142,11624706,2
+2881598,11624706,5
+131794401,11624706,2
+changzi8,11624706,4
+63335454,11624706,5
+vincylee,11624706,5
+73040905,11624706,5
+burglar,11624706,2
+renzongxian,11624706,3
+baidulu,11624706,3
+45332811,11624706,5
+84049230,11624706,4
+2759466,11624706,5
+121132811,11624706,4
+chenahu,11624706,4
+49890012,11624706,3
+132592664,11624706,4
+69573255,11624706,3
+53156692,11624706,1
+1263662,11624706,4
+at17,11624706,4
+59071520,11624706,4
+45648843,11624706,3
+57535559,11624706,5
+48885741,11624706,3
+xuranjun,11624706,3
+kiwi113,11624706,4
+uemadj,11624706,5
+adamyoung1518,11624706,3
+darchang,11624706,4
+zhaomingruoxi,11624706,3
+bunny_Shen,11624706,1
+4307749,11624706,5
+zhangyunji,11624706,4
+sunshinexuu,11624706,3
+mengshiyu,11624706,5
+50644195,11624706,5
+69637393,11624706,2
+67979559,11624706,5
+chenspoon,11624706,3
+goldenhornking,11624706,5
+39946912,11624706,3
+55990119,11624706,4
+fallwater,11624706,4
+mayting,11624706,4
+hakuna927,11624706,5
+2348623,11624706,-1
+rouroudong,11624706,3
+wing821,11624706,4
+liuchang223,11624706,5
+sdllovewly,11624706,5
+IRENE_JSNNU,11624706,4
+53886643,11624706,3
+132208597,11624706,3
+ajiuyo,11624706,4
+91543549,11624706,4
+aellr,11624706,-1
+kid131,11624706,4
+MihaelKeehl,11624706,4
+Mflower,11624706,2
+48050176,11624706,4
+99448311,11624706,5
+66173191,11624706,3
+52284019,11624706,4
+54611843,11624706,3
+9549001,11624706,3
+87943711,11624706,4
+44578870,11624706,3
+2686815,11624706,3
+17713187,11624706,2
+48568251,11624706,3
+ciaoxu,11624706,4
+55912584,11624706,4
+59129552,11624706,4
+AnguesZoe,11624706,5
+Night_shadow,11624706,3
+1234887,11624706,3
+67381515,11624706,2
+4666166,11624706,3
+fancywanan,11624706,5
+Hnanmao,11624706,4
+37216410,11624706,3
+64716010,11624706,5
+75189266,11624706,3
+40581527,11624706,5
+65181695,11624706,3
+4333099,11624706,5
+61971241,11624706,3
+disney9,11624706,4
+48281244,11624706,5
+3386344,11624706,4
+22406636,11624706,5
+2227016,11624706,3
+46897570,11624706,3
+74449417,11624706,5
+66441449,11624706,5
+50887625,11624706,2
+43579332,11624706,4
+opheliauncle,11624706,3
+sosansosan,11624706,5
+anaking,11624706,5
+63352248,11624706,4
+khalilbaby,11624706,4
+pbsylbsgc,11624706,-1
+126970424,11624706,5
+Mooncalf-Z,11624706,1
+2299899,11624706,3
+annalotory,11624706,5
+34342480,11624706,4
+82715494,11624706,4
+54983933,11624706,4
+79506720,11624706,4
+windy_y,11624706,3
+104092639,11624706,4
+51215296,11624706,5
+59457349,11624706,5
+pineapples,11624706,2
+2819586,11624706,4
+xxhhcc,11624706,2
+yscysc803,11624706,4
+126828053,11624706,3
+132182223,11624706,4
+61511872,11624706,4
+2440792,11624706,4
+ice_bloom,11624706,3
+ice_bloom,11624706,3
+132000707,11624706,3
+stacy-agony,11624706,5
+3202447,11624706,3
+chenkendra,11624706,3
+mooncynthia,11624706,-1
+jiong7,11624706,2
+millylyu,11624706,1
+laura_ch,11624706,3
+heatherbobo,11624706,3
+107128082,11624706,4
+119379415,11624706,5
+36627836,11624706,3
+56488690,11624706,3
+35003294,11624706,3
+lunachen,11624706,5
+charmaineklo579,11624706,4
+130608231,11624706,4
+3971708,11624706,4
+BuddhaTree,11624706,4
+44682919,11624706,1
+130082458,11624706,4
+46346946,11624706,5
+36621770,11624706,3
+40018241,11624706,5
+132342981,11624706,4
+crossatnight,11624706,3
+4048053,11624706,4
+jasontodd,11624706,3
+Renee101,11624706,4
+shuchee,11624706,5
+50213452,11624706,2
+38811434,11624706,4
+yjrockon,11624706,4
+51367754,11624706,4
+58935942,11624706,4
+58696214,11624706,3
+49515197,11624706,4
+45642222,11624706,4
+VRoss,11624706,5
+101052664,11624706,3
+taurusdgcr,11624706,5
+80357974,11624706,3
+3886701,11624706,3
+70239399,11624706,4
+chelsea_baker,11624706,5
+47311931,11624706,4
+foxazoxi,11624706,-1
+45446265,11624706,3
+64110275,11624706,4
+60833590,11624706,3
+48884816,11624706,4
+K.Night,11624706,5
+70599201,11624706,-1
+50659341,11624706,5
+5617300,11624706,3
+AndreBFSU,11624706,4
+64702674,11624706,2
+34929495,11624706,2
+67637706,11624706,2
+robot_d,11624706,2
+lubinfan,11624706,4
+rociowyc,11624706,4
+sisiwang,11624706,4
+1503417,11624706,3
+64504224,11624706,5
+Slovekame,11624706,4
+51845720,11624706,5
+York29,11624706,4
+46932541,11624706,5
+bmw,11624706,4
+9813696,11624706,-1
+agking,11624706,3
+121270653,11624706,5
+62606235,11624706,4
+14769621,11624706,4
+cinddleshaw,11624706,4
+dapao7738,11624706,4
+e7even,11624706,3
+zguan,11624706,4
+y1-yu,11624706,5
+XXXXKKKK,11624706,3
+78160641,11624706,3
+41016325,11624706,-1
+Goudy,11624706,5
+35456769,11624706,4
+dolaaa,11624706,4
+SissiYe,11624706,5
+129348708,11624706,5
+48044328,11624706,3
+richion,11624706,4
+chendax,11624706,3
+2700292,11624706,3
+bobogaga,11624706,4
+yeeeeeee,11624706,3
+33042240,11624706,4
+60126272,11624706,3
+39129830,11624706,5
+126514473,11624706,4
+yuanaibing,11624706,4
+2280920,11624706,3
+baoziyudigua,11624706,-1
+83761077,11624706,2
+xilouchen,11624706,3
+49191644,11624706,4
+jiqn,11624706,4
+niki2wynn,11624706,3
+43641252,11624706,4
+81139572,11624706,5
+128836726,11624706,3
+60785049,11624706,3
+5754772,11624706,5
+Hex79696e67,11624706,2
+51312252,11624706,3
+lilyigreg,11624706,5
+42291551,11624706,4
+JollyMah,11624706,3
+troublemakerjoy,11624706,2
+2911877,11624706,5
+49174691,11624706,3
+summer_tree,11624706,5
+63407342,11624706,5
+never-me,11624706,4
+47902744,11624706,4
+liweiheng,11624706,4
+2401872,11624706,5
+4380586,11624706,4
+kissofdead,11624706,5
+53571670,11624706,4
+km_mutt,11624706,3
+41595553,11624706,2
+50144933,11624706,3
+132170962,11624706,5
+koko18910906,11624706,3
+lavende,11624706,3
+57882288,11624706,3
+lengyeyou,11624706,5
+92637851,11624706,3
+67011353,11624706,2
+63250313,11624706,3
+chguanf,11624706,5
+sophiablanc,11624706,3
+65190817,11624706,3
+ly_yun811,11624706,3
+oooweirooo,11624706,3
+46983275,11624706,5
+76781369,11624706,3
+81173543,11624706,5
+wenlong.dai,11624706,4
+48258605,11624706,3
+Marybigday,11624706,3
+122804233,11624706,4
+61511895,11624706,-1
+46738902,11624706,4
+m.911,11624706,3
+126246945,11624706,3
+Youngerer,11624706,2
+luzula,11624706,2
+4916602,11624706,4
+kim100702,11624706,4
+83387941,11624706,3
+115987406,11624706,4
+124979804,11624706,5
+130255793,11624706,4
+72544407,11624706,-1
+strawberryever,11624706,3
+45665171,11624706,3
+2812955,11624706,4
+121434858,11624706,4
+68511299,11624706,4
+bleachabcdefg,11624706,3
+90807462,11624706,4
+rednoodles,11624706,3
+47691460,11624706,5
+ysding,11624706,4
+83250285,11624706,5
+32354448,11624706,2
+theMicky,11624706,4
+Ryan-Z,11624706,4
+48680153,11624706,4
+132190479,11624706,3
+59236586,11624706,2
+MissFebruary,11624706,4
+62766562,11624706,3
+myhappy1992,11624706,3
+1296334,11624706,4
+42074061,11624706,4
+iniquity,11624706,4
+64648579,11624706,5
+2137795,11624706,4
+51197070,11624706,3
+amyue,11624706,4
+1355685,11624706,5
+jiqingyi,11624706,3
+x1nyu,11624706,-1
+54864472,11624706,-1
+46973538,11624706,1
+41696616,11624706,3
+syyw88,11624706,4
+thedharmabum,11624706,4
+zcr,11624706,3
+shadowdou,11624706,4
+47845902,11624706,3
+60605965,11624706,2
+dream_for3,11624706,5
+37264633,11624706,2
+bigtreeyanger,11624706,3
+57416285,11624706,4
+53699471,11624706,4
+beannyontheroad,11624706,4
+monkeydshinki,11624706,3
+claraye,11624706,4
+yaxibear,11624706,3
+79728421,11624706,5
+zclei,11624706,4
+40335342,11624706,4
+Duckpear10,11624706,3
+91495186,11624706,3
+62178164,11624706,3
+53288868,11624706,-1
+rockcn888,11624706,5
+30457423,11624706,4
+57823956,11624706,3
+sentsuki,11624706,3
+57754572,11624706,5
+happyswing,11624706,4
+56244631,11624706,5
+65850985,11624706,-1
+deer-catcher,11624706,4
+thefireworker,11624706,-1
+69345678,11624706,3
+124993533,11624706,5
+veranoverana,11624706,3
+xiaoxiongweini,11624706,2
+fancylyf,11624706,5
+1942614,11624706,4
+absdee,11624706,3
+meadow_lmao,11624706,3
+ukulelelila,11624706,4
+3832465,11624706,4
+shadowshame,11624706,4
+78768061,11624706,4
+onlysassy,11624706,5
+1897616,11624706,2
+57089559,11624706,4
+101931160,11624706,5
+2247745,11624706,5
+GinaJJ,11624706,3
+Elainezhang,11624706,5
+56481449,11624706,5
+fairyluohua,11624706,4
+3274950,11624706,-1
+freeofnature,11624706,4
+candy9,11624706,5
+77058316,11624706,3
+46856859,11624706,2
+66718384,11624706,4
+41651378,11624706,4
+28400267,11624706,2
+36926504,11624706,2
+bingbingaloe,11624706,3
+54621967,11624706,3
+34744036,11624706,5
+lightmark,11624706,5
+3564957,11624706,5
+sonnenshein,11624706,5
+walktodream,11624706,3
+sky69,11624706,4
+60302594,11624706,4
+xenia429,11624706,5
+Ziya,11624706,3
+76624368,11624706,4
+62440294,11624706,4
+61400077,11624706,4
+66461284,11624706,3
+xinxinlyx,11624706,4
+36390435,11624706,5
+50244579,11624706,3
+2691011,11624706,5
+arika.L,11624706,3
+qinlou,11624706,4
+DLPONGPONG,11624706,3
+75718452,11624706,4
+93462898,11624706,4
+127728111,11624706,3
+43295924,11624706,4
+xiaodou52,11624706,3
+68865370,11624706,4
+vivienvb,11624706,5
+44162461,11624706,5
+57046500,11624706,3
+3609916,11624706,5
+116977972,11624706,2
+kellylr,11624706,3
+115060047,11624706,3
+61161767,11624706,4
+88272889,11624706,5
+angelQQ,11624706,4
+30943019,11624706,5
+47338150,11624706,5
+wanxiaojin,11624706,4
+yushu25,11624706,-1
+4200201,11624706,2
+ranan,11624706,4
+91581160,11624706,5
+55596130,11624706,4
+44777109,11624706,1
+laoshudeshijie,11624706,3
+49002577,11624706,3
+passerby2,11624706,3
+lindtf,11624706,4
+silviapan,11624706,5
+wiwikuang,11624706,3
+3716043,11624706,3
+ypapa,11624706,4
+sley,11624706,3
+68091356,11624706,3
+43549069,11624706,4
+48355482,11624706,4
+jessie1456,11624706,4
+jessie1456,11624706,4
+70161783,11624706,3
+119480483,11624706,4
+18508363,11624706,2
+131986174,11624706,5
+1723236,11624706,5
+65813423,11624706,3
+aggerek,11624706,5
+48882984,11624706,4
+q423660875,11624706,3
+119404591,11624706,5
+YuRAY,11624706,3
+43332807,11624706,4
+55943573,11624706,4
+51583782,11624706,3
+106514817,11624706,3
+cecilia.eve,11624706,4
+zyr2014,11624706,5
+124536699,11624706,4
+xianuannian,11624706,4
+71543587,11624706,2
+44632827,11624706,3
+4354299,11624706,4
+liero,11624706,4
+ryan0000,11624706,5
+xixi0311,11624706,3
+131932102,11624706,4
+42861826,11624706,5
+vinesun,11624706,3
+luocha,11624706,3
+132016475,11624706,3
+xiuxiutiancai,11624706,3
+kianfish,11624706,-1
+KayeFiennes,11624706,4
+1149126,11624706,4
+1097543,11624706,4
+42339037,11624706,3
+operaticfrances,11624706,4
+51440227,11624706,3
+zoeylime,11624706,4
+47840013,11624706,5
+zhibiaoshi,11624706,3
+icerabbitbaby,11624706,3
+46315141,11624706,3
+wmsdaishu,11624706,3
+zouy1216,11624706,3
+wjferic,11624706,4
+35075671,11624706,3
+121154422,11624706,2
+4583369,11624706,3
+SylviaWang,11624706,3
+4207280,11624706,3
+zhenyz1994,11624706,4
+56721641,11624706,4
+1448393,11624706,4
+62169454,11624706,5
+113289658,11624706,4
+129956441,11624706,5
+jomey,11624706,2
+14542773,11624706,3
+44045127,11624706,5
+isaaclee,11624706,3
+49836781,11624706,-1
+34461821,11624706,4
+61429812,11624706,3
+sakanayuyu,11624706,4
+gallria,11624706,3
+51751455,11624706,4
+macyko,11624706,5
+alienyoyo,11624706,-1
+jyu314,11624706,4
+eyeslegend,11624706,4
+1393472,11624706,4
+82829491,11624706,3
+2916229,11624706,4
+21032255,11624706,3
+54336845,11624706,5
+cyrsmilence,11624706,2
+129255326,11624706,4
+moland,11624706,3
+55338878,11624706,3
+47622714,11624706,5
+kingmue,11624706,2
+chloecin,11624706,4
+121713493,11624706,3
+jewelshao,11624706,4
+4044749,11624706,3
+60093239,11624706,4
+panrunni,11624706,4
+51938291,11624706,2
+jamway,11624706,5
+61601559,11624706,3
+christineikitty,11624706,2
+81373304,11624706,4
+okay477,11624706,4
+kloudyes,11624706,4
+bomshakalaka,11624706,5
+calamus22,11624706,4
+48877936,11624706,4
+48616110,11624706,4
+56922790,11624706,3
+evastone,11624706,3
+14791938,11624706,3
+2982307,11624706,3
+2289723,11624706,-1
+wangdale,11624706,4
+mindlee,11624706,3
+urani,11624706,4
+49698002,11624706,5
+longnnight,11624706,3
+PonpyThePenguin,11624706,5
+towelie,11624706,2
+121998536,11624706,3
+3877297,11624706,4
+violetism,11624706,1
+37216484,11624706,4
+roxanneshiong,11624706,4
+4630145,11624706,-1
+45220439,11624706,4
+meme727,11624706,4
+3890374,11624706,4
+oreny,11624706,3
+zhuxuwen,11624706,4
+54018069,11624706,4
+yushuting1122,11624706,4
+2776951,11624706,3
+74680638,11624706,3
+2563929,11624706,5
+siyedesiye,11624706,4
+113234997,11624706,3
+121618912,11624706,2
+46995714,11624706,4
+131898558,11624706,4
+3072724,11624706,4
+69460784,11624706,5
+3439248,11624706,3
+bunny622,11624706,3
+xiaojirou007,11624706,3
+54792454,11624706,4
+85337817,11624706,5
+lynnyilu,11624706,3
+80066409,11624706,3
+galinashen,11624706,3
+lanyon1124,11624706,5
+1061640,11624706,3
+jyuelovejay,11624706,3
+4522191,11624706,3
+iyouyou2011,11624706,3
+lydiaxanthe,11624706,5
+gyceedoo,11624706,2
+103042585,11624706,5
+92394244,11624706,5
+50221817,11624706,3
+JC_Panda,11624706,4
+63797161,11624706,3
+4663105,11624706,3
+125208149,11624706,4
+crawlings,11624706,5
+ChubbyCheek,11624706,4
+yaomiao,11624706,3
+84207817,11624706,4
+55822264,11624706,4
+yyy1994,11624706,3
+roy325,11624706,1
+53893558,11624706,5
+2923778,11624706,4
+kingtreetooth,11624706,3
+4551546,11624706,4
+3277928,11624706,2
+97416681,11624706,3
+67654598,11624706,3
+yihaifei,11624706,3
+hazelhan,11624706,5
+122424986,11624706,4
+ys,11624706,5
+32514307,11624706,2
+67267269,11624706,4
+59797746,11624706,4
+jill426,11624706,2
+bobowudi,11624706,4
+42644353,11624706,5
+62369741,11624706,3
+49325422,11624706,3
+77536605,11624706,3
+119353813,11624706,5
+dpurity,11624706,4
+42539278,11624706,5
+Papa423,11624706,3
+35780501,11624706,4
+57977167,11624706,3
+50776710,11624706,3
+C443658,11624706,4
+104726855,11624706,5
+ms2ni,11624706,3
+72251882,11624706,4
+81654169,11624706,4
+77123373,11624706,5
+3110943,11624706,4
+48752205,11624706,4
+57425264,11624706,4
+iris29,11624706,4
+2934232,11624706,2
+59524621,11624706,2
+102816814,11624706,4
+47867459,11624706,4
+HEYHo,11624706,4
+52220712,11624706,3
+59071108,11624706,5
+3082910,11624706,3
+53620031,11624706,4
+3553432,11624706,3
+60766541,11624706,4
+sherylice,11624706,4
+60430589,11624706,4
+rackylo,11624706,2
+58467704,11624706,4
+travelaway,11624706,3
+17828049,11624706,4
+franklintTNHWJ,11624706,3
+kindxie,11624706,5
+52023179,11624706,5
+Larissa_nano,11624706,5
+120984863,11624706,5
+27969330,11624706,4
+68596307,11624706,5
+81639579,11624706,4
+zhuomiaomiao,11624706,3
+woshihaoren123,11624706,2
+motongg,11624706,4
+amushi,11624706,1
+yuntun,11624706,5
+anjiu,11624706,4
+pinkyview,11624706,4
+superseahell,11624706,3
+victoria.yangsq,11624706,4
+aginny,11624706,3
+57521129,11624706,3
+realiveen,11624706,2
+pipi0220,11624706,3
+memoryofastar,11624706,4
+49893816,11624706,3
+58498649,11624706,4
+belle,11624706,2
+53815174,11624706,5
+sujin6041,11624706,2
+dongdayou,11624706,4
+131882477,11624706,1
+daisyhsia,11624706,3
+56068033,11624706,5
+rockable_,11624706,5
+1169287,11624706,5
+47080438,11624706,4
+missapple,11624706,-1
+32187017,11624706,4
+ljx19921111,11624706,5
+80094632,11624706,1
+blood22,11624706,2
+2745009,11624706,5
+50560714,11624706,5
+frankchi,11624706,4
+83017283,11624706,4
+58295895,11624706,3
+45840603,11624706,5
+55374994,11624706,3
+61953901,11624706,4
+ferkmavie,11624706,4
+48067677,11624706,5
+sylcrannog,11624706,5
+88631598,11624706,4
+39369770,11624706,3
+25460734,11624706,4
+65002965,11624706,2
+50474968,11624706,4
+45661108,11624706,4
+71918297,11624706,3
+65268839,11624706,-1
+avisj,11624706,5
+cej,11624706,5
+35739270,11624706,3
+48814903,11624706,4
+26636901,11624706,4
+121888181,11624706,3
+yizhu,11624706,5
+50738842,11624706,2
+63413586,11624706,4
+cowbie,11624706,3
+51401098,11624706,3
+52015863,11624706,5
+KathyChin,11624706,3
+50183995,11624706,2
+46828129,11624706,5
+94442097,11624706,5
+eededfcd,11624706,4
+yan599083337,11624706,3
+Chiniac_Cubic,11624706,5
+92836075,11624706,-1
+sunsun0222,11624706,5
+11658942,11624706,3
+92697402,11624706,5
+lovedujuan,11624706,4
+olivia_wwj,11624706,3
+msspider,11624706,3
+joycejiajia,11624706,5
+hanaled,11624706,2
+rafael1986,11624706,3
+48877341,11624706,4
+41671241,11624706,3
+lijin329,11624706,4
+cccaptainnn,11624706,5
+seasunflower,11624706,4
+56638281,11624706,3
+48511722,11624706,3
+55897235,11624706,4
+61608869,11624706,4
+giddens,11624706,4
+Tartan,11624706,4
+42338087,11624706,4
+hqi7,11624706,3
+44022585,11624706,4
+michaelswift,11624706,4
+dreamIsland,11624706,5
+liujiaqi-linda,11624706,5
+miao1211211,11624706,5
+Jackieee_28,11624706,3
+1725577,11624706,3
+49711912,11624706,4
+83767002,11624706,3
+janeyyxl,11624706,4
+76867360,11624706,4
+44317755,11624706,4
+39452521,11624706,5
+50605102,11624706,3
+46087148,11624706,4
+46812658,11624706,4
+86728823,11624706,5
+81958013,11624706,3
+im_miki,11624706,3
+6644981,11624706,4
+42796272,11624706,4
+yuexiaokan,11624706,-1
+yuexiaokan,11624706,-1
+piaoweier,11624706,3
+zshh012,11624706,4
+50687127,11624706,3
+summerleileilei,11624706,4
+62504788,11624706,4
+54098652,11624706,3
+Ruby-Janet,11624706,5
+82228274,11624706,5
+crossroad123,11624706,4
+3772203,11624706,5
+27944987,11624706,4
+52013531,11624706,5
+tinka,11624706,3
+76349463,11624706,4
+58916644,11624706,-1
+littleocean,11624706,5
+goldfish0505,11624706,5
+3329619,11624706,1
+68207288,11624706,3
+63015769,11624706,4
+heechual,11624706,5
+122527861,11624706,3
+68964467,11624706,5
+DearHuman,11624706,4
+45922244,11624706,4
+limingquan,11624706,3
+baizi886,11624706,4
+102446549,11624706,5
+Ajisao,11624706,5
+45786438,11624706,3
+48182921,11624706,5
+49212885,11624706,3
+71585704,11624706,4
+122757661,11624706,3
+campbellding,11624706,2
+80324496,11624706,3
+hollishob,11624706,1
+tianhuixue,11624706,3
+Jane-L,11624706,4
+Jane-L,11624706,4
+madeleinejiang,11624706,4
+yeung123,11624706,3
+tracy123456,11624706,4
+imyuyu,11624706,3
+Forrestgary,11624706,3
+3561547,11624706,4
+52726734,11624706,5
+45505895,11624706,1
+49759767,11624706,3
+Georgewen,11624706,5
+84710865,11624706,5
+63834933,11624706,3
+4340099,11624706,-1
+4363393,11624706,4
+aptx1010,11624706,5
+93860124,11624706,5
+119559372,11624706,4
+122273764,11624706,4
+3932603,11624706,4
+3932603,11624706,4
+eeiceeic,11624706,3
+73627549,11624706,4
+lunar-month,11624706,5
+70446008,11624706,4
+119644008,11624706,4
+59561773,11624706,5
+naier,11624706,3
+129051527,11624706,3
+46589297,11624706,5
+49528893,11624706,2
+Isabella0712,11624706,4
+xiaoyushudai,11624706,5
+cecilylmy,11624706,4
+54176828,11624706,3
+Sammyzheng,11624706,2
+2206081,11624706,3
+47950856,11624706,5
+serenalovetony,11624706,5
+36760873,11624706,4
+51188157,11624706,5
+alvie,11624706,3
+99349662,11624706,3
+45767905,11624706,4
+38778496,11624706,1
+fionacaiqi,11624706,5
+77922789,11624706,4
+54326669,11624706,3
+2248658,11624706,4
+luzhiyu,11624706,3
+lecleosal,11624706,4
+57176881,11624706,3
+2711254,11624706,3
+waiwai323,11624706,5
+52460447,11624706,3
+51157596,11624706,3
+42927229,11624706,3
+sususuya,11624706,3
+ringogo,11624706,-1
+1687306,11624706,4
+lwx624,11624706,5
+xiao__F,11624706,4
+xiaopihaierya,11624706,5
+58902530,11624706,4
+23883662,11624706,4
+48983448,11624706,4
+Gmosquito,11624706,4
+tkk1997,11624706,4
+mstripledub,11624706,3
+84608070,11624706,3
+s19910719,11624706,3
+103556883,11624706,3
+48578756,11624706,4
+jollyworm,11624706,3
+volCANo455,11624706,4
+Elsa.pan,11624706,4
+m.1234567,11624706,3
+124454581,11624706,3
+Amandaland,11624706,-1
+75675493,11624706,1
+81812897,11624706,4
+zuoyouyoyo,11624706,3
+yhjs88,11624706,3
+70022132,11624706,5
+4147774,11624706,5
+mp4_20,11624706,3
+81002115,11624706,3
+2230884,11624706,3
+62735975,11624706,5
+52984019,11624706,4
+3509692,11624706,3
+61845685,11624706,3
+cen1126,11624706,2
+126985117,11624706,5
+tianyue,11624706,5
+36927005,11624706,4
+54893820,11624706,3
+57491810,11624706,4
+32460085,11624706,-1
+52481059,11624706,-1
+elliry,11624706,3
+40659159,11624706,4
+erosxx,11624706,4
+79865158,11624706,2
+79734997,11624706,4
+wheatkittymew,11624706,5
+16331608,11624706,4
+lincolnhong,11624706,3
+Just-My-Luck.,11624706,4
+d_minor,11624706,4
+51908064,11624706,3
+79812878,11624706,3
+usagikuma,11624706,3
+goldenfish,11624706,4
+85098746,11624706,3
+3212628,11624706,5
+53724452,11624706,3
+yokawao,11624706,3
+45681506,11624706,3
+92118420,11624706,5
+92118420,11624706,5
+55629625,11624706,3
+52636272,11624706,5
+flytomilan,11624706,4
+boskyout,11624706,4
+sunset0814,11624706,4
+2018111,11624706,3
+kimsunny,11624706,3
+lmz9386,11624706,4
+babiroytina,11624706,5
+Tinyk,11624706,3
+coffeehao,11624706,3
+JUG,11624706,3
+48626964,11624706,3
+122147419,11624706,5
+chenxiliu,11624706,4
+96783169,11624706,5
+36840213,11624706,4
+64746643,11624706,2
+52775018,11624706,4
+everfreeneciel,11624706,5
+JennyDingding,11624706,4
+ruxue,11624706,2
+anjia617,11624706,4
+2326027,11624706,3
+koalalalalala,11624706,4
+52494906,11624706,5
+studyzy,11624706,4
+gianostalgia,11624706,3
+gunjoubiyori,11624706,-1
+ftgaox,11624706,4
+34276741,11624706,4
+2226586,11624706,5
+summerious,11624706,4
+65301310,11624706,5
+46337332,11624706,3
+nildesperandum,11624706,3
+loafingnick,11624706,5
+128122831,11624706,3
+giliani,11624706,4
+hazeleye88,11624706,5
+124030710,11624706,4
+wutianxiang,11624706,4
+32934464,11624706,3
+68788637,11624706,5
+2777833,11624706,5
+xiaodaoyang,11624706,4
+49137557,11624706,3
+122711085,11624706,4
+15382684,11624706,3
+4239816,11624706,5
+dana111111,11624706,4
+marlborosin,11624706,3
+47376302,11624706,4
+29844884,11624706,3
+suxiaopo,11624706,3
+75149708,11624706,4
+48787100,11624706,2
+46579498,11624706,4
+savagett,11624706,3
+klaus2015,11624706,3
+54051998,11624706,4
+jinghanxing,11624706,5
+qianhaowu,11624706,3
+46658511,11624706,4
+greenpasta,11624706,2
+yujingyuan,11624706,4
+cynthiaY0717,11624706,4
+blackemotions,11624706,4
+119322563,11624706,4
+2273373,11624706,-1
+mechant,11624706,-1
+Pabalee,11624706,4
+viona,11624706,5
+1749296,11624706,3
+cherub235,11624706,4
+JOOOO,11624706,4
+catiou52r,11624706,4
+4415692,11624706,2
+enzai,11624706,5
+71990215,11624706,-1
+petitespot,11624706,5
+4207894,11624706,-1
+viatina,11624706,3
+2492062,11624706,4
+3036327,11624706,3
+46453072,11624706,3
+kenmark,11624706,4
+ooo000ooo,11624706,4
+79027376,11624706,4
+2357091,11624706,3
+chocochocolat,11624706,-1
+48095786,11624706,5
+42337937,11624706,5
+53980473,11624706,3
+3064610,11624706,3
+15461817,11624706,4
+27668778,11624706,4
+75182939,11624706,3
+IMINCR,11624706,3
+43343192,11624706,4
+3588360,11624706,2
+71873825,11624706,5
+4499258,11624706,5
+45375152,11624706,5
+TheWomanInBlack,11624706,1
+AILUHAN123,11624706,4
+46919006,11624706,3
+jiayi6616,11624706,4
+53809597,11624706,4
+70862713,11624706,5
+71867993,11624706,5
+lele8,11624706,5
+arcueid,11624706,3
+bigvincy,11624706,4
+ianwatson,11624706,5
+73847256,11624706,3
+54403769,11624706,3
+qiqi227,11624706,4
+lovingmomo,11624706,4
+2186902,11624706,-1
+46038574,11624706,3
+43904088,11624706,5
+1054914,11624706,3
+45641492,11624706,4
+Potatosoup,11624706,4
+51598719,11624706,4
+38085562,11624706,4
+violetawong,11624706,5
+63162453,11624706,3
+harukimlee,11624706,4
+angelazang,11624706,4
+everlastingblue,11624706,4
+oxygen02,11624706,3
+jingmeng_xiahti,11624706,4
+nielu,11624706,5
+73932734,11624706,4
+1963086,11624706,5
+72357492,11624706,5
+kana14,11624706,1
+kana14,11624706,1
+33328418,11624706,4
+Avila_Yin,11624706,3
+1320248,11624706,4
+foxyfoxyfox,11624706,4
+cantforgetka,11624706,4
+53942251,11624706,5
+58801678,11624706,5
+122869293,11624706,5
+Garbowho,11624706,3
+121950217,11624706,3
+87942128,11624706,5
+IceKey,11624706,3
+dreariness,11624706,5
+76839665,11624706,5
+yanniyanni,11624706,5
+49355592,11624706,4
+freelyclouding,11624706,4
+50003038,11624706,5
+ice_pudding,11624706,3
+philette,11624706,5
+jyjohnny,11624706,-1
+79334573,11624706,1
+agenta,11624706,4
+34061777,11624706,4
+flyingfish568,11624706,4
+13766234,11624706,5
+40559395,11624706,2
+Uroboros,11624706,4
+ariafield,11624706,3
+50935316,11624706,5
+42663284,11624706,4
+vickichen21,11624706,5
+3681089,11624706,4
+AnaerobicResp,11624706,4
+hearleung,11624706,3
+momoshuo,11624706,3
+2761893,11624706,2
+69216033,11624706,5
+cyc_1124,11624706,5
+73403895,11624706,2
+halfling,11624706,3
+yuanziwei,11624706,3
+SamsonOu,11624706,2
+4032421,11624706,3
+myhot,11624706,3
+magieq,11624706,4
+70454973,11624706,5
+soul_epic,11624706,4
+51686088,11624706,4
+7085324,11624706,5
+kiki-naruto,11624706,4
+59367397,11624706,3
+58691394,11624706,3
+godblessecho,11624706,3
+50629676,11624706,4
+Ubisigil,11624706,3
+limpid-eyes,11624706,3
+85994648,11624706,5
+yamap9thApr.,11624706,3
+sissyyyy,11624706,4
+13976232,11624706,3
+elephanthuihui,11624706,3
+64306414,11624706,4
+53564221,11624706,3
+annieangel,11624706,4
+nuriazsy,11624706,3
+kovivida,11624706,3
+nightldj,11624706,-1
+phoenixfannie,11624706,3
+48636560,11624706,5
+131663027,11624706,4
+38040905,11624706,3
+jichan,11624706,5
+wcwc,11624706,5
+yihuiw,11624706,-1
+49636511,11624706,5
+56997985,11624706,3
+66335514,11624706,3
+17114874,11624706,-1
+67541144,11624706,4
+47659163,11624706,3
+lycinspire,11624706,5
+liangyingnicole,11624706,5
+zongziwang,11624706,3
+entelechie,11624706,5
+91868202,11624706,5
+ClockSheepZ,11624706,4
+44600352,11624706,2
+2023391,11624706,3
+41829211,11624706,4
+changertebieer,11624706,3
+45569084,11624706,4
+diudiu0802,11624706,5
+41662587,11624706,4
+2605445,11624706,4
+nianmo,11624706,3
+fkeer,11624706,-1
+oopsvanessa,11624706,-1
+zhoulucy,11624706,5
+yangfu,11624706,5
+yy0611,11624706,-1
+72207422,11624706,5
+Sailu,11624706,4
+allets,11624706,3
+lorienlove,11624706,3
+55962178,11624706,4
+51299697,11624706,4
+31571750,11624706,3
+jorney88,11624706,4
+67981371,11624706,5
+liyinqi,11624706,5
+just-know,11624706,5
+fealty93314,11624706,4
+52286623,11624706,3
+3623173,11624706,3
+maoduoli,11624706,4
+37968335,11624706,4
+70117025,11624706,3
+harrymoon,11624706,4
+55385860,11624706,4
+Houdong,11624706,3
+aTeeksI,11624706,4
+Vantt,11624706,2
+Lylaohyeah,11624706,5
+aichendouban,11624706,3
+81628764,11624706,4
+47587724,11624706,4
+zaizaiyoxi,11624706,5
+40593676,11624706,4
+118862756,11624706,4
+rainbow-fish,11624706,-1
+66193299,11624706,5
+62524902,11624706,3
+4422335,11624706,4
+80348933,11624706,3
+late_,11624706,4
+keiiii,11624706,4
+pompomlai,11624706,4
+violetyyx,11624706,4
+zhonghanqing,11624706,4
+hihuyue,11624706,3
+LoveScarlett,11624706,5
+56179604,11624706,4
+70595719,11624706,3
+30067864,11624706,-1
+lyricless,11624706,5
+47773223,11624706,-1
+66991726,11624706,5
+xinzhouyang,11624706,4
+ricy-rice,11624706,-1
+75561690,11624706,1
+bselsie,11624706,2
+75475788,11624706,3
+129369858,11624706,3
+44079904,11624706,3
+64595804,11624706,3
+LeeKitWing,11624706,4
+50290697,11624706,3
+monneko,11624706,5
+monneko,11624706,5
+GraceBinbin,11624706,4
+58535720,11624706,3
+huangjunkun,11624706,5
+114422467,11624706,4
+58061567,11624706,5
+55814996,11624706,5
+foreveryoung01,11624706,2
+chanel0214,11624706,3
+AkaSedative,11624706,5
+Greewii,11624706,3
+54983344,11624706,5
+hill__,11624706,3
+92135501,11624706,5
+53741508,11624706,5
+vicky1115,11624706,4
+81840973,11624706,3
+abcclk,11624706,4
+toprocku,11624706,5
+belovedme,11624706,3
+38924619,11624706,2
+susimai,11624706,2
+41640054,11624706,4
+82217473,11624706,4
+46741446,11624706,3
+wuxiang1203,11624706,3
+70173493,11624706,3
+joyque,11624706,4
+84499099,11624706,5
+52046312,11624706,4
+Sadish,11624706,1
+Charlotte.Q,11624706,3
+milanlee,11624706,4
+69121114,11624706,4
+wildno,11624706,5
+whisphether,11624706,1
+119967062,11624706,5
+14750296,11624706,4
+konghanlei,11624706,5
+52308080,11624706,4
+63016674,11624706,4
+49718559,11624706,3
+chesanqi,11624706,3
+49576668,11624706,4
+cigi,11624706,3
+131592651,11624706,4
+42431883,11624706,4
+83892628,11624706,3
+nicole24,11624706,3
+57260239,11624706,4
+evolhjt,11624706,3
+june12day,11624706,3
+2853059,11624706,4
+45071374,11624706,-1
+morningqu,11624706,5
+15393217,11624706,4
+58110414,11624706,4
+delicioussalad,11624706,3
+110752603,11624706,3
+skinnymonkey,11624706,4
+64259939,11624706,3
+Meian,11624706,4
+caly_w,11624706,2
+62482652,11624706,4
+30725262,11624706,3
+iamdengdeng,11624706,4
+57390567,11624706,5
+etern1ty,11624706,4
+58129670,11624706,4
+74916567,11624706,4
+2980674,11624706,3
+2189989,11624706,4
+hhriver,11624706,3
+overdriver,11624706,5
+CHHHH,11624706,5
+Francy.,11624706,4
+unshaped,11624706,1
+Octavarium,11624706,5
+54366340,11624706,2
+number814,11624706,3
+119374613,11624706,2
+48165079,11624706,4
+63226211,11624706,4
+chestericc,11624706,4
+meifannao,11624706,4
+78832651,11624706,5
+65649327,11624706,3
+80175824,11624706,3
+131210503,11624706,5
+tigerblack,11624706,3
+shine531,11624706,-1
+34476095,11624706,3
+131018330,11624706,2
+61294090,11624706,4
+weiweiweiwei,11624706,4
+107124348,11624706,4
+61943727,11624706,4
+75865676,11624706,5
+kinas04,11624706,5
+45345873,11624706,3
+7362158,11624706,5
+61233140,11624706,4
+humanafterall,11624706,4
+38191056,11624706,4
+47580309,11624706,4
+wendyhsu,11624706,4
+qrq1995,11624706,3
+thisisdaisy,11624706,4
+50203852,11624706,5
+libinhan,11624706,4
+reeboir,11624706,3
+49914947,11624706,4
+1830056,11624706,4
+lilwhite,11624706,3
+sara36,11624706,3
+plastictreeman,11624706,3
+Stephanieman,11624706,4
+39945204,11624706,4
+Saggezza,11624706,5
+42325678,11624706,5
+69090732,11624706,3
+4236071,11624706,4
+47745204,11624706,4
+73142176,11624706,3
+65058502,11624706,5
+yqp1987,11624706,4
+68835916,11624706,5
+75114082,11624706,5
+130983822,11624706,3
+76397529,11624706,5
+Sheeplady,11624706,4
+73696070,11624706,5
+stansphere,11624706,3
+63356616,11624706,3
+49040828,11624706,5
+icecyoko,11624706,3
+Plutoyw,11624706,3
+2542573,11624706,5
+moniswho,11624706,5
+68749013,11624706,4
+61914185,11624706,4
+37519011,11624706,5
+2923837,11624706,3
+79498937,11624706,4
+73942837,11624706,2
+tikchao,11624706,5
+w-libra,11624706,4
+75007342,11624706,3
+Jkoim,11624706,3
+angelalovejane,11624706,5
+63091718,11624706,3
+19103297,11624706,4
+guoooo,11624706,4
+fzw83035379,11624706,5
+122669942,11624706,4
+1406726,11624706,3
+GorgonMedusa,11624706,4
+37377499,11624706,5
+3287912,11624706,5
+26605757,11624706,4
+danasmom,11624706,3
+91420048,11624706,5
+vikawang,11624706,3
+oxolin,11624706,2
+59916348,11624706,5
+93155227,11624706,4
+61800886,11624706,2
+54757798,11624706,5
+91935314,11624706,3
+65141663,11624706,4
+lylilith,11624706,3
+52934173,11624706,3
+48484470,11624706,4
+57144507,11624706,4
+38150776,11624706,3
+tropicalfiiish,11624706,3
+93534509,11624706,3
+balconynemo,11624706,3
+Odera,11624706,3
+4191076,11624706,3
+4191076,11624706,3
+catigloo,11624706,5
+tildali1214,11624706,4
+orry-lee,11624706,4
+hellozhaoyue,11624706,3
+49660684,11624706,4
+lisa-l,11624706,4
+1001637,11624706,3
+avivalovestory,11624706,4
+catrambu,11624706,3
+dnarna_vicky,11624706,-1
+68601720,11624706,5
+smshuimu,11624706,3
+kay0108,11624706,3
+zhangtingrui,11624706,5
+artjam,11624706,4
+christywitch,11624706,3
+bryanqxb,11624706,5
+54127643,11624706,4
+Thulcandra,11624706,3
+2875239,11624706,4
+87911212,11624706,3
+hss18384939520,11624706,4
+102621793,11624706,4
+hughwolfgang,11624706,3
+2422505,11624706,3
+magiahaoking,11624706,4
+50682062,11624706,5
+tintintsang,11624706,3
+peixinzhu,11624706,3
+69808734,11624706,3
+4253202,11624706,5
+70607492,11624706,4
+78934649,11624706,4
+130953760,11624706,4
+43233255,11624706,5
+SuzyMao,11624706,3
+59016388,11624706,5
+4325552,11624706,3
+2563465,11624706,4
+superlaura,11624706,3
+lishiyangmayo,11624706,2
+122598157,11624706,3
+chichengle,11624706,4
+61278455,11624706,5
+alice1016,11624706,5
+91133142,11624706,3
+44834403,11624706,4
+85054280,11624706,4
+er3456qi,11624706,5
+50614819,11624706,5
+Rosier,11624706,4
+73161188,11624706,3
+79148662,11624706,-1
+48135457,11624706,3
+scbox,11624706,3
+48707415,11624706,3
+49297870,11624706,4
+LillM,11624706,4
+108555490,11624706,3
+42368147,11624706,2
+60650660,11624706,4
+wajie1129,11624706,4
+114481299,11624706,3
+41998379,11624706,-1
+74418129,11624706,3
+pragueng,11624706,5
+UnLocking,11624706,3
+shsf-sharon,11624706,3
+62365246,11624706,4
+101112458,11624706,5
+91521812,11624706,4
+19676752,11624706,4
+62122112,11624706,5
+4367312,11624706,4
+67056303,11624706,5
+95243004,11624706,4
+KiLlErsDrEam,11624706,3
+126825775,11624706,3
+qiao517,11624706,4
+129672781,11624706,4
+chacha.0301.,11624706,5
+63021522,11624706,5
+97284261,11624706,4
+cat-in-black,11624706,4
+antmujue,11624706,3
+103220348,11624706,5
+53656219,11624706,4
+68079408,11624706,-1
+56209653,11624706,4
+ayueshuo,11624706,4
+3130304,11624706,4
+102647493,11624706,4
+ccLui,11624706,4
+63941479,11624706,5
+48311981,11624706,4
+58442075,11624706,4
+longya,11624706,4
+64339192,11624706,3
+liangxiaoer,11624706,-1
+41868148,11624706,4
+3582010,11624706,3
+puayin,11624706,4
+5198781,11624706,4
+veronica0607,11624706,-1
+1762955,11624706,4
+43471768,11624706,4
+bobbygd,11624706,4
+cassia295,11624706,4
+52350910,11624706,4
+51287977,11624706,4
+71806570,11624706,3
+49513200,11624706,4
+calamusrain,11624706,4
+60174209,11624706,4
+redwestnoodles,11624706,4
+silverleaforz,11624706,4
+lemonquizas,11624706,5
+47495254,11624706,4
+blueskyfly,11624706,4
+4765874,11624706,2
+125863763,11624706,5
+75652747,11624706,3
+79474538,11624706,-1
+38238382,11624706,-1
+42410152,11624706,3
+w-leaf,11624706,4
+cloudy20011128,11624706,4
+gengdie,11624706,3
+49636760,11624706,4
+shoiihoibjk,11624706,3
+manyandandan,11624706,4
+1811212,11624706,4
+highwind,11624706,3
+28312683,11624706,4
+49107618,11624706,5
+silenceandtears,11624706,2
+64535017,11624706,2
+45157466,11624706,5
+lhomeA7,11624706,3
+etsbin12,11624706,2
+saemahr,11624706,4
+qiuqiuwei,11624706,3
+42022756,11624706,5
+43930540,11624706,5
+slothbug,11624706,2
+Ryanmagic,11624706,4
+41956646,11624706,4
+sashaz,11624706,-1
+christineM,11624706,5
+4314733,11624706,4
+Ceciumleaf730,11624706,4
+xttaa,11624706,5
+Face_Lili,11624706,5
+58155946,11624706,3
+et2o,11624706,5
+56910905,11624706,3
+xiaoweiwang,11624706,4
+46603705,11624706,4
+1914905,11624706,5
+34209599,11624706,5
+lucia1227,11624706,5
+25276718,11624706,4
+57871266,11624706,3
+48232858,11624706,5
+HystericBlue,11624706,5
+54398534,11624706,4
+49833007,11624706,4
+46456770,11624706,4
+youyousina,11624706,4
+shanshanyouli,11624706,4
+32267845,11624706,3
+Karilyn,11624706,3
+57998533,11624706,5
+63364633,11624706,4
+57961574,11624706,3
+thisisbillie,11624706,4
+40625984,11624706,4
+mickypuff,11624706,4
+49162813,11624706,4
+vivaviva,11624706,3
+annale,11624706,3
+tobekalorce,11624706,4
+32878488,11624706,3
+3688402,11624706,4
+101860430,11624706,5
+1225917,11624706,4
+48674547,11624706,3
+im-ling,11624706,3
+78955356,11624706,3
+qiluoluo,11624706,3
+75595490,11624706,5
+xxzy93,11624706,4
+10034546,11624706,3
+memotown07,11624706,5
+3561865,11624706,4
+48028421,11624706,3
+huanm,11624706,4
+47974911,11624706,3
+74390608,11624706,4
+gonglingzhu,11624706,4
+43730319,11624706,2
+52395639,11624706,4
+84522058,11624706,5
+aropfw1004,11624706,5
+67757768,11624706,4
+76676760,11624706,3
+Wage,11624706,3
+97396333,11624706,4
+51136126,11624706,4
+104818700,11624706,3
+4429970,11624706,5
+122484981,11624706,4
+3599139,11624706,4
+16607791,11624706,3
+125148047,11624706,4
+53911150,11624706,3
+38684935,11624706,5
+divingbird,11624706,2
+41440460,11624706,4
+48806452,11624706,5
+53393620,11624706,2
+yujianxiaoben,11624706,2
+ohahahu,11624706,5
+63677986,11624706,5
+52068105,11624706,4
+zlkent,11624706,4
+84593268,11624706,3
+45753459,11624706,5
+49922437,11624706,4
+102823150,11624706,5
+LilHayah,11624706,5
+3764307,11624706,5
+mirandy,11624706,4
+sheeppark,11624706,5
+wusansui,11624706,2
+42342433,11624706,3
+73751576,11624706,5
+nfyn,11624706,-1
+lephemera,11624706,3
+2186544,11624706,5
+fishy,11624706,3
+36185142,11624706,4
+95817419,11624706,3
+gmrxfx,11624706,2
+SafeHaven,11624706,4
+57701070,11624706,3
+ldf320,11624706,-1
+61654063,11624706,4
+Sakura-feng,11624706,5
+50151167,11624706,4
+loewely,11624706,4
+pamelayang,11624706,4
+leonh,11624706,5
+75481036,11624706,5
+maraton,11624706,3
+91432391,11624706,4
+lucifer_aster,11624706,5
+lonelyhj,11624706,3
+36738969,11624706,4
+magicpope,11624706,4
+2557763,11624706,3
+lesile,11624706,4
+49041999,11624706,4
+4582318,11624706,5
+2623348,11624706,3
+63481883,11624706,4
+bonnieliu0718,11624706,3
+departed_,11624706,4
+24125064,11624706,4
+Chris.Wu,11624706,3
+3579800,11624706,4
+67216752,11624706,5
+mjpx0510,11624706,4
+momoko_huang,11624706,3
+3564797,11624706,3
+3537703,11624706,3
+75209751,11624706,5
+58323332,11624706,4
+49834330,11624706,5
+puppy22,11624706,3
+ayohan,11624706,4
+122244041,11624706,5
+IcbM,11624706,3
+1834922,11624706,5
+60031080,11624706,5
+TitanNing,11624706,5
+qstc12345,11624706,2
+1895030,11624706,4
+45482570,11624706,3
+1296624,11624706,4
+2517356,11624706,3
+33663451,11624706,4
+mizuki313,11624706,4
+2571976,11624706,4
+hanxiao2060,11624706,5
+38651346,11624706,4
+96490951,11624706,4
+angelfromhell,11624706,4
+pkughost,11624706,4
+yianran,11624706,4
+59061748,11624706,3
+xlee,11624706,4
+jyfang07,11624706,4
+queyao,11624706,4
+47568982,11624706,4
+xiangL,11624706,4
+65758167,11624706,4
+cello22,11624706,3
+38131132,11624706,5
+freeeeeeee,11624706,3
+102599770,11624706,5
+Christina63,11624706,5
+melody4smile,11624706,5
+liang00liang,11624706,5
+54405784,11624706,-1
+paoxiaodi,11624706,3
+vcoke,11624706,4
+jiangfeng1124,11624706,4
+tao1449771080,11624706,4
+51653649,11624706,5
+54003589,11624706,3
+123422446,11624706,4
+sunshine2.0,11624706,2
+xzhyqq866,11624706,4
+pqqy,11624706,2
+91201406,11624706,3
+4290099,11624706,5
+92948260,11624706,4
+38955500,11624706,4
+swwol32,11624706,4
+101864611,11624706,4
+45558720,11624706,4
+4505561,11624706,5
+cjdowson,11624706,4
+79503433,11624706,4
+mengaxin,11624706,3
+silenthinker,11624706,5
+64245643,11624706,4
+3750339,11624706,4
+80347600,11624706,4
+69253645,11624706,5
+41606282,11624706,3
+37031042,11624706,4
+48329538,11624706,5
+many_shang,11624706,4
+lampslovesterry,11624706,3
+83288763,11624706,3
+lena0517,11624706,4
+65662824,11624706,3
+55321453,11624706,5
+Mr-Out,11624706,3
+50610225,11624706,4
+62314072,11624706,4
+4600665,11624706,3
+57245569,11624706,2
+52269752,11624706,5
+79855225,11624706,3
+124669689,11624706,5
+1237270,11624706,5
+43473856,11624706,5
+56169424,11624706,5
+65930236,11624706,3
+miss77-jin,11624706,3
+56710239,11624706,4
+127071890,11624706,5
+40299293,11624706,3
+68810289,11624706,3
+harpsichord7,11624706,5
+Latias,11624706,4
+bingkuaizhuiluo,11624706,4
+126911965,11624706,3
+68993346,11624706,4
+1495292,11624706,4
+60432937,11624706,4
+61089210,11624706,5
+sterol,11624706,5
+128589286,11624706,1
+49141997,11624706,4
+66458815,11624706,3
+3144615,11624706,5
+97211660,11624706,4
+7421779,11624706,4
+38465519,11624706,3
+fengyibeizi,11624706,4
+julia_qi,11624706,4
+abin520918,11624706,3
+asen_shi,11624706,3
+MatinetHP,11624706,3
+50480717,11624706,4
+57359421,11624706,3
+48878740,11624706,3
+116391652,11624706,3
+34187482,11624706,4
+yeyeyoung,11624706,4
+57583046,11624706,5
+yimaer,11624706,3
+67160938,11624706,4
+wanglizhi2014,11624706,5
+davidxuzhao,11624706,3
+niuchen0288,11624706,5
+49684901,11624706,3
+130677816,11624706,2
+Bonnie_yu,11624706,3
+nebgnahz,11624706,5
+58337578,11624706,2
+68436569,11624706,4
+4026025,11624706,5
+lovesicker,11624706,4
+80020848,11624706,4
+arrogantcolonel,11624706,5
+66237715,11624706,4
+49346952,11624706,5
+47835316,11624706,4
+43762131,11624706,5
+69102270,11624706,3
+ChinaHot,11624706,5
+cuixin1976,11624706,5
+71140874,11624706,4
+a476583825,11624706,4
+fireattack,11624706,2
+lena_yue,11624706,3
+T.Shinoda,11624706,5
+121777032,11624706,4
+jacknosparrow,11624706,4
+kevinyan13,11624706,3
+47593124,11624706,2
+z00_not_zoo,11624706,3
+jdumpling,11624706,4
+bayer04040404,11624706,-1
+50769743,11624706,4
+3921078,11624706,3
+lynnhal,11624706,5
+63424113,11624706,4
+53998675,11624706,4
+77105796,11624706,5
+hgbcqz,11624706,5
+shiyun.sherry,11624706,3
+90205716,11624706,5
+bonbont,11624706,5
+kimikochan,11624706,3
+1385455,11624706,4
+42477053,11624706,4
+45712857,11624706,2
+46823456,11624706,3
+KGThunder,11624706,1
+somelolitas,11624706,-1
+wewillrockyou,11624706,5
+52790328,11624706,4
+diana,11624706,3
+shirena,11624706,4
+chassit,11624706,5
+53154018,11624706,5
+chowregina,11624706,5
+xiezhenyu,11624706,5
+4224404,11624706,5
+72748172,11624706,4
+douxiaokou,11624706,3
+45693911,11624706,3
+35736877,11624706,4
+35736877,11624706,4
+laineyq,11624706,5
+olivia_xo,11624706,3
+mandyyuan,11624706,3
+2569116,11624706,5
+2311976,11624706,3
+42948156,11624706,4
+3608735,11624706,5
+crazycathr,11624706,2
+57658746,11624706,5
+75538960,11624706,3
+51790573,11624706,4
+3971838,11624706,4
+43516388,11624706,1
+izume,11624706,5
+Avril_99,11624706,4
+shevjensen,11624706,5
+1832653,11624706,2
+3703915,11624706,5
+cornel1a,11624706,4
+cornel1a,11624706,4
+neptune_smile,11624706,4
+44549735,11624706,4
+3836095,11624706,5
+carinawang,11624706,4
+Kkumako,11624706,4
+gmailchrome,11624706,2
+50352423,11624706,3
+6855830,11624706,2
+58011320,11624706,5
+aries23,11624706,3
+sinpor,11624706,3
+6442650,11624706,5
+evenone,11624706,4
+iceak,11624706,-1
+maoamao,11624706,2
+62202666,11624706,4
+bluetracy0113,11624706,4
+joyceiveryin,11624706,4
+51888816,11624706,4
+chellechen,11624706,3
+2650987,11624706,2
+1643427,11624706,4
+49057443,11624706,3
+dannyZ,11624706,4
+109142318,11624706,4
+cyblocker,11624706,3
+Luciferre,11624706,5
+79676766,11624706,3
+2850261,11624706,3
+johnrn,11624706,4
+truthyfarr,11624706,2
+87838056,11624706,4
+54042597,11624706,3
+roro0306,11624706,4
+jeffchuwei,11624706,4
+sunnie.j,11624706,3
+103559115,11624706,3
+119683375,11624706,5
+memor,11624706,3
+vane0109,11624706,3
+83094433,11624706,2
+62000747,11624706,4
+45968027,11624706,3
+sevenVSseven,11624706,4
+68597225,11624706,4
+3816364,11624706,4
+50489557,11624706,4
+53077082,11624706,5
+2924921,11624706,3
+67011606,11624706,4
+zhuangjinxv,11624706,4
+90479501,11624706,5
+40967366,11624706,4
+76081150,11624706,5
+2441160,11624706,5
+fei2046,11624706,2
+4525795,11624706,3
+34722246,11624706,2
+raymondray,11624706,4
+omenjoy,11624706,5
+cindyyj,11624706,3
+sissistar,11624706,-1
+79329873,11624706,3
+77430587,11624706,3
+timemachine5,11624706,4
+3687712,11624706,5
+121774438,11624706,4
+zebramomo,11624706,4
+3511715,11624706,4
+halfprice,11624706,3
+60271982,11624706,-1
+88078787,11624706,5
+dataroom,11624706,3
+55873737,11624706,4
+127649705,11624706,4
+glinda,11624706,3
+34355509,11624706,4
+Sh1neYuan,11624706,3
+49856775,11624706,4
+49856775,11624706,4
+60988503,11624706,5
+54002286,11624706,5
+dreamscapeout,11624706,4
+36939088,11624706,5
+50900048,11624706,2
+HYGUY,11624706,3
+62124340,11624706,4
+58899374,11624706,3
+63511913,11624706,4
+45385201,11624706,5
+kahei39,11624706,-1
+taiwandelicacy,11624706,5
+67883787,11624706,5
+daisycat,11624706,4
+helianthus249,11624706,5
+125706096,11624706,4
+Qyaoyao,11624706,-1
+3717542,11624706,4
+72974352,11624706,3
+128504601,11624706,5
+Wendy-summer,11624706,4
+suchsu,11624706,5
+80847771,11624706,5
+131278340,11624706,4
+68481342,11624706,4
+wruo,11624706,4
+126702436,11624706,4
+125350437,11624706,4
+utasty,11624706,4
+yubaozilee,11624706,3
+47305840,11624706,2
+130930909,11624706,5
+46569401,11624706,3
+lucyshang,11624706,4
+70750862,11624706,4
+65046912,11624706,4
+60842177,11624706,5
+63955564,11624706,3
+von71224,11624706,4
+84020795,11624706,3
+gionlau,11624706,4
+2529003,11624706,3
+53632841,11624706,4
+2670612,11624706,4
+musiclass3,11624706,3
+54140096,11624706,5
+cristinaburke,11624706,4
+48107309,11624706,5
+mirror814,11624706,4
+45543286,11624706,4
+50414498,11624706,4
+Tachibanaeva,11624706,2
+52259960,11624706,3
+emmalaw,11624706,3
+backinblack,11624706,4
+kuangxx,11624706,4
+deepkid,11624706,3
+55472305,11624706,5
+maggiemars,11624706,3
+maggiemars,11624706,3
+2370731,11624706,4
+maiji,11624706,5
+cloverzxy,11624706,3
+2135192,11624706,2
+2974918,11624706,5
+Pm_wanderlust,11624706,3
+L-U-N-A,11624706,3
+alvinchan1226,11624706,4
+wjw.,11624706,4
+Her_Mione,11624706,3
+4415971,11624706,4
+lianghon,11624706,5
+yyuan9372,11624706,3
+fairyx,11624706,3
+skeletone,11624706,3
+63090885,11624706,2
+molaire,11624706,5
+39415945,11624706,3
+diandiandidi,11624706,5
+78542258,11624706,4
+2728833,11624706,4
+steventeng,11624706,5
+seditionary,11624706,5
+48217590,11624706,4
+PaigeRaw,11624706,3
+65873693,11624706,3
+xqyamour,11624706,3
+qxmy,11624706,3
+124136324,11624706,4
+1763578,11624706,3
+konglingyiQQ,11624706,5
+yukinari999,11624706,3
+48279582,11624706,2
+icejuicy,11624706,2
+72993383,11624706,3
+3328450,11624706,4
+38513029,11624706,-1
+58499826,11624706,4
+55603094,11624706,3
+44701988,11624706,-1
+Jan2003,11624706,5
+46608685,11624706,2
+35066546,11624706,3
+37599552,11624706,3
+56431218,11624706,5
+JCsama,11624706,4
+83513831,11624706,5
+57892517,11624706,5
+XIAOTUTONG,11624706,4
+YLACHESIS,11624706,3
+74801562,11624706,4
+48995689,11624706,5
+wangmuse,11624706,5
+releven,11624706,4
+18033783,11624706,4
+sandywudi0816,11624706,4
+58913556,11624706,4
+49183070,11624706,-1
+zetto,11624706,-1
+milkynbird,11624706,4
+eiji218837,11624706,-1
+66136937,11624706,3
+MuddyKing,11624706,3
+36049101,11624706,4
+36601365,11624706,3
+iclarasun,11624706,4
+bigpig93,11624706,4
+karly1943,11624706,3
+ambermemory,11624706,4
+spark0601,11624706,3
+18347995,11624706,5
+49842201,11624706,4
+101232797,11624706,5
+FILANIEYOTE,11624706,4
+63595507,11624706,3
+69216233,11624706,4
+CrystalSleeper,11624706,3
+4905074,11624706,5
+2625768,11624706,5
+44576253,11624706,3
+30170220,11624706,4
+adoredmouse,11624706,2
+9828643,11624706,4
+1377992,11624706,-1
+tzhuang,11624706,3
+joranli,11624706,5
+14683656,11624706,4
+37799465,11624706,4
+2325587,11624706,4
+83415261,11624706,4
+75242193,11624706,5
+57880931,11624706,4
+84698699,11624706,3
+1780860,11624706,3
+10898449,11624706,4
+LuckybBamboo,11624706,5
+Artystayshungry,11624706,3
+lline,11624706,-1
+115541155,11624706,3
+120241385,11624706,4
+4117565,11624706,4
+35073852,11624706,5
+wxfloy,11624706,1
+46126944,11624706,4
+wtymarx,11624706,4
+34398672,11624706,3
+MissSurvive,11624706,4
+51992165,11624706,5
+poemorning0326,11624706,3
+grassy,11624706,4
+66692285,11624706,4
+yvankee,11624706,4
+kittenvan,11624706,4
+49945525,11624706,4
+48911200,11624706,5
+52701290,11624706,4
+iceylove,11624706,3
+sky890802,11624706,5
+charlottey,11624706,4
+4728467,11624706,-1
+birdbirdz,11624706,5
+1671193,11624706,4
+78473890,11624706,-1
+52683154,11624706,4
+doudouLee,11624706,4
+FellSpirit,11624706,3
+hecaba,11624706,4
+sooooola,11624706,-1
+HelloMe_2897,11624706,5
+3681409,11624706,4
+destinyzhao,11624706,4
+lyx906,11624706,4
+1068125,11624706,4
+1312162,11624706,4
+3593565,11624706,5
+huafenlan,11624706,3
+seerless,11624706,4
+122247183,11624706,5
+46171648,11624706,5
+81295564,11624706,4
+oldstreetlight,11624706,3
+46885412,11624706,1
+OnionTara,11624706,5
+49981158,11624706,4
+xiaofangma,11624706,5
+49119255,11624706,5
+26969266,11624706,-1
+4391247,11624706,4
+65046838,11624706,3
+48354236,11624706,3
+47003719,11624706,5
+Joesphine.lai,11624706,5
+63530647,11624706,5
+83836566,11624706,4
+68426926,11624706,5
+83022085,11624706,4
+131218585,11624706,5
+66325431,11624706,3
+ultraliuji,11624706,4
+4114032,11624706,5
+4408385,11624706,5
+115943900,11624706,5
+RicoCC,11624706,2
+landway,11624706,3
+56603661,11624706,4
+XXXXCXXXX,11624706,4
+131219917,11624706,4
+52304650,11624706,4
+hellochensasa,11624706,4
+34891674,11624706,4
+88334924,11624706,4
+amao1412,11624706,5
+wdan,11624706,-1
+2289727,11624706,3
+3205834,11624706,4
+130147627,11624706,5
+58810077,11624706,4
+4565407,11624706,5
+50066885,11624706,3
+piratecaptain,11624706,3
+9025203,11624706,5
+35508339,11624706,5
+4339575,11624706,2
+130003497,11624706,4
+xiankanhualuo,11624706,4
+67750760,11624706,4
+MOVIE--KO,11624706,3
+moredarkwhite,11624706,3
+kyd77,11624706,4
+37344756,11624706,3
+1852234,11624706,3
+junojuno,11624706,3
+71560494,11624706,3
+jessica_joy5,11624706,4
+52598210,11624706,4
+62457534,11624706,3
+sinapple,11624706,4
+1099803,11624706,4
+94257080,11624706,3
+calvadosshan,11624706,2
+Nicolelingji,11624706,4
+55885677,11624706,3
+70148567,11624706,3
+Yshine,11624706,4
+rebornsunshine,11624706,5
+zhengweiran,11624706,4
+4242859,11624706,3
+littlekidzouzou,11624706,3
+129276779,11624706,3
+51534769,11624706,5
+88288973,11624706,4
+39605411,11624706,3
+104575422,11624706,5
+55864337,11624706,4
+simpledeer,11624706,3
+46088268,11624706,4
+2099122,11624706,3
+58249428,11624706,4
+ziminliuri,11624706,3
+AgiHan0221,11624706,5
+rollingpika,11624706,4
+xgtmy95,11624706,3
+61622629,11624706,5
+yingzicao4869,11624706,4
+114381998,11624706,5
+63800631,11624706,4
+loretta110,11624706,5
+53161271,11624706,5
+Youoen,11624706,3
+2948682,11624706,3
+ququjiyi,11624706,3
+2036063,11624706,4
+pxyushu,11624706,4
+yifanElle,11624706,4
+babybottle,11624706,3
+65670261,11624706,4
+13314482,11624706,3
+l.x,11624706,5
+43411603,11624706,3
+47100950,11624706,3
+64794289,11624706,2
+ppa007hot,11624706,3
+83019906,11624706,5
+jouk,11624706,-1
+karasu419,11624706,3
+lobey,11624706,3
+34390825,11624706,3
+70119569,11624706,3
+miziiiiii,11624706,5
+68539735,11624706,4
+adonis72,11624706,3
+suntheyue,11624706,4
+57969399,11624706,5
+55568427,11624706,5
+reneech,11624706,4
+78091979,11624706,4
+4558486,11624706,4
+le-lucermair,11624706,5
+littledorothy,11624706,5
+schuni,11624706,3
+51587083,11624706,3
+50883641,11624706,5
+yaoyuanzhai,11624706,2
+122124788,11624706,3
+April_S,11624706,3
+71929336,11624706,4
+annko,11624706,4
+43462039,11624706,5
+2723015,11624706,4
+60859710,11624706,5
+3914295,11624706,3
+xiaoyuhen,11624706,3
+colorwindeer,11624706,3
+Mizleave,11624706,4
+salted-fish,11624706,5
+far-deep,11624706,5
+58291702,11624706,3
+63818424,11624706,5
+evazhangwow,11624706,2
+51411876,11624706,4
+joyce19920111,11624706,5
+83141101,11624706,4
+76996269,11624706,-1
+62515963,11624706,2
+52157367,11624706,2
+ktsobright,11624706,3
+22429107,11624706,2
+dearbeast,11624706,4
+28876488,11624706,4
+4024148,11624706,5
+yakomoz,11624706,4
+dawenxi,11624706,2
+EmmaQiu,11624706,4
+2596592,11624706,3
+100727683,11624706,4
+2834405,11624706,2
+66178984,11624706,5
+76075796,11624706,5
+songya247,11624706,5
+kyhero,11624706,3
+jzcatherine1990,11624706,5
+47101317,11624706,5
+violetljj,11624706,4
+57392362,11624706,5
+toby_7,11624706,4
+obliviosage,11624706,3
+cindychan89,11624706,4
+22704847,11624706,4
+89436393,11624706,4
+leeqi,11624706,5
+68918996,11624706,4
+aquak2,11624706,5
+58426160,11624706,3
+1454015,11624706,2
+softpur,11624706,4
+loulou-mae,11624706,5
+vampire0312,11624706,4
+tttif,11624706,4
+89602947,11624706,-1
+89602947,11624706,-1
+recheng,11624706,4
+3000438,11624706,4
+49228717,11624706,3
+2044636,11624706,3
+121885852,11624706,4
+48829724,11624706,4
+cherry0908,11624706,3
+49444615,11624706,4
+16237835,11624706,4
+ednnaLan,11624706,5
+17748095,11624706,3
+51328750,11624706,3
+alan_fanfan,11624706,4
+55356495,11624706,3
+larisali,11624706,4
+40994633,11624706,3
+4107805,11624706,5
+53855768,11624706,2
+50855912,11624706,2
+74301144,11624706,5
+raven1916,11624706,3
+singlesinger,11624706,2
+2913201,11624706,5
+46220008,11624706,5
+heixxj,11624706,3
+itscd,11624706,2
+sophytao,11624706,4
+lansehetao,11624706,3
+14348215,11624706,4
+ameliejia,11624706,4
+judeli,11624706,3
+foreverlethe,11624706,4
+2374763,11624706,5
+47729298,11624706,4
+pandaneko,11624706,3
+75888884,11624706,3
+44338831,11624706,4
+63976517,11624706,5
+38774242,11624706,3
+50219893,11624706,3
+39382938,11624706,4
+64260595,11624706,4
+68572215,11624706,5
+juixy,11624706,4
+28288520,11624706,2
+3239610,11624706,4
+1159054,11624706,4
+66340058,11624706,5
+47622051,11624706,2
+hhhhhhhhhhhh,11624706,4
+26891626,11624706,3
+duanbaba,11624706,4
+bigseaurchin,11624706,4
+armins,11624706,4
+68866486,11624706,3
+doraeomon0620,11624706,-1
+51967154,11624706,1
+terrubunny,11624706,4
+4890225,11624706,5
+Lethe.Lee,11624706,4
+41073953,11624706,5
+36805272,11624706,4
+rockyanhua,11624706,4
+36207779,11624706,4
+tieofash,11624706,4
+53083429,11624706,4
+68460930,11624706,5
+walkeri,11624706,4
+55836344,11624706,5
+49597047,11624706,4
+2632594,11624706,4
+2248138,11624706,3
+57676648,11624706,5
+silencewong,11624706,3
+66967830,11624706,4
+4477044,11624706,4
+cowsumy,11624706,5
+61775783,11624706,5
+46103242,11624706,4
+missdonglian,11624706,3
+GracieLee,11624706,4
+35301521,11624706,5
+nancy516,11624706,2
+lrshmily,11624706,5
+126302017,11624706,4
+33285857,11624706,4
+sunnykatty,11624706,3
+78833399,11624706,4
+paperboat,11624706,-1
+60021134,11624706,5
+69158289,11624706,5
+monday,11624706,5
+2442355,11624706,5
+sdayor,11624706,3
+60094901,11624706,2
+2959380,11624706,4
+crab802,11624706,4
+weiwei06110918,11624706,5
+sallyingying,11624706,4
+yixiugeagnes,11624706,-1
+44869983,11624706,5
+63271231,11624706,5
+34794249,11624706,3
+ffliens,11624706,4
+74721875,11624706,2
+65263408,11624706,4
+ellie0314,11624706,4
+68002540,11624706,4
+aliceliang0907,11624706,4
+82274459,11624706,5
+48502563,11624706,3
+kellangamp,11624706,3
+moi.s,11624706,3
+charrme,11624706,5
+75180994,11624706,4
+eternalcc,11624706,4
+sencillo,11624706,4
+wjx8023,11624706,3
+samantha-jy,11624706,3
+unclewater,11624706,4
+kaolaxing,11624706,3
+4697106,11624706,5
+JeffreyWu,11624706,3
+kid_jianyi,11624706,3
+applesnake,11624706,3
+interskh,11624706,4
+3842951,11624706,4
+67855390,11624706,5
+75522266,11624706,4
+jiduohuanle,11624706,3
+3006805,11624706,4
+49748358,11624706,-1
+71053452,11624706,3
+122979818,11624706,4
+65741899,11624706,5
+55833200,11624706,4
+nishizaki,11624706,2
+66936799,11624706,2
+66057217,11624706,3
+AsleepOrDead,11624706,5
+dahaoren,11624706,-1
+2228048,11624706,5
+daisy46,11624706,4
+AaronMix,11624706,4
+3351796,11624706,4
+hebe_linchao,11624706,5
+60639132,11624706,4
+119569714,11624706,4
+57964231,11624706,3
+fay19881025,11624706,4
+todayseizer,11624706,4
+80297393,11624706,4
+Sam_in_Fangzi,11624706,4
+63092372,11624706,4
+stonekelly,11624706,3
+27985927,11624706,4
+mrnerd,11624706,5
+129789789,11624706,5
+46654545,11624706,3
+EloiseL,11624706,4
+wendy47,11624706,3
+64113505,11624706,4
+giggity_noo,11624706,3
+lizlee0601,11624706,3
+69104253,11624706,4
+49501478,11624706,3
+SophieRu,11624706,3
+48903607,11624706,4
+jiumuccc,11624706,4
+46261300,11624706,5
+harry731,11624706,3
+apple475,11624706,4
+Christar,11624706,-1
+14604910,11624706,4
+54309416,11624706,4
+3682487,11624706,3
+34028726,11624706,3
+wsqsue,11624706,5
+56198749,11624706,4
+56198749,11624706,4
+63989347,11624706,3
+94706323,11624706,3
+se7xn,11624706,3
+128563781,11624706,5
+qiurain,11624706,4
+3959996,11624706,5
+ChocoRum,11624706,4
+55796244,11624706,4
+Tomatochaoegg,11624706,3
+59333652,11624706,5
+89528523,11624706,5
+serein27,11624706,3
+weini0410,11624706,5
+58836800,11624706,3
+75328921,11624706,3
+71389371,11624706,3
+50187661,11624706,5
+qwishu,11624706,4
+4487892,11624706,4
+52781294,11624706,4
+63647300,11624706,5
+62778052,11624706,5
+Hanry7,11624706,5
+12074004,11624706,4
+stockholmsyn,11624706,2
+123389443,11624706,4
+albinoni,11624706,3
+3572881,11624706,4
+89844147,11624706,5
+10321693,11624706,5
+ehaven,11624706,5
+53430385,11624706,5
+greca,11624706,3
+lirovise,11624706,4
+4799920,11624706,4
+3603324,11624706,5
+44176282,11624706,3
+62742561,11624706,5
+RR_Sherrol,11624706,4
+xiaomeng43210,11624706,4
+1608486,11624706,4
+vincentzhz,11624706,3
+56567872,11624706,3
+ertsoe,11624706,4
+24192874,11624706,4
+yanjiaweii,11624706,5
+62672201,11624706,3
+120943212,11624706,3
+baniujun,11624706,4
+mansono,11624706,5
+130718602,11624706,3
+67469687,11624706,5
+70043510,11624706,5
+44050452,11624706,4
+Thing2,11624706,-1
+49158269,11624706,5
+37770382,11624706,5
+2943338,11624706,5
+evanye,11624706,4
+neverfm,11624706,2
+61711901,11624706,5
+69253315,11624706,4
+auntiesarahwang,11624706,3
+lucine_gao,11624706,3
+kenleezzzccc,11624706,4
+61679358,11624706,5
+43241733,11624706,4
+KiD-KiM,11624706,5
+Tracy1230,11624706,3
+boringpang,11624706,4
+diliber,11624706,-1
+fuxiu,11624706,4
+4251957,11624706,-1
+AuroraHotaru,11624706,4
+chedan-NB,11624706,5
+80346808,11624706,5
+34040442,11624706,5
+77389927,11624706,5
+56103306,11624706,5
+7645509,11624706,4
+rebeccajung,11624706,4
+lunargoddess,11624706,5
+1284677,11624706,5
+4051907,11624706,5
+kissorli,11624706,3
+44579499,11624706,4
+36942754,11624706,5
+66782031,11624706,4
+71125053,11624706,5
+51236215,11624706,4
+mrcandy,11624706,5
+53476410,11624706,4
+80442320,11624706,3
+55341093,11624706,4
+Cheeranita,11624706,4
+76157804,11624706,3
+87590424,11624706,5
+48772570,11624706,4
+52792047,11624706,5
+isisiris,11624706,4
+88171857,11624706,4
+aitoutou,11624706,4
+91018361,11624706,2
+happypomelo,11624706,4
+sandysea,11624706,4
+68390243,11624706,3
+130974903,11624706,5
+41142807,11624706,5
+58836160,11624706,4
+65924418,11624706,3
+easonsuu,11624706,4
+72984075,11624706,3
+hewuyou,11624706,2
+qingmuwu,11624706,3
+76769424,11624706,5
+falsexiaoweihua,11624706,5
+Erica_say_miao,11624706,5
+47336218,11624706,4
+dadaxiaohang,11624706,3
+3238270,11624706,3
+57639200,11624706,3
+neverland4u,11624706,4
+50980636,11624706,4
+51910569,11624706,5
+62716748,11624706,3
+43942858,11624706,4
+34853481,11624706,4
+35929918,11624706,3
+pp991pp2,11624706,4
+113927921,11624706,2
+ovosophia,11624706,-1
+cristinali,11624706,4
+rabbit_forest,11624706,3
+74719406,11624706,5
+kiraikirai,11624706,4
+90904421,11624706,3
+TwistedZ,11624706,5
+yaoye,11624706,4
+36617215,11624706,4
+36617215,11624706,4
+84833733,11624706,1
+Sandyhz,11624706,4
+GLSQ,11624706,4
+43627642,11624706,4
+60877547,11624706,3
+53791984,11624706,4
+lavendercx,11624706,4
+53447982,11624706,5
+shushibi,11624706,5
+2039887,11624706,3
+66878450,11624706,4
+47022632,11624706,3
+56534538,11624706,4
+xieao123,11624706,4
+49230674,11624706,3
+75189651,11624706,4
+47512500,11624706,5
+67781678,11624706,4
+65536988,11624706,5
+hanzhang9037,11624706,4
+sinikami,11624706,4
+sijilao,11624706,5
+chenxijessica,11624706,3
+diafarona,11624706,4
+gungunyuan,11624706,5
+42332468,11624706,3
+72970549,11624706,3
+21682953,11624706,5
+jushang,11624706,5
+45858265,11624706,5
+117234787,11624706,5
+3895425,11624706,3
+75251795,11624706,2
+blurting,11624706,5
+rachelray83,11624706,5
+gracepeople,11624706,3
+leafly8,11624706,5
+cinvro,11624706,3
+Emmahasbigbelly,11624706,3
+2288833,11624706,4
+zhuangjiahan,11624706,2
+richar-live,11624706,3
+khalilfongmlg,11624706,4
+pumpkin_s,11624706,4
+appreciation,11624706,3
+50174936,11624706,4
+lr777,11624706,4
+60020875,11624706,3
+6961377,11624706,5
+fangbin0516,11624706,2
+southdrift,11624706,4
+40950202,11624706,5
+2401454,11624706,2
+xiaoyouhun,11624706,-1
+62400422,11624706,3
+2298833,11624706,3
+saryta,11624706,3
+47395813,11624706,4
+sisterhood,11624706,5
+58545738,11624706,4
+1121196,11624706,-1
+Nephele,11624706,5
+planeyang,11624706,5
+YvetteFan,11624706,5
+3932688,11624706,4
+64399384,11624706,5
+102862890,11624706,4
+lozzy,11624706,4
+yozoh96119,11624706,4
+kaka_arctic,11624706,3
+hechaozhe,11624706,3
+maixiaohuang,11624706,4
+vincentjones,11624706,3
+3894700,11624706,3
+PennyZZZZZ,11624706,5
+22263173,11624706,4
+53590230,11624706,5
+AllanBen,11624706,3
+zhangzhangzhang,11624706,4
+8839314,11624706,5
+amir0320,11624706,3
+2640900,11624706,4
+shanshanshanqin,11624706,5
+StringAlice,11624706,1
+115857757,11624706,3
+47941742,11624706,4
+64218724,11624706,5
+77901527,11624706,5
+56753356,11624706,3
+75673672,11624706,4
+55915138,11624706,4
+nctcjy,11624706,4
+Broderick,11624706,4
+echodtatu,11624706,5
+cindy_yang70,11624706,5
+77307161,11624706,4
+p2165,11624706,2
+131104086,11624706,4
+mmmmmmiko,11624706,4
+46087498,11624706,5
+4161702,11624706,4
+Tackie,11624706,4
+54440659,11624706,5
+130467406,11624706,5
+53143088,11624706,4
+Penguin.G,11624706,5
+echoooz,11624706,5
+HeartForest,11624706,4
+zhaimozi,11624706,3
+darcy0306,11624706,5
+49391918,11624706,4
+librapapaya,11624706,4
+Earthly,11624706,3
+49074611,11624706,4
+54278419,11624706,4
+ECbunny,11624706,3
+47754409,11624706,4
+92177885,11624706,3
+4860409,11624706,4
+55705224,11624706,4
+findmusic,11624706,4
+60856294,11624706,4
+38008208,11624706,3
+37924793,11624706,5
+44622653,11624706,3
+sherry1004,11624706,4
+1509677,11624706,4
+99084503,11624706,4
+romanticist,11624706,4
+baywreath,11624706,3
+smilingbamboo,11624706,2
+stephaniezl91,11624706,4
+youasshole,11624706,2
+3655806,11624706,4
+2166366,11624706,4
+56523090,11624706,3
+40571177,11624706,5
+oursonkuma,11624706,1
+fureia,11624706,3
+dearmagic,11624706,5
+stormache,11624706,3
+irischou,11624706,5
+ant-me,11624706,5
+Vagabondaggio,11624706,5
+geniustar,11624706,5
+yoyo_ran,11624706,4
+ritaqu1118,11624706,3
+lgq1997,11624706,3
+moiselletea,11624706,4
+48847270,11624706,5
+128012079,11624706,5
+52598445,11624706,4
+amy930,11624706,3
+lucos,11624706,5
+45251073,11624706,3
+45975024,11624706,5
+Chliztian,11624706,4
+mikimake,11624706,5
+S22,11624706,5
+S22,11624706,5
+79913596,11624706,3
+asterchan,11624706,5
+36881560,11624706,-1
+56270845,11624706,5
+94032763,11624706,4
+xing18wei,11624706,3
+jumbod,11624706,5
+94392979,11624706,5
+sysophie,11624706,4
+64649049,11624706,5
+45794051,11624706,5
+solycoco,11624706,3
+126716117,11624706,4
+47852493,11624706,4
+Kesseler,11624706,4
+126809142,11624706,3
+emlia,11624706,3
+72878510,11624706,4
+octo8,11624706,4
+49066075,11624706,4
+gasmen,11624706,5
+AAAxiaowei,11624706,3
+rie-,11624706,4
+3601408,11624706,5
+61453526,11624706,4
+yellowjanet,11624706,5
+58680365,11624706,3
+lxu,11624706,4
+83453591,11624706,4
+zhongxueyin,11624706,4
+74942804,11624706,4
+102688832,11624706,5
+dustinchan,11624706,3
+46397565,11624706,5
+48259477,11624706,3
+mskitten,11624706,3
+lms1997,11624706,5
+58276184,11624706,5
+mangomunky,11624706,4
+zhaodancuc,11624706,4
+52675266,11624706,4
+78475246,11624706,3
+daphneleaf,11624706,4
+54498150,11624706,4
+44561459,11624706,5
+78753463,11624706,4
+131079832,11624706,4
+47297203,11624706,3
+74680055,11624706,2
+58810422,11624706,4
+wwl924,11624706,4
+89268814,11624706,3
+69722979,11624706,4
+peterzhou001,11624706,3
+yinfenggaga,11624706,5
+130601671,11624706,4
+81099629,11624706,3
+130944160,11624706,4
+xixi9000,11624706,4
+6783604,11624706,4
+wangchenmoji,11624706,4
+edward1988,11624706,3
+77151655,11624706,3
+yzone,11624706,5
+marcoooo,11624706,3
+46673618,11624706,4
+68020683,11624706,5
+lanben,11624706,2
+floragrx,11624706,4
+24598372,11624706,5
+SharonShining,11624706,3
+61468495,11624706,2
+77868057,11624706,3
+fafa8343,11624706,4
+callmeblack,11624706,3
+70605081,11624706,4
+dronce,11624706,5
+qingxi52vv,11624706,4
+67083418,11624706,5
+ruilixiurui,11624706,3
+93036792,11624706,5
+33294782,11624706,3
+102015485,11624706,4
+62711685,11624706,4
+72781855,11624706,4
+nensey,11624706,4
+mona_myw,11624706,4
+3741660,11624706,3
+neptunetulip,11624706,5
+45666607,11624706,5
+xiangsijing,11624706,5
+92017914,11624706,5
+103771999,11624706,3
+69653798,11624706,4
+43559686,11624706,3
+47417998,11624706,2
+jasminesyc,11624706,3
+115660168,11624706,5
+oycl,11624706,3
+oycl,11624706,3
+65086608,11624706,3
+vera-cheng,11624706,4
+26322881,11624706,4
+68500162,11624706,4
+Link0406,11624706,4
+52934729,11624706,4
+lyzhie,11624706,3
+104265782,11624706,5
+49872790,11624706,3
+voyasuki,11624706,5
+tout-les-jours,11624706,4
+life_go,11624706,4
+sueinjuly,11624706,5
+54010420,11624706,3
+3871806,11624706,5
+69711546,11624706,5
+zhchtcm,11624706,3
+4068403,11624706,3
+53963419,11624706,2
+scarlett128,11624706,5
+68655237,11624706,4
+49268784,11624706,3
+noland,11624706,3
+83833965,11624706,3
+33973764,11624706,5
+1151347,11624706,5
+129988582,11624706,4
+72959112,11624706,5
+101359749,11624706,3
+61280115,11624706,3
+liangdu,11624706,3
+74622589,11624706,5
+xTristan,11624706,3
+txiaomiao,11624706,4
+1975440,11624706,3
+SANDMANECW,11624706,3
+6846145,11624706,3
+34789541,11624706,3
+69462818,11624706,3
+48427771,11624706,4
+cy-yeah,11624706,5
+49274936,11624706,5
+8505616,11624706,5
+125010605,11624706,5
+79948176,11624706,4
+75188752,11624706,3
+70356127,11624706,4
+annbabyyan,11624706,3
+8438524,11624706,4
+76515207,11624706,4
+fayeneee,11624706,4
+80598687,11624706,5
+52066563,11624706,3
+nodaira,11624706,3
+graceinjune,11624706,3
+73959584,11624706,4
+47701954,11624706,3
+bernadettttttte,11624706,5
+cabaret,11624706,2
+ssqian,11624706,5
+50867193,11624706,3
+44394014,11624706,3
+4391066,11624706,5
+59999741,11624706,1
+fenglimuren,11624706,3
+liveland,11624706,4
+43364606,11624706,5
+68534183,11624706,2
+Weeeeeeeeeeds,11624706,2
+jinsenliao,11624706,5
+dinosaw,11624706,3
+102819112,11624706,4
+sofans,11624706,3
+63977549,11624706,5
+5580906,11624706,4
+yanqichen,11624706,3
+69105248,11624706,4
+48942484,11624706,3
+53644623,11624706,4
+53644623,11624706,4
+Turkeyears,11624706,3
+disheron,11624706,4
+xuyinaxxxxxxx,11624706,4
+nodane,11624706,4
+lemonnade,11624706,5
+lengleng,11624706,3
+M1racle,11624706,3
+saccharinTang,11624706,2
+74249680,11624706,2
+60550213,11624706,4
+alacrity516,11624706,2
+2666412,11624706,3
+45886049,11624706,4
+71181579,11624706,5
+lucyseven,11624706,3
+75928928,11624706,2
+chankawai,11624706,4
+jiangziwen,11624706,3
+58480998,11624706,4
+123608856,11624706,4
+casablancayx,11624706,5
+wangxue1630,11624706,4
+63553338,11624706,5
+43289772,11624706,4
+67404240,11624706,5
+55835098,11624706,5
+50055726,11624706,4
+62354535,11624706,3
+anyu1029,11624706,4
+Feibie,11624706,5
+31622009,11624706,5
+sAviOr7,11624706,4
+77905933,11624706,4
+66833229,11624706,4
+85727973,11624706,5
+48459404,11624706,5
+4775119,11624706,4
+48939039,11624706,5
+129557132,11624706,5
+80689279,11624706,3
+godisseven,11624706,1
+offers,11624706,3
+65688183,11624706,5
+cocageng,11624706,3
+33638024,11624706,-1
+65164486,11624706,3
+sadakofuji,11624706,4
+81812035,11624706,2
+chenxiangworld,11624706,4
+lmorita,11624706,5
+milovejt_,11624706,5
+36650366,11624706,5
+zhixiayufei,11624706,5
+Nanamii,11624706,4
+bunnyshinoda,11624706,5
+61679641,11624706,5
+47999352,11624706,5
+seven76152,11624706,3
+73919831,11624706,5
+david-kwok,11624706,5
+joyasmcdull,11624706,4
+64120728,11624706,3
+94162680,11624706,3
+46919543,11624706,5
+supabed,11624706,4
+130716428,11624706,3
+rainred,11624706,4
+92480816,11624706,5
+hashtable,11624706,4
+sadness,11624706,2
+Haruka105,11624706,4
+FingerRoll,11624706,5
+popoxee,11624706,4
+miumiu444,11624706,-1
+36544535,11624706,4
+49761983,11624706,4
+126755284,11624706,4
+COCOCOQUEEN,11624706,4
+vivianlovesun,11624706,3
+jalouse,11624706,3
+yangshuangblue,11624706,3
+cvisy,11624706,3
+58905615,11624706,3
+kekeximi,11624706,4
+48395509,11624706,3
+yamericanpie,11624706,4
+42798149,11624706,3
+4320404,11624706,3
+shaoyi,11624706,3
+3513714,11624706,3
+maohei,11624706,3
+Free-cat,11624706,5
+131023271,11624706,5
+pennycatii,11624706,3
+lizhenghome,11624706,5
+amoaymo,11624706,5
+37744023,11624706,5
+60303119,11624706,5
+Shnei,11624706,3
+Shnei,11624706,3
+119983358,11624706,4
+87383835,11624706,4
+zz4syz,11624706,5
+50851987,11624706,2
+121539453,11624706,-1
+4618038,11624706,-1
+luskysi,11624706,2
+28026736,11624706,5
+antoniagreen,11624706,4
+drennuz,11624706,5
+sophie1900,11624706,5
+66493866,11624706,4
+breeeeee,11624706,3
+13782040,11624706,5
+47782519,11624706,2
+2323367,11624706,5
+68300650,11624706,4
+gatoyconejo,11624706,4
+seeingever,11624706,5
+2738218,11624706,3
+67072789,11624706,5
+3109604,11624706,5
+65452477,11624706,5
+79272694,11624706,4
+zy421,11624706,4
+2572584,11624706,5
+126143156,11624706,-1
+77847494,11624706,4
+ki-jlp,11624706,3
+helene9933,11624706,3
+catlyn,11624706,3
+ding1yi,11624706,3
+68262611,11624706,5
+xiaotun,11624706,5
+dr_new,11624706,4
+noheeyeon,11624706,5
+61504169,11624706,4
+ChrisNoth,11624706,3
+51284624,11624706,5
+48495016,11624706,5
+Molly_W,11624706,3
+hqwxyz,11624706,4
+65556661,11624706,5
+jimmy78801,11624706,4
+87972286,11624706,5
+arcfat,11624706,4
+yunl988,11624706,3
+49403178,11624706,2
+finalrisk,11624706,3
+53432720,11624706,3
+121702182,11624706,3
+92277810,11624706,5
+64396292,11624706,4
+51602608,11624706,2
+102567750,11624706,5
+43805881,11624706,3
+37266138,11624706,4
+1587535,11624706,2
+90149495,11624706,4
+65957374,11624706,4
+hairh,11624706,5
+58991490,11624706,4
+115807401,11624706,4
+62741933,11624706,5
+annchuu,11624706,4
+lixiaoshall,11624706,4
+43872050,11624706,4
+particles,11624706,2
+phinoda,11624706,3
+lls719,11624706,4
+49255582,11624706,4
+61660180,11624706,3
+78710041,11624706,3
+89747225,11624706,4
+becky7,11624706,4
+121562470,11624706,3
+51152344,11624706,5
+62464125,11624706,4
+93202185,11624706,3
+1373185,11624706,4
+summertail,11624706,3
+sunnianyu,11624706,3
+49672816,11624706,2
+65184093,11624706,4
+gengzi,11624706,4
+65079476,11624706,3
+70006548,11624706,5
+37948273,11624706,4
+tomchil,11624706,5
+sakurawei,11624706,-1
+67451821,11624706,4
+89943749,11624706,4
+woshuoshuoshuo,11624706,5
+40727949,11624706,5
+53854833,11624706,4
+shelleyhsu,11624706,3
+3683409,11624706,5
+cherry1207,11624706,5
+61868098,11624706,4
+julypoem,11624706,3
+68190120,11624706,4
+119456663,11624706,4
+tiebin223,11624706,3
+34724471,11624706,3
+12629797,11624706,4
+Candiceme,11624706,5
+hxlnelson,11624706,3
+70214878,11624706,3
+53959125,11624706,5
+32835447,11624706,4
+62498352,11624706,3
+96370254,11624706,4
+68437259,11624706,5
+118090821,11624706,4
+64463407,11624706,3
+68197528,11624706,5
+xiqi,11624706,4
+62764168,11624706,4
+june0618,11624706,4
+icefishe,11624706,4
+VINCENTVCHAN,11624706,4
+2358466,11624706,3
+2352547,11624706,4
+4154813,11624706,5
+woshixiaoyatou,11624706,3
+52143519,11624706,3
+53185750,11624706,3
+longbookstore,11624706,3
+68694751,11624706,3
+42550528,11624706,5
+58044228,11624706,4
+oakhui,11624706,2
+71221697,11624706,2
+54614951,11624706,3
+17131500,11624706,4
+xunliyu,11624706,3
+43383547,11624706,3
+76393487,11624706,3
+1512865,11624706,3
+yabaliCc,11624706,5
+ukimuknow,11624706,4
+97952005,11624706,5
+1766794,11624706,3
+48227669,11624706,5
+luyut1an,11624706,3
+inkhkkk,11624706,4
+mikeodj,11624706,4
+sharpay0421,11624706,4
+lilyang,11624706,4
+Windbroken,11624706,4
+weiwei1020,11624706,4
+2340742,11624706,4
+60135057,11624706,-1
+eversupersheep,11624706,3
+lotusz23,11624706,4
+fengbao945,11624706,3
+91456037,11624706,4
+130937387,11624706,4
+67126761,11624706,4
+witch5kye,11624706,5
+winter-h,11624706,3
+quarkocean,11624706,5
+miraculousu,11624706,3
+23865191,11624706,4
+vivianbaby0925,11624706,4
+foreverlee,11624706,4
+fxoc,11624706,3
+littlepinkbang7,11624706,4
+der_Baum,11624706,3
+mylittlehero,11624706,4
+joywuyan,11624706,5
+truffle,11624706,5
+erickyee,11624706,3
+violetmelody,11624706,2
+Shyt_summer,11624706,5
+moliguinness,11624706,3
+3100525,11624706,3
+31818887,11624706,4
+kaydays,11624706,4
+Nathancai,11624706,5
+cyrus_wong,11624706,2
+ruthchai,11624706,3
+wendyblueberry,11624706,4
+50576927,11624706,4
+yabincha,11624706,5
+15388173,11624706,5
+garfieldnotcat,11624706,3
+63482372,11624706,3
+71098035,11624706,4
+82776486,11624706,5
+130717797,11624706,3
+54145451,11624706,4
+tinaq,11624706,3
+39818757,11624706,4
+gracebaobao,11624706,4
+amy0303,11624706,5
+77631133,11624706,3
+63631634,11624706,4
+62710614,11624706,4
+2385520,11624706,3
+senji,11624706,4
+32452092,11624706,3
+44425557,11624706,5
+68392675,11624706,3
+64729781,11624706,5
+fyyksyh,11624706,3
+90035714,11624706,5
+KK22,11624706,3
+wish430,11624706,4
+4603766,11624706,4
+90042244,11624706,4
+53369085,11624706,4
+47529878,11624706,3
+33949296,11624706,3
+3386741,11624706,3
+ymli,11624706,4
+echozhan,11624706,5
+Lemonsir,11624706,3
+56533866,11624706,5
+unico626,11624706,5
+61654956,11624706,5
+88162927,11624706,4
+YeLLow_qst,11624706,4
+66345165,11624706,3
+wanghuanming,11624706,1
+53333014,11624706,5
+64658457,11624706,5
+54400449,11624706,5
+62210177,11624706,3
+88077335,11624706,5
+q164511490,11624706,4
+Cherryandtomato,11624706,5
+41675106,11624706,5
+48604788,11624706,4
+2431859,11624706,4
+39255754,11624706,4
+77393842,11624706,5
+58289345,11624706,4
+white_sophia,11624706,4
+white_sophia,11624706,4
+RanQixi,11624706,3
+liutianhong1992,11624706,3
+93666846,11624706,4
+121657475,11624706,4
+127273097,11624706,4
+57707299,11624706,4
+44182814,11624706,3
+dahlie,11624706,4
+81653245,11624706,3
+81339056,11624706,1
+2374847,11624706,3
+59099811,11624706,3
+72573288,11624706,4
+zhangyired,11624706,3
+54811367,11624706,4
+71944144,11624706,5
+green198641,11624706,4
+128583623,11624706,3
+4601191,11624706,4
+4601191,11624706,4
+sweeroty,11624706,4
+qinzibonheur,11624706,5
+sherrykingna,11624706,3
+jael0000,11624706,5
+bianmengso,11624706,4
+39145175,11624706,4
+60011676,11624706,4
+lianghongyu,11624706,5
+45633556,11624706,4
+61721612,11624706,4
+63359487,11624706,4
+74783952,11624706,3
+43215155,11624706,4
+85143816,11624706,2
+62875817,11624706,5
+76916226,11624706,5
+hangecho,11624706,4
+37300814,11624706,5
+97200408,11624706,3
+130828999,11624706,4
+EmilyLin,11624706,4
+82083975,11624706,5
+126896295,11624706,5
+43237878,11624706,4
+81767433,11624706,3
+Kelsey.,11624706,4
+60858827,11624706,4
+65641754,11624706,4
+weirdoToC,11624706,3
+93536234,11624706,4
+c1010123100,11624706,3
+zybxixi,11624706,4
+nicoyan,11624706,3
+juwujian,11624706,3
+75855875,11624706,4
+88212504,11624706,4
+46569195,11624706,4
+lalalatz,11624706,5
+swell1019,11624706,4
+joobe,11624706,3
+100734380,11624706,4
+jyjyjyjyjyjyjy,11624706,5
+89108079,11624706,4
+49470212,11624706,5
+44311860,11624706,4
+savokiss,11624706,4
+DivingWhale,11624706,4
+91024874,11624706,5
+helenrain553,11624706,4
+yb7116163,11624706,4
+56102431,11624706,4
+2910534,11624706,4
+85112816,11624706,3
+94399132,11624706,4
+86950901,11624706,3
+zdq108,11624706,5
+62995545,11624706,3
+71316784,11624706,3
+75869572,11624706,5
+tvxqjyjxx,11624706,5
+62334058,11624706,2
+62920331,11624706,3
+fantasticmybaby,11624706,4
+azlin0707,11624706,5
+62222208,11624706,5
+130919245,11624706,5
+76744695,11624706,4
+72995081,11624706,4
+junefirst,11624706,5
+58878500,11624706,2
+afa1021,11624706,3
+jujuxiii,11624706,3
+49642517,11624706,4
+suchengmo,11624706,5
+3304164,11624706,3
+82992738,11624706,1
+127944882,11624706,5
+beforetomorrow,11624706,3
+43961228,11624706,4
+44901258,11624706,3
+69388549,11624706,4
+59914430,11624706,3
+another__,11624706,5
+ftium4,11624706,4
+50782420,11624706,3
+74172753,11624706,5
+mayday728,11624706,4
+nashxk,11624706,5
+78658574,11624706,4
+82059571,11624706,4
+42630408,11624706,3
+violette,11624706,3
+71541185,11624706,4
+81178170,11624706,4
+lesleyxu,11624706,4
+syh202,11624706,4
+83771230,11624706,5
+33491311,11624706,4
+a131351634,11624706,4
+77164733,11624706,4
+33919188,11624706,3
+4912264,11624706,3
+johnqz874,11624706,5
+3631042,11624706,5
+130808289,11624706,4
+Awkwardly,11624706,4
+tinyyuan,11624706,3
+68853437,11624706,4
+C7chuqi,11624706,5
+72276081,11624706,5
+1512451,11624706,4
+48055941,11624706,5
+zhoubaicai,11624706,-1
+48480567,11624706,2
+5326502,11624706,4
+sallyal,11624706,4
+49388908,11624706,5
+64651618,11624706,2
+62949180,11624706,3
+66598168,11624706,4
+126340291,11624706,3
+isabell520,11624706,4
+PaPajudy,11624706,3
+122300732,11624706,4
+51828462,11624706,4
+59738934,11624706,2
+60073024,11624706,5
+HL0919,11624706,3
+42629232,11624706,3
+41964570,11624706,4
+lyncia,11624706,4
+MAY2RAIN,11624706,3
+48521109,11624706,4
+elsolmysun,11624706,4
+59099505,11624706,5
+48673876,11624706,3
+jazminzheng,11624706,4
+51402290,11624706,3
+chubbyduke,11624706,5
+59649901,11624706,5
+42084433,11624706,3
+wantyourmore,11624706,3
+92580665,11624706,4
+lanl,11624706,5
+50690264,11624706,3
+125281406,11624706,3
+kidaliu,11624706,4
+73952321,11624706,4
+Ocarshors,11624706,4
+SoniaLu-douban,11624706,4
+115897834,11624706,4
+122872269,11624706,1
+42961895,11624706,4
+cccj.box,11624706,3
+36185739,11624706,4
+67589382,11624706,5
+75803122,11624706,5
+vacodia,11624706,4
+fayyuki,11624706,5
+43603952,11624706,4
+121721694,11624706,5
+48300631,11624706,4
+81003990,11624706,4
+cocacolacat,11624706,4
+daisy_Ning,11624706,5
+58951524,11624706,5
+hika99,11624706,5
+65086893,11624706,5
+charlotjan,11624706,3
+114582318,11624706,4
+83100044,11624706,5
+NF_xian,11624706,4
+74541142,11624706,3
+mly117,11624706,3
+xianyu719,11624706,3
+1177906,11624706,5
+48323179,11624706,4
+sky-captaion,11624706,4
+78656769,11624706,5
+61524961,11624706,4
+115982359,11624706,5
+foolishcat,11624706,4
+mikelpc,11624706,5
+45322158,11624706,4
+43807777,11624706,5
+38300211,11624706,3
+fisin,11624706,4
+46963529,11624706,3
+chitb,11624706,5
+69547285,11624706,5
+56660352,11624706,3
+lijun_,11624706,3
+2006622,11624706,4
+44753719,11624706,3
+43779419,11624706,3
+rachelife930,11624706,3
+doreending,11624706,4
+92133935,11624706,4
+DoDoangell,11624706,5
+61938306,11624706,-1
+btone0808,11624706,4
+toufu88,11624706,4
+balao,11624706,5
+shangyaya,11624706,4
+baoxuerui,11624706,4
+sophie-z,11624706,3
+chitty327,11624706,4
+Cherrie19,11624706,-1
+momogei,11624706,4
+lealan,11624706,3
+55549387,11624706,3
+ele30tin,11624706,3
+im13,11624706,3
+54473705,11624706,4
+kejinlong,11624706,3
+101393970,11624706,3
+103452314,11624706,5
+46260385,11624706,4
+jyamolmiry,11624706,5
+cherryoung,11624706,-1
+hgw92812,11624706,4
+meteora,11624706,5
+65021113,11624706,5
+chancyyoung,11624706,4
+58321445,11624706,5
+42841681,11624706,4
+59604055,11624706,4
+doraqian613,11624706,-1
+wangshaoer,11624706,5
+46591668,11624706,3
+deppmeason,11624706,3
+2438329,11624706,5
+64799751,11624706,5
+ctokyo,11624706,5
+44141060,11624706,3
+jerrysong,11624706,3
+29515987,11624706,3
+59969817,11624706,5
+35890739,11624706,3
+yaozhouyao,11624706,5
+lijinhui,11624706,3
+zyjj141,11624706,3
+featherfancy,11624706,5
+kamoku,11624706,3
+121831939,11624706,5
+60185414,11624706,3
+53683391,11624706,5
+74762963,11624706,4
+emma1127,11624706,4
+tomagreen,11624706,5
+lastone,11624706,5
+yuphymiachin,11624706,5
+doylerao,11624706,4
+44357083,11624706,5
+jialinwonder,11624706,5
+1450381,11624706,4
+72712114,11624706,4
+71779079,11624706,3
+71732006,11624706,4
+71732006,11624706,4
+43480485,11624706,5
+8312118,11624706,3
+christophehj2,11624706,4
+jadezx,11624706,2
+2377434,11624706,4
+55800838,11624706,4
+4614210,11624706,3
+datongtong,11624706,4
+FK621,11624706,4
+59769605,11624706,4
+87069723,11624706,3
+37589827,11624706,4
+super0zero0,11624706,4
+30931856,11624706,5
+51930224,11624706,4
+6517402,11624706,3
+46149652,11624706,5
+Tong323,11624706,3
+2761343,11624706,-1
+hellomaggie,11624706,4
+ennevida,11624706,3
+dearbox,11624706,5
+42709350,11624706,5
+misaai,11624706,4
+fenjinnan,11624706,5
+41140829,11624706,5
+bynl,11624706,4
+psyche213,11624706,3
+bulbosa,11624706,4
+60349370,11624706,3
+baibi,11624706,2
+52370254,11624706,5
+49879461,11624706,5
+ironCC,11624706,3
+rclida,11624706,5
+52828296,11624706,4
+euphymia,11624706,5
+75743298,11624706,4
+51087231,11624706,3
+67695770,11624706,5
+2005598,11624706,4
+45267287,11624706,5
+52843468,11624706,4
+mistletoe57,11624706,4
+53932616,11624706,3
+gaoxiaopang,11624706,4
+wallaceLee,11624706,3
+momomosuck,11624706,-1
+mwqqqqq,11624706,3
+guanjunyan,11624706,-1
+31713107,11624706,5
+2137094,11624706,4
+49937909,11624706,4
+37366321,11624706,3
+zhang91823,11624706,-1
+49402699,11624706,4
+3688568,11624706,3
+luanheart,11624706,4
+49136927,11624706,4
+summer_Remember,11624706,5
+14347413,11624706,5
+62447058,11624706,4
+52413397,11624706,5
+48990593,11624706,4
+laurel-nanr,11624706,3
+valkao,11624706,4
+41419698,11624706,3
+zillyromantic,11624706,5
+49269799,11624706,5
+54754236,11624706,4
+lynshian,11624706,4
+128247761,11624706,5
+49351272,11624706,4
+ejing,11624706,-1
+d.brown,11624706,4
+Ciangie,11624706,5
+ziyoupaifeizai,11624706,5
+sukiss,11624706,5
+missfaye,11624706,5
+skyri,11624706,4
+Maniacwild,11624706,4
+126152053,11624706,3
+40523115,11624706,4
+91028226,11624706,5
+43956642,11624706,5
+maidangdang,11624706,4
+2423875,11624706,4
+nocturnelee,11624706,4
+treeperceiver,11624706,5
+france_lj,11624706,4
+2345303,11624706,3
+2828111,11624706,3
+130154428,11624706,4
+45662792,11624706,4
+49730004,11624706,5
+2829825,11624706,3
+56136584,11624706,5
+75215757,11624706,3
+PC_Mancola,11624706,3
+venoy,11624706,3
+argus,11624706,5
+CookieCrumbler,11624706,4
+ketsuk0,11624706,5
+ruiqigreen,11624706,5
+gingerfung,11624706,-1
+KatoShigeaki,11624706,4
+2651396,11624706,5
+34623045,11624706,3
+4843217,11624706,3
+princesssyn,11624706,4
+46895896,11624706,5
+BethBubbly,11624706,3
+3381034,11624706,-1
+49719880,11624706,-1
+57429985,11624706,3
+62571454,11624706,3
+boyounghua,11624706,4
+hey_m1loca_,11624706,5
+99667209,11624706,5
+80726886,11624706,3
+102838934,11624706,3
+54116667,11624706,3
+dusk.xiyang,11624706,4
+48228248,11624706,4
+TheLittlePrince,11624706,4
+aayccm,11624706,4
+LincolnSixEcho,11624706,3
+foamwhisper,11624706,4
+cherryye,11624706,5
+2545679,11624706,4
+56345053,11624706,5
+52470011,11624706,4
+4536107,11624706,3
+123449328,11624706,4
+47379145,11624706,4
+2592081,11624706,4
+46819662,11624706,4
+44514288,11624706,4
+47849453,11624706,4
+miss-sun,11624706,5
+judy0420,11624706,3
+Baronera,11624706,4
+wsyta,11624706,5
+ice-c,11624706,4
+7542909,11624706,4
+wanglinfei,11624706,3
+DJeliza,11624706,4
+81666481,11624706,4
+123503132,11624706,4
+Awewonderland,11624706,5
+champignon_lou,11624706,4
+luckyanc,11624706,3
+freddy_xu,11624706,4
+46845668,11624706,-1
+125021641,11624706,5
+58079991,11624706,3
+1830523,11624706,3
+22625157,11624706,4
+jingyuwei,11624706,4
+jingyuwei,11624706,4
+127649603,11624706,2
+xisochakaihuale,11624706,4
+62705115,11624706,3
+podolski,11624706,4
+92399399,11624706,3
+joyyyy,11624706,4
+catherinecheung,11624706,4
+37019644,11624706,4
+ys1013,11624706,4
+angelababy_,11624706,3
+jmn_white,11624706,4
+2183176,11624706,4
+76769024,11624706,2
+88236856,11624706,2
+superpanv,11624706,4
+Talushen,11624706,4
+nancyyan,11624706,4
+59546834,11624706,5
+61967626,11624706,3
+4317448,11624706,2
+52159398,11624706,3
+lovestrena,11624706,5
+cathys,11624706,5
+Janone,11624706,2
+Hosee,11624706,5
+choryyu,11624706,5
+91427075,11624706,5
+lyming,11624706,2
+chuangbo,11624706,1
+38243770,11624706,5
+dolcetta99,11624706,3
+120322125,11624706,3
+PoooZz,11624706,5
+wind_field,11624706,3
+liudagui,11624706,3
+48265133,11624706,5
+jochencrynomore,11624706,4
+junlucy,11624706,4
+stevecarell,11624706,3
+59890069,11624706,3
+baixg,11624706,-1
+62318695,11624706,5
+90986289,11624706,4
+redswallow,11624706,5
+silentbean,11624706,3
+qdy67oky57,11624706,4
+36458457,11624706,4
+imnothan,11624706,3
+TsingHsia,11624706,3
+gloriabrigida,11624706,5
+53033730,11624706,5
+Nenya,11624706,3
+sunny_S,11624706,5
+fanyi0109,11624706,5
+82717454,11624706,5
+Sugwene1030,11624706,4
+36326498,11624706,3
+130658738,11624706,4
+nan313,11624706,4
+klovez,11624706,5
+CaptainL,11624706,3
+pandaouka,11624706,4
+13036313,11624706,4
+zhebingjie,11624706,4
+Sunbowinrain,11624706,4
+yin1257,11624706,-1
+yybyale,11624706,3
+czhou,11624706,4
+RATATKAIQI,11624706,2
+3248812,11624706,5
+doneboat,11624706,4
+65545100,11624706,4
+Lreckle,11624706,4
+2295266,11624706,4
+lost-kaine,11624706,3
+rouble-w,11624706,3
+55845400,11624706,4
+4736613,11624706,3
+13038312,11624706,2
+29839010,11624706,3
+71972704,11624706,5
+fancynotgrow,11624706,3
+65123072,11624706,3
+30435959,11624706,5
+31744734,11624706,4
+dssbnxz,11624706,5
+ovanisho,11624706,4
+bigapplers,11624706,5
+53220311,11624706,4
+64325413,11624706,5
+51284540,11624706,2
+anxel,11624706,-1
+4373250,11624706,5
+an_girl,11624706,3
+sunfe2009,11624706,4
+9998453,11624706,4
+wxysmq,11624706,3
+3561552,11624706,4
+53819334,11624706,4
+39107236,11624706,5
+46771775,11624706,5
+20543493,11624706,3
+69186562,11624706,5
+63564385,11624706,5
+115092605,11624706,3
+Eassie.Chen.,11624706,4
+molly1016,11624706,4
+memejoo,11624706,3
+fengyicici,11624706,5
+PCvarment,11624706,-1
+aquar25,11624706,5
+spicybear,11624706,5
+iliuweiming,11624706,4
+PASSMEBY,11624706,4
+47648192,11624706,4
+manyucastle,11624706,5
+chongyin,11624706,5
+banruoliuli,11624706,4
+savvy12,11624706,5
+Espejos_,11624706,-1
+51534915,11624706,5
+fallenstar,11624706,4
+elwingt,11624706,5
+66358226,11624706,4
+89700756,11624706,4
+75954044,11624706,4
+85868315,11624706,4
+69168173,11624706,2
+mo_hui06,11624706,4
+59725036,11624706,4
+glassywitch,11624706,4
+73903391,11624706,5
+59771378,11624706,2
+Valerie21,11624706,-1
+joejoeli,11624706,2
+50272188,11624706,4
+LoveHugo,11624706,5
+33657845,11624706,4
+jishibo,11624706,3
+44104954,11624706,4
+MintDee,11624706,5
+74056494,11624706,3
+52322539,11624706,5
+snowbaby217,11624706,5
+64477541,11624706,4
+54400244,11624706,3
+4147254,11624706,5
+cx9146,11624706,5
+71061278,11624706,4
+irenezlq,11624706,5
+36877826,11624706,4
+William_Locke,11624706,5
+2982114,11624706,3
+35554276,11624706,4
+64741291,11624706,4
+52167289,11624706,2
+89533485,11624706,3
+weizheren,11624706,4
+DERRICK_ROSE,11624706,4
+kalasnikf,11624706,4
+61741541,11624706,4
+2747579,11624706,5
+60624243,11624706,4
+93104938,11624706,5
+65810005,11624706,5
+kuafujingmeng,11624706,4
+amelie421,11624706,5
+2713839,11624706,4
+49219935,11624706,4
+wxhsolo,11624706,3
+SldneyZhang,11624706,4
+nevain,11624706,-1
+43723717,11624706,3
+vigshane,11624706,3
+will_u,11624706,3
+daijialu1992,11624706,5
+2712424,11624706,-1
+50945725,11624706,4
+53257768,11624706,3
+zhugl,11624706,4
+55646304,11624706,4
+56449784,11624706,4
+cat_rs,11624706,5
+mlgg,11624706,5
+kiki204629,11624706,4
+49372573,11624706,4
+Littlesj,11624706,4
+52698885,11624706,3
+48906452,11624706,5
+2896376,11624706,4
+45344133,11624706,4
+50592672,11624706,3
+solavre,11624706,4
+47692546,11624706,4
+49319979,11624706,4
+48153081,11624706,4
+cleantha,11624706,3
+120789819,11624706,5
+80756861,11624706,-1
+iris77here,11624706,4
+ET-Jac,11624706,5
+C-Plus,11624706,4
+chqqq,11624706,5
+58148727,11624706,2
+45549330,11624706,5
+newbear,11624706,4
+80063493,11624706,1
+55614852,11624706,4
+4165611,11624706,5
+suckling,11624706,3
+54479915,11624706,5
+sherlyandnicole,11624706,3
+bainiqiu,11624706,-1
+58049779,11624706,-1
+50970542,11624706,5
+41431459,11624706,4
+123814913,11624706,5
+4521508,11624706,3
+36936880,11624706,4
+yemiaoxihuan,11624706,5
+61078508,11624706,5
+87559103,11624706,4
+zuohengheng,11624706,3
+kellyouka,11624706,3
+guanghui,11624706,3
+115552732,11624706,4
+1979217,11624706,4
+63307905,11624706,4
+lilcur,11624706,5
+aspartameeee,11624706,3
+xingli722,11624706,5
+3656028,11624706,5
+51281553,11624706,3
+L5.P4,11624706,3
+ekkus66,11624706,4
+50331335,11624706,4
+fuckinghate,11624706,3
+48407248,11624706,4
+xiannn,11624706,5
+55657617,11624706,4
+tuanziaifadai,11624706,5
+hengacheung,11624706,5
+helloivan,11624706,4
+xuyanyi,11624706,5
+myjeajoon,11624706,3
+4340710,11624706,3
+75188314,11624706,3
+34274857,11624706,5
+xi_1483,11624706,3
+G--er,11624706,3
+2996311,11624706,3
+6243740,11624706,4
+xw0525,11624706,5
+46266768,11624706,4
+6023961,11624706,3
+Vera_A,11624706,4
+ericandlisa,11624706,3
+wangle_cs,11624706,4
+hiboga,11624706,5
+davidyao1993,11624706,4
+42600622,11624706,-1
+45742129,11624706,4
+wwyzz,11624706,4
+leapmonth,11624706,3
+iwei,11624706,4
+83392570,11624706,4
+rabbitcai,11624706,3
+45496268,11624706,4
+aoniwang,11624706,3
+ibluepurple,11624706,3
+84250012,11624706,4
+cherrydyn,11624706,4
+PureAsWater,11624706,2
+63422177,11624706,3
+47954736,11624706,5
+lucameow,11624706,4
+octopus0831,11624706,4
+WinaWang,11624706,5
+glorymanutd,11624706,4
+stella0122,11624706,5
+Sherlock.B,11624706,3
+yuanzai7,11624706,3
+catvoldemort,11624706,4
+elaine1102,11624706,4
+IAMVILLIAN,11624706,3
+3447044,11624706,3
+74271985,11624706,4
+70279595,11624706,4
+39985476,11624706,5
+4350982,11624706,5
+65507794,11624706,4
+Cicinnurus,11624706,4
+50946864,11624706,5
+54780834,11624706,5
+anrean,11624706,4
+bobolinc,11624706,4
+107481201,11624706,3
+PinKame,11624706,5
+35471670,11624706,3
+65338235,11624706,5
+123921828,11624706,4
+48014594,11624706,4
+amberose,11624706,4
+love270,11624706,3
+zhangsisi333,11624706,4
+58268396,11624706,3
+48773692,11624706,3
+seseserena,11624706,4
+45000436,11624706,4
+3455402,11624706,5
+yinni1990,11624706,3
+vplumage,11624706,4
+yixuananana,11624706,3
+2701375,11624706,3
+S_ilencio,11624706,4
+sunlaomeng,11624706,3
+49001074,11624706,4
+ritaisdead,11624706,3
+RoyBlack,11624706,4
+gomorrha,11624706,5
+czuni,11624706,5
+52636406,11624706,4
+RossoneriViola,11624706,5
+sjk,11624706,4
+chenxiaoyue,11624706,3
+51622953,11624706,3
+petitejoie,11624706,4
+59268463,11624706,4
+depressioncat,11624706,5
+Liircu,11624706,1
+54593861,11624706,3
+lxlkey,11624706,4
+lamovrevx,11624706,4
+4600230,11624706,3
+wongorange,11624706,4
+33019737,11624706,4
+49893647,11624706,5
+50648969,11624706,5
+98514095,11624706,5
+4042513,11624706,4
+3074577,11624706,3
+50624143,11624706,4
+armitt,11624706,5
+Summer_passion,11624706,3
+ceci33,11624706,5
+miyanodorian,11624706,1
+pillbug,11624706,3
+thegreatblueyon,11624706,3
+july8903,11624706,4
+70129406,11624706,5
+ichigotama,11624706,4
+chuxcy,11624706,3
+kangtadlt,11624706,5
+MisaPhantomhive,11624706,5
+miao19890818,11624706,3
+68984410,11624706,3
+125522040,11624706,4
+teresa_leaves,11624706,3
+RivenZhong,11624706,4
+53676497,11624706,5
+serra,11624706,5
+27769783,11624706,5
+64780091,11624706,3
+renyouy,11624706,3
+44853420,11624706,4
+holy-shit,11624706,5
+2220298,11624706,4
+qavril,11624706,4
+53248827,11624706,5
+lovea_ten,11624706,5
+60729529,11624706,5
+sweetcold,11624706,5
+win_ter_bells,11624706,5
+neko_neko_,11624706,5
+53914537,11624706,1
+heryard,11624706,5
+35963638,11624706,4
+4895932,11624706,4
+zhanyangying,11624706,4
+Kulty,11624706,3
+2516991,11624706,4
+xmissx,11624706,4
+shawnNK,11624706,2
+57723007,11624706,4
+41555500,11624706,3
+vermouthsama,11624706,3
+Pincent,11624706,3
+princessing,11624706,4
+90561911,11624706,5
+sinbone,11624706,3
+ivy_xu1992,11624706,4
+53304881,11624706,3
+tunerchiang,11624706,4
+51679757,11624706,5
+michaelji,11624706,5
+xiaoccccc,11624706,5
+icy_u,11624706,5
+parkxiahky,11624706,3
+huangmumu,11624706,4
+momoroe,11624706,4
+64844513,11624706,4
+tgan10,11624706,5
+52811117,11624706,4
+jasoncx,11624706,3
+angelaqe,11624706,3
+57280159,11624706,4
+47008277,11624706,4
+echo920905,11624706,5
+3976831,11624706,5
+subuuti,11624706,4
+50304732,11624706,5
+60127812,11624706,5
+ninjiushinin,11624706,4
+44412900,11624706,5
+steamnoob,11624706,3
+60103645,11624706,5
+weinitadaya,11624706,5
+50212998,11624706,4
+MarquisX,11624706,4
+58956224,11624706,5
+popo0520angle,11624706,5
+81425272,11624706,5
+beersun,11624706,4
+eatswasabi,11624706,4
+58510231,11624706,4
+Gretaoops,11624706,4
+lizzy2005,11624706,3
+9950349,11624706,5
+jiangxu,11624706,3
+madrid9,11624706,4
+um_banana,11624706,4
+littlegreeeeen,11624706,4
+80149039,11624706,3
+76431600,11624706,4
+4624578,11624706,3
+57096958,11624706,4
+125900459,11624706,1
+68406993,11624706,4
+dasyure,11624706,3
+dasyure,11624706,3
+gtl_29,11624706,5
+52705401,11624706,5
+84782971,11624706,2
+Raisin,11624706,5
+minayo,11624706,5
+66836438,11624706,4
+59431029,11624706,3
+3634203,11624706,4
+kamegemma,11624706,3
+p3atlus,11624706,5
+watcherli,11624706,-1
+honeylouisa,11624706,5
+huoshimeng,11624706,5
+54488747,11624706,4
+lazydesigner,11624706,3
+yex,11624706,-1
+LorraineC,11624706,4
+agloriousview,11624706,4
+Yoyo_Yvette,11624706,5
+lilianzly,11624706,5
+yangzhiqiao,11624706,3
+Shiely,11624706,4
+duanzizai,11624706,4
+AcrossTheClouds,11624706,5
+ambrosia.levine,11624706,4
+47923709,11624706,4
+boweidasabi,11624706,3
+latum,11624706,5
+62117726,11624706,-1
+vampireamos,11624706,4
+2785610,11624706,3
+iamsupermimiii,11624706,2
+graceguolinjing,11624706,4
+50728438,11624706,3
+2412669,11624706,5
+Kepong,11624706,4
+61092009,11624706,3
+ywx100407,11624706,-1
+2220167,11624706,5
+2220167,11624706,5
+34521636,11624706,4
+yytaizi,11624706,4
+OOOOSummer,11624706,5
+89972315,11624706,3
+21771687,11624706,3
+36945830,11624706,3
+fengchan,11624706,5
+47681496,11624706,2
+lovelikemagic,11624706,3
+IvyGiggs,11624706,2
+che_yan,11624706,3
+Oolong6636,11624706,-1
+some_Ji,11624706,5
+48963798,11624706,4
+121834283,11624706,4
+59103272,11624706,-1
+iris-m,11624706,5
+3262787,11624706,3
+18360610,11624706,3
+47423865,11624706,3
+freekami,11624706,4
+cat_h,11624706,5
+sisonzhang,11624706,5
+superegg.,11624706,4
+53370793,11624706,5
+71262628,11624706,4
+sundongge,11624706,2
+yrftx,11624706,4
+69986931,11624706,4
+wain1216,11624706,4
+52111433,11624706,3
+42284034,11624706,-1
+smallove816,11624706,-1
+brandnewstart,11624706,2
+100036032,11624706,5
+3922372,11624706,4
+4142157,11624706,4
+1845330,11624706,4
+88603758,11624706,5
+111987071,11624706,5
+78599477,11624706,4
+solanachen,11624706,4
+79262344,11624706,3
+wangqt,11624706,4
+18415825,11624706,4
+48163421,11624706,4
+crazyaquarius,11624706,4
+kelsangmetok,11624706,5
+49761291,11624706,4
+pavi_liu_chenka,11624706,3
+3602718,11624706,5
+jackybaby,11624706,4
+36309870,11624706,5
+36768577,11624706,4
+Te_Qu1ero,11624706,5
+4347027,11624706,2
+naples5,11624706,5
+Vivian77,11624706,4
+48211814,11624706,5
+48211814,11624706,5
+84405567,11624706,4
+47874382,11624706,4
+44669562,11624706,5
+zita07,11624706,5
+83989831,11624706,3
+zhouxin95,11624706,4
+flyingbria,11624706,5
+28275064,11624706,4
+69365887,11624706,5
+70379849,11624706,5
+3540441,11624706,3
+lst_lovetvxq,11624706,4
+3363790,11624706,5
+33970475,11624706,4
+xuaoling,11624706,4
+63359426,11624706,4
+54184798,11624706,3
+74603714,11624706,4
+2821497,11624706,4
+126865052,11624706,4
+vitta_endless,11624706,5
+suan0613,11624706,5
+55919249,11624706,4
+KATHLEEN285,11624706,4
+jonahzoro,11624706,3
+elainemumu,11624706,5
+46920813,11624706,3
+kii-hong,11624706,3
+57285886,11624706,4
+xiaomai99,11624706,4
+50264493,11624706,4
+46963738,11624706,3
+91469568,11624706,5
+4342105,11624706,5
+41670015,11624706,5
+puccaa,11624706,5
+skyline1227,11624706,4
+robin83,11624706,4
+jodiefan,11624706,4
+sunshinezz1991,11624706,5
+Joy1023,11624706,5
+77405771,11624706,4
+Wristcut,11624706,3
+dazhao,11624706,5
+tuoxiaotu,11624706,5
+46340614,11624706,4
+77765189,11624706,3
+5594345,11624706,3
+qixuelun,11624706,4
+dir,11624706,3
+3122796,11624706,5
+facingdwy,11624706,5
+xjrwjh,11624706,4
+louql,11624706,3
+2092985,11624706,3
+59101445,11624706,4
+50566666,11624706,4
+iwhatever,11624706,5
+44651599,11624706,3
+Sharling,11624706,3
+doraeman,11624706,3
+zhecx,11624706,4
+3170426,11624706,3
+49639270,11624706,3
+xiaoyu111,11624706,4
+52776204,11624706,5
+stetehe,11624706,2
+3421868,11624706,3
+2548986,11624706,5
+51393119,11624706,3
+aoaoaoaoao,11624706,5
+mryesbuter,11624706,5
+37405681,11624706,5
+carrieme,11624706,4
+63074108,11624706,5
+39791533,11624706,3
+rpgrace,11624706,-1
+Yaya325,11624706,4
+77013645,11624706,3
+ztftom,11624706,3
+19463611,11624706,4
+45647549,11624706,3
+53037327,11624706,5
+45420804,11624706,4
+stogangan,11624706,3
+61927827,11624706,5
+edocsil,11624706,4
+44289396,11624706,5
+62484889,11624706,5
+zhouweilin,11624706,5
+shinjong,11624706,3
+ayumi,11624706,5
+73763567,11624706,5
+71814187,11624706,5
+58929132,11624706,2
+huilai,11624706,4
+48610227,11624706,5
+DuckLee,11624706,3
+1901217,11624706,-1
+47871037,11624706,4
+odrii,11624706,4
+1665835,11624706,4
+126344543,11624706,4
+58142762,11624706,4
+Phlypig,11624706,3
+1793879,11624706,5
+65547971,11624706,4
+LoveJHart,11624706,3
+qinglianxue,11624706,4
+49383810,11624706,5
+64894018,11624706,3
+50060892,11624706,4
+AustinTsang,11624706,4
+4516503,11624706,5
+conifer,11624706,4
+lhs,11624706,3
+4594513,11624706,4
+smallplaice,11624706,4
+eva1221,11624706,4
+fengzaifei,11624706,4
+50058727,11624706,4
+29818764,11624706,5
+seraphimzhao,11624706,5
+28013682,11624706,4
+littlelu,11624706,3
+78414144,11624706,5
+muorhaha,11624706,3
+33354362,11624706,3
+52765000,11624706,4
+9086239,11624706,4
+60289458,11624706,3
+52835573,11624706,4
+Mwt0708,11624706,4
+sue-ang,11624706,4
+1935824,11624706,3
+Clatyz-Sun,11624706,4
+laihiukei,11624706,5
+sallycastle,11624706,4
+91357531,11624706,5
+48824155,11624706,5
+56465755,11624706,2
+silentjava,11624706,4
+Littlecattle,11624706,3
+cherbing,11624706,3
+cmzcgq,11624706,5
+helicopter,11624706,3
+71455965,11624706,3
+wunching,11624706,5
+3493676,11624706,5
+zhuhuazhaojun,11624706,5
+visonaryJ,11624706,3
+meilixiaoyao,11624706,4
+68324866,11624706,3
+jccycj,11624706,4
+lingrui1995,11624706,3
+diorsunrise,11624706,4
+92318310,11624706,3
+128115257,11624706,4
+120908268,11624706,4
+andriylin,11624706,4
+45539371,11624706,3
+HowShouldIKnow,11624706,5
+1021243,11624706,2
+59202996,11624706,3
+122821584,11624706,5
+47504020,11624706,5
+48746387,11624706,4
+ch4gas,11624706,4
+2640849,11624706,3
+desperado_czy,11624706,3
+hey_saosao,11624706,4
+26273355,11624706,5
+ltec,11624706,5
+yetmeaningless,11624706,3
+muce033,11624706,3
+Mere_77,11624706,4
+8099941,11624706,4
+44304127,11624706,3
+xulu_films,11624706,3
+wubudingyang,11624706,4
+4373804,11624706,3
+flotte,11624706,4
+sweetsss,11624706,4
+acbc115,11624706,3
+48936480,11624706,4
+67231468,11624706,4
+53830411,11624706,4
+27193398,11624706,3
+tanronghong,11624706,3
+52622213,11624706,3
+FlorenceLovers,11624706,4
+69000298,11624706,4
+32023588,11624706,3
+122360797,11624706,4
+zzetazz,11624706,4
+58542369,11624706,4
+40059497,11624706,4
+66141079,11624706,4
+52064761,11624706,4
+muxiaoxu,11624706,4
+wangcan_uu,11624706,4
+jumaomao,11624706,4
+48963112,11624706,-1
+78793402,11624706,5
+53392958,11624706,3
+buleddoll,11624706,4
+58120258,11624706,2
+3374340,11624706,4
+44070862,11624706,4
+45388031,11624706,5
+60871322,11624706,1
+meifyrt,11624706,5
+1503749,11624706,5
+122725527,11624706,4
+LittleChong,11624706,5
+48636409,11624706,2
+yangchunnuan,11624706,2
+127064109,11624706,4
+51301478,11624706,3
+53698727,11624706,4
+51838419,11624706,4
+liyijuan,11624706,4
+66409482,11624706,5
+120088419,11624706,4
+48226644,11624706,4
+rttcat,11624706,5
+114467456,11624706,4
+44282848,11624706,5
+4161339,11624706,3
+echoguo,11624706,5
+Mirandcarey,11624706,4
+jessie811,11624706,-1
+46491501,11624706,4
+lcisco,11624706,4
+114493439,11624706,5
+49545340,11624706,4
+68651338,11624706,3
+49836065,11624706,3
+71985811,11624706,3
+airbunny,11624706,3
+Lingis4real,11624706,4
+ali000027,11624706,4
+40241805,11624706,3
+65895302,11624706,2
+kira1010,11624706,4
+39313826,11624706,5
+73836108,11624706,5
+qinxinzhu,11624706,4
+Hitomi.Len,11624706,4
+infernodolce,11624706,3
+lemengxilexie,11624706,5
+3972030,11624706,4
+3955122,11624706,3
+LANDowner,11624706,3
+46360410,11624706,3
+irenetina,11624706,4
+43969731,11624706,-1
+iamnian,11624706,3
+ryod,11624706,4
+54547206,11624706,5
+43795391,11624706,5
+45146792,11624706,3
+62192019,11624706,3
+65520398,11624706,4
+119543004,11624706,3
+81016849,11624706,4
+79770724,11624706,3
+120797263,11624706,5
+sqxmy,11624706,3
+61260966,11624706,4
+wohaoyouqian,11624706,3
+62498909,11624706,5
+60016338,11624706,4
+tin0101,11624706,5
+90702171,11624706,4
+123004306,11624706,4
+96443589,11624706,3
+YUKi.R,11624706,5
+74778874,11624706,5
+Ellusion,11624706,5
+73545042,11624706,4
+fatfatbird,11624706,4
+xx2086,11624706,2
+2856696,11624706,3
+39105874,11624706,-1
+yalindongdong,11624706,3
+121892422,11624706,4
+88539374,11624706,5
+ruo1996,11624706,3
+55328158,11624706,4
+58343870,11624706,3
+chilam0827,11624706,3
+wann_,11624706,3
+121432553,11624706,4
+71519036,11624706,4
+53536327,11624706,4
+59774628,11624706,3
+58028604,11624706,4
+4467798,11624706,4
+64093040,11624706,3
+77358523,11624706,3
+115299290,11624706,5
+TIAMORIVAYAT,11624706,4
+3043976,11624706,5
+62189600,11624706,-1
+Levora,11624706,1
+moneybear,11624706,4
+ruoren,11624706,3
+53644977,11624706,4
+81476241,11624706,3
+nigelcrane,11624706,3
+stanup,11624706,4
+64121971,11624706,4
+tev,11624706,2
+JOCK,11624706,4
+96948133,11624706,3
+phoebefly,11624706,4
+liiiiiiiii9,11624706,4
+4800478,11624706,3
+4800478,11624706,3
+sodayui,11624706,3
+zhr19951204,11624706,3
+bubblelam,11624706,4
+mademoiselle.F,11624706,3
+bonjourlouise,11624706,-1
+johnmcclane,11624706,3
+Keemen,11624706,2
+ninewords,11624706,4
+lui1990422,11624706,4
+minor69,11624706,4
+weiaiJaychou,11624706,5
+TiramisuPig,11624706,4
+62715368,11624706,4
+56855422,11624706,3
+dudunvmotou,11624706,3
+3488671,11624706,4
+33293861,11624706,4
+48735350,11624706,5
+80526714,11624706,4
+80526714,11624706,4
+cornelia_su,11624706,3
+MacQuen,11624706,4
+54153772,11624706,3
+babe_of_pisces,11624706,5
+1752320,11624706,4
+chloeqx,11624706,4
+17839542,11624706,3
+48573310,11624706,4
+76278431,11624706,4
+82669426,11624706,5
+androidboy00,11624706,2
+av13,11624706,3
+35177324,11624706,3
+vkinoko,11624706,5
+43664862,11624706,3
+105816913,11624706,3
+33201871,11624706,5
+52554533,11624706,2
+hifNKK,11624706,5
+119472529,11624706,4
+96796487,11624706,3
+Phullips,11624706,3
+65882050,11624706,5
+80732468,11624706,4
+50043116,11624706,4
+Earrame,11624706,5
+32960410,11624706,4
+1559168,11624706,2
+ldevil,11624706,5
+1532624,11624706,4
+36030234,11624706,3
+renely,11624706,4
+3874094,11624706,5
+sakamoto1ren,11624706,3
+88032074,11624706,3
+53326407,11624706,4
+42263664,11624706,4
+mymydemon,11624706,3
+58521633,11624706,4
+81968571,11624706,3
+75862610,11624706,4
+119652521,11624706,5
+44440835,11624706,4
+57510931,11624706,4
+64351070,11624706,4
+115957627,11624706,5
+104354748,11624706,5
+53602254,11624706,3
+44810732,11624706,3
+rockrujing,11624706,5
+chelseawangqin,11624706,5
+49183240,11624706,4
+58141131,11624706,5
+emilyyee,11624706,4
+33020931,11624706,4
+80585311,11624706,3
+binben,11624706,3
+tomtit,11624706,4
+jonyzhou61,11624706,3
+81241683,11624706,4
+53319331,11624706,3
+54845025,11624706,3
+kodokoja,11624706,3
+4842786,11624706,3
+42040536,11624706,3
+52728063,11624706,3
+65113652,11624706,2
+lazing0611,11624706,4
+3111680,11624706,4
+57111606,11624706,3
+Longinuss,11624706,3
+a632157547,11624706,4
+74207075,11624706,3
+10149854,11624706,3
+blacksmiles,11624706,4
+supermalin,11624706,4
+57581825,11624706,3
+idmmdi,11624706,4
+kirsten7,11624706,3
+84001065,11624706,5
+59544418,11624706,5
+Elinde,11624706,2
+phoenixjanezhai,11624706,5
+summertalking,11624706,4
+72693532,11624706,4
+48554456,11624706,5
+yuki0215,11624706,4
+bimbo,11624706,4
+44178660,11624706,3
+38460983,11624706,5
+91116783,11624706,4
+83681188,11624706,2
+76995484,11624706,3
+imhqy,11624706,3
+tannin,11624706,3
+lamours,11624706,3
+takigo,11624706,3
+62087328,11624706,5
+79381337,11624706,4
+empfan,11624706,4
+72365328,11624706,4
+57243281,11624706,4
+67470935,11624706,5
+3705062,11624706,3
+56160592,11624706,3
+53323022,11624706,3
+gliuxiaofan119,11624706,-1
+61542214,11624706,4
+74912183,11624706,5
+49708768,11624706,2
+79429863,11624706,3
+city04,11624706,4
+85665063,11624706,5
+kilruk,11624706,4
+65380079,11624706,4
+ingz,11624706,5
+80634044,11624706,4
+csprite,11624706,4
+Huxuan0522,11624706,4
+Huxuan0522,11624706,4
+13557420,11624706,5
+vinvinky,11624706,4
+43716096,11624706,4
+canmao,11624706,3
+genglihui,11624706,5
+48267432,11624706,5
+83294957,11624706,4
+62113425,11624706,4
+85324202,11624706,2
+96591423,11624706,4
+80826623,11624706,4
+sundayikel,11624706,-1
+11041140,11624706,4
+73154787,11624706,3
+joeyada,11624706,3
+vanvin,11624706,3
+43808911,11624706,4
+34600682,11624706,2
+hakueibaby,11624706,4
+sacowiw,11624706,5
+70804320,11624706,4
+saitojinalice,11624706,4
+J7N,11624706,4
+74106981,11624706,5
+49705760,11624706,4
+49901679,11624706,4
+iyuantian,11624706,4
+102916412,11624706,5
+33428878,11624706,-1
+90547930,11624706,2
+83389859,11624706,4
+115688081,11624706,5
+Alex-boil,11624706,4
+63830017,11624706,4
+63127179,11624706,4
+Ikergzy,11624706,4
+lcaesar,11624706,4
+49813950,11624706,4
+54512951,11624706,5
+loneleaf,11624706,3
+sept-itchy,11624706,4
+41601894,11624706,4
+115328270,11624706,5
+42426766,11624706,3
+47873866,11624706,5
+loneblog,11624706,4
+rockdreaming,11624706,4
+62917415,11624706,4
+3423097,11624706,3
+pipopipapipi,11624706,5
+ossianshiwo,11624706,5
+steph6luna,11624706,3
+64191038,11624706,3
+aquarelle12c,11624706,4
+yummy0526,11624706,4
+92846140,11624706,5
+18937847,11624706,3
+108637207,11624706,3
+chinhao,11624706,4
+mazzyoo,11624706,-1
+47591131,11624706,4
+49076335,11624706,4
+tidotuantuan,11624706,4
+Coldkey_Yun,11624706,5
+56812940,11624706,4
+SpiralEnergy42,11624706,3
+deckmond,11624706,4
+xiaoyingge,11624706,5
+46567441,11624706,5
+LOCass,11624706,4
+82643474,11624706,4
+leo2009-12,11624706,3
+yellowishish,11624706,4
+maxine_9395,11624706,5
+ly2019,11624706,4
+58251202,11624706,5
+sharonz,11624706,5
+51168066,11624706,4
+melatielian,11624706,5
+travelforever,11624706,5
+61322137,11624706,5
+bluicezhen,11624706,4
+53969850,11624706,4
+paopao221,11624706,3
+liuanan0606,11624706,4
+89320570,11624706,5
+zr90129,11624706,4
+lutosdan,11624706,-1
+84028552,11624706,3
+46894377,11624706,4
+61509352,11624706,4
+69907714,11624706,5
+impzz,11624706,3
+64213791,11624706,5
+75605847,11624706,4
+huyichen,11624706,4
+grayjade,11624706,4
+joey12255555,11624706,3
+sunflowerqi,11624706,4
+badskull,11624706,3
+62960950,11624706,3
+34000533,11624706,5
+44253995,11624706,3
+66684279,11624706,5
+49999035,11624706,5
+alcudish,11624706,3
+yujiuwei,11624706,3
+4641439,11624706,5
+bihan,11624706,3
+vero_nicat,11624706,4
+63410162,11624706,4
+53854159,11624706,3
+coronis,11624706,5
+76901769,11624706,3
+2917148,11624706,5
+77320088,11624706,3
+95313700,11624706,5
+68339991,11624706,5
+63033488,11624706,4
+101249753,11624706,3
+oathkeeper,11624706,3
+constancef,11624706,3
+lolypop,11624706,5
+xinxinya,11624706,5
+66966914,11624706,3
+Erman-Wei,11624706,3
+53914126,11624706,4
+96666323,11624706,5
+4896950,11624706,5
+39649962,11624706,4
+41747417,11624706,-1
+41014466,11624706,5
+40909728,11624706,2
+mouzhu,11624706,4
+53616337,11624706,4
+75466860,11624706,3
+4244631,11624706,4
+printa,11624706,3
+pandalucia,11624706,5
+emilycou,11624706,3
+problemchildren,11624706,4
+socialism,11624706,5
+W_wanna_Show,11624706,3
+81957032,11624706,5
+Sylein,11624706,3
+65014224,11624706,4
+54058995,11624706,4
+miaoyan,11624706,3
+77176909,11624706,5
+52485054,11624706,4
+sarahvong,11624706,4
+blackshow,11624706,3
+2168233,11624706,3
+52222708,11624706,4
+2229618,11624706,3
+73755227,11624706,5
+yyy1240,11624706,3
+tempe,11624706,-1
+54791351,11624706,5
+90546251,10741643,5
+FrancisM,10741643,5
+65604036,10741643,4
+73530411,10741643,5
+47129931,10741643,4
+130992805,10741643,5
+CCCLAUDIA,10741643,5
+133095436,10741643,1
+131254424,10741643,3
+hooichueng,10741643,4
+kinhyuk,10741643,3
+sunnyskyblue,10741643,4
+5467957,10741643,4
+137141140,10741643,2
+69727866,10741643,2
+57017686,10741643,3
+130022487,10741643,4
+5607891,10741643,4
+60211609,10741643,4
+qstc12345,10741643,4
+42040332,10741643,5
+87956787,10741643,3
+63971578,10741643,4
+dingge,10741643,5
+79163764,10741643,5
+42154685,10741643,4
+69336085,10741643,4
+76798161,10741643,3
+50065002,10741643,4
+67535571,10741643,5
+134519689,10741643,4
+76824704,10741643,5
+2592170,10741643,5
+124574084,10741643,4
+80590035,10741643,3
+88126173,10741643,2
+50933473,10741643,4
+50433409,10741643,4
+a20130819,10741643,4
+sevenplus,10741643,4
+34862856,10741643,3
+135144964,10741643,-1
+101978260,10741643,5
+58004418,10741643,5
+sachi227,10741643,5
+124779733,10741643,4
+13356942,10741643,4
+4270186,10741643,5
+104462145,10741643,-1
+85669909,10741643,5
+136302725,10741643,3
+48920631,10741643,4
+60987007,10741643,4
+yeifan,10741643,5
+136155001,10741643,4
+57335774,10741643,4
+jidoudou,10741643,5
+54202610,10741643,4
+103028393,10741643,4
+VANESUN7,10741643,4
+136327428,10741643,4
+akxs,10741643,5
+Nebulium,10741643,4
+39360207,10741643,4
+103381846,10741643,5
+Amandaland,10741643,4
+130540894,10741643,4
+NikkiG,10741643,5
+92305951,10741643,5
+137541196,10741643,3
+133522204,10741643,2
+120268630,10741643,3
+yueyarom,10741643,5
+50575752,10741643,5
+50759873,10741643,-1
+aiwosuoai55,10741643,3
+happytimeinmay,10741643,5
+lingdongling,10741643,4
+61085061,10741643,4
+49694479,10741643,4
+wuyunoy,10741643,3
+102778571,10741643,4
+59556503,10741643,5
+83743539,10741643,4
+49210030,10741643,4
+97112144,10741643,5
+jaimeshao,10741643,5
+ttoohh,10741643,1
+RIO711,10741643,5
+109220853,10741643,3
+popo324,10741643,3
+nextdoorcat,10741643,3
+92956323,10741643,2
+56025068,10741643,3
+ufokaka,10741643,3
+67387391,10741643,3
+50718650,10741643,5
+38000900,10741643,5
+47801703,10741643,4
+xiaodou52,10741643,4
+38949842,10741643,5
+74434389,10741643,4
+22428297,10741643,-1
+63243620,10741643,3
+54450568,10741643,3
+67182533,10741643,4
+78668917,10741643,4
+48207954,10741643,3
+luxe,10741643,4
+136578921,10741643,3
+67351514,10741643,5
+rainbow0420,10741643,4
+QQQQQQQla,10741643,4
+136499234,10741643,5
+105436862,10741643,5
+andrpirl,10741643,5
+76858812,10741643,4
+69006133,10741643,4
+125966809,10741643,5
+3322909,10741643,4
+40137325,10741643,5
+57260722,10741643,3
+60462039,10741643,4
+50015344,10741643,4
+113345841,10741643,4
+75894621,10741643,4
+gloriachan,10741643,5
+131337124,10741643,4
+AurelianoZ,10741643,4
+130978369,10741643,3
+55434870,10741643,3
+134916252,10741643,4
+62553340,10741643,3
+4037947,10741643,5
+83186660,10741643,5
+54478804,10741643,5
+50573838,10741643,5
+119313402,10741643,5
+88386627,10741643,3
+yun96,10741643,4
+57924290,10741643,4
+artofloving,10741643,5
+88171131,10741643,3
+49733253,10741643,-1
+67823605,10741643,4
+Heaterh,10741643,3
+39108497,10741643,4
+Ac0445,10741643,5
+134222368,10741643,3
+51658550,10741643,3
+jin_yu,10741643,5
+92897764,10741643,4
+114004649,10741643,4
+120962539,10741643,5
+63820149,10741643,5
+kiwikiwifruit,10741643,3
+53890211,10741643,3
+134674209,10741643,5
+my1507,10741643,2
+90681003,10741643,4
+zhuyaoyao,10741643,3
+137221434,10741643,4
+126135923,10741643,4
+137814359,10741643,5
+115125689,10741643,5
+yuancoffee,10741643,4
+44326808,10741643,5
+2565519,10741643,4
+69391297,10741643,3
+137839195,10741643,5
+liorraineQ,10741643,4
+Decadeff,10741643,4
+2114158,10741643,4
+94984772,10741643,4
+63325124,10741643,4
+41758984,10741643,4
+100147983,10741643,5
+88561659,10741643,3
+sosang,10741643,5
+124914342,10741643,5
+79935599,10741643,5
+135230411,10741643,5
+5894610,10741643,4
+68489915,10741643,5
+62253613,10741643,4
+15836656,10741643,5
+52883078,10741643,4
+wuuluuu,10741643,5
+3886889,10741643,4
+ColwatDer,10741643,4
+geminehoo,10741643,3
+103325989,10741643,4
+54685499,10741643,5
+marina08,10741643,4
+135944593,10741643,5
+37947794,10741643,5
+46263513,10741643,4
+21139926,10741643,4
+isnico,10741643,1
+xiexienipeizhew,10741643,4
+stickman,10741643,5
+54350141,10741643,4
+135415686,10741643,4
+54753795,10741643,5
+47037959,10741643,4
+59838683,10741643,4
+4694620,10741643,4
+65123773,10741643,-1
+45884477,10741643,4
+yeqing611,10741643,4
+32103788,10741643,5
+102413399,10741643,4
+122061245,10741643,4
+xianxiansushou,10741643,3
+zeng_,10741643,3
+58899374,10741643,3
+45528332,10741643,4
+98014856,10741643,3
+137505055,10741643,5
+35986168,10741643,1
+131909298,10741643,3
+3538496,10741643,5
+63418813,10741643,4
+121766750,10741643,5
+61541011,10741643,5
+134581502,10741643,4
+58194812,10741643,3
+sherrytu,10741643,4
+29909014,10741643,5
+jonenow,10741643,4
+33150323,10741643,3
+77523023,10741643,2
+6972638,10741643,4
+70406347,10741643,5
+asying,10741643,4
+93510551,10741643,-1
+60774527,10741643,-1
+61607756,10741643,3
+125102922,10741643,3
+102390671,10741643,5
+kazuo,10741643,-1
+51728436,10741643,4
+136941405,10741643,4
+4266454,10741643,3
+51636160,10741643,4
+95078299,10741643,5
+qianyuqianxun-d,10741643,5
+steven_lee,10741643,4
+kiki924,10741643,5
+80395827,10741643,4
+136942011,10741643,4
+88004560,10741643,5
+131560812,10741643,4
+ryannys,10741643,3
+127131340,10741643,2
+45101640,10741643,4
+134580402,10741643,5
+skyjade,10741643,5
+65260404,10741643,4
+84710876,10741643,3
+65260404,10741643,4
+84710876,10741643,3
+136715644,10741643,4
+137510053,10741643,4
+netkr,10741643,5
+55815059,10741643,5
+4848486,10741643,4
+Man7l,10741643,3
+bebestself,10741643,-1
+35632549,10741643,3
+55760527,10741643,5
+dearpluto,10741643,4
+49052740,10741643,3
+82334443,10741643,5
+60925481,10741643,5
+60472087,10741643,5
+98956225,10741643,3
+105434174,10741643,3
+30002561,10741643,4
+127457458,10741643,3
+65060690,10741643,5
+Taiup,10741643,5
+59414653,10741643,5
+55494665,10741643,4
+126467467,10741643,5
+67770308,10741643,3
+34170843,10741643,4
+apple16,10741643,5
+103441649,10741643,4
+57377370,10741643,3
+a869656446,10741643,4
+50648167,10741643,5
+2227798,10741643,4
+runningcheese,10741643,4
+123111535,10741643,3
+67531205,10741643,4
+67851427,10741643,3
+62332371,10741643,5
+3238270,10741643,4
+56568243,10741643,4
+51763262,10741643,5
+barryherb,10741643,4
+flower_N,10741643,4
+jeelychair,10741643,5
+104167946,10741643,2
+137398525,10741643,5
+128353754,10741643,3
+64713560,10741643,3
+29401960,10741643,4
+76543597,10741643,5
+aguaiyang,10741643,5
+dodov,10741643,2
+109252501,10741643,5
+124823100,10741643,5
+119166720,10741643,3
+wt1112,10741643,5
+53717740,10741643,-1
+63854942,10741643,4
+88178355,10741643,4
+136829715,10741643,3
+41127479,10741643,4
+laycher,10741643,4
+130525600,10741643,3
+42577004,10741643,5
+81481225,10741643,5
+73319989,10741643,4
+10596327,10741643,5
+50235107,10741643,4
+81244462,10741643,2
+36623417,10741643,3
+79597559,10741643,3
+simplycomplex,10741643,5
+lovelyladys,10741643,3
+134189178,10741643,5
+55467066,10741643,4
+91140276,10741643,4
+69164081,10741643,4
+63071542,10741643,5
+83040147,10741643,3
+miaotuanzi,10741643,4
+43726684,10741643,3
+77648930,10741643,5
+40872813,10741643,4
+virginia7,10741643,4
+48653408,10741643,5
+50222808,10741643,3
+84558178,10741643,5
+137304863,10741643,-1
+133443731,10741643,4
+72411875,10741643,4
+1689067,10741643,4
+125790890,10741643,4
+68655104,10741643,4
+130654352,10741643,5
+70680125,10741643,4
+85339597,10741643,2
+zaq1xsw2,10741643,4
+cyy9828,10741643,4
+60072437,10741643,3
+137122181,10741643,3
+58513606,10741643,3
+meltyice,10741643,4
+1104481,10741643,3
+46113187,10741643,4
+3481871,10741643,4
+momonian,10741643,4
+beachboyzx,10741643,3
+134417369,10741643,4
+115051698,10741643,3
+3154561,10741643,4
+120567612,10741643,5
+122932689,10741643,4
+131527494,10741643,4
+76295495,10741643,4
+122944258,10741643,4
+59583944,10741643,3
+137004271,10741643,5
+136293291,10741643,-1
+liuzisen,10741643,3
+137196070,10741643,5
+94767276,10741643,4
+123404476,10741643,2
+2457913,10741643,4
+131020888,10741643,3
+127298823,10741643,4
+59545635,10741643,5
+137058497,10741643,2
+zhangjikun,10741643,4
+137058479,10741643,2
+137129598,10741643,5
+79030834,10741643,4
+wanderingizzie,10741643,-1
+134258996,10741643,5
+1626349,10741643,3
+134625303,10741643,3
+80214654,10741643,5
+102568864,10741643,4
+85951065,10741643,3
+130445057,10741643,3
+137061387,10741643,4
+45268716,10741643,4
+135237923,10741643,5
+46482403,10741643,4
+128165523,10741643,5
+60973742,10741643,5
+50717732,10741643,5
+117234787,10741643,2
+65912201,10741643,4
+130563496,10741643,5
+56500125,10741643,5
+aboutisan,10741643,4
+121925373,10741643,4
+61024723,10741643,4
+48090771,10741643,4
+reveur07,10741643,3
+50706220,10741643,5
+131025711,10741643,4
+2482936,10741643,4
+61681574,10741643,4
+74741480,10741643,4
+36962430,10741643,1
+4118910,10741643,3
+68632804,10741643,5
+61360774,10741643,4
+48290457,10741643,5
+137073841,10741643,4
+137076197,10741643,4
+xxd196995,10741643,5
+53067576,10741643,-1
+serphim8,10741643,5
+136926154,10741643,5
+133584467,10741643,4
+wangyuwei526,10741643,4
+xellgio,10741643,2
+maybe520sunshin,10741643,4
+36554914,10741643,4
+zihuihui,10741643,4
+revaoo,10741643,3
+75961277,10741643,4
+66341284,10741643,4
+52408878,10741643,4
+75827650,10741643,1
+122871112,10741643,5
+125140417,10741643,5
+60185886,10741643,4
+mangobird,10741643,3
+tyyaxuan,10741643,1
+121120342,10741643,3
+122868077,10741643,4
+awang406,10741643,-1
+32128581,10741643,4
+63985739,10741643,3
+122656795,10741643,5
+happyniaoniao,10741643,4
+136409582,10741643,4
+danaebirds,10741643,4
+61883535,10741643,4
+Rosemarygirl,10741643,3
+136978639,10741643,4
+103277074,10741643,5
+103277074,10741643,5
+123092442,10741643,5
+37513501,10741643,3
+136333363,10741643,4
+goldenhornking,10741643,4
+47100012,10741643,4
+114257816,10741643,5
+pengyaos,10741643,4
+acagalli410,10741643,5
+70272752,10741643,4
+veritymuma,10741643,4
+3183207,10741643,4
+111739039,10741643,4
+36004124,10741643,5
+61487218,10741643,4
+55447115,10741643,5
+50156062,10741643,5
+132190479,10741643,5
+136252307,10741643,2
+2664010,10741643,4
+128756108,10741643,5
+64715710,10741643,5
+134509898,10741643,5
+84278334,10741643,5
+48641750,10741643,5
+136822821,10741643,4
+41572239,10741643,4
+68166491,10741643,3
+7106437,10741643,5
+79066810,10741643,5
+82261308,10741643,4
+3139782,10741643,4
+yangjing113,10741643,5
+61190847,10741643,3
+136826257,10741643,4
+131716654,10741643,4
+134258576,10741643,4
+68608640,10741643,4
+64954125,10741643,4
+wch2020,10741643,5
+17512993,10741643,2
+Eudemonia-moon,10741643,-1
+shinysue,10741643,4
+aprilM,10741643,5
+woainikakashi,10741643,4
+raeji,10741643,5
+72405316,10741643,5
+91325416,10741643,3
+134854042,10741643,4
+127725949,10741643,4
+mrkingdom,10741643,1
+134546006,10741643,5
+renshaoqun,10741643,5
+65404776,10741643,4
+31015846,10741643,5
+73627901,10741643,5
+84932574,10741643,5
+88780521,10741643,4
+77586152,10741643,5
+90491995,10741643,5
+luoxuan2379,10741643,4
+79497371,10741643,5
+edward2wong,10741643,3
+61292506,10741643,5
+1122936,10741643,4
+66500869,10741643,5
+4668252,10741643,3
+50553222,10741643,5
+jude_chen,10741643,3
+3424418,10741643,5
+92934548,10741643,4
+74446199,10741643,4
+131126079,10741643,4
+133676532,10741643,4
+t-chen,10741643,-1
+47011953,10741643,5
+136695075,10741643,5
+63433587,10741643,5
+JohnnyJiong,10741643,4
+lucy188,10741643,4
+67099663,10741643,4
+47666300,10741643,5
+yixiaoyan_,10741643,5
+99340754,10741643,-1
+77394245,10741643,4
+49612885,10741643,4
+ningjuntao,10741643,4
+feellings,10741643,4
+53297892,10741643,5
+136797650,10741643,3
+134527565,10741643,4
+62618526,10741643,4
+53511350,10741643,5
+wowo1314,10741643,5
+mysalvation,10741643,5
+97553845,10741643,4
+3350852,10741643,3
+xiaoxiao6519,10741643,5
+41471411,10741643,2
+rozing,10741643,5
+129505686,10741643,3
+tutudance,10741643,4
+39126171,10741643,5
+134540692,10741643,5
+58226091,10741643,4
+131854669,10741643,5
+49847142,10741643,3
+4010095,10741643,1
+64825748,10741643,4
+9172847,10741643,5
+46683408,10741643,4
+121780577,10741643,2
+49382503,10741643,5
+72276993,10741643,5
+102129178,10741643,5
+135694361,10741643,4
+75327882,10741643,5
+36760873,10741643,4
+48096896,10741643,4
+57112483,10741643,4
+ORBR,10741643,3
+alanerer,10741643,4
+58511881,10741643,4
+122339967,10741643,5
+33847605,10741643,4
+kiethope,10741643,5
+FindingDory,10741643,5
+57260261,10741643,5
+132575358,10741643,4
+136601824,10741643,3
+87578866,10741643,4
+62151151,10741643,5
+136261330,10741643,5
+48549830,10741643,5
+71868664,10741643,4
+130526552,10741643,5
+shuangji,10741643,5
+Jarry_yang,10741643,4
+113515120,10741643,4
+83387474,10741643,4
+57779611,10741643,5
+4159690,10741643,4
+2736910,10741643,3
+136666408,10741643,3
+43195130,10741643,5
+73598521,10741643,5
+pigback,10741643,5
+8447509,10741643,4
+80466104,10741643,4
+46371660,10741643,5
+mochall,10741643,3
+66036292,10741643,-1
+119330514,10741643,5
+4170547,10741643,5
+Sunbowinrain,10741643,4
+117233942,10741643,3
+53283120,10741643,4
+55798806,10741643,4
+87704099,10741643,-1
+136629246,10741643,5
+Renee_er_est,10741643,4
+2558955,10741643,4
+63167875,10741643,4
+avielwong,10741643,3
+58079311,10741643,-1
+hxtdkz1226,10741643,3
+63058412,10741643,5
+74471598,10741643,3
+73330570,10741643,5
+Cecily,10741643,4
+sgr,10741643,5
+3555700,10741643,5
+87599429,10741643,4
+58144474,10741643,4
+77529017,10741643,4
+91686187,10741643,4
+follytinge,10741643,4
+52243098,10741643,3
+40518476,10741643,5
+1394932,10741643,3
+48965557,10741643,2
+4909186,10741643,4
+45863582,10741643,4
+3329918,10741643,5
+52173305,10741643,5
+leedong1981,10741643,5
+90204789,10741643,5
+evollozer,10741643,5
+48779888,10741643,-1
+4616681,10741643,4
+51245229,10741643,4
+CloudRiver,10741643,4
+129096085,10741643,4
+vivianya,10741643,4
+2882324,10741643,5
+anygned,10741643,-1
+136521207,10741643,5
+4070623,10741643,5
+129274650,10741643,3
+85006439,10741643,5
+125544960,10741643,4
+yaoyaoxiaozhan,10741643,3
+136054482,10741643,5
+47956772,10741643,5
+39636174,10741643,4
+68299813,10741643,4
+136519546,10741643,5
+135949040,10741643,5
+131445784,10741643,5
+50146689,10741643,5
+JTianLing,10741643,5
+bais0630,10741643,4
+48324038,10741643,5
+45937846,10741643,5
+114614912,10741643,4
+bibiily,10741643,5
+82462822,10741643,5
+122352396,10741643,4
+131815669,10741643,4
+a83848400,10741643,4
+river_me1212,10741643,3
+103523733,10741643,5
+60317466,10741643,5
+47513682,10741643,2
+54572941,10741643,5
+54008688,10741643,3
+59538070,10741643,4
+100348160,10741643,4
+124387754,10741643,5
+elegantxx,10741643,4
+platinum_wang,10741643,5
+28678505,10741643,5
+40586247,10741643,4
+36463756,10741643,4
+honey_zhang,10741643,3
+cdn1997,10741643,5
+45673380,10741643,3
+52267229,10741643,5
+87275356,10741643,4
+63413033,10741643,5
+qianxun_lin,10741643,4
+74337586,10741643,5
+4062351,10741643,5
+53536298,10741643,5
+121920760,10741643,4
+66552525,10741643,3
+63568179,10741643,5
+59886067,10741643,4
+21110490,10741643,5
+weixiaojia,10741643,5
+London1,10741643,3
+136100399,10741643,5
+57137451,10741643,5
+Mreja,10741643,4
+sissi0209,10741643,4
+52840916,10741643,3
+102627576,10741643,4
+4251044,10741643,4
+42087177,10741643,4
+75992903,10741643,4
+dogeli,10741643,5
+131838919,10741643,5
+80224563,10741643,5
+3172332,10741643,5
+74196818,10741643,5
+91117590,10741643,5
+91548416,10741643,5
+135889352,10741643,5
+87909245,10741643,5
+3307476,10741643,4
+133398715,10741643,4
+73634739,10741643,2
+strangeraymond,10741643,5
+131044103,10741643,5
+xingxing0889,10741643,5
+79515371,10741643,3
+60703648,10741643,3
+40661971,10741643,4
+59101445,10741643,4
+84247711,10741643,5
+79551282,10741643,5
+48071372,10741643,4
+130692811,10741643,4
+acomplexman,10741643,4
+125232872,10741643,5
+4703190,10741643,3
+134498309,10741643,4
+huilingxi,10741643,4
+94767028,10741643,4
+65280514,10741643,4
+51358310,10741643,5
+GloriaBryant,10741643,4
+119399393,10741643,4
+magehot,10741643,5
+yullc,10741643,5
+115138237,10741643,5
+48168328,10741643,4
+57330014,10741643,4
+71093640,10741643,3
+69947890,10741643,5
+45259366,10741643,5
+datudoudatudou,10741643,4
+80091139,10741643,5
+62532715,10741643,4
+H897120417,10741643,5
+82990219,10741643,5
+136193170,10741643,5
+84055912,10741643,5
+59590691,10741643,4
+wangleku,10741643,3
+76719047,10741643,4
+tianran1215,10741643,4
+4265798,10741643,4
+59276802,10741643,4
+42252873,10741643,4
+75004332,10741643,5
+64224391,10741643,2
+37824765,10741643,5
+37226632,10741643,5
+32113946,10741643,4
+32113946,10741643,4
+53455347,10741643,5
+45118601,10741643,3
+2364299,10741643,5
+56136563,10741643,5
+133743909,10741643,4
+4582554,10741643,4
+95458846,10741643,4
+89050593,10741643,5
+vinniezhao,10741643,4
+73334261,10741643,5
+91794461,10741643,5
+134503288,10741643,5
+77094909,10741643,4
+52971629,10741643,4
+6922527,10741643,3
+some_Ji,10741643,5
+39875217,10741643,3
+28903343,10741643,4
+132183694,10741643,5
+2635823,10741643,4
+piscescott,10741643,3
+51649981,10741643,4
+106519480,10741643,4
+69698013,10741643,5
+125827809,10741643,4
+76783989,10741643,3
+134969713,10741643,5
+109868590,10741643,4
+63017768,10741643,3
+biguniverse,10741643,4
+49789173,10741643,4
+127375314,10741643,5
+135761559,10741643,4
+71811082,10741643,4
+84938785,10741643,4
+85259400,10741643,5
+136096165,10741643,5
+2672889,10741643,3
+ssjj,10741643,4
+135211181,10741643,5
+64508591,10741643,5
+changlianlove,10741643,5
+105339226,10741643,5
+136062696,10741643,4
+1319464,10741643,3
+cutwater,10741643,4
+q937891120,10741643,4
+119485674,10741643,3
+58454768,10741643,4
+2225215,10741643,3
+81278452,10741643,5
+127262027,10741643,5
+65529304,10741643,5
+79420813,10741643,4
+40737758,10741643,4
+59675967,10741643,5
+127637898,10741643,-1
+manyfish313,10741643,4
+38644821,10741643,3
+manyfish313,10741643,4
+38644821,10741643,3
+134841241,10741643,5
+2110961,10741643,4
+130541613,10741643,4
+3254520,10741643,4
+135956704,10741643,4
+u-sister,10741643,4
+5845118,10741643,3
+135746994,10741643,4
+1023806,10741643,3
+35056964,10741643,5
+2465765,10741643,4
+3778573,10741643,5
+marlborosin,10741643,3
+102956805,10741643,2
+56159025,10741643,2
+2703314,10741643,3
+34438026,10741643,5
+69010983,10741643,3
+ningyaogezhi,10741643,4
+130353620,10741643,4
+61281204,10741643,4
+48057753,10741643,4
+91756102,10741643,2
+31251829,10741643,5
+133475672,10741643,4
+6881518,10741643,4
+wood0913,10741643,5
+TZWSWSWWS,10741643,3
+shirleyma,10741643,5
+68710052,10741643,4
+64968500,10741643,4
+sunniva,10741643,5
+63352132,10741643,2
+68175783,10741643,3
+46981462,10741643,1
+134171382,10741643,5
+47471768,10741643,3
+2761282,10741643,4
+Ste_corleone,10741643,4
+91906703,10741643,4
+121932752,10741643,5
+mystonesmy,10741643,4
+35819333,10741643,4
+53565685,10741643,4
+49848172,10741643,5
+ecoli88cry,10741643,5
+104340905,10741643,5
+134267059,10741643,4
+40081609,10741643,3
+20960530,10741643,5
+shenminyi111,10741643,-1
+135750475,10741643,4
+48632631,10741643,5
+135118827,10741643,4
+69838036,10741643,4
+72648633,10741643,4
+71814035,10741643,3
+2922988,10741643,4
+2922988,10741643,4
+87888275,10741643,5
+101447033,10741643,5
+Gordoncoco,10741643,3
+45743439,10741643,4
+lllllxxxx,10741643,-1
+135844891,10741643,5
+126331855,10741643,3
+134097030,10741643,4
+48511248,10741643,4
+walktodream,10741643,5
+qimengmm,10741643,5
+59944601,10741643,3
+mushui2015,10741643,5
+134171030,10741643,5
+dozy,10741643,5
+57663831,10741643,4
+1988536,10741643,5
+84465788,10741643,5
+flymii,10741643,4
+102883079,10741643,5
+37371711,10741643,5
+59769203,10741643,5
+115032485,10741643,5
+peterdyf,10741643,5
+84010010,10741643,4
+71886589,10741643,5
+61492092,10741643,5
+95074857,10741643,4
+92107201,10741643,5
+134226870,10741643,5
+57989622,10741643,5
+bela,10741643,3
+67539711,10741643,4
+55531622,10741643,5
+88047435,10741643,3
+benmak,10741643,5
+49439503,10741643,5
+53735204,10741643,4
+45681506,10741643,1
+leafalone,10741643,3
+GuChristina,10741643,3
+48216088,10741643,4
+70526937,10741643,4
+59517765,10741643,4
+66871580,10741643,5
+47413356,10741643,5
+33808161,10741643,5
+134907491,10741643,4
+97869711,10741643,4
+68651695,10741643,5
+wa1974vv1130,10741643,5
+127398878,10741643,5
+heartnow,10741643,5
+shengmanman,10741643,-1
+4382703,10741643,3
+37390884,10741643,2
+52374010,10741643,4
+51932580,10741643,5
+66340559,10741643,4
+rushtosummer,10741643,5
+126724484,10741643,5
+102214206,10741643,4
+105270130,10741643,5
+85343444,10741643,4
+67330713,10741643,5
+64930763,10741643,4
+cheer1993,10741643,4
+nullspace,10741643,1
+3439248,10741643,3
+120808597,10741643,4
+49730004,10741643,5
+135725446,10741643,5
+52999504,10741643,5
+84253559,10741643,4
+104131739,10741643,3
+65580420,10741643,5
+klinken,10741643,5
+jeanwoo,10741643,3
+56260072,10741643,4
+AllenHarris,10741643,4
+135185270,10741643,5
+55785875,10741643,4
+135143930,10741643,5
+3588825,10741643,5
+135640620,10741643,5
+55466505,10741643,5
+plants,10741643,3
+69729743,10741643,5
+106369831,10741643,5
+SueZhao,10741643,3
+88641957,10741643,4
+nbyidao,10741643,3
+82224797,10741643,5
+34220694,10741643,5
+54896883,10741643,5
+58309699,10741643,3
+Tornatore,10741643,4
+46215737,10741643,5
+62877748,10741643,3
+58725860,10741643,4
+alingeee,10741643,4
+56814340,10741643,4
+133987415,10741643,1
+3039896,10741643,4
+135651900,10741643,4
+122290574,10741643,4
+xingguanmeng,10741643,3
+49470522,10741643,5
+3056612,10741643,5
+tujianting,10741643,5
+wangDP,10741643,4
+3180095,10741643,5
+3647902,10741643,4
+flykyle,10741643,4
+60974953,10741643,4
+51890472,10741643,3
+127947570,10741643,4
+Jandeaux,10741643,3
+mylucky1010,10741643,3
+47212245,10741643,-1
+55939788,10741643,4
+74513536,10741643,3
+135634294,10741643,5
+P.P.E.M,10741643,4
+45923688,10741643,5
+95460891,10741643,4
+junliny,10741643,4
+43811088,10741643,5
+68027461,10741643,5
+59567078,10741643,4
+xiaopangchong,10741643,4
+68368822,10741643,2
+adisonw,10741643,1
+72723779,10741643,5
+18206417,10741643,5
+2809964,10741643,4
+62386627,10741643,5
+sonojason,10741643,4
+nengyinyibeiwu,10741643,4
+nengyinyibeiwu,10741643,4
+52169768,10741643,3
+134211980,10741643,4
+51936769,10741643,4
+135222434,10741643,4
+loveabuforever,10741643,3
+wonderfultime,10741643,4
+104696310,10741643,5
+48697353,10741643,4
+83942238,10741643,3
+52029412,10741643,4
+107581698,10741643,5
+49002564,10741643,3
+58165403,10741643,3
+135570170,10741643,4
+60192740,10741643,5
+38869833,10741643,3
+63300404,10741643,5
+DiannaZhang,10741643,5
+49223433,10741643,4
+76420488,10741643,4
+63793789,10741643,4
+59895974,10741643,5
+steve-zhang,10741643,5
+80655381,10741643,4
+58601681,10741643,4
+131166222,10741643,4
+vincent.77,10741643,3
+fenshoudashi,10741643,4
+littlejoong,10741643,4
+tricky_V,10741643,4
+54676136,10741643,4
+May1997,10741643,4
+sunyangchina,10741643,4
+wangjianfqy,10741643,4
+81506415,10741643,5
+69805658,10741643,3
+44141060,10741643,4
+42246017,10741643,5
+Rocklover_cr,10741643,3
+porquetevas,10741643,3
+131106137,10741643,5
+53813321,10741643,5
+49163542,10741643,3
+nathanxcc,10741643,4
+40420227,10741643,5
+135502411,10741643,5
+ningxixi,10741643,4
+Geminiying,10741643,3
+mouzhi,10741643,3
+83691000,10741643,5
+127347148,10741643,5
+47849205,10741643,5
+49198911,10741643,5
+115890967,10741643,4
+yaomonan,10741643,5
+74616260,10741643,5
+132897789,10741643,5
+49745255,10741643,4
+3475062,10741643,5
+missv9,10741643,2
+122749528,10741643,4
+48572094,10741643,5
+yl252545604,10741643,5
+64666704,10741643,4
+54715465,10741643,5
+109026469,10741643,4
+sskllt,10741643,4
+lonelyattic,10741643,4
+56111522,10741643,5
+jlam174170,10741643,4
+1843590,10741643,3
+46171455,10741643,1
+bestavil,10741643,4
+2963229,10741643,4
+FK621,10741643,5
+133582771,10741643,5
+54882693,10741643,5
+gavin04,10741643,4
+chanchange,10741643,3
+69322958,10741643,4
+sishidahao,10741643,5
+markshi425,10741643,4
+62095725,10741643,5
+125942088,10741643,4
+65291556,10741643,5
+135211263,10741643,3
+50480717,10741643,4
+120470819,10741643,4
+83467712,10741643,4
+130130597,10741643,3
+kangwenyi,10741643,4
+108472446,10741643,4
+56671129,10741643,5
+132941119,10741643,3
+jjforever,10741643,3
+38752361,10741643,5
+126980247,10741643,5
+prettymadder,10741643,5
+solarshr,10741643,4
+42669381,10741643,2
+124401468,10741643,4
+28846484,10741643,5
+canyoudoit,10741643,4
+132025536,10741643,4
+128773519,10741643,4
+51691062,10741643,3
+47026915,10741643,5
+62600137,10741643,-1
+128948999,10741643,1
+70323086,10741643,5
+47847112,10741643,2
+genez,10741643,5
+65042146,10741643,4
+Torence,10741643,5
+62507198,10741643,4
+121587043,10741643,4
+lt-2988,10741643,5
+121152580,10741643,3
+2917503,10741643,4
+129122316,10741643,4
+hnnyzxh,10741643,3
+23712460,10741643,4
+72440349,10741643,4
+8026660,10741643,4
+suetong,10741643,3
+43030795,10741643,4
+looknana,10741643,4
+93570021,10741643,4
+62889721,10741643,4
+78619480,10741643,4
+43130115,10741643,5
+132772142,10741643,4
+55341093,10741643,5
+62309938,10741643,5
+134128447,10741643,5
+5895489,10741643,1
+kurobox,10741643,5
+121115542,10741643,3
+liufuyou,10741643,-1
+60131423,10741643,3
+lh12123,10741643,4
+53603424,10741643,4
+helenooc,10741643,5
+122466174,10741643,5
+69244531,10741643,5
+69095785,10741643,2
+67385694,10741643,4
+4709296,10741643,4
+unclebear,10741643,5
+jackie1211,10741643,3
+cen1126,10741643,5
+sterr,10741643,5
+54306906,10741643,4
+Be1s1,10741643,5
+jujubejuice,10741643,4
+51303533,10741643,2
+4013382,10741643,2
+102337536,10741643,4
+132095263,10741643,5
+132095263,10741643,5
+rightshadow,10741643,-1
+33442688,10741643,5
+Y_juana,10741643,4
+134535776,10741643,4
+67801477,10741643,-1
+harechan,10741643,3
+61819263,10741643,5
+86253847,10741643,4
+12180035,10741643,4
+1356477,10741643,3
+55479744,10741643,4
+39923615,10741643,4
+66064522,10741643,4
+49161384,10741643,4
+79092004,10741643,5
+71900698,10741643,3
+2741567,10741643,4
+60141547,10741643,4
+13646967,10741643,4
+74767556,10741643,5
+119695958,10741643,5
+15485620,10741643,4
+60410320,10741643,3
+84635070,10741643,5
+liaomengying,10741643,2
+Teresa__,10741643,4
+46695163,10741643,5
+rext,10741643,4
+50235761,10741643,5
+79457098,10741643,5
+102295413,10741643,4
+hsj9,10741643,4
+calandra,10741643,5
+87818830,10741643,4
+fallune,10741643,3
+47847363,10741643,5
+49077360,10741643,4
+wendy426,10741643,3
+shexihuan,10741643,5
+2229571,10741643,3
+64866923,10741643,4
+54697264,10741643,5
+73162115,10741643,4
+4392505,10741643,4
+2789604,10741643,5
+huangsiqi21,10741643,3
+MITyuewen,10741643,5
+51651483,10741643,3
+3096049,10741643,3
+3408833,10741643,5
+87848657,10741643,4
+135092660,10741643,4
+qianlishuitiany,10741643,3
+80505592,10741643,3
+62854869,10741643,3
+Christinayanhan,10741643,4
+93964623,10741643,4
+134161390,10741643,3
+65830621,10741643,5
+97354586,10741643,4
+48121857,10741643,3
+62136582,10741643,-1
+4162406,10741643,4
+ustyle,10741643,4
+52961960,10741643,4
+48280227,10741643,5
+46588781,10741643,4
+45056118,10741643,-1
+81059952,10741643,1
+ppw417,10741643,5
+57663536,10741643,4
+3036834,10741643,4
+h7766,10741643,4
+62571454,10741643,3
+68578162,10741643,3
+122059760,10741643,5
+52098739,10741643,4
+59711389,10741643,5
+maoamao,10741643,3
+wangcan_uu,10741643,5
+45360816,10741643,5
+82802184,10741643,4
+46935296,10741643,4
+2687910,10741643,-1
+46123999,10741643,4
+26717463,10741643,3
+69679169,10741643,3
+emily0016,10741643,-1
+133651758,10741643,1
+luluforever,10741643,5
+134040475,10741643,4
+53278966,10741643,5
+2603031,10741643,3
+liarb,10741643,5
+yerryr,10741643,4
+1393380,10741643,5
+134928026,10741643,4
+90812716,10741643,4
+66384195,10741643,5
+55770448,10741643,4
+lifehere,10741643,5
+yunlulang,10741643,3
+70872466,10741643,5
+134498032,10741643,3
+wxcn843,10741643,5
+2867618,10741643,5
+131055900,10741643,3
+37953747,10741643,4
+suziyu_2222,10741643,4
+45978726,10741643,4
+willd,10741643,-1
+60386467,10741643,4
+127301550,10741643,5
+73669959,10741643,3
+128063403,10741643,3
+vagabonder912,10741643,5
+121671392,10741643,4
+100236370,10741643,4
+92995037,10741643,5
+86469978,10741643,5
+63802651,10741643,-1
+wongbur,10741643,5
+22871754,10741643,5
+littleblackdres,10741643,4
+99344521,10741643,4
+bevon,10741643,5
+1664141,10741643,4
+EBO,10741643,4
+134855815,10741643,5
+45295722,10741643,4
+81530706,10741643,5
+se7en8736,10741643,3
+irafighting,10741643,5
+82527106,10741643,3
+55561510,10741643,3
+yunlongshang521,10741643,5
+81963109,10741643,5
+2235329,10741643,5
+kinor_young,10741643,5
+73784914,10741643,4
+vagrant90,10741643,5
+130701225,10741643,5
+pandasleepy,10741643,4
+37229684,10741643,3
+80555404,10741643,4
+alcudish,10741643,4
+v1wanghuang,10741643,4
+38356514,10741643,3
+56004220,10741643,5
+59123210,10741643,5
+yyue,10741643,-1
+54904993,10741643,-1
+diablov,10741643,5
+44643515,10741643,4
+53560863,10741643,3
+Day111,10741643,5
+3701919,10741643,5
+akiralovedark,10741643,5
+5440395,10741643,4
+67671170,10741643,3
+68713345,10741643,3
+45256002,10741643,1
+123346219,10741643,3
+133736713,10741643,5
+3828576,10741643,5
+51977450,10741643,5
+44865600,10741643,5
+65364016,10741643,4
+joegago,10741643,5
+jjyaking,10741643,-1
+72632667,10741643,5
+kiffiz,10741643,4
+3477296,10741643,4
+53312629,10741643,4
+snowlydouban,10741643,5
+2019155,10741643,5
+71378283,10741643,4
+72256181,10741643,4
+63058329,10741643,5
+61904918,10741643,5
+hugo_697,10741643,5
+buaojiao,10741643,5
+soul21g,10741643,3
+xiongguagua,10741643,3
+63934272,10741643,5
+80962006,10741643,4
+103584497,10741643,4
+jhourui,10741643,4
+2994065,10741643,4
+viorxx,10741643,5
+48038910,10741643,4
+4668511,10741643,3
+Zesz,10741643,4
+97977278,10741643,5
+52650076,10741643,4
+46166294,10741643,4
+CT19950923,10741643,4
+134310076,10741643,4
+126684897,10741643,4
+74044460,10741643,3
+45449630,10741643,3
+6910069,10741643,3
+63483063,10741643,4
+rockt,10741643,3
+122484981,10741643,4
+qijiejieblue,10741643,5
+w849917387,10741643,4
+43091199,10741643,5
+3440740,10741643,4
+74724776,10741643,4
+64051248,10741643,5
+4734852,10741643,5
+130860796,10741643,5
+65635790,10741643,5
+sinceY,10741643,4
+62862324,10741643,4
+71223748,10741643,4
+52925465,10741643,5
+silverslivers,10741643,4
+spf,10741643,4
+121943500,10741643,4
+130274229,10741643,4
+weizi1977,10741643,4
+1371874,10741643,5
+80207020,10741643,4
+131860652,10741643,4
+53352676,10741643,4
+106594383,10741643,4
+3668297,10741643,3
+130347997,10741643,4
+CLavinia,10741643,5
+1673897,10741643,2
+hulumei,10741643,3
+16084893,10741643,4
+2532339,10741643,5
+91935314,10741643,4
+freebird619,10741643,5
+rinalee,10741643,3
+61602655,10741643,4
+126644059,10741643,5
+53862196,10741643,-1
+45418355,10741643,5
+60998346,10741643,4
+122039402,10741643,3
+nvxiahxx,10741643,3
+Charlotte.Q,10741643,4
+cakesama,10741643,5
+wusequanwei,10741643,4
+oyxp,10741643,4
+1291946,10741643,4
+2437900,10741643,5
+58786397,10741643,3
+skycity,10741643,4
+wumaso,10741643,5
+46702721,10741643,5
+34437764,10741643,5
+47633821,10741643,5
+72725890,10741643,5
+42579778,10741643,5
+61228697,10741643,5
+37424688,10741643,3
+65085646,10741643,3
+28776614,10741643,5
+126027447,10741643,1
+72145346,10741643,4
+43071569,10741643,4
+yangsheng213,10741643,5
+51728085,10741643,5
+71416031,10741643,4
+4145186,10741643,4
+97181253,10741643,3
+1789314,10741643,4
+xiyilin,10741643,5
+120223686,10741643,5
+chenc2,10741643,2
+4412176,10741643,4
+81962971,10741643,4
+quietsinger,10741643,5
+111016748,10741643,3
+132751120,10741643,4
+58928382,10741643,5
+38863592,10741643,3
+115351851,10741643,5
+dan1103,10741643,3
+82334721,10741643,-1
+Jessie0513,10741643,4
+4391247,10741643,3
+108972448,10741643,5
+4421474,10741643,4
+119623175,10741643,5
+56803436,10741643,4
+whisperstone,10741643,4
+48518515,10741643,5
+wdxyj,10741643,5
+2658903,10741643,2
+19240319,10741643,4
+magicshine,10741643,4
+46731048,10741643,4
+74053506,10741643,5
+2309801,10741643,5
+30219085,10741643,4
+66167939,10741643,5
+55997229,10741643,4
+26438724,10741643,4
+2504741,10741643,4
+winsonwan1029,10741643,3
+stknight,10741643,3
+61991244,10741643,5
+andabao,10741643,4
+2872262,10741643,5
+74401841,10741643,5
+60536729,10741643,5
+antony007007,10741643,5
+77451005,10741643,4
+134191128,10741643,4
+Microka,10741643,4
+3572630,10741643,3
+aimaibumai,10741643,4
+songsiyuan1027,10741643,4
+31583131,10741643,4
+2626566,10741643,4
+80619112,10741643,5
+82580428,10741643,5
+99773030,10741643,3
+43256604,10741643,3
+MaxinAn,10741643,4
+119883443,10741643,4
+wsp_wu,10741643,3
+3555702,10741643,4
+56092754,10741643,3
+64127845,10741643,5
+69858046,10741643,5
+3621631,10741643,5
+novasu,10741643,4
+134198005,10741643,4
+fulandi,10741643,4
+62113839,10741643,3
+49255693,10741643,4
+lengyueeros,10741643,4
+84745831,10741643,4
+84083870,10741643,2
+2230994,10741643,5
+SPIRITUA,10741643,3
+2776195,10741643,3
+3761936,10741643,5
+chaikuan,10741643,-1
+64399358,10741643,5
+whitedrama,10741643,4
+68747518,10741643,5
+xiaoyuguo,10741643,4
+1601177,10741643,4
+74416708,10741643,4
+1529544,10741643,3
+122930651,10741643,5
+3379883,10741643,5
+66582764,10741643,4
+121808699,10741643,4
+70675972,10741643,4
+1775081,10741643,4
+1775081,10741643,4
+53363848,10741643,5
+2412177,10741643,4
+64297755,10741643,4
+103712811,10741643,4
+54374689,10741643,4
+47772344,10741643,5
+laputaw,10741643,4
+41001686,10741643,5
+litesoar,10741643,3
+59428826,10741643,5
+134136331,10741643,5
+32875200,10741643,5
+ihaving,10741643,4
+53397455,10741643,4
+julysummer,10741643,5
+41158791,10741643,-1
+46210737,10741643,5
+4161317,10741643,4
+129331938,10741643,5
+1632104,10741643,4
+127943674,10741643,5
+65648547,10741643,5
+69130681,10741643,5
+54991939,10741643,5
+fishfishing,10741643,4
+drj,10741643,4
+54478485,10741643,4
+dudumozart,10741643,3
+Sophiashen,10741643,4
+fcuki,10741643,4
+53238292,10741643,5
+61752391,10741643,5
+83223876,10741643,4
+72324099,10741643,3
+120729366,10741643,4
+tea930806,10741643,3
+weloverex,10741643,4
+129988582,10741643,4
+3435038,10741643,3
+2625768,10741643,4
+deardeer92,10741643,5
+73910948,10741643,4
+14178018,10741643,5
+3671198,10741643,4
+38545887,10741643,3
+46767985,10741643,2
+lambsnoopy,10741643,5
+50688670,10741643,5
+m-n,10741643,3
+2881598,10741643,4
+56044350,10741643,4
+59253640,10741643,4
+peggyzhu,10741643,5
+80425280,10741643,3
+momo7170,10741643,5
+121057597,10741643,5
+104347602,10741643,4
+Sunnydoer,10741643,4
+57616704,10741643,4
+133978729,10741643,3
+99352636,10741643,5
+134021149,10741643,5
+aeonkingdom,10741643,5
+2760210,10741643,4
+55910584,10741643,4
+hernansun,10741643,4
+44690899,10741643,4
+88247771,10741643,5
+anfeather,10741643,4
+115631046,10741643,4
+cherrytiaotiao,10741643,5
+123461714,10741643,5
+lidiot,10741643,2
+lucydeer,10741643,2
+84158576,10741643,4
+marsradiance,10741643,4
+smallhare,10741643,4
+fantasy2019,10741643,5
+50884822,10741643,4
+49279358,10741643,5
+56044387,10741643,5
+69280405,10741643,4
+120268837,10741643,5
+76356022,10741643,5
+92830730,10741643,4
+blackboard0215,10741643,3
+38589654,10741643,3
+53723449,10741643,4
+64742404,10741643,5
+87855088,10741643,5
+129338201,10741643,5
+122655141,10741643,4
+47951555,10741643,5
+82851049,10741643,2
+62309781,10741643,5
+81703473,10741643,5
+72995081,10741643,1
+linjunzhe,10741643,5
+66229036,10741643,3
+49434698,10741643,5
+58989572,10741643,3
+56598911,10741643,4
+63354645,10741643,4
+4171802,10741643,5
+68298279,10741643,3
+133801601,10741643,3
+pitianhong,10741643,-1
+guiye,10741643,3
+45944885,10741643,4
+1475802,10741643,5
+1887889,10741643,5
+126719955,10741643,5
+133493079,10741643,5
+39077146,10741643,5
+71868009,10741643,4
+133871166,10741643,4
+81933039,10741643,3
+3707246,10741643,4
+liaoyanwen,10741643,5
+liaoyanwen,10741643,5
+47475734,10741643,4
+49162215,10741643,4
+L-muyan,10741643,4
+120259879,10741643,5
+64193755,10741643,5
+109446676,10741643,4
+48335787,10741643,5
+133847224,10741643,4
+103503223,10741643,3
+nicer,10741643,5
+34569018,10741643,4
+30275495,10741643,5
+9962400,10741643,3
+42821103,10741643,5
+58332166,10741643,4
+130003497,10741643,4
+82305871,10741643,4
+121823052,10741643,4
+20194870,10741643,3
+89528523,10741643,5
+breadlife,10741643,5
+79666477,10741643,4
+27884235,10741643,4
+131551681,10741643,5
+sapphire,10741643,5
+55322653,10741643,4
+52143886,10741643,5
+81359836,10741643,-1
+53635906,10741643,5
+43774274,10741643,5
+50044744,10741643,4
+15724007,10741643,5
+131617800,10741643,-1
+48874966,10741643,-1
+132897321,10741643,4
+46797478,10741643,3
+28582685,10741643,4
+56896542,10741643,4
+Bingbing.,10741643,4
+52524178,10741643,4
+44901006,10741643,4
+47048376,10741643,4
+seize--the--day,10741643,5
+luyt,10741643,5
+1595315,10741643,5
+103233470,10741643,5
+30153657,10741643,4
+62369741,10741643,4
+JAZMINA,10741643,-1
+wubei7231,10741643,5
+2245159,10741643,4
+42431883,10741643,5
+ov_beeshoot,10741643,5
+96417057,10741643,5
+83075828,10741643,5
+93465458,10741643,4
+115738511,10741643,5
+48786722,10741643,5
+4400795,10741643,4
+Free12138,10741643,5
+53475502,10741643,-1
+Staceyesu,10741643,4
+cattie,10741643,3
+68987134,10741643,5
+76233857,10741643,4
+133662506,10741643,4
+melatielian,10741643,3
+52023052,10741643,4
+simple-wy,10741643,5
+haungli_hl,10741643,4
+lovehour,10741643,4
+104823188,10741643,5
+33538142,10741643,5
+51378582,10741643,4
+61143334,10741643,5
+119084646,10741643,4
+51723192,10741643,5
+104823216,10741643,4
+34867941,10741643,3
+34867941,10741643,3
+2195435,10741643,5
+51912673,10741643,4
+78797281,10741643,5
+48707415,10741643,4
+mao87523,10741643,5
+128229919,10741643,4
+jammyWolf,10741643,4
+52992118,10741643,5
+nanra,10741643,2
+48247519,10741643,5
+67958148,10741643,3
+123617593,10741643,5
+50775339,10741643,5
+103415530,10741643,4
+4509464,10741643,5
+faille1991,10741643,4
+70232772,10741643,4
+133545737,10741643,4
+60819367,10741643,4
+63040433,10741643,4
+48917306,10741643,5
+45189168,10741643,4
+letmetalk,10741643,3
+45620288,10741643,4
+68584442,10741643,4
+2781564,10741643,3
+3497460,10741643,-1
+54917860,10741643,4
+63410556,10741643,5
+81144305,10741643,5
+4297674,10741643,4
+tiger1020,10741643,4
+121391257,10741643,4
+67342694,10741643,4
+63777033,10741643,5
+65372247,10741643,3
+3129978,10741643,3
+1358167,10741643,4
+34507934,10741643,4
+2240667,10741643,3
+cuizixi,10741643,4
+47024160,10741643,4
+splinter,10741643,5
+1248650,10741643,5
+60751376,10741643,4
+84719637,10741643,5
+49826646,10741643,2
+caoyuan851104,10741643,4
+majoselyqiujuan,10741643,4
+53373037,10741643,4
+eileenxx,10741643,5
+delicioussalad,10741643,3
+60046536,10741643,4
+2239303,10741643,5
+1910936,10741643,4
+73552921,10741643,4
+lianlian610,10741643,4
+wj8198026,10741643,5
+yampak,10741643,5
+yampak,10741643,5
+64692199,10741643,4
+sky_lee4yy,10741643,2
+41556922,10741643,3
+124517309,10741643,5
+3229572,10741643,3
+116537123,10741643,5
+lianlian0626,10741643,4
+WeekendLY,10741643,3
+2895415,10741643,5
+52291626,10741643,4
+75255232,10741643,4
+91063821,10741643,4
+Mr.KNight,10741643,-1
+44651599,10741643,4
+3687966,10741643,4
+50126982,10741643,5
+74275879,10741643,1
+2329944,10741643,5
+jumaomao,10741643,4
+50084129,10741643,5
+weibioh,10741643,5
+36152086,10741643,5
+45800687,10741643,5
+maoxiaomao,10741643,5
+62236355,10741643,4
+79948176,10741643,4
+1845398,10741643,4
+49205354,10741643,5
+90616646,10741643,5
+53815748,10741643,4
+54907096,10741643,4
+79011828,10741643,5
+62344979,10741643,5
+4829013,10741643,4
+59290556,10741643,3
+45884231,10741643,1
+54135833,10741643,4
+46420739,10741643,4
+Flower-tea,10741643,5
+76649445,10741643,4
+snowintheheaven,10741643,4
+93339436,10741643,3
+46968893,10741643,3
+125770126,10741643,5
+51245601,10741643,4
+2869548,10741643,4
+53948411,10741643,4
+myarale,10741643,5
+40352948,10741643,5
+hans_berdych,10741643,2
+50555792,10741643,3
+48411072,10741643,4
+30067864,10741643,5
+57916639,10741643,4
+owen289607833,10741643,4
+hongzhouche,10741643,4
+46734513,10741643,4
+58783502,10741643,4
+3633125,10741643,4
+amelie-h-lin,10741643,5
+cheryl_wang,10741643,5
+3679222,10741643,-1
+48941504,10741643,5
+redsmile,10741643,4
+cajiln,10741643,5
+MaxxaM,10741643,5
+dog2gxy,10741643,5
+63691279,10741643,5
+84210323,10741643,4
+10046162,10741643,3
+44939590,10741643,5
+64001823,10741643,5
+75196233,10741643,4
+67351841,10741643,4
+Poisonnn,10741643,5
+2752003,10741643,4
+BUNNV,10741643,5
+1698143,10741643,4
+yoshimi,10741643,4
+wendell003,10741643,4
+77169093,10741643,4
+xx1102,10741643,4
+3661802,10741643,5
+131711489,10741643,5
+55572207,10741643,4
+8130982,10741643,4
+124707703,10741643,3
+3451536,10741643,5
+90272032,10741643,5
+41007086,10741643,4
+marsding,10741643,3
+48819084,10741643,4
+48941780,10741643,4
+43222334,10741643,5
+gee880130,10741643,4
+vinciwang,10741643,4
+127606527,10741643,5
+127301665,10741643,4
+34845334,10741643,5
+Fdiori,10741643,4
+130841314,10741643,4
+KyraYang,10741643,3
+zooyam,10741643,4
+69640239,10741643,4
+44577335,10741643,5
+49345225,10741643,4
+2800503,10741643,5
+1732930,10741643,-1
+45340268,10741643,4
+68669080,10741643,5
+51264332,10741643,3
+65284749,10741643,4
+hdkoo,10741643,4
+53730786,10741643,4
+88433908,10741643,3
+124149877,10741643,4
+seeme,10741643,4
+52341297,10741643,5
+59968700,10741643,5
+1816068,10741643,5
+43732585,10741643,3
+59537499,10741643,5
+smilyk,10741643,5
+ABQK,10741643,5
+44222159,10741643,5
+87488566,10741643,3
+130909390,10741643,4
+63592658,10741643,4
+64329337,10741643,5
+huv,10741643,3
+61551663,10741643,5
+69102270,10741643,3
+73944113,10741643,4
+133132614,10741643,5
+122170826,10741643,3
+simppydhl,10741643,4
+67087929,10741643,5
+47817868,10741643,4
+46256555,10741643,3
+58797753,10741643,5
+lolitayan,10741643,4
+ximeir,10741643,4
+vevine,10741643,5
+88219822,10741643,4
+jimmyfallon,10741643,5
+hcaelb,10741643,2
+4199486,10741643,4
+85099876,10741643,5
+48156038,10741643,3
+45953798,10741643,3
+54886398,10741643,3
+53795201,10741643,4
+6001373,10741643,3
+132024097,10741643,3
+28852948,10741643,5
+132957841,10741643,4
+maimufei,10741643,4
+1502044,10741643,-1
+97062397,10741643,4
+zhj_810,10741643,5
+locolee,10741643,4
+18965054,10741643,4
+vincet,10741643,4
+132275140,10741643,4
+62637324,10741643,5
+52000938,10741643,5
+sueyer,10741643,4
+46184375,10741643,5
+siyao1019,10741643,5
+105174780,10741643,4
+55771326,10741643,4
+56551598,10741643,4
+talentygw,10741643,4
+56895506,10741643,4
+57584718,10741643,4
+74495148,10741643,5
+57837799,10741643,5
+62370868,10741643,3
+36352996,10741643,5
+36541533,10741643,4
+59110325,10741643,4
+wsp2008,10741643,4
+zltdkp,10741643,5
+joemayxu,10741643,3
+haoaining,10741643,4
+2968415,10741643,4
+42291376,10741643,4
+alice_nano,10741643,3
+48047032,10741643,4
+82872608,10741643,3
+44629760,10741643,5
+hljmsfy,10741643,4
+49320833,10741643,3
+56083884,10741643,4
+losed,10741643,3
+Uranus_Qiang,10741643,-1
+91120236,10741643,-1
+10839393,10741643,5
+133019129,10741643,5
+120251786,10741643,4
+60822788,10741643,4
+131538681,10741643,4
+102253082,10741643,-1
+1107251,10741643,3
+35808840,10741643,5
+68936466,10741643,4
+87648901,10741643,5
+iPoder,10741643,4
+heyvsss,10741643,5
+47619462,10741643,3
+122347260,10741643,5
+gcc220,10741643,2
+1653790,10741643,4
+98110557,10741643,3
+46610911,10741643,4
+chumeijincai,10741643,5
+11383205,10741643,4
+littlefrogD,10741643,4
+49389676,10741643,4
+babyfat0427,10741643,4
+127722758,10741643,5
+46126259,10741643,5
+MRpochu,10741643,5
+35967033,10741643,4
+82620534,10741643,5
+HiEthan,10741643,5
+qjunny,10741643,4
+4580311,10741643,4
+6537400,10741643,5
+57420118,10741643,4
+132953993,10741643,5
+Rachel23,10741643,4
+fishmayfly,10741643,4
+48701024,10741643,5
+NicoleDR,10741643,5
+54351295,10741643,5
+2295891,10741643,5
+132942176,10741643,5
+duanyixuan,10741643,4
+81336001,10741643,3
+olivia1016,10741643,4
+AmberMoony,10741643,5
+130773024,10741643,4
+56010108,10741643,5
+72827871,10741643,4
+79930612,10741643,-1
+sanzihui,10741643,4
+yangaugustus,10741643,4
+56911400,10741643,5
+118023996,10741643,4
+34707868,10741643,3
+41298606,10741643,4
+MMMFish,10741643,2
+79939000,10741643,5
+39875620,10741643,-1
+67984945,10741643,5
+60649815,10741643,5
+swordflying,10741643,4
+db564008084,10741643,5
+42541743,10741643,4
+STYLE-luxury,10741643,5
+78770863,10741643,5
+28869490,10741643,4
+48362404,10741643,5
+15035026,10741643,5
+34946618,10741643,5
+JesusSAM,10741643,5
+40402636,10741643,5
+70595719,10741643,3
+62945273,10741643,5
+82802978,10741643,5
+68167328,10741643,4
+72497547,10741643,5
+46799195,10741643,3
+120867848,10741643,4
+jialezone,10741643,4
+67573746,10741643,5
+89792510,10741643,3
+tree_poppy,10741643,5
+4716984,10741643,5
+yimairen,10741643,4
+sprite226,10741643,5
+58772458,10741643,5
+38327139,10741643,5
+2226826,10741643,4
+61233140,10741643,4
+3766677,10741643,4
+48437677,10741643,4
+haorensisi-,10741643,3
+1073807,10741643,3
+1380828,10741643,4
+94052787,10741643,4
+130065923,10741643,4
+zuozuoqing,10741643,4
+leejy,10741643,5
+46147519,10741643,4
+132433995,10741643,3
+102658217,10741643,5
+115666260,10741643,1
+xl8690,10741643,1
+woshixiaoqi,10741643,4
+125962511,10741643,4
+47548599,10741643,4
+47198938,10741643,5
+35937481,10741643,4
+52138435,10741643,5
+4108272,10741643,4
+dollzhaoxin,10741643,5
+52209943,10741643,4
+47769582,10741643,-1
+sheep29,10741643,3
+44258193,10741643,5
+43773651,10741643,5
+60962983,10741643,1
+55822752,10741643,5
+leah-only,10741643,5
+shuaishui,10741643,4
+STleo,10741643,4
+120275582,10741643,5
+appeal,10741643,2
+ahao25,10741643,4
+BabySchumi,10741643,4
+93741018,10741643,5
+128157735,10741643,5
+130496328,10741643,4
+36772900,10741643,4
+glacepirouette,10741643,2
+51215014,10741643,3
+66699032,10741643,5
+113528717,10741643,3
+3693823,10741643,4
+chesterchoi,10741643,5
+tofun,10741643,5
+132740596,10741643,4
+78130627,10741643,3
+2265615,10741643,4
+44177917,10741643,3
+S-hushubao,10741643,3
+78906906,10741643,5
+115985324,10741643,3
+6170863,10741643,4
+missmonkey,10741643,4
+dante8977,10741643,4
+58727486,10741643,3
+93372123,10741643,4
+48845052,10741643,4
+44633339,10741643,3
+69455218,10741643,3
+131619623,10741643,5
+38741483,10741643,5
+missingmycat,10741643,3
+122288974,10741643,5
+119326731,10741643,5
+wnaga,10741643,5
+124010047,10741643,5
+107414544,10741643,5
+99677951,10741643,5
+2886933,10741643,5
+1958346,10741643,4
+i.nightwind,10741643,5
+4320285,10741643,3
+96142455,10741643,4
+43652685,10741643,5
+miucather,10741643,5
+yaoyayue,10741643,3
+48666035,10741643,5
+perth3,10741643,5
+73287736,10741643,4
+mpor2,10741643,5
+megumiwo,10741643,5
+43020527,10741643,5
+39888720,10741643,5
+2299452,10741643,5
+27423900,10741643,5
+lhlllhlhl,10741643,4
+HH-W,10741643,4
+51795664,10741643,4
+2787490,10741643,4
+68174882,10741643,4
+6919376,10741643,4
+syrz,10741643,4
+26150439,10741643,5
+xingwei521,10741643,5
+42623950,10741643,4
+1526094,10741643,4
+132636435,10741643,3
+89059345,10741643,4
+33650270,10741643,4
+hakuna927,10741643,5
+babaria,10741643,4
+132641306,10741643,4
+59210685,10741643,4
+50851987,10741643,3
+61584024,10741643,5
+55987395,10741643,5
+120764157,10741643,-1
+130365935,10741643,5
+2324627,10741643,4
+42522085,10741643,5
+42522085,10741643,5
+35400019,10741643,4
+130384856,10741643,4
+55286449,10741643,5
+47580309,10741643,4
+42989419,10741643,4
+96612606,10741643,5
+71719033,10741643,4
+48014594,10741643,2
+55990850,10741643,5
+75117514,10741643,4
+104431872,10741643,5
+132591363,10741643,-1
+84530034,10741643,4
+91582621,10741643,2
+coookiecan,10741643,5
+20216566,10741643,4
+60162366,10741643,5
+83971141,10741643,5
+52530490,10741643,5
+60203877,10741643,5
+46466887,10741643,4
+121619687,10741643,5
+4486237,10741643,3
+3577665,10741643,5
+56435930,10741643,3
+88132855,10741643,4
+4482783,10741643,4
+evelyn_only,10741643,3
+46612613,10741643,5
+48525140,10741643,4
+lemmoy,10741643,5
+132546511,10741643,5
+67015862,10741643,2
+125592796,10741643,4
+72754861,10741643,3
+46718528,10741643,4
+Seuysiro,10741643,4
+63397034,10741643,4
+130580816,10741643,4
+76681041,10741643,4
+arale180,10741643,3
+70386523,10741643,4
+97323293,10741643,2
+edward1988,10741643,4
+64213898,10741643,4
+75717507,10741643,3
+h393104165,10741643,-1
+58929132,10741643,3
+53222131,10741643,5
+mmcv,10741643,3
+4872425,10741643,4
+tober01,10741643,3
+4042513,10741643,4
+62318575,10741643,4
+jiayi6616,10741643,4
+52414284,10741643,-1
+74535406,10741643,3
+52002560,10741643,5
+chuxiaozhu,10741643,4
+leneyuan,10741643,5
+tanblin,10741643,2
+born_to_die,10741643,5
+55822917,10741643,5
+125608618,10741643,4
+97052938,10741643,5
+49586442,10741643,3
+53543970,10741643,4
+57543847,10741643,5
+49185326,10741643,3
+HYGUY,10741643,3
+63012050,10741643,4
+1412430,10741643,5
+72529157,10741643,5
+55511225,10741643,3
+45484348,10741643,3
+1396524,10741643,2
+DZTL,10741643,4
+58941847,10741643,5
+132342909,10741643,5
+132396464,10741643,4
+iayunuo,10741643,4
+60822574,10741643,5
+62192650,10741643,4
+eruohui,10741643,4
+Estherfsr,10741643,4
+63223538,10741643,5
+Jack_Yan,10741643,4
+3884732,10741643,5
+68178694,10741643,5
+56672211,10741643,4
+1246336,10741643,4
+kresy,10741643,4
+52356046,10741643,4
+cherry11,10741643,3
+daily815,10741643,-1
+43730319,10741643,4
+55416040,10741643,3
+evelynxuan,10741643,5
+wyfsmd,10741643,3
+80370344,10741643,3
+65124913,10741643,4
+69072673,10741643,5
+64572749,10741643,3
+64266034,10741643,4
+114710465,10741643,3
+Colahdh,10741643,5
+63959089,10741643,4
+leeweidong,10741643,3
+132357464,10741643,4
+IMINCR,10741643,5
+ivy_713,10741643,4
+jiance,10741643,4
+120050114,10741643,3
+79431429,10741643,4
+shengxiaruhua,10741643,4
+4106173,10741643,5
+64597422,10741643,5
+qingfengmubai,10741643,5
+BobbySun,10741643,5
+BobbySun,10741643,5
+122012122,10741643,5
+64717876,10741643,4
+VRoss,10741643,5
+3232367,10741643,5
+little_cupid,10741643,4
+36794017,10741643,4
+2491680,10741643,4
+czy940903,10741643,5
+13198756,10741643,4
+64451802,10741643,4
+4325847,10741643,4
+yellow5egg,10741643,2
+fengzhongyeer,10741643,5
+125270666,10741643,5
+48191805,10741643,5
+79075918,10741643,3
+4897181,10741643,5
+79322204,10741643,5
+Nyctereutes,10741643,3
+Nyctereutes,10741643,3
+54571055,10741643,3
+48860036,10741643,5
+91397317,10741643,4
+4281148,10741643,4
+102856154,10741643,-1
+3921724,10741643,5
+53803562,10741643,5
+69164185,10741643,5
+45741256,10741643,5
+87860015,10741643,4
+29262337,10741643,3
+58112978,10741643,3
+36853373,10741643,3
+titiqu,10741643,2
+94594889,10741643,3
+1523711,10741643,5
+3531316,10741643,4
+whigy,10741643,5
+4100649,10741643,5
+56193360,10741643,4
+56377011,10741643,5
+62726422,10741643,4
+85423911,10741643,4
+gaishixiaogui,10741643,3
+57418562,10741643,5
+62837123,10741643,4
+125548173,10741643,3
+l726,10741643,4
+3728575,10741643,4
+tuotuodetuo,10741643,4
+celestejue,10741643,4
+yin56,10741643,1
+58384388,10741643,5
+lan0519,10741643,4
+80923059,10741643,3
+nazigod,10741643,4
+115673387,10741643,4
+sziib,10741643,5
+130162828,10741643,4
+73667301,10741643,4
+vaie,10741643,4
+macau88,10741643,5
+63893274,10741643,4
+74635303,10741643,4
+3890315,10741643,4
+72175536,10741643,5
+echo-shuang,10741643,5
+4064966,10741643,5
+59678263,10741643,4
+58487988,10741643,3
+Xin.the,10741643,5
+46240827,10741643,5
+67878115,10741643,4
+67796922,10741643,5
+Julia-Lam,10741643,3
+65532755,10741643,4
+3559391,10741643,4
+closet,10741643,4
+zizi1201,10741643,3
+Ovilia.,10741643,-1
+67014748,10741643,5
+59375998,10741643,5
+132257844,10741643,5
+2208855,10741643,5
+33322981,10741643,5
+4624921,10741643,3
+2984029,10741643,5
+129135232,10741643,4
+snowball,10741643,3
+130064704,10741643,-1
+bluegrid,10741643,4
+38983877,10741643,5
+y86240521,10741643,3
+Iamapoem,10741643,3
+69034946,10741643,5
+64978016,10741643,4
+67135692,10741643,4
+42345472,10741643,3
+80628102,10741643,5
+pengyl,10741643,5
+thxai,10741643,4
+65547043,10741643,5
+49672172,10741643,5
+joyjay,10741643,5
+flashingcrystal,10741643,2
+91464573,10741643,4
+127504858,10741643,5
+120418587,10741643,3
+131898558,10741643,4
+yjxwang,10741643,4
+54621967,10741643,2
+toyshen,10741643,4
+126183742,10741643,4
+gaigaiming,10741643,4
+4268724,10741643,2
+53365652,10741643,5
+49741002,10741643,5
+2894612,10741643,4
+66381901,10741643,5
+miya411,10741643,4
+lynchor,10741643,4
+2107509,10741643,5
+ssumin,10741643,4
+saruole,10741643,4
+89330998,10741643,-1
+lucine_chen,10741643,5
+2743090,10741643,5
+57375579,10741643,5
+132194541,10741643,5
+56392889,10741643,5
+33890034,10741643,4
+66997852,10741643,5
+14455478,10741643,5
+octopusz,10741643,4
+55012980,10741643,5
+71986171,10741643,5
+talltale,10741643,5
+51095150,10741643,5
+65647086,10741643,5
+53293207,10741643,5
+Sophieven,10741643,3
+queenie830,10741643,4
+1409570,10741643,2
+59361957,10741643,3
+55486692,10741643,5
+baishouzyn,10741643,5
+54122368,10741643,5
+violet412,10741643,3
+vincent_chen,10741643,5
+88481116,10741643,5
+59029677,10741643,5
+BlairBlair,10741643,4
+77195192,10741643,3
+joybang,10741643,5
+kakaitachi,10741643,5
+29685065,10741643,5
+21540044,10741643,5
+65832475,10741643,5
+luciferls,10741643,5
+jerry20071012,10741643,4
+2710028,10741643,5
+62340238,10741643,5
+3573351,10741643,5
+13871057,10741643,4
+124887489,10741643,4
+caosen,10741643,5
+wenguochen,10741643,5
+41106056,10741643,4
+61184196,10741643,5
+2182855,10741643,5
+47825132,10741643,3
+godblesswho,10741643,3
+14068242,10741643,4
+93208688,10741643,4
+Susieimayday,10741643,5
+74166901,10741643,4
+Yvette-ZYX,10741643,2
+73813658,10741643,4
+54338909,10741643,3
+58402026,10741643,5
+57001973,10741643,5
+Alice.Z,10741643,5
+119396712,10741643,5
+49672816,10741643,5
+product2046,10741643,3
+smilingsmell,10741643,4
+49498523,10741643,5
+74290800,10741643,4
+93113085,10741643,5
+3425257,10741643,5
+lucifer8790,10741643,5
+79970792,10741643,4
+3520910,10741643,4
+vivienvb,10741643,4
+4086232,10741643,5
+55425319,10741643,4
+116036519,10741643,2
+33509749,10741643,4
+85035571,10741643,3
+120856523,10741643,5
+2577981,10741643,5
+watermemory,10741643,4
+linmq,10741643,5
+76901769,10741643,5
+69694097,10741643,4
+78973755,10741643,5
+moneyfan,10741643,4
+kouok,10741643,4
+shuoofsen,10741643,5
+92871519,10741643,4
+76160138,10741643,4
+61613642,10741643,4
+78662061,10741643,4
+89787162,10741643,3
+yuyouting,10741643,4
+60088640,10741643,4
+61569747,10741643,4
+127788106,10741643,4
+joy4,10741643,3
+binbinmath,10741643,5
+rosekiss,10741643,5
+37975199,10741643,3
+16040985,10741643,4
+kitian616,10741643,4
+45939025,10741643,3
+46866923,10741643,4
+39504280,10741643,5
+straller,10741643,5
+tuscany1234,10741643,3
+65537837,10741643,5
+123121684,10741643,3
+49740424,10741643,-1
+64181002,10741643,5
+45313223,10741643,4
+2785610,10741643,4
+30492787,10741643,5
+cave,10741643,4
+fuifshan,10741643,4
+54041697,10741643,5
+2692189,10741643,5
+g080512,10741643,4
+72251882,10741643,5
+anpho,10741643,4
+82759056,10741643,4
+6926584,10741643,5
+yuanzedong,10741643,3
+kati,10741643,4
+61293923,10741643,5
+44971294,10741643,4
+69425053,10741643,5
+sama82423,10741643,4
+130024032,10741643,5
+74512782,10741643,4
+2112561,10741643,5
+60380024,10741643,3
+88229751,10741643,5
+1113431,10741643,5
+64444161,10741643,4
+JustCallMeCJ,10741643,5
+42785964,10741643,5
+cly0321,10741643,4
+poppytat,10741643,5
+zhuzhenning,10741643,4
+92398383,10741643,5
+4172110,10741643,5
+yyyyyq,10741643,2
+2759466,10741643,5
+cherub235,10741643,4
+iorizci,10741643,5
+52724773,10741643,5
+missdaisyhouse,10741643,5
+4630769,10741643,5
+129954450,10741643,4
+49054831,10741643,4
+lianmumu,10741643,4
+70293323,10741643,5
+78065496,10741643,3
+4439510,10741643,3
+53751295,10741643,4
+mabeysomeday,10741643,3
+59411429,10741643,5
+1457618,10741643,4
+78386968,10741643,4
+58933515,10741643,4
+115717973,10741643,1
+8916978,10741643,3
+mmmonkey,10741643,3
+kbbean620,10741643,4
+3435254,10741643,4
+LiuS-7,10741643,4
+EaSt-memory,10741643,5
+hRy,10741643,5
+yuxingshu,10741643,4
+78868147,10741643,4
+37373558,10741643,5
+louisyoung1026,10741643,2
+49806134,10741643,2
+48225270,10741643,5
+DemiZhang1218,10741643,4
+yyysama,10741643,5
+67193360,10741643,4
+83639322,10741643,4
+shisonghua,10741643,2
+lynnwhite,10741643,5
+ravinenoravine,10741643,4
+jennychang,10741643,3
+silence231,10741643,5
+Ms.G,10741643,4
+46370564,10741643,5
+soha_s,10741643,4
+winna91,10741643,4
+62804242,10741643,4
+34520124,10741643,4
+113999648,10741643,4
+3248654,10741643,4
+119783761,10741643,4
+65074680,10741643,3
+zoeyhe,10741643,4
+7008738,10741643,-1
+7008738,10741643,-1
+lvwenzhi,10741643,4
+52594518,10741643,4
+81030268,10741643,4
+HBtemptation,10741643,4
+64605857,10741643,-1
+cappuccino-jl,10741643,3
+85727948,10741643,3
+victoria9,10741643,4
+103058145,10741643,5
+TiAmoGuaibaobao,10741643,5
+72925066,10741643,4
+131480891,10741643,5
+64630366,10741643,3
+94886676,10741643,4
+41414161,10741643,4
+stand314,10741643,4
+cloudwwb,10741643,4
+3423661,10741643,4
+82644412,10741643,5
+msyaojing,10741643,4
+floragarfield,10741643,3
+frankchi,10741643,5
+2054495,10741643,4
+dreamsun,10741643,4
+45483276,10741643,3
+59205597,10741643,5
+lemonice520,10741643,4
+79091050,10741643,5
+130555333,10741643,4
+53080002,10741643,4
+61218887,10741643,4
+53944897,10741643,3
+Redolence,10741643,3
+92541865,10741643,1
+rtzzw,10741643,4
+suqixue,10741643,3
+pkt1993,10741643,5
+52808477,10741643,4
+Iapetus1216,10741643,5
+eededfcd,10741643,5
+128594244,10741643,4
+52261532,10741643,4
+43782586,10741643,4
+xifengdu,10741643,4
+jinsy,10741643,4
+77289829,10741643,4
+120565763,10741643,5
+amphy,10741643,-1
+97786845,10741643,4
+66970039,10741643,3
+4132440,10741643,4
+54806925,10741643,4
+126022263,10741643,2
+49384394,10741643,4
+45446401,10741643,4
+4166635,10741643,3
+jasper_wang,10741643,5
+cathy_59,10741643,5
+flowertide,10741643,3
+flowertide,10741643,3
+58942952,10741643,3
+Yichun_D,10741643,3
+THESONOFBITCH,10741643,4
+3216725,10741643,4
+4564418,10741643,3
+maddaemon,10741643,4
+89525142,10741643,4
+57953785,10741643,5
+KITTEN614_,10741643,4
+piruhuakai,10741643,4
+69068532,10741643,4
+4250870,10741643,4
+36807657,10741643,4
+45383849,10741643,3
+4079659,10741643,5
+camelduck,10741643,5
+125543674,10741643,4
+131807022,10741643,5
+121895079,10741643,5
+pinkwolf,10741643,3
+chidaoshu,10741643,5
+130450675,10741643,5
+maixiaohuang,10741643,4
+Onlyhl312,10741643,5
+27627449,10741643,4
+58042424,10741643,5
+lq_lemon,10741643,5
+131597292,10741643,5
+rfxrwq,10741643,4
+46996397,10741643,4
+57107387,10741643,3
+52384552,10741643,4
+84109824,10741643,4
+7069657,10741643,4
+DaisyYo,10741643,5
+22850702,10741643,5
+3801481,10741643,4
+130531529,10741643,4
+62711636,10741643,3
+yuexun163,10741643,5
+qioling,10741643,2
+oHaHa,10741643,5
+qinghong,10741643,5
+ibty,10741643,5
+104261144,10741643,3
+yhjs88,10741643,4
+3661228,10741643,2
+76497080,10741643,4
+44176282,10741643,4
+127466089,10741643,4
+57166570,10741643,5
+3495477,10741643,4
+130154428,10741643,4
+119761106,10741643,5
+68219798,10741643,3
+68668145,10741643,1
+69158289,10741643,1
+lovemyselflydia,10741643,3
+74446940,10741643,4
+80768370,10741643,4
+cccolor,10741643,4
+carina88,10741643,5
+131537938,10741643,5
+xuweijun0916,10741643,4
+102978456,10741643,3
+zhishouyuan,10741643,4
+piggasol,10741643,3
+yo911217,10741643,5
+93825881,10741643,4
+35914058,10741643,5
+HanHi,10741643,3
+gothicly16,10741643,5
+weiyangyinyi,10741643,3
+87795487,10741643,4
+2346529,10741643,5
+75547814,10741643,3
+64040953,10741643,3
+121834295,10741643,4
+Kios,10741643,4
+40090492,10741643,4
+nk88,10741643,5
+76866442,10741643,2
+lattice_cat,10741643,5
+4288348,10741643,5
+danzi0105,10741643,5
+50014287,10741643,4
+27668778,10741643,4
+59454605,10741643,4
+43253714,10741643,5
+yuc200,10741643,5
+43244299,10741643,5
+thoughts,10741643,5
+mmdrx,10741643,3
+76895524,10741643,3
+58569679,10741643,4
+48003866,10741643,-1
+48705415,10741643,4
+showeryoung,10741643,5
+52981258,10741643,-1
+1857885,10741643,4
+43521036,10741643,5
+tswddatouxia,10741643,5
+74993789,10741643,4
+Aianita,10741643,4
+100039626,10741643,2
+47053495,10741643,5
+72683607,10741643,5
+86922296,10741643,3
+122394659,10741643,4
+erobin,10741643,3
+122869293,10741643,2
+yiuyiuu,10741643,4
+2813548,10741643,3
+highclous,10741643,5
+43390539,10741643,5
+87996288,10741643,5
+64895995,10741643,4
+la_ficine,10741643,1
+jroclee,10741643,4
+jroclee,10741643,4
+115235064,10741643,4
+102838934,10741643,3
+47472910,10741643,4
+gsh1215,10741643,5
+46162696,10741643,5
+76875681,10741643,4
+89980809,10741643,5
+78713846,10741643,4
+78760255,10741643,2
+BenGlen,10741643,4
+urslee,10741643,5
+73569436,10741643,5
+50526758,10741643,5
+Cindylam,10741643,5
+76618509,10741643,4
+55022659,10741643,5
+cnxh,10741643,3
+67158612,10741643,5
+127244778,10741643,4
+58542527,10741643,3
+62478064,10741643,4
+yao_123,10741643,5
+45753459,10741643,4
+53917736,10741643,5
+62256460,10741643,5
+48509984,10741643,5
+58431790,10741643,4
+63252882,10741643,4
+39216421,10741643,4
+80668531,10741643,-1
+1109333,10741643,3
+1996780,10741643,4
+4001930,10741643,5
+68999326,10741643,4
+125643818,10741643,5
+51374117,10741643,4
+35742329,10741643,3
+yeyinger,10741643,3
+67947610,10741643,5
+2620264,10741643,4
+Sunray0807,10741643,4
+111461811,10741643,5
+88149801,10741643,4
+wukundouban,10741643,5
+67257851,10741643,5
+66873138,10741643,5
+45868354,10741643,5
+28882625,10741643,3
+3310338,10741643,4
+45573026,10741643,4
+51049554,10741643,5
+langlangtalent,10741643,4
+horadric,10741643,3
+dxq1216,10741643,4
+lihill,10741643,4
+Marilyn.dd,10741643,3
+JerryGin,10741643,5
+90299967,10741643,3
+luoyinyi,10741643,5
+52816310,10741643,4
+70654982,10741643,4
+75169318,10741643,4
+73581567,10741643,5
+62684666,10741643,5
+qxp1015beauty,10741643,2
+1528339,10741643,5
+90610268,10741643,4
+40559472,10741643,5
+19216126,10741643,5
+3845975,10741643,4
+67310334,10741643,3
+63782135,10741643,4
+83739220,10741643,5
+95391530,10741643,5
+39947592,10741643,3
+82121921,10741643,3
+snowyhowe,10741643,5
+G--er,10741643,4
+57023094,10741643,3
+57023094,10741643,3
+3501623,10741643,4
+4543967,10741643,4
+129353415,10741643,3
+33323716,10741643,5
+60494996,10741643,4
+63285359,10741643,4
+longlanglang,10741643,4
+125032790,10741643,5
+130277157,10741643,5
+lf89,10741643,5
+4342329,10741643,4
+suberry,10741643,5
+ourend,10741643,4
+97062329,10741643,4
+76535928,10741643,4
+50682062,10741643,5
+freenest,10741643,4
+60826813,10741643,5
+89928823,10741643,4
+sbandsthfrjelly,10741643,5
+taken-tee,10741643,3
+29839010,10741643,5
+59022581,10741643,4
+zhixiayufei,10741643,4
+2705335,10741643,3
+helloBek,10741643,3
+zeal,10741643,4
+Woxinhuashu,10741643,5
+tan55,10741643,5
+90581117,10741643,5
+70918158,10741643,4
+33726772,10741643,4
+36470321,10741643,4
+75475788,10741643,4
+twopages,10741643,-1
+75651763,10741643,4
+107399304,10741643,4
+59600162,10741643,4
+17525380,10741643,5
+43554712,10741643,4
+63658067,10741643,4
+49515197,10741643,5
+127161571,10741643,3
+43590001,10741643,4
+2155706,10741643,-1
+54821206,10741643,4
+69317845,10741643,5
+zaza610,10741643,3
+kezhangaima,10741643,5
+125048819,10741643,4
+ztftom,10741643,4
+55461172,10741643,5
+lalalalalala777,10741643,4
+kaca_tana,10741643,4
+turandot0815,10741643,3
+catails,10741643,4
+34505646,10741643,4
+suesyria,10741643,5
+57915415,10741643,5
+wkwkaka,10741643,4
+58821250,10741643,4
+83538603,10741643,5
+52299764,10741643,-1
+yuloveyan,10741643,4
+63789531,10741643,4
+6235005,10741643,5
+103351378,10741643,4
+jonahzoro,10741643,4
+neujing,10741643,5
+conanyoung,10741643,4
+zihaozai0407,10741643,4
+douban127561500,10741643,4
+cctebb,10741643,4
+76536277,10741643,-1
+59638708,10741643,3
+yycznh0520,10741643,5
+4156087,10741643,4
+nowingcolorful,10741643,4
+56979434,10741643,4
+122228928,10741643,5
+125148047,10741643,4
+67796824,10741643,4
+50412688,10741643,4
+131427089,10741643,4
+63677986,10741643,4
+1600165,10741643,3
+49946146,10741643,5
+50341396,10741643,4
+xiaodao102,10741643,3
+79875260,10741643,4
+37488812,10741643,5
+85222087,10741643,5
+68332314,10741643,4
+4696505,10741643,4
+xileabc,10741643,3
+61834617,10741643,3
+bubbles0127,10741643,5
+43906549,10741643,4
+95360863,10741643,5
+129475990,10741643,4
+TimonPeng,10741643,4
+58697685,10741643,2
+ye1122,10741643,5
+treeplanting,10741643,4
+joyyoung19,10741643,5
+119587434,10741643,3
+79248836,10741643,4
+liangmx,10741643,5
+xxyoyo,10741643,4
+52652829,10741643,3
+51126355,10741643,5
+101864611,10741643,4
+difference,10741643,3
+84538241,10741643,2
+52484368,10741643,4
+4575674,10741643,5
+qingdonghai,10741643,5
+68693771,10741643,5
+44501154,10741643,4
+37871722,10741643,5
+se2o3,10741643,4
+128017227,10741643,5
+125518351,10741643,5
+dadadidada,10741643,5
+50753568,10741643,4
+ziroad,10741643,4
+98880412,10741643,4
+50539812,10741643,5
+26327446,10741643,4
+2402223,10741643,4
+52460628,10741643,5
+51833613,10741643,4
+47662832,10741643,4
+79676766,10741643,4
+1886453,10741643,4
+83234314,10741643,4
+53307722,10741643,5
+58282966,10741643,5
+83359033,10741643,4
+55631098,10741643,5
+tomop,10741643,3
+131274312,10741643,5
+83145085,10741643,3
+131333953,10741643,5
+36279517,10741643,4
+53998675,10741643,5
+131115228,10741643,5
+xinzhengs,10741643,3
+101026869,10741643,5
+brownie.fr,10741643,4
+54506320,10741643,4
+67011353,10741643,4
+92805867,10741643,4
+3471574,10741643,5
+fatfatpanda,10741643,5
+124059577,10741643,4
+40078356,10741643,4
+menkoumahu,10741643,5
+46590871,10741643,4
+lovelyyuchen,10741643,5
+unrealzhizhi,10741643,5
+48066058,10741643,4
+amyenvy,10741643,4
+efox5,10741643,2
+43562341,10741643,3
+28130963,10741643,4
+pennate,10741643,4
+59725846,10741643,4
+127080428,10741643,5
+122223267,10741643,4
+126125294,10741643,4
+4664058,10741643,5
+AfterElev,10741643,4
+115714696,10741643,5
+4348412,10741643,3
+74877561,10741643,4
+115162284,10741643,5
+63765984,10741643,4
+get0ut,10741643,5
+64737081,10741643,3
+1061597,10741643,4
+81474835,10741643,3
+jollar,10741643,4
+4725146,10741643,3
+46210114,10741643,4
+56103306,10741643,1
+48723518,10741643,4
+sancosmos,10741643,2
+1978167,10741643,5
+62892368,10741643,4
+4357598,10741643,4
+peggy1998,10741643,5
+74031207,10741643,4
+47346448,10741643,4
+senlan13,10741643,5
+65920181,10741643,5
+50875593,10741643,4
+64056125,10741643,4
+53617950,10741643,4
+42993511,10741643,3
+58433027,10741643,4
+42594038,10741643,5
+130223345,10741643,3
+eve_sky,10741643,3
+103411467,10741643,4
+61351953,10741643,4
+sue0x,10741643,3
+48254044,10741643,4
+71597507,10741643,-1
+4624620,10741643,4
+29834677,10741643,5
+54778746,10741643,3
+104551226,10741643,4
+49103701,10741643,4
+48119914,10741643,3
+Yulia,10741643,4
+polarday,10741643,4
+walkingtime,10741643,4
+excalibur13,10741643,5
+princessring,10741643,3
+62821663,10741643,5
+59778777,10741643,4
+102906934,10741643,5
+2822846,10741643,5
+78666237,10741643,4
+Bonacci,10741643,3
+62252532,10741643,5
+yt19911130,10741643,5
+3583305,10741643,5
+2359242,10741643,4
+anitasayz,10741643,3
+84708478,10741643,5
+31820753,10741643,4
+zzyzeal,10741643,3
+81985285,10741643,5
+mubin,10741643,4
+woodsjan,10741643,5
+131168132,10741643,5
+66810723,10741643,3
+66810723,10741643,3
+gis,10741643,5
+2076509,10741643,4
+65538675,10741643,4
+47348105,10741643,5
+venus3255,10741643,5
+54064610,10741643,5
+4114969,10741643,4
+34033819,10741643,4
+122891503,10741643,5
+14745605,10741643,4
+1458725,10741643,4
+126911965,10741643,3
+kwokchloe,10741643,4
+52305285,10741643,4
+50616224,10741643,4
+37607914,10741643,5
+Zzzz0132,10741643,3
+klot,10741643,4
+leee14,10741643,1
+leee14,10741643,1
+luoyemin,10741643,5
+119427193,10741643,4
+56162477,10741643,3
+4160312,10741643,4
+49232061,10741643,3
+125524083,10741643,4
+SuzumiyaHaruhi,10741643,5
+2832706,10741643,3
+sunshicy,10741643,4
+Pettyi,10741643,4
+2416285,10741643,4
+56484149,10741643,3
+mrgirl,10741643,4
+82972172,10741643,4
+58003887,10741643,4
+2888450,10741643,4
+57399606,10741643,4
+92592691,10741643,4
+83681028,10741643,4
+13424583,10741643,5
+4514152,10741643,5
+79285037,10741643,5
+62403296,10741643,4
+followyourwind,10741643,3
+1352009,10741643,5
+chinimei,10741643,4
+33091901,10741643,5
+47193126,10741643,3
+Hero19991031,10741643,4
+Lan.die,10741643,3
+abomination,10741643,3
+49147828,10741643,4
+NinaAobi,10741643,5
+56847469,10741643,5
+131147823,10741643,4
+58042557,10741643,4
+56839601,10741643,5
+59568327,10741643,5
+2062909,10741643,4
+64575050,10741643,5
+52691772,10741643,5
+117235320,10741643,4
+36753404,10741643,5
+mabinogi1989,10741643,5
+tinaq,10741643,3
+loveyixiao,10741643,4
+79192198,10741643,4
+2260384,10741643,3
+55904143,10741643,5
+92629215,10741643,5
+lying0,10741643,5
+2411985,10741643,5
+68440820,10741643,5
+1771263,10741643,4
+mengshixilou,10741643,5
+53223307,10741643,5
+59905029,10741643,5
+penglanbo,10741643,3
+49101101,10741643,5
+49101101,10741643,5
+memoricry,10741643,5
+115971779,10741643,5
+odeya,10741643,5
+130292196,10741643,4
+1799681,10741643,4
+gizonazale,10741643,4
+68436569,10741643,5
+43874690,10741643,5
+47813563,10741643,5
+72451077,10741643,5
+59687240,10741643,5
+63032360,10741643,5
+1294447,10741643,4
+3028605,10741643,5
+49513200,10741643,5
+64841580,10741643,-1
+wanglutong,10741643,5
+123016146,10741643,5
+53863493,10741643,3
+58389015,10741643,5
+55854720,10741643,5
+zoe_john,10741643,5
+54512951,10741643,4
+122340180,10741643,4
+50982696,10741643,4
+tianchuan,10741643,3
+81174599,10741643,3
+1564139,10741643,3
+130846662,10741643,3
+57847628,10741643,-1
+32015744,10741643,3
+45008619,10741643,4
+yumiaowater,10741643,3
+41090322,10741643,5
+11283127,10741643,5
+zhoujc0203,10741643,4
+4357790,10741643,3
+46792245,10741643,5
+41521750,10741643,4
+67279545,10741643,5
+121620281,10741643,4
+63531655,10741643,4
+shionHsu,10741643,4
+87903865,10741643,5
+47556778,10741643,4
+hhvan,10741643,5
+yanmo2015,10741643,3
+zuotianyou,10741643,2
+lh_amber,10741643,4
+3339805,10741643,4
+INTERSECTION,10741643,4
+cosy0825,10741643,3
+asnito,10741643,5
+47081544,10741643,4
+2370392,10741643,5
+maple_zt,10741643,5
+65470085,10741643,4
+zhyin,10741643,4
+51467868,10741643,4
+Charloo,10741643,3
+joseqiu,10741643,5
+52839041,10741643,2
+mwr23929,10741643,5
+131057641,10741643,1
+35846375,10741643,5
+130944160,10741643,5
+42636733,10741643,3
+27466679,10741643,4
+65398795,10741643,4
+28695473,10741643,5
+44473457,10741643,5
+128483778,10741643,5
+27852981,10741643,-1
+Maze10888119,10741643,4
+56810105,10741643,4
+miss0804,10741643,5
+74622589,10741643,3
+Lira_13,10741643,3
+46379813,10741643,5
+missaaa,10741643,-1
+87647683,10741643,5
+4450213,10741643,4
+48034227,10741643,5
+62259012,10741643,4
+81804473,10741643,4
+70091695,10741643,5
+54664894,10741643,4
+forsky,10741643,5
+too_up,10741643,5
+55671161,10741643,4
+57097536,10741643,4
+121055436,10741643,4
+samuelv,10741643,4
+zinedine22,10741643,4
+30186731,10741643,2
+47492303,10741643,4
+78533472,10741643,4
+60370348,10741643,5
+36544535,10741643,4
+pkbraveheart,10741643,5
+1314610,10741643,4
+33761032,10741643,5
+119463216,10741643,4
+taozilove1314,10741643,5
+cindycj,10741643,5
+61422378,10741643,5
+bebest,10741643,4
+97211660,10741643,4
+63359487,10741643,4
+52045650,10741643,5
+17871243,10741643,4
+47885824,10741643,2
+69770129,10741643,5
+43133361,10741643,4
+61279122,10741643,5
+114350663,10741643,4
+48044328,10741643,5
+4087422,10741643,4
+84169034,10741643,4
+wesing,10741643,2
+41206383,10741643,4
+121998810,10741643,5
+60082922,10741643,3
+guanchen76,10741643,4
+79820628,10741643,5
+71543053,10741643,4
+4841673,10741643,4
+wppwpx,10741643,2
+shxhwf,10741643,5
+2875093,10741643,4
+130787417,10741643,3
+44699129,10741643,5
+96048469,10741643,5
+63594977,10741643,5
+3703464,10741643,3
+42260529,10741643,5
+87682419,10741643,3
+65236729,10741643,4
+121622673,10741643,5
+121622673,10741643,5
+103296929,10741643,3
+122107585,10741643,5
+92775477,10741643,5
+71541185,10741643,4
+65669464,10741643,5
+myboo,10741643,5
+2510900,10741643,5
+shannon_lxj,10741643,4
+65051253,10741643,4
+45190826,10741643,3
+1485397,10741643,5
+51293208,10741643,5
+120302342,10741643,-1
+llzzss,10741643,5
+Rachel180236,10741643,5
+57054371,10741643,5
+Gertyoung,10741643,5
+52072030,10741643,5
+pengpeng0308,10741643,5
+pengpeng0308,10741643,5
+2480244,10741643,4
+126745018,10741643,4
+3066956,10741643,4
+36617215,10741643,5
+66989332,10741643,3
+120884692,10741643,4
+54983933,10741643,5
+64304447,10741643,3
+66257821,10741643,5
+clytzesmile,10741643,5
+49147813,10741643,5
+77393842,10741643,5
+79071564,10741643,3
+73530078,10741643,5
+Iamyouxiaoyou,10741643,4
+wxsw,10741643,5
+4595505,10741643,4
+49807065,10741643,4
+redkid,10741643,4
+52033027,10741643,4
+layla0301,10741643,2
+41864568,10741643,5
+1498731,10741643,5
+alicelotus,10741643,3
+115895353,10741643,4
+66141079,10741643,4
+59413586,10741643,4
+laaviee,10741643,4
+60760507,10741643,4
+115897834,10741643,4
+130937387,10741643,4
+60158806,10741643,4
+50531723,10741643,4
+71389371,10741643,4
+boohooer,10741643,3
+firecrane,10741643,4
+16497021,10741643,4
+5490095,10741643,5
+4342819,10741643,3
+3090478,10741643,4
+62523670,10741643,4
+qo_op,10741643,4
+38008208,10741643,4
+44430809,10741643,2
+57467059,10741643,5
+45362948,10741643,3
+127944882,10741643,5
+58547520,10741643,3
+51589899,10741643,5
+43057375,10741643,4
+47063315,10741643,5
+1282298,10741643,5
+shiningmonkey,10741643,4
+lx1994,10741643,4
+esperanzayoho,10741643,4
+1574402,10741643,4
+48910680,10741643,5
+58148727,10741643,3
+liusihui,10741643,5
+54225374,10741643,5
+33304415,10741643,3
+78176296,10741643,2
+50916243,10741643,4
+59707316,10741643,4
+8843176,10741643,5
+shirley317,10741643,4
+44291286,10741643,3
+120630724,10741643,4
+34696386,10741643,3
+qcystudio,10741643,4
+46988809,10741643,4
+49761027,10741643,5
+FeeSouler,10741643,5
+78571558,10741643,4
+47251014,10741643,5
+87557958,10741643,4
+47239413,10741643,3
+130806444,10741643,3
+58073329,10741643,4
+nancysmile,10741643,5
+36862197,10741643,3
+2109718,10741643,4
+130872044,10741643,3
+49004115,10741643,4
+52392093,10741643,5
+ben0813,10741643,3
+1613608,10741643,5
+imqxq,10741643,-1
+2005598,10741643,3
+izane,10741643,5
+no1like_u,10741643,5
+Adnachiel,10741643,3
+iqiqio,10741643,3
+41340646,10741643,5
+zeeta,10741643,5
+zswd1989,10741643,4
+54036678,10741643,3
+114422467,10741643,5
+MisS_Umylove,10741643,4
+antchouet,10741643,5
+levkimi,10741643,3
+rongyan1223,10741643,4
+auixote,10741643,5
+50343094,10741643,5
+j823,10741643,5
+Phyllis5,10741643,3
+3331039,10741643,4
+89529154,10741643,5
+1688906,10741643,2
+55549573,10741643,5
+2714554,10741643,3
+130851961,10741643,5
+45425062,10741643,4
+130718602,10741643,4
+50533522,10741643,5
+43814222,10741643,4
+46813038,10741643,3
+donkele,10741643,5
+2171690,10741643,4
+aigreeny,10741643,4
+57430540,10741643,4
+3619895,10741643,4
+deadcolour,10741643,3
+clf0827,10741643,5
+60194241,10741643,4
+craneink,10741643,1
+63261736,10741643,4
+10236919,10741643,4
+xixixiaoye,10741643,3
+102173093,10741643,4
+58921825,10741643,5
+46247554,10741643,4
+fengwanjing,10741643,4
+50890852,10741643,3
+47504020,10741643,5
+46722646,10741643,4
+1768350,10741643,4
+71760114,10741643,3
+50307527,10741643,-1
+GZ,10741643,2
+Raphael_cc,10741643,5
+77461037,10741643,4
+46287830,10741643,-1
+fanzai8,10741643,3
+mctrain,10741643,4
+shane90,10741643,4
+yashow,10741643,5
+43118043,10741643,5
+iffrank,10741643,5
+hamowi,10741643,4
+130817915,10741643,5
+LuciaEvans,10741643,4
+44492341,10741643,4
+71576870,10741643,4
+millylyu,10741643,3
+97982238,10741643,3
+58927688,10741643,4
+akaneshiro,10741643,5
+3768242,10741643,4
+2265399,10741643,4
+miffyyoung,10741643,4
+49358861,10741643,3
+2422804,10741643,5
+55974456,10741643,4
+horan,10741643,4
+4657073,10741643,4
+xxxiyybabe,10741643,5
+SleeplessQueen,10741643,3
+79127642,10741643,5
+TingUndo,10741643,4
+53888176,10741643,5
+ly900311,10741643,5
+31948446,10741643,4
+ericyijun,10741643,4
+59285776,10741643,4
+3994603,10741643,4
+37503720,10741643,5
+57508556,10741643,4
+93004540,10741643,5
+5215498,10741643,1
+xumhandy,10741643,4
+45315390,10741643,2
+yanniyanni,10741643,5
+4376255,10741643,5
+52411930,10741643,4
+130484741,10741643,4
+94353228,10741643,5
+1953349,10741643,5
+64716585,10741643,4
+70873982,10741643,1
+4001333,10741643,4
+53516691,10741643,5
+sasa926,10741643,3
+130369122,10741643,4
+leelala,10741643,4
+1951463,10741643,3
+70862713,10741643,4
+130770428,10741643,3
+66926887,10741643,4
+duducool,10741643,5
+zhda,10741643,-1
+48892810,10741643,5
+yaya102,10741643,5
+asiov,10741643,3
+imthewind,10741643,4
+onedotdot,10741643,4
+66467700,10741643,5
+4245687,10741643,5
+44453325,10741643,3
+63226647,10741643,5
+xylonapp,10741643,3
+49174412,10741643,4
+60655749,10741643,4
+129269489,10741643,3
+57217354,10741643,3
+2679276,10741643,3
+39058247,10741643,4
+1110575,10741643,3
+22137040,10741643,3
+22137040,10741643,3
+88881527,10741643,5
+55454823,10741643,3
+80126415,10741643,4
+liqiuzi0807,10741643,4
+57912320,10741643,5
+73132535,10741643,4
+31260805,10741643,5
+62655903,10741643,5
+60042561,10741643,5
+54707603,10741643,5
+hitori_guai,10741643,4
+63928716,10741643,4
+65059952,10741643,4
+64708561,10741643,5
+124384968,10741643,3
+46661661,10741643,4
+2994831,10741643,4
+6775618,10741643,4
+61716065,10741643,4
+ms_one,10741643,4
+41026219,10741643,3
+4332785,10741643,5
+pihou,10741643,4
+130740344,10741643,4
+4302651,10741643,5
+96914313,10741643,1
+xixihahaxiao,10741643,3
+121734611,10741643,3
+53783506,10741643,3
+85234116,10741643,5
+HEbelongtome,10741643,4
+28313985,10741643,5
+85671125,10741643,4
+qinggeyixia,10741643,4
+qinyi0705,10741643,5
+69254172,10741643,5
+47427697,10741643,4
+goze,10741643,4
+122385818,10741643,5
+datouzhang,10741643,3
+17828049,10741643,4
+imulu,10741643,4
+27647451,10741643,4
+130146016,10741643,4
+49731358,10741643,4
+solokimi,10741643,5
+98956475,10741643,5
+3931171,10741643,5
+82576144,10741643,3
+1437680,10741643,3
+omniwillpotent,10741643,5
+66778770,10741643,5
+88402127,10741643,5
+manyucastle,10741643,4
+49713178,10741643,5
+yifeng2013,10741643,5
+75532338,10741643,5
+yeyixin,10741643,5
+takoyaki,10741643,5
+imcici08,10741643,4
+65514496,10741643,4
+75168640,10741643,-1
+45182883,10741643,5
+deng372116693,10741643,5
+2544442,10741643,4
+28074817,10741643,5
+looool1111,10741643,4
+62324065,10741643,5
+autumnginger,10741643,4
+3846099,10741643,4
+41796932,10741643,2
+83987761,10741643,2
+zhuqingdaren,10741643,3
+micao-onlyhui,10741643,3
+43521478,10741643,3
+64047703,10741643,4
+66932854,10741643,4
+94863622,10741643,3
+4137118,10741643,4
+33649081,10741643,5
+59979647,10741643,5
+81253472,10741643,4
+55393755,10741643,-1
+76633178,10741643,4
+4652776,10741643,3
+38404027,10741643,5
+niudongfei,10741643,5
+55453068,10741643,4
+65532408,10741643,4
+seekjadeworld,10741643,4
+48262898,10741643,5
+93846206,10741643,4
+70055114,10741643,4
+xiaoshengfish,10741643,4
+plawyer,10741643,4
+caesarjuly,10741643,5
+Leo93727,10741643,5
+txiawd,10741643,1
+45536348,10741643,3
+44487838,10741643,4
+96948133,10741643,4
+128020172,10741643,4
+54231536,10741643,4
+facingsky,10741643,4
+44700374,10741643,5
+63593976,10741643,3
+oulichen,10741643,4
+arthurch10,10741643,4
+2203673,10741643,-1
+ECbunny,10741643,4
+nuriazsy,10741643,5
+87488888,10741643,4
+62360669,10741643,5
+2156064,10741643,5
+ranwuwu,10741643,4
+62436675,10741643,5
+102015485,10741643,3
+65498039,10741643,4
+wildyak,10741643,5
+wildyak,10741643,5
+94441801,10741643,5
+3058291,10741643,3
+BeautyLogos_M,10741643,5
+yusuf,10741643,3
+84152502,10741643,4
+84042964,10741643,4
+73942250,10741643,3
+98011719,10741643,5
+33489379,10741643,5
+fengshurui,10741643,-1
+carol2sea,10741643,4
+freeilove,10741643,5
+122266314,10741643,3
+lunaya,10741643,3
+huizuomou,10741643,3
+xly-kk,10741643,4
+57629601,10741643,5
+57577352,10741643,4
+92324793,10741643,5
+47346958,10741643,3
+67795117,10741643,-1
+HappinessZero,10741643,4
+3995983,10741643,4
+76116317,10741643,4
+29472366,10741643,5
+hugoshen,10741643,4
+1411076,10741643,5
+122302820,10741643,3
+130658738,10741643,4
+56957508,10741643,-1
+tuantuandoudou,10741643,3
+81103621,10741643,4
+66792674,10741643,4
+52732434,10741643,5
+zuozuo1990,10741643,5
+103563964,10741643,4
+mycio,10741643,5
+97441905,10741643,4
+65358454,10741643,5
+51903311,10741643,5
+82315938,10741643,4
+fansz,10741643,5
+cyx2957,10741643,5
+69355415,10741643,5
+84760326,10741643,5
+66055788,10741643,5
+130613741,10741643,4
+58954568,10741643,2
+tongflower,10741643,3
+45858265,10741643,5
+127704028,10741643,2
+chaochao85mao,10741643,-1
+zhangzhibin,10741643,5
+49424927,10741643,5
+48523065,10741643,3
+honeybunny9048,10741643,3
+130510398,10741643,3
+95892837,10741643,5
+pulupulu,10741643,2
+diva.by,10741643,4
+121113544,10741643,-1
+52244189,10741643,4
+3676493,10741643,4
+63493583,10741643,3
+25736895,10741643,5
+takewater,10741643,4
+57416481,10741643,5
+60814711,10741643,5
+58245871,10741643,4
+Olivia_NJ,10741643,5
+56185722,10741643,5
+ChiuJustin,10741643,3
+47586387,10741643,4
+44858798,10741643,5
+56608851,10741643,4
+88610055,10741643,5
+ViviaChen,10741643,5
+57370195,10741643,4
+swisskiss,10741643,5
+58847654,10741643,5
+zhougan,10741643,3
+weiranwei,10741643,4
+zjhztjj,10741643,5
+49341014,10741643,5
+2230826,10741643,3
+68031714,10741643,3
+70720802,10741643,5
+39727226,10741643,-1
+gooxx,10741643,3
+85293907,10741643,4
+68040274,10741643,3
+54034859,10741643,3
+fengyanjujing,10741643,5
+50198822,10741643,4
+68636133,10741643,3
+jinnjinnee,10741643,4
+80110021,10741643,4
+lulu521621,10741643,5
+63218646,10741643,4
+98130655,10741643,4
+Popdai,10741643,5
+2655575,10741643,4
+97341954,10741643,3
+rebmevon,10741643,5
+SYF_923,10741643,4
+muyedou,10741643,5
+suzhaoyang,10741643,5
+58405499,10741643,5
+jacky0717,10741643,4
+51227412,10741643,5
+33141607,10741643,5
+73849647,10741643,5
+dreamer629,10741643,5
+69121938,10741643,5
+120332872,10741643,4
+jijiyuluo,10741643,4
+67273212,10741643,4
+85219572,10741643,4
+59613028,10741643,5
+nealwzn,10741643,4
+puyangxixu,10741643,5
+uuul,10741643,5
+30515688,10741643,4
+48804623,10741643,5
+73154787,10741643,5
+1187053,10741643,3
+33118181,10741643,5
+48937810,10741643,3
+83318358,10741643,3
+80770457,10741643,3
+48949608,10741643,4
+4273609,10741643,4
+49653767,10741643,4
+RF181920,10741643,5
+44976171,10741643,4
+46456200,10741643,4
+52189374,10741643,4
+22525155,10741643,4
+99989883,10741643,5
+58754535,10741643,4
+mo719125078,10741643,4
+2407786,10741643,-1
+4138330,10741643,4
+ParadiseJaxn,10741643,4
+adorable-me,10741643,5
+bxjh,10741643,5
+mewcatcher,10741643,5
+Libys,10741643,4
+littlegreeeeen,10741643,3
+68014143,10741643,3
+liangjingyu,10741643,5
+yaoez,10741643,4
+vanessa-hsueh,10741643,5
+70094249,10741643,4
+simaxiangru118,10741643,4
+jojoqiao,10741643,5
+36863858,10741643,4
+93299177,10741643,-1
+1265797,10741643,3
+104680634,10741643,4
+ludancong,10741643,3
+38393844,10741643,5
+54888937,10741643,5
+52077451,10741643,4
+81896913,10741643,-1
+64044442,10741643,5
+46540910,10741643,5
+Hey_825,10741643,5
+1818164,10741643,5
+theLastQuijote,10741643,-1
+49676844,10741643,3
+127083089,10741643,4
+2249187,10741643,5
+69259241,10741643,4
+60624243,10741643,4
+fionanunu,10741643,5
+Hola_Nana,10741643,4
+Suumer007,10741643,4
+66035004,10741643,4
+66035004,10741643,4
+sunwiner,10741643,4
+49334957,10741643,3
+49973940,10741643,5
+73090489,10741643,5
+114269656,10741643,4
+70291149,10741643,5
+130338838,10741643,4
+52869049,10741643,4
+yenobis,10741643,4
+73034014,10741643,5
+72394611,10741643,5
+yoliyatian,10741643,4
+69970746,10741643,5
+50797453,10741643,3
+bathorycc,10741643,3
+34479740,10741643,5
+27254965,10741643,4
+3248812,10741643,4
+rainielo,10741643,5
+121400884,10741643,5
+126010684,10741643,3
+faye2,10741643,4
+3758018,10741643,4
+tinkertseng,10741643,4
+61453526,10741643,3
+79373006,10741643,5
+46564377,10741643,5
+naizhengtan,10741643,3
+M.Roseline,10741643,5
+70534967,10741643,4
+84147839,10741643,5
+64281177,10741643,5
+42122736,10741643,3
+1697947,10741643,4
+applebunny,10741643,5
+10418486,10741643,4
+62036290,10741643,3
+80978535,10741643,3
+1486195,10741643,-1
+zmx447684192,10741643,4
+55793060,10741643,3
+3351778,10741643,5
+46395531,10741643,5
+88219909,10741643,4
+54997794,10741643,4
+70690321,10741643,3
+40208226,10741643,5
+caspianwky,10741643,1
+62902715,10741643,3
+70779185,10741643,4
+53289993,10741643,5
+83675754,10741643,4
+22457571,10741643,4
+tracy0702,10741643,4
+80808595,10741643,5
+peashooter,10741643,3
+64805151,10741643,5
+Pikachu1127,10741643,5
+52161408,10741643,5
+4488756,10741643,4
+Youthy,10741643,4
+tifa_woo,10741643,-1
+53485302,10741643,4
+55310984,10741643,4
+67330888,10741643,1
+Lucian_Liu,10741643,4
+80076163,10741643,3
+63011235,10741643,4
+aurawang95,10741643,3
+124869246,10741643,5
+cn50344,10741643,5
+50681467,10741643,4
+tonypaopao,10741643,4
+tlping,10741643,3
+5592925,10741643,5
+tsebb,10741643,3
+57840498,10741643,3
+73819884,10741643,4
+130375719,10741643,3
+73332736,10741643,3
+xiangdongMHz,10741643,-1
+33010059,10741643,4
+42046908,10741643,5
+4719654,10741643,4
+49326502,10741643,5
+zhadee,10741643,5
+aquarter-d,10741643,4
+50335790,10741643,5
+terranw,10741643,4
+90807462,10741643,4
+3633723,10741643,3
+127937424,10741643,4
+49415138,10741643,4
+33665319,10741643,4
+50222666,10741643,-1
+62291927,10741643,4
+73942722,10741643,4
+88135973,10741643,5
+58479235,10741643,5
+45223979,10741643,4
+PussyEva,10741643,3
+yscysc803,10741643,2
+130399797,10741643,4
+125760534,10741643,4
+56720234,10741643,5
+3556508,10741643,5
+zeonwon,10741643,3
+verstand,10741643,5
+48216227,10741643,3
+43277649,10741643,4
+diqiuchaoren,10741643,3
+qulinzhang,10741643,4
+Alice_xue.,10741643,4
+wxay,10741643,5
+92718752,10741643,-1
+52141746,10741643,3
+58290553,10741643,5
+jianchen810,10741643,3
+36613497,10741643,3
+100770755,10741643,3
+66031948,10741643,5
+57572137,10741643,4
+fantasy219,10741643,5
+123350627,10741643,4
+jinkewulei,10741643,-1
+129490479,10741643,4
+83876578,10741643,5
+cancer1990,10741643,4
+24068635,10741643,5
+43920577,10741643,5
+2413967,10741643,4
+32001555,10741643,4
+zuiyufengzhong,10741643,4
+53107283,10741643,4
+114657880,10741643,4
+121491917,10741643,-1
+53466957,10741643,5
+76802284,10741643,4
+49206442,10741643,4
+42781520,10741643,4
+53185051,10741643,4
+63236278,10741643,4
+3572516,10741643,4
+tx515,10741643,4
+128739482,10741643,4
+60054131,10741643,4
+62710638,10741643,4
+79666507,10741643,3
+52688114,10741643,5
+mixicook,10741643,3
+vosr,10741643,5
+D1984,10741643,4
+c.g,10741643,4
+78074889,10741643,5
+120466803,10741643,4
+51773782,10741643,3
+lesoleil29,10741643,3
+fdshanqun,10741643,4
+44966176,10741643,5
+2475141,10741643,4
+66091107,10741643,5
+62652935,10741643,-1
+blueguy,10741643,4
+43377923,10741643,4
+51157503,10741643,4
+MayaDey,10741643,1
+2328580,10741643,4
+74196181,10741643,5
+67575009,10741643,5
+lancaoqin,10741643,-1
+Lefien,10741643,3
+51694672,10741643,4
+128698230,10741643,4
+3832888,10741643,4
+42687053,10741643,5
+14337522,10741643,-1
+babyneiei,10741643,4
+92301681,10741643,4
+princewk1008,10741643,2
+51099915,10741643,5
+46494864,10741643,5
+whereiskurt,10741643,3
+34989648,10741643,5
+51912235,10741643,3
+3618040,10741643,4
+75807285,10741643,4
+ling821,10741643,5
+elyoo,10741643,5
+ming_203344,10741643,5
+60246775,10741643,4
+3627880,10741643,5
+2617125,10741643,4
+3759585,10741643,4
+hotzenplotz,10741643,2
+74234828,10741643,5
+humechan,10741643,4
+3635055,10741643,5
+76274839,10741643,4
+amberbo,10741643,-1
+51620794,10741643,4
+58344309,10741643,5
+yanqian,10741643,4
+Bubble-Geek,10741643,5
+60352109,10741643,4
+106074507,10741643,5
+88427804,10741643,4
+130093495,10741643,3
+39871697,10741643,4
+evilynq,10741643,3
+endlessid,10741643,3
+hiu,10741643,4
+smile0826,10741643,5
+3486254,10741643,3
+weili27,10741643,5
+58448667,10741643,5
+lianwei,10741643,4
+83364806,10741643,-1
+62278605,10741643,4
+99570083,10741643,-1
+99570083,10741643,-1
+Smooth0727,10741643,5
+acseleon,10741643,4
+41680643,10741643,2
+eaglewang_zy,10741643,5
+65392414,10741643,5
+moranxianchen,10741643,5
+90525586,10741643,2
+xiaren2011,10741643,5
+soldier1719,10741643,4
+shenyuning,10741643,3
+36847599,10741643,5
+double8p,10741643,4
+4708174,10741643,4
+53510827,10741643,5
+lealan,10741643,4
+42585256,10741643,5
+meteora,10741643,5
+nan0521,10741643,5
+35047264,10741643,4
+graciesy,10741643,3
+foreverlandvan,10741643,5
+felixqiqi,10741643,5
+60891393,10741643,5
+68449205,10741643,5
+90467667,10741643,4
+28835602,10741643,5
+56154911,10741643,5
+43269770,10741643,3
+ch_ren,10741643,3
+127552693,10741643,4
+4543622,10741643,5
+71057399,10741643,4
+kuangren79,10741643,4
+OntheDesk,10741643,5
+130344702,10741643,4
+53935985,10741643,4
+102824142,10741643,5
+64359672,10741643,-1
+54766723,10741643,4
+4250797,10741643,5
+macroideal,10741643,4
+43662683,10741643,5
+jadyx,10741643,4
+59719545,10741643,5
+sabrinakeh,10741643,4
+74321040,10741643,5
+ilovesusan,10741643,4
+50785660,10741643,5
+60591844,10741643,5
+53080180,10741643,4
+1318747,10741643,5
+1894296,10741643,5
+39991969,10741643,4
+4223889,10741643,5
+1796581,10741643,4
+80901919,10741643,5
+5642184,10741643,5
+life8287,10741643,5
+48226644,10741643,4
+66340058,10741643,5
+46714118,10741643,5
+3307804,10741643,-1
+76021519,10741643,-1
+32798555,10741643,4
+doravilla,10741643,3
+79417839,10741643,5
+65123880,10741643,5
+99910728,10741643,1
+80433862,10741643,5
+ARREN,10741643,5
+dadywox,10741643,2
+mingyuejiang,10741643,3
+44604880,10741643,4
+16685272,10741643,3
+1320096,10741643,4
+cyjcyj92,10741643,5
+sunchao1989,10741643,3
+70160049,10741643,4
+33228926,10741643,4
+91349757,10741643,5
+freedomandlove,10741643,3
+leedany,10741643,3
+37335417,10741643,2
+wgs84,10741643,4
+62335557,10741643,5
+52323244,10741643,5
+rianna,10741643,5
+52209428,10741643,5
+62757407,10741643,5
+62587889,10741643,5
+48532280,10741643,5
+67760577,10741643,4
+fkimi,10741643,3
+48940231,10741643,5
+90600659,10741643,2
+45057209,10741643,4
+63915564,10741643,3
+60903582,10741643,4
+han-han,10741643,4
+80598509,10741643,1
+luweicong,10741643,5
+66893773,10741643,-1
+alvinyan,10741643,1
+2108082,10741643,5
+127216522,10741643,5
+pi3_14159265358,10741643,4
+62668317,10741643,5
+someoneunknown,10741643,4
+68900028,10741643,5
+55444348,10741643,5
+3690570,10741643,5
+elegantcrazer,10741643,5
+75325570,10741643,4
+idida,10741643,3
+52771940,10741643,5
+63318519,10741643,4
+53022796,10741643,4
+54757698,10741643,5
+ParadiseOfFilm,10741643,5
+50449064,10741643,4
+pretd,10741643,4
+36898535,10741643,5
+92136062,10741643,4
+35569894,10741643,5
+4509525,10741643,5
+79260802,10741643,4
+120303134,10741643,2
+120995671,10741643,4
+sleepwalk,10741643,3
+xiaopniuer,10741643,-1
+faithNan,10741643,4
+3450620,10741643,4
+72007818,10741643,5
+XPbalala,10741643,4
+3229037,10741643,5
+4019770,10741643,5
+61058075,10741643,3
+lrainlee,10741643,4
+linyuyuan,10741643,3
+53374291,10741643,4
+104517766,10741643,4
+49302418,10741643,5
+2364666,10741643,3
+54268700,10741643,4
+127652184,10741643,5
+idoloveyou,10741643,4
+129310710,10741643,5
+seven94,10741643,4
+88262446,10741643,5
+40567146,10741643,2
+119428504,10741643,4
+2604015,10741643,5
+70499982,10741643,3
+keneyzhao,10741643,4
+130319064,10741643,5
+63825498,10741643,5
+43295501,10741643,3
+41468359,10741643,4
+48214094,10741643,5
+66718384,10741643,4
+84438315,10741643,4
+82131016,10741643,5
+100452734,10741643,5
+sabrinamac,10741643,4
+77298977,10741643,5
+75497990,10741643,4
+56299828,10741643,5
+Scorpio_lxs,10741643,4
+57259759,10741643,5
+46597691,10741643,4
+ikezhao,10741643,5
+47457564,10741643,5
+67727408,10741643,5
+53379801,10741643,5
+4232447,10741643,5
+66946937,10741643,3
+48488105,10741643,5
+kalla,10741643,4
+qianlizi,10741643,3
+qianlizi,10741643,3
+57616940,10741643,5
+49813079,10741643,4
+51029316,10741643,5
+91957409,10741643,-1
+angiangeng,10741643,2
+62521134,10741643,4
+76359081,10741643,3
+72757269,10741643,5
+93470055,10741643,4
+30396866,10741643,3
+58767866,10741643,4
+scyk,10741643,5
+randeic,10741643,5
+52606660,10741643,5
+49587951,10741643,5
+78289516,10741643,5
+39106859,10741643,3
+soffie,10741643,4
+yaocu,10741643,5
+38808960,10741643,4
+110121611,10741643,-1
+81316047,10741643,4
+xmq2mimi,10741643,4
+SmallGiant,10741643,5
+4589772,10741643,5
+58333151,10741643,5
+jmn_white,10741643,4
+bygsun,10741643,4
+xiongyantao,10741643,5
+ihola,10741643,4
+90149495,10741643,4
+hututu429,10741643,5
+akkabby,10741643,4
+69189360,10741643,5
+80351198,10741643,3
+61806244,10741643,4
+36641977,10741643,4
+6642488,10741643,3
+yumj,10741643,4
+weiguangmuze,10741643,5
+34204093,10741643,4
+3895814,10741643,3
+Vivien9,10741643,4
+spgsw,10741643,5
+119384203,10741643,4
+47251661,10741643,1
+58977732,10741643,3
+102852145,10741643,5
+105139193,10741643,5
+124042651,10741643,4
+49996599,10741643,5
+60349367,10741643,3
+hellodj,10741643,4
+53114632,10741643,5
+50386420,10741643,5
+51120293,10741643,4
+59596056,10741643,3
+47880618,10741643,4
+73910323,10741643,4
+80072984,10741643,5
+bb0080cc,10741643,4
+50815067,10741643,4
+damichongamy,10741643,5
+shadowshmily,10741643,3
+49002133,10741643,4
+69568967,10741643,5
+62155959,10741643,5
+50712430,10741643,5
+68027669,10741643,5
+44313962,10741643,5
+57583046,10741643,4
+himarkcn,10741643,4
+peterzhou001,10741643,3
+fengbao945,10741643,4
+share329,10741643,5
+52292876,10741643,4
+babyzhaolu,10741643,4
+houjingmeng,10741643,5
+akirasama,10741643,5
+2125225,10741643,5
+4158908,10741643,3
+1391757,10741643,5
+mousethe8,10741643,5
+121594259,10741643,4
+5251004,10741643,4
+47561470,10741643,4
+58642925,10741643,4
+14691847,10741643,5
+34347136,10741643,3
+3354810,10741643,5
+67870138,10741643,5
+babajiang,10741643,5
+53171655,10741643,5
+51905428,10741643,5
+happygs,10741643,5
+115777239,10741643,3
+lantiantiantian,10741643,4
+125581729,10741643,5
+usagikuma,10741643,4
+usagikuma,10741643,4
+ademuese,10741643,5
+wxstar,10741643,5
+mytimemory,10741643,4
+34104531,10741643,4
+lindoublelan,10741643,3
+lan_nal,10741643,4
+36686250,10741643,3
+47703584,10741643,3
+45648190,10741643,3
+47187620,10741643,5
+KoeyLeung,10741643,2
+54721365,10741643,3
+xiaoyan1025,10741643,4
+65195145,10741643,3
+calove,10741643,5
+77645766,10741643,5
+mrf,10741643,2
+laotang,10741643,3
+63648787,10741643,4
+73931877,10741643,1
+imai,10741643,5
+81641955,10741643,3
+56517266,10741643,5
+ElyseLee,10741643,5
+ztxzt,10741643,5
+61991749,10741643,5
+DellaZ,10741643,4
+80685538,10741643,4
+53307065,10741643,4
+60388561,10741643,3
+1183701,10741643,5
+56147281,10741643,5
+39224869,10741643,4
+37826043,10741643,5
+summerking23,10741643,5
+61449518,10741643,3
+what_is_up,10741643,4
+52285215,10741643,5
+Molan-Fish,10741643,5
+Molan-Fish,10741643,5
+56349029,10741643,5
+48539724,10741643,4
+kafka85,10741643,3
+2889153,10741643,5
+1725503,10741643,4
+2422304,10741643,3
+nuoweibai11,10741643,4
+36199638,10741643,4
+justsay,10741643,4
+candyff123,10741643,5
+59903184,10741643,5
+68753086,10741643,5
+TTTTTT-TTTTTT,10741643,2
+52721473,10741643,4
+lovemofei,10741643,3
+130044129,10741643,4
+48894602,10741643,4
+zyx321,10741643,4
+56252551,10741643,4
+13712694,10741643,4
+62815978,10741643,3
+34065248,10741643,3
+zhuangbixia,10741643,5
+48873283,10741643,5
+fuchajingran,10741643,5
+52454145,10741643,5
+121170413,10741643,3
+yvonnessm,10741643,5
+2794674,10741643,4
+82970730,10741643,5
+130111969,10741643,3
+Molly_W,10741643,4
+pipipapa,10741643,4
+76724486,10741643,5
+44244013,10741643,5
+57286187,10741643,4
+47993943,10741643,5
+50700305,10741643,-1
+auntiesarahwang,10741643,4
+46600033,10741643,4
+45994637,10741643,4
+79136436,10741643,5
+yiciyuan,10741643,5
+2808827,10741643,4
+TVXQ_huahua,10741643,5
+lingJessie,10741643,3
+dcly,10741643,4
+51092958,10741643,3
+77675129,10741643,4
+slipingtime,10741643,5
+63848305,10741643,4
+40733477,10741643,3
+3071398,10741643,2
+30359114,10741643,-1
+92177885,10741643,4
+33327621,10741643,5
+120781613,10741643,4
+55864024,10741643,3
+121942823,10741643,5
+4200810,10741643,4
+jackandivy,10741643,4
+58223216,10741643,5
+50444681,10741643,4
+60619683,10741643,5
+15583757,10741643,-1
+2239714,10741643,4
+39069960,10741643,3
+noheeyeon,10741643,5
+Sharon8807,10741643,5
+73764109,10741643,5
+zixiaosun731,10741643,3
+2728622,10741643,4
+79598328,10741643,5
+67240379,10741643,1
+fwtzzl,10741643,4
+qszone,10741643,5
+63682343,10741643,4
+3828189,10741643,3
+sTop_-,10741643,3
+71374005,10741643,3
+1283425,10741643,5
+58343189,10741643,3
+101410684,10741643,5
+3582706,10741643,-1
+soulmatestarry,10741643,-1
+51526777,10741643,4
+71519677,10741643,2
+75569999,10741643,4
+63250603,10741643,5
+42598999,10741643,4
+51399526,10741643,5
+4465654,10741643,5
+36786158,10741643,5
+jiding,10741643,3
+odette7,10741643,4
+yexuexiange,10741643,5
+leiweiyu,10741643,5
+58154180,10741643,5
+44029751,10741643,4
+41198660,10741643,5
+67461746,10741643,4
+57060844,10741643,5
+warmwanderer,10741643,5
+46632143,10741643,5
+65998081,10741643,5
+63875980,10741643,5
+71372120,10741643,5
+6400247,10741643,4
+82041849,10741643,4
+130166144,10741643,4
+rieir,10741643,4
+youranlan,10741643,5
+Shadow..,10741643,4
+esme123,10741643,4
+rocara,10741643,2
+ysfulongmei,10741643,4
+52862606,10741643,5
+3083042,10741643,3
+nigelallan,10741643,4
+48181580,10741643,-1
+shingo3001,10741643,3
+71376133,10741643,3
+1434867,10741643,5
+35071954,10741643,5
+56877055,10741643,3
+35681480,10741643,5
+4833625,10741643,4
+63270797,10741643,-1
+un-do,10741643,4
+47805986,10741643,4
+1534250,10741643,4
+56902906,10741643,5
+zeal_she,10741643,5
+64328101,10741643,4
+49419305,10741643,3
+57314870,10741643,4
+2823928,10741643,4
+Succy,10741643,-1
+61301100,10741643,5
+stepnine,10741643,5
+huanr,10741643,4
+108247778,10741643,4
+Aoiyuu,10741643,5
+40789061,10741643,4
+baleyang,10741643,3
+31241189,10741643,5
+87604568,10741643,5
+lijsh,10741643,4
+mefans2297,10741643,5
+73011629,10741643,5
+43684179,10741643,3
+chaos1223,10741643,5
+46818877,10741643,4
+yamiyomi,10741643,5
+58150013,10741643,4
+88658146,10741643,4
+43678627,10741643,5
+zfl001,10741643,5
+90690322,10741643,5
+37102807,10741643,4
+57756222,10741643,4
+sujinsheng,10741643,5
+67187094,10741643,5
+LauraLi1989,10741643,4
+Fanxia,10741643,4
+62182604,10741643,5
+47878246,10741643,5
+71539240,10741643,4
+51928382,10741643,5
+40398105,10741643,5
+47281283,10741643,4
+55945559,10741643,4
+44350691,10741643,5
+30741393,10741643,5
+doris.,10741643,5
+26563439,10741643,4
+2815045,10741643,5
+93242523,10741643,4
+77762504,10741643,5
+103786705,10741643,4
+120834416,10741643,5
+53073922,10741643,5
+63451140,10741643,5
+50158660,10741643,5
+70700918,10741643,5
+122124788,10741643,3
+63063218,10741643,5
+46680078,10741643,3
+shen_jia_yi,10741643,4
+3534837,10741643,4
+9025203,10741643,5
+silvervi,10741643,3
+90925457,10741643,5
+ameibush9799,10741643,4
+pear920,10741643,3
+2095656,10741643,5
+100423615,10741643,4
+1101526,10741643,3
+47471455,10741643,4
+42763704,10741643,4
+50166173,10741643,5
+jnyysh,10741643,5
+qweerew,10741643,5
+donbeet,10741643,5
+alvin969,10741643,4
+SUMMERFRUIT,10741643,4
+128144787,10741643,5
+4151851,10741643,4
+43220218,10741643,3
+52850914,10741643,4
+34348744,10741643,4
+tangyanlin,10741643,5
+3894685,10741643,5
+mumao,10741643,1
+75441561,10741643,5
+17471764,10741643,-1
+50101777,10741643,3
+kangecho,10741643,3
+80854961,10741643,5
+singing_bird,10741643,3
+65940007,10741643,4
+72962930,10741643,5
+leatata,10741643,-1
+53721431,10741643,4
+120945947,10741643,5
+46724128,10741643,4
+linkelf,10741643,3
+88260020,10741643,5
+63462794,10741643,5
+94923066,10741643,5
+3667309,10741643,4
+15367255,10741643,4
+3351455,10741643,4
+47047965,10741643,5
+bicaihua,10741643,4
+125136984,10741643,5
+55822264,10741643,5
+kaki812,10741643,4
+61134040,10741643,5
+66115129,10741643,5
+130110997,10741643,5
+122596452,10741643,5
+41799258,10741643,4
+3192650,10741643,4
+zhiwojian,10741643,-1
+68676250,10741643,3
+121897109,10741643,4
+2319620,10741643,2
+aegeanelsie,10741643,5
+58624199,10741643,3
+79506720,10741643,5
+60882915,10741643,3
+zhanghuaxin,10741643,4
+lolitazly,10741643,4
+51239884,10741643,3
+layla1990,10741643,3
+returnsh,10741643,2
+52911971,10741643,2
+irisdd,10741643,5
+59350005,10741643,4
+qiubofilm,10741643,3
+aizisong,10741643,4
+tangyixin1024,10741643,5
+59203729,10741643,3
+gibbousmoon,10741643,4
+MLLEfanfan,10741643,5
+79337395,10741643,3
+74060146,10741643,4
+57989017,10741643,5
+3112705,10741643,5
+3709955,10741643,5
+canvasfan,10741643,2
+OMGZZ,10741643,3
+49893647,10741643,5
+34006126,10741643,3
+xuchaoigo,10741643,4
+April_S,10741643,4
+54713128,10741643,4
+Link0406,10741643,4
+sisi_ly,10741643,4
+47817980,10741643,5
+xuyinaxxxxxxx,10741643,4
+68737314,10741643,5
+89384065,10741643,5
+83177067,10741643,5
+tcstar,10741643,5
+62158254,10741643,4
+60854968,10741643,3
+53825805,10741643,4
+75332568,10741643,4
+coco475511,10741643,4
+Lillian-LYL,10741643,3
+happyangzi,10741643,3
+44691885,10741643,5
+1450381,10741643,4
+62478858,10741643,5
+mengqingjiao,10741643,4
+58722007,10741643,3
+56564139,10741643,5
+sbnobody,10741643,5
+61042086,10741643,4
+nicy119,10741643,5
+33195867,10741643,5
+canmao,10741643,3
+57586189,10741643,4
+48348990,10741643,3
+87971449,10741643,4
+gfgkmn,10741643,5
+3711082,10741643,3
+allwordswrong,10741643,4
+51587083,10741643,3
+easy1028,10741643,5
+yiyiyang,10741643,5
+jodiefan,10741643,4
+34241600,10741643,3
+50997457,10741643,4
+24139618,10741643,4
+59892824,10741643,3
+wayneonline,10741643,5
+90644875,10741643,5
+34805156,10741643,5
+kimfly,10741643,-1
+50169799,10741643,5
+64741757,10741643,4
+84524937,10741643,4
+shijiabeini0701,10741643,4
+58865216,10741643,4
+72394582,10741643,3
+plutogezi,10741643,4
+lalaying,10741643,5
+126218323,10741643,5
+57539585,10741643,4
+sadawd,10741643,5
+xixi__Veronica,10741643,5
+54257539,10741643,4
+129382685,10741643,4
+Kelly-An,10741643,5
+2688671,10741643,3
+readyliu,10741643,4
+90562526,10741643,5
+129611962,10741643,5
+27239302,10741643,5
+ivygreen06,10741643,4
+3328450,10741643,4
+4214141,10741643,4
+1068125,10741643,4
+sarah125,10741643,3
+68580074,10741643,4
+79191929,10741643,4
+fanink,10741643,3
+thuhu,10741643,5
+72273417,10741643,3
+50155335,10741643,3
+70053404,10741643,5
+36950087,10741643,-1
+soberldly,10741643,3
+130073580,10741643,3
+wayephang,10741643,4
+122552772,10741643,5
+1529425,10741643,3
+hici,10741643,5
+realvander,10741643,3
+Deardeer_Cherry,10741643,4
+51033803,10741643,4
+62738742,10741643,3
+yiranhyy,10741643,5
+63175383,10741643,4
+2564011,10741643,1
+127686469,10741643,5
+63255258,10741643,5
+13191648,10741643,4
+wenjingbaba,10741643,3
+36641683,10741643,4
+rosaline603,10741643,5
+60997064,10741643,4
+46341793,10741643,3
+80874283,10741643,-1
+ensi,10741643,4
+Elizabeth-J,10741643,4
+evita_lj,10741643,3
+46196075,10741643,5
+Bocahontas,10741643,5
+4584253,10741643,3
+63856676,10741643,5
+119296421,10741643,5
+29326394,10741643,5
+yigeguniang,10741643,4
+52421707,10741643,5
+mintbess,10741643,4
+59307428,10741643,4
+rochand,10741643,4
+changzheng,10741643,5
+latitude19,10741643,4
+77419257,10741643,4
+53272974,10741643,5
+56832705,10741643,5
+68085124,10741643,3
+blue12,10741643,5
+61160709,10741643,4
+2678002,10741643,5
+Erishia,10741643,3
+liuyuxing,10741643,3
+lizhao2003,10741643,2
+campocampo,10741643,4
+zgd0914,10741643,5
+35546848,10741643,3
+42695669,10741643,4
+79404532,10741643,4
+rechyo,10741643,3
+1339281,10741643,5
+VZ---LZW,10741643,4
+enjoyfreedom,10741643,-1
+73864051,10741643,5
+70426965,10741643,5
+imarco,10741643,5
+in551w1,10741643,5
+45970738,10741643,3
+4431278,10741643,4
+61316248,10741643,5
+3555189,10741643,2
+1407652,10741643,5
+60686030,10741643,4
+Kishimushroom,10741643,5
+lollipopkj,10741643,5
+dingruitaba,10741643,4
+35229125,10741643,3
+129227451,10741643,3
+68124786,10741643,5
+1213301,10741643,4
+boooooook,10741643,5
+70435217,10741643,5
+1468930,10741643,2
+121650860,10741643,5
+35827809,10741643,3
+LJ_OuO,10741643,4
+15525708,10741643,5
+113095282,10741643,3
+myboo1991,10741643,4
+71029136,10741643,5
+slipknot_jmy,10741643,4
+75490431,10741643,5
+luzhu7744,10741643,5
+langsyne0907,10741643,4
+119024126,10741643,4
+Saggezza,10741643,4
+124569730,10741643,4
+44049094,10741643,4
+121041852,10741643,5
+59163242,10741643,4
+71105025,10741643,4
+127534626,10741643,4
+60346221,10741643,4
+doraeman,10741643,5
+56169417,10741643,5
+qiandouduo,10741643,3
+arielwjx,10741643,4
+guaguajiayou,10741643,3
+98809894,10741643,4
+lmishere,10741643,4
+lydiaknight,10741643,4
+6733231,10741643,4
+55534067,10741643,5
+kaixian,10741643,3
+34542650,10741643,5
+58903272,10741643,5
+Joelia,10741643,4
+luxixi99,10741643,2
+46623008,10741643,4
+5760403,10741643,4
+whitecliff,10741643,5
+63072408,10741643,3
+simple4ever,10741643,4
+54631466,10741643,5
+82725190,10741643,-1
+47161664,10741643,5
+53878159,10741643,4
+70379849,10741643,4
+ulayh0607,10741643,4
+otaku_,10741643,4
+69876426,10741643,4
+72153259,10741643,4
+55929807,10741643,5
+49170790,10741643,3
+130013448,10741643,4
+surebesure,10741643,5
+48810096,10741643,3
+4614210,10741643,4
+gcmw,10741643,4
+69264496,10741643,-1
+57639200,10741643,4
+67872119,10741643,5
+princesssyn,10741643,4
+yumanre,10741643,5
+36062081,10741643,5
+80820907,10741643,4
+52406441,10741643,-1
+51866043,10741643,4
+youzipi870,10741643,5
+130001706,10741643,4
+42540023,10741643,4
+ying823624,10741643,5
+64290822,10741643,4
+79631901,10741643,3
+qingjuesikong,10741643,3
+87442454,10741643,4
+124924998,10741643,3
+juanflyhigher,10741643,5
+100635691,10741643,4
+xiayzoe,10741643,3
+54635444,10741643,3
+audfrancis,10741643,5
+79782728,10741643,4
+PhotonicsLab,10741643,4
+3610531,10741643,4
+49161074,10741643,5
+43459920,10741643,4
+kackie,10741643,4
+6440487,10741643,4
+120069048,10741643,4
+63761410,10741643,4
+83306370,10741643,5
+102616122,10741643,5
+33567143,10741643,5
+summer0607,10741643,3
+nining,10741643,5
+professorz,10741643,5
+laurencelee,10741643,5
+75812054,10741643,5
+79735724,10741643,5
+106866145,10741643,4
+mimosa_tara,10741643,-1
+62491542,10741643,4
+4338846,10741643,5
+dongkeyuan,10741643,4
+72371285,10741643,4
+doubeirenyongle,10741643,4
+lolixiwyweiwei,10741643,-1
+32536351,10741643,3
+59353616,10741643,2
+82332915,10741643,5
+66711391,10741643,4
+frozone,10741643,3
+yaoyan,10741643,5
+tinybamboo,10741643,5
+babelotus,10741643,3
+82165536,10741643,4
+128416506,10741643,4
+Kinguan,10741643,4
+4579620,10741643,5
+kimonic,10741643,3
+83457398,10741643,3
+49141660,10741643,4
+halk,10741643,4
+ren40631284,10741643,4
+58723424,10741643,5
+129977566,10741643,3
+cinderppp,10741643,5
+hettler,10741643,3
+59418689,10741643,4
+37640485,10741643,4
+caunion,10741643,4
+hui_112233,10741643,4
+aisarah,10741643,5
+39708814,10741643,5
+limpia,10741643,4
+47098539,10741643,3
+120121169,10741643,5
+123519638,10741643,5
+49634368,10741643,4
+pradapanda,10741643,4
+Dianayuan,10741643,4
+fyp34756,10741643,5
+poiqwe,10741643,3
+72902802,10741643,4
+65101753,10741643,3
+23752572,10741643,5
+120980814,10741643,5
+creambrulee,10741643,4
+42096779,10741643,4
+43375121,10741643,3
+103169398,10741643,4
+2774375,10741643,4
+57965497,10741643,5
+26646316,10741643,5
+58457160,10741643,5
+93486979,10741643,4
+60734365,10741643,5
+77871944,10741643,3
+Svena,10741643,4
+70982693,10741643,5
+wangn,10741643,2
+linshiyi07,10741643,3
+129956212,10741643,5
+68498461,10741643,4
+1565237,10741643,5
+60421761,10741643,4
+49396544,10741643,5
+2174521,10741643,4
+3405562,10741643,5
+46810238,10741643,4
+78721241,10741643,3
+38150776,10741643,-1
+caoyang0926,10741643,5
+24263050,10741643,4
+71288757,10741643,4
+79825096,10741643,4
+65393233,10741643,5
+xinxinniannian,10741643,4
+43227551,10741643,3
+willsofshatter,10741643,3
+Jeff223,10741643,5
+71183607,10741643,4
+51494643,10741643,3
+yemanyuan,10741643,3
+i7COLORS,10741643,5
+6008448,10741643,5
+honeyoyo,10741643,5
+JunkRoad,10741643,5
+signal,10741643,5
+rockning,10741643,5
+64696511,10741643,4
+47211975,10741643,2
+103651180,10741643,3
+2179681,10741643,5
+16700404,10741643,5
+59522488,10741643,4
+78753463,10741643,4
+crazygrave,10741643,4
+ondin12,10741643,4
+48746387,10741643,5
+22708713,10741643,5
+terry459179439,10741643,4
+3564765,10741643,4
+41902636,10741643,5
+62927689,10741643,5
+46667318,10741643,4
+64663567,10741643,5
+43156253,10741643,4
+45019259,10741643,4
+wuliangmouji,10741643,3
+47054813,10741643,4
+97477466,10741643,4
+66526853,10741643,5
+miaobuyi,10741643,5
+22842390,10741643,5
+63454014,10741643,5
+122224124,10741643,5
+75225664,10741643,4
+3969557,10741643,4
+57331966,10741643,1
+41007030,10741643,5
+47267795,10741643,4
+unchan,10741643,3
+zhengminlive,10741643,2
+lovepeople,10741643,4
+53182864,10741643,4
+72161023,10741643,5
+81351219,10741643,3
+yingbupu,10741643,4
+69048541,10741643,4
+47801082,10741643,4
+xiaojidunmoguxi,10741643,5
+121570619,10741643,4
+jasonscat,10741643,4
+hongna,10741643,5
+129906889,10741643,5
+a-kico,10741643,3
+34865736,10741643,4
+78585839,10741643,5
+66580409,10741643,5
+70249829,10741643,4
+joker112,10741643,5
+37571327,10741643,4
+72786209,10741643,5
+79694642,10741643,-1
+58258546,10741643,4
+91474719,10741643,5
+72197323,10741643,5
+JabbaWk,10741643,4
+92298233,10741643,3
+60854764,10741643,5
+67449498,10741643,5
+70728758,10741643,3
+57899095,10741643,5
+mashwer,10741643,5
+yvonneliu,10741643,4
+48115783,10741643,4
+54358731,10741643,5
+xita,10741643,4
+45187955,10741643,5
+46842396,10741643,3
+tenacityqian,10741643,5
+62304049,10741643,5
+Koko_head,10741643,5
+dante1224,10741643,5
+Wait_decade,10741643,2
+48792175,10741643,3
+127042716,10741643,5
+62559966,10741643,4
+crazies,10741643,2
+kjlart,10741643,5
+aliciajun,10741643,5
+WAZYZ1115,10741643,3
+129863569,10741643,4
+agenta,10741643,4
+46405443,10741643,4
+queeniehan,10741643,5
+zhaoyin,10741643,5
+88054773,10741643,5
+52698928,10741643,4
+2555357,10741643,3
+35369841,10741643,5
+suntina,10741643,5
+47162155,10741643,4
+126953594,10741643,4
+122839892,10741643,4
+xuanxuan1209,10741643,3
+54325025,10741643,5
+76515207,10741643,5
+woniumm,10741643,4
+59049197,10741643,5
+68217500,10741643,5
+dizhujiadehuaiz,10741643,5
+53068258,10741643,4
+61727840,10741643,3
+100365623,10741643,5
+meng326598,10741643,4
+4706549,10741643,-1
+129853005,10741643,4
+125149511,10741643,5
+JJY1337,10741643,4
+46028086,10741643,5
+62857803,10741643,3
+jiaosally,10741643,3
+43871620,10741643,5
+128167486,10741643,3
+57081977,10741643,3
+25924528,10741643,3
+MISTER.X,10741643,4
+PinkyL,10741643,4
+48371024,10741643,5
+endlesssisyphus,10741643,3
+56899230,10741643,5
+1997569,10741643,5
+niyayai,10741643,5
+firepr,10741643,4
+rhythmfish,10741643,5
+72468752,10741643,5
+FreshSherlock,10741643,3
+little-dog,10741643,5
+50255660,10741643,4
+53192672,10741643,5
+Ditou.,10741643,5
+121330964,10741643,3
+3605626,10741643,5
+118847901,10741643,5
+121539453,10741643,5
+73647832,10741643,5
+tsubasaimai,10741643,4
+52281129,10741643,-1
+81832502,10741643,5
+etchitaro,10741643,3
+Jodiezhang,10741643,4
+Iayours,10741643,4
+65858550,10741643,3
+53683391,10741643,5
+85168864,10741643,5
+54439870,10741643,3
+68327761,10741643,4
+lishidai93,10741643,5
+2290969,10741643,4
+44778883,10741643,3
+majiali,10741643,5
+liujinyu,10741643,5
+3709827,10741643,3
+52706970,10741643,5
+44946309,10741643,3
+129834051,10741643,4
+36528216,10741643,-1
+36528216,10741643,-1
+Leo_Pan,10741643,5
+78399714,10741643,4
+aizuomengderen,10741643,5
+shixinyu,10741643,3
+84281755,10741643,5
+joyyangyang,10741643,5
+122031888,10741643,5
+42084433,10741643,3
+bearhao1976,10741643,3
+joctor,10741643,5
+falsexiaoweihua,10741643,5
+Ellencri,10741643,4
+2155432,10741643,4
+yvoria,10741643,2
+68589815,10741643,3
+55865392,10741643,3
+magiclj99,10741643,5
+millerwong,10741643,4
+33323138,10741643,5
+87865296,10741643,5
+68575535,10741643,5
+blue1997,10741643,4
+62688110,10741643,3
+53906378,10741643,5
+xdy1990,10741643,3
+60606413,10741643,4
+77620484,10741643,5
+54258386,10741643,3
+1666774,10741643,5
+25736793,10741643,4
+62751729,10741643,5
+61654956,10741643,4
+128799721,10741643,3
+1805745,10741643,3
+47070736,10741643,4
+2944087,10741643,4
+56647594,10741643,5
+43645083,10741643,4
+79503433,10741643,5
+3943993,10741643,3
+66790608,10741643,3
+41582101,10741643,2
+bzfz,10741643,-1
+emilialiu,10741643,4
+fx--hanshu,10741643,5
+114483933,10741643,5
+129799566,10741643,5
+115602293,10741643,5
+58057227,10741643,5
+66366500,10741643,4
+4342517,10741643,5
+Mefier,10741643,5
+42008177,10741643,5
+13979255,10741643,3
+67211890,10741643,4
+candy8822,10741643,4
+Osolemio,10741643,5
+53213022,10741643,4
+78993678,10741643,4
+126924969,10741643,3
+skyjadebear,10741643,5
+50205798,10741643,5
+48103080,10741643,4
+Ironduck,10741643,3
+57214869,10741643,5
+54244526,10741643,5
+94266589,10741643,4
+129778224,10741643,3
+M.Nor.C,10741643,5
+61457577,10741643,4
+33883682,10741643,5
+Woopy,10741643,5
+90739385,10741643,5
+dwyk500,10741643,5
+xiaolian818,10741643,4
+74258577,10741643,5
+52057602,10741643,5
+1459659,10741643,5
+60079529,10741643,4
+zhangtuo,10741643,4
+ola_,10741643,4
+3754045,10741643,3
+122172972,10741643,4
+54065263,10741643,4
+68610149,10741643,2
+2202810,10741643,5
+26149939,10741643,4
+AAAxiaowei,10741643,4
+zshh012,10741643,5
+duolaAmeng919,10741643,5
+douban0805,10741643,4
+4071278,10741643,4
+3701499,10741643,5
+62055619,10741643,4
+46534834,10741643,3
+jie2u,10741643,5
+gaopengyuan,10741643,3
+cuixinhai88,10741643,5
+andy-channel,10741643,4
+60337447,10741643,5
+119922273,10741643,5
+Kant-in-locker,10741643,5
+poisonseven,10741643,5
+35077550,10741643,3
+84414656,10741643,5
+52451378,10741643,4
+melon4ever,10741643,3
+44775342,10741643,5
+ChrisEvi,10741643,3
+guangying0211,10741643,4
+cindylovelife,10741643,5
+54655578,10741643,5
+129763402,10741643,3
+46834053,10741643,4
+26375803,10741643,4
+ZYY0807,10741643,5
+62072794,10741643,5
+hellooopq,10741643,5
+cmayc,10741643,5
+103631098,10741643,5
+2021116,10741643,4
+84289821,10741643,3
+104365227,10741643,4
+73107117,10741643,5
+15965977,10741643,4
+129732129,10741643,5
+95771825,10741643,-1
+46989842,10741643,2
+wickedtian,10741643,4
+aojiaogong,10741643,4
+Bye_air,10741643,5
+73135827,10741643,4
+116506787,10741643,4
+1362647,10741643,4
+51775613,10741643,4
+67543061,10741643,5
+soleilratemma,10741643,4
+miss_zoay,10741643,4
+1499575,10741643,4
+17549723,10741643,1
+lf54,10741643,5
+49610582,10741643,-1
+54770085,10741643,5
+jionly,10741643,5
+45692739,10741643,5
+smallxuxu,10741643,5
+6394575,10741643,5
+2076258,10741643,4
+33071133,10741643,4
+Nanamii,10741643,4
+amyammy,10741643,5
+89281052,10741643,5
+108392915,10741643,1
+zhugl,10741643,4
+69470816,10741643,4
+60624598,10741643,3
+sunnyjiji,10741643,5
+44164638,10741643,5
+79534422,10741643,4
+38635851,10741643,4
+wjferic,10741643,5
+77533481,10741643,5
+waterfront,10741643,4
+whb-119,10741643,3
+40436346,10741643,4
+49520759,10741643,5
+94514917,10741643,4
+35276844,10741643,5
+3567588,10741643,3
+4424185,10741643,3
+3355684,10741643,4
+48962941,10741643,5
+47181013,10741643,5
+mirrorsx,10741643,3
+2468582,10741643,5
+mayfaye525,10741643,4
+48319336,10741643,5
+43006952,10741643,4
+Momo-at1615,10741643,4
+75077274,10741643,4
+han1991,10741643,4
+3168840,10741643,5
+35095860,10741643,3
+79699248,10741643,5
+76216989,10741643,3
+129716579,10741643,1
+2667938,10741643,3
+27290899,10741643,-1
+50269699,10741643,4
+3035586,10741643,3
+jpatrick,10741643,5
+43999929,10741643,5
+40404400,10741643,5
+changuang7,10741643,4
+liu_rin,10741643,4
+62529217,10741643,5
+54871934,10741643,4
+moqianyao,10741643,5
+ulysseus-2,10741643,5
+misschonger,10741643,5
+joy0209,10741643,5
+55817697,10741643,3
+1415124,10741643,5
+115381052,10741643,5
+17596299,10741643,3
+49522740,10741643,4
+catherinexuf,10741643,3
+Dora_bamboo,10741643,5
+sally_she,10741643,4
+68468748,10741643,4
+4895785,10741643,3
+58851678,10741643,4
+ximenqing_,10741643,5
+66296467,10741643,3
+66636487,10741643,5
+3459020,10741643,5
+tilizhixin,10741643,5
+67851439,10741643,4
+sinmask,10741643,-1
+cl1235,10741643,4
+ATPud,10741643,4
+125305853,10741643,4
+127680038,10741643,4
+52929940,10741643,4
+35663217,10741643,5
+johnqz874,10741643,4
+61355309,10741643,2
+79466970,10741643,5
+57881217,10741643,5
+63393137,10741643,4
+edenhsu,10741643,4
+imshen,10741643,5
+60193663,10741643,5
+easyLyc,10741643,5
+soonerorlater,10741643,4
+xiongweilin,10741643,5
+ouboshi,10741643,4
+jad1s,10741643,4
+lmajor,10741643,4
+83192627,10741643,4
+92956805,10741643,5
+69376612,10741643,4
+zgywade,10741643,5
+cuteavis,10741643,5
+45013641,10741643,5
+1770612,10741643,5
+71661606,10741643,5
+austinzk,10741643,4
+103208454,10741643,5
+65876388,10741643,5
+glanceforever,10741643,4
+3508160,10741643,4
+jiangyuhang,10741643,4
+57925390,10741643,5
+staramoi,10741643,3
+57400838,10741643,5
+120063423,10741643,5
+vanexu,10741643,5
+43929837,10741643,5
+51457792,10741643,4
+TUNA,10741643,4
+AdelaisDuff,10741643,4
+sulla,10741643,5
+bingocoder,10741643,4
+63018410,10741643,5
+39561667,10741643,3
+myserendipity,10741643,5
+mayday_paopao,10741643,3
+3397745,10741643,3
+Here4u,10741643,4
+53500604,10741643,4
+43430592,10741643,-1
+118036743,10741643,4
+99078833,10741643,5
+47822950,10741643,5
+1723553,10741643,5
+looktwice,10741643,3
+49895919,10741643,5
+58689534,10741643,5
+103601580,10741643,5
+laomm,10741643,3
+58906924,10741643,4
+ninquelote,10741643,4
+76214555,10741643,5
+45266623,10741643,2
+78721128,10741643,5
+kaya_flowers,10741643,4
+wytwumin,10741643,5
+75176683,10741643,5
+2445824,10741643,5
+greenyvonne,10741643,5
+besim6ple,10741643,5
+73686659,10741643,5
+KOBENYF,10741643,5
+3754273,10741643,5
+zmmmomo,10741643,3
+50688194,10741643,5
+dictionaryy,10741643,4
+2394323,10741643,3
+2394323,10741643,3
+sunshinetoo,10741643,3
+camcam,10741643,4
+87534295,10741643,4
+51047654,10741643,5
+27709450,10741643,4
+39048100,10741643,4
+keikogfy,10741643,5
+59926739,10741643,5
+cecideng,10741643,5
+scorpion.miumiu,10741643,4
+51795397,10741643,4
+tanjia,10741643,4
+54285585,10741643,5
+meiying1989,10741643,5
+Eie10_9,10741643,5
+lhp_cage,10741643,5
+79453297,10741643,4
+4527328,10741643,4
+1885351,10741643,4
+120909510,10741643,4
+baoanwei,10741643,4
+laerngiv,10741643,3
+66656905,10741643,4
+68955090,10741643,4
+66132423,10741643,4
+42886985,10741643,5
+birdicat,10741643,4
+luominbaby,10741643,5
+cassiethere,10741643,3
+hongjlw,10741643,5
+2579342,10741643,4
+yelei-una,10741643,3
+80810506,10741643,3
+92877607,10741643,5
+4537211,10741643,5
+43308904,10741643,5
+81441568,10741643,5
+doremi7719,10741643,4
+hydellen,10741643,5
+qinjiuc,10741643,4
+129329562,10741643,5
+33486862,10741643,5
+75892184,10741643,5
+48486946,10741643,4
+64058491,10741643,5
+41247115,10741643,2
+jodiesun,10741643,4
+3420915,10741643,4
+81475444,10741643,4
+kisslucksky,10741643,5
+Paul198809,10741643,4
+jozenky,10741643,5
+dormancy,10741643,4
+iamzzy,10741643,3
+1874762,10741643,5
+57799036,10741643,4
+25885626,10741643,5
+6100476,10741643,5
+gediaobugao,10741643,4
+ygweric,10741643,5
+feelingowen,10741643,3
+2262469,10741643,5
+xuanyexixi,10741643,2
+1617432,10741643,5
+61665476,10741643,2
+54353909,10741643,5
+64902546,10741643,2
+53936917,10741643,3
+58900820,10741643,-1
+63840526,10741643,4
+65990743,10741643,5
+wuhuijing,10741643,5
+53534566,10741643,4
+leefirst,10741643,5
+zrocky,10741643,4
+29469098,10741643,2
+zixiu,10741643,3
+49812729,10741643,5
+49520443,10741643,3
+aoceanstarz,10741643,4
+furukawa,10741643,5
+Tree4,10741643,-1
+55374994,10741643,4
+qinqinein,10741643,4
+fusiluo,10741643,3
+jiapj,10741643,5
+shiyig,10741643,5
+shadow.u,10741643,4
+48071996,10741643,5
+55663909,10741643,3
+hi.chara,10741643,4
+44653636,10741643,4
+sanxo,10741643,4
+iamartist,10741643,2
+51605730,10741643,4
+3564648,10741643,4
+71911451,10741643,3
+4535772,10741643,4
+61053478,10741643,3
+1402990,10741643,5
+gen627,10741643,5
+25674811,10741643,4
+10750432,10741643,4
+73782073,10741643,2
+2845886,10741643,2
+3812836,10741643,4
+46953977,10741643,5
+43833073,10741643,-1
+64375587,10741643,4
+74953596,10741643,4
+89378573,10741643,5
+15188529,10741643,3
+icyci,10741643,3
+80635442,10741643,5
+zsq0028347,10741643,3
+79773701,10741643,3
+67745013,10741643,5
+fessi,10741643,4
+3578074,10741643,4
+40613593,10741643,5
+domber,10741643,3
+40921927,10741643,4
+stacey0603,10741643,5
+atmcc,10741643,5
+shilylong,10741643,5
+MonkeyChoi,10741643,4
+36477514,10741643,5
+Jili_loves_pink,10741643,5
+51312252,10741643,4
+fancynotgrow,10741643,5
+50545818,10741643,5
+78578037,10741643,5
+119304037,10741643,4
+june0927,10741643,5
+65664176,10741643,5
+vicki-lau,10741643,5
+45631897,10741643,3
+4816272,10741643,2
+33381351,10741643,5
+49498918,10741643,4
+57063106,10741643,4
+4404036,10741643,5
+58383460,10741643,-1
+48496460,10741643,4
+3398416,10741643,4
+eazi2,10741643,4
+2173521,10741643,5
+47203528,10741643,5
+50670973,10741643,5
+48418593,10741643,3
+45479009,10741643,4
+63646525,10741643,-1
+stary_gxh,10741643,4
+shadowboxer,10741643,4
+2987938,10741643,4
+suguorui,10741643,4
+36562320,10741643,5
+duoyudeciyu,10741643,4
+105700070,10741643,5
+cafe9527,10741643,5
+7605327,10741643,3
+enhengheng,10741643,5
+61033806,10741643,5
+didadidi,10741643,5
+55286128,10741643,3
+51239744,10741643,5
+45878477,10741643,4
+11255442,10741643,5
+shaomingwen,10741643,5
+75236386,10741643,4
+Y_Y0907,10741643,5
+49724904,10741643,4
+59912329,10741643,5
+61445272,10741643,5
+Sunny851020,10741643,5
+55617611,10741643,4
+2851199,10741643,4
+46513410,10741643,2
+puddingjiang,10741643,4
+54387661,10741643,5
+1253628,10741643,4
+127761017,10741643,5
+37420534,10741643,5
+40098751,10741643,4
+27126657,10741643,5
+vanjuta,10741643,4
+seeyouaa,10741643,5
+mscmiya,10741643,4
+61960669,10741643,4
+xianguowuyou,10741643,5
+73838812,10741643,5
+64144841,10741643,5
+yqz23,10741643,5
+129612635,10741643,5
+3778613,10741643,4
+grace-since1997,10741643,5
+45227556,10741643,4
+64497662,10741643,5
+McAPhenix,10741643,4
+75096112,10741643,5
+41657759,10741643,4
+54703119,10741643,5
+yongyuanziyou,10741643,2
+labikyo,10741643,5
+56362540,10741643,5
+NicoleYuyijun,10741643,3
+loveless5547,10741643,5
+xjrm,10741643,4
+28808683,10741643,3
+108227368,10741643,4
+4783002,10741643,5
+50411522,10741643,3
+46560322,10741643,4
+59998509,10741643,4
+51869587,10741643,4
+sulian6415,10741643,2
+68687737,10741643,4
+44411218,10741643,4
+67947513,10741643,5
+75912541,10741643,3
+127695510,10741643,4
+52911203,10741643,5
+44736605,10741643,5
+linxiaowen,10741643,-1
+50778273,10741643,4
+dangerousfate,10741643,4
+longislandiced,10741643,3
+2403220,10741643,5
+46240263,10741643,5
+1393970,10741643,5
+52221602,10741643,5
+71585704,10741643,4
+solitaira,10741643,5
+115225798,10741643,5
+56393508,10741643,2
+48807888,10741643,2
+65670543,10741643,5
+leanwer,10741643,5
+56889534,10741643,5
+80280523,10741643,5
+2590915,10741643,5
+silencefall,10741643,5
+summerbird,10741643,3
+120038071,10741643,4
+1821069,10741643,3
+3399583,10741643,3
+127345794,10741643,3
+49036730,10741643,5
+2155820,10741643,5
+zhaoyuner,10741643,4
+2169690,10741643,3
+49853288,10741643,5
+i840152811,10741643,4
+78130201,10741643,5
+73033279,10741643,3
+zht90130,10741643,5
+zhanzhan1819,10741643,4
+MOKUZJY,10741643,4
+121100970,10741643,5
+124558052,10741643,3
+4603344,10741643,5
+amzoey,10741643,3
+2585729,10741643,4
+48549318,10741643,4
+46098362,10741643,3
+1924222,10741643,5
+36753274,10741643,5
+shuiashui,10741643,3
+79356961,10741643,5
+49548565,10741643,5
+1030151,10741643,3
+furien,10741643,5
+51915169,10741643,3
+68902644,10741643,5
+66960634,10741643,5
+dandanyunyan,10741643,5
+2385464,10741643,4
+flyff,10741643,3
+45985335,10741643,3
+Yolanda1007,10741643,3
+chaunceyjohn,10741643,4
+67103907,10741643,4
+17435111,10741643,3
+ifer52103,10741643,2
+58618323,10741643,5
+82298869,10741643,5
+90546235,10741643,4
+3773993,10741643,4
+129585590,10741643,5
+tinnu,10741643,3
+61719158,10741643,5
+37366802,10741643,5
+77662216,10741643,3
+48639532,10741643,5
+1178759,10741643,3
+59080823,10741643,5
+52831736,10741643,4
+51126229,10741643,-1
+emd12,10741643,1
+43362064,10741643,3
+42006560,10741643,5
+78056349,10741643,5
+62735975,10741643,5
+122418286,10741643,2
+82498439,10741643,4
+66178804,10741643,5
+124741341,10741643,5
+50075764,10741643,3
+82834599,10741643,4
+122361491,10741643,3
+65002726,10741643,3
+49541286,10741643,4
+65911136,10741643,4
+joyljt,10741643,3
+81619869,10741643,4
+44329176,10741643,4
+55418442,10741643,3
+83749765,10741643,5
+3413956,10741643,2
+49945467,10741643,5
+42275698,10741643,4
+Nova_Caine,10741643,4
+58117184,10741643,4
+brilliantze,10741643,4
+winniewong021,10741643,3
+122633809,10741643,5
+nuoyafangzhou,10741643,4
+3595754,10741643,4
+88349219,10741643,4
+renmeng,10741643,3
+renrs,10741643,4
+77680309,10741643,5
+1239706,10741643,5
+lae,10741643,4
+129552489,10741643,4
+1793879,10741643,4
+53456687,10741643,4
+2517963,10741643,5
+46469157,10741643,5
+40510334,10741643,5
+wangjiangning,10741643,5
+56857904,10741643,4
+65038141,10741643,3
+27561049,10741643,5
+79526047,10741643,4
+jasonliu0315,10741643,4
+102722400,10741643,4
+75826878,10741643,5
+wxq1012,10741643,4
+48057004,10741643,5
+70491004,10741643,5
+48596471,10741643,3
+65110370,10741643,3
+104298228,10741643,3
+40344935,10741643,5
+40687803,10741643,4
+66333465,10741643,3
+85346311,10741643,3
+129545871,10741643,3
+2800848,10741643,4
+1788230,10741643,5
+48929842,10741643,4
+FOOL624,10741643,5
+freyaml,10741643,5
+4144739,10741643,2
+3517710,10741643,4
+yusherry,10741643,4
+RivaLinn,10741643,5
+wendaoyoung,10741643,4
+80359698,10741643,4
+3485346,10741643,5
+dream09104,10741643,3
+57583143,10741643,4
+58025436,10741643,5
+budong2010,10741643,5
+3510245,10741643,4
+2031724,10741643,5
+4858389,10741643,5
+52275175,10741643,5
+ccior,10741643,4
+mujin1217,10741643,3
+p2,10741643,-1
+47457088,10741643,5
+62996461,10741643,4
+116157955,10741643,3
+35331418,10741643,4
+57084666,10741643,4
+82325629,10741643,5
+qq381525772,10741643,4
+63132063,10741643,4
+40081321,10741643,5
+zsuWalteR,10741643,5
+56725053,10741643,5
+85244172,10741643,5
+129215233,10741643,5
+47899738,10741643,5
+67501014,10741643,3
+Easter77,10741643,5
+palermo97,10741643,4
+67649121,10741643,4
+52755966,10741643,4
+122110316,10741643,4
+52345284,10741643,3
+49177651,10741643,3
+108264732,10741643,3
+70260921,10741643,4
+41521417,10741643,4
+dyq930211,10741643,3
+74231120,10741643,4
+102885778,10741643,4
+63265430,10741643,5
+14585550,10741643,4
+qd724945697,10741643,5
+chrissie619108,10741643,4
+aslope,10741643,4
+sunshinecafe56,10741643,4
+53504462,10741643,3
+dongba_puppet,10741643,5
+41759522,10741643,5
+11593393,10741643,4
+Arashic5,10741643,5
+84609016,10741643,5
+lvlmw,10741643,3
+67361333,10741643,5
+91584041,10741643,5
+llh9277,10741643,5
+4367727,10741643,4
+25382780,10741643,4
+84567562,10741643,4
+coco91718,10741643,4
+73754762,10741643,4
+shenqi891003,10741643,3
+67387298,10741643,5
+springing,10741643,5
+67489519,10741643,4
+45279594,10741643,5
+3121837,10741643,4
+smilew_96,10741643,2
+63724601,10741643,4
+52908275,10741643,3
+45482570,10741643,4
+1237270,10741643,4
+66798898,10741643,4
+miya0628,10741643,5
+34383842,10741643,3
+28494028,10741643,4
+61566876,10741643,1
+96088992,10741643,5
+62527134,10741643,4
+129255326,10741643,5
+26728897,10741643,4
+calfsky,10741643,5
+2336402,10741643,3
+4868891,10741643,5
+116902692,10741643,4
+76005313,10741643,-1
+jiananruo,10741643,4
+katze,10741643,3
+4237275,10741643,5
+81804736,10741643,3
+tangqianqiu312,10741643,4
+92610102,10741643,4
+47976319,10741643,5
+3296176,10741643,4
+shujianbu,10741643,5
+78684815,10741643,5
+82562323,10741643,4
+xiaoshuogege,10741643,4
+52582202,10741643,3
+whisper75,10741643,4
+yinlook,10741643,4
+23505166,10741643,5
+64491251,10741643,5
+ShuangXiaodan,10741643,4
+banzhan,10741643,5
+48093808,10741643,5
+tiemflies,10741643,5
+65394110,10741643,5
+61960090,10741643,5
+81261104,10741643,4
+64038316,10741643,5
+124347540,10741643,5
+62309312,10741643,4
+29271779,10741643,5
+virus11,10741643,4
+graceinjune,10741643,4
+81544162,10741643,4
+atoki,10741643,4
+62744470,10741643,4
+57859316,10741643,4
+margaux,10741643,4
+62453620,10741643,4
+jxncm,10741643,4
+mcobeli,10741643,4
+65976416,10741643,5
+piggy3399,10741643,5
+68732725,10741643,4
+lele4027,10741643,4
+36471883,10741643,5
+66519246,10741643,4
+surri,10741643,5
+maxrins,10741643,5
+120990428,10741643,4
+50031038,10741643,4
+52219048,10741643,5
+58027511,10741643,4
+2115897,10741643,2
+40783225,10741643,4
+51692926,10741643,4
+iyeah,10741643,4
+66183026,10741643,4
+3999163,10741643,4
+59738934,10741643,5
+64981286,10741643,3
+57580056,10741643,4
+2952114,10741643,5
+65183183,10741643,4
+xiaorujuly,10741643,2
+44668432,10741643,5
+56786805,10741643,4
+51204884,10741643,4
+66371265,10741643,5
+wheatflower,10741643,3
+shania0912,10741643,4
+50888167,10741643,4
+3485469,10741643,-1
+zhuxiaoqi,10741643,5
+31085938,10741643,5
+stickerzhang,10741643,4
+54215602,10741643,5
+mlzizi,10741643,1
+50499996,10741643,4
+49868635,10741643,4
+60853182,10741643,4
+108313440,10741643,4
+119951362,10741643,5
+51683768,10741643,3
+xiayunshu,10741643,4
+10277954,10741643,3
+shuhaiyun,10741643,5
+xiaoyaozizai,10741643,5
+sarabilau2,10741643,4
+34849239,10741643,5
+60830251,10741643,4
+46133817,10741643,2
+scohj,10741643,3
+77201294,10741643,4
+90767458,10741643,4
+43036024,10741643,5
+39022168,10741643,2
+superzoukang,10741643,4
+Suiziyue_,10741643,5
+3764030,10741643,4
+applires,10741643,3
+1574710,10741643,4
+61349784,10741643,5
+loveliuchunmei,10741643,4
+64790470,10741643,5
+StillAliveLoL,10741643,5
+2168659,10741643,4
+where_lxx,10741643,5
+doctordragon,10741643,5
+yuyucara,10741643,5
+freedomnana,10741643,4
+Xunna,10741643,3
+skyspy,10741643,4
+50679453,10741643,4
+47656481,10741643,5
+124022276,10741643,5
+joesvita,10741643,3
+qx0730,10741643,4
+87528128,10741643,4
+61697290,10741643,3
+Ziya,10741643,5
+xianyunfei,10741643,5
+MagaraC,10741643,5
+63101856,10741643,5
+Cq1988,10741643,4
+97516671,10741643,4
+57695152,10741643,4
+47274538,10741643,4
+68100167,10741643,4
+61310685,10741643,5
+91298554,10741643,4
+88025062,10741643,5
+49829480,10741643,4
+37684609,10741643,3
+flowermoi,10741643,4
+samsyu,10741643,3
+dhflockyer00,10741643,3
+54118264,10741643,4
+50675172,10741643,1
+1969540,10741643,3
+ichizi,10741643,3
+huangzhangyi,10741643,3
+53203892,10741643,3
+billchan,10741643,3
+69234532,10741643,4
+128094656,10741643,5
+51921097,10741643,4
+misurata,10741643,4
+48494874,10741643,4
+55804173,10741643,5
+49162813,10741643,4
+jumpinglove,10741643,5
+60955995,10741643,5
+yuanjunya,10741643,5
+45441727,10741643,5
+2678186,10741643,4
+vanilla666,10741643,3
+92635717,10741643,3
+54038897,10741643,3
+48146318,10741643,4
+47721775,10741643,4
+48078859,10741643,3
+xlglassofa,10741643,4
+46436848,10741643,4
+far-deep,10741643,5
+121916264,10741643,3
+stephanie33,10741643,5
+nebgnahz,10741643,5
+68501321,10741643,4
+sarah_cat,10741643,5
+55811632,10741643,3
+119681727,10741643,5
+25571729,10741643,3
+53083409,10741643,5
+69054448,10741643,3
+lvpi,10741643,3
+4294774,10741643,4
+74971861,10741643,5
+48109734,10741643,-1
+IOMOVIE,10741643,4
+2748864,10741643,5
+114790609,10741643,4
+66620661,10741643,5
+luluimayday,10741643,4
+56617946,10741643,5
+71609186,10741643,4
+Tz0202,10741643,3
+50803807,10741643,2
+58071608,10741643,4
+127849302,10741643,5
+57837521,10741643,4
+60015294,10741643,5
+48179820,10741643,4
+kellywhite,10741643,5
+45244894,10741643,4
+4500067,10741643,5
+52910373,10741643,5
+52233629,10741643,3
+BigLo,10741643,3
+55834652,10741643,3
+58480998,10741643,4
+4533689,10741643,4
+74700188,10741643,5
+2878601,10741643,5
+tianyanature,10741643,5
+52231917,10741643,5
+68599558,10741643,5
+66769735,10741643,3
+zhaohanjun,10741643,5
+58510231,10741643,5
+sherrykingna,10741643,4
+113902008,10741643,5
+rain711,10741643,4
+luococo,10741643,5
+67618048,10741643,5
+45804814,10741643,4
+4295009,10741643,-1
+57828483,10741643,4
+g,10741643,2
+MoonyChou,10741643,5
+zhixiangtian,10741643,5
+79770015,10741643,4
+PicturePerfect,10741643,4
+2231121,10741643,2
+60174799,10741643,5
+62540914,10741643,4
+76626092,10741643,4
+61624373,10741643,5
+4679107,10741643,4
+memechayedandan,10741643,4
+sqyloveu,10741643,5
+3407751,10741643,4
+26604258,10741643,4
+57561635,10741643,5
+2531185,10741643,4
+129387167,10741643,4
+lloy,10741643,5
+41743713,10741643,4
+tigermiao,10741643,4
+51517839,10741643,5
+luokuibumeng,10741643,5
+liting888,10741643,5
+84396587,10741643,4
+atun,10741643,4
+46504649,10741643,-1
+49218440,10741643,5
+antony1994,10741643,3
+4594125,10741643,5
+42114790,10741643,3
+92064878,10741643,5
+xiduowawa,10741643,4
+82904793,10741643,3
+2266577,10741643,4
+75721226,10741643,5
+48930541,10741643,5
+1897616,10741643,5
+63507417,10741643,4
+46467695,10741643,4
+49444615,10741643,4
+gududeqiao,10741643,5
+41000067,10741643,4
+52747900,10741643,5
+71867547,10741643,4
+46810295,10741643,4
+colorwind,10741643,4
+59005410,10741643,4
+125454898,10741643,5
+32433633,10741643,4
+valiantina,10741643,5
+pandejian250,10741643,4
+cherrybombbb,10741643,4
+33721227,10741643,5
+3007031,10741643,5
+67907884,10741643,4
+52863008,10741643,3
+2498446,10741643,4
+4050686,10741643,4
+120729297,10741643,5
+99400293,10741643,5
+xiangheng,10741643,3
+67016989,10741643,4
+46419448,10741643,5
+wantu,10741643,2
+79194135,10741643,5
+1159179,10741643,4
+45365210,10741643,4
+3849777,10741643,4
+4657028,10741643,3
+24701230,10741643,3
+77214055,10741643,4
+1494955,10741643,4
+faithskybelle,10741643,5
+46424200,10741643,4
+67426279,10741643,3
+92773892,10741643,4
+chuan111,10741643,1
+tyl31,10741643,3
+lswawabao,10741643,4
+50844097,10741643,4
+57977200,10741643,-1
+huyujin,10741643,5
+55668809,10741643,3
+71502424,10741643,4
+liangerle,10741643,4
+82095351,10741643,3
+44304127,10741643,3
+44304127,10741643,3
+gjx189,10741643,4
+52513935,10741643,-1
+kp81ndlf,10741643,4
+76392317,10741643,4
+69993436,10741643,4
+35480748,10741643,4
+126565095,10741643,5
+120839350,10741643,4
+66116098,10741643,5
+4676222,10741643,5
+27825578,10741643,4
+3278408,10741643,5
+49258293,10741643,5
+54693017,10741643,5
+marinesj,10741643,5
+markhung,10741643,4
+nimenime,10741643,4
+jacquelinelau,10741643,4
+70432324,10741643,3
+70432324,10741643,3
+75741734,10741643,4
+45910532,10741643,3
+119290611,10741643,5
+wanls,10741643,4
+nibuzaiwohaiai,10741643,5
+4217792,10741643,4
+72691447,10741643,5
+aka-sybil,10741643,5
+zhengranran,10741643,5
+Marcoshan,10741643,4
+lenashujue,10741643,5
+bluetiger,10741643,4
+nineC,10741643,2
+baiwuya,10741643,2
+aids,10741643,4
+57646854,10741643,4
+cherrio,10741643,4
+gkydouban,10741643,4
+happyfairy,10741643,4
+59522375,10741643,3
+B612deROSE,10741643,4
+114789824,10741643,5
+wangzijin2738,10741643,5
+p.aeon.c,10741643,4
+57434517,10741643,3
+mmllove,10741643,4
+40986501,10741643,5
+39298928,10741643,4
+92119764,10741643,5
+44901258,10741643,4
+someshen,10741643,3
+120427530,10741643,4
+northbt,10741643,4
+129334482,10741643,4
+128759511,10741643,4
+partingkadaj,10741643,5
+57851144,10741643,4
+81835425,10741643,4
+whyrrita,10741643,4
+41416579,10741643,4
+4624478,10741643,4
+34120415,10741643,4
+76996269,10741643,5
+122670225,10741643,3
+1403476,10741643,5
+JoyYoung,10741643,3
+16038998,10741643,5
+53366802,10741643,5
+58202321,10741643,4
+82358320,10741643,5
+54994533,10741643,4
+58629376,10741643,4
+1580104,10741643,5
+67514988,10741643,5
+52246931,10741643,4
+kema,10741643,5
+71728069,10741643,4
+Ashleyhuang,10741643,4
+joeyada,10741643,3
+joeyada,10741643,3
+115900561,10741643,3
+120789151,10741643,-1
+23159155,10741643,5
+83855853,10741643,4
+JUNREYOO,10741643,4
+2233963,10741643,4
+67972636,10741643,5
+46659356,10741643,4
+mars7088,10741643,5
+65162136,10741643,4
+79318782,10741643,5
+liaoshun,10741643,5
+homecaty,10741643,4
+anvirdo,10741643,4
+Myra1987,10741643,5
+63298037,10741643,5
+94678422,10741643,5
+78737917,10741643,4
+breadforest,10741643,4
+67844336,10741643,4
+44614198,10741643,1
+53977450,10741643,5
+49663103,10741643,5
+50743687,10741643,5
+46061693,10741643,4
+praybing,10741643,4
+94390156,10741643,4
+yatuifan,10741643,-1
+liuhaiyu,10741643,3
+4286666,10741643,4
+45991981,10741643,2
+11503015,10741643,3
+48885741,10741643,5
+75485763,10741643,5
+52621906,10741643,3
+huoguo,10741643,-1
+57451711,10741643,4
+65723913,10741643,5
+104651253,10741643,5
+127728111,10741643,5
+48566494,10741643,4
+XixiQ,10741643,5
+wanko1380,10741643,5
+69447677,10741643,3
+41922022,10741643,5
+gogowa,10741643,4
+29534182,10741643,5
+48184999,10741643,5
+48043628,10741643,4
+1898022,10741643,2
+4107805,10741643,4
+83876707,10741643,4
+67494152,10741643,4
+91816564,10741643,4
+28760394,10741643,4
+sweetmisscat,10741643,4
+45627363,10741643,5
+64286867,10741643,5
+Tower1214,10741643,4
+raibei,10741643,5
+4025639,10741643,4
+50275536,10741643,2
+zyx1990deep,10741643,4
+lyrdb,10741643,5
+48763005,10741643,4
+Mizleave,10741643,5
+3874094,10741643,5
+4582518,10741643,2
+mizizi,10741643,5
+2006629,10741643,3
+47949405,10741643,2
+MonicaRae,10741643,3
+66238313,10741643,3
+3846319,10741643,4
+55867399,10741643,5
+84902761,10741643,4
+2990853,10741643,5
+56606229,10741643,5
+mcbird3017,10741643,5
+49950514,10741643,5
+43342048,10741643,5
+eujenejingww,10741643,4
+44852938,10741643,3
+Hyke,10741643,4
+38789187,10741643,4
+l3398785,10741643,5
+nghwbbbm,10741643,2
+81906110,10741643,5
+2201230,10741643,-1
+78658609,10741643,3
+76085557,10741643,5
+lianlian1215,10741643,3
+oooooxxxxx,10741643,4
+46878489,10741643,5
+yaoxianjun,10741643,4
+62177860,10741643,2
+92335297,10741643,5
+59309532,10741643,4
+127934825,10741643,4
+1365562,10741643,5
+47949013,10741643,3
+49748838,10741643,4
+80066409,10741643,4
+82805165,10741643,5
+71350146,10741643,5
+48731866,10741643,3
+inearlysummer,10741643,4
+55785418,10741643,5
+84250012,10741643,5
+50048603,10741643,5
+73101407,10741643,3
+80667435,10741643,4
+pansini,10741643,5
+aaaaaaaaaaa,10741643,5
+lvjunshu,10741643,4
+zcx1990,10741643,4
+44203780,10741643,3
+huanghebian,10741643,5
+46637594,10741643,5
+54090244,10741643,5
+3977266,10741643,3
+Zonnebloem,10741643,5
+2063961,10741643,5
+chunwan,10741643,4
+57541099,10741643,5
+rocco0114,10741643,4
+eryouyou,10741643,4
+2643107,10741643,5
+80227742,10741643,5
+42715973,10741643,5
+33531555,10741643,1
+27381491,10741643,4
+fionaseven7,10741643,2
+hebesbaby,10741643,4
+Chelseatc,10741643,5
+62106919,10741643,5
+60486923,10741643,4
+3845094,10741643,4
+57901255,10741643,3
+lovetatum,10741643,4
+xhcarter,10741643,5
+61245435,10741643,4
+44745670,10741643,4
+67951946,10741643,4
+jelosvy,10741643,5
+82835297,10741643,5
+50689721,10741643,3
+lalalameans,10741643,4
+69133798,10741643,5
+82303147,10741643,5
+Carolinesue,10741643,5
+2252208,10741643,4
+65532650,10741643,4
+61513949,10741643,5
+34674400,10741643,4
+wanxiaojin,10741643,4
+zhoujiewu,10741643,3
+stan.reytster,10741643,4
+70123027,10741643,3
+79450664,10741643,5
+mpower007,10741643,3
+3387308,10741643,4
+99632498,10741643,5
+daisylau0921,10741643,5
+jeffblack,10741643,4
+ichenwei,10741643,5
+57767148,10741643,4
+3712644,10741643,3
+48498923,10741643,3
+38788119,10741643,5
+bennyjoon,10741643,4
+4655666,10741643,3
+19716945,10741643,4
+4045992,10741643,4
+54107587,10741643,3
+4309765,10741643,4
+69295088,10741643,3
+hello_anar,10741643,5
+4286568,10741643,5
+soundofclouds,10741643,4
+may0510,10741643,5
+91356257,10741643,4
+43258987,10741643,5
+ivis1989,10741643,3
+49190337,10741643,4
+65808284,10741643,5
+46279935,10741643,4
+68710427,10741643,4
+4672889,10741643,3
+2874898,10741643,3
+xiaolvfeidao,10741643,4
+ahuaaa,10741643,3
+67411402,10741643,5
+39494809,10741643,4
+Music7Pieces,10741643,5
+50009835,10741643,3
+38705818,10741643,5
+silence99,10741643,4
+vividance,10741643,3
+buttonli,10741643,5
+37322815,10741643,4
+55321453,10741643,5
+MiaMia97823,10741643,4
+66517587,10741643,4
+127370400,10741643,4
+49489943,10741643,3
+26520263,10741643,4
+4395089,10741643,4
+70284743,10741643,5
+62952005,10741643,4
+53096337,10741643,4
+60541880,10741643,5
+ilittleP,10741643,4
+127345355,10741643,5
+Raining421,10741643,3
+4608887,10741643,4
+25560643,10741643,4
+lcpeng,10741643,3
+66776645,10741643,4
+90597619,10741643,5
+won_bingjie,10741643,5
+63047607,10741643,5
+reginahwang,10741643,4
+summercharon,10741643,4
+Bigric,10741643,3
+72137350,10741643,4
+4347889,10741643,4
+107413834,10741643,5
+5520945,10741643,5
+57319381,10741643,5
+65145607,10741643,4
+51246104,10741643,5
+51587730,10741643,4
+guooyi,10741643,5
+55986808,10741643,4
+king1220queen,10741643,5
+mimizang,10741643,5
+59071108,10741643,5
+3374391,10741643,5
+ccnevan,10741643,5
+84828143,10741643,4
+limourang,10741643,3
+44176930,10741643,5
+56384614,10741643,4
+67863005,10741643,2
+68162187,10741643,4
+fish_in_desert,10741643,3
+2025920,10741643,5
+1227418,10741643,3
+52711325,10741643,4
+52447788,10741643,3
+maoyang,10741643,4
+52573661,10741643,3
+72978621,10741643,4
+53183199,10741643,2
+2122075,10741643,2
+1117300,10741643,4
+46072694,10741643,5
+46209502,10741643,4
+heiehi,10741643,5
+83337492,10741643,4
+2593618,10741643,4
+m.Blacky,10741643,4
+1512865,10741643,4
+zhaoda,10741643,5
+62426044,10741643,5
+44834403,10741643,5
+wangtianchang,10741643,4
+47971020,10741643,4
+60889273,10741643,5
+heitao-1991,10741643,5
+68971698,10741643,5
+54612022,10741643,4
+89703895,10741643,4
+bianbiankiko,10741643,4
+55385560,10741643,4
+susimai,10741643,3
+43595713,10741643,2
+cherub_yo,10741643,5
+73496560,10741643,-1
+minllll,10741643,4
+128492091,10741643,3
+51381946,10741643,4
+59541262,10741643,2
+rainhill,10741643,4
+gogopeter,10741643,4
+echo-wyl,10741643,4
+73452604,10741643,4
+maggie1268,10741643,5
+49155719,10741643,4
+52341245,10741643,4
+kingfokings,10741643,4
+38924507,10741643,5
+kongyan15,10741643,4
+Rebecca_618,10741643,5
+51753781,10741643,4
+67785807,10741643,4
+topdragon,10741643,5
+56067600,10741643,5
+126818106,10741643,5
+zoekeke,10741643,5
+48693243,10741643,5
+68891981,10741643,3
+true.pure,10741643,2
+imarilyn,10741643,4
+inmo,10741643,3
+nanxiaonan,10741643,4
+50518122,10741643,4
+hellolittlestar,10741643,4
+49491678,10741643,5
+129220055,10741643,5
+pierrewrs,10741643,4
+69343888,10741643,4
+qibacha,10741643,-1
+37218084,10741643,-1
+carolyndan,10741643,3
+9518731,10741643,3
+70238509,10741643,2
+114689592,10741643,4
+47621269,10741643,3
+43671403,10741643,4
+57077284,10741643,4
+60956966,10741643,5
+57975142,10741643,4
+sunxiaomei,10741643,4
+life_go,10741643,5
+42546782,10741643,5
+67098541,10741643,5
+damnm,10741643,3
+cacasoong,10741643,5
+3751886,10741643,3
+83769093,10741643,4
+lcisco,10741643,3
+86941493,10741643,4
+51411741,10741643,3
+vibrant_mind,10741643,5
+top-sxy,10741643,4
+shanbaixuanlan,10741643,4
+tikchao,10741643,5
+tikchao,10741643,5
+45714690,10741643,5
+62971730,10741643,4
+chobit.w,10741643,4
+48036923,10741643,4
+Kola,10741643,5
+ability2010,10741643,4
+wayying,10741643,5
+xiaoruian,10741643,5
+WTYa,10741643,5
+51271379,10741643,4
+Zen-Ting,10741643,5
+dancinglight001,10741643,4
+46748030,10741643,4
+52241685,10741643,5
+2658066,10741643,4
+69622575,10741643,5
+omi0604,10741643,4
+dc_ckhab,10741643,3
+75060350,10741643,5
+ldalice,10741643,3
+27032939,10741643,4
+bigbangtg,10741643,4
+67552015,10741643,5
+45942858,10741643,4
+ran_taobao,10741643,4
+Hans.c,10741643,5
+126875847,10741643,3
+Iris1989,10741643,4
+57402269,10741643,4
+41742686,10741643,4
+wobushijianeng,10741643,4
+melodychung,10741643,4
+love-jetoy,10741643,3
+kimi-seven,10741643,4
+stellalovescd,10741643,3
+amytsai,10741643,4
+58658424,10741643,4
+sherrybecks,10741643,3
+52680941,10741643,3
+59163051,10741643,5
+58081295,10741643,5
+39104472,10741643,4
+64154274,10741643,5
+zlkent,10741643,5
+yigedejia,10741643,4
+9322060,10741643,4
+zhaoqingliang,10741643,-1
+76496634,10741643,3
+yihaifei,10741643,5
+59934042,10741643,5
+63748259,10741643,3
+57055757,10741643,5
+69350175,10741643,4
+68594365,10741643,5
+solance,10741643,5
+59677538,10741643,4
+cening,10741643,4
+lurenxiaojia,10741643,5
+15333380,10741643,4
+102877510,10741643,5
+60437344,10741643,5
+rabbittmy,10741643,3
+bookbug,10741643,4
+UnoCici,10741643,4
+weixilai,10741643,3
+huansan,10741643,5
+shendjlingsu,10741643,5
+51911011,10741643,5
+Nicky007,10741643,4
+piggyjane,10741643,5
+icyleaf,10741643,-1
+eskimonino,10741643,4
+3438426,10741643,5
+120605718,10741643,3
+63537137,10741643,5
+undecember,10741643,4
+46646492,10741643,5
+BIG-O,10741643,5
+36176527,10741643,4
+zhangjianpeng,10741643,4
+aliangshuo,10741643,5
+qiaoqiezi,10741643,4
+4608274,10741643,4
+lovelight,10741643,5
+vipan,10741643,4
+4538596,10741643,5
+HBHelena,10741643,4
+79145213,10741643,4
+45776668,10741643,5
+59479604,10741643,5
+89560396,10741643,4
+zaozao928,10741643,5
+utiao,10741643,4
+thissmes,10741643,4
+BaiDamao,10741643,4
+citydreamer,10741643,4
+61268126,10741643,5
+63306444,10741643,3
+43904088,10741643,5
+xiaosanye,10741643,5
+yxdblog,10741643,-1
+Erilins,10741643,4
+73849253,10741643,5
+57666555,10741643,4
+60754399,10741643,2
+yxie,10741643,5
+35818618,10741643,5
+93705392,10741643,3
+plutoto,10741643,5
+CharlieXiaoxiao,10741643,4
+126056864,10741643,3
+48724979,10741643,4
+72827864,10741643,5
+wxy4th,10741643,3
+chilva,10741643,5
+79738458,10741643,4
+35864691,10741643,5
+stardust1900,10741643,4
+kangshuying,10741643,3
+rukia-ichigo,10741643,4
+stephaniesecret,10741643,3
+56224870,10741643,4
+rabbit-bu,10741643,4
+50183635,10741643,4
+66609282,10741643,4
+54542205,10741643,5
+JieloveMovie,10741643,4
+56529479,10741643,4
+npzhd,10741643,3
+violin0714,10741643,5
+76595945,10741643,5
+3382542,10741643,5
+xiongkaihang,10741643,4
+27102756,10741643,4
+88450412,10741643,4
+69926201,10741643,3
+fumaolianxi,10741643,5
+1054603,10741643,5
+whatiswhat,10741643,4
+whatiswhat,10741643,4
+imom918,10741643,4
+52445378,10741643,5
+80536863,10741643,5
+44556273,10741643,4
+39607607,10741643,4
+gracepeng,10741643,4
+17843797,10741643,4
+sunjy,10741643,5
+36078455,10741643,5
+60232608,10741643,5
+81356620,10741643,4
+60202175,10741643,4
+49686878,10741643,3
+4305622,10741643,4
+72454425,10741643,5
+27935436,10741643,4
+vvish,10741643,5
+3158097,10741643,5
+AI.12717,10741643,3
+BearCookie,10741643,5
+4354937,10741643,3
+57775883,10741643,4
+44230402,10741643,5
+3469841,10741643,5
+69266256,10741643,5
+53387217,10741643,5
+43076738,10741643,5
+31548307,10741643,5
+shirleychien,10741643,4
+30801487,10741643,4
+Fedsay,10741643,3
+115307467,10741643,4
+56797290,10741643,4
+MintManiac,10741643,4
+28676334,10741643,4
+1631122,10741643,4
+33686948,10741643,4
+nateriveryhy,10741643,4
+52300652,10741643,5
+SUiTHiNK,10741643,5
+3288948,10741643,4
+70357022,10741643,2
+93385129,10741643,5
+3187156,10741643,4
+4210942,10741643,4
+massigouhe,10741643,4
+42961533,10741643,5
+Zany.,10741643,4
+58110144,10741643,4
+78237163,10741643,5
+dongchengxin,10741643,5
+muson00,10741643,1
+cxq,10741643,3
+34212904,10741643,5
+2451603,10741643,5
+60042973,10741643,3
+flower_crossing,10741643,4
+61293870,10741643,4
+129118169,10741643,5
+45786589,10741643,4
+yubingqiangwei,10741643,4
+122335329,10741643,4
+70507408,10741643,5
+wangzhonghua90,10741643,5
+shaoshao1128,10741643,4
+qujiajia123,10741643,5
+64467253,10741643,5
+wellsli2015,10741643,5
+50590783,10741643,4
+brew,10741643,4
+break5,10741643,4
+52325699,10741643,5
+2794328,10741643,3
+sssoul,10741643,-1
+68959419,10741643,5
+muouzaiweixiao,10741643,5
+amay1023,10741643,4
+2431333,10741643,4
+62928630,10741643,3
+3305668,10741643,5
+KarenC12,10741643,4
+2033981,10741643,4
+121118830,10741643,5
+50667944,10741643,3
+4118218,10741643,-1
+tigermian,10741643,5
+1278172,10741643,3
+imauve,10741643,4
+83421554,10741643,5
+harrykan,10741643,4
+51412054,10741643,3
+54506812,10741643,3
+63302327,10741643,5
+2418301,10741643,4
+68835395,10741643,5
+56975242,10741643,4
+28130069,10741643,4
+102607701,10741643,4
+hawa1214,10741643,3
+79745413,10741643,5
+71882861,10741643,3
+saker,10741643,5
+53121393,10741643,5
+66460349,10741643,4
+63843241,10741643,5
+Coast0to0coast,10741643,4
+39433468,10741643,5
+amandaccforever,10741643,3
+baishibaihu,10741643,5
+dolphin_leo,10741643,4
+jack1e,10741643,4
+DW_be_happy,10741643,5
+56928427,10741643,4
+1926472,10741643,5
+jadexyz,10741643,5
+25572888,10741643,5
+2039569,10741643,3
+niuniu2,10741643,4
+amzyangyk,10741643,5
+102546806,10741643,4
+44539538,10741643,4
+52226268,10741643,3
+21951726,10741643,4
+54984127,10741643,4
+46576835,10741643,4
+w.ruru,10741643,5
+temuujin,10741643,1
+Marcher,10741643,5
+alicelavie,10741643,5
+1994954,10741643,4
+51866198,10741643,5
+3519752,10741643,3
+yokiiii,10741643,5
+28418359,10741643,4
+50204140,10741643,5
+69855883,10741643,4
+3319103,10741643,3
+14845299,10741643,5
+willlove,10741643,5
+weiliang1023,10741643,4
+53728385,10741643,5
+9775754,10741643,3
+51987671,10741643,5
+47288802,10741643,3
+isaxue,10741643,4
+bike24,10741643,5
+49181549,10741643,4
+JaneCooper,10741643,5
+3562200,10741643,5
+wzjzxgj,10741643,5
+peterpan1004,10741643,5
+78125099,10741643,1
+pixie,10741643,4
+erdansleepy,10741643,5
+Swangshu,10741643,3
+49454484,10741643,3
+3802854,10741643,3
+zlpEcho,10741643,4
+44481668,10741643,3
+2759758,10741643,5
+80599867,10741643,5
+cherish_bing,10741643,4
+49382185,10741643,4
+3092879,10741643,5
+leidewang,10741643,5
+62805578,10741643,4
+103004079,10741643,5
+heming_way,10741643,5
+40522482,10741643,4
+2776455,10741643,3
+xiki.m,10741643,4
+114336232,10741643,5
+1532624,10741643,3
+62156230,10741643,5
+1814709,10741643,5
+13053957,10741643,3
+97531934,10741643,4
+yanran227,10741643,3
+71065754,10741643,5
+winskey,10741643,5
+15821336,10741643,5
+64078434,10741643,4
+jx1111l,10741643,4
+3745417,10741643,5
+DuoYiMu,10741643,5
+64132856,10741643,4
+61816824,10741643,5
+70746193,10741643,4
+119296664,10741643,4
+38634697,10741643,4
+68382762,10741643,4
+77722334,10741643,-1
+fergie37,10741643,3
+49145769,10741643,5
+56723489,10741643,5
+fansgentle,10741643,5
+wuxuqian,10741643,4
+97057958,10741643,5
+97649336,10741643,3
+28258091,10741643,5
+50337203,10741643,5
+darlingm,10741643,4
+xiatian722,10741643,5
+47052940,10741643,5
+woollen50,10741643,4
+67278708,10741643,5
+imkeke,10741643,4
+48238044,10741643,5
+51108472,10741643,5
+roam_sky,10741643,5
+Sivona_,10741643,5
+64214244,10741643,4
+59276752,10741643,5
+37445047,10741643,4
+ccdetiantang,10741643,3
+2561340,10741643,5
+62971475,10741643,5
+MissCaptain,10741643,5
+cos2xhps,10741643,3
+cos2xhps,10741643,3
+1605613,10741643,4
+mrzeng1993,10741643,5
+33490013,10741643,5
+54030694,10741643,5
+fck2010,10741643,5
+LuuuuC,10741643,4
+76956024,10741643,4
+qiabeibei314,10741643,4
+48880866,10741643,4
+85487157,10741643,5
+82126102,10741643,4
+76447430,10741643,5
+icewoodlau,10741643,4
+84832389,10741643,5
+yuhaoyun,10741643,4
+2437069,10741643,4
+52520947,10741643,4
+20001670,10741643,5
+88367047,10741643,5
+3710625,10741643,5
+baby_summer,10741643,4
+xiaosenlive,10741643,5
+zishi121,10741643,4
+dodolxy,10741643,3
+57156729,10741643,4
+sunvi,10741643,5
+1169676,10741643,5
+55858054,10741643,4
+lykingking,10741643,4
+2923091,10741643,5
+54618575,10741643,3
+lychee0825,10741643,4
+somovie,10741643,4
+54628981,10741643,2
+61913160,10741643,5
+sunbox,10741643,4
+104528325,10741643,5
+58630944,10741643,4
+128409852,10741643,4
+randalpoal,10741643,4
+55687458,10741643,5
+aiyucheng,10741643,3
+61165254,10741643,4
+anlrj,10741643,5
+1075412,10741643,4
+1373185,10741643,5
+2099044,10741643,2
+lunaa,10741643,3
+yukiyoung,10741643,3
+66919459,10741643,3
+zjl234,10741643,4
+3190777,10741643,5
+suan0613,10741643,5
+1317876,10741643,4
+lycans,10741643,4
+126124250,10741643,5
+1353634,10741643,4
+psychexhy,10741643,5
+63381133,10741643,3
+54371431,10741643,4
+westleaf,10741643,4
+dreamerangela,10741643,3
+51070756,10741643,-1
+53627589,10741643,4
+50392401,10741643,4
+126949865,10741643,5
+79779762,10741643,4
+41242185,10741643,4
+skloveshaka,10741643,4
+fanya,10741643,5
+74201077,10741643,4
+75421983,10741643,3
+alicemeng,10741643,3
+Hypatia,10741643,5
+relyyoung,10741643,5
+mxmxmxxx,10741643,5
+triStoneL,10741643,3
+ccmuzi,10741643,4
+might_morning,10741643,5
+32566689,10741643,4
+1465454,10741643,5
+8701005,10741643,5
+51440227,10741643,4
+xylitol,10741643,3
+125539581,10741643,4
+129034006,10741643,4
+warmic,10741643,5
+85280222,10741643,4
+96000077,10741643,5
+Fiona-Choo,10741643,4
+82254270,10741643,4
+kuku_yang,10741643,5
+61559703,10741643,3
+2453641,10741643,1
+64039684,10741643,5
+57430684,10741643,4
+2720030,10741643,5
+yunduan6,10741643,4
+47310615,10741643,5
+wella,10741643,3
+vividium,10741643,4
+72225494,10741643,4
+echo219,10741643,4
+84582095,10741643,5
+Pavellippo,10741643,1
+47034969,10741643,4
+58517095,10741643,5
+67087300,10741643,4
+2510758,10741643,5
+Democan,10741643,3
+joanna-T,10741643,5
+59782027,10741643,5
+40368859,10741643,4
+100240812,10741643,5
+cattentiste,10741643,5
+128525178,10741643,4
+73098632,10741643,4
+81518415,10741643,5
+39525517,10741643,3
+66580009,10741643,4
+51152524,10741643,4
+99433073,10741643,4
+61954615,10741643,4
+51738741,10741643,5
+63399051,10741643,3
+Lena_tang,10741643,5
+37635655,10741643,5
+verawxl,10741643,4
+lvhobbitdarren,10741643,3
+thandiwe,10741643,5
+55280126,10741643,5
+65942199,10741643,5
+NTkyrie,10741643,4
+119586140,10741643,4
+60715725,10741643,4
+45302622,10741643,4
+49916488,10741643,3
+Jerusalem,10741643,5
+62317296,10741643,5
+62875817,10741643,5
+79668647,10741643,5
+62604027,10741643,5
+55675256,10741643,5
+cara-roamer,10741643,4
+57224796,10741643,3
+35697125,10741643,4
+4557702,10741643,4
+xjun,10741643,5
+66771297,10741643,4
+zhangyifei,10741643,5
+shmily_yummy,10741643,5
+93203680,10741643,4
+absdee,10741643,4
+124815483,10741643,5
+57923940,10741643,3
+40868820,10741643,5
+tavi0529,10741643,3
+49247841,10741643,5
+mort,10741643,3
+mort,10741643,3
+JennyDingding,10741643,4
+62173989,10741643,4
+91998053,10741643,3
+jinxxxx,10741643,5
+twoerer,10741643,4
+plusthinky,10741643,5
+lostheart,10741643,-1
+xj_shao,10741643,4
+89663126,10741643,5
+128563781,10741643,5
+106712856,10741643,5
+3407887,10741643,5
+4475163,10741643,4
+113992757,10741643,4
+46785277,10741643,4
+48925752,10741643,4
+78364683,10741643,3
+41445652,10741643,5
+82489624,10741643,4
+89906593,10741643,4
+44918804,10741643,4
+rokuko1859,10741643,4
+55708623,10741643,3
+13262749,10741643,5
+balancee,10741643,4
+128181161,10741643,5
+115706838,10741643,4
+54143026,10741643,5
+50032889,10741643,5
+solaryy,10741643,4
+55680257,10741643,4
+53176363,10741643,3
+maoyufreng,10741643,5
+williezou,10741643,5
+wpjkatrina,10741643,4
+4899780,10741643,5
+joelove,10741643,3
+122979431,10741643,4
+78900467,10741643,5
+43542523,10741643,3
+sharon.jin,10741643,5
+37343729,10741643,5
+violain,10741643,4
+63208019,10741643,5
+1387854,10741643,5
+lovenpeaces,10741643,5
+52789479,10741643,4
+74230231,10741643,5
+58371683,10741643,3
+46171104,10741643,5
+44177669,10741643,4
+52678874,10741643,4
+42576668,10741643,4
+94710762,10741643,4
+57773351,10741643,5
+52246320,10741643,4
+74718882,10741643,-1
+zincer,10741643,4
+Carman.Feng,10741643,4
+2616668,10741643,5
+75426992,10741643,5
+57749924,10741643,3
+2567170,10741643,3
+64277816,10741643,5
+57762764,10741643,3
+snagbin,10741643,5
+49841484,10741643,4
+serein0423,10741643,5
+35384928,10741643,4
+59030523,10741643,5
+waisai,10741643,4
+M4A1,10741643,5
+36537385,10741643,5
+xiaoyusuying,10741643,5
+4116226,10741643,4
+63228539,10741643,4
+liuyongchina,10741643,4
+lilibird007,10741643,5
+77101877,10741643,5
+77193110,10741643,4
+xiajixiangnan,10741643,5
+62876857,10741643,4
+lanmon,10741643,5
+mirror-y,10741643,4
+2155287,10741643,5
+2384173,10741643,4
+35737386,10741643,4
+yiduanhu,10741643,3
+yabatoo,10741643,5
+71887645,10741643,4
+4225442,10741643,4
+121055789,10741643,4
+show06254444,10741643,3
+121457828,10741643,4
+zhmcyake,10741643,5
+82847789,10741643,4
+43244372,10741643,3
+1855680,10741643,4
+studyzy,10741643,5
+chenbing,10741643,3
+2868760,10741643,5
+73831600,10741643,4
+40850484,10741643,5
+42293936,10741643,5
+45567308,10741643,3
+58158122,10741643,5
+mianlincong,10741643,5
+62979514,10741643,4
+deaconsu,10741643,5
+1781259,10741643,3
+124456282,10741643,3
+71790709,10741643,3
+66269844,10741643,4
+81660493,10741643,5
+karif,10741643,3
+4882930,10741643,4
+87855895,10741643,4
+ramonachan,10741643,5
+57853791,10741643,5
+3518415,10741643,4
+1743235,10741643,5
+48367765,10741643,5
+monsterbaby,10741643,4
+63932389,10741643,4
+swarovskii,10741643,4
+UranusKwan,10741643,4
+77044471,10741643,5
+68799171,10741643,5
+63881003,10741643,5
+tangchaozs,10741643,4
+TRULYSHELTON,10741643,4
+64435389,10741643,5
+92580665,10741643,5
+HugoVince,10741643,5
+1659209,10741643,4
+58539257,10741643,5
+74102508,10741643,5
+74778874,10741643,5
+cheergao,10741643,3
+cheergao,10741643,3
+octopiclsy,10741643,3
+127154004,10741643,5
+65095181,10741643,3
+67812928,10741643,3
+83989454,10741643,4
+53311132,10741643,4
+35342547,10741643,4
+devofi,10741643,4
+54171468,10741643,5
+genuinesuz,10741643,5
+71203011,10741643,5
+xiaheng0820,10741643,3
+57558861,10741643,3
+tuihuo,10741643,5
+73818068,10741643,3
+2571757,10741643,4
+yys456789,10741643,4
+45066931,10741643,5
+68967658,10741643,5
+68967658,10741643,5
+14142152,10741643,3
+36866440,10741643,2
+pea_sandy,10741643,4
+120537133,10741643,4
+80922094,10741643,4
+8136180,10741643,4
+63938212,10741643,5
+guodanyang09,10741643,5
+34484262,10741643,4
+45094700,10741643,5
+2468857,10741643,4
+ericchen_xh,10741643,5
+25565886,10741643,5
+47004535,10741643,5
+XDear,10741643,4
+54873886,10741643,5
+56565894,10741643,4
+3494501,10741643,5
+leepz,10741643,3
+126685684,10741643,5
+66826659,10741643,3
+4515780,10741643,4
+52684314,10741643,5
+109238530,10741643,2
+4115987,10741643,5
+josiekiu,10741643,4
+9167697,10741643,-1
+raulwxm,10741643,4
+1582144,10741643,4
+63122926,10741643,4
+76617762,10741643,5
+103775903,10741643,5
+102466588,10741643,3
+80535957,10741643,5
+YYDEE,10741643,3
+philia1026,10741643,4
+92944589,10741643,5
+alar,10741643,5
+37571281,10741643,4
+seeeclipse,10741643,5
+92005501,10741643,3
+91807374,10741643,3
+ruahh,10741643,4
+daijialu1992,10741643,5
+95613744,10741643,4
+2622280,10741643,1
+90056521,10741643,4
+freeeeeeee,10741643,3
+60866434,10741643,3
+59268463,10741643,3
+2383316,10741643,3
+59282824,10741643,-1
+57935610,10741643,4
+shuai7v5,10741643,3
+80797191,10741643,4
+haiziyaya,10741643,4
+66087282,10741643,4
+Baoberlln,10741643,5
+rfzz,10741643,4
+43282525,10741643,5
+48821799,10741643,2
+oceanzzzzzz,10741643,5
+noalice,10741643,5
+59752375,10741643,4
+50303798,10741643,5
+64887189,10741643,2
+2889364,10741643,4
+58903343,10741643,4
+3766371,10741643,4
+65518969,10741643,5
+63236633,10741643,5
+Mr.WWW,10741643,5
+61936513,10741643,5
+liubin192,10741643,5
+caixiaoqiang,10741643,5
+Datura.,10741643,-1
+qiyuexiaomo,10741643,4
+66848309,10741643,3
+2316813,10741643,3
+30158344,10741643,5
+40489825,10741643,5
+91746178,10741643,4
+58138033,10741643,5
+65708707,10741643,4
+hexi1,10741643,4
+4261388,10741643,5
+61720773,10741643,3
+52826626,10741643,4
+i_wanna,10741643,4
+tearmap,10741643,4
+121754243,10741643,5
+69253645,10741643,5
+53794132,10741643,5
+jiangshilun,10741643,3
+90605938,10741643,5
+yizhiyu11,10741643,3
+52275922,10741643,4
+LSDRauz,10741643,4
+60151279,10741643,5
+56734943,10741643,4
+ivyli33,10741643,4
+1828275,10741643,5
+55479724,10741643,5
+34132575,10741643,3
+Jaer,10741643,4
+50458096,10741643,5
+10552823,10741643,4
+timememo,10741643,4
+68403341,10741643,4
+51658191,10741643,5
+40544595,10741643,5
+45173770,10741643,5
+66824818,10741643,4
+58994072,10741643,4
+goodprado,10741643,5
+47193032,10741643,4
+michelleorz,10741643,5
+Qooo,10741643,4
+yum0808,10741643,4
+69239717,10741643,5
+126513997,10741643,4
+63601043,10741643,4
+lsj1112,10741643,5
+3323718,10741643,3
+44196996,10741643,4
+jiangwy,10741643,5
+70989661,10741643,2
+54593861,10741643,5
+39486761,10741643,5
+kpcloud1314,10741643,4
+61312801,10741643,5
+59408878,10741643,5
+xilouchen,10741643,2
+yvonne.liukai,10741643,5
+51138955,10741643,3
+120774094,10741643,5
+76072688,10741643,4
+1058728,10741643,3
+aprisliver,10741643,4
+27244349,10741643,5
+60172474,10741643,3
+caijiazhan,10741643,4
+misuna,10741643,4
+83183535,10741643,4
+jadezely,10741643,5
+67166553,10741643,3
+121132691,10741643,4
+35285718,10741643,4
+daningcc,10741643,3
+84288214,10741643,5
+paopaotang1990,10741643,3
+jessiehxj,10741643,3
+62209386,10741643,5
+50199295,10741643,4
+XFire2013,10741643,4
+53830411,10741643,3
+63992894,10741643,5
+56303622,10741643,2
+6239142,10741643,5
+w8101,10741643,5
+2331806,10741643,4
+31180188,10741643,-1
+5313193,10741643,3
+lisa_clover,10741643,5
+64563247,10741643,5
+61294563,10741643,4
+49426583,10741643,5
+87236740,10741643,5
+62245513,10741643,4
+37923244,10741643,-1
+3718647,10741643,3
+46122487,10741643,5
+51393119,10741643,4
+77693072,10741643,3
+57585752,10741643,5
+69836665,10741643,4
+reader_racer,10741643,3
+42781617,10741643,4
+iiibuwan,10741643,4
+nanasun,10741643,3
+jarvanh,10741643,5
+89808337,10741643,4
+xixistone,10741643,2
+64414294,10741643,5
+58083000,10741643,3
+45183610,10741643,4
+124641972,10741643,4
+58347054,10741643,5
+mrwangzai,10741643,3
+soul92114,10741643,5
+43300305,10741643,5
+87825054,10741643,5
+swanman17,10741643,4
+3261532,10741643,4
+122458396,10741643,5
+56346107,10741643,5
+53498133,10741643,3
+FennyFu,10741643,3
+nknemo,10741643,-1
+51260549,10741643,5
+unfoldway,10741643,4
+61506286,10741643,5
+venomlack,10741643,3
+64579754,10741643,3
+56998996,10741643,3
+37756107,10741643,4
+sarah0215,10741643,5
+jianinglee,10741643,2
+35374393,10741643,4
+nanonino,10741643,5
+47804119,10741643,5
+xd880820,10741643,5
+47359834,10741643,3
+83842502,10741643,5
+82494304,10741643,4
+50201051,10741643,5
+TiffanyBrisset,10741643,3
+67609904,10741643,4
+xiaonuanjian,10741643,5
+67609904,10741643,4
+xiaonuanjian,10741643,5
+twinkle213,10741643,4
+arrowkey,10741643,4
+1327257,10741643,5
+33921766,10741643,4
+oolong12,10741643,4
+yunxin92,10741643,4
+48471753,10741643,3
+124634340,10741643,-1
+127296999,10741643,4
+66517817,10741643,5
+B-162,10741643,4
+sixfool,10741643,4
+47992913,10741643,3
+LacrimosaNi,10741643,4
+MaySnow_Tong,10741643,4
+59275049,10741643,5
+69967091,10741643,4
+75463946,10741643,5
+49274637,10741643,5
+42808435,10741643,4
+amandachun-gccz,10741643,5
+leftone,10741643,4
+43085857,10741643,4
+43851694,10741643,3
+69338065,10741643,5
+81799497,10741643,5
+winnie_snowy,10741643,3
+daifuzhai,10741643,4
+Ansheng_vivi,10741643,5
+37316854,10741643,3
+125849122,10741643,4
+58410294,10741643,4
+seeyou--,10741643,3
+bode,10741643,5
+63579399,10741643,5
+50558148,10741643,4
+52100331,10741643,5
+flotte,10741643,3
+flotte,10741643,3
+33901414,10741643,5
+41471449,10741643,4
+56278283,10741643,4
+78879030,10741643,3
+110447556,10741643,2
+56702437,10741643,3
+50968156,10741643,5
+HH-HH-HH,10741643,4
+C121,10741643,4
+30811180,10741643,3
+49190092,10741643,5
+93332466,10741643,3
+daisylq,10741643,3
+47166487,10741643,5
+75470874,10741643,4
+2806993,10741643,5
+42646468,10741643,5
+Alinaqueen,10741643,3
+51439533,10741643,5
+3600974,10741643,5
+lilygoy,10741643,5
+103278545,10741643,4
+63927330,10741643,3
+39011578,10741643,4
+44844268,10741643,5
+72911180,10741643,5
+2305028,10741643,4
+whomaI,10741643,4
+62710318,10741643,5
+41858076,10741643,3
+43046100,10741643,4
+69056740,10741643,4
+57697286,10741643,5
+shenhuxi,10741643,4
+105012545,10741643,5
+69328232,10741643,3
+liuzhusn,10741643,3
+63494405,10741643,4
+miffychen0,10741643,4
+fan77seven,10741643,5
+51395326,10741643,4
+future119,10741643,4
+88539587,10741643,4
+71421150,10741643,3
+37180503,10741643,5
+3004038,10741643,5
+q258523454,10741643,5
+62826582,10741643,4
+29606366,10741643,5
+37747347,10741643,4
+eaglewing,10741643,4
+4192759,10741643,4
+52243645,10741643,3
+78217997,10741643,4
+symbolist,10741643,3
+51367925,10741643,5
+56585930,10741643,4
+79251740,10741643,5
+xuweidexieduimi,10741643,4
+xuweidexieduimi,10741643,4
+32977496,10741643,4
+meko1206,10741643,4
+41208413,10741643,4
+48256975,10741643,3
+58126470,10741643,5
+61229030,10741643,3
+127996669,10741643,3
+2464015,10741643,4
+injune,10741643,5
+50627941,10741643,3
+52790249,10741643,-1
+66722557,10741643,2
+woxingmi,10741643,4
+48722757,10741643,4
+58918860,10741643,4
+57715527,10741643,5
+43127897,10741643,4
+cyushu,10741643,4
+81448512,10741643,4
+huanghongyang,10741643,5
+SK1d125,10741643,3
+celldweller,10741643,5
+46696173,10741643,4
+lisa417,10741643,4
+50307120,10741643,2
+ilaid,10741643,3
+zjstheking,10741643,5
+58783819,10741643,4
+54224355,10741643,2
+50450766,10741643,5
+71179272,10741643,3
+54378325,10741643,3
+52660199,10741643,4
+48120448,10741643,5
+48131847,10741643,5
+62301518,10741643,5
+yolandastayreal,10741643,5
+Zoseph,10741643,-1
+54078126,10741643,5
+54043637,10741643,5
+xzhxf,10741643,4
+2110097,10741643,4
+47814886,10741643,5
+diaoleisheng,10741643,5
+baiyaya,10741643,5
+65023305,10741643,4
+echoyao,10741643,3
+ddingmmeng,10741643,2
+1437985,10741643,4
+114223476,10741643,5
+84522058,10741643,5
+echoningning,10741643,4
+30441221,10741643,4
+91083211,10741643,2
+4109418,10741643,4
+39566719,10741643,2
+53861958,10741643,3
+dandelion13,10741643,3
+kejinlong,10741643,3
+88844052,10741643,2
+Vivian77,10741643,5
+93179604,10741643,4
+freeaqi,10741643,4
+43888841,10741643,5
+3450531,10741643,5
+qbdp,10741643,4
+71764835,10741643,5
+35230915,10741643,5
+123124520,10741643,5
+83836566,10741643,5
+62951403,10741643,4
+67840035,10741643,4
+eiris,10741643,4
+52477984,10741643,4
+hailuo,10741643,4
+47540994,10741643,3
+17637612,10741643,3
+waltertao,10741643,5
+37226045,10741643,5
+37226045,10741643,5
+52462524,10741643,4
+64466995,10741643,5
+onlyblue16,10741643,5
+4674424,10741643,5
+124117539,10741643,5
+49815623,10741643,4
+hawords,10741643,4
+58019562,10741643,5
+39207025,10741643,5
+46317949,10741643,5
+yanxiaobao,10741643,4
+shir23,10741643,4
+1011966,10741643,5
+54094049,10741643,4
+43521057,10741643,5
+57425005,10741643,4
+shlalalalala,10741643,4
+crushon,10741643,3
+loveljfoever,10741643,5
+1210763,10741643,5
+aegeanguo,10741643,5
+elenadivita,10741643,4
+rockleaf,10741643,3
+3933358,10741643,5
+shengworld,10741643,4
+25977714,10741643,4
+78424556,10741643,4
+3815024,10741643,4
+68401982,10741643,5
+30591753,10741643,4
+3045195,10741643,4
+Shelly0623,10741643,-1
+wh396011051,10741643,4
+im77,10741643,5
+iysy,10741643,3
+88859760,10741643,5
+79626778,10741643,5
+qiaomai,10741643,3
+cupittang,10741643,4
+sampetter,10741643,3
+hejiaqiqi,10741643,3
+70196595,10741643,4
+chatmeng,10741643,4
+feblee,10741643,4
+khxt,10741643,3
+37046349,10741643,-1
+4108038,10741643,5
+54712127,10741643,5
+81583969,10741643,5
+120605598,10741643,4
+6343940,10741643,4
+89762927,10741643,4
+50002640,10741643,4
+66613325,10741643,4
+49641316,10741643,4
+55807527,10741643,5
+58283218,10741643,3
+51938076,10741643,-1
+matianyang,10741643,4
+51855205,10741643,4
+54119751,10741643,3
+sacowiw,10741643,5
+103098701,10741643,4
+57155123,10741643,5
+For_desperado,10741643,4
+83880297,10741643,4
+41326258,10741643,3
+57138259,10741643,5
+52046624,10741643,5
+80847365,10741643,4
+21879662,10741643,5
+4115750,10741643,4
+84593268,10741643,5
+58702024,10741643,4
+smilinglynn,10741643,4
+64454454,10741643,4
+54984584,10741643,4
+78110952,10741643,3
+114841876,10741643,5
+102652044,10741643,4
+81431199,10741643,5
+kandie,10741643,5
+102191343,10741643,3
+2849145,10741643,5
+88585490,10741643,4
+2859719,10741643,3
+4464843,10741643,3
+31953013,10741643,5
+53644623,10741643,4
+24874842,10741643,4
+4107737,10741643,-1
+l.don,10741643,4
+yi.de.ren,10741643,4
+61394698,10741643,5
+69467775,10741643,4
+73411860,10741643,4
+51144978,10741643,3
+49935216,10741643,3
+127114017,10741643,5
+EffyQ,10741643,3
+SHUNSHUNER,10741643,5
+feichaiyan,10741643,4
+2382205,10741643,3
+xiaoyushudai,10741643,4
+57872112,10741643,4
+xuqs,10741643,4
+nuannuan2you,10741643,1
+wyqstar,10741643,4
+53595584,10741643,5
+gangrel96,10741643,5
+avisj,10741643,5
+1217228,10741643,4
+lianmaomi,10741643,3
+vivianlovesun,10741643,4
+godfathery,10741643,4
+32128731,10741643,3
+54092051,10741643,5
+76245622,10741643,5
+46366221,10741643,4
+irislxxx,10741643,4
+Kidz,10741643,1
+4603294,10741643,3
+themissingken,10741643,4
+62229991,10741643,5
+120619243,10741643,4
+homutoo,10741643,2
+93985741,10741643,5
+67572632,10741643,5
+freed0me,10741643,5
+jaromu,10741643,3
+81462680,10741643,4
+63770772,10741643,5
+lovelessmay,10741643,5
+55314207,10741643,4
+103887775,10741643,3
+44407422,10741643,5
+123270343,10741643,4
+hicxq,10741643,3
+presyoung,10741643,5
+haima8824,10741643,5
+mygegeburu1111,10741643,4
+68539735,10741643,5
+62852967,10741643,4
+4406540,10741643,4
+36341358,10741643,4
+Clatyz-Sun,10741643,5
+78502384,10741643,3
+adaylanie,10741643,5
+Luoluoshang,10741643,5
+121042228,10741643,5
+1240363,10741643,5
+syavalon,10741643,4
+45162443,10741643,3
+yangyangjt,10741643,4
+junobao,10741643,5
+62742263,10741643,3
+luluqiu,10741643,4
+ruilixiurui,10741643,4
+82791168,10741643,4
+giacintaxx,10741643,3
+45938786,10741643,5
+115467690,10741643,4
+26612648,10741643,4
+115619734,10741643,5
+77126470,10741643,5
+56591384,10741643,5
+73222538,10741643,4
+46523085,10741643,5
+25062013,10741643,5
+97974776,10741643,5
+guppyfish,10741643,3
+47894136,10741643,5
+Sunshine1113,10741643,4
+2144157,10741643,4
+121993907,10741643,5
+dearsiya,10741643,5
+41682180,10741643,5
+5955160,10741643,4
+yanhongcheng,10741643,5
+yanhongcheng,10741643,5
+crazykaz,10741643,5
+13593699,10741643,3
+aivnce,10741643,4
+jpdong,10741643,5
+84899568,10741643,3
+58451691,10741643,5
+56267226,10741643,4
+71824678,10741643,3
+3853954,10741643,4
+6564681,10741643,5
+50864883,10741643,4
+46061169,10741643,4
+74762630,10741643,4
+49946364,10741643,4
+caolong,10741643,4
+G-Dear,10741643,5
+11889754,10741643,4
+48145179,10741643,4
+3680251,10741643,4
+2750410,10741643,4
+44529408,10741643,4
+31258002,10741643,4
+chending,10741643,4
+64741291,10741643,4
+3779967,10741643,5
+jungle1in,10741643,-1
+45507399,10741643,5
+lilithyi,10741643,5
+58575762,10741643,3
+50820231,10741643,3
+lixinleixinli,10741643,5
+SILENT7,10741643,2
+55491528,10741643,4
+84244524,10741643,3
+82817173,10741643,5
+61956247,10741643,5
+41631852,10741643,4
+1787796,10741643,5
+3397806,10741643,5
+55491979,10741643,4
+58364140,10741643,3
+58604332,10741643,2
+59202829,10741643,3
+51045577,10741643,4
+roamsabout,10741643,5
+MMMangojz,10741643,4
+76366076,10741643,4
+50154752,10741643,4
+48521109,10741643,4
+83267438,10741643,3
+sunxiaozhao,10741643,5
+73571891,10741643,4
+10392574,10741643,5
+63770150,10741643,4
+3296645,10741643,4
+ms.st.james,10741643,-1
+bforbetter,10741643,4
+62677477,10741643,5
+61375666,10741643,2
+51605377,10741643,5
+3471096,10741643,3
+127785608,10741643,4
+56744079,10741643,4
+shenggxhz,10741643,5
+101625344,10741643,4
+65369660,10741643,3
+hxxhxx,10741643,5
+67863373,10741643,5
+59080670,10741643,5
+2401351,10741643,4
+4341792,10741643,5
+coco112,10741643,5
+anniegyl,10741643,4
+67163006,10741643,4
+69155941,10741643,3
+47782519,10741643,3
+42630229,10741643,5
+houze,10741643,3
+58177849,10741643,5
+odelete,10741643,4
+lanmu,10741643,5
+49631693,10741643,4
+LEEKO,10741643,5
+89975604,10741643,4
+52168475,10741643,4
+sophiamaomao,10741643,5
+46309841,10741643,5
+yyqlyb,10741643,3
+3271909,10741643,4
+70356127,10741643,4
+52931532,10741643,5
+aprilzhao,10741643,5
+65252438,10741643,4
+39245426,10741643,4
+120982550,10741643,5
+35740199,10741643,4
+ArwenYuan1218,10741643,5
+40256271,10741643,5
+xbl911,10741643,5
+76624951,10741643,3
+40193618,10741643,4
+momo_722,10741643,3
+45097131,10741643,5
+82323132,10741643,4
+49113668,10741643,4
+14157576,10741643,3
+8980569,10741643,5
+73059881,10741643,4
+hijoe,10741643,5
+128783615,10741643,5
+73204677,10741643,5
+46880191,10741643,4
+38886796,10741643,5
+mettuering,10741643,3
+60732201,10741643,4
+80103198,10741643,5
+48596196,10741643,-1
+37278837,10741643,5
+54390796,10741643,4
+54390796,10741643,4
+4289792,10741643,4
+65174941,10741643,3
+102050741,10741643,4
+rabbitfish,10741643,4
+xiaoxixionline,10741643,3
+49948378,10741643,4
+fxying,10741643,5
+klaus2015,10741643,4
+3969339,10741643,4
+35876351,10741643,4
+56771366,10741643,5
+59159384,10741643,4
+92849819,10741643,4
+xiaoyu86,10741643,4
+51817711,10741643,4
+60358204,10741643,-1
+14594315,10741643,4
+57656003,10741643,4
+70572475,10741643,5
+57025582,10741643,5
+gaoxingyeah,10741643,5
+102432384,10741643,4
+JiaoYaZi,10741643,1
+autumnfly,10741643,4
+Yeats77,10741643,5
+91942901,10741643,4
+fymaywhite,10741643,5
+2933073,10741643,5
+53514548,10741643,5
+ybcomg,10741643,4
+48314960,10741643,5
+holy-shit,10741643,4
+71107868,10741643,4
+48863342,10741643,3
+lanlingwang,10741643,4
+84207817,10741643,4
+2073061,10741643,5
+120635430,10741643,5
+128044974,10741643,4
+dido27u,10741643,4
+54449997,10741643,4
+127005452,10741643,5
+cattisky,10741643,2
+4343526,10741643,4
+66234722,10741643,5
+jerring,10741643,4
+orchild0517,10741643,3
+125001899,10741643,4
+75369986,10741643,5
+51317209,10741643,5
+60225829,10741643,5
+65354608,10741643,4
+47974911,10741643,5
+xianqiejiao,10741643,3
+joyful_jojo,10741643,4
+80985277,10741643,5
+ophelia_m,10741643,3
+xmsalem,10741643,4
+janfle,10741643,4
+68264319,10741643,4
+60845528,10741643,3
+zawlwyf,10741643,4
+50173408,10741643,5
+50095107,10741643,5
+sweetycici,10741643,5
+75449907,10741643,5
+missdarcy,10741643,5
+46440709,10741643,4
+Mr..k.ing,10741643,4
+59425944,10741643,4
+51504747,10741643,5
+missing_medusa,10741643,5
+82359622,10741643,-1
+52636646,10741643,4
+2984695,10741643,4
+7952688,10741643,4
+31596530,10741643,5
+116438067,10741643,4
+33949296,10741643,4
+42148511,10741643,5
+63950350,10741643,4
+pfs,10741643,5
+89881100,10741643,4
+lovets,10741643,3
+47604511,10741643,4
+1160337,10741643,4
+55476347,10741643,4
+4039085,10741643,4
+66590810,10741643,5
+4596979,10741643,4
+qiyingrunhua,10741643,5
+52384106,10741643,3
+Potatosoup,10741643,3
+120188394,10741643,4
+myself920,10741643,4
+XXXXXXXXXXXXXXD,10741643,4
+63413586,10741643,5
+2431790,10741643,5
+54989820,10741643,4
+54989820,10741643,4
+lee_way,10741643,3
+foreverjenny,10741643,3
+marilyn9l,10741643,2
+102165650,10741643,5
+zxyzm1989,10741643,-1
+115128390,10741643,3
+65662824,10741643,4
+41939078,10741643,4
+76820026,10741643,4
+sybilyuan,10741643,4
+51669831,10741643,5
+3943602,10741643,5
+33900425,10741643,4
+chujiuer,10741643,3
+lilmi13,10741643,-1
+3004253,10741643,4
+Klinux,10741643,2
+46125593,10741643,4
+1386311,10741643,3
+chiyouchiyou,10741643,2
+48849498,10741643,5
+joyouslin,10741643,3
+77586983,10741643,5
+sweetxyy,10741643,5
+51988867,10741643,4
+4445169,10741643,5
+37416441,10741643,3
+8039014,10741643,3
+57617328,10741643,5
+62554570,10741643,4
+RuiYip,10741643,4
+kona,10741643,5
+bikki,10741643,1
+3409400,10741643,4
+49850552,10741643,5
+34522796,10741643,4
+13873761,10741643,3
+68282272,10741643,1
+albicelestes,10741643,4
+63089184,10741643,2
+shouhuxiaoxiao,10741643,5
+winni1129,10741643,2
+79377615,10741643,5
+3753878,10741643,3
+120385446,10741643,5
+yingyujiaoshi,10741643,4
+83411107,10741643,4
+astroro,10741643,4
+enterzhu,10741643,4
+xiaoguai2098,10741643,5
+45529514,10741643,4
+Felica,10741643,3
+67734567,10741643,5
+2122630,10741643,5
+48470366,10741643,5
+88598461,10741643,4
+69096727,10741643,3
+hellomilky,10741643,5
+47658546,10741643,4
+128469750,10741643,4
+120735055,10741643,3
+1926820,10741643,3
+66526401,10741643,5
+64164384,10741643,5
+119592358,10741643,3
+68804843,10741643,5
+unbreakable,10741643,4
+123469055,10741643,4
+fjmxy,10741643,5
+100169550,10741643,5
+41238530,10741643,5
+49878108,10741643,3
+65738414,10741643,4
+65086893,10741643,4
+lingci,10741643,4
+2209141,10741643,5
+67346577,10741643,3
+kimimama,10741643,5
+helianchan,10741643,4
+49513730,10741643,5
+lingjunxin,10741643,4
+48280857,10741643,5
+68000398,10741643,5
+2785208,10741643,4
+moka_me,10741643,4
+102164266,10741643,4
+125406541,10741643,5
+rvlt,10741643,3
+greengina,10741643,4
+fendudukawaii,10741643,5
+54842656,10741643,4
+Ruby-J-J,10741643,3
+103240447,10741643,4
+48542740,10741643,4
+78443957,10741643,3
+54796879,10741643,4
+1743863,10741643,5
+LiChanna,10741643,2
+bozzi,10741643,4
+4766893,10741643,4
+jxyyy,10741643,5
+52788947,10741643,5
+57045631,10741643,4
+hxlnelson,10741643,5
+Ray_u,10741643,4
+60390320,10741643,2
+57605115,10741643,4
+mrcandy,10741643,4
+83472045,10741643,3
+62640847,10741643,4
+WendiMurdoch,10741643,2
+72303778,10741643,4
+2740917,10741643,5
+54739935,10741643,5
+Daniel-Cheung,10741643,4
+5012885,10741643,4
+69395247,10741643,5
+51195956,10741643,3
+106606702,10741643,5
+Ashin1118,10741643,4
+64113646,10741643,5
+a1234567,10741643,3
+43192927,10741643,5
+75058618,10741643,3
+seamouse,10741643,4
+49251600,10741643,4
+3478731,10741643,4
+45100333,10741643,5
+64094614,10741643,5
+chenahu,10741643,4
+LWODE,10741643,5
+13263646,10741643,4
+muniuxiaoquan,10741643,4
+33906554,10741643,5
+chen-027,10741643,4
+74059129,10741643,4
+68109134,10741643,3
+74016648,10741643,4
+mgmyz,10741643,4
+oooweirooo,10741643,3
+fancyyan,10741643,5
+43880604,10741643,5
+54585048,10741643,4
+31704533,10741643,5
+47190979,10741643,5
+121334018,10741643,4
+49139242,10741643,4
+41805226,10741643,5
+95298147,10741643,5
+125643700,10741643,5
+3589275,10741643,4
+Taco_0511,10741643,5
+41347911,10741643,5
+3723805,10741643,-1
+101946500,10741643,4
+3939279,10741643,4
+50703649,10741643,3
+77905956,10741643,4
+78638741,10741643,5
+78638741,10741643,5
+tiramisu53,10741643,4
+65308671,10741643,3
+31812370,10741643,3
+1779389,10741643,4
+78219576,10741643,4
+48089905,10741643,-1
+36169889,10741643,4
+109025568,10741643,4
+3125244,10741643,3
+69112914,10741643,4
+2221143,10741643,5
+90325710,10741643,3
+Nila,10741643,3
+pimichang,10741643,4
+82000507,10741643,3
+63892714,10741643,4
+woniupaobu,10741643,5
+73997383,10741643,5
+54774114,10741643,4
+acmm,10741643,4
+1642177,10741643,4
+75174389,10741643,3
+renyi_joy,10741643,5
+vchin,10741643,4
+dbqiubo,10741643,5
+partric,10741643,4
+guqianyi,10741643,3
+SQ17,10741643,4
+45383601,10741643,5
+122203111,10741643,5
+carriewxy,10741643,3
+46673283,10741643,5
+60887382,10741643,4
+46039104,10741643,4
+2975278,10741643,5
+3579800,10741643,2
+61424734,10741643,4
+58763357,10741643,5
+58043448,10741643,5
+80442320,10741643,5
+48357601,10741643,4
+2430586,10741643,3
+50929196,10741643,3
+49852748,10741643,5
+xslidian,10741643,4
+leafery,10741643,5
+wu.,10741643,5
+68765821,10741643,5
+53569227,10741643,4
+119543754,10741643,5
+sred0727,10741643,5
+53185889,10741643,3
+cyrus_wong,10741643,3
+ALee301302,10741643,3
+14566874,10741643,5
+ameleseue,10741643,4
+42495249,10741643,4
+43231750,10741643,4
+2849990,10741643,4
+44470581,10741643,4
+47295015,10741643,4
+52046119,10741643,5
+82620092,10741643,4
+TAKITANI,10741643,5
+85007814,10741643,5
+68952401,10741643,5
+guogouisherefor,10741643,4
+daydayfree,10741643,5
+zaps,10741643,4
+121736995,10741643,4
+63592043,10741643,5
+wsy-101,10741643,3
+62373959,10741643,5
+4697357,10741643,4
+Crystal_Dcy,10741643,5
+mumuyanshi,10741643,4
+louix,10741643,5
+62369014,10741643,4
+67937047,10741643,4
+Chloezjy,10741643,5
+51756917,10741643,5
+50256249,10741643,5
+yischumi,10741643,3
+54342307,10741643,4
+63096690,10741643,4
+4279038,10741643,3
+ericzero,10741643,5
+34063715,10741643,4
+76414184,10741643,4
+46911994,10741643,3
+62251310,10741643,5
+betty5940,10741643,4
+lunababe,10741643,5
+tonyzhao,10741643,4
+vighead,10741643,3
+danshuyl,10741643,4
+55886505,10741643,4
+46627349,10741643,5
+Monster_004,10741643,4
+wsashuiyin,10741643,4
+43978557,10741643,5
+3529418,10741643,5
+28959917,10741643,4
+66784871,10741643,4
+24022856,10741643,-1
+waterfall121,10741643,4
+62169560,10741643,4
+qichengshiwo,10741643,4
+64234839,10741643,5
+3425802,10741643,4
+83462778,10741643,4
+itayloriswift,10741643,4
+56109881,10741643,-1
+39132623,10741643,5
+58515646,10741643,5
+nvwudidi,10741643,5
+cudicini,10741643,3
+81161924,10741643,5
+faylulu96,10741643,5
+T914344365,10741643,5
+64795650,10741643,5
+44821238,10741643,5
+70315903,10741643,5
+45957514,10741643,4
+cenxiaoceng,10741643,4
+71210783,10741643,4
+50919323,10741643,2
+raen,10741643,4
+88154137,10741643,3
+yjjtdcq200,10741643,4
+banana77,10741643,4
+tmc,10741643,5
+3977688,10741643,3
+78658082,10741643,5
+77792440,10741643,-1
+28677254,10741643,4
+kaxidou,10741643,4
+3581900,10741643,5
+60787717,10741643,5
+geminiwj,10741643,5
+40325281,10741643,4
+79139193,10741643,4
+53035124,10741643,5
+90198636,10741643,4
+82524892,10741643,5
+65340054,10741643,5
+49421412,10741643,4
+64622437,10741643,5
+55439689,10741643,-1
+1479976,10741643,5
+bikibiki,10741643,3
+64191038,10741643,4
+dofihama,10741643,4
+54632275,10741643,4
+122232090,10741643,5
+59524378,10741643,3
+66453053,10741643,5
+49472133,10741643,4
+thiswinter,10741643,4
+63310083,10741643,5
+ikari,10741643,5
+37344756,10741643,4
+46054766,10741643,-1
+70088790,10741643,4
+63123198,10741643,4
+60118209,10741643,3
+60605103,10741643,3
+57377077,10741643,5
+59803560,10741643,5
+4665390,10741643,4
+50514243,10741643,4
+63187401,10741643,4
+53669377,10741643,5
+ninja_yao,10741643,5
+ozell,10741643,4
+rocksun,10741643,4
+huxzhao,10741643,4
+fish620,10741643,4
+63432491,10741643,3
+1835309,10741643,4
+49945629,10741643,4
+3969778,10741643,3
+2838561,10741643,3
+88171857,10741643,4
+52356727,10741643,5
+lephemera,10741643,4
+34292646,10741643,5
+lwl8823,10741643,4
+senlinxiaozhen,10741643,5
+67515391,10741643,5
+48605766,10741643,5
+84917101,10741643,3
+96490951,10741643,3
+62187279,10741643,5
+3789261,10741643,4
+48204509,10741643,5
+55809584,10741643,4
+80784627,10741643,4
+57643998,10741643,3
+47202062,10741643,4
+56679418,10741643,4
+xiloxilo,10741643,3
+76307011,10741643,5
+4158579,10741643,5
+49740490,10741643,5
+aiwangyue,10741643,5
+ishama,10741643,5
+58995367,10741643,5
+57596577,10741643,4
+ting1017,10741643,4
+2025420,10741643,5
+4418842,10741643,5
+52120890,10741643,4
+82011503,10741643,5
+viva-l,10741643,4
+59222283,10741643,4
+52984174,10741643,4
+51815760,10741643,5
+80743649,10741643,4
+37179208,10741643,4
+83189106,10741643,3
+48170987,10741643,3
+67664389,10741643,4
+xiao8981,10741643,5
+lxyjdan,10741643,3
+shuoyin,10741643,4
+126741827,10741643,5
+67917297,10741643,4
+dyafter20,10741643,4
+45430088,10741643,3
+49727842,10741643,4
+71947752,10741643,4
+1434651,10741643,4
+44901508,10741643,5
+LadyShino,10741643,4
+102611461,10741643,4
+62119610,10741643,4
+48267009,10741643,4
+52944852,10741643,4
+2999259,10741643,4
+97188131,10741643,4
+xxwm,10741643,5
+67875068,10741643,5
+69753373,10741643,5
+49620873,10741643,3
+huang2er,10741643,4
+34873341,10741643,4
+will0604,10741643,4
+127563675,10741643,4
+sl19910727,10741643,4
+47912507,10741643,5
+98048421,10741643,3
+53829658,10741643,5
+63205590,10741643,3
+Aamina-memory,10741643,5
+55016503,10741643,5
+qilisa,10741643,4
+2185968,10741643,4
+46579498,10741643,5
+62210177,10741643,4
+flowerish,10741643,5
+58412040,10741643,3
+54162190,10741643,-1
+46939957,10741643,4
+2517356,10741643,4
+75436336,10741643,5
+ywbomhf,10741643,4
+50191469,10741643,5
+yahuihuang,10741643,5
+88322526,10741643,4
+51821755,10741643,5
+gujunhao50,10741643,4
+53401565,10741643,4
+50051485,10741643,1
+nimeiya,10741643,4
+hehudie13,10741643,5
+64622270,10741643,5
+poppy7777,10741643,5
+MaggieFA,10741643,5
+cqingxian,10741643,5
+3629982,10741643,5
+37465662,10741643,5
+46949606,10741643,5
+65579786,10741643,5
+kongr,10741643,4
+girlyfolk,10741643,4
+impanda,10741643,4
+52605109,10741643,3
+dustybaby,10741643,3
+44249875,10741643,4
+haixia77,10741643,5
+56015661,10741643,3
+62874039,10741643,4
+62397901,10741643,4
+leonchoi,10741643,5
+90952983,10741643,5
+LeeeRn,10741643,5
+88109813,10741643,3
+biabee,10741643,4
+56333236,10741643,4
+47297112,10741643,4
+yuyajing1230,10741643,5
+79381426,10741643,5
+cheerjuno,10741643,5
+1513002,10741643,5
+46693582,10741643,5
+yaoyue,10741643,1
+wbpluto,10741643,1
+yuanlizbyy,10741643,5
+juyi214,10741643,4
+77424839,10741643,-1
+122532383,10741643,5
+ChenMelon,10741643,5
+moguduola,10741643,2
+EvelynSalt,10741643,4
+83739647,10741643,4
+79775979,10741643,3
+71283588,10741643,5
+57064183,10741643,5
+62391234,10741643,5
+remuse,10741643,3
+63097689,10741643,4
+blacksora,10741643,5
+59803743,10741643,4
+122088775,10741643,3
+Soba_ni_ite,10741643,4
+chechengxuan,10741643,5
+73804612,10741643,4
+53612795,10741643,4
+49870315,10741643,5
+52906613,10741643,5
+72271099,10741643,5
+bouquet_msj,10741643,4
+39519519,10741643,3
+guochi,10741643,4
+up117,10741643,5
+58309527,10741643,5
+chonger3507,10741643,5
+warmice,10741643,5
+smilenet,10741643,4
+3336467,10741643,4
+ClaireL,10741643,2
+55010232,10741643,5
+68299954,10741643,5
+stephanielv,10741643,4
+36674549,10741643,4
+26713841,10741643,4
+90115022,10741643,4
+53173007,10741643,5
+cglhust,10741643,4
+a_zi,10741643,5
+sherryvi,10741643,4
+isisshirley,10741643,4
+1772956,10741643,4
+32770964,10741643,3
+82564566,10741643,3
+128656874,10741643,4
+rudolfwhe,10741643,5
+jennyzhang0809,10741643,3
+henry-va-parle,10741643,5
+75301981,10741643,5
+76418910,10741643,4
+53482214,10741643,3
+56503787,10741643,3
+5680181,10741643,3
+2559623,10741643,3
+55764073,10741643,5
+toby0910,10741643,5
+sundea,10741643,4
+57837933,10741643,5
+64864159,10741643,5
+seraphhoo,10741643,4
+32911120,10741643,4
+twxpda,10741643,4
+lyh663,10741643,4
+brahms49,10741643,4
+47465942,10741643,5
+54317562,10741643,4
+3894041,10741643,4
+4383003,10741643,3
+wndtlkr,10741643,4
+taizi717,10741643,5
+66314549,10741643,5
+toxichoco,10741643,2
+68170184,10741643,5
+whooooo,10741643,4
+24818011,10741643,5
+59027708,10741643,4
+81686015,10741643,4
+3502559,10741643,4
+choushanzi,10741643,5
+79507251,10741643,3
+lightsunny,10741643,5
+WendyaM,10741643,3
+57354872,10741643,5
+88328116,10741643,4
+lucychen,10741643,4
+2427723,10741643,4
+1790060,10741643,4
+1790060,10741643,4
+43335294,10741643,1
+sunvenus,10741643,4
+78062790,10741643,5
+33050517,10741643,5
+littleben,10741643,3
+50075604,10741643,4
+suh5213,10741643,5
+piepiecharlene,10741643,4
+ItoHayachi,10741643,5
+3032877,10741643,5
+59802133,10741643,5
+45662792,10741643,4
+16343359,10741643,4
+69031122,10741643,4
+58398291,10741643,-1
+128583824,10741643,4
+70392127,10741643,4
+101700037,10741643,4
+46949718,10741643,4
+46949718,10741643,4
+46507893,10741643,5
+4165611,10741643,4
+36576530,10741643,4
+idiothm,10741643,5
+121716470,10741643,3
+74995985,10741643,5
+55628932,10741643,4
+MAY2RAIN,10741643,3
+2818730,10741643,5
+71625816,10741643,5
+61994901,10741643,4
+79195615,10741643,4
+kurikuri,10741643,5
+62779688,10741643,4
+110313218,10741643,5
+48046396,10741643,5
+60421809,10741643,3
+3636257,10741643,5
+53160680,10741643,3
+55785901,10741643,3
+54616457,10741643,3
+2172840,10741643,4
+4582130,10741643,4
+43648335,10741643,3
+xanadu2004,10741643,5
+59794185,10741643,4
+spicymilk,10741643,4
+arthurwen,10741643,5
+57901422,10741643,4
+zoewen1984,10741643,2
+23712945,10741643,4
+38629632,10741643,5
+4132942,10741643,4
+60979573,10741643,4
+zhenglele,10741643,3
+56493798,10741643,4
+limilk528,10741643,5
+taidy89,10741643,3
+handsometian,10741643,4
+handsometian,10741643,4
+Narcissus1264,10741643,5
+14583847,10741643,5
+ggqgu,10741643,4
+baladong123,10741643,4
+cjxviola,10741643,4
+dustxu,10741643,4
+spark0601,10741643,4
+zyj2nd,10741643,-1
+37657696,10741643,5
+5605006,10741643,4
+cloverMu,10741643,5
+70327080,10741643,5
+104373100,10741643,4
+fotapeter,10741643,5
+52247790,10741643,4
+2195978,10741643,4
+84570982,10741643,5
+84965549,10741643,4
+wmsgg,10741643,5
+2212675,10741643,5
+1648909,10741643,4
+45360877,10741643,3
+flykarry,10741643,5
+hazdxb,10741643,3
+25345481,10741643,3
+90769441,10741643,4
+40093892,10741643,4
+42527738,10741643,4
+48380049,10741643,3
+9823482,10741643,5
+aboat,10741643,-1
+iamdengdeng,10741643,4
+42306867,10741643,3
+sakura0531,10741643,5
+rainbowhuizi,10741643,5
+39200780,10741643,5
+biliance,10741643,4
+46373841,10741643,5
+54500977,10741643,4
+56597679,10741643,5
+85180680,10741643,5
+83436609,10741643,5
+ANiuSS2015,10741643,4
+summertalking,10741643,3
+44579304,10741643,5
+103547566,10741643,4
+50125007,10741643,4
+valleymoon,10741643,2
+55887045,10741643,5
+50880780,10741643,4
+wucai663,10741643,5
+Bono_wt,10741643,5
+rubyrock,10741643,5
+82741086,10741643,4
+48156058,10741643,5
+60490305,10741643,3
+58840542,10741643,4
+69202875,10741643,4
+37146120,10741643,3
+zhuangjinxv,10741643,5
+sevenbeans,10741643,5
+75678243,10741643,3
+4057814,10741643,4
+42161868,10741643,4
+4491309,10741643,4
+80945094,10741643,4
+ja89son,10741643,4
+lavende,10741643,3
+litt1eboat,10741643,5
+xusara,10741643,4
+44158473,10741643,5
+54222505,10741643,4
+57401508,10741643,5
+Decembermay,10741643,5
+50058949,10741643,4
+Greenwicher,10741643,4
+2029021,10741643,4
+51414722,10741643,4
+88081334,10741643,5
+57906022,10741643,3
+TY101,10741643,3
+75809533,10741643,4
+64694278,10741643,5
+41349161,10741643,5
+Ozu,10741643,3
+60650614,10741643,4
+114465218,10741643,4
+50900048,10741643,3
+39580713,10741643,4
+lovesunny,10741643,5
+94162680,10741643,5
+53528349,10741643,1
+armeng,10741643,3
+3014386,10741643,4
+54889228,10741643,4
+yjysreal,10741643,-1
+27095047,10741643,4
+cejjessie,10741643,4
+sun2_7,10741643,5
+127148800,10741643,4
+1862999,10741643,5
+madrimania,10741643,5
+Ashin945,10741643,5
+2911011,10741643,4
+56841923,10741643,4
+74676258,10741643,5
+117175431,10741643,4
+51635015,10741643,3
+cao_mq1989.,10741643,4
+SunRiseV,10741643,4
+48530285,10741643,4
+1442204,10741643,3
+echozhan,10741643,5
+attshuo,10741643,4
+53546307,10741643,5
+traceypuyue,10741643,5
+phoebe0225,10741643,4
+44441839,10741643,5
+34309421,10741643,4
+34309421,10741643,4
+42292941,10741643,4
+64713233,10741643,4
+32845019,10741643,4
+48483943,10741643,5
+42995158,10741643,4
+qiyitai,10741643,1
+2469772,10741643,5
+122846369,10741643,4
+ryozth,10741643,4
+ingie,10741643,5
+1711718,10741643,4
+44220159,10741643,4
+ouyangjie123,10741643,5
+75697015,10741643,4
+4246182,10741643,5
+74988720,10741643,4
+88564672,10741643,3
+96856511,10741643,4
+Men3er,10741643,4
+44064564,10741643,4
+feiyuyunqing,10741643,5
+goawayshit,10741643,5
+ffmi,10741643,5
+40688971,10741643,1
+vikkistyle,10741643,4
+65054384,10741643,5
+69099920,10741643,4
+piubiu,10741643,5
+82970525,10741643,5
+57884796,10741643,3
+44589459,10741643,4
+61671566,10741643,4
+94234362,10741643,-1
+48232361,10741643,4
+120523718,10741643,4
+livclare,10741643,5
+71159763,10741643,5
+Machobabe347,10741643,4
+47279331,10741643,1
+lxklzy,10741643,5
+74376393,10741643,5
+53179164,10741643,5
+1339883,10741643,3
+119670691,10741643,4
+43664671,10741643,5
+JJSJJ,10741643,3
+fallamdsky,10741643,4
+kawayiilove,10741643,3
+34459327,10741643,4
+3625223,10741643,3
+willyjiang,10741643,4
+104708370,10741643,4
+37194628,10741643,5
+125208149,10741643,4
+jiutianforever,10741643,1
+qiao4ever,10741643,3
+61045582,10741643,4
+35661060,10741643,5
+57724466,10741643,5
+37488201,10741643,-1
+InTheShadowOfLo,10741643,5
+71123769,10741643,4
+emisie,10741643,3
+3403979,10741643,5
+61718644,10741643,4
+36898015,10741643,5
+64901268,10741643,4
+91375584,10741643,2
+64265107,10741643,5
+35733991,10741643,5
+67694189,10741643,5
+57690673,10741643,5
+provence1019,10741643,4
+126344543,10741643,5
+121680409,10741643,3
+youyougo,10741643,5
+54343562,10741643,5
+50898018,10741643,4
+30742554,10741643,5
+cocco,10741643,3
+Stephen2046,10741643,3
+68270832,10741643,3
+55773503,10741643,4
+79598588,10741643,4
+tianzaifeibaba,10741643,4
+92522884,10741643,5
+82581264,10741643,5
+61096170,10741643,4
+dearfool,10741643,4
+120956800,10741643,4
+35875208,10741643,4
+39707879,10741643,5
+64037181,10741643,5
+92894015,10741643,5
+mlll,10741643,-1
+63781325,10741643,5
+suhong,10741643,4
+littlewhity,10741643,4
+forlig,10741643,4
+46320797,10741643,5
+126565881,10741643,5
+55861124,10741643,5
+65520405,10741643,5
+kdi070901,10741643,2
+duduxiongzhifu,10741643,4
+86133055,10741643,4
+68672482,10741643,5
+47047240,10741643,5
+fancyfanfan77,10741643,4
+50840366,10741643,5
+58833110,10741643,3
+kmars,10741643,5
+giliani,10741643,4
+41214898,10741643,4
+doubanIris,10741643,5
+75545538,10741643,3
+61728346,10741643,3
+bordever,10741643,3
+NetPuter,10741643,4
+34600215,10741643,3
+50853342,10741643,5
+82217018,10741643,4
+PsychoMissSo,10741643,5
+Niaofei618,10741643,4
+1837159,10741643,3
+54212443,10741643,4
+29155785,10741643,4
+53187686,10741643,3
+lianliying,10741643,5
+46540591,10741643,3
+57223341,10741643,4
+suicidee,10741643,5
+xunliyu,10741643,3
+67404244,10741643,3
+122821163,10741643,5
+49234073,10741643,4
+62182745,10741643,5
+29873877,10741643,5
+4352057,10741643,4
+42209904,10741643,5
+65660961,10741643,3
+65723409,10741643,3
+sevendream129,10741643,3
+49272831,10741643,-1
+wenmangk,10741643,3
+42748490,10741643,5
+64324214,10741643,-1
+50573037,10741643,4
+94012046,10741643,5
+52763172,10741643,4
+Macbeth,10741643,5
+67125264,10741643,5
+73381574,10741643,3
+30392850,10741643,-1
+69448551,10741643,5
+58866731,10741643,5
+103487988,10741643,4
+shiyiforever,10741643,5
+33775213,10741643,5
+stellafyq,10741643,4
+3620896,10741643,5
+77313579,10741643,2
+estellejoshua,10741643,5
+eill,10741643,5
+46827374,10741643,3
+76208333,10741643,5
+61414433,10741643,5
+3012688,10741643,5
+102647175,10741643,4
+beauty610,10741643,5
+70749736,10741643,5
+76462779,10741643,3
+84171597,10741643,2
+57651140,10741643,5
+zihuland,10741643,4
+48172193,10741643,4
+80690701,10741643,5
+56922933,10741643,4
+49602953,10741643,4
+pkuwwt,10741643,5
+103629204,10741643,5
+viviG,10741643,4
+selavyzhou,10741643,5
+74654745,10741643,4
+chen_yubing,10741643,5
+68654254,10741643,4
+suaguai7,10741643,3
+lovall,10741643,3
+58646441,10741643,5
+48494718,10741643,5
+39518332,10741643,4
+67148832,10741643,5
+48649262,10741643,4
+57476405,10741643,5
+125154690,10741643,5
+125663131,10741643,5
+laowinglok,10741643,2
+65948274,10741643,-1
+120245591,10741643,5
+3682487,10741643,4
+maoxiao6,10741643,5
+yumik9,10741643,4
+43364606,10741643,2
+mufanqiushi,10741643,5
+ltracy,10741643,4
+52199219,10741643,4
+43992020,10741643,4
+monkeysuncarol,10741643,5
+41922806,10741643,4
+48942164,10741643,5
+49960251,10741643,5
+67463217,10741643,5
+ielit,10741643,4
+mywpq,10741643,4
+Obtson,10741643,3
+lisasue,10741643,5
+58584284,10741643,5
+60223940,10741643,5
+zhouruowan,10741643,4
+1131201,10741643,4
+2693048,10741643,4
+50130752,10741643,3
+fffx9527,10741643,-1
+39829339,10741643,4
+kissorli,10741643,4
+44610423,10741643,3
+Weiming,10741643,4
+60586093,10741643,5
+50668588,10741643,4
+51353828,10741643,5
+91505474,10741643,5
+48823676,10741643,3
+128595641,10741643,5
+127193370,10741643,5
+54220607,10741643,3
+bigwill,10741643,4
+50413289,10741643,5
+59993815,10741643,5
+doway2001,10741643,4
+46788119,10741643,4
+18508363,10741643,3
+icy_,10741643,5
+eason0210,10741643,3
+chinesean,10741643,4
+83449630,10741643,4
+ccccoffee,10741643,4
+okays,10741643,5
+46066822,10741643,4
+60488216,10741643,4
+jelly12,10741643,4
+88654217,10741643,5
+wuxiaangel,10741643,3
+4615558,10741643,4
+2759871,10741643,4
+73653059,10741643,5
+sishuiwuhen333,10741643,5
+100416475,10741643,3
+108685938,10741643,5
+73709877,10741643,5
+51771885,10741643,5
+wish430,10741643,5
+58897872,10741643,3
+66716056,10741643,4
+48917866,10741643,4
+zstar,10741643,5
+56204099,10741643,4
+2715466,10741643,-1
+northyluvhkbad,10741643,2
+jaysh1,10741643,4
+58693060,10741643,3
+47800794,10741643,3
+morrison0908,10741643,4
+37694449,10741643,4
+ccpamela,10741643,4
+avall0n,10741643,4
+xiaoliable,10741643,5
+wangdering,10741643,5
+50757842,10741643,5
+81573829,10741643,5
+81573829,10741643,5
+61888159,10741643,5
+52883244,10741643,5
+57865620,10741643,3
+wutheringpig,10741643,4
+2973153,10741643,3
+53877889,10741643,3
+toyomana,10741643,3
+Eazyc,10741643,5
+48363785,10741643,3
+cat_king,10741643,3
+60506014,10741643,4
+32408872,10741643,4
+50284935,10741643,5
+68936327,10741643,4
+guagua0426,10741643,4
+mulinb,10741643,5
+49449139,10741643,4
+4685842,10741643,5
+4523655,10741643,5
+63774339,10741643,4
+53698196,10741643,4
+43496249,10741643,4
+91649977,10741643,5
+128589286,10741643,2
+heheyuanmengyiu,10741643,4
+44475872,10741643,5
+122895814,10741643,4
+hunhunsui,10741643,4
+zoe518,10741643,4
+41604678,10741643,4
+58576630,10741643,4
+sucowper,10741643,5
+dulovesbabamama,10741643,4
+isseyisseyissey,10741643,5
+littlerow,10741643,3
+wubudingyang,10741643,5
+yunyunk,10741643,5
+Emily77,10741643,4
+caicaihuang,10741643,4
+weigege,10741643,3
+bloodleopard,10741643,4
+48871743,10741643,5
+doumeiyuou,10741643,4
+62224425,10741643,3
+yaopi,10741643,4
+lnzyn,10741643,4
+michelleliu31,10741643,5
+55308324,10741643,4
+heibaixian,10741643,3
+81895989,10741643,5
+summerchocolate,10741643,4
+114977043,10741643,5
+cutebbluckygirl,10741643,2
+60386038,10741643,4
+gingershoes,10741643,5
+124359273,10741643,4
+1452141,10741643,5
+yuch95603,10741643,3
+54064606,10741643,4
+Reina_elyse,10741643,3
+msghost,10741643,4
+33762856,10741643,4
+Medusa_fc,10741643,1
+59683104,10741643,5
+lalunefay,10741643,3
+55799483,10741643,4
+53090809,10741643,5
+44946981,10741643,4
+lovebenedict,10741643,4
+41125061,10741643,5
+QQY,10741643,5
+94573352,10741643,4
+94227961,10741643,3
+12734942,10741643,4
+dearruby,10741643,4
+3906584,10741643,4
+25282878,10741643,4
+jafkxc,10741643,4
+SH51244,10741643,3
+huanm,10741643,4
+58351149,10741643,2
+3798488,10741643,4
+51590575,10741643,3
+BreathingSoul,10741643,5
+smcc911,10741643,5
+128580925,10741643,4
+120545006,10741643,5
+m19900714,10741643,4
+3598420,10741643,4
+3242190,10741643,5
+holdingtt,10741643,4
+48349929,10741643,5
+diysad,10741643,-1
+Angela-song,10741643,5
+53732542,10741643,5
+April-3-,10741643,4
+2846758,10741643,5
+56907720,10741643,5
+godsun,10741643,5
+50754744,10741643,3
+48850203,10741643,3
+13794728,10741643,5
+Maomaoxian,10741643,4
+90904421,10741643,4
+istrangers,10741643,4
+41070205,10741643,4
+52637268,10741643,5
+70359207,10741643,4
+kugames,10741643,3
+107143245,10741643,4
+orangeorange6,10741643,3
+56900730,10741643,-1
+91687057,10741643,5
+hilongmaoxiong,10741643,4
+65154121,10741643,5
+125281874,10741643,2
+AeroAnte,10741643,4
+49841196,10741643,4
+128568817,10741643,5
+75439501,10741643,5
+6745246,10741643,3
+125498604,10741643,5
+46785333,10741643,5
+50904663,10741643,5
+small2121,10741643,3
+2507612,10741643,5
+a-Joel,10741643,4
+95264069,10741643,5
+46456526,10741643,5
+2291010,10741643,4
+4740060,10741643,5
+49519356,10741643,4
+43569957,10741643,4
+63352492,10741643,5
+68363266,10741643,4
+61767555,10741643,5
+48122099,10741643,5
+masoman,10741643,5
+48864357,10741643,4
+4385012,10741643,2
+67672936,10741643,5
+adamyoung1518,10741643,4
+45268536,10741643,5
+luwangnanzou,10741643,5
+unbounder,10741643,4
+2380878,10741643,5
+66787683,10741643,4
+62117986,10741643,4
+shelyin,10741643,4
+87910708,10741643,5
+71946766,10741643,4
+duhang,10741643,4
+53294996,10741643,5
+115772568,10741643,4
+49713626,10741643,4
+49854531,10741643,3
+baomu,10741643,4
+40850252,10741643,3
+9485080,10741643,4
+104365503,10741643,4
+beizi00,10741643,1
+62368850,10741643,5
+carina533,10741643,4
+3104835,10741643,4
+58193839,10741643,5
+60248583,10741643,5
+64796955,10741643,5
+1767731,10741643,4
+bitduck25,10741643,4
+50186720,10741643,4
+48381492,10741643,5
+3783693,10741643,5
+43088933,10741643,3
+CanaanYoung,10741643,3
+53721122,10741643,5
+emilycou,10741643,3
+ameliefei,10741643,5
+63111078,10741643,5
+tqwang,10741643,5
+78263023,10741643,3
+54164106,10741643,4
+36627775,10741643,-1
+haianlong,10741643,4
+shousolo,10741643,4
+98710059,10741643,5
+71298339,10741643,4
+55321398,10741643,5
+2221354,10741643,4
+hyapple,10741643,3
+lummyboyla,10741643,4
+zonovo,10741643,3
+3735733,10741643,5
+89896325,10741643,4
+yujianwo49,10741643,5
+star027,10741643,4
+nanadong,10741643,5
+surgdy1008,10741643,3
+69168057,10741643,4
+65670261,10741643,5
+10918942,10741643,4
+64830661,10741643,5
+61983960,10741643,4
+3109810,10741643,4
+59880831,10741643,3
+2369891,10741643,5
+4018918,10741643,4
+50081516,10741643,4
+2627371,10741643,3
+blue4light,10741643,3
+85367661,10741643,4
+30974329,10741643,4
+suiyiqsm,10741643,5
+82823263,10741643,4
+miss90,10741643,4
+4228858,10741643,4
+hyhmq,10741643,5
+57314886,10741643,3
+zkztnxq,10741643,3
+hiwestlife,10741643,3
+NiBen,10741643,4
+4678321,10741643,3
+83498584,10741643,2
+loveecho668,10741643,5
+55819414,10741643,5
+wuyulun1211,10741643,4
+59954859,10741643,3
+4587913,10741643,3
+52142248,10741643,4
+carmengmm,10741643,4
+76935168,10741643,4
+77591065,10741643,5
+lesleylui,10741643,4
+chris310-nan,10741643,4
+snlve,10741643,4
+raquelycidas,10741643,4
+47022625,10741643,4
+Ritroman92,10741643,-1
+xuanmg,10741643,5
+45575951,10741643,5
+lemonj,10741643,5
+5580630,10741643,4
+xiaohundexiaoba,10741643,5
+42926951,10741643,4
+50335163,10741643,-1
+yoyo_8bble,10741643,5
+49989946,10741643,4
+ricochen,10741643,3
+HeyMok,10741643,2
+yoyoinlove,10741643,5
+outsider-hk,10741643,5
+71062611,10741643,4
+3551096,10741643,4
+104252450,10741643,4
+43199831,10741643,4
+11788292,10741643,4
+75739395,10741643,5
+sunrain10,10741643,5
+79900116,10741643,5
+3504753,10741643,4
+73958470,10741643,4
+43710853,10741643,4
+longzainali,10741643,4
+60260957,10741643,4
+duan2,10741643,4
+53267569,10741643,5
+woniu0125,10741643,4
+toprocku,10741643,4
+78169762,10741643,5
+yiliangsan,10741643,4
+4450454,10741643,5
+103538832,10741643,5
+64091286,10741643,4
+90197957,10741643,4
+linyuanxianyu,10741643,5
+12345596,10741643,-1
+mianhua11,10741643,4
+CandyCat1029,10741643,3
+18274942,10741643,2
+94951098,10741643,5
+100338185,10741643,3
+lunapurple,10741643,4
+guokepu945,10741643,5
+readerhui,10741643,5
+75283214,10741643,3
+Royxlam,10741643,4
+58276184,10741643,2
+LorenaYuen,10741643,4
+51773323,10741643,4
+52744740,10741643,4
+tiwtmit,10741643,-1
+55970012,10741643,4
+61455222,10741643,5
+104043551,10741643,5
+hls_304,10741643,3
+EliNagy,10741643,4
+4352757,10741643,4
+61827284,10741643,4
+alex2e,10741643,5
+HEYHo,10741643,5
+81688236,10741643,5
+SJzzy314,10741643,4
+50846350,10741643,4
+101930897,10741643,3
+50050631,10741643,3
+53582924,10741643,3
+56689572,10741643,4
+81179431,10741643,5
+67173929,10741643,4
+Vinceshen,10741643,4
+66723155,10741643,5
+miyaorion,10741643,4
+53512949,10741643,5
+31788770,10741643,5
+1524737,10741643,4
+9823994,10741643,5
+Celiac,10741643,5
+liaopr,10741643,5
+50196370,10741643,4
+125603682,10741643,5
+3085056,10741643,2
+44401818,10741643,2
+khalilfongmlg,10741643,4
+zero520,10741643,5
+shangdixiaole,10741643,4
+102412448,10741643,5
+29282642,10741643,4
+Psycho_L,10741643,4
+52995358,10741643,3
+missuguys,10741643,5
+96764185,10741643,4
+dike0612,10741643,3
+Ann-e,10741643,3
+coney321,10741643,-1
+115351276,10741643,5
+72101661,10741643,5
+jasonworg,10741643,4
+1572610,10741643,4
+44188543,10741643,4
+xiangbuchu,10741643,5
+82841699,10741643,5
+1249947,10741643,4
+zpzs,10741643,5
+46115911,10741643,4
+jaslee,10741643,3
+62995680,10741643,4
+44562292,10741643,5
+121365508,10741643,5
+13148640,10741643,4
+26539835,10741643,4
+jsh0915,10741643,4
+48179852,10741643,4
+Anita_Seta,10741643,4
+49565814,10741643,4
+SUMOylation,10741643,5
+58045051,10741643,5
+karenlee0423x,10741643,5
+49636823,10741643,5
+66883163,10741643,5
+82434651,10741643,4
+zitong970329,10741643,4
+60251826,10741643,5
+68750895,10741643,4
+73383984,10741643,3
+sid005,10741643,3
+120563382,10741643,4
+stridep,10741643,4
+mrsfed,10741643,4
+alicetianbule,10741643,4
+buqianjiu,10741643,4
+66981918,10741643,5
+36125277,10741643,5
+maomaocao,10741643,5
+best3721,10741643,5
+83811612,10741643,5
+3841449,10741643,5
+3015699,10741643,5
+56474762,10741643,3
+yixi7,10741643,5
+LacrimosaAnn,10741643,5
+71575345,10741643,4
+37216410,10741643,4
+aini3851424215,10741643,4
+5968427,10741643,5
+101126607,10741643,5
+qtxs,10741643,4
+47993544,10741643,5
+51369610,10741643,5
+kingiknow,10741643,5
+125010883,10741643,5
+50394173,10741643,4
+78971867,10741643,4
+42512426,10741643,3
+122590335,10741643,5
+2162545,10741643,5
+greenyiruo,10741643,-1
+zny2046,10741643,4
+catherined,10741643,4
+58841103,10741643,4
+mayhi,10741643,5
+mayhi,10741643,5
+49628529,10741643,4
+christa1989,10741643,4
+1812980,10741643,4
+GingerWang,10741643,5
+tonganda,10741643,4
+bluefishining,10741643,4
+83250285,10741643,4
+87796957,10741643,-1
+47878737,10741643,4
+50506429,10741643,4
+Zelighust,10741643,5
+55890752,10741643,5
+ccccccIty,10741643,4
+53349812,10741643,4
+dennycn,10741643,4
+51965431,10741643,4
+73980696,10741643,5
+lovely_fish,10741643,5
+71972704,10741643,4
+76077212,10741643,5
+60019384,10741643,5
+42554444,10741643,4
+49424919,10741643,4
+58706396,10741643,4
+76270667,10741643,4
+86235468,10741643,5
+29696256,10741643,3
+einru,10741643,4
+1606950,10741643,-1
+AppleTREE4014,10741643,4
+15054453,10741643,3
+Yoyo_Yvette,10741643,5
+ovry,10741643,4
+53336127,10741643,5
+75116477,10741643,4
+20657820,10741643,5
+78599477,10741643,4
+48290239,10741643,5
+44913204,10741643,5
+64585974,10741643,4
+50553074,10741643,1
+65672790,10741643,5
+4660563,10741643,5
+ricbabe,10741643,3
+59755008,10741643,4
+120753848,10741643,5
+53418739,10741643,5
+48171385,10741643,5
+1782017,10741643,1
+1615580,10741643,5
+88584693,10741643,4
+63457669,10741643,5
+65684805,10741643,5
+57730252,10741643,5
+wsgjr,10741643,4
+90020186,10741643,3
+44318403,10741643,5
+56747069,10741643,4
+44167015,10741643,2
+sunnynight,10741643,4
+thebetrayer,10741643,4
+j5281,10741643,4
+bdlcS,10741643,3
+79856999,10741643,3
+47395928,10741643,4
+52298907,10741643,4
+MRCellardoor,10741643,4
+louisayu,10741643,4
+gooo111,10741643,4
+sisiliya,10741643,4
+VLR,10741643,5
+43172890,10741643,4
+85008872,10741643,5
+49064751,10741643,4
+nicenicenic,10741643,4
+82406545,10741643,5
+48074092,10741643,3
+120162458,10741643,5
+102606012,10741643,3
+gothique,10741643,4
+67950697,10741643,3
+javableue,10741643,4
+milva,10741643,4
+4200326,10741643,4
+Before37,10741643,4
+yidapan,10741643,4
+jiaxindaocaoren,10741643,5
+lby616292373,10741643,4
+4446167,10741643,4
+stella0720,10741643,4
+66277108,10741643,4
+randidianying,10741643,3
+52283291,10741643,4
+49703092,10741643,3
+79242268,10741643,5
+cruer,10741643,5
+yaxibear,10741643,4
+40401643,10741643,4
+52879823,10741643,4
+Yetsunlam,10741643,3
+Li1012,10741643,5
+54773691,10741643,5
+41900684,10741643,5
+2790250,10741643,-1
+45391669,10741643,5
+67481946,10741643,5
+zhangyan1736,10741643,4
+61134170,10741643,5
+53395539,10741643,4
+92180775,10741643,4
+65729154,10741643,5
+51378440,10741643,4
+44937867,10741643,4
+jiroleng,10741643,5
+chopsticks7,10741643,3
+128153765,10741643,4
+4222944,10741643,-1
+dangelme,10741643,4
+60013985,10741643,5
+50926664,10741643,3
+87069723,10741643,4
+popfeng,10741643,4
+91719865,10741643,5
+119739441,10741643,4
+hurry625,10741643,4
+105494552,10741643,5
+31613597,10741643,5
+niuniu2221,10741643,4
+echolee314,10741643,4
+80793541,10741643,5
+44622528,10741643,5
+lzblack,10741643,4
+xiaoke1687,10741643,2
+niu513,10741643,-1
+suikasuika,10741643,3
+10020243,10741643,3
+josephinechan,10741643,5
+60190763,10741643,3
+1284817,10741643,-1
+46870778,10741643,4
+96305246,10741643,4
+67610680,10741643,5
+47832961,10741643,2
+ymli,10741643,4
+Murphymolly,10741643,3
+41278212,10741643,3
+xiaolefeixing,10741643,4
+57983708,10741643,5
+edgeyeung,10741643,3
+60717435,10741643,3
+ynlyp,10741643,4
+4412861,10741643,5
+114567490,10741643,5
+mrmary_43,10741643,-1
+ben_conker,10741643,4
+87889075,10741643,3
+68477521,10741643,5
+91015514,10741643,5
+letyoufindme,10741643,3
+28743020,10741643,5
+56970395,10741643,4
+goodbyelenin,10741643,3
+45431775,10741643,4
+slothbug,10741643,4
+60861914,10741643,5
+49110008,10741643,4
+luerdelphic,10741643,4
+daisy46,10741643,4
+YiTang8941,10741643,4
+66664303,10741643,4
+49198892,10741643,5
+78365414,10741643,5
+gonelove,10741643,4
+41582940,10741643,4
+115631382,10741643,4
+65749036,10741643,3
+NIAIDE,10741643,3
+90714613,10741643,3
+76124816,10741643,3
+48026180,10741643,5
+Bobbyency,10741643,5
+kokoyu,10741643,4
+3142955,10741643,5
+64665284,10741643,3
+shoufy,10741643,3
+66844504,10741643,4
+4468522,10741643,5
+kejialin,10741643,4
+celiaxiaoluohao,10741643,5
+liosha_bfsu,10741643,3
+3276679,10741643,5
+1412545,10741643,3
+zhushejia,10741643,5
+66311081,10741643,3
+shallwe07,10741643,4
+62762880,10741643,4
+zhousophia,10741643,4
+2182739,10741643,5
+28612508,10741643,5
+abezhang,10741643,4
+12198403,10741643,4
+particle_uv,10741643,4
+39604968,10741643,3
+49770636,10741643,3
+2543597,10741643,4
+47031994,10741643,5
+fang0079,10741643,4
+43382367,10741643,5
+qinzibonheur,10741643,5
+moongoo,10741643,3
+82487335,10741643,3
+72316189,10741643,4
+59129938,10741643,3
+brair,10741643,3
+3507065,10741643,2
+arlmy,10741643,3
+36884802,10741643,4
+47507278,10741643,3
+74422713,10741643,4
+joyestin,10741643,4
+62263229,10741643,4
+tm_lover,10741643,4
+74497804,10741643,5
+2272740,10741643,4
+36867618,10741643,4
+liuxiaowan,10741643,5
+50079024,10741643,3
+32776828,10741643,4
+manhattant,10741643,4
+66209180,10741643,5
+49576050,10741643,4
+limewater,10741643,4
+71432525,10741643,5
+80354010,10741643,4
+catheringli,10741643,4
+badayidi,10741643,5
+sleety,10741643,5
+87547812,10741643,4
+2056853,10741643,3
+2056853,10741643,3
+50720441,10741643,5
+92341154,10741643,5
+42832142,10741643,5
+47209214,10741643,5
+anearl,10741643,4
+62251744,10741643,4
+onlyYH,10741643,4
+62476143,10741643,4
+73199533,10741643,4
+2030775,10741643,4
+sqdlx,10741643,3
+92585307,10741643,4
+cidy212,10741643,5
+52350621,10741643,4
+68237085,10741643,3
+36031967,10741643,5
+67147622,10741643,4
+52664348,10741643,4
+54252699,10741643,-1
+61719919,10741643,4
+49914687,10741643,4
+shanhuaer,10741643,4
+57062248,10741643,2
+ainygo,10741643,5
+Z-Pain,10741643,4
+57134212,10741643,1
+52667202,10741643,4
+76146142,10741643,5
+heymonica,10741643,3
+70514571,10741643,3
+59554244,10741643,5
+70892372,10741643,4
+wangyeye,10741643,5
+4667240,10741643,5
+16959294,10741643,4
+81469223,10741643,4
+lazyminstrel,10741643,3
+Richo_04,10741643,2
+48069479,10741643,4
+128444897,10741643,5
+69401934,10741643,3
+38834525,10741643,5
+3246311,10741643,4
+starry_liu,10741643,3
+40131360,10741643,5
+74954660,10741643,5
+lowden,10741643,5
+iris77yaxo,10741643,3
+yudl,10741643,4
+70432798,10741643,5
+119404591,10741643,4
+loli1900,10741643,4
+68812580,10741643,4
+54874819,10741643,4
+38971714,10741643,5
+yorihisa,10741643,5
+57451673,10741643,5
+85245609,10741643,4
+momoko_huang,10741643,4
+49108524,10741643,2
+49490666,10741643,4
+63777506,10741643,4
+amber_august,10741643,4
+75923713,10741643,4
+denkenjing,10741643,4
+50762366,10741643,4
+selene.,10741643,4
+34805000,10741643,5
+villaicr,10741643,5
+68893720,10741643,4
+11226693,10741643,4
+balanceking,10741643,4
+93040251,10741643,4
+1399685,10741643,4
+3030951,10741643,5
+95980532,10741643,4
+85356798,10741643,5
+magicpencil,10741643,4
+65128519,10741643,5
+69968862,10741643,4
+52970998,10741643,5
+57919652,10741643,3
+87952406,10741643,-1
+huangzhn,10741643,3
+3432492,10741643,5
+41801093,10741643,5
+40170036,10741643,3
+charlotte94,10741643,4
+Naffy,10741643,4
+Articuno,10741643,3
+xiaomao27,10741643,4
+37369275,10741643,4
+3573676,10741643,5
+WUYU123535061,10741643,1
+39012724,10741643,4
+DVforever,10741643,3
+52454819,10741643,5
+115816477,10741643,4
+lin2jie,10741643,3
+92462355,10741643,4
+3432048,10741643,5
+cloudyshow,10741643,5
+3796859,10741643,3
+53057559,10741643,3
+45231536,10741643,4
+40970313,10741643,3
+2144242,10741643,5
+38548988,10741643,3
+55432699,10741643,4
+mitusheng,10741643,3
+akiisajunk,10741643,5
+54444085,10741643,4
+36814878,10741643,4
+82992420,10741643,5
+121741379,10741643,4
+1822584,10741643,3
+62784401,10741643,5
+chedan-NB,10741643,1
+Samantha_X,10741643,4
+74982974,10741643,4
+1035359,10741643,5
+WengHan,10741643,3
+83645404,10741643,4
+85261994,10741643,5
+4398085,10741643,4
+2416471,10741643,4
+64420649,10741643,5
+53343599,10741643,3
+50596601,10741643,5
+2444430,10741643,4
+luckycci,10741643,4
+36940575,10741643,5
+sabrinaJing527,10741643,5
+61168046,10741643,2
+2086796,10741643,4
+122377549,10741643,5
+pangpangguanzhe,10741643,4
+Miss.Hyacinth,10741643,4
+44566117,10741643,4
+44566117,10741643,4
+Daisy777777777,10741643,-1
+yxiaozu,10741643,5
+48194650,10741643,4
+119533372,10741643,4
+3430040,10741643,3
+42981900,10741643,5
+54019903,10741643,5
+65115972,10741643,4
+LYoreci,10741643,5
+tammyj_11,10741643,4
+34708770,10741643,-1
+91471421,10741643,4
+62510506,10741643,4
+shen120,10741643,4
+43547642,10741643,4
+nevernice,10741643,2
+48990139,10741643,3
+76767700,10741643,4
+aprilsunshine,10741643,4
+48356438,10741643,5
+taoquanlin,10741643,2
+59901599,10741643,5
+3474081,10741643,5
+48501189,10741643,5
+78821602,10741643,-1
+orangchen,10741643,5
+121560684,10741643,-1
+aatt,10741643,4
+57934089,10741643,4
+47053418,10741643,5
+47359205,10741643,4
+52938381,10741643,5
+39064902,10741643,4
+61024868,10741643,5
+51860822,10741643,4
+20880123,10741643,4
+49811100,10741643,3
+lasenli,10741643,4
+122014449,10741643,5
+poepoe,10741643,3
+39790063,10741643,4
+wanbo,10741643,3
+49886203,10741643,5
+53218506,10741643,4
+66624462,10741643,5
+25588497,10741643,3
+67707969,10741643,5
+msycle,10741643,3
+43988930,10741643,3
+71172794,10741643,3
+lycinspire,10741643,5
+43398593,10741643,-1
+4861512,10741643,5
+caoenjian,10741643,4
+4447712,10741643,4
+sarahsong,10741643,5
+LifeAqua,10741643,5
+semiyanyan,10741643,2
+57469413,10741643,3
+huangxiaoqiu,10741643,5
+121191945,10741643,4
+zephyr_archer,10741643,5
+54497024,10741643,4
+87411768,10741643,5
+hinna,10741643,4
+aquqmarine,10741643,5
+southmone,10741643,4
+66581901,10741643,4
+49554966,10741643,-1
+127950412,10741643,4
+72643348,10741643,5
+62484889,10741643,5
+39698078,10741643,4
+2137795,10741643,4
+lvwei_22,10741643,5
+Fucking_hell,10741643,4
+55004423,10741643,4
+58347671,10741643,5
+39093072,10741643,5
+Animadagio,10741643,4
+caojian120,10741643,4
+99629606,10741643,4
+rimbaud,10741643,3
+29710107,10741643,5
+128390764,10741643,4
+Hlrtu,10741643,5
+31555036,10741643,5
+57276771,10741643,4
+GarYZuA,10741643,5
+41383794,10741643,4
+xqsmao,10741643,4
+skag,10741643,4
+125346269,10741643,2
+58345491,10741643,4
+rbhuanxiong,10741643,4
+76728024,10741643,5
+41208754,10741643,4
+sradium,10741643,4
+95598191,10741643,4
+2600693,10741643,3
+thundering,10741643,5
+3658319,10741643,5
+momojenny,10741643,4
+damnedest,10741643,-1
+62179197,10741643,5
+36757046,10741643,5
+128389345,10741643,4
+67437466,10741643,5
+49443595,10741643,5
+31507086,10741643,4
+wangmuya,10741643,4
+62968482,10741643,5
+58281873,10741643,4
+40116755,10741643,4
+Mathilda_428,10741643,2
+76680812,10741643,4
+dewar,10741643,3
+1785328,10741643,5
+66556802,10741643,4
+41409099,10741643,4
+55683912,10741643,4
+102727851,10741643,4
+43766729,10741643,4
+43649046,10741643,2
+58898530,10741643,5
+42781255,10741643,5
+samsaran,10741643,5
+69323349,10741643,4
+1556137,10741643,3
+46522785,10741643,4
+70042257,10741643,4
+42150092,10741643,3
+porkwen,10741643,5
+51563584,10741643,4
+68851318,10741643,5
+81126169,10741643,4
+63270983,10741643,5
+75237378,10741643,4
+3875131,10741643,4
+crisess,10741643,4
+Jonhanna,10741643,4
+38412947,10741643,5
+4067420,10741643,3
+2085469,10741643,3
+polomango,10741643,4
+roy821,10741643,5
+56351830,10741643,5
+xiaotuo,10741643,3
+SK8_frank,10741643,4
+4909737,10741643,4
+6583292,10741643,4
+59288525,10741643,5
+66066828,10741643,4
+kumoomoo,10741643,4
+48258605,10741643,5
+78249301,10741643,5
+51447106,10741643,-1
+69028639,10741643,3
+lapland,10741643,5
+66750034,10741643,5
+icejoke,10741643,5
+fanqiuyan,10741643,4
+63583816,10741643,4
+60946849,10741643,3
+68817200,10741643,5
+58461512,10741643,5
+103923131,10741643,4
+71325468,10741643,5
+luoandqian,10741643,5
+cheng911002,10741643,3
+63329467,10741643,4
+91432391,10741643,5
+laishuwen,10741643,3
+73096568,10741643,5
+66619833,10741643,3
+102283798,10741643,4
+alangalang,10741643,5
+49478027,10741643,5
+66670492,10741643,5
+62760915,10741643,4
+64708572,10741643,3
+62760636,10741643,5
+64128291,10741643,3
+DominatingCHW,10741643,5
+2852006,10741643,4
+AuRevoir7,10741643,4
+3993595,10741643,5
+54224065,10741643,4
+53300404,10741643,4
+58407046,10741643,5
+moyzhang,10741643,5
+naigely,10741643,3
+3192663,10741643,4
+115019203,10741643,5
+65760507,10741643,4
+bernadettttttte,10741643,4
+49385882,10741643,5
+34848090,10741643,4
+71373698,10741643,4
+71373698,10741643,4
+3643811,10741643,5
+33493653,10741643,3
+viviani87,10741643,5
+coffeebear,10741643,5
+5430981,10741643,5
+xfzhou,10741643,4
+muchacha,10741643,5
+zerokaulitz,10741643,4
+63171651,10741643,5
+77809977,10741643,5
+41833394,10741643,4
+31082152,10741643,4
+cocoon92,10741643,4
+55637961,10741643,5
+aaronfighting,10741643,4
+60625092,10741643,2
+71108776,10741643,5
+devono,10741643,4
+33986793,10741643,5
+53316188,10741643,4
+61602605,10741643,3
+iamfine3q,10741643,2
+3801810,10741643,5
+Guardianangel,10741643,3
+iampearl,10741643,4
+30854311,10741643,4
+blueandgreen,10741643,3
+2682646,10741643,5
+120493777,10741643,4
+46853382,10741643,4
+guihua621,10741643,4
+3550233,10741643,4
+45167538,10741643,4
+mobikarl,10741643,4
+50341741,10741643,5
+perfectloser,10741643,2
+56864116,10741643,4
+lostItard,10741643,4
+3573441,10741643,-1
+69958249,10741643,4
+gent1eman,10741643,3
+1536567,10741643,4
+49985095,10741643,5
+funnylibra,10741643,4
+zzzm,10741643,4
+122938233,10741643,5
+54757798,10741643,5
+Aaronyy,10741643,4
+4228422,10741643,5
+40581527,10741643,2
+51412736,10741643,5
+treeman,10741643,5
+104600848,10741643,4
+32941683,10741643,4
+Jacky_L,10741643,4
+62498909,10741643,3
+wendybeauty,10741643,5
+38633281,10741643,5
+rock.and.love,10741643,4
+54445423,10741643,4
+56536245,10741643,4
+77301549,10741643,3
+summer_waiting,10741643,4
+71178476,10741643,3
+lyxing,10741643,5
+45115459,10741643,4
+44316758,10741643,4
+2453044,10741643,5
+61790360,10741643,5
+41735597,10741643,5
+52117256,10741643,3
+78997971,10741643,4
+68235486,10741643,4
+30714456,10741643,3
+rainwatcher,10741643,4
+androidin,10741643,4
+joysu,10741643,5
+xiaoqiu-aslan,10741643,3
+adododo,10741643,3
+loveeightthree,10741643,5
+breathingfox,10741643,4
+4409616,10741643,4
+Journeywu,10741643,3
+43671696,10741643,3
+102597476,10741643,5
+96807966,10741643,5
+72387570,10741643,3
+90741174,10741643,4
+xuyuhong,10741643,5
+78190212,10741643,-1
+59342280,10741643,4
+24543063,10741643,4
+49786116,10741643,3
+85452400,10741643,4
+41967258,10741643,3
+C_DISON,10741643,5
+6332449,10741643,4
+butten,10741643,5
+blackmushroom,10741643,4
+1955873,10741643,4
+2003622,10741643,5
+54207074,10741643,-1
+mocnab,10741643,3
+49578533,10741643,4
+90751149,10741643,4
+56143987,10741643,4
+hellomo,10741643,4
+MISSMOUMOU,10741643,4
+53277775,10741643,4
+3609679,10741643,4
+4165505,10741643,4
+67606509,10741643,4
+53721065,10741643,4
+62671989,10741643,4
+marukowz,10741643,5
+58043215,10741643,5
+111584714,10741643,4
+41526136,10741643,4
+tzy608,10741643,5
+tzy608,10741643,5
+61589575,10741643,4
+ladybird789,10741643,5
+duanqiaozuoan,10741643,5
+51840690,10741643,5
+nian-an,10741643,5
+81348694,10741643,4
+renjiananhuo,10741643,5
+linzero,10741643,-1
+annastasiax,10741643,5
+3893251,10741643,5
+xiaolinzijoy,10741643,4
+68902656,10741643,5
+woaiwudaokou,10741643,4
+58592016,10741643,4
+44184144,10741643,4
+46450017,10741643,4
+110969952,10741643,3
+71132041,10741643,5
+10671511,10741643,4
+64776383,10741643,5
+vava2046,10741643,4
+46931652,10741643,5
+jolia9109,10741643,5
+wangzhy,10741643,4
+61280115,10741643,4
+Flamingo446,10741643,1
+echoabc0409,10741643,4
+48296036,10741643,5
+1370532,10741643,4
+hollysisland,10741643,4
+53275472,10741643,5
+66237715,10741643,5
+L-Merlin,10741643,5
+allentear,10741643,4
+43228384,10741643,4
+42827834,10741643,4
+47172993,10741643,4
+75042320,10741643,5
+conpenhagen,10741643,4
+4574850,10741643,4
+126092428,10741643,3
+49128296,10741643,3
+JZhong,10741643,4
+69040717,10741643,2
+33708910,10741643,4
+cielbubble,10741643,3
+Alucard,10741643,4
+102429029,10741643,5
+Fly123,10741643,4
+120002421,10741643,5
+4200380,10741643,5
+4651277,10741643,4
+sp0721,10741643,4
+Elizabeth-Lee,10741643,4
+klose_y,10741643,4
+Johannisberg,10741643,4
+119569714,10741643,5
+47370505,10741643,3
+51067587,10741643,5
+tieshuh,10741643,4
+antilo,10741643,4
+njuwangfeng,10741643,-1
+gaominzhe,10741643,5
+8872886,10741643,3
+moxmo,10741643,5
+walleisme,10741643,5
+32032007,10741643,5
+66388171,10741643,3
+2989200,10741643,3
+125111991,10741643,5
+36402097,10741643,4
+4525488,10741643,4
+leaf-7,10741643,3
+75705790,10741643,5
+zhaochenrui123,10741643,3
+55875465,10741643,4
+36360632,10741643,4
+AspireY,10741643,4
+63849240,10741643,3
+grimy,10741643,3
+1801052,10741643,5
+66292455,10741643,5
+34518750,10741643,5
+49150025,10741643,5
+40955189,10741643,5
+hlsdy,10741643,5
+49140330,10741643,5
+41944895,10741643,4
+51873212,10741643,5
+52108750,10741643,5
+54958824,10741643,5
+124640229,10741643,4
+66423049,10741643,2
+44953599,10741643,3
+48275353,10741643,5
+125391105,10741643,4
+50322400,10741643,5
+knighttcwsy,10741643,4
+49397960,10741643,4
+ikmisje,10741643,5
+3083714,10741643,5
+46416150,10741643,4
+86621451,10741643,2
+sixvivid,10741643,4
+qamber,10741643,4
+64487390,10741643,3
+3689468,10741643,4
+silence_queen,10741643,5
+aiguiling,10741643,4
+redmh912,10741643,4
+108183974,10741643,1
+1266223,10741643,3
+hustzxf,10741643,4
+71385635,10741643,5
+47476631,10741643,5
+yyycaleen,10741643,4
+123129041,10741643,5
+37950356,10741643,5
+Yindaxian,10741643,3
+46993692,10741643,5
+86921968,10741643,4
+CINDY_YL,10741643,3
+47806412,10741643,5
+52898475,10741643,5
+38837868,10741643,3
+64818193,10741643,2
+95979688,10741643,5
+mollydai,10741643,4
+54680854,10741643,4
+Y-chloe,10741643,5
+Fayenatics,10741643,4
+105194010,10741643,4
+40696071,10741643,5
+momokitty,10741643,4
+48786976,10741643,4
+66920467,10741643,5
+kurobahotaru,10741643,5
+evencare,10741643,5
+sheshoumeizhi,10741643,5
+44480077,10741643,5
+56070301,10741643,4
+64364601,10741643,2
+51387212,10741643,5
+104348290,10741643,4
+73655682,10741643,5
+jackiesbackbone,10741643,4
+49917435,10741643,5
+33411804,10741643,3
+53318377,10741643,4
+3128287,10741643,4
+79460953,10741643,4
+2636027,10741643,5
+42955100,10741643,5
+mdragon,10741643,5
+103016546,10741643,4
+45792472,10741643,5
+115784208,10741643,5
+64267921,10741643,5
+59341894,10741643,4
+ivy722,10741643,-1
+jhj0918,10741643,3
+35819210,10741643,4
+64095116,10741643,5
+walden2,10741643,5
+83155481,10741643,5
+64883992,10741643,5
+92174700,10741643,4
+2515913,10741643,4
+lantuzi2015,10741643,4
+17407986,10741643,5
+feelzyl,10741643,4
+77676888,10741643,4
+4732854,10741643,5
+45588600,10741643,4
+126412740,10741643,3
+BritpopStarFeel,10741643,4
+60130169,10741643,4
+IchBinHerrMAO,10741643,3
+hynh,10741643,3
+78408840,10741643,4
+80079876,10741643,4
+HarryBabel,10741643,2
+47748422,10741643,5
+Ashboo,10741643,5
+83746312,10741643,3
+52493813,10741643,5
+47491946,10741643,4
+woshiadan,10741643,5
+65161284,10741643,3
+57629368,10741643,5
+122764683,10741643,2
+25879300,10741643,4
+60946203,10741643,5
+65563453,10741643,4
+52140378,10741643,3
+60041400,10741643,5
+17337630,10741643,4
+chaotsi,10741643,4
+120480108,10741643,5
+Veroniquehu,10741643,4
+57927830,10741643,5
+64794289,10741643,2
+jawstrong,10741643,5
+53464840,10741643,5
+levitating,10741643,3
+LouisHan,10741643,4
+waWa.tomato,10741643,5
+64176350,10741643,5
+53009606,10741643,5
+1085901,10741643,4
+edisonmotata,10741643,4
+123378274,10741643,5
+78728709,10741643,3
+53511991,10741643,3
+62522429,10741643,3
+honeynaga,10741643,5
+3683994,10741643,3
+57673110,10741643,4
+xunqian2222,10741643,5
+xunqian2222,10741643,5
+75332945,10741643,4
+yuyuyuyuyuxp,10741643,5
+yueakou,10741643,5
+73958247,10741643,4
+itiszdq,10741643,3
+xlhtdxx,10741643,5
+96761951,10741643,5
+missmoony,10741643,5
+quwaiwai,10741643,4
+49629073,10741643,3
+liujinlin,10741643,3
+bobobobobo,10741643,-1
+sallyless,10741643,-1
+119425175,10741643,3
+isphyllis,10741643,4
+58959346,10741643,4
+tanlin8711,10741643,4
+63405492,10741643,4
+27819470,10741643,5
+pumba92simba,10741643,5
+49855743,10741643,4
+73378499,10741643,3
+128160386,10741643,5
+73166995,10741643,5
+3647280,10741643,5
+44969187,10741643,3
+1799769,10741643,4
+anq,10741643,3
+4327225,10741643,4
+2961368,10741643,3
+leecyril,10741643,4
+spikespike28,10741643,5
+Kevin_Tse,10741643,4
+wudejun,10741643,5
+Daisy-momo,10741643,5
+insomnia,10741643,5
+57842655,10741643,5
+77922789,10741643,4
+97192745,10741643,4
+48093431,10741643,2
+50142885,10741643,3
+Jerry-feng,10741643,5
+61133613,10741643,4
+CharlesTseng,10741643,5
+57220767,10741643,4
+kkkki,10741643,3
+128277585,10741643,5
+jin.paopao,10741643,3
+shoucnag,10741643,4
+dingdean,10741643,5
+netbeginner,10741643,5
+Qeavens,10741643,4
+51940316,10741643,3
+wandous,10741643,-1
+103052218,10741643,5
+60184239,10741643,4
+collars,10741643,4
+14878943,10741643,5
+126327911,10741643,3
+49544994,10741643,5
+90551968,10741643,2
+68819897,10741643,5
+a_pa,10741643,4
+79758590,10741643,3
+lifuruo,10741643,-1
+1084703,10741643,3
+qilichafang,10741643,5
+14677029,10741643,4
+56559303,10741643,2
+pbchen,10741643,4
+78189213,10741643,4
+51156826,10741643,3
+coual,10741643,3
+mereally,10741643,4
+38341224,10741643,4
+44079904,10741643,5
+zoe124,10741643,4
+vicky_talk,10741643,5
+62872014,10741643,5
+53961104,10741643,5
+48369925,10741643,5
+youcl-lunatic,10741643,3
+58979228,10741643,4
+67871819,10741643,5
+weexf,10741643,4
+49580246,10741643,5
+lawrence911,10741643,5
+ancatne,10741643,5
+65135165,10741643,3
+2423121,10741643,5
+2234072,10741643,4
+iiiapple,10741643,5
+56799709,10741643,4
+qino,10741643,3
+63192543,10741643,5
+41560397,10741643,4
+thomsonkoo,10741643,3
+3274566,10741643,5
+56416062,10741643,4
+miss-monster,10741643,5
+41353092,10741643,4
+57719799,10741643,4
+35095278,10741643,5
+papadaixiong,10741643,5
+48802732,10741643,1
+4283595,10741643,4
+53027731,10741643,5
+yangteng1107,10741643,4
+yinghuaji,10741643,4
+53648980,10741643,4
+64377079,10741643,5
+ziting002,10741643,2
+wi2am,10741643,2
+duxiaoban,10741643,4
+44335994,10741643,5
+60095133,10741643,5
+echo7forest,10741643,4
+kimixu1017,10741643,3
+59658127,10741643,4
+honey0324,10741643,3
+queen_shi,10741643,4
+13474998,10741643,4
+36399495,10741643,5
+80250339,10741643,4
+38852403,10741643,3
+zuihoudechongai,10741643,-1
+43447764,10741643,3
+46225338,10741643,4
+60274677,10741643,3
+iheng,10741643,4
+fishzzm,10741643,3
+123331677,10741643,4
+53031430,10741643,5
+riusmary,10741643,4
+EthanChu,10741643,5
+rosemaryii,10741643,4
+123168812,10741643,4
+76238756,10741643,4
+125347499,10741643,4
+77166729,10741643,5
+93962585,10741643,5
+cuaround,10741643,4
+maxchris,10741643,4
+duora11,10741643,5
+49359847,10741643,4
+52018586,10741643,5
+44388028,10741643,4
+88302269,10741643,4
+43211886,10741643,4
+deepriest,10741643,4
+uranus_taotao,10741643,4
+1342232,10741643,4
+1148225,10741643,4
+90761722,10741643,5
+3709909,10741643,4
+23960810,10741643,5
+55711579,10741643,-1
+44038570,10741643,5
+nanawu,10741643,5
+hechiyin,10741643,4
+quanetta,10741643,3
+enolc,10741643,4
+64819804,10741643,4
+33598055,10741643,5
+43798373,10741643,4
+subila119,10741643,4
+2829310,10741643,4
+50433074,10741643,3
+58409742,10741643,4
+azurepeach,10741643,5
+98171440,10741643,4
+63989075,10741643,5
+72693000,10741643,1
+dizzyluke,10741643,4
+68318202,10741643,5
+57043665,10741643,4
+93858057,10741643,3
+caseyqian,10741643,4
+108419773,10741643,5
+40053775,10741643,5
+chelseaW4,10741643,4
+4093204,10741643,5
+S-Long,10741643,4
+cano,10741643,3
+85602254,10741643,5
+iplumage,10741643,4
+yikecai,10741643,5
+6880032,10741643,5
+4664430,10741643,4
+yizhaisansheng,10741643,5
+talk2linx,10741643,2
+50981156,10741643,4
+50416946,10741643,5
+56587180,10741643,5
+88018835,10741643,4
+1493144,10741643,4
+74818677,10741643,4
+100043163,10741643,5
+61038011,10741643,5
+57743813,10741643,2
+chenxi0355,10741643,-1
+yunijiajia,10741643,4
+1398380,10741643,5
+116402107,10741643,4
+minilion,10741643,3
+54068622,10741643,4
+35861398,10741643,5
+berrycjy,10741643,-1
+35950162,10741643,4
+3674833,10741643,5
+merryliang,10741643,4
+su_karen,10741643,5
+54916355,10741643,5
+Lycc,10741643,5
+dingdanglbh,10741643,4
+nogicwit,10741643,5
+74584897,10741643,5
+58578858,10741643,4
+qiudd,10741643,5
+119666088,10741643,3
+miss-sun,10741643,4
+101417161,10741643,5
+28319088,10741643,5
+4361447,10741643,4
+ibanyan,10741643,4
+76291472,10741643,4
+38686040,10741643,4
+34032339,10741643,5
+58982922,10741643,4
+3774521,10741643,-1
+Daniel_Lei,10741643,4
+57947049,10741643,4
+64716918,10741643,3
+71697872,10741643,4
+58130346,10741643,4
+chagrinbleu,10741643,4
+82445623,10741643,-1
+68640061,10741643,4
+Ezi0,10741643,5
+84612888,10741643,4
+3262786,10741643,4
+jojojoyce,10741643,5
+97203375,10741643,5
+iamxiaoqi,10741643,4
+4092203,10741643,5
+37797470,10741643,5
+61272937,10741643,4
+64334718,10741643,2
+46842388,10741643,5
+xujinquan,10741643,5
+100953233,10741643,5
+2384488,10741643,5
+57059937,10741643,5
+61475089,10741643,4
+FindingKnightly,10741643,4
+Z-nana,10741643,5
+ibravo,10741643,4
+65596546,10741643,5
+52969700,10741643,5
+caicaihmq,10741643,3
+1853333,10741643,4
+wuxiaominghan,10741643,5
+4862060,10741643,4
+reiko77877,10741643,4
+65970423,10741643,5
+46291808,10741643,4
+69586177,10741643,4
+27263711,10741643,5
+von71224,10741643,5
+3800028,10741643,3
+50192575,10741643,3
+bobo32,10741643,5
+whateverwbwb,10741643,1
+funyifan,10741643,5
+46984307,10741643,5
+uhoiuikjhiu,10741643,3
+73158528,10741643,4
+zhoui,10741643,3
+113421250,10741643,3
+dabai2011,10741643,4
+125151032,10741643,4
+yuki_kaze,10741643,5
+50387865,10741643,4
+66399459,10741643,5
+q_zhang26,10741643,5
+mississluu,10741643,5
+yangpp,10741643,3
+38514261,10741643,4
+cosyvera,10741643,5
+cfengbme,10741643,4
+27160193,10741643,4
+46162078,10741643,5
+59603699,10741643,3
+mythmok,10741643,3
+41899297,10741643,4
+60279891,10741643,4
+Somalia-pirate,10741643,4
+ZEON009,10741643,5
+lajambo,10741643,3
+55289240,10741643,4
+ivecho,10741643,4
+banlizi,10741643,4
+49302309,10741643,4
+lunargoddess,10741643,5
+lotuslalay,10741643,4
+guanwaiguicai,10741643,5
+40745252,10741643,5
+kratti,10741643,4
+45129270,10741643,5
+63367486,10741643,5
+3235174,10741643,2
+50807724,10741643,4
+shalala41390,10741643,5
+Stephanfan,10741643,5
+57758773,10741643,4
+kaa77,10741643,4
+Oo0o0o0,10741643,4
+37202317,10741643,3
+49587231,10741643,5
+echo__,10741643,5
+27157362,10741643,4
+5723001,10741643,5
+75617472,10741643,5
+43328284,10741643,4
+88073073,10741643,4
+44525790,10741643,5
+125682611,10741643,4
+liminzhang,10741643,5
+39543044,10741643,5
+57689997,10741643,5
+gonxwd,10741643,5
+3363790,10741643,4
+msloveyou,10741643,5
+66273636,10741643,5
+82990787,10741643,3
+naiveal,10741643,5
+65448112,10741643,3
+54811800,10741643,5
+50312843,10741643,5
+namexjn,10741643,5
+125838595,10741643,3
+miomioMM,10741643,5
+yyw0306,10741643,5
+58133063,10741643,4
+94842809,10741643,5
+50493522,10741643,5
+1990132,10741643,3
+dekaixu,10741643,3
+44499117,10741643,5
+49853837,10741643,3
+20543493,10741643,3
+zhangqiyu_0202,10741643,5
+shoolee,10741643,4
+68849291,10741643,3
+jr.mushroom,10741643,4
+meilingmj,10741643,3
+94392173,10741643,4
+58978626,10741643,5
+55906516,10741643,3
+92649048,10741643,5
+nanacancer,10741643,5
+53812644,10741643,5
+54410446,10741643,4
+121627285,10741643,3
+76299602,10741643,3
+31276053,10741643,4
+3852753,10741643,4
+huerwei,10741643,5
+BN-001,10741643,4
+33629882,10741643,4
+123481436,10741643,3
+17700798,10741643,5
+46138752,10741643,3
+46066560,10741643,5
+83659881,10741643,4
+66716197,10741643,3
+Y_____________O,10741643,4
+zhaxiaohan,10741643,5
+Dunstan13,10741643,4
+36265644,10741643,5
+luoluomicky,10741643,5
+81844911,10741643,-1
+52519025,10741643,4
+74764752,10741643,4
+56906475,10741643,2
+64041406,10741643,5
+84710865,10741643,5
+34256368,10741643,2
+88371415,10741643,5
+58089127,10741643,5
+52683880,10741643,4
+32995807,10741643,4
+xinzoe,10741643,-1
+53856338,10741643,5
+61894548,10741643,3
+3627066,10741643,3
+63877279,10741643,5
+62678962,10741643,5
+39992847,10741643,4
+51879316,10741643,4
+45745443,10741643,5
+52452422,10741643,2
+66089131,10741643,5
+66574229,10741643,4
+48542981,10741643,4
+zhaotianjiao,10741643,5
+108992489,10741643,4
+winnizhu,10741643,5
+54588486,10741643,4
+2856245,10741643,4
+2060087,10741643,4
+56964823,10741643,5
+larawang,10741643,5
+91893507,10741643,4
+MarsOrMoon,10741643,5
+68557847,10741643,2
+huangting0126,10741643,4
+74603714,10741643,5
+Pledge,10741643,4
+78465383,10741643,4
+62203060,10741643,3
+Shane-SISU,10741643,5
+2914496,10741643,3
+52973703,10741643,4
+71324630,10741643,5
+49872247,10741643,4
+88449358,10741643,3
+xxxxiaoxiao,10741643,4
+4464121,10741643,4
+67693720,10741643,3
+keracheng,10741643,5
+tingkelly,10741643,5
+wen1011,10741643,4
+xiaohejianjian,10741643,4
+87635169,10741643,5
+107140803,10741643,4
+3334629,10741643,4
+chris7soul,10741643,5
+hanrui0204,10741643,4
+61172500,10741643,5
+91949179,10741643,1
+48662310,10741643,5
+3713265,10741643,4
+keinshen,10741643,5
+redflower414,10741643,5
+CobbWalt,10741643,-1
+57741256,10741643,4
+2902344,10741643,4
+8460343,10741643,5
+orangeair,10741643,5
+lixintong,10741643,4
+tvxqsheep,10741643,5
+44369926,10741643,5
+114441069,10741643,-1
+1808559,10741643,4
+59891514,10741643,4
+93142720,10741643,4
+67739656,10741643,5
+59511229,10741643,5
+Mashaun,10741643,2
+doctoryang,10741643,5
+like9225,10741643,4
+51636177,10741643,3
+15142274,10741643,4
+luckycat_,10741643,4
+49513418,10741643,-1
+bearmum,10741643,5
+51754900,10741643,5
+45765340,10741643,4
+2000244,10741643,4
+53948725,10741643,4
+73491796,10741643,4
+34664148,10741643,3
+muxueqz,10741643,5
+106109346,10741643,3
+49872790,10741643,4
+66101707,10741643,5
+43767898,10741643,4
+xqx,10741643,5
+4343056,10741643,5
+60761601,10741643,5
+51222757,10741643,3
+3681116,10741643,4
+123726870,10741643,5
+56853288,10741643,5
+48531338,10741643,5
+lanette,10741643,4
+78473965,10741643,4
+121120829,10741643,-1
+57925124,10741643,3
+herohaha,10741643,4
+68461862,10741643,5
+14800434,10741643,5
+yuanchanggeng,10741643,5
+73956283,10741643,3
+losslilies,10741643,5
+11508993,10741643,4
+37652857,10741643,5
+xiaomeng43210,10741643,5
+3857185,10741643,5
+51469414,10741643,4
+fumeckplz,10741643,1
+55452001,10741643,5
+47692361,10741643,2
+60590398,10741643,4
+misssummer27,10741643,5
+83837319,10741643,5
+48791919,10741643,-1
+97655546,10741643,5
+56682127,10741643,4
+56187523,10741643,5
+chnhawk,10741643,4
+33439278,10741643,4
+46321473,10741643,3
+49652650,10741643,4
+32144547,10741643,5
+bejieforever,10741643,4
+Frejaxi,10741643,5
+74062182,10741643,4
+73510716,10741643,4
+78488932,10741643,5
+zuoteeth,10741643,5
+68993451,10741643,4
+erikawang,10741643,4
+cherry512,10741643,-1
+xixione,10741643,4
+Little-bear.,10741643,4
+28559275,10741643,4
+baishikelexw,10741643,5
+58858762,10741643,5
+125333358,10741643,5
+ilovepp,10741643,5
+56405968,10741643,5
+caicaisweat,10741643,3
+false-justice,10741643,5
+34255820,10741643,5
+3034948,10741643,4
+63802687,10741643,5
+62209116,10741643,4
+68004061,10741643,4
+shouhulantian,10741643,5
+negoning,10741643,5
+miaommiki,10741643,5
+41389038,10741643,4
+down_0,10741643,4
+ray_du,10741643,5
+85655890,10741643,4
+ranchho,10741643,3
+47569637,10741643,4
+50600162,10741643,4
+60409700,10741643,4
+2836040,10741643,4
+vliangfrank,10741643,5
+71758766,10741643,4
+archem,10741643,4
+74824888,10741643,4
+47421073,10741643,4
+tiffanyji,10741643,4
+14692348,10741643,4
+farseerl,10741643,5
+birdieeos,10741643,4
+45133346,10741643,4
+60232571,10741643,5
+45436853,10741643,4
+52402520,10741643,4
+38897761,10741643,4
+54420135,10741643,5
+xiaoyuxihai,10741643,5
+RuthTsai,10741643,5
+bayueliusu,10741643,4
+lily928,10741643,3
+11189422,10741643,4
+2935013,10741643,4
+tr_Cat,10741643,4
+52448110,10741643,3
+hexiaotang,10741643,5
+cmisland,10741643,5
+yaozhitong1021,10741643,5
+18072949,10741643,4
+72729218,10741643,4
+leonbaby,10741643,4
+69842524,10741643,4
+lshua0325,10741643,4
+tasteberry,10741643,5
+yjkzly,10741643,5
+52762105,10741643,3
+3204513,10741643,4
+cookiecola,10741643,4
+adalee,10741643,5
+sd0225,10741643,5
+58032065,10741643,4
+sandlee1986,10741643,4
+SKBIBBY,10741643,5
+2124467,10741643,5
+71019772,10741643,5
+toninl,10741643,4
+watanabecoffee,10741643,3
+nicaland,10741643,-1
+72965488,10741643,5
+yan6,10741643,4
+52281121,10741643,3
+shensi716,10741643,3
+4488442,10741643,5
+37025309,10741643,5
+52832781,10741643,3
+46465612,10741643,5
+enjoyleelife,10741643,4
+3999173,10741643,4
+vnoonv,10741643,-1
+90225659,10741643,5
+sumouyeah,10741643,2
+53731567,10741643,4
+57059277,10741643,5
+yoyoga,10741643,3
+MaxZ,10741643,4
+4849216,10741643,4
+88481535,10741643,5
+48631550,10741643,4
+dearmeng,10741643,5
+dulanduo,10741643,4
+3294725,10741643,5
+58707237,10741643,5
+37280239,10741643,4
+20486627,10741643,5
+nicos,10741643,4
+neverland_qq,10741643,4
+53011645,10741643,4
+55477143,10741643,4
+shiwoshiwo,10741643,4
+47560834,10741643,5
+62986742,10741643,5
+Tracy.Wan,10741643,5
+46963738,10741643,5
+65258617,10741643,5
+3032928,10741643,4
+cynthianewmoon,10741643,5
+45120293,10741643,4
+89609698,10741643,3
+lifeandlivekris,10741643,5
+37573301,10741643,5
+97949514,10741643,4
+2845890,10741643,4
+59571249,10741643,4
+46428356,10741643,4
+duffy,10741643,5
+simig,10741643,5
+bravefish,10741643,4
+117360867,10741643,2
+tjulcc,10741643,4
+50905909,10741643,3
+azizi,10741643,5
+memow,10741643,5
+Ryanzeng,10741643,3
+53975225,10741643,4
+72417252,10741643,5
+kane7,10741643,4
+52655521,10741643,3
+70729984,10741643,3
+miniqian0228,10741643,4
+58007515,10741643,5
+126024624,10741643,4
+BelleJiang,10741643,4
+argoowz,10741643,1
+wongdear,10741643,5
+JTimberlake,10741643,5
+114433999,10741643,4
+50229433,10741643,5
+sueeet,10741643,3
+93200787,10741643,5
+emotion7,10741643,5
+58239121,10741643,4
+depofish,10741643,5
+2207032,10741643,5
+55996158,10741643,5
+122213220,10741643,5
+58810422,10741643,4
+102781440,10741643,4
+51749255,10741643,5
+zchou,10741643,4
+49422565,10741643,5
+56721475,10741643,2
+3605330,10741643,4
+18937847,10741643,4
+47632961,10741643,2
+47674074,10741643,4
+bodysnatcher,10741643,3
+sunnybest,10741643,4
+48174123,10741643,3
+31957811,10741643,1
+14042957,10741643,5
+ewanyang11,10741643,5
+redcookie,10741643,5
+sjk,10741643,5
+123141060,10741643,5
+cynthiacheng715,10741643,4
+2229038,10741643,4
+billyjiang,10741643,5
+yangyangfly_001,10741643,4
+jiongreborn,10741643,4
+xiaochou2046,10741643,5
+81815749,10741643,4
+cocozhao,10741643,5
+euwen,10741643,4
+2901407,10741643,3
+71002924,10741643,3
+2755866,10741643,5
+3751475,10741643,3
+sooro13,10741643,4
+36634678,10741643,3
+98701498,10741643,1
+34740851,10741643,5
+B-B-B-Side,10741643,3
+64626755,10741643,3
+3023719,10741643,5
+57968508,10741643,4
+50222083,10741643,4
+51490849,10741643,5
+DuoThree,10741643,5
+8528137,10741643,4
+wangyilin220,10741643,5
+56187274,10741643,4
+maggie594522,10741643,5
+39695667,10741643,3
+nick1989s,10741643,4
+ivankazhang,10741643,-1
+58431994,10741643,5
+63916400,10741643,5
+2044650,10741643,4
+sevenfishing,10741643,-1
+likinglr,10741643,4
+38167160,10741643,4
+41201365,10741643,3
+mmmisa,10741643,5
+slcws,10741643,4
+1126352,10741643,3
+wugalll,10741643,3
+51345908,10741643,5
+ifesherry,10741643,5
+84983123,10741643,5
+fuyubo,10741643,5
+manymanyny,10741643,2
+57230631,10741643,4
+2158690,10741643,1
+64632377,10741643,5
+cecilelover,10741643,4
+91343759,10741643,5
+59100232,10741643,5
+ling-ling,10741643,4
+3505428,10741643,5
+84419481,10741643,3
+69571005,10741643,4
+dachaof,10741643,5
+58433028,10741643,5
+99508404,10741643,4
+39789528,10741643,4
+121763704,10741643,5
+slow-witted,10741643,5
+60741695,10741643,4
+sunfloweroom,10741643,4
+48803721,10741643,5
+56143102,10741643,5
+homebody,10741643,5
+1655091,10741643,4
+62708720,10741643,5
+muriellee,10741643,4
+82481486,10741643,5
+50197826,10741643,3
+Guojieoo,10741643,3
+38815134,10741643,4
+48420105,10741643,4
+69595749,10741643,4
+65213268,10741643,4
+50709951,10741643,5
+50179673,10741643,5
+arsenalfc,10741643,4
+72994567,10741643,5
+3524452,10741643,4
+a529105502,10741643,5
+cskywalker,10741643,4
+50029958,10741643,-1
+2240939,10741643,3
+anboli,10741643,3
+58478276,10741643,3
+78997303,10741643,4
+71593926,10741643,5
+minilbiss,10741643,4
+dujunday,10741643,5
+elwy,10741643,4
+56669894,10741643,5
+seafans,10741643,4
+67742018,10741643,5
+73906021,10741643,5
+kiara1988,10741643,3
+ontheroad93,10741643,5
+doudou0322,10741643,4
+adaxu_22,10741643,4
+dawnyan,10741643,4
+32709376,10741643,3
+tonyuanChen,10741643,4
+78254033,10741643,4
+85113803,10741643,4
+36108304,10741643,3
+foolishrabbit,10741643,5
+raymex,10741643,3
+69127375,10741643,5
+dukegj,10741643,5
+66266161,10741643,4
+veravivi,10741643,5
+cactus_hee,10741643,4
+Alan59,10741643,4
+yulingshenyue,10741643,4
+1264598,10741643,4
+vinnywang,10741643,5
+dadadongdada,10741643,4
+115672843,10741643,5
+44140767,10741643,3
+manchukhan,10741643,5
+zhangchipapa,10741643,5
+53032472,10741643,-1
+fccindy,10741643,4
+ivysyi,10741643,4
+62954392,10741643,-1
+hanalook,10741643,3
+2008667,10741643,5
+61448696,10741643,4
+jcpanda,10741643,3
+66051233,10741643,4
+landway,10741643,3
+34597318,10741643,3
+52045614,10741643,5
+51476073,10741643,4
+wangweizhong,10741643,5
+66362138,10741643,5
+jjwzgrmdx,10741643,5
+52255874,10741643,4
+4595070,10741643,3
+alisa_lea,10741643,5
+42901891,10741643,5
+yzk2237084,10741643,3
+icerabbitbaby,10741643,4
+81626321,10741643,4
+VivienneHoo,10741643,3
+khuntracie,10741643,5
+shishiamz,10741643,4
+28178228,10741643,4
+82685125,10741643,4
+52822053,10741643,-1
+68078086,10741643,5
+58251202,10741643,4
+63699116,10741643,5
+62052241,10741643,5
+sunnysc,10741643,3
+msprudence,10741643,5
+67679868,10741643,3
+lxcumt,10741643,5
+79203500,10741643,5
+cby890653,10741643,4
+54133944,10741643,5
+53477722,10741643,3
+dengxlin,10741643,4
+63581783,10741643,4
+81369268,10741643,5
+yunqiu,10741643,5
+68936887,10741643,4
+61085333,10741643,4
+54660916,10741643,3
+67061550,10741643,4
+121085525,10741643,5
+41148862,10741643,3
+45261585,10741643,4
+65339878,10741643,5
+Zhun,10741643,-1
+rubage,10741643,3
+57375454,10741643,5
+2428631,10741643,5
+102410673,10741643,5
+68179093,10741643,4
+72760801,10741643,5
+2946021,10741643,4
+thearcon,10741643,5
+39436312,10741643,4
+78801731,10741643,5
+125334017,10741643,3
+45056058,10741643,4
+63357201,10741643,1
+57298334,10741643,4
+54679074,10741643,4
+4127720,10741643,3
+yangyuefang,10741643,5
+119237142,10741643,5
+liuxiangyu92812,10741643,3
+113327866,10741643,4
+48057625,10741643,5
+anna.sarah,10741643,4
+BBBigZhi,10741643,5
+yoicy,10741643,4
+52922906,10741643,5
+50555804,10741643,5
+imyoyo1116,10741643,4
+54471920,10741643,5
+guanxin898,10741643,3
+7971587,10741643,3
+clever528,10741643,4
+stratagem,10741643,5
+124227936,10741643,4
+tegs,10741643,5
+yd9110,10741643,4
+yaoqi717,10741643,4
+1677956,10741643,5
+1958298,10741643,3
+56416669,10741643,4
+olivechenyy,10741643,3
+36919486,10741643,2
+104744892,10741643,5
+88532994,10741643,5
+56163581,10741643,5
+3111516,10741643,5
+58155946,10741643,4
+Cccmm002,10741643,3
+51815099,10741643,5
+64816700,10741643,3
+78190173,10741643,4
+51075942,10741643,5
+70588185,10741643,4
+yeekingtse,10741643,5
+2531886,10741643,5
+plasticsub,10741643,4
+dearvera,10741643,5
+51538895,10741643,5
+4493051,10741643,5
+spx,10741643,3
+SundraLee,10741643,5
+tommypotato,10741643,4
+2404315,10741643,4
+42222694,10741643,4
+90264386,10741643,4
+56370323,10741643,4
+employee,10741643,4
+66293542,10741643,5
+1495064,10741643,5
+89092265,10741643,5
+kikyo531,10741643,4
+park_summer,10741643,5
+sport1124,10741643,4
+55021112,10741643,5
+blinglu,10741643,4
+36185142,10741643,4
+45916040,10741643,4
+manuela,10741643,5
+small_matty,10741643,5
+17436432,10741643,5
+50372044,10741643,5
+80759115,10741643,5
+Providenci,10741643,3
+noncampgen,10741643,5
+aidaaijani,10741643,4
+thinkslin,10741643,4
+Lelio090101,10741643,3
+3095564,10741643,4
+96208466,10741643,3
+68578741,10741643,1
+120201514,10741643,3
+62815925,10741643,5
+105153848,10741643,4
+126819328,10741643,5
+35438123,10741643,3
+47849855,10741643,4
+liuziyihhs,10741643,4
+58331600,10741643,5
+44335923,10741643,5
+DAI_YELIE,10741643,3
+4387690,10741643,3
+bombman,10741643,5
+ceccion,10741643,3
+merrythenight,10741643,5
+82897167,10741643,1
+103370606,10741643,5
+2087096,10741643,5
+38357024,10741643,5
+58316570,10741643,4
+57425264,10741643,4
+1049890,10741643,4
+4291484,10741643,2
+57964940,10741643,2
+princesselaine,10741643,4
+61953349,10741643,4
+3363339,10741643,4
+jasongc,10741643,5
+oneweek,10741643,3
+42449585,10741643,4
+prostate,10741643,5
+BELINDA.S,10741643,4
+sheenshuay,10741643,4
+81364422,10741643,4
+choueryan,10741643,5
+42338941,10741643,3
+92930894,10741643,3
+ajen,10741643,5
+miuzc.pei,10741643,5
+3706220,10741643,4
+it4_rain,10741643,5
+120065870,10741643,4
+69998360,10741643,5
+74766860,10741643,3
+4342372,10741643,3
+oybzll8384,10741643,4
+63525530,10741643,2
+23057787,10741643,5
+48857179,10741643,5
+iamc,10741643,4
+zhtianyu,10741643,4
+39592000,10741643,5
+46706719,10741643,3
+48253364,10741643,4
+84659461,10741643,5
+khm,10741643,4
+poline,10741643,5
+uujulin,10741643,4
+smallgrass,10741643,5
+ganganjj,10741643,2
+fanclrice,10741643,3
+1837686,10741643,4
+85190529,10741643,4
+yuan729,10741643,-1
+Daisyjing,10741643,3
+48827039,10741643,5
+23750536,10741643,5
+2210574,10741643,4
+4245970,10741643,5
+37969274,10741643,5
+muziadao,10741643,4
+junglerubik,10741643,4
+72163139,10741643,5
+duochiduozhan,10741643,4
+mmmmorita,10741643,4
+Terri0710,10741643,5
+53184293,10741643,-1
+ducklucy,10741643,5
+59566200,10741643,3
+65850343,10741643,3
+48332506,10741643,5
+4232735,10741643,5
+46309477,10741643,4
+56684756,10741643,5
+58018328,10741643,3
+2000647,10741643,5
+chaixiaoxian,10741643,4
+Roxane,10741643,-1
+LovelyYvonny,10741643,5
+71414997,10741643,3
+87838848,10741643,5
+ms007,10741643,3
+87885475,10741643,5
+49022703,10741643,3
+summwe,10741643,4
+chenchunru,10741643,4
+jazzbon,10741643,3
+54113265,10741643,5
+moika,10741643,4
+wjade.wang,10741643,5
+34078383,10741643,4
+IloveyouDanica,10741643,3
+51509043,10741643,4
+Amanda-Z,10741643,3
+yukikaoru,10741643,4
+PANRICO,10741643,3
+psychycokie,10741643,4
+53617231,10741643,5
+3661691,10741643,2
+49730580,10741643,4
+45290589,10741643,4
+114670150,10741643,5
+68367476,10741643,5
+54532526,10741643,4
+Cbei,10741643,4
+83192314,10741643,5
+34950703,10741643,4
+liufei,10741643,3
+48480563,10741643,5
+50963579,10741643,4
+73587524,10741643,5
+blankscreen,10741643,3
+7085324,10741643,4
+101196248,10741643,4
+chuixing,10741643,5
+cachecache,10741643,4
+jinyannn,10741643,5
+2754560,10741643,5
+58166241,10741643,5
+alegria,10741643,3
+Watermonster,10741643,4
+1929074,10741643,4
+amour,10741643,4
+saac,10741643,2
+Ddckss,10741643,4
+yunknap,10741643,4
+yianhq,10741643,4
+AnguesZoe,10741643,4
+50351703,10741643,3
+69773745,10741643,5
+50006756,10741643,5
+maggiepan,10741643,5
+31508323,10741643,3
+indiepop,10741643,5
+88611960,10741643,3
+61328690,10741643,4
+lifeicai,10741643,5
+42707556,10741643,3
+2903830,10741643,5
+zisic,10741643,3
+7787083,10741643,5
+23692831,10741643,2
+samnice,10741643,5
+31453107,10741643,3
+114471696,10741643,5
+2787996,10741643,5
+43411603,10741643,4
+simplyme,10741643,4
+34237269,10741643,4
+dengdeng469,10741643,5
+68400350,10741643,5
+51814592,10741643,4
+xyzzecho,10741643,4
+sslcfss,10741643,2
+iminsep12,10741643,5
+Jechina,10741643,5
+cocacolacat,10741643,3
+46253376,10741643,3
+allen_y,10741643,4
+fairy823,10741643,3
+52374086,10741643,4
+4284723,10741643,4
+52852194,10741643,3
+57123078,10741643,4
+seclo,10741643,5
+52871578,10741643,5
+3134922,10741643,4
+58999299,10741643,5
+49560060,10741643,4
+43596686,10741643,2
+44776734,10741643,4
+58848925,10741643,3
+64287254,10741643,5
+74532668,10741643,4
+2141504,10741643,-1
+46030667,10741643,3
+62395236,10741643,5
+aimaox,10741643,4
+BYAlice,10741643,4
+78902350,10741643,3
+kongwill,10741643,4
+45422614,10741643,4
+pihaier,10741643,2
+44973722,10741643,5
+zhouruopei,10741643,3
+3828606,10741643,3
+kakayanzi,10741643,5
+2929063,10741643,4
+119280630,10741643,5
+Missy1012,10741643,5
+40281080,10741643,4
+44599413,10741643,2
+huxiaotian,10741643,4
+122285833,10741643,5
+yanjiaweii,10741643,4
+62456540,10741643,5
+48480567,10741643,4
+tanwenqiang,10741643,4
+linyuaya,10741643,3
+paradise624,10741643,4
+littlejianjian,10741643,3
+maydayyqy,10741643,4
+41385681,10741643,4
+53617052,10741643,4
+poohye,10741643,-1
+56261965,10741643,5
+65736985,10741643,4
+lcm0414,10741643,5
+2572927,10741643,5
+m.edulla,10741643,4
+52964714,10741643,5
+43163424,10741643,3
+49467804,10741643,5
+anjia617,10741643,5
+silent.mi,10741643,5
+44124671,10741643,3
+52087392,10741643,5
+50437413,10741643,5
+lichliar,10741643,4
+enjoysmile,10741643,-1
+sweetestdreams,10741643,3
+pieceslife,10741643,1
+heyebei,10741643,3
+66800603,10741643,3
+57871688,10741643,3
+ejw,10741643,5
+klakt,10741643,3
+102605068,10741643,5
+tianyingguniang,10741643,4
+15230288,10741643,5
+79089179,10741643,4
+Wenqian,10741643,4
+hollyLeo,10741643,3
+empfan,10741643,5
+85250768,10741643,3
+GreatHenry,10741643,5
+villus,10741643,4
+summertt422,10741643,5
+fangbin0516,10741643,5
+119225016,10741643,3
+48892199,10741643,2
+36511957,10741643,5
+zlqll,10741643,2
+64415826,10741643,4
+54090532,10741643,5
+54897737,10741643,3
+Ekhome,10741643,5
+34971762,10741643,5
+53568631,10741643,5
+YuDd.,10741643,5
+sanji7700,10741643,3
+yang0826,10741643,4
+42574225,10741643,5
+4614727,10741643,5
+avon0801,10741643,5
+36676686,10741643,5
+53375345,10741643,4
+68993646,10741643,3
+dolly21,10741643,2
+60673865,10741643,4
+zhuyuying,10741643,5
+2310583,10741643,4
+myfan,10741643,4
+heavywoo,10741643,2
+lucyseven,10741643,4
+50474016,10741643,4
+2772927,10741643,4
+115776330,10741643,5
+62736610,10741643,4
+62736610,10741643,4
+zhichuangfanle,10741643,5
+106677211,10741643,5
+h_deanz,10741643,4
+76031040,10741643,4
+43214194,10741643,4
+69189478,10741643,5
+bearhulala,10741643,4
+amoreyo,10741643,4
+106830425,10741643,5
+hmx213998776,10741643,5
+82562378,10741643,5
+3793771,10741643,4
+CocoaHoney,10741643,3
+leelrs,10741643,5
+82258521,10741643,3
+51058241,10741643,5
+53025886,10741643,4
+wywe,10741643,5
+mrgun,10741643,5
+xx218,10741643,4
+35218785,10741643,5
+67815505,10741643,5
+XXXXXmian,10741643,2
+lianglicui,10741643,3
+48764715,10741643,5
+29640209,10741643,3
+Mancie,10741643,5
+brant800,10741643,5
+56506887,10741643,4
+69730932,10741643,5
+43376224,10741643,2
+34984227,10741643,5
+stillfyou,10741643,5
+zimingyulin,10741643,4
+lemipaisible,10741643,5
+62414956,10741643,5
+99833271,10741643,4
+56857225,10741643,-1
+phoebechin,10741643,5
+58581778,10741643,5
+ooooooo7,10741643,-1
+78493096,10741643,5
+34831993,10741643,4
+fanxiaxiafan,10741643,3
+richey_,10741643,5
+1778496,10741643,4
+56437151,10741643,4
+mio1989,10741643,4
+69000298,10741643,4
+super_eva,10741643,5
+49946527,10741643,4
+1887650,10741643,4
+121702182,10741643,5
+gatesleilei,10741643,5
+stillm,10741643,4
+45077358,10741643,1
+102122606,10741643,4
+34179685,10741643,4
+liimaday,10741643,4
+43955073,10741643,5
+83187671,10741643,5
+linningmeng,10741643,3
+68673184,10741643,5
+trekkerT,10741643,5
+40611533,10741643,4
+zhaosituzi,10741643,5
+2481357,10741643,5
+43942972,10741643,5
+61389193,10741643,5
+123250951,10741643,5
+78619194,10741643,5
+zhangdayang,10741643,5
+60649710,10741643,5
+58301523,10741643,4
+46821666,10741643,4
+59971571,10741643,4
+59421721,10741643,4
+71664927,10741643,3
+64312218,10741643,5
+arrogantcolonel,10741643,4
+128139586,10741643,5
+82362632,10741643,4
+spankercat,10741643,5
+68872792,10741643,4
+thesinner,10741643,4
+62704211,10741643,3
+55976298,10741643,4
+71869905,10741643,4
+47604910,10741643,4
+50299714,10741643,5
+53236670,10741643,5
+44641385,10741643,5
+128139108,10741643,5
+ahmol,10741643,5
+42618283,10741643,4
+xiaochanzi,10741643,5
+muuuma,10741643,5
+89667488,10741643,5
+4452854,10741643,5
+46037154,10741643,4
+leeva,10741643,4
+ldhdtc,10741643,3
+atom41650,10741643,4
+fecal,10741643,3
+s-a-d,10741643,5
+44971360,10741643,5
+52789187,10741643,5
+hfguren,10741643,4
+raincy4,10741643,5
+54209095,10741643,4
+jerrysong,10741643,4
+wenzhu89,10741643,4
+40002546,10741643,5
+75060988,10741643,2
+52286623,10741643,3
+65364463,10741643,4
+sunianjinshired,10741643,4
+72549209,10741643,5
+xinbuzaiyan,10741643,5
+36786928,10741643,4
+woshitantan,10741643,5
+catduo,10741643,4
+54603314,10741643,4
+28633682,10741643,5
+34704440,10741643,4
+85397972,10741643,5
+marilynsky,10741643,3
+3938745,10741643,5
+dayandnights,10741643,4
+stillwaters123,10741643,4
+zyg,10741643,5
+17708601,10741643,4
+giantpanda,10741643,4
+weststring,10741643,5
+49661788,10741643,5
+2880913,10741643,3
+crystalDave,10741643,5
+Cheshier,10741643,4
+35350032,10741643,4
+57456977,10741643,5
+guyewuzhe,10741643,3
+53713588,10741643,3
+58056246,10741643,3
+37793108,10741643,5
+jeremywcc,10741643,5
+hu4er,10741643,3
+wonderful_days,10741643,5
+71980617,10741643,4
+64359754,10741643,5
+115541155,10741643,4
+StandOnLifE,10741643,3
+47937098,10741643,5
+2407538,10741643,4
+48279164,10741643,5
+53833067,10741643,4
+64770213,10741643,5
+RBMILAN-zwy,10741643,1
+40104674,10741643,4
+Phyrra,10741643,4
+58228514,10741643,-1
+61302763,10741643,4
+imlyc,10741643,5
+songai0609,10741643,4
+xiaoranbao,10741643,4
+45927754,10741643,5
+tjufe,10741643,5
+levone,10741643,4
+cgbing,10741643,5
+kimitsexq,10741643,5
+youxiaosi,10741643,5
+hyy714,10741643,5
+63488867,10741643,4
+neirn,10741643,5
+47056518,10741643,5
+56875123,10741643,5
+112933075,10741643,4
+57626964,10741643,5
+daiqiu920,10741643,5
+21338461,10741643,5
+2718324,10741643,5
+68144864,10741643,4
+55332465,10741643,4
+50636469,10741643,4
+miketseng,10741643,3
+68200387,10741643,3
+yoyomei,10741643,4
+zouzouwanwan,10741643,4
+4266482,10741643,3
+kunkun111,10741643,5
+andynihan,10741643,5
+frankfankai,10741643,5
+31669291,10741643,5
+12769559,10741643,4
+solitude1207,10741643,4
+loneblog,10741643,5
+45332811,10741643,3
+84289597,10741643,4
+sisonzhang,10741643,4
+3501858,10741643,2
+3501858,10741643,2
+idlelz,10741643,5
+Tequilawjn1989,10741643,5
+52084703,10741643,4
+105390195,10741643,5
+xunwendy,10741643,5
+60656963,10741643,4
+48750685,10741643,4
+121150737,10741643,3
+62290897,10741643,5
+toddzhou,10741643,5
+cenalarz,10741643,2
+91297667,10741643,3
+104878352,10741643,5
+lovesodagreen,10741643,4
+liliansue,10741643,4
+oliviapalermo,10741643,4
+sherry-he,10741643,3
+67606836,10741643,1
+51004773,10741643,4
+twitodd,10741643,4
+55446081,10741643,4
+54810722,10741643,3
+tadashi,10741643,5
+LogicLady,10741643,4
+aliefall77,10741643,4
+14069864,10741643,4
+55984951,10741643,5
+54067420,10741643,5
+114092511,10741643,5
+boboliu,10741643,1
+69441778,10741643,5
+neoelsa,10741643,5
+65097529,10741643,5
+73126068,10741643,5
+yjybibby,10741643,5
+54656864,10741643,4
+73219049,10741643,4
+davidgu,10741643,4
+gm_feng,10741643,5
+121437140,10741643,4
+31316457,10741643,5
+85285625,10741643,5
+85254473,10741643,4
+69616363,10741643,5
+54623477,10741643,4
+45312368,10741643,4
+79262344,10741643,2
+29345040,10741643,5
+jesterselby,10741643,3
+81365960,10741643,5
+91994560,10741643,3
+4534037,10741643,5
+46326350,10741643,5
+56073340,10741643,5
+88039373,10741643,4
+39696918,10741643,5
+4588859,10741643,4
+63423532,10741643,5
+4247189,10741643,4
+hanyuting,10741643,5
+79669043,10741643,5
+42764175,10741643,5
+61270686,10741643,5
+121907627,10741643,5
+4195216,10741643,5
+71450042,10741643,5
+108301651,10741643,5
+48862073,10741643,5
+mrsrost,10741643,4
+stefaniesays,10741643,4
+Jayne_pig,10741643,4
+lsr870909366,10741643,3
+48708306,10741643,4
+mrfish,10741643,4
+65162700,10741643,4
+wayman_lin,10741643,4
+78614678,10741643,4
+29100911,10741643,4
+wc0606wq,10741643,4
+sweetloli,10741643,3
+oops_mie,10741643,5
+AbiesMill,10741643,4
+61111185,10741643,5
+53708953,10741643,5
+47396719,10741643,5
+58854842,10741643,4
+ningzile,10741643,4
+63538128,10741643,5
+51881228,10741643,2
+52279001,10741643,5
+rynasoon,10741643,5
+84142287,10741643,4
+54770734,10741643,5
+jackguo,10741643,3
+vivian_mos,10741643,5
+mr.slow,10741643,5
+baibaiyang,10741643,4
+48227188,10741643,5
+rainpalazzo,10741643,5
+pretendor,10741643,4
+shixiao198867,10741643,4
+73421771,10741643,4
+liaoxiaoben,10741643,5
+harry313,10741643,4
+76915903,10741643,5
+58337655,10741643,4
+55660651,10741643,5
+53742032,10741643,5
+2449818,10741643,4
+52655952,10741643,4
+73438385,10741643,4
+76077313,10741643,5
+Dydia,10741643,4
+83245284,10741643,3
+yizbai,10741643,5
+31814184,10741643,5
+lij1ani,10741643,4
+zqt0,10741643,3
+54983344,10741643,5
+85100591,10741643,3
+2236597,10741643,2
+39480063,10741643,4
+ynian2011,10741643,3
+chenjiaqi1008,10741643,5
+2948682,10741643,4
+acmilanzjt,10741643,4
+fisaco,10741643,3
+88221357,10741643,5
+56526640,10741643,5
+51845720,10741643,5
+simu19,10741643,5
+felinoshuffle,10741643,5
+73470763,10741643,5
+58013933,10741643,1
+wheattime,10741643,4
+1167276,10741643,4
+102967407,10741643,4
+qiaowu2,10741643,4
+qingyizheng,10741643,5
+sspring,10741643,5
+74950807,10741643,4
+yourstoryya,10741643,5
+46763388,10741643,3
+87726379,10741643,5
+53558269,10741643,2
+flowernim,10741643,3
+Sam-css,10741643,4
+calvingaga,10741643,5
+58603812,10741643,5
+jasminekiki,10741643,5
+57800655,10741643,5
+ccteav,10741643,5
+1520336,10741643,5
+roxymusic,10741643,3
+82915767,10741643,5
+STT810,10741643,3
+xuhui900830,10741643,5
+i.m.yours,10741643,4
+4271937,10741643,4
+yaohooo,10741643,5
+36541831,10741643,4
+64717773,10741643,4
+rose886,10741643,5
+68089671,10741643,3
+3843442,10741643,4
+hankerwei,10741643,4
+liuxk99,10741643,4
+83674616,10741643,5
+45511772,10741643,4
+49044757,10741643,4
+124885117,10741643,3
+67023197,10741643,3
+IceKey,10741643,4
+54025015,10741643,5
+3717542,10741643,4
+50776119,10741643,3
+1596693,10741643,2
+119562748,10741643,4
+126168366,10741643,5
+67388709,10741643,5
+52874024,10741643,4
+51086058,10741643,4
+36575109,10741643,5
+onion83,10741643,5
+1961185,10741643,3
+64235797,10741643,4
+32541723,10741643,4
+54463600,10741643,4
+yuanmavis,10741643,4
+cindol,10741643,4
+huanghuang0227,10741643,4
+xuxiaomao,10741643,5
+75828184,10741643,-1
+98942743,10741643,5
+74601156,10741643,4
+128108502,10741643,5
+57058120,10741643,4
+2623718,10741643,3
+Sunny_Sunny,10741643,5
+13577831,10741643,3
+2215106,10741643,-1
+88325772,10741643,5
+xinlingsenlin,10741643,3
+axknightroad,10741643,4
+septemberwu,10741643,3
+56103216,10741643,3
+47319867,10741643,5
+gexiarong,10741643,3
+1213382,10741643,5
+52409841,10741643,4
+benben76,10741643,5
+23997967,10741643,5
+KeerDee,10741643,4
+4641353,10741643,5
+44705986,10741643,4
+houyizhong,10741643,3
+51861126,10741643,5
+92865388,10741643,4
+61688299,10741643,5
+46207489,10741643,4
+57882904,10741643,5
+13174363,10741643,5
+colatea,10741643,5
+60037456,10741643,3
+fin07,10741643,5
+2166091,10741643,4
+withzzc,10741643,5
+point1to1,10741643,-1
+57856212,10741643,4
+97468014,10741643,5
+55309786,10741643,2
+70764851,10741643,5
+wakaka1986,10741643,4
+51149040,10741643,4
+102641702,10741643,4
+hwyyj,10741643,5
+48267278,10741643,4
+59969817,10741643,5
+matamune,10741643,5
+4026585,10741643,4
+1558354,10741643,5
+kuma,10741643,4
+47837056,10741643,2
+zhangyired,10741643,4
+2370454,10741643,3
+98640890,10741643,3
+58578065,10741643,4
+miaomi,10741643,4
+119761825,10741643,4
+3413919,10741643,4
+53460171,10741643,4
+57598837,10741643,-1
+jackchao007,10741643,4
+shanks-chan,10741643,5
+58287928,10741643,4
+53339781,10741643,4
+4392294,10741643,4
+67641940,10741643,5
+3306133,10741643,3
+67955955,10741643,5
+49082451,10741643,1
+52515675,10741643,4
+41486823,10741643,5
+122292058,10741643,4
+liz90,10741643,5
+73983245,10741643,5
+1222692,10741643,4
+64240733,10741643,3
+dovm,10741643,5
+61673467,10741643,5
+47647061,10741643,4
+mbxsky,10741643,4
+78510694,10741643,4
+75530796,10741643,4
+12510616,10741643,4
+55824783,10741643,5
+32320904,10741643,4
+pagist,10741643,5
+42144339,10741643,-1
+asoooy,10741643,5
+53103898,10741643,3
+126628542,10741643,1
+jessiedgr,10741643,4
+1424695,10741643,3
+59426800,10741643,3
+55899001,10741643,4
+72854729,10741643,5
+57086722,10741643,5
+tongtongabc,10741643,4
+4564971,10741643,3
+57028649,10741643,4
+116543609,10741643,5
+51950348,10741643,3
+65689627,10741643,5
+grapepie,10741643,5
+57465841,10741643,5
+40532928,10741643,5
+cuishuang,10741643,-1
+huayeah,10741643,2
+50395033,10741643,3
+68977947,10741643,5
+helen897,10741643,3
+nbyuan,10741643,3
+2399727,10741643,4
+2879012,10741643,5
+rolenter,10741643,4
+73878048,10741643,4
+54365340,10741643,4
+89919500,10741643,5
+1829241,10741643,3
+69383984,10741643,4
+59426898,10741643,4
+moon6fly,10741643,5
+aimar1989,10741643,3
+poicyl,10741643,4
+86202635,10741643,3
+wangziX,10741643,1
+122232460,10741643,5
+jaymo,10741643,5
+4658711,10741643,4
+sidneylumet,10741643,4
+54843353,10741643,4
+72100909,10741643,4
+ilovekyoko,10741643,4
+82406719,10741643,4
+3322308,10741643,4
+48786032,10741643,4
+34186094,10741643,4
+the_z,10741643,2
+4766836,10741643,4
+edwardtroy,10741643,4
+nsdmm,10741643,3
+122240927,10741643,3
+medievaldream32,10741643,5
+kk_22,10741643,4
+12360363,10741643,4
+67336403,10741643,5
+nightw1sh,10741643,4
+127321461,10741643,4
+oisnayeah,10741643,4
+42208519,10741643,4
+Scorpio0203,10741643,4
+dkjune,10741643,2
+39234011,10741643,4
+127829961,10741643,5
+3013752,10741643,4
+tsubasatjy,10741643,4
+hippokun,10741643,3
+51401098,10741643,4
+MoQin,10741643,3
+76653001,10741643,3
+54791351,10741643,5
+4401259,10741643,4
+34990141,10741643,3
+60020373,10741643,4
+2646782,10741643,4
+Erika1988,10741643,5
+1864146,10741643,3
+45513879,10741643,5
+3538758,10741643,4
+jwhmayday,10741643,5
+60461419,10741643,5
+82846844,10741643,5
+ancol,10741643,4
+haluway,10741643,3
+89997882,10741643,5
+116053893,10741643,5
+6184067,10741643,4
+geqianjay,10741643,4
+49795058,10741643,4
+xuyanshang,10741643,5
+58774315,10741643,5
+45797020,10741643,5
+sentexiaohu,10741643,4
+oosunshine,10741643,5
+25740506,10741643,4
+100631304,10741643,4
+piaotutu,10741643,4
+56496405,10741643,3
+roaring90h,10741643,5
+4172016,10741643,5
+123857159,10741643,5
+41694070,10741643,5
+77921722,10741643,5
+caofei-dai,10741643,5
+SuperWMY,10741643,4
+suanjianke,10741643,5
+39491713,10741643,3
+3160219,10741643,4
+83317166,10741643,5
+7881838,10741643,3
+pianzhikuangyy,10741643,1
+45179970,10741643,4
+yqdz,10741643,4
+51284048,10741643,3
+90729667,10741643,4
+theyear,10741643,4
+3733525,10741643,5
+41739237,10741643,4
+124186253,10741643,5
+baiyasky,10741643,4
+yekui,10741643,5
+peaceup,10741643,3
+51877834,10741643,5
+4370686,10741643,4
+euphymia,10741643,5
+83143182,10741643,5
+124283847,10741643,5
+darlingtudai,10741643,4
+lrc940928,10741643,4
+65985132,10741643,4
+poppy7mbsf,10741643,4
+fegncs,10741643,4
+50745514,10741643,5
+50651647,10741643,5
+jiyongoppa,10741643,5
+73749265,10741643,4
+68729830,10741643,3
+lingsama00,10741643,4
+cjc112,10741643,3
+2118507,10741643,5
+jiangmingji,10741643,5
+9033618,10741643,3
+sinsolo,10741643,5
+LAQ,10741643,3
+26476308,10741643,5
+65202120,10741643,5
+bigfish0625,10741643,5
+uzbaby,10741643,4
+ecane,10741643,5
+34097491,10741643,-1
+yvette820,10741643,4
+81864454,10741643,5
+121881237,10741643,5
+megansyr,10741643,-1
+82566965,10741643,5
+greyknowsblue,10741643,5
+62841598,10741643,4
+40590676,10741643,-1
+66612496,10741643,5
+104056990,10741643,3
+ylo1995,10741643,4
+cantona_x,10741643,3
+Mrssin,10741643,5
+zhangdanyang,10741643,5
+monkwuwei,10741643,4
+60288817,10741643,4
+50941482,10741643,4
+3142149,10741643,5
+61477249,10741643,4
+zzoozz_111,10741643,3
+63161507,10741643,5
+32819169,10741643,4
+cici198739,10741643,5
+bodhi521,10741643,5
+masterbuyuan,10741643,5
+61076987,10741643,4
+44969749,10741643,4
+41437311,10741643,5
+63391208,10741643,5
+51377827,10741643,4
+33226742,10741643,4
+69735820,10741643,3
+114483839,10741643,5
+52051492,10741643,3
+47324107,10741643,5
+silencewong,10741643,3
+Emily723,10741643,5
+4132864,10741643,3
+nianfangshiba,10741643,5
+janiris,10741643,3
+anoTherTeezy,10741643,4
+44079497,10741643,5
+61171378,10741643,4
+45467820,10741643,4
+70173493,10741643,4
+fuxiu,10741643,4
+120358782,10741643,4
+jing-junjie,10741643,4
+54058995,10741643,4
+74908482,10741643,-1
+72527995,10741643,5
+41806618,10741643,5
+fairycastle,10741643,5
+78362081,10741643,4
+silence0716,10741643,4
+124770201,10741643,4
+87937161,10741643,3
+62298442,10741643,5
+49864044,10741643,2
+beiliya6261,10741643,5
+Gonnere,10741643,5
+ticky77,10741643,3
+61739872,10741643,4
+125333190,10741643,5
+jingxi0821,10741643,-1
+kellyelbe,10741643,5
+53868957,10741643,4
+rosexiafei,10741643,5
+64933961,10741643,4
+62737718,10741643,3
+58285641,10741643,4
+71118924,10741643,5
+53492986,10741643,4
+51198327,10741643,2
+Yolandaleaf,10741643,5
+82089919,10741643,4
+4498928,10741643,5
+82520014,10741643,5
+50402097,10741643,5
+irenaleo,10741643,5
+84570896,10741643,5
+goer1991,10741643,5
+marioii,10741643,5
+82934816,10741643,4
+48631155,10741643,5
+81159938,10741643,2
+94574301,10741643,4
+103045657,10741643,4
+53890773,10741643,5
+33484698,10741643,4
+76032805,10741643,4
+82689458,10741643,3
+freyarashi,10741643,4
+1815039,10741643,3
+82398497,10741643,5
+61824176,10741643,5
+81433056,10741643,3
+chengty0905,10741643,5
+57251364,10741643,3
+keith_z,10741643,5
+40760358,10741643,4
+112794810,10741643,4
+kyleul,10741643,5
+48966304,10741643,5
+101503219,10741643,5
+80661192,10741643,-1
+101963490,10741643,3
+lovemayday,10741643,5
+lovemayday,10741643,5
+66900616,10741643,5
+55740203,10741643,5
+nuo8821,10741643,4
+owenyao,10741643,5
+1106581,10741643,5
+6290141,10741643,5
+1395865,10741643,3
+ccmaycry,10741643,4
+46665128,10741643,4
+114582332,10741643,5
+miemiefever,10741643,4
+49237528,10741643,5
+64245643,10741643,3
+121720779,10741643,5
+yunwaizhizhi,10741643,5
+64218724,10741643,5
+taolailida,10741643,5
+51292649,10741643,5
+78902065,10741643,4
+89835512,10741643,3
+qingnianluoke,10741643,5
+59634338,10741643,5
+47920402,10741643,4
+65676913,10741643,5
+2668037,10741643,4
+50352774,10741643,4
+53507443,10741643,4
+ikuei,10741643,4
+67148149,10741643,4
+88320532,10741643,4
+120467898,10741643,5
+4335554,10741643,4
+39322389,10741643,5
+knowYourself,10741643,5
+63352248,10741643,5
+kid29,10741643,4
+42250996,10741643,5
+sherryw76,10741643,5
+75785153,10741643,3
+69353582,10741643,-1
+120943212,10741643,3
+mengxiangzhidi,10741643,5
+4165592,10741643,4
+53402867,10741643,5
+75033795,10741643,5
+50526880,10741643,3
+89542438,10741643,5
+1379137,10741643,4
+2340408,10741643,4
+giraffezebra,10741643,3
+49916900,10741643,4
+2055478,10741643,5
+67104840,10741643,3
+63571575,10741643,5
+127771383,10741643,4
+cecaazhang,10741643,4
+57756886,10741643,4
+23450183,10741643,2
+fayewendy,10741643,4
+2615650,10741643,3
+2314590,10741643,4
+55801990,10741643,4
+VIVIannnkk,10741643,4
+erikzm,10741643,4
+ziquan827,10741643,3
+nyandjm,10741643,4
+feesle,10741643,5
+54113299,10741643,4
+36411115,10741643,5
+eatbananamoku,10741643,4
+55653104,10741643,5
+126220956,10741643,4
+xyz9426,10741643,-1
+76589851,10741643,4
+53951435,10741643,5
+28628487,10741643,3
+oh2est,10741643,5
+DrRay,10741643,4
+76377743,10741643,4
+46090800,10741643,5
+83809414,10741643,5
+2862311,10741643,5
+hy100083,10741643,5
+4587293,10741643,4
+bobluvpop,10741643,5
+91469568,10741643,5
+71411074,10741643,3
+ooyoo,10741643,5
+2373395,10741643,4
+58215483,10741643,5
+73866765,10741643,4
+50069114,10741643,3
+70242855,10741643,4
+63641490,10741643,4
+RoyalParty,10741643,5
+Diawa,10741643,4
+43127337,10741643,3
+summerzoo,10741643,4
+63069817,10741643,3
+63069817,10741643,3
+119394560,10741643,3
+fi5ve,10741643,3
+53492499,10741643,5
+xhazel,10741643,3
+43339020,10741643,1
+sofahuang,10741643,5
+80161168,10741643,1
+yizhanqiuse,10741643,4
+86721520,10741643,5
+renee_bai,10741643,-1
+cy0713,10741643,5
+1716855,10741643,5
+58142666,10741643,5
+50353845,10741643,5
+63045020,10741643,5
+1403770,10741643,4
+32022944,10741643,3
+shizhiyu,10741643,5
+shadowlew,10741643,3
+miantiao123,10741643,5
+chenzhuoqing,10741643,5
+45107933,10741643,5
+46221574,10741643,4
+42296972,10741643,4
+63177559,10741643,4
+80033918,10741643,4
+given0709,10741643,5
+Goshawk-,10741643,-1
+57698822,10741643,4
+87783911,10741643,3
+41036146,10741643,5
+44649413,10741643,-1
+13857069,10741643,2
+67667928,10741643,4
+4024148,10741643,5
+kev1989,10741643,3
+allanzlau,10741643,5
+75338620,10741643,4
+44878815,10741643,4
+dustblue,10741643,3
+56843116,10741643,5
+40684002,10741643,4
+1897420,10741643,3
+48053814,10741643,3
+90715533,10741643,3
+dzone,10741643,4
+74687875,10741643,5
+51007365,10741643,4
+lightblue_xu,10741643,5
+55985934,10741643,4
+74449417,10741643,5
+61911071,10741643,5
+C7chuqi,10741643,5
+76393172,10741643,5
+51679757,10741643,5
+aaaai,10741643,4
+janie225,10741643,5
+48885905,10741643,5
+53161271,10741643,5
+61841169,10741643,5
+79406388,10741643,4
+owenclv,10741643,4
+mjh5920,10741643,3
+51851305,10741643,5
+41142807,10741643,5
+raving,10741643,-1
+71630153,10741643,4
+luckia1991,10741643,4
+57311033,10741643,5
+Lizzie14,10741643,5
+120324346,10741643,5
+3803592,10741643,-1
+43397816,10741643,5
+19734042,10741643,4
+65423818,10741643,5
+cyy771,10741643,4
+maxiaomeng,10741643,5
+rainbow007,10741643,1
+43225247,10741643,5
+CalvinAzure,10741643,5
+4038977,10741643,4
+77654603,10741643,3
+51898204,10741643,4
+45498155,10741643,5
+14357343,10741643,3
+solarenergybaby,10741643,5
+nsxrb,10741643,5
+88998364,10741643,3
+61776963,10741643,4
+klch,10741643,3
+49164545,10741643,4
+smilehuhu,10741643,5
+Yann.A.S,10741643,4
+69117012,10741643,-1
+53810031,10741643,5
+58896070,10741643,3
+85239246,10741643,4
+june.q,10741643,3
+microblue,10741643,5
+83229871,10741643,4
+ifiwere,10741643,4
+79952880,10741643,3
+lolitahanhan,10741643,4
+73525582,10741643,4
+45580580,10741643,5
+80298244,10741643,5
+Showga,10741643,5
+119683375,10741643,5
+zhaze,10741643,5
+68550848,10741643,3
+88263300,10741643,3
+46932541,10741643,4
+fondxy,10741643,4
+73959584,10741643,4
+3628277,10741643,4
+125672751,10741643,4
+49109505,10741643,4
+112695374,10741643,5
+vitaminJ,10741643,4
+92569558,10741643,4
+Kishimoto,10741643,3
+5566664,10741643,4
+jojodin,10741643,4
+63926382,10741643,4
+61260299,10741643,4
+63744886,10741643,5
+VALLA,10741643,4
+62766921,10741643,4
+91613457,10741643,4
+2761343,10741643,-1
+63707938,10741643,5
+61672883,10741643,5
+yuexiaokan,10741643,5
+95794515,10741643,5
+FFFFFFantasy,10741643,5
+91952258,10741643,4
+58521633,10741643,4
+127901847,10741643,4
+120570050,10741643,4
+120570050,10741643,4
+60905842,10741643,4
+62860308,10741643,3
+49460058,10741643,4
+65025231,10741643,5
+65873693,10741643,5
+vivianbloom,10741643,3
+yuemian,10741643,5
+4711240,10741643,3
+62342120,10741643,5
+65075320,10741643,5
+brightlook,10741643,4
+66967732,10741643,3
+68700662,10741643,3
+83717387,10741643,4
+91754998,10741643,3
+88679885,10741643,5
+wangyi2011,10741643,4
+48824155,10741643,4
+74376371,10741643,5
+49319979,10741643,4
+64139432,10741643,4
+69510965,10741643,4
+34591792,10741643,-1
+39863904,10741643,5
+urk717,10741643,5
+queenice,10741643,3
+fallistuzi,10741643,3
+44537605,10741643,5
+42262483,10741643,4
+47899427,10741643,5
+2283860,10741643,4
+77336532,10741643,4
+56914134,10741643,4
+2244827,10741643,4
+52951856,10741643,4
+52299023,10741643,4
+121722324,10741643,5
+hephan,10741643,-1
+49233326,10741643,3
+101947898,10741643,5
+cwalet,10741643,4
+50438993,10741643,5
+sethyoung,10741643,4
+53672963,10741643,3
+51297351,10741643,3
+52153576,10741643,4
+yinchuanfu,10741643,4
+3892140,10741643,5
+1786605,10741643,3
+37098429,10741643,4
+rampage_akasha,10741643,5
+89095718,10741643,4
+xxe,10741643,4
+ddcchenfei,10741643,4
+51937445,10741643,5
+shmily_fm,10741643,4
+45193513,10741643,4
+seail,10741643,5
+48232992,10741643,5
+53487515,10741643,5
+37497401,10741643,4
+78972220,10741643,5
+4686156,10741643,4
+42796272,10741643,4
+coocooloot,10741643,4
+51261711,10741643,4
+61328119,10741643,4
+125655628,10741643,4
+43990586,10741643,4
+xmausp,10741643,4
+yoyo3105,10741643,5
+souring,10741643,4
+74173409,10741643,5
+chinhao,10741643,4
+15703993,10741643,4
+114115243,10741643,5
+30852407,10741643,3
+coldcall,10741643,5
+22276083,10741643,5
+22276083,10741643,5
+49032591,10741643,5
+48590382,10741643,4
+43297511,10741643,3
+60149016,10741643,5
+71683514,10741643,5
+58975463,10741643,1
+46375333,10741643,5
+heping2046,10741643,4
+xjrwjh,10741643,5
+70204712,10741643,4
+50006594,10741643,5
+25664582,10741643,3
+daffmanda,10741643,2
+119746039,10741643,5
+lly950412,10741643,3
+homlim,10741643,-1
+49220911,10741643,3
+Darezhao,10741643,5
+mikaT3Txx,10741643,5
+wuwildwind,10741643,5
+119181387,10741643,5
+52540412,10741643,4
+86615375,10741643,5
+59450940,10741643,4
+wuyiye,10741643,5
+60728287,10741643,3
+52113603,10741643,5
+120524672,10741643,5
+58209087,10741643,5
+70808460,10741643,5
+122952763,10741643,4
+cimr,10741643,3
+fangtangblue,10741643,5
+shi-jianbai,10741643,4
+83550216,10741643,4
+13293190,10741643,2
+55334687,10741643,3
+102616855,10741643,3
+38920427,10741643,-1
+38920427,10741643,-1
+49922437,10741643,5
+valiantwarrior,10741643,3
+67059149,10741643,4
+xiawu1130,10741643,4
+42919935,10741643,5
+31427645,10741643,4
+53557989,10741643,3
+63396418,10741643,5
+67290417,10741643,5
+62562773,10741643,5
+51888216,10741643,5
+piggest,10741643,-1
+49155542,10741643,4
+polarstar,10741643,4
+65937854,10741643,5
+64245848,10741643,3
+36926504,10741643,3
+gondia,10741643,5
+69156553,10741643,3
+55624781,10741643,5
+Daryl,10741643,4
+60956192,10741643,5
+3833788,10741643,2
+caceywd,10741643,4
+87383835,10741643,5
+127610721,10741643,2
+moniquewang,10741643,-1
+fuckinboy,10741643,4
+59380890,10741643,4
+3234640,10741643,4
+3727771,10741643,5
+73603686,10741643,5
+yetiaoruo,10741643,5
+4223711,10741643,4
+viviwanghoho,10741643,4
+49536582,10741643,4
+36486971,10741643,5
+caocaoa,10741643,4
+67694516,10741643,4
+susie1991,10741643,4
+Lixiang1201,10741643,5
+65121646,10741643,4
+wangyujia520,10741643,5
+3356601,10741643,5
+shuiqi,10741643,4
+84800146,10741643,4
+shantong422,10741643,4
+67447555,10741643,4
+54551118,10741643,4
+3089529,10741643,5
+78656769,10741643,5
+40519102,10741643,5
+56348956,10741643,3
+3179740,10741643,4
+58153202,10741643,5
+88256583,10741643,4
+127607547,10741643,4
+xujiaming,10741643,4
+45241922,10741643,5
+vitatha_613,10741643,3
+126896295,10741643,4
+34316735,10741643,5
+116034006,10741643,4
+2033498,10741643,4
+59468829,10741643,4
+xieyuhan1988,10741643,3
+LLLLLLyt,10741643,1
+47259806,10741643,4
+yangqijane,10741643,5
+silence08,10741643,5
+abibdy,10741643,5
+92871854,10741643,4
+30250006,10741643,5
+56732738,10741643,5
+68860037,10741643,3
+digdug,10741643,5
+46480705,10741643,4
+56430618,10741643,4
+55957709,10741643,5
+82367118,10741643,5
+wangjingya,10741643,2
+Neptune521,10741643,4
+126514771,10741643,5
+88815892,10741643,4
+120643307,10741643,5
+115276282,10741643,4
+chennanlydia,10741643,5
+guoniaodao,10741643,5
+florahua,10741643,2
+78089832,10741643,3
+4154813,10741643,5
+hahehahe,10741643,3
+64666774,10741643,4
+3416468,10741643,4
+121977055,10741643,4
+qiqi0912,10741643,5
+62732837,10741643,4
+56893304,10741643,5
+69008426,10741643,4
+82040101,10741643,5
+88305337,10741643,4
+iwei,10741643,4
+lovelflwd,10741643,4
+bingbingcui,10741643,3
+29057247,10741643,5
+89814111,10741643,-1
+ran69,10741643,3
+71820219,10741643,4
+48278787,10741643,-1
+mgxshui,10741643,-1
+51721466,10741643,3
+103498359,10741643,4
+74589582,10741643,5
+cyan_xi,10741643,5
+62093986,10741643,2
+49529494,10741643,4
+105864771,10741643,3
+92027453,10741643,3
+57830080,10741643,-1
+57830080,10741643,-1
+76290826,10741643,5
+83888533,10741643,3
+liuyuetong,10741643,4
+4080038,10741643,3
+71133496,10741643,4
+whuzhangli,10741643,5
+3632876,10741643,4
+122774452,10741643,4
+56526840,10741643,5
+62130099,10741643,4
+52481059,10741643,4
+41498049,10741643,4
+bonjourlouise,10741643,-1
+3262308,10741643,4
+41874215,10741643,4
+44603388,10741643,4
+48484472,10741643,4
+57002877,10741643,5
+91018361,10741643,4
+91018361,10741643,4
+126842438,10741643,4
+72861793,10741643,5
+lovelyao,10741643,5
+bolly,10741643,5
+xxxxxxdee,10741643,4
+mintmousse,10741643,5
+yangisyang,10741643,5
+66594902,10741643,5
+nobita1217,10741643,4
+48167301,10741643,3
+60810018,10741643,4
+v.sirin,10741643,5
+1183940,10741643,-1
+flowater,10741643,4
+63177196,10741643,5
+3678344,10741643,3
+92943106,10741643,5
+57580969,10741643,3
+lokio,10741643,4
+cht,10741643,5
+silver_F,10741643,3
+58429338,10741643,4
+1159296,10741643,3
+51836964,10741643,5
+15421442,10741643,5
+56398520,10741643,4
+62748915,10741643,5
+58040832,10741643,3
+123945021,10741643,5
+127440330,10741643,4
+Echokeats,10741643,3
+La_hare,10741643,2
+askingvivian,10741643,4
+60036995,10741643,3
+116044095,10741643,5
+80957826,10741643,4
+pandajo,10741643,4
+65101175,10741643,-1
+89228456,10741643,3
+52060814,10741643,4
+millie,10741643,5
+123475054,10741643,4
+50124221,10741643,4
+116007343,10741643,5
+85245250,10741643,3
+52615010,10741643,4
+suzyfine,10741643,5
+3622994,10741643,4
+yutingamy,10741643,3
+min1,10741643,5
+86327597,10741643,5
+wxrygbcl,10741643,4
+naschris,10741643,4
+fish.in.bottle,10741643,3
+127406348,10741643,5
+3954052,10741643,4
+rajorAn,10741643,4
+79586392,10741643,5
+61271737,10741643,4
+61271737,10741643,4
+69997802,10741643,4
+45461017,10741643,5
+64076867,10741643,4
+87820826,10741643,4
+65296951,10741643,5
+chaossss,10741643,5
+38397417,10741643,4
+zhuobielin,10741643,3
+2213454,10741643,3
+49891610,10741643,3
+mirror53,10741643,2
+83532433,10741643,5
+3903753,10741643,3
+91377042,10741643,1
+v99Alice,10741643,3
+66399520,10741643,3
+xfjzoe,10741643,4
+97306162,10741643,5
+111745071,10741643,5
+remainme,10741643,5
+69572287,10741643,3
+23819448,10741643,4
+69276318,10741643,4
+NINEYR,10741643,3
+2989826,10741643,5
+3010221,10741643,4
+42468760,10741643,-1
+70662345,10741643,4
+46668531,10741643,4
+wb_mike10,10741643,4
+91575456,10741643,4
+mavisa,10741643,3
+58075149,10741643,3
+58913556,10741643,5
+achen29,10741643,4
+1867292,10741643,4
+houx,10741643,5
+61040876,10741643,4
+47745204,10741643,4
+57880330,10741643,5
+xiaomi90,10741643,5
+sosofly,10741643,5
+70006548,10741643,4
+127348779,10741643,4
+bieshaohui,10741643,3
+127346626,10741643,4
+patrickxwong,10741643,5
+49813578,10741643,5
+echo520f1,10741643,5
+Hzone,10741643,-1
+122725527,10741643,5
+54308994,10741643,3
+yizhizou,10741643,4
+silvia2011,10741643,4
+46736455,10741643,4
+huichen,10741643,5
+99863115,10741643,4
+mikicute,10741643,4
+68771576,10741643,4
+qingqianyuxia,10741643,5
+idoit41,10741643,4
+2625374,10741643,3
+4549541,10741643,4
+29703329,10741643,4
+36810630,10741643,4
+39132503,10741643,4
+82357316,10741643,4
+98179826,10741643,4
+BarleyBarley,10741643,5
+vicid,10741643,5
+123984235,10741643,3
+67779609,10741643,4
+poppy0219,10741643,5
+54732272,10741643,4
+124027537,10741643,5
+80719948,10741643,4
+27886744,10741643,-1
+49539458,10741643,4
+126346633,10741643,5
+2778486,10741643,3
+mu2erlee,10741643,5
+2620783,10741643,4
+sjt641100358,10741643,4
+122788862,10741643,5
+33977432,10741643,3
+53737464,10741643,5
+55006462,10741643,4
+sofia1217,10741643,5
+88581281,10741643,5
+126702436,10741643,3
+56622513,10741643,4
+zoeterry,10741643,5
+suzon_deedee,10741643,4
+60768165,10741643,4
+quite-yacca,10741643,5
+sunflower0802,10741643,5
+alwaysrou,10741643,5
+zajm,10741643,3
+Zhang.Sonic,10741643,5
+xyhold,10741643,4
+77631133,10741643,4
+44520105,10741643,3
+luoying6,10741643,5
+housefuture,10741643,3
+70121595,10741643,4
+52033116,10741643,3
+84700364,10741643,-1
+65806426,10741643,5
+kikiyo,10741643,4
+61775961,10741643,4
+FORGET...,10741643,3
+leer7,10741643,4
+50708726,10741643,5
+64284331,10741643,5
+76898716,10741643,4
+anzhenyunyou,10741643,4
+logest,10741643,4
+56670282,10741643,2
+42622045,10741643,3
+93360072,10741643,4
+ADmoviemtime,10741643,5
+1530155,10741643,5
+hotowl,10741643,4
+yunfanle,10741643,4
+44599131,10741643,3
+20196112,10741643,5
+127083032,10741643,4
+63720056,10741643,3
+4160305,10741643,5
+83411110,10741643,5
+ZMB,10741643,4
+49348063,10741643,3
+124953430,10741643,4
+55484274,10741643,4
+34649584,10741643,4
+edisonme,10741643,4
+74172753,10741643,-1
+75448374,10741643,5
+29399686,10741643,5
+jinzimiao,10741643,5
+74871304,10741643,4
+56623440,10741643,4
+59945441,10741643,2
+52350612,10741643,4
+dengxian123,10741643,4
+Ferloco,10741643,4
+67370965,10741643,5
+92340097,10741643,-1
+57783014,10741643,3
+47423865,10741643,4
+3981876,10741643,5
+36556180,10741643,4
+1081410,10741643,5
+tintin_oh,10741643,-1
+67570635,10741643,4
+43215145,10741643,5
+49338392,10741643,-1
+earthchild,10741643,4
+71848384,10741643,5
+magic1029,10741643,3
+xiang_ge,10741643,4
+vipzshtomorrow,10741643,5
+26889834,10741643,4
+54669594,10741643,5
+51918666,10741643,5
+tsubomi_sun,10741643,3
+56941343,10741643,3
+53484226,10741643,2
+konglinghuanyin,10741643,3
+127108930,10741643,5
+66904102,10741643,5
+65713433,10741643,4
+SHSMJ-Z,10741643,4
+56169435,10741643,5
+49957120,10741643,4
+jeremery,10741643,4
+102902029,10741643,5
+Vicente_Gu,10741643,5
+southdrift,10741643,5
+mrlp,10741643,3
+3198636,10741643,3
+61542214,10741643,4
+ventus_lee,10741643,4
+4466010,10741643,4
+codepiano,10741643,-1
+2228783,10741643,4
+4743407,10741643,4
+claireqq,10741643,5
+aivae,10741643,4
+Jellyfish1993,10741643,5
+tshane,10741643,3
+yesnov,10741643,4
+4460530,10741643,5
+65086608,10741643,4
+46766109,10741643,5
+yunge1991,10741643,5
+1531343,10741643,4
+51163329,10741643,4
+xxxhui,10741643,4
+62087939,10741643,5
+47764024,10741643,4
+cici3,10741643,4
+65590938,10741643,4
+andk2181,10741643,5
+76117897,10741643,3
+49069432,10741643,3
+mylittletower,10741643,4
+57134566,10741643,5
+zizzyzizz,10741643,5
+62592798,10741643,3
+2561289,10741643,4
+seeing...,10741643,4
+xudi,10741643,4
+126948377,10741643,4
+65162153,10741643,2
+shuttlebug,10741643,5
+4239908,10741643,4
+39328555,10741643,3
+81317162,10741643,4
+63873840,10741643,4
+interestqiu,10741643,5
+brightwsx,10741643,5
+ET.papillon,10741643,3
+54759391,10741643,3
+4422335,10741643,4
+36304941,10741643,4
+31449811,10741643,5
+50164247,10741643,2
+61652772,10741643,2
+Sam_YF,10741643,4
+80729497,10741643,4
+50624143,10741643,4
+ifuya,10741643,4
+Y159258,10741643,4
+56769317,10741643,5
+layu,10741643,4
+wille,10741643,5
+49232578,10741643,5
+126273452,10741643,3
+74551006,10741643,5
+59849090,10741643,4
+82624141,10741643,5
+126975946,10741643,4
+122821584,10741643,4
+67781034,10741643,-1
+68749284,10741643,3
+lizny921,10741643,3
+14482100,10741643,5
+63881946,10741643,5
+121162406,10741643,5
+Qinxiao47,10741643,4
+76487332,10741643,5
+3416439,10741643,5
+62876165,10741643,5
+36295870,10741643,5
+125433332,10741643,4
+50970542,10741643,5
+MihoKomatsu,10741643,5
+sereinyao,10741643,5
+64672852,10741643,4
+Singreen,10741643,3
+82582111,10741643,4
+119903956,10741643,5
+eric9210,10741643,5
+51381772,10741643,5
+childdream,10741643,5
+longxsen,10741643,4
+57595575,10741643,5
+44645874,10741643,4
+ruiruiAnn,10741643,5
+120964846,10741643,5
+67375101,10741643,5
+49407701,10741643,3
+49366314,10741643,4
+axio,10741643,4
+108597970,10741643,4
+78606894,10741643,-1
+74044873,10741643,4
+hichai,10741643,3
+65190817,10741643,4
+walinee,10741643,5
+qingruoli,10741643,5
+29374473,10741643,4
+huaaforever,10741643,4
+qdy67oky57,10741643,5
+49662983,10741643,3
+56638281,10741643,3
+jessicapan,10741643,4
+74137880,10741643,5
+petiteChar,10741643,5
+samendoon,10741643,3
+61929412,10741643,3
+xfpeng,10741643,4
+1060646,10741643,4
+lightwings,10741643,3
+1634532,10741643,5
+asukayoshioka,10741643,3
+45193776,10741643,5
+59580132,10741643,3
+46646449,10741643,5
+77299768,10741643,3
+69071025,10741643,5
+1740354,10741643,5
+99973348,10741643,5
+47060979,10741643,4
+77245854,10741643,4
+80915603,10741643,4
+ET-Jac,10741643,5
+68695023,10741643,3
+17480239,10741643,4
+76716859,10741643,5
+80526243,10741643,3
+75189651,10741643,4
+jazzhippop,10741643,3
+80311414,10741643,4
+49991288,10741643,4
+64382489,10741643,4
+61100170,10741643,5
+2964464,10741643,4
+108682564,10741643,5
+80246281,10741643,1
+wennan_z,10741643,5
+65580896,10741643,5
+cici0617,10741643,5
+51882960,10741643,4
+34486036,10741643,5
+37234027,10741643,4
+shane_sha,10741643,3
+50766544,10741643,4
+36355818,10741643,4
+48250157,10741643,4
+58488318,10741643,4
+52277775,10741643,-1
+71654816,10741643,4
+aukry,10741643,5
+124288748,10741643,5
+14277787,10741643,5
+52636272,10741643,5
+7768202,10741643,3
+1222025,10741643,4
+48591645,10741643,3
+99473768,10741643,4
+71765627,10741643,4
+25635000,10741643,4
+72728384,10741643,4
+gudi,10741643,5
+53975509,10741643,4
+74701610,10741643,5
+3428014,10741643,4
+44735401,10741643,3
+47019925,10741643,4
+helenyouyi,10741643,4
+52098177,10741643,4
+infinitezxc,10741643,5
+80559391,10741643,3
+Robin0227,10741643,4
+67393303,10741643,2
+1654774,10741643,4
+1667625,10741643,5
+2606816,10741643,4
+cold_sophie,10741643,5
+77550069,10741643,5
+gongqiong,10741643,4
+chichaofan,10741643,4
+qiangqiangzhang,10741643,4
+4711331,10741643,5
+48878590,10741643,3
+2457455,10741643,5
+46689688,10741643,3
+87902611,10741643,-1
+43903711,10741643,5
+73168439,10741643,4
+lovebigmac,10741643,5
+48925676,10741643,5
+51838419,10741643,4
+justbella,10741643,5
+kite2002,10741643,3
+13535359,10741643,4
+43560923,10741643,5
+48874069,10741643,5
+LoveHugo,10741643,5
+63332533,10741643,5
+38781285,10741643,5
+xincheer,10741643,3
+74566437,10741643,5
+succiyan,10741643,5
+Echozhu,10741643,4
+88367720,10741643,4
+70043510,10741643,5
+66171228,10741643,3
+53989389,10741643,5
+51940752,10741643,4
+susan-no-home,10741643,3
+2607616,10741643,4
+joyinzone,10741643,3
+56276963,10741643,4
+MsXiaoxiao,10741643,4
+75184056,10741643,5
+46242801,10741643,-1
+39618439,10741643,4
+airro,10741643,4
+ask4more,10741643,-1
+46886998,10741643,5
+102885531,10741643,4
+56072564,10741643,-1
+52391581,10741643,2
+47139815,10741643,5
+41014466,10741643,5
+2673058,10741643,4
+53392958,10741643,4
+2190547,10741643,3
+uniconx,10741643,4
+54769561,10741643,3
+1371368,10741643,4
+ayake,10741643,5
+cc789,10741643,4
+114082783,10741643,5
+46062235,10741643,5
+78237245,10741643,5
+Cheung11,10741643,4
+92006969,10741643,5
+snowton,10741643,1
+3857210,10741643,4
+42680639,10741643,4
+85085943,10741643,5
+104152076,10741643,5
+yjk0313,10741643,5
+ilea,10741643,3
+4213240,10741643,4
+66602075,10741643,4
+80228830,10741643,2
+54270301,10741643,5
+cloudland0716,10741643,5
+59620866,10741643,5
+victorking1,10741643,5
+sleepinapril,10741643,4
+49220225,10741643,3
+fucklester,10741643,4
+nwl1991,10741643,5
+48806654,10741643,4
+58600041,10741643,4
+68597884,10741643,5
+69833341,10741643,5
+126546596,10741643,5
+74948535,10741643,3
+1489279,10741643,-1
+missunshine,10741643,5
+smellingcat,10741643,3
+62436915,10741643,5
+43208363,10741643,4
+muce033,10741643,4
+sylviasun2011,10741643,3
+59311720,10741643,5
+64318640,10741643,4
+MatinetHP,10741643,5
+52208903,10741643,5
+sweeper,10741643,4
+jeangiven,10741643,4
+60160104,10741643,5
+28197624,10741643,5
+yizhao,10741643,3
+36821087,10741643,5
+36038944,10741643,5
+49565536,10741643,-1
+57855892,10741643,3
+smilevicky,10741643,5
+ssdlh,10741643,4
+57098099,10741643,4
+zr90129,10741643,4
+mi-hang,10741643,5
+daisy28,10741643,4
+mashaoying,10741643,5
+47021546,10741643,5
+vividtime,10741643,4
+70780550,10741643,4
+9916832,10741643,4
+43809437,10741643,5
+123016491,10741643,5
+64117690,10741643,4
+4330146,10741643,4
+2999725,10741643,3
+102162546,10741643,3
+57365488,10741643,4
+socordia,10741643,5
+47338909,10741643,4
+62882653,10741643,4
+74103020,10741643,4
+79853603,10741643,4
+56887114,10741643,4
+2801179,10741643,5
+peggy1031,10741643,4
+56226480,10741643,4
+2052146,10741643,-1
+116471524,10741643,5
+lu960902,10741643,5
+IamV,10741643,5
+54642925,10741643,4
+2816693,10741643,4
+2360493,10741643,4
+93724180,10741643,5
+115849578,10741643,4
+39533104,10741643,5
+71648483,10741643,3
+homedrama,10741643,5
+cake221,10741643,4
+64450294,10741643,-1
+47361549,10741643,5
+zhtqqi,10741643,5
+46913971,10741643,4
+54373936,10741643,4
+Ira_Jing,10741643,4
+dashan1928,10741643,5
+78793402,10741643,4
+49706963,10741643,5
+2330715,10741643,4
+radiocock,10741643,-1
+54767282,10741643,5
+81335043,10741643,5
+3762146,10741643,2
+43883337,10741643,5
+107751146,10741643,3
+76878893,10741643,5
+51938291,10741643,3
+4640701,10741643,5
+iNodame,10741643,4
+cnfeat,10741643,4
+MR_grey,10741643,4
+119340382,10741643,4
+51325389,10741643,5
+4606752,10741643,5
+78487311,10741643,5
+70129406,10741643,5
+nolike,10741643,3
+69187139,10741643,4
+shouding,10741643,4
+qiven,10741643,3
+55886490,10741643,3
+37948273,10741643,4
+pinkcat.w,10741643,-1
+4521975,10741643,4
+22043363,10741643,4
+huangjingJude,10741643,5
+102617597,10741643,5
+70430819,10741643,1
+122833017,10741643,3
+60069124,10741643,4
+4461612,10741643,2
+49921068,10741643,4
+63422177,10741643,3
+58771514,10741643,4
+H.C.,10741643,4
+3212190,10741643,5
+fumeng7,10741643,3
+adrian.chai.au,10741643,5
+80791412,10741643,5
+sam_smile,10741643,4
+57930591,10741643,4
+39670803,10741643,4
+2447540,10741643,3
+moenning,10741643,5
+nushou,10741643,-1
+119353813,10741643,5
+91081139,10741643,5
+4263312,10741643,4
+2539331,10741643,-1
+89747008,10741643,5
+68542833,10741643,4
+103047573,10741643,4
+lalalaSun1022,10741643,-1
+extrahandsome,10741643,3
+125495885,10741643,3
+58634950,10741643,5
+54345196,10741643,4
+53586597,10741643,5
+84698699,10741643,4
+WildHorse2012,10741643,5
+49197596,10741643,4
+ohghost,10741643,-1
+112902824,10741643,5
+126116154,10741643,4
+67882810,10741643,5
+47542536,10741643,4
+44919145,10741643,4
+56871206,10741643,4
+1707210,10741643,3
+50833058,10741643,5
+quan1989cheng,10741643,4
+84603183,10741643,5
+42190807,10741643,5
+107635262,10741643,5
+seventian,10741643,4
+67146448,10741643,4
+angelina.ae,10741643,4
+ashwind,10741643,4
+47390114,10741643,4
+MDHD,10741643,5
+50657706,10741643,4
+46152001,10741643,5
+31438257,10741643,5
+yangqiaohe,10741643,3
+wangxiaoqing,10741643,4
+Jh1205,10741643,5
+82497315,10741643,5
+47187983,10741643,4
+ckino,10741643,4
+2490892,10741643,5
+82456210,10741643,4
+22930383,10741643,5
+58858728,10741643,4
+zhhsbkl,10741643,4
+119238337,10741643,5
+mandy087,10741643,3
+77116533,10741643,5
+67130132,10741643,5
+59797746,10741643,5
+114504989,10741643,4
+imhyejin,10741643,5
+1998897,10741643,5
+49931222,10741643,3
+al1ene,10741643,5
+85665063,10741643,4
+3977925,10741643,3
+54610354,10741643,-1
+leexiang,10741643,3
+82980188,10741643,4
+1672417,10741643,4
+14904352,10741643,4
+52859781,10741643,2
+yuanzideweiba,10741643,4
+wendyblueberry,10741643,4
+53549235,10741643,5
+LuckyStrikeNero,10741643,-1
+54930854,10741643,4
+QiangL,10741643,5
+62856287,10741643,4
+58310222,10741643,3
+3726789,10741643,4
+49891918,10741643,5
+103421695,10741643,5
+17991181,10741643,4
+66867402,10741643,4
+66860143,10741643,4
+85391551,10741643,4
+xiaoyudlut,10741643,4
+Aurour,10741643,4
+70539132,10741643,5
+61189952,10741643,5
+xiaocheng88,10741643,5
+kimimomo520,10741643,5
+skynland0,10741643,5
+luvsoon,10741643,5
+80354020,10741643,5
+123545109,10741643,4
+58716073,10741643,3
+nhjieme,10741643,4
+seasonart,10741643,4
+2587478,10741643,3
+51043856,10741643,5
+51737601,10741643,4
+50791577,10741643,4
+blunting,10741643,3
+57337865,10741643,4
+l0kpan,10741643,4
+48793243,10741643,5
+52784441,10741643,3
+40506213,10741643,5
+41289527,10741643,5
+tarotarotaro,10741643,5
+languheshang,10741643,5
+4367069,10741643,4
+45639608,10741643,5
+77353675,10741643,5
+125847382,10741643,4
+60222551,10741643,3
+124777465,10741643,5
+108172176,10741643,5
+80516818,10741643,4
+52706862,10741643,5
+82706771,10741643,4
+kiwihello,10741643,4
+87978530,10741643,5
+23813152,10741643,5
+4673381,10741643,4
+xingbenwuchang,10741643,-1
+joymontana,10741643,3
+52214552,10741643,5
+mindlee,10741643,4
+46325014,10741643,5
+xpilot,10741643,5
+37341494,10741643,4
+fan0208,10741643,4
+125793420,10741643,4
+jiangdasik,10741643,4
+53853520,10741643,5
+15146438,10741643,4
+kuanson,10741643,5
+fivemins,10741643,3
+2510654,10741643,4
+58802831,10741643,4
+90950399,10741643,3
+xmly13,10741643,5
+75952866,10741643,3
+plantegg,10741643,5
+59192273,10741643,4
+47054399,10741643,4
+91036793,10741643,5
+63589848,10741643,5
+54379769,10741643,4
+76150711,10741643,5
+100734380,10741643,4
+62154625,10741643,5
+81193574,10741643,4
+47659966,10741643,5
+cyishere,10741643,4
+81163129,10741643,3
+wwwsxst,10741643,4
+xiaopin19,10741643,4
+50125049,10741643,5
+haoimagine,10741643,5
+sunsun_w,10741643,4
+harjol,10741643,4
+luoxupei,10741643,5
+87355390,10741643,4
+2329298,10741643,4
+4128800,10741643,5
+70821619,10741643,5
+46352811,10741643,4
+108728687,10741643,3
+87043132,10741643,5
+103172934,10741643,4
+3729959,10741643,4
+mismamadera,10741643,5
+23675714,10741643,5
+4441887,10741643,5
+gigisxq,10741643,5
+37968335,10741643,5
+114728275,10741643,5
+62334757,10741643,5
+51057351,10741643,3
+76160101,10741643,5
+loveyu3317,10741643,5
+61366288,10741643,4
+65713488,10741643,5
+McAfee,10741643,4
+crystal12345678,10741643,4
+119451467,10741643,4
+16943300,10741643,5
+37825670,10741643,-1
+mingren2588,10741643,5
+58137202,10741643,5
+bloodsasha,10741643,3
+58617905,10741643,5
+3554349,10741643,4
+51772090,10741643,1
+19699130,10741643,5
+4136457,10741643,5
+67870287,10741643,3
+3358010,10741643,3
+57917858,10741643,3
+joyce1991,10741643,4
+67864173,10741643,5
+63651252,10741643,4
+2386302,10741643,5
+53846503,10741643,4
+klb-3713,10741643,5
+jiangziwen,10741643,4
+xueyupipi,10741643,5
+lemoon7,10741643,5
+122244041,10741643,3
+amwindy,10741643,5
+hexuanpomon,10741643,4
+53144791,10741643,4
+50599216,10741643,-1
+tev,10741643,4
+54215499,10741643,4
+40867802,10741643,5
+1974570,10741643,4
+Llewoen,10741643,5
+35595189,10741643,3
+sungmaki,10741643,5
+raybox,10741643,4
+121740683,10741643,3
+52799019,10741643,5
+3301137,10741643,5
+auv1990,10741643,5
+cicifer,10741643,4
+101239338,10741643,4
+42632136,10741643,3
+96629948,10741643,3
+eyuyuyuyu,10741643,5
+tyx033333,10741643,5
+50587917,10741643,3
+maxiaoxi9527,10741643,5
+63000903,10741643,5
+bebusybee,10741643,4
+48548955,10741643,4
+60005455,10741643,5
+49399221,10741643,5
+42132888,10741643,4
+83653194,10741643,4
+87642971,10741643,5
+maomao3644,10741643,5
+91222743,10741643,4
+52226752,10741643,4
+1795787,10741643,4
+cdz0516,10741643,4
+81089052,10741643,4
+117804515,10741643,3
+xiaoming_926,10741643,5
+zleee,10741643,4
+49429795,10741643,4
+47307026,10741643,5
+72720004,10741643,5
+kururu,10741643,5
+65625225,10741643,1
+35059047,10741643,5
+jooey,10741643,4
+52906969,10741643,4
+zoeeeiill,10741643,4
+surexwe,10741643,5
+25977616,10741643,4
+59740138,10741643,4
+jqong1,10741643,4
+66381242,10741643,5
+3202437,10741643,5
+45965937,10741643,5
+ohiyo,10741643,2
+zechewang007,10741643,2
+2877708,10741643,5
+nevertry,10741643,4
+2843086,10741643,5
+Cllindaoud,10741643,3
+duanduankong,10741643,3
+wsyta,10741643,4
+4374604,10741643,3
+53854833,10741643,4
+1354561,10741643,2
+haroolovbom,10741643,5
+57780385,10741643,5
+57780385,10741643,5
+48258389,10741643,-1
+108002657,10741643,5
+58872297,10741643,4
+liutengzhi,10741643,4
+sdamn,10741643,4
+2624414,10741643,4
+ivy_lmj,10741643,3
+55556430,10741643,-1
+zynhello,10741643,5
+49086768,10741643,4
+47232282,10741643,5
+kaprobear,10741643,5
+84410222,10741643,4
+fevotw,10741643,2
+103610487,10741643,5
+122886150,10741643,5
+67503021,10741643,4
+78183847,10741643,4
+cdorange,10741643,3
+2199992,10741643,4
+81483152,10741643,3
+sanhao333,10741643,3
+muxieyes,10741643,3
+jxshuo,10741643,5
+geekky,10741643,3
+ccav1,10741643,-1
+suser,10741643,2
+61137197,10741643,5
+flyzy999,10741643,5
+65535805,10741643,3
+78663925,10741643,4
+46813003,10741643,5
+51766927,10741643,4
+27894573,10741643,5
+61525287,10741643,5
+leokelan,10741643,3
+120797263,10741643,5
+57149098,10741643,4
+61548122,10741643,5
+sankemaobinggan,10741643,5
+2606901,10741643,4
+2294404,10741643,3
+ding1yi,10741643,3
+48707537,10741643,5
+98591417,10741643,4
+76943413,10741643,3
+yoyo5411,10741643,4
+43756492,10741643,5
+Jalapa,10741643,5
+3350882,10741643,4
+52001200,10741643,4
+35380385,10741643,3
+chenxi116,10741643,-1
+50932552,10741643,4
+55662409,10741643,4
+53227132,10741643,4
+63247040,10741643,-1
+61323163,10741643,5
+jiemopaofu,10741643,5
+TaTaxxxx,10741643,5
+61742449,10741643,5
+1958578,10741643,4
+tumipiace,10741643,5
+4500599,10741643,3
+30477435,10741643,5
+2154904,10741643,3
+6243740,10741643,4
+80681000,10741643,4
+sabrina3310,10741643,5
+4712087,10741643,5
+4285342,10741643,4
+andichou,10741643,4
+1545864,10741643,4
+27091040,10741643,3
+44266204,10741643,5
+sunnyhk,10741643,4
+chenchenchenhs,10741643,-1
+58027563,10741643,4
+4134812,10741643,4
+67747429,10741643,5
+4203522,10741643,4
+44855834,10741643,5
+45291333,10741643,4
+103125290,10741643,5
+73818368,10741643,4
+shepherded,10741643,4
+82721964,10741643,-1
+64750790,10741643,4
+wengqian053,10741643,5
+65645730,10741643,5
+double_wen,10741643,5
+saintdump,10741643,3
+guosong0804,10741643,5
+58189944,10741643,5
+36757912,10741643,2
+61688228,10741643,5
+32850523,10741643,4
+li620toyfly,10741643,4
+50165261,10741643,4
+50165261,10741643,4
+103081138,10741643,5
+53344657,10741643,4
+14327084,10741643,5
+quantum-rabbit,10741643,5
+trampbowang,10741643,1
+jes77,10741643,5
+72259654,10741643,3
+2374050,10741643,3
+bill86101,10741643,5
+44923935,10741643,3
+89931172,10741643,4
+honeyhui,10741643,4
+43961399,10741643,5
+4251957,10741643,-1
+56821325,10741643,3
+46909734,10741643,2
+3157228,10741643,4
+3418984,10741643,3
+50346508,10741643,-1
+andrea_tang,10741643,5
+67061409,10741643,4
+120517423,10741643,3
+54504933,10741643,3
+43002843,10741643,4
+penglai59,10741643,4
+hyly,10741643,5
+supperzhu,10741643,3
+jujue,10741643,4
+77578341,10741643,4
+44228798,10741643,5
+makachina,10741643,4
+49308671,10741643,5
+2391368,10741643,4
+annsjl,10741643,4
+16348172,10741643,5
+106597439,10741643,4
+dunn813,10741643,4
+grownups,10741643,4
+59386777,10741643,5
+grownups,10741643,4
+59386777,10741643,5
+65365565,10741643,3
+muini,10741643,4
+60040964,10741643,5
+48873151,10741643,5
+doubandengjian,10741643,4
+kyl,10741643,2
+lilylee1023,10741643,3
+42270798,10741643,4
+weyal,10741643,4
+honeydoris,10741643,4
+103343443,10741643,4
+62410779,10741643,4
+uuuoioi,10741643,5
+Nibia,10741643,5
+67936485,10741643,5
+kalviny,10741643,4
+97504128,10741643,5
+aeirolu,10741643,4
+124981586,10741643,5
+little_kevin,10741643,5
+106596511,10741643,4
+64430270,10741643,3
+soranya,10741643,3
+122854254,10741643,3
+zzzlanmao,10741643,4
+snailjia,10741643,5
+101288865,10741643,5
+1844983,10741643,4
+115362203,10741643,5
+120322125,10741643,3
+121651782,10741643,4
+27978918,10741643,5
+41378125,10741643,5
+64109076,10741643,4
+lesones,10741643,4
+84151196,10741643,5
+45594123,10741643,4
+17004593,10741643,4
+47345728,10741643,2
+52917026,10741643,5
+sona302,10741643,-1
+117220122,10741643,5
+46387207,10741643,3
+120042410,10741643,5
+a13888241709,10741643,5
+45515472,10741643,4
+sevennq,10741643,3
+LMG,10741643,1
+78905190,10741643,4
+2445695,10741643,3
+rrppff,10741643,4
+120828757,10741643,4
+48905575,10741643,3
+66369016,10741643,5
+46862579,10741643,2
+anison,10741643,3
+48798494,10741643,5
+7549744,10741643,5
+51417189,10741643,4
+Renaissance_w,10741643,4
+49954576,10741643,5
+48491449,10741643,5
+62749849,10741643,4
+25585138,10741643,5
+66632216,10741643,5
+57848317,10741643,4
+83524937,10741643,4
+49884766,10741643,5
+missellie,10741643,3
+54119339,10741643,5
+119374507,10741643,3
+85333070,10741643,3
+52767062,10741643,3
+Stephon-Marbury,10741643,5
+28870484,10741643,5
+46430154,10741643,5
+kkyyoo,10741643,5
+50118479,10741643,5
+51990360,10741643,4
+81097879,10741643,4
+68800261,10741643,3
+75516928,10741643,4
+73311977,10741643,4
+zhaimi,10741643,5
+119120514,10741643,5
+jichao1987,10741643,5
+lankiki7,10741643,2
+Qiao929,10741643,5
+havefunlovelife,10741643,5
+angelstone,10741643,4
+103251122,10741643,5
+on1ooker,10741643,4
+90582258,10741643,5
+48312862,10741643,5
+45283318,10741643,4
+119881624,10741643,4
+SokSolon,10741643,4
+106514817,10741643,5
+66203352,10741643,3
+minhom,10741643,5
+76802075,10741643,3
+doremi_me,10741643,4
+65764407,10741643,5
+nighteye,10741643,5
+phnix,10741643,5
+candysgarden,10741643,4
+december.L,10741643,1
+njtintin,10741643,4
+luoyuhu,10741643,2
+32033776,10741643,4
+47348145,10741643,5
+chen8434,10741643,5
+47265063,10741643,5
+geniuskathy,10741643,5
+echo0402,10741643,4
+bellewang,10741643,5
+luxifero,10741643,2
+53319918,10741643,4
+60420717,10741643,4
+vipdayu,10741643,5
+76815966,10741643,5
+yangyu870118,10741643,4
+1590523,10741643,3
+65272841,10741643,4
+2348623,10741643,4
+58081877,10741643,3
+56021804,10741643,4
+100422638,10741643,4
+33653602,10741643,-1
+2813595,10741643,5
+30917359,10741643,5
+122450255,10741643,4
+57724049,10741643,4
+chachal1,10741643,5
+50147481,10741643,3
+hudieyy89,10741643,5
+dna3,10741643,4
+67992217,10741643,5
+94563993,10741643,4
+3312608,10741643,4
+55357697,10741643,4
+miissa,10741643,5
+jerry6123,10741643,3
+71547837,10741643,5
+zhouzh,10741643,3
+39646892,10741643,4
+Miss9Y,10741643,4
+53394663,10741643,4
+68966981,10741643,5
+80289640,10741643,-1
+74680638,10741643,4
+2177678,10741643,5
+58083058,10741643,5
+57084794,10741643,5
+61750289,10741643,5
+124669689,10741643,3
+121764044,10741643,3
+67673869,10741643,4
+mtz,10741643,4
+72626479,10741643,4
+njlhwx,10741643,5
+120815285,10741643,3
+shinysun,10741643,4
+hjing1993,10741643,4
+vivi112,10741643,4
+Isabella_baby,10741643,5
+121366919,10741643,5
+98149832,10741643,4
+45544860,10741643,4
+74973391,10741643,5
+Petrick628,10741643,5
+22456771,10741643,5
+76290755,10741643,4
+55984415,10741643,4
+46967065,10741643,3
+69948545,10741643,4
+62237138,10741643,4
+bluicezhen,10741643,5
+101359749,10741643,3
+maggieisanangel,10741643,3
+ddkkh,10741643,4
+13625110,10741643,5
+kumacyann,10741643,5
+122331036,10741643,4
+4333851,10741643,5
+camel3166,10741643,2
+74193285,10741643,4
+54779295,10741643,3
+2142279,10741643,5
+fulingke,10741643,4
+64518708,10741643,5
+44246526,10741643,3
+84849865,10741643,4
+52413397,10741643,3
+hope.wish.will,10741643,4
+Ocean52,10741643,5
+CraziLaura,10741643,3
+120883441,10741643,3
+rityou,10741643,5
+yushengchong,10741643,4
+3540443,10741643,5
+3922372,10741643,5
+liuanan0606,10741643,5
+43556775,10741643,4
+60980785,10741643,4
+46923113,10741643,5
+rinkky,10741643,3
+WWW920225,10741643,4
+66576953,10741643,5
+45203267,10741643,5
+51657974,10741643,4
+covering,10741643,3
+mayukijuju,10741643,4
+77216393,10741643,3
+33754763,10741643,4
+77758955,10741643,3
+Edward_m,10741643,4
+PANPANsWORLD,10741643,4
+Jaytaoo,10741643,4
+102609702,10741643,4
+3741229,10741643,4
+nianyis,10741643,3
+3481635,10741643,4
+66038878,10741643,4
+shuang331,10741643,4
+laperseus,10741643,4
+guyuejiayu,10741643,5
+48032170,10741643,5
+88412250,10741643,5
+weichuu,10741643,5
+flora0013,10741643,4
+113068656,10741643,4
+68072626,10741643,-1
+47902481,10741643,-1
+AokiEmi,10741643,3
+51010605,10741643,5
+freeinsect,10741643,5
+54829004,10741643,-1
+50137334,10741643,5
+45127178,10741643,3
+124454581,10741643,4
+renth,10741643,4
+49073345,10741643,3
+40727588,10741643,5
+lm9527,10741643,3
+60788836,10741643,4
+struggleGB,10741643,4
+61207511,10741643,4
+85621966,10741643,5
+21682953,10741643,5
+34816783,10741643,4
+lazelanka,10741643,4
+geniusfei,10741643,5
+54265487,10741643,3
+2377434,10741643,4
+yoocat,10741643,4
+75348259,10741643,4
+ieattoomuch,10741643,5
+57301891,10741643,5
+lidiss,10741643,-1
+121562470,10741643,3
+59739922,10741643,4
+49469225,10741643,5
+82534167,10741643,4
+57931932,10741643,4
+milkwhite,10741643,5
+51493934,10741643,3
+62153411,10741643,-1
+M.iya,10741643,3
+50675507,10741643,5
+kiyashizhimao,10741643,5
+48286955,10741643,4
+62936503,10741643,5
+governorofwuxi,10741643,4
+mcdullsu,10741643,3
+15385754,10741643,4
+uni-warm,10741643,5
+50068065,10741643,2
+iamnotpotato,10741643,3
+61413214,10741643,5
+63161358,10741643,4
+3061104,10741643,4
+1437754,10741643,4
+zxysyz,10741643,4
+sephilish,10741643,2
+44739582,10741643,3
+62314563,10741643,5
+44542116,10741643,3
+67097881,10741643,5
+3355786,10741643,4
+sharplhl,10741643,3
+36768860,10741643,1
+70926029,10741643,4
+113287715,10741643,3
+59760298,10741643,5
+ccj0212,10741643,4
+122686185,10741643,4
+56064396,10741643,3
+sincerelysophia,10741643,3
+56475433,10741643,5
+turnhs,10741643,5
+piaoyull,10741643,4
+3579550,10741643,5
+101250777,10741643,5
+3957139,10741643,5
+bbass,10741643,2
+123366348,10741643,4
+33906135,10741643,2
+52424511,10741643,4
+56049033,10741643,3
+game115,10741643,4
+throughtherock,10741643,5
+58089982,10741643,4
+119860885,10741643,4
+87373773,10741643,5
+45689152,10741643,4
+drinkme,10741643,4
+57591346,10741643,5
+77459141,10741643,5
+115555325,10741643,-1
+52106146,10741643,4
+4210892,10741643,2
+57010104,10741643,5
+42708187,10741643,4
+62206199,10741643,4
+50411871,10741643,5
+kentaroo,10741643,4
+3924801,10741643,4
+40488240,10741643,5
+4060704,10741643,5
+66669225,10741643,5
+124215818,10741643,4
+1490902,10741643,3
+44592602,10741643,5
+123422446,10741643,4
+fengyousifang,10741643,5
+kime77,10741643,5
+51379336,10741643,5
+55766145,10741643,5
+81546686,10741643,3
+38222446,10741643,5
+xuyansong,10741643,3
+53857648,10741643,4
+67918582,10741643,4
+1956367,10741643,4
+4110643,10741643,3
+wanghuzou,10741643,2
+coldyue,10741643,4
+70239702,10741643,4
+27764324,10741643,5
+3611128,10741643,3
+PepsiPussy,10741643,3
+qiyuemuxu,10741643,5
+3693808,10741643,3
+90201276,10741643,5
+95572191,10741643,5
+zinlee,10741643,4
+sybil,10741643,5
+HYDESHEL0909,10741643,5
+x_c,10741643,4
+60230223,10741643,4
+64321061,10741643,4
+crayonz,10741643,4
+100639145,10741643,3
+1267094,10741643,4
+2853604,10741643,1
+60095742,10741643,5
+musichellsing,10741643,4
+1451542,10741643,4
+55347894,10741643,5
+56227363,10741643,3
+122560765,10741643,4
+66995858,10741643,4
+71180219,10741643,4
+10729977,10741643,4
+116728333,10741643,3
+75111742,10741643,3
+50516869,10741643,4
+66706238,10741643,5
+2842937,10741643,5
+jackiekuo,10741643,5
+liyang840211,10741643,5
+tracyxin,10741643,5
+62743500,10741643,5
+49095374,10741643,5
+9628483,10741643,5
+Dasiycat,10741643,4
+oneandone,10741643,4
+55654914,10741643,5
+62423565,10741643,3
+62479871,10741643,5
+66284726,10741643,5
+icekiller,10741643,4
+82547964,10741643,4
+99399047,10741643,5
+62450111,10741643,5
+50095584,10741643,5
+richardjay,10741643,4
+56602541,10741643,5
+49842297,10741643,3
+taichele,10741643,3
+duokuluo,10741643,4
+likounin,10741643,4
+liangsnowru,10741643,4
+120431584,10741643,5
+64543096,10741643,4
+EAVAON,10741643,4
+iamzhanggui,10741643,4
+122401606,10741643,5
+116401780,10741643,4
+josiezs,10741643,5
+hellowind,10741643,3
+4202335,10741643,4
+silentwind,10741643,4
+52690453,10741643,5
+29620241,10741643,5
+xiaoxinadd,10741643,5
+120043439,10741643,3
+4454692,10741643,4
+62503467,10741643,2
+3513714,10741643,4
+22818127,10741643,5
+103168587,10741643,5
+54443073,10741643,5
+45390521,10741643,4
+44361116,10741643,3
+69091213,10741643,4
+62979534,10741643,4
+puccaandhippo,10741643,4
+michaelhhu,10741643,5
+2828074,10741643,4
+3050625,10741643,5
+ruoyezixuan,10741643,5
+98728218,10741643,2
+57006141,10741643,4
+xiaozhi0226,10741643,4
+wayneclam,10741643,2
+54915314,10741643,5
+libihui,10741643,5
+94556650,10741643,4
+sun-sun-emma,10741643,4
+61069338,10741643,3
+39663881,10741643,4
+ironCC,10741643,4
+zorrozj,10741643,5
+80537833,10741643,3
+66633074,10741643,5
+78955356,10741643,3
+bulijite,10741643,5
+sunA1n711,10741643,4
+63189940,10741643,5
+67145366,10741643,5
+58338006,10741643,4
+85350057,10741643,5
+56164676,10741643,4
+wineice,10741643,5
+61729282,10741643,5
+36082839,10741643,4
+62124340,10741643,4
+49002817,10741643,4
+Nemoyo,10741643,5
+mason0128,10741643,3
+2313252,10741643,3
+27624982,10741643,4
+59202996,10741643,4
+41236968,10741643,5
+54821248,10741643,5
+cai1st,10741643,4
+79897130,10741643,3
+49198837,10741643,4
+wakemecn,10741643,5
+LynS,10741643,4
+ananyuki,10741643,5
+12094672,10741643,-1
+63679603,10741643,3
+49937909,10741643,4
+savvy12,10741643,4
+63958025,10741643,5
+121657066,10741643,3
+62658973,10741643,5
+34894274,10741643,4
+59077643,10741643,3
+53778781,10741643,3
+91439991,10741643,4
+92326873,10741643,4
+yexiaohong,10741643,5
+49130506,10741643,5
+xlxiaolei,10741643,5
+107495405,10741643,5
+54814514,10741643,3
+21212541,10741643,3
+leafly8,10741643,3
+46963529,10741643,3
+51588082,10741643,5
+5214442,10741643,-1
+summernight1cn,10741643,4
+wangliuwei,10741643,4
+43334018,10741643,4
+57816467,10741643,4
+hshmm,10741643,5
+50570932,10741643,5
+OphiuchusPalace,10741643,4
+1971105,10741643,1
+80786128,10741643,4
+slowtime,10741643,4
+Missky_db,10741643,3
+81743423,10741643,5
+51880150,10741643,3
+78214422,10741643,5
+sylvianonymous,10741643,3
+66190676,10741643,-1
+63788918,10741643,3
+flowerz,10741643,4
+dudu0123,10741643,3
+113635216,10741643,-1
+cccrt,10741643,2
+79309643,10741643,4
+DarkKate,10741643,4
+3085840,10741643,5
+43665094,10741643,5
+123645263,10741643,4
+piaoweier,10741643,4
+92926800,10741643,4
+42897156,10741643,4
+48097673,10741643,5
+3601002,10741643,3
+linzhihao886,10741643,5
+ssmustbelavas,10741643,4
+40929048,10741643,5
+32650866,10741643,3
+dearjan,10741643,5
+49586963,10741643,5
+42968297,10741643,4
+2162982,10741643,4
+webweaver,10741643,4
+56677102,10741643,4
+ImDora,10741643,4
+12170978,10741643,4
+58489881,10741643,4
+51054900,10741643,2
+changbrook,10741643,3
+67575567,10741643,4
+54415930,10741643,5
+73856461,10741643,4
+43197947,10741643,4
+53366469,10741643,5
+17775259,10741643,4
+3249318,10741643,4
+yishenmanli,10741643,4
+48783877,10741643,5
+57533785,10741643,5
+49282329,10741643,4
+59554998,10741643,5
+64755503,10741643,5
+52835573,10741643,5
+hana0811,10741643,3
+18046588,10741643,5
+27704994,10741643,5
+54145451,10741643,4
+50117171,10741643,3
+4801513,10741643,4
+haobajiuzheyang,10741643,4
+80024991,10741643,5
+gjr1027,10741643,3
+3431847,10741643,4
+4723158,10741643,5
+123543090,10741643,5
+habulie,10741643,5
+58064521,10741643,3
+jessy522,10741643,3
+1028676,10741643,4
+sumifight,10741643,4
+69488119,10741643,4
+Ginatea,10741643,3
+guang1992,10741643,4
+dor0229,10741643,-1
+43901390,10741643,4
+neigeshui,10741643,3
+53841308,10741643,4
+82624798,10741643,5
+Jhopassion,10741643,4
+43725091,10741643,4
+43921829,10741643,4
+42069458,10741643,4
+104427009,10741643,4
+45543897,10741643,5
+35703098,10741643,3
+63731143,10741643,5
+dff1230,10741643,5
+vivistar,10741643,5
+airforcel,10741643,5
+67565097,10741643,4
+53920626,10741643,4
+smallwinnie,10741643,4
+zpavel,10741643,5
+59507241,10741643,5
+116703616,10741643,5
+dorothyzhang,10741643,5
+purplemoon,10741643,4
+43910063,10741643,5
+4470750,10741643,4
+59398238,10741643,5
+sohojiawei,10741643,4
+51227416,10741643,3
+98021283,10741643,5
+41755719,10741643,5
+81003990,10741643,4
+niazion,10741643,3
+52536969,10741643,3
+49419366,10741643,4
+37162207,10741643,5
+love-99,10741643,4
+caoheng,10741643,5
+2095236,10741643,3
+jackchen,10741643,4
+50160344,10741643,4
+gawain,10741643,3
+46311374,10741643,4
+119543004,10741643,4
+zuidadepigu,10741643,5
+cpcharitypan,10741643,5
+zhangbolin,10741643,4
+sidneybig,10741643,4
+45543286,10741643,4
+61554500,10741643,3
+77571393,10741643,5
+1381589,10741643,4
+66642487,10741643,5
+121917998,10741643,3
+84582390,10741643,5
+54419821,10741643,4
+Jews.,10741643,5
+zzfznp,10741643,3
+liluyang0817,10741643,3
+ets,10741643,4
+51156582,10741643,4
+41030554,10741643,5
+aleung,10741643,3
+aleung,10741643,3
+Hans_Du,10741643,5
+72118465,10741643,-1
+42747728,10741643,4
+102810787,10741643,4
+hejiangwin,10741643,5
+65173707,10741643,4
+linz0223,10741643,5
+maydanji,10741643,5
+zommy,10741643,3
+6474153,10741643,5
+63325811,10741643,5
+rpsh,10741643,4
+11499024,10741643,4
+yangjiangyou,10741643,4
+51489383,10741643,3
+tykm,10741643,4
+64104549,10741643,4
+48863257,10741643,4
+70481793,10741643,5
+bongar,10741643,5
+trysta_lyu,10741643,5
+wdcxqs,10741643,3
+45506080,10741643,4
+63503398,10741643,5
+14406091,10741643,5
+91814028,10741643,3
+96513897,10741643,4
+56447812,10741643,4
+78692308,10741643,4
+qqb143,10741643,4
+76161367,10741643,4
+gdyan2001,10741643,3
+nrz1101,10741643,5
+55840513,10741643,4
+56708927,10741643,4
+zhiweieyu,10741643,5
+thesurfingleaf,10741643,4
+FrauJoy,10741643,4
+79834547,10741643,4
+31854340,10741643,5
+64718233,10741643,-1
+84334911,10741643,4
+50095393,10741643,3
+2670645,10741643,5
+blanchexiao,10741643,5
+2105861,10741643,3
+63250313,10741643,4
+3579968,10741643,5
+42368147,10741643,3
+50046316,10741643,5
+4143335,10741643,4
+67959310,10741643,4
+59375279,10741643,5
+Artouria,10741643,5
+tutuaudio,10741643,5
+Kayee.C,10741643,5
+Liwei_big,10741643,3
+122981729,10741643,3
+80996314,10741643,2
+Gmosquito,10741643,4
+ashleychen1213,10741643,3
+Sunshinesagain,10741643,3
+4105222,10741643,4
+10918686,10741643,3
+37938879,10741643,5
+shesgone,10741643,4
+50258293,10741643,5
+leoglory,10741643,4
+70458781,10741643,5
+LesRechel,10741643,5
+muumuu,10741643,5
+an1985,10741643,5
+63105919,10741643,3
+thismortalcoil,10741643,4
+1831746,10741643,2
+47733868,10741643,5
+77577203,10741643,4
+4616027,10741643,4
+cjx544102601,10741643,5
+coxat,10741643,4
+rumpelstiltskin,10741643,5
+milerano,10741643,4
+2978891,10741643,3
+71910303,10741643,4
+viwingsleung,10741643,3
+62774592,10741643,5
+luziyujiang,10741643,5
+bleachxiaobai,10741643,4
+2217071,10741643,4
+77140197,10741643,5
+4033427,10741643,4
+dongjh,10741643,4
+51469731,10741643,3
+120835880,10741643,4
+woshihaoren123,10741643,3
+53576224,10741643,5
+61059513,10741643,-1
+daisyhuhu0929,10741643,5
+81639579,10741643,4
+tobekalorce,10741643,4
+53631000,10741643,4
+62280098,10741643,3
+hehechishiba,10741643,3
+2349154,10741643,5
+68207288,10741643,4
+i_bell,10741643,4
+72475852,10741643,5
+bxhOTZ,10741643,4
+62960950,10741643,4
+82245378,10741643,3
+2618544,10741643,4
+fruitcaffe,10741643,3
+33179901,10741643,4
+Ston3s,10741643,4
+joycew0318,10741643,4
+whisper,10741643,5
+50983408,10741643,4
+34601221,10741643,2
+51761967,10741643,3
+ketsu214,10741643,4
+76299986,10741643,5
+49191528,10741643,3
+xiaowuchao,10741643,4
+fushengqiang,10741643,4
+majormaureen,10741643,3
+4337367,10741643,5
+44105688,10741643,4
+54788709,10741643,4
+LilC,10741643,4
+misayxt,10741643,2
+48033637,10741643,4
+59893880,10741643,3
+57217580,10741643,5
+58983814,10741643,4
+122849454,10741643,4
+chengnanxuan,10741643,4
+64280895,10741643,2
+askingwindy,10741643,4
+taoxiaomeng,10741643,4
+61109941,10741643,5
+52259960,10741643,4
+2387348,10741643,3
+87095553,10741643,4
+62886660,10741643,5
+foolhangedman,10741643,2
+47558444,10741643,5
+zerayca,10741643,5
+61827402,10741643,5
+46988073,10741643,4
+chenyanluli,10741643,3
+60597045,10741643,3
+57142558,10741643,5
+50117779,10741643,4
+58523083,10741643,3
+74237278,10741643,4
+fpe99,10741643,5
+46091317,10741643,1
+37344562,10741643,4
+74932520,10741643,4
+57430309,10741643,2
+55437412,10741643,5
+71912308,10741643,5
+43977092,10741643,2
+gs21cn,10741643,4
+15294852,10741643,3
+84039736,10741643,4
+4353368,10741643,4
+36942754,10741643,4
+54776017,10741643,4
+64095681,10741643,5
+48086861,10741643,4
+60105733,10741643,4
+raitydove,10741643,4
+Endlessbeloved,10741643,5
+cooux,10741643,-1
+otnemem,10741643,5
+44356747,10741643,4
+78340131,10741643,4
+zhangliyuan91,10741643,4
+ddumplling,10741643,5
+Lokry666,10741643,4
+35012305,10741643,5
+60795536,10741643,4
+lsysiki,10741643,5
+35745537,10741643,5
+yangqianbao,10741643,4
+1743097,10741643,3
+weijjcd,10741643,4
+betterAlex,10741643,-1
+2866973,10741643,3
+aria066,10741643,5
+53919558,10741643,4
+dinnerlove,10741643,4
+1863442,10741643,5
+47079979,10741643,-1
+123011659,10741643,5
+51303010,10741643,3
+1383919,10741643,5
+54215342,10741643,4
+Helianthustree,10741643,4
+55596124,10741643,5
+vincent0007,10741643,5
+45795420,10741643,4
+miyamengsz,10741643,5
+122476573,10741643,5
+amake,10741643,3
+3783012,10741643,5
+Fia2mni,10741643,4
+66581287,10741643,5
+62732851,10741643,4
+lrzx,10741643,5
+45617852,10741643,4
+79918771,10741643,-1
+1617589,10741643,4
+33542230,10741643,3
+60522950,10741643,5
+72409759,10741643,5
+GLORIALOKI,10741643,4
+4560084,10741643,5
+60685986,10741643,4
+chenxiaodong,10741643,4
+esy0706,10741643,4
+67346668,10741643,4
+Michellekids,10741643,1
+18555862,10741643,5
+37102095,10741643,-1
+66779005,10741643,3
+79605736,10741643,4
+119543799,10741643,5
+63273276,10741643,3
+1521152,10741643,2
+coolorita,10741643,4
+83328709,10741643,3
+38780906,10741643,4
+74652601,10741643,4
+68795801,10741643,4
+suritu,10741643,4
+2327283,10741643,3
+bigmama,10741643,5
+93476152,10741643,5
+58942938,10741643,5
+60844857,10741643,4
+48482511,10741643,4
+49893874,10741643,3
+gyd,10741643,5
+40083978,10741643,5
+76449235,10741643,5
+50206708,10741643,3
+2456676,10741643,5
+therecomy,10741643,2
+99715877,10741643,4
+79978536,10741643,4
+121432553,10741643,4
+121575209,10741643,5
+58168348,10741643,4
+57880300,10741643,4
+80668042,10741643,4
+xago,10741643,5
+4103854,10741643,3
+50867193,10741643,4
+119460712,10741643,5
+46426968,10741643,4
+86466214,10741643,3
+Alex-boil,10741643,4
+108942456,10741643,3
+59323757,10741643,4
+50475722,10741643,4
+54682373,10741643,4
+79217059,10741643,5
+14440927,10741643,2
+sonicxs,10741643,5
+2915862,10741643,4
+2284784,10741643,4
+77048663,10741643,4
+pearltear,10741643,3
+fdid,10741643,4
+53577893,10741643,3
+connieqiao,10741643,5
+7018555,10741643,5
+3322526,10741643,5
+29362776,10741643,2
+veraliangyixin,10741643,4
+63579771,10741643,3
+30005056,10741643,5
+47052897,10741643,4
+byandong,10741643,4
+48130433,10741643,4
+kiddii,10741643,3
+89234808,10741643,4
+40424921,10741643,5
+50813433,10741643,5
+88254108,10741643,5
+59132009,10741643,5
+3907593,10741643,4
+49772004,10741643,3
+35805626,10741643,4
+118862756,10741643,5
+57137219,10741643,5
+agnes223,10741643,4
+acacia_acacia,10741643,4
+9029217,10741643,5
+greenlifehi,10741643,5
+Ryan-Z,10741643,3
+95041635,10741643,5
+the-first-five,10741643,-1
+70862123,10741643,4
+65379257,10741643,5
+49719620,10741643,5
+melentao,10741643,4
+Jessiecutie,10741643,5
+puhuahua,10741643,5
+43743828,10741643,3
+lebule,10741643,5
+YvonneGQ,10741643,4
+smilemorning,10741643,5
+66960776,10741643,-1
+82483979,10741643,5
+yosea,10741643,5
+EugeneWong,10741643,4
+Super_lc,10741643,5
+75256202,10741643,5
+3171344,10741643,5
+annie-bean,10741643,-1
+4075769,10741643,4
+103536040,10741643,5
+48960199,10741643,4
+waterdrops,10741643,4
+43537208,10741643,5
+63145913,10741643,5
+58712444,10741643,5
+102364800,10741643,5
+65641754,10741643,3
+momokwy,10741643,4
+deirdra,10741643,3
+55628054,10741643,5
+dramaticlife,10741643,5
+seodler,10741643,4
+67681966,10741643,5
+1139054,10741643,5
+addict2smoke,10741643,3
+boliver,10741643,4
+zaoshuizaoqi,10741643,5
+wanglizhi2014,10741643,5
+51640688,10741643,-1
+4469892,10741643,3
+59032058,10741643,3
+46191603,10741643,3
+29320724,10741643,5
+83391483,10741643,4
+olino,10741643,4
+53580673,10741643,4
+58658233,10741643,3
+2278436,10741643,3
+64009809,10741643,3
+73716444,10741643,3
+twisan,10741643,3
+64797594,10741643,5
+49809182,10741643,5
+45670050,10741643,5
+30768308,10741643,5
+55777311,10741643,2
+2192224,10741643,2
+arfree,10741643,3
+48477485,10741643,4
+49919460,10741643,5
+wyjlazy,10741643,4
+Irislee4ever,10741643,3
+xuezhiyuan-,10741643,5
+71974219,10741643,3
+53773134,10741643,1
+69927384,10741643,4
+welovemiki,10741643,4
+RitaXuQ,10741643,4
+zhht81,10741643,5
+rabbit101,10741643,4
+54380713,10741643,5
+22031277,10741643,3
+48689695,10741643,3
+idontcarebitch,10741643,3
+cense,10741643,3
+thinner,10741643,4
+49902714,10741643,4
+wenteng1988,10741643,4
+90492661,10741643,5
+60515729,10741643,2
+Bigdad,10741643,5
+4345264,10741643,4
+44454388,10741643,5
+30208000,10741643,5
+70682305,10741643,4
+64216728,10741643,5
+4538969,10741643,3
+master-photon,10741643,4
+62288515,10741643,5
+58302904,10741643,5
+72133915,10741643,3
+92133935,10741643,3
+74541142,10741643,4
+69874247,10741643,2
+42679394,10741643,5
+lukaka,10741643,4
+73163829,10741643,5
+ai7love,10741643,3
+comewinni,10741643,5
+47473847,10741643,4
+3537383,10741643,4
+4294308,10741643,4
+68260452,10741643,5
+47401412,10741643,5
+yuanyuhan,10741643,4
+mojibai,10741643,3
+59097558,10741643,4
+59153234,10741643,5
+56617890,10741643,4
+sodaorchid,10741643,3
+51426516,10741643,5
+manchildsun,10741643,5
+4244492,10741643,3
+achering,10741643,4
+53165975,10741643,1
+70694742,10741643,5
+56546479,10741643,5
+75987286,10741643,5
+51285516,10741643,5
+pbc0615,10741643,4
+68360438,10741643,5
+48937128,10741643,3
+26910950,10741643,4
+2201380,10741643,5
+junoshih,10741643,2
+xiaodiutan,10741643,-1
+weapin,10741643,3
+67936900,10741643,5
+evangeline1101,10741643,4
+lachie,10741643,4
+66550848,10741643,3
+57636480,10741643,4
+122720481,10741643,3
+55366144,10741643,3
+55366144,10741643,3
+73469326,10741643,4
+snoopy198471,10741643,3
+hawaiii,10741643,4
+2146274,10741643,4
+53685870,10741643,4
+39014221,10741643,5
+sa-01,10741643,-1
+53174697,10741643,4
+xuqianxun,10741643,5
+39773321,10741643,5
+67704734,10741643,5
+wind_field,10741643,4
+68914311,10741643,5
+82152426,10741643,-1
+60392839,10741643,4
+53555849,10741643,5
+49140751,10741643,4
+2324250,10741643,1
+wangsh8811,10741643,4
+wangsh8811,10741643,4
+60662764,10741643,4
+2700487,10741643,5
+71121390,10741643,5
+30725262,10741643,3
+hh1125,10741643,4
+61879467,10741643,2
+luoqiuyue,10741643,5
+1043912,10741643,5
+cutenami,10741643,4
+70844899,10741643,3
+58952519,10741643,5
+yoyochat,10741643,5
+stephenchao,10741643,5
+kring,10741643,3
+122632852,10741643,5
+4481063,10741643,5
+demondiscuz,10741643,5
+63941479,10741643,5
+4487215,10741643,4
+65930256,10741643,3
+55833894,10741643,5
+koklite,10741643,5
+strawberrycat,10741643,4
+61910501,10741643,4
+Alarecherche,10741643,2
+chihuoo,10741643,5
+60333796,10741643,3
+52829030,10741643,3
+jessica_joy5,10741643,3
+62209695,10741643,5
+93699875,10741643,4
+49957448,10741643,3
+1118044,10741643,5
+42772571,10741643,4
+77379822,10741643,5
+50870712,10741643,3
+yaozi0426,10741643,4
+68166546,10741643,5
+40114379,10741643,3
+3169215,10741643,3
+46533698,10741643,5
+54084747,10741643,5
+46601029,10741643,5
+48187975,10741643,4
+liujunhe123,10741643,5
+63211767,10741643,3
+hellowe,10741643,3
+82844631,10741643,4
+57319750,10741643,5
+felixsmli,10741643,4
+47754884,10741643,4
+db924519251,10741643,3
+108799577,10741643,4
+51525177,10741643,4
+72086305,10741643,3
+zMuer,10741643,4
+103271136,10741643,5
+3721769,10741643,4
+snotman,10741643,3
+snotman,10741643,3
+gracezt,10741643,5
+unicornshi,10741643,5
+sooyun,10741643,5
+78757579,10741643,4
+3768406,10741643,4
+51991043,10741643,5
+1087321,10741643,5
+4132181,10741643,2
+2423100,10741643,3
+58040567,10741643,5
+maybejoker,10741643,4
+16338563,10741643,4
+62842401,10741643,5
+47820945,10741643,5
+49854579,10741643,4
+49659191,10741643,3
+68539816,10741643,3
+QlDoors,10741643,1
+59113895,10741643,4
+yourmean,10741643,5
+58611624,10741643,4
+moonlightshit,10741643,5
+x-inter,10741643,4
+39628553,10741643,5
+A-Marvin-T,10741643,4
+lijingyu1027,10741643,4
+53257768,10741643,3
+45154093,10741643,5
+54129779,10741643,4
+3621869,10741643,5
+75979085,10741643,4
+52129116,10741643,5
+75691865,10741643,5
+57035175,10741643,5
+89319435,10741643,3
+53925227,10741643,3
+soulmate_z,10741643,4
+3596426,10741643,5
+wuyaa1215,10741643,4
+wuyaa1215,10741643,4
+conglin2537,10741643,4
+oceanshark,10741643,5
+richer725,10741643,3
+114500626,10741643,4
+55389424,10741643,4
+pessimie,10741643,4
+60354617,10741643,4
+1373968,10741643,4
+prince-bei,10741643,2
+54049800,10741643,4
+hpress,10741643,4
+57474326,10741643,5
+atengbrilliance,10741643,4
+50416947,10741643,4
+44245225,10741643,5
+115822113,10741643,5
+94168906,10741643,3
+65126364,10741643,3
+3534299,10741643,5
+3824469,10741643,4
+57886651,10741643,4
+75146248,10741643,5
+solarlion,10741643,3
+momo_pan,10741643,3
+48094958,10741643,3
+70742333,10741643,-1
+vanmic,10741643,5
+OpalMummy,10741643,5
+33679145,10741643,5
+109084837,10741643,1
+nannanloves,10741643,4
+54608877,10741643,-1
+4545627,10741643,4
+flylinklove,10741643,5
+meront,10741643,5
+3722910,10741643,5
+34724471,10741643,4
+45491031,10741643,3
+4252143,10741643,5
+47258009,10741643,4
+67779910,10741643,4
+xinyu1890,10741643,5
+brightchai,10741643,4
+zhangbohun,10741643,3
+70812373,10741643,5
+Angrypotato,10741643,4
+3231764,10741643,4
+taxidriver1976,10741643,1
+xyxyxyxyxy1995,10741643,5
+57468138,10741643,3
+46301744,10741643,4
+52323343,10741643,5
+2842505,10741643,4
+soyimmen,10741643,5
+41084789,10741643,4
+3967932,10741643,5
+37026765,10741643,3
+56847004,10741643,4
+68572064,10741643,4
+42216945,10741643,4
+45927442,10741643,4
+beier0310,10741643,5
+45755121,10741643,4
+58474530,10741643,3
+erikhong,10741643,4
+117027234,10741643,4
+idoujie,10741643,5
+lovesheng,10741643,4
+39266615,10741643,5
+62382255,10741643,4
+51826930,10741643,3
+69683493,10741643,5
+45505109,10741643,5
+51281256,10741643,3
+qieer_422,10741643,5
+50079736,10741643,5
+buglovenet,10741643,4
+smilingbamboo,10741643,3
+52352034,10741643,3
+109142318,10741643,3
+102318922,10741643,5
+42143621,10741643,4
+xylxydt,10741643,5
+impulsiveamoon,10741643,5
+71140874,10741643,5
+1141627,10741643,4
+74913423,10741643,3
+115958498,10741643,5
+vincentzhz,10741643,4
+dasangg,10741643,5
+80598638,10741643,5
+Shoegazer,10741643,2
+43958775,10741643,4
+83849307,10741643,5
+35722283,10741643,5
+olabaobao,10741643,5
+58114352,10741643,5
+94797689,10741643,4
+happy_fan,10741643,5
+52777499,10741643,4
+114339975,10741643,4
+xiaobai_zw,10741643,3
+monicahc,10741643,5
+53682563,10741643,5
+elephant723,10741643,4
+beautyxyw,10741643,5
+94587558,10741643,5
+cdf,10741643,5
+2943120,10741643,5
+57100027,10741643,4
+113916147,10741643,4
+2247401,10741643,4
+33126104,10741643,3
+52968697,10741643,2
+Vicarol,10741643,5
+113422908,10741643,5
+NicoleAkiko,10741643,5
+68437634,10741643,5
+52870501,10741643,5
+wuyayayaya,10741643,5
+luoyuliya,10741643,4
+league1991,10741643,5
+1441718,10741643,3
+58649588,10741643,4
+103108509,10741643,3
+101450082,10741643,4
+52624192,10741643,4
+february_,10741643,4
+64007556,10741643,-1
+58094874,10741643,5
+satellitecity,10741643,3
+62476511,10741643,4
+1189538,10741643,4
+48759553,10741643,4
+44020931,10741643,4
+37660069,10741643,4
+50267257,10741643,4
+51202382,10741643,5
+58827869,10741643,5
+47300313,10741643,3
+77750689,10741643,4
+53115614,10741643,4
+abbyinfuzhou,10741643,5
+walley,10741643,4
+NeilGuo521,10741643,4
+LilithChen,10741643,3
+zianzhao,10741643,4
+SINCE1988,10741643,5
+45786010,10741643,3
+zqj0226,10741643,3
+3355401,10741643,4
+3498741,10741643,4
+57497039,10741643,4
+likengni,10741643,4
+cuijingwen,10741643,4
+48313221,10741643,5
+abuwangzi,10741643,5
+LerbiaTang,10741643,5
+82310044,10741643,4
+82310044,10741643,4
+50071119,10741643,5
+trista-lam,10741643,5
+tooer,10741643,4
+101793601,10741643,5
+C37twocold,10741643,4
+3041529,10741643,3
+114734252,10741643,4
+10523645,10741643,4
+58689768,10741643,4
+47228082,10741643,4
+2385429,10741643,4
+49925058,10741643,5
+cherwy,10741643,4
+1375246,10741643,5
+howoldareyou,10741643,4
+53692479,10741643,5
+47637789,10741643,4
+makotohirosue,10741643,4
+imKuku,10741643,3
+69386924,10741643,5
+51629310,10741643,-1
+2177082,10741643,5
+33275779,10741643,4
+121999524,10741643,5
+60968661,10741643,-1
+54455119,10741643,4
+50348781,10741643,5
+RockU,10741643,4
+syshang,10741643,5
+humanman,10741643,4
+zhaopusheng,10741643,3
+geffen,10741643,5
+96674410,10741643,5
+67469136,10741643,5
+94254038,10741643,4
+57698084,10741643,3
+48132735,10741643,5
+56034562,10741643,5
+57307494,10741643,5
+iisakura,10741643,5
+6442650,10741643,4
+4500361,10741643,4
+westerngarden,10741643,4
+catfacegirl,10741643,5
+emptyswing,10741643,5
+xulu_films,10741643,4
+dijiu,10741643,5
+52388257,10741643,3
+54753933,10741643,4
+57085015,10741643,5
+115656840,10741643,4
+ScYui,10741643,3
+liujingqiheihei,10741643,5
+48238479,10741643,4
+QingZhao2012,10741643,3
+trax.long,10741643,4
+i_chips,10741643,5
+63974228,10741643,5
+leonsoso,10741643,4
+readmovie,10741643,4
+chelseawangqin,10741643,2
+slowslowzhang,10741643,4
+1767400,10741643,5
+63156510,10741643,5
+PoyuanLee,10741643,5
+91365372,10741643,4
+78925849,10741643,5
+pigeye,10741643,3
+cobbler,10741643,4
+102678315,10741643,3
+vebo,10741643,5
+54142337,10741643,5
+2385520,10741643,4
+21407911,10741643,5
+115301343,10741643,4
+54543228,10741643,4
+70202233,10741643,4
+jakpot,10741643,3
+teelogo,10741643,4
+67615408,10741643,5
+50614819,10741643,5
+fallinrnb,10741643,4
+XenFOne,10741643,5
+integralyoga,10741643,5
+kuoxh,10741643,4
+60150191,10741643,5
+49185550,10741643,3
+52383930,10741643,3
+55644124,10741643,5
+66990696,10741643,4
+1001195,10741643,3
+65881137,10741643,5
+51571478,10741643,5
+moshushinihao,10741643,4
+79151265,10741643,3
+61716367,10741643,4
+3194373,10741643,5
+searchforriver,10741643,5
+52023451,10741643,4
+Brooke_love,10741643,5
+tjz230,10741643,3
+39862225,10741643,5
+1342844,10741643,4
+55550016,10741643,4
+freedomtravell,10741643,3
+dinoel,10741643,3
+3398219,10741643,-1
+zhayefei,10741643,3
+ifirework,10741643,4
+54327177,10741643,4
+SchengW,10741643,5
+43197819,10741643,3
+jore1102,10741643,3
+119381415,10741643,5
+lulu_power,10741643,5
+pigpigpeng,10741643,5
+64413783,10741643,5
+blackgirlzhou,10741643,5
+62518074,10741643,3
+yfqc24pippo,10741643,5
+wangmian0729,10741643,3
+templar,10741643,4
+64707906,10741643,4
+54226052,10741643,5
+121279263,10741643,4
+strayerss,10741643,5
+70819038,10741643,-1
+3000438,10741643,4
+foreveryoung...,10741643,4
+48924653,10741643,2
+1609757,10741643,4
+morechou,10741643,5
+49120314,10741643,4
+81463886,10741643,5
+36618546,10741643,4
+81404706,10741643,3
+57616259,10741643,-1
+80115244,10741643,3
+kedoumili,10741643,4
+49411879,10741643,3
+65306237,10741643,5
+2600833,10741643,3
+Monster.,10741643,4
+hanax4,10741643,3
+49229435,10741643,4
+75344428,10741643,2
+59904891,10741643,5
+luckyinvoke,10741643,5
+utasty,10741643,4
+BluePudge,10741643,5
+puhonglei,10741643,4
+82691525,10741643,5
+2157232,10741643,4
+50063811,10741643,5
+misscherry77,10741643,4
+laviwoo,10741643,4
+44552511,10741643,4
+4730521,10741643,2
+67409717,10741643,5
+L5.P4,10741643,4
+waistcoat,10741643,4
+woaa,10741643,4
+kiandaodao,10741643,5
+71851455,10741643,5
+49164676,10741643,4
+58290785,10741643,3
+46915355,10741643,4
+4896177,10741643,5
+73723847,10741643,4
+58400700,10741643,5
+kistrike,10741643,4
+yuwenyuan,10741643,3
+67578829,10741643,5
+spiritvision,10741643,5
+64875254,10741643,4
+49890318,10741643,5
+littlewish,10741643,5
+81928972,10741643,4
+Bright0574,10741643,-1
+Bright0574,10741643,-1
+Zmeters,10741643,4
+48681537,10741643,2
+fishless,10741643,4
+91026618,10741643,5
+casper009,10741643,5
+67727072,10741643,5
+91567656,10741643,2
+BigScience,10741643,-1
+59408490,10741643,3
+62790880,10741643,5
+36362288,10741643,4
+yaoay11,10741643,5
+63391682,10741643,5
+74207607,10741643,4
+40447897,10741643,5
+59914179,10741643,5
+undas,10741643,4
+55543301,10741643,5
+lingchenchen,10741643,5
+3826970,10741643,-1
+2945089,10741643,4
+zene,10741643,2
+69389104,10741643,4
+63622680,10741643,5
+66803513,10741643,4
+120265701,10741643,4
+hyden,10741643,4
+qiqi6105,10741643,5
+59237362,10741643,4
+4134966,10741643,4
+2134463,10741643,5
+3639104,10741643,5
+50212548,10741643,4
+glason,10741643,3
+70835587,10741643,4
+xiangjue,10741643,-1
+62134482,10741643,5
+79361249,10741643,5
+SZH19920707,10741643,4
+50568364,10741643,3
+orangesee,10741643,5
+48640803,10741643,5
+rainywood,10741643,4
+fantastical,10741643,5
+huangquan,10741643,3
+candystory,10741643,5
+121827535,10741643,4
+55312255,10741643,5
+32501368,10741643,5
+alfunso,10741643,4
+38044008,10741643,3
+63755832,10741643,3
+ichengkr,10741643,5
+sangege,10741643,5
+66283335,10741643,2
+45184440,10741643,4
+58576025,10741643,5
+fortblk,10741643,4
+21606016,10741643,5
+56263010,10741643,5
+miaomiao19,10741643,4
+91193494,10741643,5
+4040058,10741643,5
+4585815,10741643,4
+11294260,10741643,5
+58494684,10741643,4
+onlyqinping,10741643,4
+Uroboros,10741643,3
+wattan,10741643,-1
+52589146,10741643,5
+1500769,10741643,4
+vivia7n,10741643,4
+47218241,10741643,4
+zhangshuran,10741643,5
+57358619,10741643,5
+52056943,10741643,2
+49079570,10741643,3
+derachang,10741643,5
+2235112,10741643,4
+1582961,10741643,5
+icerattan,10741643,4
+81296522,10741643,2
+47821826,10741643,4
+79078836,10741643,4
+3923065,10741643,5
+56794004,10741643,5
+43495757,10741643,5
+62942210,10741643,5
+18408712,10741643,4
+105085048,10741643,5
+28312683,10741643,3
+44426861,10741643,5
+43900821,10741643,5
+47365480,10741643,3
+pandachain,10741643,4
+34864713,10741643,4
+39977631,10741643,3
+55807632,10741643,4
+bjuummer,10741643,5
+bjuummer,10741643,5
+53163516,10741643,5
+41930212,10741643,4
+80354081,10741643,4
+1297922,10741643,4
+44854145,10741643,4
+zianvan,10741643,3
+3518067,10741643,5
+Patrick_Kang,10741643,4
+48201756,10741643,5
+jtaiyang,10741643,4
+AquaLess,10741643,5
+41899209,10741643,5
+6278260,10741643,5
+57412788,10741643,3
+botuoxi,10741643,4
+48643866,10741643,4
+spaceli,10741643,4
+duck130912277,10741643,5
+isabeila,10741643,4
+37412215,10741643,4
+liuxinyuxiao,10741643,3
+43495064,10741643,5
+91742876,10741643,5
+karain,10741643,4
+tankccc,10741643,5
+57896289,10741643,5
+kenyoo,10741643,5
+jaly2015,10741643,4
+xiaxidaye,10741643,4
+37409173,10741643,5
+61901471,10741643,4
+58339263,10741643,5
+52080305,10741643,5
+52350371,10741643,4
+Danys,10741643,4
+60932260,10741643,5
+emily_lp,10741643,4
+1986183,10741643,3
+47359936,10741643,4
+73419042,10741643,4
+sunnyandrainy,10741643,4
+4839154,10741643,4
+huxiaogou,10741643,4
+maggieleaf,10741643,5
+42862890,10741643,4
+2622237,10741643,4
+shaxiong,10741643,4
+47197127,10741643,5
+60719241,10741643,5
+61602134,10741643,2
+zhenziren,10741643,5
+yuni192,10741643,5
+68664454,10741643,4
+54825583,10741643,5
+bluespurt,10741643,-1
+locking,10741643,5
+yokolea,10741643,5
+60590150,10741643,5
+Verbomania,10741643,3
+flower_ryoo,10741643,5
+XLAngel,10741643,4
+58133135,10741643,4
+52248618,10741643,3
+58855634,10741643,5
+topperandy,10741643,4
+86638464,10741643,5
+60963394,10741643,4
+74448596,10741643,5
+51486771,10741643,4
+58279610,10741643,-1
+4351767,10741643,4
+atomvivain,10741643,3
+1307157,10741643,3
+61511872,10741643,5
+keithw,10741643,3
+tllovewq,10741643,4
+1713591,10741643,-1
+4791286,10741643,3
+87473298,10741643,5
+81645668,10741643,5
+38939469,10741643,4
+2208504,10741643,3
+chouchou0707,10741643,4
+43148544,10741643,3
+62814196,10741643,4
+3052607,10741643,3
+4248003,10741643,4
+43497624,10741643,4
+59065986,10741643,4
+56252937,10741643,5
+75325529,10741643,5
+57104969,10741643,4
+45837126,10741643,3
+11842501,10741643,4
+52898119,10741643,4
+30674711,10741643,5
+45864291,10741643,3
+GekiMasamune,10741643,5
+49879341,10741643,4
+3547067,10741643,3
+50420289,10741643,4
+73696593,10741643,4
+32094102,10741643,5
+aciv,10741643,3
+phonexu,10741643,4
+Chaosophia,10741643,-1
+4884902,10741643,4
+63832473,10741643,4
+41264056,10741643,3
+2842455,10741643,5
+57026969,10741643,5
+apoorguitar,10741643,5
+100198483,10741643,3
+45791568,10741643,5
+45273631,10741643,5
+73161188,10741643,3
+madridzp007,10741643,3
+64739308,10741643,4
+wantiankong,10741643,5
+loriwithme,10741643,1
+54883667,10741643,4
+4568946,10741643,4
+61882735,10741643,4
+64030355,10741643,5
+25110019,10741643,5
+73596960,10741643,5
+4292817,10741643,3
+60781966,10741643,4
+43099627,10741643,4
+57686466,10741643,5
+47601578,10741643,4
+54002863,10741643,5
+4283238,10741643,3
+gz222,10741643,4
+57495680,10741643,4
+69974858,10741643,4
+42400214,10741643,2
+74325789,10741643,5
+68532789,10741643,4
+68532789,10741643,4
+94722488,10741643,5
+79702182,10741643,4
+75428247,10741643,5
+lazyyufeng,10741643,4
+43181758,10741643,3
+64886603,10741643,5
+77017255,10741643,4
+jiuduo,10741643,-1
+88199581,10741643,4
+lena0517,10741643,5
+1809705,10741643,4
+56635462,10741643,4
+48495016,10741643,3
+liux5520,10741643,3
+74769149,10741643,3
+pmorbidity,10741643,4
+AllanBen,10741643,3
+13903375,10741643,4
+suixipijian,10741643,5
+41752874,10741643,4
+49568187,10741643,4
+4038133,10741643,4
+nancy425,10741643,4
+47785072,10741643,4
+48355482,10741643,5
+91670876,10741643,3
+75275780,10741643,2
+haman,10741643,5
+hrtls,10741643,3
+62401840,10741643,4
+80752202,10741643,5
+58051571,10741643,5
+kyo_21,10741643,4
+52798732,10741643,5
+unicornlarry,10741643,4
+RemoteTr,10741643,3
+justinprc,10741643,5
+sirkee,10741643,5
+63553784,10741643,4
+61830049,10741643,5
+helenvivi,10741643,5
+chaiyanchao,10741643,5
+63597276,10741643,5
+51192527,10741643,5
+3296630,10741643,4
+huan19494114,10741643,4
+TaoCreat,10741643,5
+lichuman,10741643,2
+3154743,10741643,5
+63189132,10741643,2
+XIONGXIN0523,10741643,4
+46361986,10741643,4
+41887251,10741643,5
+56505982,10741643,4
+49519192,10741643,-1
+76903665,10741643,5
+1069869,10741643,3
+84775751,10741643,4
+27334745,10741643,3
+cerrol,10741643,4
+48501430,10741643,4
+crystalnian,10741643,4
+ytismile,10741643,3
+wuzhuo,10741643,5
+77575842,10741643,4
+noaccident,10741643,4
+61982601,10741643,5
+60027417,10741643,-1
+64780259,10741643,3
+73150320,10741643,5
+4065256,10741643,5
+1130020,10741643,4
+zhchtcm,10741643,5
+85101653,10741643,4
+Jewon,10741643,4
+mozanbei,10741643,4
+2776554,10741643,3
+avaxi,10741643,4
+iamanda911,10741643,5
+xinxuqi,10741643,3
+85143816,10741643,4
+11804044,10741643,4
+58167224,10741643,4
+joymu,10741643,5
+64311594,10741643,4
+50616281,10741643,3
+4026025,10741643,4
+douding1024,10741643,4
+rainloveyy,10741643,4
+suoyisuo,10741643,5
+63079950,10741643,5
+47459422,10741643,4
+4066698,10741643,4
+dengda,10741643,4
+71254966,10741643,5
+henei,10741643,3
+chiyama,10741643,4
+66284844,10741643,5
+67333061,10741643,5
+zdoudou,10741643,5
+1456706,10741643,4
+55749413,10741643,5
+mountainriver,10741643,3
+44267868,10741643,5
+madbilly,10741643,2
+59391449,10741643,5
+carmen.gia,10741643,5
+121946361,10741643,5
+eklim,10741643,4
+sussylee,10741643,2
+1666594,10741643,4
+1958740,10741643,4
+zhongri,10741643,5
+31044829,10741643,4
+y_y316,10741643,4
+3531317,10741643,-1
+44576483,10741643,5
+76617506,10741643,3
+62650109,10741643,3
+51790573,10741643,4
+word999,10741643,3
+Time-Trust,10741643,5
+53595701,10741643,4
+86257258,10741643,5
+76934101,10741643,4
+53745932,10741643,4
+52638193,10741643,5
+48239592,10741643,4
+53472098,10741643,5
+isthislove,10741643,4
+73765169,10741643,5
+Jeremy87,10741643,5
+sindy1113,10741643,4
+Paranoidc,10741643,3
+94394247,10741643,2
+63044059,10741643,3
+53626260,10741643,4
+63877055,10741643,5
+Skiboo,10741643,3
+44538646,10741643,5
+s7even,10741643,5
+62323478,10741643,5
+abin520918,10741643,3
+zzb001,10741643,4
+83267893,10741643,5
+62752477,10741643,5
+39122132,10741643,3
+52962046,10741643,5
+48107309,10741643,5
+32460848,10741643,3
+73948805,10741643,4
+90662596,10741643,4
+13713821,10741643,4
+2511779,10741643,4
+mangomaluko,10741643,4
+56210012,10741643,5
+49118645,10741643,4
+sunflower_ang,10741643,3
+guder,10741643,2
+51531796,10741643,5
+76232566,10741643,3
+niuchen0288,10741643,5
+5770486,10741643,3
+60834682,10741643,4
+zhangzhiwen,10741643,4
+fababy,10741643,4
+96233634,10741643,3
+72098236,10741643,5
+WSSWHL,10741643,3
+53425694,10741643,4
+kingharry517,10741643,5
+83993012,10741643,4
+1793748,10741643,4
+oeqanh,10741643,3
+87402327,10741643,5
+53801609,10741643,5
+47181851,10741643,5
+2743345,10741643,4
+maraton,10741643,3
+66636246,10741643,3
+50873936,10741643,3
+angeldisappear,10741643,5
+zhengkangkang,10741643,3
+63143164,10741643,3
+81344855,10741643,3
+58434101,10741643,5
+65560174,10741643,-1
+milkcold,10741643,4
+universcope,10741643,3
+30767412,10741643,4
+49756593,10741643,4
+25199232,10741643,4
+100922035,10741643,5
+82043746,10741643,5
+81697410,10741643,4
+64174690,10741643,4
+1612598,10741643,4
+musique,10741643,4
+47725759,10741643,4
+47725759,10741643,4
+2106137,10741643,4
+30054971,10741643,3
+clean12,10741643,5
+83954325,10741643,2
+55757815,10741643,4
+33370952,10741643,2
+53209827,10741643,5
+81139416,10741643,5
+58110414,10741643,5
+82414014,10741643,3
+57058153,10741643,4
+4648977,10741643,5
+39015968,10741643,4
+2349644,10741643,4
+weiweiweio,10741643,-1
+25468044,10741643,3
+1360840,10741643,4
+121867791,10741643,5
+43893830,10741643,4
+55442751,10741643,4
+hwf254,10741643,5
+119254265,10741643,4
+38977329,10741643,4
+87531024,10741643,1
+Joey_Zhou_Arch,10741643,4
+2207015,10741643,3
+2226350,10741643,5
+36375219,10741643,4
+40281229,10741643,5
+97491371,10741643,4
+zhhuang1980,10741643,4
+1058376,10741643,3
+46936355,10741643,4
+daisylook,10741643,4
+64826972,10741643,4
+52207457,10741643,5
+62879944,10741643,4
+OldQuentin,10741643,5
+65457803,10741643,5
+67649340,10741643,5
+50341926,10741643,4
+53821099,10741643,4
+doratora,10741643,5
+2319342,10741643,5
+48711761,10741643,5
+shuimudeyu1990,10741643,4
+65458998,10741643,4
+53908141,10741643,4
+aoxueyingning,10741643,3
+121751435,10741643,2
+110146987,10741643,5
+45792433,10741643,3
+33324943,10741643,4
+1260037,10741643,5
+1722543,10741643,5
+modouvictoria,10741643,5
+2753926,10741643,5
+clarkk,10741643,5
+39170199,10741643,4
+33304137,10741643,4
+73795534,10741643,5
+55301945,10741643,5
+2304340,10741643,4
+shanicky,10741643,5
+4354747,10741643,-1
+3343713,10741643,5
+69763204,10741643,4
+67296757,10741643,3
+ceveryday,10741643,3
+55819818,10741643,5
+4378595,10741643,4
+joyannyang,10741643,5
+27194011,10741643,5
+45347825,10741643,4
+eternalcc,10741643,5
+48358575,10741643,3
+64182296,10741643,4
+itistime,10741643,4
+74397322,10741643,5
+antiekin,10741643,4
+73110105,10741643,1
+44987498,10741643,5
+3991087,10741643,4
+61389067,10741643,4
+58069293,10741643,5
+lewish,10741643,5
+dark-otaku,10741643,4
+willow_0319,10741643,5
+121673447,10741643,4
+52606273,10741643,3
+39255754,10741643,4
+45485577,10741643,5
+NicoleRobin,10741643,5
+easonsuu,10741643,5
+CHHUICHEN,10741643,5
+68366606,10741643,3
+12794807,10741643,5
+49893816,10741643,5
+bell-wind,10741643,-1
+68312513,10741643,4
+65452477,10741643,4
+83694969,10741643,3
+121816361,10741643,3
+94380874,10741643,5
+aroe,10741643,5
+53060922,10741643,3
+35220210,10741643,5
+59997800,10741643,3
+61134295,10741643,5
+uf0,10741643,4
+47415286,10741643,4
+79830268,10741643,4
+36930975,10741643,4
+53252879,10741643,3
+1369129,10741643,4
+48119983,10741643,5
+91337551,10741643,5
+4635921,10741643,4
+Scarlett--YJ,10741643,3
+55640916,10741643,4
+59029725,10741643,5
+sureiamsure,10741643,3
+68521572,10741643,4
+3253405,10741643,4
+45484403,10741643,5
+20760667,10741643,4
+4606888,10741643,5
+3130809,10741643,4
+CrystalFung,10741643,5
+sen9we6,10741643,5
+57667810,10741643,5
+wena,10741643,4
+51061132,10741643,5
+xjl,10741643,4
+green198641,10741643,4
+2234320,10741643,5
+mattni,10741643,4
+76600314,10741643,5
+IAN-M,10741643,3
+66926678,10741643,3
+51909421,10741643,4
+x100f100,10741643,3
+116540697,10741643,5
+dangxiaoyu,10741643,4
+71213483,10741643,4
+xixiduoduo,10741643,4
+36104780,10741643,5
+satanprince,10741643,5
+chjack,10741643,5
+chaud,10741643,4
+Alice798,10741643,1
+momoted,10741643,4
+yzj1212,10741643,4
+51264867,10741643,5
+aptx0922,10741643,3
+sesey,10741643,3
+cillin,10741643,5
+61959364,10741643,4
+yindan,10741643,5
+102596364,10741643,5
+120342469,10741643,4
+47362335,10741643,5
+4281864,10741643,4
+49083776,10741643,5
+Brancinha,10741643,4
+SayaNadia0521,10741643,3
+78655020,10741643,4
+71938024,10741643,4
+4687324,10741643,5
+77389927,10741643,5
+36817857,10741643,5
+colordancer,10741643,4
+49165846,10741643,5
+62567668,10741643,5
+dujinpeng226,10741643,5
+59320929,10741643,4
+21857316,10741643,5
+65178670,10741643,5
+mhyigeren,10741643,4
+59552037,10741643,5
+pinkskin,10741643,4
+61981962,10741643,5
+2388360,10741643,4
+40211770,10741643,4
+77717016,10741643,5
+44561459,10741643,4
+43966741,10741643,4
+69068097,10741643,5
+stories7,10741643,3
+bg4qwd,10741643,4
+evenrain2008,10741643,4
+78588214,10741643,5
+wuyuexisland,10741643,4
+18043217,10741643,4
+3438313,10741643,3
+5758212,10741643,5
+77555967,10741643,4
+justinchung,10741643,5
+piemeng,10741643,5
+piemeng,10741643,5
+planttingsun,10741643,5
+66512641,10741643,5
+40734043,10741643,5
+58796867,10741643,5
+68989826,10741643,-1
+joannavc,10741643,5
+70848416,10741643,4
+2397641,10741643,3
+meotm,10741643,5
+irismandy,10741643,4
+54814792,10741643,3
+melons,10741643,4
+FiveStrong,10741643,5
+1960323,10741643,3
+31667362,10741643,5
+68058633,10741643,3
+dongdayou,10741643,5
+53345657,10741643,3
+50563114,10741643,4
+53789319,10741643,4
+69730287,10741643,3
+derek8356,10741643,4
+44245524,10741643,4
+47019104,10741643,4
+36681127,10741643,3
+58038644,10741643,3
+63588779,10741643,4
+62241233,10741643,5
+79808254,10741643,5
+68007644,10741643,4
+karo1993,10741643,4
+60352980,10741643,5
+unicorn_x,10741643,5
+44524593,10741643,4
+haolloyin,10741643,3
+101889689,10741643,5
+67897997,10741643,3
+121745176,10741643,4
+heloisehexiao,10741643,-1
+75531469,10741643,5
+54603413,10741643,3
+39815901,10741643,5
+42260964,10741643,5
+3880844,10741643,4
+79818350,10741643,5
+72997899,10741643,5
+66841203,10741643,5
+borrier,10741643,4
+78944211,10741643,4
+52867570,10741643,4
+8448857,10741643,4
+44276090,10741643,2
+62710614,10741643,5
+gehe_123,10741643,5
+52740043,10741643,3
+55454916,10741643,5
+59981807,10741643,4
+biexianju,10741643,5
+57001792,10741643,4
+electric_chao,10741643,5
+bluefish50,10741643,5
+robins1979,10741643,5
+annacullen,10741643,5
+2550503,10741643,5
+45456145,10741643,5
+polosouth,10741643,5
+69230066,10741643,5
+3923443,10741643,3
+71339530,10741643,5
+51508838,10741643,5
+102581208,10741643,5
+50284441,10741643,5
+52606469,10741643,4
+43978378,10741643,3
+jiaojiaoer,10741643,4
+xttian,10741643,4
+yujingyuan,10741643,4
+cheesechee,10741643,5
+MOONDRIVE,10741643,5
+4682542,10741643,4
+liyuantown,10741643,5
+jadexyy,10741643,4
+70915171,10741643,5
+amunli,10741643,5
+37568625,10741643,3
+56072639,10741643,4
+yeah0627,10741643,5
+hedmgh,10741643,4
+ideyes,10741643,3
+maplepu,10741643,4
+61797911,10741643,4
+64522249,10741643,4
+59968133,10741643,5
+60025613,10741643,4
+61506971,10741643,5
+46684749,10741643,4
+Lovesword,10741643,4
+fattyme,10741643,2
+sophiahsu,10741643,4
+58180925,10741643,3
+63639535,10741643,5
+53070122,10741643,3
+34145664,10741643,4
+1279239,10741643,3
+serah,10741643,4
+52046312,10741643,3
+2054540,10741643,4
+93907270,10741643,3
+leafsong,10741643,3
+67206038,10741643,5
+masaikejun,10741643,3
+4460967,10741643,5
+3693991,10741643,4
+miexiaoyang422,10741643,4
+49561830,10741643,3
+48354152,10741643,4
+120929768,10741643,4
+61708505,10741643,4
+ts1089,10741643,5
+yuchen9038,10741643,4
+allblue,10741643,4
+hou_yuting,10741643,-1
+chenchenalex,10741643,4
+cgy0330,10741643,3
+cyjcandychan,10741643,4
+75384740,10741643,4
+49791512,10741643,5
+42243165,10741643,4
+59771378,10741643,4
+61878012,10741643,5
+kiyosi,10741643,4
+tinaranran,10741643,5
+renchenwei,10741643,4
+35176811,10741643,4
+4196011,10741643,3
+47807102,10741643,4
+4248478,10741643,4
+3116575,10741643,4
+michaelmine,10741643,5
+hyacinthiris,10741643,4
+FinalFantasy,10741643,4
+78323682,10741643,-1
+83129118,10741643,4
+lagrangeisright,10741643,-1
+63373186,10741643,5
+4359954,10741643,5
+3167300,10741643,3
+yanala,10741643,4
+66295354,10741643,5
+49644324,10741643,5
+jackoldbear,10741643,5
+57949224,10741643,4
+53679520,10741643,-1
+46088268,10741643,5
+65086870,10741643,3
+jinying,10741643,2
+115091265,10741643,4
+104964900,10741643,5
+yuyanlin,10741643,5
+43096733,10741643,3
+Pozdno,10741643,5
+52353213,10741643,4
+89407930,10741643,5
+53437305,10741643,4
+49619529,10741643,5
+yuexiamengshi,10741643,4
+chenyubreeze,10741643,4
+simonfishing,10741643,4
+42061040,10741643,5
+Vanessa.,10741643,4
+52188970,10741643,4
+68913582,10741643,3
+56836925,10741643,5
+woodmoon,10741643,3
+jiangtaopeter,10741643,5
+108233128,10741643,4
+57416637,10741643,3
+4868364,10741643,5
+tequilas,10741643,4
+tequilas,10741643,4
+scarlywoo,10741643,4
+58972281,10741643,5
+53567005,10741643,3
+zt880624,10741643,5
+4537806,10741643,4
+75239379,10741643,3
+85091142,10741643,4
+4622273,10741643,4
+66473805,10741643,5
+65800708,10741643,4
+62092680,10741643,5
+63006566,10741643,4
+42491302,10741643,5
+35176558,10741643,4
+veraaa,10741643,4
+121663852,10741643,4
+coin1115,10741643,5
+awakealone,10741643,4
+ilovehongkou,10741643,5
+hehaiyan,10741643,4
+enchy,10741643,5
+62191711,10741643,4
+57896440,10741643,4
+67881687,10741643,5
+songcaidong,10741643,5
+sunny1992,10741643,3
+pp6680,10741643,4
+61510921,10741643,4
+60514515,10741643,4
+2835334,10741643,4
+hmngoo,10741643,5
+yinyuegood,10741643,4
+53958013,10741643,4
+44552200,10741643,4
+JaceJing,10741643,4
+44284522,10741643,4
+28223022,10741643,5
+88632956,10741643,2
+3043789,10741643,4
+yeqingbo,10741643,5
+52926466,10741643,4
+1506666,10741643,5
+aitiaowudemeng,10741643,5
+55491733,10741643,3
+51162987,10741643,4
+kg1898,10741643,5
+46810094,10741643,3
+omega333,10741643,4
+64893101,10741643,2
+48292310,10741643,3
+wendy86,10741643,5
+80889076,10741643,4
+26788914,10741643,5
+Miko_J,10741643,5
+samhooxee,10741643,4
+51606142,10741643,3
+yiyouyu1992,10741643,4
+76404609,10741643,5
+64153022,10741643,4
+115857757,10741643,4
+3245046,10741643,3
+53819334,10741643,3
+94460148,10741643,5
+71455965,10741643,4
+liaorenee,10741643,2
+NicoleCrowe,10741643,3
+ppandda,10741643,2
+udxiang,10741643,4
+vicong,10741643,4
+bingsure,10741643,5
+51301478,10741643,2
+1053540,10741643,3
+114398895,10741643,5
+curemyself,10741643,4
+61537808,10741643,5
+57950348,10741643,-1
+76980448,10741643,5
+90774303,10741643,5
+foreverleo,10741643,2
+90774303,10741643,5
+foreverleo,10741643,2
+3623184,10741643,5
+guanjian0505,10741643,4
+x0510z,10741643,4
+76141077,10741643,-1
+cfree16,10741643,5
+wjscxx,10741643,3
+faithfind,10741643,3
+52614794,10741643,3
+121614690,10741643,4
+62778442,10741643,4
+thierryhenry,10741643,4
+65084503,10741643,4
+vanvin,10741643,5
+xingxuelin,10741643,5
+58905615,10741643,4
+72657219,10741643,5
+ruoxiaochan,10741643,4
+nelson1014,10741643,5
+joeysuri,10741643,4
+2375598,10741643,4
+73649626,10741643,5
+2621318,10741643,3
+QQ3BlueRose,10741643,4
+lalarain,10741643,5
+49297220,10741643,4
+84695805,10741643,4
+11289468,10741643,5
+Einochild,10741643,4
+74149481,10741643,4
+57572204,10741643,4
+1948340,10741643,3
+56899985,10741643,4
+35506270,10741643,3
+ppwwyyxx,10741643,5
+69417205,10741643,5
+53177130,10741643,3
+BABABALA,10741643,5
+50613476,10741643,5
+57666519,10741643,5
+77339643,10741643,5
+35224934,10741643,4
+rahrah,10741643,4
+48833378,10741643,5
+42171117,10741643,4
+4236636,10741643,5
+43635070,10741643,4
+47781014,10741643,5
+bbfary,10741643,3
+68983294,10741643,4
+51939738,10741643,5
+60783143,10741643,2
+81107312,10741643,3
+66802637,10741643,5
+kong8,10741643,4
+38632557,10741643,5
+50151167,10741643,4
+iouhuan,10741643,5
+59032148,10741643,4
+107508837,10741643,5
+23730457,10741643,4
+att2046,10741643,2
+masterobert,10741643,5
+3706601,10741643,4
+31411894,10741643,5
+61572428,10741643,4
+116088204,10741643,5
+zhaoyihan,10741643,5
+yuyu0403,10741643,4
+mimy,10741643,4
+4511323,10741643,5
+63394553,10741643,4
+yangmianyang,10741643,5
+82088870,10741643,5
+mouqingyang,10741643,5
+83989182,10741643,5
+bettermeloveme,10741643,5
+40630095,10741643,-1
+29280145,10741643,5
+57966431,10741643,4
+hilapa,10741643,3
+96233628,10741643,4
+48387955,10741643,5
+63643162,10741643,2
+77619808,10741643,5
+cocowool,10741643,5
+4478909,10741643,3
+83832332,10741643,5
+fanze,10741643,3
+30943019,10741643,4
+violin1112,10741643,5
+graces,10741643,-1
+ievanz,10741643,3
+ithilien,10741643,5
+EternityTT,10741643,5
+zzsherry,10741643,5
+annieya,10741643,4
+68908550,10741643,3
+69232328,10741643,4
+4629743,10741643,5
+imagefly,10741643,4
+47084530,10741643,4
+chen-yan-zhao,10741643,5
+78548715,10741643,4
+weblinder,10741643,4
+47269712,10741643,5
+41651433,10741643,5
+62340253,10741643,4
+3362301,10741643,4
+54695369,10741643,5
+59824766,10741643,3
+76935104,10741643,5
+meganlee,10741643,5
+75289459,10741643,5
+60146398,10741643,5
+95443736,10741643,5
+antime,10741643,3
+leonhardtdb,10741643,5
+menhirxu,10741643,5
+menhirxu,10741643,5
+46916417,10741643,5
+elyarias,10741643,5
+68706440,10741643,4
+94766000,10741643,5
+sugustmac,10741643,5
+55850316,10741643,3
+2338857,10741643,2
+guanzhongyue,10741643,4
+Mr.Roi,10741643,4
+2638555,10741643,4
+kangod,10741643,4
+deer1156164672,10741643,4
+zhouxiaowan,10741643,2
+2167975,10741643,3
+regalo,10741643,4
+57855835,10741643,4
+4242859,10741643,4
+2734376,10741643,5
+44112224,10741643,5
+41655130,10741643,4
+79203552,10741643,5
+83802681,10741643,4
+2076126,10741643,4
+91816506,10741643,5
+lyzw,10741643,5
+78710041,10741643,4
+wzq1981,10741643,4
+2057814,10741643,5
+yaoliu,10741643,5
+guaishou995,10741643,4
+51807929,10741643,3
+LadySandra,10741643,3
+63499141,10741643,5
+24706161,10741643,5
+121557291,10741643,4
+2646043,10741643,5
+59350996,10741643,3
+40938196,10741643,4
+12919014,10741643,5
+36109086,10741643,2
+tanjilion,10741643,4
+49436249,10741643,3
+63406200,10741643,3
+56371738,10741643,3
+78620501,10741643,5
+1832918,10741643,4
+87468773,10741643,3
+keichan,10741643,5
+60282135,10741643,4
+46812960,10741643,5
+cindyyj,10741643,5
+3784972,10741643,3
+1197799,10741643,3
+39709411,10741643,5
+cyy0317,10741643,4
+yangcosta,10741643,3
+61107844,10741643,5
+viviancien,10741643,4
+pumpkin_s,10741643,5
+zencc,10741643,3
+45420786,10741643,4
+space_junk,10741643,3
+SiuSIE,10741643,5
+53744550,10741643,3
+MagicBean,10741643,4
+4758854,10741643,5
+zuuu,10741643,3
+121544567,10741643,5
+68277572,10741643,5
+travelingpanda,10741643,4
+68632515,10741643,3
+zhanglink,10741643,4
+46175747,10741643,5
+calf219,10741643,2
+C_Perk,10741643,4
+44506862,10741643,5
+3983786,10741643,3
+82439627,10741643,4
+mlbloodmoon,10741643,4
+tucaomalisu,10741643,4
+44610838,10741643,2
+80044238,10741643,5
+67258462,10741643,4
+60907220,10741643,4
+43625639,10741643,4
+chenhaoyuan,10741643,5
+42199769,10741643,5
+61223246,10741643,4
+37751161,10741643,5
+39674712,10741643,4
+86248756,10741643,5
+64679412,10741643,4
+72404201,10741643,5
+35882256,10741643,5
+60178773,10741643,3
+52876797,10741643,5
+50030620,10741643,4
+50712558,10741643,5
+47730670,10741643,5
+79135858,10741643,4
+75547130,10741643,4
+2370135,10741643,3
+46461287,10741643,5
+3690246,10741643,3
+64771060,10741643,5
+4918550,10741643,5
+jilly_the_fox,10741643,-1
+zzzt29,10741643,3
+whiteout,10741643,5
+120772872,10741643,4
+zjyw_,10741643,4
+dancealone,10741643,4
+zhy650218,10741643,5
+57099981,10741643,5
+58706786,10741643,4
+45726021,10741643,5
+6188730,10741643,4
+Bettertiffany,10741643,5
+68655879,10741643,3
+60020985,10741643,5
+chatterboc,10741643,4
+2232531,10741643,-1
+74851993,10741643,4
+jingsunsun,10741643,5
+3615093,10741643,3
+3417250,10741643,3
+74207075,10741643,4
+56486543,10741643,4
+44387904,10741643,5
+ao_m,10741643,-1
+kylefun,10741643,5
+115505780,10741643,4
+hidemyhead,10741643,4
+kangbo,10741643,-1
+52949223,10741643,5
+izume,10741643,5
+40066621,10741643,4
+46781917,10741643,-1
+77134601,10741643,3
+queenbean,10741643,5
+nyssa712,10741643,5
+tclh123,10741643,4
+52674525,10741643,5
+78412332,10741643,5
+73122939,10741643,5
+2096902,10741643,5
+49193369,10741643,5
+63281322,10741643,5
+47732529,10741643,4
+57542378,10741643,5
+92081445,10741643,5
+15778710,10741643,3
+54562055,10741643,4
+mjj911,10741643,4
+lu...lu,10741643,3
+119288749,10741643,4
+QQYoung,10741643,-1
+LrioWong,10741643,3
+39285669,10741643,4
+polypeptide,10741643,5
+googlegis,10741643,5
+59984702,10741643,4
+howlformousai,10741643,4
+Rainnie,10741643,5
+121103196,10741643,4
+44777564,10741643,4
+62524467,10741643,5
+jhy007,10741643,4
+Jeuxdeaux,10741643,5
+1438292,10741643,3
+2131520,10741643,3
+87651171,10741643,5
+64241630,10741643,-1
+buzengbujian,10741643,4
+xu779147197,10741643,5
+49339227,10741643,4
+Pour_toi,10741643,4
+Greewii,10741643,4
+guojoyo,10741643,5
+lilishi,10741643,5
+wuzouhuanghun,10741643,4
+43845160,10741643,4
+4281658,10741643,3
+2642700,10741643,5
+47590897,10741643,4
+rival,10741643,5
+ifsglisa,10741643,4
+45909488,10741643,5
+emnkcn,10741643,3
+VIKOyao,10741643,5
+59330201,10741643,4
+79464839,10741643,2
+12300787,10741643,3
+62342347,10741643,5
+baizi886,10741643,4
+missmici,10741643,4
+55488825,10741643,5
+huaxiaole,10741643,4
+miraclekylin,10741643,5
+movielove,10741643,5
+59593870,10741643,4
+34946635,10741643,4
+59393765,10741643,3
+55296496,10741643,5
+imriver,10741643,5
+61497577,10741643,4
+3604537,10741643,5
+erwa,10741643,5
+60746988,10741643,4
+qzersw,10741643,5
+49798956,10741643,3
+VastOpen,10741643,4
+4233254,10741643,5
+movie8,10741643,4
+30000831,10741643,5
+cankuzhuanjiao,10741643,4
+mrwumao,10741643,5
+1343585,10741643,4
+46220314,10741643,5
+kiwi22,10741643,4
+73869586,10741643,5
+yumami,10741643,5
+74897410,10741643,5
+46455848,10741643,5
+sb520,10741643,5
+scofieldx,10741643,5
+47335967,10741643,4
+72042403,10741643,3
+3691040,10741643,3
+CWQ1030,10741643,4
+52256518,10741643,5
+75740344,10741643,3
+2254775,10741643,5
+48539445,10741643,5
+48946932,10741643,5
+23645101,10741643,5
+74249669,10741643,4
+65323058,10741643,4
+119627251,10741643,5
+Solo-n,10741643,4
+49306315,10741643,4
+51494349,10741643,5
+cholerair,10741643,4
+41541704,10741643,4
+55779948,10741643,5
+ShawnChou,10741643,4
+119031382,10741643,5
+medeHOW,10741643,5
+wsc7315,10741643,4
+51479811,10741643,4
+EchinJS,10741643,4
+11472766,10741643,4
+43433108,10741643,5
+45574897,10741643,5
+60131907,10741643,4
+thevyi,10741643,3
+LoveJHart,10741643,4
+3148599,10741643,4
+48279669,10741643,5
+53682621,10741643,3
+32988123,10741643,5
+gourideqingchun,10741643,3
+43603952,10741643,4
+chemache,10741643,5
+53021795,10741643,4
+85119913,10741643,3
+49043874,10741643,5
+BIGAC,10741643,3
+48369193,10741643,5
+71221227,10741643,3
+58342964,10741643,2
+3457397,10741643,4
+41529515,10741643,5
+4213577,10741643,4
+luoshu,10741643,5
+2628019,10741643,4
+71265432,10741643,5
+lave,10741643,2
+leafwaiting,10741643,5
+57112840,10741643,4
+lolo1220,10741643,5
+xu122824,10741643,5
+85105550,10741643,4
+ace_wang,10741643,4
+2401613,10741643,4
+41031427,10741643,4
+potterz,10741643,4
+1686304,10741643,4
+41185421,10741643,5
+Faust_Tsai,10741643,4
+1532150,10741643,5
+82087372,10741643,5
+47852493,10741643,5
+sharkstyle,10741643,5
+58197963,10741643,5
+qszh,10741643,4
+57820202,10741643,5
+47828014,10741643,4
+58679862,10741643,3
+52318521,10741643,3
+43589213,10741643,5
+1658796,10741643,4
+liuyuntianma,10741643,5
+10643002,10741643,5
+2920373,10741643,5
+64075825,10741643,4
+phoenixjing,10741643,5
+4432819,10741643,4
+49108399,10741643,5
+114115384,10741643,5
+4684844,10741643,4
+63643182,10741643,4
+youhebuke,10741643,4
+67870530,10741643,4
+aking,10741643,4
+dyjun,10741643,4
+heiziyefengkuan,10741643,3
+veroniques,10741643,4
+xxxdorisxxx,10741643,3
+45833709,10741643,5
+49065754,10741643,4
+39378921,10741643,4
+rouchen,10741643,4
+lostinpradas,10741643,4
+4592394,10741643,5
+62498352,10741643,4
+clay,10741643,5
+tracypolaris,10741643,3
+58094799,10741643,4
+59384236,10741643,4
+prayerinc,10741643,5
+pancakes,10741643,2
+3753075,10741643,4
+never_zj,10741643,5
+Fantastic777,10741643,3
+hippo2,10741643,-1
+57729721,10741643,4
+tanya_tian,10741643,5
+91689010,10741643,4
+57157420,10741643,4
+1316648,10741643,3
+34087859,10741643,4
+34990334,10741643,3
+41240808,10741643,5
+1828898,10741643,5
+36769800,10741643,4
+benyuh,10741643,5
+52718923,10741643,3
+49383353,10741643,4
+121358228,10741643,4
+46816630,10741643,5
+elijahh,10741643,4
+48474156,10741643,5
+Sandal,10741643,4
+50225278,10741643,5
+mjli,10741643,4
+3034073,10741643,5
+41792966,10741643,4
+54173340,10741643,4
+63425028,10741643,4
+aspartameeee,10741643,4
+68728325,10741643,4
+Lisa.L,10741643,4
+74528520,10741643,4
+39535558,10741643,5
+110025674,10741643,4
+alfiestudio,10741643,4
+weeland,10741643,3
+hankluo,10741643,4
+70251090,10741643,5
+66475895,10741643,4
+100255899,10741643,5
+1662679,10741643,4
+goodbyemyprince,10741643,3
+43762131,10741643,4
+98257348,10741643,4
+chenhuayang,10741643,4
+37936896,10741643,3
+4698494,10741643,4
+54275383,10741643,4
+crazy.zheng,10741643,3
+27891967,10741643,-1
+nonowhy,10741643,4
+71217329,10741643,3
+miu-Wolf,10741643,3
+o8o8o8o,10741643,5
+monsterkill,10741643,4
+moschino,10741643,5
+49573253,10741643,3
+jacoxu,10741643,5
+63281612,10741643,5
+lilyhmmm,10741643,5
+59508588,10741643,4
+68865370,10741643,5
+starryday,10741643,4
+44008475,10741643,5
+49825242,10741643,4
+lycyycc,10741643,4
+lovat,10741643,5
+lingweiran_0305,10741643,4
+47641304,10741643,4
+59175592,10741643,5
+58040413,10741643,5
+49460139,10741643,5
+niutouziaini,10741643,4
+106289465,10741643,5
+ewigPolaris,10741643,5
+zzqcat13,10741643,3
+baobeijiajia,10741643,4
+realdeal,10741643,4
+myself7,10741643,4
+57235333,10741643,5
+cornerinsunshin,10741643,5
+lihaijing,10741643,4
+65359566,10741643,3
+huangrui1016,10741643,4
+heatherhx,10741643,4
+Colin-Mason,10741643,5
+2116413,10741643,4
+85054280,10741643,5
+tweek,10741643,5
+mufanxuanji,10741643,4
+2483074,10741643,5
+72720290,10741643,4
+woruili,10741643,3
+65744500,10741643,4
+zhangduanduan,10741643,4
+oceanlike,10741643,3
+candyaway,10741643,5
+59866355,10741643,5
+90001082,10741643,5
+jimxie,10741643,3
+dakusaido,10741643,5
+happysadop,10741643,4
+47228739,10741643,5
+67321616,10741643,5
+103622140,10741643,3
+65371460,10741643,4
+Jensen4ever,10741643,3
+yaodream,10741643,4
+84618418,10741643,4
+61689441,10741643,4
+42820633,10741643,4
+caicai1005,10741643,4
+e45e32,10741643,3
+2574869,10741643,4
+48715746,10741643,3
+77342367,10741643,5
+mxss,10741643,4
+63779277,10741643,4
+65603514,10741643,4
+killy_wys,10741643,4
+erbility,10741643,4
+woodlawcn,10741643,-1
+70614930,10741643,5
+36664483,10741643,5
+2209839,10741643,4
+55320320,10741643,5
+ydyie,10741643,1
+cyj8866,10741643,4
+52460447,10741643,4
+2847740,10741643,5
+47213845,10741643,5
+sldw,10741643,5
+86950901,10741643,4
+ilovehotcoffee,10741643,-1
+xiaoqianquan,10741643,4
+buzzsunny,10741643,5
+lucongye,10741643,5
+elf_chong,10741643,4
+66872229,10741643,4
+joyce_zhx504,10741643,3
+kiki.krystina,10741643,4
+jasmine_1992,10741643,2
+66767418,10741643,5
+3574374,10741643,5
+guoqiang_jiang,10741643,5
+51239127,10741643,5
+54744814,10741643,4
+suren11,10741643,4
+keytoworld,10741643,4
+47267124,10741643,1
+57523056,10741643,5
+3489938,10741643,4
+alfredd,10741643,5
+haixiaoyang,10741643,5
+62294102,10741643,3
+74948787,10741643,5
+60701395,10741643,4
+58658426,10741643,4
+60343252,10741643,4
+dddjl,10741643,4
+zhongxiran,10741643,5
+yaya57262373,10741643,5
+77117895,10741643,4
+IFOoo,10741643,5
+foxgarden,10741643,3
+lupinthe3rd,10741643,3
+49567226,10741643,4
+49567226,10741643,4
+67143504,10741643,4
+49315530,10741643,5
+endofmay,10741643,3
+47996412,10741643,4
+67653468,10741643,4
+48869880,10741643,5
+48046648,10741643,5
+DoctorHou,10741643,3
+lovesm,10741643,3
+binghushouyeren,10741643,3
+47552661,10741643,4
+66966914,10741643,4
+nuetu,10741643,5
+45641492,10741643,5
+2597570,10741643,5
+hellohibeauty,10741643,5
+P-fish,10741643,4
+doubana,10741643,4
+46660321,10741643,3
+51772918,10741643,4
+SesshuYang,10741643,5
+68487026,10741643,-1
+yeox,10741643,4
+84793883,10741643,5
+tengxiaoman,10741643,5
+37462874,10741643,5
+June091,10741643,2
+60822166,10741643,5
+4565520,10741643,4
+50564190,10741643,5
+79732919,10741643,4
+49041095,10741643,4
+53724452,10741643,4
+35417862,10741643,4
+77869650,10741643,5
+50683342,10741643,4
+10149854,10741643,5
+44231628,10741643,5
+dahuilang15656,10741643,1
+youyuanshanren,10741643,5
+72498513,10741643,4
+amyzong,10741643,5
+autumnalequinox,10741643,4
+pennypq,10741643,-1
+Do-my-self,10741643,5
+52634459,10741643,4
+shf993,10741643,2
+45375152,10741643,5
+58836160,10741643,4
+2172404,10741643,5
+48791176,10741643,3
+79970720,10741643,5
+1548712,10741643,5
+26473546,10741643,4
+65981408,10741643,4
+4234539,10741643,3
+46802054,10741643,2
+47925086,10741643,5
+53378505,10741643,4
+51136126,10741643,4
+36049101,10741643,5
+60259856,10741643,-1
+27632752,10741643,3
+guojie,10741643,4
+joaquina,10741643,5
+moooy,10741643,5
+3573746,10741643,-1
+iamloco,10741643,4
+Tulipfanfan,10741643,-1
+61297109,10741643,4
+34975211,10741643,2
+53811976,10741643,5
+Pigfloyd,10741643,3
+40027917,10741643,4
+68724030,10741643,3
+46836947,10741643,4
+2413295,10741643,5
+lichengbin,10741643,4
+1146004,10741643,4
+57103962,10741643,5
+56047940,10741643,-1
+60051428,10741643,5
+44730715,10741643,4
+51342796,10741643,5
+xiaomo1,10741643,4
+xwjaney,10741643,4
+43233255,10741643,3
+ddj814,10741643,4
+linqiu126,10741643,5
+77089569,10741643,4
+emmmmma,10741643,5
+urielwang,10741643,4
+Yuimokin,10741643,5
+zr1120,10741643,4
+57000148,10741643,4
+90688581,10741643,3
+45340915,10741643,-1
+47105459,10741643,5
+syfifi,10741643,5
+43877735,10741643,4
+74423513,10741643,4
+christinechu,10741643,3
+84446189,10741643,4
+1226511,10741643,4
+65628515,10741643,3
+xiaoai0109,10741643,4
+Liew_qing,10741643,3
+limujin1991,10741643,4
+interskh,10741643,4
+41752603,10741643,4
+leehomstyle,10741643,4
+xichlo,10741643,5
+biti.vector,10741643,4
+60211181,10741643,3
+Xia0_K,10741643,5
+1327234,10741643,5
+ysfxh,10741643,5
+71616521,10741643,4
+4404354,10741643,5
+4891607,10741643,4
+72497320,10741643,3
+13293153,10741643,5
+1659411,10741643,5
+102182263,10741643,5
+back2back,10741643,2
+znyken,10741643,4
+48919879,10741643,5
+stone-ron,10741643,4
+jyngoing1990,10741643,5
+29594909,10741643,5
+42535832,10741643,4
+52315577,10741643,5
+41211786,10741643,5
+1259506,10741643,3
+32616279,10741643,5
+2946363,10741643,4
+2245968,10741643,5
+caojiepeng,10741643,5
+ghl66866,10741643,5
+ghl66866,10741643,5
+57982827,10741643,5
+garfieldxk,10741643,4
+3534571,10741643,5
+cuyt,10741643,5
+lut06010938,10741643,5
+yezhan,10741643,1
+81922941,10741643,4
+35233612,10741643,3
+qxy6328,10741643,5
+vontall,10741643,5
+kelsizy,10741643,4
+62343222,10741643,5
+58285537,10741643,5
+62882981,10741643,4
+lovelinor310,10741643,5
+moneylatem,10741643,3
+vince_1216,10741643,4
+120507424,10741643,4
+31772056,10741643,5
+31772056,10741643,5
+85171795,10741643,4
+waylybaye,10741643,4
+70513238,10741643,5
+47515047,10741643,5
+yuanazha,10741643,4
+crisy,10741643,5
+chenlingjie,10741643,4
+43388025,10741643,4
+hufangyu,10741643,4
+Wasted,10741643,4
+44670626,10741643,5
+4778132,10741643,5
+rubikcj,10741643,3
+69688835,10741643,4
+43535885,10741643,3
+41370734,10741643,5
+Ghostlin,10741643,5
+4896156,10741643,4
+67162659,10741643,4
+49550156,10741643,5
+4315821,10741643,5
+yokodesu,10741643,4
+Charlie.Lee,10741643,5
+evollove,10741643,5
+50842003,10741643,4
+66339819,10741643,5
+89235910,10741643,4
+46920813,10741643,3
+eugne,10741643,4
+32867787,10741643,3
+sherrychen,10741643,4
+venn,10741643,3
+64149786,10741643,3
+35282603,10741643,4
+41627268,10741643,3
+bingobingo22,10741643,4
+sweetdog916,10741643,3
+81545235,10741643,5
+zqzhuqiu,10741643,4
+sweetqin,10741643,5
+72408115,10741643,4
+snowdrop14,10741643,4
+67687746,10741643,4
+55309646,10741643,4
+45549330,10741643,5
+sakuras1412,10741643,-1
+42410152,10741643,4
+fameloo,10741643,5
+JLeee,10741643,4
+49680203,10741643,4
+3213321,10741643,3
+44587806,10741643,3
+darkeye,10741643,-1
+27253308,10741643,4
+62588625,10741643,5
+lrq92livecn,10741643,5
+rarezhang,10741643,3
+88868656,10741643,4
+ChlorenceZhang,10741643,4
+3475246,10741643,5
+36759958,10741643,5
+yue007,10741643,4
+39583969,10741643,4
+suntrajan,10741643,5
+underthelinden,10741643,3
+21133666,10741643,4
+xsky,10741643,4
+46069533,10741643,5
+alyssaxinyi,10741643,3
+63305695,10741643,4
+60509795,10741643,3
+57837456,10741643,4
+immarisa,10741643,5
+52297888,10741643,4
+50672411,10741643,5
+63304223,10741643,4
+114729856,10741643,5
+liu_feng,10741643,2
+angelhor,10741643,3
+52683579,10741643,5
+42287027,10741643,4
+55895695,10741643,5
+54628115,10741643,3
+67630346,10741643,4
+54158411,10741643,4
+85256348,10741643,3
+9386243,10741643,5
+92198270,10741643,5
+4119315,10741643,5
+119789904,10741643,5
+52387038,10741643,5
+121168749,10741643,5
+apieceofpaper,10741643,4
+55397428,10741643,3
+lemmonlee,10741643,5
+27034244,10741643,5
+64110948,10741643,4
+4501544,10741643,3
+65366516,10741643,4
+37062227,10741643,4
+echosmilefor,10741643,5
+61551903,10741643,3
+69273736,10741643,5
+zhangzhai,10741643,4
+3072272,10741643,4
+moesolo,10741643,4
+31530097,10741643,4
+huoxiaoliang,10741643,3
+zyhang2005,10741643,4
+mmmooorrreee,10741643,-1
+61418644,10741643,4
+luobo687,10741643,5
+greengrey,10741643,4
+3929605,10741643,3
+linzexu,10741643,3
+4556819,10741643,5
+1256699,10741643,4
+bruceok,10741643,5
+2116608,10741643,-1
+2812599,10741643,5
+24925589,10741643,5
+liwei1806,10741643,5
+2304557,10741643,5
+LittleChong,10741643,2
+3065098,10741643,4
+63278789,10741643,4
+qingmuwu,10741643,5
+xiaoyu111,10741643,4
+35586325,10741643,4
+42332965,10741643,4
+mqw1993062012,10741643,4
+Arielalive,10741643,5
+47165648,10741643,4
+aquar25,10741643,4
+121186450,10741643,4
+47707866,10741643,5
+77378264,10741643,3
+lylee379,10741643,4
+zorro1989,10741643,5
+zorro1989,10741643,5
+58945423,10741643,4
+zuoxiaoan45,10741643,4
+54668301,10741643,4
+alois001,10741643,5
+junnasky,10741643,4
+towelcatryna,10741643,3
+58059972,10741643,5
+zo3c,10741643,4
+66344990,10741643,4
+couple1314,10741643,3
+88452602,10741643,4
+ock,10741643,5
+63347405,10741643,5
+45905762,10741643,5
+94392979,10741643,4
+1849697,10741643,3
+69435145,10741643,5
+3082551,10741643,3
+70619574,10741643,5
+70619574,10741643,5
+4350558,10741643,4
+kkk55,10741643,4
+2750884,10741643,4
+50292036,10741643,5
+konfer,10741643,4
+54030805,10741643,5
+47044131,10741643,4
+thehours_lxx,10741643,4
+Cesart,10741643,4
+djn1399,10741643,5
+cello22,10741643,5
+75086193,10741643,4
+67987874,10741643,4
+65321007,10741643,2
+50474968,10741643,4
+dipezzy,10741643,5
+dlll,10741643,5
+83395003,10741643,4
+79417931,10741643,4
+leaf615,10741643,5
+81475364,10741643,3
+Euphemia1990,10741643,5
+46735351,10741643,5
+63842655,10741643,4
+superpig119,10741643,5
+tongbaojia,10741643,4
+sadative,10741643,5
+76427026,10741643,5
+47886145,10741643,4
+alonggauss,10741643,4
+holy-fishman,10741643,4
+46505106,10741643,5
+46483875,10741643,3
+121080476,10741643,5
+vradica,10741643,4
+5613747,10741643,3
+66517885,10741643,4
+yayun920,10741643,5
+45818710,10741643,3
+doodler,10741643,4
+53172902,10741643,5
+77869047,10741643,5
+OpenSpaces,10741643,4
+angelqy,10741643,4
+2437974,10741643,3
+54345577,10741643,4
+jcw214,10741643,5
+45318563,10741643,4
+48842441,10741643,4
+66103395,10741643,4
+longwandaren,10741643,4
+61476348,10741643,5
+121144250,10741643,-1
+52471406,10741643,4
+MUSICER,10741643,5
+meatbunny,10741643,4
+chineserock,10741643,4
+62489520,10741643,5
+90747535,10741643,3
+30578327,10741643,5
+liaoruochenxing,10741643,5
+103342355,10741643,5
+lewis_zzc,10741643,4
+47589972,10741643,3
+56788441,10741643,5
+79668765,10741643,4
+Chneyu8504,10741643,5
+51242802,10741643,5
+immmmm,10741643,4
+37402473,10741643,3
+4132596,10741643,4
+wangxhtt,10741643,4
+40219878,10741643,4
+114499538,10741643,5
+83254530,10741643,5
+hanqiu1995,10741643,4
+53089248,10741643,5
+67009209,10741643,5
+tomqulab,10741643,4
+3201359,10741643,5
+shaesum,10741643,5
+66916695,10741643,5
+92406150,10741643,5
+46406284,10741643,5
+xuchenxi,10741643,4
+83742373,10741643,4
+63879638,10741643,5
+88636083,10741643,3
+maying,10741643,4
+62323512,10741643,5
+45935447,10741643,5
+50560979,10741643,3
+57424312,10741643,4
+49271269,10741643,4
+road006,10741643,4
+45542406,10741643,4
+49060307,10741643,3
+93384271,10741643,4
+27839154,10741643,5
+50532338,10741643,5
+2853103,10741643,4
+77099096,10741643,3
+41575985,10741643,3
+79348108,10741643,4
+49041524,10741643,4
+54839416,10741643,4
+58374891,10741643,5
+55411192,10741643,5
+assam,10741643,5
+jomey,10741643,3
+sxy921026,10741643,4
+53511670,10741643,4
+53055862,10741643,3
+Goldroger,10741643,5
+97105227,10741643,5
+53271347,10741643,5
+47784827,10741643,5
+inkhkkk,10741643,3
+52677000,10741643,5
+41255136,10741643,5
+1859081,10741643,2
+59253003,10741643,5
+shenyixiu,10741643,5
+60145497,10741643,4
+34355509,10741643,4
+LIMEADE,10741643,5
+shushiwang,10741643,2
+47404227,10741643,4
+81353725,10741643,-1
+67187563,10741643,5
+93446419,10741643,5
+8449145,10741643,4
+2965102,10741643,4
+48990593,10741643,3
+3573130,10741643,4
+1712154,10741643,5
+18209533,10741643,5
+29800647,10741643,5
+15174414,10741643,3
+imlove,10741643,5
+29092449,10741643,5
+47587724,10741643,5
+60803331,10741643,3
+dengzhuo,10741643,4
+pm,10741643,3
+63853123,10741643,5
+ellie0314,10741643,5
+63394253,10741643,5
+49926534,10741643,5
+sen07990149,10741643,3
+68002540,10741643,5
+candysoso,10741643,5
+108212384,10741643,5
+54672231,10741643,5
+84721148,10741643,4
+Genjo,10741643,4
+luohuazhu,10741643,3
+2174443,10741643,5
+xjwjl,10741643,5
+calvinlv,10741643,4
+oakhui,10741643,2
+33290727,10741643,4
+77785733,10741643,5
+28820949,10741643,4
+75918012,10741643,5
+87681382,10741643,-1
+xjrangel,10741643,4
+2039097,10741643,4
+Rainteedm,10741643,3
+51103261,10741643,4
+63312230,10741643,4
+46353600,10741643,1
+62943026,10741643,4
+48766216,10741643,5
+45242330,10741643,3
+emmaus3,10741643,4
+yeung123,10741643,3
+aixiaoke,10741643,3
+26573674,10741643,-1
+54116667,10741643,5
+56411907,10741643,5
+choryyu,10741643,4
+3726200,10741643,5
+47755264,10741643,4
+3481297,10741643,3
+lancaocao,10741643,3
+48985974,10741643,5
+54451170,10741643,2
+59535372,10741643,5
+misshoe,10741643,4
+54782824,10741643,4
+95017002,10741643,3
+xguozi,10741643,4
+xiaopoyu,10741643,4
+49486671,10741643,4
+NN99,10741643,5
+Baconepi,10741643,4
+83195287,10741643,3
+Victory_V,10741643,3
+119192622,10741643,4
+44750610,10741643,4
+46035032,10741643,4
+63792011,10741643,4
+39072740,10741643,4
+80757193,10741643,3
+115715339,10741643,3
+79269122,10741643,4
+x__,10741643,-1
+Gabriel_Mars,10741643,4
+calmlygod,10741643,5
+47832666,10741643,4
+57211554,10741643,4
+58211668,10741643,5
+JOY_Cee,10741643,4
+poison1988,10741643,4
+chocolate_me,10741643,4
+75288450,10741643,4
+50091547,10741643,5
+2251020,10741643,5
+75007342,10741643,2
+littlecucumber,10741643,-1
+49411009,10741643,5
+120832541,10741643,4
+34295625,10741643,5
+60282966,10741643,5
+choushabi,10741643,4
+31906441,10741643,4
+walkingfish723,10741643,5
+soyoung1986,10741643,5
+lizhenghome,10741643,5
+30641768,10741643,4
+babemine,10741643,-1
+68647916,10741643,5
+Mo-Cuishle,10741643,3
+102332235,10741643,4
+46088391,10741643,4
+50389330,10741643,4
+11080929,10741643,5
+103052957,10741643,5
+Zynismus,10741643,3
+greenclouds,10741643,5
+52437795,10741643,5
+4651198,10741643,5
+47279718,10741643,2
+1231029,10741643,3
+2626489,10741643,5
+xiiique,10741643,4
+lllooo,10741643,5
+33908385,10741643,5
+SupremeLady,10741643,4
+lcawt,10741643,4
+79288752,10741643,4
+59480546,10741643,4
+47543872,10741643,5
+enriqueiglesias,10741643,4
+6900674,10741643,-1
+80570322,10741643,3
+41675106,10741643,5
+freak_lee,10741643,5
+79858645,10741643,4
+42141886,10741643,5
+sijidouorange,10741643,3
+42882783,10741643,4
+miaowl,10741643,4
+raintingfan,10741643,4
+mayxoxo,10741643,4
+wxhsolo,10741643,5
+bananany,10741643,4
+120982954,10741643,5
+60999102,10741643,4
+josaijosai,10741643,5
+fealty93314,10741643,4
+Miss.Perhaps,10741643,5
+49397291,10741643,5
+flyxzz,10741643,4
+KuanmA,10741643,5
+120499052,10741643,4
+ArsenalCH,10741643,4
+ziningcanyue,10741643,5
+48881927,10741643,4
+synynyn,10741643,4
+tanmingdong,10741643,4
+61009337,10741643,4
+TheGuy,10741643,4
+64999410,10741643,4
+coctelxw,10741643,-1
+3089552,10741643,5
+yc_0619,10741643,4
+loveyzj13,10741643,5
+55849683,10741643,3
+2401379,10741643,4
+rachelife930,10741643,3
+69202815,10741643,4
+guojiaxinzinc,10741643,4
+Qixiaopang,10741643,3
+97757646,10741643,4
+3060868,10741643,4
+qinyouxuan,10741643,5
+43783099,10741643,5
+46902321,10741643,4
+peegod,10741643,4
+41547797,10741643,3
+tiebin223,10741643,5
+54838318,10741643,4
+beaux,10741643,5
+35963836,10741643,3
+119084031,10741643,5
+ZY-Monster,10741643,4
+45679865,10741643,5
+15137952,10741643,5
+115197470,10741643,4
+zcliao,10741643,5
+46368799,10741643,4
+51945032,10741643,4
+52482326,10741643,4
+fre7dom,10741643,4
+37914560,10741643,4
+45200872,10741643,4
+1156918,10741643,4
+sunny3333,10741643,4
+91371841,10741643,5
+zeroiris,10741643,4
+6645830,10741643,5
+seagull_shen,10741643,5
+43869534,10741643,5
+1501433,10741643,3
+53749033,10741643,5
+53145250,10741643,4
+57400244,10741643,4
+3033835,10741643,5
+47374105,10741643,4
+43664862,10741643,5
+3446929,10741643,3
+Coka-Less,10741643,4
+44290240,10741643,5
+53925176,10741643,2
+abc1985,10741643,3
+103180003,10741643,4
+97431474,10741643,5
+anarkhhom,10741643,4
+48300402,10741643,4
+77875481,10741643,4
+120112831,10741643,4
+80381774,10741643,4
+80602343,10741643,3
+57126178,10741643,4
+G-one,10741643,4
+55910656,10741643,5
+45787212,10741643,5
+51139499,10741643,5
+cellursoda,10741643,5
+phoenixbox,10741643,-1
+Chorai42,10741643,5
+1800696,10741643,5
+47199948,10741643,4
+deadpoet_tt,10741643,3
+sevenVSseven,10741643,4
+freemanlau,10741643,4
+87558584,10741643,2
+64065416,10741643,4
+5754772,10741643,-1
+101047030,10741643,5
+messisp,10741643,4
+116996584,10741643,4
+kalabonny,10741643,4
+ligil,10741643,4
+65417437,10741643,5
+49543853,10741643,5
+czj950615,10741643,3
+67452105,10741643,5
+duoxiaoduoyy,10741643,5
+40684892,10741643,5
+72354881,10741643,5
+49538698,10741643,4
+98357097,10741643,5
+49993320,10741643,3
+54428903,10741643,4
+83250000,10741643,5
+2741490,10741643,4
+3934959,10741643,4
+63018910,10741643,5
+34948612,10741643,5
+mirandapower,10741643,4
+MrVincent,10741643,5
+37504538,10741643,3
+53183965,10741643,5
+24598372,10741643,5
+yueyuedad1972,10741643,5
+3677825,10741643,5
+yarmillaw,10741643,5
+ospopi,10741643,4
+wjlqnyrc,10741643,4
+Liverpoolsun,10741643,4
+69773402,10741643,4
+2483060,10741643,5
+26932901,10741643,5
+rujiayang,10741643,4
+54444481,10741643,5
+reeboir,10741643,-1
+64624172,10741643,-1
+70680016,10741643,5
+115547734,10741643,4
+riflee1,10741643,5
+Tyin,10741643,3
+63386012,10741643,5
+64026152,10741643,5
+Aryanyelin,10741643,5
+xiaohua555,10741643,4
+43092117,10741643,4
+remixchao,10741643,3
+dear.still,10741643,5
+59576688,10741643,3
+mymm,10741643,5
+lyingcream,10741643,4
+Rickyan,10741643,3
+62415286,10741643,5
+illusion,10741643,5
+holeofstone,10741643,4
+4318344,10741643,4
+feizhuangzhuang,10741643,4
+vivi-felicia,10741643,4
+74358640,10741643,5
+38300211,10741643,5
+49293686,10741643,3
+foreveryoyo,10741643,4
+Metatron_667259,10741643,4
+97184237,10741643,5
+Leslie_ontheway,10741643,3
+discipline,10741643,4
+74599483,10741643,4
+62968412,10741643,5
+4287326,10741643,4
+jeffersontang,10741643,4
+TABRISXIE,10741643,5
+67689487,10741643,3
+3655806,10741643,5
+47653703,10741643,4
+60357094,10741643,4
+15533340,10741643,3
+75956787,10741643,3
+52420980,10741643,5
+64210713,10741643,4
+59734711,10741643,4
+60420315,10741643,5
+114845268,10741643,3
+72944170,10741643,3
+41980752,10741643,5
+54907080,10741643,4
+lilianpeng,10741643,5
+taotuoshu,10741643,5
+3254418,10741643,4
+Olive1,10741643,4
+51242421,10741643,4
+13841061,10741643,5
+sivirxxxx,10741643,3
+52897840,10741643,5
+66600013,10741643,4
+yangqihang,10741643,3
+63063791,10741643,5
+119078867,10741643,3
+81059417,10741643,4
+effyu,10741643,4
+JasonDengKing,10741643,5
+chils,10741643,5
+51331852,10741643,5
+39833999,10741643,5
+91785401,10741643,4
+64760834,10741643,4
+80609092,10741643,3
+45838830,10741643,5
+55529089,10741643,4
+51387429,10741643,-1
+51965814,10741643,4
+47383067,10741643,4
+Jewelyxy,10741643,4
+85344570,10741643,3
+sunnie.j,10741643,5
+62455169,10741643,4
+57950753,10741643,2
+kundalinii,10741643,5
+43447840,10741643,5
+67201475,10741643,5
+Chrisdrunker,10741643,4
+lsx8270,10741643,3
+helloxxf,10741643,3
+45025869,10741643,4
+81757410,10741643,4
+TualatriX,10741643,5
+40940203,10741643,5
+yimutan,10741643,4
+2426372,10741643,2
+youeqian,10741643,4
+26895097,10741643,5
+80394146,10741643,5
+48812180,10741643,4
+Tracy_morning,10741643,4
+78947539,10741643,4
+40021345,10741643,5
+2234216,10741643,5
+7735198,10741643,3
+77910891,10741643,4
+80227900,10741643,3
+69573255,10741643,3
+48726212,10741643,5
+lulu123,10741643,3
+funkrubby,10741643,4
+FANFan-ER,10741643,4
+48712788,10741643,4
+58418550,10741643,4
+67952037,10741643,3
+58774025,10741643,4
+99168494,10741643,5
+walkrain,10741643,3
+bobolee,10741643,4
+4600811,10741643,4
+Pearls,10741643,5
+daomeidi,10741643,4
+89456972,10741643,5
+74233970,10741643,5
+66458815,10741643,3
+48042943,10741643,5
+46382188,10741643,4
+erfolgqun,10741643,3
+summerx,10741643,4
+fireshrimp,10741643,4
+bebesummer,10741643,4
+milk817,10741643,4
+smilng,10741643,4
+su27,10741643,5
+61991050,10741643,5
+96443589,10741643,3
+mengaxin,10741643,4
+piscesyw,10741643,5
+80691286,10741643,5
+41773334,10741643,3
+yuanzai7,10741643,2
+79205951,10741643,5
+65466495,10741643,5
+55350236,10741643,3
+79034042,10741643,4
+3535619,10741643,4
+4222235,10741643,3
+love1980s,10741643,5
+55466621,10741643,3
+60742023,10741643,4
+yunzhenger,10741643,4
+64673199,10741643,5
+29789072,10741643,4
+51258253,10741643,5
+yemenajia,10741643,4
+9350537,10741643,4
+62774885,10741643,3
+25621274,10741643,4
+smilingfish5,10741643,4
+emiliewen,10741643,5
+33260321,10741643,5
+mc23i3,10741643,4
+53483609,10741643,5
+1330470,10741643,5
+monkeycupl,10741643,5
+56464886,10741643,3
+97453118,10741643,5
+97365571,10741643,5
+a-nie,10741643,4
+AzraeL.,10741643,5
+45182133,10741643,4
+vonvonluck,10741643,5
+lucifer-.,10741643,5
+36093007,10741643,4
+philosophos,10741643,5
+101504179,10741643,3
+58158290,10741643,5
+4157643,10741643,5
+79434713,10741643,3
+52008660,10741643,5
+58934229,10741643,5
+lanodg,10741643,4
+51468288,10741643,5
+pushusep,10741643,4
+4075628,10741643,5
+1223469,10741643,5
+76556131,10741643,5
+48972391,10741643,5
+35294199,10741643,4
+49631776,10741643,3
+freedom1,10741643,5
+2266233,10741643,5
+Utopiartist,10741643,3
+1643126,10741643,4
+frontboy,10741643,3
+95817419,10741643,5
+57075245,10741643,4
+Jobszhuisui9,10741643,5
+81564048,10741643,4
+bilibili01,10741643,3
+53152938,10741643,5
+41586641,10741643,5
+airan712,10741643,3
+airan712,10741643,3
+106126456,10741643,3
+laobaohahaha,10741643,3
+4664685,10741643,5
+bonniewang1991,10741643,5
+62295109,10741643,4
+anitajoy,10741643,4
+miloservic,10741643,5
+chenhongyu1222,10741643,4
+81628425,10741643,4
+48510302,10741643,4
+72993383,10741643,4
+92085198,10741643,5
+babyplume,10741643,5
+71499867,10741643,4
+1302842,10741643,4
+1407063,10741643,4
+nana8023,10741643,5
+whiteStripes,10741643,3
+gongzitian,10741643,3
+102821254,10741643,4
+47636927,10741643,4
+zoooooh,10741643,4
+papa1968,10741643,5
+15535572,10741643,4
+80074512,10741643,1
+33404561,10741643,-1
+chiqiangze,10741643,4
+81254035,10741643,5
+27507760,10741643,3
+42336848,10741643,4
+matter,10741643,4
+monetsun,10741643,3
+margie_margie,10741643,3
+star0607,10741643,5
+ktXIIIjk,10741643,3
+68979085,10741643,4
+2545173,10741643,5
+raptor,10741643,5
+tinysean,10741643,3
+56684518,10741643,4
+66502007,10741643,3
+51059118,10741643,4
+farewel,10741643,4
+Dushanbe,10741643,4
+45080512,10741643,4
+Hex79696e67,10741643,5
+60444630,10741643,3
+sdufo,10741643,5
+58946652,10741643,4
+miaolxh,10741643,4
+78551525,10741643,4
+Mango99101185,10741643,4
+suxiaobu,10741643,4
+changkxs,10741643,5
+allepeng,10741643,4
+yourmint,10741643,4
+2183956,10741643,5
+pandoranavi,10741643,4
+113603062,10741643,4
+sbonder,10741643,2
+39792754,10741643,3
+48593436,10741643,2
+32334286,10741643,3
+hygjcy,10741643,-1
+46792617,10741643,3
+72934606,10741643,4
+2100571,10741643,4
+83548080,10741643,4
+120692862,10741643,3
+91958040,10741643,5
+cynicalness,10741643,4
+45448082,10741643,4
+wallaceLee,10741643,3
+120420524,10741643,3
+79829494,10741643,5
+goodday,10741643,4
+76452322,10741643,4
+losrfuu,10741643,4
+pottqqq,10741643,5
+Lemonsir,10741643,4
+sunshinean2000,10741643,4
+35135916,10741643,4
+10162011,10741643,5
+tt2792654,10741643,5
+37586252,10741643,5
+120058968,10741643,5
+64977229,10741643,5
+54385496,10741643,5
+xiaogua,10741643,3
+k-moon,10741643,5
+68434505,10741643,4
+64092595,10741643,4
+37897370,10741643,5
+1600401,10741643,2
+81616503,10741643,4
+49715964,10741643,5
+16321180,10741643,5
+15948759,10741643,4
+alicelv,10741643,5
+72970549,10741643,4
+in-mill0712,10741643,5
+laotiee,10741643,4
+75418722,10741643,5
+45661291,10741643,5
+CatPrince,10741643,4
+1512803,10741643,5
+niuzhi,10741643,4
+48976619,10741643,4
+46738101,10741643,3
+faydao,10741643,3
+65684544,10741643,5
+45463495,10741643,4
+72061303,10741643,4
+MichelleHong,10741643,3
+72013021,10741643,4
+38850701,10741643,4
+suffering0,10741643,3
+46786788,10741643,4
+47029300,10741643,4
+60825742,10741643,3
+sunshine6044,10741643,1
+iljyya,10741643,5
+4320404,10741643,4
+103252010,10741643,4
+50283396,10741643,5
+57969665,10741643,4
+fawaixiaoyao,10741643,5
+15338047,10741643,4
+sshen,10741643,4
+tessai,10741643,5
+youyeqiuxin,10741643,4
+51067846,10741643,5
+haozi20,10741643,5
+68871897,10741643,2
+AZureKK,10741643,5
+JunKun,10741643,4
+demoncat,10741643,4
+shallwaycn,10741643,4
+leederx,10741643,5
+33724759,10741643,4
+29691446,10741643,5
+2190743,10741643,-1
+ymirlan,10741643,5
+3978591,10741643,-1
+74262574,10741643,5
+uuwind,10741643,4
+RIVERT,10741643,4
+67749197,10741643,5
+47504578,10741643,5
+53049553,10741643,5
+colintide,10741643,3
+60277804,10741643,4
+1965820,10741643,5
+79917270,10741643,5
+49764228,10741643,4
+91446742,10741643,5
+84632476,10741643,4
+23318493,10741643,5
+highmore91,10741643,5
+60041289,10741643,4
+Kevin3,10741643,4
+yetel,10741643,5
+58302789,10741643,4
+45713976,10741643,5
+1582706,10741643,5
+48443053,10741643,5
+69168173,10741643,4
+61476572,10741643,4
+54044420,10741643,4
+120895151,10741643,5
+lovejuan-foreve,10741643,5
+83726680,10741643,4
+lonaldo,10741643,5
+49068389,10741643,5
+krsnik,10741643,4
+issyoukenmei,10741643,5
+31335200,10741643,4
+60667221,10741643,4
+43517308,10741643,4
+57892875,10741643,-1
+94304030,10741643,5
+50410126,10741643,5
+62053375,10741643,3
+Grace_Xuliang,10741643,4
+lqc_amen,10741643,5
+43580320,10741643,5
+vivianlovecat,10741643,4
+115065521,10741643,3
+53804557,10741643,5
+bby341,10741643,5
+34398229,10741643,4
+109185948,10741643,4
+RongLiang,10741643,5
+56415499,10741643,4
+82522145,10741643,3
+silhouette_q1,10741643,-1
+44149893,10741643,5
+memeko,10741643,4
+mariahbfly,10741643,3
+mariahbfly,10741643,3
+ntxjw,10741643,4
+67951512,10741643,4
+52957783,10741643,5
+52745181,10741643,3
+87209971,10741643,4
+35961722,10741643,4
+68876609,10741643,5
+yaocoder,10741643,5
+28566695,10741643,4
+39813213,10741643,5
+85084961,10741643,3
+57319481,10741643,5
+36910596,10741643,4
+64227759,10741643,5
+lucisferre,10741643,4
+zhoukaka1121,10741643,5
+62244065,10741643,5
+67758880,10741643,4
+CTT696,10741643,4
+49489978,10741643,5
+wanfusheng,10741643,5
+54633830,10741643,4
+93892137,10741643,4
+justineyj,10741643,5
+3592617,10741643,3
+2546918,10741643,5
+yunl988,10741643,4
+50985521,10741643,4
+tofrom,10741643,4
+54034056,10741643,4
+stef23,10741643,5
+1353806,10741643,5
+56618319,10741643,-1
+68091042,10741643,4
+nearlloveyou,10741643,3
+46603705,10741643,4
+mygood,10741643,4
+mogubloom,10741643,5
+Jolitachou,10741643,2
+119850013,10741643,4
+35563914,10741643,4
+79560195,10741643,4
+4601191,10741643,4
+nanadeclover,10741643,5
+Nofour,10741643,4
+80172678,10741643,5
+forever-me,10741643,-1
+2157486,10741643,5
+shanshanyouli,10741643,4
+volnet,10741643,4
+aliclaire,10741643,4
+52291505,10741643,5
+HouLi,10741643,3
+95989606,10741643,3
+54166163,10741643,4
+48108412,10741643,4
+ink1020,10741643,4
+3969292,10741643,3
+acgfan,10741643,3
+Ethan-S,10741643,5
+46441063,10741643,5
+55915138,10741643,4
+4074535,10741643,3
+72098495,10741643,4
+66295147,10741643,5
+lynnblue,10741643,4
+74115192,10741643,5
+tinyyuan,10741643,5
+3326265,10741643,5
+30765497,10741643,4
+cxoo7,10741643,3
+DarkSinger,10741643,5
+49122242,10741643,5
+59113889,10741643,5
+105924789,10741643,5
+50514638,10741643,5
+4492661,10741643,5
+88096302,10741643,3
+4200336,10741643,5
+9326309,10741643,4
+3706500,10741643,4
+42144253,10741643,3
+69223309,10741643,5
+45177538,10741643,4
+46357426,10741643,5
+54614388,10741643,5
+39611799,10741643,4
+91975504,10741643,2
+cjshangbuqi,10741643,3
+2880529,10741643,4
+101230073,10741643,3
+sophia_423,10741643,4
+80611390,10741643,4
+luoqingyou,10741643,5
+52004957,10741643,4
+sovey,10741643,4
+rabbit_forest,10741643,4
+muzihen22,10741643,5
+63822026,10741643,5
+63822026,10741643,5
+49207506,10741643,5
+116537034,10741643,4
+blossom5,10741643,4
+47190086,10741643,-1
+88679297,10741643,5
+summersugarb,10741643,5
+3410802,10741643,4
+2933839,10741643,5
+56270845,10741643,4
+qingfengweilan,10741643,5
+75256438,10741643,4
+mymydemon,10741643,5
+shatterjiggl,10741643,-1
+47512664,10741643,4
+2205097,10741643,5
+7421779,10741643,3
+seafish1990,10741643,5
+59428188,10741643,4
+119043374,10741643,5
+ice_pudding,10741643,4
+jiaying06152433,10741643,4
+jolyne,10741643,3
+56326446,10741643,4
+2963025,10741643,3
+xiaomengqiuyue,10741643,5
+doris0225,10741643,5
+60407456,10741643,4
+yeeeeeee,10741643,3
+70242437,10741643,4
+dazhui,10741643,4
+53350953,10741643,5
+40327058,10741643,3
+32025786,10741643,4
+aliiiiis,10741643,3
+51870876,10741643,4
+57805307,10741643,5
+huangzhirong,10741643,4
+81746165,10741643,5
+41541165,10741643,4
+81746165,10741643,5
+41541165,10741643,4
+4417096,10741643,4
+46264744,10741643,4
+92945557,10741643,4
+yoji,10741643,5
+105919549,10741643,4
+92025447,10741643,3
+u-fan,10741643,5
+88132149,10741643,4
+xiaohu2008,10741643,4
+suvin,10741643,5
+74602950,10741643,5
+59179586,10741643,4
+46371576,10741643,4
+49342454,10741643,4
+61569566,10741643,4
+62832736,10741643,2
+3681409,10741643,4
+flied,10741643,4
+iamjenny,10741643,4
+1182787,10741643,5
+115927427,10741643,-1
+57452457,10741643,3
+74506123,10741643,4
+keesh,10741643,4
+3546937,10741643,3
+44761018,10741643,4
+45826774,10741643,5
+81923941,10741643,4
+58950261,10741643,5
+4557738,10741643,5
+79037298,10741643,1
+aolantuo7,10741643,4
+10287741,10741643,4
+79844083,10741643,1
+53011245,10741643,4
+zhaichuoatopos,10741643,4
+115374243,10741643,5
+49288532,10741643,4
+70730906,10741643,5
+chen_cao,10741643,4
+96873313,10741643,5
+monkey2b,10741643,3
+Reductionist,10741643,4
+119224522,10741643,5
+26482350,10741643,4
+62101398,10741643,5
+sansu_fighting,10741643,4
+3484320,10741643,5
+36685583,10741643,5
+mangooooo,10741643,5
+SR-Vision,10741643,5
+boboaibaobao,10741643,4
+flxjp,10741643,5
+chaomei,10741643,3
+liqiyao8931,10741643,5
+91097642,10741643,4
+62815815,10741643,5
+t1ana1,10741643,4
+13621767,10741643,5
+48997404,10741643,5
+axiuluo1529,10741643,3
+joyveela,10741643,5
+btjd,10741643,4
+34210160,10741643,4
+glimo,10741643,5
+56085825,10741643,5
+1225334,10741643,5
+miomiomeng,10741643,4
+yuuu,10741643,4
+cassandra73,10741643,5
+shaohaifeng,10741643,5
+yd731726282,10741643,3
+12913964,10741643,5
+41627369,10741643,5
+49425957,10741643,5
+119183809,10741643,3
+eyesfromacat,10741643,5
+58776763,10741643,4
+69068312,10741643,5
+20676116,10741643,4
+kidie,10741643,5
+jason000021,10741643,3
+16780361,10741643,4
+2217105,10741643,4
+64810239,10741643,5
+39721129,10741643,3
+93707828,10741643,5
+luomengyuan,10741643,4
+hoomjac,10741643,4
+3725818,10741643,5
+116089509,10741643,4
+63548568,10741643,3
+57429985,10741643,3
+34343021,10741643,5
+zisu1115,10741643,4
+2374654,10741643,4
+3559769,10741643,4
+crambola,10741643,4
+crambola,10741643,4
+1322481,10741643,4
+56098652,10741643,5
+70816175,10741643,4
+73760707,10741643,4
+45059307,10741643,3
+49433742,10741643,5
+66831677,10741643,5
+65833125,10741643,4
+wangxiaobei89,10741643,5
+59691717,10741643,5
+49443898,10741643,5
+24398573,10741643,5
+47821061,10741643,4
+3989670,10741643,5
+dbNAYU,10741643,4
+90421174,10741643,4
+waterfall24,10741643,4
+Hugo0804,10741643,5
+1733175,10741643,4
+109055681,10741643,4
+Huxuan0522,10741643,4
+antee,10741643,5
+2428233,10741643,3
+48902446,10741643,4
+40659159,10741643,5
+jiawangdong,10741643,5
+93160617,10741643,5
+41640240,10741643,-1
+36554075,10741643,5
+34799839,10741643,4
+1626912,10741643,3
+58099939,10741643,4
+SouYing,10741643,5
+58737899,10741643,5
+41474557,10741643,5
+73176623,10741643,5
+46338692,10741643,4
+43662887,10741643,3
+swordx,10741643,4
+swordx,10741643,4
+icefishe,10741643,5
+eastease,10741643,2
+57784370,10741643,3
+80768830,10741643,5
+Kenren,10741643,3
+1258681,10741643,5
+42881408,10741643,-1
+4598811,10741643,5
+labifenelm,10741643,3
+snooming,10741643,4
+mashushu,10741643,5
+45857472,10741643,5
+Yuppie314,10741643,5
+65923241,10741643,5
+116028326,10741643,4
+11891254,10741643,5
+53608504,10741643,3
+2797193,10741643,5
+Ocarshors,10741643,4
+104610375,10741643,1
+51713363,10741643,4
+31820400,10741643,5
+52409166,10741643,-1
+martian1996,10741643,2
+carytrading,10741643,5
+camus_wei,10741643,-1
+57741803,10741643,5
+63832812,10741643,4
+chuleiwu,10741643,4
+70961153,10741643,4
+74420370,10741643,5
+30872266,10741643,5
+GuanZY1105,10741643,5
+qi-shao-shang,10741643,4
+izune,10741643,4
+1951882,10741643,5
+pinkjar,10741643,3
+43756834,10741643,5
+tom80s,10741643,3
+10011120,10741643,3
+d15i7,10741643,5
+Snoopeacer,10741643,5
+75732992,10741643,-1
+87517858,10741643,5
+Milk_Solo,10741643,5
+z1874,10741643,4
+47704741,10741643,4
+52461129,10741643,3
+baodai,10741643,4
+1183033,10741643,4
+moonphoebela,10741643,-1
+garrincha,10741643,5
+74010175,10741643,5
+50826027,10741643,4
+59608253,10741643,4
+1215929,10741643,4
+christopherlin,10741643,3
+34364053,10741643,5
+55577893,10741643,5
+hiiamhere,10741643,5
+55593701,10741643,3
+zhz586,10741643,4
+neofree,10741643,3
+87663369,10741643,5
+39754117,10741643,4
+25329087,10741643,4
+90747214,10741643,5
+43004375,10741643,4
+65369148,10741643,4
+59757081,10741643,3
+ethanli,10741643,5
+anliye,10741643,5
+strikeman,10741643,4
+54347708,10741643,5
+gatoyconejo,10741643,5
+52622213,10741643,5
+2414691,10741643,5
+48266469,10741643,3
+70296365,10741643,3
+4383968,10741643,4
+1981373,10741643,4
+81939398,10741643,4
+HanaANDcat,10741643,5
+54443064,10741643,-1
+75179640,10741643,3
+59556078,10741643,4
+63305122,10741643,4
+cashbird36,10741643,3
+fairyhui521,10741643,4
+58453836,10741643,5
+56524460,10741643,2
+daysofyouth,10741643,5
+74170855,10741643,5
+41952166,10741643,4
+LauFun,10741643,4
+50873710,10741643,5
+xphone,10741643,5
+2494629,10741643,5
+finle,10741643,4
+chen-qixu,10741643,4
+urpk,10741643,5
+39649962,10741643,5
+62203295,10741643,4
+105188554,10741643,5
+3736242,10741643,5
+67781674,10741643,5
+53477720,10741643,4
+Maymorning,10741643,3
+48143172,10741643,4
+58170865,10741643,5
+mkfinch,10741643,5
+61394930,10741643,4
+34867979,10741643,5
+68325010,10741643,4
+momojasper,10741643,3
+68020683,10741643,5
+yzone,10741643,4
+66495218,10741643,5
+53362350,10741643,2
+41790895,10741643,4
+ruoxingyi,10741643,4
+51965596,10741643,4
+4913683,10741643,4
+sara39aiba,10741643,5
+62992603,10741643,4
+57581825,10741643,4
+wehx2,10741643,3
+60016862,10741643,4
+50039244,10741643,-1
+41976054,10741643,4
+76654463,10741643,4
+wemn,10741643,-1
+2234264,10741643,4
+76781369,10741643,4
+3007182,10741643,4
+41452836,10741643,4
+huxy1983,10741643,5
+cheng_Ting,10741643,5
+myjeajoon,10741643,5
+Civil_13,10741643,4
+70970974,10741643,3
+arysai,10741643,2
+103608514,10741643,4
+79498814,10741643,5
+33693061,10741643,2
+69336361,10741643,5
+44541551,10741643,5
+56793904,10741643,4
+goldenslumber,10741643,4
+29998862,10741643,4
+1114835,10741643,3
+2504153,10741643,4
+35925189,10741643,5
+47519520,10741643,4
+fujing,10741643,4
+afatar,10741643,2
+lnln,10741643,-1
+72135894,10741643,5
+faiel,10741643,4
+4289978,10741643,3
+alantsai,10741643,3
+58249010,10741643,5
+kazta,10741643,4
+misa_x,10741643,4
+31425610,10741643,5
+yanpei,10741643,4
+52327328,10741643,4
+chsophie325,10741643,4
+45964745,10741643,4
+64750111,10741643,3
+fuyao19,10741643,4
+1318771,10741643,4
+aaaaaaalice,10741643,3
+bbwhitedd,10741643,4
+4126514,10741643,5
+63594336,10741643,5
+harrystarlee,10741643,5
+1174148,10741643,4
+jocelyn710,10741643,5
+51414776,10741643,5
+Confidential598,10741643,4
+nathaneil,10741643,3
+arcadia1985,10741643,3
+55314030,10741643,4
+yin_SH_di,10741643,5
+Aurora707,10741643,4
+fanlv,10741643,3
+54306037,10741643,-1
+88952721,10741643,5
+xjndfdfe,10741643,3
+mikeke,10741643,4
+33954209,10741643,4
+yaojinyuki,10741643,5
+musicer03,10741643,5
+50490367,10741643,4
+2424010,10741643,2
+Noodles68,10741643,5
+Ronicalee,10741643,5
+53673355,10741643,4
+deseijily,10741643,4
+38501564,10741643,5
+vincent-biubiu,10741643,5
+eveshi,10741643,5
+2361128,10741643,3
+Binnie_Allen,10741643,5
+4774837,10741643,5
+racheal0711,10741643,5
+viliyo,10741643,4
+wxc200,10741643,3
+79239238,10741643,4
+42346605,10741643,4
+59859119,10741643,4
+58029072,10741643,4
+55334195,10741643,5
+vincent2010,10741643,5
+ludj_007,10741643,5
+45616193,10741643,4
+29682857,10741643,3
+stigie,10741643,4
+samkaka,10741643,5
+csprite,10741643,4
+efrey,10741643,5
+112281094,10741643,4
+robinjrt,10741643,3
+53048690,10741643,5
+1495292,10741643,5
+ZloVe7,10741643,-1
+usewelltheday,10741643,3
+31840741,10741643,4
+praguenight,10741643,4
+tearsyl,10741643,4
+76819505,10741643,5
+lanyulegend,10741643,5
+linchuzhuang,10741643,5
+53064989,10741643,3
+44412158,10741643,4
+56660352,10741643,4
+42646716,10741643,4
+70668927,10741643,5
+70851991,10741643,-1
+omwrite,10741643,5
+119171762,10741643,4
+1669785,10741643,5
+69165098,10741643,4
+53646129,10741643,5
+Albertlzs,10741643,5
+cs1988,10741643,2
+3619575,10741643,-1
+60650202,10741643,4
+bluesmilery,10741643,4
+83141101,10741643,5
+102220840,10741643,3
+62178164,10741643,4
+56722636,10741643,5
+54350913,10741643,2
+64650696,10741643,4
+xiaojingyush,10741643,3
+yuranyi,10741643,3
+62677139,10741643,5
+49023972,10741643,4
+63958982,10741643,4
+baoziaron,10741643,4
+3865667,10741643,5
+pavous,10741643,4
+mumu_1314,10741643,3
+60070241,10741643,5
+52278236,10741643,4
+46436685,10741643,-1
+silenceyyc,10741643,4
+moian,10741643,3
+49273310,10741643,5
+64345409,10741643,5
+66714330,10741643,3
+52151546,10741643,4
+44312238,10741643,4
+lensl,10741643,1
+35192408,10741643,4
+68454681,10741643,5
+67777265,10741643,3
+2562115,10741643,5
+42725072,10741643,4
+singingwheat,10741643,4
+3161547,10741643,5
+59602774,10741643,5
+72792251,10741643,4
+yuanliu,10741643,4
+47210682,10741643,4
+71664174,10741643,-1
+37720840,10741643,4
+zoezhangs,10741643,4
+2259657,10741643,5
+91304159,10741643,4
+66456284,10741643,5
+73901440,10741643,4
+johnson_,10741643,5
+114398918,10741643,5
+1355863,10741643,4
+64406910,10741643,4
+kg820,10741643,4
+75328137,10741643,3
+famma,10741643,5
+1089032,10741643,4
+57166176,10741643,5
+77186305,10741643,4
+Dreamsmaker,10741643,4
+blueboy2212,10741643,2
+64308036,10741643,4
+92310239,10741643,5
+2693068,10741643,3
+47618742,10741643,4
+47035485,10741643,5
+rabbityear,10741643,5
+1437339,10741643,5
+48662539,10741643,-1
+3333885,10741643,4
+39507160,10741643,4
+51903430,10741643,4
+neverbutterfly,10741643,3
+kirayo,10741643,3
+52692373,10741643,5
+pariseros,10741643,5
+4098661,10741643,5
+mwa,10741643,4
+59061748,10741643,3
+Aeolus.J,10741643,4
+51480816,10741643,3
+1369113,10741643,5
+fifihu,10741643,5
+53467813,10741643,3
+67008188,10741643,5
+65889401,10741643,5
+57617460,10741643,4
+58596058,10741643,4
+55457012,10741643,5
+2340389,10741643,4
+49037811,10741643,4
+53618855,10741643,5
+102712282,10741643,3
+49114835,10741643,4
+4691374,10741643,3
+ppxx522,10741643,3
+duncky,10741643,5
+61127777,10741643,4
+61573582,10741643,4
+43384723,10741643,4
+2079162,10741643,5
+61282710,10741643,3
+rusheye,10741643,4
+shenluos,10741643,4
+Gdeer,10741643,2
+fangxiaotang,10741643,4
+laiwaiyin,10741643,4
+99815698,10741643,-1
+4453892,10741643,-1
+lizziecheung,10741643,3
+67925563,10741643,3
+8242631,10741643,5
+1080050,10741643,4
+imalright,10741643,5
+59264326,10741643,5
+16469045,10741643,5
+1320248,10741643,3
+wuzhuan105,10741643,3
+61402100,10741643,4
+3312294,10741643,3
+48613697,10741643,4
+62568592,10741643,4
+waterishereshuo,10741643,4
+58993842,10741643,5
+bankuailvtang,10741643,5
+58091395,10741643,4
+52243920,10741643,3
+whison,10741643,3
+50763238,10741643,5
+jackiam,10741643,4
+95312413,10741643,4
+88171828,10741643,3
+73836689,10741643,4
+80140628,10741643,4
+freaksfly,10741643,3
+63202867,10741643,3
+53334937,10741643,3
+37584215,10741643,4
+61962717,10741643,3
+34727533,10741643,4
+tlmd,10741643,5
+suck-man,10741643,4
+2581375,10741643,5
+wenrouerlinlie,10741643,4
+103380368,10741643,5
+superman0901,10741643,5
+42133843,10741643,5
+2725007,10741643,5
+37551097,10741643,4
+103247038,10741643,5
+1489572,10741643,3
+datouzhetian,10741643,4
+A.Q,10741643,2
+69986931,10741643,5
+61504169,10741643,3
+82388821,10741643,4
+corinnecnjp,10741643,4
+64769139,10741643,4
+guinie,10741643,3
+3830901,10741643,4
+45209996,10741643,5
+2083044,10741643,2
+absinthejt,10741643,5
+justseverin,10741643,5
+gnepeux,10741643,5
+4446932,10741643,5
+2934232,10741643,3
+55670658,10741643,3
+53256209,10741643,5
+minglemingle,10741643,5
+dumplingmee,10741643,4
+noxin,10741643,5
+september1990,10741643,5
+shaoyi,10741643,4
+minjielu,10741643,5
+63929239,10741643,4
+41499760,10741643,3
+36819020,10741643,3
+53319331,10741643,5
+64681504,10741643,5
+fengjiansun,10741643,4
+74959611,10741643,5
+58805542,10741643,3
+56488690,10741643,4
+84947941,10741643,3
+2509060,10741643,5
+62753939,10741643,4
+YP2013,10741643,5
+ale0512,10741643,-1
+OldYuan,10741643,3
+38184357,10741643,5
+79561237,10741643,3
+37160658,10741643,4
+116073490,10741643,5
+116073490,10741643,5
+58308819,10741643,4
+1875805,10741643,-1
+wrdeam,10741643,5
+koly1987,10741643,3
+66776538,10741643,5
+felili,10741643,5
+3772330,10741643,5
+yunxiaohui,10741643,3
+silverheart,10741643,4
+50437642,10741643,3
+48810970,10741643,5
+59270322,10741643,4
+aliter,10741643,4
+44867212,10741643,5
+sowhatanyi,10741643,5
+87495306,10741643,5
+80700861,10741643,5
+crab802,10741643,4
+62370156,10741643,4
+64431517,10741643,3
+jineason,10741643,5
+Ihuiyao,10741643,4
+79803521,10741643,5
+48603851,10741643,4
+51410491,10741643,4
+88997815,10741643,2
+4481826,10741643,2
+49380138,10741643,4
+2352053,10741643,4
+81129445,10741643,4
+63773743,10741643,5
+29898737,10741643,4
+sjch,10741643,4
+65345200,10741643,4
+jingerjingjing,10741643,4
+59623092,10741643,3
+44605243,10741643,-1
+76655932,10741643,5
+49141997,10741643,5
+51855182,10741643,5
+ffei593,10741643,4
+lulew0126,10741643,4
+demondeng,10741643,4
+titibird,10741643,5
+Jin....,10741643,3
+3595983,10741643,4
+nihac,10741643,4
+irismile,10741643,4
+inb612,10741643,4
+47838456,10741643,4
+74855673,10741643,4
+54375575,10741643,4
+88807390,10741643,5
+irissui,10741643,4
+46884939,10741643,3
+48906452,10741643,5
+liangazalea,10741643,3
+leeyzh,10741643,4
+64025963,10741643,5
+66313610,10741643,5
+49126637,10741643,3
+breakofdawn,10741643,4
+58632896,10741643,4
+53531270,10741643,4
+pyan,10741643,2
+3845851,10741643,5
+nangle,10741643,3
+3905498,10741643,4
+47272004,10741643,4
+50865792,10741643,5
+julykimi,10741643,4
+71861591,10741643,4
+66697925,10741643,4
+easelong,10741643,3
+2334495,10741643,-1
+madbug,10741643,5
+liukakakaka,10741643,5
+64552831,10741643,5
+63427414,10741643,4
+51416132,10741643,3
+4641432,10741643,4
+80993663,10741643,5
+1363941,10741643,5
+daydayup_6,10741643,4
+68102477,10741643,5
+25982397,10741643,3
+59100111,10741643,4
+52282846,10741643,5
+mymx,10741643,4
+33195651,10741643,4
+liveland,10741643,5
+80801746,10741643,3
+59887697,10741643,4
+pandapark,10741643,5
+54931057,10741643,-1
+joey12255555,10741643,5
+55677796,10741643,3
+61841009,10741643,4
+72949482,10741643,3
+46538324,10741643,5
+85534329,10741643,3
+Saorisaga,10741643,4
+55761413,10741643,4
+40237768,10741643,4
+2039887,10741643,4
+1935319,10741643,4
+waraxe,10741643,-1
+TsingHsia,10741643,3
+83853096,10741643,4
+51295802,10741643,5
+46836481,10741643,4
+sldsz,10741643,3
+50883980,10741643,5
+zhoudaxia,10741643,5
+alwaysaway,10741643,5
+2098235,10741643,4
+84430794,10741643,4
+70042532,10741643,4
+renzhewei,10741643,3
+67412140,10741643,4
+wanpunleo,10741643,5
+1915983,10741643,5
+jen_76,10741643,4
+ayint,10741643,4
+4388899,10741643,4
+49020007,10741643,4
+Morris.,10741643,4
+bainianlaotang,10741643,5
+2626046,10741643,3
+79175769,10741643,4
+3641686,10741643,4
+64818522,10741643,2
+43003860,10741643,5
+49809074,10741643,4
+36632253,10741643,5
+47522420,10741643,4
+82387095,10741643,-1
+mondaypark,10741643,4
+shysean,10741643,3
+justdoit360,10741643,4
+cyisatree,10741643,5
+70285411,10741643,5
+51329457,10741643,4
+joan_wxq27,10741643,4
+huzuopei,10741643,4
+63754374,10741643,4
+64004502,10741643,4
+zuoshoudezuo,10741643,4
+76515871,10741643,1
+wutianxiang,10741643,5
+ohahahu,10741643,3
+1891798,10741643,4
+1757024,10741643,4
+71423182,10741643,5
+48222509,10741643,4
+41416671,10741643,5
+1840162,10741643,5
+49125980,10741643,4
+3840143,10741643,4
+84652846,10741643,4
+zl99,10741643,5
+48750385,10741643,4
+49339521,10741643,4
+flyyyyyy,10741643,3
+Hanamizuki,10741643,5
+71181579,10741643,5
+46372731,10741643,4
+1838146,10741643,5
+quella1992,10741643,5
+37924652,10741643,3
+82603168,10741643,5
+66521777,10741643,3
+PanEzio,10741643,4
+oooolivia,10741643,4
+51098338,10741643,4
+62536526,10741643,5
+2402858,10741643,4
+64124886,10741643,4
+58286145,10741643,4
+jiupai,10741643,5
+qijiuzhiyue,10741643,3
+toufaluan,10741643,5
+2238966,10741643,3
+drsoul,10741643,4
+zxjtmac,10741643,5
+65014224,10741643,4
+miragece,10741643,5
+33873605,10741643,3
+52918110,10741643,4
+48270214,10741643,-1
+33893888,10741643,5
+55365789,10741643,4
+essy,10741643,3
+57088195,10741643,4
+71565413,10741643,5
+dear001,10741643,4
+53208620,10741643,2
+53084899,10741643,5
+32737692,10741643,5
+53823312,10741643,5
+jemappelle651,10741643,5
+80359618,10741643,5
+lynn0128,10741643,-1
+Cenux,10741643,3
+44134959,10741643,5
+66817146,10741643,4
+lazzaro,10741643,4
+48419666,10741643,5
+51402722,10741643,4
+tonyii06,10741643,4
+2808574,10741643,4
+66207629,10741643,4
+72368775,10741643,4
+65009709,10741643,5
+siriusvicky,10741643,4
+ivogue,10741643,5
+Ranyiyang,10741643,5
+hedgehog,10741643,5
+49294840,10741643,4
+Fire707,10741643,4
+105196709,10741643,4
+50728438,10741643,5
+120561388,10741643,2
+LJwan1314,10741643,3
+4182806,10741643,4
+doublelovediguo,10741643,4
+3765207,10741643,5
+Van07,10741643,1
+51935472,10741643,5
+35805832,10741643,3
+thistle_,10741643,4
+2847987,10741643,4
+60886329,10741643,3
+65273951,10741643,5
+rockymei,10741643,5
+73880278,10741643,4
+42062370,10741643,4
+54285836,10741643,4
+cranberrychen,10741643,5
+maomao19901108,10741643,3
+53105432,10741643,5
+junosama,10741643,4
+84297191,10741643,5
+50738842,10741643,2
+yesidogiveadamn,10741643,1
+50235608,10741643,4
+64243172,10741643,4
+akkkkkkkkkki,10741643,-1
+moca87,10741643,4
+3394942,10741643,4
+47220302,10741643,5
+61706956,10741643,4
+1359081,10741643,4
+57306815,10741643,4
+43643370,10741643,-1
+karenlo,10741643,5
+39730216,10741643,2
+117937386,10741643,3
+120556762,10741643,5
+wildkidpk,10741643,4
+39720218,10741643,4
+49063056,10741643,4
+83980387,10741643,5
+iyouyou2011,10741643,5
+pkugld,10741643,3
+ameba,10741643,5
+kavkaliao,10741643,3
+C-lQ_Bryant,10741643,4
+ofish0,10741643,3
+51836301,10741643,3
+77656352,10741643,4
+littlehorse,10741643,3
+83492460,10741643,3
+54883420,10741643,5
+73755227,10741643,5
+3678908,10741643,3
+112970184,10741643,2
+68511805,10741643,5
+wskhandsome,10741643,4
+72974352,10741643,5
+3571898,10741643,5
+48916837,10741643,4
+daniel_gao,10741643,5
+agino,10741643,5
+ydna,10741643,4
+2265138,10741643,5
+1105624,10741643,5
+vivien_princess,10741643,5
+14735328,10741643,4
+melodygxl,10741643,3
+3223594,10741643,5
+45799994,10741643,5
+34736529,10741643,3
+61695974,10741643,4
+47958787,10741643,4
+12915403,10741643,5
+53673765,10741643,3
+54611843,10741643,4
+51692311,10741643,4
+jinjidexiong,10741643,4
+imjerry,10741643,4
+whisphether,10741643,3
+Strawberry-U,10741643,5
+58453368,10741643,5
+pizijun,10741643,5
+63576554,10741643,4
+53597688,10741643,5
+56953846,10741643,3
+aibaobaoguai327,10741643,5
+65616591,10741643,4
+58545738,10741643,4
+37228673,10741643,5
+55383324,10741643,4
+Freiheit429,10741643,5
+bigpig93,10741643,5
+seizeup,10741643,3
+isone,10741643,5
+TubieWang,10741643,5
+yin-gang,10741643,3
+BUPTqianye,10741643,4
+43612401,10741643,5
+83981496,10741643,4
+kaka0805,10741643,4
+linyunke,10741643,4
+wulang55,10741643,5
+planeyang,10741643,4
+detail-shot,10741643,2
+soo_park641215,10741643,5
+Jackandfoureyes,10741643,4
+47788131,10741643,5
+gtxyxyz,10741643,5
+12209205,10741643,5
+80430212,10741643,5
+79016211,10741643,5
+67331748,10741643,3
+68575125,10741643,4
+3084551,10741643,4
+faner521,10741643,5
+3793498,10741643,4
+79850998,10741643,5
+gooloohoo,10741643,5
+boningryd,10741643,5
+91448391,10741643,4
+48268610,10741643,5
+120142169,10741643,-1
+45581073,10741643,5
+Bobby320415,10741643,5
+fangkaka,10741643,1
+gruel_,10741643,5
+42260259,10741643,4
+viola-x,10741643,5
+77634597,10741643,4
+1308821,10741643,4
+36993232,10741643,4
+Ajisao,10741643,5
+49698945,10741643,5
+72820019,10741643,5
+43595031,10741643,5
+3085702,10741643,3
+3085702,10741643,3
+raising_dawn,10741643,3
+RRspace,10741643,4
+69143106,10741643,5
+38870289,10741643,5
+heijintong,10741643,3
+36669166,10741643,5
+Qusic,10741643,4
+63716025,10741643,-1
+3544724,10741643,5
+79841047,10741643,3
+60311898,10741643,5
+98010855,10741643,4
+119426999,10741643,-1
+zhangxinwei,10741643,4
+59689060,10741643,3
+yueryu,10741643,4
+yooyue,10741643,4
+gsgsgs6,10741643,4
+57272509,10741643,3
+61606236,10741643,3
+45630966,10741643,5
+4412885,10741643,5
+ydlxiaolong,10741643,4
+84020070,10741643,4
+xudewang,10741643,5
+57080292,10741643,4
+amandaC,10741643,5
+ssxl,10741643,5
+62610096,10741643,5
+lejson,10741643,3
+110771626,10741643,5
+26066136,10741643,5
+50520348,10741643,5
+108693709,10741643,4
+bdch,10741643,4
+39192898,10741643,2
+70081984,10741643,4
+3572819,10741643,4
+66484066,10741643,4
+cherry_zuo,10741643,5
+tEnsIde,10741643,5
+82037487,10741643,4
+sheldonkao,10741643,3
+66874506,10741643,4
+67981460,10741643,5
+98142771,10741643,4
+ImMrLiu,10741643,4
+godzip,10741643,3
+4632449,10741643,3
+66191716,10741643,4
+54807886,10741643,3
+94773780,10741643,3
+48034586,10741643,3
+WanGenius,10741643,5
+63313282,10741643,5
+ramsestwo,10741643,4
+sky_space,10741643,3
+aijiuxiangshui,10741643,4
+44292349,10741643,3
+119706003,10741643,3
+59709452,10741643,5
+45321683,10741643,4
+51093611,10741643,5
+78397458,10741643,5
+62794136,10741643,5
+10480095,10741643,4
+56922790,10741643,5
+dhampirlove,10741643,4
+moonliushuang,10741643,5
+torreslee,10741643,4
+vivian1165,10741643,5
+1577735,10741643,5
+dearmia,10741643,5
+53399855,10741643,3
+nathanyun,10741643,5
+98436048,10741643,5
+2138386,10741643,5
+aabbbcccc,10741643,4
+bakaemono,10741643,5
+rionysus,10741643,5
+48777529,10741643,3
+JosephineQv,10741643,4
+crazzzydirt,10741643,5
+58229186,10741643,4
+junko,10741643,3
+35477330,10741643,1
+32835447,10741643,4
+cw2011,10741643,4
+51836771,10741643,5
+snowempty,10741643,5
+hellokakukuku,10741643,4
+114497630,10741643,5
+66178513,10741643,4
+kangnote,10741643,4
+56486542,10741643,4
+119655122,10741643,5
+44661693,10741643,5
+licczhou,10741643,2
+62766562,10741643,5
+yangbo_md,10741643,5
+74545384,10741643,4
+39364170,10741643,5
+34262520,10741643,5
+GLORIALA,10741643,4
+49355592,10741643,3
+kamiuck,10741643,5
+quanzhouren,10741643,5
+79604654,10741643,3
+65095857,10741643,4
+1067079,10741643,5
+hahahahahahah,10741643,5
+evansastre,10741643,5
+lost_faith,10741643,4
+53858902,10741643,4
+Wyc1,10741643,5
+vaneptune,10741643,5
+qingdaofu,10741643,5
+heylian,10741643,5
+3887848,10741643,4
+shflying,10741643,5
+49755133,10741643,4
+rosemary_zheng,10741643,4
+4122117,10741643,4
+orangesuan,10741643,4
+120292702,10741643,4
+49165303,10741643,4
+53910514,10741643,4
+52076607,10741643,4
+lostcindy,10741643,5
+sihuo521,10741643,4
+2471335,10741643,3
+61289986,10741643,5
+41963538,10741643,5
+guoqichepiao,10741643,3
+67978258,10741643,5
+xuhailong87,10741643,5
+lifedraft,10741643,4
+79748311,10741643,5
+61216437,10741643,3
+yangcht,10741643,4
+zillyromantic,10741643,5
+when31,10741643,5
+Whauff,10741643,5
+60919975,10741643,5
+9082007,10741643,3
+jacyvonne,10741643,3
+57274055,10741643,4
+52366281,10741643,4
+JOOOO,10741643,4
+49876674,10741643,4
+65988925,10741643,2
+aben,10741643,5
+62288453,10741643,5
+yixuechenran,10741643,4
+71244877,10741643,5
+37121767,10741643,4
+blackbanana3Y,10741643,3
+athena0888,10741643,4
+braquentin,10741643,3
+braquentin,10741643,3
+56882245,10741643,5
+51363559,10741643,5
+weslia,10741643,4
+41786402,10741643,5
+59468923,10741643,4
+bigtrouble,10741643,4
+3177593,10741643,3
+53064600,10741643,5
+51087531,10741643,4
+41902485,10741643,5
+anicelv,10741643,5
+41038299,10741643,5
+74345724,10741643,2
+74089367,10741643,5
+39260435,10741643,4
+haystack,10741643,4
+52933333,10741643,4
+moonorz,10741643,5
+llrebecca,10741643,4
+llrebecca,10741643,4
+Zsaraj,10741643,5
+lovemusic007,10741643,5
+74106602,10741643,4
+52199185,10741643,5
+3436526,10741643,4
+bigsword,10741643,4
+33886622,10741643,5
+4841197,10741643,4
+87974035,10741643,5
+53580758,10741643,4
+kgbbeer,10741643,3
+60303704,10741643,5
+vinKate,10741643,4
+der_Baum,10741643,4
+baikaishui-,10741643,5
+81241698,10741643,5
+65073778,10741643,5
+31849844,10741643,4
+52294863,10741643,3
+luyuda2007,10741643,4
+74363429,10741643,5
+cuipihuasheng,10741643,5
+35459636,10741643,3
+kandyball,10741643,4
+linaboxiannv,10741643,5
+violetmoon,10741643,5
+79556624,10741643,5
+imluming,10741643,-1
+73084756,10741643,5
+yingluncheng,10741643,3
+7255952,10741643,4
+lovewaiter,10741643,4
+85384480,10741643,4
+YH222,10741643,3
+58596015,10741643,4
+51505905,10741643,4
+79628924,10741643,5
+AllenDang,10741643,3
+30982627,10741643,4
+42222714,10741643,5
+46825825,10741643,4
+myfreedom13,10741643,5
+3742479,10741643,5
+48683272,10741643,4
+49983197,10741643,4
+LiRuoShui,10741643,5
+55618931,10741643,5
+115660168,10741643,3
+lamwithme,10741643,4
+btpighit,10741643,4
+28082415,10741643,-1
+48545969,10741643,5
+120267137,10741643,5
+7913986,10741643,-1
+64768678,10741643,4
+42280664,10741643,5
+36143344,10741643,4
+89243891,10741643,5
+tangdanian,10741643,4
+45055967,10741643,4
+44358201,10741643,4
+xpandan,10741643,-1
+a495433977,10741643,5
+jeyhello,10741643,5
+56171587,10741643,4
+July5yue,10741643,4
+fandeqing,10741643,4
+4800478,10741643,4
+71182177,10741643,-1
+44311860,10741643,5
+landystar,10741643,3
+46296717,10741643,5
+3144882,10741643,4
+Bobbie13,10741643,4
+48312950,10741643,4
+58930883,10741643,3
+gracefat,10741643,4
+4906075,10741643,2
+31859583,10741643,-1
+119232495,10741643,3
+TalkChan,10741643,4
+74499406,10741643,3
+4105021,10741643,4
+yuedong1221,10741643,4
+47493762,10741643,5
+onlyck,10741643,4
+2646310,10741643,5
+87387635,10741643,4
+80936991,10741643,3
+57276589,10741643,-1
+buddhajump,10741643,4
+xiaoweiwang,10741643,5
+4146399,10741643,5
+darkgt,10741643,5
+just_peysa,10741643,4
+51951271,10741643,4
+yc82267869,10741643,3
+67205440,10741643,5
+chenzimoaiaiai,10741643,5
+40077423,10741643,5
+yningc,10741643,5
+45577366,10741643,3
+59905077,10741643,4
+65046941,10741643,4
+47297203,10741643,5
+70041275,10741643,-1
+42504783,10741643,3
+linqizhen,10741643,3
+26237008,10741643,3
+smallnuan,10741643,-1
+Issac416,10741643,3
+yikexin12,10741643,5
+51051209,10741643,5
+4647768,10741643,2
+harrz,10741643,3
+45269464,10741643,4
+1367943,10741643,5
+35211592,10741643,4
+nirvanayl,10741643,5
+4429858,10741643,5
+66403603,10741643,4
+46394662,10741643,3
+50655031,10741643,5
+apubit,10741643,4
+exodusg,10741643,5
+72720109,10741643,5
+67072789,10741643,5
+sueprince,10741643,4
+jamaica,10741643,4
+yshhq,10741643,5
+facetosky,10741643,4
+64783002,10741643,4
+71556669,10741643,5
+81215873,10741643,3
+47849453,10741643,4
+77215273,10741643,5
+49115709,10741643,5
+gagajuju,10741643,4
+57980305,10741643,5
+72046318,10741643,5
+solodeath,10741643,3
+Thelma_,10741643,3
+36185277,10741643,4
+2578047,10741643,3
+83310274,10741643,3
+50506293,10741643,4
+3874009,10741643,4
+67387288,10741643,4
+K_kk,10741643,4
+51950051,10741643,3
+tracy4u,10741643,2
+89894620,10741643,4
+118056002,10741643,5
+huwenjia,10741643,5
+db_time,10741643,-1
+52076778,10741643,3
+48020067,10741643,4
+mojiang730,10741643,5
+63420837,10741643,5
+Yu-Tommy,10741643,2
+52192229,10741643,4
+119872258,10741643,3
+74056494,10741643,3
+67249578,10741643,5
+47977702,10741643,3
+fashionguru,10741643,4
+46552961,10741643,5
+elsaguoo,10741643,4
+80347003,10741643,-1
+12074004,10741643,4
+60312517,10741643,3
+103007178,10741643,5
+57881222,10741643,3
+57871767,10741643,5
+68429541,10741643,4
+moyia,10741643,4
+43462039,10741643,5
+4914375,10741643,5
+xuzhezhen,10741643,4
+twofour,10741643,4
+3091791,10741643,4
+laodao9527,10741643,4
+101393970,10741643,5
+coldtealast,10741643,5
+mistycheney,10741643,3
+92017914,10741643,5
+dreamss,10741643,5
+80164004,10741643,2
+hnicypb,10741643,3
+23520450,10741643,5
+44844360,10741643,3
+hibiscus_yu,10741643,-1
+35234764,10741643,5
+56104621,10741643,3
+48916211,10741643,4
+67936960,10741643,5
+xiaokabu,10741643,4
+dupang,10741643,3
+48940027,10741643,4
+53845135,10741643,4
+godspeedcl,10741643,4
+fangyunan,10741643,4
+49759903,10741643,5
+40562050,10741643,4
+64700587,10741643,3
+wzn,10741643,3
+3936760,10741643,4
+48453695,10741643,4
+3078221,10741643,4
+119803705,10741643,3
+60731189,10741643,5
+3065583,10741643,4
+32161718,10741643,5
+57747110,10741643,5
+61664487,10741643,4
+64928039,10741643,5
+xuaoling,10741643,4
+3217100,10741643,4
+54113627,10741643,5
+Moanin,10741643,3
+adore1992,10741643,3
+guoyandao,10741643,3
+62582526,10741643,5
+115648009,10741643,3
+momo077,10741643,5
+1530900,10741643,5
+1617545,10741643,3
+myshowfan,10741643,4
+Alone-2,10741643,4
+28481892,10741643,5
+88747698,10741643,4
+cocojamboo,10741643,3
+aginny,10741643,4
+49640193,10741643,5
+nashinashi,10741643,4
+iamce,10741643,5
+cowsumy,10741643,5
+van_gogh,10741643,5
+manhuamao,10741643,5
+jaredchen,10741643,5
+HeyAriel,10741643,5
+70894278,10741643,4
+68853437,10741643,4
+sodafan,10741643,5
+48165079,10741643,5
+53874865,10741643,5
+46996433,10741643,4
+zhupeng1115,10741643,5
+izaijin,10741643,4
+29779353,10741643,3
+37295606,10741643,4
+hetaojiazi,10741643,5
+fmime,10741643,5
+60699753,10741643,5
+11472770,10741643,3
+kingdoucloud,10741643,4
+62041863,10741643,5
+7973423,10741643,3
+66375083,10741643,4
+42886654,10741643,-1
+58828155,10741643,3
+littlemana,10741643,5
+33149603,10741643,3
+73705796,10741643,4
+GUAN,10741643,3
+wowcecilia,10741643,3
+49891735,10741643,5
+85597473,10741643,4
+63911026,10741643,-1
+90532402,10741643,5
+56608210,10741643,-1
+4241695,10741643,3
+40952005,10741643,2
+48918746,10741643,4
+29211262,10741643,3
+1886385,10741643,4
+58044228,10741643,4
+wushihao,10741643,1
+kkguagangqin,10741643,4
+31102423,10741643,5
+57696717,10741643,5
+1233601,10741643,2
+subjective,10741643,5
+Eileke,10741643,4
+eliekiss,10741643,4
+99870614,10741643,4
+Sylar99,10741643,-1
+52771481,10741643,5
+3593578,10741643,-1
+Tempoit,10741643,5
+35200039,10741643,3
+1849096,10741643,4
+50979998,10741643,5
+99977887,10741643,4
+suzy-with-u,10741643,3
+66572115,10741643,2
+xuyanna,10741643,5
+Collins1995,10741643,4
+90496628,10741643,5
+33181097,10741643,2
+sf12447411,10741643,4
+58536535,10741643,4
+58625918,10741643,2
+ruudgoal,10741643,4
+78170465,10741643,4
+44394014,10741643,4
+61633879,10741643,-1
+dengboqing520,10741643,4
+60406508,10741643,2
+georgiew,10741643,5
+75564358,10741643,4
+ice41322,10741643,5
+49510102,10741643,4
+53499544,10741643,4
+Diandianlan,10741643,5
+10828318,10741643,3
+alice322,10741643,3
+just_lee,10741643,5
+hiymy,10741643,-1
+hiymy,10741643,-1
+49301416,10741643,5
+Gryffindorr,10741643,5
+56136584,10741643,4
+jamproject,10741643,4
+48204771,10741643,5
+62260131,10741643,4
+buchimifan,10741643,4
+democrazy,10741643,5
+1207607,10741643,5
+40517893,10741643,3
+3573308,10741643,4
+monii,10741643,4
+40311779,10741643,5
+3855637,10741643,4
+47876726,10741643,5
+59040186,10741643,5
+115335906,10741643,5
+3617275,10741643,3
+audrea,10741643,5
+103442771,10741643,4
+3509692,10741643,4
+41193009,10741643,5
+64009647,10741643,4
+70397618,10741643,5
+68620338,10741643,4
+sibi,10741643,3
+3405066,10741643,5
+70358731,10741643,4
+75667669,10741643,3
+cyansugar,10741643,5
+2231127,10741643,3
+harryzzr,10741643,5
+35637187,10741643,4
+miaomiaosky,10741643,5
+jzhang1610,10741643,5
+60450818,10741643,5
+59209311,10741643,5
+86240865,10741643,5
+justisw,10741643,5
+9552246,10741643,5
+bankeed,10741643,5
+39942596,10741643,4
+54503609,10741643,4
+38566162,10741643,4
+duke5460,10741643,4
+56314850,10741643,4
+48248068,10741643,4
+38461766,10741643,4
+76509928,10741643,4
+55924051,10741643,4
+87870663,10741643,4
+viCkeysweetie,10741643,5
+vvvvv5,10741643,4
+64618863,10741643,3
+1895030,10741643,4
+liquor,10741643,4
+sky_fly,10741643,4
+keh1124,10741643,4
+67012712,10741643,5
+winner633,10741643,5
+66251904,10741643,5
+53248408,10741643,4
+sissistar,10741643,3
+2303322,10741643,3
+kevingemini,10741643,4
+1681382,10741643,4
+102944356,10741643,3
+weiyandayi,10741643,4
+36620598,10741643,4
+47365208,10741643,5
+ez2dier,10741643,4
+76970827,10741643,5
+57126111,10741643,4
+teztuko,10741643,4
+46175639,10741643,4
+50580913,10741643,5
+64569894,10741643,5
+2567602,10741643,5
+hapysmile,10741643,5
+52412115,10741643,4
+2341945,10741643,4
+sputnikII,10741643,5
+guohang,10741643,5
+33982496,10741643,5
+wangzaixiao,10741643,5
+potatotomato,10741643,3
+29818764,10741643,4
+53661945,10741643,5
+43409918,10741643,4
+Pabalee,10741643,4
+wwindyfly,10741643,5
+cheeringo,10741643,3
+84696017,10741643,5
+28706976,10741643,5
+2049714,10741643,4
+skyearthone,10741643,4
+peholia,10741643,5
+sharn,10741643,4
+hdjjys,10741643,3
+116049427,10741643,4
+73686074,10741643,3
+1390047,10741643,-1
+ileonwii,10741643,4
+82043481,10741643,4
+4856520,10741643,5
+LOVE-AO,10741643,5
+40572936,10741643,4
+zxccau,10741643,3
+89560788,10741643,5
+67763944,10741643,4
+jiqiuqiu,10741643,5
+49409334,10741643,5
+82568769,10741643,2
+70362034,10741643,5
+115838732,10741643,4
+punk90,10741643,4
+46999271,10741643,5
+59479241,10741643,3
+14381207,10741643,5
+54569706,10741643,5
+jinyuji,10741643,3
+57061558,10741643,4
+kaulitz,10741643,-1
+U-Know-Who,10741643,4
+joyouses,10741643,5
+39326928,10741643,4
+3371376,10741643,4
+2745009,10741643,4
+84821105,10741643,3
+48003505,10741643,4
+65947697,10741643,4
+2700880,10741643,5
+huaidanwakaka,10741643,5
+62312013,10741643,3
+60253784,10741643,5
+hika99,10741643,5
+27432217,10741643,3
+83649919,10741643,3
+54516781,10741643,4
+zhibiaoshi,10741643,4
+CSO-Botasky,10741643,5
+56071242,10741643,4
+47739471,10741643,5
+49255582,10741643,5
+cuacfxx,10741643,3
+40046063,10741643,4
+119362745,10741643,5
+rey-9,10741643,4
+45987005,10741643,5
+bellaG,10741643,5
+73189108,10741643,3
+46333522,10741643,5
+44258318,10741643,5
+54601280,10741643,5
+ryeon,10741643,5
+43773252,10741643,5
+45633111,10741643,5
+bLue.C,10741643,4
+37700297,10741643,4
+VeraHAU,10741643,5
+49637414,10741643,5
+beastDuo,10741643,5
+nixin_0711,10741643,4
+1743655,10741643,3
+52285009,10741643,4
+49577718,10741643,4
+fanfanmero,10741643,4
+hqwxyz,10741643,5
+43993359,10741643,5
+52068105,10741643,5
+xiaoyuan_0310,10741643,4
+52529736,10741643,4
+119277134,10741643,4
+kyo85,10741643,4
+4129696,10741643,4
+luoyunxiang72,10741643,5
+zqsaima,10741643,5
+4804072,10741643,4
+54277204,10741643,3
+54277204,10741643,3
+sunshinewood,10741643,5
+4587125,10741643,4
+53933892,10741643,5
+41486781,10741643,5
+69814261,10741643,5
+my-little-pussy,10741643,5
+3431557,10741643,4
+93274521,10741643,2
+Yanna_z,10741643,3
+42028639,10741643,5
+52212377,10741643,3
+49544004,10741643,4
+springwhistle,10741643,3
+tcldsk,10741643,4
+isheepo,10741643,4
+juneme,10741643,3
+PennyZZZZZ,10741643,5
+nofer,10741643,4
+2017822,10741643,5
+2221120,10741643,4
+76663316,10741643,4
+MC.Zi,10741643,4
+zhqi11,10741643,3
+68603418,10741643,3
+37922395,10741643,4
+74546823,10741643,4
+67024367,10741643,3
+97277841,10741643,5
+kalo1021,10741643,4
+sunq,10741643,5
+48959652,10741643,3
+RebeccaRabbit,10741643,4
+25240448,10741643,4
+78640879,10741643,4
+111757218,10741643,4
+36247676,10741643,4
+Encore11,10741643,5
+lovelucie,10741643,4
+57572100,10741643,3
+drqq,10741643,4
+74600569,10741643,3
+72993143,10741643,3
+92919500,10741643,5
+67605510,10741643,5
+iliuweiming,10741643,4
+69016984,10741643,5
+50027948,10741643,4
+miluoya,10741643,5
+riceseedling,10741643,3
+18360610,10741643,4
+54211589,10741643,5
+Joycejingtong,10741643,5
+53738178,10741643,5
+emilychoy,10741643,4
+60455917,10741643,5
+44075578,10741643,4
+89108079,10741643,5
+mayturner,10741643,4
+heartrick,10741643,4
+31996522,10741643,3
+49314835,10741643,4
+tobeachild,10741643,5
+53257465,10741643,5
+72706074,10741643,3
+siyuekuanglan,10741643,5
+ray-321,10741643,3
+115786111,10741643,3
+Sumia,10741643,1
+60867302,10741643,4
+4420483,10741643,5
+68479471,10741643,4
+33327300,10741643,4
+54841008,10741643,5
+67843912,10741643,3
+xichenfreeze,10741643,4
+58160746,10741643,3
+dennisyin,10741643,5
+vincentjones,10741643,4
+65900502,10741643,5
+63404925,10741643,3
+1631968,10741643,4
+shenggu,10741643,3
+nanaka,10741643,3
+eryijiu,10741643,4
+shinysky,10741643,4
+daheiluozi,10741643,-1
+evim,10741643,5
+69629165,10741643,5
+cqyyAyy,10741643,5
+46183982,10741643,5
+dongrichen,10741643,4
+83974267,10741643,5
+47207886,10741643,4
+55001545,10741643,-1
+2544330,10741643,3
+charlie_xumeng,10741643,4
+hairuo,10741643,5
+36721828,10741643,3
+42787418,10741643,4
+1486930,10741643,5
+vivamian,10741643,3
+s451789133,10741643,3
+xiangL,10741643,4
+zhangye8023,10741643,5
+RoronoaLuffy,10741643,4
+64259939,10741643,5
+46545920,10741643,5
+linkinpark1993,10741643,5
+88236856,10741643,4
+52800930,10741643,5
+magere,10741643,3
+qingzi0915,10741643,4
+58648692,10741643,5
+33688715,10741643,4
+88273996,10741643,4
+45926122,10741643,4
+34571461,10741643,2
+1193234,10741643,1
+2275412,10741643,4
+61474869,10741643,4
+mopean,10741643,3
+49446053,10741643,5
+58050003,10741643,5
+49142257,10741643,5
+dataroom,10741643,4
+84564093,10741643,4
+62906196,10741643,3
+lovetowns,10741643,5
+50527578,10741643,4
+47465122,10741643,5
+81028547,10741643,5
+12654907,10741643,5
+yangyangzheng,10741643,5
+87694483,10741643,4
+27318486,10741643,4
+honey-wang,10741643,4
+louyu1006,10741643,5
+lynn_500,10741643,4
+77532413,10741643,5
+yangshu1991,10741643,4
+66069435,10741643,4
+Armande,10741643,4
+ipzone,10741643,5
+tj10henry,10741643,5
+54843650,10741643,4
+tmbbf,10741643,4
+4910915,10741643,5
+73568250,10741643,4
+120301015,10741643,5
+feisun,10741643,-1
+94546976,10741643,4
+ayumiH,10741643,4
+62457498,10741643,3
+41294131,10741643,3
+lsg_lsg,10741643,4
+51495156,10741643,3
+39012867,10741643,3
+l.j.dreamland,10741643,4
+wusansui,10741643,4
+devin_wei,10741643,3
+62130444,10741643,5
+79080709,10741643,5
+81251411,10741643,4
+jesmine1227,10741643,4
+76145173,10741643,5
+momisa,10741643,4
+54038667,10741643,2
+27323197,10741643,4
+shaochong,10741643,5
+53948764,10741643,4
+73627549,10741643,5
+106154963,10741643,5
+Kaylana,10741643,5
+zhou33,10741643,4
+55529322,10741643,4
+yangyucn,10741643,3
+37959469,10741643,4
+zilan11,10741643,4
+catpro1,10741643,4
+45575643,10741643,4
+39086210,10741643,4
+46279372,10741643,4
+45603558,10741643,5
+2051040,10741643,4
+66890979,10741643,5
+2737013,10741643,5
+27339155,10741643,3
+1915324,10741643,5
+46957068,10741643,5
+58495364,10741643,5
+60154183,10741643,4
+52934173,10741643,4
+LoveVeronica,10741643,5
+3473845,10741643,3
+49251109,10741643,5
+71454612,10741643,3
+42888408,10741643,4
+42042679,10741643,4
+36945830,10741643,4
+52593974,10741643,5
+49224543,10741643,4
+59742158,10741643,5
+94293439,10741643,5
+yuanpy,10741643,5
+47924320,10741643,5
+73972149,10741643,4
+57784183,10741643,4
+46456290,10741643,3
+flowervirus,10741643,5
+xxb,10741643,5
+wonda,10741643,5
+q164511490,10741643,3
+2291081,10741643,5
+60491386,10741643,4
+xyzxun,10741643,4
+64639835,10741643,4
+limingquan,10741643,4
+93500334,10741643,5
+mythjill,10741643,4
+71961235,10741643,4
+violetsnow,10741643,5
+56682460,10741643,3
+3322382,10741643,-1
+58339090,10741643,4
+47154651,10741643,5
+midautumnsong,10741643,4
+80907572,10741643,-1
+cczcharles,10741643,4
+80429780,10741643,4
+44889890,10741643,5
+72145072,10741643,3
+65044305,10741643,4
+shangkang,10741643,3
+44134802,10741643,5
+50412926,10741643,4
+luxudong,10741643,4
+3065272,10741643,5
+56712686,10741643,4
+1719492,10741643,2
+16446452,10741643,4
+50939193,10741643,4
+aiyutao,10741643,3
+xinsun,10741643,4
+59739544,10741643,-1
+59699452,10741643,5
+lightgaia,10741643,5
+27410025,10741643,5
+49866554,10741643,4
+vivacto,10741643,5
+Campion,10741643,-1
+jurgenzn,10741643,5
+44583934,10741643,4
+100622662,10741643,5
+6426642,10741643,5
+2244671,10741643,4
+3854329,10741643,5
+huyouyou,10741643,5
+4400554,10741643,2
+53430352,10741643,3
+ziziib,10741643,4
+53323300,10741643,5
+74783952,10741643,5
+MrJlol,10741643,4
+55942870,10741643,5
+47052162,10741643,4
+17881602,10741643,4
+rosahime,10741643,3
+karax,10741643,4
+50497763,10741643,5
+65672467,10741643,3
+64520813,10741643,5
+xiangsijing,10741643,5
+2069001,10741643,5
+54941274,10741643,5
+46033668,10741643,4
+1454015,10741643,5
+Melaniegyq,10741643,4
+26157793,10741643,5
+2311976,10741643,2
+janeyyxl,10741643,4
+82022013,10741643,5
+ccw051746,10741643,4
+MentalDisorder,10741643,3
+110957646,10741643,5
+tiaotiaotang,10741643,4
+119263813,10741643,4
+liligeng111,10741643,5
+50319429,10741643,4
+oiegg,10741643,3
+77420474,10741643,4
+45890616,10741643,3
+26173061,10741643,4
+anishieh,10741643,4
+C-Plus,10741643,4
+Isabella0712,10741643,4
+47077015,10741643,3
+50851515,10741643,2
+40159876,10741643,4
+71973157,10741643,5
+65550886,10741643,4
+FENGXXXXX,10741643,4
+3584650,10741643,4
+crazy0527,10741643,4
+lsljctx,10741643,5
+frankkahn,10741643,3
+52617630,10741643,5
+67464414,10741643,5
+4906433,10741643,5
+tinychen,10741643,5
+120269798,10741643,4
+66496407,10741643,5
+w9xhcn,10741643,4
+papaduty,10741643,3
+jasontodd,10741643,3
+47924060,10741643,3
+62102420,10741643,4
+tiny_moo,10741643,4
+51911319,10741643,4
+66904097,10741643,5
+Oliver_Lu,10741643,4
+3210857,10741643,5
+sofans,10741643,4
+edwin0321,10741643,3
+46181445,10741643,5
+4649236,10741643,5
+64069487,10741643,4
+14762554,10741643,4
+61462050,10741643,4
+48950860,10741643,4
+omg-_-,10741643,5
+yanyang210,10741643,4
+hindifilm,10741643,5
+36831690,10741643,4
+52583509,10741643,3
+windirt,10741643,3
+xuanmicha9402,10741643,4
+52605231,10741643,5
+laijiojio,10741643,5
+59111693,10741643,4
+113285581,10741643,5
+50312553,10741643,2
+fengfishjoe,10741643,5
+29822208,10741643,3
+83389859,10741643,4
+1335533,10741643,4
+52365399,10741643,5
+109530447,10741643,3
+nicdone,10741643,4
+120260222,10741643,5
+64249671,10741643,5
+jinhoo,10741643,2
+49498008,10741643,5
+2822373,10741643,-1
+tears_rainbow,10741643,5
+4616022,10741643,4
+55335274,10741643,5
+1282175,10741643,3
+HAYATE-RIN,10741643,5
+yingtaozi07,10741643,4
+3575164,10741643,4
+4533881,10741643,5
+vittek,10741643,2
+3301381,10741643,4
+7380981,10741643,4
+coolfax,10741643,5
+108821133,10741643,4
+jiangyipeng,10741643,4
+67080689,10741643,4
+aNeEr,10741643,5
+unarcenciel,10741643,3
+3568947,10741643,4
+37670870,10741643,4
+situfang,10741643,4
+57459962,10741643,5
+50591206,10741643,5
+51965075,10741643,5
+ampire_dan,10741643,5
+xiaoqili,10741643,4
+pake,10741643,2
+azure0130,10741643,4
+xdcheung,10741643,5
+38265968,10741643,4
+citadelleyang,10741643,2
+72629481,10741643,4
+lancer04,10741643,4
+freemancy,10741643,4
+xixi9000,10741643,5
+116769658,10741643,4
+3730936,10741643,3
+chopinfisher,10741643,5
+52468739,10741643,5
+63699428,10741643,4
+9386655,10741643,3
+63361253,10741643,5
+62726189,10741643,5
+crazytom,10741643,4
+sogenannte,10741643,5
+mylbj,10741643,3
+3474304,10741643,4
+48180333,10741643,3
+52512289,10741643,5
+amueshe,10741643,3
+geekieo,10741643,5
+115230395,10741643,5
+75704681,10741643,5
+yytaizi,10741643,4
+fifa10,10741643,4
+61735091,10741643,4
+50281819,10741643,4
+fivero,10741643,4
+47881141,10741643,5
+limbo-nova,10741643,4
+83082235,10741643,3
+116896788,10741643,3
+kthinker,10741643,3
+47022632,10741643,4
+hdkn235,10741643,4
+sakura7788,10741643,4
+36627836,10741643,3
+foxnake,10741643,4
+gold401,10741643,3
+49612534,10741643,4
+63174477,10741643,3
+hui8,10741643,4
+drxxuan,10741643,5
+dfzxqqian,10741643,3
+1919885,10741643,5
+songjia0227,10741643,4
+61953901,10741643,5
+bl.mio,10741643,4
+49266863,10741643,4
+masterdan,10741643,4
+41786270,10741643,4
+62063268,10741643,5
+47587270,10741643,4
+JiJiMOMO,10741643,4
+56387836,10741643,5
+seekformojo,10741643,3
+yiouob,10741643,4
+sevenBB,10741643,5
+foleyfan,10741643,5
+Ryokutya,10741643,5
+96728684,10741643,5
+4231536,10741643,4
+49005223,10741643,4
+lizzie33,10741643,3
+1494780,10741643,4
+29774277,10741643,5
+87979590,10741643,5
+83947812,10741643,5
+t_go,10741643,3
+sodazxw,10741643,4
+freddy_xu,10741643,4
+47195969,10741643,5
+evilon,10741643,4
+68984410,10741643,4
+64418387,10741643,5
+60490453,10741643,4
+2409310,10741643,-1
+1429733,10741643,4
+1767558,10741643,4
+wmsdaishu,10741643,4
+lovelarissa,10741643,5
+2614660,10741643,5
+34043000,10741643,5
+3640801,10741643,5
+Wing-World,10741643,4
+57876228,10741643,5
+65123072,10741643,4
+oicq2600,10741643,3
+53411418,10741643,4
+43830524,10741643,5
+yuedawei,10741643,3
+84058913,10741643,5
+57952177,10741643,4
+zjuxiatian,10741643,4
+STMscanner,10741643,5
+44338831,10741643,4
+oscarwp,10741643,5
+3170513,10741643,5
+83956629,10741643,4
+64725454,10741643,4
+61302881,10741643,4
+49198106,10741643,4
+48699954,10741643,5
+reader-shuo,10741643,-1
+33245540,10741643,5
+foolish_q,10741643,5
+71270529,10741643,3
+42020814,10741643,4
+60664918,10741643,4
+ak0402,10741643,5
+49772248,10741643,4
+75215757,10741643,4
+ye31536,10741643,4
+MaYongsen,10741643,5
+kbs---ak,10741643,4
+65110384,10741643,4
+57367354,10741643,3
+40623248,10741643,3
+eaufavor,10741643,3
+66230509,10741643,5
+68115096,10741643,5
+bololodada,10741643,4
+50357025,10741643,3
+bunny636,10741643,5
+60558331,10741643,4
+zipaiwang,10741643,4
+IRENE0823,10741643,5
+2298833,10741643,3
+dasyhiqiang,10741643,4
+mm48,10741643,4
+84569301,10741643,3
+killian9999,10741643,5
+yechi,10741643,3
+dotme,10741643,3
+39747022,10741643,5
+marcup,10741643,5
+46550458,10741643,5
+64996012,10741643,4
+47236726,10741643,-1
+71900222,10741643,3
+61992166,10741643,4
+aiconanao,10741643,5
+sakiring,10741643,4
+flyingbean,10741643,4
+32193900,10741643,5
+48989146,10741643,5
+se7enteeny,10741643,2
+44963286,10741643,5
+tildali1214,10741643,4
+67489382,10741643,5
+wxdfbi,10741643,4
+59281167,10741643,4
+81708193,10741643,1
+74418627,10741643,3
+4433484,10741643,4
+71529314,10741643,3
+sky7115,10741643,5
+jeffchuwei,10741643,5
+61461484,10741643,4
+anliucom,10741643,3
+60119754,10741643,5
+krispunk,10741643,5
+reira_jxy,10741643,4
+Sandorothy,10741643,3
+2548459,10741643,5
+79667856,10741643,2
+1167339,10741643,4
+41049815,10741643,5
+66533252,10741643,2
+Like_zsy,10741643,5
+ajiuyo,10741643,4
+54011582,10741643,4
+77308324,10741643,5
+56070920,10741643,4
+41242292,10741643,5
+45592291,10741643,4
+zuozichu,10741643,4
+29017571,10741643,5
+Fafire,10741643,5
+whereislove,10741643,3
+justinwu0129,10741643,5
+SnakeTail,10741643,5
+oncemygrandpa,10741643,5
+hunxiyi,10741643,5
+zhongguobaoan,10741643,3
+bluefall,10741643,4
+3704080,10741643,5
+xiaohundaban,10741643,5
+benme,10741643,3
+3118323,10741643,4
+blackmeajump,10741643,5
+3365504,10741643,5
+3289683,10741643,5
+jimmy78801,10741643,5
+summerguagua,10741643,4
+47243834,10741643,5
+78275647,10741643,4
+53517811,10741643,5
+rabbit6,10741643,4
+49988944,10741643,4
+63277654,10741643,4
+1877066,10741643,4
+48783532,10741643,4
+34316490,10741643,4
+67238808,10741643,4
+43891940,10741643,3
+43867607,10741643,4
+88775652,10741643,5
+2119013,10741643,3
+20817049,10741643,5
+50386427,10741643,4
+78371365,10741643,5
+2881197,10741643,5
+59336433,10741643,4
+free27star,10741643,4
+2830223,10741643,4
+charmine913,10741643,4
+17582771,10741643,4
+4265735,10741643,3
+73064038,10741643,4
+43266773,10741643,5
+49298107,10741643,4
+3485230,10741643,5
+donfer,10741643,5
+56075044,10741643,4
+50341875,10741643,5
+augusttt,10741643,3
+54449435,10741643,5
+58309873,10741643,3
+50238916,10741643,5
+101820045,10741643,4
+27775242,10741643,4
+4010903,10741643,4
+47372422,10741643,4
+70253982,10741643,5
+3576692,10741643,5
+13833588,10741643,4
+109084248,10741643,5
+59156667,10741643,3
+92944875,10741643,3
+68982758,10741643,5
+54428123,10741643,4
+78851730,10741643,4
+35389630,10741643,5
+doraci,10741643,4
+liancheng,10741643,5
+70159128,10741643,-1
+vrk21,10741643,4
+62902695,10741643,5
+34557052,10741643,4
+qingqingr,10741643,-1
+idiotest,10741643,5
+64498251,10741643,5
+54375170,10741643,5
+101332587,10741643,-1
+3779737,10741643,5
+eyestriker,10741643,4
+mangohelen,10741643,4
+hifNKK,10741643,5
+73996164,10741643,5
+xx_jmlx,10741643,3
+4648608,10741643,4
+68929585,10741643,5
+61504628,10741643,4
+aijin1011,10741643,4
+billltiann,10741643,5
+silver_soul,10741643,4
+119541366,10741643,5
+2254747,10741643,4
+65323031,10741643,-1
+xiaoquan007,10741643,4
+foofights,10741643,2
+steinyxu,10741643,4
+66669080,10741643,4
+80769810,10741643,5
+edizoo,10741643,4
+Cherryandtomato,10741643,5
+69930229,10741643,5
+68342150,10741643,5
+Chliztian,10741643,3
+1017956,10741643,4
+47647124,10741643,2
+63144807,10741643,5
+AzureSoc,10741643,4
+qianmoment,10741643,3
+smumy,10741643,4
+linnylin,10741643,5
+18664682,10741643,5
+53854187,10741643,3
+32019435,10741643,4
+82980651,10741643,5
+56711409,10741643,5
+53804710,10741643,4
+68529971,10741643,5
+3520940,10741643,3
+suimie,10741643,5
+3410857,10741643,5
+59995660,10741643,4
+54452935,10741643,4
+59458875,10741643,3
+53790865,10741643,4
+63782888,10741643,5
+114540983,10741643,5
+112301712,10741643,4
+97806854,10741643,5
+115900446,10741643,-1
+70394248,10741643,4
+48365404,10741643,3
+60046415,10741643,3
+AnitaRolland,10741643,4
+53373876,10741643,3
+deathlegend,10741643,-1
+49925549,10741643,5
+royin.chao,10741643,3
+54355887,10741643,5
+muchuimu,10741643,4
+103281873,10741643,5
+57924481,10741643,5
+67313637,10741643,4
+savet,10741643,4
+mericandy,10741643,5
+61081025,10741643,4
+63132690,10741643,-1
+65287564,10741643,1
+51534915,10741643,3
+42426766,10741643,5
+herbielovetree,10741643,3
+lidianxi1990,10741643,5
+42900723,10741643,4
+duruofei,10741643,5
+65545100,10741643,4
+tzhuang,10741643,4
+nighthanwei,10741643,3
+huiris,10741643,5
+renqiran,10741643,3
+46924914,10741643,5
+60109497,10741643,5
+36721192,10741643,5
+48975477,10741643,3
+tongliyu,10741643,5
+mranderson,10741643,3
+47547173,10741643,4
+penny_guo,10741643,5
+68361818,10741643,5
+56739185,10741643,5
+yurii,10741643,4
+gloryjohnny,10741643,5
+Real-One,10741643,4
+guanjunyan,10741643,-1
+67695770,10741643,5
+zmiya,10741643,5
+66936799,10741643,4
+mojave_hy,10741643,5
+2071906,10741643,4
+wanwanxiaojie,10741643,4
+lynn7lynch,10741643,5
+likeandlike,10741643,2
+foreverworld,10741643,4
+3571336,10741643,3
+116248974,10741643,5
+45306000,10741643,3
+iconsume,10741643,5
+62115196,10741643,5
+63742684,10741643,4
+42678961,10741643,4
+skiny_orange,10741643,4
+4700776,10741643,4
+2429292,10741643,3
+73462651,10741643,5
+wanglianglfs,10741643,5
+tinyuu,10741643,4
+lapd,10741643,5
+mmmmmr,10741643,3
+yiersanyier,10741643,5
+wangxiaomo,10741643,5
+80742673,10741643,5
+misawang,10741643,4
+68850842,10741643,5
+64579984,10741643,5
+vendreni,10741643,4
+14453874,10741643,4
+Lianyutou,10741643,5
+44962517,10741643,5
+19408237,10741643,5
+3600589,10741643,5
+84628421,10741643,4
+VVIVXIV,10741643,5
+55350555,10741643,5
+57954381,10741643,5
+71316784,10741643,4
+junsansi,10741643,-1
+s4keng,10741643,3
+buyiding2011,10741643,4
+81099804,10741643,5
+42830550,10741643,5
+highlightxing,10741643,5
+3557558,10741643,5
+57874939,10741643,3
+98799421,10741643,5
+Hitomi.Len,10741643,4
+84259340,10741643,4
+47947718,10741643,5
+94068216,10741643,4
+sunrunzi,10741643,3
+66045294,10741643,4
+3501606,10741643,4
+hook,10741643,-1
+1686617,10741643,5
+salome0831,10741643,4
+4310321,10741643,4
+VampirX,10741643,4
+65940627,10741643,3
+lxp,10741643,5
+28784011,10741643,4
+53041284,10741643,5
+62326407,10741643,5
+30586256,10741643,4
+sbbisabel,10741643,-1
+37300814,10741643,4
+Sk.Young,10741643,4
+49442507,10741643,4
+52278915,10741643,5
+zero84310,10741643,4
+subject,10741643,5
+4516280,10741643,3
+stotle,10741643,4
+38850585,10741643,4
+63412313,10741643,4
+35640176,10741643,4
+96645605,10741643,4
+44733880,10741643,4
+Asmodeus777,10741643,5
+MK_ijal,10741643,3
+1755947,10741643,4
+wkirin,10741643,5
+50121004,10741643,5
+51445023,10741643,4
+51638198,10741643,5
+87284079,10741643,5
+46009385,10741643,5
+shboom,10741643,3
+smileliao,10741643,3
+mineface,10741643,5
+flw890301,10741643,-1
+62839525,10741643,3
+38696404,10741643,-1
+57957652,10741643,-1
+77868057,10741643,4
+2004475,10741643,4
+kipper79,10741643,4
+yancm,10741643,4
+26786112,10741643,4
+65105898,10741643,4
+65024952,10741643,5
+57245442,10741643,3
+47546589,10741643,3
+cristinali,10741643,5
+33552856,10741643,4
+shenshanlaoma,10741643,4
+60877547,10741643,5
+85935932,10741643,3
+59603921,10741643,5
+wuyanpig,10741643,3
+53075236,10741643,5
+ibluepurple,10741643,5
+leeleo3x,10741643,3
+45994685,10741643,5
+xiehaoing,10741643,5
+ziminliuri,10741643,4
+60880769,10741643,5
+jinbing,10741643,4
+68116991,10741643,5
+2073013,10741643,3
+43984924,10741643,4
+60908358,10741643,4
+58929957,10741643,4
+67192289,10741643,4
+leo1983,10741643,1
+Conniejin,10741643,3
+62063810,10741643,1
+29819963,10741643,4
+4589617,10741643,4
+70957109,10741643,4
+29662178,10741643,5
+2367263,10741643,3
+46680586,10741643,4
+50608327,10741643,-1
+88078787,10741643,4
+40093986,10741643,5
+lylehxh,10741643,4
+sueinjuly,10741643,4
+2462353,10741643,4
+4267389,10741643,4
+47977788,10741643,3
+65157272,10741643,5
+2062524,10741643,5
+63730928,10741643,4
+53625494,10741643,3
+thelady,10741643,5
+31358080,10741643,5
+68269996,10741643,4
+63612050,10741643,3
+goldenknob,10741643,4
+jhqmelody,10741643,3
+loreleishanny,10741643,5
+3639221,10741643,4
+75025376,10741643,3
+fian,10741643,5
+beepee,10741643,5
+14274419,10741643,-1
+63014642,10741643,5
+gxyvonne,10741643,5
+yamigogo,10741643,4
+97320573,10741643,5
+47151726,10741643,3
+3014394,10741643,4
+1828431,10741643,3
+89382705,10741643,5
+74840575,10741643,4
+81870071,10741643,4
+48429867,10741643,5
+58248286,10741643,5
+4527709,10741643,4
+aramys_baby,10741643,3
+39233007,10741643,4
+87156689,10741643,4
+59544418,10741643,5
+xjksama,10741643,5
+Eudaimonia,10741643,4
+chishu,10741643,5
+vianann,10741643,4
+tripitakerlee,10741643,4
+46408031,10741643,5
+xiaoteng,10741643,4
+eiji218837,10741643,3
+jzk,10741643,5
+4784880,10741643,4
+47182604,10741643,4
+Pathon,10741643,4
+58071189,10741643,3
+3494790,10741643,2
+19136693,10741643,3
+galaxyhahaha,10741643,4
+41959776,10741643,4
+2064671,10741643,2
+50656476,10741643,4
+queenmaria,10741643,5
+40342099,10741643,5
+69235852,10741643,5
+55874084,10741643,3
+jinyini0704,10741643,4
+avaziyi,10741643,5
+44349376,10741643,5
+jite,10741643,4
+41130036,10741643,4
+noguchi,10741643,5
+54056952,10741643,4
+52726734,10741643,4
+Forrester,10741643,5
+119215261,10741643,3
+Cheney__,10741643,4
+sunjitao1988,10741643,4
+54400244,10741643,4
+2938865,10741643,3
+cmhloveukulele,10741643,-1
+janejeh,10741643,4
+66089736,10741643,4
+nianshaozi,10741643,3
+41564076,10741643,4
+94367983,10741643,5
+ryanwaiting,10741643,5
+51452591,10741643,4
+48033961,10741643,5
+52689721,10741643,4
+115919572,10741643,5
+hyperphysic,10741643,3
+qq15203492,10741643,5
+51422142,10741643,5
+trista1202,10741643,5
+tonytang777,10741643,4
+56727126,10741643,4
+lilicrosser,10741643,5
+siqooo,10741643,4
+62709413,10741643,5
+70310265,10741643,4
+61933677,10741643,4
+TonyLeungNCFan,10741643,5
+doger,10741643,4
+49783661,10741643,4
+Asylee,10741643,4
+56541613,10741643,4
+44109266,10741643,4
+vivi_smile,10741643,5
+103603807,10741643,3
+ca5h,10741643,4
+107746351,10741643,5
+newbear,10741643,4
+yunerrun,10741643,4
+119950293,10741643,5
+wakin1707,10741643,5
+59025385,10741643,5
+moniang,10741643,5
+51183805,10741643,4
+61734859,10741643,5
+ziranbujuan,10741643,5
+48541824,10741643,4
+1909194,10741643,4
+102938445,10741643,4
+47243761,10741643,5
+50452092,10741643,4
+68015443,10741643,4
+76446728,10741643,3
+41506209,10741643,5
+pirateship611,10741643,4
+fei-never,10741643,4
+2040866,10741643,4
+63753537,10741643,4
+58778667,10741643,4
+4594513,10741643,5
+50608084,10741643,5
+52770535,10741643,3
+pseudoyu,10741643,-1
+zweikun,10741643,3
+8883008,10741643,4
+xxqxz,10741643,5
+24274750,10741643,5
+aprilpear,10741643,4
+65746706,10741643,4
+44089766,10741643,4
+52087530,10741643,4
+79507258,10741643,5
+doublebao,10741643,4
+79240544,10741643,4
+qingchushuang,10741643,5
+nighteye1123,10741643,3
+67160938,10741643,5
+48459404,10741643,3
+mr-kill,10741643,4
+wxxxx,10741643,3
+51659306,10741643,4
+pengpeng_0926,10741643,4
+65040252,10741643,4
+2185129,10741643,5
+chenjinjin,10741643,5
+4587542,10741643,4
+nianhuaapple,10741643,-1
+46287060,10741643,3
+37653990,10741643,4
+61506965,10741643,3
+50063528,10741643,4
+summerpsy,10741643,5
+52951268,10741643,5
+ssdgt,10741643,5
+baisechengai,10741643,4
+75196730,10741643,4
+margaret_wmx,10741643,4
+wangxiaoyeer,10741643,4
+88317701,10741643,5
+cicichen520,10741643,5
+82990300,10741643,5
+45797451,10741643,3
+lotus0417,10741643,5
+LasciatemiMorir,10741643,4
+33691715,10741643,3
+53242249,10741643,5
+foun,10741643,-1
+yangguangyi2,10741643,4
+lilcccc,10741643,5
+47191946,10741643,5
+yanhaolee,10741643,3
+1133756,10741643,5
+morpheus5,10741643,4
+115255606,10741643,5
+Kay.X,10741643,3
+linyanyanyan,10741643,4
+82623937,10741643,3
+59573093,10741643,4
+devilnue,10741643,4
+willese,10741643,5
+47915997,10741643,3
+80346808,10741643,5
+3996305,10741643,5
+70158914,10741643,5
+48131107,10741643,5
+103477859,10741643,1
+106730683,10741643,5
+lee0402,10741643,4
+67811520,10741643,3
+49937057,10741643,4
+tanronghong,10741643,4
+yu830,10741643,5
+72755595,10741643,4
+75913868,10741643,4
+42886827,10741643,5
+Kemuid,10741643,5
+tt1426,10741643,5
+71561935,10741643,4
+45784298,10741643,5
+ukimuknow,10741643,4
+zizon,10741643,4
+37141561,10741643,4
+53249233,10741643,4
+doexist,10741643,3
+57185456,10741643,5
+cjandcj,10741643,5
+50944093,10741643,5
+114648226,10741643,4
+73791401,10741643,4
+60367888,10741643,4
+93036792,10741643,5
+ijjb,10741643,5
+112898208,10741643,4
+114516619,10741643,4
+34964485,10741643,5
+61865208,10741643,5
+59236586,10741643,5
+31113528,10741643,4
+94000337,10741643,5
+28460777,10741643,4
+yourblossom,10741643,5
+49274936,10741643,5
+87469999,10741643,5
+80226411,10741643,4
+59590971,10741643,4
+53186197,10741643,4
+1364278,10741643,4
+57117431,10741643,5
+51833331,10741643,3
+Miss153,10741643,4
+33177895,10741643,3
+80063534,10741643,4
+komos,10741643,2
+jinela,10741643,4
+2121850,10741643,4
+48117298,10741643,4
+70924936,10741643,4
+1914905,10741643,3
+26650310,10741643,4
+91548755,10741643,4
+70918450,10741643,5
+Ailsa0,10741643,4
+81884634,10741643,5
+niute,10741643,4
+2671857,10741643,4
+87772667,10741643,5
+54376861,10741643,5
+heihuawu,10741643,5
+2713522,10741643,4
+62901629,10741643,-1
+70472529,10741643,5
+96536890,10741643,4
+2231082,10741643,4
+mintyzhou,10741643,3
+liuzelei,10741643,4
+3591608,10741643,3
+45219094,10741643,4
+CrazyChan,10741643,4
+Sheeplady,10741643,5
+46032825,10741643,5
+Skqlxf,10741643,5
+jessie.sun,10741643,-1
+109561748,10741643,4
+49364738,10741643,3
+3478406,10741643,5
+44765610,10741643,2
+103214078,10741643,5
+42202741,10741643,3
+cockerel,10741643,4
+stevecsp,10741643,4
+FrozenShow,10741643,4
+51157596,10741643,3
+80101303,10741643,5
+56776280,10741643,3
+56147728,10741643,5
+46752636,10741643,4
+2370718,10741643,5
+57189042,10741643,5
+48701049,10741643,5
+58379589,10741643,5
+72101886,10741643,5
+feller,10741643,5
+3959996,10741643,5
+59676385,10741643,4
+noisH,10741643,3
+maldini83885,10741643,4
+missingsour,10741643,5
+bodyblue,10741643,4
+snowelf,10741643,4
+xuanqi1122,10741643,5
+tony07monkey,10741643,5
+29202128,10741643,4
+81669909,10741643,4
+61128841,10741643,5
+hungry.died,10741643,3
+4033467,10741643,-1
+85483552,10741643,5
+xiaxiaoqiang,10741643,5
+43667084,10741643,5
+cilar,10741643,4
+44875082,10741643,4
+33755068,10741643,5
+fengsimo,10741643,5
+ldword,10741643,5
+emacs,10741643,5
+lingrui1995,10741643,4
+36474412,10741643,3
+99720140,10741643,5
+57423264,10741643,4
+tianxinmay,10741643,4
+51103959,10741643,5
+45369042,10741643,4
+62614786,10741643,4
+67208411,10741643,4
+4534568,10741643,4
+shamshile0228,10741643,4
+57291251,10741643,5
+shallshall,10741643,5
+shallshall,10741643,5
+ianwatson,10741643,5
+53183539,10741643,5
+laoshububen,10741643,4
+50412359,10741643,5
+74128877,10741643,5
+88157097,10741643,5
+sixi_sixi,10741643,5
+fuloli,10741643,4
+a-zhu,10741643,4
+82687720,10741643,3
+xunliwu,10741643,4
+3610351,10741643,4
+Yvonnelai,10741643,5
+59526552,10741643,4
+shirleycapri,10741643,4
+2034934,10741643,3
+48622975,10741643,4
+27643874,10741643,4
+huoyanshanbaofa,10741643,5
+97305087,10741643,5
+belle,10741643,3
+1274922,10741643,5
+89180271,10741643,5
+openxiaohui,10741643,5
+jxzq007,10741643,4
+87997485,10741643,3
+58088013,10741643,4
+88073734,10741643,5
+62180561,10741643,4
+30853144,10741643,5
+jennylove,10741643,5
+63531003,10741643,5
+KnightWhite,10741643,5
+48921388,10741643,5
+48073565,10741643,5
+flowarm,10741643,5
+49471489,10741643,4
+micheesama,10741643,4
+z30473,10741643,4
+z30473,10741643,4
+71890378,10741643,3
+JoyceAn,10741643,4
+86768814,10741643,4
+53777272,10741643,5
+limitedlife,10741643,5
+claireloveyou,10741643,3
+soga,10741643,4
+4628349,10741643,5
+50629676,10741643,4
+82569239,10741643,5
+rin993,10741643,5
+60689593,10741643,5
+shawnNK,10741643,4
+xipo,10741643,4
+57488189,10741643,5
+49983823,10741643,3
+60719806,10741643,5
+89852120,10741643,4
+54893820,10741643,4
+44066493,10741643,5
+74808749,10741643,-1
+45158897,10741643,5
+65447860,10741643,5
+3369798,10741643,5
+57651178,10741643,4
+59195846,10741643,4
+yan599083337,10741643,5
+48363016,10741643,4
+greatabel,10741643,-1
+83387941,10741643,4
+56198749,10741643,5
+43716096,10741643,4
+2220013,10741643,4
+SubsetsFrank,10741643,5
+never_missing,10741643,4
+47488504,10741643,5
+112187648,10741643,4
+2298495,10741643,4
+38811434,10741643,4
+38811434,10741643,4
+62879204,10741643,2
+26077972,10741643,-1
+Lovelesssssss,10741643,5
+loveximo,10741643,5
+whereshallwego,10741643,4
+50425824,10741643,5
+119234514,10741643,5
+61736080,10741643,3
+62055401,10741643,4
+57272958,10741643,3
+43997386,10741643,4
+58249428,10741643,3
+56954685,10741643,5
+53620031,10741643,4
+23666877,10741643,4
+2546239,10741643,5
+44321577,10741643,5
+1314588,10741643,3
+1951296,10741643,5
+68765311,10741643,4
+mumao94,10741643,-1
+liujie891010,10741643,5
+sosad,10741643,3
+3078958,10741643,-1
+mib,10741643,5
+99994720,10741643,5
+mowenxia,10741643,5
+62159923,10741643,-1
+36499503,10741643,3
+SKIN69-L,10741643,4
+66709273,10741643,5
+46564815,10741643,4
+11035464,10741643,3
+jxyz,10741643,3
+92399616,10741643,5
+daxiawa,10741643,5
+59800721,10741643,5
+69094998,10741643,5
+63156283,10741643,3
+2445409,10741643,3
+xyq1995,10741643,4
+69848404,10741643,4
+52325322,10741643,5
+41985120,10741643,5
+53544506,10741643,5
+48213772,10741643,-1
+2870381,10741643,4
+76392901,10741643,5
+44523640,10741643,3
+2522310,10741643,4
+HarryOng,10741643,5
+lian1110,10741643,4
+40742605,10741643,4
+47325319,10741643,4
+62202666,10741643,4
+117130584,10741643,5
+hasuki523,10741643,4
+108745111,10741643,5
+85236699,10741643,5
+57238055,10741643,5
+49219650,10741643,5
+64633164,10741643,4
+bb111106,10741643,5
+51435556,10741643,4
+72712114,10741643,4
+51129210,10741643,4
+115686371,10741643,3
+suheloo,10741643,-1
+56379648,10741643,3
+53245934,10741643,4
+miuccia,10741643,5
+84594929,10741643,5
+46722209,10741643,4
+jiatianyu1,10741643,4
+arlotte,10741643,5
+57748469,10741643,2
+yyumen,10741643,5
+34575311,10741643,4
+58343870,10741643,5
+g_spot,10741643,5
+longya,10741643,4
+1082879,10741643,4
+simpledeer,10741643,4
+28185222,10741643,3
+3514906,10741643,4
+48604788,10741643,5
+guoooo,10741643,4
+48269988,10741643,4
+1582380,10741643,4
+qhyh,10741643,5
+69556914,10741643,5
+howhappy,10741643,4
+35857716,10741643,4
+53768179,10741643,5
+tcff,10741643,3
+misaer,10741643,5
+OocarolineoO,10741643,4
+nadamomo,10741643,5
+58729242,10741643,4
+joyyoyo,10741643,4
+guominghan1989,10741643,5
+62679013,10741643,5
+54082965,10741643,5
+63657398,10741643,4
+25256307,10741643,5
+59594032,10741643,5
+46655241,10741643,4
+59081281,10741643,4
+SayAnything,10741643,5
+49356246,10741643,4
+107805569,10741643,5
+2642171,10741643,3
+chayatou,10741643,4
+sunnyleaves,10741643,5
+83701119,10741643,5
+48997081,10741643,5
+57132937,10741643,5
+montcalgary,10741643,4
+3971838,10741643,4
+18313578,10741643,3
+56872447,10741643,5
+44046836,10741643,5
+48407248,10741643,4
+39029113,10741643,4
+2946787,10741643,3
+70421999,10741643,3
+50585241,10741643,5
+eertdik,10741643,5
+51547266,10741643,5
+51666732,10741643,4
+65388874,10741643,5
+71129901,10741643,3
+50805750,10741643,4
+aragakki,10741643,5
+9274036,10741643,4
+kingflower,10741643,4
+chujanfung,10741643,3
+58304383,10741643,5
+50532923,10741643,2
+liuliliuli,10741643,4
+zjp-2054,10741643,4
+45782661,10741643,4
+40929460,10741643,5
+witness7,10741643,4
+49390806,10741643,4
+darkwindsd,10741643,5
+61110036,10741643,4
+69969080,10741643,4
+56988998,10741643,3
+55609637,10741643,3
+hythyt9898,10741643,5
+zenlife,10741643,5
+54507660,10741643,5
+74951548,10741643,4
+41264823,10741643,4
+miniyorker,10741643,5
+16026833,10741643,4
+71940329,10741643,3
+1114488,10741643,4
+73376575,10741643,4
+47994797,10741643,4
+41686939,10741643,5
+Janone,10741643,4
+4366193,10741643,4
+jolie14,10741643,5
+tommylin,10741643,3
+wuhuihong1992,10741643,4
+49335682,10741643,3
+elegant619,10741643,5
+3642691,10741643,4
+103735356,10741643,4
+66991726,10741643,5
+ifanmu,10741643,4
+83249395,10741643,4
+2888286,10741643,3
+67626678,10741643,3
+realien,10741643,4
+59156178,10741643,5
+38522294,10741643,5
+31899910,10741643,4
+errena,10741643,3
+115249766,10741643,3
+jarvinia0715,10741643,5
+63033488,10741643,4
+64365749,10741643,5
+WitchLoLo,10741643,4
+hela,10741643,2
+60073105,10741643,5
+56345713,10741643,4
+EastDesert,10741643,4
+antzone,10741643,5
+hicode,10741643,3
+44756713,10741643,5
+ytt1990,10741643,5
+4632833,10741643,4
+jiekchenid,10741643,5
+1988523,10741643,3
+27988303,10741643,4
+119526909,10741643,4
+51836530,10741643,4
+50042543,10741643,4
+67730020,10741643,5
+liangkuaiban,10741643,5
+54353968,10741643,4
+63872937,10741643,4
+50203852,10741643,5
+64823137,10741643,5
+35473253,10741643,4
+zyztonorrow,10741643,5
+lilipop,10741643,2
+44758132,10741643,5
+45960023,10741643,4
+haiyannina,10741643,4
+4554423,10741643,5
+97237661,10741643,3
+72365328,10741643,4
+baicaitai,10741643,5
+jiujiuprincess,10741643,4
+ooohhh,10741643,4
+ooohhh,10741643,4
+97354177,10741643,5
+zqsay,10741643,4
+63858070,10741643,5
+60002715,10741643,4
+73982020,10741643,5
+3478416,10741643,4
+46010081,10741643,4
+thisisgap,10741643,5
+43871169,10741643,5
+103116688,10741643,4
+glib,10741643,4
+97312448,10741643,4
+43864644,10741643,4
+seriousz,10741643,4
+52600120,10741643,3
+65236042,10741643,4
+77536605,10741643,4
+zoeweiyang,10741643,5
+musesmelpomene,10741643,3
+liuchuanzi,10741643,4
+deartintin,10741643,4
+angelliujiayun,10741643,4
+37969517,10741643,5
+mxing,10741643,5
+47044110,10741643,4
+1762955,10741643,3
+76153086,10741643,4
+114086034,10741643,5
+dGreenz,10741643,4
+45224713,10741643,4
+cazze,10741643,4
+115702913,10741643,5
+jingrong,10741643,4
+67103295,10741643,5
+snapeloveyou,10741643,-1
+63127179,10741643,4
+2604555,10741643,4
+116506712,10741643,4
+72147894,10741643,4
+57445507,10741643,4
+zhangzhangzhang,10741643,4
+103229623,10741643,5
+65185173,10741643,5
+41743543,10741643,5
+xukunbing,10741643,5
+52497918,10741643,5
+septembersummer,10741643,4
+46038574,10741643,4
+50718256,10741643,5
+63509313,10741643,5
+natureotr,10741643,4
+75473170,10741643,5
+argus,10741643,3
+37744023,10741643,3
+49948273,10741643,4
+55856534,10741643,5
+95246636,10741643,5
+90847864,10741643,3
+lauretta2acm,10741643,4
+lauretta2acm,10741643,4
+41482074,10741643,5
+47509968,10741643,5
+Monica__Wang,10741643,4
+ysdczp,10741643,5
+57014543,10741643,4
+61727080,10741643,4
+74573393,10741643,5
+11474715,10741643,5
+3552199,10741643,5
+47637077,10741643,4
+hawkingur,10741643,4
+Amazire,10741643,-1
+huodijin,10741643,4
+oraclefrank,10741643,5
+Ikonata,10741643,4
+67267269,10741643,5
+51963677,10741643,5
+an_lee1107,10741643,4
+caozhuo,10741643,3
+vivo,10741643,-1
+shibal,10741643,4
+chenxiaohui,10741643,3
+54620678,10741643,5
+ann0518,10741643,5
+qiank,10741643,5
+46447954,10741643,4
+104554472,10741643,5
+43942858,10741643,5
+1442801,10741643,4
+1198621,10741643,4
+45211995,10741643,4
+60529407,10741643,3
+81491962,10741643,5
+35340658,10741643,2
+45207380,10741643,4
+87781173,10741643,4
+2168933,10741643,4
+Ilovemypapa,10741643,4
+40929826,10741643,5
+62793517,10741643,4
+yewenbiao,10741643,4
+49870932,10741643,4
+hayako8059,10741643,4
+virginieds,10741643,4
+69152346,10741643,4
+puppy33,10741643,4
+49892312,10741643,4
+35670312,10741643,4
+3298336,10741643,5
+32521841,10741643,5
+60915481,10741643,5
+3761073,10741643,4
+qiongdong,10741643,5
+yu823904227,10741643,5
+willdawn,10741643,3
+yueyuebetty,10741643,3
+1544332,10741643,3
+58231376,10741643,4
+61319449,10741643,5
+rinkacheng,10741643,5
+muyu125,10741643,4
+4324027,10741643,5
+57546427,10741643,4
+55375035,10741643,4
+57818309,10741643,4
+3461171,10741643,5
+11973232,10741643,5
+allytt,10741643,4
+14113539,10741643,4
+57728381,10741643,5
+42279482,10741643,2
+29535813,10741643,5
+llamame,10741643,4
+117240526,10741643,4
+93595508,10741643,5
+tometojang,10741643,-1
+99192530,10741643,5
+54665084,10741643,5
+fuzyu,10741643,5
+46151448,10741643,5
+35929918,10741643,3
+lee7lee,10741643,4
+83017283,10741643,4
+16909521,10741643,4
+ZouzheFoudouzhe,10741643,4
+52349367,10741643,5
+superpanv,10741643,5
+56074109,10741643,5
+3218379,10741643,4
+zhengtimes,10741643,4
+33943960,10741643,4
+holystar,10741643,5
+2420665,10741643,4
+90669017,10741643,5
+64341161,10741643,5
+66550666,10741643,4
+53594562,10741643,5
+liaojiafen,10741643,4
+79066027,10741643,4
+75723338,10741643,5
+GodAssassin,10741643,5
+lqqbit,10741643,4
+71173648,10741643,4
+91511472,10741643,4
+15376680,10741643,5
+119195940,10741643,4
+87594719,10741643,5
+63959276,10741643,4
+14088916,10741643,5
+3053426,10741643,4
+v1rgo,10741643,4
+47542838,10741643,5
+48854947,10741643,4
+56533866,10741643,4
+58064281,10741643,4
+3442458,10741643,5
+37382236,10741643,4
+83202177,10741643,2
+43387286,10741643,5
+whatmike,10741643,5
+36820876,10741643,-1
+sheldonC,10741643,5
+59638655,10741643,4
+35241807,10741643,4
+xiaojiongxia,10741643,4
+43776813,10741643,5
+austinswift,10741643,4
+cloudink,10741643,4
+2734852,10741643,4
+59129484,10741643,5
+55318162,10741643,5
+81918696,10741643,5
+muxiaoxu,10741643,4
+46369644,10741643,3
+39945204,10741643,4
+weilai118,10741643,4
+72781855,10741643,3
+58942968,10741643,5
+51370063,10741643,3
+34596748,10741643,4
+heizhou,10741643,4
+54069821,10741643,4
+Clynn,10741643,4
+nancy8787,10741643,5
+40848331,10741643,5
+chanying,10741643,4
+2027700,10741643,4
+8068484,10741643,5
+yui0102,10741643,4
+Jules,10741643,5
+3888542,10741643,4
+81850559,10741643,4
+51199402,10741643,3
+hughwolfgang,10741643,4
+80762938,10741643,4
+65152157,10741643,5
+enanin,10741643,5
+62828901,10741643,4
+sewer-d,10741643,5
+46885756,10741643,3
+tzkeer,10741643,3
+lollypain,10741643,5
+47999352,10741643,5
+e-ray,10741643,4
+47013980,10741643,5
+1780319,10741643,4
+54167502,10741643,5
+29107256,10741643,4
+46060990,10741643,5
+72523084,10741643,5
+59559950,10741643,3
+49893438,10741643,5
+116026859,10741643,4
+btone0808,10741643,2
+chichiro,10741643,3
+67944529,10741643,4
+68674122,10741643,3
+45590222,10741643,5
+yangzifeng,10741643,4
+68878726,10741643,3
+simply314159,10741643,5
+57319762,10741643,3
+56589812,10741643,4
+115578301,10741643,3
+aether1013,10741643,4
+zcjzcjzcj,10741643,5
+4133534,10741643,5
+syuuki630,10741643,4
+TulipDuke,10741643,5
+43062111,10741643,3
+102610341,10741643,5
+bryanYY,10741643,5
+moszz,10741643,4
+youyizhi,10741643,5
+91733571,10741643,5
+HuaRay,10741643,4
+2509050,10741643,5
+32433411,10741643,4
+84872348,10741643,3
+zuoyou_16,10741643,5
+62813238,10741643,5
+niaoDY,10741643,4
+50212998,10741643,4
+61012305,10741643,4
+91216946,10741643,1
+proust_7,10741643,4
+37136592,10741643,4
+77403848,10741643,4
+onceomega,10741643,-1
+ryansterne,10741643,5
+xuelyes,10741643,5
+canon125,10741643,2
+31563326,10741643,4
+reneryu,10741643,5
+42927229,10741643,5
+1440686,10741643,5
+41403989,10741643,5
+XingZhi,10741643,3
+64777260,10741643,5
+2791045,10741643,4
+76273078,10741643,5
+54035267,10741643,5
+71543587,10741643,4
+74884660,10741643,4
+53343838,10741643,5
+70542468,10741643,3
+cccnanny,10741643,3
+2187326,10741643,4
+51288517,10741643,4
+63843063,10741643,5
+luyang21,10741643,5
+wenliangno1,10741643,4
+Pretender_,10741643,4
+117916901,10741643,5
+41839110,10741643,4
+50751132,10741643,4
+47214460,10741643,5
+chuanshu,10741643,5
+loveraymond,10741643,5
+ponie325,10741643,4
+78546234,10741643,4
+4608890,10741643,4
+55287270,10741643,5
+48816171,10741643,5
+JustStayReal,10741643,4
+emilyforever,10741643,4
+44670712,10741643,3
+32091883,10741643,4
+113982394,10741643,4
+givindream,10741643,5
+4190834,10741643,3
+59078607,10741643,4
+3529919,10741643,5
+johnwan2007,10741643,5
+shonior,10741643,4
+2890229,10741643,4
+96513948,10741643,5
+chenkefeng,10741643,4
+1585106,10741643,3
+evanye,10741643,4
+51777015,10741643,4
+4906139,10741643,4
+91919355,10741643,5
+zack1st,10741643,2
+atlas0413,10741643,4
+handoubnu,10741643,4
+ossianshiwo,10741643,3
+powerfultony,10741643,4
+55322888,10741643,5
+kuroda_sakaki,10741643,-1
+59012758,10741643,5
+69823830,10741643,5
+2895560,10741643,3
+65383456,10741643,-1
+huang9426464,10741643,5
+58223460,10741643,3
+ding940731,10741643,1
+1690690,10741643,5
+72984075,10741643,3
+62521224,10741643,5
+tiny6,10741643,4
+59899687,10741643,5
+1244120,10741643,4
+81258030,10741643,4
+Latios,10741643,5
+69246350,10741643,5
+joyliang,10741643,5
+killeren,10741643,4
+xiawu4dian,10741643,5
+duoduojiang,10741643,4
+60207900,10741643,5
+LINCOLN_LU,10741643,3
+52894891,10741643,5
+58536525,10741643,4
+bugz,10741643,4
+yingtaoyezi,10741643,5
+117288760,10741643,5
+ECEO,10741643,1
+phyllis_withu,10741643,5
+phyllis_withu,10741643,5
+95451283,10741643,4
+xxxxpp,10741643,4
+tezuka15,10741643,5
+bucks,10741643,4
+30016549,10741643,3
+2850261,10741643,3
+suian918,10741643,3
+yejia,10741643,5
+72821210,10741643,5
+tangmm,10741643,5
+nleydy,10741643,4
+102556936,10741643,4
+96149760,10741643,5
+66151732,10741643,3
+59155687,10741643,4
+Chichau_Wang,10741643,4
+76239452,10741643,4
+inmessy,10741643,4
+elephantjun,10741643,4
+lyfing,10741643,4
+39517329,10741643,5
+114220383,10741643,4
+poly0330,10741643,5
+xizi90,10741643,4
+1151029,10741643,-1
+foxhoundjames,10741643,5
+119869271,10741643,4
+hetaodeyanjing,10741643,5
+2387426,10741643,5
+45532164,10741643,5
+mrfengge,10741643,3
+nokooooo,10741643,5
+matstrong,10741643,-1
+olivialuan,10741643,5
+3446661,10741643,3
+momobabytt,10741643,4
+krypton,10741643,-1
+61383051,10741643,5
+65970083,10741643,4
+wunie,10741643,3
+wolvestime,10741643,3
+shiJayyongheng,10741643,5
+motou0328,10741643,5
+62819233,10741643,-1
+sgzjhw,10741643,5
+76790888,10741643,5
+kimomo,10741643,4
+2124344,10741643,5
+59779751,10741643,3
+38498557,10741643,3
+89313000,10741643,4
+119861994,10741643,4
+50137657,10741643,5
+82083975,10741643,4
+62544217,10741643,5
+115807401,10741643,5
+pigdull,10741643,4
+62072231,10741643,4
+57630254,10741643,5
+dounianghao2,10741643,5
+fyl00,10741643,4
+3588917,10741643,3
+teary1988,10741643,5
+76160573,10741643,5
+76544638,10741643,5
+99350699,10741643,5
+39382938,10741643,4
+60168902,10741643,5
+53883541,10741643,5
+58313990,10741643,5
+49363710,10741643,5
+goodzsj,10741643,4
+57494108,10741643,4
+47285151,10741643,4
+53885262,10741643,5
+1803158,10741643,5
+51601161,10741643,4
+aki.sh,10741643,4
+53602254,10741643,3
+bestkfx,10741643,5
+tvxqjyjxx,10741643,5
+47305840,10741643,3
+52624380,10741643,4
+virago1994,10741643,4
+heyflower,10741643,4
+54472824,10741643,4
+wincy,10741643,3
+2651943,10741643,5
+Sen.Clausius,10741643,-1
+vfish,10741643,4
+waynezw,10741643,5
+lonelysin,10741643,4
+57748283,10741643,5
+1958405,10741643,5
+3589399,10741643,4
+ivanovski,10741643,5
+yxs,10741643,4
+63345924,10741643,3
+anniexie95,10741643,5
+1628930,10741643,5
+qixian1125,10741643,4
+48528896,10741643,5
+28455302,10741643,3
+3278389,10741643,4
+115885281,10741643,5
+77195543,10741643,4
+69724064,10741643,4
+veat,10741643,2
+bencat,10741643,-1
+FCB1995,10741643,4
+55342702,10741643,4
+playtoy,10741643,4
+52146553,10741643,5
+38417036,10741643,5
+manchesite,10741643,4
+42221402,10741643,3
+casoon,10741643,5
+tabris,10741643,5
+63622280,10741643,5
+87909103,10741643,5
+yanpealew,10741643,5
+119828861,10741643,5
+smartshirley,10741643,3
+67592460,10741643,5
+9697337,10741643,5
+eeeeek,10741643,5
+57680535,10741643,4
+73293463,10741643,4
+89903001,10741643,5
+lione8,10741643,4
+47821989,10741643,5
+72692596,10741643,5
+11258610,10741643,5
+109265830,10741643,5
+119079844,10741643,3
+fanxiaodong,10741643,4
+54223493,10741643,4
+43464406,10741643,3
+114638150,10741643,2
+49746406,10741643,5
+99255934,10741643,3
+2943338,10741643,4
+51683882,10741643,5
+Kulty,10741643,4
+summer_Remember,10741643,4
+92155502,10741643,5
+67539758,10741643,4
+1090307,10741643,4
+53643328,10741643,4
+laespoirao,10741643,3
+81627456,10741643,3
+illiteracy,10741643,4
+2887572,10741643,4
+59852035,10741643,5
+padme,10741643,5
+Janla,10741643,4
+xuanyushuo,10741643,2
+25503918,10741643,4
+41775771,10741643,5
+2092985,10741643,4
+101860430,10741643,5
+67584807,10741643,3
+54753339,10741643,5
+58684480,10741643,5
+82629572,10741643,5
+59774628,10741643,4
+4250262,10741643,5
+lesleyxu,10741643,4
+84599460,10741643,5
+qingyexiyu,10741643,4
+Frieda_,10741643,4
+sssssstutter,10741643,5
+52022745,10741643,5
+vincent1q84,10741643,4
+53706113,10741643,3
+79805335,10741643,5
+sharpdeep,10741643,5
+68219887,10741643,4
+98716159,10741643,4
+98716159,10741643,4
+riddle1005,10741643,5
+9598034,10741643,4
+1363290,10741643,4
+40645830,10741643,4
+yanneze,10741643,4
+2809402,10741643,3
+28785708,10741643,5
+zhangxuefu,10741643,4
+hughll,10741643,5
+119803258,10741643,5
+41440460,10741643,4
+66228668,10741643,4
+zaozi,10741643,4
+winglet,10741643,5
+anmour,10741643,5
+dripping,10741643,5
+44349387,10741643,4
+58464738,10741643,5
+3410163,10741643,4
+blackscreen,10741643,3
+Impcore,10741643,4
+59335490,10741643,5
+73031414,10741643,5
+67836391,10741643,5
+cafe0228,10741643,4
+easytodo,10741643,3
+windmoonwind,10741643,4
+jack_eminem,10741643,4
+51167957,10741643,5
+cjtnt,10741643,4
+71595084,10741643,5
+gtxhdn,10741643,5
+44685216,10741643,5
+ghzm1027,10741643,5
+itwouldbe,10741643,5
+fanyichao,10741643,4
+xiaoweisuo,10741643,2
+55537461,10741643,5
+kiiizuna,10741643,4
+keyrss,10741643,5
+42145700,10741643,5
+119449888,10741643,4
+yihuiw,10741643,4
+metkee,10741643,4
+2819219,10741643,5
+62546651,10741643,4
+39279260,10741643,4
+1066031,10741643,3
+cl20lc,10741643,3
+47371954,10741643,4
+71317241,10741643,4
+sumiqiu,10741643,5
+3873448,10741643,4
+lzcf,10741643,4
+38396697,10741643,5
+hezhong,10741643,5
+81969771,10741643,4
+kennan,10741643,5
+43340338,10741643,5
+Mr.seamonster,10741643,-1
+fansherlocked,10741643,5
+82993911,10741643,5
+59409942,10741643,4
+kexiaoai,10741643,4
+stng,10741643,5
+63436752,10741643,5
+92399399,10741643,4
+101982187,10741643,5
+63929393,10741643,4
+89575571,10741643,5
+58043939,10741643,5
+63927412,10741643,5
+kamoku,10741643,3
+folkbaba,10741643,3
+51199604,10741643,4
+64723907,10741643,5
+58484149,10741643,5
+20885358,10741643,5
+Candy08,10741643,5
+Candy08,10741643,5
+45379301,10741643,4
+73868761,10741643,3
+SharonShining,10741643,4
+70301931,10741643,5
+Neverlandor,10741643,4
+48441251,10741643,5
+52454899,10741643,4
+2875239,10741643,3
+66273295,10741643,4
+57860242,10741643,3
+54143705,10741643,4
+lbc21,10741643,4
+55603094,10741643,4
+77341171,10741643,5
+hrui92,10741643,5
+wendyhsu,10741643,4
+holynight,10741643,5
+sospiri,10741643,-1
+frankfeng,10741643,4
+68948810,10741643,4
+41815578,10741643,5
+azmonden,10741643,3
+formeswong,10741643,5
+52573340,10741643,4
+yayakiki,10741643,4
+40392839,10741643,4
+zhusihui,10741643,5
+bigpez,10741643,4
+100041881,10741643,4
+2521077,10741643,4
+63228338,10741643,3
+miumiusudafen,10741643,4
+King-H,10741643,3
+mackalex,10741643,4
+1487981,10741643,5
+sanggolden,10741643,5
+64879609,10741643,4
+46973641,10741643,4
+87621689,10741643,5
+87621689,10741643,5
+55842990,10741643,3
+53656219,10741643,4
+lingyigewoziji,10741643,5
+62069415,10741643,5
+49211072,10741643,3
+belovedme,10741643,4
+65911054,10741643,4
+92978277,10741643,4
+followmydreams,10741643,5
+119253554,10741643,5
+1918174,10741643,5
+102140524,10741643,5
+orangerye,10741643,5
+Mayk,10741643,4
+4527041,10741643,4
+szk13731584239,10741643,4
+82782207,10741643,4
+giddens,10741643,5
+zhaigonglue,10741643,3
+zhangrenran,10741643,3
+46453944,10741643,4
+31068430,10741643,2
+thunderous,10741643,4
+ghostjoe,10741643,5
+lepd,10741643,2
+34493482,10741643,5
+9958941,10741643,5
+moudaocc,10741643,5
+41599370,10741643,4
+55480391,10741643,4
+lightwing86,10741643,4
+47593124,10741643,4
+dbhungry,10741643,4
+38080757,10741643,-1
+62862861,10741643,5
+40710431,10741643,4
+dddsy,10741643,5
+61513747,10741643,4
+60349370,10741643,5
+60551662,25907004,1
+66991215,25907004,5
+der_Baum,25907004,2
+crazybitch08,25907004,3
+137943015,25907004,-1
+vala1994,25907004,2
+130445057,25907004,2
+59704071,25907004,2
+82334570,25907004,3
+ffliens,25907004,2
+3804622,25907004,3
+unicornlarry,25907004,1
+quinyu,25907004,1
+mojian,25907004,3
+50307120,25907004,1
+121770759,25907004,3
+88331189,25907004,2
+57024226,25907004,1
+81257739,25907004,3
+69646030,25907004,2
+51733566,25907004,2
+134903741,25907004,4
+39360207,25907004,3
+43888841,25907004,1
+69948545,25907004,3
+137543599,25907004,2
+82508790,25907004,2
+Lanacei,25907004,3
+84519888,25907004,2
+54272292,25907004,1
+senses058,25907004,-1
+magiclj99,25907004,3
+waiwai323,25907004,1
+50131470,25907004,2
+38494486,25907004,3
+38000900,25907004,3
+130353620,25907004,2
+137235653,25907004,3
+78416389,25907004,4
+21283445,25907004,2
+shannon33,25907004,1
+53293207,25907004,3
+miki_leung001,25907004,4
+129032954,25907004,1
+133414711,25907004,2
+126039569,25907004,3
+136578921,25907004,2
+62895958,25907004,2
+t1n9_520,25907004,2
+60072437,25907004,2
+35909565,25907004,4
+50244579,25907004,1
+56873859,25907004,2
+122932689,25907004,3
+wendong262,25907004,2
+133217235,25907004,1
+33757115,25907004,-1
+mlli,25907004,3
+yoyodesmile,25907004,2
+44775342,25907004,1
+104167946,25907004,3
+myfengzi,25907004,3
+1133756,25907004,3
+fay2,25907004,3
+80637926,25907004,3
+1319405,25907004,1
+58259029,25907004,2
+80674994,25907004,1
+47971865,25907004,4
+amandachun-gccz,25907004,3
+zoewen1984,25907004,3
+65264592,25907004,2
+36452184,25907004,1
+122868077,25907004,3
+134563962,25907004,4
+90681003,25907004,2
+68457984,25907004,1
+69495229,25907004,2
+Ruty1985,25907004,2
+sunchuan,25907004,4
+43181331,25907004,2
+103572835,25907004,3
+77385767,25907004,2
+superblily108,25907004,2
+73443048,25907004,4
+137793944,25907004,3
+54658280,25907004,1
+zyx321,25907004,2
+62253613,25907004,2
+sherowe,25907004,1
+137800179,25907004,3
+102024318,25907004,3
+14628401,25907004,-1
+31656081,25907004,2
+50461431,25907004,3
+45942443,25907004,1
+122592912,25907004,2
+littleric3,25907004,2
+1403754,25907004,3
+68551392,25907004,3
+68551392,25907004,3
+pupu_yi,25907004,2
+spsara,25907004,1
+47444356,25907004,-1
+62555600,25907004,5
+103277074,25907004,2
+61619787,25907004,2
+shayatouyy,25907004,3
+68771576,25907004,1
+28365656,25907004,1
+122604724,25907004,3
+51503469,25907004,1
+130347315,25907004,2
+suiminori,25907004,2
+edisonme,25907004,3
+62450111,25907004,1
+64776383,25907004,2
+41145721,25907004,3
+hearta,25907004,4
+kongkong7,25907004,1
+53656219,25907004,2
+1943610,25907004,3
+BarbieZ,25907004,2
+1767558,25907004,3
+likengni,25907004,3
+donkeylv,25907004,3
+luyicia,25907004,4
+41944895,25907004,3
+shinset,25907004,1
+73658045,25907004,1
+54300130,25907004,4
+kkbear,25907004,1
+65602766,25907004,3
+coco475511,25907004,3
+Lotuscutey,25907004,3
+53245934,25907004,2
+71900698,25907004,2
+104642872,25907004,3
+2216533,25907004,-1
+huaanhuang,25907004,2
+esther11yiyi,25907004,-1
+ashuraison,25907004,1
+131187465,25907004,4
+55456741,25907004,-1
+98956225,25907004,4
+sodaorchid,25907004,2
+65145457,25907004,-1
+48623920,25907004,1
+chuxiaozhu,25907004,3
+6877388,25907004,2
+122979452,25907004,3
+61681574,25907004,3
+73533742,25907004,2
+125790890,25907004,2
+47688996,25907004,3
+73829917,25907004,-1
+45522216,25907004,2
+33679145,25907004,3
+tonganda,25907004,2
+48873217,25907004,2
+suminjie,25907004,-1
+Jiang_jss,25907004,2
+ke-ke,25907004,1
+132463662,25907004,3
+bodd,25907004,2
+133978729,25907004,2
+79693169,25907004,2
+54717954,25907004,1
+125154714,25907004,-1
+67374225,25907004,3
+66967732,25907004,2
+53916327,25907004,2
+119456438,25907004,3
+133864365,25907004,3
+68429541,25907004,1
+89406990,25907004,2
+carpe-diem-l,25907004,2
+1495064,25907004,1
+134510715,25907004,4
+43917006,25907004,1
+87469252,25907004,-1
+mandy-woo,25907004,1
+51774232,25907004,3
+47810404,25907004,2
+xiaoyu86,25907004,2
+3229150,25907004,2
+58549515,25907004,2
+43632851,25907004,1
+50197826,25907004,2
+1574050,25907004,3
+53728627,25907004,4
+qiubutong,25907004,3
+duankou,25907004,3
+60983088,25907004,1
+icemonique,25907004,2
+69272743,25907004,1
+51851072,25907004,3
+46557102,25907004,3
+2668037,25907004,3
+miemie-cpu,25907004,3
+wikimedia,25907004,1
+82880099,25907004,3
+135844949,25907004,4
+78251252,25907004,3
+134503726,25907004,-1
+127278343,25907004,3
+imhechang,25907004,1
+123029780,25907004,3
+aegeanguo,25907004,3
+131205877,25907004,4
+51329457,25907004,2
+HR2007,25907004,3
+halucinogeny,25907004,1
+63874494,25907004,2
+133970603,25907004,2
+60822788,25907004,3
+51909458,25907004,1
+51204884,25907004,2
+Cats-Candydream,25907004,3
+ann27996090,25907004,2
+120018293,25907004,1
+47200046,25907004,3
+134417369,25907004,3
+64309170,25907004,1
+miyamiyawei,25907004,2
+131909298,25907004,2
+57335774,25907004,1
+131894772,25907004,3
+PoisonLove,25907004,2
+48950860,25907004,4
+52963157,25907004,2
+62705416,25907004,4
+4491930,25907004,1
+49756613,25907004,2
+vicky_talk,25907004,2
+61559411,25907004,3
+87603533,25907004,4
+summas,25907004,3
+136251378,25907004,3
+6972638,25907004,-1
+river0405,25907004,1
+68630108,25907004,1
+xiaoyi91,25907004,3
+jikami,25907004,2
+130968034,25907004,2
+tour-z,25907004,3
+79745413,25907004,3
+stcoffee,25907004,1
+72585899,25907004,1
+61024723,25907004,2
+66867402,25907004,2
+irissmy,25907004,2
+104905007,25907004,4
+51023914,25907004,1
+45193418,25907004,3
+meltyice,25907004,2
+illusion0211,25907004,3
+zhenkeai,25907004,2
+wjww2128,25907004,2
+35380385,25907004,2
+Edith_M,25907004,2
+134825816,25907004,3
+52930373,25907004,1
+aprilM,25907004,1
+131136009,25907004,3
+aaaaaaaaaaa,25907004,1
+92764567,25907004,3
+132701112,25907004,2
+40567402,25907004,4
+80945094,25907004,3
+69439267,25907004,-1
+3641686,25907004,2
+ElyseLee,25907004,3
+1766764,25907004,2
+46475710,25907004,3
+gezi921054,25907004,3
+115827848,25907004,3
+onlyh,25907004,5
+19835187,25907004,1
+36109432,25907004,1
+41158884,25907004,2
+61278455,25907004,3
+tanoshiku,25907004,3
+96536272,25907004,-1
+124370519,25907004,3
+53771216,25907004,2
+68139311,25907004,2
+47745204,25907004,2
+browngreenblue,25907004,4
+jessie1989,25907004,1
+57847628,25907004,-1
+Juno14,25907004,1
+35438123,25907004,2
+54225374,25907004,1
+55548424,25907004,2
+56903875,25907004,2
+Ancyr,25907004,2
+56965643,25907004,4
+2669000,25907004,3
+60096447,25907004,2
+sandy0205,25907004,3
+68435848,25907004,3
+81885646,25907004,2
+neopolis,25907004,4
+minijoan,25907004,1
+30569646,25907004,5
+76956024,25907004,3
+134969713,25907004,2
+131504998,25907004,2
+61128841,25907004,2
+papa12,25907004,5
+76965103,25907004,3
+dearjan,25907004,5
+3302374,25907004,2
+76767700,25907004,4
+40756690,25907004,3
+cherry512,25907004,-1
+40850926,25907004,1
+4669518,25907004,3
+4811029,25907004,4
+34558131,25907004,2
+little_cupid,25907004,1
+daisyhyj,25907004,1
+86946149,25907004,2
+67257827,25907004,5
+47688356,25907004,-1
+zongzongzong,25907004,-1
+82520594,25907004,2
+57924290,25907004,1
+51259360,25907004,2
+guoxiaobei,25907004,2
+4608276,25907004,3
+37228673,25907004,2
+2917148,25907004,2
+71467734,25907004,4
+59102031,25907004,1
+130192544,25907004,3
+56194866,25907004,1
+126335298,25907004,2
+125630908,25907004,2
+125630908,25907004,2
+79822624,25907004,1
+129743539,25907004,4
+sufie,25907004,4
+134041897,25907004,2
+58608944,25907004,1
+chinos66,25907004,1
+xuzhezhen,25907004,2
+advender,25907004,2
+45748609,25907004,1
+44436266,25907004,3
+75413985,25907004,4
+90617915,25907004,-1
+104594530,25907004,3
+DUOSI,25907004,2
+62752477,25907004,2
+1793602,25907004,3
+tapirtomb,25907004,2
+zhegejiale,25907004,1
+fnx,25907004,1
+DDDong,25907004,1
+lasiya1986,25907004,1
+52045614,25907004,2
+65079823,25907004,1
+xiaoyusumu,25907004,1
+57827177,25907004,4
+134631211,25907004,3
+graceoklove,25907004,3
+liandilove,25907004,3
+jelly-8,25907004,4
+58786397,25907004,3
+quanetta,25907004,3
+smcc911,25907004,3
+shineone,25907004,3
+134527565,25907004,2
+61866321,25907004,2
+54395094,25907004,1
+48114475,25907004,1
+3577491,25907004,2
+132773025,25907004,3
+1365076,25907004,2
+yangjing113,25907004,3
+54925658,25907004,2
+53910261,25907004,2
+84675514,25907004,3
+xuxiailing,25907004,3
+zsq0028347,25907004,3
+22140861,25907004,4
+65948183,25907004,1
+49248736,25907004,3
+59725846,25907004,1
+109800958,25907004,3
+53223737,25907004,1
+4141698,25907004,1
+am-gemini,25907004,2
+pinkelephant-mt,25907004,3
+59514938,25907004,1
+tamiwang,25907004,5
+47840871,25907004,4
+3884732,25907004,4
+79666507,25907004,1
+jill426,25907004,1
+Yinaly,25907004,2
+68480782,25907004,2
+liuqing2009,25907004,2
+47265063,25907004,2
+singmyself,25907004,4
+55275612,25907004,4
+58769650,25907004,1
+136102603,25907004,2
+121719420,25907004,3
+72133543,25907004,1
+121194917,25907004,4
+88074921,25907004,2
+136059490,25907004,4
+36877897,25907004,3
+xiaoxianbibi,25907004,2
+shanl,25907004,1
+cheng0304,25907004,1
+KeryChou,25907004,2
+KeryChou,25907004,2
+yangziqiang,25907004,3
+4892064,25907004,1
+1737190,25907004,3
+51022866,25907004,3
+131328172,25907004,4
+24557674,25907004,3
+42923614,25907004,3
+xj2006062,25907004,4
+onlyYH,25907004,-1
+45883133,25907004,3
+Obtson,25907004,1
+yongyuanziyou,25907004,2
+66168101,25907004,2
+124317961,25907004,5
+81679660,25907004,1
+4541080,25907004,1
+48463715,25907004,3
+42826387,25907004,1
+93299177,25907004,-1
+veranannan,25907004,2
+61486728,25907004,1
+21927784,25907004,1
+58629376,25907004,3
+libowen,25907004,4
+88292094,25907004,3
+fengjiansun,25907004,3
+29890430,25907004,3
+59524621,25907004,4
+61888159,25907004,3
+4857042,25907004,2
+qinsining,25907004,2
+lulupink,25907004,2
+xiawu4dian,25907004,-1
+3862249,25907004,3
+57163926,25907004,2
+48724740,25907004,1
+uuul,25907004,2
+julycythia,25907004,3
+manmandemange,25907004,1
+1498768,25907004,2
+djwayye,25907004,2
+angelcheng728,25907004,3
+130538833,25907004,2
+135570170,25907004,2
+dennie2011,25907004,1
+sanjiao17,25907004,2
+4901199,25907004,2
+withmydog,25907004,-1
+60818936,25907004,3
+xxxiyybabe,25907004,-1
+123840568,25907004,1
+kiddoanne,25907004,2
+mylucky1010,25907004,2
+134318408,25907004,3
+47169625,25907004,1
+56430530,25907004,2
+45620399,25907004,2
+51149079,25907004,3
+popopo,25907004,2
+bakyura,25907004,2
+48910590,25907004,2
+76970827,25907004,2
+54578280,25907004,3
+50552661,25907004,1
+l97183025,25907004,2
+119364695,25907004,3
+77886672,25907004,3
+floraalma,25907004,1
+53869706,25907004,-1
+1102153,25907004,2
+2819219,25907004,2
+Yang13917,25907004,-1
+2580551,25907004,2
+104230732,25907004,4
+53362350,25907004,2
+BigfaBaozi,25907004,3
+lh12123,25907004,3
+binkychou,25907004,1
+Be1s1,25907004,5
+48354236,25907004,-1
+84779002,25907004,1
+ilovejay79118,25907004,1
+1796714,25907004,1
+109071347,25907004,3
+86253847,25907004,3
+46149652,25907004,1
+DreamDeeeer,25907004,3
+vince717,25907004,2
+48065738,25907004,1
+67019496,25907004,2
+49040828,25907004,4
+2701375,25907004,-1
+47319867,25907004,3
+74015810,25907004,2
+56301809,25907004,2
+ningning9164,25907004,-1
+eugene117,25907004,-1
+53768301,25907004,2
+lichuman,25907004,1
+Joy_sa,25907004,-1
+80505580,25907004,3
+71880775,25907004,2
+1626912,25907004,3
+47800725,25907004,1
+2028239,25907004,2
+50566408,25907004,1
+25753673,25907004,4
+mfishoo,25907004,1
+samsamt,25907004,-1
+yoyoinlove,25907004,2
+47093146,25907004,2
+90205716,25907004,1
+ninety-one,25907004,1
+70421764,25907004,3
+xiaoqingniu,25907004,2
+vivianlovesun,25907004,1
+67952869,25907004,2
+ur.little.girl.,25907004,2
+55652120,25907004,3
+66552525,25907004,3
+50699357,25907004,4
+63125194,25907004,3
+3430345,25907004,4
+irafighting,25907004,2
+mwangym,25907004,3
+53920626,25907004,2
+4715775,25907004,2
+44552200,25907004,4
+wondering...,25907004,1
+60856294,25907004,3
+43539479,25907004,2
+foamwhisper,25907004,2
+110519343,25907004,3
+2427012,25907004,-1
+68583073,25907004,3
+112387290,25907004,2
+134193379,25907004,2
+55643287,25907004,2
+hanyoyo2000,25907004,2
+hanyoyo2000,25907004,2
+daniel_gao,25907004,2
+60569349,25907004,4
+88393319,25907004,2
+33693061,25907004,1
+48829724,25907004,1
+58079991,25907004,1
+cyeon,25907004,2
+54300451,25907004,2
+72438704,25907004,5
+21354916,25907004,1
+cgcloudia,25907004,-1
+54050020,25907004,2
+57385084,25907004,4
+eloise0114,25907004,2
+48503456,25907004,3
+58694417,25907004,3
+39789528,25907004,1
+colazjy,25907004,-1
+134617663,25907004,3
+134617663,25907004,3
+124832004,25907004,3
+83016108,25907004,3
+linxiaoleng,25907004,2
+52275922,25907004,2
+70961153,25907004,3
+cornel1a,25907004,3
+1427633,25907004,1
+49298107,25907004,2
+55855348,25907004,3
+luckyanc,25907004,2
+53721830,25907004,2
+59556078,25907004,1
+zhoubaicai,25907004,-1
+3306665,25907004,2
+sleepwalk,25907004,2
+isabelliu,25907004,3
+Michellekids,25907004,2
+Joan_J,25907004,1
+cinderella_ss,25907004,-1
+jinjingjing,25907004,3
+44851565,25907004,5
+KokoJ,25907004,2
+earthquakes,25907004,1
+49483549,25907004,1
+64755839,25907004,1
+57596518,25907004,3
+64926044,25907004,2
+zhengzhongyu,25907004,-1
+suoailiangren,25907004,2
+kefishfish,25907004,2
+37571281,25907004,1
+azeizei,25907004,2
+82362528,25907004,3
+70132869,25907004,3
+2238966,25907004,1
+1816068,25907004,1
+74641801,25907004,2
+VivianGoodchild,25907004,-1
+Charlotte.Q,25907004,2
+52063178,25907004,4
+3165431,25907004,2
+82706451,25907004,1
+52636646,25907004,2
+32251971,25907004,3
+4279038,25907004,2
+2610640,25907004,1
+sharkstyle,25907004,1
+bLue.C,25907004,1
+58338006,25907004,2
+paper-airplane,25907004,2
+tiramisu1314,25907004,1
+cozumakemesmile,25907004,5
+zxlannette,25907004,5
+2813670,25907004,3
+faannn,25907004,2
+baby4inlove,25907004,4
+47504020,25907004,2
+66083647,25907004,3
+linshang,25907004,2
+49761291,25907004,1
+1905433,25907004,2
+120826498,25907004,2
+64013773,25907004,3
+43269770,25907004,2
+SPIRITUA,25907004,3
+54066175,25907004,2
+WYTlucky_420,25907004,3
+49114944,25907004,5
+easonsuu,25907004,2
+wangholic,25907004,1
+78902065,25907004,1
+35911285,25907004,3
+130044129,25907004,2
+1831746,25907004,3
+YOHaYY,25907004,-1
+131206597,25907004,3
+65021113,25907004,1
+4228422,25907004,2
+4657556,25907004,3
+wchuwen,25907004,4
+47434041,25907004,2
+63058412,25907004,1
+15657499,25907004,1
+87559575,25907004,1
+65521542,25907004,-1
+51048652,25907004,3
+omnia,25907004,3
+dx7590,25907004,3
+70453072,25907004,1
+littlesunnus,25907004,3
+leliz,25907004,1
+2889153,25907004,2
+69345836,25907004,5
+hekahuiqu,25907004,2
+119405586,25907004,3
+chezidaobai,25907004,1
+45714690,25907004,2
+hexuanpomon,25907004,2
+68141214,25907004,2
+shanyier,25907004,3
+greenie_sky,25907004,1
+tibet412,25907004,3
+64087263,25907004,4
+91428973,25907004,2
+77042003,25907004,2
+26985231,25907004,-1
+80055631,25907004,3
+107586571,25907004,3
+1561528,25907004,2
+77491930,25907004,3
+clever_trick,25907004,3
+Suumer007,25907004,3
+kissmusic_520,25907004,2
+yin972550997,25907004,3
+momo077,25907004,2
+59504522,25907004,2
+4357598,25907004,2
+3609952,25907004,3
+hsj9,25907004,2
+2231648,25907004,1
+59572879,25907004,4
+91582621,25907004,2
+Kevin_Tse,25907004,1
+coco921,25907004,4
+2829825,25907004,3
+hzgirl0001,25907004,1
+71561935,25907004,1
+76697169,25907004,2
+51929151,25907004,1
+armitt,25907004,1
+lilibird007,25907004,3
+68813789,25907004,3
+50351028,25907004,2
+63075072,25907004,2
+nxy941123,25907004,2
+TitlisGushishan,25907004,2
+qjunny,25907004,1
+64124840,25907004,2
+54783483,25907004,3
+yalindongdong,25907004,2
+yny23,25907004,4
+pbc0615,25907004,1
+133493079,25907004,3
+4648025,25907004,3
+soulmate_z,25907004,1
+47703380,25907004,4
+summer4_ever,25907004,2
+2280761,25907004,4
+67863005,25907004,1
+jurgenzn,25907004,2
+4129696,25907004,1
+69598096,25907004,1
+sumobei,25907004,1
+yimoyoulan916,25907004,3
+51806817,25907004,3
+1987445,25907004,3
+chinriya,25907004,1
+50030620,25907004,1
+2509060,25907004,1
+cassiopeiafever,25907004,1
+46078786,25907004,3
+57120276,25907004,2
+1970231,25907004,5
+2212675,25907004,1
+zhichuangfanle,25907004,2
+3229284,25907004,1
+Jarashi,25907004,1
+crystal19910312,25907004,3
+stompbabe,25907004,1
+34140064,25907004,1
+yc82267869,25907004,3
+124887489,25907004,2
+nanshengism,25907004,2
+marioshuairen,25907004,2
+vivienne1117,25907004,2
+58009265,25907004,3
+xuesong0009,25907004,1
+63866031,25907004,3
+56299828,25907004,2
+63192479,25907004,-1
+4463635,25907004,1
+68878726,25907004,2
+CatPrince,25907004,3
+4367384,25907004,3
+gaotongruc,25907004,2
+55308180,25907004,-1
+suijingjing,25907004,3
+fragilelove,25907004,1
+fedorajiang,25907004,1
+60935478,25907004,2
+some1one,25907004,2
+12232981,25907004,1
+AMOHanMeimei,25907004,3
+115131162,25907004,3
+68710909,25907004,2
+73931385,25907004,1
+14533413,25907004,2
+suvisions,25907004,4
+m_l,25907004,5
+m_l,25907004,5
+3006618,25907004,-1
+53070283,25907004,3
+zzlcslg,25907004,-1
+121243676,25907004,2
+2679870,25907004,4
+32853386,25907004,2
+54783024,25907004,3
+68399606,25907004,2
+athenacrystal,25907004,1
+127771292,25907004,2
+Tri-AU,25907004,1
+Gorjess3,25907004,1
+leexiaomu,25907004,3
+39720218,25907004,1
+46894377,25907004,2
+3159688,25907004,1
+Inkfearless,25907004,3
+stickman,25907004,2
+29839010,25907004,2
+87866521,25907004,3
+Lreckle,25907004,1
+113310119,25907004,4
+4636941,25907004,-1
+3706500,25907004,3
+benzliang,25907004,3
+80598638,25907004,1
+87026553,25907004,3
+lixiaobinger,25907004,3
+4018918,25907004,2
+1821069,25907004,2
+94587558,25907004,2
+104265782,25907004,1
+littlezhisandra,25907004,3
+48308518,25907004,1
+80074512,25907004,1
+52259960,25907004,2
+gongzitian,25907004,1
+54228014,25907004,2
+52282792,25907004,2
+kingiknow,25907004,3
+79022603,25907004,2
+53640936,25907004,2
+2625680,25907004,2
+1929758,25907004,2
+49258519,25907004,3
+51378899,25907004,3
+64465114,25907004,3
+43430222,25907004,1
+130792302,25907004,3
+57235976,25907004,1
+122161339,25907004,2
+maoamao,25907004,1
+athule,25907004,-1
+ask4more,25907004,2
+54715376,25907004,3
+amis110,25907004,3
+44504599,25907004,2
+cl20lc,25907004,1
+kid131,25907004,2
+44022921,25907004,2
+2187326,25907004,3
+36518847,25907004,3
+29398491,25907004,3
+smallamo,25907004,1
+50410160,25907004,1
+61855461,25907004,2
+1865210,25907004,1
+shuang331,25907004,1
+46912414,25907004,4
+wangyuan2648,25907004,1
+juwujian,25907004,2
+73163829,25907004,4
+yuusuke_riku,25907004,3
+leeshiuan,25907004,3
+102969702,25907004,1
+danlan121,25907004,2
+btone0808,25907004,1
+65744500,25907004,3
+103214078,25907004,3
+61054715,25907004,2
+juscici,25907004,-1
+susandancing,25907004,3
+echozhan,25907004,2
+50472706,25907004,2
+49585596,25907004,1
+qianmop,25907004,1
+49456596,25907004,2
+45647033,25907004,1
+yfqc24pippo,25907004,1
+88247921,25907004,1
+cerrol,25907004,2
+fumihiko1985,25907004,2
+for-coee,25907004,3
+81042708,25907004,2
+34434303,25907004,3
+63063218,25907004,3
+69236111,25907004,2
+kemoaye,25907004,1
+44628811,25907004,3
+44628811,25907004,3
+wywe,25907004,2
+70699214,25907004,1
+ler.sky.,25907004,1
+49365587,25907004,3
+gezixiong,25907004,1
+48355482,25907004,3
+71348074,25907004,1
+freddy_xu,25907004,-1
+demonie,25907004,-1
+60662764,25907004,3
+75990882,25907004,3
+3650236,25907004,2
+2054495,25907004,1
+76028703,25907004,2
+58691394,25907004,3
+47231110,25907004,1
+Angel.Tracy,25907004,3
+1491079,25907004,1
+75555636,25907004,3
+127782442,25907004,2
+EaSt-memory,25907004,1
+58442075,25907004,3
+xiaosummer,25907004,4
+50414498,25907004,2
+41487778,25907004,1
+121816227,25907004,3
+46710908,25907004,4
+129636483,25907004,4
+Jia-Z,25907004,-1
+83309837,25907004,2
+2060005,25907004,3
+56898104,25907004,1
+62677816,25907004,4
+71420798,25907004,1
+2987938,25907004,2
+rbit,25907004,3
+darlinfish,25907004,-1
+51951428,25907004,3
+70982693,25907004,1
+luguo90,25907004,1
+minmins,25907004,-1
+iear,25907004,3
+2476748,25907004,1
+108282995,25907004,3
+time2night,25907004,2
+the_z,25907004,3
+baibi,25907004,1
+127274707,25907004,-1
+NNNNNian-,25907004,1
+50404371,25907004,-1
+3981445,25907004,3
+46243415,25907004,1
+63890745,25907004,1
+grace-z,25907004,3
+64928039,25907004,2
+93444611,25907004,3
+42600622,25907004,-1
+lunay,25907004,2
+124136324,25907004,2
+61219748,25907004,2
+50281371,25907004,2
+59149801,25907004,5
+darkwindsd,25907004,2
+48775291,25907004,4
+60442939,25907004,1
+122848551,25907004,3
+8872886,25907004,1
+mufanxuanji,25907004,2
+dearazuki,25907004,3
+53904124,25907004,1
+mymydemon,25907004,2
+AChord,25907004,2
+lalalin,25907004,1
+31688136,25907004,2
+xiaojingyush,25907004,3
+99833662,25907004,2
+eefee,25907004,3
+38985157,25907004,2
+48843801,25907004,2
+49338392,25907004,4
+71316784,25907004,1
+5747784,25907004,3
+74608127,25907004,3
+momoling,25907004,2
+Qyaoyao,25907004,-1
+77350146,25907004,2
+50375853,25907004,3
+41511401,25907004,3
+119171762,25907004,2
+joyinzone,25907004,2
+84762957,25907004,1
+66620851,25907004,1
+65514496,25907004,3
+tinywhowho,25907004,1
+djfish,25907004,1
+3771555,25907004,4
+peggyguan,25907004,1
+35507576,25907004,3
+xiaoyedeguo,25907004,1
+rurucat,25907004,2
+3089552,25907004,3
+49730580,25907004,-1
+apubit,25907004,2
+56030999,25907004,3
+Ali1065641315,25907004,2
+97351313,25907004,3
+Longinuss,25907004,1
+fanfanmero,25907004,5
+32459507,25907004,4
+3690173,25907004,4
+qianxiaochen,25907004,2
+Popdai,25907004,1
+4154813,25907004,2
+52698885,25907004,1
+89176863,25907004,3
+lynnca,25907004,2
+64222171,25907004,1
+a3615,25907004,1
+90270174,25907004,2
+119379415,25907004,3
+79058153,25907004,2
+1888866,25907004,4
+119788190,25907004,3
+1481020,25907004,3
+sibyl234,25907004,2
+minsi,25907004,1
+36470321,25907004,1
+yaoqi717,25907004,1
+77076434,25907004,3
+charo,25907004,1
+80127291,25907004,2
+Fay59,25907004,3
+52396131,25907004,3
+aibamoe,25907004,1
+56493073,25907004,1
+MEITONG,25907004,4
+3538758,25907004,2
+35300407,25907004,1
+78459514,25907004,3
+luhua,25907004,1
+115688081,25907004,3
+xjnjenny,25907004,-1
+2832860,25907004,3
+34014506,25907004,3
+54012954,25907004,2
+49474157,25907004,3
+martinchen,25907004,3
+cccj.box,25907004,1
+29568724,25907004,1
+35567760,25907004,3
+flywanttofly,25907004,3
+jhj758,25907004,4
+zhusiyang,25907004,4
+shanghai11,25907004,3
+63885586,25907004,2
+52896143,25907004,3
+50023640,25907004,2
+hato,25907004,1
+digforfun,25907004,1
+42642888,25907004,2
+woodfat,25907004,-1
+51053103,25907004,3
+48309763,25907004,5
+58957642,25907004,1
+cecilia9624,25907004,3
+1521152,25907004,2
+heylixiao,25907004,1
+57430820,25907004,1
+icynb,25907004,2
+Killern,25907004,2
+64638261,25907004,3
+61805546,25907004,2
+92926800,25907004,3
+bonnie85,25907004,3
+9848429,25907004,2
+87574770,25907004,1
+rabbit101,25907004,2
+61964265,25907004,1
+2233956,25907004,3
+serah,25907004,3
+48956070,25907004,-1
+84710865,25907004,3
+40749277,25907004,4
+pinko333,25907004,1
+60192740,25907004,4
+53485894,25907004,1
+greengreendeer,25907004,2
+ide218,25907004,3
+64985814,25907004,-1
+44918804,25907004,3
+1155736,25907004,2
+45393732,25907004,1
+zhemi,25907004,1
+48603851,25907004,2
+holicking,25907004,1
+29723781,25907004,2
+43172393,25907004,1
+49232664,25907004,4
+hejie511,25907004,2
+Shining_shininG,25907004,1
+rockcn888,25907004,1
+60971525,25907004,3
+xiaodi27,25907004,5
+114242202,25907004,1
+zero-seven,25907004,2
+3242837,25907004,1
+2112802,25907004,1
+annho,25907004,1
+57065086,25907004,1
+55885423,25907004,2
+loveloki913,25907004,-1
+51133078,25907004,4
+yaozi0426,25907004,2
+45537891,25907004,1
+1915542,25907004,1
+44451771,25907004,1
+jhm279697317,25907004,2
+77796616,25907004,1
+84049214,25907004,1
+yliu,25907004,3
+nuannuan827,25907004,2
+66865391,25907004,3
+1450381,25907004,2
+62705115,25907004,1
+cheiry,25907004,1
+luoqiuyue,25907004,2
+49825547,25907004,1
+22625157,25907004,2
+x1Ao_y,25907004,1
+tt928,25907004,3
+57542378,25907004,2
+80226411,25907004,1
+shiybkeng,25907004,1
+happyaa_cyndi,25907004,3
+45571229,25907004,1
+yvonnezcl,25907004,2
+mr.slow,25907004,4
+4564418,25907004,3
+1283623,25907004,2
+60667221,25907004,1
+47088428,25907004,1
+105489601,25907004,1
+claireqq,25907004,1
+52830779,25907004,3
+1504114,25907004,3
+Misscat145,25907004,5
+xiaoye780621,25907004,1
+praha1996,25907004,4
+nangongmocheng,25907004,3
+4412176,25907004,2
+27728615,25907004,1
+houmama,25907004,1
+summer4130,25907004,2
+47057381,25907004,3
+62635577,25907004,1
+57443358,25907004,2
+zlaye,25907004,2
+bsqtzykbsqtzyk,25907004,2
+kylin_28,25907004,2
+79571152,25907004,-1
+53451776,25907004,2
+3302698,25907004,1
+47217349,25907004,3
+55960442,25907004,1
+15181022,25907004,2
+luochi,25907004,1
+64254102,25907004,4
+wumingzaish,25907004,1
+88542586,25907004,2
+wanghuixian,25907004,4
+63272219,25907004,1
+80792973,25907004,2
+wanhoo,25907004,1
+52092305,25907004,2
+4256253,25907004,3
+53206296,25907004,1
+51787772,25907004,3
+ccinder,25907004,-1
+KinO_O,25907004,2
+87988157,25907004,2
+48833533,25907004,2
+47746906,25907004,3
+53560146,25907004,3
+3705906,25907004,2
+lutosdan,25907004,1
+63663769,25907004,2
+48216088,25907004,3
+70951169,25907004,5
+izaijin,25907004,3
+55644124,25907004,2
+caocongliuri,25907004,1
+37264633,25907004,2
+jophyfong,25907004,-1
+68379103,25907004,-1
+magic90ni,25907004,1
+65970806,25907004,5
+46310239,25907004,1
+48814241,25907004,5
+3737846,25907004,5
+8151313,25907004,3
+42709375,25907004,1
+imkelen,25907004,-1
+SusuwANjr,25907004,-1
+tiantian0628,25907004,2
+34161257,25907004,2
+2707932,25907004,4
+bbbosh,25907004,1
+24112707,25907004,1
+Cey-Dun,25907004,1
+46308834,25907004,1
+75441561,25907004,3
+WendiMurdoch,25907004,1
+shaoworld,25907004,3
+70845275,25907004,4
+56160592,25907004,2
+66057217,25907004,1
+qijiuzhiyue,25907004,2
+4544892,25907004,2
+49187859,25907004,1
+59408878,25907004,2
+cherrychan918,25907004,4
+60119754,25907004,1
+4473871,25907004,5
+51862860,25907004,1
+qimuxiaogui,25907004,5
+biglisten,25907004,1
+19861416,25907004,2
+55446081,25907004,2
+17692341,25907004,-1
+56186272,25907004,5
+54711146,25907004,3
+3989670,25907004,2
+niguize,25907004,1
+FrankWasabi,25907004,1
+1582380,25907004,3
+2003126,25907004,1
+abaqiao,25907004,3
+46843344,25907004,1
+donpieisme,25907004,-1
+49602953,25907004,4
+action552200,25907004,3
+102921046,25907004,-1
+62087939,25907004,3
+zzzhanglisha,25907004,3
+clarattttt,25907004,1
+72693532,25907004,-1
+sirenzj,25907004,4
+35192408,25907004,5
+baodai,25907004,3
+xiaomaowaxika,25907004,4
+84076381,25907004,1
+102364931,25907004,5
+65574259,25907004,1
+66880325,25907004,2
+Saggezza,25907004,4
+zyycat,25907004,3
+60370348,25907004,1
+qioling,25907004,2
+44049094,25907004,3
+46833436,25907004,1
+dongchenxing,25907004,3
+xu77,25907004,1
+48270504,25907004,2
+bjmiss,25907004,1
+LxiaoY0214,25907004,4
+43576982,25907004,3
+49893438,25907004,1
+chuxiadenver,25907004,5
+84254313,25907004,2
+14013257,25907004,1
+yaaaaako96,25907004,2
+75809649,25907004,2
+65282379,25907004,2
+138215436,25907004,3
+138214344,25907004,3
+biancazhu,25907004,2
+speakinginging,25907004,2
+126138215,25907004,1
+hipposan,25907004,2
+60551662,25907004,1
+66991215,25907004,5
+der_Baum,25907004,2
+crazybitch08,25907004,3
+137943015,25907004,-1
+vala1994,25907004,2
+130445057,25907004,2
+59704071,25907004,2
+82334570,25907004,3
+ffliens,25907004,2
+3804622,25907004,3
+unicornlarry,25907004,1
+quinyu,25907004,1
+mojian,25907004,3
+50307120,25907004,1
+121770759,25907004,3
+88331189,25907004,2
+57024226,25907004,1
+81257739,25907004,3
+69646030,25907004,2
+50609677,26235839,2
+gloria1102,26235839,3
+85447526,26235839,4
+58026592,26235839,4
+piepiecharlene,26235839,5
+69439267,26235839,3
+cielshaw,26235839,4
+74015810,26235839,5
+eefee,26235839,3
+Juice.,26235839,4
+71230425,26235839,3
+81481225,26235839,3
+dyinggg,26235839,3
+4014339,26235839,4
+2997087,26235839,1
+88535863,26235839,5
+53401173,26235839,4
+115503378,26235839,3
+76117897,26235839,4
+48007426,26235839,3
+datoujun,26235839,4
+72703568,26235839,3
+wuyunoy,26235839,3
+lostinyou123,26235839,3
+71061897,26235839,4
+km,26235839,4
+krisleung,26235839,4
+63744273,26235839,3
+121390872,26235839,3
+Seuysiro,26235839,4
+131987227,26235839,5
+119199774,26235839,5
+4522191,26235839,3
+59129484,26235839,4
+10539580,26235839,3
+lingdongling,26235839,3
+104056990,26235839,3
+75097812,26235839,4
+4001159,26235839,3
+43748947,26235839,3
+leavelove,26235839,4
+wujiwudu,26235839,3
+papa_christmas,26235839,4
+44417635,26235839,4
+52004639,26235839,4
+133315176,26235839,4
+69213469,26235839,5
+54327177,26235839,3
+DdotRabbit,26235839,5
+63595531,26235839,4
+L-6206,26235839,-1
+delmar,26235839,3
+tsebb,26235839,4
+4249661,26235839,5
+62229991,26235839,4
+2647926,26235839,4
+36452184,26235839,1
+68675748,26235839,4
+haixiaoyang,26235839,4
+58941553,26235839,3
+jluy,26235839,4
+124953430,26235839,5
+luobeini1996,26235839,3
+32705581,26235839,4
+51063546,26235839,3
+2073098,26235839,4
+136261663,26235839,4
+136658274,26235839,3
+137383897,26235839,3
+lmx19900612,26235839,4
+75366574,26235839,5
+47818066,26235839,5
+127320783,26235839,5
+guanlyn,26235839,4
+lostoldboy,26235839,3
+67338134,26235839,3
+59158037,26235839,4
+Mai68,26235839,2
+53010578,26235839,-1
+la739212322,26235839,5
+41943699,26235839,4
+67877483,26235839,5
+3634776,26235839,4
+42796272,26235839,3
+heechulholic,26235839,5
+62080615,26235839,4
+iae,26235839,4
+errrlilly,26235839,4
+62979534,26235839,5
+79915546,26235839,2
+64801860,26235839,3
+55325883,26235839,3
+71400865,26235839,4
+90543489,26235839,3
+66757366,26235839,4
+75598962,26235839,4
+47100012,26235839,4
+47496790,26235839,4
+2549173,26235839,4
+68364127,26235839,4
+70860940,26235839,4
+46230886,26235839,3
+103474402,26235839,4
+lotuslovelife,26235839,5
+xiaforever,26235839,5
+75159518,26235839,4
+qqb143,26235839,3
+46534834,26235839,3
+1806185,26235839,4
+103580957,26235839,4
+2236050,26235839,4
+83152126,26235839,5
+haloyt,26235839,4
+50752972,26235839,3
+130978369,26235839,3
+121434454,26235839,4
+banxiaqiuming,26235839,3
+66055788,26235839,3
+59221485,26235839,4
+40787271,26235839,3
+leave614,26235839,3
+63615168,26235839,5
+84971232,26235839,4
+56941343,26235839,2
+108816754,26235839,4
+76239452,26235839,4
+69029674,26235839,5
+4043688,26235839,-1
+131343395,26235839,4
+seventoonaive,26235839,5
+52235121,26235839,4
+teenytinygenius,26235839,3
+58082536,26235839,4
+133254262,26235839,4
+81268447,26235839,4
+133020463,26235839,4
+79087170,26235839,4
+67325073,26235839,3
+sylvia1207,26235839,4
+98468456,26235839,4
+54329271,26235839,4
+67811189,26235839,4
+84346271,26235839,4
+42006560,26235839,3
+mono1886,26235839,4
+47595964,26235839,4
+soo_park641215,26235839,4
+45713039,26235839,-1
+caolong,26235839,2
+74601834,26235839,4
+48997754,26235839,4
+49585616,26235839,4
+126000236,26235839,3
+38702982,26235839,3
+x1Ao_y,26235839,4
+laichi_,26235839,4
+113310119,26235839,5
+51086058,26235839,3
+gaojie0114,26235839,3
+67863005,26235839,4
+128083770,26235839,5
+1378503,26235839,3
+59101445,26235839,3
+shinhwas1,26235839,4
+11658942,26235839,4
+48593748,26235839,1
+83432844,26235839,5
+lelelelelelelel,26235839,3
+52103391,26235839,4
+wooafei,26235839,4
+Eremita_L,26235839,3
+zuiaidaluobo,26235839,5
+44022921,26235839,4
+57411563,26235839,5
+wangjia0702,26235839,4
+49176531,26235839,4
+131205877,26235839,4
+1068202,26235839,4
+122644888,26235839,5
+mengaxin,26235839,2
+shuo3dao4,26235839,-1
+58425060,26235839,5
+ChicWeirdo,26235839,2
+superse,26235839,3
+103277074,26235839,4
+yaolegeyao,26235839,3
+viviattic,26235839,-1
+3978577,26235839,4
+131909298,26235839,3
+75937419,26235839,3
+45505797,26235839,4
+66375392,26235839,5
+84855467,26235839,3
+6343940,26235839,5
+J3lly333,26235839,4
+67400745,26235839,3
+122128201,26235839,4
+1550135,26235839,3
+34388514,26235839,4
+70595414,26235839,4
+96873313,26235839,3
+46883744,26235839,5
+46135417,26235839,5
+8244005,26235839,3
+26907758,26235839,4
+taozi0001,26235839,4
+46280051,26235839,2
+127298823,26235839,3
+88219923,26235839,4
+68446356,26235839,-1
+42817015,26235839,3
+69328232,26235839,3
+aki0726,26235839,4
+44178660,26235839,3
+phoeder,26235839,3
+rellacheung,26235839,4
+VINCENTVCHAN,26235839,3
+120911789,26235839,2
+29113494,26235839,3
+rocker0313,26235839,4
+56894837,26235839,5
+earlyzaozao,26235839,4
+MORETHANM,26235839,3
+csp,26235839,3
+50733430,26235839,4
+34292646,26235839,4
+130599620,26235839,3
+nolike,26235839,4
+60566231,26235839,4
+132035196,26235839,5
+lisuansuan,26235839,3
+68963965,26235839,4
+53250423,26235839,3
+121865827,26235839,-1
+92866359,26235839,4
+61753912,26235839,3
+61419341,26235839,3
+44477985,26235839,3
+2698249,26235839,4
+121583885,26235839,-1
+103030810,26235839,3
+53721431,26235839,4
+sansu_fighting,26235839,3
+widchou,26235839,5
+rachel6703933,26235839,-1
+58343870,26235839,4
+98956225,26235839,4
+hellomo,26235839,4
+72781855,26235839,3
+njtintin,26235839,3
+45569084,26235839,4
+sjgki,26235839,5
+84484396,26235839,4
+summersugarb,26235839,4
+82805165,26235839,5
+1552212,26235839,4
+44922872,26235839,3
+55643387,26235839,4
+54034056,26235839,3
+H897120417,26235839,4
+58667207,26235839,4
+51225396,26235839,4
+99707810,26235839,4
+126293388,26235839,3
+115496664,26235839,3
+9694640,26235839,5
+57972218,26235839,4
+ev3ve,26235839,1
+67765216,26235839,3
+72405316,26235839,4
+48583907,26235839,4
+68550063,26235839,4
+yoyoj,26235839,4
+48423987,26235839,2
+bettyfay,26235839,4
+59699452,26235839,3
+77577203,26235839,3
+119374613,26235839,2
+LolaLola,26235839,-1
+sooooosweet,26235839,3
+48247472,26235839,4
+70242419,26235839,5
+50619132,26235839,3
+54706130,26235839,3
+2367544,26235839,3
+falent,26235839,5
+91206147,26235839,4
+meifyrt,26235839,-1
+33439278,26235839,3
+dd1001,26235839,3
+shuman90,26235839,4
+87546829,26235839,4
+38403649,26235839,4
+14014568,26235839,3
+44045443,26235839,3
+icy1004,26235839,4
+60072437,26235839,4
+Annalita,26235839,3
+hosoro,26235839,4
+good_man,26235839,5
+youngriver,26235839,4
+39263277,26235839,2
+105011179,26235839,4
+68725217,26235839,4
+58605674,26235839,5
+52918110,26235839,3
+73530411,26235839,5
+thesadyesterday,26235839,3
+65602766,26235839,3
+46404416,26235839,4
+48087501,26235839,5
+52479763,26235839,2
+68161081,26235839,3
+SSismon,26235839,5
+alexda1da2da3,26235839,4
+35010939,26235839,4
+3320569,26235839,4
+78966790,26235839,2
+54706735,26235839,3
+63358788,26235839,5
+71121390,26235839,1
+34946223,26235839,4
+70728230,26235839,4
+51606763,26235839,4
+49693617,26235839,3
+9029217,26235839,4
+129902939,26235839,4
+jaehee,26235839,4
+scofieldx,26235839,4
+49084630,26235839,5
+62041863,26235839,4
+36147004,26235839,4
+43942858,26235839,3
+gangkuili,26235839,2
+TiAmoWangQiXin,26235839,2
+63614757,26235839,5
+137303234,26235839,4
+58338006,26235839,4
+3456645,26235839,5
+2220763,26235839,4
+131186165,26235839,4
+58945423,26235839,5
+132348413,26235839,4
+leechambo,26235839,3
+45216474,26235839,5
+chunai_0428,26235839,4
+helen92617,26235839,5
+cyjcandychan,26235839,3
+vhenshan,26235839,5
+79181890,26235839,3
+boycester,26235839,3
+Elizabeth-Lee,26235839,4
+76335653,26235839,4
+missyoucl,26235839,5
+121536434,26235839,3
+smsmsmj,26235839,2
+4537053,26235839,3
+60054131,26235839,4
+2588629,26235839,4
+44441839,26235839,4
+44441839,26235839,4
+46630332,26235839,5
+48128948,26235839,-1
+52007831,26235839,4
+ADmoviemtime,26235839,4
+63144605,26235839,3
+66584790,26235839,3
+guojie,26235839,4
+46642364,26235839,3
+76786786,26235839,5
+84398440,26235839,5
+zhangqiong07,26235839,5
+chinriya,26235839,3
+huaiyao,26235839,4
+125901392,26235839,3
+55446081,26235839,4
+mourirank,26235839,4
+Mr_zhou,26235839,4
+69649428,26235839,3
+71188390,26235839,5
+137206904,26235839,4
+4218205,26235839,5
+9167697,26235839,-1
+49384394,26235839,3
+63021029,26235839,3
+41083928,26235839,5
+L2X12221120,26235839,5
+Lemonsir,26235839,4
+chaiyanchao,26235839,5
+73370423,26235839,3
+ria_really,26235839,4
+51303010,26235839,5
+85035571,26235839,3
+47037959,26235839,-1
+luhua,26235839,3
+60070241,26235839,5
+72711765,26235839,2
+haojvv,26235839,3
+Yangtze_Ann,26235839,-1
+4445926,26235839,2
+FORYUKI,26235839,4
+106514817,26235839,3
+44820765,26235839,3
+29257975,26235839,4
+7223165,26235839,4
+67916161,26235839,3
+42797360,26235839,4
+whitney0417,26235839,4
+63391208,26235839,4
+74672452,26235839,4
+71946766,26235839,4
+131020888,26235839,2
+3881393,26235839,3
+115051698,26235839,3
+calistangel,26235839,4
+132827615,26235839,1
+54462920,26235839,4
+41836272,26235839,3
+52277812,26235839,4
+zhujuejin,26235839,3
+1882334,26235839,2
+jinzhawithyou,26235839,4
+cianshijie,26235839,4
+1278172,26235839,3
+58393377,26235839,4
+1688865,26235839,2
+65878913,26235839,3
+59912569,26235839,3
+53477398,26235839,3
+Sissi17,26235839,4
+49237640,26235839,4
+68692379,26235839,3
+46208929,26235839,4
+lynnyuchen,26235839,3
+puhonglei,26235839,2
+124694624,26235839,4
+58057180,26235839,2
+69434822,26235839,2
+66328593,26235839,3
+16909521,26235839,3
+87987289,26235839,3
+50616224,26235839,3
+starry_liu,26235839,4
+57850884,26235839,4
+50589086,26235839,5
+3003736,26235839,4
+57615935,26235839,3
+78851730,26235839,4
+44275428,26235839,4
+56481309,26235839,4
+49748838,26235839,4
+3559769,26235839,3
+83942238,26235839,4
+edward2wong,26235839,4
+Paradox_Q,26235839,3
+69059154,26235839,4
+35224934,26235839,3
+52112521,26235839,3
+36594932,26235839,-1
+ODODOD,26235839,3
+75499196,26235839,4
+menyingqi,26235839,3
+129577798,26235839,4
+76970827,26235839,3
+imoviemaker,26235839,4
+62275045,26235839,3
+19469713,26235839,5
+dbhungry,26235839,2
+hexiaoqin,26235839,3
+zoic,26235839,2
+74587086,26235839,4
+108573599,26235839,3
+119939097,26235839,3
+rikkuwang,26235839,4
+77316354,26235839,4
+lovelyladys,26235839,4
+45347825,26235839,4
+73765169,26235839,3
+60096447,26235839,4
+emor1106,26235839,3
+eloise0114,26235839,3
+zyt_69,26235839,4
+Danny-Green,26235839,4
+54355887,26235839,4
+47974911,26235839,3
+83837319,26235839,3
+12078668,26235839,4
+44020723,26235839,4
+90546235,26235839,4
+120984888,26235839,3
+53682563,26235839,4
+maxdoreen,26235839,4
+122035802,26235839,3
+119197103,26235839,4
+cangjie1900,26235839,3
+48748738,26235839,4
+8312118,26235839,2
+61667274,26235839,3
+79312100,26235839,4
+sona302,26235839,4
+mayday_apple,26235839,5
+3183207,26235839,-1
+63603619,26235839,4
+kyj113,26235839,3
+78806633,26235839,4
+50875593,26235839,3
+3002217,26235839,3
+1845398,26235839,4
+3418378,26235839,3
+47529528,26235839,5
+dreamcristal,26235839,4
+11508993,26235839,3
+millylyu,26235839,3
+53479679,26235839,4
+53636102,26235839,3
+sangye,26235839,4
+53833067,26235839,3
+59198180,26235839,5
+71227303,26235839,4
+picnicskins,26235839,3
+52399993,26235839,2
+57080555,26235839,4
+59964725,26235839,4
+usernamej,26235839,4
+115957962,26235839,4
+seaunt,26235839,4
+4350982,26235839,4
+51698835,26235839,4
+68385418,26235839,3
+127131340,26235839,4
+3633901,26235839,3
+2313629,26235839,4
+crowsz,26235839,4
+YAO-yao,26235839,3
+58256926,26235839,4
+joannaZR,26235839,3
+Lkongming,26235839,3
+xiaojiongxia,26235839,4
+yutingamy,26235839,3
+46528708,26235839,4
+Nimeizi,26235839,4
+54897020,26235839,5
+hazelhao,26235839,3
+bberry,26235839,-1
+136854098,26235839,3
+52586242,26235839,-1
+42785964,26235839,2
+53734415,26235839,5
+71106943,26235839,5
+46714118,26235839,3
+68481275,26235839,-1
+mikadu,26235839,4
+135622084,26235839,4
+44028253,26235839,4
+55575289,26235839,3
+zjshichaoren,26235839,4
+121945093,26235839,3
+70920150,26235839,4
+3119825,26235839,4
+stanleyshen,26235839,4
+2264556,26235839,5
+wanglinzi0214,26235839,-1
+zoe315,26235839,3
+57166570,26235839,3
+57884844,26235839,4
+1201246,26235839,2
+ccushuaia1220,26235839,-1
+126500017,26235839,3
+banruoliuli,26235839,3
+7292654,26235839,5
+debussy,26235839,3
+49456596,26235839,4
+50950772,26235839,3
+53396901,26235839,4
+81051670,26235839,3
+66632216,26235839,4
+iampearl,26235839,4
+64107417,26235839,4
+134545730,26235839,4
+55847546,26235839,3
+48330549,26235839,4
+43072400,26235839,4
+47218241,26235839,3
+bbbbian,26235839,3
+76187986,26235839,4
+120680563,26235839,3
+BlueMoonshine,26235839,3
+45372081,26235839,4
+qingdaofu,26235839,3
+65666539,26235839,3
+103604151,26235839,4
+65086893,26235839,4
+tony07monkey,26235839,4
+52529736,26235839,3
+53677228,26235839,4
+74115491,26235839,3
+dark_knight,26235839,5
+15531552,26235839,4
+51919631,26235839,4
+125913784,26235839,4
+54721365,26235839,3
+foove6,26235839,1
+49902216,26235839,4
+xiaoxintu,26235839,3
+ben_nsr,26235839,4
+unrealzhizhi,26235839,3
+77394245,26235839,4
+53059202,26235839,-1
+83193363,26235839,3
+62065685,26235839,3
+4464843,26235839,3
+43891940,26235839,3
+60258597,26235839,5
+3693808,26235839,2
+81752466,26235839,2
+92224480,26235839,4
+122458396,26235839,3
+47621297,26235839,4
+101508207,26235839,4
+26715515,26235839,4
+Martian1989,26235839,3
+wuxiaohua,26235839,3
+45681861,26235839,4
+59005410,26235839,3
+roger589,26235839,3
+cejjessie,26235839,4
+john90,26235839,4
+89925651,26235839,3
+krenee,26235839,5
+sunnysx,26235839,5
+136738123,26235839,-1
+neverbutterfly,26235839,4
+Liu.Y,26235839,4
+4345264,26235839,4
+44485632,26235839,3
+52190565,26235839,3
+18629326,26235839,4
+65398795,26235839,3
+130681615,26235839,3
+quaner1126,26235839,-1
+quaner1126,26235839,-1
+1299948,26235839,3
+43882997,26235839,3
+yaozhilan,26235839,3
+zhaoyubo45,26235839,5
+xiaoxiaoyxiaou,26235839,4
+1133756,26235839,4
+73791401,26235839,3
+91498001,26235839,4
+lensliao,26235839,4
+61110515,26235839,-1
+50882578,26235839,4
+HeroineDaode,26235839,3
+18360610,26235839,4
+w-leaf,26235839,4
+Ahang05,26235839,5
+63105886,26235839,3
+122357621,26235839,3
+21339610,26235839,3
+76589400,26235839,4
+46539377,26235839,5
+59080850,26235839,5
+wangleku0310,26235839,3
+135403711,26235839,5
+44236825,26235839,4
+66179494,26235839,4
+44242058,26235839,5
+54475841,26235839,4
+48096896,26235839,4
+rimonl,26235839,4
+5662776,26235839,3
+lxlkey,26235839,4
+61054396,26235839,-1
+60812524,26235839,4
+49107061,26235839,3
+minilion,26235839,5
+49146355,26235839,3
+83461362,26235839,4
+koujianyi,26235839,5
+50755752,26235839,4
+xiesicong,26235839,3
+45351316,26235839,4
+63219017,26235839,3
+rene51,26235839,4
+53330231,26235839,3
+68846996,26235839,3
+134511914,26235839,2
+oak1890,26235839,4
+86941493,26235839,4
+63384577,26235839,4
+50604518,26235839,4
+YSAZA,26235839,5
+36949590,26235839,4
+92022849,26235839,4
+31821202,26235839,3
+nancywon,26235839,3
+50568453,26235839,4
+andserendipity,26235839,4
+64104016,26235839,4
+101722942,26235839,3
+101722942,26235839,3
+2919840,26235839,4
+93235533,26235839,5
+aRmstrong-Kiss,26235839,4
+69578591,26235839,3
+DEMO9266,26235839,5
+57062967,26235839,4
+55444668,26235839,4
+33604490,26235839,3
+102070677,26235839,4
+cynthia01501,26235839,3
+32167517,26235839,5
+53562028,26235839,4
+vermeer-dust,26235839,4
+7510013,26235839,3
+67727072,26235839,4
+myqueenangela,26235839,5
+87704099,26235839,-1
+4051279,26235839,3
+luluyunxiao,26235839,5
+sofafish,26235839,4
+seodler,26235839,3
+57169682,26235839,3
+72782852,26235839,5
+L-Meditation,26235839,3
+49154510,26235839,3
+dianatown,26235839,4
+54770734,26235839,3
+Musgo,26235839,4
+131274128,26235839,3
+67220317,26235839,4
+2190947,26235839,4
+46728828,26235839,3
+3483729,26235839,3
+imjerry,26235839,3
+liujintong,26235839,5
+74471598,26235839,5
+a_cal,26235839,5
+32737561,26235839,4
+70467086,26235839,4
+70467086,26235839,4
+74291934,26235839,4
+mmtete,26235839,4
+dee4ever,26235839,4
+127677329,26235839,2
+49671996,26235839,4
+76555938,26235839,3
+loribo,26235839,3
+78833399,26235839,4
+ringshow,26235839,4
+47424405,26235839,-1
+68737619,26235839,4
+67705949,26235839,4
+88146936,26235839,3
+91684216,26235839,3
+52243098,26235839,2
+60671950,26235839,4
+6578851,26235839,5
+65083863,26235839,-1
+58485268,26235839,4
+vera0902,26235839,4
+ty1997lam,26235839,5
+69838036,26235839,2
+xiaotianqing,26235839,5
+qingnianluoke,26235839,3
+51060145,26235839,3
+82980188,26235839,2
+46525176,26235839,3
+74141389,26235839,4
+freekami,26235839,3
+74589582,26235839,4
+47817868,26235839,4
+27253308,26235839,4
+55536823,26235839,3
+36980568,26235839,3
+65172711,26235839,3
+60339642,26235839,-1
+74506123,26235839,4
+51126064,26235839,5
+117808564,26235839,4
+117808564,26235839,4
+65908611,26235839,3
+knight_errant,26235839,4
+AmySpecial,26235839,4
+leavev,26235839,4
+48872218,26235839,4
+49949826,26235839,4
+75145515,26235839,4
+127688878,26235839,4
+48480567,26235839,3
+60100374,26235839,2
+48458660,26235839,4
+56533866,26235839,4
+101187266,26235839,5
+SeLuSun,26235839,3
+avivalovestory,26235839,4
+136261292,26235839,5
+im-w-yt,26235839,3
+33293861,26235839,5
+3818284,26235839,5
+amibubai,26235839,4
+morgankuku,26235839,4
+70081984,26235839,3
+127768866,26235839,5
+over-young,26235839,3
+3325882,26235839,4
+on1ooker,26235839,4
+FeeSouler,26235839,4
+45291333,26235839,4
+105071662,26235839,3
+yaoyaoxiaozhan,26235839,4
+42569786,26235839,4
+37567847,26235839,3
+26514439,26235839,-1
+xzg827,26235839,3
+zicheng05,26235839,3
+46950457,26235839,4
+85250768,26235839,4
+hhana,26235839,4
+47724316,26235839,4
+74541103,26235839,3
+mayday_anne,26235839,4
+70091695,26235839,4
+JunkRoad,26235839,4
+4354890,26235839,3
+103587084,26235839,4
+67615211,26235839,3
+55421041,26235839,4
+58347915,26235839,4
+45515743,26235839,5
+39950361,26235839,1
+53403245,26235839,2
+qianmoch,26235839,2
+42680639,26235839,4
+8319224,26235839,3
+1366693,26235839,3
+lingqingchun,26235839,-1
+58769650,26235839,5
+50069501,26235839,4
+53344657,26235839,3
+tinyuu,26235839,4
+90546251,26235839,4
+chloevdw,26235839,3
+37620368,26235839,3
+Rouwell,26235839,3
+40545611,26235839,3
+54674446,26235839,4
+poochai,26235839,3
+66427696,26235839,4
+xiao33319,26235839,4
+41351821,26235839,4
+Melbourner,26235839,2
+42291551,26235839,5
+Tea1116.,26235839,4
+tanchishe,26235839,5
+102974670,26235839,4
+83217907,26235839,4
+136475671,26235839,4
+deepkid,26235839,-1
+milky,26235839,5
+53912838,26235839,3
+132430799,26235839,2
+ruilixiurui,26235839,3
+50611156,26235839,-1
+68203246,26235839,4
+37402473,26235839,4
+43372236,26235839,3
+56922790,26235839,5
+qi7745723,26235839,2
+3727771,26235839,4
+emmalove1314,26235839,4
+73734497,26235839,3
+134362348,26235839,3
+56628364,26235839,4
+102581208,26235839,3
+60808695,26235839,2
+92319009,26235839,1
+115524075,26235839,3
+70614930,26235839,4
+43377923,26235839,3
+reneeeee,26235839,3
+68002540,26235839,4
+1998897,26235839,3
+64092197,26235839,4
+bagajiang,26235839,5
+57248096,26235839,3
+58847654,26235839,4
+97263262,26235839,4
+little_mari0,26235839,3
+K1nnnn,26235839,3
+53301589,26235839,4
+ayamassia,26235839,5
+14622412,26235839,3
+5439991,26235839,4
+alice0124,26235839,3
+103587734,26235839,4
+64841580,26235839,3
+69605901,26235839,3
+3638314,26235839,4
+62825162,26235839,4
+1437723,26235839,4
+66458815,26235839,3
+87818852,26235839,4
+catfacegirl,26235839,4
+45008619,26235839,4
+64136344,26235839,2
+70470057,26235839,4
+little_cupid,26235839,2
+69432026,26235839,3
+49417223,26235839,4
+40494271,26235839,3
+124467661,26235839,3
+39913165,26235839,5
+snowlydouban,26235839,2
+xuweigrace,26235839,3
+6776669,26235839,4
+jiangxv7,26235839,3
+chinnyh,26235839,4
+chaoxu,26235839,3
+131892681,26235839,5
+51171341,26235839,3
+62667107,26235839,4
+2202810,26235839,5
+127552693,26235839,4
+74391924,26235839,4
+136379270,26235839,5
+131053418,26235839,3
+3283974,26235839,3
+1213681,26235839,3
+25982397,26235839,5
+81330479,26235839,4
+66683925,26235839,4
+42694256,26235839,4
+88161411,26235839,5
+27621175,26235839,4
+79058710,26235839,3
+adisonw,26235839,4
+57680535,26235839,-1
+59220835,26235839,5
+douban7douban8,26235839,3
+79337395,26235839,3
+1929758,26235839,3
+51098227,26235839,4
+70823389,26235839,3
+52340503,26235839,3
+46753269,26235839,4
+lijianbinxp,26235839,4
+2841290,26235839,3
+sttone,26235839,3
+bennyrice,26235839,4
+53990985,26235839,4
+80568483,26235839,4
+73620932,26235839,3
+73353707,26235839,3
+16928498,26235839,3
+45266385,26235839,5
+2759466,26235839,5
+shelleyhsu,26235839,3
+4619048,26235839,4
+laomo,26235839,3
+2507258,26235839,5
+107739432,26235839,4
+4433484,26235839,4
+luka90123,26235839,-1
+xuyimeng,26235839,3
+74420370,26235839,4
+48003571,26235839,4
+baby861708,26235839,3
+56908941,26235839,4
+Chne,26235839,4
+clmhlbt,26235839,4
+45781335,26235839,4
+3542484,26235839,4
+sofans,26235839,4
+Sadelin,26235839,3
+58068354,26235839,4
+zzzhy,26235839,5
+a5045402,26235839,3
+58854842,26235839,3
+44159787,26235839,3
+57786267,26235839,3
+48808520,26235839,4
+136113347,26235839,3
+3783132,26235839,3
+jidecengjing,26235839,3
+sovia,26235839,4
+88526252,26235839,2
+75140760,26235839,2
+haruka,26235839,3
+cazze,26235839,3
+59079436,26235839,4
+anita198888,26235839,4
+114977043,26235839,5
+134318408,26235839,4
+nakaa,26235839,3
+lucky498,26235839,3
+51410491,26235839,4
+song1,26235839,3
+45375152,26235839,2
+Elvis-lx3,26235839,5
+57880193,26235839,4
+120790874,26235839,-1
+40708520,26235839,3
+64083587,26235839,4
+4555723,26235839,4
+yuzhoushan,26235839,4
+52561163,26235839,-1
+apple-dudu,26235839,3
+92908596,26235839,4
+123850973,26235839,3
+iris007,26235839,5
+45355870,26235839,4
+45650024,26235839,3
+69717361,26235839,3
+49073345,26235839,2
+Leo_Pan,26235839,5
+57831258,26235839,-1
+15989438,26235839,4
+ruokongzhi,26235839,4
+60767824,26235839,5
+26265440,26235839,3
+65224437,26235839,5
+91752589,26235839,3
+62489919,26235839,3
+55800838,26235839,3
+laudee,26235839,3
+85155782,26235839,4
+47558444,26235839,4
+42748490,26235839,4
+49133159,26235839,4
+2683368,26235839,4
+queena_fuuf,26235839,4
+52750268,26235839,5
+123833891,26235839,5
+jeanchin,26235839,-1
+vivien_princess,26235839,3
+67330713,26235839,4
+44032131,26235839,3
+83745562,26235839,4
+tongziyam,26235839,4
+atom1116,26235839,4
+beifighting,26235839,3
+117175431,26235839,3
+33415384,26235839,4
+73899002,26235839,3
+88908343,26235839,4
+modouvictoria,26235839,4
+iyyhua,26235839,4
+123621816,26235839,2
+110484611,26235839,4
+4541080,26235839,3
+103414015,26235839,-1
+kikiyo,26235839,4
+mogu-biu,26235839,4
+94831579,26235839,4
+waytolove,26235839,4
+33076718,26235839,3
+mianmaimai,26235839,4
+57142558,26235839,5
+72694777,26235839,5
+72694777,26235839,5
+oldcandle,26235839,3
+dmyra1011,26235839,4
+49382185,26235839,3
+121471027,26235839,4
+2093332,26235839,3
+icetar,26235839,3
+uknowzuibaqi,26235839,4
+carinatsu,26235839,4
+93257261,26235839,4
+92943106,26235839,4
+78511074,26235839,3
+96140309,26235839,4
+69378440,26235839,4
+1067485,26235839,4
+Betty818,26235839,3
+paopao_2011,26235839,4
+fxx1498420,26235839,5
+132194246,26235839,3
+goldenday,26235839,3
+goldenday,26235839,3
+78445664,26235839,5
+46505445,26235839,4
+beikou,26235839,3
+51363896,26235839,3
+sylvi,26235839,4
+97542676,26235839,3
+1411336,26235839,4
+1155300,26235839,4
+64461682,26235839,4
+84569301,26235839,3
+ivis1989,26235839,4
+74891398,26235839,5
+fyl00,26235839,5
+91397625,26235839,4
+kennan,26235839,5
+128277585,26235839,4
+65981408,26235839,4
+1876785,26235839,3
+47319771,26235839,3
+48165079,26235839,4
+AILUHAN123,26235839,3
+119858082,26235839,3
+Anny1209,26235839,4
+84530034,26235839,4
+56647071,26235839,3
+pbc0615,26235839,4
+134190287,26235839,5
+G20100425nivel,26235839,4
+126937145,26235839,3
+Chenallen,26235839,4
+1665848,26235839,4
+Dcynic,26235839,1
+43397816,26235839,4
+lufituaeb,26235839,4
+115614631,26235839,4
+26582963,26235839,4
+76467871,26235839,3
+49411879,26235839,2
+34724471,26235839,4
+16358419,26235839,3
+catsama77,26235839,3
+104230982,26235839,3
+iamwhatiam,26235839,5
+49712766,26235839,4
+59194392,26235839,5
+supertou,26235839,4
+33569099,26235839,5
+61483763,26235839,4
+49938011,26235839,4
+acbc115,26235839,4
+thoris,26235839,4
+52597930,26235839,4
+3668071,26235839,3
+53467813,26235839,2
+dongxuanlan,26235839,5
+suzheer,26235839,3
+wangxiaomiao,26235839,4
+52644973,26235839,4
+tianhao8316,26235839,4
+84698699,26235839,3
+danielsoha,26235839,4
+67808822,26235839,4
+45187119,26235839,4
+80663628,26235839,4
+102164266,26235839,4
+sunflowermay,26235839,5
+52464033,26235839,4
+135981815,26235839,3
+48183944,26235839,4
+x-13,26235839,-1
+64884887,26235839,3
+49614966,26235839,4
+IloveyouDanica,26235839,2
+17871243,26235839,4
+xyzzecho,26235839,3
+50187661,26235839,4
+creepNIBA,26235839,3
+quanquan0817,26235839,3
+gray520,26235839,3
+47423429,26235839,3
+chinalnkn,26235839,5
+120038071,26235839,4
+3245046,26235839,5
+westender,26235839,3
+DNA.eNd,26235839,5
+46394662,26235839,3
+83757263,26235839,4
+kyo_21,26235839,3
+106126456,26235839,3
+114333216,26235839,5
+lkunkun,26235839,4
+66585349,26235839,4
+seventhworkshop,26235839,3
+vva_,26235839,4
+42585852,26235839,4
+xttaa,26235839,4
+yolanta1030,26235839,4
+3218379,26235839,3
+fafashit,26235839,4
+treemomo,26235839,3
+58678969,26235839,4
+53212670,26235839,5
+milanmao,26235839,4
+52806865,26235839,5
+58217947,26235839,3
+57947419,26235839,4
+yoory,26235839,-1
+29998862,26235839,3
+cherrychan918,26235839,4
+yyhhf,26235839,3
+piaoweier,26235839,5
+4492473,26235839,5
+64875949,26235839,4
+haohele,26235839,3
+Eve2005,26235839,2
+Nur,26235839,3
+54421919,26235839,5
+53846503,26235839,-1
+65408956,26235839,3
+mashushu,26235839,4
+49981766,26235839,4
+62949952,26235839,4
+134334897,26235839,4
+susimai,26235839,3
+78946319,26235839,3
+70397135,26235839,5
+2955357,26235839,4
+chaud,26235839,4
+134271856,26235839,4
+nianmin,26235839,2
+27791559,26235839,4
+airan712,26235839,3
+135671469,26235839,4
+nineC,26235839,2
+y.u,26235839,5
+55406228,26235839,3
+aaxxzyy,26235839,5
+66552525,26235839,3
+63171651,26235839,5
+63171651,26235839,5
+81692824,26235839,5
+heyflower,26235839,4
+twolake,26235839,5
+62063810,26235839,3
+estatic_19,26235839,4
+weicaihong,26235839,5
+reave,26235839,4
+78622680,26235839,4
+37693865,26235839,4
+lxp,26235839,4
+50660338,26235839,4
+49496474,26235839,3
+65283286,26235839,4
+90885417,26235839,4
+vivianazone,26235839,4
+134464320,26235839,4
+jcstar,26235839,4
+81351219,26235839,4
+91243092,26235839,4
+rayta,26235839,3
+71254966,26235839,3
+51043856,26235839,4
+allblue,26235839,3
+5218300,26235839,2
+58064281,26235839,4
+66521777,26235839,2
+49991288,26235839,-1
+81521718,26235839,3
+133861190,26235839,3
+antonia422,26235839,4
+samsaran,26235839,4
+55011213,26235839,5
+leeyizuo,26235839,4
+E-huang,26235839,4
+78533472,26235839,4
+55796583,26235839,4
+potterz,26235839,3
+66860468,26235839,4
+Minan,26235839,4
+Ymmy,26235839,5
+57721699,26235839,5
+xmausp,26235839,4
+4558531,26235839,4
+48853220,26235839,4
+50158586,26235839,3
+124035859,26235839,4
+52476794,26235839,5
+2658903,26235839,3
+62790084,26235839,4
+49824578,26235839,5
+69257163,26235839,4
+54127643,26235839,3
+cello22,26235839,4
+plumagemika_531,26235839,4
+28881911,26235839,4
+63658067,26235839,4
+JakeNow,26235839,3
+islglg,26235839,3
+126009401,26235839,5
+65675536,26235839,5
+47745204,26235839,4
+49295731,26235839,3
+qiaqia320,26235839,2
+88951785,26235839,3
+CT19950923,26235839,3
+zhhsbkl,26235839,4
+biquan,26235839,3
+102790365,26235839,4
+tarimusi,26235839,-1
+zhangyifei,26235839,4
+68861284,26235839,3
+119997789,26235839,4
+classical622,26235839,3
+67763944,26235839,1
+69039376,26235839,3
+96658180,26235839,3
+Andy9,26235839,3
+63934272,26235839,4
+64008981,26235839,4
+badblueeyes,26235839,4
+50930270,26235839,5
+2596903,26235839,2
+49316434,26235839,4
+58630944,26235839,4
+4394529,26235839,3
+49170151,26235839,4
+52481316,26235839,4
+76528303,26235839,5
+68792801,26235839,3
+59718039,26235839,4
+oxygen02,26235839,3
+2338228,26235839,3
+kitsch2013,26235839,4
+60229108,26235839,5
+49798444,26235839,3
+115593440,26235839,3
+57807205,26235839,2
+QDDOUDOU,26235839,4
+joanna0728,26235839,4
+seaskyLK,26235839,3
+63377431,26235839,3
+79930432,26235839,-1
+135790229,26235839,3
+49022002,26235839,4
+72257329,26235839,5
+133858603,26235839,5
+65383649,26235839,4
+61111185,26235839,3
+shooin,26235839,4
+Gmosquito,26235839,4
+JuciE,26235839,5
+57894256,26235839,3
+sthforlong,26235839,-1
+59757081,26235839,5
+78702660,26235839,5
+121642736,26235839,4
+shelleyqing,26235839,4
+7255952,26235839,4
+irisloll,26235839,3
+46751738,26235839,4
+19734042,26235839,4
+furrybunny121,26235839,3
+52838594,26235839,3
+70587570,26235839,5
+39168682,26235839,5
+solavre,26235839,-1
+deadcolour,26235839,3
+cuitsun,26235839,4
+49187859,26235839,4
+64327949,26235839,4
+67091107,26235839,5
+weizaia,26235839,5
+joyceamigo,26235839,4
+128382590,26235839,4
+58139142,26235839,4
+133053658,26235839,4
+83885196,26235839,3
+57560468,26235839,4
+115185041,26235839,3
+27655958,26235839,3
+liiinda,26235839,-1
+3561318,26235839,3
+35578162,26235839,4
+1895030,26235839,4
+Kevin3,26235839,5
+fancyshy,26235839,3
+73784914,26235839,3
+andielau,26235839,4
+47585455,26235839,3
+xuyuny252,26235839,3
+48494718,26235839,4
+96632957,26235839,4
+26375803,26235839,4
+52499368,26235839,3
+96496562,26235839,4
+tangnin,26235839,4
+44626891,26235839,4
+67552884,26235839,4
+59104141,26235839,5
+rinnie,26235839,-1
+40027917,26235839,5
+2858394,26235839,4
+naomi_giveme5,26235839,4
+54334174,26235839,5
+92775477,26235839,3
+88078787,26235839,4
+64235845,26235839,-1
+45101654,26235839,-1
+lxm1206,26235839,4
+99668636,26235839,3
+builove,26235839,5
+64870027,26235839,4
+38866851,26235839,4
+luanma1977,26235839,5
+59556078,26235839,4
+53157768,26235839,4
+sunnyisle,26235839,3
+61223167,26235839,4
+momo077,26235839,4
+131545009,26235839,3
+37756107,26235839,3
+rednoodles,26235839,5
+54081083,26235839,4
+107635262,26235839,3
+66178513,26235839,3
+55980175,26235839,3
+108728687,26235839,5
+handankaikai,26235839,3
+3109810,26235839,5
+52203973,26235839,3
+49541988,26235839,4
+lucarolinelu,26235839,4
+97211660,26235839,4
+54099325,26235839,3
+tulipwings,26235839,4
+4391066,26235839,4
+29602432,26235839,4
+60011676,26235839,4
+2923778,26235839,3
+65670813,26235839,2
+Frieda_,26235839,3
+27709250,26235839,3
+58972281,26235839,3
+53368926,26235839,3
+46818877,26235839,4
+41786270,26235839,4
+zzzlanmao,26235839,3
+fanyichao,26235839,4
+miucather,26235839,4
+64543856,26235839,3
+64426637,26235839,4
+63194138,26235839,3
+mzmuxin,26235839,3
+7735198,26235839,3
+65038141,26235839,4
+121756661,26235839,3
+stephy_mi,26235839,3
+50057469,26235839,4
+76909039,26235839,4
+48499290,26235839,4
+56291828,26235839,4
+2721912,26235839,-1
+48807966,26235839,3
+58114714,26235839,3
+60457045,26235839,3
+133926657,26235839,4
+65294134,26235839,5
+81938681,26235839,4
+55886551,26235839,3
+53884376,26235839,5
+60427301,26235839,3
+stellalula,26235839,4
+GZ,26235839,3
+96473743,26235839,4
+woshiex,26235839,3
+53577670,26235839,3
+3349587,26235839,4
+53155339,26235839,5
+121228986,26235839,2
+51213478,26235839,5
+amelie_11,26235839,-1
+65123381,26235839,4
+tinglan2010,26235839,4
+61693521,26235839,4
+54592717,26235839,3
+36601365,26235839,3
+41130036,26235839,4
+humechan,26235839,4
+84200621,26235839,4
+52798781,26235839,4
+54561082,26235839,4
+biyi,26235839,-1
+85100165,26235839,3
+66302552,26235839,2
+44653636,26235839,4
+SOU77ESS,26235839,4
+51045990,26235839,5
+3192254,26235839,4
+70160255,26235839,3
+72593254,26235839,4
+lh12123,26235839,5
+2516364,26235839,3
+63812165,26235839,4
+joybang,26235839,5
+54783024,26235839,4
+29725427,26235839,4
+Veroniquema,26235839,3
+3182850,26235839,4
+67029502,26235839,4
+59378291,26235839,4
+46448809,26235839,5
+121795248,26235839,5
+godmako,26235839,4
+70116910,26235839,4
+73763567,26235839,4
+45399130,26235839,4
+34895026,26235839,4
+51095448,26235839,4
+73346410,26235839,4
+yzfayxj,26235839,4
+3148253,26235839,3
+52956455,26235839,5
+46369628,26235839,4
+41289155,26235839,3
+75019987,26235839,3
+124744172,26235839,5
+70202233,26235839,5
+kuiyingqiao,26235839,4
+62837757,26235839,3
+41207080,26235839,4
+zenglisi,26235839,5
+135451898,26235839,4
+103769558,26235839,3
+77048663,26235839,4
+55984415,26235839,4
+monkeek,26235839,3
+54051724,26235839,4
+71821400,26235839,4
+81840393,26235839,4
+119512559,26235839,4
+82995055,26235839,3
+120765012,26235839,3
+mymx,26235839,4
+92567735,26235839,3
+32911120,26235839,4
+46184375,26235839,5
+61196519,26235839,3
+34140064,26235839,3
+lesc,26235839,3
+119995299,26235839,5
+baozha,26235839,3
+125583691,26235839,3
+christopherlin,26235839,3
+116537123,26235839,4
+52117173,26235839,3
+52864878,26235839,3
+47175904,26235839,3
+rainbowhongye,26235839,4
+57405167,26235839,3
+43936347,26235839,4
+52269289,26235839,3
+59123210,26235839,2
+1434867,26235839,4
+50624939,26235839,5
+moer,26235839,3
+yangqiaohe,26235839,3
+37226242,26235839,4
+107341379,26235839,3
+cjdmn1984,26235839,4
+53769450,26235839,4
+68465476,26235839,3
+70656928,26235839,4
+70201706,26235839,3
+131183374,26235839,5
+Essyyy,26235839,3
+42057184,26235839,4
+43595031,26235839,3
+Plumed__Serpent,26235839,3
+red98,26235839,3
+62039387,26235839,4
+sarabilau2,26235839,2
+94585757,26235839,3
+qstc12345,26235839,3
+135762513,26235839,5
+132329944,26235839,3
+mainemay,26235839,3
+yubby,26235839,4
+quebom,26235839,3
+39818757,26235839,3
+94380874,26235839,3
+80713495,26235839,5
+bepig,26235839,3
+32144547,26235839,5
+57262819,26235839,4
+37518003,26235839,3
+55961018,26235839,3
+52906969,26235839,3
+cookiesun0420,26235839,4
+toywingskohaku,26235839,4
+toywingskohaku,26235839,4
+timetowrite,26235839,4
+zglloo,26235839,4
+MrMia,26235839,3
+52502063,26235839,3
+83723594,26235839,4
+52452287,26235839,4
+niuzi_258.lele,26235839,5
+42724768,26235839,3
+74599483,26235839,3
+56191420,26235839,3
+2339752,26235839,2
+1464431,26235839,3
+46209502,26235839,5
+Skin.C,26235839,4
+1176730,26235839,4
+48042607,26235839,4
+4657116,26235839,3
+54493645,26235839,3
+c535448212,26235839,4
+39928701,26235839,4
+12510616,26235839,5
+7971587,26235839,3
+135725446,26235839,4
+47807102,26235839,4
+TrumanV,26235839,5
+Phyllis5,26235839,2
+37160547,26235839,2
+67781678,26235839,3
+mpower007,26235839,4
+1175153,26235839,4
+35771260,26235839,5
+rurucat,26235839,3
+vitolau,26235839,5
+41517741,26235839,4
+4380901,26235839,3
+54740080,26235839,3
+Elaine18,26235839,5
+133471355,26235839,4
+dengxian123,26235839,3
+108481476,26235839,4
+crambola,26235839,2
+Lotus511,26235839,3
+48087670,26235839,4
+YWC,26235839,4
+67883683,26235839,3
+50410160,26235839,4
+64267381,26235839,3
+114242546,26235839,4
+4534557,26235839,3
+66168101,26235839,4
+42836593,26235839,4
+52962046,26235839,5
+51121274,26235839,2
+lunay,26235839,5
+Sophieless,26235839,2
+41786241,26235839,4
+34789541,26235839,3
+chinabeta,26235839,2
+56925135,26235839,3
+36043913,26235839,4
+2435169,26235839,3
+sharon6002,26235839,3
+58704227,26235839,5
+53847386,26235839,3
+61392222,26235839,4
+booooooom,26235839,4
+52092603,26235839,3
+xulewyw,26235839,-1
+abey1949,26235839,3
+42646716,26235839,4
+50763809,26235839,4
+50292036,26235839,3
+itsmeymq,26235839,5
+39200780,26235839,3
+131535153,26235839,3
+108077404,26235839,3
+58698637,26235839,4
+2465698,26235839,4
+20960530,26235839,4
+73958470,26235839,3
+49326924,26235839,-1
+kong19870707,26235839,5
+97649336,26235839,5
+13203922,26235839,3
+91659747,26235839,3
+50480913,26235839,4
+shionpure,26235839,4
+90961062,26235839,5
+65021113,26235839,3
+60849400,26235839,3
+4637828,26235839,3
+62346655,26235839,4
+40474222,26235839,4
+53316387,26235839,4
+16313678,26235839,4
+53220116,26235839,4
+88395515,26235839,3
+apubit,26235839,5
+qixian1125,26235839,4
+chuan111,26235839,-1
+57939609,26235839,3
+shiori,26235839,3
+sozheng,26235839,3
+62307525,26235839,4
+tom926,26235839,3
+janetbubble,26235839,3
+11923582,26235839,3
+52336873,26235839,4
+57953831,26235839,4
+63575206,26235839,4
+53630241,26235839,4
+68983294,26235839,4
+C.YEll,26235839,3
+4708937,26235839,3
+119937171,26235839,3
+cyygigig,26235839,4
+tosummer,26235839,4
+42266893,26235839,3
+3474392,26235839,3
+58179619,26235839,3
+126749714,26235839,3
+48028421,26235839,4
+biby9475,26235839,3
+49312393,26235839,4
+60302594,26235839,3
+daangel,26235839,3
+98174233,26235839,4
+56102431,26235839,-1
+54825682,26235839,2
+52268788,26235839,3
+gaopengyuan,26235839,4
+81261104,26235839,3
+53936917,26235839,3
+shiiirley,26235839,4
+52961960,26235839,2
+56399267,26235839,4
+134417369,26235839,4
+inakyl,26235839,-1
+3004066,26235839,3
+3004066,26235839,3
+action552200,26235839,5
+53064989,26235839,3
+48441373,26235839,4
+48530220,26235839,3
+shepherdgirl,26235839,5
+60160104,26235839,3
+hashayaqi,26235839,2
+61054715,26235839,3
+68816783,26235839,4
+summertime714,26235839,4
+133542871,26235839,4
+84708478,26235839,5
+ellenbell,26235839,-1
+48689734,26235839,4
+135640620,26235839,5
+68664261,26235839,4
+2743090,26235839,4
+127947570,26235839,2
+qiao517,26235839,4
+76667923,26235839,5
+52214552,26235839,3
+77060018,26235839,4
+chika1119,26235839,4
+59621398,26235839,3
+51265045,26235839,5
+xxs127,26235839,2
+75239379,26235839,4
+70034039,26235839,3
+fikichow,26235839,4
+65803974,26235839,4
+48168328,26235839,5
+4557702,26235839,3
+vinette,26235839,4
+131012186,26235839,4
+42183794,26235839,4
+135270390,26235839,4
+49266731,26235839,3
+King-master,26235839,4
+54126939,26235839,5
+61506971,26235839,3
+ladaidai,26235839,3
+mumu1029,26235839,4
+57483701,26235839,4
+45905302,26235839,5
+for-coee,26235839,2
+57925126,26235839,3
+35020015,26235839,3
+132542069,26235839,5
+67770010,26235839,3
+zhudasu,26235839,3
+3918402,26235839,5
+luweiyan2012,26235839,4
+49217613,26235839,4
+hnnyzxh,26235839,3
+50656237,26235839,5
+stwloveyou,26235839,4
+66976207,26235839,4
+62529217,26235839,5
+84456035,26235839,5
+42714668,26235839,3
+64359754,26235839,5
+57806025,26235839,3
+66766065,26235839,3
+53981357,26235839,3
+zran0609,26235839,4
+53059732,26235839,3
+3319103,26235839,3
+Lucy.Y,26235839,3
+56566421,26235839,5
+128366588,26235839,4
+yokaji1012,26235839,5
+14352801,26235839,4
+Sigrid_Lu,26235839,3
+68771576,26235839,4
+Lylaohyeah,26235839,5
+yuanzix,26235839,4
+aelkf,26235839,-1
+3598072,26235839,4
+82966798,26235839,3
+44661693,26235839,3
+122952763,26235839,4
+51606142,26235839,3
+52902931,26235839,3
+49362263,26235839,4
+pko,26235839,-1
+Losyah,26235839,4
+65741511,26235839,4
+miqu,26235839,4
+favorite,26235839,3
+1548006,26235839,4
+Panmatan,26235839,4
+11630561,26235839,3
+medeHOW,26235839,3
+31530097,26235839,4
+sanhao_love,26235839,4
+Loverrwz,26235839,4
+43648335,26235839,3
+46913971,26235839,3
+59082360,26235839,5
+fwsslyxx,26235839,4
+123008683,26235839,3
+yellow_fine,26235839,4
+66614447,26235839,3
+84994751,26235839,4
+1892627,26235839,3
+50546224,26235839,4
+fanwen0610,26235839,4
+40748484,26235839,3
+76335985,26235839,4
+qiQ,26235839,3
+57970143,26235839,4
+35529080,26235839,3
+119084646,26235839,3
+icedolly,26235839,3
+125334017,26235839,2
+81130400,26235839,4
+11886721,26235839,3
+105530942,26235839,3
+46175639,26235839,3
+103214078,26235839,4
+90736306,26235839,3
+4269656,26235839,4
+53080124,26235839,4
+1077635,26235839,-1
+kp81ndlf,26235839,2
+besupposedto,26235839,3
+83192271,26235839,4
+S_onlyhuman,26235839,4
+50644195,26235839,4
+q296579068,26235839,4
+57632493,26235839,4
+38513029,26235839,2
+126183742,26235839,3
+50009835,26235839,3
+sparkylee,26235839,-1
+iisakura,26235839,2
+64123749,26235839,3
+91013069,26235839,5
+54540628,26235839,4
+68265970,26235839,3
+81845294,26235839,3
+Makoto614,26235839,3
+135424940,26235839,4
+97060953,26235839,4
+42818177,26235839,3
+60800632,26235839,4
+69275908,26235839,4
+4167975,26235839,4
+63347675,26235839,4
+75756405,26235839,3
+49728886,26235839,5
+hrj21,26235839,2
+wan_leavesfall,26235839,4
+81441568,26235839,3
+windy.lin,26235839,4
+cxykelly,26235839,4
+122637168,26235839,5
+Tlsmetabolous,26235839,4
+chuleiwu,26235839,3
+134003152,26235839,3
+75688896,26235839,3
+53722280,26235839,3
+62957688,26235839,4
+40966373,26235839,4
+samsyu,26235839,3
+70122827,26235839,4
+BUZZSHUNJES,26235839,3
+78669366,26235839,3
+52775910,26235839,3
+nancy8787,26235839,3
+89837931,26235839,4
+maodou_,26235839,3
+63686665,26235839,5
+51420600,26235839,5
+121479059,26235839,3
+53988920,26235839,4
+93371578,26235839,3
+35929918,26235839,3
+vvvkellyvvv,26235839,5
+yaoyang513,26235839,4
+69968379,26235839,5
+68764818,26235839,5
+103645728,26235839,4
+46815070,26235839,2
+102938445,26235839,4
+BlackOpIum,26235839,3
+47725023,26235839,2
+crazyrobot,26235839,4
+41023136,26235839,5
+60825410,26235839,3
+zhoumeizi,26235839,3
+57702441,26235839,5
+hyowon.rachel,26235839,-1
+102627576,26235839,4
+qiusheng,26235839,3
+zhuxiaomao,26235839,4
+imoviekobe,26235839,4
+120740156,26235839,5
+1550801,26235839,3
+64700587,26235839,5
+53864329,26235839,4
+46943216,26235839,4
+70378389,26235839,4
+kenc,26235839,4
+112083584,26235839,5
+48159178,26235839,4
+1458725,26235839,3
+1207607,26235839,5
+50473170,26235839,4
+65919385,26235839,3
+1523332,26235839,3
+63919883,26235839,4
+kingkongbarbie,26235839,4
+jenasy,26235839,4
+gossip3micky,26235839,4
+mignon0515,26235839,4
+36879332,26235839,4
+43908432,26235839,5
+51224776,26235839,3
+84165787,26235839,3
+124993533,26235839,4
+44397515,26235839,5
+45276725,26235839,2
+64187324,26235839,3
+48218139,26235839,4
+81734505,26235839,3
+61301677,26235839,3
+41288184,26235839,5
+79013672,26235839,5
+69204028,26235839,4
+46838565,26235839,4
+87909103,26235839,3
+49585135,26235839,2
+111071339,26235839,4
+65190817,26235839,4
+55871596,26235839,3
+liaoliaoxu,26235839,4
+3944648,26235839,3
+58369888,26235839,3
+Wangpenn,26235839,5
+57875109,26235839,3
+73942497,26235839,4
+44028431,26235839,3
+52997821,26235839,4
+126785151,26235839,5
+44105688,26235839,4
+35364683,26235839,4
+50015344,26235839,3
+61160709,26235839,2
+60276954,26235839,4
+vivianlovesun,26235839,3
+50558551,26235839,3
+june.q,26235839,3
+53317988,26235839,2
+chara1987,26235839,4
+taoqi53231323,26235839,4
+liyanyi,26235839,3
+128130563,26235839,5
+60011840,26235839,4
+67952037,26235839,2
+102544781,26235839,4
+torreslee,26235839,4
+A-Bao,26235839,2
+Dasiycat,26235839,3
+ChenJY971002,26235839,4
+Aries-in-douban,26235839,4
+everlastingEGO,26235839,3
+sungminlee,26235839,5
+yoyo3105,26235839,3
+51061898,26235839,-1
+qiuyudoudou,26235839,5
+113304265,26235839,4
+68353669,26235839,4
+60740508,26235839,4
+81003990,26235839,4
+90675141,26235839,3
+52316433,26235839,4
+ki1227,26235839,5
+71723817,26235839,5
+tozikiacherry,26235839,5
+73133920,26235839,-1
+70132891,26235839,4
+66358226,26235839,4
+28608533,26235839,5
+78548195,26235839,3
+104823231,26235839,2
+37424688,26235839,3
+2853604,26235839,2
+88256583,26235839,3
+4297674,26235839,3
+cynicalness,26235839,5
+84852383,26235839,4
+59312513,26235839,5
+48712788,26235839,3
+1364563,26235839,4
+49525551,26235839,5
+cyushu,26235839,-1
+4153237,26235839,4
+44608963,26235839,4
+mo719125078,26235839,4
+carrypotter,26235839,3
+78859738,26235839,4
+63588779,26235839,3
+32776828,26235839,3
+66488518,26235839,4
+kate_van,26235839,4
+senelu,26235839,4
+39091136,26235839,4
+68981521,26235839,4
+dorothy.C,26235839,3
+ijihoon,26235839,3
+minquan,26235839,3
+hooklt,26235839,3
+70109063,26235839,3
+55539986,26235839,4
+64528159,26235839,3
+54830178,26235839,5
+mixmx,26235839,4
+crisess,26235839,3
+easyleejin,26235839,3
+4231449,26235839,3
+101926722,26235839,5
+freddy_xu,26235839,4
+49433742,26235839,3
+57606505,26235839,3
+42137156,26235839,3
+62474865,26235839,4
+68699271,26235839,3
+gaogaopark,26235839,4
+56044350,26235839,4
+1211087,26235839,4
+50585223,26235839,4
+RecklessPy,26235839,3
+2325252,26235839,3
+daizy_10,26235839,4
+102945477,26235839,3
+48232992,26235839,3
+Yoooyoung,26235839,3
+90761722,26235839,5
+TBZS,26235839,4
+69287943,26235839,3
+fqlv5,26235839,5
+sweetheart7,26235839,5
+3007182,26235839,4
+vivi.sunny,26235839,4
+72381725,26235839,3
+63542179,26235839,4
+evamomos,26235839,4
+133914507,26235839,3
+120537657,26235839,4
+121148510,26235839,3
+76964531,26235839,4
+48278440,26235839,4
+47485602,26235839,3
+Freedomlove,26235839,4
+47375068,26235839,3
+67757068,26235839,4
+51271192,26235839,5
+73571891,26235839,5
+132582200,26235839,4
+83415261,26235839,3
+66928241,26235839,4
+34727533,26235839,3
+81179431,26235839,4
+3483271,26235839,4
+51206699,26235839,3
+64880714,26235839,2
+53393312,26235839,3
+SheRrySweets,26235839,3
+91785401,26235839,5
+46596660,26235839,3
+121717028,26235839,5
+emily_mom,26235839,5
+JustStayReal,26235839,4
+72167998,26235839,4
+73600166,26235839,4
+city04,26235839,4
+1667625,26235839,4
+changefiona,26235839,3
+2879898,26235839,4
+4344429,26235839,-1
+68916504,26235839,4
+sallyssland,26235839,3
+P--A,26235839,4
+58641674,26235839,3
+jabriel90,26235839,3
+79567337,26235839,3
+67649340,26235839,4
+suh5213,26235839,3
+queeniwy,26235839,3
+51371016,26235839,5
+kfc2005,26235839,5
+48065350,26235839,4
+runningaway11,26235839,3
+sometimes_smile,26235839,4
+61003891,26235839,5
+43936366,26235839,-1
+3592617,26235839,4
+68739479,26235839,4
+79078059,26235839,5
+47374105,26235839,4
+56682127,26235839,-1
+ALTNATIONAL,26235839,5
+49607126,26235839,5
+97269963,26235839,3
+108480827,26235839,4
+73554013,26235839,4
+116960082,26235839,4
+74716241,26235839,4
+34592808,26235839,5
+ok-0991,26235839,4
+51099809,26235839,4
+60374653,26235839,3
+120116458,26235839,3
+37699777,26235839,3
+74679165,26235839,3
+57566252,26235839,4
+56682460,26235839,4
+29839643,26235839,4
+53959125,26235839,3
+yihuiw,26235839,3
+65036885,26235839,4
+65751471,26235839,-1
+Celaeno,26235839,4
+55283261,26235839,4
+2351562,26235839,3
+HL-_-0205,26235839,4
+44420768,26235839,3
+4777379,26235839,4
+1647062,26235839,3
+58233439,26235839,5
+1755947,26235839,3
+84397264,26235839,5
+60146829,26235839,5
+PP_wei,26235839,4
+53595902,26235839,4
+34597247,26235839,4
+65036960,26235839,5
+3807164,26235839,4
+131969516,26235839,3
+49879341,26235839,3
+87410268,26235839,4
+90787689,26235839,4
+3671869,26235839,4
+wuyuexisland,26235839,3
+4190834,26235839,4
+pw142965,26235839,3
+2608634,26235839,3
+63923908,26235839,2
+130954450,26235839,3
+55294365,26235839,4
+2092765,26235839,4
+57755806,26235839,4
+YJJlovelife,26235839,5
+64740791,26235839,3
+34459109,26235839,4
+64068628,26235839,3
+78557858,26235839,3
+78616610,26235839,3
+ohohzhizhi,26235839,1
+65303423,26235839,4
+65601919,26235839,5
+40452255,26235839,4
+43237057,26235839,5
+41975874,26235839,3
+46852222,26235839,4
+nearlloveyou,26235839,3
+80729816,26235839,5
+30116913,26235839,4
+RemoteTr,26235839,3
+47282600,26235839,5
+53724452,26235839,3
+anz1994,26235839,3
+forkother,26235839,4
+47225046,26235839,4
+132541787,26235839,5
+xuaoling,26235839,4
+46620424,26235839,4
+37382236,26235839,4
+deardeer92,26235839,5
+58865216,26235839,4
+37616115,26235839,3
+68802617,26235839,2
+3880844,26235839,4
+privateoo,26235839,3
+ltp19950208,26235839,4
+63036142,26235839,3
+old_baby,26235839,3
+3202437,26235839,3
+57795255,26235839,4
+49325988,26235839,3
+92633728,26235839,5
+68441395,26235839,4
+53937396,26235839,5
+127741400,26235839,4
+Martin-Zhang,26235839,3
+114499367,26235839,3
+bibiice,26235839,3
+116617620,26235839,4
+124537695,26235839,3
+67289981,26235839,1
+Hanamizuki,26235839,3
+flytomilan,26235839,4
+45948889,26235839,3
+woohly,26235839,4
+83389859,26235839,3
+3295210,26235839,4
+28958263,26235839,3
+88938201,26235839,4
+42861474,26235839,5
+114313305,26235839,3
+parkxiahky,26235839,3
+98921786,26235839,3
+az_,26235839,3
+134931242,26235839,4
+okuri,26235839,4
+honglu,26235839,4
+mizang,26235839,5
+qinwenrene,26235839,4
+62873920,26235839,3
+2076867,26235839,4
+Gemma_whatever,26235839,4
+peacefulkid,26235839,3
+hudali,26235839,4
+siaa,26235839,3
+82245378,26235839,4
+86093744,26235839,3
+84947801,26235839,3
+riceseedling,26235839,1
+133599006,26235839,1
+2670240,26235839,4
+malesao,26235839,5
+49721724,26235839,4
+49366823,26235839,4
+61245435,26235839,4
+50329136,26235839,5
+64122386,26235839,3
+68031714,26235839,4
+134522617,26235839,4
+57639200,26235839,3
+Leoky,26235839,3
+118854321,26235839,5
+66142939,26235839,5
+51909458,26235839,3
+43758051,26235839,5
+47532446,26235839,5
+46470879,26235839,1
+maddison,26235839,4
+mizeer,26235839,5
+104659789,26235839,4
+Seeos,26235839,3
+91506335,26235839,4
+ahuasist,26235839,4
+2890229,26235839,3
+49074711,26235839,4
+65058502,26235839,4
+raising_dawn,26235839,3
+icara,26235839,-1
+Alicia_Y,26235839,4
+Alicia_Y,26235839,4
+76244481,26235839,3
+47591131,26235839,-1
+1159296,26235839,3
+43004375,26235839,4
+29211262,26235839,3
+103451806,26235839,4
+44810732,26235839,3
+veat,26235839,3
+5772280,26235839,4
+50566408,26235839,4
+2940152,26235839,3
+78618445,26235839,3
+84961343,26235839,4
+89014541,26235839,5
+62519656,26235839,4
+134194471,26235839,4
+pylee,26235839,4
+63675297,26235839,4
+al1ene,26235839,4
+51951428,26235839,4
+36950966,26235839,4
+2862919,26235839,3
+25259616,26235839,4
+CeciliaQueen,26235839,5
+51772148,26235839,2
+83797718,26235839,3
+mufanxuanji,26235839,4
+71755062,26235839,3
+67968935,26235839,3
+50665690,26235839,3
+127701349,26235839,4
+53616337,26235839,4
+62130496,26235839,5
+q164511490,26235839,5
+49519192,26235839,5
+1226511,26235839,3
+45651390,26235839,4
+114647405,26235839,5
+127932658,26235839,3
+2466721,26235839,4
+54625709,26235839,4
+miss.version,26235839,5
+92945557,26235839,3
+xiaotuwowo,26235839,4
+70915171,26235839,4
+122711085,26235839,4
+47145911,26235839,4
+80901919,26235839,4
+bigmiao,26235839,3
+WXFAN,26235839,4
+62585916,26235839,3
+audreykim,26235839,4
+60821745,26235839,3
+128405947,26235839,5
+60155135,26235839,3
+54653189,26235839,1
+jeremy-won,26235839,5
+professorsam,26235839,3
+little-wen,26235839,4
+YuSu,26235839,3
+xxyyxx6666,26235839,3
+Isayori,26235839,3
+84057160,26235839,5
+suetong,26235839,-1
+65128164,26235839,4
+69037881,26235839,4
+3495111,26235839,4
+115125689,26235839,4
+54214103,26235839,4
+64833909,26235839,2
+67324119,26235839,3
+38882087,26235839,3
+A.Plus,26235839,4
+70615998,26235839,4
+35111006,26235839,-1
+70699214,26235839,3
+Sulla_Zhou,26235839,3
+72704339,26235839,4
+74826577,26235839,3
+kayyipoon,26235839,5
+49649488,26235839,4
+83977213,26235839,3
+84047449,26235839,4
+ivanleung,26235839,4
+123097653,26235839,4
+3489632,26235839,4
+duduxiongzhifu,26235839,2
+3568429,26235839,5
+102862890,26235839,3
+60999102,26235839,4
+93606686,26235839,4
+103602476,26235839,3
+75874484,26235839,3
+1831746,26235839,4
+48823676,26235839,4
+48272875,26235839,4
+50204167,26235839,5
+42695669,26235839,4
+47045411,26235839,5
+47045411,26235839,5
+yeeeeeee,26235839,3
+134540327,26235839,5
+58771894,26235839,3
+xysxt,26235839,4
+45242330,26235839,3
+3529035,26235839,4
+civey,26235839,4
+76554749,26235839,3
+92944875,26235839,4
+42243165,26235839,4
+43256737,26235839,3
+72962930,26235839,4
+iiibuwan,26235839,4
+13646967,26235839,5
+71561935,26235839,3
+76150664,26235839,2
+104818700,26235839,3
+6303192,26235839,2
+zj29,26235839,3
+zj29,26235839,3
+49220225,26235839,4
+82315938,26235839,3
+2238966,26235839,2
+anowandforever,26235839,5
+51238374,26235839,3
+63805238,26235839,3
+77236623,26235839,3
+50754510,26235839,5
+dandiallen,26235839,4
+54664894,26235839,3
+62253827,26235839,5
+63452908,26235839,5
+51008523,26235839,5
+bonniejj,26235839,4
+ishtarie,26235839,3
+59573444,26235839,5
+38549519,26235839,5
+76501311,26235839,4
+6168311,26235839,2
+88324576,26235839,5
+73574149,26235839,4
+119249117,26235839,4
+119746039,26235839,2
+72699733,26235839,4
+73847256,26235839,3
+zxff111627,26235839,4
+135241813,26235839,3
+thirdsummer,26235839,4
+60021610,26235839,3
+68982698,26235839,3
+102618812,26235839,3
+49116772,26235839,4
+58622210,26235839,3
+52470011,26235839,3
+34542650,26235839,3
+crystal612,26235839,4
+33327621,26235839,4
+andrew12,26235839,3
+104549652,26235839,-1
+45344133,26235839,4
+45956471,26235839,4
+nangle,26235839,3
+70215403,26235839,4
+91018361,26235839,5
+43856484,26235839,4
+129032954,26235839,4
+85213165,26235839,5
+66178804,26235839,3
+55470975,26235839,3
+baolanhai,26235839,5
+42445219,26235839,3
+62778052,26235839,4
+75310522,26235839,4
+63322369,26235839,3
+79834547,26235839,4
+wtforz,26235839,3
+52708584,26235839,3
+87558213,26235839,3
+DaRin6,26235839,-1
+49883848,26235839,3
+54475516,26235839,4
+aniya320,26235839,4
+39813102,26235839,-1
+14946098,26235839,5
+52980191,26235839,4
+47941009,26235839,3
+i840152811,26235839,3
+ryanp,26235839,-1
+51549413,26235839,4
+48086861,26235839,3
+fangxinse,26235839,3
+126702436,26235839,4
+45321512,26235839,3
+79151265,26235839,3
+caocaozyc,26235839,4
+Doom365,26235839,-1
+60131423,26235839,3
+62352485,26235839,3
+66481682,26235839,3
+dizya,26235839,5
+49790309,26235839,5
+74479513,26235839,5
+34656430,26235839,3
+72851212,26235839,-1
+3541486,26235839,4
+everisle,26235839,4
+yumj,26235839,4
+spacerwith,26235839,-1
+69133855,26235839,3
+36138367,26235839,3
+ouyanghongfei,26235839,-1
+kimxixi,26235839,-1
+2436472,26235839,-1
+misszero110,26235839,-1
+more-u-are,26235839,4
+masaike,26235839,3
+quanzhouren,26235839,4
+43411603,26235839,3
+57867567,26235839,5
+klin_ar,26235839,5
+dianbou,26235839,4
+35116065,26235839,5
+FiveStrong,26235839,5
+53908274,26235839,3
+45804814,26235839,4
+46844509,26235839,5
+40867802,26235839,3
+58079231,26235839,-1
+62457534,26235839,3
+levid,26235839,4
+4683518,26235839,4
+80715123,26235839,-1
+128829257,26235839,2
+tingky,26235839,4
+101792652,26235839,3
+antoniagreen,26235839,4
+szk13731584239,26235839,4
+51836771,26235839,2
+Memole_Gaaro,26235839,5
+34643908,26235839,-1
+65137697,26235839,4
+43133361,26235839,3
+Mszombie,26235839,5
+70484549,26235839,4
+68058633,26235839,4
+14965275,26235839,3
+MOKUZJY,26235839,4
+43650596,26235839,3
+simple4ever,26235839,4
+Liverpoolsun,26235839,-1
+yolanda1920,26235839,-1
+38475110,26235839,4
+54049023,26235839,3
+52259960,26235839,3
+3111681,26235839,4
+88171857,26235839,4
+mokki555,26235839,3
+61652772,26235839,3
+99833662,26235839,3
+99833662,26235839,3
+2119013,26235839,2
+67319725,26235839,3
+69685647,26235839,3
+55882249,26235839,5
+52917598,26235839,-1
+froid,26235839,4
+59878626,26235839,-1
+52929940,26235839,4
+56617977,26235839,3
+43159348,26235839,4
+toyshen,26235839,3
+daixilala,26235839,-1
+yuanyuanfang,26235839,4
+2174198,26235839,3
+2808574,26235839,3
+34348744,26235839,3
+theMicky,26235839,3
+66179555,26235839,3
+122177649,26235839,-1
+summer126,26235839,2
+60088640,26235839,4
+isabel,26235839,4
+lizzy813813,26235839,-1
+46449592,26235839,2
+ocean929,26235839,5
+49164545,26235839,4
+129028198,26235839,3
+YYDEE,26235839,4
+37320102,26235839,3
+46288685,26235839,4
+40447897,26235839,-1
+81363115,26235839,3
+134479956,26235839,3
+47597290,26235839,4
+elliry,26235839,4
+63699116,26235839,5
+33977432,26235839,3
+53392482,26235839,4
+63985742,26235839,4
+58294250,26235839,-1
+61523184,26235839,4
+89522853,26235839,3
+18080670,26235839,-1
+60074125,26235839,-1
+132859823,26235839,5
+reika_scar,26235839,4
+hrcforever,26235839,5
+103290825,26235839,-1
+gilyun,26235839,4
+61963967,26235839,3
+sophia_423,26235839,4
+54166163,26235839,1
+sivaation,26235839,3
+1898022,26235839,4
+nackey,26235839,-1
+58035552,26235839,-1
+47376302,26235839,4
+hsiaoning,26235839,3
+122399571,26235839,4
+3896074,26235839,5
+54107331,26235839,5
+102744158,26235839,3
+xilouchen,26235839,2
+caocaoa,26235839,3
+86462422,26235839,4
+ledt,26235839,3
+62198966,26235839,4
+YuiAraGaki615,26235839,4
+4627477,26235839,4
+35914058,26235839,4
+63358596,26235839,5
+Emily723,26235839,3
+47782519,26235839,3
+44669432,26235839,4
+63688559,26235839,5
+74559265,26235839,4
+49967051,26235839,4
+lenssi,26235839,3
+Ayi2030,26235839,4
+sophie.sue,26235839,4
+momoD,26235839,4
+knife413,26235839,3
+47927445,26235839,3
+65079342,26235839,3
+1860311,26235839,4
+52508494,26235839,4
+annerabbit1127,26235839,4
+65242826,26235839,2
+3478406,26235839,2
+willsofshatter,26235839,2
+59459283,26235839,4
+63922807,26235839,5
+yayaamy,26235839,5
+perth3,26235839,-1
+artist901231,26235839,3
+92081294,26235839,3
+71330808,26235839,4
+65907866,26235839,2
+yalindongdong,26235839,3
+72785773,26235839,4
+60900233,26235839,4
+stefanie.liu,26235839,-1
+46007359,26235839,4
+64273735,26235839,3
+76611723,26235839,3
+77626905,26235839,4
+89838973,26235839,4
+82716279,26235839,-1
+57878638,26235839,4
+4874643,26235839,3
+57910521,26235839,4
+buxiunika,26235839,4
+128834814,26235839,3
+3435424,26235839,3
+70690321,26235839,4
+chinc,26235839,3
+117307392,26235839,5
+85345440,26235839,4
+10724888,26235839,5
+10724888,26235839,5
+C121,26235839,3
+62455186,26235839,4
+yingchen221e,26235839,3
+69168173,26235839,2
+37210878,26235839,4
+herb0414,26235839,4
+134864468,26235839,3
+78914788,26235839,3
+canvasfan,26235839,4
+verahiahia,26235839,3
+48354236,26235839,3
+3619033,26235839,5
+88127492,26235839,5
+zoe_dabai,26235839,4
+47471992,26235839,4
+guagua1992,26235839,4
+62389501,26235839,3
+68635736,26235839,4
+54702669,26235839,4
+54702669,26235839,4
+Soniawoolf,26235839,4
+36288413,26235839,5
+62505871,26235839,3
+45484261,26235839,5
+aprilwind_shi,26235839,3
+snowbusy,26235839,-1
+AuRevoir7,26235839,4
+2881598,26235839,4
+120517901,26235839,3
+43473708,26235839,3
+summerguagua,26235839,4
+65284477,26235839,5
+znrpiggey,26235839,2
+49247344,26235839,5
+51469631,26235839,4
+127367403,26235839,3
+yzzlovezj,26235839,3
+91548416,26235839,4
+11566740,26235839,4
+113050393,26235839,4
+Solitude.F,26235839,5
+3165431,26235839,3
+74475236,26235839,4
+leemubai,26235839,4
+95243004,26235839,4
+47847363,26235839,3
+oldmanriver,26235839,4
+66967732,26235839,4
+53773450,26235839,3
+3800028,26235839,3
+49097725,26235839,4
+gongzitian,26235839,3
+52207529,26235839,4
+74890188,26235839,3
+56080204,26235839,4
+xyhen,26235839,4
+40692512,26235839,3
+53830314,26235839,5
+qiulaodie,26235839,3
+46009385,26235839,3
+oh_zoay,26235839,4
+zykmilan,26235839,3
+56390770,26235839,3
+tianchaoccav,26235839,4
+38577138,26235839,4
+95026029,26235839,4
+Cycneverstop,26235839,4
+48854859,26235839,4
+liuxunsimida,26235839,4
+72365575,26235839,4
+119547725,26235839,4
+67596323,26235839,3
+46310239,26235839,4
+connieyu,26235839,4
+46859187,26235839,4
+heavywoo,26235839,5
+wmk114,26235839,4
+lmx1220,26235839,4
+cherry7lu,26235839,4
+NathanJing,26235839,4
+fiorile,26235839,3
+longmaoaiwan,26235839,3
+zxt1219,26235839,3
+63730928,26235839,3
+elaineishere,26235839,2
+68589815,26235839,3
+84564093,26235839,3
+yunqiu,26235839,4
+ZhaHuanEr,26235839,3
+54277204,26235839,3
+83206457,26235839,3
+57589585,26235839,5
+tianranzijiegou,26235839,4
+OrianneLau,26235839,3
+38770333,26235839,3
+87341289,26235839,4
+jinsenliao,26235839,4
+weiweiweio,26235839,-1
+paoxiaodi,26235839,3
+28959917,26235839,3
+50383146,26235839,4
+27362443,26235839,4
+niunaijiang,26235839,-1
+xuyinaxxxxxxx,26235839,5
+56043280,26235839,5
+3262787,26235839,3
+86253847,26235839,4
+63903749,26235839,4
+51673161,26235839,5
+58691394,26235839,4
+34794492,26235839,5
+62532021,26235839,3
+126980247,26235839,3
+62754758,26235839,4
+83826779,26235839,3
+58267868,26235839,3
+65361448,26235839,5
+66979226,26235839,4
+49141997,26235839,4
+69125005,26235839,5
+chenhao440,26235839,5
+3661014,26235839,4
+79664454,26235839,3
+57214774,26235839,4
+68334068,26235839,3
+63641303,26235839,4
+64599177,26235839,3
+46513410,26235839,2
+3770234,26235839,4
+3413987,26235839,3
+Holidayczz,26235839,3
+mayquinine,26235839,4
+67238808,26235839,3
+129967215,26235839,5
+87682536,26235839,3
+98643202,26235839,-1
+59371719,26235839,4
+131677998,26235839,3
+65546282,26235839,3
+chuqihua,26235839,4
+45048645,26235839,4
+35200825,26235839,3
+xuyq,26235839,2
+Moi-6515,26235839,4
+amberVan,26235839,4
+52948477,26235839,3
+Hehh,26235839,-1
+19233528,26235839,5
+autumnflutter,26235839,-1
+102862602,26235839,3
+127266323,26235839,4
+53323941,26235839,1
+48862073,26235839,4
+MentalDisorder,26235839,2
+Yb1204,26235839,3
+sherryxie0805,26235839,3
+oakhui,26235839,2
+Jash1118,26235839,4
+2248326,26235839,3
+56071242,26235839,3
+shane_Xu,26235839,4
+65408583,26235839,3
+67325426,26235839,3
+yinfuer,26235839,4
+augustyuma,26235839,4
+53982410,26235839,4
+69532674,26235839,3
+dongzhaozhao,26235839,3
+87831764,26235839,3
+75268479,26235839,3
+lululovexiah,26235839,-1
+63260587,26235839,4
+69513707,26235839,5
+56498451,26235839,4
+55770977,26235839,4
+43719868,26235839,4
+45459664,26235839,4
+68574276,26235839,4
+shadowkid,26235839,3
+50118085,26235839,4
+80936991,26235839,3
+36694478,26235839,3
+39937848,26235839,3
+64952105,26235839,4
+sowhatanyi,26235839,4
+125668189,26235839,4
+47898857,26235839,3
+48457627,26235839,4
+heypulj,26235839,3
+41996447,26235839,-1
+65293424,26235839,3
+2596592,26235839,4
+78502935,26235839,3
+67463541,26235839,3
+64881839,26235839,4
+CityOfShadows,26235839,2
+zcer,26235839,3
+khuntoria521,26235839,5
+64038122,26235839,3
+musicyue21,26235839,4
+6440487,26235839,3
+craneink,26235839,4
+BBBigZhi,26235839,3
+55910584,26235839,4
+64162048,26235839,4
+nxam,26235839,3
+WSSWHL,26235839,2
+82906758,26235839,4
+haixingba,26235839,4
+71235824,26235839,4
+52450726,26235839,4
+46220008,26235839,4
+uranusmegumi,26235839,-1
+81404706,26235839,3
+3803310,26235839,3
+52296181,26235839,5
+yomaybe,26235839,3
+Youandi4,26235839,-1
+onlyxia,26235839,3
+56455021,26235839,5
+109084248,26235839,5
+50087846,26235839,3
+60038262,26235839,3
+lancy27,26235839,4
+1230136,26235839,3
+mmming,26235839,3
+35999889,26235839,3
+125210272,26235839,3
+qiqinaideziji,26235839,5
+aabbbcccc,26235839,4
+48889968,26235839,3
+4320404,26235839,3
+57105306,26235839,3
+4026585,26235839,4
+xiaoye780621,26235839,-1
+josie77,26235839,4
+aaaaaaaaaaa,26235839,5
+moryfor,26235839,4
+crystal1124,26235839,3
+58489881,26235839,3
+aitiezeng,26235839,3
+lassiedusky,26235839,3
+99736785,26235839,5
+62279554,26235839,4
+76185877,26235839,4
+1482288,26235839,4
+proust999,26235839,3
+3705118,26235839,4
+121491917,26235839,-1
+72522600,26235839,3
+37121767,26235839,4
+75661398,26235839,3
+48055064,26235839,4
+jammy48,26235839,3
+60650202,26235839,5
+51197261,26235839,3
+50281371,26235839,4
+35904729,26235839,3
+4697248,26235839,-1
+3173085,26235839,4
+45985032,26235839,3
+tsukineko,26235839,5
+3818190,26235839,5
+leeyo,26235839,4
+1496249,26235839,-1
+125950038,26235839,4
+99199366,26235839,3
+solo007,26235839,3
+Veronicachai,26235839,4
+56075427,26235839,5
+49898736,26235839,3
+ting_shark,26235839,-1
+2171901,26235839,5
+ringringrainlsy,26235839,4
+63397034,26235839,3
+poosimsom,26235839,2
+3059000,26235839,3
+65087582,26235839,3
+64926044,26235839,4
+yuanweiru,26235839,4
+104741315,26235839,4
+Vanessa.,26235839,4
+abudula,26235839,4
+84028552,26235839,4
+lemonjune,26235839,4
+tsoo416,26235839,3
+37322815,26235839,4
+2239773,26235839,4
+xiexian,26235839,4
+45332811,26235839,4
+62737807,26235839,3
+131470546,26235839,3
+48395509,26235839,4
+59370142,26235839,4
+75809068,26235839,3
+132802176,26235839,4
+Tong323,26235839,3
+33245540,26235839,4
+45594123,26235839,3
+90807462,26235839,5
+2352053,26235839,-1
+25350324,26235839,3
+121748685,26235839,3
+63684409,26235839,4
+60961304,26235839,4
+29024580,26235839,3
+69197662,26235839,4
+jasminesyc,26235839,4
+immiu,26235839,4
+62842401,26235839,3
+KUBRICK2OO1,26235839,3
+atangxiong,26235839,4
+123274551,26235839,5
+133788229,26235839,5
+2346310,26235839,4
+choushabi,26235839,4
+55790566,26235839,4
+1886385,26235839,3
+46818044,26235839,4
+85366817,26235839,3
+65635790,26235839,5
+78857918,26235839,3
+116007032,26235839,4
+66101707,26235839,3
+12738365,26235839,3
+hlinwang,26235839,4
+78414144,26235839,3
+80808248,26235839,4
+foxlovewhitecat,26235839,5
+49737857,26235839,4
+77058316,26235839,5
+JamesPound,26235839,3
+sunnyday-u,26235839,3
+63142359,26235839,4
+56875123,26235839,4
+f8023,26235839,4
+yeslie,26235839,3
+haozi20,26235839,4
+66776645,26235839,2
+66776645,26235839,2
+guosiyao,26235839,3
+88140661,26235839,4
+58284947,26235839,4
+2248931,26235839,4
+73064038,26235839,4
+92254946,26235839,3
+97112144,26235839,-1
+30441221,26235839,4
+62705115,26235839,3
+84569100,26235839,4
+119457201,26235839,3
+84659532,26235839,4
+poison1988,26235839,4
+54833034,26235839,4
+4312426,26235839,5
+58133489,26235839,4
+126340029,26235839,4
+52322894,26235839,3
+gogolaviz,26235839,4
+64110948,26235839,4
+84681267,26235839,3
+48829769,26235839,4
+mmmmmya,26235839,4
+36499503,26235839,2
+120857143,26235839,4
+66141079,26235839,4
+panrunni,26235839,5
+82630847,26235839,4
+heechen,26235839,4
+71181994,26235839,4
+56897677,26235839,5
+62476511,26235839,3
+52235575,26235839,5
+sophia_plover,26235839,4
+never-land-bird,26235839,3
+whiteout,26235839,4
+vidania,26235839,4
+54711146,26235839,3
+64103157,26235839,3
+joycerabbit,26235839,4
+89852120,26235839,5
+77844767,26235839,3
+54465504,26235839,4
+65369148,26235839,4
+wen_Schwartz,26235839,3
+67491757,26235839,3
+jumpingjanice,26235839,4
+52554533,26235839,3
+41881220,26235839,3
+2783035,26235839,5
+44483258,26235839,-1
+I-L-Greeny,26235839,4
+jielunaimomo,26235839,5
+chch1420,26235839,-1
+momojasper,26235839,5
+3611961,26235839,3
+97117604,26235839,4
+minhom,26235839,5
+54309403,26235839,4
+40069561,26235839,4
+feiqilin,26235839,5
+2548986,26235839,2
+101516177,26235839,3
+1468448,26235839,-1
+kwasii,26235839,3
+102077432,26235839,3
+Wage,26235839,4
+81586403,26235839,4
+66091959,26235839,3
+38854034,26235839,4
+55383324,26235839,4
+71223601,26235839,4
+72661721,26235839,5
+23664888,26235839,-1
+34473090,26235839,4
+2341945,26235839,4
+104312412,26235839,4
+LeeMar,26235839,3
+wantwaye,26235839,4
+33554400,26235839,5
+sherrychen,26235839,4
+3950603,26235839,4
+85239246,26235839,4
+46287830,26235839,-1
+84696017,26235839,4
+52856556,26235839,4
+42838726,26235839,5
+131374189,26235839,5
+littlebleach,26235839,-1
+59561773,26235839,5
+53457714,26235839,-1
+79452257,26235839,3
+50474968,26235839,3
+57160818,26235839,2
+dear-lc,26235839,4
+ricechow,26235839,3
+49115709,26235839,4
+47821826,26235839,3
+38280758,26235839,4
+41894890,26235839,4
+43297403,26235839,4
+51288517,26235839,2
+76236179,26235839,3
+59101282,26235839,3
+72250918,26235839,5
+50660191,26235839,4
+2064671,26235839,2
+3274950,26235839,-1
+nitaichangkuang,26235839,3
+xu77,26235839,4
+asakayoung,26235839,4
+myTrista,26235839,5
+103096279,26235839,3
+49419366,26235839,3
+lokaven,26235839,4
+4123019,26235839,3
+44761018,26235839,4
+Armande,26235839,3
+64284331,26235839,4
+64284331,26235839,4
+39228377,26235839,5
+49119255,26235839,2
+majunchuan,26235839,4
+helicopter,26235839,3
+51572268,26235839,4
+64277319,26235839,3
+119702092,26235839,3
+50284153,26235839,3
+renling,26235839,5
+66057217,26235839,4
+54410737,26235839,5
+4106036,26235839,-1
+3887086,26235839,3
+YeonParadise,26235839,5
+exmor,26235839,4
+78601907,26235839,3
+49294423,26235839,3
+52622213,26235839,4
+3555189,26235839,4
+123641644,26235839,3
+79408087,26235839,5
+121142020,26235839,4
+49759767,26235839,3
+63852935,26235839,5
+soleilratemma,26235839,3
+130469807,26235839,4
+49922956,26235839,5
+48973065,26235839,3
+53637766,26235839,4
+69680398,26235839,3
+50719332,26235839,4
+59149801,26235839,3
+74522488,26235839,-1
+43663289,26235839,3
+124673449,26235839,5
+56866137,26235839,3
+40645830,26235839,5
+4249905,26235839,4
+58617905,26235839,5
+68608640,26235839,4
+67516737,26235839,4
+kunfeiniao,26235839,4
+42761507,26235839,3
+65664991,26235839,5
+55647772,26235839,4
+54342307,26235839,5
+55846970,26235839,4
+73449717,26235839,4
+51960781,26235839,5
+94353228,26235839,4
+85008065,26235839,3
+68732725,26235839,5
+alowisy,26235839,3
+46678115,26235839,5
+49921497,26235839,4
+candyrainz,26235839,5
+64873901,26235839,3
+hayleyzhang,26235839,5
+ruo1996,26235839,4
+ruo1996,26235839,4
+33767784,26235839,3
+4374610,26235839,5
+64222539,26235839,4
+49983396,26235839,4
+43884684,26235839,4
+64133408,26235839,5
+70806910,26235839,4
+bobodoo,26235839,4
+elice,26235839,-1
+47878839,26235839,4
+heartlane,26235839,4
+81897833,26235839,3
+xiaoranfang,26235839,5
+80942237,26235839,4
+69368196,26235839,4
+108472446,26235839,5
+75270084,26235839,3
+TYM,26235839,-1
+58364140,26235839,2
+97434116,26235839,4
+57569396,26235839,5
+62847350,26235839,4
+62764076,26235839,5
+72677574,26235839,5
+vikawang,26235839,3
+feiyaner,26235839,4
+70694742,26235839,2
+swqbunnie,26235839,4
+61557388,26235839,4
+85981309,26235839,3
+43476966,26235839,4
+116695354,26235839,5
+68573691,26235839,5
+67838185,26235839,3
+Grey1128,26235839,4
+angbellamcqueen,26235839,4
+41815717,26235839,-1
+67399161,26235839,5
+55880604,26235839,4
+ola_,26235839,4
+66718384,26235839,5
+85045416,26235839,3
+45553945,26235839,3
+lilysld,26235839,4
+126469352,26235839,4
+124948670,26235839,3
+birgit1226,26235839,4
+halouwai,26235839,4
+67782603,26235839,3
+70356268,26235839,3
+75196730,26235839,2
+76097175,26235839,4
+46038574,26235839,3
+28317833,26235839,3
+58886429,26235839,4
+59295882,26235839,3
+50382462,26235839,4
+46871806,26235839,4
+MCbai,26235839,3
+68021665,26235839,4
+93104938,26235839,4
+jokylovecr,26235839,5
+Tempoit,26235839,4
+ccl499508605,26235839,4
+120597236,26235839,3
+80098161,26235839,5
+54133819,26235839,4
+counting_crows,26235839,4
+85339008,26235839,4
+96044338,26235839,3
+133718009,26235839,4
+valsk,26235839,3
+64886603,26235839,5
+43114187,26235839,3
+63444910,26235839,4
+39384615,26235839,3
+sunshinean2000,26235839,5
+3365504,26235839,5
+4154813,26235839,2
+adamhsieh,26235839,2
+37640637,26235839,3
+68403152,26235839,3
+bearblindman,26235839,3
+2374657,26235839,4
+66108796,26235839,5
+hollycn,26235839,3
+46287060,26235839,3
+xcoral,26235839,3
+MrsCC,26235839,4
+1654774,26235839,5
+75174389,26235839,4
+34544680,26235839,3
+69272532,26235839,3
+saintness,26235839,4
+130353620,26235839,3
+oweuuu,26235839,-1
+61312621,26235839,4
+lian1110,26235839,4
+125371262,26235839,4
+52187900,26235839,4
+64009647,26235839,4
+jingchen-ai,26235839,4
+Vol.de.nuit,26235839,3
+69010258,26235839,3
+63890745,26235839,3
+51214182,26235839,4
+132192126,26235839,3
+qijiuzhiyue,26235839,3
+130069802,26235839,5
+dearruby,26235839,3
+121055789,26235839,4
+60246956,26235839,4
+63463854,26235839,4
+bayier,26235839,4
+strawman81,26235839,4
+34411968,26235839,4
+35736307,26235839,4
+proband,26235839,5
+44387956,26235839,4
+16413081,26235839,5
+132512575,26235839,5
+53363947,26235839,4
+120594583,26235839,4
+35739270,26235839,3
+woaa,26235839,2
+95360863,26235839,5
+60411524,26235839,-1
+ningyaogezhi,26235839,4
+hey.nanzhuang,26235839,3
+70481744,26235839,4
+78649248,26235839,4
+132474319,26235839,3
+zoroluffy,26235839,4
+52145474,26235839,5
+muyeah,26235839,3
+46914517,26235839,-1
+52817036,26235839,4
+128114712,26235839,5
+2799911,26235839,4
+2799911,26235839,4
+86929992,26235839,5
+61101997,26235839,5
+76288538,26235839,5
+127354177,26235839,4
+65549405,26235839,4
+yy91228,26235839,3
+95382029,26235839,3
+50663434,26235839,4
+63101856,26235839,5
+57701070,26235839,4
+LLsupportsJIM,26235839,4
+35135916,26235839,4
+131979732,26235839,3
+115949877,26235839,3
+57238055,26235839,3
+43778462,26235839,-1
+54991224,26235839,4
+54530089,26235839,4
+onlyyoung,26235839,4
+onlyyoung,26235839,4
+lepd,26235839,3
+54131789,26235839,4
+karanks,26235839,4
+68166491,26235839,5
+71455047,26235839,4
+shanglee,26235839,4
+50204863,26235839,5
+71593445,26235839,4
+53621487,26235839,4
+110227894,26235839,5
+71336529,26235839,3
+77039342,26235839,4
+leeyone,26235839,3
+3513677,26235839,5
+amin888,26235839,4
+44391272,26235839,4
+77203417,26235839,4
+50594732,26235839,5
+heyowl,26235839,4
+135012811,26235839,4
+ash1a1ym,26235839,3
+73945531,26235839,4
+4325552,26235839,4
+yuuuuuki,26235839,3
+43713017,26235839,4
+67235309,26235839,4
+49245058,26235839,3
+43558241,26235839,-1
+85191711,26235839,5
+108165633,26235839,4
+63119034,26235839,4
+52846055,26235839,4
+lynnjyl,26235839,3
+53343599,26235839,5
+wymanqin,26235839,3
+99251376,26235839,5
+atombb,26235839,4
+jialinwonder,26235839,4
+3075663,26235839,3
+huhu227,26235839,3
+48316305,26235839,4
+lyl610327,26235839,3
+ggspot,26235839,5
+95995691,26235839,4
+61015297,26235839,5
+Echo-Z,26235839,-1
+miku,26235839,4
+80370645,26235839,5
+41314472,26235839,5
+43529469,26235839,4
+mi.even.live,26235839,5
+chena,26235839,3
+76895524,26235839,3
+47320573,26235839,3
+91624641,26235839,5
+27713698,26235839,5
+74408663,26235839,4
+LYoreci,26235839,5
+OYPP1987,26235839,3
+freya1919,26235839,3
+yytttna,26235839,4
+39935657,26235839,5
+metadiamond,26235839,4
+49583438,26235839,4
+samkaka,26235839,4
+45158500,26235839,4
+chyidan,26235839,4
+guoqichepiao,26235839,-1
+boringsly,26235839,4
+50221605,26235839,4
+58314106,26235839,4
+48856219,26235839,3
+73548687,26235839,4
+26545118,26235839,3
+47493797,26235839,4
+Gongzi_.Fox,26235839,5
+44366571,26235839,3
+nwpu642,26235839,4
+davidttmam,26235839,4
+davidttmam,26235839,4
+76442034,26235839,4
+47227699,26235839,5
+63089184,26235839,3
+linmumuevelyn,26235839,3
+aegeanguo,26235839,4
+43459920,26235839,4
+69469805,26235839,4
+115474584,26235839,3
+56977444,26235839,3
+10045748,26235839,4
+hexu-kuma,26235839,4
+124425803,26235839,4
+51124303,26235839,2
+49187525,26235839,5
+44175959,26235839,5
+binchinakohl,26235839,-1
+catning,26235839,4
+kongkongruixin,26235839,5
+octeven,26235839,4
+50570726,26235839,5
+amo-qiqiqiqiqi,26235839,4
+1775763,26235839,5
+50654661,26235839,4
+lixinleixinli,26235839,5
+illiteracy,26235839,3
+max719,26235839,4
+2849436,26235839,3
+96514775,26235839,4
+luckycjy,26235839,4
+129915789,26235839,4
+65836711,26235839,4
+57307614,26235839,4
+47519520,26235839,4
+83945824,26235839,3
+ooooooofuck,26235839,3
+xyq1995,26235839,5
+90546052,26235839,5
+47182696,26235839,5
+66077019,26235839,3
+xyoyo,26235839,4
+wowbay,26235839,3
+44504599,26235839,3
+LoserInLove,26235839,4
+wy320,26235839,5
+suxiaoliang,26235839,5
+gravity-sjc,26235839,5
+yeahgreen,26235839,5
+yc11,26235839,3
+77774632,26235839,4
+lowinvae,26235839,5
+czj950615,26235839,3
+39565614,26235839,4
+67561364,26235839,5
+49902714,26235839,4
+59457579,26235839,4
+KinO_O,26235839,4
+etherhejia,26235839,4
+alwayswrong,26235839,4
+47725759,26235839,4
+58259896,26235839,4
+loveless002,26235839,4
+51296822,26235839,5
+mouqingyang,26235839,3
+95968737,26235839,4
+106597439,26235839,4
+44457357,26235839,3
+69910134,26235839,2
+heaven0618,26235839,4
+27891262,26235839,4
+2717266,26235839,4
+94032593,26235839,3
+83505394,26235839,3
+ly38324,26235839,3
+133398249,26235839,3
+75243916,26235839,-1
+46865711,26235839,3
+4826633,26235839,4
+zhangrenran,26235839,2
+wangcan_uu,26235839,3
+1666477,26235839,3
+125810771,26235839,3
+58008357,26235839,4
+fumihiko1985,26235839,3
+59856519,26235839,4
+lynnstefanie,26235839,4
+88267631,26235839,5
+75437667,26235839,4
+ys1013,26235839,3
+128140915,26235839,3
+45084687,26235839,4
+Rainlivelin,26235839,4
+2788057,26235839,2
+63178499,26235839,5
+50177345,26235839,3
+58306107,26235839,4
+popzoe,26235839,5
+34087859,26235839,4
+56475433,26235839,4
+for1007,26235839,4
+4496644,26235839,3
+125038920,26235839,3
+68209797,26235839,5
+92468807,26235839,3
+51901085,26235839,3
+2232768,26235839,4
+78977506,26235839,2
+taiyanghuazhen,26235839,5
+foodcup,26235839,5
+40137325,26235839,5
+64852790,26235839,2
+zj.zjy,26235839,4
+47068033,26235839,5
+52898475,26235839,4
+130248738,26235839,4
+cm627,26235839,4
+55846038,26235839,4
+47792022,26235839,5
+elinli00,26235839,4
+kiwimomo,26235839,4
+52710825,26235839,4
+64717773,26235839,4
+fadesome,26235839,5
+69694831,26235839,5
+102607701,26235839,2
+maydaybigbang,26235839,4
+82628734,26235839,3
+135077478,26235839,3
+ilaolao,26235839,3
+50580162,26235839,4
+64134058,26235839,4
+tonyuanChen,26235839,3
+72432038,26235839,4
+a1b2c31221,26235839,4
+57808087,26235839,4
+kkkking,26235839,-1
+48666472,26235839,4
+Taurusess,26235839,4
+66673687,26235839,3
+44592602,26235839,-1
+Yanna_z,26235839,3
+45477393,26235839,4
+xinnii,26235839,4
+52951268,26235839,4
+ghostcatstudio,26235839,5
+2106137,26235839,5
+blackboard0215,26235839,5
+61326227,26235839,4
+53920626,26235839,4
+63527236,26235839,5
+2224035,26235839,4
+58816486,26235839,4
+47869637,26235839,5
+49891610,26235839,4
+47755264,26235839,-1
+violetbooks,26235839,4
+54757798,26235839,5
+swimming7891,26235839,4
+a.lili,26235839,4
+91495186,26235839,3
+btone0808,26235839,3
+69833440,26235839,4
+CNatural,26235839,4
+65417437,26235839,4
+antique9248,26235839,4
+29433181,26235839,4
+52284149,26235839,2
+63202815,26235839,5
+53788142,26235839,5
+Elinna0525,26235839,5
+36514760,26235839,3
+Leoxiaoyi0730,26235839,5
+miaowubaby,26235839,-1
+adamx,26235839,4
+79822624,26235839,4
+63485325,26235839,4
+aaaaasun,26235839,5
+81244293,26235839,4
+a_Yuan,26235839,3
+59901681,26235839,3
+53601891,26235839,3
+3382458,26235839,5
+mrockfire,26235839,4
+64827917,26235839,3
+iamnian,26235839,4
+68550848,26235839,5
+fallenshaman,26235839,3
+54652758,26235839,4
+blackbeverage,26235839,3
+4422872,26235839,4
+57638199,26235839,5
+ToDieByYourSide,26235839,3
+52140771,26235839,4
+3177593,26235839,3
+57450244,26235839,4
+baibi,26235839,3
+zetto,26235839,-1
+67534702,26235839,3
+aerinthehouse,26235839,3
+pariseros,26235839,5
+50030842,26235839,-1
+51886935,26235839,4
+98790915,26235839,5
+penny2011,26235839,5
+63250313,26235839,3
+libiezaijian,26235839,4
+52143519,26235839,4
+LittleRa66it,26235839,4
+70310265,26235839,4
+119405586,26235839,5
+kiki204629,26235839,4
+104261144,26235839,3
+SharonShining,26235839,4
+91543095,26235839,3
+42262762,26235839,5
+66507526,26235839,4
+67284766,26235839,-1
+115324297,26235839,1
+37669601,26235839,3
+leoglory,26235839,4
+65930256,26235839,3
+53094976,26235839,3
+49339109,26235839,3
+125522040,26235839,5
+49367100,26235839,3
+56919953,26235839,4
+76300975,26235839,5
+63906928,26235839,5
+34875842,26235839,3
+pershingsay,26235839,3
+1902646,26235839,-1
+thegrudge,26235839,4
+93190703,26235839,3
+48396212,26235839,4
+maixiaohuang,26235839,4
+61706956,26235839,3
+4694061,26235839,4
+70043510,26235839,5
+70546993,26235839,4
+52287609,26235839,5
+52287609,26235839,5
+orangeorange6,26235839,3
+jad1s,26235839,4
+110974026,26235839,4
+ellie0314,26235839,5
+134414658,26235839,2
+65400706,26235839,4
+vanilla666,26235839,4
+roseyan_lxy,26235839,3
+xiaosongqu,26235839,4
+103954387,26235839,3
+70284743,26235839,5
+13330129,26235839,4
+3540441,26235839,4
+89994937,26235839,4
+luckyanc,26235839,3
+55943262,26235839,3
+55680257,26235839,4
+61151666,26235839,3
+sukijuri,26235839,4
+Curry_Egg,26235839,5
+heity,26235839,3
+aileeyzl,26235839,3
+sodayanzi,26235839,4
+82308347,26235839,3
+35586598,26235839,4
+sanguinepong,26235839,3
+lobeline,26235839,5
+2766375,26235839,3
+vacancy_,26235839,4
+kimyoujin,26235839,4
+58158245,26235839,4
+35220185,26235839,5
+Freya-ice,26235839,4
+44589835,26235839,1
+59774628,26235839,4
+49314265,26235839,3
+42146070,26235839,5
+78347009,26235839,4
+97840419,26235839,3
+97840419,26235839,3
+124801894,26235839,3
+91396306,26235839,5
+58059498,26235839,3
+HHHLLLDDD,26235839,3
+AugustSeven,26235839,4
+absinthejt,26235839,5
+scarlywoo,26235839,3
+renzrxly,26235839,3
+apple475,26235839,4
+cindycoo,26235839,3
+TERRYBEAR,26235839,4
+2076258,26235839,4
+54150368,26235839,3
+76708282,26235839,5
+53708555,26235839,-1
+63732204,26235839,3
+62996817,26235839,5
+TZX119WADE,26235839,5
+62582526,26235839,4
+monet-l,26235839,4
+130953760,26235839,4
+aibaobaoguai327,26235839,5
+33456509,26235839,-1
+35668888,26235839,5
+74192767,26235839,-1
+4132580,26235839,3
+v-iviann,26235839,-1
+janaldlam,26235839,4
+gaoxiafang,26235839,3
+32008102,26235839,4
+49326623,26235839,3
+43297511,26235839,3
+LAMAU,26235839,-1
+Lycheeciel,26235839,2
+56311207,26235839,4
+33261301,26235839,3
+48863239,26235839,4
+52737447,26235839,3
+59745943,26235839,5
+YolaZhang,26235839,4
+60635722,26235839,3
+52744740,26235839,4
+ednnaLan,26235839,3
+48342025,26235839,4
+diana961108,26235839,-1
+82159990,26235839,5
+59274667,26235839,5
+2543575,26235839,3
+ssstef,26235839,-1
+3846099,26235839,-1
+57333199,26235839,4
+hlt19920904,26235839,5
+lydiapy,26235839,5
+49166538,26235839,3
+82043746,26235839,5
+45012026,26235839,5
+dchxc,26235839,4
+69971714,26235839,5
+diamond1205,26235839,4
+50609677,26235839,2
+gloria1102,26235839,3
+85447526,26235839,4
+58026592,26235839,4
+piepiecharlene,26235839,5
+69439267,26235839,3
+cielshaw,26235839,4
+74015810,26235839,5
+eefee,26235839,3
+Juice.,26235839,4
+71230425,26235839,3
+81481225,26235839,3
+dyinggg,26235839,3
+4014339,26235839,4
+2997087,26235839,1
+88535863,26235839,5
+53401173,26235839,4
+115503378,26235839,3
+76117897,26235839,4
+48007426,26235839,3
+eefee,25774050,4
+127478888,25774050,4
+55714302,25774050,4
+59665595,25774050,4
+3901159,25774050,3
+48167301,25774050,4
+39728715,25774050,5
+bigsword,25774050,4
+mustundead,25774050,3
+63744273,25774050,4
+la739212322,25774050,5
+69406009,25774050,4
+80590035,25774050,4
+pigmiura,25774050,3
+67796922,25774050,3
+96290717,25774050,4
+67609353,25774050,4
+76442034,25774050,5
+53868140,25774050,4
+130807604,25774050,4
+zero-seven,25774050,3
+135349398,25774050,4
+88033603,25774050,3
+humechan,25774050,4
+54327177,25774050,4
+66077816,25774050,5
+135907100,25774050,-1
+1807664,25774050,-1
+132979100,25774050,4
+loafingnick,25774050,-1
+onlyforny,25774050,4
+56653841,25774050,4
+52142068,25774050,5
+coldmist,25774050,4
+82519366,25774050,3
+58386581,25774050,3
+monii,25774050,4
+78399714,25774050,3
+96000077,25774050,4
+9360035,25774050,5
+52112521,25774050,3
+69529350,25774050,4
+wuyunoy,25774050,3
+67877483,25774050,5
+43578165,25774050,4
+joker619,25774050,4
+96528973,25774050,3
+76066640,25774050,2
+37026248,25774050,3
+3694504,25774050,4
+Ziya,25774050,4
+shinewy,25774050,4
+kristong,25774050,4
+51815099,25774050,4
+74115900,25774050,3
+orderly,25774050,5
+3606037,25774050,4
+64136344,25774050,3
+65974526,25774050,4
+mrbg,25774050,-1
+75667669,25774050,4
+15338047,25774050,3
+51967154,25774050,3
+29280567,25774050,4
+81938860,25774050,5
+4601153,25774050,4
+yvonne14,25774050,4
+64771060,25774050,3
+db00goal,25774050,3
+2112561,25774050,4
+lcpeng,25774050,2
+45177549,25774050,3
+82312414,25774050,5
+fish6058,25774050,5
+67948315,25774050,3
+myself920,25774050,4
+85416383,25774050,3
+dydyd_douban,25774050,3
+68630000,25774050,3
+53182459,25774050,3
+53464389,25774050,-1
+wangmuse,25774050,5
+43458075,25774050,3
+ayumiH,25774050,4
+32222992,25774050,4
+meiweimusic,25774050,5
+101405544,25774050,4
+4482032,25774050,4
+126680069,25774050,4
+2330272,25774050,4
+128991169,25774050,5
+65890025,25774050,5
+ertianyiliu,25774050,4
+65033066,25774050,3
+83119838,25774050,4
+103271136,25774050,4
+qiuqiu0619,25774050,4
+53233343,25774050,4
+38996035,25774050,4
+79400267,25774050,5
+2300914,25774050,-1
+128017227,25774050,4
+78170395,25774050,3
+52321375,25774050,5
+koujuan,25774050,4
+35572328,25774050,3
+3769878,25774050,4
+44268837,25774050,3
+4129696,25774050,4
+colorfulturtle,25774050,-1
+100179635,25774050,5
+3455527,25774050,3
+steveliux,25774050,4
+120161233,25774050,5
+134417369,25774050,3
+134269225,25774050,5
+huangyuanmoyan,25774050,4
+4077370,25774050,3
+58304353,25774050,4
+55866534,25774050,2
+62383479,25774050,4
+hegelian,25774050,3
+wuxi4945,25774050,4
+21139926,25774050,3
+124779733,25774050,3
+68225994,25774050,3
+83778717,25774050,4
+1068125,25774050,4
+45965937,25774050,4
+nicdone,25774050,3
+37095412,25774050,4
+42149787,25774050,4
+94667703,25774050,4
+66686811,25774050,4
+61987490,25774050,4
+68174256,25774050,3
+56484149,25774050,4
+5407237,25774050,3
+75673672,25774050,4
+51909421,25774050,3
+134191869,25774050,4
+61619787,25774050,3
+128569083,25774050,4
+109657209,25774050,4
+viyawym,25774050,3
+45820206,25774050,4
+45701279,25774050,4
+LyleWang,25774050,3
+sosofly,25774050,4
+70415985,25774050,4
+81939398,25774050,3
+44564068,25774050,4
+Zhpher,25774050,4
+124032688,25774050,4
+137555231,25774050,4
+103533221,25774050,3
+48057625,25774050,4
+56091903,25774050,4
+gisela_fan,25774050,5
+49900100,25774050,-1
+36554914,25774050,5
+61093612,25774050,5
+61716542,25774050,4
+homedrama,25774050,4
+78169762,25774050,4
+52883078,25774050,1
+56811139,25774050,3
+53415052,25774050,-1
+wxcQluotuo,25774050,3
+allaguo,25774050,4
+84238663,25774050,3
+zlljxm,25774050,3
+chouchou0707,25774050,4
+57616259,25774050,3
+47647880,25774050,4
+48251188,25774050,3
+82876812,25774050,4
+70313709,25774050,4
+42125701,25774050,-1
+lhs,25774050,5
+134390828,25774050,4
+koonom,25774050,4
+81937719,25774050,5
+65872380,25774050,4
+kiki0616,25774050,3
+eternitydarling,25774050,5
+48171385,25774050,4
+49419366,25774050,3
+3680251,25774050,3
+ensi,25774050,3
+4469131,25774050,4
+46023770,25774050,4
+65260404,25774050,3
+xin_,25774050,4
+62878798,25774050,5
+136875339,25774050,3
+CharlieXiaoxiao,25774050,3
+playtoy,25774050,4
+4284000,25774050,4
+35224934,25774050,4
+81628425,25774050,3
+77922789,25774050,4
+100020528,25774050,3
+3365504,25774050,5
+46444197,25774050,4
+98956225,25774050,3
+48938261,25774050,5
+66159119,25774050,3
+philette,25774050,5
+Finnegans,25774050,4
+120857431,25774050,4
+69251373,25774050,3
+44275428,25774050,5
+49388908,25774050,4
+2417785,25774050,3
+134318408,25774050,4
+duanmurong,25774050,3
+12794807,25774050,3
+119405586,25774050,4
+benjune,25774050,3
+H897120417,25774050,3
+62066399,25774050,4
+40559858,25774050,4
+60732201,25774050,4
+dailypop,25774050,3
+58051077,25774050,5
+79075918,25774050,4
+37853313,25774050,2
+AAAHHHAAA,25774050,4
+96632957,25774050,4
+71188390,25774050,4
+41438322,25774050,4
+zhangbohun,25774050,3
+ajuews,25774050,4
+103247038,25774050,3
+120912258,25774050,3
+deer1156164672,25774050,4
+105871087,25774050,5
+erobin,25774050,3
+61223588,25774050,4
+44121177,25774050,4
+42781255,25774050,4
+131471616,25774050,4
+56095656,25774050,4
+135754076,25774050,4
+43335184,25774050,4
+roymo,25774050,4
+93452614,25774050,4
+MaSir,25774050,3
+Ces7,25774050,4
+izaijin,25774050,4
+veiko,25774050,3
+2600480,25774050,4
+104507499,25774050,5
+54693337,25774050,4
+119883443,25774050,4
+1420335,25774050,5
+seventhworkshop,25774050,4
+117994260,25774050,4
+77607736,25774050,5
+chaochao85mao,25774050,-1
+yamaki,25774050,3
+4758428,25774050,4
+50157745,25774050,4
+45580580,25774050,5
+2820792,25774050,3
+48191805,25774050,3
+addff,25774050,4
+jimmy037,25774050,2
+frank1992,25774050,5
+69776981,25774050,3
+131909298,25774050,3
+126502185,25774050,4
+98954264,25774050,4
+14327084,25774050,4
+icaizhuo,25774050,3
+62296200,25774050,5
+56895506,25774050,4
+53126913,25774050,3
+3510245,25774050,4
+YeLLow_qst,25774050,4
+88658178,25774050,3
+32008707,25774050,5
+ponds,25774050,3
+gintokiyin,25774050,4
+76116317,25774050,4
+66207629,25774050,3
+126959230,25774050,5
+yunyun1031,25774050,4
+lizhiweierdelu,25774050,5
+50036042,25774050,4
+1033629,25774050,4
+abnoc,25774050,4
+137324986,25774050,3
+43395025,25774050,2
+eertdik,25774050,4
+83354741,25774050,5
+64317656,25774050,4
+64029045,25774050,4
+Hyke,25774050,3
+70042269,25774050,4
+96479513,25774050,4
+53129472,25774050,4
+neko1234,25774050,4
+76725764,25774050,4
+75096447,25774050,4
+3981138,25774050,4
+zweikun,25774050,3
+adrian.chai.au,25774050,4
+matthew1323,25774050,3
+yytaizi,25774050,3
+57849890,25774050,3
+130510359,25774050,4
+balelovesqian,25774050,4
+calmlygod,25774050,5
+73830337,25774050,3
+ayuandeDB,25774050,3
+sunsun0222,25774050,5
+xuningyu,25774050,3
+123000223,25774050,4
+LYColin_Greed,25774050,3
+119313402,25774050,5
+41351821,25774050,4
+51283005,25774050,3
+64435389,25774050,5
+131352783,25774050,3
+70313784,25774050,3
+136370706,25774050,4
+urwill,25774050,5
+136837238,25774050,-1
+115219688,25774050,4
+81244293,25774050,3
+1886385,25774050,3
+58865216,25774050,4
+heartbreakerkid,25774050,3
+curemyself,25774050,3
+ghostjoe,25774050,5
+123112465,25774050,3
+lichade,25774050,3
+47761082,25774050,1
+49434419,25774050,5
+37366321,25774050,3
+84152502,25774050,4
+119262734,25774050,4
+85035571,25774050,2
+73257249,25774050,3
+55896452,25774050,4
+130373176,25774050,4
+x.sunday,25774050,3
+38513029,25774050,-1
+42644379,25774050,4
+88331189,25774050,3
+4118910,25774050,2
+80370645,25774050,4
+113050393,25774050,4
+131987227,25774050,4
+120566516,25774050,4
+56858025,25774050,4
+70255132,25774050,3
+49907701,25774050,5
+84854172,25774050,2
+122889599,25774050,2
+81685996,25774050,4
+115611401,25774050,4
+leechambo,25774050,3
+lianlian1988,25774050,3
+115051698,25774050,3
+65496704,25774050,4
+48093431,25774050,4
+130445057,25774050,4
+45665171,25774050,3
+75555205,25774050,3
+KaRiCh,25774050,3
+zhoujialin,25774050,3
+72091054,25774050,4
+104842273,25774050,4
+72902688,25774050,3
+127118502,25774050,3
+before1998CXH,25774050,4
+61054348,25774050,5
+70499982,25774050,5
+74397322,25774050,3
+tonyDFR,25774050,4
+Dr.Moth,25774050,-1
+128909653,25774050,5
+74033673,25774050,5
+46683408,25774050,3
+inkhkkk,25774050,-1
+1525882,25774050,5
+no1907,25774050,2
+77607835,25774050,4
+2750778,25774050,4
+134146375,25774050,3
+53949979,25774050,3
+84348427,25774050,3
+8026660,25774050,5
+43832986,25774050,4
+53347373,25774050,4
+sniperchris,25774050,3
+hangecho,25774050,3
+3306699,25774050,4
+64037870,25774050,4
+PinkyCin,25774050,4
+56388768,25774050,4
+84255418,25774050,3
+48965557,25774050,2
+l726,25774050,5
+33293861,25774050,4
+92318310,25774050,3
+135906739,25774050,5
+52260644,25774050,3
+125901392,25774050,2
+131466397,25774050,4
+81285027,25774050,3
+53637766,25774050,3
+54724200,25774050,4
+103066869,25774050,4
+103221806,25774050,3
+49159853,25774050,5
+lhgdxx,25774050,5
+lhgdxx,25774050,5
+51098227,25774050,3
+49228362,25774050,5
+48071372,25774050,4
+80058700,25774050,3
+59276802,25774050,3
+onlymoment,25774050,4
+67875277,25774050,3
+46712687,25774050,2
+RingS915,25774050,4
+67153884,25774050,3
+134540692,25774050,3
+maikocyan,25774050,4
+49086369,25774050,4
+55022065,25774050,4
+133179065,25774050,4
+XFire2013,25774050,1
+69615810,25774050,3
+5895489,25774050,2
+eedc,25774050,3
+58365477,25774050,3
+119374507,25774050,2
+40351422,25774050,5
+acbc115,25774050,4
+34851656,25774050,5
+zhangqiong07,25774050,2
+69010983,25774050,3
+132915990,25774050,4
+hism,25774050,4
+58084681,25774050,3
+134495648,25774050,3
+55628932,25774050,4
+zbc_endo,25774050,3
+48816440,25774050,5
+76552950,25774050,3
+121719420,25774050,3
+59172571,25774050,4
+iswear_4ever,25774050,4
+66980915,25774050,3
+76028703,25774050,3
+58428725,25774050,3
+mhyigeren,25774050,4
+122465142,25774050,3
+LXJAAA,25774050,4
+yijingsheng,25774050,5
+60667221,25774050,4
+72712114,25774050,3
+seodler,25774050,4
+49465823,25774050,3
+27713698,25774050,5
+michelq,25774050,3
+oursweethome,25774050,-1
+46923422,25774050,5
+bensdiary,25774050,5
+59931368,25774050,5
+135556704,25774050,4
+135629558,25774050,4
+97869711,25774050,4
+68651695,25774050,5
+135753239,25774050,4
+120445293,25774050,4
+73631748,25774050,4
+poppy7777,25774050,4
+92878802,25774050,3
+zhanshenzhy,25774050,4
+linxisml,25774050,4
+63888010,25774050,3
+moonpaul,25774050,4
+wanglingting,25774050,4
+2266040,25774050,-1
+1128067,25774050,3
+2148283,25774050,-1
+khalilbaby,25774050,3
+53048177,25774050,4
+maoxiaomao,25774050,4
+let7,25774050,4
+135556010,25774050,3
+deardeer92,25774050,5
+64881231,25774050,3
+84955242,25774050,4
+xiaoyaxiayuanzi,25774050,4
+feelingowen,25774050,3
+5831941,25774050,4
+133689309,25774050,3
+71062374,25774050,3
+122173068,25774050,4
+126980247,25774050,4
+38246464,25774050,5
+54250950,25774050,3
+124878258,25774050,3
+deartyrode,25774050,4
+50585337,25774050,3
+jessica_joy5,25774050,2
+135570170,25774050,4
+95817312,25774050,3
+mrbeishuo,25774050,4
+69232283,25774050,4
+43618172,25774050,5
+49397439,25774050,3
+cccpusahonor,25774050,3
+ztftom,25774050,4
+xxxzh,25774050,3
+78420106,25774050,4
+2119013,25774050,3
+49370214,25774050,4
+131796541,25774050,4
+128867718,25774050,3
+65440660,25774050,3
+50624143,25774050,4
+2894410,25774050,4
+andrpirl,25774050,4
+61753912,25774050,4
+55533234,25774050,4
+tammysoso,25774050,2
+47375068,25774050,3
+smallcolor,25774050,4
+solavre,25774050,-1
+77886672,25774050,4
+4155347,25774050,4
+53626533,25774050,1
+70085940,25774050,5
+58783405,25774050,5
+135092660,25774050,4
+missing7V,25774050,3
+same1206,25774050,4
+67330888,25774050,4
+hcxx,25774050,4
+Granadn,25774050,4
+shir23,25774050,-1
+130952703,25774050,4
+64585406,25774050,4
+62139918,25774050,5
+psynonder,25774050,3
+134062078,25774050,4
+88172434,25774050,4
+yabatoo,25774050,4
+1457618,25774050,3
+69569015,25774050,3
+3818190,25774050,5
+64252611,25774050,4
+3884732,25774050,3
+wakeng,25774050,5
+Lul.z,25774050,4
+magicxiaobi,25774050,4
+4392505,25774050,4
+bryantarecool,25774050,4
+44435715,25774050,5
+48121857,25774050,5
+107369167,25774050,-1
+Litlsherry,25774050,4
+63559969,25774050,4
+eva1221,25774050,3
+90264050,25774050,5
+celinedsam,25774050,4
+gzigzi,25774050,4
+15112169,25774050,5
+88132855,25774050,3
+68014143,25774050,3
+82072691,25774050,4
+35914058,25774050,4
+103657994,25774050,5
+43864936,25774050,5
+60599913,25774050,3
+52451378,25774050,3
+loveserein,25774050,4
+64189382,25774050,4
+84522058,25774050,5
+miniville,25774050,4
+134874653,25774050,4
+3848184,25774050,5
+phoe9101,25774050,-1
+badaalle,25774050,3
+missingsour,25774050,3
+toubai,25774050,4
+54811800,25774050,4
+1597009,25774050,4
+bone314,25774050,5
+50432570,25774050,-1
+alisonend,25774050,4
+73990623,25774050,2
+73990623,25774050,2
+ning77,25774050,3
+55997229,25774050,4
+Chloezjy,25774050,5
+100460859,25774050,4
+Leoky,25774050,4
+3982089,25774050,4
+9354883,25774050,3
+84408746,25774050,4
+C-Plus,25774050,3
+blossom5,25774050,4
+SylvanasDANG,25774050,5
+Ann-e,25774050,3
+rin993,25774050,4
+67446786,25774050,4
+37102807,25774050,4
+54254523,25774050,4
+129611474,25774050,4
+tuosai,25774050,3
+zengzhezhi,25774050,4
+Mark201314,25774050,4
+68988270,25774050,4
+57012377,25774050,3
+127048108,25774050,4
+7683143,25774050,4
+liaojiafen,25774050,3
+wavyiyi,25774050,3
+mayflylris,25774050,3
+64202458,25774050,5
+34081510,25774050,4
+118860173,25774050,4
+sujin6041,25774050,4
+2919381,25774050,4
+50972547,25774050,4
+rikkuwang,25774050,3
+79272694,25774050,3
+cschester,25774050,4
+30322114,25774050,5
+134391227,25774050,4
+64173512,25774050,4
+75675493,25774050,4
+yanxiaoan,25774050,4
+zhenghaoyuan,25774050,5
+81822817,25774050,3
+69976018,25774050,5
+70932292,25774050,3
+56341748,25774050,4
+70481744,25774050,3
+kiyono9,25774050,3
+73683661,25774050,3
+77245854,25774050,4
+121726557,25774050,5
+122604864,25774050,4
+69017325,25774050,2
+60020985,25774050,4
+3632876,25774050,3
+68872792,25774050,4
+60369036,25774050,2
+chanbikyu,25774050,5
+1656702,25774050,3
+79571475,25774050,4
+airborneliao,25774050,4
+121780577,25774050,4
+66081323,25774050,4
+ruohu3094,25774050,4
+youngfuck,25774050,5
+127722758,25774050,4
+popo324,25774050,5
+126192589,25774050,4
+IceKey,25774050,4
+58862112,25774050,4
+132438473,25774050,5
+2428870,25774050,3
+msallsunday,25774050,-1
+4520580,25774050,4
+117315788,25774050,4
+fivedegree,25774050,3
+66320772,25774050,5
+HBHelena,25774050,4
+2373335,25774050,3
+2373335,25774050,3
+110052722,25774050,5
+hengxi,25774050,5
+50353681,25774050,3
+gstone1723,25774050,3
+lambsnoopy,25774050,4
+2340389,25774050,4
+54512951,25774050,4
+dolcetta99,25774050,5
+76198383,25774050,-1
+pegsnow,25774050,5
+21857316,25774050,3
+alineliu,25774050,4
+lunxian414,25774050,3
+Burn-21,25774050,4
+yan920131,25774050,4
+79066810,25774050,2
+sunjialin1989,25774050,3
+45283744,25774050,4
+EdwardLear,25774050,-1
+EdwardLear,25774050,-1
+4157643,25774050,4
+2762219,25774050,5
+36060435,25774050,4
+1271321,25774050,4
+92451147,25774050,4
+44345461,25774050,4
+Optimus-Prime,25774050,4
+ellenbaby,25774050,4
+60041907,25774050,3
+59679372,25774050,4
+75744601,25774050,5
+2968002,25774050,3
+miyaliang,25774050,2
+boiya,25774050,4
+84495327,25774050,5
+77111309,25774050,3
+curiousyue,25774050,3
+81777477,25774050,3
+123149153,25774050,4
+35652268,25774050,2
+Tournesolcc,25774050,4
+121132691,25774050,3
+56288464,25774050,3
+78066054,25774050,4
+129515914,25774050,5
+ZouzheFoudouzhe,25774050,-1
+bigbei,25774050,5
+zzzt29,25774050,3
+4197412,25774050,3
+120542127,25774050,4
+66718384,25774050,5
+50733430,25774050,4
+77670734,25774050,3
+kaijisang,25774050,3
+83195523,25774050,3
+121799654,25774050,3
+77329601,25774050,5
+47114271,25774050,4
+formosante,25774050,3
+formosante,25774050,3
+14288671,25774050,5
+13262103,25774050,3
+3420891,25774050,3
+57148360,25774050,4
+gilyun,25774050,5
+belial009,25774050,3
+53196150,25774050,4
+69730287,25774050,3
+30184702,25774050,4
+1379137,25774050,2
+joyce_nasu,25774050,4
+5594345,25774050,3
+82134708,25774050,4
+utopialand,25774050,4
+anhtyilyjz,25774050,5
+78881537,25774050,4
+lx1994,25774050,4
+62023518,25774050,5
+SunandShadow,25774050,5
+127632434,25774050,4
+131805500,25774050,4
+69463567,25774050,1
+58715414,25774050,5
+32841660,25774050,3
+73456502,25774050,2
+deactivate,25774050,3
+53142647,25774050,3
+56414016,25774050,4
+53475502,25774050,5
+StillAliveLoL,25774050,4
+reorou,25774050,4
+46003128,25774050,4
+56765956,25774050,-1
+129764944,25774050,2
+74946726,25774050,5
+82340077,25774050,4
+49671091,25774050,4
+a131351634,25774050,3
+133596389,25774050,5
+68940923,25774050,-1
+77152937,25774050,3
+51093087,25774050,2
+103415530,25774050,4
+wishna,25774050,3
+131784353,25774050,3
+41084789,25774050,4
+nonobean,25774050,3
+punkyifan,25774050,5
+79381189,25774050,4
+zasuny,25774050,4
+DolceKaze,25774050,4
+3122796,25774050,5
+62224853,25774050,4
+spnda,25774050,4
+87488566,25774050,4
+87988157,25774050,3
+a960629,25774050,3
+58977127,25774050,5
+103275534,25774050,5
+54488747,25774050,4
+46292637,25774050,3
+supermelon,25774050,4
+12573860,25774050,4
+suvenee0715,25774050,4
+44806396,25774050,5
+93553397,25774050,2
+59705593,25774050,4
+elushen,25774050,4
+43909634,25774050,2
+kingtin,25774050,4
+45833709,25774050,4
+65720947,25774050,4
+98901488,25774050,5
+Watermonster,25774050,4
+3017985,25774050,5
+88865433,25774050,3
+deshley,25774050,4
+126225635,25774050,3
+47415286,25774050,5
+47415286,25774050,5
+127256798,25774050,5
+HandsomeJack,25774050,4
+1328366,25774050,4
+64912992,25774050,4
+60046891,25774050,5
+Bigdumplings,25774050,4
+128044981,25774050,3
+69133855,25774050,4
+wooya,25774050,3
+99508404,25774050,3
+62156206,25774050,3
+66590810,25774050,4
+70389016,25774050,3
+84983836,25774050,4
+68440347,25774050,4
+28392711,25774050,3
+70277575,25774050,4
+83894422,25774050,3
+arishting,25774050,4
+madeyaosia,25774050,-1
+2179284,25774050,1
+43589213,25774050,3
+daijialu1992,25774050,4
+128946011,25774050,3
+82353804,25774050,3
+51812632,25774050,3
+cestardeur,25774050,4
+53135086,25774050,3
+29442857,25774050,3
+104645523,25774050,3
+chrisWen,25774050,3
+43222334,25774050,5
+ellegardenn,25774050,4
+58547901,25774050,2
+41215892,25774050,2
+44483182,25774050,4
+adododo,25774050,4
+85084961,25774050,3
+2382982,25774050,4
+65157272,25774050,4
+121235168,25774050,3
+55885677,25774050,4
+gongxi11,25774050,4
+52634329,25774050,4
+114306583,25774050,5
+closeyoureyes,25774050,-1
+41735597,25774050,5
+64329337,25774050,4
+14140341,25774050,5
+69102270,25774050,3
+58283647,25774050,4
+zyyself,25774050,3
+6644981,25774050,3
+47105797,25774050,4
+68193127,25774050,5
+58085494,25774050,1
+57756886,25774050,4
+aicher,25774050,3
+cynthia3922,25774050,4
+75723338,25774050,4
+eason0210,25774050,2
+onlyck,25774050,4
+huangzhn,25774050,4
+chaiyanchao,25774050,4
+narcisusss,25774050,4
+PsyLadyTricky,25774050,4
+58341704,25774050,4
+54961193,25774050,4
+125495885,25774050,3
+electric_chao,25774050,4
+56376401,25774050,4
+1182787,25774050,4
+taoyisanya,25774050,4
+zzfznp,25774050,3
+sskllt,25774050,4
+ca5h,25774050,3
+68237085,25774050,4
+43192436,25774050,5
+35938658,25774050,4
+35938658,25774050,4
+gsjivy,25774050,5
+49168685,25774050,4
+46055019,25774050,5
+65894356,25774050,3
+67952037,25774050,3
+xianxiansushou,25774050,4
+jh072,25774050,3
+75874484,25774050,4
+51904815,25774050,4
+42044541,25774050,-1
+46511204,25774050,4
+66361496,25774050,3
+yuanqing630,25774050,3
+4715775,25774050,3
+49711912,25774050,3
+67687447,25774050,4
+lxu,25774050,3
+cattyiyoungeoon,25774050,4
+127606527,25774050,4
+115185293,25774050,4
+viola-x,25774050,3
+54258626,25774050,3
+75822460,25774050,5
+37058834,25774050,5
+68759948,25774050,4
+blacklisted,25774050,4
+cloudys,25774050,3
+119922273,25774050,4
+127762081,25774050,2
+tianxkong,25774050,3
+65073470,25774050,4
+116614076,25774050,3
+120405318,25774050,3
+jean4you,25774050,4
+68893935,25774050,4
+54030490,25774050,4
+1780764,25774050,3
+49567226,25774050,4
+75268479,25774050,4
+56239687,25774050,4
+konggupupu,25774050,3
+59458875,25774050,3
+44078114,25774050,3
+132321984,25774050,4
+49764228,25774050,4
+90701256,25774050,4
+xc2839989188,25774050,4
+woainikakashi,25774050,4
+79437046,25774050,-1
+71089461,25774050,4
+imai,25774050,5
+62944813,25774050,3
+hg9999st,25774050,4
+64875949,25774050,4
+87069686,25774050,4
+64406910,25774050,4
+51542054,25774050,2
+harryheyang,25774050,4
+62159923,25774050,4
+62159923,25774050,4
+AirScript,25774050,5
+sj1_1ei,25774050,4
+47265787,25774050,3
+ovanisho,25774050,3
+47701816,25774050,3
+Amolittlergirl,25774050,-1
+2108133,25774050,4
+132092156,25774050,3
+3797778,25774050,2
+80111630,25774050,4
+103769558,25774050,3
+87605757,25774050,3
+127180672,25774050,3
+46466887,25774050,4
+45354414,25774050,4
+132034967,25774050,4
+56435930,25774050,3
+97378875,25774050,3
+pamelayang,25774050,4
+41452836,25774050,4
+70386523,25774050,5
+63915564,25774050,2
+55333647,25774050,4
+132530411,25774050,4
+konfer,25774050,4
+4538596,25774050,3
+mmcv,25774050,4
+mingedou,25774050,4
+103619776,25774050,5
+johnmcclane,25774050,4
+born_to_die,25774050,2
+dongshuiqiang,25774050,4
+63012050,25774050,4
+liyuantown,25774050,4
+soulfighter0712,25774050,4
+79522404,25774050,5
+39061280,25774050,-1
+132339853,25774050,4
+yzr8979,25774050,4
+teatiara,25774050,-1
+49399221,25774050,3
+18586571,25774050,3
+52873640,25774050,3
+59929388,25774050,2
+goodbyemyprince,25774050,3
+127972732,25774050,4
+humanafterall,25774050,4
+2162256,25774050,3
+41936951,25774050,4
+120735552,25774050,5
+39421864,25774050,5
+130408604,25774050,4
+L82yua,25774050,3
+1762955,25774050,3
+57859400,25774050,5
+46395501,25774050,3
+justico,25774050,5
+54158411,25774050,4
+cbeam,25774050,3
+cbeam,25774050,3
+119702092,25774050,4
+66753862,25774050,4
+72984075,25774050,3
+jack13,25774050,4
+39376423,25774050,4
+3088700,25774050,5
+59105676,25774050,4
+57307141,25774050,4
+56071635,25774050,5
+yin56,25774050,2
+yxcccc,25774050,5
+1844983,25774050,3
+tolyi,25774050,1
+50430721,25774050,4
+63140304,25774050,3
+48876211,25774050,-1
+2348496,25774050,4
+37778234,25774050,4
+85671125,25774050,3
+131551681,25774050,5
+lqqjo,25774050,2
+56524776,25774050,4
+54703119,25774050,4
+66456284,25774050,4
+2213454,25774050,3
+2183091,25774050,2
+60016722,25774050,4
+thxai,25774050,3
+46634841,25774050,4
+pudpudqueen,25774050,5
+103251122,25774050,4
+127877536,25774050,4
+132230589,25774050,3
+115657007,25774050,3
+79210098,25774050,5
+82550997,25774050,1
+imdiaosi,25774050,3
+RainbowRen,25774050,3
+alicialin,25774050,3
+annho,25774050,4
+1956404,25774050,5
+65187145,25774050,4
+xixixiaoye,25774050,5
+43961045,25774050,4
+132162263,25774050,3
+58777523,25774050,3
+79823709,25774050,4
+dongxuanlan,25774050,4
+57665696,25774050,3
+29374473,25774050,3
+yushu25,25774050,3
+74573040,25774050,4
+Karol0411,25774050,4
+97491371,25774050,4
+63086434,25774050,5
+luoquan,25774050,4
+echo7forest,25774050,4
+Leo93727,25774050,4
+yiyedu,25774050,3
+yiyedu,25774050,3
+4603620,25774050,4
+51483335,25774050,4
+84195999,25774050,4
+46341793,25774050,4
+ecolin,25774050,4
+76655932,25774050,5
+49576668,25774050,3
+iloveeuro,25774050,3
+66056067,25774050,4
+romanbaby,25774050,4
+2670645,25774050,4
+ouekitei,25774050,3
+67878115,25774050,5
+fighting-yamap,25774050,5
+shizishou,25774050,3
+csj0824,25774050,4
+Yinaly,25774050,4
+48331572,25774050,2
+94420378,25774050,3
+46534834,25774050,5
+57437837,25774050,5
+33392381,25774050,4
+43098377,25774050,3
+43650596,25774050,5
+79071564,25774050,3
+hanlu1991,25774050,4
+68160177,25774050,3
+Luptior,25774050,5
+2678002,25774050,3
+gogowa,25774050,3
+49123516,25774050,3
+4596560,25774050,3
+45586906,25774050,4
+79631427,25774050,5
+68773846,25774050,4
+68881946,25774050,4
+Y_juana,25774050,4
+chending,25774050,3
+56862396,25774050,5
+56862396,25774050,5
+easternmoon,25774050,4
+38184816,25774050,4
+50093878,25774050,2
+cbw506021,25774050,4
+48311359,25774050,4
+69036663,25774050,4
+pppryo,25774050,4
+83838296,25774050,5
+crankysophia,25774050,4
+125281406,25774050,2
+48054921,25774050,3
+FAIRYfire,25774050,4
+47576659,25774050,3
+56057081,25774050,3
+52782307,25774050,5
+64473979,25774050,-1
+70654982,25774050,3
+78214422,25774050,3
+72311300,25774050,2
+60015294,25774050,3
+xiguaguagua,25774050,4
+63015769,25774050,3
+53863717,25774050,-1
+57714176,25774050,4
+52943807,25774050,4
+62497997,25774050,4
+45383849,25774050,5
+2673058,25774050,4
+88880224,25774050,3
+3719668,25774050,4
+48349088,25774050,3
+78651584,25774050,4
+3412571,25774050,4
+eatbananamoku,25774050,5
+115985324,25774050,4
+55006906,25774050,3
+3661228,25774050,3
+little_kevin,25774050,4
+57923722,25774050,5
+70149072,25774050,4
+53581045,25774050,4
+slevin1983,25774050,4
+49145731,25774050,4
+62369741,25774050,3
+104171683,25774050,3
+63647766,25774050,4
+57142558,25774050,3
+mecsta,25774050,3
+84599749,25774050,4
+61726072,25774050,4
+47243412,25774050,2
+Susieimayday,25774050,5
+73675255,25774050,1
+52630452,25774050,3
+49045557,25774050,4
+yahz,25774050,4
+KinO_O,25774050,4
+1700673,25774050,3
+48836738,25774050,3
+gsh1215,25774050,5
+snakeeee,25774050,4
+dreamlmj,25774050,4
+17977967,25774050,4
+119874761,25774050,4
+48859035,25774050,4
+71946766,25774050,4
+42298202,25774050,3
+122116691,25774050,3
+84499099,25774050,5
+34557052,25774050,4
+41629007,25774050,4
+41260318,25774050,3
+47391200,25774050,5
+4431205,25774050,4
+sheensheen,25774050,4
+46529547,25774050,4
+icecyoko,25774050,3
+punchmary,25774050,-1
+60617341,25774050,5
+auror630,25774050,5
+54081588,25774050,4
+123235799,25774050,4
+47781280,25774050,3
+flycanfly,25774050,-1
+64308036,25774050,3
+zhaifei-movie,25774050,3
+2943338,25774050,4
+67293436,25774050,4
+59290556,25774050,3
+qiluoluo,25774050,4
+79127642,25774050,4
+xiaoguaniu,25774050,3
+104818700,25774050,4
+129672781,25774050,3
+erming,25774050,3
+zooyam,25774050,4
+72657219,25774050,4
+128522293,25774050,4
+2085138,25774050,3
+bfa1950,25774050,4
+58035376,25774050,-1
+yooogurt,25774050,3
+miss77-jin,25774050,3
+hear_linda,25774050,-1
+63451140,25774050,4
+58549511,25774050,3
+SANDMANECW,25774050,3
+115097585,25774050,4
+112133874,25774050,3
+87602683,25774050,3
+tomop,25774050,1
+2579342,25774050,3
+Orange_Milk,25774050,3
+62416822,25774050,3
+3408360,25774050,3
+97364834,25774050,5
+vmbai,25774050,4
+94422178,25774050,2
+84407113,25774050,5
+62124340,25774050,4
+HJS_L,25774050,3
+lovely_love,25774050,4
+61497577,25774050,3
+81474835,25774050,3
+77626905,25774050,4
+linlinzoo,25774050,4
+84171597,25774050,4
+livia112,25774050,4
+HystericBlue,25774050,5
+mercuryleehom,25774050,4
+freezinggl,25774050,3
+34316490,25774050,3
+gongzitian,25774050,4
+49935216,25774050,4
+87705662,25774050,5
+100418686,25774050,3
+heisland,25774050,4
+VLR,25774050,4
+fan_tuan,25774050,4
+54069821,25774050,3
+44162461,25774050,4
+105530942,25774050,5
+121807870,25774050,5
+1183940,25774050,-1
+81593108,25774050,4
+Corrinne,25774050,3
+pen,25774050,4
+128001375,25774050,4
+59368060,25774050,5
+4294308,25774050,3
+yaoez,25774050,3
+52975858,25774050,4
+52408414,25774050,3
+aibamoe,25774050,4
+45826317,25774050,5
+65123072,25774050,3
+79356010,25774050,4
+59106111,25774050,4
+2386302,25774050,5
+cosy0825,25774050,2
+65696190,25774050,4
+washingstar,25774050,4
+129751512,25774050,3
+126081349,25774050,4
+50260645,25774050,3
+toNANAto,25774050,4
+3801925,25774050,3
+sumisumi,25774050,3
+zc378810767,25774050,4
+66356456,25774050,2
+47492303,25774050,4
+77203417,25774050,3
+64708561,25774050,3
+3340428,25774050,4
+66341284,25774050,4
+lemo4ever,25774050,5
+3119464,25774050,4
+23766862,25774050,4
+50111985,25774050,4
+50111985,25774050,4
+musique,25774050,4
+92796739,25774050,4
+130227138,25774050,4
+sona302,25774050,4
+56697006,25774050,3
+63459155,25774050,3
+58338006,25774050,4
+heidiholic,25774050,4
+cecilia9624,25774050,5
+46360410,25774050,2
+51227416,25774050,4
+68698952,25774050,3
+jack77gyq,25774050,5
+ruo,25774050,4
+48737123,25774050,5
+53505148,25774050,5
+59305765,25774050,3
+54215342,25774050,3
+blue_stone,25774050,3
+51416132,25774050,4
+1681382,25774050,4
+vera-cheng,25774050,4
+53789609,25774050,4
+130806444,25774050,3
+zccdtc,25774050,4
+3340559,25774050,4
+ilovejay79118,25774050,4
+40027917,25774050,3
+58121967,25774050,3
+69970746,25774050,4
+xiaochanzi,25774050,3
+59348979,25774050,3
+beibeilaner,25774050,4
+millylyu,25774050,4
+49645185,25774050,5
+2933839,25774050,3
+103048113,25774050,4
+conglin2537,25774050,3
+49879461,25774050,4
+59285776,25774050,4
+antoniagreen,25774050,3
+oiegg,25774050,4
+40395158,25774050,4
+2428631,25774050,5
+47190086,25774050,5
+3065583,25774050,4
+VendettaChild,25774050,-1
+43780153,25774050,4
+37335417,25774050,4
+kuroneko2002,25774050,4
+guyuejiayu,25774050,4
+66036408,25774050,4
+4166320,25774050,4
+114353499,25774050,3
+124384968,25774050,4
+56400825,25774050,4
+64775243,25774050,4
+xx_jmlx,25774050,3
+Smile...,25774050,4
+127345819,25774050,3
+2412177,25774050,4
+42296972,25774050,3
+25509723,25774050,4
+47929108,25774050,4
+snowbusy,25774050,-1
+p0pking,25774050,4
+xuaoling,25774050,4
+61405029,25774050,3
+74680055,25774050,4
+76921272,25774050,2
+64595511,25774050,4
+1128775,25774050,-1
+43698973,25774050,3
+2445728,25774050,-1
+49191008,25774050,3
+120418587,25774050,4
+chenxu110,25774050,4
+ZY-Monster,25774050,4
+88077335,25774050,3
+105804171,25774050,2
+62500230,25774050,4
+28276516,25774050,4
+aiziyuer,25774050,4
+48043628,25774050,4
+119589261,25774050,5
+44854145,25774050,4
+cyssnk,25774050,4
+92637851,25774050,3
+67795117,25774050,5
+78710041,25774050,4
+ikuma,25774050,-1
+mushengjie,25774050,3
+73032035,25774050,4
+128641812,25774050,4
+64020690,25774050,4
+49002380,25774050,5
+69585663,25774050,5
+29759303,25774050,1
+59790169,25774050,4
+54810722,25774050,3
+Cosmo--,25774050,4
+44777564,25774050,4
+63319802,25774050,3
+sweetloli,25774050,4
+1600664,25774050,4
+caixiaofeng1992,25774050,4
+90553636,25774050,5
+gtl,25774050,1
+2326252,25774050,-1
+63776141,25774050,4
+1234338,25774050,4
+3430040,25774050,5
+crucifix_fox,25774050,4
+56666765,25774050,5
+2761343,25774050,-1
+14745605,25774050,4
+69814261,25774050,4
+66744618,25774050,3
+96948133,25774050,4
+72257329,25774050,4
+59323757,25774050,4
+60624243,25774050,3
+92635717,25774050,4
+cyy9828,25774050,4
+45975024,25774050,4
+80209748,25774050,3
+jiangliuer0518,25774050,3
+120985349,25774050,4
+flong,25774050,3
+4595070,25774050,3
+28166395,25774050,3
+raquelycidas,25774050,-1
+3328964,25774050,4
+92301412,25774050,4
+vittek,25774050,4
+51436731,25774050,3
+63822026,25774050,4
+61863577,25774050,-1
+51239884,25774050,4
+51239884,25774050,4
+shihuayiduo,25774050,5
+68290528,25774050,4
+46569401,25774050,3
+50245903,25774050,4
+52823341,25774050,5
+54860147,25774050,4
+43327545,25774050,4
+douaisha,25774050,3
+32709376,25774050,3
+108821133,25774050,4
+allblue,25774050,4
+130400247,25774050,-1
+68528163,25774050,4
+89465044,25774050,4
+wheel,25774050,4
+44671906,25774050,3
+58901835,25774050,4
+soude,25774050,3
+80954825,25774050,5
+Solo-n,25774050,4
+80461629,25774050,3
+78906906,25774050,4
+70468331,25774050,4
+xisochakaihuale,25774050,4
+67184394,25774050,3
+67615408,25774050,5
+33684021,25774050,3
+52460447,25774050,3
+47289236,25774050,4
+58578065,25774050,5
+manaren,25774050,4
+37402473,25774050,4
+dongyaohui,25774050,4
+wezhang,25774050,4
+31698933,25774050,4
+88969146,25774050,3
+57205524,25774050,4
+52870405,25774050,4
+53678082,25774050,4
+idontneedyou,25774050,4
+shingo3001,25774050,5
+46781081,25774050,5
+32913056,25774050,5
+53273650,25774050,4
+55940284,25774050,4
+49474399,25774050,2
+66767418,25774050,4
+91024874,25774050,3
+48188220,25774050,4
+deppdeep,25774050,5
+65923850,25774050,4
+ricbabe,25774050,3
+goofy,25774050,3
+MsLulu,25774050,3
+42380844,25774050,3
+devildie4,25774050,3
+qiuqiran,25774050,5
+afumini,25774050,2
+91586235,25774050,4
+114733320,25774050,5
+Bebefore,25774050,4
+78473890,25774050,-1
+2655191,25774050,4
+qibacha,25774050,3
+53033860,25774050,4
+63707938,25774050,3
+51378582,25774050,1
+54463600,25774050,3
+126644059,25774050,3
+52721473,25774050,4
+54664894,25774050,3
+48894602,25774050,4
+nbyuan,25774050,3
+57637867,25774050,3
+jozenky,25774050,4
+48264121,25774050,3
+60808695,25774050,4
+49886227,25774050,4
+48440561,25774050,5
+QQ3BlueRose,25774050,3
+pkubocai,25774050,4
+singcaca,25774050,3
+tripster,25774050,4
+81098432,25774050,4
+kejinlong,25774050,3
+12769559,25774050,3
+81057765,25774050,5
+67751186,25774050,4
+35158141,25774050,4
+ring_ring,25774050,5
+2867984,25774050,4
+59101282,25774050,3
+4134812,25774050,4
+6343940,25774050,4
+ideyes,25774050,3
+62451151,25774050,3
+huoxiaolan,25774050,5
+shalouzhitong,25774050,4
+73031414,25774050,3
+80854961,25774050,5
+di.dao..,25774050,4
+Shynezzrui,25774050,3
+Memorial_Sue,25774050,4
+myjeajoon,25774050,4
+4104841,25774050,4
+layla1990,25774050,5
+37448450,25774050,4
+31693879,25774050,5
+evilon,25774050,3
+ets,25774050,4
+4421106,25774050,5
+85476027,25774050,4
+sanhao_love,25774050,4
+tinyno7,25774050,4
+springl31120,25774050,5
+51018096,25774050,5
+allwordswrong,25774050,3
+1450381,25774050,4
+31613597,25774050,5
+122191146,25774050,5
+lienhe,25774050,3
+36950087,25774050,-1
+127377114,25774050,1
+67322553,25774050,4
+49116772,25774050,1
+76554051,25774050,5
+60997064,25774050,2
+43215145,25774050,3
+4584253,25774050,5
+66966914,25774050,4
+4842930,25774050,4
+asvra,25774050,4
+126334650,25774050,4
+amanjj,25774050,-1
+hannat,25774050,3
+bluesky1314,25774050,1
+loyjve,25774050,3
+suntongxie,25774050,5
+2036072,25774050,4
+62259006,25774050,4
+Ann951129,25774050,-1
+58011320,25774050,4
+55649933,25774050,5
+wmywbyt,25774050,4
+zpavel,25774050,4
+lidadan,25774050,4
+kaixian,25774050,3
+74105180,25774050,4
+26907758,25774050,4
+tola95,25774050,4
+58509538,25774050,4
+58649588,25774050,4
+catdiudiu,25774050,3
+64826972,25774050,3
+snowelf,25774050,4
+lukemdk,25774050,4
+slcws,25774050,4
+63761410,25774050,3
+61955906,25774050,4
+117184816,25774050,4
+slimseven,25774050,3
+ekiz,25774050,4
+sherry5241,25774050,4
+55018266,25774050,3
+77557534,25774050,3
+15441389,25774050,3
+48812858,25774050,4
+68525002,25774050,5
+36784029,25774050,4
+71974219,25774050,4
+38766642,25774050,4
+69889786,25774050,5
+78934649,25774050,4
+solance,25774050,4
+73294226,25774050,5
+41686662,25774050,3
+121628266,25774050,5
+yuxuanji,25774050,5
+sakimay,25774050,4
+50057469,25774050,4
+op_julie,25774050,4
+39015968,25774050,5
+78721241,25774050,3
+128760790,25774050,4
+39274503,25774050,4
+58451504,25774050,4
+89341129,25774050,5
+erikliam,25774050,5
+66831677,25774050,5
+3130327,25774050,4
+silviaz,25774050,4
+43430222,25774050,4
+sacwr,25774050,4
+towelie,25774050,3
+55609637,25774050,4
+littlekunsheng,25774050,3
+129853005,25774050,3
+58433028,25774050,4
+VIVIGertrud,25774050,1
+aaaaaaaaaaa,25774050,4
+128494995,25774050,3
+50538374,25774050,5
+51583306,25774050,3
+megane0931,25774050,3
+nakunamanihong,25774050,4
+117027234,25774050,5
+AAAxiaowei,25774050,3
+MoGu_chun,25774050,4
+dreamingSUN,25774050,-1
+ask4more,25774050,3
+cazze,25774050,4
+momokoochan,25774050,2
+55886831,25774050,4
+issdream,25774050,3
+60163157,25774050,4
+ninamoka,25774050,5
+Liz_w,25774050,4
+MirrorTarkovsky,25774050,3
+66633074,25774050,4
+66633074,25774050,4
+77066905,25774050,5
+37230449,25774050,4
+2292568,25774050,4
+1133756,25774050,1
+58466766,25774050,3
+98096679,25774050,4
+22263173,25774050,4
+changelin,25774050,5
+MR.Pain,25774050,4
+56686931,25774050,5
+67708176,25774050,5
+61708505,25774050,3
+3597938,25774050,4
+27624982,25774050,4
+25960765,25774050,4
+57523056,25774050,4
+F-X-MAN,25774050,4
+104633841,25774050,5
+66132423,25774050,3
+66782031,25774050,4
+helvinyang,25774050,4
+127504858,25774050,4
+53368926,25774050,4
+48960199,25774050,5
+60814711,25774050,5
+2745956,25774050,4
+gorlee,25774050,4
+79535386,25774050,3
+2260580,25774050,4
+4388033,25774050,4
+flymelody,25774050,5
+53457477,25774050,4
+jeanchin,25774050,-1
+59951804,25774050,4
+104368418,25774050,4
+lyricless,25774050,4
+77868057,25774050,3
+waiwai7,25774050,3
+buzaijide,25774050,-1
+78164697,25774050,5
+xsyn,25774050,5
+summerious,25774050,4
+beto,25774050,3
+BackToNight,25774050,4
+rusaki,25774050,3
+128315720,25774050,4
+88285360,25774050,4
+59010462,25774050,3
+45397322,25774050,4
+67796115,25774050,4
+yanhan40,25774050,5
+57537354,25774050,5
+Lotushuo,25774050,3
+108282995,25774050,4
+green912,25774050,4
+81033865,25774050,4
+47050600,25774050,4
+40446795,25774050,4
+50271561,25774050,5
+veverlee,25774050,4
+qiulingood,25774050,4
+60109497,25774050,5
+irene_kirakira,25774050,3
+NapCote,25774050,3
+venicedream,25774050,5
+2527162,25774050,4
+54772504,25774050,4
+70895665,25774050,-1
+34740477,25774050,4
+54437272,25774050,3
+129459715,25774050,3
+58432395,25774050,3
+3760862,25774050,-1
+51670628,25774050,4
+88345379,25774050,4
+58421705,25774050,4
+27258861,25774050,-1
+hidesound,25774050,5
+45080512,25774050,3
+chen9h,25774050,3
+53083409,25774050,4
+61733513,25774050,4
+nkkun,25774050,4
+120092472,25774050,3
+43558241,25774050,3
+115593440,25774050,3
+56559303,25774050,4
+trianglecat,25774050,5
+76290643,25774050,3
+70388691,25774050,3
+justinran,25774050,3
+85411604,25774050,-1
+yshzzh,25774050,5
+55439926,25774050,4
+kagakuka,25774050,3
+67629272,25774050,5
+Cliaoliao,25774050,3
+2600833,25774050,3
+3949776,25774050,3
+3949776,25774050,3
+74089465,25774050,3
+bluebamboo,25774050,3
+48919879,25774050,4
+kirahome,25774050,3
+49134732,25774050,4
+64182296,25774050,4
+49724335,25774050,4
+easonkoko,25774050,3
+81645668,25774050,4
+riotriot,25774050,2
+mydar,25774050,-1
+127728111,25774050,3
+3807127,25774050,4
+53487428,25774050,3
+60222114,25774050,3
+56998996,25774050,3
+AiryLam,25774050,3
+zhr19951204,25774050,4
+81404706,25774050,3
+81404706,25774050,3
+128012079,25774050,4
+longhua,25774050,3
+3038376,25774050,3
+60882915,25774050,3
+52840437,25774050,1
+srada,25774050,4
+93414605,25774050,4
+73684185,25774050,2
+106730683,25774050,2
+50629676,25774050,4
+vanessamoon,25774050,3
+overlook,25774050,3
+Bloodworks,25774050,4
+64359754,25774050,5
+51277324,25774050,5
+126168366,25774050,3
+3344824,25774050,4
+125281874,25774050,3
+74115192,25774050,2
+53443769,25774050,4
+lsg_lsg,25774050,4
+36556180,25774050,5
+70357022,25774050,5
+2234320,25774050,4
+4404354,25774050,4
+63579771,25774050,3
+74389768,25774050,4
+7134514,25774050,2
+zishy,25774050,5
+65494746,25774050,3
+115368831,25774050,3
+sevenVSseven,25774050,4
+61226324,25774050,2
+71057399,25774050,4
+2750410,25774050,3
+103105403,25774050,4
+9628483,25774050,3
+yoyo3105,25774050,4
+127345355,25774050,3
+75606824,25774050,3
+43263362,25774050,-1
+107911126,25774050,4
+2615957,25774050,4
+31736711,25774050,3
+hiyejia,25774050,3
+1823227,25774050,4
+faunus,25774050,2
+41220048,25774050,5
+83880297,25774050,2
+ziv_tmac,25774050,4
+77349857,25774050,3
+louis15yao,25774050,4
+lingfriendly,25774050,3
+a165358312,25774050,3
+zxff111627,25774050,4
+60194241,25774050,2
+doa,25774050,4
+126849700,25774050,3
+67784702,25774050,2
+2232768,25774050,4
+34805156,25774050,2
+44205697,25774050,4
+50932809,25774050,4
+wll789ly,25774050,4
+xiaopjie,25774050,3
+2559021,25774050,4
+52344254,25774050,4
+57646854,25774050,4
+2595929,25774050,4
+76287331,25774050,3
+51735678,25774050,4
+4211678,25774050,2
+57591346,25774050,4
+hana0707,25774050,4
+52324732,25774050,-1
+xiangdahai,25774050,3
+55447460,25774050,4
+52726734,25774050,5
+102466588,25774050,4
+102466588,25774050,4
+81462680,25774050,3
+4422068,25774050,4
+cyee,25774050,4
+84781945,25774050,4
+emd12,25774050,5
+57805220,25774050,4
+57630941,25774050,4
+lupuline,25774050,4
+54430554,25774050,3
+55550016,25774050,4
+66161843,25774050,4
+66779005,25774050,3
+39121054,25774050,4
+47773223,25774050,3
+44852938,25774050,3
+88033258,25774050,4
+67009587,25774050,2
+36470321,25774050,-1
+65009709,25774050,2
+65009709,25774050,2
+Popdai,25774050,5
+baibi,25774050,4
+mingfeng1988,25774050,4
+37429069,25774050,3
+55942870,25774050,4
+lovemj4ever,25774050,4
+ke-ke,25774050,5
+M.chaton,25774050,4
+50924290,25774050,4
+52167842,25774050,-1
+48681537,25774050,4
+85156145,25774050,4
+42724768,25774050,4
+liangyizhu,25774050,4
+63813072,25774050,4
+53988209,25774050,2
+66817842,25774050,4
+3623252,25774050,3
+71154050,25774050,5
+71154050,25774050,5
+2984009,25774050,4
+55020304,25774050,3
+47508082,25774050,3
+cainroziel,25774050,4
+49807065,25774050,4
+1335533,25774050,3
+clockorange,25774050,2
+AnguesZoe,25774050,3
+69773745,25774050,3
+68952401,25774050,4
+54984584,25774050,3
+14342921,25774050,4
+yoyodove,25774050,4
+huantong,25774050,4
+crazies,25774050,3
+Jerry-Zeng,25774050,4
+75809533,25774050,3
+Nicky007,25774050,3
+123545109,25774050,4
+123545109,25774050,4
+68961164,25774050,4
+AndylovnSK,25774050,1
+foxyfoxyfox,25774050,4
+64007556,25774050,-1
+2946787,25774050,3
+48195937,25774050,4
+Kevin3,25774050,3
+128083770,25774050,3
+51773323,25774050,3
+48214032,25774050,3
+37646652,25774050,4
+zsc1995,25774050,4
+chenhuayang,25774050,3
+allen_y,25774050,4
+3982592,25774050,3
+ayane,25774050,3
+57370195,25774050,4
+46846458,25774050,5
+sunyangchina,25774050,4
+45804814,25774050,4
+gdhdun,25774050,3
+55446081,25774050,4
+AcousticPerfume,25774050,3
+98110557,25774050,4
+30005056,25774050,4
+103771999,25774050,3
+1268355,25774050,4
+1782017,25774050,5
+Charloo,25774050,4
+blackboard0215,25774050,4
+46043026,25774050,3
+seala,25774050,4
+WendiMurdoch,25774050,2
+yaogaosheng,25774050,4
+4685050,25774050,4
+duhuitang,25774050,2
+Plumed__Serpent,25774050,3
+Dev1antKoMi,25774050,3
+52685312,25774050,3
+lamnene,25774050,2
+yuyimoscow,25774050,5
+58189944,25774050,3
+69751106,25774050,3
+potar,25774050,5
+79016211,25774050,5
+siutakk,25774050,5
+69833008,25774050,3
+strikeman,25774050,4
+17111288,25774050,3
+1801052,25774050,3
+irenemi,25774050,3
+sq845020914,25774050,4
+chestericc,25774050,2
+108077404,25774050,5
+99707810,25774050,4
+duokuluo,25774050,4
+decemfirst,25774050,3
+59762493,25774050,3
+88171857,25774050,4
+momojoke,25774050,1
+qinxuanzi,25774050,4
+2305590,25774050,5
+nicole900116,25774050,5
+kakasissi,25774050,3
+45108609,25774050,3
+69990594,25774050,2
+miu-Wolf,25774050,3
+EloiseL,25774050,4
+48033961,25774050,4
+g1oveg,25774050,4
+chenhongyu1222,25774050,4
+watiler,25774050,4
+47263713,25774050,4
+YAMAHA_GO,25774050,3
+2009122,25774050,3
+april.fool,25774050,4
+120466803,25774050,3
+fkxhd,25774050,3
+4627268,25774050,3
+75792815,25774050,5
+102621793,25774050,4
+bernadettttttte,25774050,4
+ruler21san,25774050,-1
+xiaobai_zw,25774050,4
+59571249,25774050,5
+4381583,25774050,4
+3247513,25774050,4
+81245114,25774050,4
+yeyinger,25774050,3
+62662196,25774050,4
+zhchtcm,25774050,4
+dormancy,25774050,4
+59253447,25774050,3
+47509216,25774050,5
+35739270,25774050,3
+shadowlover0816,25774050,4
+2827733,25774050,4
+pbc0615,25774050,4
+61524961,25774050,4
+44595410,25774050,4
+57771528,25774050,3
+46039273,25774050,4
+58472013,25774050,4
+lewuleyi,25774050,3
+53934829,25774050,4
+82238487,25774050,4
+94380874,25774050,2
+53773948,25774050,2
+liumang2,25774050,3
+50137334,25774050,4
+Lambda-q,25774050,4
+103492790,25774050,3
+wishknow,25774050,5
+summer_ending,25774050,3
+q549767971,25774050,4
+82910448,25774050,5
+freedom9611,25774050,3
+67742715,25774050,3
+41566646,25774050,3
+3969292,25774050,3
+56143102,25774050,4
+102408048,25774050,4
+foxgarden,25774050,4
+58618323,25774050,5
+like-a-star,25774050,4
+56797832,25774050,5
+sylcrannog,25774050,4
+30067864,25774050,-1
+61807648,25774050,3
+wodequanpin,25774050,-1
+huangjungeng,25774050,3
+suck-man,25774050,4
+kingkongofkhan,25774050,4
+waldo0121,25774050,4
+lianciyin,25774050,5
+39220654,25774050,4
+51344773,25774050,4
+xiaomujunjun,25774050,3
+4109199,25774050,3
+55287270,25774050,-1
+115622817,25774050,3
+tomosakana,25774050,3
+6821770,25774050,3
+58101201,25774050,4
+poormelon,25774050,5
+64618783,25774050,3
+6961213,25774050,4
+75077274,25774050,4
+48091725,25774050,4
+49785601,25774050,4
+70308638,25774050,4
+1648909,25774050,1
+etfromchina,25774050,4
+jane2010,25774050,4
+47547173,25774050,4
+35198616,25774050,4
+3500331,25774050,4
+53719859,25774050,4
+typezero,25774050,3
+53474368,25774050,4
+junlucy,25774050,4
+7219773,25774050,4
+41165476,25774050,4
+29800647,25774050,4
+69047251,25774050,5
+4345045,25774050,3
+67544902,25774050,5
+61261594,25774050,2
+41307413,25774050,4
+JoyMcCartney,25774050,3
+46812658,25774050,4
+59327181,25774050,2
+31172327,25774050,5
+colinhayashi,25774050,4
+89108079,25774050,5
+happysadop,25774050,4
+3007031,25774050,-1
+shjolin,25774050,3
+looknana,25774050,3
+48639175,25774050,3
+seven417360938,25774050,3
+piaofu-bu,25774050,3
+14357343,25774050,4
+serious_Joker,25774050,2
+ZebraBookstore,25774050,3
+kokia233,25774050,5
+65375233,25774050,-1
+68592556,25774050,4
+65982623,25774050,4
+dong_zi,25774050,4
+102594722,25774050,4
+65776181,25774050,4
+joycelinking,25774050,3
+ceerqingting,25774050,4
+wyfsmd,25774050,3
+luckfu,25774050,4
+flyfy,25774050,5
+40017309,25774050,3
+4876430,25774050,3
+helloface0819,25774050,4
+48034586,25774050,3
+58569504,25774050,4
+106509657,25774050,5
+cody555,25774050,3
+microogle,25774050,3
+49712271,25774050,4
+51463036,25774050,4
+32920328,25774050,4
+46845043,25774050,5
+48894607,25774050,5
+eleanor-xia,25774050,4
+moszz,25774050,5
+74742103,25774050,3
+quanquan0616,25774050,4
+37369275,25774050,4
+52390566,25774050,4
+42535612,25774050,4
+103409828,25774050,4
+12654907,25774050,3
+gothickid,25774050,3
+69352434,25774050,-1
+ycy19870313,25774050,3
+54556831,25774050,5
+64123295,25774050,4
+xuyimeng,25774050,3
+lesliezhang1992,25774050,3
+36863032,25774050,2
+msycle,25774050,3
+50023640,25774050,3
+39937848,25774050,4
+septenary77,25774050,4
+86714653,25774050,4
+hibikino2-7,25774050,4
+yidachen,25774050,4
+maoamao,25774050,3
+72447323,25774050,2
+69126111,25774050,4
+miss-rome,25774050,4
+hacchann,25774050,4
+1865210,25774050,3
+64276762,25774050,4
+36359522,25774050,3
+mislittlesummer,25774050,4
+araragikoyomi,25774050,4
+50292036,25774050,3
+73696070,25774050,4
+54003589,25774050,4
+XIZIJIAN,25774050,3
+Utopiartist,25774050,4
+ranxing,25774050,4
+wehx2,25774050,4
+mymx,25774050,4
+53050056,25774050,4
+82791782,25774050,4
+xtzz,25774050,4
+foreverjc,25774050,4
+46696173,25774050,4
+55764073,25774050,3
+115114260,25774050,-1
+3114580,25774050,3
+BMY378670541,25774050,4
+zhu-ke,25774050,4
+50983824,25774050,3
+ntz521,25774050,4
+1897616,25774050,4
+yangsheng213,25774050,4
+35200039,25774050,3
+32881100,25774050,4
+A03080515,25774050,3
+100750697,25774050,2
+shesmile,25774050,1
+4412861,25774050,5
+ukimuknow,25774050,3
+81259545,25774050,4
+89533485,25774050,3
+misstorlii,25774050,4
+87956504,25774050,5
+doctoryang,25774050,3
+jewelschen,25774050,4
+honey10151106,25774050,4
+4679354,25774050,5
+60016523,25774050,4
+4357598,25774050,3
+lovehebey,25774050,5
+lieds,25774050,5
+68318329,25774050,4
+63318519,25774050,4
+46525176,25774050,4
+63019074,25774050,4
+19734042,25774050,4
+GayScript,25774050,4
+80598638,25774050,5
+mfd2033,25774050,5
+erikson,25774050,5
+64311844,25774050,4
+1456706,25774050,3
+66112477,25774050,3
+54041697,25774050,4
+61211793,25774050,3
+126893480,25774050,5
+55806234,25774050,4
+66875139,25774050,4
+64092114,25774050,4
+wakaka1986,25774050,4
+56794004,25774050,4
+29081326,25774050,3
+58258546,25774050,4
+mocha____,25774050,4
+56660352,25774050,4
+68557847,25774050,4
+58653283,25774050,4
+9159245,25774050,-1
+3605624,25774050,4
+heartkokoro,25774050,3
+nikan,25774050,4
+67235309,25774050,4
+47977808,25774050,3
+Hallucinogens,25774050,4
+vanilla_lee,25774050,4
+lovelesshi,25774050,4
+hxp1989,25774050,3
+mili7788,25774050,3
+58614276,25774050,4
+carrieloveless,25774050,4
+yvonnessm,25774050,4
+do.care,25774050,5
+40639861,25774050,4
+2184036,25774050,3
+vliangfrank,25774050,3
+ntjht2013,25774050,3
+Fay59,25774050,4
+46261300,25774050,-1
+87353564,25774050,4
+49515197,25774050,5
+65800533,25774050,3
+89609698,25774050,4
+61328957,25774050,4
+74016648,25774050,3
+shaozhenoo,25774050,3
+bonnie_lee,25774050,4
+62619587,25774050,-1
+marage,25774050,4
+mayaryuzaki,25774050,3
+Jan,25774050,4
+54422865,25774050,4
+duducool,25774050,4
+fengshurui,25774050,-1
+66178513,25774050,3
+frankkahn,25774050,4
+47785072,25774050,3
+cupandshoe,25774050,5
+49949268,25774050,4
+silencewong,25774050,3
+46825298,25774050,5
+klo14,25774050,4
+kuma1020,25774050,4
+55817697,25774050,4
+43611862,25774050,-1
+darendaren,25774050,-1
+62304049,25774050,4
+78806633,25774050,4
+lokolifestyle,25774050,4
+54616457,25774050,-1
+64645993,25774050,2
+vinciwang,25774050,3
+48666035,25774050,5
+4232735,25774050,3
+cookiesssss,25774050,4
+3288269,25774050,4
+Stephen2046,25774050,5
+65328615,25774050,3
+88324576,25774050,3
+80915286,25774050,3
+EricBiao,25774050,2
+wenbo2003,25774050,4
+57924433,25774050,3
+87825799,25774050,2
+moweryu,25774050,5
+1767558,25774050,3
+67358323,25774050,2
+65723409,25774050,5
+unakao,25774050,5
+Ozu,25774050,4
+ellenjj,25774050,4
+DIRENGREY,25774050,4
+79593752,25774050,4
+1084576,25774050,4
+zizaitianqi,25774050,5
+58191457,25774050,4
+2404678,25774050,3
+75337227,25774050,3
+56673379,25774050,4
+pieceofshit,25774050,5
+58335462,25774050,3
+2265138,25774050,5
+goonerhuwenbo,25774050,3
+58706786,25774050,-1
+44710286,25774050,-1
+46416495,25774050,5
+3573351,25774050,5
+4480754,25774050,4
+62639346,25774050,4
+57688571,25774050,4
+1550127,25774050,3
+87551744,25774050,4
+13322302,25774050,4
+1988523,25774050,3
+picnicskins,25774050,3
+flatpeach,25774050,4
+43983045,25774050,4
+stephen.lee,25774050,3
+52094472,25774050,5
+leannnn,25774050,5
+L0ve-zL,25774050,3
+53570723,25774050,4
+68449205,25774050,4
+nekozamurai,25774050,4
+56533866,25774050,3
+jimoxing,25774050,4
+twoduaihan,25774050,4
+49345499,25774050,4
+35197924,25774050,3
+84486485,25774050,5
+57314336,25774050,4
+57030523,25774050,3
+77017255,25774050,4
+costar,25774050,4
+45858265,25774050,4
+102463790,25774050,3
+121993713,25774050,3
+dneo,25774050,2
+128091343,25774050,5
+87010317,25774050,3
+songai0609,25774050,4
+chenyedoudou,25774050,4
+1806185,25774050,3
+93892137,25774050,3
+46818877,25774050,4
+richer725,25774050,2
+87651171,25774050,4
+CraziLaura,25774050,5
+59560104,25774050,3
+montcalgary,25774050,4
+kulapika,25774050,4
+dawn.dm,25774050,4
+fish4h,25774050,3
+3725907,25774050,5
+Minimalis,25774050,4
+40078065,25774050,3
+58064521,25774050,3
+76689420,25774050,5
+benzene,25774050,4
+69292249,25774050,4
+128066557,25774050,4
+50450766,25774050,4
+3794267,25774050,4
+delicioussalad,25774050,4
+73189108,25774050,3
+59310037,25774050,2
+harashi,25774050,4
+38167160,25774050,4
+45420786,25774050,4
+3092474,25774050,4
+filmvivi,25774050,-1
+ruanxiaoyao,25774050,3
+54428123,25774050,3
+50070864,25774050,4
+50947816,25774050,4
+SokSolon,25774050,4
+87681382,25774050,-1
+lesleylau,25774050,4
+49539416,25774050,4
+qingyizheng,25774050,4
+dokodemodoa,25774050,3
+74418627,25774050,4
+50153652,25774050,5
+KissAlice,25774050,2
+3467669,25774050,4
+izhukai,25774050,2
+38587152,25774050,3
+67019496,25774050,5
+lijingxuan0205,25774050,2
+pandayuki,25774050,3
+77799876,25774050,1
+lollybomb,25774050,4
+78414144,25774050,3
+wangyi_0117,25774050,5
+51297703,25774050,4
+Iris_Ukiyoe,25774050,4
+48050176,25774050,3
+59116088,25774050,4
+41403989,25774050,4
+Janone,25774050,4
+127220777,25774050,4
+oscarly,25774050,5
+66818679,25774050,4
+cathyfeng,25774050,-1
+66385800,25774050,4
+63651252,25774050,3
+morimiru,25774050,3
+39629387,25774050,4
+49125980,25774050,4
+vicky_vampire,25774050,3
+91785401,25774050,3
+53830314,25774050,4
+pimichang,25774050,4
+65137167,25774050,4
+1412545,25774050,4
+69048627,25774050,4
+3579800,25774050,4
+FOVERyy,25774050,4
+metkee,25774050,4
+ilovehotcoffee,25774050,-1
+1602290,25774050,5
+81351219,25774050,3
+48975518,25774050,4
+3275817,25774050,4
+55807035,25774050,3
+3410802,25774050,4
+aliiiiis,25774050,3
+lingqingchun,25774050,-1
+saosaoxy,25774050,5
+Aprilo4zz,25774050,4
+dodofish,25774050,4
+LynS,25774050,3
+63675187,25774050,3
+45935133,25774050,4
+ydyie,25774050,4
+67539758,25774050,3
+60358393,25774050,5
+xiaomo1,25774050,3
+75445619,25774050,4
+jideknight,25774050,4
+Obtson,25774050,4
+22513808,25774050,4
+54983344,25774050,4
+maomao19901108,25774050,4
+AboutMary,25774050,4
+49369831,25774050,4
+Vampire0704,25774050,3
+70557882,25774050,4
+50348853,25774050,5
+56070920,25774050,3
+75328137,25774050,4
+echosmilefor,25774050,4
+62887627,25774050,3
+61705105,25774050,4
+52969700,25774050,5
+lephemera,25774050,3
+49879341,25774050,5
+ecane,25774050,4
+jaens,25774050,3
+Mulholland,25774050,3
+51882704,25774050,4
+53906378,25774050,5
+seriousz,25774050,5
+XLL86,25774050,5
+51636486,25774050,4
+q164511490,25774050,4
+84698699,25774050,4
+wushinuo,25774050,4
+MatinetHP,25774050,3
+51363896,25774050,4
+32746698,25774050,4
+48196899,25774050,3
+1779389,25774050,4
+14538646,25774050,4
+80602343,25774050,3
+52831736,25774050,5
+3519752,25774050,3
+holy-fishman,25774050,4
+54192378,25774050,2
+34568741,25774050,3
+xyanmo,25774050,4
+61748227,25774050,2
+SZH19920707,25774050,4
+1773608,25774050,3
+3722910,25774050,4
+2329339,25774050,3
+40716634,25774050,3
+78127436,25774050,4
+61747030,25774050,1
+42787791,25774050,4
+68805368,25774050,4
+4582318,25774050,4
+53847386,25774050,3
+xiaozhusi,25774050,4
+46170275,25774050,4
+103052218,25774050,3
+rosemaryii,25774050,4
+blueto,25774050,4
+55972806,25774050,4
+49416713,25774050,4
+1342961,25774050,5
+115999678,25774050,4
+79044274,25774050,1
+luohuazhu,25774050,4
+DeWatson,25774050,3
+67678452,25774050,4
+53082027,25774050,4
+e_eyore,25774050,3
+55983243,25774050,3
+leegee78,25774050,2
+116054829,25774050,5
+50438416,25774050,5
+69420876,25774050,4
+68864754,25774050,4
+vicacheung,25774050,4
+54712127,25774050,5
+77286594,25774050,1
+ixiaotong,25774050,3
+1754621,25774050,3
+45276725,25774050,5
+ak31,25774050,3
+47034969,25774050,4
+howlformousai,25774050,4
+126804729,25774050,3
+sylviapoor,25774050,4
+54114413,25774050,3
+54114413,25774050,3
+51303010,25774050,2
+OpenSpaces,25774050,5
+85333070,25774050,4
+63142024,25774050,4
+44453325,25774050,4
+nyx0115,25774050,4
+clover121,25774050,4
+61223246,25774050,4
+69134335,25774050,3
+raikonoe,25774050,3
+84046293,25774050,2
+61864299,25774050,3
+68700662,25774050,4
+22105037,25774050,3
+48166498,25774050,4
+92490871,25774050,4
+3616202,25774050,4
+48406181,25774050,5
+48226644,25774050,4
+84978868,25774050,3
+66585349,25774050,4
+zs278777745,25774050,3
+4150144,25774050,4
+mroneway,25774050,4
+nijibaby,25774050,3
+60786883,25774050,4
+59244982,25774050,3
+45871309,25774050,2
+pirate_cat,25774050,3
+hettler,25774050,5
+60485170,25774050,5
+16901476,25774050,4
+yuntun,25774050,3
+64457111,25774050,5
+55296496,25774050,3
+michaelfun,25774050,3
+oliviapalermo,25774050,4
+jupengorall,25774050,2
+yuyang1990720,25774050,5
+58135341,25774050,4
+126824613,25774050,3
+bikibiki,25774050,3
+115131162,25774050,4
+shatengxiaobao,25774050,3
+dengda,25774050,3
+aprilray,25774050,4
+61355644,25774050,3
+116073490,25774050,4
+48708746,25774050,3
+118852747,25774050,4
+cynthianewmoon,25774050,3
+4544301,25774050,4
+zuoteeth,25774050,3
+handsomegay,25774050,3
+127828408,25774050,-1
+59999106,25774050,4
+xguozi,25774050,4
+2210399,25774050,4
+SuzyMao,25774050,3
+eternalblue,25774050,4
+yichunchunshili,25774050,5
+briefyyq,25774050,3
+bxhOTZ,25774050,4
+81804736,25774050,3
+33580503,25774050,4
+115957627,25774050,4
+49017220,25774050,4
+47187501,25774050,3
+JudahXIII,25774050,4
+missunshine,25774050,3
+neverlandIvy,25774050,2
+47795348,25774050,4
+nicos,25774050,4
+2654144,25774050,4
+115822113,25774050,4
+lasiya1986,25774050,3
+87537150,25774050,4
+4175130,25774050,3
+53269895,25774050,4
+42000641,25774050,4
+37335288,25774050,2
+78389609,25774050,3
+31608680,25774050,4
+sldsz,25774050,3
+60427301,25774050,4
+baby_summer,25774050,4
+69135256,25774050,2
+57501453,25774050,4
+wiwikuang,25774050,4
+a476583825,25774050,4
+46115911,25774050,5
+61841979,25774050,5
+101818819,25774050,3
+87534295,25774050,3
+70033239,25774050,4
+47768933,25774050,5
+puffman,25774050,5
+chevalier7,25774050,4
+61331002,25774050,4
+55621323,25774050,3
+22623086,25774050,5
+56469194,25774050,4
+65645276,25774050,4
+happycat210,25774050,4
+42368147,25774050,3
+37733981,25774050,5
+66688052,25774050,3
+56969754,25774050,4
+49269799,25774050,4
+shanghairen,25774050,4
+1196187,25774050,3
+54534074,25774050,3
+46069533,25774050,4
+Stephanieman,25774050,4
+70055114,25774050,4
+114353086,25774050,4
+49275406,25774050,4
+49108399,25774050,4
+36537385,25774050,3
+2945889,25774050,4
+zhujiao,25774050,4
+35012202,25774050,5
+11508329,25774050,3
+pankida,25774050,4
+taoquanlin,25774050,3
+whenhear,25774050,4
+xiaoshuogege,25774050,3
+sicheung,25774050,4
+102220840,25774050,3
+chedan-NB,25774050,5
+14363634,25774050,4
+wzq1989,25774050,4
+66958106,25774050,5
+72728384,25774050,4
+104144015,25774050,4
+53042572,25774050,-1
+banyinxie,25774050,3
+58935563,25774050,2
+61814558,25774050,4
+61814558,25774050,4
+carmen8212,25774050,3
+72522615,25774050,4
+hekahuiqu,25774050,3
+lishidai93,25774050,3
+49662983,25774050,3
+124900603,25774050,3
+35578527,25774050,4
+68584250,25774050,4
+37242209,25774050,4
+4290135,25774050,3
+65369148,25774050,4
+54056952,25774050,3
+103208454,25774050,5
+aki11306991,25774050,5
+59752375,25774050,4
+mushishisora,25774050,5
+61953501,25774050,4
+hidemyhead,25774050,3
+lemosama,25774050,4
+74916567,25774050,4
+huangwei0079,25774050,4
+milva,25774050,3
+15439490,25774050,4
+43200748,25774050,3
+fuyuneko,25774050,4
+34011153,25774050,-1
+70006548,25774050,5
+55566255,25774050,5
+61428660,25774050,-1
+103479758,25774050,3
+79453323,25774050,4
+14352147,25774050,4
+100314397,25774050,4
+57347678,25774050,5
+Cao-Wei,25774050,3
+29822208,25774050,3
+52046312,25774050,3
+58748815,25774050,3
+60280015,25774050,3
+chufanyan,25774050,3
+network,25774050,4
+cicifer,25774050,5
+richion,25774050,4
+saaaaaaa,25774050,4
+36621770,25774050,4
+21133666,25774050,3
+2596903,25774050,3
+123228313,25774050,3
+dewar,25774050,4
+56782841,25774050,4
+uniconx,25774050,2
+liuyisha,25774050,5
+68368822,25774050,5
+1189560,25774050,3
+7223165,25774050,4
+74701610,25774050,5
+JaceJing,25774050,3
+yangisyang,25774050,4
+wikimedia,25774050,4
+49188433,25774050,3
+49085231,25774050,4
+35904729,25774050,3
+92450111,25774050,3
+sixiaocheng,25774050,3
+45511772,25774050,4
+yuyuyuyuyuxp,25774050,4
+3536602,25774050,4
+44834038,25774050,3
+92806168,25774050,5
+61313545,25774050,4
+54838318,25774050,5
+52520125,25774050,3
+120791638,25774050,4
+1756794,25774050,3
+kingdoucloud,25774050,4
+2258985,25774050,4
+2230280,25774050,5
+102611391,25774050,5
+45787212,25774050,4
+88603301,25774050,4
+49298107,25774050,4
+124030710,25774050,4
+4839154,25774050,4
+76617093,25774050,3
+liajoy,25774050,3
+3758064,25774050,3
+57224796,25774050,3
+54415106,25774050,3
+60054131,25774050,4
+abc1985,25774050,4
+nengyinyibeiwu,25774050,3
+sonicxs,25774050,3
+3803467,25774050,-1
+47845902,25774050,4
+joyfish0912,25774050,3
+74990413,25774050,3
+62097977,25774050,5
+4784070,25774050,5
+3457326,25774050,3
+ice_pudding,25774050,3
+69195313,25774050,-1
+64398982,25774050,3
+69381063,25774050,2
+echooooohyeah,25774050,4
+lilylee1023,25774050,4
+cicici2002,25774050,3
+52897840,25774050,5
+cindyran,25774050,4
+51544027,25774050,4
+kidpain,25774050,2
+4915130,25774050,3
+grayfoxever,25774050,4
+55338878,25774050,4
+97350616,25774050,4
+92775477,25774050,3
+ODODOD,25774050,3
+18439305,25774050,4
+68812580,25774050,4
+3208134,25774050,5
+justvency,25774050,5
+58296066,25774050,4
+120009384,25774050,5
+39108497,25774050,3
+53237984,25774050,4
+65937854,25774050,4
+47853230,25774050,3
+83239863,25774050,3
+103399084,25774050,4
+willinchang,25774050,4
+wangying2325,25774050,4
+62996817,25774050,4
+69492907,25774050,5
+41193009,25774050,3
+54602120,25774050,4
+ORBR,25774050,2
+61414433,25774050,5
+47481448,25774050,4
+72319072,25774050,3
+56236572,25774050,5
+39266615,25774050,5
+40860942,25774050,4
+jj-lee,25774050,4
+32717401,25774050,5
+52762831,25774050,4
+46862579,25774050,4
+62831753,25774050,3
+54421919,25774050,4
+80833640,25774050,4
+46014273,25774050,4
+3598334,25774050,4
+4165972,25774050,4
+Alice798,25774050,4
+randichou,25774050,3
+Raining421,25774050,3
+77555967,25774050,3
+93484113,25774050,4
+56130323,25774050,4
+56072639,25774050,3
+waynezw,25774050,5
+59235742,25774050,3
+83447012,25774050,4
+92592691,25774050,3
+hdjjys,25774050,3
+68620338,25774050,3
+2875093,25774050,4
+inb612,25774050,4
+quizas63,25774050,-1
+mammam,25774050,4
+alianhei,25774050,4
+87284079,25774050,4
+elisha_gai,25774050,4
+51951271,25774050,3
+suh5213,25774050,3
+49514931,25774050,5
+71058780,25774050,4
+100734380,25774050,4
+47214501,25774050,2
+67539308,25774050,4
+121674358,25774050,3
+92217509,25774050,4
+cissy,25774050,4
+JiaoYaZi,25774050,2
+jianchen810,25774050,3
+44369045,25774050,5
+76127403,25774050,5
+82083975,25774050,5
+31757691,25774050,4
+47708904,25774050,4
+47822950,25774050,3
+meskelil,25774050,3
+62843301,25774050,4
+1713591,25774050,-1
+50125049,25774050,5
+123111535,25774050,4
+1496371,25774050,4
+abby987,25774050,3
+3933823,25774050,3
+44146194,25774050,5
+mian11,25774050,3
+fuck_time,25774050,-1
+50600162,25774050,3
+Mr.Pheromone,25774050,4
+33834953,25774050,5
+52117256,25774050,5
+yyangle,25774050,4
+nunnun,25774050,-1
+akirasama,25774050,3
+62658444,25774050,3
+66803034,25774050,4
+38258575,25774050,4
+57633355,25774050,4
+sentexiaohu,25774050,3
+baoanwei,25774050,4
+coollamb,25774050,4
+space_junk,25774050,4
+59933514,25774050,5
+liuheng20110613,25774050,4
+msshallow,25774050,3
+36145161,25774050,3
+47187620,25774050,4
+2774607,25774050,5
+58056285,25774050,3
+altmann,25774050,5
+43773144,25774050,3
+83215137,25774050,4
+51942274,25774050,3
+hollysisland,25774050,2
+46827374,25774050,4
+66404994,25774050,2
+61594655,25774050,3
+NysUn,25774050,4
+125741123,25774050,5
+55624184,25774050,4
+75288450,25774050,4
+127333061,25774050,4
+35241807,25774050,2
+92399399,25774050,3
+50445283,25774050,4
+kusoking,25774050,4
+69430764,25774050,4
+64681992,25774050,4
+Niaofei618,25774050,3
+68437634,25774050,4
+72180654,25774050,3
+kkwan,25774050,4
+53819334,25774050,3
+greendayofmlife,25774050,3
+bcnk,25774050,4
+qianjin,25774050,4
+jacaly,25774050,-1
+xisme,25774050,4
+JCdeer,25774050,4
+65112013,25774050,3
+87387635,25774050,5
+suihsh,25774050,4
+wangxiaojunwjj,25774050,5
+81374641,25774050,4
+zyk12321,25774050,-1
+morechange,25774050,3
+44849027,25774050,5
+120884778,25774050,3
+tanghaoyun,25774050,5
+deina,25774050,4
+66493866,25774050,4
+muzishiyi,25774050,4
+tasuka_l,25774050,3
+54757798,25774050,4
+41486823,25774050,4
+46668531,25774050,3
+40572936,25774050,3
+119394560,25774050,4
+45278107,25774050,3
+53505227,25774050,3
+51898920,25774050,5
+movie8,25774050,4
+baihuxian,25774050,3
+48646694,25774050,4
+3561865,25774050,4
+boningryd,25774050,4
+1284659,25774050,4
+akiho,25774050,4
+47246915,25774050,3
+T.V.Zoe,25774050,4
+122420292,25774050,3
+jennylove,25774050,5
+57511216,25774050,4
+96638998,25774050,4
+50851821,25774050,4
+cloverllx,25774050,4
+60347813,25774050,4
+44028253,25774050,-1
+htl90983,25774050,3
+52359337,25774050,4
+66773698,25774050,2
+maruko31,25774050,5
+rhythmfish,25774050,4
+56080469,25774050,4
+56621713,25774050,4
+Rukia,25774050,3
+27507760,25774050,4
+LrioWong,25774050,3
+boyounghua,25774050,4
+91018361,25774050,3
+1187053,25774050,4
+64335483,25774050,5
+52061855,25774050,4
+120797263,25774050,5
+misayxt,25774050,1
+83141101,25774050,4
+Erics_J,25774050,3
+62051832,25774050,2
+houx,25774050,3
+12822970,25774050,5
+3296630,25774050,4
+44758132,25774050,5
+50683342,25774050,3
+108146760,25774050,3
+39093072,25774050,5
+25676059,25774050,3
+49585616,25774050,4
+91252299,25774050,4
+47546589,25774050,4
+37897370,25774050,4
+89815307,25774050,3
+Livingintherose,25774050,4
+2887572,25774050,4
+51125398,25774050,5
+nancy1989511,25774050,5
+49115709,25774050,4
+76225555,25774050,3
+60968823,25774050,4
+74589582,25774050,5
+3816221,25774050,4
+chinriya,25774050,3
+hsupurr,25774050,4
+69805658,25774050,4
+59225673,25774050,4
+1233601,25774050,4
+120604909,25774050,4
+96044338,25774050,3
+114991648,25774050,3
+AllanBen,25774050,3
+10618924,25774050,3
+zpoo2009,25774050,4
+73948805,25774050,4
+3581018,25774050,4
+2783746,25774050,4
+krenee,25774050,4
+55850316,25774050,4
+125661279,25774050,4
+38924619,25774050,4
+Flora1119,25774050,-1
+73099696,25774050,4
+GMDY,25774050,3
+71961235,25774050,3
+51070910,25774050,3
+34946223,25774050,4
+wapcn,25774050,3
+52529809,25774050,3
+2373470,25774050,3
+125040121,25774050,3
+cherryoung,25774050,4
+zhongzheng,25774050,4
+66177469,25774050,4
+moonflows,25774050,4
+seven-zh,25774050,4
+72808838,25774050,3
+46310030,25774050,-1
+123653183,25774050,2
+116960701,25774050,4
+faysun,25774050,3
+46773794,25774050,3
+4590478,25774050,4
+wiwie,25774050,3
+59745258,25774050,3
+joey12255555,25774050,3
+68175783,25774050,3
+v32,25774050,5
+70291149,25774050,3
+124905970,25774050,4
+kenc,25774050,5
+woofwoofpaw,25774050,5
+68744718,25774050,4
+43207309,25774050,4
+tt2792654,25774050,4
+53526243,25774050,4
+57036451,25774050,4
+68568891,25774050,4
+1973189,25774050,5
+49921068,25774050,4
+1532150,25774050,4
+60880769,25774050,-1
+73760759,25774050,3
+wena,25774050,4
+83361236,25774050,4
+moomoom,25774050,4
+fuzyu,25774050,4
+52097421,25774050,5
+57348844,25774050,5
+62066830,25774050,5
+74085984,25774050,3
+44776734,25774050,3
+79239508,25774050,3
+68138575,25774050,3
+54018069,25774050,4
+3360982,25774050,4
+yuruky,25774050,3
+52630185,25774050,4
+deadrun,25774050,-1
+papadaixiong,25774050,4
+liuhanzhang0791,25774050,5
+summeric,25774050,4
+37064545,25774050,2
+63873567,25774050,4
+tokita,25774050,4
+75763139,25774050,4
+wujiuri,25774050,5
+yiaer,25774050,3
+89095718,25774050,4
+kid29,25774050,3
+yny23,25774050,4
+suncrying,25774050,4
+58507282,25774050,5
+44156773,25774050,-1
+59378291,25774050,4
+1690690,25774050,3
+39249989,25774050,3
+barbarossa1753,25774050,3
+121173641,25774050,4
+95243004,25774050,3
+Kios,25774050,4
+doudou0627,25774050,-1
+47193126,25774050,3
+4684950,25774050,3
+laineyq,25774050,4
+JeremyWang,25774050,4
+125206661,25774050,4
+aki.sh,25774050,4
+Zouzoutingting,25774050,3
+asoloman,25774050,4
+yym0227,25774050,3
+kaprobear,25774050,4
+72086305,25774050,4
+lostinfire,25774050,4
+71625816,25774050,4
+DellaZ,25774050,4
+68227361,25774050,5
+41547797,25774050,5
+72693000,25774050,5
+65466493,25774050,5
+kobekb,25774050,4
+60406508,25774050,3
+diysad,25774050,-1
+102885531,25774050,3
+34140064,25774050,3
+xuyansong,25774050,4
+89972315,25774050,3
+karenlo,25774050,3
+forlig,25774050,4
+46857287,25774050,-1
+114833164,25774050,5
+laoshububen,25774050,4
+126686879,25774050,4
+osakiyunyun,25774050,3
+34005046,25774050,3
+2445643,25774050,5
+34727533,25774050,4
+jiajia1130,25774050,4
+baisechengai,25774050,3
+76995484,25774050,4
+3539543,25774050,4
+59408878,25774050,3
+73184126,25774050,5
+68943607,25774050,4
+41167625,25774050,4
+weiminglu,25774050,4
+61110479,25774050,4
+51134351,25774050,4
+wanfusheng,25774050,4
+56950120,25774050,4
+Madao_D,25774050,3
+55479724,25774050,4
+djoko,25774050,3
+snowhair,25774050,5
+66331142,25774050,4
+88452602,25774050,4
+lilyx116,25774050,-1
+2277463,25774050,-1
+50276433,25774050,3
+76234100,25774050,4
+68607460,25774050,3
+77048670,25774050,4
+70315903,25774050,4
+haichend,25774050,2
+menglixueagll,25774050,4
+74624469,25774050,2
+love.jay,25774050,4
+rampage_akasha,25774050,3
+wmymt,25774050,4
+xiaovfight,25774050,4
+61111185,25774050,3
+66676801,25774050,4
+39306601,25774050,5
+44267868,25774050,4
+49274976,25774050,4
+sebas0714,25774050,4
+loftywain,25774050,3
+OrangeWeiei,25774050,4
+51192527,25774050,4
+NINEYR,25774050,5
+YUI_XXZ,25774050,4
+115838732,25774050,3
+wuliangmouji,25774050,3
+43612401,25774050,3
+yululiuli,25774050,2
+2600115,25774050,4
+rubberfox,25774050,5
+51921791,25774050,3
+zdoudou,25774050,3
+kualo,25774050,4
+naturelei,25774050,3
+2202052,25774050,4
+Fangodar,25774050,4
+3547067,25774050,3
+82454010,25774050,3
+58630530,25774050,4
+49166352,25774050,5
+47480055,25774050,4
+2767775,25774050,3
+EugeneWong,25774050,4
+72629481,25774050,4
+chenxizi,25774050,3
+bolikongqi,25774050,4
+laerngiv,25774050,3
+3874094,25774050,4
+volcancano,25774050,4
+98605942,25774050,4
+63278789,25774050,4
+64757557,25774050,5
+43713017,25774050,3
+74062182,25774050,4
+lwoo,25774050,3
+62411560,25774050,4
+60338101,25774050,3
+57302028,25774050,5
+70990506,25774050,4
+43891940,25774050,3
+lztsky007,25774050,3
+4352057,25774050,4
+58631682,25774050,4
+54538284,25774050,-1
+2239773,25774050,4
+73033279,25774050,3
+1817816,25774050,4
+63250313,25774050,4
+zihan1108,25774050,3
+40302528,25774050,4
+3855637,25774050,4
+103595381,25774050,-1
+69186562,25774050,-1
+dan3495,25774050,-1
+31640275,25774050,3
+49074611,25774050,3
+4799988,25774050,3
+13038456,25774050,3
+45872414,25774050,5
+84936612,25774050,4
+57910322,25774050,4
+40926979,25774050,5
+46981614,25774050,3
+65383649,25774050,5
+58956224,25774050,4
+47958996,25774050,4
+maxine_9395,25774050,4
+59139980,25774050,5
+60312569,25774050,5
+2305028,25774050,4
+xiaotuo,25774050,4
+liqiyao8931,25774050,5
+88201815,25774050,3
+68298279,25774050,3
+74621511,25774050,4
+62906196,25774050,3
+tobetherainbow,25774050,5
+54806925,25774050,2
+44675503,25774050,4
+29472366,25774050,5
+lassiedusky,25774050,4
+3765207,25774050,2
+70700918,25774050,4
+olivia_LQ,25774050,4
+1569518,25774050,4
+summerwith,25774050,4
+32433633,25774050,4
+veronicaz,25774050,4
+benqbingyi,25774050,2
+80040060,25774050,3
+43662887,25774050,4
+viviancien,25774050,3
+blueafter17,25774050,3
+49362263,25774050,4
+59084050,25774050,4
+2775463,25774050,4
+41887251,25774050,4
+97305087,25774050,4
+pandatou,25774050,4
+67823219,25774050,5
+4428446,25774050,4
+2144848,25774050,4
+shenlewuwu,25774050,5
+Shanglinyuan,25774050,4
+64011512,25774050,4
+qiandouduo,25774050,4
+62872014,25774050,5
+gaoce0913,25774050,4
+89852120,25774050,4
+74671754,25774050,3
+donly,25774050,3
+steinyxu,25774050,4
+68244610,25774050,5
+48823676,25774050,3
+dadanzi,25774050,3
+wushihao,25774050,4
+2362910,25774050,-1
+sousou,25774050,4
+banbeizi,25774050,-1
+kirayo,25774050,4
+33149603,25774050,4
+101359749,25774050,4
+47954022,25774050,4
+ericandlisa,25774050,3
+biquan,25774050,4
+119495221,25774050,3
+8469986,25774050,4
+Coldfact,25774050,5
+41786270,25774050,4
+3504083,25774050,5
+3941641,25774050,4
+30022643,25774050,5
+akixinru,25774050,5
+FrankWasabi,25774050,3
+98324017,25774050,5
+59540342,25774050,-1
+isaacasimov,25774050,4
+TVBVSBON,25774050,3
+64110948,25774050,3
+momo077,25774050,3
+49848634,25774050,5
+50405543,25774050,4
+nabe4tsen,25774050,5
+Xingda,25774050,3
+3852877,25774050,4
+yihaifei,25774050,3
+92773892,25774050,3
+deadkingq,25774050,5
+122072919,25774050,5
+sliaobellamy,25774050,4
+captainanlie,25774050,4
+82333155,25774050,-1
+79855225,25774050,4
+120057391,25774050,2
+joeyada,25774050,3
+FuckUrMother,25774050,4
+49338971,25774050,3
+62275045,25774050,4
+103551700,25774050,2
+planttingsun,25774050,4
+Bobbie13,25774050,4
+55863434,25774050,4
+42646716,25774050,4
+79900116,25774050,5
+53024812,25774050,3
+73416424,25774050,3
+58267868,25774050,3
+97610451,25774050,4
+shuoying,25774050,2
+58076714,25774050,4
+58495364,25774050,4
+48633478,25774050,3
+moesolo,25774050,3
+47532404,25774050,-1
+Suiyee,25774050,-1
+49294840,25774050,3
+98883695,25774050,3
+49342454,25774050,3
+38955500,25774050,3
+64692199,25774050,4
+80508054,25774050,1
+59402778,25774050,3
+54146811,25774050,2
+Dasiycat,25774050,3
+bigmiao,25774050,4
+100841051,25774050,4
+yeming727,25774050,4
+66307947,25774050,3
+copenlee,25774050,4
+38781943,25774050,3
+48363785,25774050,5
+65907866,25774050,1
+38300211,25774050,2
+enochyang,25774050,5
+49160897,25774050,3
+58017666,25774050,4
+39996045,25774050,3
+98878060,25774050,3
+45689152,25774050,3
+beckham7,25774050,2
+xiaofanskyfree,25774050,4
+69952221,25774050,4
+missmgenta,25774050,3
+66395869,25774050,3
+allthebest,25774050,3
+53682563,25774050,5
+51756395,25774050,4
+kimomo,25774050,4
+yanyu0726,25774050,4
+Sharpay0405,25774050,3
+DrinkFlames,25774050,3
+edgeyeung,25774050,4
+72206576,25774050,2
+69402507,25774050,4
+tianranzijiegou,25774050,4
+64451038,25774050,-1
+53107666,25774050,1
+k2,25774050,-1
+3337310,25774050,4
+84614536,25774050,-1
+65806426,25774050,3
+wjlqnyrc,25774050,4
+50836475,25774050,4
+77033669,25774050,4
+virago1994,25774050,5
+4551546,25774050,5
+65388874,25774050,5
+soul922,25774050,3
+62210177,25774050,4
+mingyuejiang,25774050,4
+1614995,25774050,5
+Pabalee,25774050,3
+113822944,25774050,2
+49927894,25774050,4
+2441545,25774050,-1
+63359487,25774050,2
+75416298,25774050,4
+4608800,25774050,5
+silence17,25774050,4
+unaunaquantro,25774050,3
+50226238,25774050,4
+naizhengtan,25774050,4
+50620549,25774050,5
+lotuslalay,25774050,2
+71561935,25774050,4
+89337733,25774050,5
+1302252,25774050,4
+49853962,25774050,5
+40430726,25774050,5
+gogo5,25774050,3
+caixiaoqiang,25774050,5
+63454756,25774050,4
+57742250,25774050,4
+steph6luna,25774050,3
+35769554,25774050,3
+68510883,25774050,2
+2101526,25774050,4
+28313985,25774050,5
+61693641,25774050,3
+38323859,25774050,4
+81944836,25774050,3
+Lan.die,25774050,3
+tammysky,25774050,4
+gengmengxia,25774050,3
+58792200,25774050,1
+16959294,25774050,4
+ziqian,25774050,3
+34651227,25774050,4
+44561459,25774050,4
+41843254,25774050,3
+20657820,25774050,3
+minedoubanban,25774050,4
+leeyzh,25774050,4
+lilyvilor,25774050,4
+64245948,25774050,3
+yanwen101,25774050,4
+Chyti,25774050,3
+56239021,25774050,3
+36466126,25774050,5
+45103571,25774050,3
+nalixianren,25774050,3
+57837456,25774050,3
+lynxmao,25774050,3
+wangmuyang,25774050,4
+47754884,25774050,5
+aciv,25774050,4
+55465032,25774050,3
+dingtian911,25774050,2
+whereyz,25774050,3
+44946309,25774050,3
+48355482,25774050,4
+57925888,25774050,3
+39129481,25774050,5
+46698247,25774050,4
+surrealmiaow,25774050,2
+31281892,25774050,4
+64233455,25774050,4
+73274568,25774050,3
+82687720,25774050,4
+ShoneSpeaking,25774050,4
+2950551,25774050,5
+geniusfei,25774050,-1
+68741121,25774050,4
+45220607,25774050,3
+andylau40,25774050,3
+2849436,25774050,4
+jet_plane,25774050,2
+69045210,25774050,4
+katerzo,25774050,3
+124359273,25774050,3
+102930164,25774050,4
+62119204,25774050,4
+77288841,25774050,4
+57842655,25774050,4
+sleebi,25774050,3
+45120293,25774050,4
+127083032,25774050,3
+69409681,25774050,4
+foxswily,25774050,4
+ggrise,25774050,3
+zuoxiaobao,25774050,5
+52635539,25774050,4
+3845094,25774050,4
+91748756,25774050,4
+126876610,25774050,3
+XOXOXOXOXOXO,25774050,3
+78412332,25774050,3
+46830605,25774050,4
+40643745,25774050,4
+3312608,25774050,5
+121103196,25774050,3
+78645703,25774050,1
+4509681,25774050,4
+49731648,25774050,4
+Sk.Young,25774050,4
+56164676,25774050,4
+agiha,25774050,2
+52591024,25774050,2
+lyzhie,25774050,3
+1032226,25774050,3
+miyaM,25774050,4
+weeland,25774050,4
+2196262,25774050,4
+jerry1992,25774050,3
+rin-sora,25774050,3
+nothingcathy,25774050,5
+62181928,25774050,5
+3916887,25774050,3
+74937470,25774050,4
+mingming1124530,25774050,3
+48167450,25774050,4
+65545100,25774050,3
+103718868,25774050,5
+4841197,25774050,4
+44917242,25774050,4
+48998291,25774050,4
+rim0821,25774050,3
+4700776,25774050,4
+68354862,25774050,3
+ice_lin,25774050,2
+jaciewho,25774050,-1
+89565486,25774050,4
+rslee2128,25774050,3
+luvsoon,25774050,3
+Coanl,25774050,5
+bigtv,25774050,4
+manxiaoyue,25774050,2
+54930854,25774050,3
+104445642,25774050,3
+82026124,25774050,4
+eugenewilber,25774050,4
+33260321,25774050,3
+43334018,25774050,4
+yunl988,25774050,3
+COCOCOQUEEN,25774050,3
+59725036,25774050,4
+47764376,25774050,4
+64874309,25774050,4
+69078769,25774050,3
+4345264,25774050,3
+ffantuan,25774050,5
+44691353,25774050,3
+53749303,25774050,3
+50062390,25774050,3
+zoeterry,25774050,4
+ludj_007,25774050,5
+bobolu,25774050,3
+50561211,25774050,4
+sixprecepts,25774050,-1
+sinkerone,25774050,3
+52624192,25774050,4
+76460569,25774050,4
+50836111,25774050,4
+ahuaaa,25774050,4
+RICE_Z,25774050,5
+viling,25774050,3
+64740791,25774050,4
+fanze,25774050,4
+91072075,25774050,3
+63431252,25774050,5
+54193081,25774050,4
+34575902,25774050,3
+he6000,25774050,4
+35892009,25774050,4
+yeskor,25774050,3
+liuxinyuxiao,25774050,3
+vivabarca,25774050,4
+2247807,25774050,3
+68767579,25774050,5
+51088688,25774050,4
+63006274,25774050,3
+53397908,25774050,4
+47192704,25774050,5
+67284766,25774050,3
+61597442,25774050,4
+73763567,25774050,5
+hanqiu1995,25774050,4
+XIAOTUTONG,25774050,4
+27704994,25774050,4
+fengchen_douban,25774050,4
+42497545,25774050,5
+huanm,25774050,4
+4425750,25774050,4
+4525795,25774050,5
+42025689,25774050,4
+34593506,25774050,4
+lynnchan,25774050,3
+4110050,25774050,2
+70202183,25774050,4
+62943026,25774050,3
+LilithChen,25774050,3
+2524962,25774050,5
+2524962,25774050,5
+qiangzhuang,25774050,4
+105736560,25774050,3
+103960212,25774050,4
+62732851,25774050,3
+52975664,25774050,4
+cerrol,25774050,3
+89431473,25774050,3
+ertrty498,25774050,3
+63170647,25774050,3
+73014832,25774050,3
+49052219,25774050,3
+changuang7,25774050,4
+Immortal-mo,25774050,4
+56498451,25774050,4
+63410566,25774050,4
+45322912,25774050,2
+61069242,25774050,4
+51741700,25774050,3
+44134959,25774050,5
+58971807,25774050,3
+dongcongcong,25774050,4
+cloudydream,25774050,3
+yuanazha,25774050,3
+43257585,25774050,3
+52790172,25774050,3
+61262477,25774050,3
+sharonz,25774050,5
+48229847,25774050,4
+67775093,25774050,4
+rapistnodabear,25774050,4
+52628612,25774050,4
+lysagdgl,25774050,4
+gluttony6,25774050,4
+LunaticPandora,25774050,5
+merrymary,25774050,-1
+ephemerality,25774050,4
+realpussy,25774050,4
+37299647,25774050,4
+47580309,25774050,3
+44504599,25774050,3
+3728245,25774050,3
+JeffreyWu,25774050,4
+yuanzai7,25774050,2
+53744550,25774050,3
+1909194,25774050,4
+60127747,25774050,4
+34702944,25774050,5
+Augwz.,25774050,3
+afeidemimi,25774050,4
+nolemchc,25774050,5
+3826970,25774050,-1
+103150012,25774050,4
+zjyw_,25774050,4
+4239908,25774050,4
+67695770,25774050,4
+44349376,25774050,5
+47597913,25774050,3
+89144589,25774050,4
+24806813,25774050,4
+71972704,25774050,5
+rukiawang,25774050,3
+122735983,25774050,5
+53034676,25774050,4
+cyjcandychan,25774050,5
+52145474,25774050,4
+gushiyun,25774050,-1
+52529736,25774050,4
+cicia_lee,25774050,4
+59370142,25774050,4
+anitalovebieber,25774050,4
+1876945,25774050,4
+58065568,25774050,4
+herofaykjj,25774050,3
+68501402,25774050,4
+49541286,25774050,3
+71477875,25774050,5
+zcy0505,25774050,5
+naocanmaoer,25774050,4
+yuantown,25774050,4
+45055551,25774050,4
+61613181,25774050,4
+121867791,25774050,3
+68286323,25774050,4
+91263818,25774050,3
+119362745,25774050,4
+adamyoung1518,25774050,3
+jxyyy,25774050,5
+guitarain,25774050,4
+35683842,25774050,3
+yamaci,25774050,4
+NAGISHO,25774050,3
+geekvx,25774050,3
+58197963,25774050,2
+likecake,25774050,5
+67353177,25774050,3
+69255956,25774050,4
+119852340,25774050,4
+bbfaith,25774050,4
+50303798,25774050,3
+72354881,25774050,5
+64873674,25774050,4
+leegorous,25774050,4
+xiaozhubaobao,25774050,5
+Beginstosee,25774050,4
+shuonimei2010,25774050,4
+Gordoncoco,25774050,4
+4003784,25774050,4
+57900084,25774050,4
+yaoyan,25774050,2
+Ayuland,25774050,4
+49433742,25774050,3
+saiyukic,25774050,4
+cyrus_wong,25774050,3
+70430819,25774050,5
+EthanWine,25774050,2
+54753933,25774050,3
+41653958,25774050,4
+63062317,25774050,3
+115505780,25774050,3
+2119089,25774050,3
+41660790,25774050,-1
+92423237,25774050,4
+hyuk7,25774050,4
+113997031,25774050,2
+2244671,25774050,4
+41065419,25774050,4
+115662069,25774050,5
+HugoVince,25774050,4
+73787415,25774050,4
+47593124,25774050,3
+darasiu,25774050,3
+oooooi,25774050,4
+62692147,25774050,4
+124819912,25774050,4
+screem2046,25774050,3
+57638199,25774050,4
+96410540,25774050,4
+banifox,25774050,4
+luzhiyu,25774050,3
+87561423,25774050,4
+58166335,25774050,4
+43200549,25774050,5
+doreenbiubiu,25774050,3
+48984512,25774050,5
+63612050,25774050,3
+71609046,25774050,4
+fine-3-,25774050,4
+75914022,25774050,4
+50694634,25774050,4
+minilion,25774050,5
+62650109,25774050,3
+ltp19950208,25774050,4
+4703013,25774050,4
+61282289,25774050,2
+56233303,25774050,5
+67843912,25774050,2
+vicW,25774050,4
+1805709,25774050,4
+59233109,25774050,3
+70621815,25774050,5
+71177489,25774050,5
+65776800,25774050,4
+Rene.cao,25774050,4
+3416468,25774050,4
+73649626,25774050,2
+43195100,25774050,4
+3520940,25774050,4
+68089671,25774050,3
+110364577,25774050,2
+lasia_yuen,25774050,4
+52576282,25774050,4
+47068033,25774050,4
+septembersummer,25774050,3
+guoxiangjiu,25774050,4
+50570726,25774050,3
+88564672,25774050,3
+DERRICK_ROSE,25774050,5
+83601520,25774050,4
+37956992,25774050,3
+Rottenmudpit,25774050,4
+duduxiongzhifu,25774050,2
+57896440,25774050,4
+73801711,25774050,4
+61809588,25774050,3
+84058913,25774050,3
+guanlaoye,25774050,4
+119681727,25774050,4
+104985254,25774050,4
+36412946,25774050,3
+49141997,25774050,4
+jeremery,25774050,4
+37793960,25774050,-1
+41872552,25774050,5
+103214078,25774050,3
+krsnik,25774050,3
+108829940,25774050,4
+3201359,25774050,4
+vivisnbb,25774050,4
+41437309,25774050,4
+41039099,25774050,4
+Mary-jasmine,25774050,4
+46230886,25774050,4
+4070673,25774050,5
+84564093,25774050,4
+dhtcwd,25774050,4
+114143378,25774050,3
+wunie,25774050,3
+48880380,25774050,4
+59904891,25774050,4
+3489125,25774050,4
+59797746,25774050,3
+70699214,25774050,3
+34314857,25774050,3
+76626092,25774050,3
+1364563,25774050,4
+54516781,25774050,3
+74073932,25774050,3
+youkeiki,25774050,4
+shingudoo,25774050,4
+jazzbon,25774050,5
+106514817,25774050,3
+poppysuen,25774050,4
+76699672,25774050,2
+db924519251,25774050,4
+rasiel,25774050,4
+48954377,25774050,3
+44406151,25774050,4
+53353199,25774050,4
+leidashen,25774050,3
+p2165,25774050,3
+34058654,25774050,3
+66168101,25774050,5
+59394881,25774050,4
+1076747,25774050,4
+particles,25774050,3
+Lotus511,25774050,3
+49319979,25774050,5
+50164247,25774050,3
+Collins1995,25774050,4
+crazyxiangyan,25774050,4
+48367765,25774050,3
+35664517,25774050,4
+59338688,25774050,5
+puppetian,25774050,4
+77834855,25774050,3
+fanmengya,25774050,4
+57595815,25774050,4
+45055967,25774050,4
+sprite-y,25774050,4
+72251882,25774050,5
+whb-119,25774050,3
+51603319,25774050,4
+shishishishijie,25774050,3
+foleyfan,25774050,4
+81842756,25774050,3
+50452092,25774050,4
+1879221,25774050,4
+1805745,25774050,3
+57572204,25774050,4
+guotong,25774050,4
+48955317,25774050,4
+fangkuan0511,25774050,2
+50451093,25774050,4
+52484586,25774050,4
+3563546,25774050,5
+4520667,25774050,3
+47259659,25774050,4
+jasonwzz,25774050,4
+Just_vv,25774050,3
+36695909,25774050,4
+61075916,25774050,4
+59101445,25774050,4
+2092765,25774050,4
+32251971,25774050,3
+vikissss,25774050,3
+62671036,25774050,3
+lavende,25774050,3
+levid,25774050,4
+eveningbaby,25774050,4
+4376416,25774050,3
+miaommiki,25774050,5
+shin157,25774050,4
+jite,25774050,4
+38150995,25774050,5
+65919385,25774050,4
+37450029,25774050,4
+cappuccinogdw,25774050,5
+113119005,25774050,5
+dorky,25774050,3
+50459772,25774050,4
+xiaosanye,25774050,4
+2019156,25774050,4
+62276958,25774050,4
+120000785,25774050,5
+m0920,25774050,4
+rachelff,25774050,4
+valium520,25774050,4
+53942242,25774050,3
+Mitruth,25774050,4
+4694061,25774050,4
+thesurfingleaf,25774050,4
+Sigrid_Lu,25774050,4
+58244101,25774050,4
+37549903,25774050,4
+47479797,25774050,3
+115714696,25774050,4
+4326487,25774050,3
+2458122,25774050,4
+moyia,25774050,3
+1412532,25774050,4
+BIYAKO,25774050,5
+juicebiubiu,25774050,3
+socalledgin,25774050,4
+Akaki,25774050,4
+BigfaBaozi,25774050,4
+coldyue,25774050,4
+52917026,25774050,5
+74008442,25774050,4
+45158897,25774050,5
+120119799,25774050,5
+53652366,25774050,4
+Chrismade,25774050,4
+alonetime,25774050,-1
+suikame,25774050,5
+AeroAnte,25774050,4
+3874557,25774050,5
+48726212,25774050,5
+modrikie,25774050,5
+12667477,25774050,4
+Enidluv,25774050,4
+kinthehouse,25774050,4
+1530155,25774050,4
+72626479,25774050,4
+1074069,25774050,4
+RanQixi,25774050,4
+cloudlandlord,25774050,4
+88262446,25774050,3
+38461766,25774050,4
+42922537,25774050,4
+87832668,25774050,5
+34846798,25774050,3
+4422335,25774050,4
+Zsaraj,25774050,3
+1279239,25774050,4
+Lin_Ling,25774050,3
+70918450,25774050,5
+tarorez,25774050,4
+59313594,25774050,3
+61671045,25774050,3
+76964275,25774050,5
+55892298,25774050,3
+amyiwlyf,25774050,4
+hayako8059,25774050,4
+80609092,25774050,2
+haruka87,25774050,5
+52792716,25774050,5
+61316156,25774050,3
+jessietam,25774050,4
+1328765,25774050,4
+narahana,25774050,4
+53920626,25774050,3
+damyata,25774050,4
+47501890,25774050,4
+ddcchenfei,25774050,3
+fxxxfancy,25774050,4
+49308723,25774050,4
+daiginnko,25774050,4
+3322566,25774050,3
+yalindongdong,25774050,4
+3634287,25774050,3
+62582526,25774050,3
+49587951,25774050,4
+Llewoen,25774050,4
+40684892,25774050,4
+46119201,25774050,5
+60413211,25774050,3
+4201884,25774050,4
+shaneblue,25774050,3
+xxlisten,25774050,5
+67216908,25774050,3
+2234882,25774050,4
+46815070,25774050,3
+56524460,25774050,4
+52642593,25774050,3
+4579620,25774050,3
+diaomao,25774050,4
+100622662,25774050,4
+btone0808,25774050,4
+65408583,25774050,4
+125149511,25774050,3
+orgel,25774050,4
+rosepicker,25774050,4
+freehy,25774050,4
+74188273,25774050,4
+26727621,25774050,3
+2352547,25774050,4
+keikoless,25774050,4
+78462167,25774050,4
+4347027,25774050,4
+125539581,25774050,5
+24598372,25774050,4
+47487048,25774050,4
+cheryl73,25774050,3
+45968027,25774050,4
+nyssa712,25774050,4
+50943875,25774050,-1
+mumu2017,25774050,5
+qiusechun,25774050,4
+77123373,25774050,4
+evisu.wu,25774050,4
+seventeenF,25774050,4
+43096733,25774050,4
+48585196,25774050,4
+100953233,25774050,5
+Xia0_K,25774050,2
+52243326,25774050,2
+59639593,25774050,4
+pierrewrs,25774050,3
+keichan,25774050,4
+4589325,25774050,3
+60166330,25774050,4
+45268036,25774050,3
+paeonia19,25774050,4
+june.q,25774050,4
+3170428,25774050,4
+59272250,25774050,4
+kindghost,25774050,4
+72101237,25774050,5
+36882677,25774050,4
+31102423,25774050,4
+72781855,25774050,4
+103735356,25774050,3
+62149413,25774050,4
+SmellyDong,25774050,3
+VampirX,25774050,5
+39817838,25774050,3
+25795086,25774050,4
+2911617,25774050,5
+44552200,25774050,3
+60559982,25774050,4
+dabyrowe,25774050,2
+42084433,25774050,4
+andrea_tang,25774050,3
+39745338,25774050,4
+3845975,25774050,2
+103189636,25774050,3
+50242355,25774050,3
+yadnomeulb,25774050,4
+sakurahao,25774050,5
+58595563,25774050,3
+abin520918,25774050,3
+48199088,25774050,5
+56922790,25774050,4
+124608845,25774050,4
+creep-LAY,25774050,4
+48964211,25774050,3
+81317162,25774050,5
+uneedme,25774050,4
+56617946,25774050,4
+69273736,25774050,4
+4509975,25774050,4
+54277204,25774050,4
+83268589,25774050,4
+2822373,25774050,-1
+39382938,25774050,4
+2546239,25774050,4
+fcinter,25774050,3
+spade3,25774050,4
+xxxcjr,25774050,4
+1552160,25774050,3
+47379301,25774050,5
+2768499,25774050,4
+55823994,25774050,5
+cornelia_su,25774050,3
+65087582,25774050,3
+Astray0212,25774050,3
+85868315,25774050,4
+big_peach,25774050,4
+LilithXu,25774050,4
+84632738,25774050,3
+53809597,25774050,3
+chairbandeng,25774050,3
+57963777,25774050,5
+chenjiangbo,25774050,2
+78088543,25774050,4
+62532021,25774050,4
+sickboy,25774050,4
+3176021,25774050,4
+63500852,25774050,4
+95884206,25774050,4
+ilovemyself,25774050,5
+119490218,25774050,4
+8122044,25774050,5
+1198621,25774050,4
+choushabi,25774050,3
+chenkongkong,25774050,4
+L-Meditation,25774050,4
+114120381,25774050,3
+1929074,25774050,3
+44699537,25774050,3
+ixshells,25774050,3
+Phyllis5,25774050,3
+51342796,25774050,4
+120375739,25774050,1
+2295492,25774050,4
+83974267,25774050,4
+doubanscheisse,25774050,3
+leocoldplay,25774050,5
+62163111,25774050,4
+xiaoqili,25774050,4
+63365063,25774050,5
+aliclaire,25774050,4
+76931391,25774050,4
+60800632,25774050,3
+oooweirooo,25774050,3
+69676532,25774050,5
+16572486,25774050,4
+55800838,25774050,4
+snowashes,25774050,-1
+snowashes,25774050,-1
+124141483,25774050,4
+42886654,25774050,5
+75061352,25774050,3
+64450294,25774050,3
+67238808,25774050,4
+77230221,25774050,5
+44022921,25774050,4
+ariellau,25774050,3
+78808648,25774050,-1
+lokaven,25774050,4
+scolo,25774050,4
+lozer,25774050,4
+8605018,25774050,4
+SailorSinbade,25774050,3
+kersanman,25774050,4
+Vitsippa,25774050,3
+79430502,25774050,4
+hichai,25774050,4
+43966741,25774050,4
+65803742,25774050,3
+pjcs,25774050,3
+grbzywg,25774050,-1
+61573582,25774050,4
+33245540,25774050,4
+cmhloveukulele,25774050,-1
+3513677,25774050,3
+fffx9527,25774050,4
+36185142,25774050,4
+73161188,25774050,4
+119263813,25774050,3
+M1racle,25774050,4
+52199185,25774050,5
+50219833,25774050,4
+qjunny,25774050,2
+momono,25774050,4
+62452692,25774050,3
+52413397,25774050,4
+heptahedron,25774050,4
+47047988,25774050,5
+30116913,25774050,4
+killsusie,25774050,4
+plzshine,25774050,-1
+2268415,25774050,4
+yoite7,25774050,5
+57583046,25774050,4
+Moanin,25774050,4
+75096370,25774050,5
+rx7801,25774050,3
+93048732,25774050,5
+kistrike,25774050,4
+53002549,25774050,4
+cappuccino-jl,25774050,3
+piggychu,25774050,4
+zerogreen0305,25774050,5
+120392055,25774050,3
+53108516,25774050,4
+csee1121,25774050,4
+50901359,25774050,5
+19698586,25774050,5
+19698586,25774050,5
+dragonfly393,25774050,3
+59716419,25774050,5
+yededi8821,25774050,4
+37200150,25774050,4
+la-luna,25774050,5
+97463644,25774050,3
+ruyueran,25774050,3
+84562495,25774050,3
+3189855,25774050,4
+70361131,25774050,4
+yanpealew,25774050,4
+41142807,25774050,4
+zuozichu,25774050,3
+120521050,25774050,3
+whoareyoumydear,25774050,4
+DuoYiMu,25774050,4
+38939164,25774050,4
+99329587,25774050,4
+62961863,25774050,5
+81932110,25774050,3
+1244120,25774050,2
+unali,25774050,3
+84744874,25774050,5
+75466655,25774050,2
+hard_candy118,25774050,4
+4528935,25774050,3
+2167975,25774050,3
+78497021,25774050,4
+53817733,25774050,5
+iiawu,25774050,4
+21212589,25774050,3
+depp333,25774050,5
+54275881,25774050,-1
+65113652,25774050,3
+sucila,25774050,4
+83192271,25774050,4
+3007454,25774050,4
+78089832,25774050,3
+southrain,25774050,3
+63485325,25774050,5
+41651433,25774050,5
+i13nocry,25774050,4
+52911648,25774050,4
+27725720,25774050,2
+61011795,25774050,5
+jeffersontang,25774050,3
+himesamala,25774050,4
+70042532,25774050,3
+hakujiu,25774050,4
+fanzaisaid,25774050,4
+53581844,25774050,3
+80826623,25774050,4
+3331579,25774050,4
+118845762,25774050,4
+spx,25774050,5
+quanquan_90,25774050,-1
+117360867,25774050,3
+aoniki,25774050,3
+jean_zx,25774050,5
+3575164,25774050,4
+lonelysin,25774050,4
+48634684,25774050,3
+44685216,25774050,4
+springfantasy,25774050,2
+ZotterElaine,25774050,3
+41661479,25774050,4
+brandnewstart,25774050,4
+fufuya,25774050,4
+64277816,25774050,3
+80893099,25774050,4
+78837820,25774050,4
+61566876,25774050,4
+80681000,25774050,4
+62549814,25774050,3
+91994560,25774050,2
+64879609,25774050,4
+10128811,25774050,4
+72387345,25774050,3
+chqqq,25774050,4
+woundman,25774050,1
+42106999,25774050,4
+55023791,25774050,1
+gothes,25774050,4
+124336026,25774050,5
+69547535,25774050,4
+102728705,25774050,3
+king-kong,25774050,3
+47227699,25774050,5
+2338228,25774050,3
+78575214,25774050,5
+baierthz,25774050,3
+17841543,25774050,5
+lovemusic007,25774050,4
+94691066,25774050,4
+DIC,25774050,3
+122381901,25774050,4
+63395542,25774050,3
+AthenaVan,25774050,4
+ricchhard,25774050,3
+57795255,25774050,4
+51490972,25774050,3
+lukastina,25774050,4
+43833654,25774050,3
+Paranoidc,25774050,3
+1736671,25774050,5
+masterobert,25774050,4
+casablanca0912,25774050,3
+81757410,25774050,4
+tongliyu,25774050,5
+kyo85,25774050,4
+csi910,25774050,5
+54397560,25774050,5
+50113328,25774050,5
+43115240,25774050,3
+61363004,25774050,5
+109142318,25774050,4
+mxing,25774050,4
+65313383,25774050,5
+49948273,25774050,4
+49948273,25774050,4
+69066282,25774050,3
+67883609,25774050,4
+81845294,25774050,4
+osssan,25774050,4
+58897463,25774050,4
+zcq741433220,25774050,4
+67061542,25774050,3
+tintintsang,25774050,4
+58028604,25774050,4
+114737955,25774050,2
+bejieforever,25774050,3
+markspotting,25774050,3
+PC_Mancola,25774050,4
+chenjinjin,25774050,4
+4557738,25774050,4
+jochencrynomore,25774050,3
+professor,25774050,4
+96161847,25774050,3
+xiaoyuhen,25774050,3
+76364366,25774050,4
+djyjyb,25774050,2
+79887306,25774050,3
+1567784,25774050,5
+bianhui,25774050,3
+15163815,25774050,3
+niaoshuiyaoyao,25774050,3
+yolu1314,25774050,4
+4333851,25774050,3
+78347009,25774050,4
+kellangamp,25774050,4
+lovebeans,25774050,4
+27725003,25774050,-1
+37001196,25774050,4
+dhampirlove,25774050,3
+sebasverm,25774050,4
+melodygxl,25774050,4
+crazyiszero,25774050,4
+15183757,25774050,4
+Batcaty,25774050,4
+AurelianoZ,25774050,4
+85164976,25774050,3
+wangyi2011,25774050,3
+4574811,25774050,3
+43260783,25774050,4
+43969731,25774050,4
+83701119,25774050,4
+czj950615,25774050,3
+flowernim,25774050,2
+alexw,25774050,4
+59556078,25774050,3
+66277108,25774050,4
+58040832,25774050,4
+zoe_dabai,25774050,5
+CSMiss,25774050,5
+4730411,25774050,4
+48990593,25774050,3
+58310222,25774050,4
+2309931,25774050,4
+65900502,25774050,4
+summernight1cn,25774050,4
+fxoc,25774050,4
+28877862,25774050,5
+53620558,25774050,5
+easyten,25774050,5
+jiaterry,25774050,5
+37424688,25774050,3
+67516737,25774050,4
+45008619,25774050,4
+13984024,25774050,3
+55617091,25774050,5
+gunshyer,25774050,3
+xineefor985,25774050,4
+50626752,25774050,5
+xumhandy,25774050,4
+CSO-Botasky,25774050,5
+2352053,25774050,3
+104629005,25774050,3
+77316354,25774050,4
+49326623,25774050,4
+maomouren,25774050,4
+44622653,25774050,4
+2516894,25774050,4
+52800930,25774050,5
+hwf254,25774050,3
+a-kico,25774050,3
+jausdauer,25774050,5
+acha13,25774050,4
+tojohnonly,25774050,5
+62397503,25774050,4
+Knight9,25774050,4
+4620614,25774050,4
+3569930,25774050,-1
+73119546,25774050,3
+lovelyting58,25774050,4
+Gongzi_.Fox,25774050,-1
+caiwoshishei,25774050,4
+62917415,25774050,5
+dashebei,25774050,3
+124812731,25774050,2
+57235333,25774050,5
+singingwheat,25774050,4
+67838046,25774050,5
+54653189,25774050,5
+45290728,25774050,4
+24139618,25774050,4
+61160709,25774050,3
+riverbrother,25774050,4
+9915911,25774050,3
+easelong,25774050,4
+124759962,25774050,3
+57088195,25774050,4
+102024318,25774050,5
+2434047,25774050,-1
+Irice,25774050,3
+100036482,25774050,4
+76573898,25774050,4
+51297351,25774050,3
+44532870,25774050,4
+48078859,25774050,5
+56035155,25774050,3
+jresha,25774050,4
+43389404,25774050,4
+75913868,25774050,3
+MaccyLiu,25774050,5
+rudygiraffe,25774050,3
+67662223,25774050,4
+m.edulla,25774050,4
+24718056,25774050,4
+48854947,25774050,4
+elfz,25774050,4
+64680540,25774050,-1
+welle213,25774050,4
+56967663,25774050,-1
+99977887,25774050,5
+ibstone,25774050,4
+50284024,25774050,3
+71759478,25774050,4
+39355167,25774050,1
+Rosesea,25774050,5
+43036859,25774050,4
+GZ,25774050,3
+Azazel777,25774050,3
+bxg555,25774050,-1
+92567735,25774050,3
+60002715,25774050,4
+3438313,25774050,4
+42272839,25774050,4
+ninetysix,25774050,4
+76397529,25774050,4
+xuxuyooxi,25774050,4
+biliance,25774050,3
+63927330,25774050,3
+renzheshenhua,25774050,5
+zeroqq,25774050,4
+95592443,25774050,4
+82267820,25774050,4
+67757068,25774050,4
+nearlloveyou,25774050,3
+zhoudaxia,25774050,3
+planna66,25774050,3
+66902350,25774050,3
+81741082,25774050,4
+16460262,25774050,4
+zy421,25774050,3
+4249661,25774050,3
+47334207,25774050,4
+whatmike,25774050,4
+81509803,25774050,3
+jasmine22,25774050,-1
+62148442,25774050,5
+2987938,25774050,3
+90056142,25774050,3
+wqnmb,25774050,4
+faiel,25774050,3
+lcghere,25774050,4
+23450183,25774050,4
+lovelyyuchen,25774050,4
+dkjune,25774050,3
+56885500,25774050,3
+47200426,25774050,2
+Palomar123,25774050,4
+52046624,25774050,4
+57943867,25774050,4
+ff_way,25774050,3
+73871573,25774050,4
+56077687,25774050,3
+1796581,25774050,5
+57434517,25774050,3
+64628791,25774050,3
+46836947,25774050,3
+togawa,25774050,5
+ambervalley,25774050,4
+ohahahu,25774050,3
+59771378,25774050,3
+xianggudawang,25774050,3
+3439248,25774050,4
+jamaica,25774050,4
+73868761,25774050,2
+L5.P4,25774050,2
+4740453,25774050,5
+4728467,25774050,4
+chencheny,25774050,4
+yangcht,25774050,3
+2106137,25774050,5
+55312255,25774050,4
+Cherry.Pluto,25774050,5
+22991326,25774050,5
+wtforz,25774050,4
+duluosen,25774050,4
+gougoude,25774050,4
+43857375,25774050,4
+57639704,25774050,4
+48751710,25774050,5
+120241385,25774050,4
+80719948,25774050,4
+qingkongliulan,25774050,3
+63730928,25774050,4
+kleer,25774050,4
+65664176,25774050,4
+DoDoangell,25774050,4
+ckomy115,25774050,4
+danaoke,25774050,5
+yjsoso,25774050,2
+73532203,25774050,4
+53653707,25774050,5
+avyiye,25774050,4
+78695888,25774050,5
+LincolnSixEcho,25774050,4
+yoyofun,25774050,4
+47265925,25774050,5
+57954109,25774050,4
+42221402,25774050,2
+xiaoyuan_0310,25774050,4
+CLASSIC-MOVIE,25774050,4
+52470011,25774050,5
+61260472,25774050,5
+92462355,25774050,4
+iamacat101,25774050,4
+fenglai,25774050,4
+LeonardodaFiren,25774050,1
+86601635,25774050,3
+52636272,25774050,4
+2226826,25774050,3
+elionier,25774050,4
+52237752,25774050,4
+43896457,25774050,5
+47148942,25774050,5
+49384394,25774050,3
+122725527,25774050,3
+Makoto614,25774050,4
+yiyiyu,25774050,-1
+austinswift,25774050,4
+87699080,25774050,4
+52371871,25774050,1
+68674122,25774050,4
+97709203,25774050,5
+idyllw,25774050,3
+63676625,25774050,4
+3557552,25774050,5
+57017013,25774050,5
+1574053,25774050,4
+cuizixi,25774050,3
+yujiuwei,25774050,4
+68876862,25774050,4
+roananubis,25774050,-1
+68523936,25774050,3
+25553362,25774050,4
+60307464,25774050,4
+meijiangshi,25774050,4
+zjy1222,25774050,3
+49902714,25774050,4
+85948759,25774050,5
+53620031,25774050,4
+40934646,25774050,3
+122411500,25774050,5
+RockGirl,25774050,4
+36591097,25774050,4
+58059498,25774050,3
+64997485,25774050,4
+51985669,25774050,5
+snapeloveyou,25774050,-1
+55705224,25774050,3
+FFrainbow,25774050,4
+57476405,25774050,4
+62877248,25774050,4
+Josephsu,25774050,3
+Forrestgary,25774050,5
+65803974,25774050,4
+67944529,25774050,4
+aeroprince,25774050,3
+54950596,25774050,4
+62347727,25774050,3
+87057947,25774050,4
+33177895,25774050,4
+58379589,25774050,3
+holynight,25774050,4
+nieblalan,25774050,3
+chuleiwu,25774050,3
+fangxiaohu,25774050,4
+findiray,25774050,4
+77698200,25774050,4
+58696141,25774050,4
+66551909,25774050,4
+62457534,25774050,4
+49162813,25774050,4
+asa-yan,25774050,4
+sozen1989,25774050,4
+Betty_king,25774050,3
+glowxi,25774050,5
+12410068,25774050,4
+thegreatkoala,25774050,3
+4441887,25774050,-1
+nangle,25774050,3
+88273996,25774050,4
+jeonwoo,25774050,4
+EchoTaem,25774050,3
+redsandalwood,25774050,3
+42626995,25774050,4
+linmumuevelyn,25774050,4
+82691525,25774050,3
+70043510,25774050,4
+72747369,25774050,5
+11003910,25774050,3
+63275020,25774050,2
+119182643,25774050,3
+58248286,25774050,5
+75607691,25774050,3
+47599277,25774050,4
+75757535,25774050,3
+Doluoluo,25774050,5
+orangeT,25774050,4
+61478513,25774050,3
+Haccasu,25774050,3
+62333707,25774050,3
+47209079,25774050,5
+50648419,25774050,2
+rexhrg,25774050,5
+renyu8896,25774050,3
+aa_alien,25774050,3
+aa_alien,25774050,3
+68550848,25774050,3
+kildren2013,25774050,5
+125892567,25774050,2
+lingxie,25774050,4
+68762360,25774050,3
+68982758,25774050,4
+happyjiepp,25774050,5
+81076174,25774050,5
+32144547,25774050,3
+yaozhouyao,25774050,4
+2934232,25774050,3
+lovesay,25774050,4
+movieview,25774050,3
+fanghongdou,25774050,1
+heroting,25774050,4
+64238659,25774050,5
+49856775,25774050,3
+shadow_break,25774050,3
+reave,25774050,4
+kurumi_521,25774050,5
+69530712,25774050,4
+48126061,25774050,3
+johnvivi,25774050,4
+52287609,25774050,3
+thghost,25774050,5
+ostara,25774050,2
+chriseiself,25774050,4
+34205981,25774050,4
+121221805,25774050,4
+87035372,25774050,4
+47160783,25774050,3
+74818677,25774050,2
+chengchen0121,25774050,4
+ccmomi,25774050,5
+121774438,25774050,4
+yoory,25774050,-1
+3111680,25774050,4
+ILWTFT,25774050,4
+hoterran,25774050,4
+53773450,25774050,4
+jason-shi,25774050,5
+36612113,25774050,4
+36138367,25774050,3
+95545615,25774050,2
+shizongshu,25774050,4
+2035305,25774050,4
+114606951,25774050,4
+46516486,25774050,4
+93179604,25774050,5
+54375575,25774050,3
+armai,25774050,4
+jinjidexiong,25774050,2
+73064038,25774050,4
+govgouviiiiiiii,25774050,4
+4908138,25774050,5
+47810403,25774050,4
+86840728,25774050,4
+hoult,25774050,3
+flytomilan,25774050,2
+aiJC,25774050,4
+46221574,25774050,4
+wudongmian,25774050,4
+88938201,25774050,4
+ciaoxu,25774050,4
+50519870,25774050,3
+skiny_orange,25774050,4
+xzyzsk7,25774050,3
+xuancaidanqing,25774050,4
+Yuenyuan,25774050,3
+35348647,25774050,3
+19863736,25774050,4
+Rihaulin,25774050,3
+46088268,25774050,4
+fandongzhuantou,25774050,4
+46702310,25774050,5
+56069549,25774050,3
+haoimagine,25774050,4
+50958271,25774050,3
+hanax4,25774050,3
+41634233,25774050,4
+104178936,25774050,4
+115547734,25774050,3
+52706531,25774050,4
+M.N.,25774050,5
+48491192,25774050,3
+26194155,25774050,4
+Stupid,25774050,3
+jianghucrab,25774050,3
+1495292,25774050,4
+Jewelyxy,25774050,4
+gudongdonggu,25774050,3
+rouroufang,25774050,5
+HH-HH-HH,25774050,3
+54150368,25774050,3
+3783012,25774050,3
+49143390,25774050,4
+49151192,25774050,4
+66860468,25774050,4
+74541142,25774050,4
+63626713,25774050,4
+59274667,25774050,3
+fwk522,25774050,4
+jiqiuqiu,25774050,4
+65623605,25774050,4
+53656219,25774050,3
+53908274,25774050,5
+68200387,25774050,2
+79516126,25774050,5
+zhoushiyun,25774050,-1
+60826813,25774050,3
+xieao123,25774050,3
+46370067,25774050,3
+7609988,25774050,4
+abpeter,25774050,3
+evangella,25774050,4
+zuiaiyanda,25774050,3
+kiyoka,25774050,3
+60140602,25774050,3
+shumeiying,25774050,4
+jqcx,25774050,2
+75874847,25774050,3
+93606686,25774050,5
+91432391,25774050,4
+87909103,25774050,4
+81519024,25774050,4
+51892458,25774050,4
+janeao,25774050,5
+59156178,25774050,4
+67357105,25774050,4
+cl20lc,25774050,3
+70844899,25774050,3
+79853603,25774050,2
+biskup,25774050,4
+63528738,25774050,4
+CTT696,25774050,4
+Black_Star,25774050,4
+aellr,25774050,-1
+56264708,25774050,4
+43867607,25774050,4
+4413248,25774050,3
+3177593,25774050,3
+jasonchou13,25774050,5
+55518938,25774050,3
+wnj347,25774050,5
+ricechow,25774050,4
+51570538,25774050,4
+64009647,25774050,3
+62318904,25774050,5
+wentaoxie,25774050,3
+concertoine,25774050,3
+3340140,25774050,2
+yimeiweiba,25774050,4
+64137590,25774050,4
+3894700,25774050,4
+47588877,25774050,4
+honeyFrida,25774050,4
+leiii,25774050,4
+sleep-a-summer,25774050,4
+zhongshanaoli,25774050,4
+zhongshanaoli,25774050,4
+4359954,25774050,4
+46311374,25774050,4
+greensylviaq,25774050,4
+3483902,25774050,2
+jedicat,25774050,4
+apple_v1,25774050,4
+takahashili,25774050,3
+113286141,25774050,4
+2588629,25774050,4
+57052656,25774050,4
+66035182,25774050,3
+3690205,25774050,5
+80162841,25774050,1
+Pledge,25774050,-1
+63531003,25774050,3
+67409717,25774050,3
+70675972,25774050,4
+1892627,25774050,3
+47806100,25774050,3
+Pius,25774050,4
+Kingnima,25774050,4
+85324202,25774050,4
+jiushifubi,25774050,3
+Dallipop,25774050,4
+61392222,25774050,4
+muxiaoxu,25774050,4
+83684239,25774050,4
+4597338,25774050,3
+70394248,25774050,2
+46728642,25774050,3
+kikobury,25774050,4
+luna17sea,25774050,4
+5129531,25774050,4
+37751161,25774050,4
+Mr.rawness,25774050,4
+toyuan,25774050,4
+65031005,25774050,5
+34901213,25774050,4
+senlintu,25774050,3
+65073778,25774050,3
+yanjing7611,25774050,4
+57419591,25774050,2
+68887897,25774050,3
+gddxw,25774050,3
+59979732,25774050,5
+48380446,25774050,4
+53830411,25774050,-1
+31834718,25774050,4
+68444251,25774050,4
+65400706,25774050,3
+49487093,25774050,3
+sissip,25774050,3
+linyunke,25774050,3
+55472715,25774050,3
+60411524,25774050,3
+71181418,25774050,4
+54073158,25774050,4
+43778462,25774050,-1
+56268506,25774050,4
+4032421,25774050,5
+Baronera,25774050,4
+3540441,25774050,4
+hello.louis,25774050,5
+52951268,25774050,3
+19716945,25774050,4
+35339976,25774050,4
+iayunuo,25774050,3
+annbabyyan,25774050,3
+63800268,25774050,4
+54141112,25774050,3
+57308565,25774050,-1
+61276700,25774050,3
+58370921,25774050,4
+yscysc803,25774050,3
+Sparta233,25774050,4
+76932825,25774050,4
+antoniosnow,25774050,4
+44735401,25774050,3
+68401918,25774050,4
+121826511,25774050,4
+xphone,25774050,4
+49267780,25774050,4
+97211660,25774050,4
+54471920,25774050,4
+glassywitch,25774050,4
+57664737,25774050,3
+70694742,25774050,-1
+MENCHI,25774050,4
+domotoiceko,25774050,5
+49469222,25774050,3
+1383301,25774050,4
+79418954,25774050,4
+41606354,25774050,4
+53033730,25774050,4
+49673011,25774050,4
+49947635,25774050,2
+zqnpz,25774050,3
+huoguo,25774050,-1
+pineberry,25774050,3
+huoguo,25774050,-1
+pineberry,25774050,3
+87976950,25774050,4
+xingquan,25774050,4
+59240591,25774050,3
+80846481,25774050,3
+duanbaba,25774050,4
+li620toyfly,25774050,4
+thank1992701,25774050,5
+biabee,25774050,4
+chelseaW4,25774050,3
+zoonka,25774050,5
+29202128,25774050,3
+78548715,25774050,4
+botaowei,25774050,4
+stella.0131,25774050,5
+51909890,25774050,4
+57651178,25774050,5
+48975477,25774050,3
+69602683,25774050,5
+y1ntian,25774050,4
+121721694,25774050,5
+victorvictor,25774050,4
+baguabagua,25774050,4
+49274936,25774050,4
+52408878,25774050,3
+120117514,25774050,5
+83220244,25774050,5
+50585223,25774050,5
+mklop2008,25774050,4
+yukino,25774050,4
+75180994,25774050,4
+54594956,25774050,5
+123546211,25774050,5
+fukujune,25774050,3
+zianzhao,25774050,4
+sehunsue,25774050,4
+3748892,25774050,4
+57811423,25774050,4
+81884634,25774050,4
+52716682,25774050,4
+92155502,25774050,3
+DangerRose,25774050,4
+59960623,25774050,3
+littleshit,25774050,4
+hexiaoshuang,25774050,4
+tt1426,25774050,4
+fikichow,25774050,4
+81412725,25774050,5
+56223706,25774050,3
+57811898,25774050,5
+52057607,25774050,3
+75219384,25774050,4
+3816104,25774050,-1
+68699575,25774050,3
+46377255,25774050,5
+81885646,25774050,4
+MolaM,25774050,3
+52918154,25774050,3
+4411719,25774050,4
+75718452,25774050,3
+anicelv,25774050,3
+57958565,25774050,-1
+120103268,25774050,2
+51544612,25774050,3
+48198502,25774050,4
+lazing0611,25774050,4
+yiwenxu,25774050,4
+InfoG,25774050,4
+40281229,25774050,4
+Dlio_o,25774050,3
+tracycw618,25774050,4
+42822318,25774050,5
+wemn,25774050,-1
+110350879,25774050,4
+123208179,25774050,3
+littlezed,25774050,3
+beefeaters,25774050,4
+49046809,25774050,5
+ricchow,25774050,3
+2405726,25774050,3
+mizuwood,25774050,3
+47417998,25774050,3
+49355592,25774050,4
+65002965,25774050,4
+84659532,25774050,4
+keith_z,25774050,4
+62140009,25774050,4
+73834908,25774050,4
+qixuelun,25774050,3
+cocorella,25774050,4
+1373185,25774050,4
+65988925,25774050,3
+burndawn,25774050,5
+cangjie1900,25774050,3
+1452797,25774050,4
+betterAlex,25774050,-1
+102938445,25774050,4
+duck130912277,25774050,4
+73150320,25774050,3
+52593684,25774050,4
+suoailiangren,25774050,5
+1282175,25774050,3
+49883848,25774050,4
+kanzaki666,25774050,4
+52564533,25774050,5
+bananazookeeper,25774050,2
+hugowai,25774050,4
+zzy.ll,25774050,5
+sukijuri,25774050,5
+white940105,25774050,4
+64107417,25774050,3
+pigeon-komatsu,25774050,3
+51435361,25774050,4
+37364562,25774050,-1
+49148779,25774050,-1
+nadjacho,25774050,4
+oathkeeper,25774050,4
+51752249,25774050,3
+75699782,25774050,3
+75699782,25774050,3
+42962994,25774050,4
+47326552,25774050,5
+1929758,25774050,4
+crab802,25774050,4
+sapphirehuang,25774050,4
+59249959,25774050,4
+53866213,25774050,4
+58810422,25774050,4
+tatajeong,25774050,4
+mammonlee,25774050,3
+79913596,25774050,5
+2987580,25774050,3
+58284500,25774050,-1
+113169570,25774050,3
+103560955,25774050,3
+17967376,25774050,5
+2243854,25774050,4
+93205302,25774050,4
+63830017,25774050,4
+2819362,25774050,3
+55330147,25774050,-1
+62773931,25774050,3
+H400,25774050,5
+53631000,25774050,4
+yummy1986,25774050,4
+66766065,25774050,5
+Camusdead,25774050,4
+currant,25774050,4
+52792351,25774050,3
+4140462,25774050,4
+67077607,25774050,5
+62718926,25774050,4
+46132797,25774050,3
+53033481,25774050,4
+56414043,25774050,3
+VALLA,25774050,4
+34956783,25774050,4
+45242330,25774050,4
+1752075,25774050,-1
+35409946,25774050,3
+Aaaa_pril,25774050,-1
+llamame,25774050,4
+87742458,25774050,3
+60493972,25774050,5
+4446932,25774050,3
+64126928,25774050,4
+79938209,25774050,5
+48712788,25774050,4
+jinghanxing,25774050,4
+121906542,25774050,5
+62410779,25774050,4
+bxc1988yiderky,25774050,4
+59783887,25774050,4
+nanyayi,25774050,-1
+54467510,25774050,5
+joymu,25774050,3
+57425264,25774050,3
+xiaobinglena,25774050,3
+94728536,25774050,4
+mohuluojia10,25774050,5
+66015806,25774050,3
+36686172,25774050,4
+112970184,25774050,2
+JonathanX,25774050,4
+4238363,25774050,4
+88741706,25774050,-1
+Ein7,25774050,-1
+73981159,25774050,3
+49490666,25774050,4
+86638132,25774050,-1
+54107272,25774050,3
+qialaga,25774050,3
+99812463,25774050,2
+3784972,25774050,2
+chenxiliu,25774050,3
+71025729,25774050,5
+sephilish,25774050,4
+8242631,25774050,4
+61468605,25774050,4
+cowbie,25774050,4
+87468773,25774050,2
+hello2931837,25774050,3
+Kenneth_mu,25774050,2
+60860609,25774050,-1
+usame,25774050,4
+2183579,25774050,4
+71250285,25774050,4
+noaccident,25774050,4
+xiamudemao,25774050,3
+treevow,25774050,4
+50277925,25774050,3
+55640916,25774050,4
+52450726,25774050,5
+foreveraegeanse,25774050,5
+liusuer,25774050,4
+3440740,25774050,4
+ekling,25774050,4
+chrisocean,25774050,5
+rinneco,25774050,4
+54014204,25774050,4
+vinta,25774050,5
+61128841,25774050,3
+51477715,25774050,2
+ladymashroom,25774050,4
+91662647,25774050,-1
+50884822,25774050,4
+socialism,25774050,4
+whereiszoe,25774050,-1
+102791213,25774050,4
+sick1993,25774050,4
+104261144,25774050,3
+sakura001,25774050,4
+sjbni,25774050,4
+119456663,25774050,3
+48042943,25774050,3
+MeloTheFisher,25774050,4
+3064435,25774050,3
+68859699,25774050,4
+37376533,25774050,4
+121518881,25774050,4
+92364458,25774050,5
+81968573,25774050,4
+67962053,25774050,4
+52396951,25774050,5
+53642273,25774050,3
+47650705,25774050,3
+66802637,25774050,5
+maliyaya,25774050,5
+connieyu,25774050,4
+miyuwen,25774050,4
+51792589,25774050,4
+54034056,25774050,3
+caocaoa,25774050,3
+lamsq,25774050,5
+miyazhao,25774050,4
+74248985,25774050,3
+38416881,25774050,2
+115514267,25774050,4
+ningmozhiyin,25774050,4
+imedi,25774050,5
+1387854,25774050,3
+ruo1996,25774050,4
+acelimbo,25774050,5
+sharonsama,25774050,3
+121247922,25774050,4
+33482977,25774050,4
+LinYu36,25774050,-1
+56971084,25774050,3
+xiaohei0919,25774050,5
+anniehoneys,25774050,3
+rabbitcai,25774050,4
+74916985,25774050,4
+dengboqing520,25774050,3
+51040110,25774050,5
+4058412,25774050,3
+jacknosparrow,25774050,4
+34242334,25774050,5
+85445252,25774050,4
+beannyontheroad,25774050,4
+purple2046,25774050,3
+shanchow,25774050,4
+75569669,25774050,3
+3593576,25774050,4
+dado.,25774050,4
+mysky,25774050,5
+bayier,25774050,5
+5964944,25774050,3
+kenny_w,25774050,4
+papa_christmas,25774050,3
+1237270,25774050,4
+2096340,25774050,4
+harechan,25774050,5
+joko14,25774050,5
+fxl0977,25774050,4
+Nina_Wang,25774050,5
+TalkChan,25774050,4
+47216469,25774050,5
+sololie,25774050,3
+cen1126,25774050,5
+phl745,25774050,4
+kitty668,25774050,5
+37153310,25774050,4
+norai,25774050,5
+kitty_kugoo,25774050,1
+51942859,25774050,4
+zwj514235,25774050,3
+63014642,25774050,4
+52906613,25774050,4
+65443106,25774050,3
+32711152,25774050,3
+sxy921026,25774050,3
+kellyouka,25774050,2
+117130584,25774050,4
+4828520,25774050,3
+srdouchebag,25774050,3
+tk27,25774050,5
+1394912,25774050,3
+PunksNotDead,25774050,4
+thisisgap,25774050,3
+dorics,25774050,4
+32025786,25774050,5
+dataroom,25774050,4
+84047449,25774050,-1
+4251957,25774050,-1
+ananpsc,25774050,3
+ravinenoravine,25774050,4
+wusequanwei,25774050,4
+breakofdawn,25774050,3
+51445023,25774050,4
+51393445,25774050,4
+lrc940928,25774050,3
+yumuyou,25774050,4
+clqm,25774050,4
+64303459,25774050,4
+48942164,25774050,4
+85054296,25774050,5
+102902029,25774050,3
+farewell_119,25774050,-1
+60571216,25774050,4
+45344133,25774050,3
+kidaliu,25774050,4
+problemchildren,25774050,4
+Uvo,25774050,5
+59992887,25774050,5
+51141120,25774050,5
+12227939,25774050,4
+4391247,25774050,4
+youlaiyoulai,25774050,5
+xiaowangzi1984,25774050,5
+49308797,25774050,5
+youjianbentham,25774050,5
+3522547,25774050,4
+51207003,25774050,4
+jyjohnny,25774050,-1
+51783956,25774050,5
+63146532,25774050,4
+93417333,25774050,4
+67987733,25774050,4
+Schwarzwaelder,25774050,4
+Schwarzwaelder,25774050,4
+reeboir,25774050,4
+angelchou,25774050,5
+vermouthsama,25774050,4
+vjjdwn,25774050,3
+48642277,25774050,5
+41951275,25774050,4
+55585638,25774050,3
+nothing9246,25774050,5
+irafighting,25774050,5
+teroteuroko,25774050,4
+shingo,25774050,4
+lzZ,25774050,4
+80715123,25774050,4
+47701757,25774050,4
+14906912,25774050,4
+rightshadow,25774050,5
+59082872,25774050,-1
+erika-3104,25774050,4
+60874704,25774050,4
+proband,25774050,2
+bridge3water,25774050,5
+willorz,25774050,4
+75743298,25774050,4
+blindfishvivian,25774050,4
+58448710,25774050,4
+96034999,25774050,4
+66975499,25774050,5
+FK621,25774050,4
+44272314,25774050,5
+Chliztian,25774050,3
+10149854,25774050,5
+alwaysaway,25774050,4
+9608960,25774050,4
+1952871,25774050,3
+51214182,25774050,3
+49177191,25774050,4
+47503984,25774050,3
+72517310,25774050,5
+1704805,25774050,5
+gorgeousdevil,25774050,4
+c2c3,25774050,5
+asukayoshioka,25774050,4
+1535538,25774050,2
+minus16,25774050,4
+momo0724,25774050,4
+45245216,25774050,4
+97503255,25774050,3
+45340915,25774050,4
+ritaisdead,25774050,3
+4320404,25774050,3
+agent0,25774050,4
+sinbone,25774050,3
+41054771,25774050,3
+26336053,25774050,3
+iisakura,25774050,4
+56431276,25774050,4
+karasu419,25774050,4
+50010079,25774050,4
+68011709,25774050,4
+anywherebuthome,25774050,4
+65595818,25774050,4
+48593382,25774050,4
+3129085,25774050,4
+BIN_CHANG,25774050,2
+50191469,25774050,5
+81560636,25774050,4
+sophie1900,25774050,5
+qcmm,25774050,4
+buguameng,25774050,4
+awesomekeane,25774050,4
+verachen,25774050,4
+memorycatcher,25774050,4
+3667311,25774050,3
+Dreaming1989712,25774050,5
+103555992,25774050,3
+anotheronexia,25774050,4
+84828143,25774050,4
+ChenMelon,25774050,5
+53664916,25774050,4
+26898431,25774050,4
+tracytraztse,25774050,3
+minutemaid,25774050,3
+felixsmli,25774050,4
+maixiaohuang,25774050,4
+48037187,25774050,5
+32019435,25774050,3
+65726915,25774050,3
+cameron18,25774050,4
+fish_apple_love,25774050,4
+4669732,25774050,4
+64545576,25774050,4
+61569380,25774050,4
+killit,25774050,4
+90741006,25774050,4
+kishikishikishi,25774050,4
+Forrester,25774050,5
+FatladySlim,25774050,5
+wewillrockyou,25774050,4
+31008535,25774050,4
+procxu,25774050,3
+owen289607833,25774050,2
+xiaopinshan,25774050,4
+yeeeeeee,25774050,4
+K.Night,25774050,4
+109950197,25774050,4
+foreversylvia,25774050,3
+56858454,25774050,3
+1421869,25774050,4
+spicybear,25774050,3
+angelliujiayun,25774050,4
+synther,25774050,-1
+94314282,25774050,4
+68878726,25774050,5
+3419902,25774050,4
+shusai,25774050,3
+43382367,25774050,4
+42957757,25774050,4
+52806556,25774050,2
+1485397,25774050,3
+49895670,25774050,4
+willingnotto,25774050,4
+2200421,25774050,4
+edward1988,25774050,3
+fawaixiaoyao,25774050,4
+50210563,25774050,4
+49813206,25774050,5
+3946449,25774050,-1
+53886643,25774050,5
+49763880,25774050,3
+69424948,25774050,3
+3010221,25774050,4
+4161339,25774050,4
+83773769,25774050,4
+56744668,25774050,5
+simpledeer,25774050,3
+91575456,25774050,5
+74173242,25774050,5
+miomiomeng,25774050,4
+21197410,25774050,4
+4154813,25774050,3
+jackieqiqi1990,25774050,3
+49761291,25774050,4
+42919297,25774050,4
+bunny622,25774050,5
+51679757,25774050,5
+52028198,25774050,4
+checl3,25774050,-1
+tanxinbuzu,25774050,3
+4649236,25774050,4
+lavender47,25774050,3
+62828901,25774050,3
+ruyueqinsu,25774050,4
+102030240,25774050,-1
+anguswhile,25774050,4
+calamus22,25774050,3
+emilydakota,25774050,5
+3007499,25774050,5
+some_Ji,25774050,4
+58078884,25774050,3
+gingcha,25774050,4
+mlgg,25774050,5
+66612367,25774050,5
+65507794,25774050,4
+ckino,25774050,3
+48604788,25774050,3
+27388426,25774050,5
+Yuimokin,25774050,3
+Howme,25774050,4
+2835535,25774050,4
+Sh1neYuan,25774050,4
+50587917,25774050,3
+76789340,25774050,4
+urielwang,25774050,3
+81296522,25774050,3
+zhupeng1115,25774050,4
+helemon,25774050,4
+MOVIE--KO,25774050,3
+hanalook,25774050,3
+69151612,25774050,2
+iammagic,25774050,4
+Vivian77,25774050,4
+yhn33,25774050,3
+fanxiaodong,25774050,5
+68850842,25774050,4
+4010903,25774050,4
+53659864,25774050,3
+54702669,25774050,5
+left-em,25774050,3
+59156667,25774050,4
+bearblindman,25774050,4
+loveraymond,25774050,4
+64276512,25774050,5
+65578714,25774050,4
+2784323,25774050,3
+lonelydark7,25774050,5
+xxxxxxdee,25774050,2
+zy_silverbullet,25774050,4
+4657541,25774050,4
+64780091,25774050,3
+119456550,25774050,3
+42362308,25774050,5
+59544418,25774050,3
+shawnNK,25774050,3
+ideathink,25774050,4
+eyefy,25774050,4
+43171172,25774050,5
+gruel_,25774050,4
+44923935,25774050,5
+Sky_215,25774050,4
+belongtol,25774050,4
+59580012,25774050,3
+feelnothing,25774050,4
+53591524,25774050,4
+xjksama,25774050,4
+83188361,25774050,3
+40699267,25774050,3
+mercikill,25774050,4
+En-ivan,25774050,3
+61697290,25774050,4
+98014979,25774050,5
+firepr,25774050,4
+sheiscandy,25774050,4
+51380722,25774050,4
+115822384,25774050,4
+wen1011,25774050,3
+44273997,25774050,3
+1510862,25774050,4
+52807266,25774050,4
+gegechenguang,25774050,5
+yingyouzang,25774050,4
+miracle1025,25774050,4
+AkimotoAkira,25774050,4
+choisinyu,25774050,3
+70296365,25774050,4
+lichuanlangjie,25774050,4
+87605838,25774050,5
+5224650,25774050,1
+judy0420,25774050,4
+47916116,25774050,5
+63937204,25774050,5
+monodysama,25774050,5
+4538969,25774050,3
+11566740,25774050,4
+notyetdone,25774050,4
+mango1992,25774050,5
+dearmore,25774050,3
+49575753,25774050,4
+SL46,25774050,-1
+aragakki,25774050,3
+beaworld,25774050,5
+sherylice,25774050,4
+66836438,25774050,4
+imoviekobe,25774050,3
+62704108,25774050,4
+tyouii,25774050,5
+maydaylyn,25774050,5
+63406200,25774050,2
+zicenn,25774050,4
+zhangaozhan,25774050,4
+ice_man2039,25774050,1
+35226413,25774050,4
+TuDamian,25774050,4
+jhy007,25774050,5
+chouyuuahouka,25774050,3
+115731110,25774050,4
+miu921,25774050,4
+94546976,25774050,5
+yuluoxiashang,25774050,5
+52651281,25774050,4
+lingnian,25774050,3
+tachibanakeiko,25774050,4
+55943262,25774050,4
+prep,25774050,5
+57488053,25774050,5
+LittleMissApril,25774050,3
+soloz,25774050,4
+Kevinsoong,25774050,5
+imoonight,25774050,5
+Slovekame,25774050,4
+45061776,25774050,4
+bananacm,25774050,5
+rubybrandy,25774050,4
+48565113,25774050,5
+caofoxfox,25774050,5
+baicun,25774050,5
+afrasakurai,25774050,-1
+43080143,25774050,-1
+hedmgh,25774050,4
+37737818,25774050,4
+remarkdep,25774050,2
+penguin-k,25774050,4
+RelaQoo,25774050,5
+51911319,25774050,2
+32650866,25774050,4
+cvitamin,25774050,5
+Crispy,25774050,4
+53058637,25774050,5
+losslilies,25774050,3
+49762208,25774050,4
+md_wxy,25774050,-1
+oppih,25774050,4
+cabbageSPEC,25774050,3
+shenyong6813,25774050,4
+kikiko9,25774050,4
+9659634,25774050,-1
+44912990,25774050,-1
+69277440,25774050,5
+liuweimao,25774050,4
+tumengying,25774050,4
+65190817,25774050,4
+sycsmr,25774050,4
+57828907,25774050,4
+3480038,25774050,4
+4797649,25774050,4
+shichaocaesar,25774050,5
+34000533,25774050,3
+91397317,25774050,4
+lazydesigner,25774050,4
+78529584,25774050,4
+ailanyiying,25774050,3
+54739935,25774050,2
+shierhu,25774050,3
+36669166,25774050,4
+55500066,25774050,4
+3727154,25774050,4
+36594980,25774050,3
+jayee_,25774050,5
+47709194,25774050,4
+50950784,25774050,4
+54049800,25774050,4
+3562143,25774050,3
+53555849,25774050,4
+4399509,25774050,5
+54443287,25774050,3
+LLsupportsJIM,25774050,3
+alefmugen,25774050,4
+48816397,25774050,-1
+sf12447411,25774050,3
+minami_yan,25774050,-1
+themoonforgets,25774050,4
+66178639,25774050,1
+Reita.Y,25774050,5
+BiXiaoBengZhuRe,25774050,4
+14529495,25774050,3
+saya0410,25774050,4
+zhanghaoruo,25774050,4
+snotman,25774050,4
+verakid,25774050,3
+ilikebeerrrr,25774050,3
+tapir_yi,25774050,5
+xbq1113,25774050,4
+59015401,25774050,2
+Jimmydtc,25774050,4
+craigjojo,25774050,5
+59301340,25774050,2
+4588754,25774050,3
+62687217,25774050,5
+Do-my-self,25774050,4
+62601567,25774050,4
+73237238,25774050,4
+erinnnire,25774050,4
+73585737,25774050,3
+e.feu,25774050,-1
+deartintin,25774050,3
+Jackandfoureyes,25774050,3
+bessie10105101,25774050,4
+74499406,25774050,4
+61058075,25774050,2
+40275009,25774050,3
+liuchang223,25774050,4
+63355214,25774050,1
+63804773,25774050,5
+36355364,25774050,5
+qure,25774050,4
+91427075,25774050,5
+vipchenhong,25774050,5
+hx615,25774050,3
+souryu,25774050,4
+70458781,25774050,3
+58413252,25774050,5
+luckyinvoke,25774050,5
+fineyou,25774050,5
+mizutanikosuke,25774050,4
+cookiecutter,25774050,3
+55989261,25774050,1
+imkly,25774050,4
+chendc,25774050,4
+48480667,25774050,3
+cymryan,25774050,4
+sleeper_arashi,25774050,4
+63141473,25774050,4
+wu_jingwen,25774050,5
+54404280,25774050,4
+2174443,25774050,5
+4311340,25774050,3
+jd4868,25774050,3
+45549330,25774050,3
+2997325,25774050,4
+candyrice,25774050,3
+37320102,25774050,5
+babyface39,25774050,3
+62434188,25774050,3
+45749483,25774050,4
+sheina,25774050,3
+58842483,25774050,4
+lovehide,25774050,4
+chunwan,25774050,5
+southdrift,25774050,4
+62450111,25774050,4
+army8735,25774050,3
+48585073,25774050,2
+57716182,25774050,4
+foreveryoyo,25774050,3
+Harvey_Ho,25774050,3
+66513837,25774050,4
+liaojinzi,25774050,4
+schuni,25774050,4
+54262110,25774050,4
+aiconanao,25774050,4
+conditionerzi,25774050,5
+faye.,25774050,4
+48911214,25774050,5
+70746193,25774050,4
+Castellan199,25774050,3
+yzt0806,25774050,4
+Tigerag,25774050,4
+zcm0731,25774050,4
+18080670,25774050,4
+KukiLEE,25774050,4
+56345176,25774050,4
+lin9046,25774050,4
+blackthree,25774050,3
+65183965,25774050,4
+zxcqwert,25774050,3
+60504195,25774050,3
+51199402,25774050,5
+3371479,25774050,4
+CityOfShadows,25774050,4
+48396212,25774050,4
+56620067,25774050,4
+83389859,25774050,3
+tsubasacn,25774050,5
+52335106,25774050,5
+69359290,25774050,4
+46628514,25774050,3
+65466125,25774050,3
+48474156,25774050,3
+46550458,25774050,4
+58810915,25774050,5
+33762856,25774050,4
+72820019,25774050,5
+kite2002,25774050,-1
+sunwim,25774050,4
+3772330,25774050,4
+77615598,25774050,3
+60518978,25774050,3
+tinakirakira,25774050,4
+sam_smile,25774050,3
+2597570,25774050,5
+eliachu,25774050,4
+coolluo_zw,25774050,3
+65607463,25774050,3
+geniuswan,25774050,4
+48461927,25774050,4
+44703064,25774050,-1
+hakana,25774050,3
+xxhhcc,25774050,4
+54680854,25774050,4
+59795551,25774050,3
+vagetables,25774050,5
+bei1004,25774050,4
+inakyl,25774050,-1
+54158519,25774050,2
+sakura7788,25774050,3
+moodi_rosette,25774050,5
+aiko555,25774050,3
+hexiaoqin,25774050,4
+morphinerouge,25774050,4
+52910504,25774050,4
+54113299,25774050,4
+sonmusmm,25774050,5
+sebastianliu,25774050,4
+Sylein,25774050,3
+48790779,25774050,4
+jessie1230,25774050,2
+13053957,25774050,5
+XiaoKong,25774050,3
+hahahaha38,25774050,5
+fuloli,25774050,4
+worldless,25774050,5
+emily_lp,25774050,3
+59806769,25774050,3
+68844083,25774050,4
+steflover,25774050,4
+57080555,25774050,3
+JKGTP,25774050,2
+58313990,25774050,4
+hopen1934,25774050,4
+46330086,25774050,3
+46330086,25774050,3
+60181393,25774050,5
+hibck,25774050,3
+49993320,25774050,3
+51199302,25774050,4
+lutosdan,25774050,3
+47433157,25774050,2
+b.side,25774050,3
+yokojanee,25774050,4
+long.mao,25774050,3
+lydiaxanthe,25774050,4
+55603094,25774050,3
+50608084,25774050,4
+JanC,25774050,4
+lesleylove,25774050,4
+54853221,25774050,5
+ymxdd326,25774050,4
+cqyyAyy,25774050,4
+70808460,25774050,3
+52106146,25774050,3
+DJwalawala,25774050,4
+cvisy,25774050,3
+Armande,25774050,4
+32844110,25774050,4
+shf993,25774050,3
+50915950,25774050,5
+44484685,25774050,5
+49254231,25774050,4
+okship,25774050,4
+cheth,25774050,4
+63189132,25774050,3
+BiAbiainSprIng,25774050,5
+36499503,25774050,3
+43648335,25774050,4
+hata_h,25774050,4
+AdelaisDuff,25774050,5
+stetehe,25774050,4
+51721466,25774050,3
+48180324,25774050,4
+64619116,25774050,3
+64377424,25774050,4
+ylrenee,25774050,4
+1169348,25774050,4
+emeline,25774050,3
+torrors,25774050,5
+L.ccnightcat,25774050,4
+ambrosia.levine,25774050,5
+siven1014,25774050,-1
+46843344,25774050,5
+Isayori,25774050,4
+5750489,25774050,3
+monkeek,25774050,3
+chennuo823,25774050,4
+2900760,25774050,4
+59524525,25774050,4
+Karasu7,25774050,5
+summermayfly,25774050,3
+57319762,25774050,3
+9274036,25774050,3
+ztl-poppy,25774050,3
+neverthink,25774050,5
+marmar,25774050,4
+kalun,25774050,4
+54493645,25774050,3
+zephyrance,25774050,3
+aaaaaalice,25774050,4
+53721569,25774050,5
+78914788,25774050,4
+laojiaoshou,25774050,4
+44714353,25774050,2
+55835105,25774050,3
+pilixiaohongmao,25774050,4
+29844884,25774050,4
+sharkspeare,25774050,4
+63527233,25774050,3
+2776195,25774050,5
+bogjebote,25774050,4
+47448262,25774050,3
+64530954,25774050,5
+btjing,25774050,2
+60894533,25774050,4
+youkilo,25774050,5
+NEO01,25774050,2
+qianxiaochen,25774050,3
+brad_tsye,25774050,4
+fuxiu,25774050,4
+co_cobalt,25774050,4
+janesora,25774050,4
+midorikoannie,25774050,3
+lovewaiter,25774050,4
+Milkful,25774050,4
+46620424,25774050,2
+64996012,25774050,3
+53011245,25774050,4
+CRA1G,25774050,4
+58906132,25774050,4
+ossianshiwo,25774050,2
+49371871,25774050,4
+lollypain,25774050,4
+sinceiloveu,25774050,3
+47361909,25774050,3
+63666748,25774050,4
+xylxydt,25774050,5
+misora331,25774050,4
+kongben,25774050,4
+49725248,25774050,5
+51911229,25774050,5
+sho2mon4e4y,25774050,3
+AkiranoAsahi,25774050,4
+39072796,25774050,2
+37590298,25774050,3
+74390608,25774050,4
+arthur104d,25774050,3
+EchoVan,25774050,3
+18937847,25774050,4
+41348507,25774050,4
+11054187,25774050,4
+neverland0126,25774050,4
+tierra,25774050,3
+61688299,25774050,5
+crt,25774050,4
+tiwtmit,25774050,1
+KatoShigeaki,25774050,3
+37858596,25774050,5
+2594481,25774050,5
+darkness211,25774050,3
+caolong,25774050,3
+3063479,25774050,4
+FUMANCHU,25774050,4
+outsider_9122,25774050,5
+suzichong,25774050,3
+randiQ,25774050,-1
+56691904,25774050,5
+TERRYBEAR,25774050,4
+youwin,25774050,3
+n19htmare,25774050,4
+83123138,25774050,4
+wqmeoe,25774050,4
+HDG3215,25774050,4
+boboboa32,25774050,4
+timejin,25774050,4
+75734688,25774050,5
+dmzrachel,25774050,5
+ringogo,25774050,-1
+3313195,25774050,4
+41031427,25774050,4
+heyheygun,25774050,4
+hello999,25774050,2
+tianyajie,25774050,4
+44878423,25774050,5
+64904915,25774050,3
+miaoyan,25774050,3
+Jealousy,25774050,3
+44903562,25774050,3
+53021898,25774050,4
+67691438,25774050,4
+ywrj91086,25774050,3
+68502468,25774050,5
+37857430,25774050,3
+35895551,25774050,3
+xixi_yuanxin,25774050,4
+eefee,25774050,4
+127478888,25774050,4
+55714302,25774050,4
+59665595,25774050,4
+3901159,25774050,3
+48167301,25774050,4
+39728715,25774050,5
+bigsword,25774050,4
+mustundead,25774050,3
+63744273,25774050,4
+la739212322,25774050,5
+69406009,25774050,4
+80590035,25774050,4
+pigmiura,25774050,3
+67796922,25774050,3
+96290717,25774050,4
+67609353,25774050,4
+76442034,25774050,5
+53868140,25774050,4
+90105219,23769147,3
+47869637,23769147,5
+41943699,23769147,3
+52340068,23769147,5
+115097585,23769147,3
+44942644,23769147,3
+51880150,23769147,5
+59801423,23769147,5
+68979031,23769147,4
+42913226,23769147,4
+65854158,23769147,4
+shouwangmaitian,23769147,3
+koujill,23769147,-1
+azaabuu,23769147,5
+130459392,23769147,4
+lin127,23769147,4
+32742041,23769147,-1
+29844884,23769147,4
+1437680,23769147,5
+60735312,23769147,-1
+60735312,23769147,-1
+134625303,23769147,3
+y.sh,23769147,3
+51125398,23769147,5
+43646576,23769147,5
+50752388,23769147,2
+xubeisi,23769147,5
+58064281,23769147,3
+3144882,23769147,4
+90543489,23769147,3
+1689876,23769147,4
+120383320,23769147,3
+78690191,23769147,5
+113986971,23769147,3
+49115709,23769147,5
+47468400,23769147,4
+53466542,23769147,3
+49176229,23769147,4
+77013688,23769147,5
+59290535,23769147,5
+44811675,23769147,3
+Jensen4ever,23769147,3
+43625639,23769147,4
+teenytinygenius,23769147,5
+42279146,23769147,4
+4475163,23769147,4
+94831579,23769147,4
+45362948,23769147,3
+chubby_yy,23769147,2
+66057217,23769147,3
+anyeyaodao,23769147,4
+104777463,23769147,4
+47818066,23769147,3
+rachel57,23769147,3
+poooooop,23769147,3
+DavyNight,23769147,4
+91252045,23769147,5
+81619869,23769147,3
+59117359,23769147,1
+Deep-drawnstory,23769147,3
+18814360,23769147,4
+gaoxingyeah,23769147,5
+Ghost.Melody,23769147,4
+132463662,23769147,4
+jasocn,23769147,4
+danlan121,23769147,3
+67808822,23769147,4
+nvmotou,23769147,4
+131909298,23769147,3
+137555231,23769147,3
+3510608,23769147,4
+48470895,23769147,3
+carried,23769147,3
+60717417,23769147,4
+sakurahao,23769147,2
+119446065,23769147,3
+elandross,23769147,4
+hideer,23769147,3
+122635365,23769147,2
+laoziiii,23769147,5
+62308831,23769147,5
+51445817,23769147,4
+61607756,23769147,5
+huoxiaoliang,23769147,3
+67565594,23769147,5
+90973850,23769147,3
+mirror-Gee,23769147,4
+50063811,23769147,3
+57640790,23769147,3
+68630108,23769147,3
+Guzzi,23769147,5
+1133756,23769147,4
+ishra,23769147,5
+68550063,23769147,4
+nothingfish,23769147,5
+54648454,23769147,2
+47438789,23769147,3
+126780823,23769147,3
+48890174,23769147,4
+underware,23769147,5
+62365246,23769147,3
+76364366,23769147,3
+45905762,23769147,5
+88378303,23769147,4
+131205877,23769147,4
+135745978,23769147,4
+8523675,23769147,4
+4552919,23769147,5
+69439267,23769147,4
+50403801,23769147,4
+9994133,23769147,4
+twinli,23769147,4
+38514261,23769147,5
+amberasharon,23769147,4
+c2ge,23769147,4
+jasmine22,23769147,3
+jaimeshao,23769147,4
+Vivi17,23769147,3
+45077358,23769147,3
+stanza,23769147,5
+medeHOW,23769147,5
+98956225,23769147,5
+59513842,23769147,4
+8312118,23769147,3
+44045443,23769147,3
+84063171,23769147,-1
+graceychu,23769147,4
+119399393,23769147,4
+2527787,23769147,2
+58442075,23769147,3
+34700771,23769147,-1
+edward1988,23769147,3
+1929758,23769147,4
+1860994,23769147,5
+131749314,23769147,3
+55558648,23769147,5
+73696070,23769147,4
+4271475,23769147,4
+shahua,23769147,2
+L2X12221120,23769147,4
+16834974,23769147,4
+82075343,23769147,4
+1831746,23769147,3
+39192898,23769147,5
+135247004,23769147,4
+60072437,23769147,3
+61236643,23769147,4
+88262083,23769147,4
+43584128,23769147,4
+103277074,23769147,4
+98954264,23769147,2
+grayjade,23769147,4
+54983933,23769147,4
+47037959,23769147,3
+54443064,23769147,3
+48590382,23769147,4
+popgustudio,23769147,4
+lovelyladys,23769147,2
+95880928,23769147,4
+127080746,23769147,3
+123029780,23769147,2
+51967154,23769147,4
+soucy,23769147,4
+yunxin,23769147,5
+61535364,23769147,4
+115949877,23769147,3
+Violayy,23769147,2
+shirleychen,23769147,-1
+alan_fanfan,23769147,4
+3529035,23769147,-1
+15535572,23769147,3
+queentie,23769147,5
+1725877,23769147,4
+53024139,23769147,3
+49198824,23769147,3
+60736257,23769147,4
+47365600,23769147,-1
+90213289,23769147,4
+1486502,23769147,4
+60134885,23769147,4
+10342222,23769147,4
+137206904,23769147,4
+35111006,23769147,-1
+63658067,23769147,3
+129857538,23769147,4
+63090642,23769147,4
+oct6th,23769147,4
+socordia,23769147,3
+viego,23769147,5
+5318547,23769147,3
+8342264,23769147,4
+136293291,23769147,-1
+tingdy,23769147,4
+88304289,23769147,5
+41786241,23769147,4
+70313784,23769147,3
+97693514,23769147,3
+38258575,23769147,2
+3577491,23769147,3
+134931242,23769147,-1
+124640229,23769147,4
+pepermint,23769147,5
+neilrocklee,23769147,5
+64712701,23769147,5
+68630098,23769147,2
+moxmo,23769147,3
+lingdongling,23769147,2
+givindream,23769147,4
+90217144,23769147,5
+60688819,23769147,-1
+61681574,23769147,3
+huang9426464,23769147,3
+71516012,23769147,5
+87863211,23769147,5
+65183183,23769147,4
+Ciris,23769147,4
+57775883,23769147,5
+60376200,23769147,4
+baoziyudigua,23769147,3
+136344918,23769147,4
+youtubunsei,23769147,5
+renxiaoheng,23769147,4
+gezi921054,23769147,3
+yuanyuanfeng,23769147,5
+leoglory,23769147,4
+61701584,23769147,4
+ice_bloom,23769147,4
+131408932,23769147,4
+50109915,23769147,4
+64425214,23769147,3
+88997815,23769147,4
+3184101,23769147,5
+echofrancis,23769147,4
+zunjj,23769147,3
+136910570,23769147,4
+34674400,23769147,4
+120505140,23769147,4
+53433798,23769147,4
+63869528,23769147,3
+50891455,23769147,5
+joker-G,23769147,4
+1277968,23769147,4
+42096779,23769147,4
+2199140,23769147,3
+50677372,23769147,4
+66945260,23769147,4
+41923950,23769147,4
+sisi36,23769147,4
+67719060,23769147,4
+93156271,23769147,4
+75915241,23769147,3
+freeyoru,23769147,4
+120551581,23769147,4
+122603381,23769147,5
+66632216,23769147,4
+48187928,23769147,4
+milklotus,23769147,3
+52883078,23769147,2
+3937523,23769147,4
+3158674,23769147,5
+nimanima,23769147,4
+dream_rain,23769147,4
+36621771,23769147,4
+53795201,23769147,4
+66405619,23769147,4
+43096716,23769147,4
+earthchild,23769147,4
+82217215,23769147,5
+3173862,23769147,-1
+souring,23769147,1
+lostintheairr,23769147,3
+Awewonderland,23769147,4
+52076370,23769147,4
+SINCE1988,23769147,4
+joemayxu,23769147,4
+49936308,23769147,4
+ilovehotcoffee,23769147,-1
+51606142,23769147,3
+95891176,23769147,4
+80995666,23769147,4
+49949996,23769147,4
+YAO-yao,23769147,4
+14455478,23769147,4
+zhchtcm,23769147,4
+louisyoung1026,23769147,4
+44463308,23769147,3
+GermanName,23769147,4
+evanlee2018,23769147,5
+superrao,23769147,3
+zk_0707,23769147,3
+bluegatecrossin,23769147,4
+52484761,23769147,4
+nousi,23769147,4
+lyning,23769147,4
+83472045,23769147,4
+phpqzq,23769147,3
+muxieyes,23769147,3
+123555386,23769147,4
+Arleisha,23769147,5
+1528379,23769147,3
+4431506,23769147,4
+53249233,23769147,4
+26267076,23769147,4
+130711498,23769147,5
+ccushuaia1220,23769147,-1
+74573393,23769147,5
+maimai251,23769147,4
+59142560,23769147,5
+68982219,23769147,3
+59378291,23769147,4
+53227554,23769147,4
+torreslee,23769147,3
+liqiyao8931,23769147,5
+clever_trick,23769147,4
+23253638,23769147,4
+2414100,23769147,3
+kathychu,23769147,4
+3066956,23769147,3
+41288485,23769147,5
+67009587,23769147,5
+1727376,23769147,3
+76189821,23769147,5
+59164249,23769147,3
+123063664,23769147,3
+89997290,23769147,4
+121475864,23769147,4
+4324772,23769147,5
+myqueenangela,23769147,3
+Freedomautumn,23769147,5
+2092765,23769147,4
+NN.YY,23769147,5
+1392150,23769147,2
+101603016,23769147,4
+lucifermi,23769147,5
+4672545,23769147,4
+72538044,23769147,3
+3160589,23769147,3
+sliaobellamy,23769147,4
+81412725,23769147,4
+l601512254,23769147,4
+102407734,23769147,5
+103759446,23769147,3
+111739039,23769147,4
+43099791,23769147,3
+GracieG,23769147,-1
+48474156,23769147,5
+dumplinface,23769147,5
+wrong007,23769147,3
+116510572,23769147,5
+shuixieqingtai,23769147,4
+43195130,23769147,4
+58161520,23769147,5
+yb7116163,23769147,5
+tangrumei1022,23769147,4
+sayatou,23769147,3
+hilongmaoxiong,23769147,4
+changeable,23769147,5
+120531493,23769147,5
+floraSmithereen,23769147,4
+136738123,23769147,-1
+61246542,23769147,4
+guangyingyinhen,23769147,5
+111792249,23769147,3
+3568353,23769147,5
+2227016,23769147,3
+yimoyoulan916,23769147,4
+53682563,23769147,4
+37850704,23769147,4
+5336287,23769147,5
+59334980,23769147,3
+pranksterJ,23769147,4
+134968905,23769147,5
+64622270,23769147,4
+67412256,23769147,5
+30573920,23769147,4
+46510728,23769147,5
+XinwenCheng,23769147,3
+keeliu67,23769147,-1
+quaner1126,23769147,-1
+79835731,23769147,4
+foxlovewhitecat,23769147,5
+51852729,23769147,4
+52476794,23769147,3
+135746121,23769147,3
+4881092,23769147,3
+48093808,23769147,5
+luanma1977,23769147,4
+48110404,23769147,5
+64060084,23769147,4
+carmael,23769147,3
+79498814,23769147,5
+52867875,23769147,4
+119277789,23769147,3
+captainanlie,23769147,4
+hengge,23769147,5
+wizkeigo,23769147,3
+47709338,23769147,3
+134545730,23769147,-1
+60778939,23769147,3
+44398126,23769147,3
+31072510,23769147,3
+134079564,23769147,3
+76655932,23769147,3
+49013482,23769147,5
+57293187,23769147,4
+54871934,23769147,3
+70328585,23769147,5
+belovedme,23769147,3
+zita07,23769147,3
+qiuqiutone,23769147,3
+Bai-Bbai,23769147,4
+61258936,23769147,5
+136221659,23769147,3
+vivianya,23769147,4
+54286772,23769147,3
+40373499,23769147,1
+65269749,23769147,3
+yingchen221e,23769147,3
+55316682,23769147,4
+52982079,23769147,5
+ainiruyanjing,23769147,4
+83295870,23769147,3
+38473858,23769147,-1
+55306149,23769147,4
+72792251,23769147,3
+74827424,23769147,4
+72831768,23769147,5
+30299786,23769147,4
+yooyoooooo,23769147,2
+lijianbinxp,23769147,4
+40447897,23769147,3
+illkids,23769147,4
+syzhu1,23769147,-1
+louis4498,23769147,5
+49271269,23769147,5
+132493750,23769147,5
+49121736,23769147,-1
+130270800,23769147,4
+121148510,23769147,3
+53722280,23769147,3
+119353833,23769147,4
+67387298,23769147,5
+69838036,23769147,3
+sea-lucky,23769147,2
+wusuhui,23769147,3
+103182067,23769147,3
+3202437,23769147,2
+52554533,23769147,3
+68495730,23769147,4
+GOGOAN,23769147,5
+53815013,23769147,5
+MisaPhantomhive,23769147,3
+37160658,23769147,4
+120322125,23769147,3
+65079476,23769147,2
+luluyunxiao,23769147,3
+123873434,23769147,4
+48478152,23769147,3
+43303328,23769147,5
+59947248,23769147,4
+sophia_423,23769147,4
+1274020,23769147,4
+126239848,23769147,2
+4139518,23769147,5
+59028281,23769147,4
+50537811,23769147,4
+81611618,23769147,4
+58209087,23769147,4
+32383822,23769147,4
+36849871,23769147,4
+bihan,23769147,3
+wangxj524,23769147,5
+121042228,23769147,-1
+2265138,23769147,4
+12670510,23769147,5
+1821069,23769147,2
+44486984,23769147,2
+9411327,23769147,5
+yningc,23769147,4
+77866211,23769147,-1
+77866211,23769147,-1
+82802978,23769147,5
+70467086,23769147,5
+41546963,23769147,5
+123061684,23769147,4
+42424175,23769147,3
+58310222,23769147,3
+66794675,23769147,5
+103477859,23769147,4
+110447556,23769147,5
+kinkin77,23769147,-1
+isabrella,23769147,5
+justinran,23769147,5
+deepsnow,23769147,5
+4154813,23769147,2
+cote,23769147,5
+18586571,23769147,3
+43471768,23769147,5
+silverzi,23769147,-1
+52814839,23769147,3
+silent_island,23769147,3
+celines,23769147,4
+2974918,23769147,5
+nonob,23769147,3
+panmen,23769147,4
+77049026,23769147,2
+48259477,23769147,4
+124003449,23769147,5
+3657702,23769147,5
+on1ooker,23769147,4
+64881542,23769147,4
+3408985,23769147,3
+89852120,23769147,4
+onlyqinping,23769147,4
+31102423,23769147,4
+89500956,23769147,2
+yan599083337,23769147,3
+starstear4ever,23769147,-1
+134203219,23769147,4
+95884206,23769147,5
+nyssa712,23769147,4
+fumihiko1985,23769147,3
+10618924,23769147,5
+Andred,23769147,5
+4426138,23769147,4
+53581844,23769147,4
+67346668,23769147,4
+92335063,23769147,4
+mysalvation,23769147,5
+60129524,23769147,4
+48066058,23769147,3
+Kingnima,23769147,4
+96512812,23769147,3
+41370734,23769147,5
+52857492,23769147,5
+78922005,23769147,4
+27383917,23769147,3
+BonjourEnid,23769147,4
+FlowerCharlotte,23769147,4
+85362484,23769147,4
+60167951,23769147,4
+zzzzwt,23769147,3
+104409838,23769147,4
+72997899,23769147,3
+63666149,23769147,5
+95630023,23769147,5
+wwyzz,23769147,3
+46099325,23769147,4
+2240124,23769147,4
+manyucastle,23769147,3
+K.chan,23769147,4
+Sigrid_Lu,23769147,3
+XIONGXIN0523,23769147,4
+64716914,23769147,4
+64761922,23769147,4
+88853288,23769147,4
+3767677,23769147,5
+96509322,23769147,4
+tianeyren,23769147,4
+musmur,23769147,5
+77054730,23769147,4
+zoe2punk,23769147,3
+47041593,23769147,5
+callmemrcoolman,23769147,3
+Ston3s,23769147,5
+qgw2050,23769147,4
+65590168,23769147,3
+30221434,23769147,2
+64882417,23769147,4
+135762513,23769147,5
+135694361,23769147,3
+115524075,23769147,3
+46513410,23769147,3
+44535286,23769147,1
+41440625,23769147,4
+56270845,23769147,5
+phoebe0_0nn,23769147,5
+57007520,23769147,5
+71403795,23769147,5
+91426167,23769147,5
+91426167,23769147,5
+53935414,23769147,4
+dwwan,23769147,5
+136386739,23769147,5
+4208005,23769147,4
+takuyayueyue,23769147,4
+2990853,23769147,4
+64235845,23769147,4
+pearldeng,23769147,3
+yvonneee,23769147,5
+60803592,23769147,3
+podolski,23769147,3
+idlelz,23769147,4
+44371183,23769147,4
+54107765,23769147,5
+45379580,23769147,5
+38603350,23769147,4
+YeLLow_qst,23769147,3
+80860113,23769147,3
+33525277,23769147,3
+131499885,23769147,4
+xiaoitsd,23769147,5
+34943658,23769147,4
+COCOTTE,23769147,4
+67009209,23769147,5
+82722362,23769147,3
+heaven_silence,23769147,5
+backspace1122,23769147,5
+2106137,23769147,2
+wrnmdk,23769147,5
+75844540,23769147,4
+vivienvb,23769147,5
+49576050,23769147,3
+4114969,23769147,4
+sheldonkao,23769147,3
+60858560,23769147,3
+lixixi1995,23769147,3
+47817664,23769147,5
+1114835,23769147,4
+carnavaldefine,23769147,4
+A.Plus,23769147,4
+121875738,23769147,4
+41855333,23769147,3
+43703010,23769147,3
+89034345,23769147,4
+fadea_way,23769147,4
+qingxi52vv,23769147,4
+3201065,23769147,4
+72569635,23769147,3
+35929918,23769147,3
+ursyoyo,23769147,4
+alei7774,23769147,3
+sosoless,23769147,5
+70464788,23769147,4
+fuzyu,23769147,5
+honeypapa,23769147,-1
+57947049,23769147,5
+62672201,23769147,3
+68203246,23769147,3
+nutbean,23769147,3
+67590523,23769147,3
+60199001,23769147,-1
+59220835,23769147,3
+proband,23769147,3
+70690888,23769147,5
+74329329,23769147,3
+133128355,23769147,4
+Chi-L.love,23769147,5
+ashley17,23769147,3
+72979356,23769147,4
+73135988,23769147,3
+SophiaCGuo,23769147,3
+3228228,23769147,4
+tonisu,23769147,-1
+63981734,23769147,4
+63688364,23769147,4
+OrianneLau,23769147,4
+lmcrawl,23769147,2
+50527578,23769147,3
+44398603,23769147,5
+43652282,23769147,-1
+57240144,23769147,3
+zhangjune7,23769147,3
+Cherry,23769147,4
+64124840,23769147,3
+57142558,23769147,4
+YoulovHellokity,23769147,5
+32737561,23769147,4
+62699217,23769147,3
+114647405,23769147,4
+37210878,23769147,4
+134417369,23769147,3
+56445461,23769147,5
+35363595,23769147,3
+yujiasun,23769147,4
+joybang,23769147,5
+49497563,23769147,5
+48261192,23769147,4
+56510668,23769147,4
+63027817,23769147,3
+59267362,23769147,5
+oldragontomb,23769147,4
+103315563,23769147,4
+3579800,23769147,2
+135270384,23769147,3
+122052999,23769147,1
+dixinhuo,23769147,2
+2920020,23769147,4
+65094670,23769147,4
+1865210,23769147,4
+136097338,23769147,3
+44852938,23769147,3
+3592617,23769147,5
+70390842,23769147,4
+74084881,23769147,5
+Katinka,23769147,5
+84047449,23769147,4
+youzibanana,23769147,4
+89301190,23769147,4
+lottery,23769147,4
+11472770,23769147,5
+Raymond_86,23769147,4
+127675582,23769147,1
+53080002,23769147,5
+4509449,23769147,3
+92355817,23769147,5
+54853596,23769147,2
+80017178,23769147,4
+61580150,23769147,5
+97088153,23769147,3
+btone0808,23769147,3
+25350324,23769147,-1
+deathlegend,23769147,-1
+xuyimeng,23769147,4
+60088640,23769147,3
+59475205,23769147,4
+63793789,23769147,4
+47472746,23769147,4
+132206217,23769147,5
+azurepale,23769147,5
+azurepale,23769147,5
+zhizi99,23769147,5
+60230223,23769147,3
+51068875,23769147,4
+66409658,23769147,4
+stupidcat7652,23769147,-1
+3890374,23769147,5
+3953760,23769147,5
+dorriya,23769147,5
+134495648,23769147,3
+106212001,23769147,4
+szdd,23769147,3
+48695037,23769147,5
+toyuan,23769147,3
+1437339,23769147,5
+129411152,23769147,5
+74103020,23769147,3
+fengguoliuxiang,23769147,4
+motou0328,23769147,4
+xiaomao,23769147,4
+56838918,23769147,3
+33538142,23769147,4
+GoldenCompass,23769147,4
+marcamoy,23769147,4
+KatherineWang,23769147,3
+42646716,23769147,3
+candicechang,23769147,3
+gzzzrk,23769147,5
+80506122,23769147,3
+veronica1013,23769147,4
+2759466,23769147,5
+4320404,23769147,3
+yang0826,23769147,4
+DX3960,23769147,5
+94394247,23769147,4
+57367354,23769147,4
+57077807,23769147,3
+3505386,23769147,5
+80936991,23769147,3
+carlo_,23769147,4
+107554806,23769147,5
+49539292,23769147,4
+65930256,23769147,3
+cijfer,23769147,-1
+50451911,23769147,3
+60858508,23769147,4
+regalo,23769147,4
+46818877,23769147,4
+73866765,23769147,5
+wanggunlv,23769147,4
+3598072,23769147,2
+68596231,23769147,4
+80319931,23769147,3
+58364140,23769147,3
+131749198,23769147,3
+68420280,23769147,4
+3571623,23769147,3
+135714776,23769147,5
+IridescentSin,23769147,5
+bigmiao,23769147,4
+45484261,23769147,5
+72719769,23769147,4
+dengxuanhai,23769147,3
+maluguojiang,23769147,4
+70487817,23769147,3
+leikea,23769147,3
+yuuu,23769147,4
+48687824,23769147,3
+49308797,23769147,4
+luvkhalil,23769147,4
+102912620,23769147,2
+iisakura,23769147,3
+129444596,23769147,5
+moryfor,23769147,4
+taylorzc,23769147,2
+38886796,23769147,4
+1548712,23769147,4
+58802831,23769147,5
+2332162,23769147,3
+2829310,23769147,4
+2829310,23769147,4
+28312683,23769147,3
+YolaZhang,23769147,4
+6742412,23769147,5
+85958266,23769147,4
+59556078,23769147,4
+85454895,23769147,3
+66979226,23769147,4
+73450758,23769147,1
+mcbird3017,23769147,5
+Eric-Andy,23769147,4
+wojiaoxiaoyun,23769147,4
+Aimovie,23769147,3
+longzainali,23769147,4
+125760534,23769147,5
+3609870,23769147,4
+Decembermay,23769147,4
+4709296,23769147,4
+57946312,23769147,2
+39649962,23769147,4
+51605803,23769147,4
+50480913,23769147,4
+124228223,23769147,5
+3880844,23769147,4
+ivanleung,23769147,4
+33524260,23769147,4
+C.YEll,23769147,2
+59312513,23769147,5
+45319686,23769147,2
+67758880,23769147,3
+134463446,23769147,4
+43529469,23769147,4
+62113049,23769147,4
+72292155,23769147,3
+35692307,23769147,4
+shenliyang,23769147,5
+48848721,23769147,2
+43187104,23769147,4
+49443898,23769147,3
+50566408,23769147,4
+126980247,23769147,3
+96044338,23769147,3
+visitant,23769147,4
+59621398,23769147,4
+54277204,23769147,3
+5754772,23769147,4
+pjjdehao2,23769147,4
+6239310,23769147,4
+70469575,23769147,4
+77596447,23769147,-1
+40591271,23769147,5
+87651171,23769147,5
+peae,23769147,5
+75122925,23769147,4
+45216474,23769147,5
+gunsky,23769147,3
+jeremy-won,23769147,3
+48770075,23769147,4
+yoory,23769147,-1
+2963229,23769147,2
+izumi999,23769147,3
+yalindongdong,23769147,2
+37567847,23769147,4
+Chivar,23769147,4
+fernandosong,23769147,3
+graceinjune,23769147,2
+punk90,23769147,4
+48996798,23769147,4
+LadyA,23769147,3
+77078152,23769147,4
+bb0708,23769147,3
+colorfulturtle,23769147,-1
+56682460,23769147,3
+jon1ee,23769147,3
+42937359,23769147,5
+2713839,23769147,3
+shiningkiss85,23769147,4
+135012811,23769147,3
+76236179,23769147,3
+64266034,23769147,2
+64266034,23769147,2
+85169230,23769147,5
+Isa1996,23769147,3
+mona1224,23769147,5
+babywu2888,23769147,3
+shinydaye,23769147,4
+suzie09-20,23769147,3
+74894651,23769147,5
+113124571,23769147,5
+mimuko,23769147,5
+sept7,23769147,4
+laomo,23769147,-1
+suuunino,23769147,3
+sulizhenkhalil,23769147,5
+6303192,23769147,1
+99710074,23769147,5
+4242859,23769147,3
+saosaoxy,23769147,5
+tanshiyu,23769147,5
+61670173,23769147,4
+49408765,23769147,-1
+75157602,23769147,3
+67905670,23769147,5
+gloria1102,23769147,3
+marissatsui,23769147,4
+56480029,23769147,4
+1174148,23769147,3
+65516017,23769147,4
+38736772,23769147,2
+cherrydiu,23769147,3
+133332673,23769147,4
+tirramisu,23769147,3
+63422177,23769147,3
+13837978,23769147,4
+130452925,23769147,-1
+lenka,23769147,4
+Xiaolaowu,23769147,4
+65017901,23769147,3
+ashincheer,23769147,2
+62928630,23769147,3
+neverbutterfly,23769147,2
+78902065,23769147,4
+48619599,23769147,3
+helloxiaolin,23769147,4
+75539953,23769147,3
+56194836,23769147,3
+71890436,23769147,3
+sabine,23769147,1
+75913868,23769147,4
+119158241,23769147,3
+35677147,23769147,4
+wuxi4945,23769147,4
+gghioijnhnsus,23769147,5
+64528316,23769147,5
+47114271,23769147,3
+irenarde,23769147,5
+75268479,23769147,3
+30218761,23769147,3
+41396729,23769147,4
+mon,23769147,4
+mon,23769147,4
+131012186,23769147,3
+34571461,23769147,3
+stacy-agony,23769147,5
+116551398,23769147,3
+duidao,23769147,5
+67491757,23769147,3
+zuiaidaluobo,23769147,4
+zipaiwang,23769147,4
+edward2wong,23769147,5
+46444782,23769147,4
+4676441,23769147,-1
+127071890,23769147,4
+chloecin,23769147,3
+56227323,23769147,4
+75488232,23769147,3
+miku,23769147,4
+79058129,23769147,4
+2850996,23769147,5
+39370570,23769147,4
+73203651,23769147,5
+1613774,23769147,3
+zhazha-GUY,23769147,5
+wind_field,23769147,4
+80349572,23769147,4
+xiaojiongxia,23769147,4
+64388415,23769147,4
+bearblindman,23769147,4
+moqiyaya,23769147,4
+Nancypeach,23769147,4
+50204863,23769147,5
+68699271,23769147,4
+42680177,23769147,5
+2769574,23769147,5
+99805192,23769147,3
+48523065,23769147,4
+47280771,23769147,3
+132821219,23769147,4
+10417737,23769147,-1
+whypretty,23769147,3
+whypretty,23769147,3
+56854284,23769147,5
+6966691,23769147,2
+4190834,23769147,4
+sunny_i,23769147,3
+88634598,23769147,4
+4590078,23769147,3
+20713273,23769147,1
+125601790,23769147,3
+Miss_Flower_,23769147,5
+120828432,23769147,3
+41540943,23769147,2
+EloiseL,23769147,5
+93315721,23769147,3
+XXXXFFFF7,23769147,4
+53743236,23769147,4
+60046891,23769147,5
+106126456,23769147,4
+MUSELILYS,23769147,-1
+joeyada,23769147,3
+64141017,23769147,4
+44810732,23769147,2
+narahana,23769147,3
+58872297,23769147,2
+colintide,23769147,3
+mspengmei,23769147,4
+1210763,23769147,4
+halfsquare,23769147,4
+86893132,23769147,5
+carrieflyhigh,23769147,5
+TenkyAn,23769147,3
+44664687,23769147,4
+69515541,23769147,5
+35275232,23769147,4
+iamk66,23769147,4
+76624951,23769147,3
+YuSu,23769147,4
+ovanisho,23769147,3
+75189651,23769147,4
+76309125,23769147,3
+jisixue0111,23769147,3
+64786067,23769147,3
+57971296,23769147,4
+59128714,23769147,4
+46589297,23769147,4
+guojiangdou,23769147,4
+53637766,23769147,3
+Ikino,23769147,5
+HayleyWestrate,23769147,-1
+52856556,23769147,5
+RIVERT,23769147,2
+fei-never,23769147,5
+61123177,23769147,5
+sunkyeast,23769147,3
+79550224,23769147,4
+waitintheseason,23769147,3
+vacuo,23769147,5
+leixe,23769147,4
+53704124,23769147,3
+zhangyue78,23769147,2
+fufu28,23769147,5
+black201,23769147,5
+fishcry,23769147,4
+2360360,23769147,3
+42367831,23769147,3
+COCOCOQUEEN,23769147,3
+candy_mo,23769147,4
+3458545,23769147,4
+64716010,23769147,5
+76786786,23769147,4
+4469892,23769147,5
+zhujifan,23769147,4
+hazechann,23769147,-1
+Sophieless,23769147,4
+78500828,23769147,2
+zoujian-999,23769147,4
+121478447,23769147,2
+50079024,23769147,3
+wzn,23769147,4
+51468288,23769147,4
+46891374,23769147,5
+chuleiwu,23769147,4
+3410802,23769147,4
+92716024,23769147,4
+125163601,23769147,5
+angelliuzhihui,23769147,4
+122394659,23769147,4
+baozha,23769147,4
+49787420,23769147,4
+lena0517,23769147,4
+deadcolour,23769147,4
+102677023,23769147,5
+evahsu,23769147,4
+1335533,23769147,4
+53185538,23769147,5
+60411524,23769147,3
+hrj21,23769147,4
+xiaoshi0212,23769147,4
+72685963,23769147,3
+61591842,23769147,4
+5684681,23769147,-1
+loveleejin,23769147,3
+astroangel,23769147,5
+3653425,23769147,5
+129255326,23769147,4
+1482288,23769147,4
+77848962,23769147,3
+impzz,23769147,4
+emma1219,23769147,3
+Lumiere5200,23769147,4
+34702944,23769147,4
+36354672,23769147,5
+59099811,23769147,3
+catherinexuf,23769147,3
+27083454,23769147,5
+69680398,23769147,3
+merengue,23769147,4
+51150975,23769147,2
+ivril,23769147,4
+2205198,23769147,4
+51564570,23769147,5
+51886935,23769147,5
+tout-les-jours,23769147,3
+sissifang,23769147,2
+49787096,23769147,3
+4040058,23769147,3
+june_jane,23769147,4
+1963086,23769147,4
+66395869,23769147,5
+huizi-xuan,23769147,4
+2691100,23769147,4
+71126772,23769147,3
+131504298,23769147,4
+starjxc,23769147,3
+110718557,23769147,3
+shuman90,23769147,5
+53573790,23769147,4
+zivee-1uo,23769147,3
+rockymei,23769147,5
+84726014,23769147,5
+supremeJ,23769147,5
+Lovelife-hh,23769147,4
+tintin_yu,23769147,3
+3478406,23769147,3
+120605718,23769147,3
+1094032,23769147,4
+110396643,23769147,5
+64747318,23769147,4
+happybeibei,23769147,3
+94422178,23769147,4
+88673988,23769147,5
+tzhuang,23769147,4
+ukiyoe_kb,23769147,4
+58454768,23769147,4
+rttcat,23769147,3
+dOdO621,23769147,4
+31634567,23769147,4
+alicewithoutyou,23769147,4
+60315776,23769147,3
+sophisticated,23769147,3
+54130249,23769147,5
+50580162,23769147,4
+smile19890207,23769147,4
+48860832,23769147,4
+65389965,23769147,4
+Vantt,23769147,1
+kingkongbarbie,23769147,4
+50720620,23769147,4
+aprilray,23769147,4
+babywineer,23769147,4
+kingiknow,23769147,3
+4616027,23769147,5
+66595969,23769147,4
+85811535,23769147,4
+53281566,23769147,4
+71543587,23769147,4
+littlemansay,23769147,5
+50271595,23769147,4
+wangmian0729,23769147,3
+52926805,23769147,-1
+Doluoluo,23769147,4
+qu111,23769147,5
+2859890,23769147,4
+1939332,23769147,4
+69438436,23769147,5
+48585073,23769147,4
+4268724,23769147,2
+slavica,23769147,5
+cherrywoodpig,23769147,5
+doublex,23769147,4
+50046368,23769147,5
+79316763,23769147,5
+GERNAZI,23769147,4
+curemyself,23769147,4
+3053426,23769147,3
+3378930,23769147,4
+2196262,23769147,4
+50410160,23769147,4
+91609335,23769147,4
+lwx624,23769147,5
+aaaaaaalice,23769147,4
+77084511,23769147,4
+51673161,23769147,5
+126327911,23769147,2
+nianshaozi,23769147,3
+68732725,23769147,5
+SeaLionYouth,23769147,4
+59311720,23769147,4
+3741660,23769147,4
+48180333,23769147,3
+xiaohundaban,23769147,5
+aboutin,23769147,4
+57656024,23769147,2
+60186583,23769147,3
+68942746,23769147,4
+shaogezhu,23769147,3
+63136995,23769147,4
+41594789,23769147,4
+debussy,23769147,2
+47852493,23769147,4
+47852493,23769147,4
+49247949,23769147,4
+47216469,23769147,3
+szk13731584239,23769147,4
+46718731,23769147,5
+56273766,23769147,5
+51939758,23769147,3
+45342718,23769147,5
+roseandwater,23769147,4
+iyyhua,23769147,4
+32433633,23769147,4
+cheerychang,23769147,3
+48827728,23769147,3
+39529333,23769147,4
+46430549,23769147,4
+58180866,23769147,3
+soleilratemma,23769147,3
+D-cherry,23769147,4
+riverbrother,23769147,4
+yinleo,23769147,4
+1366693,23769147,5
+sung..,23769147,4
+eggs,23769147,4
+53028308,23769147,4
+showwow,23769147,5
+71505159,23769147,5
+51016662,23769147,4
+54131789,23769147,4
+2910992,23769147,4
+2667938,23769147,4
+56314850,23769147,4
+hgbcqz,23769147,4
+sadie_xiong,23769147,4
+82238487,23769147,5
+echo920905,23769147,3
+36883436,23769147,4
+constancef,23769147,4
+47471540,23769147,4
+moanqi,23769147,4
+sarahvong,23769147,3
+pershingsay,23769147,3
+rakumm,23769147,3
+2810818,23769147,5
+74855673,23769147,3
+huiverci,23769147,4
+66358226,23769147,4
+91252299,23769147,5
+65153834,23769147,-1
+71853634,23769147,1
+vicy,23769147,3
+47974584,23769147,4
+duduxiongzhifu,23769147,4
+Carriemine,23769147,5
+52175149,23769147,4
+34727533,23769147,3
+crossrainbow92,23769147,5
+adamhsieh,23769147,3
+51602185,23769147,4
+51142187,23769147,1
+58257487,23769147,3
+2583639,23769147,2
+michellengan,23769147,3
+eversupersheep,23769147,4
+58112933,23769147,4
+63014642,23769147,4
+rouroudong,23769147,5
+yitingyanyu,23769147,3
+36008103,23769147,4
+3540441,23769147,4
+2803147,23769147,4
+50702301,23769147,3
+2309931,23769147,4
+3720128,23769147,3
+yutingamy,23769147,3
+3123402,23769147,5
+62312013,23769147,3
+umaymaymay,23769147,4
+cyansugar,23769147,3
+joey12255555,23769147,4
+53578823,23769147,4
+4231432,23769147,3
+1159296,23769147,3
+sd0225,23769147,4
+53075455,23769147,4
+76692295,23769147,4
+1434867,23769147,4
+ISABELLA88123,23769147,4
+51245049,23769147,5
+mizzro,23769147,3
+75756405,23769147,3
+griko,23769147,5
+51691346,23769147,5
+sususuya,23769147,4
+rachel-cho08,23769147,5
+favezhihao,23769147,5
+MOVIE--KO,23769147,3
+lecsi,23769147,4
+109084248,23769147,4
+adelineadele,23769147,4
+Laverder16,23769147,4
+Laverder16,23769147,4
+47417998,23769147,2
+122331299,23769147,5
+47996642,23769147,4
+Chiniac_Cubic,23769147,4
+88236856,23769147,3
+baggiowen,23769147,4
+Perfume_,23769147,5
+winnie0212,23769147,3
+xiaoai830,23769147,5
+malu,23769147,3
+sionsquall,23769147,5
+kelet,23769147,4
+45283744,23769147,4
+114739252,23769147,5
+49711912,23769147,4
+amanjj,23769147,-1
+53908274,23769147,5
+53339781,23769147,5
+60382121,23769147,-1
+40766162,23769147,5
+75648536,23769147,5
+121369705,23769147,4
+Mr.KNight,23769147,3
+ziwu,23769147,3
+119517478,23769147,3
+1270928,23769147,5
+yyyzzzqqq,23769147,3
+xianxianchen,23769147,3
+3169785,23769147,3
+53513282,23769147,4
+floriacheng,23769147,5
+52470011,23769147,3
+55441982,23769147,4
+alternative,23769147,3
+phoebe555_1028,23769147,4
+venus007,23769147,5
+102885531,23769147,4
+anan725,23769147,3
+48990593,23769147,4
+90105219,23769147,3
+47869637,23769147,5
+41943699,23769147,3
+52340068,23769147,5
+115097585,23769147,3
+44942644,23769147,3
+51880150,23769147,5
+59801423,23769147,5
+68979031,23769147,4
+42913226,23769147,4
+65854158,23769147,4
+shouwangmaitian,23769147,3
+koujill,23769147,-1
+azaabuu,23769147,5
+130459392,23769147,4
+lin127,23769147,4
+32742041,23769147,-1
+29844884,23769147,4
+1437680,23769147,5
+60735312,23769147,-1
+3680251,26270517,4
+64938793,26270517,4
+Crispy,26270517,4
+libertyrepublic,26270517,4
+megamao,26270517,5
+92395853,26270517,5
+43393007,26270517,2
+jung106,26270517,4
+notfound4O4,26270517,5
+jinshuminshixia,26270517,5
+81215873,26270517,4
+captain_beard,26270517,4
+sona302,26270517,3
+xin_,26270517,4
+boiya,26270517,5
+48561660,26270517,4
+NYiXXX,26270517,-1
+laespoirao,26270517,5
+63315790,26270517,4
+58291702,26270517,3
+50490367,26270517,4
+BO-er,26270517,4
+132220472,26270517,5
+marsalt,26270517,5
+64482829,26270517,3
+60507902,26270517,5
+29875138,26270517,5
+137365819,26270517,5
+87604568,26270517,5
+42820544,26270517,2
+cronus92,26270517,4
+76994083,26270517,3
+eefee,26270517,4
+61067810,26270517,5
+55707159,26270517,3
+wiki7,26270517,-1
+87909103,26270517,4
+58338006,26270517,4
+54478886,26270517,5
+51282315,26270517,4
+109351948,26270517,3
+54088972,26270517,5
+tola95,26270517,4
+42149787,26270517,3
+57756222,26270517,4
+67555862,26270517,4
+85345126,26270517,4
+135438717,26270517,5
+40638118,26270517,5
+johnsnow,26270517,3
+nhjieme,26270517,5
+127118502,26270517,4
+64224391,26270517,5
+2543451,26270517,4
+xxxloser,26270517,-1
+Zoog,26270517,4
+4445926,26270517,3
+61511895,26270517,-1
+77850068,26270517,5
+4720825,26270517,4
+anning_1190,26270517,4
+englandchen,26270517,4
+77012577,26270517,5
+57351487,26270517,4
+clear1205,26270517,4
+53639789,26270517,5
+48020067,26270517,5
+119877759,26270517,3
+82217215,26270517,5
+yhelxx,26270517,-1
+3275817,26270517,4
+71420864,26270517,4
+2911189,26270517,3
+71946766,26270517,4
+zhcrobert,26270517,5
+61478984,26270517,4
+sinceiloveu,26270517,3
+52184277,26270517,4
+90412571,26270517,2
+vivichris,26270517,4
+hopelessbaby,26270517,4
+1907127,26270517,-1
+137823438,26270517,4
+43641776,26270517,2
+119415852,26270517,4
+49060712,26270517,4
+XMALIMALIHONGX,26270517,4
+136509793,26270517,3
+lolypop,26270517,4
+wangjia0702,26270517,3
+zxt1219,26270517,4
+101026674,26270517,4
+Lulu-chips,26270517,3
+56973040,26270517,4
+35766375,26270517,5
+68020832,26270517,4
+49201790,26270517,4
+zdoudou,26270517,5
+66057217,26270517,3
+caiwoshishei,26270517,5
+129340546,26270517,5
+jgh89435uh7,26270517,5
+KatoShigeaki,26270517,3
+82507807,26270517,4
+2370672,26270517,3
+69213469,26270517,5
+67072789,26270517,3
+68172537,26270517,5
+127059947,26270517,4
+111706876,26270517,5
+Redwinam,26270517,4
+panfangjie,26270517,4
+135012811,26270517,5
+100341077,26270517,3
+35224934,26270517,5
+wukefenggao,26270517,4
+July_AuE,26270517,4
+64884887,26270517,3
+49258293,26270517,3
+44353069,26270517,4
+guandao--,26270517,5
+46620424,26270517,3
+c-bode,26270517,5
+56519940,26270517,5
+67266475,26270517,4
+2009298,26270517,4
+xixistone,26270517,3
+50199937,26270517,4
+memejoo,26270517,4
+rin993,26270517,4
+122868077,26270517,2
+40595579,26270517,4
+85384480,26270517,4
+84077742,26270517,3
+xiaoyushudai,26270517,3
+kissmusic_520,26270517,3
+79744808,26270517,4
+132123291,26270517,4
+68236064,26270517,5
+biliance,26270517,3
+102006673,26270517,3
+89609698,26270517,4
+67640300,26270517,5
+yizhimaze,26270517,4
+ichigosharon,26270517,4
+daiyuko,26270517,4
+75762298,26270517,3
+miraculousu,26270517,4
+j946791150,26270517,5
+chaikuan,26270517,4
+fogmoutain,26270517,4
+xysxt,26270517,4
+62181928,26270517,4
+123386745,26270517,4
+2947191,26270517,4
+32897962,26270517,4
+25676059,26270517,4
+43467087,26270517,5
+54147186,26270517,5
+mrfengge,26270517,4
+1719141,26270517,5
+132373620,26270517,5
+79694642,26270517,-1
+76824704,26270517,5
+6581246,26270517,4
+52682384,26270517,4
+130445057,26270517,4
+sujin6041,26270517,5
+51812632,26270517,3
+45278107,26270517,1
+90543489,26270517,4
+3554996,26270517,4
+34140064,26270517,3
+84394974,26270517,4
+3978591,26270517,-1
+51087287,26270517,5
+33364584,26270517,5
+34573514,26270517,4
+73571891,26270517,5
+2737013,26270517,3
+48593382,26270517,3
+49585616,26270517,4
+45441727,26270517,4
+59164249,26270517,3
+Joeking.xiao,26270517,3
+kariyuki,26270517,4
+fenxinyu,26270517,4
+station123,26270517,5
+61151666,26270517,3
+41634233,26270517,4
+50906697,26270517,3
+kyo85,26270517,3
+68985594,26270517,4
+48990593,26270517,4
+givindream,26270517,4
+oathkeeper,26270517,5
+35652268,26270517,3
+qunlangzhishou,26270517,4
+17578809,26270517,5
+65646692,26270517,4
+41680643,26270517,5
+Ghost.Melody,26270517,3
+top-sxy,26270517,3
+mi-hang,26270517,4
+barkerhjj,26270517,5
+xiarijinghao,26270517,3
+valsey,26270517,4
+53656219,26270517,4
+121365508,26270517,4
+kingfor2001,26270517,3
+131909298,26270517,4
+60107866,26270517,5
+53920626,26270517,4
+black9_eleven,26270517,2
+60226199,26270517,2
+mpower007,26270517,3
+54644881,26270517,5
+joybang,26270517,4
+48395509,26270517,3
+cheryl84,26270517,3
+38407483,26270517,1
+49054831,26270517,4
+muini,26270517,1
+85423346,26270517,4
+50033341,26270517,5
+135502800,26270517,4
+xinnii,26270517,5
+61718944,26270517,5
+59789966,26270517,4
+lzzzzzfbee,26270517,4
+67358323,26270517,3
+131707294,26270517,-1
+dujiachen,26270517,4
+54859559,26270517,4
+60767824,26270517,5
+metadiamond,26270517,4
+68630108,26270517,3
+70030353,26270517,-1
+48474156,26270517,3
+15912473,26270517,3
+C443658,26270517,4
+2387348,26270517,3
+50629676,26270517,4
+72118465,26270517,4
+bigmiao,26270517,5
+77037977,26270517,5
+emaes,26270517,4
+57859400,26270517,5
+matthew1323,26270517,3
+45291333,26270517,3
+65488479,26270517,3
+jielunaimomo,26270517,5
+51065612,26270517,5
+62650109,26270517,4
+jiaozi712,26270517,4
+FrozenToilet,26270517,-1
+72820019,26270517,4
+57630941,26270517,5
+1434867,26270517,3
+43984924,26270517,5
+48232992,26270517,5
+54665954,26270517,3
+133033817,26270517,4
+dubasama,26270517,5
+melancia,26270517,4
+64713560,26270517,3
+52894891,26270517,4
+FORYUKI,26270517,3
+ZebraBookstore,26270517,4
+61858967,26270517,5
+115051698,26270517,3
+70397135,26270517,4
+vinta,26270517,5
+albeedesert,26270517,4
+4066025,26270517,2
+114977043,26270517,5
+amytsai,26270517,3
+3130809,26270517,4
+50402097,26270517,5
+jiangjiang1214,26270517,2
+71202281,26270517,5
+126467467,26270517,5
+csaver,26270517,2
+angelfromhell,26270517,5
+31915002,26270517,5
+sharkspeare,26270517,4
+high_jeff,26270517,3
+121852981,26270517,5
+96717613,26270517,5
+hasejun,26270517,5
+98956225,26270517,3
+classical622,26270517,3
+54621184,26270517,5
+pollyfish,26270517,5
+kh-xxxa,26270517,5
+52452838,26270517,4
+34700771,26270517,-1
+1929758,26270517,4
+liuchang223,26270517,4
+92596979,26270517,-1
+malicedix,26270517,4
+65701335,26270517,5
+49109013,26270517,4
+skeletone,26270517,4
+floatingmeat,26270517,4
+43961399,26270517,4
+43308232,26270517,5
+135099165,26270517,4
+127426227,26270517,5
+szdouban,26270517,5
+127688878,26270517,4
+52184872,26270517,4
+53759198,26270517,5
+zhangjian_1q26,26270517,2
+47299010,26270517,5
+kiwiflmi,26270517,4
+11658942,26270517,5
+zicenn,26270517,4
+leiii,26270517,3
+78843177,26270517,4
+48433107,26270517,4
+65121646,26270517,4
+ohnosang,26270517,2
+51939758,26270517,3
+NirVanA2409,26270517,4
+likecake,26270517,5
+49291039,26270517,5
+1201924,26270517,4
+67744959,26270517,2
+youkeiki,26270517,4
+gintokiyin,26270517,3
+43761875,26270517,3
+87010317,26270517,3
+46981614,26270517,4
+elliry,26270517,3
+45560095,26270517,5
+ouji,26270517,4
+71778727,26270517,5
+64047703,26270517,4
+64698994,26270517,5
+bkata_mtama,26270517,4
+1945427,26270517,5
+79897503,26270517,5
+104592207,26270517,3
+115687997,26270517,4
+57779578,26270517,4
+51110099,26270517,5
+heimi1028,26270517,4
+45761304,26270517,4
+72691447,26270517,4
+62887627,26270517,3
+1274732,26270517,4
+rainpo,26270517,4
+crainmax,26270517,5
+46342568,26270517,2
+2428631,26270517,5
+65079823,26270517,3
+45694684,26270517,4
+4537053,26270517,5
+1447539,26270517,3
+1447539,26270517,3
+87856173,26270517,3
+51469300,26270517,3
+130808289,26270517,4
+60728214,26270517,4
+2769574,26270517,4
+70724141,26270517,5
+sengen_leslie,26270517,4
+58497726,26270517,4
+57716769,26270517,5
+strawman81,26270517,4
+shelockcrc,26270517,4
+46003128,26270517,5
+Lreckle,26270517,4
+iskl,26270517,5
+holynight,26270517,4
+52828296,26270517,5
+33328418,26270517,4
+67624149,26270517,4
+88331189,26270517,4
+50522399,26270517,4
+xiaozun,26270517,3
+liaozhongchao,26270517,4
+63218478,26270517,5
+57449856,26270517,4
+67727072,26270517,5
+sxy921026,26270517,3
+66967732,26270517,3
+40359669,26270517,3
+smellingcat,26270517,4
+monachoo0809,26270517,4
+61384734,26270517,-1
+52540982,26270517,3
+70621815,26270517,5
+116049427,26270517,3
+52325322,26270517,3
+68776201,26270517,4
+PrinceLu,26270517,4
+134625303,26270517,4
+48071996,26270517,4
+48071996,26270517,4
+75086193,26270517,3
+1584109,26270517,3
+1068202,26270517,4
+tbc379,26270517,4
+119626499,26270517,5
+121925373,26270517,4
+47382115,26270517,4
+60354573,26270517,4
+84854172,26270517,4
+chihuoo,26270517,4
+73416424,26270517,4
+55950775,26270517,4
+celine_nic,26270517,5
+icedolly,26270517,4
+4789722,26270517,4
+fuusem,26270517,4
+clever_trick,26270517,4
+magicxiaobi,26270517,4
+114435379,26270517,3
+45484861,26270517,4
+dalychau,26270517,4
+narrowjiu,26270517,3
+102744158,26270517,2
+80755814,26270517,3
+55851508,26270517,4
+45012026,26270517,5
+flowermumu,26270517,3
+somuchinlove,26270517,5
+diyuduck,26270517,5
+75493120,26270517,5
+67609353,26270517,4
+RoseAndEcho,26270517,4
+kevin_lu1001,26270517,4
+yiyajunki,26270517,4
+42209180,26270517,5
+88754011,26270517,5
+13857069,26270517,3
+88574021,26270517,4
+lynchor,26270517,5
+54129779,26270517,2
+62122190,26270517,3
+75333690,26270517,4
+crowsz,26270517,3
+Caroline.H,26270517,3
+jidecengjing,26270517,2
+48130433,26270517,4
+Milckhy,26270517,4
+gooo111,26270517,4
+49718559,26270517,5
+24357802,26270517,3
+xiaomicci,26270517,5
+53682563,26270517,4
+lovingecho,26270517,3
+88114103,26270517,4
+2350018,26270517,4
+11508993,26270517,4
+61953901,26270517,5
+80555404,26270517,4
+saosaoxy,26270517,3
+jspd,26270517,3
+anxin817,26270517,4
+123029780,26270517,4
+meitianniang,26270517,3
+Tecsun,26270517,4
+Balebeng,26270517,4
+maxdoreen,26270517,3
+3926025,26270517,5
+WillZz,26270517,5
+33663407,26270517,4
+74958646,26270517,4
+Riverwatcher,26270517,3
+kaijisang,26270517,4
+London1,26270517,4
+18502346,26270517,3
+sioux-sie,26270517,4
+43235070,26270517,3
+119632712,26270517,5
+48462543,26270517,3
+53415052,26270517,3
+99144453,26270517,3
+74619704,26270517,4
+2849700,26270517,3
+2099122,26270517,3
+35362604,26270517,4
+67741022,26270517,5
+53586447,26270517,4
+69532674,26270517,4
+37450029,26270517,3
+yoursamelie,26270517,4
+94207382,26270517,4
+65369148,26270517,-1
+4453892,26270517,-1
+39200780,26270517,3
+crazydu,26270517,3
+58380292,26270517,5
+Grey143,26270517,4
+74397322,26270517,5
+39728715,26270517,5
+96658180,26270517,3
+oooweirooo,26270517,4
+sukiniu,26270517,-1
+68385418,26270517,4
+131352783,26270517,2
+morpheus5,26270517,4
+46184375,26270517,3
+64879609,26270517,4
+48777727,26270517,4
+43814222,26270517,4
+wakeng,26270517,4
+64628791,26270517,4
+lingrui1995,26270517,3
+55755674,26270517,4
+ovanisho,26270517,5
+72711856,26270517,4
+56758013,26270517,4
+30258501,26270517,4
+58569504,26270517,4
+52369165,26270517,4
+lena0517,26270517,4
+76203879,26270517,3
+37737818,26270517,5
+Cherry.Pluto,26270517,5
+yoyo3105,26270517,3
+66488510,26270517,4
+daisymouse,26270517,3
+ludj_007,26270517,4
+cacilia29,26270517,3
+quaner1126,26270517,-1
+3332733,26270517,4
+xiamudemao,26270517,3
+115795239,26270517,3
+4357628,26270517,4
+107746351,26270517,5
+80847365,26270517,4
+2803619,26270517,4
+zetto,26270517,-1
+theshow,26270517,3
+Madao_D,26270517,4
+37615847,26270517,4
+51424042,26270517,3
+41403989,26270517,5
+32144547,26270517,4
+52840916,26270517,4
+mouqingyang,26270517,4
+64107417,26270517,3
+123528135,26270517,3
+131596492,26270517,4
+kinso,26270517,5
+75274306,26270517,5
+governorofwuxi,26270517,4
+16943300,26270517,3
+1381698,26270517,5
+50451911,26270517,3
+musair,26270517,4
+44134802,26270517,5
+78601907,26270517,4
+iisakura,26270517,3
+47310524,26270517,4
+60808695,26270517,4
+66320772,26270517,3
+36760873,26270517,5
+3537940,26270517,4
+3144882,26270517,4
+56562539,26270517,4
+65442139,26270517,4
+54400244,26270517,3
+136738123,26270517,-1
+sinxu,26270517,5
+little_MOMO,26270517,4
+universe_7,26270517,4
+2847740,26270517,4
+79278811,26270517,4
+muzhizhanglang,26270517,5
+46683408,26270517,5
+ellordie,26270517,4
+41327515,26270517,4
+zhukeke,26270517,4
+22105037,26270517,3
+xihe_33,26270517,4
+Akashi_yan,26270517,5
+62602235,26270517,5
+74015810,26270517,4
+64204475,26270517,2
+84652846,26270517,3
+51888462,26270517,4
+peterpanty,26270517,5
+Dasiycat,26270517,4
+69775974,26270517,4
+66766065,26270517,5
+toyman_28,26270517,4
+47878839,26270517,5
+zoe2punk,26270517,4
+xuancaidanqing,26270517,4
+67575567,26270517,2
+seraphZ,26270517,4
+m-n,26270517,4
+hxiaoyang,26270517,4
+54779295,26270517,3
+57944008,26270517,4
+meow-3-,26270517,5
+DIC,26270517,4
+47481448,26270517,4
+ednnaLan,26270517,5
+chenmiaoyang,26270517,5
+54504590,26270517,5
+2643043,26270517,5
+lyypisces,26270517,5
+72144655,26270517,4
+42859437,26270517,4
+ria_really,26270517,4
+37173044,26270517,5
+43780153,26270517,4
+43037534,26270517,4
+4603294,26270517,4
+46931648,26270517,5
+bigworld,26270517,5
+32737561,26270517,4
+54627862,26270517,5
+chinriya,26270517,3
+55772953,26270517,4
+raulllllll,26270517,3
+x-ran,26270517,4
+Orange_Milk,26270517,4
+sunsun0222,26270517,4
+Sunbowinrain,26270517,4
+29476951,26270517,5
+58504822,26270517,3
+piepiecharlene,26270517,4
+54632146,26270517,4
+lrq92livecn,26270517,5
+2044324,26270517,4
+kagemine,26270517,4
+71102846,26270517,4
+biketo,26270517,4
+49003393,26270517,5
+antiquezz,26270517,-1
+91982055,26270517,4
+kaixing123,26270517,4
+besom,26270517,3
+Ken,26270517,4
+isfloyd,26270517,-1
+83057018,26270517,4
+61162296,26270517,-1
+ccushuaia1220,26270517,-1
+122069721,26270517,4
+45505109,26270517,4
+78966902,26270517,4
+79822624,26270517,2
+56908941,26270517,4
+68190189,26270517,-1
+7292654,26270517,4
+chairbandeng,26270517,5
+sant3553,26270517,5
+44915988,26270517,4
+cassandracheung,26270517,4
+63559969,26270517,4
+55529089,26270517,4
+74241333,26270517,5
+4042513,26270517,4
+2990791,26270517,3
+52111927,26270517,4
+40447897,26270517,4
+52051492,26270517,4
+1436107,26270517,3
+36627836,26270517,3
+45020999,26270517,5
+47515047,26270517,5
+yigenong,26270517,4
+63205590,26270517,3
+83303439,26270517,4
+69680398,26270517,4
+toishiki,26270517,4
+Kevin3,26270517,4
+64886603,26270517,5
+nangongmocheng,26270517,5
+37968335,26270517,4
+69838036,26270517,2
+47193126,26270517,3
+132841345,26270517,3
+47193126,26270517,3
+132841345,26270517,3
+31555036,26270517,4
+earthchild,26270517,3
+84790765,26270517,5
+50063811,26270517,3
+1121733,26270517,-1
+49828405,26270517,3
+neverbutterfly,26270517,4
+82481834,26270517,5
+43175039,26270517,5
+107554806,26270517,1
+fine-3-,26270517,5
+4491930,26270517,4
+47476934,26270517,2
+17549723,26270517,3
+micelia,26270517,5
+80930480,26270517,-1
+76320467,26270517,5
+42646716,26270517,3
+4705854,26270517,4
+xiaojiongxia,26270517,4
+59143830,26270517,3
+74589582,26270517,4
+2265138,26270517,5
+iamxx,26270517,3
+70306814,26270517,4
+yukiren,26270517,5
+72233093,26270517,4
+2058011,26270517,4
+46534834,26270517,3
+59205597,26270517,4
+75215989,26270517,3
+3843671,26270517,3
+87976850,26270517,2
+3880844,26270517,3
+73784914,26270517,4
+rainbowjae,26270517,4
+48974492,26270517,5
+Lena-Ho,26270517,3
+33293861,26270517,3
+jinjidexiong,26270517,3
+2850261,26270517,4
+123663607,26270517,3
+52775199,26270517,3
+36499503,26270517,3
+66552525,26270517,4
+cc5832354,26270517,3
+54693337,26270517,5
+68537687,26270517,4
+64193481,26270517,5
+yphjj,26270517,3
+on1ooker,26270517,3
+huaiyundemazha,26270517,3
+57642444,26270517,5
+54639718,26270517,4
+72781855,26270517,3
+68922074,26270517,4
+steflover,26270517,3
+78501893,26270517,-1
+93359159,26270517,4
+1815039,26270517,3
+67346668,26270517,4
+30441221,26270517,4
+49271269,26270517,4
+70930463,26270517,4
+106160266,26270517,5
+43181758,26270517,4
+85174401,26270517,4
+44282986,26270517,4
+64715321,26270517,4
+58865216,26270517,3
+Shanglinyuan,26270517,3
+62879204,26270517,2
+protos,26270517,4
+57126994,26270517,4
+lun7777777777,26270517,4
+velvet19900102,26270517,-1
+67641940,26270517,5
+uchinoakame,26270517,4
+66270574,26270517,3
+134417369,26270517,3
+39294395,26270517,4
+56906475,26270517,2
+136476073,26270517,5
+119033250,26270517,4
+49638501,26270517,5
+75953505,26270517,3
+52023052,26270517,4
+JustStayReal,26270517,5
+70961097,26270517,3
+65687734,26270517,5
+57811898,26270517,4
+124346436,26270517,4
+76888878,26270517,5
+queenolivia,26270517,3
+94839563,26270517,5
+Davidcyclone,26270517,-1
+akalion,26270517,3
+aabbbcccc,26270517,4
+3122157,26270517,4
+eghy20380617,26270517,4
+87904933,26270517,4
+masaikejun,26270517,4
+59649523,26270517,5
+levido,26270517,4
+62778052,26270517,4
+128731493,26270517,4
+23822983,26270517,5
+87546829,26270517,3
+59135946,26270517,4
+mm_ww,26270517,3
+46091388,26270517,5
+glowxi,26270517,3
+doloresding,26270517,4
+30410041,26270517,4
+64633164,26270517,4
+48832349,26270517,2
+52244996,26270517,4
+66015806,26270517,4
+136272758,26270517,4
+97977278,26270517,3
+55380253,26270517,4
+youtubunsei,26270517,4
+46920813,26270517,4
+irislxxx,26270517,4
+duokuluo,26270517,4
+48216088,26270517,3
+65664176,26270517,4
+82913743,26270517,4
+coj,26270517,4
+52199185,26270517,4
+50538278,26270517,4
+1074069,26270517,5
+54099440,26270517,3
+yanjing7611,26270517,4
+24853995,26270517,5
+tongziyam,26270517,3
+18360610,26270517,3
+133140721,26270517,4
+4904166,26270517,4
+3517710,26270517,3
+136351240,26270517,4
+toodles,26270517,4
+81316047,26270517,4
+Leoky,26270517,4
+63133189,26270517,4
+65108877,26270517,4
+41193009,26270517,4
+63612050,26270517,3
+stillrays_f,26270517,4
+seventhworkshop,26270517,3
+J13,26270517,4
+cappuccino-jl,26270517,4
+3646084,26270517,3
+1967079,26270517,3
+jinhuiyan,26270517,4
+49340190,26270517,5
+32650866,26270517,4
+25569564,26270517,3
+54440659,26270517,3
+65545100,26270517,5
+82096379,26270517,4
+laomo,26270517,4
+3982089,26270517,4
+z30473,26270517,4
+36518040,26270517,5
+79846892,26270517,4
+49497563,26270517,4
+Reignian,26270517,5
+luohuangertao,26270517,3
+6931938,26270517,4
+82500899,26270517,3
+103066869,26270517,4
+theninthmonth,26270517,4
+73856461,26270517,3
+soltinyq,26270517,-1
+joemayxu,26270517,4
+Emilydabai,26270517,5
+29710703,26270517,4
+59620866,26270517,4
+108481476,26270517,5
+3598072,26270517,4
+62963853,26270517,5
+47448262,26270517,3
+58369888,26270517,4
+54868823,26270517,5
+blueskyfly,26270517,4
+136360346,26270517,5
+84081822,26270517,4
+60458294,26270517,3
+52088142,26270517,4
+4564510,26270517,5
+moonjourney,26270517,4
+63941479,26270517,4
+116138651,26270517,4
+34343005,26270517,5
+133235705,26270517,4
+movieview,26270517,3
+55621323,26270517,4
+56752723,26270517,4
+shinemypolaris,26270517,5
+36458457,26270517,4
+jasmine22,26270517,-1
+80388638,26270517,5
+rocara,26270517,4
+3894700,26270517,3
+eaginge,26270517,4
+NINOJIANG,26270517,3
+catsama77,26270517,3
+77854332,26270517,5
+anlygissing,26270517,4
+dadou417,26270517,2
+9886345,26270517,5
+phoebe0_0nn,26270517,4
+r712,26270517,4
+4242859,26270517,3
+zqnpz,26270517,3
+12966940,26270517,5
+55890752,26270517,5
+iamcaojie,26270517,5
+67561107,26270517,4
+kyo_21,26270517,4
+73627812,26270517,3
+66035182,26270517,4
+50229670,26270517,5
+1973189,26270517,4
+Jodiezhang,26270517,4
+2068394,26270517,5
+1236338,26270517,3
+preciseness,26270517,5
+momoko11510,26270517,3
+59964725,26270517,4
+2181401,26270517,4
+ssssssheldon,26270517,4
+fancygy,26270517,4
+standbyyou,26270517,3
+2227800,26270517,4
+madbilly,26270517,4
+62924326,26270517,4
+53492535,26270517,3
+68510883,26270517,5
+90768759,26270517,5
+51199402,26270517,3
+1715390,26270517,3
+judymclennon,26270517,3
+xinyuemeizi,26270517,5
+violalululu,26270517,4
+jammy48,26270517,3
+101467920,26270517,3
+jinhoo,26270517,5
+SMC,26270517,-1
+Lkongming,26270517,4
+4123019,26270517,3
+piaotutu,26270517,4
+4380586,26270517,4
+zzqr,26270517,5
+86955055,26270517,3
+sebastianliu,26270517,4
+3481297,26270517,3
+jiroleng,26270517,3
+81628425,26270517,3
+joxxc,26270517,4
+119644008,26270517,3
+SINCE1988,26270517,5
+2268277,26270517,2
+shadowshame,26270517,4
+Yuzukiiiiiii,26270517,3
+kingszar,26270517,3
+umi-kumo,26270517,4
+gerandy,26270517,2
+vaneptune,26270517,5
+73047239,26270517,4
+ca04132,26270517,3
+45042581,26270517,3
+licongisfoolish,26270517,5
+71394820,26270517,2
+49420713,26270517,4
+xhazel,26270517,4
+46514818,26270517,5
+63160721,26270517,4
+62903103,26270517,5
+aggerek,26270517,-1
+62198966,26270517,4
+miaojike,26270517,5
+33976222,26270517,5
+68597292,26270517,5
+36185277,26270517,4
+45753459,26270517,5
+1687306,26270517,4
+1591677,26270517,4
+1233038,26270517,4
+84593268,26270517,5
+momo0724,26270517,4
+62036290,26270517,4
+laolaoting,26270517,3
+zoe-chen,26270517,4
+33330297,26270517,3
+longya,26270517,3
+dyinggg,26270517,3
+dyinggg,26270517,3
+41940074,26270517,5
+vivi.sunny,26270517,3
+88938201,26270517,4
+63528456,26270517,3
+41649419,26270517,5
+dstingting,26270517,4
+heidiholic,26270517,4
+foxnake,26270517,4
+yoory,26270517,-1
+134540692,26270517,4
+75043360,26270517,2
+bt4ever,26270517,3
+zymogen,26270517,5
+36470321,26270517,3
+3464028,26270517,4
+35578162,26270517,4
+45650024,26270517,4
+nofer,26270517,4
+33177895,26270517,4
+Hunjianxia,26270517,-1
+littleshit,26270517,4
+14529495,26270517,5
+K.chan,26270517,4
+80850838,26270517,4
+56517266,26270517,4
+67605485,26270517,4
+78347009,26270517,4
+5318547,26270517,2
+3050461,26270517,3
+wenbo2003,26270517,4
+63011235,26270517,4
+4236071,26270517,3
+125196459,26270517,5
+52889400,26270517,4
+haman,26270517,5
+xuanlihuan,26270517,5
+78683544,26270517,3
+4018918,26270517,4
+76176310,26270517,4
+25553362,26270517,3
+soya45,26270517,5
+moesolo,26270517,4
+48876836,26270517,5
+45935605,26270517,3
+32709376,26270517,3
+78645703,26270517,4
+74513536,26270517,4
+51093087,26270517,3
+52097235,26270517,3
+x_____________p,26270517,3
+60650660,26270517,4
+3105123,26270517,4
+82623937,26270517,3
+2597570,26270517,3
+2982307,26270517,3
+3586869,26270517,3
+affewen,26270517,3
+seeu-shieh,26270517,4
+Antidream,26270517,3
+Antidream,26270517,3
+88288973,26270517,4
+49259660,26270517,4
+121479059,26270517,4
+50416947,26270517,3
+63305082,26270517,4
+frozone,26270517,2
+48854947,26270517,5
+90546251,26270517,5
+61516280,26270517,4
+70006548,26270517,5
+3541486,26270517,5
+66120484,26270517,5
+CrystalSleeper,26270517,4
+arashiran,26270517,5
+wangmuyang,26270517,4
+119192622,26270517,4
+69615810,26270517,4
+135691917,26270517,4
+54158519,26270517,4
+48354152,26270517,3
+71352924,26270517,4
+14275223,26270517,5
+for1007,26270517,4
+71811082,26270517,4
+wangfei1122,26270517,4
+big_peach,26270517,3
+3439248,26270517,5
+dabyrowe,26270517,5
+121920760,26270517,3
+126076199,26270517,3
+45634818,26270517,4
+ohohzhizhi,26270517,3
+53786356,26270517,4
+57786267,26270517,4
+126775069,26270517,4
+40688971,26270517,3
+2444385,26270517,4
+50163391,26270517,5
+90217144,26270517,4
+61466124,26270517,3
+maerdaifu,26270517,4
+ludengludeng6,26270517,-1
+ankelin,26270517,4
+pengyaos,26270517,4
+Lanaliu,26270517,3
+80845130,26270517,4
+81752466,26270517,4
+kfc2005,26270517,4
+mymx,26270517,5
+mopean,26270517,4
+83213677,26270517,4
+coolluo_zw,26270517,3
+4777379,26270517,5
+67823219,26270517,3
+43478317,26270517,-1
+JakeNow,26270517,-1
+suffering0,26270517,1
+familiarmouse,26270517,5
+43462039,26270517,4
+62507044,26270517,5
+47576659,26270517,3
+80914640,26270517,4
+54044420,26270517,5
+40523115,26270517,4
+xmausp,26270517,4
+36669166,26270517,3
+61258936,26270517,4
+zuoshoudezuo,26270517,5
+79728421,26270517,4
+kuroneko2002,26270517,3
+56295486,26270517,-1
+kay618,26270517,4
+airan712,26270517,2
+godlandskypiea,26270517,4
+4488230,26270517,4
+132341201,26270517,3
+xiaobing95,26270517,4
+LinXion,26270517,4
+hanasakiq,26270517,5
+110929443,26270517,5
+1776736,26270517,4
+72086305,26270517,2
+2596592,26270517,3
+133179065,26270517,4
+haoduotian,26270517,4
+86140576,26270517,-1
+clayda,26270517,5
+7134514,26270517,1
+127466089,26270517,4
+qixiaotun,26270517,4
+2092765,26270517,5
+64636436,26270517,4
+sodawon,26270517,3
+52925540,26270517,5
+64618863,26270517,3
+58774315,26270517,4
+4601153,26270517,4
+69061545,26270517,4
+42368147,26270517,3
+janeao,26270517,4
+68350084,26270517,4
+64359754,26270517,5
+72914221,26270517,4
+L5.P4,26270517,3
+77048663,26270517,5
+51783956,26270517,5
+49576050,26270517,3
+121055789,26270517,4
+citytan,26270517,5
+130353620,26270517,3
+61929343,26270517,5
+64259939,26270517,4
+16928498,26270517,3
+47034241,26270517,4
+kuangk,26270517,4
+65141160,26270517,4
+51877834,26270517,3
+134896142,26270517,4
+ky1on,26270517,4
+liux5520,26270517,4
+53585569,26270517,3
+65408583,26270517,5
+merrymary,26270517,-1
+97188131,26270517,3
+59208985,26270517,5
+59378291,26270517,3
+76573898,26270517,3
+124142241,26270517,4
+53949979,26270517,5
+73647085,26270517,5
+killmystery,26270517,-1
+daiyuanvian,26270517,5
+45858265,26270517,3
+gjx189,26270517,4
+duduxiongzhifu,26270517,3
+53317988,26270517,2
+45784882,26270517,4
+helene9933,26270517,4
+63304249,26270517,3
+38423831,26270517,5
+73714750,26270517,3
+60981917,26270517,4
+130024032,26270517,5
+117243899,26270517,5
+charachai,26270517,5
+82335684,26270517,4
+81799497,26270517,3
+71561935,26270517,2
+49148779,26270517,4
+dearruby,26270517,3
+42923614,26270517,4
+81899049,26270517,5
+53036681,26270517,4
+44705370,26270517,4
+jessica4241,26270517,5
+75347251,26270517,5
+deany,26270517,3
+56672209,26270517,3
+81244293,26270517,4
+33688715,26270517,4
+3350882,26270517,4
+64519164,26270517,4
+69944887,26270517,4
+40704995,26270517,4
+45572942,26270517,4
+ilikebeerrrr,26270517,5
+132585780,26270517,4
+97277841,26270517,4
+83268589,26270517,5
+47241007,26270517,4
+54034056,26270517,3
+qingxi52vv,26270517,4
+60072375,26270517,5
+nyssa712,26270517,4
+59621398,26270517,5
+131286609,26270517,2
+35135916,26270517,5
+ys1013,26270517,2
+58015213,26270517,4
+58015213,26270517,4
+46970893,26270517,3
+49655412,26270517,4
+134522617,26270517,4
+jabriel90,26270517,4
+1766764,26270517,3
+voyasuki,26270517,5
+4597338,26270517,2
+siyoo,26270517,4
+53518992,26270517,5
+62709413,26270517,4
+134394083,26270517,4
+58040567,26270517,5
+67208403,26270517,4
+35200825,26270517,3
+dummdumm,26270517,4
+3895814,26270517,5
+34728701,26270517,4
+nintendog,26270517,-1
+theMicky,26270517,3
+48521978,26270517,4
+65235763,26270517,-1
+1159296,26270517,3
+hangecho,26270517,3
+1727871,26270517,-1
+2289468,26270517,5
+maohei,26270517,3
+nxam,26270517,4
+55850316,26270517,4
+45630921,26270517,5
+88080225,26270517,3
+telfair,26270517,4
+44875082,26270517,4
+lemoneasonchan,26270517,5
+133189249,26270517,5
+huoyanshanbaofa,26270517,5
+69621575,26270517,5
+licn,26270517,3
+kubifadacai,26270517,5
+63531003,26270517,4
+74780656,26270517,4
+zhaimozi,26270517,4
+MrMia,26270517,3
+59233283,26270517,4
+59658494,26270517,-1
+shunong,26270517,3
+44810732,26270517,3
+68160177,26270517,3
+52689721,26270517,5
+verakid,26270517,4
+86253613,26270517,4
+72783015,26270517,4
+dong_zi,26270517,4
+35409946,26270517,3
+zorrozj,26270517,4
+46348139,26270517,4
+mogujunmomo,26270517,4
+53927357,26270517,3
+Siegfried82,26270517,4
+JC921004,26270517,3
+48132711,26270517,5
+chaud,26270517,4
+2847987,26270517,4
+48996798,26270517,4
+52117309,26270517,3
+66979226,26270517,5
+sunq,26270517,5
+69138846,26270517,4
+58059498,26270517,2
+Maybo-Chang,26270517,4
+lujcmss,26270517,2
+54277204,26270517,3
+veilflying,26270517,3
+51926666,26270517,3
+bulijite,26270517,4
+UNVS,26270517,3
+51600153,26270517,4
+68732725,26270517,5
+36466126,26270517,4
+J627567866,26270517,5
+51688901,26270517,4
+Ahomo,26270517,3
+55330229,26270517,4
+53430352,26270517,4
+oumi28,26270517,-1
+pure_115,26270517,4
+btone0808,26270517,3
+39937848,26270517,4
+69178821,26270517,5
+3870607,26270517,3
+96042555,26270517,4
+119883443,26270517,4
+77066905,26270517,2
+counting_crows,26270517,5
+von71224,26270517,5
+75328137,26270517,4
+60392839,26270517,3
+36067055,26270517,4
+77622733,26270517,3
+69814261,26270517,5
+52624192,26270517,4
+2106137,26270517,4
+63442441,26270517,4
+cbeam,26270517,4
+48143172,26270517,3
+49440731,26270517,5
+44243630,26270517,4
+53847386,26270517,4
+130355076,26270517,3
+134486467,26270517,4
+blusia4,26270517,5
+imqxq,26270517,4
+47621269,26270517,5
+135248605,26270517,5
+uniradio,26270517,5
+kaixian,26270517,3
+61621650,26270517,3
+D-cherry,26270517,4
+61597442,26270517,5
+53080002,26270517,5
+81745530,26270517,3
+TRAVIS2011,26270517,5
+czj950615,26270517,3
+dongdayou,26270517,4
+40684892,26270517,5
+lanup,26270517,4
+51004635,26270517,4
+34727533,26270517,3
+47600161,26270517,4
+134146375,26270517,4
+83419991,26270517,3
+eiji218837,26270517,4
+hellolumi,26270517,4
+Shinchan,26270517,4
+54601280,26270517,5
+2742984,26270517,4
+zhizi99,26270517,4
+3218379,26270517,3
+81206741,26270517,5
+129984691,26270517,4
+shirleybin,26270517,-1
+6270415,26270517,4
+83293956,26270517,4
+linchuzhuang,26270517,5
+49298107,26270517,4
+Veronicachai,26270517,3
+61651854,26270517,3
+Rukia,26270517,4
+dewriver,26270517,4
+BabyBlue8,26270517,4
+lostinfire,26270517,4
+taguan,26270517,5
+bberry,26270517,4
+63003480,26270517,4
+kennan,26270517,5
+29844884,26270517,4
+2564102,26270517,5
+127677329,26270517,3
+Heaven3,26270517,4
+50017356,26270517,5
+44709496,26270517,5
+3815024,26270517,5
+rodinian,26270517,4
+3346015,26270517,3
+60166330,26270517,4
+69133855,26270517,4
+53021898,26270517,3
+xilouchen,26270517,2
+37264633,26270517,3
+yaossss,26270517,4
+11615091,26270517,5
+43778462,26270517,-1
+NG,26270517,3
+yeeeeeee,26270517,4
+never_zj,26270517,4
+57927833,26270517,4
+55714302,26270517,4
+coldlife,26270517,4
+53416381,26270517,5
+93546095,26270517,5
+po1an,26270517,3
+63676625,26270517,4
+62331827,26270517,5
+qqs,26270517,4
+wangying2325,26270517,5
+evanye,26270517,4
+4154813,26270517,3
+hannahhsing,26270517,4
+Bunnysuk,26270517,4
+48701824,26270517,5
+133398715,26270517,4
+yummy0526,26270517,4
+59902298,26270517,2
+52273132,26270517,4
+zbc_endo,26270517,4
+lovemj4ever,26270517,4
+43171172,26270517,3
+33554230,26270517,4
+126192589,26270517,3
+57968864,26270517,5
+53325239,26270517,4
+58720878,26270517,4
+conifer,26270517,5
+2985135,26270517,4
+Odd,26270517,3
+131749198,26270517,3
+129276779,26270517,3
+67127602,26270517,5
+135481783,26270517,5
+69141192,26270517,4
+46269002,26270517,3
+45864291,26270517,3
+2976729,26270517,-1
+88078787,26270517,3
+43532322,26270517,4
+59556078,26270517,3
+sotsuki,26270517,5
+cyx2957,26270517,5
+Summer-isKing,26270517,4
+myronlau,26270517,5
+62031616,26270517,4
+yumeao,26270517,3
+vincentzzy,26270517,2
+ritu,26270517,4
+1211087,26270517,5
+doexist,26270517,4
+82481394,26270517,3
+47760182,26270517,4
+3476767,26270517,4
+76720138,26270517,5
+3214496,26270517,4
+calamus22,26270517,5
+58988950,26270517,5
+Joa0929,26270517,4
+junglehaha,26270517,4
+25960765,26270517,4
+CaptBastard,26270517,3
+elyee,26270517,2
+10040083,26270517,-1
+Jackandfoureyes,26270517,4
+46040960,26270517,5
+40280658,26270517,3
+54688945,26270517,4
+spiritsun,26270517,4
+48752205,26270517,4
+gilxiao,26270517,4
+Cao-Wei,26270517,4
+69096775,26270517,4
+braxin2007,26270517,-1
+68741121,26270517,3
+rockgong,26270517,4
+93384271,26270517,4
+55864188,26270517,4
+67147020,26270517,5
+45463495,26270517,3
+wysunflowers,26270517,5
+81404706,26270517,4
+ikezhao,26270517,5
+84093369,26270517,5
+68568891,26270517,4
+twxpda,26270517,3
+67880800,26270517,3
+yukino,26270517,2
+63695968,26270517,4
+57337091,26270517,4
+48246830,26270517,5
+19595004,26270517,5
+73765169,26270517,4
+1496227,26270517,4
+rinsola,26270517,5
+97057870,26270517,4
+xiaoyuan_0310,26270517,3
+42277300,26270517,5
+44005693,26270517,4
+63793789,26270517,5
+50680610,26270517,5
+64009647,26270517,3
+59371719,26270517,4
+63041714,26270517,3
+67030468,26270517,4
+yuki2005419,26270517,4
+60743609,26270517,5
+i5conan,26270517,4
+earlyzaozao,26270517,4
+19861416,26270517,4
+3839033,26270517,5
+ryodanai,26270517,3
+63873840,26270517,4
+70595414,26270517,4
+34721565,26270517,5
+znrpiggey,26270517,4
+qiongdong,26270517,4
+screem2046,26270517,4
+55439252,26270517,4
+hudodo0314,26270517,-1
+129021776,26270517,5
+4231449,26270517,1
+lesc,26270517,3
+synoria,26270517,4
+13441174,26270517,5
+leisileisi,26270517,4
+106045311,26270517,5
+Armande,26270517,4
+chenxu110,26270517,5
+withliancheng,26270517,3
+96496562,26270517,3
+41639137,26270517,5
+Kingnima,26270517,4
+49988006,26270517,4
+seoyoungeun,26270517,4
+myh135-246,26270517,5
+3617677,26270517,4
+shenyong6813,26270517,3
+89308667,26270517,4
+45786010,26270517,3
+55910584,26270517,4
+yanbosc,26270517,4
+46673618,26270517,4
+amy6663,26270517,4
+zhenziren,26270517,4
+81936466,26270517,4
+YeungSanah,26270517,3
+87852350,26270517,3
+27568685,26270517,3
+done13,26270517,5
+jayelhy,26270517,5
+116618365,26270517,4
+vanilla_lee,26270517,5
+120957146,26270517,5
+aimizu,26270517,5
+83197005,26270517,4
+tobekalorce,26270517,4
+iltt,26270517,-1
+62476143,26270517,4
+131374333,26270517,4
+44295890,26270517,5
+59161458,26270517,3
+youngsky,26270517,3
+retsu,26270517,4
+96044338,26270517,3
+96044338,26270517,3
+66331142,26270517,4
+resurgam92dawn,26270517,5
+ALTNATIONAL,26270517,5
+swanghj,26270517,5
+46686249,26270517,5
+tianxkong,26270517,4
+81475548,26270517,4
+80681000,26270517,4
+62192650,26270517,4
+123097653,26270517,3
+sysysysy,26270517,5
+61292565,26270517,3
+135874162,26270517,3
+42790951,26270517,4
+45158897,26270517,5
+anko2626,26270517,3
+46144657,26270517,4
+shuonidaye,26270517,4
+113488627,26270517,5
+3602718,26270517,4
+53909669,26270517,3
+77884429,26270517,5
+35261395,26270517,4
+zita07,26270517,3
+maraton,26270517,3
+1744955,26270517,4
+gilyun,26270517,5
+chloe930,26270517,5
+alualu,26270517,4
+xiaohundaban,26270517,2
+91036793,26270517,4
+everhide,26270517,5
+suikame,26270517,4
+54887603,26270517,-1
+Janny_blue,26270517,5
+nevertry,26270517,3
+augusttt,26270517,4
+2581375,26270517,4
+shooting-stars,26270517,3
+shooting-stars,26270517,3
+Brego,26270517,3
+cat_yr,26270517,5
+51992445,26270517,3
+56580780,26270517,5
+4356649,26270517,4
+47849453,26270517,5
+ciaoxu,26270517,3
+3636694,26270517,5
+aitiaowudemeng,26270517,5
+53790865,26270517,4
+93374803,26270517,4
+81445026,26270517,4
+3588917,26270517,4
+127632434,26270517,3
+bibiko7,26270517,5
+yingziw3010,26270517,5
+60111124,26270517,4
+xxSHOUT,26270517,4
+fatia0,26270517,2
+135374569,26270517,5
+DearHuman,26270517,3
+2441545,26270517,4
+84176426,26270517,4
+pedant,26270517,3
+66718384,26270517,5
+2788057,26270517,5
+DawnGreen,26270517,5
+Since,26270517,5
+cheerychang,26270517,2
+NNUL,26270517,4
+79222059,26270517,4
+45985032,26270517,4
+121085876,26270517,4
+55800838,26270517,4
+Crystal_Dcy,26270517,4
+131068311,26270517,4
+53363947,26270517,3
+lozer,26270517,3
+cryingcatjojo,26270517,5
+yubaozilee,26270517,4
+79157709,26270517,4
+52993999,26270517,5
+dgawon,26270517,3
+51544027,26270517,5
+BareTree,26270517,4
+43946346,26270517,5
+81845294,26270517,4
+minoru,26270517,4
+wangxhtt,26270517,4
+43529469,26270517,4
+75215757,26270517,3
+61725062,26270517,4
+blacksora,26270517,4
+103735356,26270517,4
+chewin,26270517,3
+misawang,26270517,4
+27261422,26270517,4
+43662887,26270517,4
+51193977,26270517,-1
+99758635,26270517,5
+44849027,26270517,5
+132951167,26270517,5
+melongo,26270517,5
+68975855,26270517,4
+warmwater,26270517,-1
+91126211,26270517,4
+2731445,26270517,4
+mlgg,26270517,5
+100734380,26270517,4
+67967186,26270517,3
+goodzsj,26270517,3
+64972660,26270517,3
+yushengdenghao,26270517,5
+46386301,26270517,5
+55983243,26270517,5
+28965384,26270517,4
+100679730,26270517,5
+alphard0615,26270517,4
+monlll,26270517,3
+132370483,26270517,5
+4391066,26270517,4
+Phyllis5,26270517,4
+52740644,26270517,3
+51643825,26270517,4
+59567078,26270517,3
+cecilelover,26270517,3
+133912087,26270517,5
+50875593,26270517,4
+82992738,26270517,3
+lingxie,26270517,3
+cyaround,26270517,3
+65907866,26270517,3
+63576791,26270517,4
+amphy,26270517,-1
+43708089,26270517,5
+teikamouse,26270517,3
+2419315,26270517,5
+122556292,26270517,4
+tintintsang,26270517,2
+71286594,26270517,4
+guitar_poker,26270517,5
+51774232,26270517,4
+48666472,26270517,4
+itsmeymq,26270517,3
+xellgio,26270517,4
+64273735,26270517,4
+tasuka_l,26270517,3
+Amulp,26270517,5
+36008103,26270517,3
+60913793,26270517,5
+50439954,26270517,4
+48329981,26270517,4
+sunhaoren,26270517,5
+87884178,26270517,3
+72657219,26270517,4
+104890249,26270517,4
+52980191,26270517,2
+67454636,26270517,4
+lonelyloner,26270517,4
+40496645,26270517,3
+yalindongdong,26270517,3
+38513029,26270517,3
+77084511,26270517,5
+imcorrect,26270517,4
+42489697,26270517,5
+3963394,26270517,4
+67883683,26270517,4
+Lin_Ling,26270517,3
+qixian1125,26270517,3
+1635123,26270517,4
+58854842,26270517,4
+129652201,26270517,4
+mxing,26270517,5
+53858466,26270517,5
+ruo1996,26270517,2
+3478406,26270517,4
+soga,26270517,4
+121795248,26270517,4
+60389557,26270517,2
+53933661,26270517,4
+yoite7,26270517,2
+43864644,26270517,3
+Yagokoro,26270517,5
+49048693,26270517,4
+130003497,26270517,5
+NapCote,26270517,4
+caofoxfox,26270517,-1
+60804345,26270517,3
+75180994,26270517,3
+professor,26270517,5
+133890183,26270517,4
+3249521,26270517,-1
+19698586,26270517,5
+49166352,26270517,5
+sunnyliyuan,26270517,3
+huoguo,26270517,-1
+Elwer,26270517,5
+5581216,26270517,4
+75851343,26270517,5
+plzshine,26270517,4
+61383051,26270517,5
+47414610,26270517,4
+marco_0708,26270517,1
+guliguo_428,26270517,5
+75607691,26270517,5
+jet_plane,26270517,4
+71141044,26270517,5
+120084471,26270517,5
+64680540,26270517,3
+1094032,26270517,3
+kokia233,26270517,5
+xjksama,26270517,4
+74292327,26270517,4
+50170416,26270517,5
+59979732,26270517,4
+115032720,26270517,5
+69735266,26270517,-1
+ZY-Monster,26270517,4
+summer0323,26270517,4
+aruga,26270517,4
+88922721,26270517,4
+karsa,26270517,4
+wqmeoe,26270517,3
+ZLeaves,26270517,4
+rakbumps,26270517,5
+78562268,26270517,5
+papa_christmas,26270517,3
+114781822,26270517,3
+maomao19901108,26270517,2
+3340140,26270517,4
+65940627,26270517,3
+55512369,26270517,5
+62565907,26270517,5
+2982570,26270517,-1
+NatsuTrevor,26270517,2
+nowhere61,26270517,3
+T.V.Zoe,26270517,4
+allen_yan,26270517,5
+96882730,26270517,4
+54342753,26270517,4
+54107272,26270517,5
+lixin123dongli,26270517,5
+53124457,26270517,3
+39945204,26270517,4
+114541914,26270517,5
+57697248,26270517,5
+54131789,26270517,5
+67696101,26270517,4
+48951367,26270517,2
+66889061,26270517,5
+80370645,26270517,5
+4084421,26270517,5
+54166163,26270517,3
+eertdik,26270517,4
+50585337,26270517,3
+mars9,26270517,4
+120542127,26270517,5
+70801856,26270517,5
+wind-clover,26270517,-1
+121354261,26270517,4
+raffealla,26270517,5
+89144589,26270517,5
+119710944,26270517,4
+Scullyzfq,26270517,4
+60002715,26270517,3
+45722490,26270517,5
+2714941,26270517,5
+3772330,26270517,4
+ximozhe,26270517,5
+suh5213,26270517,3
+47917839,26270517,5
+62877248,26270517,4
+42221402,26270517,3
+YukiYou,26270517,4
+moonillusion,26270517,-1
+xiaopin19,26270517,3
+city04,26270517,4
+55910656,26270517,5
+65301397,26270517,-1
+floraSmithereen,26270517,3
+53479679,26270517,5
+2039569,26270517,2
+3614212,26270517,5
+etheryan,26270517,4
+51975778,26270517,4
+40042459,26270517,4
+smokey,26270517,4
+49983823,26270517,3
+shupei,26270517,4
+62582532,26270517,4
+boringsly,26270517,4
+62798977,26270517,4
+126980247,26270517,4
+Svena,26270517,4
+50611156,26270517,-1
+eggiysnest,26270517,4
+42709350,26270517,3
+59513842,26270517,4
+40588949,26270517,4
+4640701,26270517,4
+1860311,26270517,4
+57015832,26270517,4
+119362745,26270517,4
+2374657,26270517,4
+franling,26270517,4
+foxlovewhitecat,26270517,4
+ziranbujuan,26270517,4
+131603889,26270517,4
+45306000,26270517,4
+46213285,26270517,5
+ursyoyo,26270517,3
+yulingshenyue,26270517,4
+1550135,26270517,3
+46637165,26270517,4
+52954408,26270517,3
+76680157,26270517,4
+thisisisabella,26270517,-1
+cloverllx,26270517,4
+whatsuplaura,26270517,4
+nicoleyui,26270517,5
+57024094,26270517,4
+68931689,26270517,5
+linmumuevelyn,26270517,4
+9086239,26270517,4
+68165796,26270517,3
+ringogo,26270517,5
+53874586,26270517,4
+49285560,26270517,5
+50036042,26270517,4
+26727621,26270517,4
+miko0409,26270517,5
+46550592,26270517,4
+63051365,26270517,3
+yingchen221e,26270517,4
+isleen,26270517,5
+qstc12345,26270517,3
+64978865,26270517,5
+40559395,26270517,3
+49384394,26270517,4
+77381797,26270517,4
+44725365,26270517,4
+lozzy,26270517,4
+64377424,26270517,4
+yueyuedad1972,26270517,5
+tricky_V,26270517,3
+122052999,26270517,1
+68354862,26270517,4
+Tomokin,26270517,4
+131073434,26270517,3
+lydiaxanthe,26270517,5
+121364693,26270517,5
+Sigrid_Lu,26270517,2
+vero_nicat,26270517,3
+ruilixiurui,26270517,4
+koiwai0908,26270517,4
+mumaer,26270517,5
+2594481,26270517,3
+4409109,26270517,4
+hugjm,26270517,4
+51207003,26270517,4
+qinxuanzi,26270517,5
+babybluebb,26270517,1
+nanyunai,26270517,4
+tt1426,26270517,4
+47417998,26270517,3
+2569857,26270517,3
+xiaogaren,26270517,3
+pandawin,26270517,3
+48361122,26270517,5
+ayuzoey_w,26270517,5
+35158141,26270517,4
+52313283,26270517,3
+dms,26270517,4
+94988945,26270517,3
+ish2,26270517,5
+58489881,26270517,3
+52810889,26270517,3
+54086644,26270517,3
+41661479,26270517,5
+kiyoka,26270517,4
+78507701,26270517,4
+64068628,26270517,4
+powerfultony,26270517,4
+unali,26270517,3
+40649536,26270517,4
+tiancity1108,26270517,4
+Fish_Fish_,26270517,5
+boredblooming,26270517,4
+60768165,26270517,3
+73280633,26270517,5
+3944499,26270517,5
+49900100,26270517,3
+donkey-grandpa,26270517,4
+robinsparrow,26270517,-1
+46718931,26270517,5
+nangle,26270517,3
+73763567,26270517,5
+smilyk,26270517,5
+loveyourselves,26270517,-1
+shumeiying,26270517,4
+81057765,26270517,4
+12899470,26270517,4
+56919953,26270517,4
+letriple,26270517,4
+Taurusess,26270517,4
+40137325,26270517,5
+fang070553,26270517,4
+reave,26270517,4
+47996642,26270517,5
+elainehsu,26270517,4
+weiweiweio,26270517,-1
+46714118,26270517,5
+xboncher233,26270517,4
+71679701,26270517,5
+4073672,26270517,4
+Loslandy,26270517,4
+reneew,26270517,3
+AthenaVan,26270517,4
+53377749,26270517,3
+smalldogbear,26270517,4
+54915554,26270517,4
+54916993,26270517,4
+47209079,26270517,4
+46893629,26270517,4
+70379648,26270517,4
+boboaibaobao,26270517,4
+yogaeven,26270517,4
+70589885,26270517,5
+reika_scar,26270517,3
+hyacinth726,26270517,4
+90913856,26270517,5
+moshushinihao,26270517,4
+alianhei,26270517,5
+49166679,26270517,4
+61293528,26270517,5
+madaleine,26270517,4
+116538019,26270517,5
+49020193,26270517,5
+lemontin,26270517,5
+103222605,26270517,-1
+46333291,26270517,5
+YTT_LS,26270517,3
+69318478,26270517,2
+46837075,26270517,4
+paltrow,26270517,-1
+82691525,26270517,4
+49294423,26270517,4
+curiousyue,26270517,4
+5129531,26270517,4
+yuikkk,26270517,4
+69094998,26270517,3
+66345679,26270517,4
+74057753,26270517,5
+1892627,26270517,2
+71878737,26270517,4
+52489598,26270517,4
+cazze,26270517,4
+55333647,26270517,4
+135556010,26270517,3
+52323040,26270517,4
+Susan1224,26270517,5
+liuxingjun,26270517,4
+surrealcage,26270517,3
+131073049,26270517,5
+71250285,26270517,3
+48380446,26270517,4
+91604108,26270517,3
+afterhanabinigh,26270517,5
+3522119,26270517,5
+76964531,26270517,5
+80797429,26270517,4
+ailic,26270517,5
+schaum,26270517,4
+132831512,26270517,3
+83621117,26270517,3
+athenaaoao,26270517,5
+69280280,26270517,3
+4019398,26270517,5
+43519352,26270517,4
+tengAkame,26270517,4
+deepsnow,26270517,4
+zitangyaye,26270517,3
+64682251,26270517,4
+130634822,26270517,5
+2214218,26270517,4
+vitamisa,26270517,4
+kleer,26270517,4
+61219748,26270517,5
+53464389,26270517,4
+2266040,26270517,5
+131874651,26270517,4
+yukinoshiki,26270517,4
+3925373,26270517,5
+vamos_revenge,26270517,3
+44917242,26270517,4
+49705526,26270517,4
+63547117,26270517,5
+morechou,26270517,4
+yuuffy,26270517,5
+samsyu,26270517,3
+59569765,26270517,-1
+moekon,26270517,4
+76236179,26270517,3
+83945824,26270517,5
+madebyran,26270517,5
+20713273,26270517,3
+gongzitian,26270517,3
+75096370,26270517,5
+3540441,26270517,3
+lumizl,26270517,5
+bogjebote,26270517,2
+AcrossTheClouds,26270517,4
+47873866,26270517,4
+4415205,26270517,5
+36359450,26270517,4
+davyjones,26270517,4
+p2165,26270517,3
+dyinsun,26270517,4
+130330790,26270517,5
+58051524,26270517,4
+49808652,26270517,3
+yadnomeulb,26270517,3
+when31,26270517,4
+staceysung,26270517,4
+Pius,26270517,3
+47309128,26270517,5
+57871767,26270517,4
+87547812,26270517,4
+Minimalis,26270517,3
+55978838,26270517,5
+51446945,26270517,3
+125281406,26270517,4
+3576848,26270517,5
+hana-neverland,26270517,4
+54119781,26270517,3
+3340428,26270517,4
+suzheer,26270517,4
+61628834,26270517,4
+58697098,26270517,5
+sylgao,26270517,3
+beiliya,26270517,3
+94563993,26270517,3
+117307392,26270517,4
+KinO_O,26270517,4
+axina,26270517,5
+30740764,26270517,4
+36238876,26270517,5
+CattyLeo,26270517,4
+jennylove,26270517,5
+yningc,26270517,5
+kiki204629,26270517,3
+deppdeep,26270517,5
+huoniaoljy,26270517,4
+62932478,26270517,4
+fanwen0610,26270517,4
+44881183,26270517,4
+changuang7,26270517,4
+63259048,26270517,3
+59349301,26270517,3
+65447860,26270517,3
+45237173,26270517,3
+7270629,26270517,5
+godbewithme,26270517,4
+1328765,26270517,5
+xianxiantutu,26270517,3
+cretek,26270517,4
+3803972,26270517,4
+charminglight,26270517,5
+1886385,26270517,3
+wangshibanban,26270517,4
+2226826,26270517,4
+1520254,26270517,3
+zr90129,26270517,4
+63485325,26270517,3
+mobymarry,26270517,3
+bunny636,26270517,4
+58249428,26270517,4
+yuan0243109,26270517,3
+53932616,26270517,3
+niazion,26270517,4
+65913980,26270517,5
+35241796,26270517,4
+73064038,26270517,3
+62507474,26270517,4
+70315903,26270517,5
+forkother,26270517,4
+58617905,26270517,5
+tamanegichan,26270517,4
+45797451,26270517,4
+1561166,26270517,3
+jiaxintuanzi,26270517,4
+2079162,26270517,4
+LauraLi1989,26270517,3
+jun0824,26270517,3
+Moanin,26270517,4
+73983245,26270517,5
+52831736,26270517,3
+aiba229,26270517,5
+keyless,26270517,3
+eve_sky,26270517,4
+52887530,26270517,3
+88171857,26270517,4
+66719737,26270517,2
+1856731,26270517,4
+endli_kazu203,26270517,5
+74291470,26270517,-1
+63730928,26270517,3
+54587434,26270517,4
+Chorai42,26270517,5
+82391492,26270517,3
+iclovermaizi,26270517,4
+4580722,26270517,3
+himesamala,26270517,4
+zhoushiyun,26270517,-1
+xiaoshan0201,26270517,4
+123235799,26270517,-1
+1495292,26270517,4
+69878085,26270517,4
+cheungyutong,26270517,5
+fstuntun,26270517,4
+49339109,26270517,2
+2434047,26270517,-1
+mayflylris,26270517,3
+dashebei,26270517,3
+105023809,26270517,4
+musique,26270517,4
+134052465,26270517,4
+nicole7,26270517,5
+blueto,26270517,4
+stigie,26270517,5
+sora203,26270517,3
+natsukimi,26270517,3
+Gongzi_.Fox,26270517,3
+eshafeng,26270517,3
+Papa423,26270517,3
+2063659,26270517,-1
+85868315,26270517,3
+50720620,26270517,3
+125760534,26270517,3
+leon_howe,26270517,-1
+killsusie,26270517,2
+5772280,26270517,4
+1502044,26270517,4
+131407710,26270517,4
+65981408,26270517,4
+2464459,26270517,4
+45575383,26270517,4
+79933408,26270517,5
+51513944,26270517,3
+3634287,26270517,3
+68982758,26270517,4
+57488053,26270517,5
+ellegardenn,26270517,4
+3177593,26270517,3
+jamaica,26270517,4
+62333494,26270517,5
+ling0816,26270517,3
+51909890,26270517,3
+60307464,26270517,4
+jiao2er,26270517,2
+46032671,26270517,4
+iamnian,26270517,4
+120332872,26270517,3
+87651171,26270517,2
+karmairis,26270517,4
+77289829,26270517,4
+35789167,26270517,5
+merengue,26270517,4
+95963883,26270517,4
+120018328,26270517,4
+AnitaRolland,26270517,5
+68224632,26270517,5
+nyla_summer,26270517,4
+95884206,26270517,4
+pacifica,26270517,4
+dearw616,26270517,4
+54178409,26270517,5
+93190703,26270517,5
+lindadarling,26270517,4
+Flora1119,26270517,-1
+81610597,26270517,4
+46230886,26270517,4
+102747303,26270517,2
+halfsheep,26270517,-1
+84157110,26270517,3
+34596748,26270517,4
+lian1110,26270517,4
+foxgarden,26270517,4
+2785783,26270517,4
+hebesbaby,26270517,5
+66867402,26270517,4
+68788637,26270517,4
+77316354,26270517,2
+ffantuan,26270517,5
+johnvivi,26270517,4
+49902216,26270517,4
+3855403,26270517,4
+vivifyvivi,26270517,3
+rr317,26270517,4
+58902530,26270517,3
+BackToNight,26270517,4
+floragarfield,26270517,3
+33260321,26270517,4
+43430222,26270517,5
+dakusaido,26270517,5
+narcisusss,26270517,4
+12080933,26270517,4
+55705224,26270517,3
+danzilee,26270517,2
+vincet,26270517,5
+36478733,26270517,5
+chendax,26270517,5
+cheri0505,26270517,5
+2944300,26270517,5
+78564459,26270517,4
+superegg.,26270517,4
+clcherrie,26270517,4
+56032658,26270517,4
+Kandice,26270517,3
+53058637,26270517,3
+81126169,26270517,4
+yzd1026,26270517,4
+Canvas_X,26270517,4
+NicoleYuyijun,26270517,4
+fatenaught,26270517,3
+3844901,26270517,3
+92622495,26270517,4
+momo077,26270517,5
+4158607,26270517,-1
+68042727,26270517,4
+MeloTheFisher,26270517,3
+35769554,26270517,3
+77867005,26270517,5
+yuntun,26270517,4
+73312122,26270517,5
+lilysld,26270517,4
+54049800,26270517,3
+monkeek,26270517,4
+yokodesu,26270517,5
+sakimay,26270517,4
+dkjune,26270517,2
+Cecil.,26270517,-1
+littletraveler,26270517,4
+natsukinoheya,26270517,5
+70915171,26270517,4
+sambolero,26270517,4
+MOVIE--KO,26270517,4
+ssstef,26270517,5
+104261144,26270517,3
+rachelff,26270517,5
+fabregas04,26270517,4
+3995983,26270517,4
+maydaylyn,26270517,5
+47403212,26270517,3
+bessie10105101,26270517,4
+45103571,26270517,5
+superpanv,26270517,2
+49162787,26270517,5
+wxysmq,26270517,3
+wxysmq,26270517,3
+jitongyajiang,26270517,3
+1552306,26270517,4
+87095553,26270517,4
+4717493,26270517,3
+seldoms,26270517,3
+74173242,26270517,5
+71576870,26270517,4
+52692373,26270517,5
+paco,26270517,4
+Royeka.Es,26270517,5
+howlongisyoyo,26270517,3
+57333199,26270517,4
+tetsujo,26270517,4
+sungmaki,26270517,4
+63141473,26270517,4
+youngtoo,26270517,4
+63741942,26270517,5
+emeline,26270517,3
+yukicl,26270517,5
+rubybrandy,26270517,4
+skyw510,26270517,5
+gunjoubiyori,26270517,-1
+lovehide,26270517,4
+benjune,26270517,3
+49245697,26270517,-1
+67090700,26270517,4
+sherrydjm,26270517,4
+xxhhcc,26270517,2
+emily56,26270517,3
+ekling,26270517,5
+daat,26270517,-1
+1752075,26270517,-1
+52028198,26270517,4
+47004535,26270517,4
+yoonjaeleven,26270517,4
+zhanghaoruo,26270517,4
+44501029,26270517,4
+4715775,26270517,4
+3084283,26270517,4
+wemn,26270517,-1
+Oleg,26270517,4
+cyan_xi,26270517,3
+65452477,26270517,3
+unnanae,26270517,3
+doudou3531,26270517,4
+53287418,26270517,4
+irene_kirakira,26270517,5
+59891843,26270517,4
+47218828,26270517,3
+26538596,26270517,3
+wezhang,26270517,4
+48394300,26270517,-1
+aiko555,26270517,5
+freehy,26270517,4
+95592443,26270517,4
+proband,26270517,4
+Saggezza,26270517,4
+Alma-Lee,26270517,4
+58750002,26270517,5
+aspoon,26270517,4
+jeanchin,26270517,-1
+umeboshi,26270517,1
+Araide_Rie,26270517,5
+LittleMissApril,26270517,4
+57319762,26270517,3
+53477720,26270517,2
+christinazeng,26270517,5
+fang0079,26270517,3
+66185314,26270517,4
+yuyu723,26270517,3
+tatsu,26270517,3
+84638214,26270517,4
+122527833,26270517,4
+3548043,26270517,4
+3465786,26270517,3
+yuki.ms.13room,26270517,4
+yuuku,26270517,4
+4165121,26270517,5
+vi-vi-an,26270517,-1
+122179287,26270517,5
+3680251,26270517,4
+64938793,26270517,4
+Crispy,26270517,4
+libertyrepublic,26270517,4
+megamao,26270517,5
+92395853,26270517,5
+43393007,26270517,2
+jung106,26270517,4
+notfound4O4,26270517,5
+jinshuminshixia,26270517,5
+81215873,26270517,4
+captain_beard,26270517,4
+sona302,26270517,3
+xin_,26270517,4
+boiya,26270517,5
+48561660,26270517,4
+NYiXXX,26270517,-1
+laespoirao,26270517,5
+63315790,26270517,4
+136101337,25958787,5
+53272974,25958787,4
+nvq7Gin,25958787,5
+102099688,25958787,3
+49062387,25958787,4
+55800838,25958787,4
+125040121,25958787,4
+vala1994,25958787,5
+124854750,25958787,5
+JamesPound,25958787,3
+48787115,25958787,5
+59554628,25958787,4
+2700292,25958787,3
+lolitazly,25958787,3
+pangjiansheng,25958787,4
+1651178,25958787,4
+3330332,25958787,5
+123593065,25958787,5
+56435930,25958787,3
+68853437,25958787,3
+westundine,25958787,3
+cathys,25958787,5
+70328585,25958787,5
+68880594,25958787,5
+nicoleyui,25958787,4
+45146702,25958787,3
+65403671,25958787,4
+icy1004,25958787,5
+47236491,25958787,5
+104462145,25958787,-1
+the7th_bloom,25958787,3
+zydBB,25958787,4
+tlping,25958787,4
+129158063,25958787,5
+hide29,25958787,4
+69806466,25958787,4
+benbenzh,25958787,3
+allblue,25958787,3
+lovezh19930223,25958787,3
+78731933,25958787,4
+41038463,25958787,5
+zhangqiong07,25958787,5
+57583046,25958787,4
+109261237,25958787,3
+43958775,25958787,4
+tammyj_11,25958787,4
+78683544,25958787,4
+mary.mary,25958787,5
+3811853,25958787,4
+xixistone,25958787,3
+131834377,25958787,5
+54876127,25958787,4
+ChanelFive,25958787,4
+36013177,25958787,3
+67061542,25958787,5
+83026417,25958787,1
+koii,25958787,5
+63399051,25958787,3
+80998115,25958787,5
+33535307,25958787,5
+jiefangQiu,25958787,5
+46171104,25958787,5
+Summer.Jessica,25958787,4
+49455574,25958787,4
+36899592,25958787,4
+heathercone,25958787,3
+daiyuko,25958787,3
+ecane,25958787,4
+Oliver_Lu,25958787,4
+lazyariel,25958787,5
+48271739,25958787,4
+83861076,25958787,4
+sl19910727,25958787,4
+57673827,25958787,5
+foxgarden,25958787,3
+54086644,25958787,4
+120582805,25958787,5
+81894742,25958787,1
+91474719,25958787,3
+70699214,25958787,3
+129670010,25958787,3
+UncleJOEs,25958787,3
+Bryan_westtown,25958787,3
+57016873,25958787,5
+131343395,25958787,3
+eva1221,25958787,3
+69573435,25958787,4
+bill0817,25958787,4
+Janone,25958787,3
+bettersnail,25958787,-1
+92878802,25958787,4
+130718602,25958787,4
+pyengu,25958787,3
+anoukhood,25958787,3
+27518977,25958787,3
+69439267,25958787,4
+137800980,25958787,3
+53404081,25958787,4
+kingiknow,25958787,3
+pihou,25958787,5
+102804958,25958787,4
+78098162,25958787,5
+49443959,25958787,4
+rachelff,25958787,4
+bilberry,25958787,4
+59262140,25958787,4
+53370159,25958787,5
+48997754,25958787,4
+pchywasabi,25958787,4
+135247004,25958787,3
+50299714,25958787,4
+67652079,25958787,4
+kisscat890505,25958787,5
+47496790,25958787,5
+126994808,25958787,4
+2084798,25958787,4
+54217393,25958787,5
+cobbcheng,25958787,4
+TongZilou,25958787,4
+znzno,25958787,5
+52828296,25958787,4
+101612172,25958787,3
+anymirror,25958787,-1
+elinli00,25958787,5
+sell_an_apple,25958787,5
+RedKimi,25958787,5
+yangchyoung,25958787,4
+70950231,25958787,4
+57665696,25958787,3
+62522931,25958787,4
+68206077,25958787,3
+Tecsun,25958787,3
+88219923,25958787,5
+68255107,25958787,4
+74199863,25958787,5
+74385730,25958787,-1
+shinsukeholic,25958787,4
+124342918,25958787,3
+76611008,25958787,3
+maoyuqi,25958787,5
+64244966,25958787,4
+44610838,25958787,4
+123000223,25958787,4
+60166745,25958787,4
+90646242,25958787,4
+3310337,25958787,3
+50527763,25958787,5
+hanahere,25958787,4
+yansihan,25958787,4
+34243551,25958787,3
+53464389,25958787,4
+suewss,25958787,4
+90546251,25958787,4
+36441057,25958787,4
+62705311,25958787,3
+1312162,25958787,5
+72357492,25958787,4
+jinnjinnee,25958787,4
+131970446,25958787,4
+44243630,25958787,4
+Hyke,25958787,3
+53477033,25958787,3
+52961473,25958787,4
+1867121,25958787,3
+126467467,25958787,4
+fengjiansun,25958787,3
+callmejang,25958787,-1
+98956225,25958787,4
+74652601,25958787,4
+62434188,25958787,5
+75518495,25958787,3
+77048663,25958787,5
+hougirl,25958787,3
+Madaotaku,25958787,4
+25664638,25958787,4
+45268716,25958787,4
+61740849,25958787,5
+55374994,25958787,5
+on1ooker,25958787,4
+133033817,25958787,4
+108296832,25958787,3
+51149079,25958787,4
+43813365,25958787,-1
+yuwusankou,25958787,4
+1942157,25958787,4
+135575731,25958787,4
+sunata,25958787,3
+48938261,25958787,3
+3907593,25958787,4
+wendy.peace,25958787,-1
+58776311,25958787,4
+59330201,25958787,4
+orange450046,25958787,3
+131205877,25958787,3
+gegewu92,25958787,3
+34507934,25958787,3
+53454251,25958787,4
+yojoisgod,25958787,3
+47037959,25958787,3
+103277074,25958787,4
+51012201,25958787,5
+3693991,25958787,3
+126513771,25958787,3
+2772927,25958787,4
+zjuxiatian,25958787,2
+50659341,25958787,4
+4287011,25958787,3
+88658178,25958787,3
+40093892,25958787,5
+pengsue,25958787,5
+53544035,25958787,5
+134537950,25958787,4
+iammagic,25958787,4
+heaven0618,25958787,3
+127080746,25958787,4
+69948277,25958787,4
+47492761,25958787,5
+45786010,25958787,4
+MMAOCOOL,25958787,5
+49823720,25958787,4
+49823720,25958787,4
+izhouxy,25958787,3
+58512408,25958787,5
+137304863,25958787,-1
+kiki0616,25958787,4
+daniayoyo,25958787,5
+liuye1202,25958787,5
+65496704,25958787,3
+53656219,25958787,3
+132321087,25958787,3
+windirt,25958787,4
+Samle-in-us,25958787,4
+1096452,25958787,4
+137129170,25958787,4
+137127465,25958787,4
+65284332,25958787,3
+49855404,25958787,4
+51277491,25958787,4
+15914536,25958787,4
+16909521,25958787,3
+playgame,25958787,4
+doufutou,25958787,3
+zfz583443214,25958787,4
+50690887,25958787,3
+59094872,25958787,5
+42375246,25958787,4
+75940485,25958787,1
+A_len,25958787,5
+131909298,25958787,4
+130192486,25958787,4
+123112465,25958787,4
+44689073,25958787,3
+58003212,25958787,4
+barcabookworm,25958787,4
+57090877,25958787,5
+narrowjiu,25958787,3
+59886067,25958787,-1
+68630108,25958787,2
+sphynx,25958787,4
+67225577,25958787,5
+34664148,25958787,4
+21936280,25958787,4
+130940103,25958787,4
+44975625,25958787,3
+2417785,25958787,3
+loginfo,25958787,5
+83658918,25958787,-1
+128513143,25958787,4
+3561549,25958787,3
+Ellesun,25958787,4
+dingdanglbh,25958787,4
+51836301,25958787,3
+69833008,25958787,3
+72120142,25958787,3
+45968437,25958787,3
+128017227,25958787,5
+64713560,25958787,3
+Juzzia,25958787,4
+71024831,25958787,4
+122889599,25958787,3
+81685996,25958787,4
+4598455,25958787,3
+81351219,25958787,4
+134532567,25958787,4
+2603031,25958787,5
+56964513,25958787,4
+iamsbp,25958787,3
+phinn,25958787,3
+leechambo,25958787,3
+78321919,25958787,4
+sususlsz,25958787,3
+61398424,25958787,3
+67390933,25958787,5
+63685423,25958787,3
+1689067,25958787,5
+104489015,25958787,4
+Eva.pisces,25958787,5
+3682455,25958787,4
+121511870,25958787,3
+39584121,25958787,3
+yjrockon,25958787,4
+127731912,25958787,5
+133159113,25958787,4
+131033417,25958787,4
+97206939,25958787,4
+muuttavien,25958787,5
+mumuchou,25958787,3
+57884796,25958787,3
+63599319,25958787,4
+58402491,25958787,5
+shangguanyi13,25958787,4
+134625303,25958787,3
+4881092,25958787,3
+4640701,25958787,5
+60016338,25958787,4
+JW_taoY,25958787,3
+65161284,25958787,4
+134435413,25958787,2
+43632207,25958787,4
+63228539,25958787,5
+63528456,25958787,4
+59096129,25958787,4
+47605443,25958787,4
+69713795,25958787,4
+124887489,25958787,3
+constantmartin,25958787,3
+icyleaf,25958787,-1
+60981917,25958787,3
+37480581,25958787,2
+foreverworld,25958787,3
+blusia4,25958787,4
+67795929,25958787,4
+122104657,25958787,4
+78578406,25958787,5
+68091051,25958787,4
+UC0083,25958787,4
+26830263,25958787,4
+4359003,25958787,4
+51698835,25958787,4
+58226091,25958787,4
+66916695,25958787,4
+gent1eman,25958787,4
+120069048,25958787,5
+54088954,25958787,5
+76239452,25958787,5
+2903739,25958787,4
+diyota_,25958787,2
+61619787,25958787,2
+121460001,25958787,4
+schumibati,25958787,3
+ypppp,25958787,5
+49228717,25958787,4
+amanda3,25958787,4
+yuco,25958787,4
+yaolegeyao,25958787,4
+32616279,25958787,4
+123063664,25958787,5
+1559168,25958787,5
+3581018,25958787,3
+zhenziren,25958787,4
+120792651,25958787,4
+ria_really,25958787,5
+82145368,25958787,4
+kulapika,25958787,4
+124640229,25958787,3
+79590572,25958787,-1
+imoviemaker,25958787,4
+48316305,25958787,3
+55980098,25958787,3
+3043359,25958787,4
+64995298,25958787,4
+91825059,25958787,3
+82046546,25958787,4
+56252551,25958787,3
+126306276,25958787,4
+30351144,25958787,3
+44066080,25958787,3
+aries_two,25958787,3
+CrazyChan,25958787,4
+witchmignon,25958787,3
+ellestmorte,25958787,-1
+69790989,25958787,3
+55450968,25958787,5
+38789424,25958787,5
+74720152,25958787,4
+42819228,25958787,5
+42049587,25958787,4
+130599917,25958787,3
+2125588,25958787,4
+42862661,25958787,3
+63547769,25958787,4
+79553446,25958787,3
+83948967,25958787,4
+41532813,25958787,4
+59536980,25958787,4
+25621274,25958787,4
+64473872,25958787,5
+yourlilith,25958787,3
+37012282,25958787,3
+4010903,25958787,4
+62362078,25958787,3
+Magellan,25958787,4
+120480108,25958787,5
+ygws,25958787,4
+74827424,25958787,3
+summerasyou,25958787,5
+68190189,25958787,-1
+dafeinydia,25958787,4
+1856358,25958787,3
+souffle-,25958787,3
+CLOWN9527521,25958787,4
+59957135,25958787,4
+2842937,25958787,4
+50811466,25958787,3
+ffgg34,25958787,4
+51916288,25958787,4
+Sigrid_Lu,25958787,2
+42443171,25958787,3
+63314716,25958787,3
+101417161,25958787,5
+66771297,25958787,4
+116054829,25958787,4
+88574021,25958787,4
+74589582,25958787,4
+63875533,25958787,5
+hot_air,25958787,4
+51245229,25958787,3
+48043628,25958787,5
+22105037,25958787,4
+absinthejt,25958787,4
+61040304,25958787,5
+yuan521123,25958787,4
+xiaoxiaose,25958787,-1
+90217144,25958787,4
+49324923,25958787,4
+77485550,25958787,4
+37190150,25958787,4
+anygned,25958787,-1
+Jash1118,25958787,4
+dsqingdao,25958787,-1
+53513282,25958787,4
+121086273,25958787,5
+spsara,25958787,3
+36135879,25958787,5
+36721192,25958787,4
+40567146,25958787,4
+54639718,25958787,5
+3858083,25958787,3
+62041863,25958787,4
+43181758,25958787,3
+3106278,25958787,3
+65145823,25958787,3
+46758420,25958787,4
+4806563,25958787,4
+85288278,25958787,4
+131068311,25958787,4
+57032941,25958787,5
+35386883,25958787,4
+64114079,25958787,4
+46806968,25958787,4
+48686812,25958787,3
+131107311,25958787,4
+128409852,25958787,4
+phoebe0_0nn,25958787,4
+xuwaner,25958787,5
+1887825,25958787,3
+Alex-boil,25958787,4
+58255325,25958787,3
+ibenben,25958787,3
+huapiqiu,25958787,5
+121270653,25958787,3
+L_kid,25958787,4
+huhu227,25958787,3
+121514909,25958787,3
+54402880,25958787,5
+122128201,25958787,5
+yukino,25958787,3
+dogeli,25958787,4
+64543394,25958787,4
+60427837,25958787,5
+Chne,25958787,4
+Seeeeeeee,25958787,4
+109484778,25958787,4
+63981734,25958787,3
+44923935,25958787,4
+wanyuqing330,25958787,3
+e45e32,25958787,3
+134770977,25958787,5
+69585851,25958787,3
+46151281,25958787,3
+3678670,25958787,5
+124098783,25958787,3
+47970530,25958787,5
+z-xy,25958787,3
+liulull,25958787,3
+29515987,25958787,4
+49298056,25958787,4
+joynee,25958787,3
+120538141,25958787,5
+weibioh,25958787,4
+2366564,25958787,4
+lovebeans,25958787,3
+133125055,25958787,3
+99543744,25958787,5
+iLifestyle,25958787,3
+xuqianxun,25958787,5
+soloki547,25958787,4
+50118085,25958787,5
+67004565,25958787,3
+clynch,25958787,3
+80681000,25958787,4
+122069721,25958787,4
+2228697,25958787,5
+44705370,25958787,3
+dongboqi,25958787,3
+LunaSunny,25958787,4
+67153884,25958787,4
+25694661,25958787,5
+cryc,25958787,4
+shanyu2015,25958787,4
+63635904,25958787,3
+78724440,25958787,2
+121437140,25958787,5
+zhangjc223,25958787,5
+52248641,25958787,3
+114422491,25958787,5
+51866043,25958787,4
+122427333,25958787,4
+as442181966,25958787,4
+xiaoxincc,25958787,2
+55018128,25958787,5
+48561660,25958787,5
+rosepicker,25958787,4
+52524178,25958787,4
+sssssssssa123,25958787,4
+49382185,25958787,4
+Y_yujia,25958787,5
+48031945,25958787,2
+quiet-qing,25958787,-1
+76692022,25958787,4
+68020354,25958787,4
+68058633,25958787,4
+77182257,25958787,5
+82349696,25958787,4
+4378595,25958787,3
+49917861,25958787,4
+62701559,25958787,4
+48615299,25958787,5
+67726940,25958787,4
+75555205,25958787,4
+64716585,25958787,4
+walinee,25958787,3
+1381390,25958787,5
+132183694,25958787,4
+16816823,25958787,3
+76783989,25958787,3
+49712766,25958787,4
+43828485,25958787,3
+joyveela,25958787,3
+DM1994,25958787,4
+67390489,25958787,5
+yu830,25958787,5
+66753924,25958787,5
+sijinzi,25958787,4
+67890282,25958787,5
+Odd,25958787,4
+70368637,25958787,3
+61176733,25958787,5
+78387852,25958787,3
+zhangzhangzhang,25958787,3
+teenyliu,25958787,4
+133354785,25958787,2
+chaud,25958787,5
+79601916,25958787,5
+64136306,25958787,3
+62915199,25958787,4
+december.L,25958787,5
+67243233,25958787,3
+62776173,25958787,4
+63051365,25958787,4
+63051365,25958787,4
+82629572,25958787,4
+71372922,25958787,4
+A_Sam,25958787,3
+79934332,25958787,3
+27791559,25958787,3
+ningyaogezhi,25958787,5
+36339118,25958787,4
+2087622,25958787,3
+13856427,25958787,4
+57660315,25958787,4
+135371434,25958787,4
+89308454,25958787,4
+59556078,25958787,3
+48707650,25958787,4
+134495648,25958787,4
+122604864,25958787,4
+65589553,25958787,4
+qx2,25958787,3
+62635497,25958787,4
+62635497,25958787,4
+yuki2005419,25958787,5
+3041980,25958787,3
+112920430,25958787,3
+51271192,25958787,3
+hotowl,25958787,3
+hughwolfgang,25958787,4
+61272579,25958787,4
+spx,25958787,3
+2229038,25958787,3
+connectless,25958787,3
+74132698,25958787,4
+nanguodehaizi,25958787,4
+61005092,25958787,3
+52769100,25958787,5
+130540529,25958787,4
+65102324,25958787,4
+46713517,25958787,4
+84407113,25958787,3
+javy,25958787,4
+javy,25958787,4
+47849453,25958787,4
+80538549,25958787,4
+spark0601,25958787,3
+95074857,25958787,4
+NatsuTrevor,25958787,3
+1796714,25958787,3
+smellingcat,25958787,4
+mujun_soc,25958787,3
+jausdauer,25958787,4
+77797292,25958787,4
+47886279,25958787,4
+laurawang,25958787,4
+66038844,25958787,4
+131749198,25958787,3
+89852120,25958787,5
+73967200,25958787,5
+41418851,25958787,3
+1281739,25958787,3
+59270375,25958787,4
+2550908,25958787,3
+66669225,25958787,5
+wangjia0702,25958787,5
+zhangxunnj,25958787,4
+2984167,25958787,3
+2858772,25958787,4
+49415138,25958787,4
+HughWood,25958787,4
+104696310,25958787,3
+Decadeff,25958787,5
+he_wei,25958787,4
+73429716,25958787,5
+48313436,25958787,4
+2634071,25958787,3
+kalthusad,25958787,4
+45015960,25958787,3
+zy5h,25958787,5
+55436430,25958787,5
+42778669,25958787,5
+92655993,25958787,4
+im61,25958787,4
+47580510,25958787,5
+1496062,25958787,5
+45784891,25958787,3
+3242108,25958787,5
+80359618,25958787,5
+Zukunft,25958787,3
+3540779,25958787,-1
+zzkiara,25958787,4
+44398603,25958787,5
+jinying,25958787,3
+49689556,25958787,3
+125797467,25958787,4
+2171101,25958787,4
+11889754,25958787,4
+pandawin,25958787,3
+115593440,25958787,2
+73312122,25958787,3
+69773745,25958787,3
+maimai251,25958787,3
+yuntaoc,25958787,3
+63989658,25958787,4
+minako_lym,25958787,5
+130663859,25958787,3
+rika19860217,25958787,3
+ziyuyouyou,25958787,3
+2193797,25958787,5
+1279239,25958787,3
+69930229,25958787,4
+55892298,25958787,4
+2259657,25958787,3
+63142842,25958787,4
+8225552,25958787,4
+66802637,25958787,4
+50573037,25958787,4
+Jayne_pig,25958787,3
+43130115,25958787,5
+jeremy-won,25958787,4
+119495221,25958787,4
+120581904,25958787,4
+ameliefei,25958787,4
+halfsiren,25958787,4
+facelessecho,25958787,3
+cicisj,25958787,3
+84195999,25958787,5
+73110105,25958787,4
+58977732,25958787,3
+CharlesRosen,25958787,4
+4667240,25958787,3
+44349387,25958787,3
+66828927,25958787,3
+132698111,25958787,5
+miuk,25958787,-1
+visss,25958787,3
+52247156,25958787,4
+53785455,25958787,5
+tracycw618,25958787,5
+Jennifer6364,25958787,2
+62298442,25958787,3
+6303192,25958787,2
+49902324,25958787,3
+douding1024,25958787,3
+Likferd,25958787,4
+2962402,25958787,3
+39068910,25958787,3
+44841757,25958787,5
+daladida,25958787,2
+1828898,25958787,3
+131009574,25958787,3
+3539441,25958787,5
+meidong0904,25958787,4
+3065272,25958787,3
+65764407,25958787,4
+62286353,25958787,5
+louishirley,25958787,4
+pianzhikuangyy,25958787,4
+115368831,25958787,4
+66252924,25958787,-1
+126980247,25958787,4
+zxysyz,25958787,5
+zxysyz,25958787,5
+130248738,25958787,2
+65340387,25958787,4
+102788325,25958787,4
+aegeanelsie,25958787,4
+103742642,25958787,4
+62600137,25958787,-1
+71791031,25958787,3
+69396621,25958787,4
+47109551,25958787,4
+47782519,25958787,3
+62945273,25958787,4
+nianlu,25958787,4
+47692286,25958787,3
+133398715,25958787,4
+vivianya,25958787,3
+81962971,25958787,4
+kidsboom,25958787,4
+54593455,25958787,5
+134275392,25958787,3
+121235168,25958787,4
+121163756,25958787,4
+64252611,25958787,3
+30569358,25958787,3
+42373741,25958787,3
+ryoji1885,25958787,3
+finally0506,25958787,4
+60437819,25958787,-1
+77121969,25958787,3
+Nowherepolis,25958787,4
+83467712,25958787,3
+2245194,25958787,4
+82980188,25958787,3
+zxc_suki,25958787,4
+54664894,25958787,4
+2421754,25958787,3
+78182755,25958787,-1
+2039225,25958787,3
+128821686,25958787,4
+diafarona,25958787,3
+ISRAFEL,25958787,4
+33245540,25958787,5
+44387904,25958787,4
+miaotuanzi,25958787,4
+78323931,25958787,4
+62354607,25958787,5
+66770908,25958787,3
+12899470,25958787,3
+57260722,25958787,4
+1277968,25958787,-1
+56136845,25958787,3
+shiiirley,25958787,4
+43562341,25958787,4
+Sharpay0405,25958787,4
+86253847,25958787,3
+91752037,25958787,4
+55822408,25958787,4
+50226238,25958787,3
+muxu413,25958787,4
+3514261,25958787,5
+max-a,25958787,4
+mkelly,25958787,5
+18313578,25958787,3
+4380133,25958787,3
+52975442,25958787,-1
+chaos172,25958787,4
+97396333,25958787,3
+40887848,25958787,5
+whisper,25958787,4
+younglucn,25958787,4
+heyinfei,25958787,4
+66642487,25958787,5
+3794173,25958787,3
+48063082,25958787,4
+x1Ao_y,25958787,4
+juech171,25958787,4
+128867718,25958787,4
+119877742,25958787,5
+fuckuit,25958787,4
+68608640,25958787,3
+75180994,25958787,4
+3229150,25958787,4
+59011123,25958787,4
+hsy1108,25958787,4
+85104639,25958787,4
+Tillaqiu,25958787,4
+3502559,25958787,3
+AAGban,25958787,5
+wendy426,25958787,3
+3413987,25958787,4
+67884677,25958787,2
+41675106,25958787,4
+83958194,25958787,5
+47824012,25958787,-1
+3510245,25958787,3
+87867705,25958787,5
+49579153,25958787,5
+103187008,25958787,3
+xmxianshe,25958787,-1
+53541312,25958787,5
+wsbaihu,25958787,5
+1074069,25958787,5
+40764656,25958787,3
+2471940,25958787,5
+55786926,25958787,4
+70446791,25958787,-1
+91405075,25958787,4
+4882025,25958787,3
+Zazai,25958787,4
+morgangeist,25958787,4
+36092326,25958787,4
+71624097,25958787,3
+poria,25958787,5
+gomorrha,25958787,4
+130608231,25958787,4
+80209748,25958787,5
+3277665,25958787,5
+36596719,25958787,4
+38513029,25958787,-1
+56995704,25958787,5
+toyshen,25958787,3
+54994533,25958787,4
+carino8023,25958787,4
+4840823,25958787,5
+JiaoYaZi,25958787,4
+zbar1234,25958787,4
+84342168,25958787,4
+cherryhj,25958787,2
+nutting,25958787,4
+Augustine2015,25958787,5
+2331276,25958787,4
+72497547,25958787,5
+adidasisallin,25958787,4
+78934649,25958787,4
+69133855,25958787,4
+3718211,25958787,3
+isabel_cui,25958787,4
+49466976,25958787,4
+82499122,25958787,-1
+4521298,25958787,5
+41786297,25958787,3
+35703098,25958787,3
+Total-recall,25958787,3
+csj0824,25958787,3
+xixi_yuanxin,25958787,3
+yfqc24pippo,25958787,3
+1110643,25958787,3
+if_moment,25958787,5
+4464843,25958787,3
+1443980,25958787,3
+55507630,25958787,4
+46794907,25958787,4
+stier,25958787,3
+53356414,25958787,3
+xuyimeng,25958787,4
+64771060,25958787,3
+89528523,25958787,4
+78925849,25958787,3
+76994083,25958787,4
+Rock_11,25958787,5
+55587677,25958787,5
+65668442,25958787,5
+ccemilie,25958787,5
+1259506,25958787,4
+2621318,25958787,3
+59620866,25958787,3
+80167368,25958787,3
+aki.sh,25958787,4
+ly2019,25958787,3
+niazion,25958787,3
+71108776,25958787,4
+62663500,25958787,2
+Scorpio_lxs,25958787,4
+chankawai,25958787,3
+57633797,25958787,5
+49587951,25958787,3
+lotus47,25958787,4
+34008723,25958787,4
+123346219,25958787,5
+alessiagu,25958787,4
+zwbhappy,25958787,3
+cookieccute,25958787,3
+51784262,25958787,5
+72632667,25958787,5
+yanxxin,25958787,2
+56421063,25958787,-1
+4740160,25958787,5
+3031709,25958787,4
+87849638,25958787,5
+60310155,25958787,4
+70470057,25958787,4
+qi-shao-shang,25958787,5
+FilmYan,25958787,3
+yiweicoffee,25958787,5
+130806444,25958787,5
+44455304,25958787,5
+1653790,25958787,3
+2093332,25958787,4
+134523911,25958787,5
+rinalee,25958787,4
+132463662,25958787,3
+50624143,25958787,3
+55006462,25958787,4
+53893558,25958787,4
+yululiuli,25958787,4
+ysl,25958787,2
+105451131,25958787,5
+48000477,25958787,4
+xinlan,25958787,4
+2923778,25958787,4
+audreysy,25958787,4
+yc987,25958787,4
+52911648,25958787,3
+43662887,25958787,3
+74478890,25958787,4
+1078753,25958787,5
+32451662,25958787,-1
+74337683,25958787,3
+53546281,25958787,4
+120061371,25958787,4
+134508428,25958787,3
+64755839,25958787,4
+HR-vivi,25958787,4
+72086305,25958787,3
+jiroleng,25958787,4
+61720492,25958787,4
+helen--lu,25958787,4
+48179852,25958787,4
+128219918,25958787,4
+blue-Petit,25958787,3
+annxin19,25958787,5
+58656660,25958787,4
+61468605,25958787,4
+132830115,25958787,5
+121920760,25958787,3
+73236954,25958787,5
+45291333,25958787,3
+73644036,25958787,3
+47142937,25958787,5
+71981938,25958787,5
+46712687,25958787,3
+73619061,25958787,3
+83844819,25958787,4
+62411560,25958787,3
+amosteng,25958787,5
+102867420,25958787,4
+63046201,25958787,3
+bigeyedog,25958787,3
+3100517,25958787,3
+56170327,25958787,4
+1605613,25958787,4
+133914507,25958787,5
+chuetiti,25958787,5
+97816774,25958787,3
+51694524,25958787,4
+79474538,25958787,4
+124136324,25958787,4
+46032795,25958787,3
+YH222,25958787,3
+dearpluto,25958787,3
+47465726,25958787,3
+92119764,25958787,3
+cryst0027,25958787,4
+131849470,25958787,2
+56309720,25958787,5
+1421601,25958787,2
+76640020,25958787,4
+van2,25958787,4
+2841835,25958787,-1
+1689876,25958787,3
+127043703,25958787,4
+BaBaBaL,25958787,5
+Armande,25958787,5
+91350742,25958787,5
+84797100,25958787,4
+44184384,25958787,-1
+salanhell,25958787,2
+9411741,25958787,4
+70353788,25958787,4
+2768499,25958787,3
+55978536,25958787,3
+41511009,25958787,4
+46897484,25958787,3
+roryluo,25958787,4
+39740830,25958787,4
+36207779,25958787,5
+70587773,25958787,5
+1413100,25958787,3
+68779428,25958787,3
+mengaxin,25958787,3
+marurui,25958787,-1
+loverenezh,25958787,3
+47610030,25958787,4
+supersnail59515,25958787,3
+jennyseath,25958787,3
+1011562,25958787,4
+arielwjx,25958787,3
+chenyan_keke,25958787,4
+cstdr,25958787,3
+48764110,25958787,3
+hecongqi,25958787,5
+jgh89435uh7,25958787,4
+52093119,25958787,1
+zqnpz,25958787,3
+2065436,25958787,5
+4347079,25958787,4
+68757762,25958787,4
+striveforwhat,25958787,4
+1384149,25958787,4
+billmaya,25958787,5
+rejoice720,25958787,5
+changle0605,25958787,3
+wajzw,25958787,5
+1369129,25958787,3
+4116226,25958787,3
+emeline,25958787,3
+76076982,25958787,3
+134246443,25958787,3
+54430554,25958787,4
+bleachxiaobai,25958787,5
+55467676,25958787,4
+121534057,25958787,3
+GjS1022,25958787,4
+50874756,25958787,4
+simonly,25958787,4
+33322895,25958787,3
+9352143,25958787,3
+124117539,25958787,5
+xuylu,25958787,3
+ntjht2013,25958787,5
+13131244,25958787,4
+25503918,25958787,4
+97181253,25958787,4
+a131351634,25958787,4
+changzheng,25958787,5
+yyt0105,25958787,3
+74825312,25958787,3
+81484263,25958787,5
+119868910,25958787,3
+49433742,25958787,3
+leexiaoxiao,25958787,3
+annie00116,25958787,4
+pengyn,25958787,5
+59235428,25958787,5
+yiyiii,25958787,5
+eileenlim,25958787,4
+89804270,25958787,4
+37102095,25958787,-1
+45875943,25958787,4
+35810790,25958787,4
+liuningba,25958787,3
+38955500,25958787,4
+2980283,25958787,4
+73873085,25958787,4
+camellowang,25958787,3
+dongworry,25958787,4
+63890745,25958787,4
+95525866,25958787,4
+130531885,25958787,3
+43681631,25958787,4
+bidaobidaobi,25958787,4
+44345461,25958787,3
+80687112,25958787,4
+tuzichuchu,25958787,3
+50087846,25958787,4
+arlmy,25958787,3
+zxin94264,25958787,3
+fishergreen,25958787,3
+87275356,25958787,4
+facteur,25958787,4
+Coast0to0coast,25958787,5
+1634532,25958787,-1
+50403916,25958787,3
+81628764,25958787,4
+airborneliao,25958787,4
+binkychou,25958787,3
+79542238,25958787,4
+58630530,25958787,4
+133846679,25958787,4
+4664430,25958787,3
+46528708,25958787,5
+lzw22,25958787,4
+110040852,25958787,4
+4114969,25958787,3
+102436749,25958787,4
+karen6,25958787,5
+69061545,25958787,3
+outsidecastle,25958787,3
+55850316,25958787,4
+foreverlethe,25958787,-1
+39192898,25958787,5
+71814455,25958787,5
+122450255,25958787,3
+64816861,25958787,3
+ruiye,25958787,3
+czzzzc,25958787,5
+57572204,25958787,4
+53685870,25958787,3
+dengxian123,25958787,4
+pyan,25958787,4
+69141192,25958787,5
+45219094,25958787,3
+aimaibumai,25958787,4
+sunvee,25958787,4
+15920466,25958787,-1
+85454895,25958787,4
+ispep,25958787,4
+126911965,25958787,2
+98330744,25958787,4
+snowwhite,25958787,4
+1115329,25958787,4
+daydream624,25958787,4
+46352288,25958787,3
+120085809,25958787,4
+nothingbut,25958787,-1
+43930540,25958787,5
+58579857,25958787,5
+lovecatsandbear,25958787,5
+45345873,25958787,3
+Williamlee1992,25958787,4
+25972265,25958787,5
+44822555,25958787,4
+87818830,25958787,3
+79731168,25958787,4
+1201937,25958787,3
+80370645,25958787,5
+EugeneWong,25958787,4
+122905922,25958787,3
+81760284,25958787,4
+71336941,25958787,4
+51772148,25958787,5
+soloAllen,25958787,5
+44268763,25958787,5
+59967875,25958787,5
+goze,25958787,4
+62873606,25958787,5
+40237768,25958787,3
+54215342,25958787,3
+TiffanyBrisset,25958787,3
+95427243,25958787,3
+dolphin_hotel,25958787,5
+xiaoyulong,25958787,3
+smile0826,25958787,4
+68710909,25958787,3
+19598735,25958787,4
+57071321,25958787,4
+34802440,25958787,3
+44709496,25958787,5
+4550491,25958787,4
+44134802,25958787,5
+46096823,25958787,3
+60392839,25958787,3
+54211342,25958787,5
+51909421,25958787,3
+1437680,25958787,3
+109456216,25958787,5
+75413339,25958787,4
+jasminedoodles,25958787,4
+34028398,25958787,4
+17797747,25958787,4
+133810252,25958787,3
+zc_726,25958787,4
+leftpomelo,25958787,4
+90051465,25958787,3
+Kandice,25958787,-1
+4200336,25958787,4
+48198812,25958787,5
+115012549,25958787,5
+124365930,25958787,4
+ShoneSpeaking,25958787,4
+3446950,25958787,3
+Sophiashen,25958787,3
+hendrix,25958787,5
+73530526,25958787,5
+52129000,25958787,4
+Jazag,25958787,4
+64677693,25958787,3
+Danya_Tang,25958787,5
+easelong,25958787,4
+4439510,25958787,4
+willlove,25958787,5
+izzytse,25958787,3
+52349741,25958787,-1
+50478757,25958787,5
+Show-_-,25958787,4
+27383917,25958787,3
+125878339,25958787,4
+36452184,25958787,2
+67969318,25958787,3
+blossom5,25958787,4
+69335890,25958787,2
+50255025,25958787,4
+46767985,25958787,5
+125786167,25958787,-1
+d_y_world,25958787,5
+jinshuminshixia,25958787,4
+53505227,25958787,3
+49136679,25958787,4
+64976213,25958787,4
+berengere,25958787,3
+berengere,25958787,3
+3219043,25958787,3
+32330973,25958787,4
+46728642,25958787,3
+49040242,25958787,4
+guoooo,25958787,4
+stng,25958787,3
+69162144,25958787,4
+77612168,25958787,4
+104823231,25958787,4
+63791248,25958787,4
+ccushuaia1220,25958787,-1
+julyhaha,25958787,4
+60882915,25958787,4
+123286236,25958787,5
+55434870,25958787,3
+52867570,25958787,5
+53786356,25958787,4
+2412177,25958787,3
+33977432,25958787,4
+75291603,25958787,5
+59312513,25958787,5
+39107236,25958787,5
+53248531,25958787,5
+57666302,25958787,3
+3774369,25958787,3
+46018704,25958787,4
+38041514,25958787,4
+kinderbaby,25958787,4
+2428233,25958787,2
+74249669,25958787,3
+43867607,25958787,3
+131741048,25958787,3
+pepperannn,25958787,5
+42841033,25958787,5
+32881100,25958787,4
+48825129,25958787,5
+3416468,25958787,-1
+littleshy,25958787,3
+108253828,25958787,4
+kimchi_chips,25958787,-1
+51398742,25958787,5
+43450920,25958787,-1
+kristine0627,25958787,5
+sandlee1986,25958787,4
+feellings,25958787,5
+zackman,25958787,3
+52196738,25958787,3
+ca3as2caco3,25958787,3
+65036960,25958787,5
+42084433,25958787,4
+V.J.,25958787,4
+125495885,25958787,4
+14575914,25958787,3
+92830730,25958787,5
+yinmengtan,25958787,4
+54512951,25958787,4
+4028097,25958787,3
+6626093,25958787,3
+67663384,25958787,4
+133303747,25958787,4
+50336000,25958787,5
+6669413,25958787,4
+43725091,25958787,4
+2094932,25958787,4
+yanpei,25958787,4
+48974118,25958787,4
+89301982,25958787,3
+wndtlkr,25958787,4
+132462828,25958787,5
+4638675,25958787,4
+3348609,25958787,4
+76577775,25958787,5
+littleme.,25958787,4
+125182358,25958787,4
+iRayc,25958787,4
+lingjun611,25958787,3
+124127651,25958787,5
+baliangyutang,25958787,3
+last_order9,25958787,4
+elfi-sama,25958787,4
+33415384,25958787,3
+ltp19950208,25958787,4
+121841318,25958787,3
+34297672,25958787,4
+60309496,25958787,4
+44561459,25958787,3
+lairhil,25958787,4
+51443474,25958787,3
+102473094,25958787,4
+abu584447182,25958787,3
+50629676,25958787,3
+55811632,25958787,4
+Joyce_Pan,25958787,3
+65878913,25958787,3
+4520580,25958787,5
+tuweri,25958787,3
+76236179,25958787,3
+96799379,25958787,5
+68752384,25958787,3
+60303197,25958787,4
+123149153,25958787,4
+53623002,25958787,4
+2600716,25958787,-1
+faline,25958787,3
+56711409,25958787,3
+2711254,25958787,4
+67609434,25958787,3
+57815451,25958787,4
+63011809,25958787,4
+CatPrince,25958787,4
+58976778,25958787,5
+69928262,25958787,4
+xiaoxi1252,25958787,3
+68997990,25958787,4
+1839952,25958787,2
+4338735,25958787,4
+7134514,25958787,3
+125741310,25958787,4
+74984713,25958787,5
+bulijite,25958787,4
+JHSDOUBAN,25958787,4
+59982291,25958787,4
+2258556,25958787,2
+3102384,25958787,5
+61600430,25958787,5
+lozer,25958787,3
+3635055,25958787,3
+1727444,25958787,5
+79561237,25958787,4
+76328378,25958787,5
+Peach.T,25958787,4
+nining,25958787,4
+Clatyz-Sun,25958787,4
+directoryao,25958787,3
+Zhang.Sonic,25958787,5
+64597422,25958787,4
+Carpediemnicole,25958787,5
+50733430,25958787,2
+yikoyumisa,25958787,-1
+125281406,25958787,4
+guitarain,25958787,4
+sinxu,25958787,4
+xxshen,25958787,4
+jad1s,25958787,4
+44109266,25958787,3
+formosante,25958787,3
+34404618,25958787,3
+mlgg,25958787,4
+62963853,25958787,5
+4411646,25958787,3
+yvonneliu,25958787,4
+2768259,25958787,3
+xiaoxiaoqin,25958787,3
+58438157,25958787,5
+128641812,25958787,5
+1783557,25958787,3
+64036955,25958787,4
+62496308,25958787,-1
+48675575,25958787,4
+50175528,25958787,5
+2170741,25958787,5
+40523115,25958787,4
+59477728,25958787,4
+lanmayday,25958787,3
+87996808,25958787,4
+57001880,25958787,3
+123366348,25958787,4
+78497021,25958787,5
+30181678,25958787,3
+48220000,25958787,3
+moonwater,25958787,3
+43703010,25958787,4
+weiyubin1987,25958787,3
+49657916,25958787,3
+120274901,25958787,5
+125185442,25958787,3
+133769080,25958787,4
+59886515,25958787,5
+71416831,25958787,4
+42807903,25958787,4
+kristin0711,25958787,4
+LailaiET,25958787,4
+yangzai508,25958787,5
+2386807,25958787,4
+62823659,25958787,5
+margie_margie,25958787,3
+41634233,25958787,3
+80592508,25958787,-1
+deepseashell,25958787,4
+54668834,25958787,4
+co1orful,25958787,4
+61879467,25958787,-1
+1720661,25958787,4
+quarter,25958787,3
+4306773,25958787,4
+yoyo_ran,25958787,3
+102938752,25958787,4
+3074960,25958787,4
+50341396,25958787,4
+qinyouxuan,25958787,4
+49445419,25958787,4
+44966176,25958787,5
+cerrol,25958787,3
+sanganggongzi,25958787,5
+47458734,25958787,3
+lushangrensheng,25958787,4
+68592556,25958787,3
+65674805,25958787,5
+18081083,25958787,3
+Ihvadream,25958787,4
+46836194,25958787,4
+mpower007,25958787,4
+2495052,25958787,4
+VIVIannnkk,25958787,5
+133633087,25958787,3
+sunflower87,25958787,4
+114483933,25958787,4
+Ghostlin,25958787,4
+48808520,25958787,4
+48808520,25958787,4
+133257087,25958787,4
+ordovices,25958787,3
+61562634,25958787,4
+46159687,25958787,3
+mkbl,25958787,5
+10026373,25958787,4
+42911623,25958787,4
+120374057,25958787,4
+74914910,25958787,3
+67011353,25958787,3
+zhanglinge,25958787,3
+suixi,25958787,4
+73347902,25958787,3
+66048384,25958787,5
+77615925,25958787,4
+marionette1985,25958787,3
+p3atlus,25958787,3
+53166711,25958787,5
+116551398,25958787,3
+44303318,25958787,2
+56765956,25958787,4
+yaozhilan,25958787,4
+4495249,25958787,5
+66776700,25958787,-1
+49172161,25958787,3
+labifenelm,25958787,3
+59993815,25958787,4
+72133543,25958787,4
+58371560,25958787,3
+sanmigo,25958787,4
+83295870,25958787,3
+xiaoguli,25958787,3
+68034953,25958787,4
+69454898,25958787,2
+ni0712,25958787,5
+2916349,25958787,5
+lijingxuan0205,25958787,5
+aliciajun,25958787,5
+Bebefore,25958787,2
+44105688,25958787,4
+49671091,25958787,5
+3553432,25958787,3
+121085982,25958787,4
+47705439,25958787,3
+44708171,25958787,4
+4624921,25958787,4
+lelexiaoyao,25958787,4
+luobozhazi,25958787,3
+46260385,25958787,5
+2014095,25958787,3
+JuliusLiao,25958787,4
+121721661,25958787,5
+2354239,25958787,5
+46054766,25958787,-1
+Angela_roger,25958787,4
+130398075,25958787,3
+54740327,25958787,4
+veritymuma,25958787,5
+49175410,25958787,5
+73714750,25958787,3
+3176021,25958787,4
+30441221,25958787,3
+ceechu,25958787,4
+77216634,25958787,3
+60834286,25958787,5
+cuiyingjun,25958787,4
+4242859,25958787,4
+46781081,25958787,3
+67368772,25958787,4
+37575099,25958787,4
+Charloo,25958787,4
+lonelyloner,25958787,4
+44504667,25958787,5
+45909488,25958787,4
+fangkaka,25958787,4
+goldenhornking,25958787,3
+46140866,25958787,3
+133545044,25958787,4
+26490137,25958787,4
+103415530,25958787,4
+50833916,25958787,5
+114535314,25958787,4
+VOLETASOS,25958787,4
+57061334,25958787,5
+znrpiggey,25958787,3
+grayfoxever,25958787,4
+79600314,25958787,3
+54340462,25958787,4
+hegeng2015,25958787,-1
+77048523,25958787,3
+1462465,25958787,4
+4587542,25958787,4
+43572345,25958787,3
+119415839,25958787,3
+shiningmonkey,25958787,-1
+xiaopin19,25958787,3
+54092067,25958787,4
+muchamucha,25958787,4
+63597276,25958787,3
+lovepants,25958787,4
+3269856,25958787,5
+102525024,25958787,5
+123394682,25958787,4
+1770422,25958787,4
+49672816,25958787,3
+40558804,25958787,4
+56988998,25958787,3
+51222575,25958787,4
+46799195,25958787,4
+68209797,25958787,4
+62379540,25958787,5
+47007772,25958787,3
+23712945,25958787,4
+92377736,25958787,5
+daomeidi,25958787,3
+77497039,25958787,5
+joyjoyjoychan,25958787,4
+67727072,25958787,4
+buliyuanqu,25958787,3
+52428542,25958787,4
+46430549,25958787,4
+douxing,25958787,5
+3913741,25958787,4
+129369858,25958787,3
+what_a_pain,25958787,5
+57049124,25958787,3
+45637551,25958787,4
+Sleepcasper,25958787,3
+2420705,25958787,5
+68376149,25958787,3
+cplcs,25958787,5
+62728215,25958787,3
+2839721,25958787,4
+81956373,25958787,4
+xiangx0814,25958787,3
+passionless,25958787,3
+wyfsmd,25958787,3
+43905279,25958787,3
+violetljj,25958787,3
+violetljj,25958787,3
+xiaoyushudai,25958787,4
+47481448,25958787,4
+1428027,25958787,3
+4320476,25958787,5
+weijielin,25958787,5
+75325529,25958787,4
+58515646,25958787,4
+62080213,25958787,-1
+70214878,25958787,5
+103796743,25958787,4
+Stan_Guy,25958787,4
+68795801,25958787,3
+duanzizai,25958787,3
+59974885,25958787,5
+64053563,25958787,4
+68010971,25958787,3
+3498872,25958787,4
+37228673,25958787,3
+33862051,25958787,3
+50157745,25958787,5
+70739010,25958787,3
+aitiaowudemeng,25958787,3
+77866211,25958787,-1
+WSSWHL,25958787,3
+49355592,25958787,4
+121228834,25958787,5
+sharrie,25958787,4
+46565582,25958787,5
+75184606,25958787,3
+3139594,25958787,4
+1665848,25958787,3
+45237173,25958787,4
+41556922,25958787,3
+132197651,25958787,4
+4283893,25958787,4
+jinlanshenlan,25958787,5
+3563668,25958787,3
+59333923,25958787,4
+VangleXia,25958787,4
+50142885,25958787,4
+zaoshuizaoqi,25958787,4
+120342469,25958787,4
+130111580,25958787,5
+50281371,25958787,3
+64144011,25958787,4
+44783920,25958787,4
+2562419,25958787,3
+61362030,25958787,3
+12573860,25958787,3
+55832458,25958787,4
+52951780,25958787,3
+35360002,25958787,4
+idolt,25958787,5
+49216618,25958787,3
+37858596,25958787,3
+gstone1723,25958787,4
+102901525,25958787,4
+67388709,25958787,5
+56613691,25958787,5
+sherry-li,25958787,3
+PaPajudy,25958787,3
+amethyst_cm,25958787,4
+swdnpal,25958787,3
+57365488,25958787,5
+amelie-h-lin,25958787,4
+133380603,25958787,5
+110481429,25958787,4
+satanprince,25958787,4
+xpilot,25958787,4
+45283744,25958787,4
+1766764,25958787,3
+50139701,25958787,4
+1152785,25958787,4
+34244241,25958787,5
+68277125,25958787,4
+132325954,25958787,4
+sltrherinFY,25958787,3
+53836712,25958787,3
+44618769,25958787,5
+buxiangpaobu,25958787,5
+65684805,25958787,4
+47410736,25958787,5
+35578162,25958787,3
+alittlesun,25958787,4
+nicolaswang,25958787,3
+coldlife,25958787,4
+49576668,25958787,4
+38818550,25958787,4
+27713698,25958787,4
+2156343,25958787,4
+72241527,25958787,4
+simontien,25958787,5
+79627823,25958787,4
+40950202,25958787,5
+123927119,25958787,3
+101139541,25958787,3
+73993297,25958787,3
+64737614,25958787,4
+momon1900,25958787,4
+65134309,25958787,3
+3017985,25958787,4
+129545337,25958787,5
+onlyjtl,25958787,5
+geeseken,25958787,3
+44510032,25958787,3
+62774430,25958787,-1
+66904097,25958787,4
+57654704,25958787,4
+65084443,25958787,3
+lijingwu,25958787,3
+66488518,25958787,5
+72529157,25958787,4
+3435124,25958787,3
+60123428,25958787,4
+55506429,25958787,3
+88078787,25958787,3
+21606016,25958787,4
+83447012,25958787,5
+50506293,25958787,5
+30705247,25958787,4
+32817284,25958787,5
+marga,25958787,3
+fishsunset,25958787,3
+lozzy,25958787,4
+52209428,25958787,4
+102231174,25958787,4
+mengmenglanlan,25958787,4
+48714560,25958787,3
+45182133,25958787,3
+sirius_zhang,25958787,4
+shiguangxiaoyu,25958787,5
+weichuu,25958787,5
+93939331,25958787,2
+ilovejay79118,25958787,5
+43631308,25958787,4
+44435817,25958787,5
+56973040,25958787,4
+51544027,25958787,5
+76452322,25958787,4
+2420665,25958787,4
+sissyyyy,25958787,4
+51152524,25958787,4
+carrottbjihyrl,25958787,3
+97917605,25958787,3
+48065972,25958787,4
+24263050,25958787,4
+119421156,25958787,4
+59366583,25958787,5
+63485325,25958787,4
+83434927,25958787,3
+60846829,25958787,5
+65306237,25958787,4
+2463889,25958787,-1
+flowertide,25958787,3
+122370677,25958787,3
+44435549,25958787,3
+1840162,25958787,3
+ayumiH,25958787,2
+ps716,25958787,2
+103637450,25958787,3
+2790567,25958787,3
+1419453,25958787,4
+127897634,25958787,4
+blazel,25958787,3
+71471046,25958787,-1
+etheryan,25958787,5
+83837319,25958787,4
+joycelinking,25958787,4
+BOINNE,25958787,3
+71972704,25958787,3
+127688948,25958787,5
+64308036,25958787,4
+87691265,25958787,2
+faye2,25958787,5
+47668430,25958787,2
+Rosier,25958787,3
+61679358,25958787,4
+maydaylyn,25958787,3
+walkrain,25958787,3
+63708637,25958787,3
+3943144,25958787,3
+maydays81,25958787,4
+62084147,25958787,4
+gloria1102,25958787,3
+16820487,25958787,3
+everlastingblue,25958787,4
+78366736,25958787,5
+vittek,25958787,3
+33538142,25958787,4
+117307392,25958787,4
+60733451,25958787,3
+2187326,25958787,3
+cijfer,25958787,5
+kairyu,25958787,4
+43159348,25958787,4
+therockyy,25958787,3
+53585857,25958787,4
+yningc,25958787,5
+34043000,25958787,4
+k5k,25958787,3
+4643817,25958787,3
+echowangxw,25958787,4
+27432217,25958787,3
+ieo2lr,25958787,4
+52662813,25958787,4
+35135916,25958787,4
+yuami,25958787,4
+1929074,25958787,4
+zsy_azure,25958787,5
+59992554,25958787,4
+97277841,25958787,4
+aagg36121,25958787,4
+66698052,25958787,4
+1280213,25958787,3
+4154813,25958787,3
+63291664,25958787,3
+40848168,25958787,4
+dong0621,25958787,3
+127118502,25958787,3
+15941361,25958787,5
+62318575,25958787,5
+59276897,25958787,3
+wateralong,25958787,4
+34990334,25958787,3
+34894274,25958787,3
+67072789,25958787,5
+zhouxiaopo,25958787,4
+64786067,25958787,4
+68988026,25958787,4
+kaca_tana,25958787,4
+sakurawei,25958787,3
+GMDY,25958787,4
+40586247,25958787,4
+1500446,25958787,5
+97977376,25958787,3
+56071242,25958787,4
+34140647,25958787,4
+lipinqing0423,25958787,4
+53176363,25958787,3
+53176363,25958787,3
+48557388,25958787,5
+65560821,25958787,2
+40572936,25958787,3
+35211592,25958787,-1
+50641998,25958787,4
+sigaoyi,25958787,5
+luoyadudu,25958787,4
+42968297,25958787,4
+cancat,25958787,5
+3518067,25958787,4
+81628425,25958787,3
+hhao108,25958787,4
+ayouyoucats,25958787,3
+joyinzone,25958787,3
+maplepu,25958787,3
+WHEREONLYYOUME,25958787,4
+cicichen520,25958787,4
+67328163,25958787,3
+42818177,25958787,4
+50694268,25958787,4
+55547167,25958787,3
+84003620,25958787,4
+79627181,25958787,3
+45763132,25958787,4
+VITAE,25958787,4
+69152007,25958787,3
+europ,25958787,4
+yishiyiwu,25958787,4
+30836444,25958787,4
+uuuuuta,25958787,3
+beachboyzx,25958787,4
+60134596,25958787,5
+halouwai,25958787,2
+56887114,25958787,5
+25774865,25958787,5
+saraconan,25958787,3
+cense,25958787,3
+peggy1031,25958787,3
+sxy921026,25958787,3
+Heartnet,25958787,4
+18360610,25958787,3
+Coletta,25958787,5
+48523065,25958787,4
+luohuazhu,25958787,3
+50939193,25958787,4
+46935861,25958787,5
+1915324,25958787,4
+46333950,25958787,5
+50310141,25958787,4
+xwliqi,25958787,4
+92504226,25958787,5
+fannyghyll,25958787,4
+69087410,25958787,5
+59295882,25958787,4
+68528163,25958787,4
+knight1303,25958787,4
+majolica,25958787,4
+53179097,25958787,3
+75538960,25958787,4
+31174939,25958787,4
+54400244,25958787,3
+52818523,25958787,4
+eureka7,25958787,2
+2825367,25958787,4
+51158942,25958787,5
+14175664,25958787,4
+49994291,25958787,5
+58431951,25958787,5
+timemachine5,25958787,5
+missstacy,25958787,4
+62181038,25958787,5
+zhuoying,25958787,5
+faydao,25958787,4
+87621689,25958787,4
+TUNA,25958787,4
+104429329,25958787,3
+59082297,25958787,3
+mwangym,25958787,4
+leosparrow,25958787,3
+41924523,25958787,3
+61810204,25958787,2
+xiaolistay,25958787,3
+61569380,25958787,4
+ruokongzhi,25958787,3
+WYQlluvia,25958787,3
+131463434,25958787,4
+Georgewen,25958787,4
+58797753,25958787,4
+10648336,25958787,4
+63864214,25958787,2
+42826387,25958787,3
+superonie,25958787,-1
+maodeercifang,25958787,-1
+51124303,25958787,4
+48047032,25958787,4
+57653061,25958787,4
+46341793,25958787,5
+liuxingjun,25958787,4
+45865408,25958787,5
+kymair,25958787,4
+zhongxueyin,25958787,3
+53730822,25958787,4
+ayi690,25958787,3
+yaossss,25958787,5
+cyeon,25958787,4
+48395509,25958787,3
+dianat,25958787,4
+tgw001,25958787,3
+cookie-bear,25958787,4
+59508590,25958787,3
+kagakuka,25958787,3
+yanlifan,25958787,4
+king_lijin,25958787,3
+XXcolorful930,25958787,5
+maikatse,25958787,4
+81741082,25958787,4
+jsc528,25958787,3
+3845975,25958787,3
+PrinceLu,25958787,4
+JIUSHU87,25958787,4
+2850416,25958787,4
+52280570,25958787,-1
+2650205,25958787,3
+2785610,25958787,3
+baleyang,25958787,5
+zooyam,25958787,4
+joyceatobe,25958787,4
+moveqiu,25958787,4
+1373185,25958787,5
+76584740,25958787,2
+117359316,25958787,4
+3481292,25958787,4
+lanarap,25958787,-1
+Sunx,25958787,4
+75626260,25958787,4
+filmvivi,25958787,3
+rominakata,25958787,3
+86140576,25958787,-1
+45328872,25958787,4
+40446795,25958787,3
+2415644,25958787,5
+3442648,25958787,4
+60650660,25958787,4
+lijiancheng0614,25958787,4
+104551226,25958787,4
+ERIKAZU,25958787,3
+120742454,25958787,3
+37031042,25958787,3
+6332449,25958787,4
+happyface1022,25958787,4
+zuochangyu,25958787,3
+2028913,25958787,3
+cuixue,25958787,5
+2444430,25958787,2
+4876430,25958787,3
+yilingyu,25958787,5
+waif_z,25958787,4
+66475895,25958787,4
+CPUCMX,25958787,4
+44311860,25958787,5
+64796008,25958787,5
+64780259,25958787,4
+armstrongpann,25958787,4
+mingyuejiang,25958787,4
+83456365,25958787,4
+3598072,25958787,4
+Tangme,25958787,4
+zhuoweather,25958787,5
+79100751,25958787,-1
+sanwenli,25958787,4
+58135689,25958787,4
+frankzhang,25958787,4
+32785698,25958787,4
+GodAssassin,25958787,4
+zepwhen,25958787,5
+17541509,25958787,3
+68359153,25958787,4
+43664201,25958787,3
+57714176,25958787,5
+3381034,25958787,4
+gtxyxyz,25958787,4
+ydlxiaolong,25958787,4
+58977127,25958787,5
+45016565,25958787,4
+py962492,25958787,4
+55447115,25958787,5
+50036042,25958787,4
+2131520,25958787,4
+121197543,25958787,4
+steflover,25958787,4
+32033896,25958787,5
+69505448,25958787,5
+1958578,25958787,3
+mythmok,25958787,4
+121243676,25958787,1
+bcqc,25958787,4
+2332373,25958787,4
+shouzhiren,25958787,5
+smileliao,25958787,5
+4248478,25958787,3
+hqwxyz,25958787,3
+emisie,25958787,3
+karling,25958787,5
+melodygxl,25958787,4
+59007642,25958787,3
+1478783,25958787,4
+qiaoqq,25958787,3
+4345045,25958787,4
+49389540,25958787,4
+40544595,25958787,4
+feelmyworld,25958787,3
+80920192,25958787,-1
+yukolovetan,25958787,4
+75661398,25958787,-1
+63488867,25958787,3
+47837056,25958787,3
+79240212,25958787,4
+edward2wong,25958787,4
+3440574,25958787,4
+54783406,25958787,3
+64876627,25958787,4
+38727371,25958787,4
+bluegrid,25958787,4
+lyrsyl,25958787,4
+43508209,25958787,2
+101450082,25958787,4
+shushanshao,25958787,3
+orangedavy,25958787,4
+50195547,25958787,4
+lipengfeng2007,25958787,4
+nuanda,25958787,3
+43308232,25958787,5
+59480546,25958787,3
+3687712,25958787,5
+2632873,25958787,4
+49624751,25958787,5
+48833081,25958787,4
+61273725,25958787,5
+49273310,25958787,2
+124810728,25958787,4
+nofish,25958787,3
+demoncat,25958787,3
+84819929,25958787,5
+52886775,25958787,4
+35165687,25958787,4
+62950191,25958787,3
+langlangtalent,25958787,4
+62072794,25958787,3
+49465683,25958787,4
+62196873,25958787,4
+51284624,25958787,5
+sp0721,25958787,4
+winnerlei,25958787,3
+sibylwang,25958787,2
+77670734,25958787,4
+44105969,25958787,4
+liujiabin1002,25958787,4
+ding1yi,25958787,3
+JaceJing,25958787,3
+yaoyuanzhai,25958787,4
+4498680,25958787,2
+vanon,25958787,3
+64947764,25958787,4
+51467287,25958787,5
+rokkumu,25958787,4
+74286517,25958787,4
+yishuiyimu,25958787,3
+49891610,25958787,3
+yuqiii,25958787,4
+41283150,25958787,5
+skyisquiet,25958787,3
+2387348,25958787,3
+vinciwang,25958787,4
+Reborn-Lee,25958787,3
+120699928,25958787,5
+bennyrabbit,25958787,4
+Plumed__Serpent,25958787,3
+pray-entic,25958787,4
+songminlu,25958787,4
+feeky,25958787,3
+33907993,25958787,4
+49663103,25958787,4
+sarahbeibei,25958787,3
+52943250,25958787,5
+caiwoshishei,25958787,4
+apple4520,25958787,4
+NicoleDR,25958787,4
+chouchou0707,25958787,4
+132943632,25958787,4
+icaker,25958787,3
+51542054,25958787,4
+4601153,25958787,4
+fzhizhi,25958787,4
+40296009,25958787,-1
+lotusz23,25958787,3
+suec,25958787,3
+71180598,25958787,4
+41896370,25958787,4
+50220043,25958787,4
+128418401,25958787,4
+hsjl0311,25958787,5
+nianhuaapple,25958787,3
+deerinforest,25958787,4
+48168328,25958787,2
+66919459,25958787,3
+42243165,25958787,3
+49951984,25958787,4
+44045443,25958787,3
+movieview,25958787,4
+siyejin,25958787,5
+51507158,25958787,5
+mcas1880,25958787,5
+mia777,25958787,4
+68014946,25958787,3
+59999741,25958787,1
+salws,25958787,5
+73271206,25958787,4
+46714159,25958787,4
+fatty3,25958787,4
+fatty3,25958787,4
+wpy114,25958787,4
+PurpleLight0323,25958787,5
+moesolo,25958787,3
+cajiln,25958787,3
+raindrops_jmy,25958787,5
+leeps,25958787,4
+2774375,25958787,4
+1869290,25958787,-1
+smokey,25958787,3
+seeingever,25958787,4
+1159296,25958787,3
+yoyoyaya,25958787,4
+3494790,25958787,3
+75328137,25958787,4
+daniel_gao,25958787,2
+110315543,25958787,5
+57984537,25958787,4
+50697354,25958787,4
+45556826,25958787,5
+51836771,25958787,5
+atengbrilliance,25958787,4
+58481286,25958787,5
+yoory,25958787,-1
+4505621,25958787,4
+74073932,25958787,4
+4731603,25958787,4
+31068073,25958787,4
+ohsherrysherry,25958787,4
+duax,25958787,4
+uyuyhhyhhy,25958787,4
+35224934,25958787,3
+28306661,25958787,5
+vera0902,25958787,3
+93359159,25958787,3
+126804729,25958787,3
+dearbeibei,25958787,-1
+57278963,25958787,4
+53322275,25958787,3
+41083928,25958787,4
+42291376,25958787,1
+waitingsong,25958787,3
+leevis,25958787,4
+howlformousai,25958787,4
+50467795,25958787,3
+52115797,25958787,5
+4715775,25958787,4
+my-beloved,25958787,3
+yemengmeng,25958787,4
+62900892,25958787,4
+61257668,25958787,3
+50504530,25958787,4
+69682298,25958787,4
+58129248,25958787,4
+58161520,25958787,4
+2771396,25958787,3
+quitokong,25958787,4
+78770863,25958787,4
+116540697,25958787,4
+mrwumao,25958787,5
+46754344,25958787,3
+74270988,25958787,3
+mo_hui06,25958787,3
+63875799,25958787,3
+EloiseL,25958787,4
+129032954,25958787,4
+SweetAump,25958787,3
+49893438,25958787,4
+80779365,25958787,4
+56924619,25958787,4
+58927939,25958787,4
+47285151,25958787,3
+4318512,25958787,4
+75384740,25958787,3
+61509749,25958787,-1
+2769218,25958787,5
+51462538,25958787,3
+108212384,25958787,5
+wildwood,25958787,4
+40090492,25958787,4
+69441215,25958787,4
+83495567,25958787,4
+46889127,25958787,4
+4889156,25958787,4
+MephistophelesK,25958787,4
+SoloistDR,25958787,4
+megumiwo,25958787,5
+mjli,25958787,4
+63142694,25958787,3
+66119947,25958787,5
+92988194,25958787,4
+60671950,25958787,3
+48604788,25958787,1
+92973207,25958787,5
+54375575,25958787,4
+82862073,25958787,4
+37009079,25958787,4
+116138651,25958787,3
+85811535,25958787,3
+67758784,25958787,5
+wendell003,25958787,4
+szk13731584239,25958787,5
+lbj1986,25958787,5
+3328964,25958787,4
+38690945,25958787,5
+62365246,25958787,5
+128313677,25958787,4
+101464428,25958787,4
+4123613,25958787,4
+ydyie,25958787,2
+60187036,25958787,5
+43612310,25958787,3
+orcagoal,25958787,4
+clarattttt,25958787,3
+1810980,25958787,4
+62314941,25958787,3
+76726550,25958787,5
+chenhuayang,25958787,3
+1018037,25958787,5
+jupengorall,25958787,-1
+62387817,25958787,4
+2636027,25958787,5
+83691770,25958787,3
+ZHUZHU111,25958787,5
+shiningvi,25958787,4
+36537385,25958787,3
+2187670,25958787,4
+90169180,25958787,4
+49892872,25958787,4
+mengyou,25958787,5
+grantqian,25958787,4
+44022921,25958787,4
+58338006,25958787,3
+caoxiaohai,25958787,5
+96048469,25958787,3
+46550061,25958787,4
+29374473,25958787,4
+62140009,25958787,4
+62971762,25958787,4
+jeensk,25958787,4
+jeensk,25958787,4
+63220712,25958787,-1
+3323718,25958787,3
+52694198,25958787,5
+tzkeer,25958787,4
+david880614,25958787,4
+marsdream,25958787,2
+109113938,25958787,4
+55885677,25958787,3
+47924060,25958787,3
+keywoodzone,25958787,4
+icyning,25958787,3
+93091639,25958787,4
+bfa1950,25958787,4
+51864165,25958787,5
+olivia0826,25958787,4
+130564444,25958787,4
+52325322,25958787,3
+89997290,25958787,4
+63127179,25958787,4
+gu_yan,25958787,5
+45792584,25958787,2
+130129200,25958787,4
+Fassonhymn,25958787,5
+120527997,25958787,5
+54224355,25958787,3
+cmyooxx,25958787,4
+2458122,25958787,4
+16301105,25958787,3
+tanwenqiang,25958787,4
+ala7lee,25958787,4
+FeeSouler,25958787,5
+78681976,25958787,3
+94588163,25958787,4
+laudee,25958787,5
+too_up,25958787,3
+imarilyn,25958787,4
+46580706,25958787,3
+83371005,25958787,5
+hou_yuting,25958787,-1
+49029570,25958787,4
+rvlt,25958787,4
+63802651,25958787,-1
+66561375,25958787,4
+51773298,25958787,5
+93546095,25958787,3
+56164676,25958787,3
+rapmaster,25958787,5
+68800938,25958787,5
+Thaw-Mercury,25958787,3
+Migpam,25958787,3
+laotang,25958787,3
+envelopeyy,25958787,4
+vianann,25958787,4
+129823930,25958787,4
+61653646,25958787,3
+55406228,25958787,3
+52396951,25958787,5
+129490724,25958787,5
+67489382,25958787,3
+107799192,25958787,3
+37019836,25958787,3
+4709296,25958787,5
+53094126,25958787,4
+90419193,25958787,4
+30474006,25958787,3
+maikhan,25958787,4
+65120899,25958787,4
+59378291,25958787,3
+47434041,25958787,4
+43375121,25958787,5
+67126761,25958787,3
+27985927,25958787,4
+wangying2325,25958787,4
+jes77,25958787,4
+126039569,25958787,5
+11882042,25958787,3
+Hunter2046,25958787,4
+56223234,25958787,4
+THESONOFBITCH,25958787,4
+anlrj,25958787,4
+32023588,25958787,5
+opheliauncle,25958787,4
+kan_YB,25958787,3
+80798072,25958787,4
+106331545,25958787,5
+45238855,25958787,4
+60388561,25958787,4
+leiii,25958787,3
+nick066,25958787,4
+61328119,25958787,5
+46129034,25958787,4
+63680075,25958787,4
+36621771,25958787,4
+1815917,25958787,4
+nissie515,25958787,4
+1865210,25958787,4
+favorite,25958787,3
+harechan,25958787,4
+nearjones,25958787,4
+54757798,25958787,5
+64079519,25958787,4
+92331243,25958787,5
+37646652,25958787,5
+88738198,25958787,2
+68732725,25958787,5
+queenolivia,25958787,4
+86469978,25958787,3
+3326363,25958787,3
+56021804,25958787,3
+52129512,25958787,4
+64110948,25958787,3
+59458875,25958787,3
+zhuweina,25958787,4
+58693060,25958787,-1
+43558241,25958787,3
+liqiyao8931,25958787,1
+4042513,25958787,3
+37402473,25958787,4
+40802946,25958787,5
+49128872,25958787,3
+51587083,25958787,4
+yylovekhalil,25958787,4
+59354182,25958787,-1
+jinweishen,25958787,3
+osssan,25958787,4
+61415736,25958787,4
+juliannie,25958787,-1
+menggggggggg,25958787,4
+64981286,25958787,3
+justico,25958787,4
+132678799,25958787,-1
+76464984,25958787,5
+53934829,25958787,4
+64926044,25958787,4
+siyoo,25958787,4
+34434303,25958787,4
+15666274,25958787,-1
+SHENCHIFENG,25958787,5
+yuyu427,25958787,5
+yuyu427,25958787,5
+37691659,25958787,3
+xll_xqzhang,25958787,4
+131090469,25958787,4
+47195572,25958787,5
+54086694,25958787,4
+bill109,25958787,5
+57715527,25958787,5
+2527193,25958787,5
+iamdengdeng,25958787,4
+60311898,25958787,4
+78906906,25958787,4
+42216945,25958787,4
+fealty93314,25958787,4
+1736575,25958787,3
+Mr..k.ing,25958787,5
+39565182,25958787,4
+RelaQoo,25958787,4
+shuixieqingtai,25958787,4
+feizhuangzhuang,25958787,4
+rongjiexuanlv,25958787,5
+3005993,25958787,5
+stomach,25958787,5
+zzztl,25958787,4
+69015493,25958787,3
+zhongguobaoan,25958787,4
+4132596,25958787,4
+Q__,25958787,4
+48972319,25958787,4
+icetyle,25958787,4
+masaikejun,25958787,4
+84564093,25958787,4
+61901317,25958787,4
+Linkson,25958787,4
+63576554,25958787,3
+74805050,25958787,4
+dabyrowe,25958787,4
+auvpe,25958787,4
+65810005,25958787,5
+60054131,25958787,4
+77306974,25958787,3
+38567771,25958787,5
+124061329,25958787,5
+lovepeople,25958787,4
+53397908,25958787,4
+1373290,25958787,4
+49371871,25958787,4
+cai1st,25958787,3
+3671533,25958787,3
+68227139,25958787,3
+Mobius.wang,25958787,3
+Maydaylily,25958787,5
+66537996,25958787,4
+1426705,25958787,2
+47570599,25958787,4
+aliceshi,25958787,4
+64571969,25958787,3
+cherishwindy,25958787,5
+mamuzuke,25958787,4
+laotiee,25958787,3
+x-inter,25958787,4
+ichaos,25958787,4
+2346741,25958787,5
+1091787,25958787,5
+Wangaile,25958787,4
+3442167,25958787,4
+50300036,25958787,5
+cutelucky,25958787,5
+youngmars,25958787,5
+3722910,25958787,5
+82793308,25958787,-1
+77126470,25958787,5
+65937854,25958787,4
+68593933,25958787,4
+yeeeeeee,25958787,3
+counting_crows,25958787,2
+yuusuke_riku,25958787,4
+3598334,25958787,3
+123449328,25958787,4
+50452092,25958787,3
+vicid,25958787,5
+102184149,25958787,5
+60201729,25958787,4
+36707138,25958787,4
+1765497,25958787,5
+1177906,25958787,3
+hg9999st,25958787,4
+spaceli,25958787,4
+pjjdehao2,25958787,4
+xy9102,25958787,4
+vision-young,25958787,4
+54280629,25958787,3
+58009001,25958787,4
+102838934,25958787,3
+122603381,25958787,4
+45634818,25958787,5
+55852519,25958787,4
+daisy46,25958787,3
+48915222,25958787,5
+daysofyouth,25958787,4
+3862249,25958787,3
+31449811,25958787,5
+69616241,25958787,5
+47950267,25958787,4
+4486328,25958787,4
+13293190,25958787,3
+Shela_fong,25958787,5
+80466570,25958787,4
+123516848,25958787,5
+72783015,25958787,3
+belial_cheung,25958787,4
+1491317,25958787,-1
+46229923,25958787,5
+66512641,25958787,4
+39618439,25958787,4
+jasonchou13,25958787,4
+48311359,25958787,-1
+50467988,25958787,4
+4521508,25958787,3
+127426227,25958787,5
+127426227,25958787,5
+1817565,25958787,-1
+summerji,25958787,4
+73791401,25958787,4
+dongzhibin453,25958787,4
+twisan,25958787,5
+2788446,25958787,3
+dzil,25958787,3
+61703383,25958787,3
+4503980,25958787,4
+53864329,25958787,3
+3834476,25958787,5
+81939398,25958787,4
+49585135,25958787,5
+79978536,25958787,3
+62676772,25958787,-1
+iyyhua,25958787,4
+cyrus_wong,25958787,2
+irisyours,25958787,4
+46564377,25958787,4
+50219833,25958787,3
+79208015,25958787,4
+xiaomujunjun,25958787,2
+119253085,25958787,4
+65369148,25958787,3
+asukayoshioka,25958787,4
+chamori,25958787,3
+55283261,25958787,4
+119922273,25958787,4
+cynthia311,25958787,3
+3184552,25958787,3
+themissingken,25958787,3
+hljmsfy,25958787,4
+19240319,25958787,3
+127565044,25958787,3
+2278139,25958787,3
+15739964,25958787,5
+59605831,25958787,3
+43069028,25958787,4
+52605679,25958787,5
+45646209,25958787,4
+3053024,25958787,5
+qieer_422,25958787,4
+47260881,25958787,4
+eonian,25958787,5
+2393425,25958787,3
+happyhealthy,25958787,4
+ktXIIIjk,25958787,5
+68818342,25958787,4
+132291092,25958787,-1
+summerose,25958787,5
+46753092,25958787,3
+41235201,25958787,3
+70091695,25958787,4
+56136584,25958787,4
+63595507,25958787,2
+53738900,25958787,5
+62248444,25958787,-1
+Yanmu,25958787,4
+lotusmomo,25958787,5
+99806468,25958787,4
+43708089,25958787,5
+130531529,25958787,-1
+72257329,25958787,2
+idevin,25958787,4
+clever_trick,25958787,4
+4021496,25958787,4
+3430040,25958787,-1
+61816824,25958787,4
+49848992,25958787,3
+32925702,25958787,3
+53682563,25958787,4
+2307180,25958787,4
+84093369,25958787,5
+3751886,25958787,3
+96290717,25958787,4
+62730894,25958787,4
+ameliejia,25958787,4
+yanqingchen,25958787,4
+38606077,25958787,5
+38606077,25958787,5
+1188503,25958787,2
+morechou,25958787,4
+51887415,25958787,3
+89991541,25958787,4
+canuseethat,25958787,5
+gunsky,25958787,4
+peae,25958787,5
+17404134,25958787,4
+yangjiemomo,25958787,5
+yanxiaowen,25958787,3
+dataroom,25958787,3
+hedgehog,25958787,4
+62153005,25958787,2
+108576950,25958787,4
+60829711,25958787,3
+face_off,25958787,5
+lingyun93,25958787,3
+irrevocable,25958787,4
+100013080,25958787,5
+46243518,25958787,-1
+linzexu,25958787,3
+49398258,25958787,3
+49022076,25958787,4
+miaowl,25958787,3
+reisenreisen,25958787,4
+cheeseflower,25958787,4
+catfacegirl,25958787,4
+msw0123,25958787,5
+rodinian,25958787,4
+l-sky,25958787,4
+2582296,25958787,3
+talentygw,25958787,4
+78782425,25958787,5
+75222054,25958787,4
+39015968,25958787,3
+3638107,25958787,1
+52168475,25958787,3
+withsurui,25958787,3
+Shuimu3,25958787,5
+3869328,25958787,4
+130474636,25958787,4
+qq1994,25958787,4
+71144394,25958787,4
+48748738,25958787,5
+67346668,25958787,3
+51965596,25958787,4
+46039273,25958787,5
+75268479,25958787,4
+Yyan1992,25958787,4
+69982769,25958787,4
+milkcandy,25958787,3
+81139572,25958787,4
+51433570,25958787,4
+49171184,25958787,3
+34444741,25958787,4
+fuyunyajie,25958787,4
+asiradiohead,25958787,4
+54868319,25958787,3
+12998796,25958787,4
+4509537,25958787,4
+117858377,25958787,-1
+87069398,25958787,4
+63531003,25958787,4
+3509972,25958787,5
+raeshow,25958787,3
+B-162,25958787,4
+owenclv,25958787,3
+burglar,25958787,2
+33791057,25958787,5
+fengzaifei,25958787,3
+62375548,25958787,4
+46004647,25958787,4
+87778479,25958787,5
+3577665,25958787,3
+94790166,25958787,4
+63304223,25958787,3
+oacao,25958787,4
+azurewrathphase,25958787,5
+37495463,25958787,4
+2194654,25958787,4
+yiyiyiheee,25958787,4
+kumapp,25958787,3
+72626479,25958787,3
+19734042,25958787,4
+35731766,25958787,3
+58204376,25958787,4
+71829281,25958787,4
+127975111,25958787,4
+121749765,25958787,4
+16283665,25958787,5
+57927340,25958787,5
+lingaoyi,25958787,4
+36226396,25958787,5
+microli,25958787,5
+77648120,25958787,5
+52335106,25958787,4
+pacifica,25958787,5
+48407248,25958787,3
+YAMAHA_GO,25958787,4
+whatareyoufor,25958787,4
+ben0813,25958787,4
+Two_Wang,25958787,5
+gongzitian,25958787,3
+125148047,25958787,4
+127736877,25958787,5
+QiangGeFML,25958787,5
+46088268,25958787,4
+131073434,25958787,2
+lawrence_gao,25958787,4
+43430222,25958787,5
+2916025,25958787,4
+90971876,25958787,4
+inink,25958787,3
+Eudaimonia,25958787,3
+Sugar23,25958787,4
+57952445,25958787,4
+zhengxianmin,25958787,5
+sheenaringo516,25958787,4
+128111484,25958787,-1
+Augustonearth,25958787,4
+HSY0308,25958787,3
+51847024,25958787,5
+80430212,25958787,5
+MULHOLDR,25958787,3
+37252391,25958787,1
+wuzijian,25958787,-1
+122104513,25958787,3
+69133554,25958787,-1
+78757579,25958787,3
+weiweiweiwei,25958787,5
+52464033,25958787,4
+57996084,25958787,4
+37968335,25958787,3
+50364248,25958787,4
+hugowai,25958787,3
+L0711,25958787,4
+zhibiaoshi,25958787,4
+72391986,25958787,4
+w3_x10,25958787,5
+121538309,25958787,3
+128743826,25958787,3
+51433287,25958787,3
+youyeqiuxin,25958787,5
+lassiedusky,25958787,3
+1752320,25958787,2
+57139809,25958787,4
+54090082,25958787,5
+71861591,25958787,4
+48400292,25958787,4
+cancerlee,25958787,4
+62677816,25958787,4
+lymh,25958787,3
+instantmoule,25958787,3
+jadyx,25958787,4
+zyjj141,25958787,4
+60968500,25958787,5
+78065496,25958787,3
+Jodiezhang,25958787,4
+120421429,25958787,5
+89301190,25958787,3
+63744886,25958787,3
+53717841,25958787,3
+misamore,25958787,2
+71176894,25958787,4
+129914748,25958787,4
+33049887,25958787,4
+79657931,25958787,5
+1459659,25958787,3
+47650145,25958787,3
+fei-never,25958787,3
+blackguardangel,25958787,4
+e2cat,25958787,4
+44079061,25958787,-1
+50410160,25958787,4
+127338835,25958787,4
+69368196,25958787,3
+53060443,25958787,2
+72538044,25958787,4
+2012335,25958787,5
+slowwalker,25958787,2
+53582530,25958787,4
+93190703,25958787,3
+51105174,25958787,2
+47806605,25958787,4
+53204374,25958787,4
+83513831,25958787,3
+Chaos13,25958787,4
+45042581,25958787,3
+130707216,25958787,2
+man7shuo,25958787,5
+2623491,25958787,4
+47338150,25958787,5
+caihongxiguamei,25958787,5
+demitasse,25958787,4
+43623325,25958787,3
+59111693,25958787,4
+jiangdongqi,25958787,5
+4916602,25958787,4
+fine-3-,25958787,5
+fine-3-,25958787,5
+Silvia9696,25958787,4
+4155347,25958787,3
+73634799,25958787,4
+61429044,25958787,4
+52959427,25958787,3
+67463541,25958787,3
+joey12255555,25958787,3
+gingersalt,25958787,4
+little_cupid,25958787,3
+114336232,25958787,4
+53830250,25958787,4
+46818877,25958787,4
+35261395,25958787,4
+dengxuanhai,25958787,3
+120222665,25958787,5
+xiaohei0919,25958787,3
+52148531,25958787,4
+sarah59,25958787,4
+ellenbell,25958787,-1
+akilaa,25958787,4
+w2jmoe,25958787,2
+radioshell,25958787,-1
+93892762,25958787,3
+superQi,25958787,5
+49168685,25958787,5
+85085943,25958787,3
+4453892,25958787,-1
+3066956,25958787,4
+62336834,25958787,4
+hichai,25958787,3
+xiaotianqing,25958787,4
+envy1001,25958787,4
+liang14,25958787,4
+Ai-wrong,25958787,4
+55347894,25958787,4
+Zhun,25958787,4
+77216984,25958787,5
+tuantuandoudou,25958787,3
+91392339,25958787,4
+m-n,25958787,3
+59955851,25958787,5
+66097458,25958787,5
+132344206,25958787,-1
+douchebag,25958787,5
+2413967,25958787,3
+SuperWMY,25958787,4
+119683375,25958787,4
+wangmian0729,25958787,3
+44436066,25958787,2
+88335567,25958787,3
+4681805,25958787,3
+73148602,25958787,3
+1278805,25958787,5
+14352147,25958787,3
+106570148,25958787,4
+3863251,25958787,4
+42738493,25958787,3
+seekformojo,25958787,3
+64543722,25958787,3
+may5may,25958787,4
+131717559,25958787,2
+50479628,25958787,5
+szdd,25958787,3
+76193683,25958787,5
+andy87819,25958787,4
+93374803,25958787,3
+3014394,25958787,3
+125280444,25958787,3
+lwvsch,25958787,-1
+65930230,25958787,5
+55925373,25958787,3
+121594738,25958787,5
+50568364,25958787,4
+60631421,25958787,4
+kissofdead,25958787,4
+keith_z,25958787,5
+xlee,25958787,4
+66228440,25958787,4
+2592812,25958787,4
+dallzy,25958787,-1
+55765904,25958787,5
+lfzangela,25958787,5
+48667596,25958787,4
+37424688,25958787,3
+hlung,25958787,4
+54440659,25958787,4
+nightshow7,25958787,5
+3503065,25958787,4
+102480060,25958787,4
+58217369,25958787,5
+45319686,25958787,3
+2294404,25958787,3
+2831524,25958787,3
+2604164,25958787,5
+zhanggezhi,25958787,4
+63003480,25958787,5
+daqiuqiu,25958787,4
+koujianyi,25958787,5
+1733419,25958787,4
+Aspirin129,25958787,3
+Stream1115,25958787,4
+2635056,25958787,5
+40940203,25958787,5
+53060176,25958787,5
+colorwindeer,25958787,4
+67719679,25958787,4
+freyaslbd,25958787,3
+64333232,25958787,-1
+nangongmocheng,25958787,4
+63572086,25958787,4
+49929215,25958787,3
+103727305,25958787,2
+56396911,25958787,3
+53173969,25958787,4
+NirVanA2409,25958787,4
+56794742,25958787,4
+1493686,25958787,3
+4095434,25958787,4
+cskywalker,25958787,4
+lalou,25958787,4
+45513879,25958787,4
+howardly2,25958787,4
+48397937,25958787,4
+liaojiafen,25958787,3
+xiaomengqiuyue,25958787,3
+L5.P4,25958787,4
+fiona-cin,25958787,3
+waitintheseason,25958787,3
+132416760,25958787,4
+55421041,25958787,4
+62210177,25958787,4
+47193126,25958787,3
+2162256,25958787,3
+55772414,25958787,4
+48226644,25958787,4
+12941803,25958787,-1
+sarashieh,25958787,3
+61589575,25958787,4
+huangzhangyi,25958787,1
+56314850,25958787,4
+63941479,25958787,4
+3696904,25958787,5
+48046648,25958787,4
+49060307,25958787,4
+basaya,25958787,4
+46132155,25958787,5
+yinyiner,25958787,4
+twooneseven,25958787,4
+joyce19920111,25958787,5
+60413211,25958787,3
+sweeroty,25958787,4
+augusttree_fly,25958787,4
+tianmihechang,25958787,4
+50341989,25958787,4
+cadise,25958787,4
+44245939,25958787,3
+3941870,25958787,4
+1043714,25958787,4
+87705662,25958787,4
+solavre,25958787,-1
+49608766,25958787,2
+48707415,25958787,4
+tincnie,25958787,3
+77577340,25958787,5
+67763944,25958787,3
+52207063,25958787,3
+Monster_004,25958787,3
+PUNKKONG,25958787,-1
+missycyn,25958787,4
+66989068,25958787,5
+43134054,25958787,3
+princesssyn,25958787,3
+41936951,25958787,5
+2344307,25958787,4
+124283847,25958787,5
+seiseilovexixi,25958787,4
+79604654,25958787,4
+31555036,25958787,5
+3934047,25958787,3
+120272650,25958787,5
+49673011,25958787,4
+52777499,25958787,4
+69875076,25958787,5
+gm622yan,25958787,4
+48165357,25958787,5
+3509821,25958787,4
+6838272,25958787,5
+cynthiachang,25958787,2
+4664344,25958787,4
+50958271,25958787,4
+36178065,25958787,4
+64692199,25958787,3
+26476308,25958787,-1
+48763298,25958787,4
+2033498,25958787,4
+59361957,25958787,3
+72101237,25958787,3
+Jerchozj,25958787,4
+3340559,25958787,4
+65593816,25958787,5
+littlepinkbang7,25958787,4
+Vanessa.,25958787,3
+61127973,25958787,4
+38897761,25958787,3
+62149917,25958787,5
+79852900,25958787,4
+chitorisatake,25958787,-1
+44875082,25958787,4
+jiance,25958787,4
+51053310,25958787,5
+7971587,25958787,3
+shiminxu,25958787,5
+122762918,25958787,4
+52800930,25958787,5
+49853837,25958787,3
+impzz,25958787,5
+58646468,25958787,5
+43106052,25958787,4
+120828432,25958787,3
+103180412,25958787,4
+87651171,25958787,3
+4905074,25958787,3
+abalone91,25958787,4
+heshouwu555,25958787,4
+maureenz,25958787,5
+2171354,25958787,4
+4896156,25958787,3
+FreshSherlock,25958787,4
+65211347,25958787,5
+Hole1001,25958787,5
+121569446,25958787,4
+cardilia,25958787,3
+zhanghanha,25958787,3
+33830687,25958787,4
+64882417,25958787,-1
+silent_island,25958787,3
+3894700,25958787,3
+46920813,25958787,4
+mapleqi,25958787,4
+mapleqi,25958787,4
+132356139,25958787,4
+easy61,25958787,-1
+dizzyluke,25958787,4
+3183207,25958787,-1
+119702092,25958787,4
+emilycou,25958787,4
+62989333,25958787,5
+120964846,25958787,4
+96483384,25958787,3
+77847494,25958787,5
+52873383,25958787,3
+kidst,25958787,5
+1516524,25958787,3
+leafalone,25958787,5
+53194639,25958787,5
+hanax4,25958787,4
+yao2harry,25958787,3
+102652883,25958787,4
+71157955,25958787,3
+78542258,25958787,4
+73866765,25958787,4
+3492824,25958787,3
+JLinn,25958787,5
+c2c3,25958787,5
+43121658,25958787,5
+1371368,25958787,4
+jocellen,25958787,-1
+102662904,25958787,2
+83842502,25958787,5
+urwill,25958787,3
+55998859,25958787,4
+2216906,25958787,4
+52336873,25958787,4
+51653649,25958787,5
+48180333,25958787,3
+51676190,25958787,3
+4481826,25958787,2
+yeanyun,25958787,4
+efscpig,25958787,5
+sweetqin,25958787,4
+merrymary,25958787,-1
+35661060,25958787,3
+Isayori,25958787,5
+4671919,25958787,4
+69277440,25958787,5
+43659831,25958787,4
+baocaikaopur,25958787,4
+9915911,25958787,3
+106074507,25958787,4
+juiceyang,25958787,2
+thesue,25958787,3
+zhaopusheng,25958787,2
+83621117,25958787,3
+maoliqiumao,25958787,2
+Sxixi,25958787,4
+myeternallover,25958787,5
+53207085,25958787,4
+kingdown,25958787,3
+laowa,25958787,-1
+1614027,25958787,5
+114614991,25958787,3
+77471177,25958787,4
+moszz,25958787,5
+68366606,25958787,4
+54624525,25958787,4
+122285833,25958787,5
+62110509,25958787,5
+lincolnbro,25958787,4
+shizongshu,25958787,5
+97300287,25958787,4
+83719821,25958787,5
+febechan,25958787,5
+59790169,25958787,4
+4677632,25958787,5
+darlingm,25958787,4
+chenyuan720,25958787,4
+3374391,25958787,4
+xmausp,25958787,4
+87686931,25958787,5
+42309326,25958787,5
+81728735,25958787,5
+55352807,25958787,4
+wxay,25958787,5
+pursuemylove,25958787,5
+36412946,25958787,3
+11347329,25958787,3
+43235070,25958787,4
+jemappelle651,25958787,4
+XY920521,25958787,3
+hanasakiq,25958787,4
+zzzzwwwwdddd,25958787,5
+73627812,25958787,4
+56959845,25958787,4
+dbhungry,25958787,3
+wjlqnyrc,25958787,3
+64044442,25958787,3
+65888349,25958787,5
+olmo,25958787,4
+miao1211211,25958787,5
+31102423,25958787,4
+1092960,25958787,3
+75760992,25958787,5
+likecake,25958787,3
+1354076,25958787,3
+3143490,25958787,4
+AndyYue,25958787,4
+green198641,25958787,4
+Elsummer,25958787,3
+48232361,25958787,3
+marco_0708,25958787,4
+weichenghao,25958787,5
+44160495,25958787,5
+54739842,25958787,4
+45379301,25958787,3
+nemoprincess,25958787,4
+55603094,25958787,3
+78491782,25958787,4
+alphard0615,25958787,5
+50450766,25958787,5
+83162641,25958787,4
+lyning,25958787,4
+54268700,25958787,4
+29662178,25958787,3
+47032415,25958787,4
+59623092,25958787,5
+grani_air,25958787,3
+66819743,25958787,3
+52338601,25958787,3
+47563354,25958787,4
+49433442,25958787,3
+35991873,25958787,4
+76782634,25958787,3
+62828901,25958787,3
+blueskyfly,25958787,4
+49825242,25958787,2
+51783756,25958787,-1
+llllkkkkkkk,25958787,5
+40027917,25958787,4
+51445493,25958787,4
+51445493,25958787,4
+74599733,25958787,5
+lzh625,25958787,-1
+4345264,25958787,4
+83453591,25958787,4
+cageyz,25958787,4
+1223666,25958787,4
+kkkwhite,25958787,4
+68031012,25958787,3
+64104549,25958787,4
+53961104,25958787,4
+2449614,25958787,3
+102945477,25958787,4
+4462311,25958787,3
+43517175,25958787,4
+1417770,25958787,2
+48975477,25958787,4
+cozy421,25958787,4
+2705335,25958787,3
+envyryu,25958787,4
+43197947,25958787,4
+47810404,25958787,3
+119456663,25958787,3
+58694508,25958787,3
+2139321,25958787,4
+41130036,25958787,3
+46944965,25958787,3
+71953415,25958787,3
+117937386,25958787,3
+chending,25958787,3
+slackermok,25958787,3
+hard_candy118,25958787,3
+42535612,25958787,3
+baibi,25958787,3
+83201171,25958787,4
+gq0513,25958787,5
+36304179,25958787,4
+65315109,25958787,4
+lena0517,25958787,4
+40684892,25958787,4
+61058075,25958787,4
+mouy490,25958787,4
+shadowzzh,25958787,4
+1920409,25958787,4
+128514178,25958787,4
+nan313,25958787,3
+evahsu,25958787,4
+jinsenliao,25958787,5
+73922651,25958787,4
+kiruto,25958787,5
+83389859,25958787,5
+52435465,25958787,5
+ml0684727,25958787,5
+2769574,25958787,5
+89466162,25958787,4
+hahatedan,25958787,4
+53512949,25958787,4
+1818595,25958787,3
+cizimm,25958787,3
+53988920,25958787,-1
+122757661,25958787,4
+60658925,25958787,5
+erickyee,25958787,4
+how-precious,25958787,-1
+Yin_and_Yang,25958787,4
+1500107,25958787,4
+40125342,25958787,3
+4445169,25958787,5
+yllovefish,25958787,4
+60219118,25958787,4
+amunli,25958787,4
+68968945,25958787,4
+kirsten7,25958787,3
+68767704,25958787,4
+88938201,25958787,4
+2380878,25958787,4
+91133142,25958787,4
+eededfcd,25958787,4
+51169479,25958787,3
+49605949,25958787,4
+47909402,25958787,3
+46038064,25958787,5
+50446919,25958787,4
+vanessazheng,25958787,5
+48407855,25958787,4
+50995944,25958787,3
+jiqingyi,25958787,2
+qingxi52vv,25958787,4
+77134733,25958787,4
+128235308,25958787,4
+yeskor,25958787,4
+zest,25958787,3
+51867437,25958787,4
+3870362,25958787,4
+imissdaya,25958787,4
+Jastine,25958787,3
+1138773,25958787,4
+3573509,25958787,4
+1494954,25958787,4
+dengzhuo,25958787,4
+xisochakaihuale,25958787,3
+huyouyou,25958787,4
+xiaoyunamoureux,25958787,-1
+50608327,25958787,4
+commondou,25958787,5
+fotoz,25958787,4
+4298839,25958787,4
+hengyunyixiang,25958787,4
+lindadarling,25958787,3
+2170177,25958787,4
+1456706,25958787,3
+115946216,25958787,4
+Kidz,25958787,3
+63230779,25958787,3
+tilizhixin,25958787,4
+3677825,25958787,4
+1897616,25958787,4
+4609472,25958787,5
+shanshan5an,25958787,5
+97416328,25958787,4
+junior0chen,25958787,-1
+14327084,25958787,3
+41352480,25958787,3
+121173575,25958787,4
+56755911,25958787,3
+belovedme,25958787,3
+gothicmaiden,25958787,3
+46661102,25958787,4
+Chorai42,25958787,5
+evim,25958787,4
+78618445,25958787,3
+Isabella_baby,25958787,4
+5489006,25958787,4
+61621650,25958787,4
+76025477,25958787,4
+46329546,25958787,4
+48979717,25958787,5
+40617140,25958787,4
+3438209,25958787,4
+Kayee.C,25958787,4
+3717542,25958787,4
+49514406,25958787,4
+1590523,25958787,3
+49498523,25958787,5
+83404231,25958787,3
+36385920,25958787,5
+45441727,25958787,4
+58505215,25958787,3
+yubaozilee,25958787,4
+40927982,25958787,4
+cheryl84,25958787,3
+sj1_1ei,25958787,4
+ovanisho,25958787,3
+avivalovestory,25958787,3
+76928010,25958787,4
+131840322,25958787,3
+50205589,25958787,4
+PsyLadyTricky,25958787,3
+taohuawuzhu,25958787,3
+calamus22,25958787,3
+aprilray,25958787,5
+miss099,25958787,5
+51233271,25958787,4
+Ka_D_chy,25958787,-1
+63670399,25958787,3
+3131895,25958787,5
+129081230,25958787,4
+42033576,25958787,3
+75723338,25958787,2
+65408583,25958787,4
+linshang,25958787,4
+45362948,25958787,3
+55942870,25958787,4
+fuyo1989,25958787,4
+yc11,25958787,3
+68943607,25958787,4
+crazyiszero,25958787,3
+66057217,25958787,3
+76053597,25958787,3
+lowinvae,25958787,4
+45968027,25958787,3
+sparkk,25958787,5
+simoscat,25958787,3
+cindydragon,25958787,4
+Frank.Zhao,25958787,4
+djoko,25958787,4
+tchaikov,25958787,4
+48216088,25958787,4
+Xia0_K,25958787,5
+nkfxxiang,25958787,5
+52499368,25958787,3
+75850159,25958787,4
+hlt6789,25958787,3
+49853962,25958787,5
+69970746,25958787,3
+60407456,25958787,3
+marvindi,25958787,-1
+67848029,25958787,3
+1821069,25958787,4
+131278340,25958787,5
+78843795,25958787,5
+1233038,25958787,3
+2069295,25958787,5
+yueakou,25958787,5
+MightyAtom,25958787,3
+Wujojo0325,25958787,3
+46781917,25958787,-1
+75563219,25958787,5
+73660377,25958787,5
+103090506,25958787,5
+easternmoon,25958787,4
+hahahahahahah,25958787,5
+52721666,25958787,5
+zhqi11,25958787,3
+baladong123,25958787,5
+87528505,25958787,4
+71412117,25958787,5
+lulunausicaa,25958787,3
+romanbaby,25958787,3
+76124816,25958787,3
+anonymousor,25958787,3
+1094032,25958787,3
+48459404,25958787,4
+hlfpeter,25958787,4
+A.Mo,25958787,3
+wendysunny,25958787,4
+47459422,25958787,3
+lixin123dongli,25958787,5
+26650310,25958787,5
+leon_howe,25958787,-1
+59621398,25958787,4
+60889391,25958787,4
+5496665,25958787,4
+85437215,25958787,5
+2476564,25958787,4
+82022775,25958787,3
+candyrice,25958787,4
+33392381,25958787,5
+60378993,25958787,5
+4685842,25958787,5
+Duyuanyuan,25958787,4
+edgeyeung,25958787,5
+40979216,25958787,4
+xixi9000,25958787,4
+76655932,25958787,4
+49902714,25958787,3
+54631317,25958787,-1
+27545760,25958787,2
+JosephineQv,25958787,5
+51060145,25958787,5
+hedmgh,25958787,3
+45949533,25958787,3
+63835043,25958787,5
+126862428,25958787,5
+53362350,25958787,3
+zhwenwenwen,25958787,4
+simaxiangru118,25958787,3
+duoyudeciyu,25958787,4
+46225012,25958787,5
+soweird,25958787,3
+5899417,25958787,4
+daydream466,25958787,3
+43471768,25958787,3
+haji,25958787,4
+11020421,25958787,3
+baozi1008,25958787,3
+xuyinaxxxxxxx,25958787,3
+muxieyes,25958787,5
+Orchid,25958787,4
+53244433,25958787,4
+59220835,25958787,5
+83267893,25958787,4
+56602541,25958787,5
+septembersummer,25958787,3
+reave,25958787,2
+xuehaotian,25958787,5
+80860113,25958787,3
+63054744,25958787,4
+71561935,25958787,3
+43723717,25958787,4
+46380360,25958787,4
+Cryostatgirl,25958787,3
+nothinker,25958787,4
+54390411,25958787,4
+doraeman,25958787,3
+4146586,25958787,2
+103315156,25958787,3
+68725577,25958787,4
+1956404,25958787,5
+hanyy,25958787,3
+anko2626,25958787,3
+tjz230,25958787,2
+46161171,25958787,5
+xiaojiongxia,25958787,4
+85347053,25958787,4
+yyj1992100225,25958787,4
+79161066,25958787,5
+zuoshoudezuo,25958787,4
+salome-lee,25958787,3
+61388352,25958787,4
+83723594,25958787,4
+94417936,25958787,4
+48712788,25958787,4
+woollen50,25958787,5
+royin.chao,25958787,3
+83188680,25958787,3
+sixuliuyun,25958787,4
+54587434,25958787,4
+4899742,25958787,5
+69679800,25958787,5
+35087242,25958787,5
+miyavivicky,25958787,-1
+judybear,25958787,4
+heybye,25958787,5
+75756405,25958787,4
+45787212,25958787,4
+64833909,25958787,4
+106277735,25958787,3
+34901213,25958787,3
+Dallowave,25958787,4
+3492044,25958787,4
+56955441,25958787,4
+yzkk821,25958787,4
+1197799,25958787,4
+36772900,25958787,3
+46393539,25958787,5
+76153086,25958787,4
+YHC08300604,25958787,4
+8839314,25958787,5
+lokaven,25958787,3
+75797638,25958787,4
+5129531,25958787,5
+3592617,25958787,5
+shelleyhsu,25958787,3
+42006560,25958787,4
+kid131,25958787,4
+ryan220,25958787,5
+daydreaming501,25958787,2
+54915058,25958787,5
+chezidaobai,25958787,3
+chezidaobai,25958787,3
+66441449,25958787,4
+WanGenius,25958787,5
+47047627,25958787,4
+52991857,25958787,4
+51970581,25958787,4
+2429292,25958787,3
+boboaibaobao,25958787,4
+derekderek,25958787,4
+castaneousair,25958787,3
+caocaoa,25958787,4
+77758955,25958787,4
+48022158,25958787,5
+1220427,25958787,3
+3268751,25958787,3
+2193400,25958787,4
+Summerhoda,25958787,3
+Tiamo0118,25958787,4
+38814128,25958787,4
+90564869,25958787,3
+soulki,25958787,4
+lynxmao,25958787,4
+63658067,25958787,4
+1338192,25958787,5
+2461588,25958787,3
+127354177,25958787,5
+wizardcypress,25958787,5
+2009122,25958787,5
+badass420,25958787,-1
+2076258,25958787,3
+62318695,25958787,5
+2197494,25958787,-1
+50153226,25958787,3
+so-it-is,25958787,3
+34628570,25958787,4
+yu_yuan,25958787,5
+53214728,25958787,3
+yushuting1122,25958787,3
+43864644,25958787,3
+31043480,25958787,4
+2309490,25958787,2
+60804345,25958787,2
+liuxiaowan,25958787,3
+50600162,25958787,3
+67516737,25958787,4
+vivienvb,25958787,5
+46812658,25958787,4
+1867381,25958787,5
+liuzhenhuadedou,25958787,4
+81835829,25958787,5
+46620424,25958787,3
+timememo,25958787,4
+yanqichen,25958787,4
+68878726,25958787,3
+MrQueen,25958787,2
+82766218,25958787,4
+Feefy-Z,25958787,3
+54806925,25958787,3
+xuanyushuo,25958787,4
+xuyiting0308,25958787,4
+xuyiting0308,25958787,4
+65383456,25958787,-1
+chuan111,25958787,-1
+netsurfe,25958787,3
+tianbuman,25958787,3
+51966525,25958787,5
+woshiex,25958787,3
+64978016,25958787,4
+56270845,25958787,3
+69409681,25958787,5
+44649844,25958787,3
+53622667,25958787,4
+sherlyandnicole,25958787,4
+resurgam92dawn,25958787,3
+1925859,25958787,5
+50416947,25958787,3
+64605857,25958787,3
+ELSIE627,25958787,4
+114143891,25958787,-1
+2270098,25958787,3
+2270098,25958787,3
+90883660,25958787,4
+edan5,25958787,4
+1714845,25958787,5
+30856811,25958787,5
+37653990,25958787,5
+41546216,25958787,4
+71455047,25958787,4
+74325059,25958787,5
+48941408,25958787,3
+Mmiao_69,25958787,3
+icerainbow,25958787,3
+kinged14,25958787,4
+ruilixiurui,25958787,4
+zdoudou,25958787,5
+45182883,25958787,4
+wuzouhuanghun,25958787,4
+115552732,25958787,4
+31622009,25958787,4
+60803765,25958787,4
+romanticist,25958787,3
+umaymaymay,25958787,3
+58120258,25958787,4
+67242971,25958787,3
+97491371,25958787,4
+foolishrabbit,25958787,5
+59123210,25958787,4
+60906528,25958787,4
+viking7117,25958787,4
+43808911,25958787,4
+115787332,25958787,5
+eiji218837,25958787,5
+4057770,25958787,3
+28388052,25958787,4
+kloccd,25958787,4
+marjorie.shi,25958787,5
+53179337,25958787,5
+33010059,25958787,3
+sty929,25958787,4
+rainred,25958787,3
+36809919,25958787,4
+55340250,25958787,5
+renling,25958787,4
+47680637,25958787,4
+superpandaba,25958787,5
+53841899,25958787,3
+sujin6041,25958787,4
+48126061,25958787,5
+65014224,25958787,4
+3971708,25958787,3
+soha_s,25958787,4
+1768350,25958787,4
+34868129,25958787,3
+shuonidaye,25958787,4
+66091020,25958787,4
+16250243,25958787,4
+leisurelee,25958787,4
+yuelai15,25958787,4
+limingquan,25958787,4
+lointaine,25958787,4
+61953901,25958787,4
+clockworkman,25958787,4
+4684799,25958787,3
+aikki27,25958787,4
+youdianhuanjue,25958787,3
+beiliya,25958787,3
+zhilan,25958787,3
+44002119,25958787,5
+3192663,25958787,3
+42758677,25958787,4
+joearde,25958787,3
+cca2222223,25958787,4
+karasu419,25958787,4
+49691795,25958787,-1
+4559768,25958787,4
+114361347,25958787,3
+58071189,25958787,3
+47214501,25958787,-1
+38160220,25958787,5
+92254946,25958787,5
+lvben,25958787,3
+35308346,25958787,5
+72820019,25958787,3
+lukaka,25958787,3
+73903967,25958787,3
+givindream,25958787,4
+42150809,25958787,5
+97431657,25958787,4
+bb0708,25958787,3
+muxiaoxu,25958787,3
+41625097,25958787,3
+catherinexuf,25958787,5
+46258886,25958787,4
+57425264,25958787,4
+29211262,25958787,3
+88256583,25958787,4
+chimneyqueen,25958787,4
+74201077,25958787,3
+56867192,25958787,4
+HarryOng,25958787,4
+yanbodiaoyu,25958787,3
+74849633,25958787,3
+58371683,25958787,3
+1115324,25958787,4
+SHOUYOU,25958787,3
+sherry-he,25958787,4
+27083454,25958787,5
+119526909,25958787,3
+47297203,25958787,3
+70475777,25958787,5
+42781557,25958787,3
+121684366,25958787,4
+2870355,25958787,4
+jamaica,25958787,4
+1318126,25958787,4
+muyanyan,25958787,5
+2265615,25958787,4
+yuxiangyun,25958787,2
+ask4more,25958787,3
+heartseas,25958787,5
+quxiaobai,25958787,-1
+sosxisang,25958787,5
+50574950,25958787,5
+foxv1,25958787,-1
+PP_wei,25958787,5
+ice_pudding,25958787,3
+49620873,25958787,4
+60178836,25958787,4
+cynthia3922,25958787,4
+4841197,25958787,4
+60255934,25958787,4
+40673634,25958787,4
+50225542,25958787,4
+40302528,25958787,4
+3643871,25958787,3
+randidianying,25958787,4
+wtforz,25958787,3
+vincentjones,25958787,3
+kibabukisatoshi,25958787,4
+MOKUZJY,25958787,2
+43254568,25958787,4
+48521978,25958787,4
+huanxibushuohua,25958787,4
+nashxk,25958787,5
+Madao_D,25958787,4
+45753459,25958787,4
+34295625,25958787,4
+56115419,25958787,4
+pengpeng,25958787,3
+Klinux,25958787,4
+punkyifan,25958787,4
+nalixianren,25958787,5
+RATATKAIQI,25958787,3
+xiaobing95,25958787,4
+kelsilove531,25958787,4
+2122074,25958787,3
+dr_mike,25958787,4
+zoujian-999,25958787,5
+53033860,25958787,4
+wenliangno1,25958787,4
+54265487,25958787,4
+62793517,25958787,4
+58059498,25958787,3
+flowermumu,25958787,3
+124537695,25958787,3
+41776399,25958787,4
+ys1013,25958787,4
+AlanKing,25958787,5
+45869247,25958787,5
+73958470,25958787,4
+3151785,25958787,3
+ancang621,25958787,5
+49229234,25958787,5
+48847270,25958787,4
+79502375,25958787,5
+yeexue,25958787,5
+47783311,25958787,5
+2283860,25958787,5
+MuddyKing,25958787,4
+wantwaye,25958787,3
+shelia11,25958787,5
+62278686,25958787,4
+mubin,25958787,4
+iloveEminem,25958787,3
+vesperxu,25958787,-1
+3556906,25958787,4
+Celine95,25958787,-1
+59244982,25958787,5
+bdlcS,25958787,4
+53151297,25958787,2
+97993683,25958787,5
+hatelies,25958787,5
+44463308,25958787,3
+3522938,25958787,3
+aixiaoke,25958787,3
+4098953,25958787,3
+80045582,25958787,5
+63150042,25958787,4
+46645966,25958787,4
+40195954,25958787,4
+du215,25958787,4
+66035182,25958787,4
+4720392,25958787,4
+61088148,25958787,4
+jlam174170,25958787,4
+52259960,25958787,3
+69195313,25958787,-1
+47078209,25958787,5
+OneiLulu,25958787,4
+Sk.Young,25958787,4
+LaddishXuan,25958787,4
+3103013,25958787,4
+69688835,25958787,3
+51771885,25958787,4
+65662005,25958787,3
+71534592,25958787,5
+45615134,25958787,3
+4325552,25958787,5
+105892231,25958787,5
+121352269,25958787,3
+ironCC,25958787,5
+51401098,25958787,4
+wangzhibin,25958787,3
+130154428,25958787,2
+gaizadizadi,25958787,4
+joewice,25958787,4
+50170242,25958787,-1
+cyansugar,25958787,4
+92345427,25958787,3
+love131425xyp,25958787,3
+121000883,25958787,4
+iamk66,25958787,2
+xishy,25958787,4
+florah,25958787,3
+51781307,25958787,4
+Dpudding,25958787,4
+xiaohundaban,25958787,2
+chacha.0301.,25958787,4
+52529736,25958787,3
+RongFuYiTai6,25958787,3
+swell1019,25958787,4
+131444915,25958787,3
+echosun921,25958787,4
+61712114,25958787,3
+3930387,25958787,4
+47338102,25958787,3
+52299023,25958787,4
+75426424,25958787,5
+49845781,25958787,4
+balancee,25958787,3
+77084511,25958787,4
+62158106,25958787,5
+57743813,25958787,4
+xyc1987,25958787,4
+4659182,25958787,5
+67677954,25958787,3
+108628101,25958787,5
+para77,25958787,4
+millylyu,25958787,3
+72817242,25958787,4
+89993946,25958787,3
+yangziyoko,25958787,4
+49308797,25958787,5
+maeho,25958787,4
+49370214,25958787,5
+calamusrain,25958787,4
+83328709,25958787,3
+Acrazydddd,25958787,5
+taguan,25958787,3
+juliayunjie,25958787,3
+62455742,25958787,5
+daphneleaf,25958787,5
+Night_shadow,25958787,3
+4467798,25958787,4
+fyby,25958787,3
+48565113,25958787,4
+4167194,25958787,5
+sky890802,25958787,4
+exoplanet,25958787,4
+clay,25958787,5
+57640868,25958787,5
+66803513,25958787,3
+vernasun,25958787,3
+69735820,25958787,3
+2179932,25958787,4
+holdingtt,25958787,5
+xyzxun,25958787,-1
+echo7forest,25958787,3
+4678321,25958787,3
+50165261,25958787,3
+C-Plus,25958787,3
+3111680,25958787,3
+52503194,25958787,4
+42832142,25958787,4
+a_Yuan,25958787,3
+ring_ring,25958787,3
+42137156,25958787,4
+3451324,25958787,5
+76839665,25958787,4
+63062317,25958787,4
+newbear,25958787,4
+70006548,25958787,5
+alice1016,25958787,4
+59442394,25958787,4
+lumins,25958787,3
+124265330,25958787,3
+70005274,25958787,4
+xiaorujuly,25958787,4
+Howen,25958787,4
+kennan,25958787,5
+71918297,25958787,3
+kevinyangmx,25958787,4
+96302798,25958787,5
+70680447,25958787,4
+50490367,25958787,4
+carrypotter,25958787,3
+kp81ndlf,25958787,3
+mr81,25958787,4
+cxy007,25958787,3
+maychendaxu,25958787,4
+missufinally,25958787,5
+lovea_ten,25958787,4
+44100097,25958787,5
+dearycom,25958787,3
+takuyayueyue,25958787,3
+66885477,25958787,4
+29632505,25958787,4
+q164511490,25958787,4
+mikafish,25958787,5
+110718557,25958787,4
+sorrowgrown,25958787,4
+Leslie_ontheway,25958787,3
+1495292,25958787,4
+18586571,25958787,4
+mustafay,25958787,3
+64011512,25958787,3
+43783099,25958787,4
+50403801,25958787,4
+58723573,25958787,5
+2181401,25958787,3
+riceseedling,25958787,1
+71543587,25958787,3
+122780931,25958787,5
+90674363,25958787,3
+auxten,25958787,4
+124027537,25958787,5
+elle1989,25958787,-1
+wainwong,25958787,5
+lemonquizas,25958787,5
+sadie_xiong,25958787,4
+JakeNow,25958787,4
+2280920,25958787,3
+liyuantown,25958787,3
+4132580,25958787,5
+Year0201,25958787,4
+58777523,25958787,4
+4422872,25958787,4
+laozo,25958787,4
+Alcor,25958787,-1
+lephemera,25958787,3
+lephemera,25958787,3
+x5,25958787,4
+xu77,25958787,3
+grbzywg,25958787,2
+xzm723,25958787,4
+sharpayliu,25958787,4
+57893765,25958787,4
+75328921,25958787,3
+67843912,25958787,2
+littleumbrella,25958787,4
+3801481,25958787,3
+dy_idle,25958787,4
+rou_huohuo,25958787,4
+45534888,25958787,-1
+wdshan,25958787,5
+121831939,25958787,5
+70915171,25958787,4
+52413397,25958787,5
+60002715,25958787,3
+48118693,25958787,5
+48118693,25958787,5
+savvy12,25958787,4
+wwy1124,25958787,5
+1643427,25958787,4
+sehnsuchtd,25958787,5
+elinnao,25958787,3
+2423875,25958787,3
+Pshdakota,25958787,3
+104152076,25958787,5
+43990323,25958787,4
+3177593,25958787,3
+3412571,25958787,3
+orangerye,25958787,5
+3935272,25958787,5
+46144657,25958787,4
+88171857,25958787,4
+cynthiaesfeliz,25958787,4
+lyming,25958787,4
+38359787,25958787,4
+74936551,25958787,5
+63548568,25958787,3
+1530502,25958787,5
+39200780,25958787,5
+63676625,25958787,3
+1951463,25958787,3
+kiki204629,25958787,4
+masterobert,25958787,4
+60140602,25958787,5
+95571541,25958787,5
+53982181,25958787,4
+119803705,25958787,3
+44436573,25958787,3
+Cherry-Pop,25958787,4
+53456687,25958787,4
+91775447,25958787,3
+2310421,25958787,4
+eluv,25958787,3
+54783024,25958787,3
+sandymint,25958787,4
+104592207,25958787,3
+QQXLH,25958787,5
+emo_bubu,25958787,4
+when31,25958787,5
+naratan,25958787,5
+98522536,25958787,5
+53539927,25958787,4
+52852882,25958787,4
+1886385,25958787,4
+28315646,25958787,3
+shelley_ni,25958787,4
+Solo-n,25958787,4
+ChuckShang,25958787,5
+52241685,25958787,4
+woshzd,25958787,4
+54423436,25958787,4
+57377786,25958787,4
+jasmine22,25958787,4
+53476410,25958787,-1
+mackalex,25958787,3
+ccjuse,25958787,5
+yeslie,25958787,3
+51262183,25958787,4
+ydouban,25958787,5
+65717414,25958787,4
+43297403,25958787,4
+44078114,25958787,4
+dana_dana,25958787,4
+sixprecepts,25958787,4
+zebra168,25958787,5
+aiJC,25958787,3
+Pearls,25958787,4
+linmumuevelyn,25958787,3
+yangshijie1107,25958787,4
+57088195,25958787,4
+yan599083337,25958787,4
+74445382,25958787,2
+xiaojirou007,25958787,3
+xmiss512,25958787,-1
+60302594,25958787,3
+1892627,25958787,4
+44022585,25958787,5
+yuxingshu,25958787,4
+52807688,25958787,4
+81691649,25958787,3
+ccccoffee,25958787,3
+dusk.xiyang,25958787,4
+han_nah,25958787,5
+121354261,25958787,3
+annerabbit1127,25958787,4
+simpledeer,25958787,3
+71712841,25958787,4
+cangyang,25958787,3
+3993595,25958787,5
+dustxu,25958787,4
+inearlysummer,25958787,4
+124764727,25958787,4
+44888841,25958787,-1
+44735824,25958787,4
+eijam,25958787,4
+55292823,25958787,4
+43554949,25958787,3
+JunKun,25958787,4
+54069821,25958787,3
+68390243,25958787,4
+126702436,25958787,3
+52222708,25958787,3
+71946766,25958787,4
+49384394,25958787,3
+65019328,25958787,5
+45004745,25958787,4
+2109666,25958787,4
+vivienmoe,25958787,3
+FigMent,25958787,5
+songy,25958787,3
+44338831,25958787,5
+abhorsen,25958787,5
+60046251,25958787,-1
+26462981,25958787,4
+2362910,25958787,-1
+aarontee329,25958787,4
+51757040,25958787,4
+chsophie325,25958787,3
+4407414,25958787,3
+deshley,25958787,5
+52649596,25958787,5
+51683882,25958787,5
+90114344,25958787,3
+63465175,25958787,3
+104261144,25958787,2
+amofirenze,25958787,4
+83748698,25958787,5
+gemirai,25958787,4
+53363947,25958787,5
+duduxiongzhifu,25958787,2
+toby_7,25958787,4
+sai27,25958787,3
+goodays,25958787,3
+btone0808,25958787,3
+suhuiyige,25958787,3
+84250645,25958787,4
+51573239,25958787,5
+yang0826,25958787,5
+58056490,25958787,5
+76157804,25958787,4
+Lastexiler,25958787,3
+1115920,25958787,4
+62848275,25958787,5
+echo-syy,25958787,4
+rockinghead,25958787,-1
+vero_nicat,25958787,3
+2096902,25958787,3
+91994560,25958787,3
+53212541,25958787,3
+69519584,25958787,4
+praycho,25958787,4
+52285009,25958787,4
+75292213,25958787,5
+iampearl,25958787,3
+43904088,25958787,4
+64855972,25958787,5
+70026542,25958787,5
+nooutcome,25958787,5
+dober,25958787,5
+46818938,25958787,5
+yeting1125,25958787,4
+65696452,25958787,4
+merengue,25958787,4
+lost17,25958787,5
+xiaoye780621,25958787,2
+36563881,25958787,3
+1463503,25958787,3
+58497726,25958787,4
+58756782,25958787,5
+44201949,25958787,4
+lufasha,25958787,4
+82691525,25958787,5
+bullidiot,25958787,3
+46394662,25958787,3
+53724452,25958787,4
+melynda,25958787,4
+Lydia_Zhu,25958787,5
+liang9527,25958787,4
+60819858,25958787,3
+nothingwell,25958787,-1
+64009647,25958787,4
+zxt1219,25958787,4
+58110414,25958787,4
+80754776,25958787,5
+wxw1900,25958787,4
+Issac416,25958787,3
+4387690,25958787,4
+77316354,25958787,3
+53530714,25958787,5
+kumoomoo,25958787,4
+xiaoyuhen,25958787,4
+48280149,25958787,5
+59590971,25958787,5
+49364738,25958787,4
+72984075,25958787,4
+v0Id0,25958787,3
+57754572,25958787,5
+atlas0413,25958787,4
+p2165,25958787,3
+trevin0411,25958787,4
+67242439,25958787,4
+18071732,25958787,4
+geopop,25958787,5
+cocojamboo,25958787,3
+NapCote,25958787,3
+129798303,25958787,3
+SevNen,25958787,4
+duoduoshuwu,25958787,5
+48787128,25958787,5
+46230886,25958787,3
+45030880,25958787,5
+Childe,25958787,5
+1815039,25958787,3
+76036615,25958787,4
+chilla,25958787,4
+2896376,25958787,4
+cutecatblack,25958787,3
+dadou417,25958787,4
+2010008,25958787,5
+rex_yun,25958787,4
+post-rocker,25958787,5
+brant,25958787,5
+63874494,25958787,3
+72902533,25958787,5
+44578870,25958787,3
+snowball,25958787,4
+F1og,25958787,4
+souryu,25958787,4
+60889084,25958787,3
+zzzliyang,25958787,4
+34463653,25958787,4
+A.C.Jones,25958787,4
+60874704,25958787,4
+2448765,25958787,4
+48951367,25958787,5
+46654545,25958787,3
+113050393,25958787,3
+amour1,25958787,4
+memoryofsummer,25958787,4
+3274950,25958787,-1
+53271347,25958787,4
+tuotuodetuo,25958787,4
+4603294,25958787,4
+ydna,25958787,4
+57869776,25958787,5
+ruo1996,25958787,3
+cat_yr,25958787,4
+suoailiangren,25958787,4
+valentiine,25958787,4
+43730319,25958787,3
+50414498,25958787,3
+momoliu,25958787,4
+piggyjane,25958787,3
+moonlan77,25958787,3
+azthwh,25958787,5
+58582346,25958787,4
+cangjie1900,25958787,3
+120545006,25958787,4
+60914067,25958787,3
+mizzro,25958787,3
+anotheronexia,25958787,3
+45510721,25958787,5
+130978369,25958787,3
+zoeybatman,25958787,3
+Wsuansuan,25958787,4
+68935794,25958787,4
+58134949,25958787,4
+51591909,25958787,5
+nocturnelee,25958787,4
+clavichord811,25958787,5
+63261736,25958787,4
+15245943,25958787,4
+81412725,25958787,5
+totozhang,25958787,5
+27028067,25958787,-1
+fio3,25958787,3
+bananazookeeper,25958787,3
+linjunzhe,25958787,-1
+53822938,25958787,3
+denkenjing,25958787,3
+76624951,25958787,3
+melody0830,25958787,-1
+anzhenyunyou,25958787,-1
+2999259,25958787,5
+69165207,25958787,4
+41516145,25958787,4
+Lewxorn,25958787,4
+55444348,25958787,3
+66035004,25958787,3
+cup-whent,25958787,3
+2488091,25958787,2
+luzhiyu,25958787,4
+52591024,25958787,3
+52099107,25958787,5
+violinyuki,25958787,5
+3846941,25958787,5
+narcisusss,25958787,4
+50641899,25958787,5
+yyylovejane,25958787,3
+keeliu67,25958787,4
+G-Dear,25958787,4
+79457098,25958787,3
+76555938,25958787,4
+72461082,25958787,5
+42600622,25958787,-1
+yumengya,25958787,4
+joeolf,25958787,5
+Gawiel,25958787,4
+rato,25958787,4
+42362308,25958787,5
+lalakers,25958787,4
+51612206,25958787,4
+yanzi_ziyue,25958787,4
+70837095,25958787,4
+aaadandan,25958787,3
+64554108,25958787,2
+sable_in_red,25958787,4
+12232981,25958787,5
+heroman,25958787,5
+106766412,25958787,4
+87865884,25958787,-1
+VeniVidiVici3,25958787,3
+4212153,25958787,4
+3855403,25958787,4
+48055064,25958787,4
+34284550,25958787,4
+65828524,25958787,3
+yurenxiaobai,25958787,4
+48634684,25958787,4
+53392958,25958787,3
+elyn5234,25958787,4
+yan6,25958787,4
+2510654,25958787,4
+miaow,25958787,3
+81445026,25958787,3
+chuyanran,25958787,3
+36359450,25958787,4
+silvan1117,25958787,4
+49249269,25958787,4
+gloriakwok,25958787,4
+zaraatnike,25958787,3
+partipris,25958787,4
+evergreeen,25958787,4
+luciaandmayday,25958787,5
+rantao,25958787,4
+life_go,25958787,4
+hanayoungchan,25958787,4
+jackyangyang,25958787,4
+goodbyebonheur,25958787,5
+79519421,25958787,4
+Clarssia,25958787,5
+dorotheayounge,25958787,4
+jitou,25958787,4
+NG,25958787,4
+34846798,25958787,5
+fuxiu,25958787,5
+34347136,25958787,4
+62929277,25958787,2
+oldwolfnwf,25958787,5
+82689458,25958787,3
+4295009,25958787,-1
+65507794,25958787,4
+12793634,25958787,5
+dreamingday,25958787,5
+22781132,25958787,5
+cathyhere,25958787,4
+2576203,25958787,4
+bunny622,25958787,4
+63666149,25958787,4
+4026025,25958787,4
+XuKyle,25958787,4
+60349370,25958787,5
+SamsonOu,25958787,3
+caomuyiyi,25958787,3
+57620565,25958787,4
+ggrabbit,25958787,4
+126183742,25958787,4
+2867984,25958787,3
+simonwuang,25958787,4
+65930236,25958787,3
+129592238,25958787,4
+51965431,25958787,3
+68813324,25958787,4
+92177885,25958787,-1
+3209049,25958787,3
+37204895,25958787,4
+beibei920,25958787,4
+4364847,25958787,4
+jesuistriste,25958787,4
+64189382,25958787,3
+1856131,25958787,4
+52146606,25958787,4
+1302983,25958787,5
+Ophelia14,25958787,4
+taoqianmo,25958787,4
+52023052,25958787,2
+charlotteeeeeee,25958787,-1
+50972003,25958787,5
+48014594,25958787,4
+113927921,25958787,3
+hollyvan,25958787,4
+missfuluola,25958787,4
+55632749,25958787,5
+lilylee1023,25958787,3
+52455422,25958787,4
+fxl0977,25958787,4
+66268458,25958787,4
+56379326,25958787,4
+weiliangcanvas,25958787,3
+metkee,25958787,4
+116044095,25958787,4
+superdrug,25958787,2
+armai,25958787,4
+terachi,25958787,4
+3203754,25958787,3
+midochan,25958787,3
+midochan,25958787,3
+87513783,25958787,3
+67823084,25958787,3
+afterainbow,25958787,4
+32018385,25958787,3
+GreenySoul,25958787,2
+32653092,25958787,4
+pamela516,25958787,5
+clairez,25958787,4
+hexiaoqin,25958787,3
+52368125,25958787,3
+eason0210,25958787,2
+haiyun_lu,25958787,4
+sephilish,25958787,4
+ad.7,25958787,4
+4456648,25958787,4
+orangeorange6,25958787,4
+36038385,25958787,3
+sanpisanpi,25958787,3
+aaaaaaaaaaa,25958787,3
+MovieL,25958787,3
+2359270,25958787,5
+4459976,25958787,4
+47406016,25958787,3
+darlingtudai,25958787,3
+blackcatzh,25958787,4
+cyan_xi,25958787,3
+61601781,25958787,4
+2818241,25958787,5
+1662765,25958787,3
+arishting,25958787,4
+chusijie,25958787,4
+beibeilaner,25958787,4
+vv_gh,25958787,4
+2643043,25958787,3
+leslieleo,25958787,4
+youyoujean,25958787,4
+yalindongdong,25958787,3
+99995336,25958787,3
+63482372,25958787,4
+ORBR,25958787,4
+attel,25958787,5
+yuuii,25958787,5
+zxy310,25958787,4
+leonh,25958787,4
+dongdayou,25958787,5
+42948649,25958787,4
+vane0109,25958787,2
+tabitha,25958787,4
+55439926,25958787,4
+llms,25958787,4
+47525784,25958787,5
+67225686,25958787,4
+qingjuli,25958787,-1
+14167253,25958787,4
+1394301,25958787,3
+frank1992,25958787,4
+mississluu,25958787,5
+Garcia_Tommy,25958787,4
+klaus2015,25958787,4
+dfzxqqian,25958787,4
+tintintsang,25958787,3
+77202750,25958787,4
+yueyan23,25958787,4
+66688383,25958787,-1
+chechengxuan,25958787,5
+Crystal_Dcy,25958787,5
+3606660,25958787,3
+megumi2046,25958787,4
+hibck,25958787,4
+4242728,25958787,4
+richer725,25958787,3
+1082144,25958787,3
+ToscanaSole,25958787,5
+47601380,25958787,3
+52466190,25958787,3
+3951378,25958787,4
+xiaochan83,25958787,4
+56055590,25958787,-1
+ryo-,25958787,3
+86093744,25958787,3
+Amico,25958787,5
+littlevivi,25958787,4
+108328665,25958787,3
+66546390,25958787,4
+wqmeoe,25958787,4
+4272982,25958787,5
+52624708,25958787,2
+15258399,25958787,5
+3221141,25958787,4
+74932520,25958787,5
+97457961,25958787,4
+120094445,25958787,5
+little_star,25958787,-1
+p60943950,25958787,4
+59541018,25958787,3
+yoshimi,25958787,4
+foreverGJC8023,25958787,3
+marilia0125,25958787,5
+zz5490,25958787,3
+121227270,25958787,3
+baby-giG,25958787,4
+chch1420,25958787,-1
+sohere,25958787,4
+52535672,25958787,4
+58848831,25958787,3
+Rebecca_yu,25958787,4
+53288868,25958787,-1
+34949120,25958787,4
+Rittle,25958787,4
+stephanie5uu,25958787,2
+39247767,25958787,4
+yeox,25958787,4
+wywapple,25958787,4
+miracle1025,25958787,4
+wfloats,25958787,4
+33309594,25958787,-1
+57188725,25958787,3
+114138035,25958787,3
+91388404,25958787,5
+nancyyan,25958787,4
+silentjava,25958787,4
+62742561,25958787,5
+81975836,25958787,4
+3205834,25958787,4
+51741700,25958787,2
+doa,25958787,4
+ppyy,25958787,3
+agnoir,25958787,3
+53409218,25958787,5
+suwa,25958787,3
+76085308,25958787,-1
+65095857,25958787,5
+54769561,25958787,4
+34168497,25958787,4
+cfengbme,25958787,2
+92399399,25958787,2
+29443633,25958787,5
+109021206,25958787,5
+59275049,25958787,3
+edward1988,25958787,3
+GoldFish,25958787,4
+pennawang,25958787,4
+faille1991,25958787,4
+MissBinary,25958787,5
+53685389,25958787,-1
+jinniye,25958787,-1
+42078005,25958787,4
+83704374,25958787,4
+1237270,25958787,4
+35357660,25958787,4
+idorothy,25958787,4
+70660296,25958787,3
+21893924,25958787,4
+47055120,25958787,4
+icerabbitbaby,25958787,3
+se7en8736,25958787,4
+megamao,25958787,4
+helene9933,25958787,3
+56259387,25958787,-1
+landcrosser,25958787,4
+gothique,25958787,3
+TangAnAnn,25958787,3
+xiaowangzi1984,25958787,4
+61939090,25958787,4
+47542853,25958787,3
+lupuline,25958787,5
+39944237,25958787,5
+96044338,25958787,3
+dingchunxhao,25958787,4
+Uvo,25958787,4
+33177895,25958787,4
+Neo-Augustism,25958787,4
+FK621,25958787,4
+71576870,25958787,4
+mougaga,25958787,5
+42221402,25958787,3
+32650866,25958787,4
+xiaoyouhun,25958787,5
+4379824,25958787,4
+cyy9828,25958787,3
+hugjm,25958787,-1
+fang0079,25958787,4
+47514336,25958787,4
+28261412,25958787,3
+think_forever,25958787,5
+4427055,25958787,4
+zen-yggdrasil,25958787,4
+49893874,25958787,2
+zhangjieshu,25958787,4
+44695471,25958787,4
+phoebefly,25958787,5
+superegg.,25958787,4
+1485397,25958787,2
+46603705,25958787,4
+libinhan,25958787,5
+chenzhuoyi,25958787,5
+2678642,25958787,3
+yyuq,25958787,4
+synther,25958787,-1
+LAURANOWHERE,25958787,4
+scharphie,25958787,4
+Rocky5821,25958787,4
+ravinenoravine,25958787,4
+5550651,25958787,5
+foreversylvia,25958787,3
+wusequanwei,25958787,4
+sharonsama,25958787,4
+luluimayday,25958787,5
+126686879,25958787,4
+127934369,25958787,4
+freddy_xu,25958787,4
+wizecho,25958787,5
+2442287,25958787,-1
+pinger87,25958787,4
+cameron18,25958787,5
+52234152,25958787,4
+MelodyGrass,25958787,5
+Miss.Hyacinth,25958787,4
+2594481,25958787,3
+128070714,25958787,5
+youngton,25958787,3
+cuilw,25958787,4
+whiskii,25958787,4
+70401181,25958787,3
+34575902,25958787,3
+sevenVSseven,25958787,4
+poseidonbunny,25958787,3
+31848180,25958787,3
+mr-kill,25958787,5
+46254469,25958787,3
+willd,25958787,-1
+49836781,25958787,-1
+59412896,25958787,4
+56837215,25958787,-1
+Candy_Can,25958787,3
+2201567,25958787,5
+120598191,25958787,4
+4391247,25958787,3
+willingnotto,25958787,4
+zenobao,25958787,3
+4320404,25958787,3
+phl745,25958787,5
+68080412,25958787,4
+2039240,25958787,4
+9274036,25958787,3
+2387014,25958787,3
+84307265,25958787,5
+tristasmile,25958787,4
+cyb1n,25958787,5
+bring-it,25958787,4
+45698347,25958787,3
+COCOCOQUEEN,25958787,5
+xxs127,25958787,3
+hhzzz6912,25958787,4
+81089052,25958787,4
+95119878,25958787,4
+zhugl,25958787,4
+seeyouyu,25958787,-1
+50782420,25958787,4
+flyingbria,25958787,4
+dmLaura,25958787,-1
+62237804,25958787,4
+Kaylana,25958787,4
+ximutudan,25958787,4
+yinhua0728,25958787,5
+yY.,25958787,5
+yingyingyixiao,25958787,4
+3602718,25958787,4
+kikyo531,25958787,4
+46287830,25958787,-1
+hmmux,25958787,3
+28199588,25958787,4
+yaoye,25958787,4
+fenglimuren,25958787,4
+afeidora,25958787,4
+Iammygod,25958787,3
+84605808,25958787,4
+3637664,25958787,3
+89861423,25958787,-1
+36030234,25958787,4
+44253995,25958787,5
+wppwpx,25958787,5
+88658146,25958787,4
+3873460,25958787,-1
+angle223,25958787,4
+Maylres,25958787,-1
+pinomax,25958787,-1
+Rinn,25958787,5
+Curry_Egg,25958787,3
+4536107,25958787,4
+fuckpussy,25958787,-1
+45193149,25958787,5
+58289096,25958787,3
+1849096,25958787,-1
+49166352,25958787,4
+75927554,25958787,4
+58906132,25958787,5
+4369060,25958787,3
+zhangziyi,25958787,3
+neilchi,25958787,4
+andless,25958787,5
+lynne0801,25958787,5
+HS_yosi,25958787,5
+4338616,25958787,3
+2569857,25958787,3
+judy0420,25958787,4
+NCC,25958787,4
+amyue,25958787,4
+3826970,25958787,5
+lapland,25958787,5
+125132242,25958787,5
+spriggan,25958787,4
+mogujunmomo,25958787,-1
+44917242,25958787,3
+59556482,25958787,5
+4272147,25958787,4
+58191457,25958787,3
+wewillrockyou,25958787,3
+meifyrt,25958787,3
+126514473,25958787,3
+51572703,25958787,3
+Ziya,25958787,5
+YuRAY,25958787,4
+slowiy,25958787,3
+45564542,25958787,-1
+xTristan,25958787,5
+45518170,25958787,5
+moonillusion,25958787,-1
+51487231,25958787,-1
+crab802,25958787,4
+63594336,25958787,5
+toowildtotouch,25958787,4
+icefishe,25958787,4
+Teatalk,25958787,4
+knoppers,25958787,5
+7542909,25958787,3
+ringogo,25958787,4
+29844884,25958787,5
+crystal1812,25958787,5
+52548060,25958787,3
+janaldlam,25958787,3
+2051768,25958787,4
+MK,25958787,3
+44735401,25958787,3
+103189636,25958787,3
+39095081,25958787,4
+liutengzhi,25958787,4
+xingli722,25958787,4
+youaredead,25958787,4
+85958266,25958787,4
+yyyyyyyyyuan,25958787,4
+enigmairis,25958787,3
+mushroomcloud,25958787,5
+76012813,25958787,4
+lauretta2acm,25958787,4
+53223737,25958787,4
+50660338,25958787,4
+herbielovetree,25958787,4
+59731230,25958787,3
+magicmaomao,25958787,5
+3262787,25958787,3
+jsjtsecret,25958787,4
+25958436,25958787,5
+2349644,25958787,3
+81249317,25958787,3
+MOVIE--KO,25958787,3
+73959584,25958787,5
+53942242,25958787,3
+sunflowerqi,25958787,4
+71732006,25958787,4
+4396096,25958787,5
+1022788,25958787,3
+42678961,25958787,4
+goldenfish,25958787,3
+nashcaihk,25958787,5
+lynnhal,25958787,4
+71691138,25958787,-1
+bybylee,25958787,-1
+2096526,25958787,4
+35066546,25958787,5
+2610640,25958787,3
+4465654,25958787,4
+Louisedang,25958787,5
+81697410,25958787,4
+57370195,25958787,4
+33878998,25958787,4
+100639145,25958787,4
+liebejenny,25958787,3
+79362268,25958787,-1
+qiuyudoudou,25958787,5
+1754343,25958787,4
+70358731,25958787,-1
+stupidoor2floor,25958787,-1
+50106958,25958787,5
+36476588,25958787,5
+rayhal,25958787,3
+62971730,25958787,4
+kanzaki666,25958787,5
+116902692,25958787,4
+sunevivi,25958787,5
+sevenready,25958787,4
+guanjunyan,25958787,-1
+58578065,25958787,5
+blurjth,25958787,3
+vanie,25958787,4
+55279877,25958787,5
+diorsunrise,25958787,3
+48494874,25958787,2
+43736593,25958787,3
+65485442,25958787,5
+wonderlandalice,25958787,3
+2585969,25958787,5
+51689962,25958787,3
+46472458,25958787,4
+radishamy,25958787,4
+hwf254,25958787,4
+woshixuanzi,25958787,4
+tzem0572,25958787,5
+fairyhui521,25958787,3
+flowerroad,25958787,4
+mczane,25958787,5
+55930112,25958787,4
+whisaly,25958787,3
+meme727,25958787,4
+xiaohanzi1001,25958787,4
+90091065,25958787,4
+44714077,25958787,5
+36250262,25958787,4
+margaret_wmx,25958787,4
+4527041,25958787,3
+69255956,25958787,4
+35073852,25958787,4
+Hannia,25958787,4
+domiencore,25958787,4
+73706706,25958787,4
+MMMangojz,25958787,4
+73291837,25958787,5
+nafertari,25958787,4
+54901617,25958787,5
+51287977,25958787,5
+lbridge,25958787,4
+darkgt,25958787,5
+69126111,25958787,4
+maixiaohuang,25958787,5
+48360878,25958787,3
+92836075,25958787,-1
+nielu,25958787,4
+38595648,25958787,4
+44690899,25958787,4
+summertalking,25958787,4
+owen289607833,25958787,4
+sarahvong,25958787,5
+hotdookie,25958787,-1
+49271269,25958787,3
+sunfolwer,25958787,3
+mogu_s,25958787,5
+15286223,25958787,5
+5754772,25958787,-1
+64249671,25958787,3
+42645517,25958787,5
+65488479,25958787,5
+55813091,25958787,3
+51342796,25958787,4
+dizzydancer,25958787,3
+64281676,25958787,3
+62302403,25958787,4
+aleung,25958787,4
+hannahhsing,25958787,3
+50875177,25958787,3
+81473347,25958787,5
+49226753,25958787,3
+shmily-1987,25958787,4
+29839010,25958787,4
+Loveneverfail,25958787,4
+LyO-n,25958787,5
+Aaronyy,25958787,3
+3356830,25958787,4
+celine_nic,25958787,5
+TomboyJoe,25958787,4
+49985202,25958787,4
+73264272,25958787,5
+57249703,25958787,5
+65747014,25958787,5
+hx615,25958787,4
+56517266,25958787,4
+64780091,25958787,2
+holy-fishman,25958787,4
+48885741,25958787,4
+mxj950111,25958787,4
+36883010,25958787,5
+qbits,25958787,3
+53492535,25958787,3
+shellysblog,25958787,4
+53814284,25958787,4
+an1x,25958787,-1
+2275412,25958787,4
+2265482,25958787,-1
+55821244,25958787,4
+s12s,25958787,-1
+ivy722,25958787,-1
+imachild,25958787,4
+yin1257,25958787,-1
+82887347,25958787,4
+115604731,25958787,5
+54342192,25958787,4
+67298685,25958787,3
+QIYIYI,25958787,4
+54774070,25958787,3
+lupinthe3rd,25958787,2
+68145483,25958787,3
+8927123,25958787,4
+silviaz,25958787,5
+btjd,25958787,3
+54028610,25958787,3
+yangzixi,25958787,5
+christophehj2,25958787,4
+78793402,25958787,4
+43359124,25958787,3
+jean4you,25958787,5
+69060474,25958787,4
+48752205,25958787,4
+wildkidpk,25958787,4
+miraclewz,25958787,4
+jolllllly,25958787,5
+hippocattle,25958787,-1
+ledt,25958787,2
+duck130912277,25958787,4
+89747225,25958787,3
+zhubeilife,25958787,4
+Freedom1399,25958787,3
+nalakahn,25958787,4
+MAY2RAIN,25958787,3
+shitgo,25958787,5
+tt1426,25958787,5
+55621323,25958787,3
+59307428,25958787,5
+1393472,25958787,4
+56922790,25958787,4
+beloving,25958787,5
+73064038,25958787,4
+47446463,25958787,5
+xiezilove,25958787,5
+82521332,25958787,5
+45061776,25958787,5
+49435286,25958787,5
+3802312,25958787,3
+justsoso80s,25958787,4
+suuunino,25958787,4
+rubytaiwan,25958787,4
+hijikataT,25958787,4
+virginiawood,25958787,4
+52175149,25958787,3
+42426766,25958787,3
+63101856,25958787,5
+43778462,25958787,-1
+63474927,25958787,5
+90904421,25958787,4
+60019246,25958787,3
+thankyou2014,25958787,3
+zard2148088,25958787,4
+edwardpanda,25958787,4
+rackylo,25958787,5
+luciane,25958787,5
+salome0831,25958787,5
+Eassie.Chen.,25958787,4
+darwin927,25958787,4
+killua0210,25958787,3
+clemencechow,25958787,3
+zoe_dabai,25958787,4
+Emily723,25958787,4
+47835086,25958787,-1
+prep,25958787,5
+38465519,25958787,3
+80063534,25958787,5
+SPIRITUA,25958787,4
+49761291,25958787,3
+v2,25958787,3
+62345168,25958787,4
+2143112,25958787,4
+103510487,25958787,3
+53391226,25958787,4
+ilovemyself,25958787,3
+3772330,25958787,5
+liebedai,25958787,4
+46690733,25958787,3
+dawdle,25958787,5
+2670612,25958787,3
+sodawon,25958787,3
+51818197,25958787,5
+43106443,25958787,4
+ribbonecho,25958787,4
+2511809,25958787,4
+Jhon_Lou,25958787,4
+ericatdoll,25958787,5
+2747541,25958787,-1
+qieyin,25958787,5
+62090248,25958787,5
+deartintin,25958787,4
+heyheygun,25958787,3
+yuanzai7,25958787,3
+31301735,25958787,3
+tanya_tian,25958787,4
+seail,25958787,3
+tatsu,25958787,3
+jermen,25958787,4
+vinkingking,25958787,5
+47004535,25958787,5
+51247678,25958787,3
+64881839,25958787,5
+tddsy,25958787,5
+Rosie0509,25958787,5
+42034078,25958787,5
+33604129,25958787,3
+claireqq,25958787,4
+Bonjour-Bee,25958787,3
+1121733,25958787,5
+hebesbaby,25958787,4
+xixia1038,25958787,5
+102889877,25958787,4
+136101337,25958787,5
+53272974,25958787,4
+nvq7Gin,25958787,5
+102099688,25958787,3
+49062387,25958787,4
+55800838,25958787,4
+125040121,25958787,4
+vala1994,25958787,5
+124854750,25958787,5
+JamesPound,25958787,3
+48787115,25958787,5
+59554628,25958787,4
+2700292,25958787,3
+lolitazly,25958787,3
+pangjiansheng,25958787,4
+1651178,25958787,4
+3330332,25958787,5
+123593065,25958787,5
+56435930,25958787,3
+68853437,25958787,3
+visss,26289144,4
+81120462,26289144,5
+54296399,26289144,2
+47029323,26289144,4
+2733941,26289144,3
+134520468,26289144,4
+135939677,26289144,4
+66794775,26289144,5
+34040552,26289144,3
+66333721,26289144,3
+78728709,26289144,3
+128233338,26289144,5
+58722109,26289144,3
+51944238,26289144,4
+37628489,26289144,2
+136663776,26289144,2
+108573841,26289144,4
+crystal555,26289144,3
+56807111,26289144,3
+136513131,26289144,5
+136513131,26289144,5
+61599793,26289144,5
+shane90,26289144,4
+1468448,26289144,-1
+42897286,26289144,3
+53920626,26289144,4
+91079375,26289144,5
+53082027,26289144,4
+63277654,26289144,3
+gailsylee,26289144,5
+55309786,26289144,3
+xuzhezhen,26289144,5
+darkbob,26289144,2
+66803034,26289144,5
+eefee,26289144,4
+44923935,26289144,1
+masoeur,26289144,3
+70998603,26289144,3
+59546672,26289144,4
+131380048,26289144,4
+misssui,26289144,3
+127283930,26289144,4
+36295870,26289144,5
+63556085,26289144,3
+zhangcj1224,26289144,3
+41943699,26289144,4
+60317509,26289144,3
+58484410,26289144,5
+63192405,26289144,4
+hey.nanzhuang,26289144,3
+71467734,26289144,4
+50087846,26289144,3
+lyivy9032,26289144,3
+134022408,26289144,3
+101849745,26289144,2
+fanqiuyan,26289144,4
+nancyoyx,26289144,3
+TheSilvia,26289144,4
+134719707,26289144,4
+pupuxi,26289144,3
+pupuxi,26289144,3
+57827177,26289144,4
+65053075,26289144,4
+4582130,26289144,4
+qiaotengfei,26289144,4
+91658333,26289144,4
+50764499,26289144,4
+128131396,26289144,3
+sirius_zhang,26289144,3
+4065256,26289144,4
+61965548,26289144,3
+2889153,26289144,1
+4251338,26289144,2
+92068041,26289144,4
+krisleung,26289144,3
+4916602,26289144,5
+aisa395,26289144,3
+littleruo,26289144,4
+43828485,26289144,3
+solo-ariel,26289144,3
+solo-ariel,26289144,3
+nowaysis,26289144,4
+47567801,26289144,5
+moushenglingyu,26289144,3
+131254424,26289144,4
+57880300,26289144,2
+RizMi,26289144,4
+32539484,26289144,4
+46067806,26289144,3
+katrinaguo,26289144,4
+mknow,26289144,3
+131550413,26289144,4
+mingyuejiang,26289144,3
+43960066,26289144,2
+53002120,26289144,3
+56306700,26289144,5
+102166582,26289144,3
+xiying,26289144,2
+8917967,26289144,3
+50065002,26289144,4
+68238165,26289144,3
+92061156,26289144,2
+96490824,26289144,4
+82815159,26289144,5
+misslaw,26289144,4
+nousi,26289144,3
+4624601,26289144,3
+58863257,26289144,2
+68630000,26289144,3
+53623002,26289144,3
+63316789,26289144,5
+liuyingxin_1984,26289144,3
+76352627,26289144,4
+43763470,26289144,4
+44537655,26289144,5
+87727642,26289144,4
+130934404,26289144,3
+4448887,26289144,4
+ilovesnoopy3,26289144,3
+45108609,26289144,1
+3248654,26289144,3
+Thrloverock,26289144,5
+lesliesunny,26289144,5
+jinying,26289144,3
+63296396,26289144,5
+61683482,26289144,3
+44326808,26289144,4
+134644116,26289144,4
+59341748,26289144,5
+lleytonia,26289144,-1
+lmyandlmy,26289144,-1
+vivichris,26289144,3
+70741788,26289144,1
+39728715,26289144,2
+8195087,26289144,1
+46484046,26289144,5
+li_chiao_chieh,26289144,3
+ZWJ1996716,26289144,4
+45595952,26289144,4
+57968412,26289144,5
+53027731,26289144,4
+36664394,26289144,4
+violalululu,26289144,3
+84745831,26289144,4
+DCLclover,26289144,4
+51483335,26289144,3
+krugwoman,26289144,4
+125408909,26289144,4
+42713356,26289144,4
+135715919,26289144,4
+jvilin,26289144,5
+101978260,26289144,3
+garlic,26289144,5
+81446902,26289144,4
+wenroubuzhu,26289144,4
+101026674,26289144,3
+huangjiaju8,26289144,5
+nana19,26289144,4
+54327177,26289144,4
+elika_su,26289144,4
+70006917,26289144,4
+6186981,26289144,3
+50307120,26289144,3
+68991888,26289144,5
+43817219,26289144,3
+82926620,26289144,3
+3772330,26289144,3
+xixi0508,26289144,3
+63888881,26289144,4
+44045443,26289144,3
+czdjl,26289144,1
+68715300,26289144,5
+61781616,26289144,3
+60987007,26289144,4
+53319371,26289144,5
+64297776,26289144,5
+82216412,26289144,3
+106548711,26289144,3
+gudahan,26289144,3
+flyingwhale,26289144,3
+64520464,26289144,4
+2593614,26289144,5
+1211087,26289144,2
+idaisylife,26289144,2
+goyankeesgo,26289144,4
+yuyourongyan,26289144,4
+1943610,26289144,4
+seekingant,26289144,3
+33064414,26289144,5
+61263965,26289144,4
+guoxiaoheng,26289144,3
+59100232,26289144,3
+1380204,26289144,3
+rarelyzero,26289144,4
+mspengmei,26289144,4
+130708862,26289144,5
+42819228,26289144,4
+35586598,26289144,4
+73281520,26289144,5
+sym1001,26289144,1
+54202610,26289144,5
+58941553,26289144,4
+86912377,26289144,3
+ducklucy,26289144,4
+elemicha,26289144,3
+paranoid_0,26289144,3
+4900400,26289144,5
+55990850,26289144,3
+53858466,26289144,4
+74973391,26289144,2
+40073195,26289144,5
+55606448,26289144,5
+54112368,26289144,3
+48514298,26289144,4
+122587004,26289144,3
+gonglingsu,26289144,4
+94276302,26289144,4
+56810105,26289144,4
+60595685,26289144,5
+84267223,26289144,3
+eternityyuli,26289144,4
+133088458,26289144,3
+43888841,26289144,4
+69948545,26289144,3
+54984584,26289144,2
+snowyhowe,26289144,2
+52444506,26289144,4
+chelsea_baker,26289144,5
+74612926,26289144,4
+116531386,26289144,3
+mxe,26289144,3
+easonsuu,26289144,3
+66233315,26289144,2
+53971035,26289144,5
+102852145,26289144,4
+58466235,26289144,3
+61157800,26289144,4
+97674151,26289144,3
+66424224,26289144,4
+29749454,26289144,3
+gogoxiaojie,26289144,5
+49493716,26289144,3
+61868440,26289144,3
+35905879,26289144,5
+129775647,26289144,3
+goodbyemagi,26289144,4
+123097597,26289144,4
+52816310,26289144,2
+53632529,26289144,4
+petterzhang,26289144,2
+57122585,26289144,5
+yizhao,26289144,3
+cielliu,26289144,5
+arrowkey,26289144,3
+dearjan,26289144,4
+120735552,26289144,5
+102604927,26289144,5
+49229485,26289144,3
+33404561,26289144,-1
+50195547,26289144,3
+fanlihero,26289144,3
+KiD-KiM,26289144,5
+34507934,26289144,4
+3489590,26289144,3
+xd880820,26289144,5
+39463332,26289144,5
+79411650,26289144,5
+angelikahh,26289144,3
+45125292,26289144,5
+41752920,26289144,4
+53959125,26289144,5
+dssunshineer,26289144,3
+45580337,26289144,4
+cfaye,26289144,4
+54703119,26289144,4
+adi,26289144,3
+75259919,26289144,4
+49443522,26289144,5
+Adrift_eternity,26289144,2
+67614447,26289144,3
+miaoyan,26289144,3
+happytimeinmay,26289144,5
+92372717,26289144,3
+celineYY,26289144,3
+49064325,26289144,5
+64248782,26289144,4
+fredakaizokuban,26289144,3
+MeloTheFisher,26289144,3
+56493073,26289144,3
+65189939,26289144,1
+coffeejikou,26289144,2
+4106534,26289144,4
+nbpurple,26289144,2
+62820782,26289144,4
+wuyunoy,26289144,3
+134399469,26289144,3
+39543044,26289144,4
+3582364,26289144,5
+63105886,26289144,3
+28308658,26289144,4
+63105886,26289144,3
+28308658,26289144,4
+Olivia4real,26289144,3
+deepseashell,26289144,4
+67877483,26289144,3
+49210030,26289144,5
+3565406,26289144,3
+58083000,26289144,4
+lcc328,26289144,3
+magiclj99,26289144,5
+64094614,26289144,4
+56492163,26289144,4
+53275472,26289144,4
+53227132,26289144,4
+54334991,26289144,3
+Amy_L,26289144,4
+46287830,26289144,-1
+happytogethim,26289144,-1
+119929270,26289144,3
+3521983,26289144,4
+25750294,26289144,4
+70954003,26289144,4
+zuiaidashanghai,26289144,5
+57305104,26289144,3
+zhaohanyue,26289144,4
+85135780,26289144,5
+121891731,26289144,5
+45819377,26289144,5
+79852634,26289144,3
+standby-,26289144,4
+109220853,26289144,4
+65486346,26289144,3
+lillianbehappy,26289144,5
+45929722,26289144,4
+46574467,26289144,4
+52436913,26289144,5
+52790131,26289144,3
+67554151,26289144,4
+Young.forU,26289144,3
+48102959,26289144,-1
+80028681,26289144,3
+84825444,26289144,3
+122079973,26289144,2
+OldButNaive,26289144,3
+117007812,26289144,4
+tomelephant,26289144,3
+sona302,26289144,3
+58023093,26289144,4
+68580898,26289144,4
+LauraLi1989,26289144,3
+78923364,26289144,4
+3341865,26289144,4
+77586983,26289144,3
+malu,26289144,3
+ever4ever,26289144,5
+65339931,26289144,4
+67019496,26289144,3
+nanxisunny0514,26289144,5
+137434446,26289144,4
+mainemay,26289144,3
+91277792,26289144,4
+79558591,26289144,3
+35861398,26289144,5
+136668262,26289144,2
+3533238,26289144,4
+rain282453,26289144,4
+50692984,26289144,3
+45417298,26289144,4
+PrinceAlbert,26289144,4
+huangzhirong,26289144,3
+milamiyaff,26289144,3
+61434887,26289144,2
+53942242,26289144,1
+89556674,26289144,3
+xiaokuisunshine,26289144,4
+60867302,26289144,5
+64760327,26289144,3
+137479208,26289144,3
+3812152,26289144,-1
+forever4me,26289144,5
+57017828,26289144,3
+lily-monica,26289144,4
+64287254,26289144,5
+48048904,26289144,3
+60164183,26289144,4
+Caijiajian,26289144,4
+51663220,26289144,3
+128012079,26289144,5
+52927993,26289144,3
+46126259,26289144,4
+60768165,26289144,1
+127048108,26289144,4
+3812517,26289144,5
+68364127,26289144,2
+128563651,26289144,2
+61640481,26289144,4
+sky12,26289144,4
+120892030,26289144,4
+56128547,26289144,4
+130656955,26289144,5
+130656955,26289144,5
+53758084,26289144,4
+72120533,26289144,4
+fishgor,26289144,3
+evergreeen,26289144,4
+cynclarac,26289144,4
+38228503,26289144,4
+135138287,26289144,5
+101612172,26289144,3
+67669143,26289144,4
+LuthienLee,26289144,3
+66339259,26289144,3
+44150702,26289144,4
+70238336,26289144,5
+42877995,26289144,4
+xunnn,26289144,4
+104427856,26289144,5
+57673827,26289144,4
+63856676,26289144,4
+76613301,26289144,4
+sansu_fighting,26289144,3
+20719866,26289144,3
+114503696,26289144,5
+57248288,26289144,5
+69976018,26289144,4
+summerme,26289144,5
+62294130,26289144,5
+46697808,26289144,4
+wluming,26289144,5
+113345841,26289144,3
+79322417,26289144,4
+135571688,26289144,4
+53300409,26289144,3
+gegechenguang,26289144,3
+50657770,26289144,3
+57163160,26289144,3
+P--A,26289144,5
+28272719,26289144,5
+2178609,26289144,5
+overtherain,26289144,-1
+129553485,26289144,5
+4165287,26289144,5
+95458643,26289144,5
+46459211,26289144,-1
+57874874,26289144,5
+128173263,26289144,3
+45862332,26289144,4
+sun-sun-emma,26289144,-1
+50875593,26289144,3
+41293260,26289144,5
+68630098,26289144,4
+55767927,26289144,5
+137874424,26289144,4
+49995550,26289144,5
+62578249,26289144,3
+76693875,26289144,-1
+88660010,26289144,5
+62157854,26289144,4
+sosang,26289144,4
+66055788,26289144,5
+4286666,26289144,4
+50240878,26289144,4
+46879309,26289144,5
+61886291,26289144,2
+1225901,26289144,3
+Darkkid,26289144,4
+49104566,26289144,5
+3641874,26289144,4
+56666764,26289144,3
+idevin,26289144,3
+126192589,26289144,3
+WuHuang5719,26289144,4
+yuanzedong,26289144,3
+62688110,26289144,3
+bukuwanzi,26289144,4
+51945032,26289144,3
+tzxule,26289144,4
+1159386,26289144,-1
+11189422,26289144,4
+65072304,26289144,4
+vaesunshinesuns,26289144,-1
+60000794,26289144,4
+Zhizhiye,26289144,4
+happen23,26289144,5
+55943262,26289144,3
+kaxidou,26289144,3
+65415290,26289144,5
+31102423,26289144,3
+nuanjue1224,26289144,4
+63457703,26289144,4
+65808735,26289144,4
+jrevolution,26289144,4
+Swallow0908,26289144,3
+Ryan.cm,26289144,4
+52070204,26289144,5
+103197916,26289144,4
+RenoTT,26289144,5
+1450381,26289144,5
+51619000,26289144,5
+53484529,26289144,3
+aricahuang,26289144,2
+46315141,26289144,3
+50404313,26289144,4
+137267477,26289144,5
+58082536,26289144,4
+naocanmaoer,26289144,4
+137793572,26289144,4
+1991085,26289144,4
+AmoH,26289144,4
+66341871,26289144,4
+59968700,26289144,3
+99340754,26289144,-1
+137725931,26289144,2
+43542523,26289144,3
+trysta_lyu,26289144,4
+124444264,26289144,4
+Heaterh,26289144,4
+50575752,26289144,4
+4279038,26289144,3
+58635910,26289144,4
+137555231,26289144,4
+75445619,26289144,2
+133318145,26289144,5
+xiaozhuli,26289144,1
+137353380,26289144,2
+49247233,26289144,3
+51536951,26289144,2
+tanxiaole,26289144,4
+134505975,26289144,3
+53883791,26289144,4
+suxiaoqian007,26289144,4
+48635228,26289144,5
+110551098,26289144,4
+54432513,26289144,4
+122645096,26289144,5
+Pinnsvin,26289144,3
+64555870,26289144,4
+yubin8725,26289144,4
+xuyangran,26289144,3
+47242205,26289144,4
+48686910,26289144,3
+2848557,26289144,3
+90027949,26289144,3
+lillia,26289144,1
+wwqyaya,26289144,5
+yangyang711,26289144,5
+87910708,26289144,5
+jaens,26289144,4
+bettersnail,26289144,-1
+veiko,26289144,4
+hou-z,26289144,3
+135330943,26289144,3
+redmist,26289144,5
+119611672,26289144,5
+81504290,26289144,5
+123111535,26289144,3
+43683389,26289144,5
+61780650,26289144,5
+137438186,26289144,5
+A-M49,26289144,2
+28465700,26289144,4
+yoan90,26289144,3
+133499294,26289144,4
+52269289,26289144,3
+49927030,26289144,4
+129616612,26289144,4
+6915068,26289144,4
+71938024,26289144,2
+115623119,26289144,3
+34115667,26289144,4
+125282375,26289144,4
+moonorz,26289144,4
+57289722,26289144,5
+40517102,26289144,5
+130438496,26289144,5
+wandou880611,26289144,3
+pangjiansheng,26289144,3
+34580337,26289144,4
+53303018,26289144,3
+121230071,26289144,4
+zhuyaoyao,26289144,3
+41560397,26289144,2
+62420861,26289144,4
+57272509,26289144,3
+69058007,26289144,4
+jijeelau,26289144,2
+137800980,26289144,3
+130154428,26289144,2
+52298907,26289144,3
+46337000,26289144,4
+51479265,26289144,5
+80757193,26289144,3
+34348744,26289144,4
+40000417,26289144,4
+crawlings,26289144,5
+2161369,26289144,4
+zdiwen,26289144,5
+42567030,26289144,3
+133366820,26289144,3
+66620851,26289144,4
+4426496,26289144,5
+74601834,26289144,5
+lrj1908,26289144,4
+Sally327,26289144,2
+103572835,26289144,4
+46552152,26289144,5
+78127436,26289144,-1
+feierdevil,26289144,4
+x-inter,26289144,3
+49188095,26289144,4
+124618760,26289144,4
+48502563,26289144,4
+1454087,26289144,4
+44356747,26289144,4
+48444274,26289144,-1
+49074527,26289144,2
+62518407,26289144,4
+tanntann,26289144,3
+sunyangchina,26289144,3
+128269653,26289144,4
+128269653,26289144,4
+59967469,26289144,4
+83621117,26289144,4
+53823312,26289144,4
+33894800,26289144,5
+136957081,26289144,4
+edisonme,26289144,3
+crazybitch08,26289144,5
+bloody,26289144,3
+zhyle,26289144,5
+62764426,26289144,4
+kamorimori,26289144,3
+52068926,26289144,3
+34990334,26289144,5
+49574374,26289144,4
+98870791,26289144,4
+92579510,26289144,3
+57742250,26289144,4
+lollipopthen,26289144,3
+arun1019,26289144,5
+115728568,26289144,5
+onetime,26289144,2
+memoricry,26289144,5
+60010752,26289144,4
+47935255,26289144,4
+fymaywhite,26289144,5
+bubuan,26289144,4
+nirvana73,26289144,3
+51053103,26289144,4
+liux5520,26289144,3
+79330359,26289144,3
+54158411,26289144,4
+134850077,26289144,5
+IvyTsai,26289144,3
+geminehoo,26289144,3
+ananwang,26289144,2
+1712187,26289144,5
+46065421,26289144,5
+128083770,26289144,3
+LY0104,26289144,4
+LY0104,26289144,4
+50747542,26289144,5
+VISIONLENS,26289144,1
+134519666,26289144,4
+49068686,26289144,4
+4495255,26289144,3
+benben321,26289144,5
+47236193,26289144,5
+cy_H,26289144,3
+137794763,26289144,4
+59992323,26289144,5
+21139926,26289144,3
+4145186,26289144,3
+Stephanfan,26289144,5
+Anita_Seta,26289144,4
+137154715,26289144,3
+sunice1314,26289144,4
+46620424,26289144,3
+45837154,26289144,4
+dujianpeng,26289144,4
+yini100,26289144,3
+sai27,26289144,2
+49690364,26289144,4
+fiona_rocku,26289144,3
+136910570,26289144,4
+fallfallfalls,26289144,4
+69907281,26289144,4
+3640687,26289144,3
+46175639,26289144,2
+137409730,26289144,3
+gongmin1984,26289144,4
+133515574,26289144,4
+50198552,26289144,4
+vichyhchi,26289144,4
+134499641,26289144,3
+tsebb,26289144,2
+135230411,26289144,4
+92897764,26289144,4
+wanghaowen,26289144,3
+65159840,26289144,4
+49212817,26289144,5
+30218761,26289144,3
+55408154,26289144,3
+27432217,26289144,4
+dongdashan,26289144,4
+2055258,26289144,4
+jiangjiang1214,26289144,3
+76554051,26289144,3
+lindsay33,26289144,3
+68911927,26289144,5
+99372325,26289144,3
+69434657,26289144,4
+127972732,26289144,5
+66794531,26289144,5
+72712114,26289144,4
+unicornlarry,26289144,2
+137770410,26289144,4
+qq381525772,26289144,4
+88449331,26289144,4
+83746589,26289144,5
+69665263,26289144,3
+manyfish313,26289144,3
+yuni192,26289144,1
+91543549,26289144,4
+bingyansue,26289144,4
+76297198,26289144,4
+4021338,26289144,5
+logik,26289144,4
+wudongmian,26289144,4
+45884477,26289144,4
+51609142,26289144,5
+137075359,26289144,4
+8093121,26289144,3
+57656194,26289144,5
+28799281,26289144,4
+65358599,26289144,3
+51393445,26289144,4
+emma_er,26289144,5
+120372865,26289144,5
+zawlwyf,26289144,3
+zawlwyf,26289144,3
+60165139,26289144,5
+by-rain,26289144,2
+summer_rock,26289144,3
+55851508,26289144,5
+119953756,26289144,3
+2683262,26289144,4
+103780920,26289144,4
+rener,26289144,4
+136773683,26289144,5
+imblind,26289144,4
+131375082,26289144,5
+ki-jlp,26289144,-1
+chesty,26289144,4
+135416537,26289144,4
+46288685,26289144,3
+2560827,26289144,5
+134958534,26289144,4
+chewick,26289144,5
+landoll,26289144,3
+63877055,26289144,3
+ochy,26289144,5
+86705212,26289144,4
+3669366,26289144,5
+syveen,26289144,3
+51366710,26289144,4
+35115788,26289144,5
+120421429,26289144,4
+MoneyJoneway,26289144,4
+shuchang521,26289144,5
+1367998,26289144,4
+53119283,26289144,4
+75165533,26289144,5
+4315193,26289144,5
+82306803,26289144,4
+12360363,26289144,4
+Dis-,26289144,5
+54166375,26289144,5
+135928273,26289144,-1
+81744133,26289144,5
+jianchen810,26289144,4
+66005272,26289144,4
+4185694,26289144,4
+58911521,26289144,1
+danny1105,26289144,5
+44745366,26289144,4
+43329275,26289144,-1
+134383270,26289144,4
+singlesinger,26289144,-1
+mia777,26289144,2
+125055300,26289144,4
+67649980,26289144,3
+48983448,26289144,3
+3280103,26289144,4
+75209751,26289144,5
+75727476,26289144,2
+4586959,26289144,3
+3467669,26289144,4
+61541011,26289144,-1
+wuchen11,26289144,3
+YUE0825,26289144,3
+60858827,26289144,2
+92962162,26289144,4
+50951864,26289144,3
+61784637,26289144,4
+91337551,26289144,4
+5191781,26289144,5
+80945094,26289144,5
+3901159,26289144,4
+4434079,26289144,4
+2724809,26289144,3
+114388023,26289144,5
+1366945,26289144,4
+42375246,26289144,4
+50563198,26289144,5
+1296334,26289144,4
+AstridL411,26289144,1
+lanzhan,26289144,3
+61235459,26289144,4
+44710286,26289144,4
+wen1011,26289144,4
+52573795,26289144,5
+johnkychen,26289144,5
+1821069,26289144,2
+55951555,26289144,5
+47814118,26289144,4
+52705405,26289144,3
+51105174,26289144,4
+flpbb,26289144,5
+55942878,26289144,3
+superbin1014,26289144,5
+simonfishing,26289144,4
+77434550,26289144,4
+66794476,26289144,3
+4341892,26289144,2
+1096614,26289144,4
+1724560,26289144,4
+edward2wong,26289144,4
+detectivemmhy,26289144,3
+beckhacong,26289144,4
+134499494,26289144,4
+ringringlee21,26289144,4
+47671749,26289144,3
+43590001,26289144,3
+33822786,26289144,3
+crazydj,26289144,5
+HelenFeng623,26289144,5
+73075857,26289144,4
+102390671,26289144,3
+mulittlerice,26289144,-1
+131358078,26289144,3
+130751519,26289144,4
+73272016,26289144,3
+49721724,26289144,3
+57991554,26289144,5
+68206077,26289144,5
+53523221,26289144,3
+34723626,26289144,4
+68757762,26289144,4
+QuincyLiang,26289144,1
+camia,26289144,4
+jjcarolyn0609,26289144,3
+53541340,26289144,3
+26475045,26289144,2
+43625639,26289144,4
+133380603,26289144,3
+66256165,26289144,1
+sunvee,26289144,5
+79053164,26289144,2
+129505686,26289144,4
+abbynmagic,26289144,4
+3416468,26289144,4
+78528987,26289144,3
+53795550,26289144,3
+63463850,26289144,4
+98956266,26289144,3
+curlyfox,26289144,4
+83428425,26289144,3
+77291958,26289144,4
+ajiuyo,26289144,4
+ajiuyo,26289144,4
+127037658,26289144,4
+luvhardy,26289144,4
+3715304,26289144,2
+71011202,26289144,4
+45703382,26289144,4
+55322653,26289144,5
+ann0518,26289144,3
+woshizengjiujiu,26289144,4
+kongkong7,26289144,4
+50721099,26289144,4
+rainsun0607,26289144,3
+panda_sissi,26289144,5
+36624734,26289144,1
+yaoyayue,26289144,3
+4639862,26289144,5
+64875949,26289144,4
+133095436,26289144,2
+52421707,26289144,4
+51491347,26289144,4
+137072636,26289144,4
+75923053,26289144,4
+69685647,26289144,3
+81628764,26289144,4
+simonly,26289144,3
+120911789,26289144,4
+54715138,26289144,3
+plonly,26289144,2
+50443968,26289144,4
+56070920,26289144,5
+97570215,26289144,4
+67247084,26289144,4
+38576814,26289144,4
+70323785,26289144,4
+121768645,26289144,4
+80395827,26289144,5
+ben0813,26289144,4
+dashdot,26289144,5
+baby861708,26289144,4
+cieldingdong,26289144,4
+2565519,26289144,-1
+Eva.pisces,26289144,5
+53045068,26289144,4
+48888769,26289144,1
+28087184,26289144,5
+melody.wong,26289144,5
+59385291,26289144,1
+manistory,26289144,4
+69124031,26289144,5
+helloangel_2009,26289144,4
+21056454,26289144,4
+fan_1220,26289144,3
+Yang0531,26289144,-1
+97134404,26289144,4
+36100413,26289144,4
+4298839,26289144,2
+80298244,26289144,4
+44013526,26289144,4
+51248464,26289144,3
+44949504,26289144,4
+gxwendy1221,26289144,5
+59244056,26289144,3
+58487163,26289144,4
+94787559,26289144,5
+7796695,26289144,2
+121236294,26289144,3
+73658045,26289144,3
+63120961,26289144,4
+61775265,26289144,5
+64902103,26289144,3
+69878645,26289144,5
+hshl2011,26289144,-1
+1486502,26289144,3
+jacy_huihui,26289144,3
+76552950,26289144,4
+52084130,26289144,2
+51835495,26289144,3
+120194903,26289144,4
+58945423,26289144,4
+xjun,26289144,4
+zhanghui1988,26289144,4
+92140787,26289144,3
+137449600,26289144,3
+chickJzi,26289144,4
+70534967,26289144,4
+92866359,26289144,4
+104710659,26289144,3
+49448182,26289144,4
+azurepeach,26289144,3
+hiyejia,26289144,3
+BALENO,26289144,3
+74092219,26289144,5
+51078000,26289144,2
+136727796,26289144,4
+84218397,26289144,2
+4627411,26289144,3
+128955983,26289144,4
+33679145,26289144,3
+51787772,26289144,4
+34882816,26289144,-1
+exy.want,26289144,3
+114082343,26289144,5
+lubolin,26289144,4
+tuirt,26289144,3
+64035077,26289144,3
+119487629,26289144,3
+134815283,26289144,2
+36638409,26289144,3
+40943175,26289144,5
+green_rock,26289144,3
+llxx0000,26289144,5
+3671869,26289144,3
+100297843,26289144,4
+4711748,26289144,2
+mjdw,26289144,5
+108296832,26289144,4
+oceanmumu,26289144,3
+paracel,26289144,4
+128946011,26289144,4
+1849096,26289144,4
+lotusmomo,26289144,4
+96758494,26289144,4
+hihai,26289144,5
+75117514,26289144,5
+132499191,26289144,4
+52247790,26289144,3
+127282214,26289144,4
+Jechina,26289144,5
+4310423,26289144,5
+seizeup,26289144,3
+buddhajump,26289144,2
+137342674,26289144,4
+57785589,26289144,3
+44531954,26289144,4
+2687910,26289144,-1
+102715487,26289144,4
+48486926,26289144,3
+59567796,26289144,3
+67740691,26289144,3
+70605081,26289144,5
+Windbroken,26289144,3
+OldYuan,26289144,3
+huachai1021,26289144,1
+69068532,26289144,4
+87810000,26289144,5
+76147632,26289144,5
+xyq1364,26289144,-1
+2541348,26289144,5
+37586252,26289144,3
+zizaitianqi,26289144,4
+68551392,26289144,5
+MeOxygen,26289144,4
+60880119,26289144,5
+56095656,26289144,4
+moxmo,26289144,4
+Estherfsr,26289144,3
+122821039,26289144,3
+papa1968,26289144,4
+1606230,26289144,4
+46375776,26289144,2
+wayman_lin,26289144,3
+stormsuck,26289144,4
+lovedujuan,26289144,2
+Update,26289144,3
+81750884,26289144,3
+67878886,26289144,3
+seven94,26289144,4
+65207565,26289144,4
+57058120,26289144,5
+lancieee,26289144,4
+94976163,26289144,3
+horadric,26289144,3
+61697290,26289144,2
+75493093,26289144,4
+38452436,26289144,-1
+46309477,26289144,4
+3291187,26289144,4
+8073151,26289144,4
+57697460,26289144,5
+freedom9611,26289144,3
+freedom9611,26289144,3
+69938073,26289144,4
+kingofjungleo,26289144,3
+ilovejay79118,26289144,4
+65060690,26289144,4
+121414792,26289144,-1
+53616337,26289144,5
+69679017,26289144,3
+wrx1203,26289144,4
+31988500,26289144,3
+nkfisher,26289144,4
+35007149,26289144,-1
+67181207,26289144,4
+99022280,26289144,4
+57477748,26289144,1
+multiki,26289144,4
+79272694,26289144,3
+25973603,26289144,4
+49059976,26289144,2
+4239821,26289144,3
+51217919,26289144,-1
+18360610,26289144,4
+53477033,26289144,3
+2752525,26289144,4
+71039483,26289144,3
+53459682,26289144,4
+1795295,26289144,3
+119084646,26289144,4
+nicehoney,26289144,4
+135074620,26289144,4
+72220959,26289144,3
+55969190,26289144,5
+61739173,26289144,4
+59975190,26289144,3
+134580402,26289144,3
+51778923,26289144,3
+55494665,26289144,4
+nash564220722,26289144,4
+ddxiaohuli,26289144,2
+130897544,26289144,4
+49661340,26289144,-1
+66985441,26289144,5
+yuantown,26289144,3
+66456284,26289144,4
+lo-li-ta,26289144,3
+73085468,26289144,4
+64751584,26289144,4
+108816754,26289144,4
+81944836,26289144,2
+chandler821,26289144,3
+53094431,26289144,3
+77111727,26289144,3
+33411804,26289144,4
+120885239,26289144,4
+54928183,26289144,5
+83457939,26289144,1
+71273423,26289144,2
+89219788,26289144,-1
+35885589,26289144,5
+funfunjoy,26289144,4
+funfunjoy,26289144,4
+46707495,26289144,4
+57630254,26289144,3
+36285360,26289144,-1
+89436393,26289144,4
+61300490,26289144,3
+30067864,26289144,-1
+50790879,26289144,3
+bLack.N.bLue,26289144,3
+97321848,26289144,2
+cedric99,26289144,3
+55835825,26289144,4
+65871774,26289144,4
+xuduojiao,26289144,3
+77048663,26289144,5
+71376133,26289144,2
+41417844,26289144,4
+3438956,26289144,3
+47737561,26289144,4
+myidlpl,26289144,5
+ideal.yue,26289144,4
+69034313,26289144,3
+127901534,26289144,4
+57583046,26289144,4
+114504281,26289144,5
+56143987,26289144,5
+29875571,26289144,3
+84654420,26289144,4
+gypsophilia,26289144,5
+55296709,26289144,4
+124483467,26289144,4
+3538505,26289144,4
+1462465,26289144,3
+13129748,26289144,2
+56568243,26289144,4
+54203614,26289144,5
+Crispy,26289144,4
+133970603,26289144,3
+137398525,26289144,4
+49348513,26289144,1
+mikesun,26289144,2
+68239286,26289144,5
+62274965,26289144,2
+57612127,26289144,5
+135101430,26289144,4
+135470815,26289144,5
+95264069,26289144,4
+31757691,26289144,4
+RockDai,26289144,2
+58318026,26289144,4
+10277954,26289144,5
+3511663,26289144,3
+135302519,26289144,4
+98956225,26289144,3
+126577157,26289144,4
+54857045,26289144,-1
+65136878,26289144,2
+57761188,26289144,3
+Charlotte-e,26289144,4
+4531040,26289144,3
+72098495,26289144,4
+75677736,26289144,4
+1314588,26289144,4
+99040212,26289144,5
+130557749,26289144,3
+60095133,26289144,3
+47684731,26289144,3
+53316406,26289144,4
+106260389,26289144,4
+86193611,26289144,5
+2744950,26289144,3
+38638979,26289144,4
+2717983,26289144,3
+55917467,26289144,4
+43335184,26289144,3
+132790620,26289144,4
+64494087,26289144,4
+62531945,26289144,3
+48264121,26289144,3
+48247472,26289144,3
+102911668,26289144,5
+63399051,26289144,4
+83389168,26289144,4
+79823689,26289144,4
+fallwood,26289144,4
+133540268,26289144,4
+43682942,26289144,5
+59414653,26289144,4
+101677278,26289144,1
+51413859,26289144,4
+137447064,26289144,5
+124461073,26289144,4
+100639145,26289144,3
+73263650,26289144,4
+61620329,26289144,5
+1448740,26289144,3
+yumu2015,26289144,5
+95298147,26289144,4
+51066996,26289144,4
+47646074,26289144,5
+annehere,26289144,2
+79121353,26289144,1
+42796272,26289144,4
+64285000,26289144,4
+58338006,26289144,4
+64951264,26289144,5
+63383511,26289144,4
+122070744,26289144,3
+apple4moon,26289144,3
+56980748,26289144,3
+100841051,26289144,4
+93823911,26289144,4
+63953028,26289144,3
+68190565,26289144,5
+37567693,26289144,3
+114813775,26289144,-1
+43640903,26289144,4
+137419815,26289144,3
+55435121,26289144,2
+47935001,26289144,4
+131749314,26289144,4
+konec,26289144,3
+51445817,26289144,3
+seasunflower,26289144,4
+53789840,26289144,3
+77307161,26289144,4
+sunnyhk,26289144,3
+31917732,26289144,2
+46458041,26289144,2
+3502559,26289144,4
+120687136,26289144,3
+26459598,26289144,4
+49266863,26289144,3
+rabeix,26289144,4
+63626048,26289144,3
+60515729,26289144,4
+Rocky5821,26289144,3
+47701435,26289144,1
+125282020,26289144,5
+daffydj,26289144,5
+luomengyuan,26289144,3
+viviyin,26289144,3
+42298202,26289144,5
+79002821,26289144,5
+71917067,26289144,4
+22531064,26289144,3
+131187465,26289144,4
+26812348,26289144,5
+nikitaaaaaa,26289144,5
+67943333,26289144,5
+71132041,26289144,5
+134097030,26289144,3
+82075343,26289144,4
+Fay...,26289144,-1
+littlepeace,26289144,4
+1585753,26289144,3
+44045127,26289144,2
+freedomtravell,26289144,3
+91851250,26289144,4
+29398491,26289144,4
+101355799,26289144,3
+HanaSakuragi,26289144,5
+justforcrazy,26289144,4
+53454251,26289144,4
+thimve,26289144,4
+49115725,26289144,2
+36658060,26289144,4
+fanglingna,26289144,1
+69255956,26289144,5
+aoliaoli,26289144,5
+124611894,26289144,5
+42295841,26289144,5
+fishzdream,26289144,4
+60072437,26289144,3
+Rachel.L,26289144,2
+yancm,26289144,4
+123739111,26289144,3
+82519292,26289144,2
+liangfangfang,26289144,5
+47448827,26289144,3
+122008020,26289144,4
+135247004,26289144,3
+Ziya,26289144,3
+mvpp,26289144,2
+41743713,26289144,3
+36122115,26289144,5
+104091868,26289144,3
+88313940,26289144,5
+mimosa_tara,26289144,-1
+39404458,26289144,2
+121633982,26289144,4
+58732598,26289144,4
+27132169,26289144,5
+61016091,26289144,5
+69857353,26289144,3
+57260613,26289144,1
+36580588,26289144,3
+StanleyCheung,26289144,3
+6711612,26289144,4
+1465243,26289144,5
+mo719125078,26289144,4
+eciah,26289144,4
+35967033,26289144,3
+47123644,26289144,3
+25282878,26289144,3
+1710746,26289144,3
+43765762,26289144,3
+81520286,26289144,5
+sunky10000,26289144,5
+1600664,26289144,3
+43467166,26289144,4
+74117962,26289144,4
+say52,26289144,-1
+46534490,26289144,4
+Faywish,26289144,-1
+flyflyflyfly,26289144,3
+46269002,26289144,4
+2578076,26289144,4
+23802219,26289144,3
+37879706,26289144,2
+102944356,26289144,3
+44007156,26289144,5
+28738686,26289144,2
+rainhao,26289144,4
+48172193,26289144,4
+poselen,26289144,5
+honglu,26289144,4
+78793402,26289144,5
+yushouheng,26289144,5
+gloria_sxt,26289144,4
+116271293,26289144,3
+2119698,26289144,3
+2066770,26289144,5
+83630621,26289144,5
+39192898,26289144,3
+60475494,26289144,4
+lichade,26289144,5
+carmen8212,26289144,4
+58168997,26289144,-1
+88658178,26289144,3
+24265115,26289144,5
+49620873,26289144,3
+134372146,26289144,3
+1268010,26289144,4
+73084756,26289144,4
+104399747,26289144,4
+irafighting,26289144,5
+71016752,26289144,3
+luobozhazi,26289144,3
+4456560,26289144,4
+2293401,26289144,1
+54780669,26289144,2
+68549464,26289144,4
+kiki0616,26289144,3
+45461182,26289144,5
+46098403,26289144,5
+purplemoon,26289144,3
+73319989,26289144,4
+laowa,26289144,-1
+46068341,26289144,3
+71656334,26289144,5
+53485211,26289144,4
+vermouthsama,26289144,4
+137340242,26289144,3
+70308638,26289144,5
+uahneqbu,26289144,3
+59762804,26289144,3
+sheldonkao,26289144,3
+47181851,26289144,3
+84585238,26289144,4
+gintokiyin,26289144,5
+72413093,26289144,4
+1482191,26289144,3
+hecky,26289144,5
+58948627,26289144,5
+131465151,26289144,3
+huangzhn,26289144,4
+2586114,26289144,3
+84708478,26289144,4
+52463916,26289144,5
+121763910,26289144,4
+43621378,26289144,5
+me_dong,26289144,5
+79478187,26289144,3
+33691295,26289144,3
+136818696,26289144,2
+4614337,26289144,5
+68410719,26289144,3
+59908250,26289144,3
+130665937,26289144,2
+17307415,26289144,4
+46832158,26289144,4
+dayna,26289144,4
+57949707,26289144,3
+hsuhoffe,26289144,2
+3661691,26289144,3
+130116430,26289144,5
+neochao,26289144,4
+32475579,26289144,5
+zd342864648,26289144,5
+63071542,26289144,4
+72356597,26289144,3
+Ann-maojue,26289144,5
+4632833,26289144,2
+64716561,26289144,2
+xuanyushuo,26289144,4
+78364683,26289144,3
+68420280,26289144,3
+59069055,26289144,3
+cqingteng,26289144,5
+39670803,26289144,4
+4287326,26289144,3
+mulin_111,26289144,4
+130309969,26289144,4
+rttcat,26289144,4
+137325625,26289144,5
+42150092,26289144,4
+132321087,26289144,3
+83769444,26289144,2
+bigvincy,26289144,4
+luffyhan,26289144,5
+weixiaobao,26289144,5
+67916936,26289144,4
+130534487,26289144,3
+wxenia9189,26289144,5
+3742281,26289144,3
+onlyblue16,26289144,3
+aixuil,26289144,4
+cmyooxx,26289144,5
+3969292,26289144,1
+xuyuanchao37,26289144,1
+cecelucky,26289144,4
+Catecati,26289144,3
+compauline1010,26289144,5
+50400348,26289144,2
+kingflower,26289144,3
+51171341,26289144,3
+Yulia,26289144,4
+79573537,26289144,4
+kubrick311,26289144,2
+genger85,26289144,4
+95873636,26289144,5
+32359738,26289144,3
+kidddddding,26289144,5
+Zackbuks,26289144,5
+41220723,26289144,5
+1011562,26289144,4
+128569083,26289144,4
+47826669,26289144,4
+hetaodeyanjing,26289144,5
+66255170,26289144,5
+62638569,26289144,4
+3662890,26289144,5
+lovelyao,26289144,5
+1073807,26289144,4
+120448486,26289144,4
+amynic,26289144,4
+75485136,26289144,4
+dbsbks_wy,26289144,4
+59599997,26289144,1
+esparanza,26289144,4
+77423135,26289144,2
+66138271,26289144,4
+50383138,26289144,5
+74195289,26289144,4
+13307772,26289144,3
+zoezhangs,26289144,3
+ttv5,26289144,5
+58083474,26289144,5
+54345577,26289144,3
+Hope0105,26289144,3
+amelie-h-lin,26289144,3
+137297663,26289144,5
+53951936,26289144,5
+zhxyl,26289144,3
+suisuichen,26289144,5
+53951715,26289144,-1
+84210838,26289144,3
+zg1999,26289144,5
+123300382,26289144,5
+3680830,26289144,3
+131500618,26289144,4
+18746695,26289144,2
+30569827,26289144,4
+taxidriver1976,26289144,4
+137136099,26289144,5
+67148889,26289144,4
+4561356,26289144,3
+effy-s,26289144,4
+noodleno3,26289144,4
+89980809,26289144,5
+ravingrabbid,26289144,4
+58871831,26289144,3
+131205877,26289144,4
+130968034,26289144,4
+3802854,26289144,4
+132182241,26289144,4
+68679156,26289144,4
+havefunlovelife,26289144,5
+54983933,26289144,3
+48723605,26289144,3
+55418442,26289144,5
+64881520,26289144,4
+84949449,26289144,4
+cyjcandychan,26289144,3
+foradaisy,26289144,1
+EvelynWong0422,26289144,4
+graciealwaysbe,26289144,4
+49826646,26289144,4
+natsukinoheya,26289144,4
+CouplePZYCJ,26289144,4
+128902296,26289144,4
+liuningba,26289144,4
+121536434,26289144,4
+3923065,26289144,4
+121262498,26289144,4
+68642677,26289144,2
+102627576,26289144,4
+103189636,26289144,2
+Alone-2,26289144,5
+60020985,26289144,3
+killfanni,26289144,3
+77055604,26289144,4
+1104481,26289144,4
+4799139,26289144,5
+14406293,26289144,4
+99397835,26289144,3
+manymanyny,26289144,5
+3672180,26289144,4
+kiethope,26289144,2
+67745869,26289144,3
+71868009,26289144,4
+63658067,26289144,3
+69024575,26289144,1
+1747633,26289144,5
+45677857,26289144,4
+59593870,26289144,5
+48494874,26289144,5
+sevenvivid,26289144,4
+62308831,26289144,5
+41680643,26289144,3
+saint753,26289144,2
+135746994,26289144,5
+chunqiushangui,26289144,4
+99854366,26289144,3
+happysadop,26289144,5
+xiaoyufan569801,26289144,-1
+114548578,26289144,4
+59574331,26289144,5
+45754770,26289144,3
+64978865,26289144,4
+77089569,26289144,4
+74346176,26289144,5
+55596530,26289144,3
+3857210,26289144,4
+lrodin,26289144,3
+60997769,26289144,4
+112727081,26289144,4
+72155995,26289144,5
+13262103,26289144,5
+53476410,26289144,5
+58096357,26289144,2
+79936861,26289144,5
+84558178,26289144,4
+56052153,26289144,4
+mopean,26289144,4
+44473457,26289144,4
+61409715,26289144,4
+127619617,26289144,3
+shanghai827,26289144,4
+theshadow,26289144,3
+47052940,26289144,4
+52575839,26289144,5
+59982291,26289144,4
+130530674,26289144,5
+50957198,26289144,3
+65411912,26289144,5
+shoose2525,26289144,4
+3420320,26289144,4
+58596965,26289144,4
+130817915,26289144,4
+britpopsailor,26289144,2
+48313221,26289144,4
+catherined,26289144,4
+127870795,26289144,4
+122592912,26289144,4
+40725251,26289144,3
+41039099,26289144,4
+72430905,26289144,5
+134502817,26289144,5
+mattylam,26289144,4
+lanyuanxizhou,26289144,3
+40559472,26289144,4
+52166968,26289144,3
+10580504,26289144,4
+stonereader,26289144,3
+yuyouting,26289144,3
+61534352,26289144,3
+45962163,26289144,4
+127062843,26289144,4
+127062843,26289144,4
+54781167,26289144,5
+70487695,26289144,4
+136160725,26289144,5
+zoethree,26289144,3
+KissAlice,26289144,1
+136293291,26289144,-1
+51402564,26289144,5
+X_Tshirt,26289144,3
+ce-ce,26289144,4
+67759095,26289144,5
+131909298,26289144,3
+68550514,26289144,4
+137101396,26289144,4
+71102410,26289144,3
+wjferic,26289144,4
+1380828,26289144,3
+50773553,26289144,3
+SPIRITUA,26289144,3
+42656971,26289144,1
+69095785,26289144,4
+shirleyttt,26289144,-1
+kiteshady,26289144,4
+137206904,26289144,5
+barcabookworm,26289144,3
+122966703,26289144,3
+18166296,26289144,4
+43989910,26289144,3
+51462538,26289144,3
+57335774,26289144,4
+45575951,26289144,4
+68794405,26289144,3
+Raven730lovewys,26289144,4
+64430325,26289144,3
+88071858,26289144,4
+128188665,26289144,3
+philette,26289144,4
+88638997,26289144,5
+yadiel,26289144,4
+SIEMEN,26289144,4
+6260234,26289144,4
+115897834,26289144,4
+zhuzhenning,26289144,3
+52925465,26289144,2
+12198403,26289144,4
+129857538,26289144,4
+120627904,26289144,3
+79858645,26289144,3
+58580494,26289144,5
+3331579,26289144,3
+zhouruopei,26289144,3
+125007616,26289144,5
+AsukaCheung,26289144,5
+17827150,26289144,4
+4486712,26289144,3
+91430689,26289144,3
+136879375,26289144,4
+135753418,26289144,4
+62488679,26289144,5
+56017394,26289144,4
+daetou,26289144,3
+68550655,26289144,4
+89255071,26289144,3
+62290717,26289144,5
+71693752,26289144,3
+Bloodleee,26289144,4
+changlianlove,26289144,5
+95760379,26289144,1
+3107549,26289144,3
+zhouxiaoxian007,26289144,4
+gs21cn,26289144,3
+136867844,26289144,4
+65124913,26289144,4
+64219272,26289144,3
+42232123,26289144,-1
+luckmelon,26289144,3
+mrkingdom,26289144,4
+57516081,26289144,3
+2491799,26289144,3
+130589573,26289144,4
+timerainer,26289144,3
+46655241,26289144,4
+47786256,26289144,5
+miti32,26289144,3
+135194679,26289144,4
+tina220284,26289144,4
+64506068,26289144,3
+135850955,26289144,4
+53721065,26289144,2
+57780928,26289144,4
+63744362,26289144,5
+103242828,26289144,-1
+jyjyjyjyjyjyjy,26289144,2
+48828278,26289144,4
+53916327,26289144,4
+haojvv,26289144,3
+77131298,26289144,4
+wanderingizzie,26289144,5
+136988227,26289144,4
+yoonjae_,26289144,3
+yoonjae_,26289144,3
+64717864,26289144,3
+47549750,26289144,3
+34250438,26289144,-1
+4798832,26289144,3
+1626349,26289144,3
+56849080,26289144,4
+45964275,26289144,4
+104344457,26289144,4
+39421864,26289144,2
+Yangtze_Ann,26289144,-1
+55573490,26289144,3
+71899949,26289144,5
+3783132,26289144,4
+98538969,26289144,5
+128643809,26289144,4
+67536361,26289144,3
+127066563,26289144,3
+32981940,26289144,3
+chaud,26289144,5
+36930708,26289144,3
+3444801,26289144,3
+lizhiqiang127,26289144,3
+70996426,26289144,4
+60021385,26289144,4
+yazi3.15,26289144,4
+cokering,26289144,4
+54584141,26289144,-1
+60764482,26289144,-1
+yan7478,26289144,3
+81370093,26289144,5
+46004647,26289144,5
+anteruna,26289144,-1
+31622009,26289144,4
+64671145,26289144,-1
+137046543,26289144,1
+Jean_ho,26289144,3
+43786893,26289144,4
+48156038,26289144,4
+1110643,26289144,5
+1110643,26289144,5
+99598599,26289144,4
+superlawind,26289144,4
+3569090,26289144,5
+4155347,26289144,3
+oakhui,26289144,1
+127080746,26289144,4
+verachen,26289144,3
+wgutou,26289144,3
+wanglianglfs,26289144,5
+1460018,26289144,3
+firepr,26289144,4
+49003201,26289144,4
+64272318,26289144,4
+49432192,26289144,4
+59824275,26289144,3
+xu.xu,26289144,4
+117804515,26289144,4
+58907215,26289144,4
+fangyuanshili,26289144,2
+45530358,26289144,5
+2385429,26289144,4
+6972638,26289144,3
+zhengkangkang,26289144,5
+46003260,26289144,5
+78286354,26289144,3
+3192663,26289144,2
+124848293,26289144,4
+lolitaj,26289144,3
+50785660,26289144,5
+abe_y,26289144,3
+70313784,26289144,4
+Artha,26289144,1
+83119753,26289144,3
+115051698,26289144,4
+57908991,26289144,4
+quietsinger,26289144,4
+62711685,26289144,4
+volantisff,26289144,4
+miaspace,26289144,3
+4167791,26289144,3
+liz0326,26289144,3
+85123915,26289144,3
+106335454,26289144,4
+130419426,26289144,4
+70097402,26289144,3
+10078281,26289144,3
+1758433,26289144,3
+ccushuaia1220,26289144,-1
+43129996,26289144,3
+65025231,26289144,4
+122204237,26289144,4
+linshiyi07,26289144,3
+56136584,26289144,4
+67652760,26289144,3
+jerro,26289144,4
+58277985,26289144,5
+61024723,26289144,3
+3251456,26289144,-1
+8927123,26289144,4
+45268716,26289144,4
+mrbuzhidao,26289144,3
+andystrawberry,26289144,3
+61425486,26289144,3
+64197994,26289144,4
+reveur07,26289144,4
+1882334,26289144,3
+68666799,26289144,4
+134574897,26289144,4
+sunxiaozhao,26289144,5
+Cindyew,26289144,4
+137061387,26289144,3
+74752187,26289144,3
+28314639,26289144,3
+51290521,26289144,3
+84854172,26289144,4
+44275592,26289144,3
+48090771,26289144,4
+131470947,26289144,3
+37267400,26289144,1
+xclc,26289144,5
+36962430,26289144,1
+2206641,26289144,4
+bay560,26289144,4
+figo341,26289144,4
+134100932,26289144,4
+67031001,26289144,3
+ellenha,26289144,5
+pyengu,26289144,4
+24557674,26289144,4
+kaolaxing,26289144,2
+72273685,26289144,4
+55399562,26289144,5
+82502528,26289144,3
+66715562,26289144,4
+32027656,26289144,5
+1797671,26289144,5
+84001065,26289144,4
+dingding1113,26289144,5
+127081626,26289144,4
+127081626,26289144,4
+luna_ling,26289144,3
+77451005,26289144,4
+132701112,26289144,4
+GingerWang,26289144,5
+131088732,26289144,3
+4394529,26289144,3
+71519948,26289144,5
+69849855,26289144,4
+74580493,26289144,3
+37640159,26289144,4
+59580396,26289144,5
+51649981,26289144,4
+98954264,26289144,4
+51478709,26289144,3
+74762630,26289144,4
+95443736,26289144,5
+135725455,26289144,2
+47037959,26289144,4
+133415627,26289144,4
+56899985,26289144,5
+48066058,26289144,5
+82305042,26289144,5
+68632804,26289144,4
+92442460,26289144,3
+58215137,26289144,4
+6270415,26289144,3
+48094617,26289144,3
+74920289,26289144,4
+131186363,26289144,4
+69439267,26289144,3
+CCLOVEFF,26289144,4
+134588423,26289144,3
+58064743,26289144,4
+xyzzecho,26289144,3
+55996158,26289144,5
+50842822,26289144,4
+WhiteTH,26289144,5
+133144980,26289144,4
+50299714,26289144,4
+79095415,26289144,4
+61717005,26289144,3
+52963157,26289144,4
+sissixiong,26289144,-1
+60894533,26289144,4
+ccccissy,26289144,3
+3602576,26289144,4
+96160177,26289144,4
+81244916,26289144,3
+48252437,26289144,3
+aids,26289144,3
+monikalife,26289144,-1
+sophiaforfree,26289144,3
+majide,26289144,3
+mpower007,26289144,3
+beckham4ever,26289144,3
+49802388,26289144,3
+99349662,26289144,2
+55391513,26289144,4
+2572731,26289144,5
+70089883,26289144,4
+51549441,26289144,4
+mangobird,26289144,2
+66394593,26289144,4
+65496704,26289144,4
+123220825,26289144,4
+63095265,26289144,4
+60729691,26289144,4
+RuthTsai,26289144,4
+87854998,26289144,3
+45321512,26289144,4
+xihahaha,26289144,4
+133689309,26289144,3
+celia_cece,26289144,4
+31531015,26289144,5
+127111031,26289144,4
+47047627,26289144,3
+57615935,26289144,3
+130587924,26289144,4
+3479179,26289144,4
+TOXIMUS,26289144,3
+wendu0909,26289144,5
+119081444,26289144,3
+luoyuhu,26289144,3
+68082604,26289144,4
+87387635,26289144,4
+122860615,26289144,4
+131408932,26289144,4
+55502088,26289144,4
+43539479,26289144,3
+68699814,26289144,4
+imkt,26289144,1
+64064709,26289144,3
+135725446,26289144,2
+redpeach,26289144,4
+45994637,26289144,2
+61118991,26289144,2
+NicoleLibera,26289144,3
+68528163,26289144,4
+alabataille,26289144,3
+76953551,26289144,4
+81152446,26289144,3
+91325416,26289144,4
+58703518,26289144,-1
+2262505,26289144,4
+60079529,26289144,5
+64170132,26289144,4
+3752454,26289144,3
+Jsadx,26289144,4
+80781412,26289144,4
+102602350,26289144,3
+32128581,26289144,4
+66636570,26289144,4
+77608908,26289144,3
+59013721,26289144,4
+92841390,26289144,3
+46390941,26289144,3
+40070359,26289144,4
+54893820,26289144,3
+usagikuma,26289144,5
+30465433,26289144,5
+66660989,26289144,5
+63626568,26289144,3
+65714390,26289144,5
+78634802,26289144,3
+xiaowumei,26289144,3
+95243004,26289144,4
+119253554,26289144,4
+100175553,26289144,5
+4482032,26289144,3
+AdorableMe,26289144,3
+112727402,26289144,4
+127313933,26289144,3
+58064521,26289144,2
+104815996,26289144,3
+136409582,26289144,4
+120566787,26289144,4
+61883535,26289144,4
+16252836,26289144,5
+e3829069,26289144,3
+iamwhatiam,26289144,-1
+127159580,26289144,4
+42046990,26289144,3
+danaebirds,26289144,4
+34391760,26289144,3
+134612955,26289144,2
+73854056,26289144,5
+84398440,26289144,3
+60193296,26289144,3
+88345829,26289144,4
+56776280,26289144,5
+dukeduan,26289144,3
+falent,26289144,5
+breeze63,26289144,3
+onlylovevicky,26289144,5
+126092577,26289144,4
+64126664,26289144,5
+luluto,26289144,4
+134625303,26289144,3
+oOUmi,26289144,3
+88065712,26289144,3
+79773734,26289144,4
+75244611,26289144,4
+17106683,26289144,5
+yincesc,26289144,4
+52788947,26289144,3
+tracywu0326,26289144,5
+135273378,26289144,4
+123092442,26289144,5
+46007359,26289144,3
+125373467,26289144,5
+baixiaoleng,26289144,4
+124762676,26289144,5
+61591717,26289144,4
+Decadeff,26289144,4
+CrystalFung,26289144,3
+3074747,26289144,4
+55960754,26289144,3
+3874009,26289144,2
+35961674,26289144,4
+35961674,26289144,4
+129582185,26289144,4
+1071003,26289144,5
+sewll,26289144,4
+57036848,26289144,3
+78465383,26289144,4
+134078860,26289144,4
+36049101,26289144,5
+97000059,26289144,3
+Simone_smile,26289144,2
+84029887,26289144,3
+74756120,26289144,3
+2055701,26289144,3
+71386826,26289144,3
+2388590,26289144,4
+diyidouya,26289144,5
+136333363,26289144,3
+73946835,26289144,3
+24570827,26289144,5
+58914252,26289144,3
+59981188,26289144,4
+No.JIU,26289144,3
+2752956,26289144,3
+54629940,26289144,5
+88286130,26289144,3
+lorrainelsy,26289144,5
+3880595,26289144,3
+jurgenzn,26289144,4
+53146049,26289144,2
+46147645,26289144,3
+55715149,26289144,2
+99975380,26289144,4
+1953044,26289144,2
+chemicalromance,26289144,4
+rosepicker,26289144,3
+52930373,26289144,4
+56609049,26289144,4
+yoyo1113,26289144,5
+84569100,26289144,3
+shinsukeholic,26289144,3
+cassie0723,26289144,4
+60858722,26289144,-1
+62862324,26289144,4
+53240525,26289144,4
+22838755,26289144,3
+47100012,26289144,4
+raizzt,26289144,4
+applejojo,26289144,5
+lytmonkey21,26289144,3
+mandeeeee,26289144,4
+aawenping,26289144,5
+42488857,26289144,4
+124712461,26289144,3
+49054831,26289144,4
+3215431,26289144,2
+2493346,26289144,-1
+67079655,26289144,5
+87604568,26289144,4
+41122541,26289144,4
+84495327,26289144,3
+51020374,26289144,5
+bloodli,26289144,3
+bubbbble,26289144,4
+66735315,26289144,4
+76442168,26289144,3
+54580645,26289144,5
+120437687,26289144,4
+80905831,26289144,3
+66512532,26289144,4
+xiamodegema,26289144,5
+47806100,26289144,4
+51863917,26289144,3
+42765442,26289144,4
+shuangning,26289144,1
+59035292,26289144,-1
+54129779,26289144,3
+76198157,26289144,5
+25676059,26289144,1
+qlbldm,26289144,4
+81645668,26289144,5
+131858556,26289144,4
+nowheredou,26289144,3
+120567507,26289144,4
+1575077,26289144,3
+108540094,26289144,2
+44903919,26289144,3
+41706695,26289144,4
+60070241,26289144,1
+62363490,26289144,4
+112276419,26289144,3
+olabaobao,26289144,5
+123625456,26289144,3
+42557582,26289144,1
+scarllet1984,26289144,3
+50532923,26289144,5
+136882441,26289144,5
+71203856,26289144,4
+Gabriel_Mars,26289144,4
+daisyhyj,26289144,4
+47395813,26289144,5
+xxling,26289144,4
+leehikari,26289144,5
+Meijing0526,26289144,2
+2767001,26289144,5
+imnine,26289144,4
+15286223,26289144,4
+qj630,26289144,5
+122274250,26289144,4
+99579544,26289144,5
+zhaowei0529,26289144,3
+lovekahn2002,26289144,3
+96495533,26289144,3
+94713382,26289144,5
+56682623,26289144,3
+4063062,26289144,-1
+53484672,26289144,-1
+66865867,26289144,5
+33921766,26289144,4
+gegewu92,26289144,3
+46538324,26289144,4
+46538324,26289144,4
+54555433,26289144,5
+50638011,26289144,4
+handelhan,26289144,5
+NeilGuo521,26289144,2
+61190847,26289144,4
+81089052,26289144,5
+2606901,26289144,4
+41502441,26289144,4
+47169010,26289144,4
+53692336,26289144,4
+49928167,26289144,5
+86055475,26289144,4
+44096316,26289144,4
+RosemaryYU,26289144,2
+celinexu,26289144,3
+superblily108,26289144,3
+1823757,26289144,2
+54450585,26289144,1
+121806653,26289144,4
+jeremysuit,26289144,4
+104167946,26289144,2
+53759633,26289144,3
+63280686,26289144,3
+126657464,26289144,4
+120542127,26289144,4
+50140281,26289144,5
+43646758,26289144,5
+3206508,26289144,4
+81253472,26289144,4
+58802831,26289144,4
+lalarain,26289144,3
+bear1943,26289144,4
+45620369,26289144,3
+70217927,26289144,4
+snow-in-coffee,26289144,4
+74499406,26289144,3
+31744734,26289144,4
+59722837,26289144,3
+50275832,26289144,5
+49904422,26289144,3
+Jackandfoureyes,26289144,4
+ed1s0n,26289144,4
+61124642,26289144,4
+30740764,26289144,4
+lenashujue,26289144,4
+86203854,26289144,5
+127080428,26289144,3
+126009401,26289144,4
+renyuan46,26289144,5
+66689721,26289144,3
+45558670,26289144,3
+hudachazi1227,26289144,4
+prettylily,26289144,4
+zzyzeal,26289144,3
+66109592,26289144,4
+135030144,26289144,4
+73735328,26289144,4
+56875123,26289144,5
+brad.dl,26289144,4
+brad.dl,26289144,4
+57117431,26289144,5
+1015227,26289144,4
+4703190,26289144,3
+Airy916,26289144,3
+59170228,26289144,3
+gray_dust,26289144,3
+127191688,26289144,4
+91673883,26289144,4
+congshuli,26289144,5
+60599913,26289144,4
+28227843,26289144,5
+135012811,26289144,2
+13424583,26289144,3
+78667352,26289144,5
+Nolonelyhere,26289144,3
+136112927,26289144,4
+54323000,26289144,4
+weiweihuakai,26289144,5
+70370638,26289144,5
+hapysmile,26289144,3
+s1219snow,26289144,4
+51297351,26289144,3
+annxin19,26289144,3
+97702516,26289144,4
+57641425,26289144,5
+90727698,26289144,3
+134258576,26289144,4
+fish2u,26289144,5
+steven_lee,26289144,3
+4324027,26289144,3
+zpp100,26289144,4
+meowmadam,26289144,3
+MRCellardoor,26289144,4
+teresa_leaves,26289144,2
+48966304,26289144,5
+waywithu,26289144,5
+49054148,26289144,3
+101437932,26289144,5
+60385100,26289144,4
+38085562,26289144,5
+lovechai,26289144,4
+2445824,26289144,5
+51439903,26289144,5
+2480215,26289144,3
+121340498,26289144,4
+35229125,26289144,3
+3626195,26289144,-1
+35506270,26289144,3
+jqcx,26289144,5
+83925397,26289144,3
+arzoo,26289144,4
+blackbanana3Y,26289144,5
+36403736,26289144,2
+89995140,26289144,5
+52999504,26289144,4
+96967794,26289144,3
+103446908,26289144,5
+70934160,26289144,5
+Gaspard,26289144,4
+Nancyjxw,26289144,4
+singercatrol,26289144,4
+1327393,26289144,5
+125878339,26289144,4
+3312608,26289144,2
+50864883,26289144,3
+liaofei,26289144,4
+90699414,26289144,4
+i-am-straight,26289144,3
+60968661,26289144,4
+jennykings,26289144,3
+wanfangyinanzi,26289144,3
+62275045,26289144,3
+83371005,26289144,4
+vanvin,26289144,4
+55352807,26289144,3
+apple-dudu,26289144,3
+122004304,26289144,4
+63583166,26289144,3
+128192780,26289144,3
+92637548,26289144,4
+131352783,26289144,3
+vergessenalle,26289144,1
+126248170,26289144,3
+jinjidexiong,26289144,2
+41717444,26289144,2
+44022921,26289144,5
+50619132,26289144,2
+wanwibeatles,26289144,5
+29811001,26289144,1
+64726602,26289144,4
+41022109,26289144,4
+55566255,26289144,2
+Hxy1996221,26289144,3
+115708605,26289144,1
+58502560,26289144,5
+77266400,26289144,4
+evaxiao,26289144,4
+61673076,26289144,5
+110431093,26289144,4
+110431093,26289144,4
+foxgarden,26289144,3
+4188935,26289144,5
+135694361,26289144,3
+103202495,26289144,4
+xxxxxxdee,26289144,2
+63959751,26289144,4
+55993143,26289144,4
+115746552,26289144,5
+41533340,26289144,4
+131409991,26289144,4
+wslhul,26289144,4
+115631046,26289144,4
+zpavel,26289144,3
+50999712,26289144,4
+48079918,26289144,2
+135700811,26289144,4
+61054715,26289144,4
+124497944,26289144,3
+69906697,26289144,-1
+jiangli1988,26289144,2
+69068097,26289144,4
+why901019,26289144,-1
+49711943,26289144,4
+49686878,26289144,4
+holy-fishman,26289144,4
+2497348,26289144,3
+benjune,26289144,3
+84872284,26289144,4
+53547991,26289144,5
+eris_615,26289144,4
+3555189,26289144,-1
+sunnymoira,26289144,4
+vincen1208,26289144,4
+WSZYJ,26289144,3
+69776901,26289144,4
+131171695,26289144,3
+virgin22,26289144,3
+57621986,26289144,5
+a13221807,26289144,4
+a13221807,26289144,4
+133241079,26289144,4
+holyshitzhy,26289144,3
+54897020,26289144,5
+75672182,26289144,4
+3356830,26289144,4
+48286955,26289144,4
+liu1231,26289144,5
+57612713,26289144,3
+lalalalalala777,26289144,4
+nancyzyn,26289144,4
+3226958,26289144,3
+69326188,26289144,4
+131168132,26289144,5
+cynthiachang,26289144,3
+136857424,26289144,4
+130355076,26289144,3
+61619787,26289144,5
+80554420,26289144,3
+116013491,26289144,3
+bhbst,26289144,3
+66934395,26289144,4
+EmmaQiu,26289144,5
+76994083,26289144,3
+72415412,26289144,3
+floraalma,26289144,3
+126949865,26289144,4
+77271778,26289144,4
+39636174,26289144,4
+yu-tu,26289144,4
+81962971,26289144,3
+50143205,26289144,4
+brilliantze,26289144,3
+73082469,26289144,5
+43781678,26289144,3
+bqtlq,26289144,3
+65341751,26289144,4
+bilibili01,26289144,1
+122994382,26289144,4
+69228258,26289144,3
+3478731,26289144,3
+51643825,26289144,4
+48332324,26289144,5
+121936659,26289144,4
+17578809,26289144,3
+78906906,26289144,3
+82917224,26289144,3
+50120966,26289144,4
+122259457,26289144,4
+136849738,26289144,5
+elephant723,26289144,3
+xizhong365,26289144,5
+4916092,26289144,2
+120044965,26289144,4
+cuacfxx,26289144,4
+lmx1220,26289144,4
+48435609,26289144,5
+norlesamourai,26289144,-1
+54756616,26289144,4
+3829662,26289144,4
+60001024,26289144,3
+4668252,26289144,5
+47193126,26289144,3
+Coldon,26289144,4
+67836856,26289144,3
+87860382,26289144,4
+61221215,26289144,4
+56103928,26289144,4
+ingie,26289144,4
+currant,26289144,2
+92177885,26289144,4
+84595954,26289144,5
+79424567,26289144,4
+134500938,26289144,5
+52374010,26289144,3
+kamao,26289144,3
+Eve2005,26289144,4
+57063027,26289144,3
+yutang,26289144,4
+59348702,26289144,5
+66893773,26289144,-1
+bjlc,26289144,5
+liupenpen,26289144,4
+54266589,26289144,4
+58024730,26289144,4
+62333494,26289144,2
+131708713,26289144,-1
+131465314,26289144,2
+51342796,26289144,4
+ypppp,26289144,5
+yezisnow,26289144,4
+110565024,26289144,4
+nova_hi,26289144,5
+121195542,26289144,-1
+88221396,26289144,3
+miaommiki,26289144,5
+wantgain,26289144,5
+85168864,26289144,5
+59676385,26289144,4
+iamxy2,26289144,3
+70654982,26289144,4
+lwx624,26289144,4
+83184870,26289144,4
+58618853,26289144,3
+JaneEvans,26289144,2
+38103612,26289144,4
+yulz,26289144,5
+60661944,26289144,1
+Jiang_jss,26289144,3
+49232664,26289144,5
+72639962,26289144,3
+125371661,26289144,-1
+53806077,26289144,3
+3118092,26289144,3
+xiluoduode,26289144,4
+36013177,26289144,3
+Boomer,26289144,4
+42981900,26289144,3
+39544151,26289144,3
+aideu,26289144,4
+63912359,26289144,4
+59172571,26289144,3
+shiningvi,26289144,2
+dearerxia,26289144,2
+63900618,26289144,3
+vincentjones,26289144,4
+lantianxin,26289144,1
+x_xx,26289144,4
+56169435,26289144,2
+45088871,26289144,2
+3673300,26289144,-1
+83900345,26289144,3
+56970230,26289144,5
+96918719,26289144,5
+116531685,26289144,4
+langweibo,26289144,5
+morimiru,26289144,4
+62961782,26289144,2
+61536666,26289144,4
+sunvision,26289144,4
+56976495,26289144,3
+mori0331,26289144,4
+49893816,26289144,3
+32613190,26289144,3
+kenn,26289144,3
+28884615,26289144,3
+mandy-woo,26289144,5
+megzzy,26289144,3
+115640790,26289144,5
+41197911,26289144,5
+waitintheseason,26289144,4
+zhangyupei,26289144,4
+113225797,26289144,2
+yuuuummy,26289144,3
+54375575,26289144,3
+47218974,26289144,4
+iwbar,26289144,2
+58301131,26289144,4
+59732020,26289144,4
+octopus0831,26289144,3
+59835894,26289144,4
+121337200,26289144,3
+silenceyt,26289144,4
+46783923,26289144,3
+134414314,26289144,4
+40545611,26289144,3
+58476297,26289144,5
+51269285,26289144,4
+57430540,26289144,4
+betty5230,26289144,4
+MiaoKK,26289144,3
+70982693,26289144,4
+joelyc,26289144,2
+61624406,26289144,3
+youmuyishu,26289144,3
+nicole_yang,26289144,3
+47063754,26289144,2
+shmilyyan,26289144,4
+smcc911,26289144,4
+79837313,26289144,2
+79837313,26289144,2
+tatsu,26289144,3
+lijianliang,26289144,4
+2075895,26289144,3
+49363710,26289144,3
+lcmygw,26289144,5
+62060527,26289144,5
+1339878,26289144,2
+onlymengya,26289144,3
+56136563,26289144,5
+84912149,26289144,4
+113515120,26289144,1
+48071029,26289144,3
+50980636,26289144,3
+oeqanh,26289144,-1
+134531645,26289144,4
+58014924,26289144,1
+134527565,26289144,3
+daizy_10,26289144,3
+twyvian,26289144,4
+lyy819,26289144,3
+skyFei,26289144,4
+fairy137,26289144,2
+bigeast,26289144,5
+37959469,26289144,3
+53511350,26289144,5
+wowo1314,26289144,4
+61866321,26289144,2
+56328565,26289144,5
+adelestarry,26289144,3
+42835041,26289144,3
+70267831,26289144,3
+3514261,26289144,3
+121059369,26289144,4
+85422025,26289144,5
+mosaoke,26289144,4
+44628811,26289144,3
+difeijing,26289144,3
+wenbao,26289144,4
+isphyllis,26289144,4
+59732121,26289144,4
+41653958,26289144,4
+rozing,26289144,1
+10227322,26289144,4
+1189341,26289144,3
+66698052,26289144,2
+zivee-1uo,26289144,4
+130978369,26289144,3
+50531723,26289144,4
+50914683,26289144,2
+d3999457,26289144,5
+79590572,26289144,5
+42327957,26289144,4
+107035787,26289144,4
+aini123,26289144,4
+71477858,26289144,5
+64344597,26289144,4
+134533952,26289144,5
+64434584,26289144,3
+clemont,26289144,4
+cassiecici,26289144,5
+77017255,26289144,4
+130387983,26289144,5
+88857098,26289144,5
+59901599,26289144,4
+jinxinsun,26289144,3
+2226586,26289144,4
+2958930,26289144,-1
+meadow_lmao,26289144,-1
+133371688,26289144,4
+44521539,26289144,4
+93147817,26289144,4
+enlssea_1991,26289144,4
+2617530,26289144,1
+lovinest,26289144,4
+crosas,26289144,2
+64323001,26289144,3
+64797594,26289144,5
+49945467,26289144,4
+xieyuhan1988,26289144,4
+126758239,26289144,1
+49567226,26289144,4
+47926562,26289144,3
+3726810,26289144,4
+tinytower,26289144,4
+4906702,26289144,4
+MISTER.X,26289144,3
+4010095,26289144,4
+52636646,26289144,5
+89269194,26289144,4
+45265566,26289144,5
+88243971,26289144,-1
+48591645,26289144,5
+duoxingxing,26289144,2
+wysunflowers,26289144,3
+59594032,26289144,3
+41014466,26289144,5
+136623062,26289144,4
+70781004,26289144,5
+41675106,26289144,3
+towne,26289144,3
+69477344,26289144,4
+lostindream,26289144,5
+Disorder,26289144,-1
+43864936,26289144,3
+chenxiaoyue,26289144,5
+64825748,26289144,5
+68986464,26289144,4
+136757933,26289144,5
+y_XO,26289144,2
+60504195,26289144,4
+levone,26289144,2
+67299134,26289144,3
+51416199,26289144,4
+4528311,26289144,5
+56833761,26289144,3
+136765005,26289144,3
+33326253,26289144,4
+44020426,26289144,3
+49147828,26289144,2
+cancer1990,26289144,3
+96204122,26289144,-1
+42022756,26289144,5
+staryyao,26289144,3
+4265154,26289144,3
+3935498,26289144,3
+135312054,26289144,4
+78795036,26289144,2
+54426492,26289144,3
+60662764,26289144,3
+61278455,26289144,3
+4001333,26289144,4
+37017024,26289144,4
+34570824,26289144,4
+90681900,26289144,3
+skysnow5201314,26289144,3
+leavev,26289144,4
+MrsCC,26289144,2
+96638998,26289144,5
+56988998,26289144,3
+62945273,26289144,4
+53281036,26289144,4
+joyzhai,26289144,4
+sophiamaomao,26289144,4
+50238501,26289144,5
+96472990,26289144,3
+1534166,26289144,3
+barcelonazhou,26289144,2
+seoyoungeun,26289144,3
+99901752,26289144,3
+77244535,26289144,4
+53381748,26289144,5
+zjss,26289144,5
+readyliu,26289144,4
+132466076,26289144,3
+56392220,26289144,4
+5116652,26289144,4
+bananany,26289144,4
+3180760,26289144,3
+32653092,26289144,3
+Martian1989,26289144,4
+madrid9,26289144,3
+jian.ai,26289144,4
+moon_shiny,26289144,5
+jhourui,26289144,5
+pingfandeshabi,26289144,3
+53836712,26289144,4
+48661159,26289144,3
+49852947,26289144,5
+dhcdanger,26289144,5
+HeavenAshura,26289144,4
+133245536,26289144,5
+50063256,26289144,3
+102717310,26289144,3
+kanrenao,26289144,3
+49811258,26289144,4
+8640305,26289144,5
+77186305,26289144,4
+alanis,26289144,5
+nandeyansu,26289144,3
+4645480,26289144,4
+68477521,26289144,3
+63214398,26289144,4
+dadaxiaohang,26289144,4
+unimaginablec,26289144,3
+68951998,26289144,4
+findJane,26289144,2
+62635497,26289144,4
+135808324,26289144,-1
+turandot0815,26289144,3
+weizheren,26289144,3
+waisel,26289144,4
+91446742,26289144,5
+31996522,26289144,4
+hanayuki,26289144,4
+63567071,26289144,4
+yihengxi,26289144,4
+wt1112,26289144,-1
+77066439,26289144,5
+44629551,26289144,3
+44629551,26289144,3
+colatea,26289144,5
+Liu.Y,26289144,3
+ningyaogezhi,26289144,3
+smart-ass,26289144,3
+estherliu,26289144,4
+lyxx0728,26289144,5
+69273736,26289144,5
+1897616,26289144,5
+HR-vivi,26289144,3
+3772235,26289144,4
+twoest,26289144,5
+1905433,26289144,2
+76359081,26289144,4
+37005827,26289144,3
+37005827,26289144,3
+59801633,26289144,4
+55022659,26289144,5
+56157459,26289144,4
+jojo19870625,26289144,4
+126014934,26289144,4
+34702944,26289144,3
+46452752,26289144,4
+summerpea,26289144,4
+lychee0825,26289144,2
+liting888,26289144,4
+vickyfanyan,26289144,4
+canonzhang,26289144,4
+65689634,26289144,4
+72645709,26289144,5
+mint-v,26289144,5
+wdxc999999,26289144,4
+62661537,26289144,5
+watercolor823,26289144,4
+46717577,26289144,3
+133956430,26289144,3
+ioiohaha,26289144,5
+fang0079,26289144,3
+morpheus5,26289144,3
+81034512,26289144,5
+81034512,26289144,5
+80687112,26289144,4
+61135044,26289144,2
+28547909,26289144,4
+48874322,26289144,5
+71416831,26289144,3
+2183228,26289144,3
+47434041,26289144,4
+Yunsta,26289144,3
+lms1997,26289144,5
+46965877,26289144,4
+49364601,26289144,4
+84343760,26289144,2
+Otta,26289144,2
+lionlsh,26289144,3
+xiaocheng88,26289144,3
+zhukeke,26289144,3
+37102807,26289144,3
+Christopher0117,26289144,5
+51769966,26289144,3
+68277125,26289144,4
+14465196,26289144,2
+shirley9292,26289144,4
+gunguning,26289144,3
+luocaoyaoyao,26289144,4
+85035991,26289144,4
+75752859,26289144,-1
+love1989,26289144,2
+59043900,26289144,4
+highmore91,26289144,3
+xjksama,26289144,4
+se2o3,26289144,3
+60096895,26289144,3
+40105087,26289144,3
+55661989,26289144,5
+70548189,26289144,3
+48843786,26289144,-1
+louis15yao,26289144,3
+42111921,26289144,4
+xingjiaqi0622,26289144,2
+31640275,26289144,4
+47963545,26289144,5
+50100969,26289144,5
+97765077,26289144,3
+133020185,26289144,4
+135746121,26289144,4
+2781564,26289144,3
+120541509,26289144,4
+liuqing2009,26289144,4
+tracyxing,26289144,4
+68607460,26289144,1
+51005136,26289144,2
+29898737,26289144,4
+venus3255,26289144,2
+zz5555,26289144,3
+51367946,26289144,5
+58543683,26289144,5
+3322909,26289144,4
+chx93,26289144,4
+fxino228,26289144,4
+57100027,26289144,2
+73683661,26289144,3
+Mai.c,26289144,4
+66596223,26289144,4
+wjww2128,26289144,4
+128231171,26289144,3
+2875295,26289144,4
+65190817,26289144,3
+52125579,26289144,4
+we_are_Smug,26289144,4
+wanglinzi0214,26289144,4
+92145568,26289144,3
+shutu,26289144,3
+catherine1995,26289144,5
+135102331,26289144,3
+4694620,26289144,5
+mojian,26289144,4
+ria_really,26289144,5
+jiehe,26289144,3
+marage,26289144,2
+W18523342562,26289144,3
+tinywhowho,26289144,4
+44176449,26289144,3
+62553096,26289144,5
+36300587,26289144,3
+45012026,26289144,2
+Shadow..,26289144,4
+95402541,26289144,5
+62754758,26289144,4
+54191212,26289144,3
+41546216,26289144,3
+52161408,26289144,3
+51503469,26289144,4
+21936280,26289144,4
+135754076,26289144,3
+lindadarling,26289144,3
+liujinlin,26289144,4
+48096896,26289144,3
+2111262,26289144,3
+67652079,26289144,4
+68552407,26289144,4
+SinceNow1999,26289144,4
+80429780,26289144,4
+3435259,26289144,4
+mtwitter,26289144,2
+democathy,26289144,4
+74883045,26289144,3
+50835940,26289144,5
+32853386,26289144,4
+soya45,26289144,4
+44823214,26289144,5
+66257147,26289144,5
+101393970,26289144,3
+77493243,26289144,3
+9095449,26289144,1
+133620973,26289144,2
+135549137,26289144,4
+129863569,26289144,4
+90755706,26289144,4
+43620888,26289144,3
+idiot.child,26289144,4
+115223509,26289144,5
+102997764,26289144,3
+urannus,26289144,4
+55368577,26289144,3
+43019419,26289144,5
+52389655,26289144,4
+48206747,26289144,3
+79671588,26289144,5
+114850618,26289144,3
+4143335,26289144,3
+47418311,26289144,5
+29172425,26289144,3
+jolinalbert,26289144,4
+60536957,26289144,4
+107892485,26289144,4
+xiaokongji,26289144,3
+84078952,26289144,3
+40327277,26289144,5
+61997003,26289144,4
+56902498,26289144,5
+96799379,26289144,5
+71051752,26289144,4
+54665714,26289144,4
+48860036,26289144,3
+creanion,26289144,5
+41125061,26289144,5
+moyujushi,26289144,3
+89021640,26289144,5
+77459141,26289144,3
+heathlon,26289144,2
+136673934,26289144,4
+103271136,26289144,2
+92930894,26289144,4
+adore1992,26289144,5
+46865782,26289144,4
+46943216,26289144,4
+49473461,26289144,4
+63140817,26289144,5
+35994067,26289144,5
+32636504,26289144,5
+57982370,26289144,4
+136608534,26289144,3
+41264056,26289144,5
+lefine923,26289144,5
+dooyan,26289144,3
+51583738,26289144,3
+35800608,26289144,5
+52254037,26289144,5
+64342708,26289144,4
+58219709,26289144,3
+85223779,26289144,2
+69187139,26289144,4
+32195292,26289144,4
+83387474,26289144,4
+87758868,26289144,-1
+sc43791909,26289144,4
+yangchahuas,26289144,3
+58115368,26289144,5
+63170647,26289144,4
+136671375,26289144,5
+Lainean,26289144,5
+syloveyangying,26289144,5
+pauline1007,26289144,5
+72640748,26289144,5
+106730683,26289144,5
+49964826,26289144,5
+3431765,26289144,2
+119500718,26289144,5
+waisai,26289144,4
+45478417,26289144,4
+songjia0227,26289144,5
+44776734,26289144,4
+flydolphin,26289144,4
+92320890,26289144,4
+11080929,26289144,3
+46717784,26289144,5
+8026660,26289144,5
+128498983,26289144,1
+136666408,26289144,2
+lonelyhedgehog,26289144,2
+42252873,26289144,3
+48885291,26289144,4
+40237768,26289144,1
+45305356,26289144,3
+imcaitou,26289144,4
+51509981,26289144,4
+131744488,26289144,3
+42049587,26289144,4
+70321553,26289144,5
+60871939,26289144,3
+60963394,26289144,2
+93848272,26289144,5
+88345379,26289144,4
+2592575,26289144,5
+80209748,26289144,2
+91073792,26289144,3
+126022263,26289144,4
+or_child,26289144,3
+134461223,26289144,5
+66582764,26289144,4
+yyangle,26289144,4
+53683420,26289144,4
+127949874,26289144,4
+okayone,26289144,4
+jvanky,26289144,2
+42329947,26289144,-1
+52248618,26289144,4
+43808551,26289144,5
+46407577,26289144,4
+73598521,26289144,5
+131039743,26289144,3
+4203877,26289144,3
+136340593,26289144,4
+skloveshaka,26289144,3
+42291376,26289144,2
+121318701,26289144,4
+47485471,26289144,4
+24139618,26289144,4
+40645830,26289144,3
+136653803,26289144,3
+80290185,26289144,4
+lisasue,26289144,4
+Ellenlium01,26289144,4
+50624143,26289144,4
+42803233,26289144,5
+69165098,26289144,3
+113608312,26289144,3
+59128714,26289144,1
+Gmosquito,26289144,4
+rozendeer,26289144,3
+49108378,26289144,4
+121819431,26289144,3
+kuangsao,26289144,4
+70752428,26289144,4
+lufy,26289144,3
+everlike,26289144,4
+3372236,26289144,5
+21430997,26289144,4
+56566421,26289144,4
+122025364,26289144,4
+let7,26289144,4
+62717924,26289144,5
+134730691,26289144,4
+113285477,26289144,3
+think_think,26289144,4
+1071198,26289144,-1
+90237158,26289144,4
+59994640,26289144,5
+conyichiya,26289144,4
+135075217,26289144,2
+70927104,26289144,4
+3976831,26289144,4
+103305507,26289144,5
+formosa12,26289144,4
+2404986,26289144,3
+flyyyyyy,26289144,2
+Dushanbe,26289144,3
+DEMO9266,26289144,1
+hlinwang,26289144,3
+Sunbowinrain,26289144,3
+67030468,26289144,4
+princeeeee,26289144,4
+63255619,26289144,3
+64465114,26289144,4
+trianglecat,26289144,2
+amanda918,26289144,4
+68155322,26289144,4
+51198327,26289144,3
+59122633,26289144,5
+56521478,26289144,3
+62815925,26289144,4
+missboogie,26289144,4
+dada340,26289144,1
+gyceedoo,26289144,3
+3427459,26289144,4
+58836800,26289144,4
+4582318,26289144,2
+2387180,26289144,-1
+loulou-mae,26289144,3
+loulou-mae,26289144,3
+eeeeeeedna,26289144,5
+joywuyan,26289144,5
+rosiness,26289144,5
+45269932,26289144,3
+53447982,26289144,4
+52376130,26289144,-1
+66067356,26289144,4
+5774362,26289144,5
+ztl-poppy,26289144,3
+lidongdexinlu,26289144,5
+KeithMoon,26289144,3
+enigmairis,26289144,4
+54450568,26289144,4
+67708177,26289144,5
+42757817,26289144,5
+135739193,26289144,3
+130132099,26289144,3
+circleontheway,26289144,4
+53816359,26289144,5
+shenxuzhu,26289144,4
+102774677,26289144,4
+43600177,26289144,4
+skj,26289144,4
+55797857,26289144,4
+102790365,26289144,3
+122842206,26289144,4
+136179114,26289144,5
+40440919,26289144,3
+miemie-cpu,26289144,4
+46175274,26289144,4
+78237163,26289144,5
+87704099,26289144,-1
+64204939,26289144,5
+1353077,26289144,5
+1773583,26289144,4
+just-benren,26289144,4
+laohao,26289144,1
+17471764,26289144,-1
+marioii,26289144,5
+84593268,26289144,3
+73901440,26289144,4
+127695510,26289144,4
+59607562,26289144,3
+AriesSusan,26289144,3
+49174691,26289144,3
+53543970,26289144,4
+44887198,26289144,4
+127654631,26289144,5
+howhappy,26289144,3
+77779936,26289144,5
+68539816,26289144,3
+135239811,26289144,3
+morgina,26289144,3
+68983294,26289144,4
+62482710,26289144,2
+115821342,26289144,2
+tenspace,26289144,3
+87675239,26289144,5
+65697640,26289144,4
+79739756,26289144,5
+57115166,26289144,4
+48834090,26289144,3
+67702705,26289144,4
+97010885,26289144,4
+50219625,26289144,3
+saraystang,26289144,3
+jdrop,26289144,3
+134521236,26289144,5
+124098783,26289144,5
+98273529,26289144,5
+feeldxy,26289144,1
+41541704,26289144,4
+4034845,26289144,3
+twooneseven,26289144,3
+58220625,26289144,2
+22562500,26289144,4
+chelsea1214,26289144,3
+57143181,26289144,1
+50313990,26289144,2
+80418716,26289144,4
+135575512,26289144,3
+60188018,26289144,-1
+60854908,26289144,5
+size,26289144,4
+65440718,26289144,4
+cuishuang,26289144,-1
+3006521,26289144,5
+52345284,26289144,3
+liuyayao619,26289144,2
+56747069,26289144,4
+59102031,26289144,5
+8802832,26289144,3
+68887346,26289144,4
+czhou,26289144,3
+vinjun,26289144,4
+56170525,26289144,5
+50667944,26289144,3
+49995331,26289144,4
+2407582,26289144,2
+131360534,26289144,5
+87909103,26289144,3
+10668053,26289144,5
+50600067,26289144,4
+fengzimin0221,26289144,4
+jxzq007,26289144,3
+carina88,26289144,4
+tjulcc,26289144,4
+73650637,26289144,5
+38587152,26289144,4
+candyberg,26289144,2
+89233073,26289144,3
+listentomelody,26289144,3
+elfvogue,26289144,-1
+3884732,26289144,5
+70161503,26289144,4
+93242497,26289144,4
+xiaoyememories,26289144,5
+58079311,26289144,4
+64454222,26289144,5
+after1010,26289144,4
+96495909,26289144,5
+fanny_lingf,26289144,5
+83842649,26289144,2
+45299688,26289144,4
+12681999,26289144,3
+116035367,26289144,4
+66680308,26289144,2
+lilianzly,26289144,3
+63912134,26289144,4
+67659493,26289144,3
+114057522,26289144,3
+48137780,26289144,5
+41347620,26289144,4
+68871897,26289144,4
+79693169,26289144,4
+73569982,26289144,3
+57607946,26289144,3
+bruin1018,26289144,3
+51756268,26289144,1
+51756268,26289144,1
+70739010,26289144,3
+60344319,26289144,4
+56655497,26289144,4
+85441088,26289144,5
+60352980,26289144,3
+ppt86,26289144,5
+60213828,26289144,3
+LotteMars,26289144,4
+bigsnaky,26289144,-1
+melentao,26289144,3
+93359159,26289144,4
+66053525,26289144,1
+2218484,26289144,5
+69807156,26289144,3
+46871806,26289144,4
+lg-dream,26289144,5
+39579431,26289144,4
+Octing,26289144,4
+56843528,26289144,3
+50817761,26289144,4
+47817868,26289144,3
+2095519,26289144,4
+65013886,26289144,3
+1834292,26289144,4
+57784548,26289144,3
+2501662,26289144,5
+122950501,26289144,5
+48917306,26289144,5
+zhpzhpzhpeng,26289144,3
+lidesheng,26289144,-1
+My_Little_World,26289144,3
+60636662,26289144,2
+68616795,26289144,3
+55279052,26289144,4
+48766647,26289144,3
+chouchou0707,26289144,3
+67207839,26289144,3
+claratalky,26289144,5
+4371910,26289144,4
+58927688,26289144,3
+thanksdanny,26289144,2
+morieyun,26289144,5
+57436180,26289144,2
+im1dao,26289144,4
+tobecause,26289144,3
+54512951,26289144,4
+58109745,26289144,4
+kayomii,26289144,2
+50693722,26289144,5
+62926087,26289144,3
+cloudyblue,26289144,3
+122912528,26289144,4
+50070864,26289144,4
+rikkuwang,26289144,4
+94923066,26289144,1
+1319464,26289144,3
+2534601,26289144,3
+67514961,26289144,4
+48119983,26289144,1
+songweimao,26289144,1
+1673897,26289144,-1
+2442187,26289144,4
+zlljxm,26289144,3
+63506712,26289144,2
+2778486,26289144,4
+63606537,26289144,5
+alleni,26289144,3
+127114583,26289144,2
+48921552,26289144,3
+63839731,26289144,1
+61321369,26289144,5
+haoyagui,26289144,2
+2882324,26289144,4
+37148291,26289144,3
+longzainali,26289144,3
+44813973,26289144,4
+27323715,26289144,3
+76839665,26289144,5
+123555386,26289144,4
+4295778,26289144,5
+46714901,26289144,4
+122231719,26289144,3
+47795407,26289144,3
+59796808,26289144,5
+91140276,26289144,3
+73365749,26289144,3
+angelchen1990,26289144,4
+82847948,26289144,3
+90460111,26289144,5
+70691409,26289144,3
+127932658,26289144,3
+42006560,26289144,3
+23711422,26289144,5
+27568685,26289144,3
+meltykisszhy,26289144,3
+50150642,26289144,4
+67753240,26289144,2
+121227270,26289144,4
+song1,26289144,3
+42379437,26289144,3
+blueskd,26289144,3
+lvjinpeng,26289144,4
+71890378,26289144,4
+58620787,26289144,4
+16943300,26289144,3
+drxxuan,26289144,4
+128666422,26289144,4
+ulysseus-2,26289144,2
+125881943,26289144,4
+102746063,26289144,3
+122738024,26289144,4
+120257567,26289144,5
+127298823,26289144,5
+J0J0,26289144,4
+ameleseue,26289144,5
+44197111,26289144,4
+52703708,26289144,4
+1077635,26289144,3
+45032378,26289144,3
+soan,26289144,4
+71962172,26289144,5
+huahui,26289144,4
+miqingye,26289144,4
+67653468,26289144,3
+129304372,26289144,3
+1572538,26289144,4
+steero1015,26289144,3
+125741310,26289144,3
+2623491,26289144,4
+zongjunxiao,26289144,4
+49946146,26289144,3
+station123,26289144,4
+56263251,26289144,3
+miyatutu,26289144,3
+52243098,26289144,4
+fefefefelicia,26289144,4
+guo4901,26289144,4
+echo8864,26289144,5
+129853307,26289144,5
+1564139,26289144,4
+zisu1115,26289144,1
+91305249,26289144,3
+63755124,26289144,1
+62761738,26289144,4
+61355644,26289144,3
+121241537,26289144,4
+89736340,26289144,2
+lear7,26289144,4
+83300481,26289144,4
+49487093,26289144,3
+49168365,26289144,3
+66076535,26289144,3
+3914860,26289144,3
+48631155,26289144,4
+79666507,26289144,2
+dyd0217,26289144,4
+55348613,26289144,4
+35442481,26289144,4
+136579326,26289144,4
+anyuancat,26289144,3
+amberaway,26289144,1
+57543745,26289144,2
+2977227,26289144,5
+yb_1219,26289144,5
+36849871,26289144,5
+55493510,26289144,5
+4588044,26289144,5
+coldcall,26289144,4
+szk13731584239,26289144,4
+52300652,26289144,5
+4713496,26289144,3
+92589362,26289144,4
+niuchen0288,26289144,5
+52658283,26289144,4
+swwol32,26289144,4
+liyuchun521,26289144,5
+53242249,26289144,4
+76506122,26289144,5
+ll15867516106,26289144,5
+46799195,26289144,3
+132257844,26289144,4
+39360207,26289144,4
+48712788,26289144,4
+KennySiliver,26289144,3
+97342015,26289144,4
+koral,26289144,5
+128304317,26289144,4
+3315331,26289144,4
+duckt,26289144,4
+135269844,26289144,4
+73538837,26289144,4
+130334670,26289144,5
+57756886,26289144,3
+41978275,26289144,4
+antony_bai,26289144,3
+63155041,26289144,3
+71259453,26289144,4
+kingpeace,26289144,4
+27081419,26289144,4
+50942885,26289144,4
+81979742,26289144,4
+35909565,26289144,5
+135349165,26289144,4
+lx1nyu,26289144,4
+31220552,26289144,3
+verafei,26289144,-1
+87811429,26289144,4
+49412006,26289144,4
+allahking,26289144,3
+74589582,26289144,4
+13728402,26289144,4
+89479516,26289144,3
+69973045,26289144,-1
+2482985,26289144,3
+75418722,26289144,4
+24299938,26289144,3
+Vita_G,26289144,5
+87818834,26289144,5
+51265951,26289144,3
+51265951,26289144,3
+heyjj,26289144,3
+xiaosmile,26289144,5
+leeshiuan,26289144,4
+58783502,26289144,5
+bikibiki,26289144,1
+68941794,26289144,4
+3166613,26289144,5
+54713678,26289144,4
+136323962,26289144,5
+1796714,26289144,4
+wordaholic,26289144,1
+73308380,26289144,4
+58262603,26289144,4
+hollytsai,26289144,3
+huhuxiaoxue0219,26289144,5
+wen163,26289144,4
+FuckUrMother,26289144,4
+42475511,26289144,5
+yuchenyuan,26289144,4
+kgbbeer,26289144,4
+53272974,26289144,4
+co1orful,26289144,4
+33535307,26289144,3
+116537123,26289144,3
+70294430,26289144,2
+4137118,26289144,4
+jill426,26289144,4
+49570940,26289144,4
+54998759,26289144,4
+28178228,26289144,4
+doggedbirdman,26289144,4
+antime,26289144,3
+jiajia5460,26289144,5
+69428110,26289144,1
+58932081,26289144,4
+133185272,26289144,5
+58982615,26289144,3
+50153652,26289144,4
+XinwenCheng,26289144,2
+summertonight,26289144,4
+59292042,26289144,5
+olioli2006,26289144,4
+3679808,26289144,4
+103221806,26289144,3
+chenhuangchao,26289144,4
+mogubloom,26289144,3
+66178639,26289144,3
+75912541,26289144,3
+vischer,26289144,3
+66844504,26289144,3
+2751582,26289144,4
+15153228,26289144,1
+117027234,26289144,4
+ccw051746,26289144,2
+3405132,26289144,-1
+53771727,26289144,3
+2192668,26289144,3
+50709951,26289144,3
+ygweric,26289144,4
+48521978,26289144,3
+azthwh,26289144,3
+willer16,26289144,3
+73761450,26289144,3
+68536311,26289144,4
+51880150,26289144,4
+Aidaner,26289144,5
+49949826,26289144,3
+76076225,26289144,4
+sweetmisscat,26289144,4
+liezao,26289144,4
+doomthr,26289144,3
+xiaoshenjing,26289144,4
+78971867,26289144,3
+judymclennon,26289144,3
+xlei130,26289144,4
+4597338,26289144,3
+126970287,26289144,4
+fansherlocked,26289144,3
+79452838,26289144,4
+robamgu,26289144,4
+3859587,26289144,4
+jjq_wuyi,26289144,3
+68283591,26289144,4
+55847395,26289144,-1
+mcbird3017,26289144,2
+eufemia,26289144,2
+58081227,26289144,3
+74418627,26289144,4
+xukaibin,26289144,5
+71326967,26289144,4
+58742522,26289144,-1
+53199476,26289144,4
+60558343,26289144,4
+doralupin,26289144,3
+fallinrnb,26289144,4
+76325781,26289144,5
+63496529,26289144,4
+65765391,26289144,3
+demoncat,26289144,3
+53206696,26289144,4
+77194286,26289144,2
+51760948,26289144,5
+57892517,26289144,4
+54310694,26289144,4
+4775119,26289144,3
+33293861,26289144,4
+101956762,26289144,4
+74648071,26289144,3
+103985409,26289144,2
+4438117,26289144,4
+50245791,26289144,3
+66813486,26289144,2
+130024032,26289144,2
+43062111,26289144,4
+121435894,26289144,5
+99570083,26289144,5
+hichai,26289144,3
+107190379,26289144,4
+53927357,26289144,5
+73376661,26289144,3
+81198978,26289144,-1
+stoneone,26289144,4
+24068635,26289144,1
+liu_feng,26289144,3
+60760301,26289144,4
+hfyyelaine,26289144,5
+1751335,26289144,3
+136521207,26289144,5
+123645823,26289144,4
+108821133,26289144,4
+88459495,26289144,5
+1721507,26289144,3
+68087433,26289144,3
+longzhanyun,26289144,3
+hiUlauraGamins,26289144,3
+56035155,26289144,3
+135405073,26289144,4
+134040475,26289144,3
+noeee_j,26289144,4
+89918754,26289144,4
+41993032,26289144,2
+kashandela,26289144,-1
+alj,26289144,4
+mouliangliang,26289144,4
+44463308,26289144,3
+102408048,26289144,4
+laurayet,26289144,-1
+charachai,26289144,3
+59786510,26289144,4
+happy_cici,26289144,4
+4514711,26289144,5
+elwino,26289144,2
+46375249,26289144,4
+124602530,26289144,3
+yangyiyin,26289144,4
+12573860,26289144,4
+53560863,26289144,4
+nanaei1314,26289144,5
+47636927,26289144,3
+jideknight,26289144,2
+73634739,26289144,4
+guitarain,26289144,4
+53672963,26289144,4
+babekeke,26289144,1
+118854321,26289144,3
+52285215,26289144,4
+53443769,26289144,5
+33328526,26289144,5
+55922564,26289144,4
+121378964,26289144,5
+al1ene,26289144,4
+59760298,26289144,4
+maiko,26289144,4
+46661734,26289144,4
+50280331,26289144,3
+wendy1de,26289144,3
+63401608,26289144,1
+nataliacong,26289144,5
+121389045,26289144,4
+mouq,26289144,2
+53795201,26289144,3
+126316132,26289144,4
+51346390,26289144,5
+59769443,26289144,5
+41866163,26289144,4
+105874953,26289144,5
+69826402,26289144,3
+75478743,26289144,4
+49870315,26289144,3
+68379103,26289144,4
+50298838,26289144,4
+zhecx,26289144,5
+125544960,26289144,4
+40672679,26289144,4
+47790361,26289144,3
+on1ooker,26289144,4
+ilovehouyi,26289144,3
+baleyang,26289144,2
+tracy4125,26289144,4
+82890119,26289144,4
+Uranus_Qiang,26289144,4
+neilfushi,26289144,3
+39023741,26289144,5
+50629690,26289144,4
+66129611,26289144,3
+ATTR,26289144,3
+68636133,26289144,5
+62076752,26289144,3
+serein_xia,26289144,5
+3722910,26289144,3
+71541185,26289144,5
+4901199,26289144,4
+pussy_crystal,26289144,4
+126241489,26289144,4
+yaoyaoxiaozhan,26289144,4
+3605330,26289144,4
+jelly-8,26289144,3
+35670244,26289144,5
+42996081,26289144,5
+63746785,26289144,3
+78733616,26289144,4
+122336700,26289144,1
+la-luna,26289144,4
+58042557,26289144,2
+3768585,26289144,5
+ypl52111,26289144,3
+FayVan,26289144,3
+shaochong,26289144,2
+CTT696,26289144,-1
+springfantasy,26289144,2
+50003038,26289144,3
+125668189,26289144,3
+76733607,26289144,4
+136519546,26289144,5
+40183328,26289144,2
+59005110,26289144,3
+85233162,26289144,4
+134691422,26289144,4
+liarb,26289144,3
+103415530,26289144,5
+HeartForest,26289144,5
+48826276,26289144,3
+108481476,26289144,4
+124869246,26289144,3
+sajmira,26289144,5
+63193528,26289144,3
+4417608,26289144,5
+48304899,26289144,4
+zzz.aoe,26289144,4
+wanran8,26289144,3
+92908596,26289144,4
+manxiaoyi,26289144,4
+wendyhsu,26289144,3
+81743687,26289144,5
+131445784,26289144,3
+135811202,26289144,4
+1866298,26289144,5
+85308049,26289144,5
+76851962,26289144,4
+40547313,26289144,3
+39720218,26289144,4
+liushuangning,26289144,5
+60864587,26289144,4
+Leung_QY,26289144,4
+131503183,26289144,4
+chen_yubing,26289144,5
+45610248,26289144,4
+daoguangzi,26289144,4
+90586431,26289144,3
+l726,26289144,4
+waiting.u,26289144,5
+41418393,26289144,5
+64218065,26289144,4
+78119952,26289144,3
+77210486,26289144,2
+ihelan,26289144,3
+134905637,26289144,3
+40429499,26289144,5
+90477595,26289144,5
+60862220,26289144,5
+2431859,26289144,4
+xiaohe5210,26289144,2
+2201230,26289144,4
+p0pking,26289144,3
+50914146,26289144,3
+76154113,26289144,5
+26721122,26289144,3
+97623200,26289144,2
+74316022,26289144,1
+76022781,26289144,4
+33158247,26289144,3
+36426059,26289144,3
+baby-films,26289144,5
+58862112,26289144,3
+Rex0729,26289144,4
+87652766,26289144,4
+54536799,26289144,4
+72438704,26289144,5
+61369333,26289144,3
+61369333,26289144,3
+4930666,26289144,3
+136414483,26289144,3
+45226797,26289144,3
+happymiki,26289144,3
+44449851,26289144,4
+mupushaonian,26289144,4
+68393714,26289144,5
+57978267,26289144,1
+everscot,26289144,4
+shamrockyly,26289144,3
+91419673,26289144,5
+huiverci,26289144,5
+56300680,26289144,3
+56362540,26289144,3
+60691717,26289144,3
+48807971,26289144,3
+39382448,26289144,4
+127691807,26289144,5
+83141101,26289144,4
+83141101,26289144,4
+63229017,26289144,5
+63223325,26289144,4
+60162366,26289144,5
+58321080,26289144,4
+52003342,26289144,4
+43790343,26289144,2
+62416822,26289144,4
+vastyin,26289144,4
+57835629,26289144,4
+134733966,26289144,3
+54999083,26289144,3
+96410540,26289144,5
+sarlthuz,26289144,4
+mxmfly,26289144,3
+mycelia,26289144,4
+66066002,26289144,2
+augustyuma,26289144,3
+41540943,26289144,4
+yuyueehappy,26289144,5
+61257668,26289144,4
+15019258,26289144,4
+4607251,26289144,3
+a83848400,26289144,4
+74250747,26289144,5
+51295548,26289144,5
+68770847,26289144,3
+67810943,26289144,3
+131117019,26289144,3
+136029895,26289144,3
+Matchamario,26289144,4
+83209029,26289144,3
+9352143,26289144,3
+gummy917,26289144,3
+ilovejenny,26289144,4
+53981944,26289144,5
+frdom,26289144,4
+127615137,26289144,5
+3723538,26289144,5
+3914295,26289144,3
+3914295,26289144,3
+18080670,26289144,3
+64554096,26289144,3
+superlionisme,26289144,3
+41351821,26289144,3
+king1099,26289144,4
+81639579,26289144,3
+44665319,26289144,-1
+Sunny851020,26289144,4
+jaciewho,26289144,4
+136429512,26289144,4
+69010983,26289144,5
+janice5680,26289144,3
+57520009,26289144,4
+121180696,26289144,4
+136486316,26289144,5
+135644096,26289144,4
+58649588,26289144,2
+ipci,26289144,3
+36805272,26289144,3
+cherry1992,26289144,4
+annow,26289144,4
+2462297,26289144,4
+Melbourner,26289144,4
+5942247,26289144,3
+4272255,26289144,4
+60269516,26289144,4
+57889564,26289144,4
+missdonglian,26289144,3
+130956052,26289144,3
+42607862,26289144,3
+55354703,26289144,3
+6745246,26289144,4
+52698885,26289144,3
+75968056,26289144,4
+34144556,26289144,5
+zzgpyfz,26289144,4
+maxililyn,26289144,3
+windfromthesea,26289144,4
+67034338,26289144,4
+christinechu,26289144,5
+123179800,26289144,5
+45661108,26289144,4
+CaptBastard,26289144,3
+57598902,26289144,4
+hot_air,26289144,3
+Gorjess3,26289144,3
+64134058,26289144,3
+2053503,26289144,5
+72409759,26289144,5
+136456134,26289144,-1
+hellogusi,26289144,4
+135340486,26289144,4
+60822574,26289144,4
+3212763,26289144,3
+121084172,26289144,1
+25392363,26289144,5
+95078314,26289144,4
+54529164,26289144,4
+eeneq,26289144,5
+eeneq,26289144,5
+120884692,26289144,2
+supernic,26289144,3
+127363163,26289144,5
+shf993,26289144,4
+56130792,26289144,4
+26512693,26289144,4
+yayun920,26289144,4
+59379949,26289144,5
+66517587,26289144,3
+132778268,26289144,4
+62206199,26289144,-1
+54422705,26289144,4
+44535286,26289144,3
+48771323,26289144,4
+30158344,26289144,4
+eatbananamoku,26289144,3
+shuo3dao4,26289144,4
+favezhihao,26289144,4
+134589409,26289144,4
+ffliens,26289144,5
+131021845,26289144,5
+134535776,26289144,4
+muz,26289144,5
+jing1,26289144,-1
+2423369,26289144,3
+134532071,26289144,4
+69594701,26289144,4
+hanabee,26289144,3
+5894610,26289144,2
+82889147,26289144,3
+melons,26289144,3
+45826317,26289144,5
+46660893,26289144,5
+51598496,26289144,5
+53863493,26289144,3
+YolandaCH,26289144,3
+44716146,26289144,4
+Edward_anglo,26289144,-1
+52597615,26289144,4
+lovesnow,26289144,5
+51481104,26289144,4
+121146638,26289144,4
+63283899,26289144,3
+68912083,26289144,2
+100348160,26289144,4
+lingmo7seven,26289144,5
+14504992,26289144,4
+125599557,26289144,4
+AuZeonFung,26289144,5
+57291726,26289144,2
+61944030,26289144,2
+uma_wang,26289144,4
+niangaoshou,26289144,5
+73296834,26289144,5
+72397969,26289144,-1
+130526629,26289144,4
+121320565,26289144,3
+1958346,26289144,4
+30674711,26289144,3
+zw_hu,26289144,5
+tammysky,26289144,4
+61486728,26289144,1
+liuanan0606,26289144,3
+wlhjz,26289144,5
+36942754,26289144,4
+59264472,26289144,3
+4683518,26289144,3
+136118939,26289144,4
+128129404,26289144,3
+57942746,26289144,3
+68512611,26289144,4
+Dora_bamboo,26289144,2
+48782582,26289144,4
+81418362,26289144,3
+73339051,26289144,4
+a476583825,26289144,3
+Y19950422,26289144,4
+80922094,26289144,3
+83895101,26289144,3
+83895101,26289144,3
+87884169,26289144,5
+51247618,26289144,3
+33493653,26289144,4
+120048612,26289144,4
+kitashin,26289144,3
+62791393,26289144,5
+63451140,26289144,4
+129176844,26289144,2
+125346898,26289144,-1
+68783162,26289144,5
+1929074,26289144,4
+Jerusalem,26289144,4
+July_AuE,26289144,4
+83691000,26289144,4
+pussyran,26289144,4
+81548391,26289144,4
+80531028,26289144,5
+47302173,26289144,3
+128409852,26289144,3
+ywjaij,26289144,5
+2708623,26289144,3
+oxolin,26289144,4
+78389609,26289144,2
+123680755,26289144,4
+haimian1077,26289144,4
+Tensa,26289144,4
+freakyoyo,26289144,3
+84147839,26289144,4
+2180956,26289144,1
+104674523,26289144,3
+53058832,26289144,4
+nikkiwu,26289144,4
+yupz,26289144,3
+cecelove,26289144,2
+91253707,26289144,4
+killeren,26289144,3
+61627108,26289144,5
+47129931,26289144,3
+14186233,26289144,3
+sdmscuhm,26289144,2
+129287014,26289144,4
+smallfish.xy,26289144,4
+130792302,26289144,3
+130766873,26289144,4
+118269905,26289144,3
+54080134,26289144,3
+wyfar,26289144,4
+sev7n777,26289144,4
+25378672,26289144,3
+ST595521ZKJA,26289144,4
+23543377,26289144,3
+80149039,26289144,4
+chowmo,26289144,4
+53222131,26289144,5
+115838732,26289144,3
+waiwaixiaohei,26289144,3
+hehechishiba,26289144,3
+58919934,26289144,1
+shaochen,26289144,4
+shaochen,26289144,4
+4372272,26289144,4
+103113444,26289144,4
+94574301,26289144,4
+119370592,26289144,4
+shinedeaki,26289144,2
+128514178,26289144,4
+48789683,26289144,5
+fiona_0314,26289144,5
+xiaoxiaolotus,26289144,5
+3406492,26289144,4
+19872766,26289144,3
+floragrx,26289144,4
+lovemofei,26289144,1
+chenfuxiao,26289144,3
+136101337,26289144,4
+57370977,26289144,3
+silent_island,26289144,3
+quizas63,26289144,4
+3643830,26289144,2
+liero,26289144,4
+130479445,26289144,4
+WENDYYYY,26289144,3
+PoisonLove,26289144,4
+66711391,26289144,4
+salutsissi,26289144,3
+shuizhimuhua,26289144,4
+aaaai,26289144,4
+120377965,26289144,3
+badjian,26289144,4
+NiCe.,26289144,2
+83059994,26289144,5
+55966458,26289144,4
+anfeather,26289144,3
+lipiaopiao,26289144,3
+5691697,26289144,3
+honeylkx,26289144,2
+beartt,26289144,3
+64926044,26289144,3
+50410160,26289144,4
+133926657,26289144,4
+Shulamit,26289144,5
+52267229,26289144,5
+63496954,26289144,4
+Mrfivefour,26289144,4
+gayly,26289144,3
+2137558,26289144,5
+50644881,26289144,2
+120699928,26289144,4
+48174123,26289144,3
+114185062,26289144,-1
+lichuman,26289144,5
+4283602,26289144,5
+bbqdfc,26289144,4
+5594345,26289144,3
+68746215,26289144,5
+houjingmeng,26289144,3
+3897743,26289144,4
+136182892,26289144,4
+43475473,26289144,4
+43475473,26289144,4
+46801772,26289144,4
+tanshisher,26289144,4
+wooafei,26289144,5
+57377370,26289144,5
+nighteye1123,26289144,3
+ydzxt,26289144,4
+114407604,26289144,5
+66458815,26289144,4
+1735243,26289144,3
+71953415,26289144,3
+51955688,26289144,5
+whitekid,26289144,4
+63760743,26289144,3
+82656562,26289144,2
+52261532,26289144,5
+51770922,26289144,4
+bluesubmarine,26289144,4
+1739454,26289144,5
+128453737,26289144,4
+119426305,26289144,3
+67759592,26289144,4
+LlllllShort,26289144,5
+109410390,26289144,3
+elin9410,26289144,4
+55597423,26289144,2
+135237923,26289144,4
+69573255,26289144,2
+6575514,26289144,5
+61716542,26289144,5
+69345836,26289144,5
+113086665,26289144,4
+60662065,26289144,5
+72186585,26289144,4
+4024346,26289144,4
+myp13,26289144,3
+46936304,26289144,5
+7221416,26289144,1
+92785730,26289144,3
+106525523,26289144,5
+136414380,26289144,5
+bunny_Shen,26289144,4
+65339606,26289144,5
+123180881,26289144,1
+49921068,26289144,3
+44172316,26289144,4
+63578418,26289144,5
+53773134,26289144,2
+sxzhw,26289144,5
+1055848,26289144,-1
+58601681,26289144,5
+96336225,26289144,2
+70058362,26289144,3
+happyhealthy,26289144,-1
+2705335,26289144,4
+3618040,26289144,4
+52142248,26289144,5
+tangmy,26289144,3
+icepenny77,26289144,3
+40537905,26289144,4
+swiftflyer,26289144,3
+134632462,26289144,-1
+73906021,26289144,4
+58609577,26289144,3
+2393543,26289144,5
+67796922,26289144,3
+46871873,26289144,3
+93939166,26289144,4
+131950889,26289144,3
+yjm35,26289144,2
+calvinlv,26289144,3
+44719295,26289144,-1
+aki_520,26289144,2
+78166876,26289144,5
+Chris_Martin,26289144,3
+66461284,26289144,4
+Linc_F,26289144,3
+mys123212,26289144,5
+pengpengyue,26289144,3
+vivinihgt,26289144,3
+xiaopjie,26289144,2
+136351240,26289144,5
+cynthia_nn_bbd,26289144,4
+83769093,26289144,4
+69388549,26289144,5
+43725091,26289144,3
+BBINGSUMWONG,26289144,3
+49314440,26289144,1
+114115384,26289144,3
+43516388,26289144,4
+48899980,26289144,4
+heyflower,26289144,5
+sharon_p,26289144,4
+3495477,26289144,3
+51836771,26289144,4
+126836075,26289144,3
+59890597,26289144,5
+yuyuzstarry,26289144,3
+85447526,26289144,4
+kishtyy_41,26289144,4
+62526131,26289144,4
+yuanaibing,26289144,3
+63869528,26289144,5
+summermarch,26289144,5
+Seuysiro,26289144,3
+1374666,26289144,5
+jiangrenz,26289144,2
+sum13,26289144,2
+85174401,26289144,4
+49967051,26289144,3
+xixixiaoshen,26289144,5
+1333997,26289144,2
+21530603,26289144,3
+sbandsthfrjelly,26289144,3
+eleven0205,26289144,1
+60941930,26289144,4
+dearsnow,26289144,1
+52609527,26289144,1
+48267278,26289144,5
+128652326,26289144,3
+51289537,26289144,4
+xiao8888,26289144,-1
+63907427,26289144,-1
+7778058,26289144,4
+2797211,26289144,3
+2231648,26289144,4
+58698487,26289144,4
+moveqiu,26289144,5
+july0007,26289144,5
+62842608,26289144,3
+89804270,26289144,3
+4454159,26289144,4
+3009345,26289144,4
+136272866,26289144,1
+afux,26289144,4
+58596015,26289144,3
+2401259,26289144,4
+swedishwolf,26289144,5
+shgy,26289144,3
+1172084,26289144,-1
+14747203,26289144,3
+floatingmeat,26289144,5
+whuizw,26289144,1
+15277249,26289144,-1
+56907428,26289144,4
+malalt,26289144,3
+120466803,26289144,3
+annko,26289144,-1
+76785095,26289144,4
+64741757,26289144,4
+fadeaway-gdpu,26289144,4
+54950596,26289144,4
+80517374,26289144,4
+dhhbanana,26289144,3
+59101445,26289144,4
+78588109,26289144,4
+61005123,26289144,5
+42087177,26289144,4
+66073374,26289144,5
+51411741,26289144,4
+75322643,26289144,4
+mingyaback,26289144,4
+41414161,26289144,4
+106276288,26289144,-1
+daniel1027,26289144,4
+32251971,26289144,4
+41196216,26289144,4
+71411074,26289144,4
+70300693,26289144,4
+70144915,26289144,4
+mujin1217,26289144,4
+100193335,26289144,5
+xiaoyaozizai,26289144,4
+juandingcao,26289144,5
+51790635,26289144,4
+120112831,26289144,4
+76961213,26289144,2
+fannie7,26289144,4
+49874489,26289144,4
+75349359,26289144,5
+81537831,26289144,4
+92945557,26289144,3
+58380064,26289144,5
+44057273,26289144,3
+61223246,26289144,5
+42306867,26289144,2
+3907593,26289144,4
+45681506,26289144,4
+50935504,26289144,3
+basil_yying,26289144,4
+47265467,26289144,4
+36501764,26289144,5
+63927330,26289144,4
+2822846,26289144,3
+moonlightshit,26289144,3
+44406151,26289144,4
+79337395,26289144,2
+81521718,26289144,5
+2348623,26289144,-1
+129235712,26289144,4
+xyl412,26289144,3
+49345167,26289144,3
+shuyiran,26289144,5
+96176619,26289144,4
+amis110,26289144,4
+26438724,26289144,3
+119669141,26289144,4
+51741700,26289144,3
+bluebelieve9,26289144,3
+44286528,26289144,4
+53081187,26289144,2
+48940249,26289144,3
+54289383,26289144,3
+yangyixiu1218,26289144,2
+33892693,26289144,5
+maggiehu0611,26289144,4
+70509713,26289144,3
+84424223,26289144,4
+2483011,26289144,3
+chloethegirl,26289144,3
+50788557,26289144,4
+yuxiaodi1988,26289144,3
+99410677,26289144,5
+3502294,26289144,3
+131988839,26289144,1
+81126169,26289144,2
+59504522,26289144,4
+51898267,26289144,4
+74196818,26289144,5
+69116047,26289144,4
+56282257,26289144,3
+1776736,26289144,5
+58993842,26289144,4
+misskaka214,26289144,3
+80814520,26289144,3
+35546848,26289144,3
+43978557,26289144,5
+54011582,26289144,3
+63192479,26289144,5
+meskelil,26289144,4
+minishine,26289144,4
+131184477,26289144,5
+51815376,26289144,-1
+angalny,26289144,3
+shushushu,26289144,4
+51607217,26289144,4
+57848317,26289144,4
+121339145,26289144,3
+61602134,26289144,4
+2682646,26289144,5
+47899490,26289144,4
+cowsumy,26289144,3
+camart,26289144,3
+sakurax7,26289144,3
+97840419,26289144,3
+44512364,26289144,5
+3341822,26289144,1
+cyg,26289144,4
+135144421,26289144,3
+62079416,26289144,4
+88588672,26289144,4
+40267974,26289144,3
+futoublog,26289144,4
+danlan121,26289144,4
+cynthia_he,26289144,4
+chengxiaoxi,26289144,3
+ainaonao,26289144,4
+Sugwene1030,26289144,3
+66219063,26289144,5
+62117653,26289144,4
+122789808,26289144,3
+Holidayczz,26289144,3
+susy0915,26289144,5
+FennyFu,26289144,3
+53872605,26289144,4
+130701225,26289144,2
+59691399,26289144,4
+goffy2679,26289144,3
+yime1991,26289144,4
+nieer,26289144,2
+nieer,26289144,2
+58009802,26289144,5
+PiGet,26289144,4
+3307476,26289144,4
+57943457,26289144,5
+34343005,26289144,3
+57927830,26289144,3
+101884264,26289144,4
+xuliking,26289144,2
+75741734,26289144,4
+91604108,26289144,4
+47317154,26289144,2
+53183648,26289144,4
+52861626,26289144,5
+teasung,26289144,4
+57332584,26289144,4
+81463697,26289144,3
+lingjue,26289144,-1
+mythjill,26289144,3
+2064399,26289144,5
+2841888,26289144,4
+GeSMD,26289144,4
+56752723,26289144,5
+136113347,26289144,2
+71678016,26289144,3
+72354881,26289144,4
+1480836,26289144,3
+lionelwait,26289144,4
+49748458,26289144,3
+gaoxingsan,26289144,4
+pgt12490,26289144,4
+ali0811,26289144,2
+55874670,26289144,5
+47529528,26289144,4
+anjingyigeren,26289144,-1
+127115764,26289144,4
+52471406,26289144,4
+102572566,26289144,4
+49359781,26289144,3
+58197963,26289144,4
+alessioliu,26289144,3
+NicholasY,26289144,5
+107291767,26289144,-1
+61726273,26289144,5
+68799841,26289144,2
+Robaholic,26289144,2
+4719654,26289144,3
+51344773,26289144,5
+55357697,26289144,4
+50444681,26289144,4
+notgiven,26289144,4
+65100690,26289144,5
+chaoz-mozart,26289144,3
+3071518,26289144,4
+3625567,26289144,3
+115590990,26289144,3
+60510742,26289144,3
+zacksuzi,26289144,5
+4271937,26289144,4
+Evelyn-7-,26289144,3
+51496046,26289144,-1
+50451729,26289144,4
+135934616,26289144,3
+41471411,26289144,3
+91276258,26289144,3
+61097384,26289144,4
+49167865,26289144,4
+92340956,26289144,3
+echo520f1,26289144,4
+70895488,26289144,4
+luyut1an,26289144,1
+Azore,26289144,4
+jadexyy,26289144,4
+51606142,26289144,3
+16739191,26289144,4
+74479184,26289144,2
+57465841,26289144,3
+42939045,26289144,4
+claraz,26289144,5
+72721074,26289144,3
+2535875,26289144,3
+50075764,26289144,3
+novel_zhou,26289144,3
+48483774,26289144,5
+38849125,26289144,4
+33569099,26289144,4
+37599552,26289144,2
+61703383,26289144,3
+67781034,26289144,-1
+39792754,26289144,2
+Vanness94,26289144,4
+41145721,26289144,4
+53177130,26289144,3
+dengxuanhai,26289144,4
+imedi,26289144,4
+2198085,26289144,-1
+nokia13792,26289144,2
+135105019,26289144,5
+2548730,26289144,4
+Kkumako,26289144,3
+bxhOTZ,26289144,3
+58482051,26289144,5
+50669136,26289144,5
+2920373,26289144,2
+123250951,26289144,4
+jinglee,26289144,4
+shuojiushuoa,26289144,4
+56890247,26289144,3
+41601748,26289144,5
+43409918,26289144,4
+46609900,26289144,3
+Cici0926,26289144,2
+134867156,26289144,5
+121829507,26289144,3
+chrissylee57,26289144,3
+38850701,26289144,2
+56421063,26289144,3
+62314563,26289144,3
+127380029,26289144,5
+75001572,26289144,5
+nuvo615,26289144,4
+127217738,26289144,3
+35373128,26289144,3
+59510725,26289144,3
+54826042,26289144,4
+xingbao,26289144,4
+bldhdh,26289144,4
+36834058,26289144,-1
+deanhong,26289144,-1
+65187145,26289144,2
+79163651,26289144,3
+62776173,26289144,5
+74479513,26289144,4
+31068073,26289144,4
+64173784,26289144,4
+46150436,26289144,5
+128681923,26289144,5
+43628275,26289144,5
+45274800,26289144,4
+48548563,26289144,3
+49695045,26289144,3
+sep17,26289144,3
+2376689,26289144,-1
+59902058,26289144,3
+59205597,26289144,3
+zuohengheng,26289144,3
+59968869,26289144,5
+marioshuairen,26289144,5
+71861591,26289144,2
+48071372,26289144,4
+82323132,26289144,5
+Grahame,26289144,5
+69420876,26289144,4
+2633400,26289144,3
+73836336,26289144,3
+4905173,26289144,4
+sara810,26289144,4
+2325728,26289144,4
+LoveHugo,26289144,4
+89928823,26289144,3
+PranChen,26289144,5
+minilbiss,26289144,3
+lazylauren,26289144,2
+77169093,26289144,4
+2339752,26289144,3
+58049381,26289144,4
+59274268,26289144,3
+63830017,26289144,3
+52451276,26289144,4
+3328294,26289144,2
+shawluke,26289144,5
+sxdwzwq,26289144,5
+111273600,26289144,3
+xx0301ll,26289144,4
+2742057,26289144,3
+44966176,26289144,5
+45792472,26289144,5
+72114683,26289144,5
+liulull,26289144,2
+78623858,26289144,4
+82191110,26289144,3
+45446265,26289144,2
+65745378,26289144,3
+Sandal,26289144,2
+ichaos,26289144,4
+61981962,26289144,4
+61832156,26289144,-1
+67867905,26289144,4
+2211931,26289144,3
+snails,26289144,3
+54521491,26289144,4
+41457619,26289144,5
+23730457,26289144,3
+74984713,26289144,5
+kidrun,26289144,3
+acomplexman,26289144,3
+61468605,26289144,5
+46338692,26289144,4
+46935861,26289144,3
+3845131,26289144,4
+41728393,26289144,3
+missliyu,26289144,3
+104227005,26289144,4
+74420370,26289144,4
+61727406,26289144,3
+67200749,26289144,4
+67914839,26289144,3
+lady_xiaxia,26289144,3
+60905842,26289144,3
+jenui,26289144,5
+51432613,26289144,5
+WindmillPotato,26289144,4
+50785163,26289144,5
+48225270,26289144,5
+42465234,26289144,1
+ciell,26289144,3
+59393765,26289144,2
+125913784,26289144,4
+4806185,26289144,4
+95310145,26289144,5
+56904781,26289144,2
+xinyuemeizi,26289144,4
+58058472,26289144,5
+124789721,26289144,3
+73784914,26289144,3
+50851758,26289144,4
+chumin201111,26289144,5
+91827424,26289144,3
+3174793,26289144,-1
+4317922,26289144,3
+18965054,26289144,4
+75487013,26289144,4
+64720052,26289144,4
+52334443,26289144,4
+49819133,26289144,4
+79474538,26289144,4
+65178670,26289144,5
+64866923,26289144,3
+stevepak,26289144,-1
+eric-ma,26289144,3
+Yhughcheni,26289144,5
+65280514,26289144,4
+57285224,26289144,4
+devilnue,26289144,5
+26602627,26289144,4
+mooreweicheng,26289144,3
+yge007,26289144,4
+49925058,26289144,3
+57585752,26289144,2
+xguozi,26289144,4
+38175644,26289144,3
+62041863,26289144,4
+64107641,26289144,3
+64819804,26289144,3
+amigo4978,26289144,3
+vivienvb,26289144,4
+somegg,26289144,3
+33069641,26289144,-1
+zhonglizhongli,26289144,4
+131492184,26289144,4
+131416608,26289144,3
+40383640,26289144,3
+60232571,26289144,4
+132885035,26289144,4
+Prettymask,26289144,3
+ranke0129,26289144,4
+87558213,26289144,2
+luominlala,26289144,4
+3217987,26289144,4
+87889980,26289144,4
+39381148,26289144,2
+4141698,26289144,4
+catsama77,26289144,3
+cloudlandlord,26289144,3
+61169740,26289144,4
+43135103,26289144,-1
+32835447,26289144,4
+inyer,26289144,4
+linayan,26289144,3
+136274471,26289144,3
+136274471,26289144,3
+44761442,26289144,3
+billyqianbin,26289144,3
+75844331,26289144,-1
+muyu125,26289144,4
+64394091,26289144,2
+shuqianshu,26289144,3
+lixiaofu,26289144,3
+1376657,26289144,3
+62730894,26289144,4
+108685938,26289144,4
+134682190,26289144,5
+Emir-vision,26289144,4
+luteng1990,26289144,5
+63686313,26289144,3
+zhongdoudou,26289144,4
+59716419,26289144,4
+renchang,26289144,3
+73880278,26289144,3
+25123789,26289144,2
+56652624,26289144,5
+56582926,26289144,3
+emma777,26289144,4
+60471758,26289144,5
+12719976,26289144,5
+wayne_connie,26289144,5
+63528456,26289144,3
+121834295,26289144,4
+qingmeixue,26289144,5
+64543096,26289144,3
+shuichenwei,26289144,4
+53866546,26289144,4
+3671639,26289144,5
+125846188,26289144,4
+1956921,26289144,2
+Susieimayday,26289144,5
+2135192,26289144,4
+45419889,26289144,3
+caspertang,26289144,3
+54570781,26289144,4
+49556694,26289144,4
+58948498,26289144,4
+123503132,26289144,4
+72573288,26289144,4
+67324922,26289144,-1
+lelexiaomifeng,26289144,4
+arthurx,26289144,3
+120674319,26289144,5
+88789846,26289144,-1
+3450694,26289144,3
+48599915,26289144,5
+121346117,26289144,3
+vera-cyw,26289144,3
+56780755,26289144,5
+sdanlin,26289144,5
+36821087,26289144,4
+ryanerd,26289144,2
+mereth,26289144,2
+3541486,26289144,4
+28467614,26289144,4
+sonoflucifer,26289144,5
+lvyimeng,26289144,3
+36399495,26289144,-1
+129683109,26289144,3
+125027221,26289144,5
+cianshijie,26289144,3
+4408749,26289144,3
+29315501,26289144,5
+seattle_on,26289144,3
+kuaml,26289144,-1
+pottqqq,26289144,3
+zyr2014,26289144,3
+3007679,26289144,4
+41086018,26289144,4
+95313700,26289144,3
+shaoraul,26289144,3
+44398603,26289144,5
+119312314,26289144,2
+41959776,26289144,3
+42421580,26289144,4
+76139174,26289144,4
+lilian_016,26289144,4
+42689691,26289144,3
+1061597,26289144,3
+80359618,26289144,5
+kikoliu999,26289144,4
+41633750,26289144,5
+19224434,26289144,-1
+nuriazsy,26289144,5
+earthchild,26289144,4
+wateralong,26289144,2
+52352034,26289144,4
+60668466,26289144,2
+53877349,26289144,3
+inzaghi0301,26289144,4
+66540464,26289144,2
+vacancy_v,26289144,5
+Shod,26289144,4
+50738921,26289144,4
+79604654,26289144,4
+kamiyamaki,26289144,2
+42841809,26289144,2
+anlrj,26289144,5
+49041999,26289144,4
+4242515,26289144,4
+wu-x,26289144,2
+37488201,26289144,-1
+1778043,26289144,5
+102688832,26289144,3
+Plumed__Serpent,26289144,2
+59310960,26289144,3
+arr,26289144,2
+46902790,26289144,4
+70190804,26289144,5
+delhaize,26289144,2
+freak_lee,26289144,4
+135643960,26289144,4
+cuplzsh,26289144,4
+134504758,26289144,5
+muxieyes,26289144,3
+48080680,26289144,5
+elainemumu,26289144,2
+a-kico,26289144,3
+76447430,26289144,4
+lainey1006,26289144,4
+124822296,26289144,4
+u-sister,26289144,2
+2417785,26289144,3
+54967455,26289144,3
+50633776,26289144,5
+44580028,26289144,4
+73012023,26289144,5
+BakerHong,26289144,5
+summerwith,26289144,4
+136175260,26289144,4
+7735198,26289144,4
+133794602,26289144,3
+Stone2k,26289144,4
+104751637,26289144,-1
+88226626,26289144,4
+yanzi1214,26289144,4
+61270686,26289144,3
+xiaojiongxia,26289144,4
+guaitai19960115,26289144,5
+83760985,26289144,5
+79856999,26289144,3
+56445461,26289144,5
+47040745,26289144,3
+iametsuko,26289144,4
+Razzmatazz,26289144,3
+60385357,26289144,4
+84722461,26289144,4
+61477909,26289144,3
+andrew_2015,26289144,4
+sleeper0803,26289144,4
+ddww911028,26289144,4
+chinabeta,26289144,2
+57140596,26289144,4
+73189680,26289144,4
+67848338,26289144,3
+2168902,26289144,3
+NinaAobi,26289144,4
+lulu521621,26289144,4
+yue17years,26289144,-1
+84140369,26289144,5
+53636341,26289144,1
+52298238,26289144,4
+50150728,26289144,4
+91037754,26289144,3
+rainboo,26289144,4
+3163266,26289144,4
+tonyDFR,26289144,4
+iceJY,26289144,4
+Lan.die,26289144,3
+1840916,26289144,4
+PASSMEBY,26289144,3
+axiuluo1529,26289144,3
+38620886,26289144,4
+11390117,26289144,5
+sth-,26289144,5
+43916458,26289144,4
+60747828,26289144,4
+stardust1900,26289144,3
+45923688,26289144,4
+120299687,26289144,3
+iCyBLeu,26289144,4
+3520935,26289144,3
+135563932,26289144,3
+48959774,26289144,4
+3560125,26289144,5
+Dhuahua,26289144,3
+weidal,26289144,4
+43176264,26289144,4
+50880028,26289144,4
+27352868,26289144,3
+4283326,26289144,4
+52384106,26289144,4
+Ranfeg,26289144,-1
+mmmcc,26289144,4
+130370376,26289144,4
+bmw.lili,26289144,3
+badbad123,26289144,3
+129703830,26289144,-1
+margarette,26289144,2
+V.J.,26289144,3
+zaozao928,26289144,4
+1498768,26289144,4
+9172847,26289144,4
+55937071,26289144,5
+62622662,26289144,1
+4254640,26289144,4
+HelloMe_2897,26289144,4
+110172016,26289144,4
+pinkypxy,26289144,3
+84247711,26289144,5
+caoyuan851104,26289144,3
+YWC,26289144,4
+boncourage3,26289144,4
+43244299,26289144,4
+joegago,26289144,5
+joegago,26289144,5
+iris59,26289144,-1
+63573286,26289144,4
+1967327,26289144,4
+qiaoqiaotc,26289144,5
+renjie805,26289144,4
+39857951,26289144,4
+58001500,26289144,3
+135328500,26289144,4
+21606016,26289144,4
+Z-nana,26289144,5
+25694661,26289144,5
+magicxiaobi,26289144,3
+43087425,26289144,5
+27090157,26289144,3
+babyfairy,26289144,4
+20968477,26289144,3
+120978925,26289144,4
+allwordswrong,26289144,4
+catfacegirl,26289144,3
+44377776,26289144,4
+56008028,26289144,2
+59027708,26289144,4
+115204143,26289144,2
+53434063,26289144,4
+108496496,26289144,3
+4111954,26289144,4
+46902321,26289144,4
+71833015,26289144,5
+1773126,26289144,3
+yutou15,26289144,4
+liulenju,26289144,5
+54991939,26289144,1
+136256083,26289144,3
+mutou11,26289144,5
+42535612,26289144,4
+55782908,26289144,2
+48502467,26289144,5
+132012039,26289144,3
+49599539,26289144,4
+YeLLow_qst,26289144,4
+119879807,26289144,5
+34894274,26289144,3
+Yuimokin,26289144,4
+3862249,26289144,5
+4199486,26289144,4
+43521036,26289144,4
+liaoyi281,26289144,5
+46148106,26289144,3
+48870542,26289144,5
+8049242,26289144,3
+miaomiaoxy,26289144,4
+121997108,26289144,3
+131927527,26289144,3
+130069675,26289144,4
+2558955,26289144,4
+110519343,26289144,4
+yumoxin,26289144,4
+134540692,26289144,4
+69016984,26289144,3
+61134040,26289144,3
+8136180,26289144,3
+131841419,26289144,4
+32540198,26289144,3
+summer24,26289144,4
+xiaozhumomo,26289144,3
+Ray_u,26289144,4
+45935236,26289144,5
+54562055,26289144,4
+102904949,26289144,4
+90657049,26289144,3
+134085839,26289144,5
+lonelyalex,26289144,3
+bt4ever,26289144,3
+63821916,26289144,4
+54802370,26289144,3
+134875531,26289144,3
+71814035,26289144,1
+63113488,26289144,5
+lave,26289144,4
+lave,26289144,4
+gilyun,26289144,3
+3201065,26289144,3
+47993943,26289144,5
+jiangaaron,26289144,1
+62864634,26289144,4
+Fucking_hell,26289144,3
+70614930,26289144,3
+99215743,26289144,4
+102484426,26289144,4
+31829657,26289144,2
+1554569,26289144,2
+44515615,26289144,4
+1793602,26289144,4
+hejinsomething,26289144,5
+marlborosin,26289144,3
+74894651,26289144,5
+Sweetchin_music,26289144,5
+18628004,26289144,4
+103491600,26289144,3
+wildbeast,26289144,4
+chenolivia,26289144,3
+67590523,26289144,4
+1457201,26289144,3
+yuedawei,26289144,3
+60161074,26289144,5
+aprilhan,26289144,3
+Rosesea,26289144,2
+102494610,26289144,2
+130189758,26289144,5
+61415856,26289144,2
+littleshit,26289144,3
+terry_f,26289144,3
+yu830,26289144,5
+Crecy,26289144,3
+2887401,26289144,3
+peyman,26289144,3
+78169762,26289144,3
+83129118,26289144,4
+3413987,26289144,3
+qweerew,26289144,4
+cStar,26289144,1
+42832142,26289144,3
+48164029,26289144,4
+york_hust,26289144,4
+minimao,26289144,3
+66113793,26289144,4
+103902770,26289144,4
+sunny1363,26289144,4
+mabeysomeday,26289144,5
+nikkispaghetti,26289144,3
+Cyder,26289144,4
+122590335,26289144,4
+71135421,26289144,3
+catails,26289144,3
+16084893,26289144,4
+45722226,26289144,3
+9556755,26289144,3
+51401605,26289144,3
+97299651,26289144,5
+114570353,26289144,5
+27658050,26289144,5
+88172383,26289144,4
+57235976,26289144,4
+121656332,26289144,4
+1049600,26289144,3
+3641686,26289144,5
+kenheart_ccxuan,26289144,5
+65981408,26289144,3
+supersaul,26289144,4
+65108877,26289144,4
+4191277,26289144,3
+128645743,26289144,3
+85398836,26289144,3
+67523622,26289144,-1
+2415644,26289144,4
+48202410,26289144,5
+45789849,26289144,4
+3584350,26289144,4
+71348074,26289144,4
+125671008,26289144,3
+43857375,26289144,4
+104825430,26289144,4
+lovers-fahion,26289144,5
+zhaozhaolv,26289144,3
+zhr123456,26289144,5
+Dodora_Pan,26289144,4
+49968268,26289144,4
+8242631,26289144,4
+65417028,26289144,3
+78757579,26289144,4
+61540850,26289144,5
+49228717,26289144,4
+fangyuan1mi,26289144,3
+64595804,26289144,4
+126723672,26289144,4
+45933152,26289144,4
+50054232,26289144,4
+37777456,26289144,-1
+zyr899,26289144,4
+49808652,26289144,3
+51474271,26289144,4
+anxincheer,26289144,3
+85119623,26289144,5
+52932994,26289144,3
+65107816,26289144,4
+2439852,26289144,4
+68535584,26289144,5
+41441330,26289144,5
+53455203,26289144,4
+Joan_Jean,26289144,3
+danxun,26289144,3
+47820005,26289144,2
+33718788,26289144,5
+chara4,26289144,4
+130474636,26289144,4
+34500753,26289144,4
+scohj,26289144,3
+131618502,26289144,3
+1313358,26289144,2
+129575965,26289144,3
+76443964,26289144,5
+monkeyQ,26289144,3
+51377015,26289144,3
+zuozichu,26289144,3
+120790874,26289144,-1
+88074921,26289144,4
+76543755,26289144,3
+K-Child,26289144,3
+46572945,26289144,3
+129219793,26289144,3
+129633404,26289144,4
+54945552,26289144,5
+58636228,26289144,5
+65388451,26289144,-1
+2600115,26289144,4
+51435663,26289144,5
+icheney,26289144,5
+133471355,26289144,4
+64657739,26289144,4
+38886161,26289144,4
+131837471,26289144,3
+54247869,26289144,3
+34707868,26289144,3
+58135689,26289144,1
+Henry-Maugham,26289144,3
+simengw,26289144,4
+K77777,26289144,-1
+72431740,26289144,2
+116394640,26289144,5
+kinkin77,26289144,3
+59819310,26289144,5
+48940201,26289144,4
+68567549,26289144,4
+9775754,26289144,2
+28748505,26289144,5
+3633901,26289144,5
+46431893,26289144,3
+136160682,26289144,5
+Zesz,26289144,3
+62705115,26289144,5
+116013221,26289144,3
+i7_11,26289144,3
+61348061,26289144,2
+54614709,26289144,3
+61705025,26289144,3
+81431199,26289144,4
+crystalgirl,26289144,1
+48903248,26289144,3
+81807241,26289144,4
+59883834,26289144,4
+danieldl,26289144,-1
+easyong,26289144,4
+20924678,26289144,5
+61557157,26289144,5
+Exaiy,26289144,4
+67985857,26289144,4
+51753394,26289144,4
+57633355,26289144,3
+babyxy006,26289144,3
+71294112,26289144,5
+39891513,26289144,4
+carboot,26289144,5
+4318344,26289144,2
+130663859,26289144,4
+58051077,26289144,4
+124093629,26289144,3
+wcngsjb,26289144,3
+nycharline,26289144,-1
+51269062,26289144,4
+68324587,26289144,5
+83881122,26289144,3
+122394659,26289144,4
+51224776,26289144,3
+57545593,26289144,3
+124890265,26289144,5
+136179080,26289144,5
+chuzhengcn,26289144,1
+59535372,26289144,4
+136089087,26289144,4
+136089087,26289144,4
+43863446,26289144,4
+133887992,26289144,5
+72870354,26289144,4
+90739385,26289144,4
+135545346,26289144,5
+xiuzhifuss,26289144,3
+37691812,26289144,4
+52248641,26289144,5
+TATA641,26289144,2
+3526854,26289144,5
+2135257,26289144,4
+44066080,26289144,4
+46781917,26289144,-1
+yutingamy,26289144,3
+35980602,26289144,3
+122188479,26289144,5
+linanian,26289144,4
+32808615,26289144,4
+shadowshame,26289144,4
+47214501,26289144,-1
+65388515,26289144,4
+37226632,26289144,5
+slowfood,26289144,4
+115735544,26289144,3
+29458018,26289144,5
+1098294,26289144,4
+59731344,26289144,4
+ines0724,26289144,3
+131610704,26289144,2
+44411790,26289144,4
+63635904,26289144,4
+68409423,26289144,5
+91193494,26289144,5
+71575681,26289144,4
+127126890,26289144,4
+JOOOO,26289144,-1
+44164777,26289144,5
+IT_Student,26289144,3
+2327763,26289144,3
+56284093,26289144,5
+dizzyluke,26289144,4
+136194748,26289144,5
+wonderer,26289144,4
+4247303,26289144,4
+46590871,26289144,3
+lumi07,26289144,-1
+129495494,26289144,3
+2553535,26289144,2
+67334346,26289144,5
+reyo,26289144,5
+53381423,26289144,3
+AllenZ_CN,26289144,4
+enjoyfreedom,26289144,3
+72532204,26289144,3
+38449214,26289144,5
+xisochakaihuale,26289144,3
+3501606,26289144,3
+50712363,26289144,3
+binabin,26289144,5
+3412065,26289144,3
+25110019,26289144,3
+67758880,26289144,4
+123945021,26289144,5
+willese,26289144,4
+125760534,26289144,4
+76964275,26289144,3
+16235886,26289144,-1
+leon_howe,26289144,4
+3211358,26289144,3
+IamV,26289144,4
+2364299,26289144,3
+ProfThunder,26289144,3
+47725759,26289144,3
+yelia926,26289144,3
+81998298,26289144,4
+2028239,26289144,2
+48547442,26289144,4
+51909421,26289144,2
+121163756,26289144,3
+129382433,26289144,5
+Vitaminsong,26289144,-1
+43256737,26289144,3
+85102033,26289144,4
+zooyam,26289144,3
+60041907,26289144,1
+114179686,26289144,3
+65033066,26289144,3
+59370142,26289144,2
+mancyann,26289144,5
+freejohn14,26289144,5
+4767815,26289144,4
+1452416,26289144,4
+78846848,26289144,3
+nadiawoo,26289144,3
+1401565,26289144,5
+4873070,26289144,3
+46612613,26289144,5
+34835512,26289144,5
+vivian_yuzhou,26289144,5
+28587995,26289144,4
+parkjungsoo,26289144,5
+xyzxun,26289144,3
+64441983,26289144,4
+67838185,26289144,5
+1403476,26289144,5
+rajorAn,26289144,2
+50112537,26289144,4
+70119569,26289144,3
+76943413,26289144,2
+2573398,26289144,4
+4163129,26289144,4
+96042250,26289144,4
+augusttt,26289144,4
+1183933,26289144,4
+45276725,26289144,4
+52054076,26289144,4
+55842990,26289144,3
+64172361,26289144,3
+95240468,26289144,4
+115225798,26289144,4
+53120711,26289144,4
+icetar,26289144,4
+1708392,26289144,4
+vivifyvivi,26289144,1
+60808695,26289144,3
+39698078,26289144,4
+gps730,26289144,4
+45939025,26289144,5
+72897463,26289144,3
+Lxlqxly,26289144,4
+64785490,26289144,3
+4195216,26289144,5
+30607200,26289144,4
+66195013,26289144,1
+58121967,26289144,4
+54287979,26289144,5
+scolo,26289144,3
+51904354,26289144,3
+57671565,26289144,4
+Artiewatchmovie,26289144,4
+2632584,26289144,-1
+2379338,26289144,3
+4058668,26289144,3
+71837063,26289144,1
+yoyo3105,26289144,3
+121152580,26289144,4
+80997458,26289144,4
+46056151,26289144,3
+48889968,26289144,2
+Jacky_L,26289144,3
+101062675,26289144,2
+44545731,26289144,3
+2394327,26289144,4
+70254289,26289144,4
+133433124,26289144,4
+55836686,26289144,4
+imay5,26289144,3
+121469548,26289144,4
+134792608,26289144,3
+SUNNYSWALLOW,26289144,5
+4430057,26289144,4
+79863608,26289144,4
+peipeilan,26289144,4
+49568187,26289144,4
+56111522,26289144,4
+summertalking,26289144,3
+131844202,26289144,5
+60201729,26289144,4
+68251895,26289144,4
+missma,26289144,2
+136193913,26289144,4
+69125358,26289144,5
+48524640,26289144,3
+58376944,26289144,5
+facetosky,26289144,4
+47546589,26289144,4
+123850973,26289144,4
+clankyacml,26289144,3
+120113112,26289144,3
+Y_yujia,26289144,5
+72021632,26289144,3
+54119533,26289144,4
+132043994,26289144,5
+butina,26289144,3
+MoviesandI,26289144,3
+2471940,26289144,5
+silence0716,26289144,5
+132011879,26289144,3
+baoziyudigua,26289144,3
+huayeah,26289144,5
+miss_xiaoxiao,26289144,4
+2428631,26289144,5
+biguniverse,26289144,4
+126092428,26289144,3
+xxhhcc,26289144,2
+73287736,26289144,4
+89774510,26289144,5
+43133361,26289144,3
+50010079,26289144,3
+46591138,26289144,4
+41694650,26289144,3
+42296972,26289144,4
+92943106,26289144,3
+56394061,26289144,4
+89050593,26289144,4
+131811211,26289144,4
+sunfieldvivi,26289144,4
+t1n9_520,26289144,4
+56886215,26289144,3
+55860957,26289144,4
+72596022,26289144,4
+51403238,26289144,5
+luococo,26289144,3
+43840425,26289144,4
+56582885,26289144,3
+julycythia,26289144,3
+79375737,26289144,5
+122524998,26289144,5
+Carol_8507,26289144,1
+69750232,26289144,3
+faerysun,26289144,4
+1022788,26289144,4
+2921449,26289144,4
+52873518,26289144,5
+zyq1029q12,26289144,4
+50490367,26289144,3
+51919631,26289144,3
+lazzaro,26289144,3
+58954301,26289144,3
+cannotspeak,26289144,4
+kthinker,26289144,3
+q258523454,26289144,5
+45375152,26289144,1
+63733867,26289144,3
+Catforest33,26289144,4
+renshaoqun,26289144,5
+49135437,26289144,3
+digdug,26289144,3
+xiaosummer,26289144,4
+71722491,26289144,4
+57278963,26289144,3
+61302881,26289144,2
+blueandgreen,26289144,3
+41805757,26289144,4
+26878396,26289144,3
+49755333,26289144,4
+91236974,26289144,4
+biteorange,26289144,4
+46528708,26289144,3
+52579703,26289144,2
+135175472,26289144,5
+1067485,26289144,3
+luckycjy,26289144,4
+66322119,26289144,4
+38753520,26289144,3
+50446822,26289144,-1
+134076104,26289144,4
+59032148,26289144,3
+130944431,26289144,3
+48317610,26289144,2
+35384928,26289144,4
+96140309,26289144,3
+sailnirvana,26289144,4
+86807524,26289144,5
+120357916,26289144,5
+73334261,26289144,4
+60278797,26289144,5
+70464788,26289144,4
+39565182,26289144,2
+2968227,26289144,4
+ClaireL,26289144,3
+53364319,26289144,4
+130404838,26289144,4
+81336001,26289144,2
+81299938,26289144,4
+43507289,26289144,4
+118881643,26289144,4
+jiazhen000,26289144,5
+57924290,26289144,4
+45549330,26289144,4
+68767704,26289144,3
+65408583,26289144,5
+tangqian9921220,26289144,4
+jhm279697317,26289144,3
+63323084,26289144,5
+26803264,26289144,4
+2364223,26289144,4
+47054813,26289144,4
+Asukaluo,26289144,4
+62318523,26289144,3
+3455527,26289144,4
+37322815,26289144,3
+14333996,26289144,3
+chenjiannan,26289144,4
+55561510,26289144,4
+62889721,26289144,-1
+53935985,26289144,3
+74357024,26289144,3
+57460299,26289144,4
+75180137,26289144,4
+yi11days,26289144,4
+qikapu,26289144,3
+63454014,26289144,4
+135128946,26289144,3
+dobbie1516,26289144,4
+48247604,26289144,3
+45030783,26289144,3
+Y_juana,26289144,3
+68742620,26289144,3
+liberalove,26289144,5
+121897109,26289144,4
+3322308,26289144,3
+30804612,26289144,4
+134503288,26289144,4
+75622312,26289144,-1
+xiaojuer,26289144,4
+ycg1997,26289144,4
+qqyy402,26289144,3
+63091551,26289144,3
+47379077,26289144,2
+guihan,26289144,5
+pejaming,26289144,4
+131545009,26289144,3
+49693019,26289144,4
+stuyannnnnnnnnn,26289144,2
+xiaobai_zw,26289144,3
+JaceJing,26289144,3
+42644649,26289144,3
+47899427,26289144,4
+64996012,26289144,4
+56510668,26289144,5
+81899801,26289144,5
+67727408,26289144,5
+81016849,26289144,4
+108693709,26289144,4
+42060794,26289144,3
+1220427,26289144,4
+51814883,26289144,4
+17220309,26289144,4
+122316474,26289144,4
+kaysummer,26289144,3
+1867121,26289144,5
+shir23,26289144,3
+58310222,26289144,3
+59513842,26289144,2
+62504399,26289144,1
+47647880,26289144,4
+134234379,26289144,4
+syrahshiraz,26289144,4
+dongboqi,26289144,3
+6922527,26289144,4
+115088665,26289144,2
+69504289,26289144,1
+42777952,26289144,1
+laoguai,26289144,5
+39132623,26289144,4
+57968960,26289144,3
+69610121,26289144,5
+Minky77,26289144,4
+40866645,26289144,5
+shiovero,26289144,5
+101864611,26289144,4
+102413399,26289144,3
+62877248,26289144,3
+55374994,26289144,3
+120099108,26289144,4
+134503726,26289144,4
+127265847,26289144,4
+46989842,26289144,5
+52971629,26289144,2
+135677641,26289144,-1
+66974866,26289144,3
+122879836,26289144,3
+kylema,26289144,4
+momoko11510,26289144,4
+134384066,26289144,4
+131001035,26289144,4
+vargex,26289144,4
+100452734,26289144,3
+sundaysnow,26289144,5
+58202321,26289144,4
+2063546,26289144,4
+2556660,26289144,3
+65948183,26289144,3
+sogstad,26289144,4
+40066621,26289144,4
+2239303,26289144,5
+wqq123wqq,26289144,4
+63127179,26289144,3
+DentonWang,26289144,5
+88101207,26289144,4
+93921689,26289144,4
+panpan_lovelife,26289144,4
+133433272,26289144,5
+kulapika,26289144,3
+Edward_Elric,26289144,2
+91947197,26289144,4
+70132891,26289144,2
+4231536,26289144,2
+58513319,26289144,4
+79499233,26289144,3
+60701551,26289144,4
+1530125,26289144,-1
+55425319,26289144,4
+Tweff,26289144,3
+113234997,26289144,3
+2764582,26289144,4
+3066956,26289144,2
+69215741,26289144,4
+121727190,26289144,4
+121587043,26289144,5
+67779609,26289144,5
+2818464,26289144,5
+23525886,26289144,5
+71676788,26289144,4
+33831504,26289144,-1
+53479153,26289144,-1
+49443959,26289144,4
+52935369,26289144,3
+yansihan,26289144,5
+51038793,26289144,2
+db924519251,26289144,2
+60163157,26289144,5
+133839811,26289144,3
+90748727,26289144,5
+97420155,26289144,-1
+sigridshuo,26289144,2
+48044328,26289144,4
+wodeshudong,26289144,3
+Smooth0727,26289144,5
+64110948,26289144,4
+hljmsfy,26289144,2
+4523741,26289144,3
+119262757,26289144,4
+2166366,26289144,4
+clayda,26289144,5
+blawgdog,26289144,3
+2085469,26289144,2
+52099107,26289144,5
+26664007,26289144,4
+derekderek,26289144,4
+52005717,26289144,5
+qingfengvicky,26289144,4
+69787853,26289144,5
+1802279,26289144,4
+summerji,26289144,5
+flyindance_fei,26289144,3
+4016972,26289144,2
+liluyang0817,26289144,5
+49115709,26289144,3
+81206741,26289144,4
+4336572,26289144,5
+yelano,26289144,5
+wangsu,26289144,4
+69433282,26289144,4
+4691398,26289144,5
+103735356,26289144,4
+68255096,26289144,3
+hinna,26289144,3
+64730225,26289144,4
+shengqingyue,26289144,5
+58454768,26289144,4
+4599465,26289144,3
+iyyhua,26289144,3
+ADmoviemtime,26289144,3
+81770301,26289144,4
+Sonntag,26289144,4
+61389962,26289144,3
+101384243,26289144,3
+tincnie,26289144,3
+36248452,26289144,4
+alexliuxirong,26289144,5
+51153180,26289144,4
+FuckoffJinMu,26289144,1
+xiaolicolors,26289144,5
+90551968,26289144,4
+128277585,26289144,4
+3223179,26289144,-1
+56788441,26289144,3
+58044228,26289144,3
+meimei881007,26289144,4
+58505404,26289144,5
+51373416,26289144,4
+wangleku,26289144,3
+70892372,26289144,5
+39108497,26289144,3
+48259477,26289144,5
+83495567,26289144,4
+134540327,26289144,5
+25635000,26289144,4
+47618742,26289144,4
+SpanishAnt,26289144,4
+clarified,26289144,4
+128248701,26289144,4
+1434651,26289144,4
+115614631,26289144,4
+121150737,26289144,4
+125971465,26289144,4
+52910421,26289144,-1
+68089671,26289144,3
+62637324,26289144,5
+120303134,26289144,4
+44034206,26289144,4
+WCAJ605850999,26289144,4
+maoamao,26289144,3
+58497726,26289144,4
+119013202,26289144,5
+44208904,26289144,4
+sweetie1012,26289144,5
+64249051,26289144,3
+129620267,26289144,5
+34936131,26289144,4
+61074050,26289144,4
+75666359,26289144,3
+3979432,26289144,4
+76926287,26289144,3
+134298416,26289144,5
+3693808,26289144,3
+37160658,26289144,4
+60046536,26289144,2
+47771448,26289144,5
+65317550,26289144,4
+120510985,26289144,4
+63865208,26289144,5
+stilllive,26289144,5
+44349781,26289144,3
+4409440,26289144,4
+57149098,26289144,4
+122869293,26289144,5
+ccmien,26289144,4
+31849844,26289144,3
+81084405,26289144,5
+wk3689,26289144,5
+2391373,26289144,4
+92796739,26289144,4
+47273031,26289144,5
+50927146,26289144,4
+65644933,26289144,4
+135071922,26289144,3
+55986543,26289144,4
+9173752,26289144,5
+112466936,26289144,2
+49813166,26289144,3
+tomop,26289144,3
+81162851,26289144,4
+1282175,26289144,5
+skysunny,26289144,4
+53728385,26289144,5
+hakueiluvjonne,26289144,-1
+54436614,26289144,1
+1722755,26289144,5
+78925849,26289144,3
+47848856,26289144,3
+zsxyz_14,26289144,3
+38461766,26289144,3
+1151029,26289144,-1
+51629890,26289144,3
+zoesuk,26289144,2
+monica325,26289144,4
+132582200,26289144,4
+46899693,26289144,4
+songxuancheng,26289144,4
+65660136,26289144,4
+38740648,26289144,4
+nal,26289144,4
+60570203,26289144,4
+amilar,26289144,5
+73760759,26289144,4
+72891921,26289144,4
+zero4,26289144,5
+60372009,26289144,4
+71348110,26289144,4
+45767220,26289144,5
+2640849,26289144,4
+131816457,26289144,4
+92048195,26289144,3
+120322125,26289144,3
+63522902,26289144,4
+70121595,26289144,4
+60302594,26289144,3
+134063330,26289144,3
+xiaoaifansion,26289144,3
+54261734,26289144,3
+lewuleyi,26289144,3
+56141860,26289144,4
+zangyaqiong,26289144,4
+zry0330,26289144,2
+4404145,26289144,4
+3398416,26289144,1
+48131107,26289144,-1
+74835284,26289144,5
+63014642,26289144,1
+33895720,26289144,3
+53075492,26289144,5
+32657657,26289144,5
+66798155,26289144,3
+128549514,26289144,4
+t25,26289144,3
+1424796,26289144,5
+47624847,26289144,4
+Lemon26,26289144,4
+128416544,26289144,4
+48179852,26289144,4
+66306727,26289144,3
+62663500,26289144,3
+47924060,26289144,3
+104608789,26289144,4
+fanyiduo,26289144,4
+37720840,26289144,4
+93455789,26289144,3
+69730287,26289144,3
+parischen,26289144,2
+58919499,26289144,4
+128469063,26289144,5
+3626742,26289144,3
+47869663,26289144,4
+joyzy24,26289144,4
+69495229,26289144,4
+moonbutterfly,26289144,5
+j23ju,26289144,2
+fishting,26289144,5
+yujiuwei,26289144,3
+2171901,26289144,5
+wendy426,26289144,5
+cherryonsale,26289144,3
+61557388,26289144,2
+106519480,26289144,4
+47501890,26289144,3
+64326137,26289144,4
+18102922,26289144,4
+59610543,26289144,3
+PureLemon,26289144,4
+56687501,26289144,5
+71879067,26289144,4
+karasu419,26289144,1
+41236968,26289144,2
+69698013,26289144,5
+wangzhumei,26289144,4
+115593440,26289144,4
+43397816,26289144,4
+soundless618,26289144,4
+mikicute,26289144,4
+125827809,26289144,3
+zzhh33,26289144,3
+45463396,26289144,2
+4538596,26289144,4
+54858114,26289144,4
+119523777,26289144,5
+49624513,26289144,4
+w_weixing,26289144,2
+102916412,26289144,5
+84597133,26289144,4
+juanmaoaoaoao,26289144,5
+polkadancing,26289144,4
+59378291,26289144,3
+70470057,26289144,4
+80505180,26289144,3
+121943500,26289144,4
+5440395,26289144,3
+llw541182481,26289144,1
+44005191,26289144,3
+65078775,26289144,5
+56809529,26289144,4
+119252139,26289144,5
+1828898,26289144,2
+wodezuiai99,26289144,4
+38747364,26289144,4
+duan2,26289144,4
+diantaitou,26289144,4
+134176594,26289144,4
+68957846,26289144,4
+nickqiren,26289144,4
+134937890,26289144,4
+62887627,26289144,3
+84917101,26289144,3
+127081062,26289144,3
+49789173,26289144,3
+lilanning,26289144,3
+120048792,26289144,5
+yanplace,26289144,-1
+59427053,26289144,5
+xiaoxinjessica,26289144,4
+81560578,26289144,4
+123004306,26289144,4
+53536298,26289144,4
+3579800,26289144,3
+32737561,26289144,3
+50620373,26289144,3
+29725427,26289144,3
+jkk0620,26289144,4
+yaolinlu,26289144,4
+SHANGYIMOMO,26289144,3
+52606469,26289144,3
+127375314,26289144,4
+59593088,26289144,4
+61492092,26289144,5
+37390884,26289144,3
+Lycheeciel,26289144,-1
+4303837,26289144,5
+65184093,26289144,3
+133372996,26289144,5
+65878913,26289144,3
+SunandShadow,26289144,3
+51312024,26289144,3
+114739880,26289144,3
+62748028,26289144,3
+doublecheeseJ,26289144,4
+52143886,26289144,3
+Faychang,26289144,5
+120874822,26289144,4
+39003448,26289144,3
+3899699,26289144,1
+twinkle1437,26289144,4
+jbecks,26289144,4
+XXXXKKKK,26289144,4
+pyan,26289144,3
+70668435,26289144,2
+14327084,26289144,4
+xrwr,26289144,2
+22749527,26289144,4
+17767456,26289144,4
+yanqingchen,26289144,5
+1437339,26289144,2
+35149263,26289144,4
+BenedictusVI,26289144,-1
+spicymilk,26289144,3
+A.Plus,26289144,5
+82266049,26289144,3
+51058099,26289144,4
+kuroooo,26289144,4
+62153310,26289144,3
+sbnan,26289144,3
+3375154,26289144,4
+77026559,26289144,4
+3679450,26289144,3
+toqueena,26289144,3
+73135208,26289144,4
+vivienne1117,26289144,3
+Beta-Juliet,26289144,3
+1226511,26289144,4
+Mrs.wrong,26289144,4
+firew0rk,26289144,4
+nanaseventh,26289144,2
+1417703,26289144,4
+61898774,26289144,1
+57382119,26289144,5
+55624184,26289144,3
+flower_N,26289144,4
+51503621,26289144,4
+48622975,26289144,4
+66771297,26289144,5
+34061777,26289144,2
+biskup,26289144,2
+kid45698,26289144,3
+46099687,26289144,5
+115593023,26289144,2
+zhanghuaxin,26289144,4
+63075072,26289144,4
+63223538,26289144,3
+127256948,26289144,4
+76933799,26289144,3
+126575098,26289144,3
+zengruiyan,26289144,4
+46722646,26289144,5
+82573994,26289144,2
+ice_pudding,26289144,3
+98293560,26289144,3
+48354152,26289144,4
+JaiHo,26289144,5
+artistri,26289144,4
+54113299,26289144,2
+59464689,26289144,5
+51345502,26289144,4
+79450664,26289144,5
+52009323,26289144,5
+93040251,26289144,4
+61464429,26289144,4
+134969713,26289144,3
+daisy1024,26289144,4
+68688043,26289144,4
+Ghost1987,26289144,4
+gnituw1986,26289144,4
+49988447,26289144,3
+52025578,26289144,1
+83751192,26289144,4
+128142501,26289144,5
+39545267,26289144,2
+136088336,26289144,5
+l97183025,26289144,2
+3261740,26289144,5
+yaya102,26289144,4
+cheng0304,26289144,5
+50616281,26289144,4
+63705961,26289144,4
+69688835,26289144,4
+50256249,26289144,3
+131183374,26289144,4
+102164266,26289144,5
+birdicat,26289144,3
+buffyjiang,26289144,3
+wood0913,26289144,3
+55540547,26289144,4
+57474326,26289144,5
+130580816,26289144,4
+s_sunshine,26289144,4
+47014421,26289144,4
+49417461,26289144,4
+52197155,26289144,3
+74948257,26289144,4
+44585545,26289144,4
+88132855,26289144,3
+121134839,26289144,5
+undertree,26289144,3
+searme,26289144,4
+longlanglang,26289144,4
+48786722,26289144,5
+jolllllly,26289144,4
+evich,26289144,2
+64757557,26289144,2
+71755062,26289144,2
+rayy_j,26289144,3
+57707856,26289144,1
+gkxiaokang,26289144,3
+73903183,26289144,4
+84472857,26289144,4
+orangela,26289144,3
+jaly2015,26289144,2
+amyhe,26289144,4
+52539806,26289144,3
+qszone,26289144,3
+39568642,26289144,3
+81244293,26289144,3
+suixi,26289144,2
+104592207,26289144,3
+135813890,26289144,4
+124658556,26289144,4
+108171675,26289144,4
+128115973,26289144,4
+43692949,26289144,4
+G-Dear,26289144,5
+52247452,26289144,-1
+88433908,26289144,2
+3929718,26289144,2
+jamiea,26289144,5
+80179463,26289144,3
+15734360,26289144,2
+juliannie,26289144,3
+4280909,26289144,5
+44109266,26289144,3
+67959310,26289144,5
+110834897,26289144,4
+89320570,26289144,5
+50244103,26289144,3
+43632851,26289144,3
+kidea,26289144,5
+snowmanzzz,26289144,5
+sysop,26289144,4
+VOLETASOS,26289144,3
+62956939,26289144,2
+62956939,26289144,2
+67943970,26289144,3
+59220835,26289144,4
+79091087,26289144,3
+88738198,26289144,3
+1463457,26289144,3
+82339358,26289144,2
+71756751,26289144,4
+51810692,26289144,-1
+xieruisheng,26289144,4
+49342454,26289144,4
+102594722,26289144,2
+imarilyn,26289144,4
+3418749,26289144,5
+53257612,26289144,5
+89951799,26289144,3
+59695133,26289144,4
+83905298,26289144,5
+88393319,26289144,3
+48288705,26289144,4
+alicelv,26289144,5
+zouhuzm,26289144,4
+Davidcyclone,26289144,-1
+l_panda,26289144,4
+kaca_tana,26289144,5
+59162094,26289144,4
+72642943,26289144,4
+79745413,26289144,3
+80372690,26289144,4
+46924225,26289144,2
+62964103,26289144,4
+51911319,26289144,2
+followmydreams,26289144,4
+2238966,26289144,3
+bewhoiam,26289144,3
+fragilelove,26289144,3
+15587710,26289144,5
+suoyisuo,26289144,4
+46746652,26289144,3
+54931017,26289144,3
+67988925,26289144,4
+2475595,26289144,4
+132235046,26289144,4
+59842125,26289144,2
+63559969,26289144,3
+81464535,26289144,5
+134021149,26289144,4
+60375226,26289144,5
+40370688,26289144,5
+yuc200,26289144,3
+58427192,26289144,4
+feicai1nan,26289144,-1
+saojie1206,26289144,3
+acouchpotato,26289144,4
+Mr_Sunday,26289144,4
+47386549,26289144,2
+80854961,26289144,4
+58580022,26289144,5
+90891135,26289144,4
+134085133,26289144,4
+1423262,26289144,3
+iett815,26289144,4
+76654767,26289144,4
+43599155,26289144,4
+tiffany--2012,26289144,4
+57156729,26289144,5
+37771316,26289144,3
+za7ck,26289144,4
+80628102,26289144,5
+52143519,26289144,3
+2229889,26289144,3
+3598072,26289144,4
+gelumu,26289144,2
+120418586,26289144,4
+58827869,26289144,5
+30587036,26289144,4
+124570974,26289144,4
+67586472,26289144,3
+60258701,26289144,2
+dupengyue,26289144,4
+tangrumei1022,26289144,5
+63161507,26289144,3
+FFcontinue,26289144,4
+74264454,26289144,3
+19509960,26289144,-1
+63100903,26289144,-1
+88178355,26289144,3
+5467957,26289144,3
+94032593,26289144,3
+80055631,26289144,3
+102906934,26289144,5
+135426117,26289144,4
+50729959,26289144,5
+115645606,26289144,5
+Raining421,26289144,3
+91787788,26289144,5
+63325124,26289144,1
+79827389,26289144,3
+lanmai,26289144,4
+x7summer,26289144,3
+x7summer,26289144,3
+51549155,26289144,3
+1774025,26289144,3
+136078411,26289144,3
+51377606,26289144,4
+VIPP,26289144,5
+134472546,26289144,4
+70368637,26289144,2
+93480503,26289144,3
+shujiayan,26289144,5
+dongworui,26289144,3
+suxiaobu,26289144,3
+46818877,26289144,4
+maoxiaodaimi,26289144,5
+60178062,26289144,4
+62520898,26289144,3
+3218379,26289144,3
+refinedping,26289144,4
+54164791,26289144,3
+89399541,26289144,3
+xiusezhitiao,26289144,5
+93828886,26289144,3
+61858278,26289144,3
+37146120,26289144,4
+larene,26289144,3
+63923908,26289144,3
+hansey619688,26289144,2
+65467387,26289144,5
+sherrytu,26289144,3
+fengzhongyeer,26289144,3
+movieview,26289144,2
+57336670,26289144,3
+anoTherTeezy,26289144,1
+55604834,26289144,4
+59572879,26289144,4
+2425388,26289144,3
+121137821,26289144,4
+47257885,26289144,5
+52235575,26289144,4
+1887686,26289144,5
+3535624,26289144,-1
+princewk1008,26289144,1
+lixixi1995,26289144,4
+daystar22,26289144,4
+11503015,26289144,4
+4249661,26289144,3
+42293953,26289144,5
+roger589,26289144,4
+lishirley,26289144,4
+71868582,26289144,2
+quanetta,26289144,2
+92541865,26289144,4
+banyinxie,26289144,3
+52077451,26289144,3
+vva_,26289144,3
+49167214,26289144,5
+55012980,26289144,4
+61134295,26289144,5
+queen_kw,26289144,4
+1105862,26289144,4
+1105862,26289144,4
+62159923,26289144,-1
+3533069,26289144,2
+103343443,26289144,3
+53452427,26289144,5
+1198621,26289144,3
+50158660,26289144,4
+50299832,26289144,4
+50069501,26289144,3
+41038463,26289144,5
+127187362,26289144,4
+136029182,26289144,5
+121627094,26289144,3
+2076258,26289144,3
+62510506,26289144,4
+63266085,26289144,4
+49961036,26289144,3
+53879339,26289144,4
+maozhua3,26289144,3
+xiao-peng,26289144,5
+36832783,26289144,4
+yuchishangjiu,26289144,-1
+kyo85,26289144,2
+66980915,26289144,3
+49377780,26289144,4
+9385714,26289144,3
+1577696,26289144,4
+54603413,26289144,3
+68510883,26289144,3
+64467057,26289144,3
+3754548,26289144,4
+46696173,26289144,4
+alice0303,26289144,3
+70687104,26289144,2
+stefrain,26289144,4
+hwf254,26289144,2
+81804473,26289144,3
+53353034,26289144,1
+63457669,26289144,3
+innocent329,26289144,5
+vcandverve,26289144,4
+40587202,26289144,2
+39646775,26289144,5
+39937848,26289144,3
+hiangel,26289144,4
+12644505,26289144,3
+120045714,26289144,-1
+ulenka,26289144,3
+48481117,26289144,4
+monsterkill,26289144,4
+67400745,26289144,4
+55021237,26289144,4
+48395509,26289144,3
+poppy25,26289144,4
+96885435,26289144,2
+67794312,26289144,4
+36621771,26289144,3
+vane0109,26289144,5
+63905629,26289144,4
+metaljacket,26289144,1
+metaljacket,26289144,1
+afou,26289144,4
+115523476,26289144,5
+61328690,26289144,4
+MusicBen,26289144,4
+129480991,26289144,4
+40572936,26289144,3
+54028549,26289144,5
+3176938,26289144,3
+xiao7,26289144,4
+stilllovebobdyl,26289144,5
+3941641,26289144,4
+2262469,26289144,3
+x.s_ai.jia,26289144,5
+119567725,26289144,1
+70458781,26289144,4
+callmev,26289144,2
+sarabilau2,26289144,4
+nicky7,26289144,5
+rianna,26289144,3
+2595593,26289144,4
+syyw88,26289144,4
+136054482,26289144,5
+57989423,26289144,5
+76452322,26289144,5
+47847363,26289144,3
+SEVEN.ELEVEN,26289144,2
+bettercharlot,26289144,3
+34701908,26289144,4
+bigmiao,26289144,3
+135665585,26289144,3
+103320251,26289144,4
+4325552,26289144,3
+DiamondRion,26289144,4
+2304340,26289144,4
+112009037,26289144,4
+sky147,26289144,3
+3062915,26289144,5
+119189447,26289144,5
+66398138,26289144,4
+54493901,26289144,3
+katiezhou,26289144,-1
+90907452,26289144,3
+XiaJiGe,26289144,-1
+50632642,26289144,3
+2311976,26289144,3
+3392551,26289144,3
+14765417,26289144,4
+107918179,26289144,4
+yangyucn,26289144,4
+wownow,26289144,3
+wpetrel,26289144,5
+59104141,26289144,5
+129302886,26289144,5
+135716425,26289144,3
+86708177,26289144,5
+kingchuang1028,26289144,2
+3236636,26289144,4
+4221659,26289144,4
+I_love_night,26289144,4
+56633809,26289144,5
+121823412,26289144,3
+96785209,26289144,4
+41107629,26289144,4
+67569927,26289144,5
+onlysassy,26289144,4
+2353173,26289144,2
+TheOddOne,26289144,5
+cobie,26289144,-1
+49305453,26289144,4
+wzdqq,26289144,3
+50342310,26289144,3
+50449318,26289144,5
+51706956,26289144,5
+57609819,26289144,5
+50527578,26289144,3
+57139809,26289144,2
+115885281,26289144,5
+55657617,26289144,4
+46496098,26289144,5
+120358782,26289144,4
+33510302,26289144,3
+12530761,26289144,5
+133323909,26289144,5
+85008065,26289144,4
+63578781,26289144,4
+recyclebiner,26289144,4
+ximozhe,26289144,4
+Son47,26289144,3
+119405586,26289144,5
+58259896,26289144,4
+121754243,26289144,4
+3617454,26289144,4
+wyb372709042,26289144,4
+45192723,26289144,3
+51284624,26289144,5
+51773782,26289144,2
+14479133,26289144,4
+4247179,26289144,3
+huahuadaisy,26289144,4
+56871206,26289144,3
+58770434,26289144,4
+4749363,26289144,3
+77832595,26289144,4
+82350821,26289144,4
+angelmyy,26289144,1
+104830384,26289144,4
+134271856,26289144,4
+114780311,26289144,4
+2417136,26289144,4
+88259412,26289144,4
+babymuah,26289144,4
+43476966,26289144,4
+64241350,26289144,3
+jackiecheung,26289144,4
+64725454,26289144,3
+12686265,26289144,4
+xnyjb,26289144,3
+104440766,26289144,5
+hh55555,26289144,3
+aquariusyoyo,26289144,3
+1512451,26289144,4
+43881902,26289144,4
+69156553,26289144,4
+57853531,26289144,5
+3585677,26289144,4
+suganning,26289144,2
+26512977,26289144,4
+heidiholic,26289144,1
+whitedove,26289144,4
+124261094,26289144,5
+14840393,26289144,4
+quanquanziyou,26289144,4
+renely,26289144,4
+shuikanshuizhid,26289144,5
+s66,26289144,4
+3481297,26289144,4
+xiguaguantou,26289144,2
+92878802,26289144,2
+60732201,26289144,4
+66897207,26289144,3
+64326764,26289144,3
+yumendechongfu,26289144,3
+36751744,26289144,3
+2530680,26289144,5
+33538142,26289144,2
+81840393,26289144,4
+63647300,26289144,4
+85633579,26289144,4
+48855139,26289144,5
+pandalucia,26289144,3
+32058895,26289144,-1
+134963788,26289144,-1
+wenshui,26289144,4
+53793059,26289144,5
+sclpanda,26289144,5
+mylbj,26289144,4
+45335029,26289144,5
+mufengqin,26289144,4
+myjecent,26289144,5
+119169631,26289144,5
+memory110,26289144,4
+33693061,26289144,4
+51927148,26289144,5
+59221485,26289144,5
+1088676,26289144,4
+loveloneliness,26289144,3
+jinx_pure,26289144,5
+2478351,26289144,4
+3900838,26289144,5
+62949952,26289144,4
+jx1111l,26289144,4
+88679885,26289144,2
+60254406,26289144,3
+32433633,26289144,4
+alei7774,26289144,5
+52074740,26289144,3
+125814755,26289144,5
+40456854,26289144,1
+honey-honey,26289144,4
+62902715,26289144,4
+57617460,26289144,3
+47757400,26289144,4
+87230484,26289144,3
+amin888,26289144,4
+lychjf,26289144,4
+54475855,26289144,5
+55867399,26289144,4
+46177546,26289144,5
+43269770,26289144,4
+64013773,26289144,3
+62798977,26289144,3
+87756432,26289144,3
+4657541,26289144,3
+59739922,26289144,4
+ifIdieyoung,26289144,3
+91405945,26289144,5
+56908941,26289144,5
+40440958,26289144,5
+43271150,26289144,5
+50249730,26289144,4
+jasminesyc,26289144,4
+65720842,26289144,3
+109825184,26289144,5
+16928498,26289144,2
+38606077,26289144,4
+130727558,26289144,3
+63137532,26289144,4
+50908241,26289144,4
+58881939,26289144,4
+HJS_L,26289144,3
+20807282,26289144,4
+lasiya1986,26289144,2
+97334739,26289144,4
+5187507,26289144,2
+56969272,26289144,3
+jackieatdnv,26289144,4
+125602185,26289144,5
+44105688,26289144,3
+12470657,26289144,4
+127533482,26289144,4
+104445642,26289144,4
+46887415,26289144,3
+65772452,26289144,4
+peggieru,26289144,4
+xyhen,26289144,3
+patanga,26289144,3
+hanqiu1995,26289144,4
+65410502,26289144,5
+seeMshatE,26289144,1
+49893535,26289144,3
+80801746,26289144,2
+74941713,26289144,5
+yaoyuanzhidi,26289144,3
+kongme,26289144,-1
+liaojiafen,26289144,3
+6926115,26289144,3
+4818710,26289144,-1
+72257329,26289144,3
+51673183,26289144,5
+4509449,26289144,4
+72914221,26289144,5
+shenshenet,26289144,4
+marshluca,26289144,4
+51120293,26289144,4
+68825360,26289144,4
+du15369,26289144,4
+zoerose,26289144,3
+62816766,26289144,5
+vnoonv,26289144,-1
+54324041,26289144,3
+92610102,26289144,2
+55477102,26289144,4
+28170509,26289144,4
+61942054,26289144,3
+134361644,26289144,2
+maydayclouds,26289144,3
+mihuaka,26289144,4
+12232981,26289144,4
+122401708,26289144,4
+triStoneL,26289144,-1
+41912100,26289144,4
+14093841,26289144,5
+poppy7777,26289144,4
+133743909,26289144,5
+64342759,26289144,5
+coka1999,26289144,4
+58705238,26289144,5
+72792251,26289144,3
+47367894,26289144,3
+4716984,26289144,5
+57027781,26289144,4
+69579059,26289144,4
+crazygrave,26289144,3
+66147780,26289144,2
+65628788,26289144,3
+49926539,26289144,2
+joybang,26289144,5
+108242552,26289144,4
+blue-Petit,26289144,4
+59638606,26289144,3
+GLSQ,26289144,2
+wunie,26289144,4
+59129552,26289144,4
+annalive,26289144,3
+WenwenYoung,26289144,5
+erobin,26289144,4
+aeroprince,26289144,2
+48898575,26289144,3
+52782307,26289144,4
+59618340,26289144,4
+62445201,26289144,4
+54915314,26289144,2
+62222208,26289144,5
+128760790,26289144,3
+charo,26289144,3
+126027447,26289144,1
+solodog,26289144,1
+piggy726,26289144,4
+1491950,26289144,3
+1114835,26289144,4
+67883683,26289144,3
+1066031,26289144,4
+69145897,26289144,5
+14718675,26289144,5
+40198777,26289144,1
+28840841,26289144,4
+45529743,26289144,4
+laurelni,26289144,3
+54845592,26289144,4
+56345665,26289144,4
+44284522,26289144,4
+120443847,26289144,3
+38770627,26289144,4
+59253640,26289144,3
+love-99,26289144,4
+88140661,26289144,3
+kisscat890505,26289144,5
+mGreening,26289144,4
+135636484,26289144,4
+i-ynw,26289144,3
+88580829,26289144,5
+btone0808,26289144,2
+cirrus,26289144,3
+63162410,26289144,4
+58015213,26289144,5
+68148628,26289144,5
+4236471,26289144,3
+2005598,26289144,5
+47056482,26289144,4
+aRmstrong-Kiss,26289144,4
+hellofriday,26289144,3
+133468076,26289144,5
+29257975,26289144,4
+pangyy,26289144,5
+52769100,26289144,2
+54701567,26289144,3
+47976404,26289144,4
+119300833,26289144,4
+marsdream,26289144,3
+51152524,26289144,4
+48290239,26289144,4
+43303495,26289144,4
+1781887,26289144,3
+42146070,26289144,4
+90412571,26289144,2
+83856878,26289144,4
+48650911,26289144,3
+xiexienipeizhew,26289144,4
+50688073,26289144,3
+ftgaox,26289144,4
+lmelva,26289144,3
+xjssysh,26289144,3
+51410491,26289144,4
+47426974,26289144,2
+72703568,26289144,4
+anillusion,26289144,4
+zipaiwang,26289144,1
+midautumnsong,26289144,2
+102318922,26289144,5
+50118085,26289144,4
+84978476,26289144,4
+102253082,26289144,4
+52338823,26289144,4
+Elizabeth1989,26289144,2
+dqmxx,26289144,4
+48408073,26289144,5
+57483701,26289144,-1
+alvvva,26289144,1
+120190696,26289144,4
+marlene0932,26289144,5
+Kamelia-Jia,26289144,4
+kalla,26289144,3
+77301549,26289144,4
+henry2004,26289144,4
+on1yys,26289144,3
+99401561,26289144,3
+helenforce,26289144,4
+71561935,26289144,3
+46654545,26289144,4
+kuxiafeng,26289144,3
+12794807,26289144,3
+83691688,26289144,4
+43089605,26289144,3
+gagaGu,26289144,3
+65366889,26289144,2
+verastar,26289144,5
+45354414,26289144,3
+88522948,26289144,4
+simu19,26289144,3
+44727043,26289144,5
+41531040,26289144,5
+47212439,26289144,4
+76965103,26289144,5
+rickzhuang,26289144,5
+50865043,26289144,4
+hongxian0918,26289144,-1
+llllyu,26289144,4
+78125099,26289144,1
+50027948,26289144,5
+eliana0125,26289144,2
+26696495,26289144,5
+61497577,26289144,3
+47230684,26289144,-1
+77519498,26289144,3
+2760210,26289144,4
+97211660,26289144,3
+4643813,26289144,5
+50001721,26289144,2
+133296826,26289144,4
+lassiedusky,26289144,3
+4514078,26289144,4
+69970746,26289144,4
+55852131,26289144,4
+3547067,26289144,2
+68710909,26289144,4
+66598595,26289144,4
+49086768,26289144,1
+62716432,26289144,5
+lepd,26289144,-1
+61054383,26289144,3
+134242804,26289144,3
+29905943,26289144,4
+35742329,26289144,4
+44525790,26289144,4
+91664590,26289144,4
+xiaoxinadd,26289144,5
+tu_bi_yang,26289144,3
+iswh,26289144,4
+camellowang,26289144,2
+chidaoshu,26289144,5
+gracepeng,26289144,4
+58071274,26289144,5
+48744417,26289144,3
+nianyanian,26289144,5
+47945915,26289144,5
+122670225,26289144,3
+Mflower,26289144,3
+81316047,26289144,4
+124914342,26289144,5
+sizuka3n,26289144,2
+54935420,26289144,5
+43562341,26289144,4
+62383479,26289144,3
+1859689,26289144,3
+inruin,26289144,5
+126931660,26289144,4
+57279623,26289144,1
+65133684,26289144,3
+4271475,26289144,4
+46937416,26289144,4
+shinexyt,26289144,5
+djinn77,26289144,4
+yexuanyulinxi,26289144,3
+48705415,26289144,4
+60740246,26289144,3
+66512641,26289144,3
+72738301,26289144,4
+43333979,26289144,4
+97786845,26289144,4
+54342985,26289144,4
+46735351,26289144,5
+47295015,26289144,4
+59556087,26289144,5
+41486823,26289144,4
+39562998,26289144,5
+helen1026,26289144,3
+34386699,26289144,1
+quchentao,26289144,4
+zxzzzs,26289144,5
+66802637,26289144,3
+68186986,26289144,1
+beanny,26289144,4
+helloajun,26289144,3
+64294971,26289144,-1
+53339781,26289144,3
+68850200,26289144,3
+zhouruowan,26289144,4
+56441549,26289144,4
+veronicawu1982,26289144,4
+61245435,26289144,4
+fuchajingran,26289144,3
+finle,26289144,3
+44573178,26289144,4
+51297703,26289144,3
+93674466,26289144,3
+51422628,26289144,1
+pineberry,26289144,4
+Echo2Echo,26289144,3
+84168657,26289144,4
+j2dream,26289144,4
+Anitachung,26289144,4
+85665063,26289144,4
+67606836,26289144,4
+58801003,26289144,3
+lostef,26289144,5
+echozw,26289144,5
+49470522,26289144,4
+tt1426,26289144,4
+46656528,26289144,3
+sgzjhw,26289144,4
+e663927,26289144,2
+62400100,26289144,3
+83192314,26289144,4
+81680542,26289144,4
+63254243,26289144,5
+56797832,26289144,5
+63207501,26289144,5
+38648875,26289144,3
+41655130,26289144,3
+124253429,26289144,1
+samnice,26289144,4
+maoxiaomao,26289144,4
+fuzyu,26289144,4
+16040985,26289144,4
+83193363,26289144,3
+102938445,26289144,3
+63434636,26289144,4
+moredarkwhite,26289144,3
+nvq7Gin,26289144,4
+ada1911,26289144,1
+goldenslumber,26289144,2
+59538037,26289144,5
+90587256,26289144,4
+16358419,26289144,4
+72219224,26289144,5
+16313678,26289144,4
+56621713,26289144,3
+83943798,26289144,5
+shaohuixue,26289144,5
+2373729,26289144,-1
+leokokko,26289144,3
+1281739,26289144,3
+guxueni,26289144,3
+50975959,26289144,3
+1477352,26289144,5
+52878748,26289144,4
+132433995,26289144,4
+66888816,26289144,3
+49250777,26289144,4
+3441669,26289144,3
+116290357,26289144,2
+13871057,26289144,3
+134647379,26289144,5
+saintxi,26289144,3
+fumihiko1985,26289144,3
+14836914,26289144,2
+57080555,26289144,3
+114467456,26289144,5
+53937762,26289144,4
+124720901,26289144,5
+135145248,26289144,5
+paigusam,26289144,5
+2275412,26289144,4
+1545133,26289144,4
+130954450,26289144,4
+121225563,26289144,5
+54273555,26289144,4
+80175824,26289144,3
+52337312,26289144,4
+HowShouldIKnow,26289144,5
+widchou,26289144,3
+128956153,26289144,5
+67680996,26289144,4
+choulaoya,26289144,4
+wuxi4945,26289144,2
+2622237,26289144,3
+52294863,26289144,2
+cxl951404897,26289144,2
+55789619,26289144,-1
+103182067,26289144,4
+youyeqiuxin,26289144,5
+53135638,26289144,3
+126828053,26289144,4
+44724666,26289144,5
+134318408,26289144,4
+wangyuan2648,26289144,4
+65430008,26289144,4
+49284959,26289144,4
+57088195,26289144,4
+50055511,26289144,4
+91498001,26289144,3
+Solo-n,26289144,3
+carinawang,26289144,2
+moonjourney,26289144,2
+youngwayne,26289144,4
+52470011,26289144,4
+74855224,26289144,3
+62008751,26289144,5
+4470750,26289144,5
+126558199,26289144,4
+57367354,26289144,4
+40623248,26289144,3
+uzbaby,26289144,5
+32505687,26289144,3
+43459920,26289144,4
+brallow,26289144,3
+moguduola,26289144,2
+59794916,26289144,5
+59079436,26289144,2
+leoglory,26289144,4
+51926666,26289144,4
+fxiaobo,26289144,5
+ruyuwong,26289144,2
+90598022,26289144,3
+48163178,26289144,-1
+62859286,26289144,5
+26419001,26289144,5
+133349897,26289144,5
+127019604,26289144,5
+95897604,26289144,5
+juwujian,26289144,3
+85293907,26289144,5
+flower_thalia,26289144,3
+61531110,26289144,3
+135030304,26289144,4
+popzoe,26289144,3
+xuxuyooxi,26289144,4
+44676319,26289144,5
+cherryli5288,26289144,4
+cherryli5288,26289144,4
+61560501,26289144,5
+73868761,26289144,3
+Singfukua,26289144,4
+12511197,26289144,2
+Snoopeacer,26289144,4
+Hope_Chesirene,26289144,4
+46070924,26289144,4
+love-xu,26289144,5
+120003632,26289144,4
+sasky,26289144,3
+61317910,26289144,1
+122953682,26289144,3
+loyanymve,26289144,3
+91543095,26289144,3
+126297778,26289144,4
+danmole,26289144,4
+53647318,26289144,5
+souring,26289144,4
+4123019,26289144,3
+4123019,26289144,3
+4100649,26289144,2
+BlueMoonshine,26289144,5
+75972068,26289144,-1
+xuexiaoyan,26289144,-1
+4051028,26289144,5
+49819209,26289144,3
+changchangxian,26289144,4
+53737366,26289144,3
+xu77,26289144,3
+90105219,26289144,4
+135076039,26289144,3
+hejianjian,26289144,5
+2820792,26289144,4
+dustblue,26289144,3
+87602683,26289144,2
+lifangze,26289144,4
+sslclz,26289144,3
+56682460,26289144,3
+1892627,26289144,2
+69130681,26289144,4
+70447042,26289144,4
+2305028,26289144,2
+BryanZ,26289144,1
+momo_erinys,26289144,4
+Verbomania,26289144,3
+20755333,26289144,4
+42897156,26289144,3
+43966741,26289144,4
+122749528,26289144,4
+x_zr525,26289144,4
+97042878,26289144,5
+6400247,26289144,4
+59428764,26289144,4
+134531481,26289144,4
+froggrandpa,26289144,3
+chaochao85mao,26289144,-1
+57714945,26289144,5
+2340314,26289144,3
+38207955,26289144,3
+76272908,26289144,4
+47127791,26289144,4
+51212428,26289144,5
+56739185,26289144,4
+68742880,26289144,3
+76407774,26289144,4
+uxiang,26289144,3
+Minaptx4869,26289144,5
+penguin_re,26289144,1
+17434045,26289144,3
+123593065,26289144,3
+kong_bai_ge,26289144,3
+43529469,26289144,4
+3971878,26289144,2
+49702943,26289144,3
+4083280,26289144,4
+85830142,26289144,3
+35518301,26289144,3
+65809636,26289144,3
+69773402,26289144,3
+125314923,26289144,3
+1344429,26289144,4
+50933473,26289144,3
+Msmint,26289144,5
+54340462,26289144,4
+46862287,26289144,5
+58065750,26289144,4
+96048469,26289144,4
+104086997,26289144,4
+65398795,26289144,4
+35990150,26289144,5
+40401113,26289144,2
+summeric,26289144,3
+49663103,26289144,4
+summersuy,26289144,5
+QPF,26289144,3
+121693868,26289144,4
+71772436,26289144,4
+huaidanwakaka,26289144,3
+3464941,26289144,3
+72442723,26289144,3
+109530447,26289144,3
+50340677,26289144,3
+48763260,26289144,3
+76743848,26289144,1
+sodafan,26289144,5
+7106437,26289144,5
+39649962,26289144,4
+Rolls,26289144,3
+ak430,26289144,4
+Pikachu1127,26289144,4
+42202741,26289144,3
+thezealer,26289144,3
+73011629,26289144,4
+1396867,26289144,4
+45394648,26289144,4
+67306781,26289144,5
+47199948,26289144,2
+38184816,26289144,2
+38527141,26289144,3
+OneiLulu,26289144,2
+xiayu17,26289144,3
+andy87819,26289144,4
+68988452,26289144,3
+studyzy,26289144,3
+xiaodianjl,26289144,5
+bulijite,26289144,3
+3475246,26289144,4
+55621323,26289144,3
+132683835,26289144,4
+wj8198026,26289144,4
+sweety124,26289144,4
+51227412,26289144,4
+3170513,26289144,2
+54306906,26289144,5
+60470640,26289144,3
+42562073,26289144,4
+lvxiaoying,26289144,1
+62090248,26289144,5
+53853520,26289144,4
+yvone1220,26289144,4
+65117604,26289144,3
+jiangziwen,26289144,4
+earup,26289144,3
+96473447,26289144,-1
+4446932,26289144,2
+57262819,26289144,3
+102598019,26289144,5
+44303018,26289144,3
+94996353,26289144,5
+53990289,26289144,3
+jialezone,26289144,3
+53106118,26289144,4
+73834908,26289144,3
+yomika,26289144,3
+45382410,26289144,4
+40067511,26289144,4
+81090765,26289144,-1
+2154617,26289144,2
+81897833,26289144,4
+33324366,26289144,5
+sfhuizhang,26289144,4
+46091317,26289144,4
+ixiaotong,26289144,4
+34727533,26289144,3
+sylvielanlan,26289144,3
+58863205,26289144,1
+64308036,26289144,4
+92612279,26289144,3
+sophytao,26289144,5
+26715515,26289144,3
+110679412,26289144,5
+60764117,26289144,3
+fabulouswhite,26289144,4
+66539223,26289144,3
+2818730,26289144,4
+60413211,26289144,3
+56684398,26289144,3
+91433204,26289144,4
+aivae,26289144,2
+51605377,26289144,4
+juliekathy,26289144,3
+4465654,26289144,1
+56934179,26289144,4
+57648568,26289144,3
+4835687,26289144,4
+candy_littrell,26289144,1
+4352101,26289144,4
+popopo,26289144,2
+45268536,26289144,4
+63547769,26289144,4
+107097785,26289144,4
+esther11yiyi,26289144,3
+67923437,26289144,4
+50385651,26289144,3
+hayden001,26289144,2
+aka1943,26289144,5
+icefruit,26289144,3
+cocokidman,26289144,3
+59408891,26289144,3
+3248632,26289144,3
+rukewa,26289144,5
+54721365,26289144,1
+57583143,26289144,3
+erin_yyi,26289144,4
+49750444,26289144,4
+vicliia,26289144,2
+Queenie.Emika,26289144,3
+72434316,26289144,5
+27036800,26289144,4
+49082695,26289144,4
+ke-ke,26289144,4
+78219576,26289144,1
+58290785,26289144,1
+windy.lin,26289144,2
+SoCrazyNemo,26289144,4
+80663628,26289144,3
+53307065,26289144,4
+91584041,26289144,4
+132773025,26289144,4
+yanmingsky,26289144,4
+Darezhao,26289144,5
+1369113,26289144,3
+120383320,26289144,2
+45464563,26289144,4
+135897690,26289144,4
+zhanglinge,26289144,3
+47601113,26289144,4
+emilia9,26289144,3
+Jerryxuch,26289144,4
+66035702,26289144,4
+80526714,26289144,5
+62017090,26289144,5
+ybfleon,26289144,3
+millayQ,26289144,-1
+psycheeee,26289144,3
+aiwangyue,26289144,4
+80614014,26289144,1
+qingtianer,26289144,4
+luerdelphic,26289144,1
+winnieyz,26289144,4
+100043163,26289144,1
+46776776,26289144,1
+49631776,26289144,-1
+leisurelee,26289144,4
+ibenben,26289144,4
+68340639,26289144,5
+3729959,26289144,4
+120407803,26289144,5
+jiscat,26289144,3
+46404416,26289144,5
+ihaveafreeheart,26289144,4
+111112872,26289144,5
+119883443,26289144,4
+luxi1988,26289144,5
+shisongya,26289144,5
+27549721,26289144,4
+ku021,26289144,5
+42088421,26289144,5
+4142921,26289144,5
+4142921,26289144,5
+47098336,26289144,5
+JakeNow,26289144,4
+76677796,26289144,5
+65758167,26289144,4
+botuoxi,26289144,3
+kelingshanshan,26289144,4
+Grey1128,26289144,-1
+70699214,26289144,3
+rockgong,26289144,3
+115309067,26289144,4
+46011187,26289144,4
+42680639,26289144,4
+55322663,26289144,5
+124861242,26289144,3
+50063811,26289144,4
+xsky1988,26289144,3
+64128291,26289144,3
+79798847,26289144,4
+yolandaris,26289144,-1
+tottibai,26289144,4
+55024300,26289144,3
+3064539,26289144,3
+50416946,26289144,3
+49199204,26289144,4
+82722362,26289144,2
+43978378,26289144,4
+79044954,26289144,4
+42724768,26289144,3
+59684689,26289144,3
+51587730,26289144,4
+cheer1993,26289144,3
+44392730,26289144,4
+2280761,26289144,3
+91794461,26289144,4
+66063255,26289144,2
+126202371,26289144,4
+cloverllx,26289144,3
+tom926,26289144,3
+79718486,26289144,4
+frosteeeee,26289144,2
+45820206,26289144,3
+64776429,26289144,4
+wamaggieng,26289144,3
+ydyie,26289144,3
+emily0016,26289144,-1
+51929151,26289144,4
+gzzing,26289144,3
+kingtreetooth,26289144,4
+119934029,26289144,4
+4818608,26289144,5
+bigredapple,26289144,4
+135868666,26289144,4
+xieyanwei,26289144,5
+ancg,26289144,4
+sherry-cheng999,26289144,5
+yilianghai,26289144,2
+echozhan,26289144,2
+47209079,26289144,5
+55006462,26289144,4
+88367720,26289144,4
+wenyuan_li,26289144,3
+49221787,26289144,5
+86714653,26289144,4
+74796937,26289144,4
+55814996,26289144,2
+2119013,26289144,3
+NicoleCrowe,26289144,3
+YUNZIAH4Y,26289144,5
+130601471,26289144,4
+63941479,26289144,2
+geyinbo,26289144,3
+66178513,26289144,4
+55836344,26289144,4
+46968893,26289144,5
+57029549,26289144,5
+17859674,26289144,4
+ganster,26289144,5
+InveRno,26289144,4
+4867707,26289144,4
+my1900,26289144,4
+63231702,26289144,5
+126948377,26289144,4
+45320145,26289144,5
+73634799,26289144,3
+63531003,26289144,5
+78977506,26289144,4
+64309170,26289144,3
+1381065,26289144,4
+80657974,26289144,4
+45651390,26289144,3
+79456169,26289144,5
+adamwzw,26289144,4
+riceseedling,26289144,4
+48334088,26289144,4
+88450412,26289144,4
+36072726,26289144,4
+74855673,26289144,3
+73575584,26289144,3
+souldestroyin,26289144,2
+40836230,26289144,3
+90217144,26289144,4
+iyuxingcao,26289144,4
+crystaliceblue,26289144,3
+45580580,26289144,3
+shuangeryu,26289144,3
+66974768,26289144,4
+4435016,26289144,5
+jiachangting,26289144,4
+jiajunzhi,26289144,4
+68399606,26289144,5
+134195975,26289144,4
+64087077,26289144,4
+51509437,26289144,4
+4632449,26289144,3
+57001880,26289144,2
+44350691,26289144,4
+96807305,26289144,4
+76002759,26289144,3
+xy52119910521,26289144,5
+76002759,26289144,3
+xy52119910521,26289144,5
+64692199,26289144,4
+78277110,26289144,5
+120092472,26289144,4
+48773692,26289144,2
+65832475,26289144,5
+3836230,26289144,3
+didopyj,26289144,3
+63849510,26289144,3
+67768014,26289144,5
+cicise7en,26289144,4
+4900763,26289144,5
+3596469,26289144,4
+71946766,26289144,-1
+78675448,26289144,4
+choy,26289144,4
+4723158,26289144,4
+songxuan911027,26289144,5
+41900641,26289144,5
+120445293,26289144,4
+64779909,26289144,4
+53635906,26289144,3
+86453333,26289144,5
+TIMTIM1105,26289144,3
+120929768,26289144,3
+36043913,26289144,3
+64585406,26289144,3
+xytoo,26289144,5
+2273247,26289144,5
+2048690,26289144,4
+80681000,26289144,4
+46427715,26289144,4
+126724484,26289144,5
+54578280,26289144,5
+72866901,26289144,4
+70090327,26289144,4
+47959291,26289144,5
+50111245,26289144,4
+121739485,26289144,4
+52938830,26289144,-1
+49319979,26289144,4
+lingqingchun,26289144,-1
+1074069,26289144,3
+xiguatang,26289144,3
+53716762,26289144,4
+56128182,26289144,4
+54039981,26289144,5
+linyufei,26289144,3
+70007681,26289144,4
+127338813,26289144,4
+helvinyang,26289144,4
+113400497,26289144,4
+qingfengmubai,26289144,3
+guominghan1989,26289144,4
+abuwangzi,26289144,2
+91693756,26289144,5
+hehe2day,26289144,3
+56207725,26289144,4
+55287270,26289144,4
+65306635,26289144,4
+50930270,26289144,-1
+56475433,26289144,4
+69605901,26289144,3
+35371266,26289144,4
+114284723,26289144,4
+estelleluo,26289144,5
+suffering0,26289144,3
+46711979,26289144,4
+104709607,26289144,4
+GZ,26289144,3
+53971483,26289144,4
+124141059,26289144,3
+65387296,26289144,4
+vonvonluck,26289144,4
+everlastingEGO,26289144,3
+41376663,26289144,5
+76554749,26289144,3
+99550697,26289144,5
+cect,26289144,1
+44006704,26289144,3
+Sophia_U,26289144,3
+83659881,26289144,3
+48279073,26289144,5
+loveleo,26289144,4
+71421150,26289144,5
+124892658,26289144,4
+clhan,26289144,5
+48996798,26289144,4
+54467510,26289144,5
+51068415,26289144,3
+65223888,26289144,4
+AllanBen,26289144,4
+5122074,26289144,4
+64005211,26289144,5
+25982397,26289144,4
+63359487,26289144,2
+68674122,26289144,3
+58617464,26289144,5
+53401565,26289144,5
+gomelove,26289144,5
+41823915,26289144,3
+urpk,26289144,4
+52763172,26289144,4
+122352396,26289144,4
+4210996,26289144,1
+71918561,26289144,3
+47633821,26289144,4
+44524593,26289144,4
+Amy-QQ,26289144,5
+stefanie1112,26289144,3
+59606439,26289144,5
+63989347,26289144,4
+58348817,26289144,5
+46534834,26289144,3
+youyeyi,26289144,5
+1096571,26289144,3
+101856109,26289144,5
+Jodiezhang,26289144,3
+78577961,26289144,4
+57882402,26289144,4
+64816861,26289144,4
+4115987,26289144,5
+88502851,26289144,2
+flytomilan,26289144,3
+hechengxiaozi,26289144,4
+81530706,26289144,3
+27356710,26289144,3
+51373318,26289144,4
+51990836,26289144,4
+wangdoudou20,26289144,3
+92456075,26289144,4
+20886546,26289144,4
+48480667,26289144,5
+89635048,26289144,2
+62429989,26289144,5
+48181580,26289144,-1
+54267721,26289144,5
+47322994,26289144,4
+47774379,26289144,1
+130550035,26289144,4
+35577629,26289144,4
+51416132,26289144,4
+35197924,26289144,4
+51255691,26289144,3
+67310405,26289144,4
+63576554,26289144,4
+111014208,26289144,3
+88072113,26289144,3
+4258941,26289144,5
+nnnnore391,26289144,3
+45641492,26289144,3
+dolphin-eliza,26289144,5
+78214422,26289144,3
+41482074,26289144,1
+94380874,26289144,2
+22140861,26289144,4
+vianann,26289144,2
+104008588,26289144,5
+nanzang,26289144,5
+hey_mickey,26289144,3
+supergiles,26289144,5
+65292306,26289144,3
+54039871,26289144,4
+piaotutu,26289144,4
+hsyh1989,26289144,5
+114903516,26289144,5
+132099926,26289144,5
+50874756,26289144,3
+timliutianxiang,26289144,3
+48047032,26289144,4
+52926147,26289144,4
+127785608,26289144,3
+81930957,26289144,2
+69196405,26289144,3
+56466198,26289144,4
+DCBinseven,26289144,5
+leeyone,26289144,4
+Sinept,26289144,3
+56694630,26289144,4
+49056997,26289144,4
+81785228,26289144,3
+48118281,26289144,3
+82025931,26289144,3
+bof,26289144,3
+47782519,26289144,4
+zhr19951204,26289144,4
+nia_chen,26289144,3
+130459392,26289144,2
+53638972,26289144,4
+103441649,26289144,3
+135932861,26289144,5
+1515476,26289144,5
+70173493,26289144,5
+117339283,26289144,1
+91140332,26289144,3
+40931837,26289144,5
+59556078,26289144,3
+xiejiaxin1209,26289144,4
+moneyroad,26289144,5
+134000470,26289144,2
+mofang816,26289144,4
+MOVIE--KO,26289144,3
+4715775,26289144,4
+75328137,26289144,4
+54669571,26289144,5
+74335296,26289144,4
+75706045,26289144,3
+78571558,26289144,3
+beijingzz,26289144,5
+tmh9390,26289144,4
+122433778,26289144,5
+wcclg,26289144,2
+74759325,26289144,5
+81873950,26289144,4
+127813703,26289144,4
+jisixue0111,26289144,3
+45312368,26289144,3
+41927716,26289144,2
+shimeng,26289144,3
+100294226,26289144,2
+sunnyxin0521,26289144,3
+60389557,26289144,3
+49197050,26289144,3
+JIUSHU87,26289144,3
+92203860,26289144,4
+chedan-NB,26289144,3
+126128083,26289144,5
+3660129,26289144,-1
+mzm1016,26289144,5
+115849578,26289144,3
+nangle,26289144,2
+65366516,26289144,3
+1216444,26289144,4
+foleyfan,26289144,3
+qianbao,26289144,4
+68175783,26289144,3
+milkcandy,26289144,4
+78053734,26289144,3
+Pincent,26289144,4
+xiaopang1106,26289144,3
+3571623,26289144,2
+127450235,26289144,4
+125663520,26289144,5
+3782024,26289144,4
+48787128,26289144,4
+104310668,26289144,5
+87599429,26289144,5
+thecrespo,26289144,4
+78606894,26289144,5
+129748813,26289144,5
+zingchampion,26289144,3
+chanbc,26289144,5
+96044338,26289144,3
+104313584,26289144,4
+TLSL,26289144,4
+2244671,26289144,4
+78786637,26289144,3
+68171864,26289144,5
+sunshinewang,26289144,3
+rrspeaking,26289144,4
+68090825,26289144,2
+yin5,26289144,2
+chunfenghuayu23,26289144,5
+65457803,26289144,3
+akanetx,26289144,3
+40340822,26289144,4
+76624965,26289144,1
+75490431,26289144,3
+36936880,26289144,3
+yinuokayi,26289144,3
+74590863,26289144,5
+55850316,26289144,3
+xnj131,26289144,5
+57553879,26289144,3
+67352190,26289144,4
+54655031,26289144,5
+yscysc803,26289144,4
+3631042,26289144,3
+2733047,26289144,2
+2733047,26289144,2
+Youoen,26289144,2
+lionbiscuit,26289144,3
+128631933,26289144,3
+magic1029,26289144,3
+28709669,26289144,1
+quite2,26289144,3
+bajiao8,26289144,4
+xingzhe2011,26289144,5
+44311860,26289144,4
+4192759,26289144,3
+56041377,26289144,4
+sellmysoul,26289144,5
+69066634,26289144,1
+62210177,26289144,4
+luweiyan2012,26289144,5
+2327893,26289144,3
+133867857,26289144,5
+yintianyi420,26289144,4
+jiaodongdaxia,26289144,3
+45340915,26289144,2
+135518033,26289144,4
+43766202,26289144,3
+42008177,26289144,3
+sterr,26289144,4
+simona_mae,26289144,2
+narrowjiu,26289144,4
+79256838,26289144,5
+takahashili,26289144,3
+hudali,26289144,3
+65683142,26289144,4
+lindsayzyh,26289144,3
+4390856,26289144,5
+106663926,26289144,3
+hexiyan,26289144,5
+56912820,26289144,4
+42506410,26289144,4
+4694211,26289144,5
+nate_xu,26289144,5
+4545627,26289144,4
+49340336,26289144,3
+50103007,26289144,3
+heiziyefengkuan,26289144,4
+66976901,26289144,-1
+Ginny1s,26289144,4
+102108363,26289144,4
+55364280,26289144,4
+miong,26289144,5
+79309327,26289144,5
+crystal81,26289144,3
+IDEAL_Jason,26289144,5
+43172393,26289144,4
+10560080,26289144,3
+125657013,26289144,4
+CrystalSleeper,26289144,4
+interskh,26289144,3
+SeeUMr.Van,26289144,3
+bairu610613,26289144,4
+41926358,26289144,4
+95768578,26289144,3
+123738666,26289144,4
+55536274,26289144,-1
+84393372,26289144,4
+Fienix,26289144,3
+30725262,26289144,4
+72936086,26289144,4
+43748947,26289144,5
+morechou,26289144,3
+51277231,26289144,2
+antoniochen,26289144,4
+2997234,26289144,3
+94392595,26289144,5
+Yuenyuan,26289144,3
+xiangshuoshenme,26289144,-1
+44158473,26289144,4
+myshowfan,26289144,4
+R.Samsara,26289144,-1
+snowbetty,26289144,5
+3540441,26289144,3
+l1086905132,26289144,1
+mickamy,26289144,4
+50731325,26289144,3
+59124247,26289144,3
+93861419,26289144,4
+14453874,26289144,4
+70981661,26289144,4
+45440059,26289144,4
+46812658,26289144,4
+39965559,26289144,5
+57530916,26289144,5
+2258556,26289144,3
+50353681,26289144,4
+whuzhangli,26289144,3
+93374803,26289144,3
+42368147,26289144,2
+91313551,26289144,5
+CatPrince,26289144,4
+50023640,26289144,3
+20194870,26289144,3
+xianxianchen,26289144,3
+78730690,26289144,5
+buzainianshao,26289144,4
+68759348,26289144,3
+ireneqian,26289144,5
+52995380,26289144,2
+63767330,26289144,4
+61041059,26289144,5
+53362350,26289144,4
+47026915,26289144,2
+72381725,26289144,3
+53897092,26289144,4
+yixiaoran,26289144,4
+1829461,26289144,4
+1156229,26289144,3
+82550997,26289144,3
+45968027,26289144,3
+attlauy,26289144,4
+76243038,26289144,4
+39684320,26289144,5
+75070231,26289144,4
+83480049,26289144,3
+19266682,26289144,5
+45286644,26289144,3
+tangyilun,26289144,3
+45179970,26289144,4
+thethirteenth,26289144,1
+120269206,26289144,5
+monster1000,26289144,4
+53395539,26289144,4
+tarapanda,26289144,2
+47768193,26289144,5
+LinXion,26289144,4
+80425908,26289144,4
+87651171,26289144,1
+cathy_59,26289144,5
+4811029,26289144,5
+68433941,26289144,5
+2788057,26289144,3
+133414711,26289144,5
+49038278,26289144,3
+2438025,26289144,4
+9411327,26289144,4
+61963433,26289144,4
+yangisyang,26289144,4
+xiaoxi1252,26289144,3
+66336008,26289144,5
+3474199,26289144,5
+bohehongchahp,26289144,5
+106457277,26289144,3
+62674251,26289144,4
+45069650,26289144,4
+York29,26289144,4
+48083771,26289144,3
+119865328,26289144,4
+62704211,26289144,4
+ami0430,26289144,-1
+loersan11,26289144,4
+onlyzhaojunyi,26289144,4
+130384856,26289144,3
+67240595,26289144,3
+45390521,26289144,4
+119571357,26289144,4
+75651301,26289144,3
+dingdaiwei,26289144,5
+88047435,26289144,3
+2010767,26289144,3
+Sissi-fei,26289144,5
+75189651,26289144,3
+44599413,26289144,1
+46355021,26289144,5
+85267673,26289144,5
+imjerry,26289144,-1
+85324202,26289144,3
+1444747,26289144,3
+75210772,26289144,3
+3333087,26289144,5
+94773780,26289144,4
+53274291,26289144,3
+kevindai,26289144,3
+121933972,26289144,4
+4089761,26289144,5
+46026117,26289144,4
+59076078,26289144,3
+shuijiao,26289144,3
+53455347,26289144,4
+78668658,26289144,4
+szfdouban,26289144,4
+80679783,26289144,4
+128025766,26289144,2
+miuccia,26289144,5
+QQY,26289144,4
+foodcup,26289144,5
+47947181,26289144,5
+4652776,26289144,4
+DZTL,26289144,5
+20657820,26289144,5
+101890144,26289144,5
+58938806,26289144,4
+122099416,26289144,4
+65740832,26289144,3
+38248181,26289144,3
+zuoshoudezuo,26289144,3
+60392839,26289144,3
+vivien0212,26289144,5
+65303828,26289144,4
+64880714,26289144,-1
+96738968,26289144,5
+8316667,26289144,3
+97389604,26289144,4
+68291923,26289144,4
+129305098,26289144,5
+57482970,26289144,4
+134057557,26289144,3
+80115244,26289144,4
+yingcao,26289144,4
+njinian,26289144,4
+57819875,26289144,-1
+128527769,26289144,5
+50663434,26289144,3
+deartintin,26289144,3
+120529040,26289144,4
+zhoudaxia,26289144,3
+jingrong,26289144,4
+dengchunyi,26289144,3
+52840916,26289144,2
+92867704,26289144,5
+58077548,26289144,3
+YJXMYT,26289144,3
+59404568,26289144,3
+beibeiyu,26289144,4
+smiduo,26289144,-1
+2239351,26289144,3
+103771999,26289144,4
+JZDE,26289144,4
+sunchao1989,26289144,3
+78729855,26289144,3
+50853952,26289144,-1
+127480277,26289144,3
+3475951,26289144,3
+zeonwon,26289144,3
+42440252,26289144,5
+zhang2013yyy,26289144,4
+cn50344,26289144,4
+41980752,26289144,3
+dengxian123,26289144,3
+fuji-kelly,26289144,4
+59524621,26289144,3
+urslee,26289144,4
+52202142,26289144,5
+14950195,26289144,3
+imoka,26289144,5
+3534571,26289144,4
+47801703,26289144,4
+50204167,26289144,5
+49392721,26289144,4
+3833311,26289144,4
+47461790,26289144,3
+124996930,26289144,2
+laomo,26289144,3
+130044129,26289144,4
+st.nye,26289144,3
+annbabyyan,26289144,-1
+120031730,26289144,4
+63100732,26289144,5
+LaniCui,26289144,-1
+fox116,26289144,4
+G0773,26289144,5
+68237085,26289144,2
+imyummy,26289144,4
+particles,26289144,3
+3880844,26289144,3
+jodiexie,26289144,3
+57447005,26289144,4
+39768482,26289144,3
+120373913,26289144,5
+52098177,26289144,4
+4124299,26289144,5
+ghost_w,26289144,5
+1369129,26289144,4
+59792384,26289144,4
+3658150,26289144,3
+61895046,26289144,3
+41336999,26289144,5
+2496608,26289144,3
+37567286,26289144,3
+34229072,26289144,4
+50331162,26289144,4
+73244002,26289144,3
+Gordoncoco,26289144,3
+75375352,26289144,5
+41786270,26289144,5
+59038641,26289144,4
+59290556,26289144,3
+4347444,26289144,2
+74797419,26289144,5
+31755732,26289144,3
+tianxianglouzhu,26289144,4
+z-shan,26289144,3
+2454965,26289144,4
+91117590,26289144,5
+cute-candyan,26289144,3
+kopite,26289144,4
+doubaning,26289144,5
+133861190,26289144,3
+43786841,26289144,3
+frnong,26289144,4
+aircentee,26289144,5
+82767053,26289144,4
+53199629,26289144,4
+48345899,26289144,3
+115660168,26289144,4
+81812035,26289144,4
+2066944,26289144,3
+gbluki,26289144,4
+54224355,26289144,3
+earthquakes,26289144,3
+81102769,26289144,3
+mwr23929,26289144,4
+2402223,26289144,4
+bby341,26289144,3
+4331850,26289144,5
+izzn,26289144,2
+62242072,26289144,2
+57672000,26289144,1
+cccCORRINEeee,26289144,3
+nearlloveyou,26289144,3
+63984355,26289144,4
+rainy214,26289144,4
+67240733,26289144,3
+GoldenCompass,26289144,4
+132388146,26289144,2
+2511809,26289144,3
+82912362,26289144,5
+mhyigeren,26289144,3
+65809377,26289144,4
+62003160,26289144,4
+65724655,26289144,5
+135317067,26289144,3
+49269031,26289144,1
+2475141,26289144,3
+88451732,26289144,4
+84899568,26289144,4
+7669558,26289144,4
+119157867,26289144,3
+70440738,26289144,5
+60609410,26289144,4
+71622967,26289144,5
+Molly_W,26289144,3
+71900698,26289144,4
+brandnewstart,26289144,2
+122041675,26289144,5
+wendyqi0217,26289144,4
+49365587,26289144,3
+69678068,26289144,4
+67882146,26289144,4
+TIFFANYVI,26289144,2
+74106602,26289144,3
+44065208,26289144,4
+huantangrina,26289144,4
+zhangyangan,26289144,1
+70627079,26289144,3
+47586387,26289144,3
+133623955,26289144,2
+just_nomadic,26289144,4
+40760358,26289144,3
+wufeiqun,26289144,4
+kidify,26289144,3
+66722557,26289144,3
+1507059,26289144,4
+75461001,26289144,4
+CSO-Botasky,26289144,4
+yinzi731,26289144,5
+62489520,26289144,5
+92764567,26289144,4
+46019435,26289144,3
+10007777,26289144,4
+fqlv5,26289144,2
+120736861,26289144,4
+134009962,26289144,4
+2946471,26289144,3
+rainycats,26289144,5
+77794190,26289144,4
+Du_sunflower,26289144,4
+lvyuanzi,26289144,3
+116614076,26289144,3
+NapCote,26289144,3
+121122291,26289144,5
+oukani,26289144,4
+2227016,26289144,3
+41082582,26289144,4
+4474468,26289144,4
+92468807,26289144,2
+65541182,26289144,3
+3620484,26289144,3
+71886589,26289144,5
+muzichichu,26289144,2
+69008426,26289144,4
+72391986,26289144,4
+antimercydou,26289144,3
+135790229,26289144,4
+motou0328,26289144,5
+hotowl,26289144,3
+wdhappy,26289144,5
+4014882,26289144,4
+119063618,26289144,4
+114689592,26289144,4
+107904197,26289144,3
+yullc,26289144,5
+coldyue,26289144,3
+Liz426,26289144,5
+60818460,26289144,3
+i840152811,26289144,4
+63228539,26289144,3
+47363252,26289144,4
+hearingmoon,26289144,3
+green198641,26289144,4
+vivianclytze,26289144,2
+natsukimi,26289144,2
+135629558,26289144,4
+sethyoung,26289144,5
+29433181,26289144,3
+2978852,26289144,3
+53048690,26289144,4
+95691041,26289144,4
+127585242,26289144,4
+jluy,26289144,3
+132214996,26289144,5
+piggy007,26289144,3
+88494578,26289144,5
+ys1013,26289144,3
+40081609,26289144,4
+rocekrong,26289144,2
+55859844,26289144,4
+129239528,26289144,5
+minamy1227,26289144,3
+sovery,26289144,4
+hylpbs,26289144,2
+ganganjj,26289144,4
+dabi,26289144,5
+64235845,26289144,4
+Leave_Summer,26289144,4
+63110366,26289144,3
+30117998,26289144,4
+109102443,26289144,4
+2521515,26289144,4
+69323349,26289144,4
+72994567,26289144,3
+126334650,26289144,3
+74527805,26289144,4
+58490823,26289144,3
+jieyaren,26289144,3
+47048376,26289144,3
+49996599,26289144,3
+79261821,26289144,3
+62041665,26289144,-1
+qingxingji47,26289144,3
+downcoffee,26289144,5
+handankaikai,26289144,2
+shiori,26289144,2
+45378310,26289144,4
+79999351,26289144,4
+67720857,26289144,5
+71038565,26289144,4
+53637766,26289144,4
+47591024,26289144,4
+62147836,26289144,4
+rregina,26289144,-1
+Jane.W,26289144,5
+73144387,26289144,4
+roki,26289144,4
+icosima,26289144,5
+85763396,26289144,-1
+star0607,26289144,5
+120874104,26289144,4
+126746574,26289144,4
+Jocci,26289144,2
+125488327,26289144,5
+62532292,26289144,4
+arthur104d,26289144,2
+jayelhy,26289144,4
+57855892,26289144,4
+yuyu723,26289144,3
+kkkkaylee,26289144,4
+65386803,26289144,5
+yexuexiange,26289144,4
+130860796,26289144,3
+jammy48,26289144,3
+hahagood,26289144,5
+21089246,26289144,5
+50907165,26289144,5
+103981840,26289144,5
+128936024,26289144,5
+engamichelle,26289144,4
+57571083,26289144,4
+Sibier,26289144,2
+flei,26289144,4
+52441493,26289144,4
+4292817,26289144,4
+56835432,26289144,3
+48542981,26289144,2
+85472462,26289144,3
+37850704,26289144,3
+73686659,26289144,4
+59351166,26289144,4
+62369741,26289144,3
+69127240,26289144,4
+3566385,26289144,3
+68031714,26289144,5
+xxxmtira,26289144,5
+63691557,26289144,4
+114516619,26289144,4
+atomziyu,26289144,5
+52810314,26289144,-1
+niutouziaini,26289144,4
+57640868,26289144,3
+bbloveff,26289144,3
+lrq92livecn,26289144,3
+52004190,26289144,3
+Stamay_chou,26289144,2
+avro,26289144,3
+avro,26289144,3
+mrfengge,26289144,4
+53118969,26289144,4
+yiouob,26289144,4
+52461129,26289144,4
+32841660,26289144,3
+veranannan,26289144,3
+ancol,26289144,4
+34417366,26289144,4
+yizhiyu11,26289144,3
+3818284,26289144,4
+shibal,26289144,5
+61349784,26289144,4
+53717841,26289144,3
+retsu,26289144,4
+119763095,26289144,4
+72592031,26289144,3
+xiao-song,26289144,3
+47078209,26289144,4
+55809849,26289144,4
+moyezi,26289144,3
+1327257,26289144,4
+vidia,26289144,3
+60624598,26289144,4
+myo,26289144,4
+16299149,26289144,4
+59769203,26289144,4
+ningjuntao,26289144,3
+134498032,26289144,4
+1312199,26289144,1
+65545122,26289144,3
+4634144,26289144,3
+kefishfish,26289144,5
+46894439,26289144,4
+4411026,26289144,4
+findSally,26289144,4
+68163340,26289144,5
+q164511490,26289144,3
+57443358,26289144,3
+jiong7,26289144,4
+92107201,26289144,5
+129789094,26289144,3
+50771967,26289144,4
+donkeylv,26289144,5
+2256732,26289144,4
+52914401,26289144,4
+104658411,26289144,4
+51455219,26289144,4
+mohui,26289144,4
+53273464,26289144,3
+52331640,26289144,5
+evazhangwow,26289144,2
+82888375,26289144,3
+53941814,26289144,4
+48250185,26289144,4
+90875805,26289144,4
+cocof,26289144,3
+suwangchuan,26289144,3
+122104657,26289144,4
+guoguoguodaxia,26289144,5
+corrinneh,26289144,4
+65221116,26289144,4
+lipengfeng2007,26289144,2
+zouzhiruo,26289144,3
+2344307,26289144,4
+45067851,26289144,4
+121475864,26289144,4
+121932752,26289144,4
+isabell520,26289144,3
+62055619,26289144,4
+85054312,26289144,4
+zhl19741130520,26289144,4
+126859970,26289144,2
+134576253,26289144,4
+77067030,26289144,4
+wen1228,26289144,5
+46788062,26289144,-1
+74413601,26289144,5
+wchuwen,26289144,4
+130599589,26289144,5
+131921881,26289144,4
+chaosi,26289144,2
+Z-soda,26289144,3
+3747717,26289144,5
+62034584,26289144,4
+yoonjea,26289144,4
+82454159,26289144,4
+my-movie,26289144,3
+aiaiapple,26289144,4
+75043360,26289144,3
+135758634,26289144,-1
+82624141,26289144,3
+zhouxin95,26289144,5
+cody555,26289144,3
+74310223,26289144,3
+ljojingle,26289144,2
+Angle_Angle,26289144,4
+35095860,26289144,4
+1494112,26289144,4
+122589505,26289144,5
+2736291,26289144,4
+57951864,26289144,4
+46960084,26289144,2
+nalusea,26289144,4
+64671678,26289144,5
+59698187,26289144,3
+131088408,26289144,4
+1550135,26289144,4
+130469342,26289144,4
+25642362,26289144,5
+79875260,26289144,3
+53616045,26289144,4
+zhuweina,26289144,2
+dove219,26289144,5
+anluos,26289144,1
+53408262,26289144,5
+135644489,26289144,3
+98179826,26289144,4
+43069509,26289144,3
+53307722,26289144,5
+130644933,26289144,4
+103708027,26289144,4
+feifeiyouxia,26289144,3
+bangbang2033,26289144,4
+56286419,26289144,3
+68464777,26289144,2
+1752320,26289144,4
+fenxinyu,26289144,4
+64504286,26289144,4
+67728245,26289144,4
+103214078,26289144,3
+Cindylam,26289144,2
+iceanjing,26289144,4
+joemayxu,26289144,4
+55443328,26289144,5
+momojenny,26289144,4
+57787048,26289144,4
+46183275,26289144,4
+Moyoyo,26289144,5
+66686600,26289144,2
+120902096,26289144,5
+91998053,26289144,3
+gisellefang,26289144,3
+alice-cat,26289144,5
+fucklife233,26289144,4
+55466621,26289144,3
+hanseas,26289144,5
+62877748,26289144,3
+2206615,26289144,3
+readmovie,26289144,3
+childream,26289144,5
+45223077,26289144,4
+60302045,26289144,4
+spirior,26289144,4
+93691714,26289144,3
+57089947,26289144,5
+72168473,26289144,-1
+49234073,26289144,4
+30830742,26289144,4
+135660540,26289144,4
+91428973,26289144,-1
+52207529,26289144,3
+melodyxoxo,26289144,2
+126579331,26289144,5
+63808061,26289144,4
+aquario,26289144,5
+3647902,26289144,5
+134548968,26289144,4
+justineous,26289144,5
+44832442,26289144,3
+69723537,26289144,5
+63788967,26289144,3
+tangningjie10,26289144,-1
+91096598,26289144,4
+tangtangyo,26289144,3
+63620310,26289144,4
+135270390,26289144,5
+58989097,26289144,4
+46394662,26289144,4
+92005501,26289144,4
+50235761,26289144,3
+ShuniZhang,26289144,3
+EvelynSalt,26289144,4
+2603707,26289144,4
+54871511,26289144,5
+bcyoyo,26289144,3
+80240044,26289144,4
+3598334,26289144,4
+sharrie,26289144,4
+56330466,26289144,3
+61999640,26289144,3
+58165398,26289144,5
+visvivi,26289144,4
+120063423,26289144,3
+58707423,26289144,3
+80368846,26289144,5
+45415867,26289144,4
+lsadalin,26289144,5
+78255111,26289144,4
+alchemist,26289144,-1
+90056521,26289144,4
+withziyi,26289144,-1
+55529089,26289144,4
+zhoue0311,26289144,5
+54838539,26289144,3
+52029412,26289144,3
+cherryseventeen,26289144,4
+58165403,26289144,4
+dreamcristal,26289144,5
+joxxc,26289144,2
+58372520,26289144,4
+80535957,26289144,-1
+casolove,26289144,4
+ecukhxt,26289144,4
+alvinhui,26289144,4
+126474447,26289144,3
+69184706,26289144,4
+32911362,26289144,4
+53534718,26289144,4
+69672779,26289144,3
+104818700,26289144,3
+farewellsadness,26289144,4
+53487447,26289144,4
+127082758,26289144,5
+zixiaosun731,26289144,4
+Amoresummer,26289144,4
+77609153,26289144,3
+57714578,26289144,5
+tulip_87,26289144,2
+swanman17,26289144,4
+48942391,26289144,4
+50057454,26289144,4
+Tartan,26289144,4
+littlejoong,26289144,3
+55980098,26289144,5
+62717349,26289144,5
+k33425,26289144,3
+58628233,26289144,3
+73706706,26289144,5
+anaisanabel,26289144,3
+2082235,26289144,3
+Gstyle,26289144,4
+sw7eets,26289144,3
+1459581,26289144,3
+63347675,26289144,5
+73624765,26289144,4
+127219953,26289144,5
+135511267,26289144,4
+62350026,26289144,-1
+88223650,26289144,4
+67330713,26289144,-1
+49467804,26289144,1
+58132844,26289144,4
+120470819,26289144,4
+2166091,26289144,4
+7604485,26289144,4
+hnnyzxh,26289144,3
+30949178,26289144,3
+xiaolanzzz,26289144,3
+80804597,26289144,4
+50985267,26289144,5
+Wasted,26289144,3
+3905412,26289144,3
+71627900,26289144,4
+123277373,26289144,5
+52523730,26289144,4
+135474954,26289144,5
+jerviscz,26289144,3
+62340407,26289144,-1
+66718384,26289144,4
+120002421,26289144,5
+bbazingaa,26289144,4
+maggie.wxy,26289144,5
+56379326,26289144,4
+pinkvanilla,26289144,5
+2460899,26289144,4
+58064281,26289144,4
+60908758,26289144,4
+70001053,26289144,4
+119432670,26289144,4
+46567441,26289144,4
+119652521,26289144,4
+Monica__Wang,26289144,2
+122060054,26289144,4
+46138752,26289144,3
+41928778,26289144,-1
+4682542,26289144,4
+120479152,26289144,5
+yinhun,26289144,4
+lihanbin,26289144,5
+59999128,26289144,5
+elmo219,26289144,4
+72962930,26289144,3
+73161188,26289144,4
+Jessica-CW,26289144,4
+119592690,26289144,5
+131739660,26289144,4
+17881602,26289144,5
+ahino,26289144,5
+for_y,26289144,3
+53392346,26289144,5
+echocapricon,26289144,5
+130477688,26289144,5
+65354608,26289144,5
+90753569,26289144,3
+69925439,26289144,-1
+53134025,26289144,4
+4563712,26289144,2
+30181678,26289144,3
+48910590,26289144,3
+iManimal,26289144,4
+evastone,26289144,3
+131527494,26289144,4
+76237477,26289144,5
+90972400,26289144,3
+60079071,26289144,4
+46655913,26289144,4
+moshushinihao,26289144,4
+lbridge,26289144,1
+4538460,26289144,4
+4538460,26289144,4
+babyflower1990,26289144,3
+71809535,26289144,-1
+124401468,26289144,4
+129169061,26289144,3
+fuckyeahdelia,26289144,5
+donizuka,26289144,3
+Waruru,26289144,4
+3493096,26289144,4
+llliilliilll,26289144,3
+61111034,26289144,5
+17903773,26289144,3
+dorothyzhang,26289144,5
+wangdale,26289144,4
+65663758,26289144,4
+120828757,26289144,5
+stoneshen,26289144,5
+135073358,26289144,3
+38825748,26289144,3
+litian19890502,26289144,4
+fabulousczj,26289144,-1
+2425302,26289144,4
+skycrystal,26289144,-1
+52898679,26289144,2
+42093808,26289144,4
+71467682,26289144,5
+42836191,26289144,3
+104517766,26289144,3
+54684201,26289144,5
+Angela921117,26289144,4
+icara,26289144,-1
+90787314,26289144,4
+2849990,26289144,3
+34892434,26289144,4
+missing7V,26289144,3
+42279146,26289144,5
+58710906,26289144,4
+yigeguniang,26289144,3
+disney9,26289144,4
+58723573,26289144,3
+58723573,26289144,3
+97802607,26289144,3
+51020341,26289144,5
+49288075,26289144,5
+93471611,26289144,4
+63233265,26289144,5
+58352034,26289144,4
+kittielisa,26289144,3
+ch2tong,26289144,5
+134275392,26289144,4
+3318847,26289144,4
+60076572,26289144,3
+103601647,26289144,5
+49248736,26289144,4
+66489303,26289144,5
+124415659,26289144,4
+129145867,26289144,4
+44713810,26289144,5
+josephcat,26289144,4
+134541627,26289144,4
+134541627,26289144,4
+61863665,26289144,4
+54706509,26289144,4
+77434968,26289144,4
+2561474,26289144,4
+91458179,26289144,3
+73016853,26289144,4
+132155135,26289144,3
+57725542,26289144,3
+59082297,26289144,5
+77799876,26289144,5
+cherryade,26289144,3
+boringsly,26289144,5
+Miss-intoheart,26289144,-1
+119301457,26289144,5
+67692167,26289144,-1
+135298874,26289144,4
+leonx818,26289144,3
+yeeeeeee,26289144,3
+shero0305,26289144,4
+128855763,26289144,4
+1174148,26289144,-1
+41891982,26289144,4
+LY_0,26289144,3
+52169768,26289144,3
+85384710,26289144,5
+23260274,26289144,4
+kana_21,26289144,-1
+96744890,26289144,4
+LNCYZM,26289144,-1
+kee163,26289144,-1
+casanova_11,26289144,-1
+66314549,26289144,4
+andreajoseph,26289144,3
+xxjamy,26289144,-1
+cabrite,26289144,5
+80993583,26289144,3
+82928298,26289144,4
+60855466,26289144,3
+43801354,26289144,5
+amibubai,26289144,5
+103045577,26289144,4
+49684834,26289144,4
+falerxyf,26289144,-1
+46845274,26289144,4
+82980188,26289144,3
+61462956,26289144,4
+77199851,26289144,3
+108753844,26289144,5
+chaocai,26289144,2
+73741678,26289144,4
+43222334,26289144,4
+shili7,26289144,4
+85345440,26289144,4
+lollipop_yogo,26289144,5
+116273034,26289144,5
+62875538,26289144,5
+2212972,26289144,5
+54339174,26289144,3
+30486993,26289144,3
+3855232,26289144,2
+51907207,26289144,4
+bjoneday,26289144,4
+3878634,26289144,5
+47319867,26289144,5
+chitb,26289144,3
+91163114,26289144,5
+SpancerM,26289144,4
+65224437,26289144,3
+73828343,26289144,4
+121481681,26289144,5
+gzgaoyuan,26289144,5
+hah,26289144,5
+stone-ron,26289144,3
+everfreeneciel,26289144,4
+mandy087,26289144,-1
+74145867,26289144,4
+psynonder,26289144,4
+63411334,26289144,4
+125116163,26289144,5
+132039953,26289144,5
+47927026,26289144,-1
+46883062,26289144,4
+127950752,26289144,4
+yaoszoo,26289144,5
+45828294,26289144,5
+121581167,26289144,4
+61485916,26289144,5
+68978681,26289144,4
+97057870,26289144,3
+48188874,26289144,4
+46346298,26289144,5
+tin0101,26289144,4
+Nebulium,26289144,3
+1766794,26289144,3
+phoebe0225,26289144,5
+69723554,26289144,3
+133986166,26289144,4
+122136126,26289144,3
+cidishenhao,26289144,4
+2618753,26289144,4
+50890852,26289144,4
+52933532,26289144,4
+3564797,26289144,4
+Taco_0511,26289144,4
+xxxholic99,26289144,-1
+Davy.L,26289144,4
+51938291,26289144,3
+lonelysin,26289144,3
+114734029,26289144,4
+68835500,26289144,3
+58632263,26289144,2
+47093146,26289144,4
+43730319,26289144,2
+57860967,26289144,4
+56154241,26289144,1
+130655371,26289144,5
+82520594,26289144,3
+68971338,26289144,4
+65044285,26289144,4
+mysheepy,26289144,3
+130541613,26289144,4
+121937876,26289144,4
+62476511,26289144,3
+121154422,26289144,3
+81058279,26289144,4
+42458136,26289144,5
+ILFMFOREVER,26289144,5
+SeLuSun,26289144,4
+22997328,26289144,5
+131268122,26289144,4
+120913568,26289144,5
+70194363,26289144,4
+Tangss,26289144,-1
+40853957,26289144,3
+123078594,26289144,5
+37421763,26289144,5
+49761291,26289144,2
+hayleyzhang,26289144,2
+39002723,26289144,4
+39054352,26289144,3
+1821067,26289144,4
+bankeed,26289144,4
+Tiki_,26289144,5
+tohebe,26289144,4
+fanyamin,26289144,3
+98344279,26289144,3
+xiaoming_926,26289144,5
+81985285,26289144,5
+84569301,26289144,4
+caicaisweat,26289144,4
+67049936,26289144,5
+imashley,26289144,3
+77422806,26289144,4
+135124660,26289144,2
+127072469,26289144,5
+62069375,26289144,4
+113189041,26289144,5
+132766845,26289144,4
+3943602,26289144,4
+3943602,26289144,4
+mi-hang,26289144,5
+89407486,26289144,5
+53738178,26289144,4
+50770418,26289144,3
+2030775,26289144,3
+3551487,26289144,3
+starrynite,26289144,5
+73834387,26289144,4
+nebgnahz,26289144,5
+92537918,26289144,3
+chen69,26289144,4
+ziyuyouyou,26289144,4
+DennisZz9,26289144,4
+104605800,26289144,4
+135042340,26289144,4
+132058883,26289144,3
+80317889,26289144,4
+39298451,26289144,2
+84975793,26289144,4
+134463446,26289144,5
+yangshu1991,26289144,3
+91217287,26289144,3
+41502913,26289144,4
+71023450,26289144,2
+49837587,26289144,4
+120565312,26289144,4
+68865519,26289144,4
+87547812,26289144,4
+52555096,26289144,3
+qiyuemuxu,26289144,1
+48121857,26289144,1
+wmywbyt,26289144,4
+Emily0803,26289144,4
+57149541,26289144,3
+128614946,26289144,4
+panyin,26289144,4
+107369167,26289144,4
+124953231,26289144,4
+zhuxiansheng,26289144,3
+41440625,26289144,3
+90853351,26289144,5
+3285194,26289144,4
+Wjx1213,26289144,3
+46431535,26289144,4
+7934750,26289144,5
+130617817,26289144,3
+ningjing0215,26289144,4
+zzzhy,26289144,4
+80314628,26289144,4
+77271991,26289144,-1
+85337730,26289144,5
+126220956,26289144,4
+120948748,26289144,5
+alianhei,26289144,3
+97969822,26289144,4
+2413203,26289144,4
+3590759,26289144,3
+55292150,26289144,4
+64694278,26289144,4
+69003402,26289144,3
+perrinc,26289144,3
+ringoo,26289144,4
+Dallowave,26289144,4
+fayezhang,26289144,4
+103670975,26289144,5
+63160721,26289144,4
+3044565,26289144,3
+4555430,26289144,4
+79696326,26289144,3
+39019803,26289144,3
+134983577,26289144,4
+wucai663,26289144,5
+1275109,26289144,3
+43126900,26289144,4
+72786209,26289144,2
+61246130,26289144,5
+lufeiya,26289144,5
+zoro_sanji,26289144,4
+4390470,26289144,4
+130289224,26289144,5
+70530619,26289144,4
+102996784,26289144,3
+sunalsorise,26289144,-1
+8126956,26289144,5
+evilecho,26289144,5
+juyi214,26289144,3
+134961095,26289144,3
+4015513,26289144,4
+3770076,26289144,4
+acseleon,26289144,4
+miyaoyao,26289144,4
+methuselah,26289144,-1
+1985403,26289144,4
+52918154,26289144,3
+tony.w,26289144,5
+sunyu_5499,26289144,3
+exoduslove,26289144,4
+63526173,26289144,4
+sue-ang,26289144,4
+2340744,26289144,5
+52906969,26289144,3
+130461977,26289144,4
+60336114,26289144,-1
+showerfly,26289144,4
+134862244,26289144,4
+sherry_zeng,26289144,3
+49133007,26289144,5
+65025438,26289144,4
+83449630,26289144,4
+134339414,26289144,3
+2180309,26289144,5
+51288517,26289144,4
+72983569,26289144,4
+pinkopink,26289144,2
+39073328,26289144,4
+1624071,26289144,3
+32561363,26289144,4
+132592815,26289144,3
+71175276,26289144,5
+37278837,26289144,3
+3768837,26289144,4
+salmonnn,26289144,4
+124075898,26289144,4
+66193299,26289144,4
+82361798,26289144,5
+19905151,26289144,3
+43600394,26289144,5
+smilewsy,26289144,5
+53844411,26289144,5
+52694716,26289144,5
+YvonneYoung,26289144,4
+78944211,26289144,5
+42998893,26289144,3
+linyuyuan,26289144,4
+52851561,26289144,3
+134519801,26289144,3
+81835265,26289144,3
+54221036,26289144,3
+71093640,26289144,3
+58785321,26289144,4
+59220796,26289144,5
+53813321,26289144,5
+57354478,26289144,4
+85359311,26289144,3
+monkeycupl,26289144,5
+58320000,26289144,5
+126994808,26289144,4
+69121798,26289144,4
+cleverfool,26289144,4
+45894116,26289144,3
+yt1215,26289144,3
+shenxueying,26289144,5
+61247946,26289144,5
+134180658,26289144,3
+amberxie,26289144,3
+104884768,26289144,4
+princessfrog,26289144,4
+skyearthone,26289144,3
+48526434,26289144,4
+deepdesire,26289144,3
+rachelleebox,26289144,3
+134537950,26289144,5
+zihuihui,26289144,5
+anaru,26289144,-1
+74606368,26289144,4
+79758590,26289144,3
+48000477,26289144,5
+33988336,26289144,4
+wingwing2011,26289144,4
+127014101,26289144,5
+66995930,26289144,5
+yilanyilan,26289144,4
+119997789,26289144,3
+68899668,26289144,4
+s4suai,26289144,3
+49367100,26289144,2
+97243569,26289144,3
+sis-24sec,26289144,4
+59944601,26289144,3
+59944601,26289144,3
+74823280,26289144,4
+vicky_talk,26289144,5
+56823011,26289144,3
+suliu,26289144,5
+66856760,26289144,5
+121064013,26289144,3
+paranoid...,26289144,3
+26959254,26289144,3
+hd876066657,26289144,-1
+121930638,26289144,4
+louis38,26289144,3
+90543489,26289144,4
+lubyson,26289144,4
+73315824,26289144,4
+33580503,26289144,3
+87469999,26289144,4
+yuzhimixi,26289144,3
+jinyuelibra,26289144,3
+2601089,26289144,4
+63981568,26289144,5
+1884591,26289144,3
+yummybrooke,26289144,5
+38744988,26289144,5
+41710578,26289144,1
+libinghe,26289144,5
+37497401,26289144,5
+zechewang007,26289144,3
+ZnCore,26289144,4
+buzaijide,26289144,4
+65808284,26289144,4
+60322828,26289144,5
+63650448,26289144,5
+53888176,26289144,4
+summerlater,26289144,4
+18274942,26289144,4
+49820535,26289144,5
+65744500,26289144,5
+piggy3399,26289144,2
+122508583,26289144,4
+4018918,26289144,4
+129087565,26289144,3
+61263474,26289144,5
+121340954,26289144,4
+27744141,26289144,4
+119330188,26289144,3
+misswatermelon,26289144,1
+duanxiu,26289144,5
+lovinggarfield,26289144,3
+57877709,26289144,4
+132320734,26289144,4
+1626912,26289144,2
+54164106,26289144,4
+53206296,26289144,4
+52769539,26289144,4
+59967519,26289144,-1
+47053093,26289144,4
+tinaq,26289144,3
+88374719,26289144,3
+puddingmoe,26289144,3
+43372236,26289144,3
+128037527,26289144,4
+clairekk,26289144,5
+15098138,26289144,5
+58670685,26289144,3
+bonniecheung926,26289144,3
+xiaobao7,26289144,3
+34243799,26289144,3
+even,26289144,4
+80167368,26289144,4
+im-w-yt,26289144,1
+1818512,26289144,4
+44777109,26289144,3
+41536342,26289144,5
+134807455,26289144,3
+46847393,26289144,4
+59745943,26289144,5
+34674400,26289144,3
+56682982,26289144,5
+pilinono,26289144,5
+129015324,26289144,5
+sisiwang,26289144,4
+56004220,26289144,5
+45030880,26289144,4
+72040927,26289144,5
+31713107,26289144,5
+45698347,26289144,5
+2199302,26289144,3
+M.kiku,26289144,3
+halfyoyo,26289144,3
+illusion1125,26289144,3
+70698244,26289144,4
+35063229,26289144,4
+skay,26289144,4
+48114475,26289144,4
+liuye1202,26289144,5
+17180865,26289144,5
+58090967,26289144,3
+85245609,26289144,3
+3476645,26289144,3
+RingS915,26289144,3
+yvette820,26289144,1
+49983197,26289144,5
+41290543,26289144,5
+70862960,26289144,4
+46243415,26289144,2
+Day111,26289144,3
+thoris,26289144,3
+57846858,26289144,4
+3701919,26289144,5
+flydreamer,26289144,3
+eyrehuang,26289144,4
+65067660,26289144,5
+55890752,26289144,5
+134500343,26289144,4
+64086111,26289144,4
+49623295,26289144,3
+52978874,26289144,4
+misspj,26289144,3
+87971449,26289144,3
+87971449,26289144,3
+51694672,26289144,4
+99833662,26289144,4
+89639091,26289144,5
+aliclaire,26289144,5
+teddy21,26289144,5
+63230167,26289144,5
+70300622,26289144,4
+ee0407,26289144,4
+4323147,26289144,-1
+cxycxy19930520,26289144,5
+126980247,26289144,4
+4352057,26289144,4
+36794017,26289144,5
+58034308,26289144,2
+61376673,26289144,4
+tanelyu,26289144,5
+kovivida,26289144,5
+101450152,26289144,5
+yljoy5159,26289144,4
+54066175,26289144,4
+11658942,26289144,4
+68019993,26289144,4
+64787437,26289144,4
+70670266,26289144,4
+48407855,26289144,4
+52596376,26289144,4
+64569913,26289144,4
+51402290,26289144,5
+guiye,26289144,2
+120700061,26289144,5
+44865600,26289144,5
+82847924,26289144,5
+67182027,26289144,3
+120467468,26289144,4
+2202052,26289144,4
+finalcab,26289144,5
+70571885,26289144,5
+tuzinike,26289144,1
+37917730,26289144,4
+fanzero,26289144,5
+50009835,26289144,3
+91935314,26289144,3
+57580353,26289144,4
+92318310,26289144,4
+9255264,26289144,4
+momojq,26289144,5
+oct6th,26289144,3
+51563212,26289144,3
+124621410,26289144,5
+yubingqiangwei,26289144,5
+Stephanie-Lee,26289144,4
+DUOSI,26289144,4
+jiajia1130,26289144,3
+43767898,26289144,4
+hou_yuting,26289144,-1
+133511683,26289144,3
+134586200,26289144,4
+Suyan.,26289144,4
+2019155,26289144,3
+60650344,26289144,5
+easyLyc,26289144,4
+km961228,26289144,4
+76295338,26289144,3
+51992445,26289144,4
+3672716,26289144,5
+60095714,26289144,4
+69856173,26289144,3
+81444301,26289144,4
+71820210,26289144,3
+76999200,26289144,-1
+50837476,26289144,4
+pplanet,26289144,4
+134702987,26289144,4
+spunk91,26289144,4
+45504245,26289144,5
+120291280,26289144,4
+71663582,26289144,4
+xiongguagua,26289144,3
+1457618,26289144,4
+mignon0515,26289144,4
+130566544,26289144,4
+roundtuan,26289144,4
+mofeike,26289144,3
+tearabbit,26289144,4
+85931860,26289144,5
+jizunluosang,26289144,3
+4478283,26289144,4
+solance,26289144,-1
+54300451,26289144,4
+53261530,26289144,4
+55351150,26289144,4
+78731933,26289144,4
+96152194,26289144,5
+133946532,26289144,4
+39791533,26289144,3
+132678799,26289144,-1
+sinfulwolf,26289144,5
+45799570,26289144,3
+114435379,26289144,4
+104531394,26289144,5
+66620661,26289144,3
+jinyatou,26289144,3
+54977106,26289144,2
+115190020,26289144,4
+61042086,26289144,4
+134630891,26289144,5
+134493698,26289144,4
+130697382,26289144,5
+50851987,26289144,1
+lopsided,26289144,3
+134532187,26289144,3
+55785418,26289144,4
+58039330,26289144,4
+59916348,26289144,4
+134494053,26289144,4
+Javian,26289144,3
+beilei1990,26289144,4
+117018256,26289144,1
+fox518,26289144,4
+eloise0114,26289144,3
+unaunaquantro,26289144,3
+43219152,26289144,4
+48884000,26289144,5
+133439975,26289144,4
+theflyingjamie,26289144,4
+45490376,26289144,4
+yoanayy,26289144,5
+134648339,26289144,4
+56535276,26289144,4
+feifei-Q,26289144,5
+47027043,26289144,5
+58928033,26289144,4
+134502044,26289144,3
+LincolnSixEcho,26289144,3
+61184134,26289144,2
+120187474,26289144,4
+121607525,26289144,5
+64382868,26289144,3
+3592091,26289144,4
+2312132,26289144,4
+andynihan,26289144,5
+120955323,26289144,1
+young8789,26289144,-1
+3891615,26289144,4
+122275044,26289144,5
+98755020,26289144,4
+131755817,26289144,5
+26273355,26289144,5
+85250768,26289144,4
+early_birds,26289144,3
+129161849,26289144,4
+62377440,26289144,3
+134502554,26289144,3
+119267623,26289144,4
+53534566,26289144,4
+snug,26289144,4
+lls17,26289144,4
+132714507,26289144,5
+elena-ye,26289144,4
+elena-ye,26289144,4
+iknowzxc,26289144,3
+44249721,26289144,4
+48049896,26289144,4
+63901106,26289144,3
+che_yan,26289144,5
+48654184,26289144,4
+65303456,26289144,4
+tenderhearted,26289144,4
+radia,26289144,5
+68684062,26289144,5
+mayln_,26289144,3
+65137167,26289144,4
+78066826,26289144,5
+41740929,26289144,4
+findingfinding,26289144,3
+yigedejia,26289144,3
+2717959,26289144,3
+60983088,26289144,2
+Jayin,26289144,3
+123710346,26289144,5
+44643515,26289144,3
+60043536,26289144,3
+cocacolacat,26289144,4
+111416364,26289144,3
+raindawn,26289144,5
+92337255,26289144,4
+70022132,26289144,5
+46920813,26289144,3
+80010727,26289144,5
+132021910,26289144,5
+hope-fate,26289144,5
+64414294,26289144,3
+holy-shit,26289144,3
+Ruty1985,26289144,4
+121434286,26289144,4
+48710624,26289144,3
+carpe_diem723,26289144,4
+121545000,26289144,4
+34543110,26289144,4
+PatrickK2A,26289144,5
+47656138,26289144,5
+95342876,26289144,4
+134600773,26289144,5
+126749714,26289144,3
+36582145,26289144,3
+72576116,26289144,4
+cindyyueyue,26289144,4
+67478623,26289144,3
+134529720,26289144,3
+41397677,26289144,2
+cuiyin030812,26289144,3
+1867062,26289144,3
+55941904,26289144,3
+126785151,26289144,4
+130540529,26289144,3
+39200780,26289144,2
+122258109,26289144,3
+121913128,26289144,5
+85064698,26289144,4
+62506001,26289144,3
+4705983,26289144,3
+69170430,26289144,4
+3101776,26289144,4
+zhanglongze,26289144,4
+4278092,26289144,5
+76613620,26289144,3
+4556124,26289144,5
+57104738,26289144,3
+134382636,26289144,4
+50624939,26289144,5
+74309480,26289144,4
+134522325,26289144,3
+104249534,26289144,4
+13856427,26289144,4
+66848309,26289144,3
+xiyt8911,26289144,4
+132830115,26289144,4
+134513839,26289144,3
+58418894,26289144,4
+134562390,26289144,5
+67494005,26289144,2
+39077146,26289144,4
+sevendbly,26289144,3
+55563536,26289144,4
+17692675,26289144,4
+shadowfoxxuan,26289144,2
+60132042,26289144,3
+104475176,26289144,5
+yokotang,26289144,3
+2771217,26289144,4
+wangshaoda,26289144,4
+Freedomautumn,26289144,4
+134488722,26289144,3
+134498765,26289144,3
+sinceY,26289144,4
+122232460,26289144,5
+bonbont,26289144,3
+129848550,26289144,5
+55273592,26289144,4
+sail308,26289144,-1
+Miliyah0101,26289144,4
+91180216,26289144,4
+52080305,26289144,5
+samuel_liu,26289144,5
+lemoncan,26289144,4
+kidchan,26289144,4
+cloverwish,26289144,3
+110392919,26289144,4
+25514105,26289144,-1
+48386140,26289144,3
+131882002,26289144,4
+91825059,26289144,4
+122124788,26289144,5
+blossombao,26289144,4
+60006301,26289144,5
+74325789,26289144,4
+sakura7788,26289144,3
+14260607,26289144,4
+81592044,26289144,4
+55332125,26289144,3
+spf,26289144,3
+58369895,26289144,3
+68027461,26289144,4
+libihui,26289144,5
+1605613,26289144,4
+63768527,26289144,4
+122039396,26289144,4
+41242591,26289144,5
+84297602,26289144,5
+50861713,26289144,4
+51283005,26289144,5
+114680384,26289144,5
+62658973,26289144,4
+49829476,26289144,4
+131917894,26289144,4
+3256263,26289144,4
+58171023,26289144,4
+49266057,26289144,4
+84775041,26289144,4
+50414826,26289144,4
+1516140,26289144,5
+130952703,26289144,4
+130273023,26289144,3
+IvyGiggs,26289144,3
+67220317,26289144,5
+59361957,26289144,3
+84010010,26289144,4
+82164817,26289144,3
+101820045,26289144,3
+40273043,26289144,5
+58004310,26289144,4
+19566657,26289144,5
+61209876,26289144,5
+58103188,26289144,4
+36671910,26289144,3
+93197518,26289144,4
+56872191,26289144,4
+56097817,26289144,5
+52852194,26289144,4
+1222692,26289144,4
+49866554,26289144,4
+134528559,26289144,5
+wednesday.coffe,26289144,4
+ice41322,26289144,3
+manbujx,26289144,5
+36638272,26289144,1
+LChnage,26289144,5
+4714593,26289144,3
+smilediva,26289144,4
+yaoxuan,26289144,5
+40027917,26289144,3
+62766658,26289144,4
+penjing1026,26289144,4
+nineno,26289144,4
+132526070,26289144,2
+MonteVita,26289144,3
+jxyyy,26289144,5
+satiie,26289144,4
+66219582,26289144,4
+46261300,26289144,4
+zhongxiran,26289144,-1
+72362453,26289144,5
+yulebecky,26289144,5
+51136492,26289144,5
+68610149,26289144,3
+54366340,26289144,3
+34706621,26289144,3
+90430000,26289144,4
+63095049,26289144,2
+52051860,26289144,4
+134507096,26289144,4
+44003548,26289144,3
+78277982,26289144,5
+59428826,26289144,4
+60337804,26289144,4
+134156437,26289144,4
+57818795,26289144,2
+MLMLMLMLML,26289144,3
+73034014,26289144,5
+75605625,26289144,5
+52610142,26289144,4
+122188922,26289144,5
+52247156,26289144,3
+lick647,26289144,4
+4278296,26289144,4
+isabelliu,26289144,4
+muchacha,26289144,1
+54430554,26289144,4
+121959506,26289144,4
+xxshen,26289144,4
+18984732,26289144,3
+71276414,26289144,5
+61613642,26289144,3
+33942554,26289144,3
+springing,26289144,4
+zaohe,26289144,5
+lovekuaihua,26289144,4
+loveljfoever,26289144,5
+58840542,26289144,2
+54833034,26289144,3
+xlj741015,26289144,4
+dreamsun,26289144,4
+yixindedengdai,26289144,4
+76870671,26289144,5
+peter.dai,26289144,4
+134137352,26289144,5
+dearnikki,26289144,5
+lovets,26289144,3
+77288583,26289144,4
+3496801,26289144,3
+Crystal_Fong,26289144,4
+129453126,26289144,4
+32028224,26289144,5
+minnierai,26289144,3
+60591590,26289144,5
+44782369,26289144,4
+countcrows,26289144,2
+4501544,26289144,3
+133755742,26289144,3
+133755742,26289144,3
+pennynuan,26289144,4
+133475193,26289144,4
+107982589,26289144,4
+65433175,26289144,4
+mushroom2011,26289144,5
+72472207,26289144,3
+92091309,26289144,3
+3513677,26289144,-1
+randomforever,26289144,3
+Maybo-Chang,26289144,3
+4015969,26289144,5
+xiaoruimm,26289144,5
+55899001,26289144,4
+1375311,26289144,3
+36469927,26289144,4
+55631071,26289144,5
+52064559,26289144,3
+69529988,26289144,4
+67153114,26289144,5
+64952105,26289144,5
+4527907,26289144,4
+khalilfongmlg,26289144,5
+qiqi0912,26289144,5
+68918230,26289144,3
+126783800,26289144,4
+76845249,26289144,5
+4210942,26289144,3
+Shimpear,26289144,3
+47047008,26289144,4
+zabazaba,26289144,5
+125959627,26289144,5
+84192896,26289144,3
+51249415,26289144,4
+Xiongying315,26289144,3
+122084571,26289144,5
+44678358,26289144,3
+xzw1407,26289144,3
+jenasy,26289144,4
+gianostalgia,26289144,3
+47194139,26289144,4
+xuningcatherine,26289144,5
+mrchengz,26289144,5
+paperboat,26289144,-1
+37852965,26289144,4
+summerx,26289144,3
+beanbag,26289144,4
+71316784,26289144,5
+tor23,26289144,2
+laixiaccc,26289144,2
+41462661,26289144,5
+66545348,26289144,5
+behindtheveil,26289144,4
+4166635,26289144,4
+winna91,26289144,3
+74230834,26289144,3
+kidd1412,26289144,5
+yaoliu,26289144,4
+51016354,26289144,5
+56237172,26289144,-1
+52144889,26289144,4
+1328599,26289144,3
+75509335,26289144,4
+yingyan1231,26289144,4
+JANETZHENG,26289144,5
+62248066,26289144,5
+84342168,26289144,5
+51504042,26289144,4
+42270904,26289144,3
+micmoo,26289144,4
+71697872,26289144,3
+door9,26289144,5
+48031310,26289144,4
+gdweton,26289144,4
+48236459,26289144,4
+xishy,26289144,3
+yayatianrandai,26289144,4
+56458916,26289144,2
+87065049,26289144,5
+1456492,26289144,-1
+68166546,26289144,3
+38718376,26289144,3
+130391371,26289144,3
+elegantcrazer,26289144,2
+oceanleesummer,26289144,4
+Vivianabout,26289144,5
+121433358,26289144,5
+54475580,26289144,4
+42172837,26289144,4
+43398593,26289144,5
+49363697,26289144,-1
+johnqz874,26289144,5
+59290404,26289144,3
+34005309,26289144,-1
+75298987,26289144,4
+stacey3gg,26289144,4
+ruoxudeng,26289144,4
+83853096,26289144,4
+52093514,26289144,4
+50587587,26289144,4
+g-six,26289144,4
+83779485,26289144,5
+beancatty,26289144,4
+101804061,26289144,4
+119110863,26289144,4
+33275779,26289144,4
+48623743,26289144,3
+sacular,26289144,4
+25970354,26289144,4
+100991294,26289144,2
+Eros0922,26289144,2
+63226691,26289144,3
+SpenceAguilar,26289144,3
+65850985,26289144,4
+57972218,26289144,4
+chillychan,26289144,2
+38803170,26289144,4
+57092209,26289144,2
+64096688,26289144,4
+43440527,26289144,4
+61228697,26289144,4
+mabysomebody,26289144,4
+59797749,26289144,4
+60818936,26289144,5
+120379485,26289144,3
+60655749,26289144,4
+41250945,26289144,3
+22420408,26289144,5
+4564418,26289144,3
+mmdandan,26289144,5
+66855619,26289144,4
+landy0514,26289144,4
+3523318,26289144,5
+56493831,26289144,3
+10268879,26289144,4
+xiiiiiiian,26289144,5
+75272669,26289144,5
+116536770,26289144,4
+50459857,26289144,4
+69067944,26289144,3
+58085927,26289144,4
+jiongreborn,26289144,4
+taotao0510,26289144,3
+summer9186,26289144,3
+kakaandkamen,26289144,3
+36664214,26289144,5
+120244834,26289144,4
+43574449,26289144,4
+129716579,26289144,4
+59280897,26289144,5
+tiramisu-1990,26289144,4
+129783136,26289144,4
+3484897,26289144,5
+96392036,26289144,4
+126168366,26289144,4
+67435615,26289144,5
+61162296,26289144,-1
+52103289,26289144,4
+41967985,26289144,5
+yueryu,26289144,4
+wavelpc,26289144,4
+benmak,26289144,4
+123546456,26289144,4
+stilllyness,26289144,4
+85480026,26289144,3
+logicmd,26289144,3
+cecaazhang,26289144,3
+46305822,26289144,5
+4445294,26289144,3
+tuziguaiguai118,26289144,4
+50224943,26289144,5
+jingknight,26289144,4
+70094424,26289144,5
+1522607,26289144,2
+2618181,26289144,5
+velmafei,26289144,3
+suntina,26289144,5
+52994517,26289144,4
+36236385,26289144,3
+91687057,26289144,3
+45637706,26289144,5
+4626587,26289144,4
+46444782,26289144,4
+47618855,26289144,-1
+134369987,26289144,5
+tokasa,26289144,3
+46436848,26289144,4
+91304159,26289144,3
+34348516,26289144,3
+132596654,26289144,5
+66473759,26289144,5
+49763880,26289144,3
+1348620,26289144,3
+sakiring,26289144,3
+kairyu,26289144,3
+44122696,26289144,4
+46499372,26289144,3
+Misscat145,26289144,4
+iam7,26289144,3
+63119058,26289144,3
+41825202,26289144,5
+46334603,26289144,3
+2910534,26289144,3
+3617286,26289144,5
+49371024,26289144,3
+2280118,26289144,4
+2009298,26289144,4
+129224814,26289144,4
+46788807,26289144,4
+40241060,26289144,4
+1694135,26289144,4
+artemisfaith,26289144,4
+verain,26289144,4
+46890032,26289144,5
+Greta207,26289144,3
+zhuoshang,26289144,4
+34823550,26289144,3
+53692996,26289144,5
+66749502,26289144,4
+2741490,26289144,3
+This_Is_Nobody,26289144,-1
+weilanxinyu,26289144,4
+89308667,26289144,4
+MilkyWayH,26289144,3
+66878450,26289144,4
+2765900,26289144,4
+51117657,26289144,3
+53230906,26289144,3
+68878726,26289144,4
+auhizey,26289144,4
+2618043,26289144,4
+65540792,26289144,4
+caicai1005,26289144,3
+SeanShepherd,26289144,3
+51202453,26289144,5
+70272999,26289144,5
+27085704,26289144,3
+64012873,26289144,3
+aizuomengderen,26289144,4
+53646130,26289144,5
+kazuyakiki,26289144,4
+anisezww,26289144,4
+buzengbujian,26289144,4
+92871854,26289144,3
+53583275,26289144,3
+abbeyliang,26289144,4
+35015558,26289144,5
+pengyn,26289144,5
+zhangweishi,26289144,2
+3534837,26289144,3
+Lysander,26289144,4
+1083198,26289144,4
+50180662,26289144,4
+mogu_,26289144,4
+54694186,26289144,4
+79463024,26289144,5
+43829769,26289144,5
+58015342,26289144,3
+anison,26289144,3
+wangxiaobei89,26289144,3
+48603851,26289144,3
+69773745,26289144,4
+38863592,26289144,4
+54780204,26289144,4
+41711540,26289144,5
+oisa,26289144,5
+dan1103,26289144,3
+48224071,26289144,3
+56556616,26289144,5
+53888621,26289144,5
+ourkid,26289144,3
+97263262,26289144,3
+33973764,26289144,4
+63414303,26289144,3
+xjrwjh,26289144,4
+bloodykiss,26289144,3
+2514634,26289144,4
+51810137,26289144,3
+50607886,26289144,5
+4715837,26289144,4
+4715837,26289144,4
+134342824,26289144,4
+82334721,26289144,-1
+121410902,26289144,5
+4534657,26289144,4
+daisyhuhu0929,26289144,3
+58467578,26289144,3
+cherry.cherry,26289144,4
+49353647,26289144,5
+52650072,26289144,4
+freshvege,26289144,4
+84158576,26289144,3
+46341793,26289144,4
+108289346,26289144,2
+119698382,26289144,4
+Jessie0513,26289144,4
+toda0607,26289144,4
+68027826,26289144,3
+42839977,26289144,4
+17111288,26289144,5
+iisakura,26289144,3
+48554964,26289144,3
+27938535,26289144,3
+45441570,26289144,4
+77574479,26289144,4
+47635352,26289144,3
+daya39,26289144,4
+39294617,26289144,3
+57944916,26289144,4
+likinglr,26289144,3
+114781822,26289144,4
+ysscoke,26289144,5
+VivianGoodchild,26289144,4
+33219854,26289144,5
+4421474,26289144,4
+qurtime,26289144,4
+sanshuicaosuwen,26289144,3
+skinnymonkey,26289144,4
+55635987,26289144,3
+alicerabbit,26289144,4
+43749189,26289144,5
+1187053,26289144,3
+129055218,26289144,1
+39152562,26289144,-1
+82911001,26289144,2
+77644996,26289144,3
+134327676,26289144,5
+89170724,26289144,5
+45077358,26289144,5
+53242545,26289144,3
+40388711,26289144,5
+129932040,26289144,4
+94556650,26289144,3
+102930164,26289144,3
+10020243,26289144,3
+45064973,26289144,5
+39268690,26289144,3
+42342433,26289144,5
+44608963,26289144,4
+xuanuxan,26289144,3
+48794350,26289144,5
+liong,26289144,4
+bidaobidaobi,26289144,5
+51783252,26289144,3
+77536605,26289144,5
+2150598,26289144,4
+132676591,26289144,3
+121010760,26289144,4
+89171131,26289144,3
+36863858,26289144,4
+4708598,26289144,-1
+shemayday,26289144,5
+55664253,26289144,3
+1853230,26289144,5
+72291192,26289144,4
+Jing_233,26289144,4
+dellama,26289144,4
+k5k,26289144,3
+yushan33,26289144,3
+MRJOKERRRR,26289144,3
+MRJOKERRRR,26289144,3
+73109328,26289144,1
+zcx1990,26289144,4
+99223990,26289144,4
+panyangdedouban,26289144,3
+88878838,26289144,5
+47503577,26289144,2
+1233109,26289144,4
+yanan928,26289144,4
+49184944,26289144,4
+71490548,26289144,5
+77308324,26289144,4
+imcaoli,26289144,5
+48472823,26289144,5
+74548439,26289144,4
+59480546,26289144,5
+55789789,26289144,4
+yanmomeng,26289144,5
+63849809,26289144,4
+sakurawei,26289144,3
+51764690,26289144,4
+3704071,26289144,3
+just-emma,26289144,3
+133136492,26289144,4
+46310030,26289144,-1
+49497563,26289144,4
+53271341,26289144,-1
+cfgenial,26289144,3
+chanbikyu,26289144,4
+hjl0312,26289144,4
+eiris,26289144,2
+Jun9529,26289144,4
+43396727,26289144,4
+53075931,26289144,2
+30219085,26289144,4
+3295210,26289144,4
+soffeeyang,26289144,4
+zeroflowing,26289144,5
+19863736,26289144,3
+53419926,26289144,4
+vivi-van,26289144,3
+bobbygd,26289144,5
+ibezz,26289144,4
+50926664,26289144,3
+35189092,26289144,4
+134298368,26289144,4
+71762747,26289144,5
+3482817,26289144,4
+46037661,26289144,4
+fengliguantou26,26289144,4
+47450335,26289144,5
+djliris,26289144,3
+4227340,26289144,5
+102866133,26289144,4
+62305326,26289144,2
+64574262,26289144,4
+2810109,26289144,3
+103122769,26289144,4
+48849498,26289144,4
+49614386,26289144,1
+134281979,26289144,2
+58216177,26289144,4
+65094670,26289144,4
+love.vivi,26289144,4
+48026430,26289144,5
+mono1886,26289144,4
+nanawu,26289144,4
+63530647,26289144,5
+46659356,26289144,2
+70202183,26289144,4
+82630962,26289144,5
+Rolin,26289144,3
+53936917,26289144,4
+61875054,26289144,3
+adoredmouse,26289144,3
+intion,26289144,-1
+Anastasia16,26289144,3
+50957337,26289144,3
+104956603,26289144,3
+handouxiansheng,26289144,5
+xiqi,26289144,4
+36474360,26289144,5
+62880392,26289144,2
+46712687,26289144,3
+3438238,26289144,4
+133846679,26289144,4
+2590120,26289144,2
+HAVIAL13WEI,26289144,4
+4630769,26289144,3
+45359667,26289144,4
+Liu_ya_wen,26289144,4
+zz169,26289144,3
+36341358,26289144,4
+cmandie,26289144,4
+Jurcy,26289144,5
+93442022,26289144,5
+55024644,26289144,4
+49937909,26289144,3
+41786402,26289144,4
+39022168,26289144,3
+80936991,26289144,4
+85445676,26289144,4
+12949814,26289144,4
+viola1990mm,26289144,3
+64710056,26289144,4
+64500822,26289144,3
+121942823,26289144,4
+phoebes,26289144,3
+65795089,26289144,4
+63874245,26289144,4
+127651937,26289144,5
+82289829,26289144,4
+114144115,26289144,5
+81651557,26289144,5
+75555205,26289144,3
+27852981,26289144,3
+Str,26289144,3
+130945059,26289144,3
+90465571,26289144,4
+hpcsoar,26289144,5
+hpcsoar,26289144,5
+49550156,26289144,2
+51381887,26289144,3
+37318198,26289144,3
+52939857,26289144,4
+77371681,26289144,4
+64794289,26289144,2
+79695986,26289144,3
+127291315,26289144,3
+47077015,26289144,4
+54664894,26289144,3
+ChangeQ,26289144,4
+125806599,26289144,3
+41263739,26289144,3
+iamkedakeda,26289144,3
+68076968,26289144,2
+54758477,26289144,4
+47282600,26289144,4
+55383324,26289144,4
+54782004,26289144,5
+1071065,26289144,4
+126081007,26289144,4
+yawenxu,26289144,4
+42196106,26289144,5
+45536118,26289144,5
+sulen,26289144,4
+nupid,26289144,5
+4325493,26289144,4
+62903092,26289144,5
+70413922,26289144,4
+1989077,26289144,3
+62452757,26289144,5
+1951501,26289144,4
+lhwithsummer,26289144,4
+68811161,26289144,5
+noguchi,26289144,4
+GLaArchitect,26289144,3
+53979926,26289144,4
+anniecool,26289144,5
+music-sun,26289144,3
+61739872,26289144,4
+Sub___,26289144,5
+134257829,26289144,4
+61882014,26289144,2
+40975110,26289144,3
+43886305,26289144,5
+3200842,26289144,4
+monononono,26289144,3
+linshang,26289144,5
+LevanaNS,26289144,4
+hellochensasa,26289144,2
+53615881,26289144,5
+61715175,26289144,2
+58889964,26289144,5
+108828727,26289144,3
+36840213,26289144,4
+90950399,26289144,3
+4059582,26289144,4
+50245903,26289144,3
+mengmenglanlan,26289144,3
+mengmenglanlan,26289144,3
+kimiyooo,26289144,-1
+Martashen,26289144,4
+yujialin,26289144,4
+2982307,26289144,4
+pennyw,26289144,4
+Dora_LD,26289144,4
+84019906,26289144,5
+37311123,26289144,4
+56488254,26289144,4
+joynee,26289144,3
+60053622,26289144,5
+CraziLaura,26289144,4
+46947216,26289144,1
+82594564,26289144,4
+30332673,26289144,4
+jumpinglove,26289144,5
+65242826,26289144,3
+70275791,26289144,5
+68073568,26289144,3
+73942722,26289144,3
+98762105,26289144,5
+123626080,26289144,5
+32715107,26289144,4
+92835955,26289144,3
+jessiesumer,26289144,3
+Kimshuaibing,26289144,3
+xw0525,26289144,4
+3346622,26289144,5
+kfc77,26289144,4
+lovelessmay,26289144,5
+Nia23,26289144,4
+63672355,26289144,5
+50233060,26289144,5
+54193079,26289144,4
+Jessicatime,26289144,3
+74819421,26289144,4
+52451495,26289144,3
+FinalVessel,26289144,4
+jennyxixi,26289144,5
+124596897,26289144,4
+48167722,26289144,4
+45279594,26289144,4
+juliazhuli,26289144,3
+51023914,26289144,4
+2650205,26289144,4
+kimizara,26289144,3
+62036162,26289144,4
+58078105,26289144,4
+52076370,26289144,5
+119831217,26289144,5
+40586247,26289144,4
+70177875,26289144,4
+37466270,26289144,4
+moshanghu,26289144,4
+Chne,26289144,4
+123593383,26289144,3
+121206161,26289144,5
+erin22,26289144,2
+41606354,26289144,4
+tokyo6621,26289144,3
+129051527,26289144,4
+4774491,26289144,5
+54209095,26289144,3
+81042721,26289144,3
+4594496,26289144,4
+AngelaDayday,26289144,4
+129548672,26289144,5
+81822817,26289144,3
+mahuahualai,26289144,3
+35886249,26289144,4
+76236179,26289144,3
+ssxl,26289144,4
+41283752,26289144,2
+133127167,26289144,4
+66989957,26289144,4
+101629689,26289144,4
+91842843,26289144,4
+69503565,26289144,5
+LiuS-7,26289144,4
+56796153,26289144,4
+53379801,26289144,4
+81143696,26289144,4
+yvonnezcl,26289144,3
+49946350,26289144,3
+42539278,26289144,3
+2877249,26289144,5
+53769414,26289144,5
+51557657,26289144,3
+56524713,26289144,5
+tianyue,26289144,5
+58588294,26289144,3
+70384890,26289144,4
+49002533,26289144,4
+4019398,26289144,4
+iysy,26289144,3
+134222368,26289144,5
+104549652,26289144,-1
+79748311,26289144,5
+54190011,26289144,5
+51196326,26289144,3
+62026063,26289144,4
+39047335,26289144,4
+shiro26,26289144,5
+daisywj,26289144,3
+69360968,26289144,5
+demon0414,26289144,5
+55983096,26289144,4
+47404227,26289144,4
+102254201,26289144,4
+49043874,26289144,5
+122384654,26289144,4
+cynicalness,26289144,4
+huamochu,26289144,4
+52174423,26289144,5
+48905575,26289144,3
+2158085,26289144,4
+62987657,26289144,4
+zhishouyuan,26289144,2
+Anzo_5,26289144,2
+Isabella0712,26289144,5
+4287880,26289144,3
+133011186,26289144,5
+Kateya,26289144,4
+kukupercent,26289144,5
+2576084,26289144,5
+multiple,26289144,4
+21331611,26289144,-1
+tianyingguniang,26289144,4
+3072272,26289144,4
+134063543,26289144,4
+75474977,26289144,4
+119404591,26289144,4
+133087571,26289144,4
+amandazmd,26289144,2
+61985343,26289144,5
+3107975,26289144,3
+weixiaoyi,26289144,5
+vane37,26289144,2
+cissyxuecc,26289144,5
+112718861,26289144,4
+62405118,26289144,3
+133968127,26289144,3
+54325857,26289144,3
+107481201,26289144,5
+122845155,26289144,4
+68728325,26289144,1
+51031885,26289144,4
+120683344,26289144,4
+babeblue,26289144,3
+2869651,26289144,-1
+ronaldinho29,26289144,1
+40241549,26289144,3
+68744286,26289144,5
+wanduohanfei,26289144,4
+2897322,26289144,3
+44555140,26289144,3
+4072052,26289144,4
+131545379,26289144,5
+piss-lips,26289144,-1
+76274839,26289144,4
+133027418,26289144,3
+67517855,26289144,1
+52283291,26289144,5
+132853715,26289144,4
+50736682,26289144,3
+73401827,26289144,5
+66833229,26289144,4
+suxiong,26289144,3
+it-fans,26289144,3
+worlddou,26289144,3
+butredm,26289144,4
+Free-cat,26289144,5
+lihenghui,26289144,4
+sjch,26289144,4
+41620486,26289144,4
+86116363,26289144,5
+christina614,26289144,4
+57090990,26289144,3
+40970313,26289144,3
+57090990,26289144,3
+40970313,26289144,3
+122453901,26289144,5
+bekgst,26289144,4
+52685737,26289144,4
+yuelai15,26289144,4
+sukey,26289144,3
+79108534,26289144,3
+Kevorkian,26289144,5
+maychendaxu,26289144,3
+lanhouzi,26289144,3
+39629387,26289144,4
+48636409,26289144,4
+csmr,26289144,5
+gibuse,26289144,3
+1334992,26289144,4
+office2009,26289144,5
+31942615,26289144,3
+3119464,26289144,4
+sb36560,26289144,4
+61816824,26289144,3
+10011120,26289144,3
+134193379,26289144,5
+83244854,26289144,4
+iadjani,26289144,4
+104777463,26289144,4
+1766764,26289144,3
+3851591,26289144,4
+49501055,26289144,4
+69855883,26289144,5
+28130069,26289144,4
+60834579,26289144,5
+35766890,26289144,-1
+36196484,26289144,4
+F7LOWER,26289144,5
+44892859,26289144,3
+134191128,26289144,4
+54602090,26289144,5
+120394498,26289144,4
+50802752,26289144,3
+50802752,26289144,3
+keishady,26289144,3
+65850343,26289144,3
+fanny0310,26289144,4
+huwenjia,26289144,5
+89796820,26289144,3
+luezhuan,26289144,3
+51862225,26289144,5
+130078634,26289144,5
+OpalMummy,26289144,4
+130633898,26289144,5
+smallove816,26289144,-1
+127917109,26289144,4
+49114944,26289144,5
+selinna730,26289144,4
+nnn1,26289144,5
+mary3049,26289144,3
+sssssstutter,26289144,4
+smell0113,26289144,4
+35569255,26289144,4
+65116292,26289144,4
+zykmilan,26289144,4
+3388290,26289144,4
+43026697,26289144,3
+hecaba,26289144,4
+47413468,26289144,4
+tangxg,26289144,4
+58670934,26289144,5
+septembele,26289144,3
+55945767,26289144,2
+67668770,26289144,3
+Echo1229,26289144,5
+33328138,26289144,5
+1160337,26289144,3
+130711821,26289144,-1
+42885898,26289144,3
+48525161,26289144,4
+amoryqq,26289144,3
+meitianniang,26289144,3
+59149801,26289144,5
+32566689,26289144,4
+32001555,26289144,3
+lvyejusy,26289144,4
+59967875,26289144,4
+53236485,26289144,5
+24791739,26289144,5
+tanktank,26289144,4
+37217090,26289144,4
+yjwhlc,26289144,4
+35407270,26289144,2
+wyjfl,26289144,3
+3919450,26289144,4
+83723800,26289144,4
+shiwuri,26289144,4
+70506259,26289144,3
+121934756,26289144,3
+MaggieFA,26289144,5
+100981322,26289144,3
+114685483,26289144,5
+80813290,26289144,5
+appeach,26289144,4
+71218944,26289144,5
+59137908,26289144,4
+63781183,26289144,4
+2583803,26289144,3
+65799206,26289144,5
+46149652,26289144,5
+2602040,26289144,4
+114670150,26289144,5
+53962357,26289144,-1
+danwen,26289144,1
+81551845,26289144,3
+53194674,26289144,4
+19789619,26289144,-1
+14669619,26289144,4
+omenjoy,26289144,4
+Tomokin,26289144,3
+46688085,26289144,3
+vivianlovesun,26289144,4
+89909266,26289144,4
+89909266,26289144,4
+48103122,26289144,5
+cultaste,26289144,2
+3395057,26289144,5
+51578168,26289144,3
+54067198,26289144,5
+61955471,26289144,3
+134163547,26289144,5
+62811071,26289144,5
+2543597,26289144,4
+eatonzh,26289144,4
+ssmustbelavas,26289144,4
+t2self,26289144,5
+60208186,26289144,3
+67416002,26289144,3
+133734548,26289144,4
+37398408,26289144,2
+herro58,26289144,4
+57471580,26289144,4
+41843480,26289144,5
+66475895,26289144,3
+94678422,26289144,4
+cc3ee,26289144,3
+46455848,26289144,3
+55680257,26289144,2
+63200786,26289144,4
+3617275,26289144,4
+62672359,26289144,5
+4622548,26289144,4
+56317353,26289144,1
+90687010,26289144,3
+ele30tin,26289144,3
+chan_chan,26289144,4
+35240042,26289144,4
+bulin,26289144,3
+52558781,26289144,-1
+13901089,26289144,4
+iris29,26289144,5
+130379639,26289144,4
+122930651,26289144,5
+122930651,26289144,5
+1552049,26289144,-1
+2175058,26289144,5
+2006622,26289144,5
+74771823,26289144,3
+75521175,26289144,3
+1586094,26289144,4
+54396753,26289144,4
+58772458,26289144,4
+39787684,26289144,4
+52508494,26289144,3
+60761601,26289144,4
+Pallas_Athena,26289144,3
+purestar,26289144,4
+76371350,26289144,3
+sea-lucky,26289144,4
+happuiness,26289144,4
+46431247,26289144,3
+131922389,26289144,3
+1711718,26289144,4
+85806214,26289144,4
+53255833,26289144,5
+58042507,26289144,5
+43904088,26289144,4
+perfect.c,26289144,3
+46351532,26289144,3
+FiveStrong,26289144,5
+CyanWong,26289144,5
+45383029,26289144,5
+42566970,26289144,5
+farawayfromhome,26289144,3
+sisyli51,26289144,3
+80817324,26289144,4
+38870289,26289144,4
+51479122,26289144,5
+43061790,26289144,4
+59540703,26289144,-1
+scmwangkai,26289144,-1
+stillmuchtolose,26289144,4
+55389424,26289144,3
+85981309,26289144,4
+56692780,26289144,4
+62402038,26289144,5
+3310969,26289144,5
+laceless,26289144,-1
+42272105,26289144,4
+48300701,26289144,4
+juzikeke,26289144,3
+TooYoungToosP,26289144,5
+131713125,26289144,3
+70096653,26289144,3
+sophie.sue,26289144,3
+80124028,26289144,4
+79161906,26289144,5
+chaosenvoy,26289144,5
+58110414,26289144,5
+105808556,26289144,4
+59105457,26289144,2
+72656578,26289144,4
+40611533,26289144,5
+43719217,26289144,3
+MOON_CHUNG,26289144,4
+wuxuanjing,26289144,4
+134148719,26289144,5
+43496561,26289144,4
+66825713,26289144,-1
+echomilk,26289144,4
+39158131,26289144,4
+87693385,26289144,4
+61539163,26289144,5
+log318,26289144,2
+51141512,26289144,5
+53685354,26289144,5
+jane_ZQ,26289144,5
+punkyoursoul,26289144,-1
+58236838,26289144,4
+106620783,26289144,4
+Aquarius_Girl,26289144,3
+43485356,26289144,3
+62600930,26289144,5
+131036184,26289144,5
+59102121,26289144,4
+ericleaf,26289144,5
+Chris.0126,26289144,5
+134145147,26289144,4
+121487671,26289144,4
+avivashuai,26289144,4
+81366312,26289144,4
+122696545,26289144,3
+xyk_fly_sky,26289144,4
+62386997,26289144,3
+lsg_lsg,26289144,3
+30899866,26289144,5
+caoxiyu,26289144,2
+yangDAyun,26289144,4
+sylcrannog,26289144,3
+84866154,26289144,5
+132098902,26289144,5
+3109438,26289144,3
+laowinglok,26289144,4
+4648608,26289144,3
+25798169,26289144,5
+56925135,26289144,5
+yukidelei,26289144,3
+51890472,26289144,3
+134141941,26289144,5
+49199327,26289144,2
+121372048,26289144,5
+4114869,26289144,5
+80578018,26289144,5
+63373186,26289144,5
+3728891,26289144,2
+larvae,26289144,5
+3944394,26289144,4
+azureallul,26289144,3
+131197260,26289144,5
+68262207,26289144,4
+elenadivita,26289144,4
+imsunfish,26289144,4
+67276689,26289144,4
+53792829,26289144,2
+asword,26289144,5
+45094926,26289144,3
+90618593,26289144,4
+2097784,26289144,4
+chede,26289144,3
+130004425,26289144,4
+134131182,26289144,5
+77195303,26289144,3
+CameraCheun,26289144,4
+GAJI,26289144,3
+3965428,26289144,4
+mi.even.live,26289144,5
+113422604,26289144,5
+56898241,26289144,4
+40238005,26289144,4
+65087122,26289144,3
+chevalier7,26289144,4
+53296277,26289144,3
+3128287,26289144,4
+NIGELeilei,26289144,5
+99623872,26289144,3
+31238194,26289144,4
+64369810,26289144,4
+57317658,26289144,5
+yangziqiang,26289144,3
+131255183,26289144,4
+44426861,26289144,3
+117911079,26289144,5
+63993568,26289144,5
+45060818,26289144,4
+68121895,26289144,3
+65085377,26289144,5
+pigmoon,26289144,3
+52262957,26289144,4
+joioran,26289144,2
+43621350,26289144,2
+38576202,26289144,5
+65190197,26289144,5
+49498523,26289144,3
+luhua,26289144,3
+121740137,26289144,4
+63522966,26289144,4
+boonup,26289144,4
+44888528,26289144,5
+66776645,26289144,3
+37585155,26289144,4
+youngtoo,26289144,4
+65807858,26289144,5
+57174556,26289144,5
+saker,26289144,4
+134125799,26289144,4
+57658984,26289144,4
+58719132,26289144,4
+nicy119,26289144,3
+yanzi_db,26289144,-1
+xiangs,26289144,4
+Eraechoin,26289144,4
+JC_Panda,26289144,4
+60027696,26289144,5
+81641955,26289144,4
+5659406,26289144,3
+125571207,26289144,4
+1967079,26289144,3
+46407222,26289144,-1
+nodane,26289144,4
+123971642,26289144,3
+bLue.C,26289144,3
+i_eileen,26289144,3
+4341792,26289144,5
+VIEJANE,26289144,5
+AnastasiaChou,26289144,3
+47231110,26289144,3
+izpk,26289144,4
+guoxiaobei,26289144,5
+60114596,26289144,5
+55906760,26289144,3
+32838151,26289144,4
+134087511,26289144,5
+teenyliu,26289144,3
+120955750,26289144,3
+sereneloafer,26289144,4
+122038976,26289144,4
+64994761,26289144,4
+49328183,26289144,4
+sophie-wang,26289144,4
+47187723,26289144,5
+75896027,26289144,3
+103456265,26289144,4
+suheagatha,26289144,5
+58067735,26289144,5
+48492942,26289144,4
+61552559,26289144,5
+daniel01,26289144,5
+Neko_Daisy,26289144,3
+H897120417,26289144,4
+3890631,26289144,5
+66646375,26289144,5
+83975590,26289144,5
+9411149,26289144,3
+9411149,26289144,3
+124993533,26289144,4
+133877898,26289144,3
+buxiangpaobu,26289144,4
+azure0130,26289144,4
+89912837,26289144,5
+leedany,26289144,3
+78089832,26289144,-1
+51592058,26289144,5
+64404438,26289144,5
+fairyi,26289144,3
+85130256,26289144,4
+1853333,26289144,3
+53867313,26289144,4
+giantdolphin,26289144,4
+56826604,26289144,4
+54867328,26289144,5
+58618452,26289144,4
+supermyhero,26289144,3
+cornelia515,26289144,4
+xiaoxuparole,26289144,4
+2164371,26289144,4
+lovevision,26289144,5
+47905598,26289144,3
+55374511,26289144,4
+redpond1910,26289144,4
+4491309,26289144,5
+48929842,26289144,4
+23621516,26289144,3
+120151650,26289144,1
+64244966,26289144,4
+xiaheng0820,26289144,3
+128005150,26289144,4
+shxhkun,26289144,4
+48212423,26289144,3
+joygirlying,26289144,2
+wlxl,26289144,4
+50271561,26289144,4
+126380434,26289144,2
+131834272,26289144,5
+huangjungeng,26289144,5
+15655185,26289144,5
+68014906,26289144,5
+tjg325,26289144,4
+37428038,26289144,5
+20895105,26289144,5
+qkx,26289144,2
+60469455,26289144,5
+2768259,26289144,4
+morningcuckoo,26289144,3
+47851634,26289144,5
+35586325,26289144,4
+49893629,26289144,4
+60787717,26289144,5
+67894475,26289144,5
+70535180,26289144,2
+51416551,26289144,5
+py962492,26289144,3
+iamliz,26289144,3
+122411500,26289144,4
+kissvsblue,26289144,4
+58671992,26289144,4
+81173543,26289144,4
+43393053,26289144,3
+52736219,26289144,4
+willlove,26289144,4
+81403645,26289144,5
+115631382,26289144,5
+40235686,26289144,4
+zsseason,26289144,4
+onelifeonelove,26289144,4
+134100785,26289144,5
+62613248,26289144,5
+75296522,26289144,5
+69691925,26289144,4
+QQSXXXR,26289144,3
+70541250,26289144,3
+duducool,26289144,5
+80353968,26289144,2
+25546875,26289144,4
+44308589,26289144,4
+krisyeol_0627,26289144,3
+120490702,26289144,4
+mieyou8mie,26289144,3
+58147574,26289144,4
+43903214,26289144,4
+apri__l,26289144,3
+cqmccb,26289144,5
+53796875,26289144,5
+whiteout,26289144,4
+1809277,26289144,5
+57756770,26289144,4
+95041635,26289144,3
+41863263,26289144,5
+youran_lee,26289144,3
+44453325,26289144,4
+42792073,26289144,5
+119680918,26289144,3
+eq4,26289144,4
+SK8_frank,26289144,5
+SK8_frank,26289144,5
+55960442,26289144,3
+119999952,26289144,2
+abuuuu,26289144,4
+73603686,26289144,2
+2799911,26289144,4
+80082541,26289144,3
+Valen-Valen,26289144,5
+68040274,26289144,4
+sansanyang526,26289144,4
+44995539,26289144,5
+sunny_wong,26289144,4
+46673283,26289144,4
+1339883,26289144,4
+3945847,26289144,4
+52587148,26289144,4
+zzztl,26289144,2
+yann_,26289144,3
+ningmengww,26289144,5
+50963579,26289144,3
+chinhao,26289144,4
+46129647,26289144,5
+42796530,26289144,5
+huayuantong,26289144,4
+40258007,26289144,4
+58732271,26289144,5
+76591163,26289144,5
+45923652,26289144,5
+131337124,26289144,3
+52514631,26289144,5
+66454794,26289144,4
+74154243,26289144,4
+98013800,26289144,3
+52010271,26289144,3
+12744553,26289144,5
+80273592,26289144,5
+shiqimei,26289144,3
+79388209,26289144,4
+68241844,26289144,5
+3633419,26289144,4
+44756507,26289144,4
+52344956,26289144,3
+69504310,26289144,3
+132827875,26289144,5
+88199823,26289144,2
+119826470,26289144,4
+3793037,26289144,4
+97470773,26289144,4
+103375945,26289144,4
+49488269,26289144,4
+114647405,26289144,4
+honeyoyo,26289144,4
+54518642,26289144,4
+121523895,26289144,5
+47139215,26289144,3
+67882810,26289144,3
+53526777,26289144,5
+40952005,26289144,3
+4018389,26289144,3
+68027802,26289144,3
+90225366,26289144,3
+133958903,26289144,3
+83358119,26289144,4
+66015511,26289144,4
+114557614,26289144,4
+42179639,26289144,4
+64135534,26289144,4
+78183847,26289144,4
+38971714,26289144,5
+winglet,26289144,4
+53416321,26289144,1
+pennicechen,26289144,3
+52203973,26289144,5
+134076829,26289144,5
+50802370,26289144,3
+bubblelam,26289144,4
+63754960,26289144,3
+Yolandaaa_,26289144,3
+3179337,26289144,3
+graciezc,26289144,2
+70521401,26289144,4
+61861380,26289144,1
+45776079,26289144,3
+2656189,26289144,3
+49134258,26289144,4
+48933484,26289144,4
+39588548,26289144,4
+59225673,26289144,2
+18045662,26289144,4
+95305100,26289144,4
+35308346,26289144,4
+45849213,26289144,4
+6752200,26289144,3
+3895080,26289144,4
+se7en-se7en,26289144,3
+lillianlz,26289144,3
+67462088,26289144,4
+124832004,26289144,5
+Milk_L,26289144,3
+stephinie188,26289144,5
+SaneWoo,26289144,4
+120120305,26289144,4
+rexhrg,26289144,3
+pigpearl,26289144,5
+7325866,26289144,4
+132356471,26289144,4
+2326564,26289144,4
+47331166,26289144,3
+101369491,26289144,4
+68927731,26289144,4
+113499770,26289144,4
+yujun_2011,26289144,4
+huapiqiu,26289144,4
+Ann,26289144,3
+27643874,26289144,3
+42210937,26289144,3
+louisegarden,26289144,4
+sacurayin,26289144,5
+2914496,26289144,4
+64327949,26289144,2
+vivi112,26289144,4
+131849470,26289144,4
+84339749,26289144,5
+weiaiJaychou,26289144,5
+98877536,26289144,3
+52178339,26289144,4
+jamie_wen,26289144,5
+64465019,26289144,5
+annaxingxin,26289144,3
+66550490,26289144,3
+2144348,26289144,4
+54229510,26289144,5
+72661721,26289144,4
+giguemgigue,26289144,4
+49148901,26289144,3
+97816589,26289144,4
+alice0124,26289144,-1
+Tony_MuYuan,26289144,4
+1414261,26289144,5
+44434649,26289144,2
+15726816,26289144,3
+iamartist,26289144,3
+52469091,26289144,4
+56783238,26289144,5
+53146748,26289144,2
+47038202,26289144,4
+3602334,26289144,5
+53276543,26289144,4
+lucia1605-12,26289144,5
+21058696,26289144,5
+fusk,26289144,3
+beloved-seven,26289144,4
+Loreley333,26289144,5
+tao1449771080,26289144,5
+48308049,26289144,4
+3749468,26289144,4
+OOORRR,26289144,3
+32335377,26289144,4
+soberldly,26289144,2
+50079736,26289144,4
+122052280,26289144,5
+discipline,26289144,4
+126260186,26289144,4
+H_flower,26289144,5
+helen--lu,26289144,4
+46292175,26289144,4
+43611766,26289144,4
+56430618,26289144,4
+80610896,26289144,4
+mayday_paopao,26289144,4
+106641965,26289144,4
+faannn,26289144,3
+queeniehan,26289144,3
+dante8977,26289144,4
+2581972,26289144,3
+69106635,26289144,4
+96149760,26289144,5
+blue_sky_yang,26289144,3
+nanahjy,26289144,4
+38736772,26289144,1
+75991915,26289144,5
+chocoearly,26289144,5
+68109134,26289144,3
+3889746,26289144,4
+63374903,26289144,4
+yora,26289144,4
+rafael_j,26289144,4
+Liverpoolsun,26289144,3
+jiatianyu1,26289144,5
+3613359,26289144,4
+52103391,26289144,4
+lucyli2012,26289144,4
+22864848,26289144,5
+3634203,26289144,4
+119258452,26289144,5
+LinWoo,26289144,3
+102402027,26289144,4
+59712803,26289144,3
+fancy_decode,26289144,2
+arborzhu,26289144,4
+msdivian,26289144,2
+35563914,26289144,3
+133887142,26289144,5
+momoaamomo,26289144,5
+43098377,26289144,4
+133864523,26289144,4
+52952050,26289144,4
+yomfall,26289144,4
+weizaia,26289144,4
+36807657,26289144,4
+60520622,26289144,5
+129650376,26289144,4
+70379849,26289144,3
+76198383,26289144,-1
+pichajemo,26289144,4
+46551095,26289144,5
+bronzepeany,26289144,3
+4228422,26289144,4
+4662075,26289144,3
+70289597,26289144,4
+63330294,26289144,4
+63903749,26289144,4
+8499887,26289144,4
+nvxiahxx,26289144,5
+120070082,26289144,4
+seayo,26289144,5
+Duckpear10,26289144,4
+113068656,26289144,4
+S-hushubao,26289144,3
+Steacy,26289144,4
+49415138,26289144,4
+blueskyfly,26289144,3
+63410556,26289144,4
+53430150,26289144,4
+42597882,26289144,4
+52790328,26289144,4
+haiyunchuan,26289144,4
+56001919,26289144,3
+61930217,26289144,5
+132370483,26289144,5
+19421082,26289144,4
+80425280,26289144,4
+2333505,26289144,3
+116438067,26289144,3
+110901020,26289144,2
+baiguopi,26289144,4
+2003525,26289144,4
+shaxiaohai,26289144,5
+Qcat320,26289144,5
+61366430,26289144,3
+4609090,26289144,4
+Makoto614,26289144,3
+126051239,26289144,3
+49043745,26289144,5
+28238952,26289144,4
+50613370,26289144,3
+73033279,26289144,3
+83415261,26289144,4
+4161702,26289144,3
+Harosign,26289144,5
+lovely-Sissi,26289144,3
+81404706,26289144,3
+mikimake,26289144,4
+57632493,26289144,4
+lindada,26289144,5
+69307279,26289144,3
+3168552,26289144,5
+41355465,26289144,4
+70307710,26289144,3
+Yelena_hyq,26289144,5
+liyue8848,26289144,5
+42761507,26289144,2
+60226490,26289144,2
+orangelynn,26289144,5
+Zonnebloem,26289144,5
+Sunnydoer,26289144,4
+iiiapple,26289144,3
+not_fb,26289144,3
+119390006,26289144,1
+70024677,26289144,3
+51048652,26289144,4
+46614712,26289144,5
+41247402,26289144,4
+71879999,26289144,3
+76227940,26289144,5
+16411063,26289144,4
+42320046,26289144,5
+57418911,26289144,4
+48022266,26289144,4
+35819333,26289144,3
+papa12,26289144,5
+antiq,26289144,1
+49180179,26289144,3
+62103689,26289144,4
+62594842,26289144,-1
+50886730,26289144,3
+61992166,26289144,4
+45693109,26289144,4
+105198274,26289144,4
+huangke65,26289144,5
+powful_x,26289144,5
+133152645,26289144,5
+voguecity,26289144,5
+58596166,26289144,4
+3670068,26289144,4
+bluesun1031,26289144,3
+35962191,26289144,5
+faner521,26289144,4
+67913326,26289144,4
+lzy555lzy,26289144,3
+18353036,26289144,5
+milerano,26289144,3
+wanerwanerwaner,26289144,2
+reelin,26289144,4
+xixiT_T0907,26289144,4
+43332807,26289144,4
+caojian120,26289144,5
+akhexiaobai,26289144,4
+133589292,26289144,4
+kistrike,26289144,3
+54396392,26289144,5
+64081879,26289144,3
+3330105,26289144,-1
+57328342,26289144,4
+55737467,26289144,5
+61928807,26289144,-1
+91643336,26289144,5
+3394127,26289144,5
+134007136,26289144,4
+ancoren,26289144,4
+69108112,26289144,5
+126842438,26289144,3
+4271688,26289144,4
+105494552,26289144,3
+49993074,26289144,4
+leoo_leee,26289144,4
+heartlesstree,26289144,3
+50599216,26289144,-1
+81697516,26289144,4
+geniejinn,26289144,5
+t-bag11,26289144,1
+1569342,26289144,3
+45617852,26289144,5
+chandearkathy,26289144,5
+29783892,26289144,3
+1951463,26289144,3
+32019059,26289144,3
+landelanle,26289144,4
+130271779,26289144,3
+2386302,26289144,5
+2679276,26289144,3
+77449073,26289144,4
+88032074,26289144,4
+94352576,26289144,3
+superabigail,26289144,4
+zhaimi,26289144,4
+124568537,26289144,5
+33663407,26289144,5
+ween339,26289144,5
+i_littlebee,26289144,3
+liaoliao90,26289144,4
+70648645,26289144,2
+122066432,26289144,4
+shinpaopao,26289144,5
+94008918,26289144,2
+121741379,26289144,5
+131876858,26289144,3
+41099277,26289144,5
+kewensmile,26289144,4
+91361689,26289144,4
+piulidayoki,26289144,4
+51582662,26289144,3
+74825312,26289144,3
+4820944,26289144,3
+99512994,26289144,5
+25276718,26289144,4
+4011182,26289144,4
+71579974,26289144,5
+56070100,26289144,3
+64625049,26289144,4
+60145877,26289144,3
+46415829,26289144,5
+antoniawu,26289144,5
+76943238,26289144,5
+2748864,26289144,4
+9167697,26289144,-1
+50656902,26289144,4
+66161843,26289144,2
+onlyjuly,26289144,4
+40307616,26289144,4
+120105236,26289144,3
+oscarly,26289144,4
+bellona-mars,26289144,4
+55834652,26289144,3
+Levora,26289144,4
+49151192,26289144,5
+65363487,26289144,4
+fiona_77,26289144,3
+88367269,26289144,4
+nobodyhome,26289144,2
+63959089,26289144,5
+2777892,26289144,3
+128831767,26289144,4
+42600622,26289144,-1
+47081830,26289144,3
+47946624,26289144,2
+51488028,26289144,3
+119385790,26289144,4
+jinqu911,26289144,5
+85044242,26289144,3
+godsun,26289144,4
+44888841,26289144,2
+52867128,26289144,3
+73566126,26289144,3
+132539627,26289144,-1
+demo_3,26289144,3
+guoqichepiao,26289144,5
+79207793,26289144,4
+81545270,26289144,4
+luanma1977,26289144,2
+77222475,26289144,1
+74795936,26289144,2
+51667296,26289144,4
+44470776,26289144,4
+49227433,26289144,3
+69067345,26289144,4
+23273214,26289144,4
+119226090,26289144,5
+ashlee_cfhi,26289144,5
+47424669,26289144,4
+44134959,26289144,4
+yimibi,26289144,5
+93553649,26289144,4
+syamazing,26289144,3
+59276897,26289144,3
+121875738,26289144,5
+99027512,26289144,4
+42280664,26289144,3
+2898681,26289144,3
+56444754,26289144,5
+huxzhao,26289144,3
+88532423,26289144,3
+CQlighthouse,26289144,4
+whosemazi,26289144,5
+forever7young,26289144,-1
+50308860,26289144,3
+133832889,26289144,4
+60882741,26289144,4
+hhy2013,26289144,3
+35994820,26289144,3
+kay0oo,26289144,4
+inthemelody,26289144,3
+69582901,26289144,3
+fwtzzl,26289144,3
+77648355,26289144,1
+86091558,26289144,2
+ilovevivisomuch,26289144,4
+82095351,26289144,4
+joyeecheung,26289144,3
+48491796,26289144,5
+mirRor.27,26289144,5
+43711953,26289144,4
+68968413,26289144,4
+rockholiday,26289144,5
+4899436,26289144,3
+71374005,26289144,5
+91911602,26289144,5
+56775169,26289144,5
+pppryo,26289144,-1
+duolamaoxian,26289144,4
+maryhanqing,26289144,4
+59123210,26289144,4
+49921904,26289144,4
+modena,26289144,4
+45703129,26289144,4
+76583719,26289144,4
+36929085,26289144,4
+zhuye5201314,26289144,5
+desertsann,26289144,5
+zhrmghgwswswws,26289144,4
+nightdreamer,26289144,5
+47536799,26289144,4
+32937331,26289144,3
+59968974,26289144,5
+BDX,26289144,-1
+mingoKing,26289144,4
+49598163,26289144,3
+67001432,26289144,5
+52655952,26289144,4
+yaomiaomiao,26289144,5
+liuyang3728,26289144,4
+63792963,26289144,4
+71467541,26289144,4
+127708051,26289144,1
+57939609,26289144,4
+brian4444,26289144,3
+70052814,26289144,3
+63542129,26289144,1
+2561513,26289144,4
+132789843,26289144,4
+132789843,26289144,4
+odrii,26289144,1
+xianguowuyou,26289144,5
+x19920414,26289144,3
+anhtyilyjz,26289144,1
+yongzhenkaiyuan,26289144,3
+49382503,26289144,5
+raen,26289144,3
+2218750,26289144,1
+70603009,26289144,3
+50899536,26289144,2
+KissYuWen,26289144,2
+60251826,26289144,4
+2723228,26289144,4
+4543934,26289144,3
+65053041,26289144,4
+52366219,26289144,5
+31023505,26289144,5
+3852877,26289144,5
+duanhong169,26289144,4
+34065248,26289144,3
+39681378,26289144,4
+warden_cauc,26289144,5
+69100167,26289144,4
+66298560,26289144,5
+47785072,26289144,3
+71656261,26289144,5
+72355462,26289144,4
+yifei1110,26289144,5
+alisonxxxx,26289144,5
+67856848,26289144,-1
+60168902,26289144,4
+71953826,26289144,4
+55988321,26289144,5
+lovelessji,26289144,4
+77621226,26289144,5
+starpark,26289144,2
+4147553,26289144,5
+80282251,26289144,3
+yanwo,26289144,4
+60388085,26289144,3
+abaocheng,26289144,4
+82459449,26289144,5
+littlejanny,26289144,3
+36355818,26289144,4
+63662696,26289144,3
+61625435,26289144,5
+74538779,26289144,3
+june29,26289144,3
+64487390,26289144,4
+96501543,26289144,5
+4720672,26289144,4
+i7COLORS,26289144,5
+67815073,26289144,3
+68683258,26289144,4
+50464203,26289144,5
+10027720,26289144,3
+peacefulkid,26289144,4
+daisy46,26289144,4
+LX971003,26289144,5
+48365173,26289144,3
+35087113,26289144,3
+59718004,26289144,5
+121922821,26289144,4
+46388568,26289144,4
+55534067,26289144,3
+crazypiggy,26289144,3
+40762850,26289144,3
+46829071,26289144,4
+120342469,26289144,4
+sunking_fish,26289144,3
+kring,26289144,3
+115890566,26289144,5
+119253043,26289144,4
+krsnik,26289144,3
+usstlxh,26289144,5
+roentgen,26289144,5
+83547057,26289144,5
+129215683,26289144,5
+2224281,26289144,5
+56398520,26289144,4
+80657032,26289144,3
+54058995,26289144,3
+64855352,26289144,2
+nivakyo,26289144,3
+123370298,26289144,5
+70752801,26289144,4
+83015759,26289144,3
+57113574,26289144,3
+38781616,26289144,2
+51142925,26289144,4
+4636076,26289144,3
+lemipaisible,26289144,4
+84466308,26289144,3
+56239687,26289144,3
+shingo3001,26289144,3
+15948334,26289144,2
+MancunianJor,26289144,4
+winvic,26289144,2
+45911380,26289144,4
+neko_neko_,26289144,5
+ttangelica,26289144,4
+xianran,26289144,5
+133900665,26289144,4
+32639159,26289144,4
+49213405,26289144,4
+1486195,26289144,5
+130846662,26289144,4
+65057408,26289144,5
+59277228,26289144,4
+19861755,26289144,-1
+65247032,26289144,3
+somnus0319,26289144,3
+lanma90,26289144,3
+92926718,26289144,4
+Stanley_J,26289144,5
+moranlover,26289144,4
+49577279,26289144,5
+leocas,26289144,4
+34347136,26289144,4
+78542472,26289144,-1
+92944589,26289144,3
+57767148,26289144,3
+6186536,26289144,4
+46281468,26289144,5
+120654245,26289144,3
+qianqianfei,26289144,3
+66846318,26289144,5
+ParadiseOfFilm,26289144,5
+caroldove,26289144,5
+beautifull,26289144,3
+91578532,26289144,3
+92078916,26289144,4
+49521395,26289144,4
+73445491,26289144,4
+56980157,26289144,2
+47969445,26289144,4
+46656559,26289144,3
+81213276,26289144,5
+52169196,26289144,4
+52169196,26289144,4
+122107585,26289144,4
+133755694,26289144,2
+71625785,26289144,4
+mmxyatou,26289144,5
+Takeru,26289144,5
+119922502,26289144,5
+65017901,26289144,2
+87749865,26289144,5
+123732341,26289144,3
+87556424,26289144,5
+53829658,26289144,4
+anoukhood,26289144,3
+50066816,26289144,3
+76184033,26289144,4
+2968002,26289144,4
+75426424,26289144,4
+54397560,26289144,5
+41311018,26289144,4
+62476289,26289144,4
+sola511,26289144,4
+54771620,26289144,3
+128992913,26289144,4
+68264835,26289144,4
+joanfi,26289144,2
+kops7s8,26289144,4
+amytsai,26289144,3
+64373224,26289144,3
+42286490,26289144,4
+loocat,26289144,4
+ondineyi,26289144,3
+1550413,26289144,4
+37435342,26289144,3
+82455844,26289144,4
+68871392,26289144,3
+43592386,26289144,4
+wanzi1024,26289144,4
+42216853,26289144,4
+114841876,26289144,3
+50911869,26289144,4
+124920209,26289144,4
+qieziaiwo,26289144,4
+43343702,26289144,3
+3167300,26289144,3
+71260897,26289144,4
+66325431,26289144,4
+2186544,26289144,5
+72630623,26289144,4
+57280262,26289144,-1
+3929944,26289144,4
+geniusf,26289144,4
+MMMangojz,26289144,4
+85062757,26289144,5
+tuxiaomao,26289144,3
+mccole,26289144,5
+airan712,26289144,3
+ceruleanice,26289144,4
+3510245,26289144,4
+virus11,26289144,3
+4657884,26289144,3
+27468990,26289144,4
+65044584,26289144,3
+51057847,26289144,4
+5760403,26289144,4
+58773339,26289144,5
+ZY-Monster,26289144,3
+55596037,26289144,4
+51030434,26289144,2
+50235296,26289144,4
+52898119,26289144,2
+fanyi0109,26289144,4
+3187652,26289144,3
+grimy,26289144,5
+59441016,26289144,4
+50757734,26289144,4
+BOBOtree,26289144,5
+phoenixbox,26289144,5
+52889528,26289144,4
+kelci,26289144,5
+85602254,26289144,5
+75661398,26289144,4
+69168173,26289144,2
+46517740,26289144,5
+52540412,26289144,4
+wyg,26289144,5
+zhubuwai,26289144,3
+99077517,26289144,5
+51320337,26289144,4
+88099677,26289144,3
+3820435,26289144,4
+58509675,26289144,5
+3818276,26289144,4
+xjamesy.1103,26289144,4
+44218001,26289144,3
+53562935,26289144,4
+4354896,26289144,4
+simpledeer,26289144,3
+26612648,26289144,4
+52504487,26289144,5
+43263362,26289144,3
+nonob,26289144,-1
+xxzy93,26289144,4
+puppy22,26289144,4
+70421764,26289144,3
+wanda_oneone,26289144,4
+115078834,26289144,3
+127318413,26289144,4
+45307960,26289144,3
+tianzaifeibaba,26289144,3
+43172439,26289144,3
+qjr1991,26289144,4
+123688744,26289144,2
+80354641,26289144,5
+102525024,26289144,5
+50831726,26289144,5
+61355372,26289144,4
+longxiaosi,26289144,3
+50817948,26289144,4
+shirley317,26289144,5
+60053486,26289144,5
+zyzloveair,26289144,5
+49224319,26289144,5
+59571249,26289144,5
+78658574,26289144,4
+shineTUTU725zz,26289144,4
+Bao1a2s,26289144,4
+cctv-0,26289144,5
+49960251,26289144,5
+58371560,26289144,4
+44720442,26289144,3
+darkaka,26289144,3
+120172771,26289144,4
+29723983,26289144,5
+4267389,26289144,4
+61781075,26289144,4
+34459327,26289144,3
+69896942,26289144,5
+63688559,26289144,4
+mimiminna,26289144,3
+60893089,26289144,3
+69928262,26289144,4
+sillyatom,26289144,5
+3254418,26289144,3
+3720749,26289144,4
+34628274,26289144,4
+66088686,26289144,5
+sunshineofjun,26289144,4
+1379137,26289144,5
+83215549,26289144,4
+66999913,26289144,3
+little_star,26289144,4
+2321844,26289144,4
+MarvinDrooooove,26289144,4
+55419419,26289144,4
+lemosama,26289144,3
+1525048,26289144,4
+I191265,26289144,4
+aprilsunshine,26289144,3
+cuikunjia,26289144,4
+87638267,26289144,3
+lastminute03,26289144,3
+LIMEADE,26289144,3
+45271055,26289144,4
+1668414,26289144,2
+3701499,26289144,3
+46276304,26289144,4
+weiyimaizui,26289144,5
+qianqian0929,26289144,5
+ImHuiY,26289144,3
+60592207,26289144,5
+91609335,26289144,3
+avrilyu1225,26289144,5
+60286888,26289144,4
+3887911,26289144,4
+63583816,26289144,5
+45102685,26289144,5
+Dwxxwd123,26289144,4
+kuraaaaa,26289144,3
+107095756,26289144,4
+2225894,26289144,5
+34310004,26289144,4
+zykino,26289144,4
+4576618,26289144,3
+61287139,26289144,5
+68583073,26289144,3
+45467373,26289144,4
+59856519,26289144,4
+67090700,26289144,5
+sukky,26289144,4
+AmorTeresa,26289144,4
+108227368,26289144,4
+66776389,26289144,4
+Plutoyw,26289144,4
+53538029,26289144,4
+1961185,26289144,5
+kook23,26289144,4
+liuchuanzi,26289144,4
+127006376,26289144,3
+53982800,26289144,4
+130802552,26289144,4
+43884684,26289144,4
+hctartan,26289144,-1
+126186349,26289144,5
+58520765,26289144,5
+70472793,26289144,3
+mickydudu,26289144,-1
+m2204zy,26289144,3
+48469091,26289144,5
+92353114,26289144,4
+JUST820,26289144,4
+hymnjiao,26289144,4
+85084871,26289144,4
+92274110,26289144,3
+80437815,26289144,4
+48006238,26289144,4
+57561513,26289144,4
+66489043,26289144,3
+102328012,26289144,4
+120193254,26289144,4
+130546483,26289144,3
+130546483,26289144,3
+sunmiaoran,26289144,4
+roiroii,26289144,3
+sparkylee,26289144,3
+64597466,26289144,2
+homutoo,26289144,4
+100231998,26289144,3
+91379888,26289144,3
+70091695,26289144,5
+yangui,26289144,2
+clover121,26289144,4
+fyingelle,26289144,2
+cungang,26289144,4
+ivyshao,26289144,4
+arcadia1985,26289144,3
+41919176,26289144,3
+115710110,26289144,3
+53739161,26289144,3
+51482803,26289144,-1
+3540943,26289144,4
+bellaG,26289144,4
+imsatan,26289144,2
+49108144,26289144,3
+qinger41,26289144,5
+vvehouse,26289144,4
+52408297,26289144,5
+zptxwd,26289144,3
+3304167,26289144,3
+jiangying,26289144,4
+37640485,26289144,4
+59901681,26289144,4
+88780244,26289144,3
+129636483,26289144,3
+55434870,26289144,3
+66269083,26289144,3
+quills,26289144,4
+qjunny,26289144,3
+54076866,26289144,4
+129568726,26289144,3
+1465852,26289144,3
+49714270,26289144,5
+24568087,26289144,3
+61573146,26289144,4
+133860777,26289144,4
+takahashiharuki,26289144,3
+shicongying2008,26289144,4
+126123815,26289144,4
+VZ---LZW,26289144,3
+monbenben,26289144,2
+48795051,26289144,3
+44105969,26289144,3
+94260024,26289144,4
+3593565,26289144,4
+62154788,26289144,5
+53119677,26289144,4
+1980904,26289144,4
+42490816,26289144,5
+55978838,26289144,3
+63940928,26289144,5
+68902275,26289144,4
+42826387,26289144,2
+68836448,26289144,4
+126087578,26289144,3
+2785610,26289144,3
+53740854,26289144,4
+123149153,26289144,3
+doctoryang,26289144,4
+33656787,26289144,5
+84752730,26289144,4
+89415788,26289144,4
+54359315,26289144,5
+kimeshichan,26289144,2
+ruanjingtian,26289144,4
+62228619,26289144,5
+mm0220xt,26289144,2
+54588486,26289144,3
+2126628,26289144,4
+91177616,26289144,3
+carambo,26289144,4
+59847342,26289144,4
+90014790,26289144,5
+41385833,26289144,4
+60979833,26289144,3
+miserablefaith,26289144,-1
+genggeng,26289144,2
+30872746,26289144,3
+70512730,26289144,3
+hRy,26289144,4
+garyzhang,26289144,5
+35618500,26289144,4
+28965131,26289144,3
+1978997,26289144,3
+62585325,26289144,3
+114665991,26289144,3
+62992775,26289144,5
+4882851,26289144,3
+115688081,26289144,3
+IcbM,26289144,4
+103052218,26289144,4
+YTT_LS,26289144,3
+48589119,26289144,4
+30079642,26289144,3
+131191820,26289144,4
+3690246,26289144,5
+wildkidpk,26289144,3
+xiaozhangshi,26289144,5
+15029766,26289144,3
+65773708,26289144,3
+babybabystar,26289144,4
+69531104,26289144,3
+gg871103,26289144,3
+44854300,26289144,3
+57967875,26289144,5
+auld.lang.syne,26289144,2
+57988166,26289144,3
+29992407,26289144,3
+48146318,26289144,4
+janetyang226,26289144,4
+jopees,26289144,5
+alicesunflower,26289144,4
+59307428,26289144,3
+trekkerT,26289144,4
+ibravo,26289144,4
+133649741,26289144,5
+Molan-Fish,26289144,5
+115767448,26289144,3
+59925796,26289144,3
+loveabuforever,26289144,3
+deany,26289144,3
+133886978,26289144,5
+angelwp007,26289144,3
+lanyon1124,26289144,2
+115800968,26289144,3
+53388385,26289144,5
+60577747,26289144,4
+35924117,26289144,5
+9803566,26289144,4
+33382680,26289144,-1
+36032322,26289144,3
+tomsnakewang,26289144,4
+90201276,26289144,4
+lengleng,26289144,1
+vanillacc,26289144,4
+amang99,26289144,3
+abcclk,26289144,4
+46525176,26289144,4
+69406100,26289144,3
+63817293,26289144,5
+43793736,26289144,3
+41899214,26289144,1
+73259473,26289144,4
+sunbox,26289144,3
+33091901,26289144,4
+zhoubaicai,26289144,-1
+84203379,26289144,3
+sentsuki,26289144,3
+51888816,26289144,4
+48872085,26289144,3
+tangxiaochuan,26289144,3
+64844513,26289144,3
+64844513,26289144,3
+70023173,26289144,1
+yxmj1982,26289144,4
+keruisitao,26289144,3
+2383059,26289144,5
+azaizaizai,26289144,4
+122979818,26289144,3
+71958572,26289144,2
+alaxos,26289144,4
+121892572,26289144,4
+60001922,26289144,-1
+greenday1112,26289144,4
+2173964,26289144,4
+44504599,26289144,4
+54810722,26289144,3
+49889216,26289144,3
+vinniezhao,26289144,4
+Lethe.Lee,26289144,4
+73932625,26289144,5
+42471589,26289144,3
+staramoi,26289144,4
+53750032,26289144,4
+samaria,26289144,3
+88971198,26289144,5
+2022222,26289144,4
+113584792,26289144,4
+waWa.tomato,26289144,4
+2692321,26289144,5
+starrrrrr,26289144,4
+52990179,26289144,3
+4530938,26289144,4
+47703380,26289144,5
+linlyn,26289144,4
+ice-c,26289144,4
+48749653,26289144,-1
+Jastine,26289144,4
+Zz709,26289144,-1
+67667928,26289144,4
+dorothy.C,26289144,4
+133525184,26289144,3
+83116205,26289144,5
+63383745,26289144,4
+101768144,26289144,4
+halang2012,26289144,1
+3666019,26289144,4
+yozoh96119,26289144,3
+2245419,26289144,4
+fanfan119,26289144,2
+49055690,26289144,3
+53132130,26289144,4
+96503660,26289144,3
+37153252,26289144,5
+4587495,26289144,5
+62304049,26289144,3
+48216088,26289144,5
+65943333,26289144,4
+1548712,26289144,4
+51446280,26289144,4
+57155123,26289144,5
+hotzenplotz,26289144,3
+53247306,26289144,4
+60162544,26289144,5
+53916007,26289144,3
+48667076,26289144,3
+alethea_tang,26289144,4
+65573986,26289144,3
+linruoru,26289144,4
+118090358,26289144,4
+outergirl,26289144,5
+anna012,26289144,4
+68987108,26289144,4
+69547285,26289144,4
+97187010,26289144,5
+83529684,26289144,4
+4672889,26289144,4
+90335027,26289144,4
+67679868,26289144,3
+119158241,26289144,5
+guaishouyaya,26289144,5
+47748305,26289144,3
+nanonino,26289144,5
+prep,26289144,5
+2738683,26289144,4
+80314108,26289144,4
+56557982,26289144,5
+3635055,26289144,2
+susie1991,26289144,4
+linda740,26289144,4
+zx19950205,26289144,4
+Cunese1399,26289144,4
+130773666,26289144,3
+41661944,26289144,3
+onlystella,26289144,4
+74621161,26289144,3
+52409624,26289144,4
+1162708,26289144,4
+133868329,26289144,4
+panpingping,26289144,4
+45599884,26289144,4
+yaoyuanzhai,26289144,4
+49274637,26289144,3
+92300542,26289144,4
+87528128,26289144,3
+linxiaoleng,26289144,5
+61080459,26289144,4
+3796746,26289144,4
+YEAO,26289144,5
+52176275,26289144,5
+52120890,26289144,3
+71336529,26289144,4
+48998927,26289144,3
+49288990,26289144,4
+weiranju,26289144,3
+49922245,26289144,5
+46734513,26289144,5
+25453566,26289144,5
+Crystal0111,26289144,5
+2991153,26289144,5
+119567012,26289144,4
+76684306,26289144,4
+litianye,26289144,4
+25674811,26289144,3
+midori_amoy,26289144,5
+59634338,26289144,1
+34323470,26289144,4
+38789187,26289144,4
+81277402,26289144,3
+85258559,26289144,4
+1042464,26289144,4
+1030614,26289144,5
+47964908,26289144,3
+60385477,26289144,4
+70675972,26289144,5
+cherrywang0118,26289144,4
+60712166,26289144,5
+mouqingyang,26289144,4
+1600165,26289144,4
+51929738,26289144,4
+103235720,26289144,3
+lovememebb,26289144,5
+47187501,26289144,4
+123046225,26289144,3
+3238367,26289144,3
+yhlalala,26289144,4
+39648072,26289144,4
+chiu-chiu,26289144,4
+K_kk,26289144,3
+48270504,26289144,3
+Shur_naa,26289144,5
+4051243,26289144,5
+zhaoqiqi,26289144,5
+58955452,26289144,3
+3141119,26289144,4
+3981138,26289144,4
+119802529,26289144,2
+haoaining,26289144,2
+1811661,26289144,4
+Jalapa,26289144,4
+guiguizhang,26289144,2
+59444662,26289144,5
+49809074,26289144,4
+60340976,26289144,5
+120524618,26289144,4
+132429541,26289144,4
+64626178,26289144,3
+gb333,26289144,3
+soffie,26289144,4
+119852340,26289144,4
+leavelove,26289144,4
+54652768,26289144,5
+75205786,26289144,4
+61398424,26289144,1
+95817312,26289144,3
+lxklzy,26289144,4
+63281371,26289144,5
+4729036,26289144,-1
+51330981,26289144,3
+88510017,26289144,4
+67332751,26289144,4
+scanjf,26289144,4
+scanjf,26289144,4
+88272889,26289144,2
+wenzhu89,26289144,4
+1367943,26289144,4
+penny2533,26289144,5
+3242635,26289144,3
+54020507,26289144,3
+57996084,26289144,4
+Smileysnow,26289144,4
+maywy,26289144,3
+3735285,26289144,5
+K-majorniannian,26289144,5
+44880098,26289144,4
+58435629,26289144,3
+51456095,26289144,4
+66222110,26289144,4
+52253148,26289144,-1
+fcleung,26289144,4
+x-13,26289144,-1
+102489587,26289144,5
+38625392,26289144,5
+liuxiaowan,26289144,3
+65286124,26289144,3
+sakuracross,26289144,4
+1617591,26289144,4
+131352418,26289144,3
+1561371,26289144,2
+49279358,26289144,4
+99329704,26289144,3
+3539441,26289144,5
+37832420,26289144,5
+49883848,26289144,4
+dreamingday,26289144,4
+70271716,26289144,4
+121228834,26289144,4
+viviwanghoho,26289144,3
+yyqzy,26289144,2
+3148205,26289144,3
+128614166,26289144,4
+ignory,26289144,5
+40521449,26289144,5
+68712202,26289144,4
+43760818,26289144,4
+3055121,26289144,4
+trav31,26289144,4
+133212878,26289144,2
+119930629,26289144,3
+92850508,26289144,4
+5747784,26289144,4
+49316755,26289144,3
+48576015,26289144,4
+3202447,26289144,3
+102727851,26289144,4
+68813324,26289144,3
+103681391,26289144,5
+63041714,26289144,4
+37291572,26289144,5
+60131423,26289144,4
+mixmx,26289144,4
+37420534,26289144,4
+38886735,26289144,3
+42293936,26289144,5
+pandaouka,26289144,4
+nining,26289144,4
+101433083,26289144,5
+131138737,26289144,4
+SusuanLu,26289144,5
+pansin,26289144,3
+52628024,26289144,5
+edhua,26289144,5
+57214502,26289144,4
+37364562,26289144,4
+lanxiaxia,26289144,4
+cutiegabrielle,26289144,3
+42987621,26289144,3
+62749653,26289144,4
+80163980,26289144,4
+hd35,26289144,3
+48965065,26289144,3
+bamboolala,26289144,4
+partipris,26289144,3
+51940743,26289144,3
+YUNCONS,26289144,2
+7510013,26289144,3
+37429069,26289144,4
+56272360,26289144,4
+132880572,26289144,5
+FantasyDiva,26289144,5
+little2,26289144,4
+waldo0121,26289144,5
+75015059,26289144,-1
+109446676,26289144,5
+14732017,26289144,3
+62878798,26289144,3
+yogi198791,26289144,3
+63321391,26289144,4
+9453784,26289144,4
+airpot,26289144,3
+130880509,26289144,5
+eshenxian,26289144,-1
+eshenxian,26289144,-1
+muouplay,26289144,4
+36043786,26289144,-1
+65122256,26289144,5
+shennanqing,26289144,3
+2766906,26289144,4
+46043790,26289144,3
+3559769,26289144,4
+49719620,26289144,4
+48336384,26289144,3
+2831524,26289144,2
+huangtoufa,26289144,5
+61923761,26289144,5
+4688576,26289144,4
+2552257,26289144,5
+56772477,26289144,4
+61338861,26289144,4
+65738414,26289144,3
+103458429,26289144,3
+43210476,26289144,4
+oiono,26289144,4
+59007642,26289144,4
+mikumikumi,26289144,5
+66462420,26289144,4
+37888044,26289144,5
+81896913,26289144,4
+78192927,26289144,3
+2671866,26289144,-1
+bunnylufkin,26289144,4
+Chenxinhonghly,26289144,5
+tottos,26289144,3
+62774719,26289144,4
+superfeel,26289144,3
+76238756,26289144,3
+43975366,26289144,5
+45794051,26289144,5
+58672259,26289144,3
+35538541,26289144,4
+47723160,26289144,3
+52799019,26289144,4
+120259879,26289144,3
+45452348,26289144,5
+16303104,26289144,4
+57258833,26289144,-1
+90847508,26289144,3
+23339897,26289144,3
+62806836,26289144,3
+79994497,26289144,3
+bebabay,26289144,4
+57999954,26289144,2
+68570855,26289144,4
+xiaocaomeifay,26289144,5
+54807886,26289144,5
+89449745,26289144,4
+79307909,26289144,4
+jinziyi,26289144,5
+82217473,26289144,4
+45799994,26289144,3
+xxxiyybabe,26289144,4
+59591713,26289144,4
+Rubbish_,26289144,3
+48479692,26289144,3
+129987615,26289144,5
+44849027,26289144,4
+35068096,26289144,3
+90774856,26289144,-1
+65684544,26289144,3
+78458256,26289144,3
+45118601,26289144,2
+kakaitachi,26289144,4
+35047896,26289144,3
+4009151,26289144,4
+34986694,26289144,4
+jixiaolei0830,26289144,4
+99506529,26289144,3
+48884113,26289144,5
+4175461,26289144,5
+58837107,26289144,2
+bbzinuk,26289144,4
+huyouyou,26289144,3
+longliving,26289144,4
+78850217,26289144,4
+54306143,26289144,5
+99380462,26289144,3
+81106134,26289144,3
+49056559,26289144,4
+60220254,26289144,4
+77797292,26289144,2
+68162187,26289144,4
+helengz,26289144,3
+33285857,26289144,4
+97155575,26289144,4
+66455288,26289144,4
+54116667,26289144,3
+102368955,26289144,4
+71193524,26289144,4
+43645225,26289144,4
+vvvvv5,26289144,3
+67331748,26289144,2
+dorothytoffy,26289144,4
+4365944,26289144,5
+62290511,26289144,3
+34739133,26289144,4
+4615634,26289144,5
+hikarieluo,26289144,1
+kangtacaty,26289144,4
+70310265,26289144,3
+116902692,26289144,3
+die1021,26289144,4
+44182814,26289144,4
+muse111,26289144,3
+46651929,26289144,1
+lailai_tu,26289144,4
+ithen,26289144,-1
+changxia,26289144,3
+63274793,26289144,4
+watanabecoffee,26289144,4
+acha13,26289144,3
+102838934,26289144,4
+4122341,26289144,3
+rachelyuguo,26289144,5
+is_xiaoshu,26289144,4
+5093565,26289144,4
+gingersalt,26289144,4
+60797432,26289144,3
+69599901,26289144,3
+123367624,26289144,2
+43782501,26289144,5
+2049714,26289144,3
+shanbaixuanlan,26289144,3
+tonyleslie,26289144,3
+39603909,26289144,4
+65573770,26289144,5
+3569551,26289144,-1
+81062694,26289144,4
+yxm8854,26289144,5
+jerring,26289144,4
+kiss_the_sun,26289144,-1
+114124277,26289144,3
+cambrianperiod,26289144,4
+120091540,26289144,4
+48237443,26289144,4
+37804260,26289144,1
+58250348,26289144,4
+83262411,26289144,3
+130193728,26289144,4
+6074220,26289144,4
+36748230,26289144,3
+28074817,26289144,4
+quanquan0616,26289144,4
+1772956,26289144,4
+18123356,26289144,3
+51158942,26289144,5
+M.iya,26289144,4
+dashankan,26289144,5
+43799515,26289144,4
+2752550,26289144,4
+83242026,26289144,3
+9349453,26289144,4
+bukula,26289144,5
+126302017,26289144,4
+howlformousai,26289144,4
+1520497,26289144,4
+terryoy,26289144,3
+49303961,26289144,5
+133568849,26289144,4
+zwq2u,26289144,4
+haruka49,26289144,4
+77287700,26289144,4
+aw83022857,26289144,3
+IRIDESCENT.ONE,26289144,4
+mlgg,26289144,5
+2627489,26289144,-1
+huerwei,26289144,5
+46164541,26289144,5
+1227418,26289144,3
+haozhe,26289144,4
+58978626,26289144,5
+2174521,26289144,4
+MandyChiang,26289144,4
+43342048,26289144,4
+mnxn889,26289144,3
+65454684,26289144,5
+103954387,26289144,3
+31873447,26289144,3
+gracenina,26289144,3
+2251673,26289144,3
+shijiecuole,26289144,3
+3533764,26289144,4
+58542527,26289144,3
+50192647,26289144,4
+67413514,26289144,5
+62065685,26289144,4
+43447998,26289144,4
+dreamt_A,26289144,4
+abbiekwan,26289144,4
+45985335,26289144,3
+56268416,26289144,5
+Cinderellamay,26289144,3
+3508207,26289144,4
+3873418,26289144,3
+jidecengjing,26289144,3
+2163937,26289144,5
+100939284,26289144,4
+Hello-Momoko,26289144,5
+37448778,26289144,4
+amaoxiansheng,26289144,4
+1421222,26289144,-1
+70214878,26289144,2
+65138658,26289144,5
+43532322,26289144,4
+4207280,26289144,3
+72841552,26289144,4
+85122693,26289144,3
+56496405,26289144,4
+81281915,26289144,5
+44661693,26289144,4
+84873418,26289144,4
+47302352,26289144,3
+57666555,26289144,3
+pangtoufeng,26289144,3
+kikkki,26289144,5
+77557534,26289144,4
+icygbj,26289144,3
+myselfsese,26289144,2
+sixer1005,26289144,3
+121933047,26289144,4
+yikedanhaung,26289144,3
+shanhu2,26289144,3
+83472025,26289144,3
+84710865,26289144,4
+58301523,26289144,4
+60380703,26289144,2
+1094092,26289144,5
+68550848,26289144,3
+dingyidingyi,26289144,4
+1427744,26289144,4
+32625691,26289144,3
+chapu,26289144,4
+52218684,26289144,-1
+foufou,26289144,4
+joanna_L,26289144,4
+hiddenmonkey,26289144,4
+47436910,26289144,4
+35052562,26289144,4
+antony1994,26289144,3
+haozi1990,26289144,5
+57803169,26289144,5
+88052537,26289144,5
+65027660,26289144,5
+77280364,26289144,4
+zhangtianyi1216,26289144,4
+s_3,26289144,3
+43513094,26289144,3
+67220568,26289144,4
+58371528,26289144,4
+64665284,26289144,5
+62215389,26289144,4
+INHKU,26289144,4
+70027746,26289144,5
+eudoramm,26289144,5
+34560160,26289144,4
+53515051,26289144,-1
+54191663,26289144,3
+33324603,26289144,3
+85043050,26289144,5
+daidai324,26289144,5
+53500463,26289144,1
+wanshangdayu,26289144,4
+63053176,26289144,4
+58466744,26289144,4
+72563139,26289144,4
+F1vese7enone,26289144,5
+73993174,26289144,5
+128302112,26289144,4
+57942822,26289144,3
+72285582,26289144,4
+60517494,26289144,4
+3573377,26289144,5
+hsym1022,26289144,3
+64643746,26289144,3
+74146034,26289144,4
+48916211,26289144,4
+44470453,26289144,2
+cherry7lu,26289144,4
+InMisery,26289144,4
+viviensong,26289144,5
+48547507,26289144,4
+36104780,26289144,5
+76844756,26289144,5
+57043665,26289144,4
+68958006,26289144,2
+40424875,26289144,3
+121386623,26289144,5
+34816783,26289144,3
+anana-shan,26289144,4
+3315921,26289144,4
+53947757,26289144,3
+AIRs,26289144,-1
+3541537,26289144,4
+allenzq9,26289144,5
+62238112,26289144,5
+66690632,26289144,5
+82842066,26289144,4
+amyzys1998,26289144,4
+sta,26289144,4
+48836214,26289144,5
+sunflowerqi,26289144,4
+61871207,26289144,5
+upyougo,26289144,3
+43774274,26289144,3
+25668103,26289144,3
+smileineyes,26289144,1
+56066633,26289144,3
+62602235,26289144,-1
+103298508,26289144,4
+haianlong,26289144,4
+kingkey,26289144,4
+55970700,26289144,5
+4711947,26289144,4
+120218408,26289144,4
+1606950,26289144,-1
+44915988,26289144,4
+1985034,26289144,4
+47470464,26289144,3
+zuozuoqing,26289144,5
+light0817,26289144,3
+sanrin,26289144,5
+65680836,26289144,3
+41369322,26289144,4
+wbhvivian,26289144,5
+2217349,26289144,4
+119783761,26289144,3
+49283063,26289144,4
+76853153,26289144,4
+76530513,26289144,1
+54630672,26289144,2
+3625223,26289144,2
+48868579,26289144,5
+96728684,26289144,4
+58902454,26289144,5
+zhaoyt,26289144,5
+neighborgroupz,26289144,1
+4158579,26289144,4
+NONOJIA,26289144,3
+43057375,26289144,3
+127587816,26289144,4
+jangyang1992,26289144,3
+kagoshima-1991,26289144,4
+84698699,26289144,4
+1452888,26289144,3
+52021826,26289144,5
+reki,26289144,4
+64841580,26289144,4
+3680251,26289144,4
+64468472,26289144,2
+124721449,26289144,5
+4909767,26289144,5
+132099750,26289144,3
+25555778,26289144,3
+119760899,26289144,5
+themissingken,26289144,3
+mummerwalker,26289144,3
+129857824,26289144,4
+52951856,26289144,4
+ciaccona,26289144,4
+2776951,26289144,3
+3621631,26289144,3
+qhy0225,26289144,5
+3782895,26289144,3
+SuperKatie,26289144,4
+4628716,26289144,3
+40802946,26289144,5
+42964686,26289144,4
+108724042,26289144,4
+xin0725,26289144,3
+46513410,26289144,2
+81074492,26289144,4
+96545513,26289144,5
+johnny174,26289144,4
+64141775,26289144,5
+73751576,26289144,5
+mowenxia,26289144,4
+cold_sophie,26289144,4
+RabbitSir,26289144,4
+heyavril,26289144,3
+84779002,26289144,3
+sf12447411,26289144,4
+Poissons,26289144,5
+ziv_yll,26289144,5
+46228199,26289144,3
+rickycc,26289144,2
+chenqi2011,26289144,5
+Lotosschnee,26289144,4
+84406810,26289144,4
+stower,26289144,3
+54805629,26289144,3
+133543830,26289144,5
+50882578,26289144,4
+66392767,26289144,5
+66392767,26289144,5
+56024205,26289144,4
+65828524,26289144,3
+3924135,26289144,4
+3814695,26289144,4
+64798127,26289144,5
+asukafai,26289144,4
+qingxinyeren,26289144,5
+3969339,26289144,5
+59945441,26289144,5
+2634600,26289144,4
+61679641,26289144,5
+qiqi6105,26289144,5
+120222665,26289144,4
+123422446,26289144,3
+66800718,26289144,3
+8337663,26289144,5
+ucmkul,26289144,4
+56768374,26289144,5
+etherhejia,26289144,4
+etherhejia,26289144,4
+deppdeep,26289144,3
+samkaka,26289144,5
+88211283,26289144,5
+morningsu,26289144,4
+Ninetynineou,26289144,5
+89165993,26289144,1
+67466072,26289144,4
+68289528,26289144,5
+49255582,26289144,5
+echo_qianbai,26289144,4
+57784183,26289144,5
+silsnake,26289144,5
+clby,26289144,3
+finesstory,26289144,3
+73416826,26289144,2
+42894246,26289144,5
+yedakuan,26289144,5
+izzyxiaobai,26289144,4
+53500604,26289144,4
+yao_bing,26289144,3
+liuyajing811025,26289144,4
+delmar,26289144,2
+72741207,26289144,5
+58945781,26289144,1
+2352547,26289144,4
+3892506,26289144,3
+36034980,26289144,5
+63884743,26289144,1
+James_bow,26289144,-1
+66344990,26289144,3
+4775745,26289144,4
+Ddirective,26289144,1
+112934055,26289144,3
+kinkiluo,26289144,3
+47143086,26289144,5
+45454544,26289144,5
+fiendpochi,26289144,5
+93607054,26289144,3
+2210703,26289144,3
+bbfary,26289144,4
+iconsume,26289144,4
+52852852,26289144,5
+firstpro,26289144,4
+55379612,26289144,3
+62200135,26289144,3
+59769479,26289144,5
+wingsdy,26289144,-1
+Myrainieee,26289144,4
+pinkyboat,26289144,3
+123633609,26289144,2
+yushicaomei,26289144,5
+17106986,26289144,4
+linyuanxianyu,26289144,5
+34698607,26289144,4
+2161155,26289144,-1
+58433028,26289144,4
+46702896,26289144,4
+65976416,26289144,3
+phoebe43,26289144,3
+65976416,26289144,3
+phoebe43,26289144,3
+pumba92simba,26289144,5
+69039376,26289144,4
+myfairytale,26289144,-1
+49710617,26289144,5
+60583715,26289144,4
+50178808,26289144,4
+rslee2128,26289144,3
+2544651,26289144,4
+130446592,26289144,4
+fufei,26289144,4
+mao87523,26289144,4
+58987913,26289144,5
+45956706,26289144,5
+123274527,26289144,5
+56670282,26289144,3
+shexinqian,26289144,4
+36618546,26289144,5
+3683540,26289144,5
+44652708,26289144,5
+133713933,26289144,3
+daisy_0629,26289144,5
+delma,26289144,4
+126095873,26289144,4
+53266040,26289144,5
+89240380,26289144,3
+Jarome,26289144,4
+2513212,26289144,3
+akizou,26289144,4
+63095509,26289144,5
+cos2xhps,26289144,5
+129812391,26289144,5
+evollove,26289144,4
+34493482,26289144,3
+jing328,26289144,4
+64111544,26289144,4
+75188752,26289144,4
+kellengao,26289144,4
+11906540,26289144,3
+68282002,26289144,3
+87069723,26289144,4
+wajwq781202,26289144,5
+51935472,26289144,5
+54087603,26289144,4
+46830081,26289144,4
+73818068,26289144,5
+58115663,26289144,4
+erismeng,26289144,3
+edgeoftheunknow,26289144,3
+63253187,26289144,2
+62521105,26289144,5
+3853719,26289144,4
+55474748,26289144,4
+41704887,26289144,-1
+2670240,26289144,2
+119987907,26289144,5
+51561756,26289144,4
+Lifer,26289144,-1
+anruolan,26289144,4
+103894071,26289144,1
+4673381,26289144,3
+62028090,26289144,3
+127980934,26289144,5
+63454756,26289144,3
+iloveu520,26289144,2
+Bingbing.,26289144,5
+flyingpig1983,26289144,4
+Nanamii,26289144,5
+37442929,26289144,4
+74584897,26289144,4
+126212247,26289144,3
+elyn5234,26289144,4
+plasticme,26289144,-1
+121619925,26289144,3
+56643420,26289144,5
+rocara,26289144,3
+pangzimiao,26289144,4
+sofiamind,26289144,5
+121925320,26289144,4
+132870303,26289144,3
+2672697,26289144,4
+29345085,26289144,4
+4542640,26289144,3
+89852120,26289144,3
+zen_gee,26289144,5
+69704401,26289144,3
+hly_sky,26289144,4
+44985283,26289144,3
+49437518,26289144,5
+43473856,26289144,4
+62155959,26289144,3
+73921828,26289144,3
+128389549,26289144,5
+57880597,26289144,5
+71821737,26289144,4
+72792575,26289144,4
+cancer920627,26289144,5
+acupoftequila,26289144,4
+66744703,26289144,3
+nalanxiang,26289144,5
+61716367,26289144,5
+49404591,26289144,3
+80727161,26289144,4
+28568223,26289144,4
+playinglife,26289144,3
+tior,26289144,4
+104056203,26289144,4
+limtims,26289144,3
+45401652,26289144,3
+4630026,26289144,4
+130968714,26289144,3
+52802816,26289144,3
+38925246,26289144,4
+104580788,26289144,3
+nzhdme,26289144,5
+2427508,26289144,3
+alicerobin,26289144,3
+83108940,26289144,4
+tamedfoxcjl,26289144,5
+45154038,26289144,4
+59632679,26289144,3
+54242127,26289144,3
+2236443,26289144,4
+1950010,26289144,4
+64724876,26289144,5
+97291674,26289144,4
+confuzzle,26289144,4
+aijin1011,26289144,4
+125017541,26289144,5
+undeadmonster,26289144,4
+60509795,26289144,1
+imoonight,26289144,3
+123435691,26289144,3
+xiaohulilengyue,26289144,4
+xiesicong,26289144,4
+88367047,26289144,5
+45657125,26289144,4
+120990428,26289144,4
+TitlisGushishan,26289144,5
+61321953,26289144,4
+71063951,26289144,4
+L0711,26289144,3
+43617047,26289144,4
+66483711,26289144,4
+97646321,26289144,5
+47041593,26289144,4
+94784652,26289144,4
+53484226,26289144,3
+102567826,26289144,1
+68800261,26289144,4
+131209560,26289144,4
+49325754,26289144,3
+chanel_yang,26289144,4
+45646209,26289144,5
+68469790,26289144,4
+127089161,26289144,3
+dist_green,26289144,1
+Jennifer.C1117,26289144,3
+fun-lv,26289144,4
+56340290,26289144,4
+blueapple0099,26289144,4
+71318889,26289144,5
+italyhoneybaby,26289144,5
+dianawh,26289144,2
+80895441,26289144,1
+Juno14,26289144,5
+74687875,26289144,3
+133577318,26289144,4
+1790619,26289144,3
+64928039,26289144,5
+dictionaryy,26289144,4
+yozoh000,26289144,3
+129611962,26289144,2
+61678702,26289144,4
+59405094,26289144,3
+EscapeMaci,26289144,4
+soul922,26289144,4
+50968156,26289144,4
+71241934,26289144,2
+vany7,26289144,4
+124491589,26289144,4
+56708726,26289144,5
+84718748,26289144,4
+90767990,26289144,3
+bzking,26289144,3
+lingchenchen,26289144,4
+52585646,26289144,4
+GiraffeApril,26289144,4
+xingren912,26289144,4
+64446939,26289144,4
+yue126,26289144,4
+76153086,26289144,4
+119282623,26289144,4
+1613608,26289144,5
+jaspure,26289144,4
+qfy,26289144,4
+49055254,26289144,3
+1486653,26289144,4
+125132242,26289144,5
+125132242,26289144,5
+63481883,26289144,3
+moxu,26289144,4
+60652406,26289144,4
+78261244,26289144,4
+48507560,26289144,4
+80126415,26289144,3
+64796955,26289144,3
+ming_203344,26289144,4
+yigesong,26289144,2
+64790470,26289144,5
+50130839,26289144,5
+71420798,26289144,3
+130719142,26289144,5
+2495913,26289144,4
+71402960,26289144,4
+vantasy,26289144,5
+18179041,26289144,5
+pray-entic,26289144,3
+venus7724,26289144,5
+1754955,26289144,4
+2069523,26289144,2
+53406061,26289144,2
+115337600,26289144,2
+75332945,26289144,2
+huangtaok,26289144,5
+June-sunshine,26289144,5
+Patrick_Kang,26289144,4
+caisefan,26289144,4
+52924734,26289144,5
+49128867,26289144,5
+90553636,26289144,5
+93136822,26289144,3
+juehanjiang,26289144,4
+104742376,26289144,3
+129483894,26289144,4
+64876627,26289144,4
+stefaniesays422,26289144,3
+30153657,26289144,4
+51139499,26289144,3
+51792618,26289144,4
+126831028,26289144,4
+57753980,26289144,4
+123500065,26289144,3
+51399398,26289144,5
+63568179,26289144,5
+34034650,26289144,3
+49441451,26289144,4
+84475486,26289144,4
+yan599083337,26289144,4
+65558365,26289144,-1
+46718528,26289144,4
+35499398,26289144,3
+129849834,26289144,3
+47808419,26289144,5
+62922987,26289144,4
+53035444,26289144,4
+99270815,26289144,3
+huhhot0471,26289144,5
+deadcolour,26289144,4
+pinkheart,26289144,5
+jocelyn1031,26289144,3
+47814757,26289144,3
+65718280,26289144,5
+47496712,26289144,3
+fangxiaoyi,26289144,4
+57433095,26289144,2
+40870953,26289144,3
+17052380,26289144,3
+dennie2011,26289144,3
+77279823,26289144,5
+52635539,26289144,2
+folamen,26289144,3
+gloria1102,26289144,4
+58342964,26289144,3
+joyinzone,26289144,4
+82569258,26289144,5
+51915169,26289144,3
+2743090,26289144,4
+72725890,26289144,5
+40110852,26289144,2
+rubiawu,26289144,2
+79861493,26289144,4
+79422797,26289144,4
+mianhua11,26289144,3
+62336834,26289144,4
+6455488,26289144,4
+113408548,26289144,4
+2374847,26289144,4
+102067886,26289144,4
+59899687,26289144,5
+40673634,26289144,4
+songyafeng,26289144,4
+114987209,26289144,4
+53024139,26289144,3
+bostonnhblr,26289144,4
+AMOHanMeimei,26289144,4
+1433006,26289144,4
+27121910,26289144,2
+82481486,26289144,5
+81468340,26289144,5
+69048541,26289144,3
+49568833,26289144,3
+49378755,26289144,4
+Jessica.clr,26289144,3
+waitingsong,26289144,4
+nn35,26289144,-1
+kualo,26289144,3
+51951428,26289144,5
+7556467,26289144,4
+48205456,26289144,4
+54831320,26289144,4
+72086305,26289144,1
+34846798,26289144,4
+moin1206,26289144,5
+88732540,26289144,3
+81042933,26289144,5
+shuangyugongjue,26289144,5
+60077803,26289144,4
+57964416,26289144,4
+38545887,26289144,5
+candaes,26289144,3
+50264279,26289144,3
+47587724,26289144,5
+66562471,26289144,3
+59821556,26289144,4
+132889433,26289144,5
+47381021,26289144,3
+zoekeke,26289144,5
+49922437,26289144,5
+117276039,26289144,3
+120490975,26289144,5
+40684048,26289144,-1
+raes,26289144,4
+sleepwalk,26289144,4
+hougirl,26289144,3
+supremedie,26289144,4
+53485894,26289144,3
+yigenong,26289144,2
+57511362,26289144,4
+57511362,26289144,4
+88089590,26289144,4
+66794187,26289144,4
+133716697,26289144,5
+49120309,26289144,3
+3681045,26289144,4
+yogalover,26289144,3
+58439498,26289144,4
+yuxingshu,26289144,4
+42576821,26289144,5
+78906900,26289144,2
+133715428,26289144,4
+65418503,26289144,5
+bigbei,26289144,5
+suogu,26289144,4
+53742632,26289144,3
+mafiafansv,26289144,4
+lovelyladys,26289144,4
+123114578,26289144,4
+79846892,26289144,4
+64821035,26289144,5
+123564410,26289144,-1
+96532432,26289144,5
+61331002,26289144,5
+129286364,26289144,4
+133714532,26289144,4
+47988380,26289144,4
+windowsosok,26289144,5
+133552816,26289144,5
+emotion7,26289144,4
+58658233,26289144,4
+akin11,26289144,2
+47464390,26289144,4
+jerrysong,26289144,4
+3719246,26289144,3
+minus16,26289144,3
+huhu227,26289144,4
+43962345,26289144,3
+zzb001,26289144,4
+17790607,26289144,4
+danacine,26289144,4
+57036648,26289144,3
+97188703,26289144,3
+133688585,26289144,4
+godbewithme,26289144,3
+Zmeters,26289144,4
+1603683,26289144,3
+oliviapalermo,26289144,3
+131139486,26289144,4
+luffyffo,26289144,4
+29818764,26289144,4
+shenjiasi,26289144,4
+63436872,26289144,4
+52157663,26289144,3
+laomaoshaoxu,26289144,4
+w_summer7street,26289144,5
+94230688,26289144,3
+42859187,26289144,4
+121823052,26289144,5
+65212468,26289144,4
+catduo,26289144,5
+121651782,26289144,5
+48649262,26289144,3
+54643617,26289144,3
+133710403,26289144,4
+123555998,26289144,4
+Abby_ZLJ,26289144,4
+30251701,26289144,3
+zh91,26289144,4
+49191117,26289144,4
+zoe_dl,26289144,3
+WYQlluvia,26289144,4
+127141779,26289144,4
+zynhello,26289144,3
+56187691,26289144,2
+daimaozishuijia,26289144,4
+50859088,26289144,5
+71720681,26289144,4
+4547259,26289144,4
+32645204,26289144,4
+45295722,26289144,3
+ellie0314,26289144,5
+furien,26289144,5
+81815749,26289144,3
+132332103,26289144,4
+42143621,26289144,4
+42702172,26289144,4
+119238411,26289144,2
+ursyoyo,26289144,4
+122431988,26289144,4
+48032170,26289144,4
+tl870,26289144,3
+36777564,26289144,4
+evita_lj,26289144,4
+53900618,26289144,2
+daxiawa,26289144,4
+79027376,26289144,4
+3310036,26289144,4
+3744327,26289144,3
+60461731,26289144,5
+64328101,26289144,4
+71471459,26289144,4
+frostar,26289144,4
+51266335,26289144,4
+1434687,26289144,3
+wangsc1102,26289144,5
+57747110,26289144,5
+62414956,26289144,4
+72946487,26289144,4
+8498973,26289144,-1
+64976230,26289144,5
+32906170,26289144,3
+gmrxfx,26289144,4
+53676052,26289144,3
+4881212,26289144,3
+74988467,26289144,5
+53216433,26289144,2
+133705907,26289144,3
+sedorikku,26289144,3
+53391226,26289144,4
+53391226,26289144,4
+61999118,26289144,3
+48369193,26289144,4
+jessie1230,26289144,3
+127448556,26289144,5
+121857406,26289144,5
+Felica,26289144,3
+Fanyahoo,26289144,1
+50842397,26289144,4
+37631254,26289144,3
+dreams_be_dream,26289144,4
+21533627,26289144,5
+shangdixiaole,26289144,1
+131264022,26289144,5
+57674944,26289144,5
+4564181,26289144,3
+50406839,26289144,1
+122222690,26289144,5
+132999162,26289144,4
+132410493,26289144,4
+domainyu,26289144,3
+125947800,26289144,5
+MegumiLing,26289144,3
+zlqll,26289144,3
+1194630,26289144,5
+127128928,26289144,5
+50479628,26289144,4
+topxpp,26289144,5
+xr-single,26289144,5
+realpussy,26289144,3
+sourire7,26289144,4
+daisyparadise,26289144,4
+17004593,26289144,4
+49330526,26289144,4
+65373306,26289144,5
+50548382,26289144,5
+52087208,26289144,4
+aboutsowhat,26289144,5
+75915241,26289144,1
+54750396,26289144,5
+1626061,26289144,2
+115957627,26289144,3
+63016416,26289144,3
+flyingbottleL,26289144,4
+73628777,26289144,4
+creamxxy,26289144,3
+oksklok,26289144,3
+60858560,26289144,5
+Ms.bai,26289144,3
+huluandoodle,26289144,5
+54099893,26289144,3
+Cythina123,26289144,4
+firstcause,26289144,4
+56968195,26289144,4
+52892284,26289144,4
+62479715,26289144,5
+83513831,26289144,4
+48845332,26289144,4
+2272435,26289144,4
+52685590,26289144,3
+89709568,26289144,4
+zlxcedric,26289144,4
+Rongfairy6,26289144,-1
+131441508,26289144,5
+75006736,26289144,1
+47710365,26289144,4
+danielzhou776,26289144,5
+55581523,26289144,5
+mayday213a213,26289144,3
+127068197,26289144,5
+130331814,26289144,5
+SusieHatake,26289144,3
+53333014,26289144,4
+29219029,26289144,4
+73159539,26289144,4
+48636560,26289144,4
+62814154,26289144,5
+133691924,26289144,4
+45923794,26289144,4
+superman7664,26289144,3
+83188680,26289144,4
+43345260,26289144,3
+47206801,26289144,5
+132332405,26289144,5
+83060870,26289144,5
+aorta,26289144,4
+2025420,26289144,4
+70586420,26289144,4
+133690949,26289144,4
+85112816,26289144,3
+114541045,26289144,5
+weimoo,26289144,4
+48269568,26289144,5
+spacerwith,26289144,3
+42550528,26289144,4
+24829405,26289144,5
+42653275,26289144,4
+4712419,26289144,3
+77182086,26289144,4
+58369360,26289144,5
+66617903,26289144,5
+49119255,26289144,4
+70006804,26289144,4
+61439975,26289144,3
+92450797,26289144,4
+60317674,26289144,3
+133686715,26289144,3
+133493380,26289144,4
+Allison_yao,26289144,5
+4369687,26289144,5
+133687248,26289144,3
+taken-tee,26289144,4
+yicuocha,26289144,4
+52817746,26289144,4
+99615375,26289144,2
+xiongjixiaojie,26289144,4
+lovefilms,26289144,3
+132200755,26289144,5
+Azzz,26289144,4
+43301248,26289144,2
+49662983,26289144,4
+yukiseventeen,26289144,3
+46144657,26289144,4
+84715931,26289144,4
+Aiyouyouyouyou,26289144,4
+reinando,26289144,4
+87894261,26289144,5
+goodbyetn,26289144,-1
+hisheny,26289144,4
+48002747,26289144,4
+43703973,26289144,4
+85036432,26289144,3
+68555593,26289144,5
+66932854,26289144,4
+1659209,26289144,4
+133587846,26289144,4
+48540615,26289144,-1
+61994901,26289144,3
+uu2,26289144,5
+88154402,26289144,5
+131817360,26289144,5
+3820776,26289144,5
+115558069,26289144,5
+53690822,26289144,3
+85246264,26289144,2
+120704758,26289144,1
+helloallan,26289144,2
+133681838,26289144,5
+29935353,26289144,5
+122048396,26289144,4
+56347511,26289144,4
+3956290,26289144,4
+jiangxu,26289144,5
+45193302,26289144,4
+65512328,26289144,2
+1109113,26289144,4
+41628303,26289144,4
+hsupurr,26289144,2
+ars-joe,26289144,-1
+131141045,26289144,4
+48811233,26289144,4
+51918666,26289144,5
+83844384,26289144,4
+mixdream,26289144,3
+70850538,26289144,5
+nopanic,26289144,4
+85244262,26289144,4
+cangshucl,26289144,2
+133676750,26289144,4
+b19921224,26289144,4
+syh622,26289144,5
+133677167,26289144,5
+vero1012,26289144,4
+zyj2nd,26289144,3
+128228201,26289144,5
+73410140,26289144,5
+125101066,26289144,5
+51329457,26289144,5
+renxiaoheng,26289144,3
+82884692,26289144,1
+82884692,26289144,1
+52309571,26289144,1
+bsp-w,26289144,4
+echo7c12nerissa,26289144,4
+yianhq,26289144,4
+53639016,26289144,4
+54460727,26289144,3
+58057818,26289144,3
+57248096,26289144,4
+46055685,26289144,4
+3146821,26289144,3
+133207476,26289144,4
+SKIN69-L,26289144,4
+56144470,26289144,4
+yiliaobailiao,26289144,3
+LLILYAN,26289144,5
+38281575,26289144,3
+104041887,26289144,4
+59433801,26289144,4
+73844432,26289144,5
+54998421,26289144,2
+1235613,26289144,-1
+87858274,26289144,4
+lishiqianyi,26289144,4
+16792916,26289144,3
+43920577,26289144,4
+2744514,26289144,5
+61554500,26289144,4
+80821463,26289144,4
+48034865,26289144,-1
+48960449,26289144,4
+62674682,26289144,3
+ivy_xu1992,26289144,5
+38785285,26289144,5
+28466597,26289144,1
+42549834,26289144,3
+5554173,26289144,3
+zqw930421,26289144,5
+50013150,26289144,3
+104041207,26289144,5
+1928418,26289144,4
+sp43125,26289144,-1
+74914910,26289144,4
+15522600,26289144,5
+133670044,26289144,5
+133506209,26289144,2
+XXTong,26289144,3
+54043321,26289144,3
+63512552,26289144,4
+45128870,26289144,4
+35873021,26289144,4
+36119710,26289144,4
+64564754,26289144,4
+lolala528,26289144,3
+133662506,26289144,4
+2420665,26289144,4
+18124381,26289144,4
+43388977,26289144,3
+64954480,26289144,4
+40617140,26289144,4
+55806671,26289144,4
+plant,26289144,4
+71913827,26289144,5
+30396866,26289144,4
+43608619,26289144,4
+50579879,26289144,3
+58234284,26289144,1
+cat17fish1,26289144,3
+120781613,26289144,2
+67156192,26289144,4
+65089550,26289144,4
+101701682,26289144,5
+babe_mo,26289144,3
+Paninivds,26289144,-1
+126895342,26289144,4
+72925066,26289144,4
+SnowyOwl1402,26289144,3
+54885866,26289144,3
+2469119,26289144,4
+sjmx,26289144,5
+36877897,26289144,4
+46860815,26289144,3
+melatielian,26289144,3
+gulugulu424,26289144,4
+zimu1990,26289144,5
+56867346,26289144,3
+itsmarin,26289144,4
+133658799,26289144,4
+128681174,26289144,3
+36145161,26289144,4
+hana0707,26289144,5
+CANCER75,26289144,2
+25392483,26289144,4
+57305182,26289144,4
+3576867,26289144,4
+94344240,26289144,4
+Missy1012,26289144,4
+lemurex,26289144,4
+70727432,26289144,-1
+66732663,26289144,3
+jennyseath,26289144,3
+qiushuijianjia,26289144,5
+laotougou,26289144,4
+87691265,26289144,4
+51818478,26289144,3
+Haididelan,26289144,5
+127341516,26289144,5
+122764683,26289144,4
+127905303,26289144,-1
+echorange,26289144,3
+41815826,26289144,5
+71029136,26289144,4
+16960582,26289144,2
+kongfucat,26289144,4
+46067722,26289144,3
+132573581,26289144,3
+63984866,26289144,5
+salome0831,26289144,5
+61307239,26289144,4
+48750216,26289144,5
+55890698,26289144,5
+127792178,26289144,5
+83080407,26289144,3
+79800116,26289144,2
+eastern,26289144,3
+42587922,26289144,4
+129691770,26289144,5
+67618142,26289144,3
+133655187,26289144,4
+101415652,26289144,5
+64075026,26289144,5
+1383301,26289144,3
+79631427,26289144,4
+reiko77877,26289144,2
+61540867,26289144,4
+114640824,26289144,5
+131817058,26289144,4
+76235570,26289144,5
+llittlexu,26289144,4
+Jerrin,26289144,4
+Jerrin,26289144,4
+57755806,26289144,4
+yogaeven,26289144,3
+133654503,26289144,3
+2340389,26289144,4
+kevi2dan,26289144,4
+51765654,26289144,4
+43200056,26289144,4
+q_zhang26,26289144,4
+64113646,26289144,4
+55353580,26289144,3
+73700734,26289144,5
+133649959,26289144,5
+57854252,26289144,5
+133518424,26289144,5
+44005420,26289144,3
+cucaoxu,26289144,3
+131043891,26289144,-1
+xuhongruc,26289144,3
+53274197,26289144,5
+54346408,26289144,-1
+abutu,26289144,4
+58421433,26289144,2
+121100970,26289144,3
+60345537,26289144,5
+lingweiran_0305,26289144,5
+silentmini,26289144,4
+itis-jia71,26289144,4
+Jo_Jo,26289144,5
+62675898,26289144,3
+AugustSeven,26289144,4
+BLuuuuE,26289144,3
+50797390,26289144,4
+zxysyz,26289144,4
+wjiandan,26289144,4
+61365011,26289144,4
+69398497,26289144,5
+xiaoshuiliuqiao,26289144,4
+64884887,26289144,4
+luluoyi,26289144,3
+lihaijing,26289144,4
+108210499,26289144,5
+3506551,26289144,5
+3303856,26289144,2
+88221480,26289144,3
+54036002,26289144,4
+14406549,26289144,3
+yaozhilan,26289144,3
+angelyezi,26289144,4
+100417194,26289144,4
+4214564,26289144,3
+dx-shail,26289144,3
+47001733,26289144,4
+80121917,26289144,5
+67494152,26289144,3
+53056802,26289144,4
+45586124,26289144,3
+77523023,26289144,2
+104823188,26289144,3
+1295507,26289144,5
+67011353,26289144,4
+3102606,26289144,1
+2054495,26289144,3
+50328626,26289144,4
+94679289,26289144,3
+133648654,26289144,5
+74948535,26289144,4
+slow-down,26289144,3
+51122534,26289144,5
+84124597,26289144,4
+74905751,26289144,4
+63658779,26289144,5
+hideer,26289144,3
+38973316,26289144,5
+67853237,26289144,5
+51510614,26289144,3
+52199909,26289144,5
+33245540,26289144,3
+122172920,26289144,4
+69048627,26289144,5
+131988762,26289144,4
+j5281,26289144,3
+ssue,26289144,5
+50054734,26289144,4
+chihaidan,26289144,5
+47940206,26289144,5
+48942164,26289144,5
+127564866,26289144,3
+sweather,26289144,5
+49011902,26289144,3
+70394248,26289144,3
+71800701,26289144,4
+119356090,26289144,4
+44356586,26289144,5
+iyoungstar,26289144,4
+72996822,26289144,3
+70619574,26289144,3
+1078770,26289144,4
+79354556,26289144,5
+132630598,26289144,4
+52831736,26289144,3
+50767632,26289144,4
+Ataloss,26289144,3
+memorywalker,26289144,5
+44175959,26289144,5
+113988498,26289144,5
+76343743,26289144,4
+jackguo,26289144,3
+Isabella_August,26289144,4
+65036885,26289144,4
+76356022,26289144,3
+125043767,26289144,4
+tanblin,26289144,4
+SingingYouth,26289144,4
+linzhongmanbu,26289144,4
+85488464,26289144,5
+llllyyyynana,26289144,3
+43134800,26289144,4
+47721355,26289144,4
+dskn,26289144,5
+54813786,26289144,3
+yatiour,26289144,5
+82308347,26289144,4
+34448283,26289144,3
+57420118,26289144,3
+vivienne432,26289144,3
+xiaoranlee,26289144,4
+91649977,26289144,5
+59510268,26289144,4
+69836665,26289144,5
+106384266,26289144,5
+ZouJiajing,26289144,4
+91017429,26289144,4
+2042241,26289144,3
+kemoaye,26289144,4
+tamakown,26289144,4
+2107434,26289144,3
+61317179,26289144,5
+40211421,26289144,3
+ChidLee,26289144,4
+44160866,26289144,3
+lk694003894,26289144,5
+124732876,26289144,4
+106229129,26289144,4
+peilupeilu,26289144,4
+52241991,26289144,4
+83475575,26289144,5
+an.seven,26289144,3
+2749331,26289144,4
+92490871,26289144,4
+luobaise,26289144,3
+qinqinhebe,26289144,4
+1886719,26289144,5
+45545911,26289144,3
+69110012,26289144,4
+elizabethhyy,26289144,4
+68511299,26289144,3
+leon3777,26289144,4
+stigie,26289144,3
+125036084,26289144,5
+58226021,26289144,4
+82669508,26289144,4
+89880536,26289144,1
+76569032,26289144,4
+58379589,26289144,3
+133497592,26289144,4
+52530638,26289144,4
+juyingruo,26289144,5
+sanmigo,26289144,4
+andrewzyc,26289144,3
+93963609,26289144,2
+1494780,26289144,2
+80223960,26289144,4
+51429861,26289144,5
+33537298,26289144,4
+70671271,26289144,4
+48526181,26289144,3
+thebutton,26289144,5
+45570007,26289144,5
+Jash1118,26289144,3
+4324772,26289144,5
+69857662,26289144,4
+51099809,26289144,4
+87981727,26289144,5
+54335075,26289144,4
+3623903,26289144,4
+89095721,26289144,3
+41644450,26289144,3
+2354758,26289144,4
+61705714,26289144,5
+44548602,26289144,3
+daisy7.,26289144,4
+65079823,26289144,3
+sudasuta,26289144,5
+42385473,26289144,3
+49403061,26289144,5
+4465352,26289144,4
+67576170,26289144,4
+themostyu,26289144,4
+33862051,26289144,5
+33862051,26289144,5
+hs1678,26289144,-1
+59071520,26289144,4
+36128756,26289144,-1
+133637159,26289144,4
+akixinru,26289144,4
+77238803,26289144,5
+pussycat100,26289144,4
+50226576,26289144,-1
+90967085,26289144,5
+133637701,26289144,5
+71543587,26289144,4
+castor30,26289144,5
+55010409,26289144,4
+133637514,26289144,4
+50531921,26289144,5
+babyshiniu,26289144,1
+132834209,26289144,3
+129582003,26289144,1
+102748029,26289144,4
+3169215,26289144,4
+104604528,26289144,4
+49272886,26289144,5
+4506904,26289144,4
+69529350,26289144,3
+47531635,26289144,4
+74572703,26289144,4
+43901244,26289144,5
+monkeywoman,26289144,4
+2171517,26289144,3
+56252551,26289144,4
+70775488,26289144,5
+77821661,26289144,5
+56478943,26289144,3
+53561059,26289144,4
+GAYHOUSE,26289144,3
+49986248,26289144,5
+133633977,26289144,3
+87677171,26289144,3
+3573441,26289144,-1
+51723192,26289144,4
+62016973,26289144,4
+66423300,26289144,3
+104823204,26289144,3
+46738902,26289144,3
+euphymia,26289144,1
+folkbaba,26289144,3
+133633622,26289144,5
+innnnnni,26289144,4
+38833877,26289144,3
+60739561,26289144,3
+88002306,26289144,2
+lyl116065921,26289144,4
+50651316,26289144,3
+88542586,26289144,4
+49975697,26289144,4
+133630003,26289144,5
+133631608,26289144,-1
+94587558,26289144,4
+45592291,26289144,3
+67287207,26289144,4
+45749483,26289144,4
+48380014,26289144,5
+89590912,26289144,4
+58909606,26289144,3
+50588454,26289144,1
+81237128,26289144,3
+49181549,26289144,4
+kazuyak1108,26289144,5
+12177460,26289144,4
+sayasmile,26289144,4
+sijia1992404,26289144,4
+88719620,26289144,4
+60597045,26289144,3
+132805552,26289144,5
+34664148,26289144,4
+30714456,26289144,4
+55289330,26289144,1
+130339168,26289144,4
+60082922,26289144,3
+11886721,26289144,3
+56198749,26289144,4
+caolong,26289144,4
+71478408,26289144,4
+115922560,26289144,4
+Quartz,26289144,4
+83646701,26289144,4
+56866010,26289144,5
+123455259,26289144,3
+34949120,26289144,3
+124387754,26289144,5
+c.q-cat,26289144,4
+Mgreenbean,26289144,4
+133628529,26289144,4
+4057670,26289144,3
+meihouhou,26289144,5
+day-break,26289144,3
+4496662,26289144,4
+36678476,26289144,5
+118049530,26289144,5
+1521467,26289144,4
+8412009,26289144,3
+vivian0312-may,26289144,5
+parischan,26289144,3
+128114827,26289144,4
+87631296,26289144,2
+shin.zq,26289144,4
+48175935,26289144,5
+duhang,26289144,1
+128742398,26289144,5
+yischumi,26289144,3
+119864973,26289144,4
+102319652,26289144,5
+79719410,26289144,4
+57855037,26289144,3
+jacoxu,26289144,3
+1820379,26289144,4
+80825347,26289144,4
+120565763,26289144,5
+59035457,26289144,3
+45008056,26289144,4
+39927174,26289144,4
+3668271,26289144,4
+2304460,26289144,4
+xiaohuai533,26289144,3
+snow00000,26289144,4
+40368859,26289144,4
+15923288,26289144,4
+Mdeep,26289144,4
+80622644,26289144,5
+MOKUZJY,26289144,4
+129076070,26289144,5
+72727625,26289144,1
+61230686,26289144,5
+70013242,26289144,4
+133410756,26289144,4
+liugedian,26289144,4
+72405382,26289144,4
+endlessleep,26289144,4
+44629760,26289144,5
+66174237,26289144,4
+50950772,26289144,-1
+60099689,26289144,4
+132730918,26289144,3
+24062008,26289144,2
+57901422,26289144,4
+123543090,26289144,4
+32801142,26289144,4
+36617215,26289144,4
+60923783,26289144,-1
+apple01,26289144,4
+133621556,26289144,2
+tiffanyangel,26289144,4
+13903375,26289144,3
+69680353,26289144,3
+limm9262,26289144,5
+60087488,26289144,5
+72285462,26289144,5
+58801917,26289144,3
+ifesherry,26289144,5
+48841040,26289144,4
+4294308,26289144,4
+60704424,26289144,4
+3826970,26289144,-1
+2195435,26289144,4
+4314709,26289144,-1
+ov_beeshoot,26289144,4
+28398357,26289144,3
+jj011271116,26289144,3
+47151726,26289144,3
+rainbowSS,26289144,3
+121314476,26289144,4
+dinglinsusu,26289144,4
+flykarry,26289144,2
+gaokai3091354,26289144,3
+131840322,26289144,4
+119362745,26289144,5
+xipingchangnata,26289144,4
+Lotus511,26289144,-1
+30231453,26289144,4
+107338684,26289144,4
+Ekhome,26289144,4
+79925364,26289144,5
+74275798,26289144,4
+mwqqqqq,26289144,3
+41931684,26289144,4
+47660842,26289144,4
+93465827,26289144,4
+66268864,26289144,4
+Baymin-Xu,26289144,5
+Scarlett--YJ,26289144,4
+onederful,26289144,3
+feel_sorrow,26289144,3
+45575442,26289144,5
+yy56cc,26289144,3
+shunchong,26289144,4
+ivy532,26289144,4
+38781759,26289144,4
+milovejt_,26289144,5
+55335684,26289144,4
+49348769,26289144,4
+4758428,26289144,3
+133615762,26289144,5
+61068131,26289144,4
+89747225,26289144,3
+54441804,26289144,4
+81982276,26289144,3
+2707760,26289144,3
+129358964,26289144,5
+50229430,26289144,4
+JJ88pig,26289144,3
+42098860,26289144,5
+83246005,26289144,5
+131860652,26289144,4
+45662792,26289144,-1
+58858653,26289144,4
+133613311,26289144,3
+MEIKI,26289144,5
+goodland,26289144,4
+lukeye,26289144,2
+87090261,26289144,3
+melody1012,26289144,3
+2216479,26289144,4
+wheatkittymew,26289144,5
+6877388,26289144,4
+34476599,26289144,-1
+131479331,26289144,4
+102841911,26289144,4
+95937050,26289144,4
+58129733,26289144,4
+133474803,26289144,4
+van2,26289144,4
+133608595,26289144,4
+d300019,26289144,3
+80919001,26289144,4
+81364618,26289144,5
+96093386,26289144,3
+Iamfull,26289144,4
+dayingzi,26289144,3
+self1988,26289144,4
+3681326,26289144,4
+GeekChic7,26289144,4
+133041478,26289144,5
+63733166,26289144,5
+42092243,26289144,4
+metalody,26289144,3
+48919833,26289144,3
+inkhkkk,26289144,3
+xiaoqiaza2015,26289144,5
+npzhd,26289144,3
+68765821,26289144,5
+baby9410,26289144,3
+125038920,26289144,3
+2778692,26289144,3
+36724475,26289144,4
+130990790,26289144,4
+33399271,26289144,4
+69044042,26289144,3
+getto1234,26289144,3
+34593506,26289144,5
+1598738,26289144,4
+daisyholdon,26289144,4
+48492174,26289144,5
+53060922,26289144,4
+74944832,26289144,4
+89341086,26289144,2
+35283831,26289144,4
+onlyburger,26289144,4
+58852351,26289144,4
+singwithmyself,26289144,3
+memecha1314,26289144,5
+79930432,26289144,-1
+69805658,26289144,3
+73783978,26289144,5
+50449064,26289144,3
+51638198,26289144,3
+75678243,26289144,3
+53369904,26289144,3
+103712811,26289144,4
+qdyoo,26289144,4
+80715123,26289144,4
+54907080,26289144,5
+xyx1219,26289144,-1
+XYJessie,26289144,3
+45804814,26289144,3
+133604584,26289144,5
+48097979,26289144,4
+78160641,26289144,2
+69302971,26289144,4
+68200387,26289144,4
+122001275,26289144,4
+133604355,26289144,5
+81938681,26289144,4
+48811257,26289144,5
+58314106,26289144,5
+49250486,26289144,5
+121895079,26289144,4
+64531485,26289144,4
+43495791,26289144,4
+126125294,26289144,4
+hiddenIris,26289144,3
+82131016,26289144,3
+4534568,26289144,5
+122416010,26289144,4
+mmhvv,26289144,5
+xxe,26289144,3
+61593002,26289144,5
+45276525,26289144,4
+71860442,26289144,3
+89528523,26289144,5
+3857084,26289144,5
+63202815,26289144,4
+69505448,26289144,3
+39486226,26289144,5
+harrylyx,26289144,5
+133565347,26289144,-1
+3535619,26289144,1
+43388025,26289144,4
+65570357,26289144,1
+35183435,26289144,4
+1582961,26289144,4
+jellysmiling,26289144,4
+SuperWMY,26289144,4
+51869587,26289144,4
+vienC,26289144,4
+leftsunflower,26289144,4
+53561223,26289144,5
+82706451,26289144,5
+58515570,26289144,3
+2089798,26289144,4
+fountine1120,26289144,3
+3520910,26289144,4
+zhoujiewu,26289144,3
+80346808,26289144,5
+kim100702,26289144,3
+51684202,26289144,5
+momo077,26289144,3
+Zetsubo,26289144,3
+62688277,26289144,5
+77790624,26289144,4
+49521977,26289144,2
+49053009,26289144,3
+daly0520,26289144,3
+43867483,26289144,3
+64134437,26289144,4
+131507600,26289144,3
+jeremy926,26289144,4
+128229919,26289144,4
+64083587,26289144,4
+llh9277,26289144,5
+54398591,26289144,4
+4281482,26289144,4
+49118645,26289144,4
+51432651,26289144,4
+63699116,26289144,2
+131012186,26289144,4
+67815505,26289144,4
+85317436,26289144,4
+28296079,26289144,4
+4654119,26289144,5
+43939933,26289144,4
+69510965,26289144,3
+zhangyunfeng1,26289144,5
+sooro13,26289144,5
+70032189,26289144,5
+102409204,26289144,3
+114959772,26289144,5
+JinSeraph,26289144,4
+62314072,26289144,5
+48097128,26289144,4
+82496206,26289144,5
+picnicskins,26289144,3
+face_off,26289144,5
+45096355,26289144,5
+jinntrance,26289144,5
+25240448,26289144,5
+121679794,26289144,3
+127276817,26289144,4
+lirongrong,26289144,5
+envyandecho,26289144,3
+3745748,26289144,4
+61584024,26289144,5
+62431446,26289144,5
+58454738,26289144,5
+90171652,26289144,3
+sashaxx,26289144,3
+cuixuelei,26289144,4
+hhhmy,26289144,-1
+42084433,26289144,4
+chengjiaxuan,26289144,4
+shaoxueying,26289144,4
+ssssssssigh,26289144,4
+44865012,26289144,4
+79717292,26289144,4
+51756127,26289144,4
+59910226,26289144,4
+93179604,26289144,3
+DreamOnBuddy,26289144,1
+2940018,26289144,4
+yixuan2,26289144,4
+47263713,26289144,5
+2736210,26289144,4
+43235363,26289144,5
+mkbl,26289144,4
+hipiano,26289144,4
+mashwer,26289144,4
+summer11007,26289144,5
+babybluebb,26289144,3
+67192113,26289144,5
+Elepant,26289144,4
+41596083,26289144,4
+76737758,26289144,5
+58493889,26289144,5
+29831719,26289144,5
+anboli,26289144,3
+45439094,26289144,4
+49689556,26289144,3
+78176360,26289144,5
+49404152,26289144,2
+2012350,26289144,3
+cutsummer,26289144,4
+xxxmting,26289144,4
+Frenda,26289144,4
+65124379,26289144,5
+64963282,26289144,4
+AnqASHLEE,26289144,3
+53917833,26289144,3
+mad_orange,26289144,2
+69761365,26289144,5
+jxshuo,26289144,5
+She1sSun,26289144,5
+49041524,26289144,4
+AAAxiaowei,26289144,5
+awen2309,26289144,3
+66168101,26289144,4
+56396657,26289144,3
+51070498,26289144,3
+131532645,26289144,4
+4047603,26289144,5
+2828467,26289144,4
+133593752,26289144,4
+catning,26289144,4
+Sunscape,26289144,1
+80118259,26289144,3
+zhtx513,26289144,4
+dmcrgiye,26289144,4
+Mrssin,26289144,4
+Popdai,26289144,5
+guowanfengy,26289144,5
+81265460,26289144,5
+shasha9022,26289144,4
+67579094,26289144,5
+72434231,26289144,5
+133594469,26289144,-1
+62871108,26289144,3
+jasminefangli,26289144,5
+133499151,26289144,-1
+60829773,26289144,4
+129498168,26289144,5
+xiaoyudlut,26289144,4
+4576910,26289144,-1
+133486624,26289144,4
+90812716,26289144,5
+53076468,26289144,4
+chixixiaoyu228,26289144,4
+133593678,26289144,3
+lc1993520,26289144,3
+killrec,26289144,-1
+56030854,26289144,5
+yiqing0830,26289144,5
+3294725,26289144,5
+125151454,26289144,5
+46867363,26289144,4
+54309403,26289144,4
+qiao517,26289144,3
+133592431,26289144,4
+61030391,26289144,4
+72985710,26289144,4
+53020193,26289144,4
+68918623,26289144,5
+68918623,26289144,5
+79452257,26289144,3
+sophiazouyun,26289144,4
+55616185,26289144,4
+98695047,26289144,4
+LaddishXuan,26289144,4
+ielit,26289144,5
+amanjj,26289144,-1
+zhixizyx,26289144,4
+feilanbuji,26289144,4
+raptor,26289144,4
+122618194,26289144,4
+42735872,26289144,5
+yamlion,26289144,4
+75322883,26289144,3
+44412158,26289144,4
+53229181,26289144,4
+96940680,26289144,4
+48247519,26289144,2
+JoVueTnn,26289144,4
+80897752,26289144,4
+54960227,26289144,3
+58068969,26289144,5
+53730786,26289144,3
+131112942,26289144,3
+58276184,26289144,3
+55970012,26289144,3
+2502076,26289144,4
+49220911,26289144,3
+73751248,26289144,4
+115547734,26289144,3
+47732275,26289144,3
+65729154,26289144,5
+xiaojidunmoguxi,26289144,4
+132850672,26289144,4
+chongguichenji,26289144,5
+byduan,26289144,4
+120742454,26289144,3
+77571393,26289144,5
+83195313,26289144,4
+114008201,26289144,3
+50268324,26289144,5
+78565044,26289144,5
+ilovesun,26289144,-1
+kennyeffect,26289144,3
+mickey19900513,26289144,4
+81785994,26289144,-1
+4574574,26289144,4
+bmw,26289144,4
+47052463,26289144,3
+Gallifrey,26289144,4
+67937047,26289144,4
+xyw0605,26289144,5
+133588402,26289144,4
+lianyiaihong,26289144,5
+41724625,26289144,5
+82687720,26289144,3
+108793879,26289144,4
+99736785,26289144,4
+4374508,26289144,4
+105811040,26289144,3
+2646888,26289144,3
+3519432,26289144,3
+113582401,26289144,4
+shmachinist,26289144,3
+59590691,26289144,2
+130903700,26289144,4
+m.edulla,26289144,4
+periswallow,26289144,5
+lemontin,26289144,2
+xxreed,26289144,2
+92081294,26289144,4
+57930885,26289144,4
+thanatos7,26289144,3
+127112078,26289144,3
+122596452,26289144,2
+66612367,26289144,4
+41864568,26289144,4
+113444876,26289144,4
+70138570,26289144,3
+c595145744,26289144,5
+80519837,26289144,3
+Tammysay,26289144,3
+58568147,26289144,4
+3217515,26289144,4
+70597706,26289144,5
+67885647,26289144,3
+124569189,26289144,5
+38566162,26289144,4
+2624503,26289144,3
+93372075,26289144,5
+happywen,26289144,4
+27710094,26289144,3
+91118015,26289144,3
+77151655,26289144,4
+kouxping,26289144,5
+7786886,26289144,4
+66013809,26289144,4
+DARKM,26289144,4
+69695174,26289144,3
+38147574,26289144,5
+63858344,26289144,4
+crystal_zhao,26289144,3
+olive0812,26289144,2
+32311749,26289144,-1
+111795228,26289144,5
+52000938,26289144,2
+130314777,26289144,4
+80289640,26289144,3
+50497876,26289144,5
+67383394,26289144,5
+133583355,26289144,-1
+4464824,26289144,3
+50587917,26289144,3
+42816825,26289144,3
+121040856,26289144,5
+37376533,26289144,3
+76715330,26289144,3
+74241382,26289144,4
+iceberg.B,26289144,3
+krmushang,26289144,3
+103487977,26289144,4
+54122368,26289144,4
+49855743,26289144,4
+Jealousy,26289144,3
+44587158,26289144,4
+51044049,26289144,4
+133580955,26289144,5
+59906456,26289144,3
+azurefory,26289144,4
+66702485,26289144,5
+52676107,26289144,4
+66593350,26289144,4
+94266589,26289144,3
+58373563,26289144,3
+131876664,26289144,5
+127386765,26289144,5
+yanran227,26289144,4
+52688016,26289144,4
+chenfang2011,26289144,3
+serenesummer,26289144,5
+133555785,26289144,5
+133576645,26289144,-1
+44007774,26289144,4
+lillle-tree,26289144,4
+53898523,26289144,3
+16321180,26289144,5
+purezhi,26289144,4
+53998675,26289144,3
+74420414,26289144,2
+26541687,26289144,5
+92564614,26289144,4
+48696805,26289144,3
+4534729,26289144,3
+3937157,26289144,2
+28462417,26289144,3
+lyzw,26289144,4
+vermouthhu,26289144,3
+miu-Wolf,26289144,3
+peach_lee,26289144,5
+82987051,26289144,5
+loftgame,26289144,4
+pandoll,26289144,5
+rackylo,26289144,5
+23766862,26289144,4
+fmime,26289144,5
+133485165,26289144,3
+3646381,26289144,3
+37343729,26289144,3
+44556619,26289144,4
+61334084,26289144,5
+mo_hui06,26289144,4
+cutehome,26289144,3
+39890237,26289144,4
+83720235,26289144,4
+132934963,26289144,5
+58667510,26289144,5
+91323180,26289144,3
+45799009,26289144,5
+43978176,26289144,5
+65930256,26289144,3
+smc66666,26289144,5
+125632823,26289144,5
+58784233,26289144,4
+91296075,26289144,5
+31749291,26289144,1
+80651595,26289144,2
+129748543,26289144,5
+102643843,26289144,3
+whatever92,26289144,-1
+59974913,26289144,-1
+130988431,26289144,3
+Jerry-Zeng,26289144,4
+lcyjh1123581321,26289144,4
+119553191,26289144,4
+57285165,26289144,4
+31885459,26289144,4
+133544744,26289144,5
+40436346,26289144,3
+67570635,26289144,3
+67570635,26289144,3
+133047007,26289144,-1
+43830625,26289144,4
+FayLaCitron,26289144,5
+47853230,26289144,3
+9596432,26289144,4
+bluedolphinly,26289144,4
+51781993,26289144,5
+4464843,26289144,3
+issdream,26289144,4
+51909890,26289144,3
+berryue,26289144,2
+sloth715,26289144,4
+65784611,26289144,2
+65956742,26289144,3
+131249322,26289144,4
+65141663,26289144,3
+ohagur,26289144,4
+lovezhuangjia,26289144,4
+96777492,26289144,4
+modernchipao,26289144,1
+74932747,26289144,3
+gingerbread-man,26289144,5
+72274732,26289144,3
+68330384,26289144,4
+54519295,26289144,3
+jackiejo,26289144,4
+67760577,26289144,5
+elvyla,26289144,4
+gdpan,26289144,3
+limbomiss,26289144,4
+61483157,26289144,3
+kelling,26289144,2
+133567172,26289144,4
+wangxiaona,26289144,4
+75908949,26289144,5
+slya,26289144,4
+openMiss,26289144,3
+65315109,26289144,5
+SiMinLi,26289144,3
+56119626,26289144,3
+yemengying,26289144,4
+76432800,26289144,4
+Lulu-chips,26289144,2
+vc017,26289144,4
+MsLulu,26289144,3
+102530220,26289144,4
+93748665,26289144,4
+49916010,26289144,3
+53132648,26289144,4
+66084596,26289144,3
+milansunshine,26289144,4
+63357201,26289144,4
+57171758,26289144,3
+83488893,26289144,4
+KhililFong,26289144,3
+sunsetbutterfly,26289144,4
+53369399,26289144,3
+lrc893,26289144,5
+gelsey1992,26289144,3
+133563931,26289144,5
+Linqiny,26289144,3
+81281944,26289144,1
+47886145,26289144,3
+WYTlucky_420,26289144,3
+yezihanxu,26289144,4
+103096279,26289144,5
+namosir,26289144,4
+133563140,26289144,5
+pygmalio,26289144,4
+ste0815,26289144,4
+69519109,26289144,4
+Minoguer,26289144,4
+jupengorall,26289144,3
+sandyran,26289144,4
+44117656,26289144,5
+29187256,26289144,3
+49705302,26289144,4
+65077725,26289144,-1
+51737813,26289144,-1
+jennyjin,26289144,4
+bunny-_-,26289144,4
+qairy,26289144,3
+131175611,26289144,5
+133530118,26289144,5
+63599319,26289144,4
+yoursnicky,26289144,3
+47285151,26289144,3
+Huanghaofei,26289144,5
+65640022,26289144,5
+59916928,26289144,1
+50353845,26289144,4
+loveirina,26289144,3
+3641651,26289144,3
+83649414,26289144,3
+50403801,26289144,3
+49577718,26289144,4
+yyaiu,26289144,4
+43693739,26289144,3
+janetbubble,26289144,4
+49394637,26289144,1
+51463765,26289144,4
+littlerow,26289144,3
+14415630,26289144,4
+duxucn,26289144,5
+84855467,26289144,4
+50401772,26289144,5
+honeyci,26289144,3
+53833067,26289144,4
+68946630,26289144,4
+48282054,26289144,4
+pdleo,26289144,4
+themoonforgets,26289144,3
+Sylary,26289144,4
+52835847,26289144,5
+54542205,26289144,4
+nicococo,26289144,4
+yintianxiaozhu,26289144,4
+132211559,26289144,4
+67085557,26289144,4
+100422638,26289144,3
+76970352,26289144,5
+enjoyjiang,26289144,3
+49818287,26289144,4
+31479000,26289144,3
+tracylk,26289144,3
+rocksind,26289144,4
+YakiraKw,26289144,4
+whisper,26289144,3
+63391208,26289144,4
+renth,26289144,3
+namik_ercan,26289144,4
+bola-hui,26289144,4
+17683946,26289144,2
+2078085,26289144,3
+74613147,26289144,3
+littlemana,26289144,4
+13826202,26289144,3
+52405237,26289144,4
+KuanmA,26289144,4
+35233003,26289144,4
+57653061,26289144,4
+dorothylee0406,26289144,3
+3725907,26289144,5
+shimwoo,26289144,3
+Frienky,26289144,5
+4506778,26289144,5
+54551118,26289144,5
+71426897,26289144,4
+62882653,26289144,4
+cherrykaulitz,26289144,2
+62428828,26289144,4
+42106999,26289144,5
+momisa,26289144,4
+120948560,26289144,3
+xslidian,26289144,2
+100746508,26289144,5
+4895785,26289144,4
+3722976,26289144,3
+56380943,26289144,5
+133554328,26289144,5
+39987739,26289144,4
+60145128,26289144,5
+flyinhigh,26289144,5
+beiz1,26289144,5
+YP2013,26289144,4
+chrisyx,26289144,4
+zod798,26289144,4
+58085348,26289144,3
+37269594,26289144,3
+33944015,26289144,3
+120860718,26289144,3
+3249521,26289144,5
+dd_sy918,26289144,4
+57902963,26289144,4
+47454676,26289144,3
+1510862,26289144,3
+115669803,26289144,4
+Soland,26289144,4
+jhy007,26289144,4
+iwasbornforthis,26289144,4
+homebody,26289144,4
+82884775,26289144,4
+49756613,26289144,5
+acacia_acacia,26289144,4
+127746270,26289144,4
+52926206,26289144,-1
+abin520918,26289144,4
+smg,26289144,3
+qingcha1026,26289144,4
+93582909,26289144,4
+54268047,26289144,5
+56463275,26289144,4
+xinxinya,26289144,4
+22276083,26289144,5
+4195703,26289144,2
+jjdingding25,26289144,5
+imKuku,26289144,2
+44304127,26289144,3
+H.T.Rockwall,26289144,4
+48157694,26289144,3
+121885852,26289144,3
+movielove,26289144,2
+58158245,26289144,5
+4258229,26289144,5
+yanjie0310,26289144,4
+xiangxinyun,26289144,4
+Xuxiaohan,26289144,5
+heyiliao,26289144,3
+53084899,26289144,3
+41212756,26289144,3
+65086893,26289144,3
+79504633,26289144,3
+58415543,26289144,4
+87118528,26289144,3
+67061199,26289144,4
+68404885,26289144,4
+shayy,26289144,5
+50400133,26289144,4
+64760834,26289144,5
+46692711,26289144,4
+52898420,26289144,5
+YUKI1220,26289144,-1
+62051375,26289144,5
+sarachung,26289144,4
+1958621,26289144,2
+47574428,26289144,3
+70660322,26289144,5
+floraforever21,26289144,4
+64900743,26289144,4
+lygirl989193,26289144,4
+54478804,26289144,3
+50351476,26289144,4
+41487335,26289144,5
+28215681,26289144,3
+16670816,26289144,4
+125831014,26289144,4
+holynight,26289144,3
+130555333,26289144,4
+4125797,26289144,5
+ning77,26289144,3
+44709496,26289144,4
+52279505,26289144,4
+fotix,26289144,1
+luersky,26289144,5
+58117045,26289144,3
+4876430,26289144,4
+4606725,26289144,3
+lee9026,26289144,4
+53245934,26289144,3
+Alberta77,26289144,4
+59164249,26289144,3
+68686378,26289144,5
+45792761,26289144,3
+51641962,26289144,5
+44594188,26289144,2
+gerruwu1990,26289144,4
+35950742,26289144,4
+74966541,26289144,3
+57411065,26289144,-1
+60918605,26289144,3
+41905718,26289144,4
+47361018,26289144,1
+belongtol,26289144,3
+wuchenxi,26289144,5
+120572628,26289144,5
+84392828,26289144,2
+62132064,26289144,3
+naiping4869,26289144,4
+53346531,26289144,-1
+woshiex,26289144,3
+xuqingbai,26289144,3
+yuzhoushan,26289144,5
+creepNIBA,26289144,4
+wangyiqiu,26289144,4
+17778744,26289144,5
+alisonend,26289144,4
+guodamei,26289144,3
+doraci,26289144,4
+45984113,26289144,3
+63346469,26289144,4
+50801450,26289144,5
+62119610,26289144,4
+88541927,26289144,4
+122179121,26289144,3
+113363174,26289144,4
+sodapaopao,26289144,4
+109238530,26289144,3
+50152674,26289144,5
+119868910,26289144,4
+121235168,26289144,4
+60717435,26289144,4
+3264938,26289144,4
+65216526,26289144,4
+132680521,26289144,5
+49585616,26289144,3
+ClaraZyt,26289144,4
+51433570,26289144,5
+55309998,26289144,4
+aimeecute,26289144,3
+47800794,26289144,4
+p2prmb,26289144,2
+54980084,26289144,3
+nicocosama,26289144,-1
+62949401,26289144,3
+48439446,26289144,5
+woyee,26289144,4
+50680625,26289144,3
+88603301,26289144,4
+44375707,26289144,5
+gismine,26289144,5
+67987874,26289144,5
+hwl19900304,26289144,3
+37969274,26289144,5
+fadesome,26289144,5
+47116857,26289144,5
+54478886,26289144,4
+xiaopzhao,26289144,4
+3522043,26289144,-1
+48969108,26289144,5
+125770398,26289144,4
+53682369,26289144,3
+coffeebear,26289144,4
+chenxy92,26289144,3
+arizona,26289144,4
+47112099,26289144,2
+58110049,26289144,5
+54286772,26289144,4
+will_u,26289144,4
+35364683,26289144,3
+qihchen,26289144,5
+83241293,26289144,5
+30626996,26289144,3
+49455574,26289144,4
+andsay,26289144,4
+miracle0409,26289144,5
+51781522,26289144,4
+rabbitcai,26289144,4
+saemahr,26289144,3
+39044797,26289144,5
+39044797,26289144,5
+4914375,26289144,5
+alessiagu,26289144,5
+61369832,26289144,3
+82188158,26289144,3
+36206497,26289144,2
+131131042,26289144,4
+84403778,26289144,5
+45790500,26289144,5
+4688654,26289144,3
+42904163,26289144,5
+3468649,26289144,3
+merdelavie,26289144,4
+qiqiyinyu,26289144,4
+52657880,26289144,4
+53185889,26289144,3
+79148662,26289144,-1
+127386685,26289144,5
+125969593,26289144,4
+78966790,26289144,1
+Joan_J,26289144,4
+Godot0108,26289144,4
+46752202,26289144,3
+58904341,26289144,5
+53002602,26289144,4
+80319931,26289144,3
+63140304,26289144,4
+53346121,26289144,4
+131332142,26289144,4
+67552015,26289144,5
+59038571,26289144,4
+80537833,26289144,4
+82910448,26289144,4
+28559275,26289144,4
+4547052,26289144,3
+84560108,26289144,-1
+120041263,26289144,5
+kelsiyao,26289144,5
+52826734,26289144,5
+celiaoutsider,26289144,4
+wuxiaominghan,26289144,4
+22137040,26289144,3
+97189453,26289144,4
+131118514,26289144,4
+36800921,26289144,3
+79567337,26289144,3
+12629797,26289144,5
+mesxiang,26289144,5
+40664401,26289144,4
+echo-syy,26289144,4
+guaipilele,26289144,4
+75513285,26289144,3
+48204771,26289144,5
+55985386,26289144,4
+92912808,26289144,4
+AileenY,26289144,5
+130020039,26289144,5
+47674697,26289144,3
+3892301,26289144,3
+weixiaol,26289144,3
+102268509,26289144,4
+Lyii,26289144,5
+98914244,26289144,4
+40505982,26289144,4
+23826255,26289144,4
+2780938,26289144,2
+34724471,26289144,2
+liudunzzzyyy,26289144,3
+ink1020,26289144,4
+nzqlovels,26289144,4
+63766051,26289144,4
+54186903,26289144,4
+66831193,26289144,3
+moyubenben,26289144,5
+zhaoq41,26289144,4
+bosk,26289144,4
+moqianyao,26289144,4
+6724066,26289144,4
+80833040,26289144,5
+130760622,26289144,5
+roxyash,26289144,4
+111981766,26289144,4
+32314297,26289144,4
+azeizei,26289144,5
+maomiwang809,26289144,4
+youfeijunzi_123,26289144,3
+2393716,26289144,4
+46470879,26289144,3
+60150208,26289144,4
+Lv65535,26289144,4
+42463723,26289144,4
+x0510z,26289144,4
+97112144,26289144,4
+superdolphin,26289144,4
+94034456,26289144,3
+47267795,26289144,4
+69683493,26289144,4
+121479059,26289144,1
+101931160,26289144,4
+STILLWATERRUNS,26289144,5
+honeyzst,26289144,3
+AJIONG119,26289144,5
+72857645,26289144,3
+89610465,26289144,4
+61299787,26289144,3
+39513476,26289144,4
+48565113,26289144,4
+122060330,26289144,5
+51052773,26289144,3
+yangyiwen,26289144,3
+sarah59,26289144,4
+liyah,26289144,5
+luckia1991,26289144,4
+vermouthmsg,26289144,4
+61963666,26289144,4
+yanjingailvyou,26289144,4
+brith,26289144,5
+54864472,26289144,2
+43616371,26289144,4
+sung..,26289144,4
+62641326,26289144,-1
+3107254,26289144,4
+quelheart,26289144,3
+69162097,26289144,-1
+ggx29225692,26289144,4
+48126534,26289144,2
+49705526,26289144,3
+shinianxin,26289144,4
+93699875,26289144,2
+43681631,26289144,4
+82995055,26289144,5
+xin9xin9xin,26289144,4
+mockingko,26289144,4
+40123576,26289144,5
+133532655,26289144,4
+79013186,26289144,4
+youranlan,26289144,3
+59997800,26289144,3
+1692027,26289144,4
+cactus_hee,26289144,4
+cactus_hee,26289144,4
+xuxiaochi,26289144,5
+44428139,26289144,4
+XIAOTUTONG,26289144,3
+princessLBB,26289144,4
+73261825,26289144,3
+127082553,26289144,4
+superrao,26289144,4
+2647676,26289144,4
+Janny_blue,26289144,4
+69275908,26289144,4
+yueyuedad1972,26289144,5
+57548460,26289144,4
+78564459,26289144,3
+limemint12,26289144,3
+36530982,26289144,3
+14306980,26289144,3
+57341642,26289144,3
+43859610,26289144,3
+78055552,26289144,3
+78055552,26289144,3
+35067428,26289144,5
+tongtong7,26289144,3
+122212347,26289144,3
+2051786,26289144,4
+80100194,26289144,4
+abey1949,26289144,3
+63032751,26289144,5
+57048638,26289144,3
+131595089,26289144,3
+3808595,26289144,4
+samuelv,26289144,4
+67162797,26289144,2
+46741687,26289144,3
+nekoface,26289144,3
+62379028,26289144,3
+44738448,26289144,3
+kentinante,26289144,5
+zhoujie7378,26289144,5
+44418908,26289144,3
+83397833,26289144,4
+45627400,26289144,5
+weijjcd,26289144,4
+62989333,26289144,3
+3555547,26289144,4
+76549265,26289144,4
+heretheostrich,26289144,5
+91548416,26289144,4
+1314610,26289144,4
+34995893,26289144,5
+59309532,26289144,4
+47379868,26289144,5
+58391171,26289144,4
+26122197,26289144,4
+MISyimu,26289144,5
+132770225,26289144,4
+impossible,26289144,1
+yuanpy,26289144,5
+4096669,26289144,3
+60139322,26289144,4
+61323163,26289144,4
+41897938,26289144,4
+41206383,26289144,-1
+52934173,26289144,4
+57629108,26289144,5
+loveequeen,26289144,4
+shingle,26289144,3
+47338102,26289144,3
+95817419,26289144,4
+60002920,26289144,4
+51331852,26289144,4
+77081051,26289144,4
+xingxing0889,26289144,4
+50617120,26289144,2
+61857806,26289144,4
+2373395,26289144,4
+miss1207,26289144,3
+indd,26289144,4
+132261834,26289144,4
+51045990,26289144,5
+129614850,26289144,5
+ddj814,26289144,4
+luoyudi,26289144,4
+kiyoshis,26289144,-1
+63777033,26289144,5
+54479974,26289144,4
+1484764,26289144,5
+minllll,26289144,5
+fangxiaotang,26289144,4
+39245426,26289144,5
+62330610,26289144,3
+1202743,26289144,4
+ch123,26289144,3
+anotheronexia,26289144,3
+92840931,26289144,5
+4471054,26289144,3
+luxinyan,26289144,3
+seclo,26289144,4
+88081334,26289144,3
+pearl.,26289144,5
+pearl.,26289144,5
+78649248,26289144,4
+sevenyearslater,26289144,4
+48673044,26289144,5
+66959983,26289144,4
+52385653,26289144,4
+46388878,26289144,3
+Shanna_Q,26289144,4
+49418217,26289144,4
+ggqgu,26289144,4
+89897722,26289144,5
+realien,26289144,3
+27244349,26289144,5
+4253119,26289144,4
+43069028,26289144,4
+103842541,26289144,1
+4357598,26289144,4
+2999076,26289144,3
+3495174,26289144,3
+69223309,26289144,5
+46088268,26289144,3
+3269399,26289144,5
+57511216,26289144,3
+4199523,26289144,4
+laineyq,26289144,4
+cyhappy36507,26289144,3
+65609013,26289144,5
+60021134,26289144,4
+63159258,26289144,4
+87568135,26289144,3
+lemonj,26289144,3
+zchou,26289144,3
+jeensk,26289144,3
+38006752,26289144,3
+122720481,26289144,3
+72412157,26289144,4
+shadow.u,26289144,3
+30836444,26289144,4
+asangshine,26289144,4
+badass420,26289144,-1
+58571573,26289144,4
+torogmw,26289144,5
+130620590,26289144,4
+48999675,26289144,4
+2600716,26289144,5
+lolli_yj,26289144,4
+62873920,26289144,4
+jessedong,26289144,3
+60678806,26289144,4
+hyncinthus,26289144,4
+aibamoe,26289144,3
+vicking,26289144,4
+Yam0915,26289144,5
+58897808,26289144,4
+hlicemilk,26289144,4
+49256582,26289144,3
+4006467,26289144,4
+shichaocaesar,26289144,5
+50403530,26289144,4
+ddwhy,26289144,3
+49097725,26289144,4
+81007534,26289144,2
+132274112,26289144,4
+jacqueline403,26289144,5
+47461715,26289144,5
+39526350,26289144,3
+complicate89,26289144,5
+y328675858,26289144,3
+36803758,26289144,5
+elishan,26289144,4
+handeldabre,26289144,2
+48317152,26289144,4
+Tony_Home,26289144,3
+2769574,26289144,5
+MoaChen,26289144,5
+61935443,26289144,4
+53159039,26289144,2
+evangeline1101,26289144,3
+lovehyun,26289144,5
+4384375,26289144,5
+Mayumi720,26289144,3
+54398755,26289144,4
+46495423,26289144,4
+54222505,26289144,4
+43589213,26289144,3
+40913424,26289144,4
+133496947,26289144,3
+39350933,26289144,4
+66136937,26289144,4
+salooloooo,26289144,2
+1188769,26289144,4
+64747830,26289144,4
+13039939,26289144,4
+ivygreen06,26289144,3
+cuileigiggs,26289144,5
+xcorange,26289144,4
+bonniekillu,26289144,3
+51163790,26289144,5
+122564723,26289144,4
+15500364,26289144,4
+jianguogogo,26289144,1
+75801738,26289144,4
+40434117,26289144,4
+4688494,26289144,-1
+42005534,26289144,5
+2413967,26289144,4
+2839721,26289144,4
+62457079,26289144,5
+meme727,26289144,4
+chuleiwu,26289144,3
+34885746,26289144,3
+dunkkin,26289144,2
+33387754,26289144,5
+44112901,26289144,5
+64589202,26289144,4
+62306156,26289144,5
+xiaobei1116,26289144,3
+ayiduo,26289144,-1
+47476786,26289144,3
+84177108,26289144,4
+81646946,26289144,4
+82445997,26289144,3
+1747503,26289144,3
+crowsz,26289144,5
+44451771,26289144,4
+gaigaiming,26289144,4
+36433281,26289144,4
+64724465,26289144,5
+3934064,26289144,4
+joycema,26289144,-1
+4513908,26289144,4
+shineone,26289144,4
+34479006,26289144,3
+33406946,26289144,3
+xuzhuoya,26289144,3
+130426117,26289144,2
+2986985,26289144,4
+48309167,26289144,4
+xpg0601,26289144,-1
+44659309,26289144,3
+2262962,26289144,3
+62404811,26289144,4
+45453010,26289144,3
+60822392,26289144,-1
+chao87,26289144,3
+lieds,26289144,3
+30269752,26289144,5
+f05041220,26289144,3
+3245625,26289144,3
+59932984,26289144,5
+1960898,26289144,5
+81870071,26289144,4
+dorisbobo,26289144,2
+51208677,26289144,5
+132137179,26289144,3
+38000940,26289144,3
+73530411,26289144,5
+yichunchunshili,26289144,5
+vincent-wen,26289144,4
+JacquelineChun,26289144,4
+48226644,26289144,4
+milanka,26289144,4
+liuweilian,26289144,4
+2766911,26289144,4
+133314962,26289144,2
+53884376,26289144,3
+wyfsmd,26289144,3
+58479235,26289144,5
+90771245,26289144,3
+62775210,26289144,5
+wsgstrike,26289144,5
+49892872,26289144,4
+4132580,26289144,3
+54897892,26289144,3
+34682932,26289144,4
+3608210,26289144,4
+130083039,26289144,4
+Lynnli,26289144,3
+67243233,26289144,4
+43740988,26289144,4
+42507473,26289144,1
+50338654,26289144,3
+ytyyg,26289144,4
+heity,26289144,4
+60660353,26289144,4
+momosen,26289144,4
+40242702,26289144,3
+103220348,26289144,4
+oqy,26289144,4
+ufokaka,26289144,5
+53887174,26289144,4
+skyyang67,26289144,4
+hmwstanley,26289144,5
+58280362,26289144,5
+42933115,26289144,5
+22842369,26289144,5
+4835209,26289144,4
+yiduanhu,26289144,3
+trumpkiller,26289144,4
+55849683,26289144,4
+121800501,26289144,5
+129598785,26289144,4
+49005223,26289144,5
+68287178,26289144,4
+88111059,26289144,3
+56499192,26289144,5
+51181845,26289144,3
+1737190,26289144,4
+daisydann,26289144,4
+Oliviamo,26289144,5
+49515197,26289144,4
+chenjisoler,26289144,4
+132885894,26289144,4
+68692379,26289144,4
+LyleWang,26289144,4
+67908601,26289144,4
+64429364,26289144,4
+Erdbeeren,26289144,4
+17091787,26289144,3
+49441144,26289144,4
+89825581,26289144,3
+125999180,26289144,4
+CWITB,26289144,4
+varywang,26289144,5
+icyci,26289144,4
+lilypure,26289144,3
+131834063,26289144,2
+Mosquito.o,26289144,-1
+yamiyuki,26289144,4
+124552712,26289144,4
+zqsnail121,26289144,4
+62497997,26289144,5
+np68oyster,26289144,5
+48404339,26289144,5
+55690778,26289144,4
+133504188,26289144,4
+104165037,26289144,3
+61212508,26289144,3
+1348086,26289144,-1
+moshangjinfeng,26289144,4
+smilezhangjian,26289144,1
+69152267,26289144,2
+linnaierbaby,26289144,3
+sasiky,26289144,4
+pure_115,26289144,4
+2299899,26289144,4
+55487278,26289144,2
+76154947,26289144,1
+120498095,26289144,3
+63018910,26289144,3
+wusansui,26289144,4
+51490849,26289144,3
+cometoloveme,26289144,4
+66171470,26289144,4
+57938004,26289144,4
+ColinZhang,26289144,3
+4674424,26289144,3
+5592925,26289144,5
+threeholetwo,26289144,3
+1386432,26289144,4
+68124742,26289144,4
+24346390,26289144,2
+54620678,26289144,3
+luzifer,26289144,4
+tracycw618,26289144,3
+102697316,26289144,4
+xmengyao,26289144,3
+64728959,26289144,4
+91009457,26289144,5
+82927538,26289144,1
+119397968,26289144,3
+48717924,26289144,4
+121985201,26289144,4
+45648190,26289144,2
+yuonline,26289144,4
+68621390,26289144,3
+shirleyma,26289144,3
+61570428,26289144,5
+55534462,26289144,5
+manrao,26289144,4
+49860497,26289144,3
+dengchewoman,26289144,4
+butterful,26289144,3
+46266758,26289144,2
+75237378,26289144,4
+47368646,26289144,2
+57460022,26289144,1
+54655578,26289144,3
+bamboowhale,26289144,3
+50719255,26289144,3
+46668535,26289144,4
+Crystal_Dcy,26289144,4
+131304210,26289144,3
+3006148,26289144,5
+2668237,26289144,4
+4620614,26289144,4
+56394106,26289144,4
+huachichi,26289144,4
+zhangxingqiu,26289144,5
+91882596,26289144,5
+xieetuzi,26289144,5
+VieVie,26289144,4
+4383003,26289144,3
+36839358,26289144,4
+2923243,26289144,3
+circircle,26289144,3
+133173153,26289144,4
+xuanquan,26289144,4
+normanzee,26289144,4
+51136126,26289144,4
+2809964,26289144,4
+57850884,26289144,4
+34740851,26289144,5
+57913675,26289144,4
+33019737,26289144,4
+60685540,26289144,5
+issalou,26289144,4
+57743998,26289144,3
+132325937,26289144,4
+49220314,26289144,5
+51909384,26289144,3
+89565486,26289144,3
+61959364,26289144,4
+kakasoul,26289144,4
+istuart,26289144,5
+127343496,26289144,2
+63030684,26289144,2
+3040793,26289144,3
+120945947,26289144,3
+83686297,26289144,5
+53198188,26289144,5
+94390156,26289144,3
+47705439,26289144,3
+TheAnswer_,26289144,5
+4633084,26289144,3
+129503817,26289144,3
+xiexiaobaoai,26289144,4
+elaine0801,26289144,4
+99197795,26289144,4
+120879875,26289144,5
+4434489,26289144,5
+4224058,26289144,4
+lxcumt,26289144,4
+50570726,26289144,4
+42838726,26289144,4
+LeonJunki,26289144,5
+fanfan.fanfan,26289144,-1
+Nothing_Mew,26289144,3
+zombiekid,26289144,3
+83320704,26289144,5
+56638281,26289144,4
+hjt8844,26289144,3
+73532203,26289144,3
+62358486,26289144,5
+43907842,26289144,4
+80193764,26289144,4
+47598972,26289144,4
+91779176,26289144,4
+52626912,26289144,5
+ky1on,26289144,4
+zhoukecheng,26289144,5
+47698383,26289144,3
+86285826,26289144,4
+66717059,26289144,4
+89341129,26289144,5
+66931955,26289144,4
+4492685,26289144,4
+77134253,26289144,4
+junoqi,26289144,4
+52160935,26289144,5
+47170402,26289144,3
+114505500,26289144,5
+54273802,26289144,4
+siren-siren,26289144,4
+60774527,26289144,-1
+81703473,26289144,3
+53318325,26289144,4
+3131452,26289144,-1
+Heaven3,26289144,3
+15439490,26289144,4
+wangboyuan,26289144,4
+37694449,26289144,4
+ishama,26289144,4
+96380564,26289144,3
+Memole_Gaaro,26289144,3
+wangzhy,26289144,3
+41065952,26289144,5
+2621323,26289144,4
+4459976,26289144,3
+wangxiaolu,26289144,3
+miku,26289144,4
+49851482,26289144,5
+Nicky007,26289144,4
+2752290,26289144,4
+xxqxz,26289144,3
+61831900,26289144,4
+58200171,26289144,4
+cathyM,26289144,4
+ll60amo,26289144,4
+2484280,26289144,4
+mypal,26289144,5
+55669081,26289144,4
+46477659,26289144,1
+41606282,26289144,4
+1475172,26289144,3
+65546282,26289144,4
+xiaofei2316,26289144,4
+74849633,26289144,3
+30937887,26289144,3
+47790252,26289144,4
+pengpeng0308,26289144,3
+53086147,26289144,-1
+1248339,26289144,4
+68490960,26289144,4
+4586261,26289144,5
+66980626,26289144,4
+littleshoes,26289144,4
+qiao0711,26289144,2
+PsychoMissSo,26289144,4
+breadforest,26289144,4
+2325631,26289144,5
+53785185,26289144,2
+109648967,26289144,4
+66183182,26289144,3
+cherryucandoit,26289144,5
+62929791,26289144,5
+yoyomei,26289144,4
+23733715,26289144,5
+wanglei962845,26289144,3
+miracleq0614,26289144,5
+56559303,26289144,4
+3306839,26289144,4
+qianchong,26289144,5
+phlunhai,26289144,4
+64459545,26289144,4
+48862073,26289144,2
+sqd080,26289144,5
+yumicom,26289144,4
+49103516,26289144,5
+48188220,26289144,3
+46225547,26289144,4
+lforward,26289144,4
+elevenfang11,26289144,4
+60358393,26289144,3
+34705755,26289144,4
+mango12580,26289144,5
+momoll,26289144,-1
+66447200,26289144,4
+36642309,26289144,4
+pengranpku,26289144,4
+48400740,26289144,3
+60771790,26289144,3
+2841066,26289144,1
+59677707,26289144,4
+xiaowenjuan,26289144,5
+119997164,26289144,3
+48167750,26289144,3
+jiangyuhang,26289144,4
+sunmounstar,26289144,4
+63395166,26289144,4
+yangjing113,26289144,4
+40512144,26289144,3
+43030795,26289144,5
+4362013,26289144,3
+52985598,26289144,3
+73815567,26289144,3
+59257152,26289144,4
+122429753,26289144,3
+47467920,26289144,3
+violetyyx,26289144,4
+125454898,26289144,3
+78062790,26289144,3
+56369223,26289144,4
+serafina0,26289144,-1
+59156667,26289144,2
+49023929,26289144,3
+cocolaugh,26289144,4
+51945136,26289144,4
+moontooth,26289144,4
+61274291,26289144,3
+dancingwind,26289144,4
+elevenzhang,26289144,2
+24219882,26289144,5
+1614995,26289144,5
+2349366,26289144,3
+leaflee,26289144,4
+56706561,26289144,4
+summermaoyi,26289144,3
+47182866,26289144,2
+liyi2015,26289144,4
+hi_season,26289144,4
+outstandinger,26289144,4
+46033479,26289144,-1
+ITASTE,26289144,4
+59580012,26289144,3
+miss8mg,26289144,-1
+119353813,26289144,4
+53282547,26289144,3
+43343642,26289144,4
+45650026,26289144,5
+crzhunikuaile,26289144,4
+49066626,26289144,5
+39543914,26289144,5
+4184169,26289144,3
+3806312,26289144,3
+121471027,26289144,3
+iamfoot,26289144,3
+83421613,26289144,5
+yoaremysunshine,26289144,4
+81895663,26289144,4
+Little-Shaily,26289144,-1
+69037313,26289144,3
+yuyu-money,26289144,3
+mazhijuan,26289144,4
+adagio4400,26289144,5
+1520336,26289144,5
+50956577,26289144,5
+geyongyan,26289144,5
+graygem,26289144,3
+39278293,26289144,4
+127231907,26289144,4
+50352774,26289144,3
+44542969,26289144,4
+4190834,26289144,4
+39580713,26289144,4
+133490729,26289144,5
+67946884,26289144,3
+cerrol,26289144,3
+2502072,26289144,3
+90971309,26289144,4
+45496526,26289144,3
+50413289,26289144,4
+46493353,26289144,4
+RainingDemo,26289144,5
+61052669,26289144,5
+78350906,26289144,1
+47798709,26289144,4
+102832548,26289144,5
+58805947,26289144,4
+63679603,26289144,5
+37698619,26289144,3
+grass_tree,26289144,4
+66281169,26289144,5
+kui12,26289144,4
+phoenixjanezhai,26289144,4
+noroom,26289144,2
+51419980,26289144,4
+sitong7,26289144,5
+xzxyeah,26289144,4
+57750976,26289144,4
+50451911,26289144,4
+38258402,26289144,5
+lelelelelelelel,26289144,-1
+39945133,26289144,2
+uncledark,26289144,2
+lolitazly,26289144,3
+Robbinsun,26289144,3
+62460721,26289144,4
+lwx27,26289144,5
+27891262,26289144,4
+trumpchoo,26289144,4
+67029502,26289144,3
+53386477,26289144,4
+45101640,26289144,3
+chocoqiao,26289144,4
+suannaimao,26289144,5
+jessie1989,26289144,4
+shiguagji,26289144,-1
+117236060,26289144,5
+3306133,26289144,5
+3654230,26289144,4
+46765428,26289144,4
+asan,26289144,4
+69578199,26289144,5
+st1na,26289144,4
+dlup,26289144,3
+68229631,26289144,-1
+56886614,26289144,4
+3150872,26289144,4
+51696794,26289144,4
+51696794,26289144,4
+46257426,26289144,5
+34668649,26289144,3
+54310251,26289144,3
+spnda,26289144,5
+wulang55,26289144,5
+NNNNNian-,26289144,4
+60104150,26289144,5
+36817857,26289144,5
+64280895,26289144,4
+beyond007,26289144,3
+63400230,26289144,4
+phoenix43,26289144,3
+79664454,26289144,4
+2813940,26289144,4
+90675141,26289144,3
+slightkii,26289144,3
+69855682,26289144,4
+48258273,26289144,4
+48371024,26289144,5
+70196595,26289144,5
+huazanggou,26289144,4
+4163899,26289144,5
+43609343,26289144,4
+78833399,26289144,2
+51486008,26289144,3
+sanmudi,26289144,3
+73961921,26289144,4
+94254038,26289144,4
+yukiyuko,26289144,5
+66171228,26289144,4
+54822233,26289144,4
+moon1880,26289144,4
+38302530,26289144,4
+autumndream,26289144,4
+79968326,26289144,5
+lynchor,26289144,5
+66112477,26289144,3
+nefe,26289144,4
+51213466,26289144,4
+pkt1993,26289144,5
+45483566,26289144,5
+2753727,26289144,4
+simin0506,26289144,4
+pinxue,26289144,4
+131587002,26289144,4
+49520952,26289144,4
+4445169,26289144,4
+like9225,26289144,3
+37180503,26289144,3
+1094981,26289144,3
+wunaihuaqi,26289144,4
+42709350,26289144,4
+miraclebear,26289144,3
+16333554,26289144,4
+huangsiqi21,26289144,4
+56723489,26289144,3
+up266,26289144,4
+lamchan,26289144,3
+3628277,26289144,5
+lucifer024,26289144,3
+58294250,26289144,5
+71336777,26289144,5
+heheyuanmengyiu,26289144,4
+66832758,26289144,5
+61551903,26289144,4
+67804670,26289144,4
+farewellyr,26289144,4
+45863268,26289144,5
+50455323,26289144,3
+choushanzi,26289144,3
+76509928,26289144,3
+Fanxia,26289144,4
+95852859,26289144,3
+madjojo,26289144,4
+83074556,26289144,5
+62181246,26289144,4
+LOCass,26289144,4
+yaoxianjun,26289144,2
+41466205,26289144,4
+beibeilaner,26289144,3
+2582296,26289144,3
+83162641,26289144,3
+brofox,26289144,3
+53236505,26289144,5
+71233306,26289144,5
+AstrianZheng,26289144,4
+52320359,26289144,2
+55454529,26289144,4
+55687458,26289144,4
+61849167,26289144,5
+126511623,26289144,4
+cenalarz,26289144,3
+OnlyCoffee,26289144,4
+69295551,26289144,3
+127950412,26289144,4
+63619243,26289144,4
+72035614,26289144,3
+ying823624,26289144,4
+52570392,26289144,4
+52570392,26289144,4
+34043177,26289144,5
+land1314,26289144,4
+sunshinegirl510,26289144,5
+4904327,26289144,4
+58158842,26289144,4
+MissAQ2b,26289144,4
+3114700,26289144,4
+43259429,26289144,3
+62469238,26289144,4
+133031755,26289144,3
+67088127,26289144,4
+102265071,26289144,4
+4242859,26289144,3
+55648856,26289144,4
+80039937,26289144,3
+2304159,26289144,4
+121017690,26289144,5
+cindyqiu90,26289144,5
+62062477,26289144,3
+3684499,26289144,4
+Moyuyu111,26289144,4
+cutelucky,26289144,5
+qxp1015beauty,26289144,3
+caoxiyue,26289144,4
+Halbert-Sun,26289144,5
+78251252,26289144,3
+69995296,26289144,4
+82817021,26289144,4
+61496957,26289144,3
+97474180,26289144,2
+57577112,26289144,4
+132194629,26289144,4
+47257739,26289144,3
+4752185,26289144,5
+120988832,26289144,-1
+1207607,26289144,4
+31133001,26289144,5
+tyxjasmine,26289144,5
+CLOWN9527521,26289144,4
+84719472,26289144,3
+2679870,26289144,5
+49210060,26289144,-1
+90751149,26289144,4
+ch4gas,26289144,3
+97185474,26289144,3
+102819112,26289144,2
+62911366,26289144,4
+vickilovewan,26289144,-1
+herofox,26289144,5
+54639887,26289144,4
+45255137,26289144,4
+geeseken,26289144,4
+1090281,26289144,-1
+8883008,26289144,5
+13036313,26289144,4
+nina1205,26289144,5
+62087328,26289144,3
+74337683,26289144,4
+45506080,26289144,4
+21951726,26289144,3
+59705184,26289144,5
+miykok,26289144,5
+37573301,26289144,2
+48827399,26289144,4
+39829339,26289144,5
+128307157,26289144,3
+81843857,26289144,2
+2935084,26289144,4
+49259090,26289144,5
+15088576,26289144,4
+phyliss,26289144,-1
+licheefish,26289144,3
+79505071,26289144,5
+49903548,26289144,-1
+43188072,26289144,4
+lenneth,26289144,4
+39393150,26289144,-1
+62322446,26289144,5
+2462577,26289144,5
+jin_yu,26289144,1
+aomiz,26289144,5
+xln91,26289144,4
+mues,26289144,4
+71899497,26289144,2
+4587542,26289144,5
+120789660,26289144,-1
+50344552,26289144,4
+Eternal-YOYO,26289144,4
+53828565,26289144,4
+85344130,26289144,4
+ta5200,26289144,4
+dolphin823,26289144,4
+36379679,26289144,2
+4245980,26289144,3
+annerabbit1127,26289144,4
+108837542,26289144,5
+ciseibian,26289144,5
+61326336,26289144,4
+69949041,26289144,4
+57535559,26289144,5
+2985026,26289144,4
+60157427,26289144,4
+Robin-A,26289144,3
+dsdg,26289144,4
+39266502,26289144,5
+56208320,26289144,5
+saylove,26289144,3
+3828576,26289144,4
+3523230,26289144,5
+sillymo,26289144,5
+52268031,26289144,4
+vivi827,26289144,-1
+2619483,26289144,4
+ksgood,26289144,5
+118091163,26289144,4
+3410808,26289144,4
+108176985,26289144,4
+115585914,26289144,4
+60357094,26289144,4
+63029583,26289144,4
+48989146,26289144,5
+54907096,26289144,4
+119592358,26289144,4
+59543064,26289144,5
+silver_soul,26289144,4
+Elenaas,26289144,3
+flora0013,26289144,4
+49772248,26289144,4
+51717187,26289144,4
+3803805,26289144,4
+NeverLate,26289144,3
+35667000,26289144,3
+eden1009,26289144,3
+56981599,26289144,3
+92635717,26289144,5
+97300287,26289144,4
+31884633,26289144,4
+45395995,26289144,5
+xiaoerfuxie,26289144,5
+126183742,26289144,4
+65177243,26289144,4
+84266709,26289144,5
+58401170,26289144,4
+yummy0526,26289144,4
+62261111,26289144,4
+oppih,26289144,4
+engel17,26289144,3
+75865676,26289144,3
+mayacrystal,26289144,4
+46210947,26289144,4
+lytymay,26289144,4
+49251016,26289144,4
+43127616,26289144,5
+39104472,26289144,4
+ioott,26289144,4
+oow00u,26289144,4
+wangrui22,26289144,4
+43293023,26289144,5
+43909652,26289144,-1
+69931189,26289144,4
+2369045,26289144,4
+mrsdarce,26289144,2
+60051498,26289144,5
+19533671,26289144,4
+Sioobhan,26289144,3
+104823216,26289144,4
+69163917,26289144,5
+28418359,26289144,4
+crazyzyq,26289144,3
+122108345,26289144,4
+zaizaiyami,26289144,5
+58075226,26289144,5
+caixinkong,26289144,3
+chachaa,26289144,3
+53182459,26289144,4
+mufanxuanji,26289144,4
+ruohu3094,26289144,5
+rollingpika,26289144,3
+52454819,26289144,5
+ladyorange,26289144,4
+62597862,26289144,4
+xll_xqzhang,26289144,4
+94690176,26289144,3
+59336552,26289144,5
+juyue13,26289144,5
+75347251,26289144,2
+kiki204629,26289144,4
+capricornslythe,26289144,4
+Chivar,26289144,4
+show.huang,26289144,3
+126896295,26289144,5
+lugubrious,26289144,3
+41556922,26289144,4
+45855864,26289144,3
+68010226,26289144,5
+GraceBinbin,26289144,4
+jimxie,26289144,3
+43390539,26289144,5
+Van07,26289144,3
+WXQ-11,26289144,4
+49576668,26289144,4
+chanel0214,26289144,3
+tammysoso,26289144,4
+131858047,26289144,3
+wuxuqian,26289144,3
+63483600,26289144,5
+gracegsmile,26289144,3
+80235268,26289144,4
+absolutelyeve,26289144,5
+vvish,26289144,3
+107805569,26289144,4
+heather0125,26289144,5
+56906475,26289144,5
+67368013,26289144,4
+48718307,26289144,3
+67190853,26289144,4
+56874975,26289144,4
+54258386,26289144,4
+37969517,26289144,1
+37969517,26289144,1
+3561961,26289144,1
+119078867,26289144,3
+2574364,26289144,4
+68078730,26289144,4
+28212620,26289144,4
+29107256,26289144,4
+36791649,26289144,4
+Xiomara,26289144,4
+43814222,26289144,5
+70726088,26289144,5
+kakasissi,26289144,3
+3480125,26289144,4
+vividance,26289144,4
+64345409,26289144,4
+54819049,26289144,3
+dewlance,26289144,4
+cryingcatjojo,26289144,3
+62521772,26289144,4
+littlebao,26289144,4
+68699271,26289144,3
+2536656,26289144,2
+130595719,26289144,3
+57860899,26289144,5
+62576213,26289144,3
+1371839,26289144,5
+dolcelovingdoll,26289144,3
+weevil,26289144,3
+53334499,26289144,4
+sarah_cat,26289144,4
+rrtx,26289144,2
+sophie-july23,26289144,4
+48602760,26289144,4
+116037812,26289144,4
+mu9272,26289144,1
+lianlian0626,26289144,5
+talis_,26289144,3
+xiaoxiaojiuhao,26289144,1
+kianleung,26289144,3
+86947285,26289144,4
+44738037,26289144,4
+maimai251,26289144,3
+omg-_-,26289144,4
+daisyangel,26289144,5
+raoyueroyale,26289144,5
+zoply6227,26289144,5
+43583289,26289144,5
+grayjade,26289144,4
+132988173,26289144,5
+55439689,26289144,-1
+ruanmy,26289144,-1
+2574856,26289144,3
+aniya320,26289144,3
+64068628,26289144,3
+hyukcat,26289144,3
+32609644,26289144,4
+80768370,26289144,4
+juliet428,26289144,4
+vivianpan,26289144,4
+48873217,26289144,3
+36475284,26289144,4
+59807660,26289144,4
+47240344,26289144,5
+44921687,26289144,4
+wlee21,26289144,4
+34851656,26289144,5
+60686030,26289144,5
+62601567,26289144,5
+liushu1987,26289144,3
+120895384,26289144,3
+48143172,26289144,4
+80811868,26289144,5
+65086608,26289144,3
+97061327,26289144,3
+sasuke_villa,26289144,4
+pitianhong,26289144,-1
+iamaprilm,26289144,5
+4338735,26289144,4
+sucowper,26289144,5
+109878041,26289144,5
+73734497,26289144,4
+40613353,26289144,4
+129501673,26289144,3
+lswawabao,26289144,5
+cherrye,26289144,4
+57099981,26289144,5
+67678767,26289144,4
+63483596,26289144,5
+kekedebenzi,26289144,4
+76548979,26289144,4
+69616241,26289144,5
+43300305,26289144,4
+50117993,26289144,4
+48690943,26289144,4
+2196059,26289144,4
+55404773,26289144,3
+uglyaa,26289144,3
+46772296,26289144,5
+xiaohundaban,26289144,4
+15028817,26289144,4
+sunflower87,26289144,4
+124286936,26289144,5
+68778164,26289144,5
+46703879,26289144,-1
+im-ling,26289144,4
+61740435,26289144,5
+62507044,26289144,5
+81937236,26289144,4
+35549531,26289144,4
+flower_ryoo,26289144,5
+120264216,26289144,5
+53152938,26289144,4
+52470854,26289144,4
+130595050,26289144,5
+double_wen,26289144,4
+jszh,26289144,4
+ghostneng,26289144,3
+43908954,26289144,5
+104726855,26289144,5
+liuliuagnes,26289144,3
+graceinjune,26289144,4
+24556429,26289144,5
+Coky.M,26289144,4
+hersilence,26289144,2
+usang,26289144,-1
+67582454,26289144,3
+60344800,26289144,4
+yidagege,26289144,4
+35652268,26289144,3
+Alan59,26289144,5
+rachel1216,26289144,5
+48396383,26289144,5
+58335145,26289144,4
+Coast0to0coast,26289144,4
+34309421,26289144,3
+queenayip,26289144,4
+35054507,26289144,5
+65036153,26289144,5
+53662568,26289144,4
+pipixia1095,26289144,5
+willweiwill,26289144,5
+73807448,26289144,4
+sethqi,26289144,3
+yuyangaiyang,26289144,5
+33629882,26289144,4
+checycc,26289144,3
+42502379,26289144,4
+91252045,26289144,4
+43239303,26289144,1
+48634684,26289144,3
+62540914,26289144,4
+35758256,26289144,5
+68443954,26289144,3
+3435039,26289144,4
+indiepop,26289144,5
+zzy_,26289144,4
+69682298,26289144,3
+119348861,26289144,5
+32711539,26289144,4
+MissLuan,26289144,1
+MissLuan,26289144,1
+nicoleinthecity,26289144,4
+ly_yun811,26289144,4
+Banana_Z,26289144,2
+131845152,26289144,4
+50410126,26289144,4
+78399714,26289144,2
+doublemilk,26289144,5
+Claire_Lovelife,26289144,4
+7101323,26289144,5
+2221077,26289144,4
+action552200,26289144,3
+76765065,26289144,5
+hermitjia,26289144,2
+3705118,26289144,3
+34081510,26289144,2
+55567097,26289144,5
+61829345,26289144,2
+linkoalways,26289144,4
+qiqijing,26289144,5
+wocalei,26289144,3
+130960542,26289144,4
+67125264,26289144,5
+92805867,26289144,4
+63876732,26289144,-1
+Niro-Zeng,26289144,5
+kayin,26289144,-1
+66459035,26289144,5
+WeekendLY,26289144,4
+50079024,26289144,3
+ginstein,26289144,2
+mf,26289144,5
+35015768,26289144,4
+66460349,26289144,2
+28448565,26289144,3
+2311938,26289144,4
+chobitmoon,26289144,4
+97645479,26289144,2
+47187966,26289144,3
+cy1187509594,26289144,4
+xbaba,26289144,4
+yaocu,26289144,4
+lsljctx,26289144,4
+4272051,26289144,3
+NYiXXX,26289144,-1
+sugarsugarcane,26289144,4
+91478241,26289144,3
+47679128,26289144,4
+honeynaga,26289144,2
+skipalong,26289144,4
+49391559,26289144,5
+70569834,26289144,2
+65741899,26289144,4
+2923091,26289144,4
+1666594,26289144,4
+2843251,26289144,4
+79464839,26289144,5
+4571655,26289144,4
+drxiaoshi,26289144,4
+81215779,26289144,1
+supersun1005,26289144,4
+49080885,26289144,3
+50054594,26289144,2
+MAOXIAOCHENG,26289144,3
+77581060,26289144,4
+8982514,26289144,4
+82141965,26289144,4
+3705906,26289144,3
+3312928,26289144,4
+56981380,26289144,3
+8240576,26289144,3
+132919309,26289144,4
+49358081,26289144,4
+37259247,26289144,5
+130993032,26289144,3
+27573979,26289144,4
+13256479,26289144,4
+60577921,26289144,5
+60473991,26289144,5
+46365473,26289144,5
+62779631,26289144,4
+pigSu,26289144,4
+102818452,26289144,5
+sevenready,26289144,4
+65250007,26289144,5
+andyylx,26289144,4
+49553497,26289144,5
+diyer2002,26289144,4
+haccayuki,26289144,3
+43704429,26289144,4
+51587083,26289144,3
+ilovekyoko,26289144,5
+gqhero,26289144,4
+116380571,26289144,4
+64682536,26289144,4
+59860317,26289144,-1
+wupeachfan,26289144,5
+32752627,26289144,4
+3448397,26289144,3
+54182117,26289144,5
+81297479,26289144,4
+53071386,26289144,4
+shijiabeini0701,26289144,3
+haorensisi-,26289144,4
+122273872,26289144,3
+53723765,26289144,5
+81215873,26289144,3
+99696647,26289144,5
+bronzeJ,26289144,-1
+demifun,26289144,5
+56778584,26289144,3
+3544390,26289144,-1
+Hyacinth0333,26289144,3
+31555036,26289144,4
+39899522,26289144,1
+kiralove00,26289144,4
+50494067,26289144,5
+75908452,26289144,3
+oounpan,26289144,4
+125281406,26289144,3
+60415494,26289144,3
+zhanzhan8871,26289144,4
+60563094,26289144,3
+109576871,26289144,3
+2172654,26289144,4
+3689742,26289144,4
+cxmeat,26289144,4
+3024073,26289144,2
+39991969,26289144,4
+37078808,26289144,4
+131502644,26289144,5
+41510845,26289144,4
+laihiukei,26289144,3
+48128593,26289144,5
+Maqqieyaoyao,26289144,4
+58464738,26289144,4
+y19940504,26289144,4
+Ruby-0917,26289144,4
+ashley_ou,26289144,4
+daisy_Ning,26289144,4
+ZhaHuanEr,26289144,5
+48970909,26289144,3
+55765904,26289144,5
+66556998,26289144,4
+gaoshuang1226,26289144,4
+plvangogh,26289144,4
+39399066,26289144,5
+121162406,26289144,3
+suvenee0715,26289144,4
+130651540,26289144,1
+84484396,26289144,4
+94931189,26289144,4
+46632071,26289144,3
+88865433,26289144,3
+snail_l,26289144,3
+59705593,26289144,4
+128167534,26289144,4
+47540119,26289144,4
+56809616,26289144,5
+49876674,26289144,4
+45479973,26289144,-1
+57936671,26289144,3
+4202712,26289144,4
+61020161,26289144,4
+juvenility,26289144,3
+124517309,26289144,5
+drizzlefish,26289144,4
+93666846,26289144,5
+77097269,26289144,5
+yimoyoulan916,26289144,3
+104823115,26289144,4
+avygo,26289144,5
+10236919,26289144,4
+3678176,26289144,4
+43308904,26289144,4
+48534494,26289144,5
+60227516,26289144,3
+sampetter,26289144,3
+85812003,26289144,4
+1764379,26289144,5
+34342480,26289144,4
+BIGTICKET_5,26289144,3
+withzzc,26289144,4
+50668588,26289144,4
+53173594,26289144,4
+dreamed,26289144,4
+33944850,26289144,4
+VALLA,26289144,4
+59110822,26289144,4
+3671744,26289144,4
+54449435,26289144,4
+70688998,26289144,4
+justsmaki,26289144,4
+Hey_825,26289144,4
+mikapanda,26289144,4
+101792652,26289144,5
+38819398,26289144,4
+10345879,26289144,3
+98094232,26289144,3
+r20085,26289144,4
+36643443,26289144,4
+Feola,26289144,3
+53373767,26289144,4
+64198371,26289144,5
+3177593,26289144,2
+gaizadizadi,26289144,4
+idolt,26289144,5
+132230547,26289144,3
+64858326,26289144,3
+69943400,26289144,3
+46481404,26289144,4
+4056994,26289144,4
+107570827,26289144,3
+natsurialice,26289144,4
+hemu7,26289144,4
+46737262,26289144,3
+44499287,26289144,5
+3667791,26289144,-1
+62004006,26289144,5
+zqy931213,26289144,4
+beelover,26289144,5
+46153046,26289144,4
+108372489,26289144,5
+46505445,26289144,4
+y.u,26289144,4
+18318076,26289144,4
+44275428,26289144,3
+87907452,26289144,5
+33762856,26289144,3
+62658767,26289144,4
+75217622,26289144,4
+seanxftkesha,26289144,4
+caiwoshishei,26289144,4
+allenyoung1205,26289144,4
+2077590,26289144,4
+4724177,26289144,4
+125203567,26289144,4
+46907907,26289144,4
+daiyuxuan,26289144,3
+91038711,26289144,5
+53499705,26289144,5
+1936012,26289144,4
+53565685,26289144,4
+58231390,26289144,3
+Lafei,26289144,4
+3303499,26289144,3
+sunxiaomeisun,26289144,4
+48743342,26289144,4
+grammarbai,26289144,4
+brbaarlab,26289144,4
+49216618,26289144,4
+83745562,26289144,3
+120833883,26289144,4
+4402268,26289144,3
+nanacancer,26289144,5
+NJYSL,26289144,1
+97904839,26289144,4
+Commander_TNT,26289144,5
+3792853,26289144,5
+1252327,26289144,4
+49449139,26289144,5
+59929388,26289144,1
+yikouerren,26289144,5
+yogar0206,26289144,4
+77824438,26289144,4
+85375875,26289144,4
+51692061,26289144,4
+theshow,26289144,3
+choppernini,26289144,4
+47150701,26289144,4
+se7en8736,26289144,4
+64455785,26289144,4
+130115967,26289144,3
+hdfairy,26289144,4
+wangdaoyang,26289144,5
+62492665,26289144,3
+mengmengdong,26289144,5
+62201501,26289144,4
+SeanYuan,26289144,4
+51197261,26289144,4
+s.e.t,26289144,4
+43430592,26289144,-1
+35087373,26289144,3
+amber0517,26289144,5
+55822752,26289144,5
+41317902,26289144,3
+58848925,26289144,3
+18030717,26289144,1
+jxcc,26289144,3
+3178442,26289144,4
+devilxuxu,26289144,5
+4214646,26289144,4
+duotian,26289144,5
+128299048,26289144,1
+49775406,26289144,4
+otnemem,26289144,4
+65557891,26289144,5
+132019921,26289144,4
+MrVeritas,26289144,3
+79135858,26289144,4
+21212589,26289144,3
+1561355,26289144,3
+chancius,26289144,5
+destinyzhao,26289144,3
+51331893,26289144,4
+4291484,26289144,4
+128909653,26289144,5
+wanyaozhe,26289144,4
+56431276,26289144,4
+3173862,26289144,-1
+eeleel,26289144,2
+starheart0314,26289144,5
+colarxu,26289144,4
+78507863,26289144,5
+35806544,26289144,4
+youandmekizuna,26289144,3
+concerto,26289144,3
+youngstein,26289144,5
+46540910,26289144,4
+48778738,26289144,5
+11017625,26289144,3
+levislong,26289144,4
+moyee_sky,26289144,5
+122844148,26289144,3
+50595621,26289144,5
+97163098,26289144,4
+4088278,26289144,5
+linsiyi,26289144,3
+42424668,26289144,2
+119490298,26289144,4
+48871743,26289144,3
+26991074,26289144,2
+91575456,26289144,4
+4698536,26289144,4
+47722518,26289144,4
+halisansan,26289144,4
+56089884,26289144,4
+67972636,26289144,5
+40336952,26289144,4
+127783550,26289144,5
+dylite,26289144,5
+70042257,26289144,5
+127802556,26289144,4
+2481357,26289144,4
+64203397,26289144,4
+zolene,26289144,3
+120020819,26289144,3
+72324878,26289144,5
+125587234,26289144,4
+zisic,26289144,4
+4056710,26289144,4
+49892458,26289144,3
+3794173,26289144,2
+49772004,26289144,3
+129137237,26289144,5
+40890018,26289144,5
+yysimida,26289144,4
+29755688,26289144,4
+95191376,26289144,5
+66967497,26289144,4
+abbeyssss,26289144,2
+47703488,26289144,5
+55365435,26289144,4
+princegemini,26289144,5
+37818937,26289144,-1
+75863573,26289144,4
+4840151,26289144,4
+lolitayan,26289144,3
+13038456,26289144,4
+anz1994,26289144,4
+50703946,26289144,3
+53222149,26289144,4
+Mollykhalil,26289144,3
+wildcatyc,26289144,4
+57564658,26289144,4
+ya45010424,26289144,4
+70033159,26289144,4
+59956259,26289144,3
+54364422,26289144,3
+Arielgogo,26289144,5
+47243051,26289144,3
+xiaoyangtong,26289144,-1
+1995910,26289144,3
+phoenixtre,26289144,4
+46482640,26289144,3
+monkeysuncarol,26289144,5
+yexingdexiaoji,26289144,3
+69164185,26289144,4
+48057004,26289144,5
+2577981,26289144,4
+46234987,26289144,4
+4428761,26289144,4
+71718481,26289144,5
+47541380,26289144,5
+Josephine.R,26289144,4
+84889272,26289144,5
+Vivien9,26289144,4
+79667003,26289144,4
+123469142,26289144,3
+teng.,26289144,3
+120256612,26289144,3
+132716287,26289144,4
+122227856,26289144,5
+cheng-hang,26289144,4
+83094887,26289144,3
+132772142,26289144,3
+49907555,26289144,5
+HiLetitia,26289144,1
+covering,26289144,4
+105325845,26289144,4
+49273916,26289144,4
+greenliam,26289144,-1
+68020683,26289144,3
+59582325,26289144,5
+haoxue119,26289144,4
+69514426,26289144,1
+just_yeat,26289144,5
+40901036,26289144,4
+63334497,26289144,3
+119951362,26289144,4
+64885985,26289144,5
+poet540,26289144,3
+5605006,26289144,4
+cysbaby,26289144,5
+76771403,26289144,3
+55790945,26289144,3
+2466591,26289144,3
+gala9394,26289144,4
+38257497,26289144,4
+summersure,26289144,5
+scha-_-,26289144,5
+cristiana,26289144,5
+67686027,26289144,4
+59126747,26289144,4
+mopatient,26289144,4
+104519003,26289144,5
+39083254,26289144,-1
+123025932,26289144,1
+34948612,26289144,4
+BlueSpica,26289144,4
+BlueSpica,26289144,4
+scheny,26289144,4
+X_S,26289144,4
+3002507,26289144,3
+27248924,26289144,4
+zhaodancuc,26289144,3
+67512191,26289144,4
+73445722,26289144,4
+miaoza,26289144,3
+cynthia3922,26289144,3
+94004363,26289144,4
+50998379,26289144,4
+60885863,26289144,5
+qing312115,26289144,5
+hijoly,26289144,5
+46866646,26289144,4
+1485397,26289144,3
+103247038,26289144,3
+ryozth,26289144,3
+Qyaoyao,26289144,-1
+81985882,26289144,4
+79420252,26289144,3
+63503398,26289144,5
+4114969,26289144,3
+celes,26289144,4
+55769530,26289144,4
+Miss_Flower_,26289144,4
+deepe,26289144,3
+52912743,26289144,4
+63579329,26289144,4
+harukimlee,26289144,1
+ilikebluewater,26289144,4
+45103690,26289144,4
+55479724,26289144,3
+50319429,26289144,4
+50071267,26289144,5
+4454517,26289144,5
+GracieG,26289144,-1
+4245898,26289144,5
+ecane,26289144,3
+51192966,26289144,3
+hazelhsu,26289144,3
+57869776,26289144,4
+sharkstyle,26289144,5
+cedrical,26289144,5
+lisa91l,26289144,3
+62773794,26289144,5
+78824064,26289144,4
+91322725,26289144,3
+kkguagangqin,26289144,3
+jashia,26289144,5
+licinda,26289144,3
+63618390,26289144,4
+monkwuwei,26289144,3
+56584924,26289144,3
+78828351,26289144,5
+sophiafei,26289144,5
+51697302,26289144,3
+34724313,26289144,4
+chezhenshuai,26289144,4
+tsuiwingsan,26289144,5
+60020373,26289144,4
+132100276,26289144,4
+3268751,26289144,4
+61938788,26289144,3
+54153772,26289144,4
+61272937,26289144,5
+55910584,26289144,4
+leo2009-12,26289144,4
+atsatyr,26289144,4
+96858523,26289144,4
+130526552,26289144,5
+2216486,26289144,2
+46483875,26289144,4
+131591198,26289144,5
+lantares,26289144,4
+65669464,26289144,5
+50431248,26289144,3
+57214774,26289144,4
+48846649,26289144,3
+48846649,26289144,3
+45623979,26289144,5
+ladygoodman,26289144,4
+neverland1210,26289144,5
+partitolavlife,26289144,5
+76135504,26289144,4
+68678476,26289144,2
+8276480,26289144,5
+45331089,26289144,4
+1264109,26289144,3
+9881266,26289144,4
+11704802,26289144,3
+lpor,26289144,5
+74390608,26289144,4
+trainezyy,26289144,4
+77305343,26289144,5
+14042957,26289144,4
+34553514,26289144,4
+3043976,26289144,4
+65957374,26289144,4
+bearhearted,26289144,5
+beomi,26289144,5
+miss_syh,26289144,4
+levin815,26289144,4
+pioneerchang,26289144,4
+57490228,26289144,2
+53824348,26289144,5
+39985476,26289144,4
+43902892,26289144,4
+wanziphoto,26289144,3
+35238754,26289144,3
+kelvinshaw,26289144,3
+131726078,26289144,4
+Hans_Du,26289144,4
+zy04154,26289144,4
+68518544,26289144,5
+61930978,26289144,4
+eriol1987,26289144,5
+4329878,26289144,-1
+jzhshow,26289144,4
+40328329,26289144,4
+70349673,26289144,3
+37228447,26289144,2
+64095116,26289144,4
+49750852,26289144,5
+44376011,26289144,5
+MMMFish,26289144,3
+132506140,26289144,4
+keikogfy,26289144,5
+10045748,26289144,4
+59170101,26289144,3
+74872914,26289144,3
+3141648,26289144,4
+57903009,26289144,4
+seventian,26289144,3
+38869173,26289144,5
+mengwei0205,26289144,4
+39951618,26289144,4
+yufeichen,26289144,5
+mola,26289144,4
+woollen50,26289144,5
+Lily72,26289144,4
+ChenYufei,26289144,5
+63283920,26289144,5
+thegreatblueyon,26289144,5
+71350146,26289144,4
+Andy_Shan,26289144,-1
+candyhorse,26289144,4
+brutwater,26289144,3
+129506516,26289144,2
+violetbooks,26289144,5
+stuaid,26289144,4
+121288261,26289144,4
+53353162,26289144,4
+37676493,26289144,3
+wl22188,26289144,2
+60446322,26289144,3
+68864457,26289144,3
+63680376,26289144,5
+122399571,26289144,5
+fortanxu,26289144,4
+GraceChow,26289144,3
+renmaomao,26289144,5
+60773482,26289144,4
+anxin817,26289144,4
+88177370,26289144,5
+yin888888,26289144,-1
+renyuanstella,26289144,4
+4583369,26289144,3
+vampireUK,26289144,4
+44884786,26289144,4
+V-anilla,26289144,4
+tiramisu1314,26289144,4
+lollipopwyj,26289144,5
+54191288,26289144,4
+40567146,26289144,5
+AAGban,26289144,5
+C.S.J,26289144,3
+4283595,26289144,5
+42557719,26289144,4
+melzy,26289144,4
+38494486,26289144,4
+futurecoke,26289144,3
+David07,26289144,5
+Fay59,26289144,3
+4288348,26289144,4
+55325388,26289144,4
+JennyDingding,26289144,4
+133253983,26289144,4
+81745530,26289144,4
+sarahbuxia,26289144,5
+61033806,26289144,4
+tarotarotaro,26289144,4
+mullerlahm,26289144,5
+lucky_sm,26289144,4
+26985231,26289144,5
+50749706,26289144,5
+pengyuwa,26289144,4
+83993012,26289144,4
+52615900,26289144,4
+carolye,26289144,4
+119311949,26289144,4
+4571269,26289144,3
+108253828,26289144,5
+72171780,26289144,5
+55643287,26289144,4
+27951374,26289144,4
+128390764,26289144,3
+63629111,26289144,4
+97313895,26289144,4
+16814663,26289144,4
+3529966,26289144,-1
+zi.yin,26289144,4
+61682333,26289144,4
+illiteracy,26289144,4
+70039599,26289144,-1
+54883486,26289144,4
+80734129,26289144,3
+131090543,26289144,4
+48167301,26289144,3
+58622210,26289144,4
+102908568,26289144,5
+88867964,26289144,4
+58254446,26289144,2
+124091634,26289144,3
+Daryl,26289144,4
+53319390,26289144,4
+thistle_,26289144,4
+40105202,26289144,2
+67619742,26289144,4
+58924801,26289144,3
+37229132,26289144,4
+pipipapa,26289144,4
+QQYoung,26289144,-1
+41680917,26289144,5
+nuttybamboo,26289144,4
+37669601,26289144,4
+pp521,26289144,4
+43120723,26289144,3
+15054453,26289144,3
+48398238,26289144,5
+leeois,26289144,2
+60516596,26289144,3
+49154020,26289144,4
+51492643,26289144,5
+85671125,26289144,4
+64515288,26289144,4
+87987289,26289144,5
+53479679,26289144,3
+40474222,26289144,4
+57907537,26289144,4
+nakunamanihong,26289144,4
+131206597,26289144,4
+53996515,26289144,5
+2206067,26289144,4
+stigmas,26289144,4
+davidgu,26289144,5
+62780296,26289144,5
+34312027,26289144,5
+52765669,26289144,4
+ustyle,26289144,4
+neverlandIvy,26289144,5
+68453321,26289144,5
+2005602,26289144,3
+30061604,26289144,4
+124847125,26289144,5
+54143306,26289144,5
+77577340,26289144,4
+72948360,26289144,3
+121525520,26289144,5
+96523797,26289144,3
+elmsley,26289144,3
+HarryBabel,26289144,3
+1224270,26289144,4
+lophiexu,26289144,5
+37141561,26289144,4
+122073792,26289144,5
+49917088,26289144,4
+68242891,26289144,3
+57059547,26289144,3
+55846038,26289144,3
+62352485,26289144,5
+126341666,26289144,4
+79927646,26289144,5
+che1989,26289144,4
+21857316,26289144,4
+70912936,26289144,5
+55314641,26289144,4
+95416047,26289144,3
+take_me_away,26289144,4
+60701395,26289144,5
+48066756,26289144,4
+xiaochener,26289144,4
+90674363,26289144,2
+ljysincella,26289144,4
+29839010,26289144,4
+130069802,26289144,4
+38615886,26289144,4
+75325570,26289144,4
+3541131,26289144,4
+qiue-,26289144,4
+63684409,26289144,3
+79613402,26289144,1
+nowood,26289144,4
+YVANFUS,26289144,4
+4102507,26289144,4
+67288088,26289144,3
+xqyamour,26289144,4
+53791497,26289144,3
+46009385,26289144,3
+87308057,26289144,3
+100234092,26289144,4
+120741265,26289144,5
+star027,26289144,4
+ying2015,26289144,5
+103499118,26289144,4
+68947670,26289144,5
+44618769,26289144,3
+twelve1234,26289144,5
+ganx,26289144,5
+shein,26289144,4
+monser,26289144,4
+45291333,26289144,4
+45984681,26289144,4
+47434523,26289144,3
+4266482,26289144,4
+36359811,26289144,4
+61597899,26289144,5
+44705986,26289144,3
+66585349,26289144,4
+44010990,26289144,4
+77033669,26289144,4
+69234532,26289144,4
+51947951,26289144,4
+lyojue,26289144,3
+54770085,26289144,4
+ilkay,26289144,2
+TriangelT,26289144,2
+37567847,26289144,3
+4496437,26289144,3
+28830621,26289144,3
+4043337,26289144,5
+3764716,26289144,5
+43248795,26289144,4
+98710059,26289144,5
+54055888,26289144,-1
+125845842,26289144,4
+51075041,26289144,5
+37369275,26289144,4
+57266286,26289144,5
+oneparty,26289144,3
+taoyataozi,26289144,5
+42987999,26289144,4
+79133159,26289144,5
+34990836,26289144,3
+56241501,26289144,4
+fylq,26289144,3
+antebellum,26289144,4
+115501579,26289144,3
+2527162,26289144,2
+70432324,26289144,3
+sadmicky,26289144,3
+54374544,26289144,3
+31573360,26289144,4
+64682658,26289144,4
+100497038,26289144,4
+39168659,26289144,4
+voidintovoid,26289144,4
+peaceup,26289144,3
+3540779,26289144,-1
+46330086,26289144,3
+MaxDing,26289144,4
+Sillygril,26289144,3
+52446058,26289144,5
+74698401,26289144,3
+120061371,26289144,3
+43680554,26289144,1
+wrj_mm,26289144,4
+cristinali,26289144,4
+122578407,26289144,4
+64056125,26289144,3
+sdp1037,26289144,4
+cxh19920714,26289144,4
+126853809,26289144,5
+121927065,26289144,5
+47621269,26289144,4
+67525276,26289144,4
+49704716,26289144,3
+4284541,26289144,4
+83017477,26289144,3
+133266692,26289144,5
+53233117,26289144,-1
+47558422,26289144,5
+linlin009006,26289144,4
+7208916,26289144,3
+whereislaser,26289144,2
+63278150,26289144,4
+scutxc,26289144,5
+fzhizhi,26289144,4
+18555862,26289144,4
+shabaor,26289144,4
+50086256,26289144,4
+128391075,26289144,3
+37565952,26289144,4
+timestrawberry,26289144,4
+crea,26289144,4
+51749125,26289144,3
+MaiC,26289144,4
+69297807,26289144,3
+slimseven,26289144,3
+yiasong,26289144,4
+62950191,26289144,3
+82353804,26289144,4
+wanzi623,26289144,4
+63336838,26289144,4
+87587366,26289144,3
+57317640,26289144,5
+64681992,26289144,5
+81311883,26289144,5
+104373100,26289144,4
+74073772,26289144,4
+4228858,26289144,4
+127406348,26289144,3
+122351676,26289144,5
+132799759,26289144,5
+56163108,26289144,4
+3548787,26289144,3
+99296692,26289144,3
+37729341,26289144,4
+dianatown,26289144,4
+3856901,26289144,4
+56160592,26289144,4
+qc1994,26289144,5
+zq8870690207,26289144,4
+53560146,26289144,5
+jiangmingji,26289144,5
+119804879,26289144,5
+52473311,26289144,5
+84564093,26289144,4
+3846089,26289144,5
+chrislovefive,26289144,4
+120653240,26289144,4
+36923461,26289144,4
+SummerChen,26289144,3
+88509619,26289144,3
+76388450,26289144,3
+heitao-1991,26289144,4
+litesoar,26289144,3
+35079608,26289144,4
+3072724,26289144,3
+locolee,26289144,4
+canace_wang,26289144,5
+AnYang1998,26289144,4
+homecat1983,26289144,4
+lihui_tiger,26289144,5
+81840653,26289144,5
+66109305,26289144,5
+2385119,26289144,4
+52403650,26289144,3
+corona92cml,26289144,5
+corona92cml,26289144,5
+fionaxs921,26289144,5
+46454476,26289144,5
+isss,26289144,3
+112387290,26289144,4
+131484513,26289144,5
+109355717,26289144,4
+quaner1126,26289144,-1
+52113418,26289144,4
+35578162,26289144,4
+ashura0509,26289144,5
+qianhenbangye,26289144,5
+colisa,26289144,3
+2902526,26289144,3
+limpidness,26289144,4
+xianxiantutu,26289144,4
+evanasa,26289144,4
+46510728,26289144,5
+3672200,26289144,5
+120296136,26289144,4
+15317212,26289144,5
+wangdahe,26289144,4
+44622528,26289144,4
+57126975,26289144,4
+doudouhu,26289144,4
+x18304373131,26289144,4
+63417408,26289144,5
+3509926,26289144,2
+132115433,26289144,4
+4643817,26289144,1
+Cdzy,26289144,-1
+65183183,26289144,2
+99372754,26289144,5
+114011906,26289144,4
+minschant,26289144,5
+51793957,26289144,3
+61608869,26289144,4
+46387207,26289144,4
+69300648,26289144,5
+86615375,26289144,5
+115553057,26289144,2
+122154980,26289144,5
+zepwhen,26289144,5
+vivi_weiwei,26289144,4
+35670488,26289144,3
+JudyItalia,26289144,4
+2435169,26289144,3
+WXbmouth,26289144,5
+Max_Lynn,26289144,5
+PennyZZZZZ,26289144,5
+wongelephant,26289144,4
+impzz,26289144,4
+65723826,26289144,4
+missaaa,26289144,-1
+50906727,26289144,4
+junyaomilk,26289144,3
+3297287,26289144,4
+Agen-Long,26289144,5
+sukimushroom,26289144,3
+55822917,26289144,3
+weiqinya,26289144,4
+cici1223s,26289144,5
+34015028,26289144,4
+3363416,26289144,3
+34969112,26289144,4
+sunflower37,26289144,2
+127131340,26289144,3
+133416600,26289144,4
+sslcfss,26289144,4
+50420337,26289144,3
+62141246,26289144,5
+63928716,26289144,3
+130119581,26289144,5
+hidemyhead,26289144,4
+60907049,26289144,3
+pws2008,26289144,4
+50066885,26289144,4
+32907397,26289144,3
+mimienn,26289144,4
+94585344,26289144,5
+74237278,26289144,3
+hxmmzl,26289144,4
+129338978,26289144,3
+dan_83_83,26289144,4
+127102772,26289144,3
+73764109,26289144,4
+100622662,26289144,4
+67805960,26289144,3
+4884094,26289144,-1
+36471251,26289144,4
+52238757,26289144,2
+121430525,26289144,4
+62475981,26289144,4
+Mangocc,26289144,4
+58040832,26289144,4
+71086413,26289144,3
+vinnywang,26289144,4
+daisyu17,26289144,5
+74249669,26289144,4
+56251899,26289144,5
+mimizang,26289144,3
+ggrabbit,26289144,3
+57754572,26289144,5
+vhuangdao,26289144,3
+44176282,26289144,3
+4506723,26289144,2
+119356731,26289144,4
+8087992,26289144,4
+43952815,26289144,5
+123095182,26289144,5
+121756392,26289144,3
+burnlock,26289144,4
+carol1990,26289144,4
+45246348,26289144,4
+115775879,26289144,5
+97434116,26289144,4
+maoamaoa,26289144,4
+68759948,26289144,3
+48381234,26289144,4
+112826946,26289144,4
+43046100,26289144,3
+fatboydontcry,26289144,4
+Goo0ooD,26289144,2
+49382185,26289144,4
+4202021,26289144,5
+79409541,26289144,3
+51558823,26289144,4
+50072807,26289144,4
+chenshuang120,26289144,3
+132166609,26289144,3
+57986340,26289144,3
+39977560,26289144,4
+2244914,26289144,4
+agpaper,26289144,5
+kathy1105,26289144,3
+69937371,26289144,1
+zealforu,26289144,4
+snowintheheaven,26289144,2
+2998980,26289144,4
+58004886,26289144,5
+doralikesemon,26289144,3
+133386536,26289144,4
+2809719,26289144,5
+57977167,26289144,3
+58403534,26289144,3
+50627941,26289144,5
+41575985,26289144,5
+27304409,26289144,4
+lovingmomo,26289144,3
+sophiablanc,26289144,5
+80010614,26289144,5
+3615093,26289144,3
+32977496,26289144,4
+enjoysmile,26289144,4
+65716303,26289144,5
+minsi,26289144,4
+45391255,26289144,3
+83302405,26289144,3
+11105664,26289144,5
+97421565,26289144,5
+djoko,26289144,4
+59029832,26289144,4
+waityoualex,26289144,4
+41873904,26289144,4
+poohye,26289144,3
+32501368,26289144,3
+37509961,26289144,5
+46881440,26289144,5
+Alien_shin,26289144,3
+73675216,26289144,1
+122858309,26289144,4
+83116719,26289144,5
+49749063,26289144,4
+wangbingyu,26289144,4
+22811115,26289144,3
+14306703,26289144,4
+yeluozeyu,26289144,4
+45449016,26289144,4
+echo0402,26289144,4
+130613741,26289144,5
+luxiaona,26289144,5
+witchtina,26289144,5
+4514677,26289144,3
+49227246,26289144,4
+43080143,26289144,3
+42842033,26289144,5
+120286837,26289144,4
+58523222,26289144,3
+84983836,26289144,5
+mycio,26289144,4
+3619917,26289144,3
+Lilyheshit,26289144,4
+119631821,26289144,5
+DGF_Olivia,26289144,5
+119731025,26289144,5
+52755966,26289144,1
+54887603,26289144,4
+47063315,26289144,4
+momodd1314,26289144,4
+54184798,26289144,3
+45055967,26289144,5
+124979804,26289144,4
+Hfun33,26289144,4
+102203140,26289144,4
+49672172,26289144,1
+67945656,26289144,3
+lovejidi,26289144,3
+129698032,26289144,5
+57980292,26289144,5
+120797263,26289144,5
+57379426,26289144,3
+43506488,26289144,4
+63785506,26289144,3
+53992241,26289144,5
+liyajing1987,26289144,4
+shishiamz,26289144,4
+TangJing1229,26289144,4
+3171382,26289144,5
+hehudie13,26289144,3
+64186568,26289144,4
+77351180,26289144,4
+75825284,26289144,3
+empfan,26289144,4
+64886603,26289144,5
+57871688,26289144,4
+momon1900,26289144,4
+jpink9095,26289144,5
+59538557,26289144,3
+4398601,26289144,5
+rlonger,26289144,4
+99126872,26289144,4
+61714365,26289144,1
+2180378,26289144,5
+couple1314,26289144,4
+89944772,26289144,4
+fish_zhao,26289144,3
+hellomo,26289144,5
+bettermeloveme,26289144,5
+SUSU19940314,26289144,4
+59855986,26289144,4
+ahrainding,26289144,3
+45482570,26289144,3
+62241233,26289144,3
+xianya,26289144,5
+90587640,26289144,4
+74890087,26289144,5
+119225016,26289144,3
+73848826,26289144,3
+53399092,26289144,5
+120996063,26289144,4
+42799171,26289144,4
+wangxiaopi,26289144,5
+48650510,26289144,4
+52583509,26289144,4
+79011828,26289144,5
+joecharade,26289144,3
+133402204,26289144,5
+tearmap,26289144,5
+81450549,26289144,3
+58487988,26289144,3
+4092203,26289144,5
+jujuxiii,26289144,3
+49783661,26289144,4
+migege,26289144,4
+47474761,26289144,2
+79086916,26289144,4
+76331633,26289144,4
+2726500,26289144,4
+64103380,26289144,5
+48948976,26289144,4
+49002133,26289144,3
+56792528,26289144,4
+14753496,26289144,5
+3131703,26289144,4
+52157367,26289144,3
+48210757,26289144,3
+42466915,26289144,4
+60559982,26289144,4
+yamina_won,26289144,4
+55304770,26289144,3
+evanyoung,26289144,3
+72552409,26289144,4
+61351436,26289144,5
+33534935,26289144,4
+4227842,26289144,5
+3501312,26289144,4
+69790961,26289144,5
+togetherhere,26289144,5
+56325708,26289144,5
+63322339,26289144,4
+3833266,26289144,4
+yoyoloveyou,26289144,4
+126281906,26289144,4
+59551413,26289144,3
+xiaoggggggg,26289144,4
+4590334,26289144,3
+108651557,26289144,5
+103928221,26289144,1
+foreversleepy,26289144,4
+131209116,26289144,5
+104409838,26289144,3
+puddingcon,26289144,4
+cleonrui,26289144,5
+60378305,26289144,5
+miffychen0,26289144,5
+99863115,26289144,4
+87943711,26289144,5
+68872792,26289144,4
+xyz0805,26289144,5
+35681480,26289144,5
+72113417,26289144,5
+69776335,26289144,3
+A_jYOU,26289144,-1
+38989368,26289144,5
+45595430,26289144,4
+127466089,26289144,3
+57805220,26289144,3
+46596043,26289144,5
+xiaoyu86,26289144,4
+130949529,26289144,5
+1582144,26289144,3
+64351947,26289144,3
+3936900,26289144,4
+michelleorz,26289144,5
+youtiaoc,26289144,4
+AfterElev,26289144,5
+48555554,26289144,2
+snowonpath,26289144,4
+54774329,26289144,4
+Usagittl,26289144,3
+49217265,26289144,2
+2709381,26289144,2
+129742273,26289144,4
+21333781,26289144,3
+54826002,26289144,3
+3846053,26289144,5
+121002785,26289144,4
+83372523,26289144,3
+2165400,26289144,3
+xiaoleizi11,26289144,5
+Lily_Loves_lily,26289144,5
+53910242,26289144,3
+34784245,26289144,4
+Swangshu,26289144,3
+crazy0527,26289144,3
+3753878,26289144,3
+121397488,26289144,3
+water_ame,26289144,3
+mangguolao,26289144,5
+64622433,26289144,3
+54092067,26289144,4
+2451603,26289144,5
+97537742,26289144,4
+56953846,26289144,4
+48525140,26289144,3
+h_deanz,26289144,3
+61276700,26289144,4
+132958067,26289144,2
+93137817,26289144,4
+72118269,26289144,3
+fleeting1990,26289144,5
+lsytoin,26289144,4
+62736610,26289144,3
+3439451,26289144,3
+58113364,26289144,4
+51600146,26289144,4
+CCCCCCXU,26289144,5
+kingiknow,26289144,4
+41899297,26289144,3
+yuwenzhilian,26289144,5
+51850051,26289144,5
+23981651,26289144,5
+4303543,26289144,4
+56460053,26289144,5
+struggle_utopia,26289144,5
+iae,26289144,4
+camtton,26289144,4
+1521470,26289144,3
+104551226,26289144,3
+76412547,26289144,3
+dorian-grey,26289144,5
+44561738,26289144,4
+qingwood,26289144,3
+69441215,26289144,5
+119632712,26289144,3
+76535928,26289144,4
+45584880,26289144,3
+lihl,26289144,3
+44462024,26289144,5
+67117129,26289144,5
+45016565,26289144,5
+65844601,26289144,3
+69954925,26289144,5
+132844308,26289144,2
+maimaibupang,26289144,3
+43326393,26289144,4
+2646878,26289144,4
+53103122,26289144,5
+57979094,26289144,3
+1504581,26289144,4
+43697952,26289144,5
+83411107,26289144,5
+59903184,26289144,5
+54676136,26289144,4
+54594576,26289144,4
+chonger3507,26289144,5
+76458871,26289144,4
+63575206,26289144,4
+bendanguangguan,26289144,4
+132454261,26289144,4
+46845276,26289144,4
+diyuduck,26289144,5
+sidneylumet,26289144,3
+Ashboo,26289144,4
+130353620,26289144,3
+hollydoyle,26289144,4
+3232896,26289144,4
+74532007,26289144,5
+59669866,26289144,4
+60877433,26289144,3
+56102108,26289144,4
+58959538,26289144,5
+50559320,26289144,5
+71450042,26289144,3
+xiaoyedeguo,26289144,5
+cynthiazhang_,26289144,5
+61807648,26289144,2
+58544664,26289144,4
+99414276,26289144,3
+uniking,26289144,5
+60586093,26289144,4
+58248860,26289144,4
+57800655,26289144,4
+65099915,26289144,4
+72946203,26289144,3
+weepbird,26289144,5
+49308867,26289144,4
+2625768,26289144,4
+waifong,26289144,5
+fengshurui,26289144,-1
+anshangwennuan,26289144,3
+56919674,26289144,4
+49246032,26289144,4
+51784477,26289144,3
+ciciarea,26289144,5
+3523793,26289144,3
+52184872,26289144,3
+59493620,26289144,3
+50655031,26289144,5
+sooooola,26289144,-1
+43429533,26289144,5
+49912968,26289144,4
+americanidiot,26289144,5
+lotawakaa,26289144,3
+49187525,26289144,4
+gxx305,26289144,3
+moliye,26289144,5
+46342079,26289144,4
+102606012,26289144,2
+48564928,26289144,3
+30563135,26289144,3
+85120995,26289144,4
+44996853,26289144,4
+2965888,26289144,3
+63351658,26289144,3
+128308502,26289144,4
+127457458,26289144,3
+tabisaikou,26289144,5
+42431883,26289144,4
+32223373,26289144,3
+128128403,26289144,4
+godlovebearxi,26289144,4
+119451467,26289144,-1
+3366588,26289144,5
+hhhhhhn,26289144,4
+summer_naci,26289144,5
+36350346,26289144,4
+lyingcream,26289144,4
+56758013,26289144,4
+71980617,26289144,3
+michelle315327,26289144,4
+cheerclaire,26289144,5
+74587086,26289144,4
+61830049,26289144,4
+58020700,26289144,5
+73765648,26289144,4
+57564674,26289144,5
+60072794,26289144,5
+84306807,26289144,4
+48639532,26289144,4
+48042943,26289144,5
+28630730,26289144,4
+33564270,26289144,5
+4079793,26289144,5
+3428014,26289144,-1
+Tracy1230,26289144,5
+designed11,26289144,3
+Sudanese,26289144,1
+41307413,26289144,5
+82850818,26289144,2
+maikatse,26289144,4
+89160641,26289144,5
+ondin12,26289144,4
+shling1900,26289144,3
+xialehe,26289144,4
+47541832,26289144,5
+78340149,26289144,5
+wenbo2003,26289144,4
+69197691,26289144,4
+109849422,26289144,-1
+onion911228,26289144,5
+50727167,26289144,-1
+forme,26289144,4
+3873448,26289144,4
+123294731,26289144,4
+92580665,26289144,4
+zjswr,26289144,4
+47373224,26289144,3
+moon124,26289144,4
+45932979,26289144,4
+54474146,26289144,3
+52997648,26289144,4
+liaoruochenxing,26289144,3
+jilltomato,26289144,5
+corneactto,26289144,5
+sunting322,26289144,5
+46912803,26289144,5
+59391832,26289144,4
+46889127,26289144,4
+43808911,26289144,4
+75325006,26289144,3
+2615650,26289144,4
+jijiayu,26289144,3
+4319074,26289144,5
+qx0730,26289144,3
+myloai,26289144,3
+3017985,26289144,3
+twomiao0897,26289144,4
+lyx906,26289144,3
+fanfankuaipao,26289144,-1
+im61,26289144,4
+52730600,26289144,4
+clever_trick,26289144,3
+78581679,26289144,4
+spungir,26289144,4
+Sourday,26289144,4
+128739482,26289144,4
+nanfengchuimu,26289144,3
+44911874,26289144,4
+35664517,26289144,4
+3059063,26289144,3
+kankan329,26289144,4
+kingevin_cho,26289144,4
+zhichuangfanle,26289144,3
+48892199,26289144,3
+51236215,26289144,3
+kaya_flowers,26289144,4
+aikioctt,26289144,-1
+emilywang,26289144,5
+68909177,26289144,4
+41529515,26289144,5
+49539687,26289144,4
+3810791,26289144,5
+2224035,26289144,3
+73706521,26289144,5
+61133743,26289144,4
+kashing,26289144,4
+68561607,26289144,4
+122327323,26289144,5
+51314726,26289144,4
+1376926,26289144,5
+zx92800,26289144,1
+justsay,26289144,3
+52750268,26289144,5
+dahlie,26289144,3
+cijunbutileng,26289144,5
+lixiaosan,26289144,4
+1686304,26289144,3
+montcalgary,26289144,5
+126290013,26289144,3
+spsara,26289144,5
+27778829,26289144,4
+48543801,26289144,3
+132568758,26289144,4
+61085061,26289144,4
+37480581,26289144,4
+55581368,26289144,4
+3800825,26289144,4
+Kelsilxq,26289144,4
+2616668,26289144,4
+2882160,26289144,4
+anantitheist,26289144,4
+121998536,26289144,4
+byhimself,26289144,3
+91805285,26289144,5
+98782610,26289144,5
+han1991,26289144,4
+3861820,26289144,4
+130813425,26289144,4
+78540381,26289144,4
+48935360,26289144,4
+turmanme,26289144,5
+104003575,26289144,3
+yangweili,26289144,4
+47508862,26289144,5
+61249567,26289144,3
+JIANGRONG,26289144,4
+iamfine3q,26289144,4
+51963014,26289144,4
+55608502,26289144,4
+42337941,26289144,5
+wanglizhi2014,26289144,4
+qinqin1130,26289144,4
+63618132,26289144,4
+aprileuro,26289144,3
+63645835,26289144,4
+iloveqiong,26289144,-1
+80349382,26289144,5
+52804172,26289144,4
+4510903,26289144,3
+43107357,26289144,4
+73702156,26289144,5
+sunnybest,26289144,4
+130647398,26289144,4
+cookie0207,26289144,5
+frin,26289144,4
+63236309,26289144,4
+47688996,26289144,4
+maggiexiao,26289144,5
+92180775,26289144,4
+4134812,26289144,4
+54067845,26289144,4
+130370822,26289144,4
+xiongweilin,26289144,3
+42842983,26289144,5
+94032763,26289144,3
+owenyao,26289144,4
+83061983,26289144,5
+121629069,26289144,5
+53619534,26289144,4
+83135209,26289144,5
+65687089,26289144,3
+40259113,26289144,4
+xfjzoe,26289144,4
+65701335,26289144,4
+61088323,26289144,4
+120459070,26289144,4
+87537150,26289144,4
+47220088,26289144,4
+104985254,26289144,3
+gulicooooo,26289144,3
+amosworld,26289144,5
+66170946,26289144,4
+little_cupid,26289144,3
+tiffany1211,26289144,5
+dingxuefeng0918,26289144,4
+87490266,26289144,3
+2208862,26289144,3
+47168945,26289144,4
+etherblue,26289144,5
+132699482,26289144,3
+4637077,26289144,4
+72068828,26289144,4
+73410174,26289144,5
+serah,26289144,4
+65922815,26289144,3
+42997943,26289144,4
+xiaoxiao1219,26289144,5
+4621406,26289144,3
+47984188,26289144,3
+122431381,26289144,3
+59858754,26289144,4
+chouchouCp,26289144,-1
+78968264,26289144,3
+3157228,26289144,3
+yum0808,26289144,2
+52668487,26289144,5
+76918337,26289144,5
+102099688,26289144,5
+58833110,26289144,4
+woniu0125,26289144,4
+bjlinfeng,26289144,4
+27059622,26289144,4
+sueblue,26289144,-1
+zanesun,26289144,5
+53531270,26289144,3
+77151897,26289144,3
+simple545,26289144,5
+52992190,26289144,3
+78240916,26289144,5
+zest,26289144,5
+63225847,26289144,2
+33948166,26289144,3
+131471368,26289144,5
+62772373,26289144,4
+47651632,26289144,3
+cchou,26289144,4
+xiamihemao,26289144,5
+130692591,26289144,4
+108602113,26289144,4
+59782208,26289144,3
+aaaaaas,26289144,4
+Lu.,26289144,4
+laveronique,26289144,4
+L_E,26289144,5
+sillygirll,26289144,5
+68655879,26289144,2
+yaodream,26289144,5
+vipii7952,26289144,4
+59465108,26289144,4
+aiconanao,26289144,4
+btjd,26289144,4
+83482173,26289144,4
+lucifer7th,26289144,4
+53906378,26289144,5
+96241491,26289144,4
+70557882,26289144,2
+ucyuicy,26289144,3
+121578175,26289144,4
+102027691,26289144,4
+douban7douban8,26289144,5
+32144547,26289144,5
+SuzyMao,26289144,4
+101633858,26289144,3
+sijizhp,26289144,4
+Annandan,26289144,3
+88178212,26289144,3
+48725265,26289144,3
+123706998,26289144,4
+TeTe66,26289144,4
+joicyvane,26289144,5
+63859419,26289144,4
+Mephisto__,26289144,4
+50283544,26289144,5
+3793114,26289144,5
+67001923,26289144,1
+55977942,26289144,4
+howaboutthis,26289144,5
+4614727,26289144,3
+65260404,26289144,2
+61953901,26289144,5
+128538422,26289144,4
+liverine,26289144,5
+52756002,26289144,4
+57856212,26289144,5
+36103812,26289144,4
+ynlemo,26289144,4
+68342567,26289144,4
+104265782,26289144,5
+63672511,26289144,4
+56260072,26289144,5
+78380925,26289144,5
+121387575,26289144,4
+60405772,26289144,4
+48971557,26289144,3
+emilystar,26289144,4
+39070600,26289144,4
+52793021,26289144,4
+moika,26289144,3
+58875044,26289144,2
+3115801,26289144,4
+49297450,26289144,3
+doubandengjian,26289144,4
+127188875,26289144,4
+126749576,26289144,4
+heyidi,26289144,3
+61738495,26289144,4
+2862311,26289144,4
+xiaoyutoufengla,26289144,4
+62751828,26289144,3
+FreakFreak,26289144,4
+deepsnow,26289144,4
+nolike,26289144,4
+43831100,26289144,4
+i_wanna,26289144,3
+85206828,26289144,4
+53624706,26289144,5
+zhangpingpang,26289144,4
+summercharon,26289144,4
+4216976,26289144,3
+65373356,26289144,5
+60307625,26289144,4
+115361011,26289144,4
+fooox,26289144,1
+Jones1986,26289144,3
+91113803,26289144,4
+54233594,26289144,4
+96769747,26289144,4
+jiangjixiang,26289144,4
+her10ve,26289144,4
+77349857,26289144,5
+cookieee,26289144,4
+88938201,26289144,4
+PQYAN,26289144,3
+65632936,26289144,4
+3788911,26289144,4
+tipsyholic,26289144,-1
+30838043,26289144,5
+132435147,26289144,3
+43492772,26289144,4
+1440157,26289144,4
+onlymcdull,26289144,3
+lijingwu,26289144,4
+87909422,26289144,3
+65120174,26289144,5
+3434909,26289144,3
+Anchoress_Yu,26289144,5
+54126303,26289144,5
+14253677,26289144,4
+74603714,26289144,4
+68860037,26289144,1
+60449022,26289144,4
+Sovee091,26289144,3
+69941774,26289144,3
+79363796,26289144,4
+30935515,26289144,3
+Victoria77,26289144,4
+79834368,26289144,1
+57800427,26289144,5
+vinciwang,26289144,3
+49035342,26289144,4
+simple4ever,26289144,4
+62475317,26289144,4
+58138033,26289144,5
+sunshinetoo,26289144,5
+1971930,26289144,-1
+conetto,26289144,4
+megalomania,26289144,4
+63177559,26289144,4
+sunnybay,26289144,5
+ledaodao,26289144,2
+shiyifei,26289144,5
+xiaomixixi,26289144,4
+67705905,26289144,3
+66766065,26289144,5
+57796344,26289144,4
+kedoumili,26289144,5
+WeezyShady,26289144,4
+burgooooooooooo,26289144,5
+53782984,26289144,3
+67520406,26289144,2
+17052139,26289144,3
+49358861,26289144,3
+63708637,26289144,3
+120984787,26289144,5
+66904097,26289144,5
+109976224,26289144,4
+132191737,26289144,5
+61391048,26289144,5
+64466995,26289144,4
+122416993,26289144,3
+2175508,26289144,5
+47598205,26289144,3
+89105962,26289144,1
+javableue,26289144,4
+62971840,26289144,4
+71950308,26289144,3
+8549482,26289144,5
+f_floria,26289144,3
+1209665,26289144,3
+65003049,26289144,5
+anishieh,26289144,4
+78314737,26289144,4
+cgy0330,26289144,3
+MGG,26289144,-1
+15167698,26289144,4
+55915062,26289144,4
+48174345,26289144,5
+73983245,26289144,4
+kellywhite,26289144,4
+129490479,26289144,4
+EF_Bon,26289144,4
+hanyy,26289144,3
+67013024,26289144,4
+49246555,26289144,4
+130988349,26289144,3
+3700353,26289144,3
+54909564,26289144,4
+51781307,26289144,4
+71180219,26289144,3
+54725778,26289144,4
+rainysue,26289144,4
+4196011,26289144,4
+hereisSEVEN,26289144,2
+wanlili520,26289144,5
+53559432,26289144,3
+61014554,26289144,4
+kiwilo,26289144,5
+46825522,26289144,5
+yueyan23,26289144,4
+51432008,26289144,4
+kidylien,26289144,3
+44545751,26289144,5
+55998424,26289144,5
+89716765,26289144,5
+55906201,26289144,2
+57416481,26289144,2
+68777501,26289144,2
+greatcatti,26289144,1
+girliris,26289144,3
+43589594,26289144,4
+50446919,26289144,5
+xiangjiaopian,26289144,4
+132422839,26289144,4
+ilea,26289144,5
+57251364,26289144,3
+77238430,26289144,4
+59930257,26289144,3
+alden,26289144,3
+66116098,26289144,4
+athena_Tang,26289144,4
+4657556,26289144,4
+127301665,26289144,4
+131473143,26289144,4
+4190382,26289144,4
+46479164,26289144,5
+102640123,26289144,4
+75442650,26289144,3
+Xiaoxiao.Z,26289144,5
+79808254,26289144,5
+xxflyyh,26289144,4
+dengbilin,26289144,5
+volcancano,26289144,4
+79195615,26289144,3
+131634247,26289144,3
+joysu,26289144,4
+30909217,26289144,3
+Yven,26289144,4
+61894548,26289144,4
+48047560,26289144,3
+reira_jxy,26289144,4
+61207902,26289144,5
+hai2hai,26289144,5
+51165620,26289144,3
+48179378,26289144,3
+49597569,26289144,4
+80370344,26289144,4
+hannahbanana,26289144,4
+47851057,26289144,5
+46739678,26289144,3
+58484976,26289144,4
+14348215,26289144,3
+qinaideliji,26289144,4
+51238374,26289144,3
+65061479,26289144,3
+3113577,26289144,5
+129851260,26289144,5
+90002859,26289144,4
+27510926,26289144,3
+122876594,26289144,4
+ivril,26289144,3
+76216989,26289144,5
+127813064,26289144,4
+49948273,26289144,4
+38222446,26289144,5
+64507278,26289144,3
+44291286,26289144,4
+64201117,26289144,5
+119304037,26289144,4
+57966587,26289144,1
+sincerity615,26289144,2
+132863432,26289144,2
+116304949,26289144,5
+49963574,26289144,5
+75132103,26289144,4
+80235643,26289144,5
+47862106,26289144,4
+HSY0308,26289144,4
+58625478,26289144,4
+74513536,26289144,4
+63372238,26289144,4
+62559082,26289144,3
+85522999,26289144,5
+Watermonster,26289144,4
+89395128,26289144,-1
+toby0910,26289144,4
+127975111,26289144,4
+123340510,26289144,4
+55849798,26289144,4
+93916065,26289144,4
+72387071,26289144,4
+miawanzi,26289144,4
+nanra,26289144,2
+60659060,26289144,5
+73653461,26289144,3
+78760255,26289144,4
+57834252,26289144,4
+70039420,26289144,5
+132857691,26289144,4
+Linjingx,26289144,4
+alohame,26289144,1
+wilhelmina,26289144,4
+14409304,26289144,3
+50732263,26289144,4
+RATATKAIQI,26289144,3
+43784582,26289144,5
+43936366,26289144,2
+20982958,26289144,5
+island_329,26289144,4
+36576530,26289144,4
+48368530,26289144,4
+lunatic511,26289144,4
+kellangamp,26289144,4
+holmes520,26289144,5
+youaremybaibi,26289144,5
+80894601,26289144,3
+spreebunny,26289144,3
+82881114,26289144,4
+wangjijuzi,26289144,5
+35192408,26289144,4
+tvxqgogo,26289144,4
+103744729,26289144,2
+elinli00,26289144,4
+6669413,26289144,5
+83492460,26289144,5
+57331100,26289144,4
+52162353,26289144,-1
+103026141,26289144,3
+JIANGXUE,26289144,3
+53719859,26289144,3
+50797855,26289144,4
+ragenee,26289144,5
+echoabc0409,26289144,3
+52567562,26289144,-1
+130290957,26289144,4
+2980674,26289144,4
+nancy425,26289144,3
+66537516,26289144,3
+XX6819202,26289144,4
+46709909,26289144,3
+ice1234567890,26289144,5
+2015737,26289144,-1
+133041046,26289144,5
+taltalxun,26289144,4
+changkxs,26289144,3
+50474274,26289144,4
+121432559,26289144,2
+47762854,26289144,5
+83447012,26289144,4
+58723728,26289144,4
+101282732,26289144,3
+smqllj,26289144,4
+52447788,26289144,3
+47652999,26289144,5
+52852256,26289144,4
+33563192,26289144,5
+63787326,26289144,4
+121278981,26289144,4
+67187033,26289144,5
+133352318,26289144,4
+70458683,26289144,3
+qinxiaoyiqu,26289144,3
+62195039,26289144,5
+87498473,26289144,5
+kaka247,26289144,5
+128758910,26289144,3
+pengpeng,26289144,3
+sevenshuai,26289144,5
+SKubrick,26289144,4
+51138955,26289144,4
+yukmin,26289144,3
+119079844,26289144,4
+52012929,26289144,5
+57292033,26289144,1
+47510305,26289144,3
+orangejiang,26289144,3
+4798365,26289144,3
+luluimayday,26289144,5
+17176281,26289144,4
+2387348,26289144,4
+liutengzhi,26289144,2
+46249272,26289144,5
+62425505,26289144,3
+49128378,26289144,4
+64444161,26289144,4
+jianyongxu,26289144,4
+130703278,26289144,3
+Cincky.XiN,26289144,3
+50068704,26289144,4
+62255857,26289144,4
+69725633,26289144,3
+57622050,26289144,3
+7007260,26289144,4
+67905172,26289144,4
+83837319,26289144,3
+68918685,26289144,5
+silenrocker,26289144,2
+boohooer,26289144,4
+July.,26289144,5
+47512500,26289144,5
+WEWE7UP,26289144,2
+61790360,26289144,5
+124962987,26289144,4
+61753267,26289144,3
+57857115,26289144,3
+M-EastGirl,26289144,4
+emmaxu,26289144,4
+haibara0520,26289144,4
+62103530,26289144,3
+xiaolan1993,26289144,4
+xiaoji-jade,26289144,3
+67489382,26289144,5
+91138119,26289144,2
+nach,26289144,5
+huoxiaoliang,26289144,3
+fishxim,26289144,3
+4820316,26289144,5
+sallyssland,26289144,3
+cocolinx,26289144,4
+120593809,26289144,4
+yiyi2826,26289144,5
+2374763,26289144,4
+39708814,26289144,3
+evenone,26289144,3
+35211473,26289144,4
+17748095,26289144,5
+122573291,26289144,3
+131361061,26289144,3
+down_0,26289144,4
+philllin,26289144,4
+mayoke,26289144,5
+37956992,26289144,5
+52304650,26289144,5
+shmilykz,26289144,4
+54759391,26289144,4
+77325633,26289144,3
+49699512,26289144,4
+wooya,26289144,3
+54605364,26289144,4
+84603183,26289144,3
+132516098,26289144,4
+79699046,26289144,4
+65488479,26289144,3
+58188727,26289144,3
+65913822,26289144,2
+120140819,26289144,4
+3899360,26289144,3
+wtjessica,26289144,4
+50129534,26289144,3
+mist_puzzle,26289144,5
+mist_puzzle,26289144,5
+120199628,26289144,4
+Baoberlln,26289144,4
+monkey59,26289144,3
+1831746,26289144,4
+luffyzl,26289144,4
+28566802,26289144,4
+61691553,26289144,3
+58193839,26289144,4
+46003128,26289144,3
+Ruke,26289144,4
+119061026,26289144,4
+42525996,26289144,4
+2561289,26289144,2
+52762105,26289144,4
+fallenisland,26289144,4
+22453719,26289144,3
+70650261,26289144,4
+JYF56911,26289144,3
+kuangmomo,26289144,4
+liuhaozys,26289144,5
+47837264,26289144,4
+sophie1900,26289144,3
+80026003,26289144,3
+74170581,26289144,2
+41556457,26289144,4
+62169990,26289144,3
+leon_rootless,26289144,3
+2346529,26289144,4
+14904352,26289144,4
+71743079,26289144,5
+changuang7,26289144,4
+47397728,26289144,4
+131470546,26289144,3
+4288953,26289144,3
+72527995,26289144,5
+121929650,26289144,3
+miadanson,26289144,4
+66995282,26289144,2
+49787323,26289144,3
+kin_o,26289144,5
+guinie,26289144,4
+62834431,26289144,5
+46271502,26289144,4
+53612354,26289144,4
+90446896,26289144,4
+willkwan,26289144,4
+50414498,26289144,4
+58587564,26289144,4
+ananne,26289144,5
+dixie_chen,26289144,3
+49191008,26289144,3
+125801421,26289144,1
+62044477,26289144,3
+83154591,26289144,4
+nirvanayl,26289144,4
+121353053,26289144,4
+131628245,26289144,3
+viven7788,26289144,2
+FinnieXu,26289144,5
+FinnieXu,26289144,5
+64440158,26289144,5
+aameng,26289144,5
+MissWangnana,26289144,4
+dou4y,26289144,4
+2298833,26289144,4
+73795161,26289144,4
+121946910,26289144,5
+58489123,26289144,4
+39337478,26289144,4
+ssdysyyy,26289144,4
+42415785,26289144,3
+amaranth_i,26289144,3
+ilovehongkou,26289144,5
+lalisa0724,26289144,3
+70892743,26289144,4
+2643462,26289144,5
+4641353,26289144,5
+78885563,26289144,4
+45000436,26289144,4
+3633125,26289144,4
+44939590,26289144,4
+35998666,26289144,4
+cannixi,26289144,4
+justin_he,26289144,1
+dashan1928,26289144,4
+wei666,26289144,3
+51584292,26289144,4
+60903582,26289144,2
+47597290,26289144,-1
+103452314,26289144,5
+silencelee,26289144,2
+61087835,26289144,1
+66631115,26289144,4
+6009745,26289144,4
+121881765,26289144,3
+hexuanpomon,26289144,5
+ganju,26289144,4
+Acoston,26289144,4
+3308221,26289144,4
+62012748,26289144,5
+120700138,26289144,4
+6125954,26289144,4
+julia_duan,26289144,3
+72883424,26289144,4
+etsuko120,26289144,3
+121303699,26289144,4
+130304436,26289144,5
+30165647,26289144,4
+yu4125,26289144,4
+54171468,26289144,4
+sancruz,26289144,3
+63318519,26289144,4
+61374818,26289144,4
+Sataaaaaan,26289144,4
+65298894,26289144,-1
+fannytracyshine,26289144,3
+63617713,26289144,3
+lxlkey,26289144,4
+125750519,26289144,2
+77427875,26289144,4
+119182928,26289144,3
+ssssoft,26289144,5
+GinaJJ,26289144,5
+lovevipbigbang,26289144,5
+29428562,26289144,4
+74389446,26289144,4
+41651079,26289144,4
+48487913,26289144,5
+1886453,26289144,4
+88163092,26289144,5
+55838246,26289144,5
+alynlin,26289144,2
+15495862,26289144,4
+44412900,26289144,4
+122186312,26289144,5
+131198769,26289144,5
+Sentiment,26289144,3
+fenglao,26289144,1
+69714540,26289144,4
+41354863,26289144,3
+jiushitime,26289144,5
+49406464,26289144,3
+44825930,26289144,4
+erjimaidou,26289144,4
+focustom,26289144,4
+47708669,26289144,4
+betterme124,26289144,4
+60201593,26289144,5
+carrotlalala,26289144,3
+120956800,26289144,5
+lesley921206,26289144,4
+62753939,26289144,4
+41932129,26289144,4
+60189381,26289144,4
+yanpealew,26289144,3
+55914846,26289144,5
+43389990,26289144,3
+23129411,26289144,4
+lazing0611,26289144,4
+just_milky,26289144,3
+69489690,26289144,4
+41855603,26289144,3
+131631669,26289144,3
+51260309,26289144,1
+55458833,26289144,5
+46320869,26289144,3
+59982556,26289144,3
+47478051,26289144,5
+124690057,26289144,5
+114361347,26289144,3
+54520030,26289144,5
+64387229,26289144,5
+63462417,26289144,4
+lying0,26289144,4
+axl1228,26289144,2
+37108716,26289144,5
+42978661,26289144,3
+LISHUANGLOLA,26289144,4
+cinyo0312,26289144,5
+120418587,26289144,3
+89187056,26289144,3
+120643307,26289144,5
+41456206,26289144,5
+12981112,26289144,3
+44924401,26289144,-1
+anytang,26289144,5
+70809877,26289144,4
+iamxx,26289144,3
+vivian44860,26289144,3
+3916419,26289144,5
+68265664,26289144,4
+64821728,26289144,3
+71863067,26289144,4
+65045279,26289144,4
+63950350,26289144,4
+Joy_sa,26289144,4
+54022427,26289144,4
+63589080,26289144,3
+34869252,26289144,4
+felinoshuffle,26289144,4
+smnclumsy,26289144,5
+62484889,26289144,3
+serenamin,26289144,5
+67848471,26289144,5
+yufei707,26289144,5
+38815134,26289144,4
+63200575,26289144,3
+128958875,26289144,1
+neixinqiangda,26289144,4
+43906549,26289144,3
+103556883,26289144,3
+xunyuxin,26289144,3
+49518806,26289144,3
+gdhdun,26289144,4
+suarron,26289144,5
+1243863,26289144,4
+121073792,26289144,4
+dancing.girl,26289144,4
+64359754,26289144,5
+cissylin,26289144,3
+81550547,26289144,3
+27562730,26289144,4
+2858055,26289144,5
+2603031,26289144,4
+empty_bones,26289144,3
+LarryLv,26289144,4
+87158537,26289144,5
+piscescissy,26289144,4
+83188339,26289144,4
+63367486,26289144,5
+pennie,26289144,4
+zhaoqingyue,26289144,4
+54505273,26289144,4
+xiaoshiti,26289144,5
+tonganda,26289144,3
+yikiv,26289144,3
+56922790,26289144,4
+74532668,26289144,4
+48472803,26289144,5
+59337450,26289144,2
+4108048,26289144,4
+zlzzoe,26289144,5
+116607290,26289144,4
+51591369,26289144,3
+chopnizi,26289144,3
+83439482,26289144,4
+lanselot,26289144,4
+114533111,26289144,4
+83885196,26289144,3
+36175629,26289144,5
+coolluo_zw,26289144,4
+fyf719,26289144,4
+envelopeyy,26289144,4
+62244065,26289144,4
+callmecrazy,26289144,4
+Fly123,26289144,4
+vamzxy,26289144,-1
+4533182,26289144,1
+31061992,26289144,5
+May2Ling,26289144,3
+98241592,26289144,5
+68434505,26289144,3
+48272741,26289144,4
+69455218,26289144,3
+66802444,26289144,3
+66089131,26289144,4
+70700918,26289144,5
+63724601,26289144,5
+44227981,26289144,4
+83926604,26289144,4
+sylviahuang1029,26289144,5
+zhangxuncc,26289144,4
+59131716,26289144,4
+82809292,26289144,5
+20278593,26289144,4
+87410268,26289144,5
+loveiscolder,26289144,5
+132859823,26289144,4
+alex4814,26289144,4
+45366931,26289144,3
+31524311,26289144,5
+52689515,26289144,3
+4093973,26289144,2
+49369831,26289144,3
+133323220,26289144,4
+25809815,26289144,4
+68622200,26289144,4
+121441304,26289144,1
+43362252,26289144,2
+52675266,26289144,4
+51651483,26289144,5
+44028431,26289144,4
+59741091,26289144,4
+61260299,26289144,4
+47519520,26289144,4
+56589812,26289144,4
+chuan13,26289144,4
+2799843,26289144,3
+66612496,26289144,4
+100445422,26289144,4
+29320145,26289144,4
+sixpie,26289144,2
+120786974,26289144,4
+QingAIAliur,26289144,3
+lintao,26289144,3
+lummyboyla,26289144,3
+59862121,26289144,3
+44387904,26289144,4
+52128416,26289144,3
+67613066,26289144,4
+luziyujiang,26289144,4
+45164334,26289144,3
+2411985,26289144,5
+alangalang,26289144,4
+34544680,26289144,3
+2470584,26289144,5
+46207489,26289144,4
+2818823,26289144,4
+3127745,26289144,5
+96674410,26289144,4
+52355127,26289144,3
+sheep29,26289144,4
+48211271,26289144,5
+48219520,26289144,3
+17298456,26289144,4
+59587066,26289144,3
+63270983,26289144,5
+lianglicui,26289144,4
+59120246,26289144,4
+115721149,26289144,5
+noknown,26289144,4
+yknowswhy,26289144,4
+50652439,26289144,4
+3522938,26289144,5
+132686664,26289144,5
+132145463,26289144,3
+amorexia,26289144,4
+98792937,26289144,5
+105152894,26289144,5
+BackToNight,26289144,3
+65662005,26289144,3
+73062008,26289144,4
+nancy1011,26289144,5
+130982302,26289144,4
+40672649,26289144,5
+appletoap,26289144,3
+58860812,26289144,4
+nizuoshena,26289144,3
+44326627,26289144,3
+84847341,26289144,4
+73995677,26289144,5
+131730060,26289144,4
+xiaohongchenlin,26289144,4
+120091101,26289144,3
+49673011,26289144,4
+4755715,26289144,4
+cenxi,26289144,5
+58935942,26289144,4
+yuxiaolanJ,26289144,4
+43363409,26289144,5
+57221305,26289144,4
+46672889,26289144,4
+39336749,26289144,4
+53907528,26289144,4
+53216084,26289144,4
+84994751,26289144,4
+2247430,26289144,4
+64255744,26289144,3
+38182265,26289144,4
+82250757,26289144,5
+winnie0032,26289144,4
+shengdoushiba,26289144,-1
+kalilulu,26289144,3
+flyxzz,26289144,3
+56836925,26289144,4
+Aker,26289144,4
+2861190,26289144,4
+linaboxiannv,26289144,5
+69104253,26289144,4
+51469631,26289144,4
+56636319,26289144,5
+132967809,26289144,5
+42961895,26289144,5
+nigelallan,26289144,4
+130034747,26289144,3
+45010437,26289144,3
+Filo,26289144,4
+tuzichuchu,26289144,4
+seaneight,26289144,3
+6651647,26289144,4
+3881393,26289144,4
+48258605,26289144,5
+cynthiays,26289144,5
+daonian_1990,26289144,4
+maite,26289144,5
+69324457,26289144,4
+Melody_0523,26289144,3
+56914326,26289144,4
+67710176,26289144,4
+80770457,26289144,4
+64835633,26289144,4
+4025183,26289144,5
+67179244,26289144,3
+52790172,26289144,3
+3605341,26289144,5
+tayee,26289144,5
+57537354,26289144,3
+nene1022,26289144,3
+119305036,26289144,3
+48164798,26289144,4
+echo__,26289144,5
+mcdon,26289144,4
+ooooooofuck,26289144,3
+53374092,26289144,4
+fengwanjing,26289144,4
+52185430,26289144,3
+40306766,26289144,4
+64118312,26289144,4
+87978530,26289144,4
+87978530,26289144,4
+57069635,26289144,5
+77138158,26289144,4
+6775618,26289144,5
+41353092,26289144,4
+38069050,26289144,4
+67076532,26289144,5
+mr_rko,26289144,3
+3403979,26289144,3
+133319509,26289144,5
+wudiamao,26289144,4
+82522784,26289144,5
+69586673,26289144,5
+dongbai,26289144,5
+59524525,26289144,5
+10490178,26289144,5
+57935610,26289144,5
+yuanla,26289144,4
+129289203,26289144,3
+ruby199204,26289144,4
+55618931,26289144,2
+14484123,26289144,4
+75288450,26289144,4
+69753373,26289144,5
+68711175,26289144,5
+maydayyqy,26289144,4
+karmaqi,26289144,5
+65009709,26289144,5
+58825123,26289144,5
+leaf615,26289144,5
+42069915,26289144,4
+74234828,26289144,4
+46722209,26289144,4
+49814708,26289144,4
+79346510,26289144,1
+myn28,26289144,5
+79802082,26289144,2
+2771438,26289144,5
+suoailiangren,26289144,4
+40724114,26289144,5
+40724114,26289144,5
+gogolaviz,26289144,2
+115974142,26289144,3
+47959701,26289144,3
+liuweicq,26289144,3
+56543834,26289144,3
+redmh912,26289144,4
+a326715,26289144,5
+2978043,26289144,5
+2206901,26289144,3
+49266034,26289144,-1
+76012263,26289144,4
+129063206,26289144,2
+72322471,26289144,1
+snoopy198471,26289144,3
+59082461,26289144,5
+3506653,26289144,4
+55491094,26289144,5
+50048603,26289144,4
+71267771,26289144,5
+119364695,26289144,4
+53357479,26289144,3
+baimaheizong,26289144,4
+34859400,26289144,5
+Mrcly,26289144,5
+yaolinj,26289144,3
+57360392,26289144,5
+huachunyan,26289144,4
+fabrique1987,26289144,4
+35964817,26289144,4
+88840337,26289144,3
+giacintaxx,26289144,4
+2845112,26289144,4
+93606686,26289144,4
+2216167,26289144,3
+lixujin,26289144,4
+albicelestes,26289144,3
+57445769,26289144,4
+funnyxucheng,26289144,4
+huir,26289144,4
+huir,26289144,4
+onein6billion,26289144,-1
+49372738,26289144,4
+115707089,26289144,4
+77160079,26289144,4
+54470685,26289144,4
+79978536,26289144,4
+AveryShen,26289144,3
+87818830,26289144,5
+seewhywhy,26289144,-1
+70682305,26289144,4
+66295354,26289144,3
+FANFan-ER,26289144,4
+70904193,26289144,3
+39640339,26289144,1
+36789209,26289144,4
+1857885,26289144,5
+98165549,26289144,5
+37751161,26289144,4
+Miranda9403,26289144,4
+iimozart,26289144,4
+43998453,26289144,3
+ainda423,26289144,4
+silentlion,26289144,4
+4804072,26289144,3
+4412176,26289144,5
+103951444,26289144,5
+xuaoling,26289144,3
+125477201,26289144,5
+67247716,26289144,4
+46444197,26289144,5
+75327882,26289144,4
+lidusa,26289144,4
+luans,26289144,5
+handaping,26289144,4
+nicovl,26289144,4
+MoQin,26289144,5
+48791919,26289144,4
+41904174,26289144,5
+10287741,26289144,4
+xiaertang,26289144,4
+77092352,26289144,3
+67242196,26289144,5
+liebedai,26289144,3
+50199937,26289144,4
+monica-lcw,26289144,3
+127889355,26289144,5
+49064665,26289144,5
+66809698,26289144,4
+1516524,26289144,3
+3200253,26289144,5
+48759951,26289144,4
+66598168,26289144,4
+renzrxly,26289144,4
+grey_07,26289144,3
+100503233,26289144,4
+37612294,26289144,5
+52746040,26289144,3
+126756914,26289144,5
+111815840,26289144,3
+111815840,26289144,3
+3531342,26289144,-1
+DayoChaplin,26289144,4
+55406228,26289144,3
+51624566,26289144,4
+lilylee1023,26289144,5
+52468739,26289144,5
+74664392,26289144,4
+62986626,26289144,3
+Danya_Tang,26289144,4
+64189382,26289144,2
+51410626,26289144,4
+specialvera,26289144,5
+50125049,26289144,5
+133038312,26289144,4
+puppetian,26289144,3
+59940868,26289144,4
+64297755,26289144,4
+cinsmiles,26289144,3
+tiramisucheng,26289144,3
+79841047,26289144,3
+46749955,26289144,4
+78150719,26289144,3
+41257286,26289144,4
+30737609,26289144,5
+2985147,26289144,5
+stile,26289144,4
+4039085,26289144,5
+Renascen,26289144,5
+3741229,26289144,4
+58142762,26289144,4
+amelietao,26289144,1
+99373292,26289144,5
+74866494,26289144,3
+1130238,26289144,5
+54784556,26289144,4
+48724740,26289144,4
+rin-sora,26289144,3
+74617331,26289144,4
+69980622,26289144,3
+88298749,26289144,4
+zouzoutongxue,26289144,4
+60349266,26289144,3
+61328022,26289144,4
+106597439,26289144,4
+79519421,26289144,4
+47556778,26289144,3
+yuyusuper2,26289144,3
+43139209,26289144,3
+dante,26289144,4
+96800376,26289144,3
+71205321,26289144,5
+71447157,26289144,3
+84308662,26289144,4
+41896370,26289144,5
+carrottbjihyrl,26289144,3
+redrabbit,26289144,4
+EggPlant629,26289144,4
+48981541,26289144,3
+52211429,26289144,3
+34766480,26289144,4
+7292654,26289144,4
+40934646,26289144,5
+weirdoToC,26289144,4
+samleq,26289144,4
+62852145,26289144,4
+68027669,26289144,3
+suzichong,26289144,3
+120654562,26289144,5
+56480795,26289144,5
+52524178,26289144,5
+99428018,26289144,5
+71809411,26289144,5
+58808535,26289144,4
+28028631,26289144,4
+57071643,26289144,3
+120735055,26289144,4
+fishnene,26289144,5
+70119432,26289144,5
+36963391,26289144,2
+rosexiafei,26289144,5
+Anesthesiawd,26289144,4
+tomatozss,26289144,-1
+4603766,26289144,2
+4498927,26289144,4
+51490342,26289144,5
+33969609,26289144,3
+83133983,26289144,4
+31911025,26289144,4
+71652538,26289144,4
+nanshengism,26289144,4
+57275563,26289144,4
+119644008,26289144,3
+49075951,26289144,4
+HYGUY,26289144,3
+52668501,26289144,3
+51768306,26289144,5
+cherryye,26289144,4
+8438524,26289144,5
+72385276,26289144,5
+61712114,26289144,3
+55970866,26289144,4
+74207075,26289144,2
+63648743,26289144,4
+filmvivi,26289144,2
+101794425,26289144,5
+123402678,26289144,4
+vvtutu,26289144,4
+121141098,26289144,2
+evencare,26289144,-1
+104252458,26289144,3
+132247397,26289144,5
+Zzhangmxm,26289144,4
+65562790,26289144,3
+68191014,26289144,5
+69099872,26289144,3
+53852725,26289144,3
+60624243,26289144,3
+hjhmusic,26289144,5
+53769450,26289144,4
+lux1119,26289144,5
+93195054,26289144,4
+6754857,26289144,5
+60289458,26289144,-1
+60227001,26289144,3
+qianlishuitiany,26289144,4
+54343882,26289144,3
+4267240,26289144,4
+3763502,26289144,4
+123811163,26289144,4
+abyssalsea,26289144,4
+yukixiaonan,26289144,4
+20935302,26289144,-1
+58618323,26289144,5
+66572980,26289144,5
+56360766,26289144,-1
+90854543,26289144,3
+jennieyoung,26289144,2
+66405619,26289144,4
+4856168,26289144,4
+moman,26289144,4
+90698517,26289144,4
+65346497,26289144,3
+77898629,26289144,4
+rossonerimilan,26289144,4
+46675518,26289144,5
+46617771,26289144,5
+89533485,26289144,3
+70637195,26289144,4
+73530078,26289144,5
+62517484,26289144,3
+78358627,26289144,2
+wenqianmoshen,26289144,4
+129610666,26289144,5
+1849770,26289144,4
+69785918,26289144,4
+122702162,26289144,4
+60661723,26289144,3
+57111606,26289144,4
+127392524,26289144,5
+76192912,26289144,4
+35729058,26289144,4
+46308834,26289144,4
+76624951,26289144,3
+74291934,26289144,4
+131913480,26289144,3
+tezukalove,26289144,-1
+lilifen0720,26289144,5
+4090922,26289144,4
+yiwangtianshi,26289144,3
+27970714,26289144,5
+62514800,26289144,4
+42036980,26289144,4
+NicoleAkiko,26289144,3
+102432384,26289144,3
+Esacpe.,26289144,3
+51414584,26289144,4
+45301941,26289144,5
+manxiaoyue,26289144,3
+65193778,26289144,4
+81903104,26289144,3
+btetc,26289144,5
+37216410,26289144,4
+1885523,26289144,3
+yellnothing,26289144,2
+sheenaringo516,26289144,4
+LightningChing,26289144,4
+43536991,26289144,5
+Fishisme,26289144,2
+niiyaaaaa,26289144,3
+bluetracy0113,26289144,5
+34601889,26289144,5
+lily0001,26289144,3
+49844538,26289144,3
+67116321,26289144,5
+133304026,26289144,5
+f32112345,26289144,2
+faiel,26289144,3
+74600340,26289144,4
+87556790,26289144,3
+113977777,26289144,5
+dawn.limpid,26289144,4
+66590810,26289144,4
+128238670,26289144,3
+13301536,26289144,4
+52195689,26289144,4
+73225522,26289144,5
+vince_1216,26289144,4
+nianimamabie,26289144,4
+shaochaowen,26289144,5
+raycheng,26289144,4
+pinqi,26289144,4
+72902802,26289144,4
+50218272,26289144,4
+50764727,26289144,-1
+onlyjoy09,26289144,4
+80559391,26289144,5
+53746304,26289144,5
+46065900,26289144,5
+70425347,26289144,3
+70425347,26289144,3
+aiyutao,26289144,3
+59714150,26289144,-1
+102789657,26289144,-1
+4654940,26289144,3
+75981147,26289144,5
+1230812,26289144,4
+aiJC,26289144,2
+45309616,26289144,4
+119882836,26289144,4
+48976276,26289144,4
+120278504,26289144,3
+Betty818,26289144,4
+67346668,26289144,3
+66552525,26289144,4
+2742353,26289144,3
+1383312,26289144,3
+66580409,26289144,3
+96290717,26289144,4
+54336102,26289144,5
+62959210,26289144,2
+apollofay,26289144,5
+miss_dian,26289144,2
+parano,26289144,-1
+53350370,26289144,3
+kidultlilith,26289144,5
+100782149,26289144,4
+66644571,26289144,4
+58977127,26289144,5
+huangzhang92090,26289144,5
+1548109,26289144,4
+61363004,26289144,5
+131821266,26289144,4
+4809632,26289144,4
+2717922,26289144,4
+88559493,26289144,3
+49214280,26289144,3
+yangliening,26289144,4
+41016325,26289144,-1
+99806468,26289144,3
+tianqiyong,26289144,3
+52222479,26289144,1
+90205716,26289144,4
+51055411,26289144,4
+Sheeplady,26289144,2
+2200030,26289144,2
+4838811,26289144,3
+3509692,26289144,3
+132490186,26289144,5
+29741430,26289144,5
+1759587,26289144,5
+121352269,26289144,4
+Svena,26289144,4
+75255232,26289144,3
+82358961,26289144,4
+duck_l,26289144,4
+64351070,26289144,4
+Bookthief,26289144,4
+52238680,26289144,5
+68427174,26289144,-1
+2215214,26289144,5
+1322402,26289144,3
+51436731,26289144,3
+132637689,26289144,5
+kidsboom,26289144,3
+2169850,26289144,4
+64287168,26289144,4
+82602677,26289144,4
+65916762,26289144,3
+3756667,26289144,4
+46252496,26289144,5
+117307392,26289144,5
+68812580,26289144,4
+4082102,26289144,3
+34744036,26289144,4
+6926584,26289144,3
+redsmile,26289144,4
+49798429,26289144,3
+44843133,26289144,4
+47950856,26289144,5
+44843133,26289144,4
+47950856,26289144,5
+3305632,26289144,4
+37552777,26289144,5
+michelq,26289144,4
+105682380,26289144,4
+122380965,26289144,1
+wangxhtt,26289144,5
+83989831,26289144,4
+52767452,26289144,4
+kid719,26289144,4
+eilyying,26289144,3
+58946652,26289144,5
+71417506,26289144,4
+queencoco,26289144,4
+48324063,26289144,4
+103016546,26289144,4
+ANG.Y,26289144,4
+81006817,26289144,5
+4396218,26289144,5
+4396218,26289144,5
+52251363,26289144,5
+27894573,26289144,4
+J7N,26289144,2
+niuniurf,26289144,3
+pepemaxc,26289144,3
+3642111,26289144,-1
+121215156,26289144,4
+34114887,26289144,3
+ps716,26289144,3
+3619981,26289144,3
+55438034,26289144,3
+56920148,26289144,3
+alohaceci,26289144,3
+kayslv,26289144,3
+37340433,26289144,3
+hellohenai,26289144,4
+1331333,26289144,4
+22077242,26289144,3
+59012176,26289144,3
+59012176,26289144,3
+61910932,26289144,4
+49183240,26289144,5
+60801673,26289144,3
+76740339,26289144,4
+annho,26289144,5
+43474774,26289144,4
+yaoyao93122,26289144,4
+dodo221,26289144,4
+shimiao,26289144,4
+4504164,26289144,5
+Sexcool,26289144,1
+2412669,26289144,4
+caorong1023,26289144,5
+ZackorZac,26289144,3
+39809119,26289144,4
+75380534,26289144,5
+wutianxiang,26289144,4
+45809263,26289144,4
+j780417605,26289144,3
+xishanghudie,26289144,4
+115702913,26289144,4
+76225555,26289144,3
+hyungyum,26289144,5
+40874757,26289144,4
+musiqian,26289144,5
+2896376,26289144,3
+34558131,26289144,3
+38727371,26289144,3
+HEbelongtome,26289144,3
+whitelavender,26289144,3
+guanwaiguicai,26289144,1
+55632020,26289144,4
+63306444,26289144,3
+102985060,26289144,4
+41870154,26289144,5
+oooooxxxxx,26289144,4
+mjpx0510,26289144,4
+74766886,26289144,5
+54542869,26289144,5
+54542869,26289144,5
+51928372,26289144,3
+97735931,26289144,4
+57999077,26289144,4
+35331418,26289144,3
+49419366,26289144,4
+28678505,26289144,5
+53048769,26289144,4
+20880123,26289144,4
+78551525,26289144,4
+tanglu1110,26289144,3
+121334018,26289144,4
+97306162,26289144,4
+3011410,26289144,5
+67852674,26289144,4
+34056300,26289144,4
+36781853,26289144,5
+1378503,26289144,3
+51946959,26289144,4
+45476708,26289144,4
+Dreamerlee,26289144,4
+49986348,26289144,-1
+3595699,26289144,4
+yukikaoru,26289144,4
+miaomiao1213,26289144,3
+dancing_flower,26289144,4
+70212980,26289144,5
+allen_y,26289144,3
+94247443,26289144,5
+cimicimi,26289144,4
+52840108,26289144,5
+1205696,26289144,3
+qamber,26289144,3
+65023609,26289144,4
+3089552,26289144,4
+sonyaya,26289144,4
+85867687,26289144,4
+phelix7,26289144,3
+3447044,26289144,5
+59621210,26289144,4
+93413999,26289144,4
+4002268,26289144,4
+53982410,26289144,5
+78573891,26289144,4
+4559768,26289144,4
+JabbaWk,26289144,1
+123785110,26289144,3
+64696511,26289144,3
+2137795,26289144,3
+littleD,26289144,4
+59859111,26289144,3
+2235528,26289144,4
+63973142,26289144,5
+54667109,26289144,4
+2380878,26289144,5
+xjrangel,26289144,3
+127548896,26289144,5
+88067861,26289144,1
+53392958,26289144,3
+dandan0451,26289144,4
+Cryostatgirl,26289144,5
+53234077,26289144,3
+safleur,26289144,5
+43747141,26289144,3
+yingchao0426,26289144,4
+chenphial,26289144,-1
+48078859,26289144,5
+103319815,26289144,5
+gqknight,26289144,4
+tatayu19900729,26289144,4
+iamzeta,26289144,4
+yummygirl,26289144,4
+9292090,26289144,4
+48143664,26289144,3
+79268233,26289144,3
+67246770,26289144,3
+62945794,26289144,4
+CBX2012,26289144,4
+Lucifer4219,26289144,4
+129743539,26289144,5
+2847922,26289144,2
+2346098,26289144,3
+ellenc,26289144,4
+cherie7,26289144,2
+vicjianling,26289144,5
+59507414,26289144,4
+roseandwater,26289144,5
+4032536,26289144,3
+2567055,26289144,3
+3109810,26289144,4
+23365073,26289144,5
+bossdjy,26289144,4
+fang513,26289144,5
+28312683,26289144,2
+mfanson,26289144,1
+dandangobelieve,26289144,-1
+3317072,26289144,4
+ixiaxiaoqi,26289144,5
+56684170,26289144,4
+meteoraX,26289144,4
+momolaly,26289144,5
+46961089,26289144,3
+68640235,26289144,4
+ximenqing_,26289144,5
+40582858,26289144,2
+xzach,26289144,3
+132344629,26289144,4
+hynh,26289144,4
+3905498,26289144,3
+91126868,26289144,4
+123855693,26289144,4
+56091106,26289144,5
+wangleku0310,26289144,5
+57828105,26289144,2
+115376627,26289144,4
+73080100,26289144,4
+52168475,26289144,3
+75091194,26289144,4
+16442857,26289144,5
+2677905,26289144,4
+53888961,26289144,4
+meixinmeifei,26289144,5
+92544403,26289144,5
+hahasnake,26289144,4
+SKBIBBY,26289144,4
+66740319,26289144,4
+67742018,26289144,4
+3212190,26289144,4
+34363424,26289144,4
+maoyufreng,26289144,5
+93900680,26289144,4
+44916756,26289144,5
+xcloudcloud,26289144,-1
+jushang,26289144,3
+63730928,26289144,4
+liheping0310,26289144,2
+frankie0927,26289144,3
+65362474,26289144,5
+3512026,26289144,4
+57292678,26289144,4
+peach105,26289144,5
+115555325,26289144,4
+87940237,26289144,4
+56523090,26289144,4
+72605753,26289144,5
+121072357,26289144,5
+ringogo,26289144,5
+mavislvv,26289144,4
+3000438,26289144,4
+fxoc,26289144,-1
+heavenmo,26289144,4
+48118693,26289144,5
+pariseros,26289144,4
+islglg,26289144,4
+69068594,26289144,4
+mian11,26289144,4
+1209749,26289144,3
+2712628,26289144,3
+Samle-in-us,26289144,3
+sylvi,26289144,4
+3520940,26289144,4
+ACJG,26289144,2
+1653790,26289144,4
+131001291,26289144,4
+balticsea,26289144,4
+65497911,26289144,4
+tian2xia,26289144,4
+37371725,26289144,4
+70860940,26289144,3
+122224219,26289144,3
+jiajun14,26289144,3
+71383486,26289144,4
+66689025,26289144,5
+64461682,26289144,5
+nounou....,26289144,-1
+kingoftheword,26289144,2
+RICE_Z,26289144,3
+67061542,26289144,3
+114191538,26289144,5
+68301298,26289144,5
+dianbou,26289144,3
+ywsbc,26289144,3
+Jollie,26289144,5
+jad1s,26289144,3
+megumiwo,26289144,3
+58591644,26289144,5
+rainbow0420,26289144,4
+77366580,26289144,5
+51247633,26289144,1
+jxncm,26289144,4
+QQ222111,26289144,4
+68286712,26289144,5
+57989017,26289144,4
+32033776,26289144,2
+zhz586,26289144,3
+heyaoniming3000,26289144,5
+3061850,26289144,4
+Dydia,26289144,3
+3034749,26289144,5
+47650327,26289144,2
+120241385,26289144,5
+70006548,26289144,5
+limabixiaojie,26289144,3
+52444985,26289144,4
+53789124,26289144,3
+tsubasatjy,26289144,3
+55823787,26289144,3
+mayday_apple,26289144,5
+10971455,26289144,3
+58273580,26289144,3
+princessing,26289144,3
+4343526,26289144,4
+Rita_Amber,26289144,5
+57952445,26289144,3
+sum.,26289144,1
+paopaopaofu,26289144,3
+sliver_vamipire,26289144,5
+itsmeymq,26289144,4
+seodler,26289144,4
+55320174,26289144,4
+47729298,26289144,4
+1091787,26289144,-1
+57230631,26289144,3
+50923295,26289144,5
+59540342,26289144,4
+50656237,26289144,3
+frida0516,26289144,4
+72454425,26289144,2
+F1og,26289144,3
+47836887,26289144,5
+132748448,26289144,3
+42114490,26289144,3
+fiona-cin,26289144,4
+4438579,26289144,5
+UWMADISON,26289144,5
+44437052,26289144,5
+moshien,26289144,4
+61093972,26289144,5
+omniwillpotent,26289144,5
+4327003,26289144,5
+AliceYmz,26289144,5
+2849436,26289144,2
+60347813,26289144,4
+qingxiaolin,26289144,4
+45943252,26289144,1
+49443595,26289144,4
+87864590,26289144,5
+swan93,26289144,3
+122484981,26289144,4
+47730670,26289144,5
+sjt641100358,26289144,4
+carhfq,26289144,5
+68031960,26289144,4
+SoloBoy,26289144,5
+50750896,26289144,5
+129732129,26289144,5
+ly19910801,26289144,4
+2922353,26289144,3
+miqu,26289144,4
+53816382,26289144,5
+33787613,26289144,5
+finsy,26289144,4
+yang_ygy,26289144,4
+53204374,26289144,4
+66729635,26289144,5
+53349894,26289144,4
+45786010,26289144,4
+121057346,26289144,5
+72733523,26289144,4
+75942712,26289144,3
+124319237,26289144,4
+122972711,26289144,3
+maryzhao,26289144,5
+96136177,26289144,-1
+38310657,26289144,4
+imellie,26289144,2
+L_memo,26289144,4
+54888937,26289144,4
+48256975,26289144,5
+73997999,26289144,4
+53017810,26289144,4
+17210436,26289144,4
+43085353,26289144,4
+joni7,26289144,5
+blackeyedpigs,26289144,4
+115807401,26289144,3
+67838046,26289144,3
+2516488,26289144,4
+50884067,26289144,4
+yangfan0628,26289144,4
+47733868,26289144,4
+55443753,26289144,5
+77884429,26289144,5
+hushibookstore,26289144,3
+yvett,26289144,5
+126658027,26289144,5
+3090561,26289144,5
+Mrs_D,26289144,4
+71411793,26289144,3
+47699744,26289144,4
+xhdddd,26289144,4
+74385868,26289144,3
+1097543,26289144,5
+90272032,26289144,4
+71182619,26289144,5
+nemofishhome,26289144,4
+summer94,26289144,4
+sophiejiang,26289144,4
+130027928,26289144,4
+staywithcc,26289144,4
+hollyxiyi,26289144,4
+LareinaGao,26289144,3
+64864159,26289144,4
+80754931,26289144,5
+46804098,26289144,5
+30341071,26289144,4
+87880107,26289144,3
+49363963,26289144,2
+42618283,26289144,4
+thinkind,26289144,3
+lgyssg,26289144,2
+aikki27,26289144,-1
+wuzhuan105,26289144,3
+54018069,26289144,4
+Rockworld,26289144,4
+64004989,26289144,2
+1261000,26289144,5
+57405167,26289144,3
+47232724,26289144,5
+59778828,26289144,3
+monkeybread,26289144,5
+NAGISHO,26289144,4
+23123546,26289144,2
+zxjtmac,26289144,4
+9091191,26289144,4
+57101279,26289144,3
+xmarks,26289144,4
+103297189,26289144,4
+dominique2011,26289144,4
+80082310,26289144,4
+48759818,26289144,4
+B612minmin,26289144,4
+fatia0,26289144,3
+blessyue,26289144,2
+smileape,26289144,3
+3192065,26289144,5
+Lisa.L,26289144,4
+58518599,26289144,4
+sunshinezz1991,26289144,4
+Argine,26289144,5
+ouchen,26289144,4
+romanbaby,26289144,4
+thymedy,26289144,4
+40140527,26289144,2
+127331732,26289144,5
+poisonseven,26289144,5
+133254262,26289144,4
+aidaaijani,26289144,4
+121995347,26289144,2
+69447677,26289144,3
+4105122,26289144,5
+54454254,26289144,3
+wenvampire,26289144,3
+josiekiu,26289144,4
+loewefree,26289144,4
+gmmmilly,26289144,3
+57880330,26289144,5
+54286467,26289144,4
+1148060,26289144,4
+45379301,26289144,4
+35569894,26289144,5
+69343888,26289144,5
+30130783,26289144,5
+zhangzhangzhang,26289144,4
+51965596,26289144,3
+50174936,26289144,4
+cain_c_h,26289144,3
+78406452,26289144,4
+2507748,26289144,3
+62955240,26289144,4
+lovemj4ever,26289144,-1
+51275819,26289144,4
+60042960,26289144,5
+64628791,26289144,3
+ontheroad93,26289144,4
+xiamudemao,26289144,3
+1786605,26289144,3
+2770592,26289144,5
+49435286,26289144,4
+yasmine818,26289144,4
+65510626,26289144,4
+49298107,26289144,3
+45863582,26289144,4
+127195303,26289144,4
+40172272,26289144,4
+43558322,26289144,3
+58068960,26289144,4
+bonnieWZ,26289144,3
+yoyolibing,26289144,4
+65948631,26289144,5
+35438123,26289144,4
+99707810,26289144,4
+t-ulala,26289144,4
+idlelz,26289144,5
+43986034,26289144,4
+sui2,26289144,4
+68730494,26289144,5
+3532046,26289144,5
+24159540,26289144,5
+solavre,26289144,-1
+122493414,26289144,3
+49353834,26289144,1
+36487100,26289144,5
+126851607,26289144,-1
+barcaren,26289144,4
+58396651,26289144,5
+4480754,26289144,3
+121268267,26289144,4
+kyouichigo,26289144,4
+aquamarine12,26289144,5
+126804729,26289144,3
+apubit,26289144,5
+hrcforever,26289144,5
+63015303,26289144,5
+17708601,26289144,3
+yumaomao123,26289144,4
+57070161,26289144,3
+why781,26289144,3
+108238162,26289144,3
+Katherinexiaoya,26289144,4
+helenhong,26289144,3
+68504200,26289144,4
+43587694,26289144,2
+littlecolor,26289144,4
+14822784,26289144,3
+61672883,26289144,4
+56620067,26289144,3
+101935328,26289144,3
+122977131,26289144,4
+givenchy_,26289144,4
+foxnilo,26289144,5
+nieblalan,26289144,3
+77130491,26289144,4
+zongzi-to,26289144,3
+anita866,26289144,3
+59323757,26289144,4
+sun_Lan,26289144,4
+qilisa,26289144,3
+40173851,26289144,4
+4446231,26289144,4
+124115296,26289144,4
+vivilida,26289144,4
+121669763,26289144,4
+41629334,26289144,2
+linyuzhu,26289144,4
+74862472,26289144,3
+43844879,26289144,5
+47362295,26289144,3
+yeyinihao,26289144,4
+cory1990,26289144,4
+4542047,26289144,3
+daodao1992,26289144,3
+broccole,26289144,4
+120594858,26289144,3
+76895524,26289144,4
+49543670,26289144,4
+ladycocoococ,26289144,5
+Cliaoliao,26289144,5
+me_too_89,26289144,4
+51225563,26289144,4
+helianchan,26289144,4
+tessai,26289144,4
+2128957,26289144,1
+mutangdan,26289144,4
+50754510,26289144,3
+128608439,26289144,4
+bigfish0625,26289144,5
+vittek,26289144,3
+90141654,26289144,-1
+1815173,26289144,-1
+4902486,26289144,4
+48296036,26289144,5
+63063218,26289144,4
+helenrain553,26289144,4
+amberhjx,26289144,5
+133081185,26289144,-1
+oochachaoo,26289144,4
+120738970,26289144,3
+winniwang,26289144,4
+kasilly,26289144,3
+51010303,26289144,5
+gyd,26289144,3
+8527993,26289144,4
+1219663,26289144,3
+leeblink,26289144,4
+14594315,26289144,4
+ann5342,26289144,3
+80592508,26289144,5
+AIOLIX,26289144,4
+zhazha-GUY,26289144,5
+ursula1989630,26289144,-1
+52128481,26289144,4
+58430173,26289144,3
+36408136,26289144,5
+Tianyangyang,26289144,5
+DreamCoocoo,26289144,-1
+50935316,26289144,3
+14433242,26289144,3
+reachtheclouds,26289144,5
+54943644,26289144,4
+50256135,26289144,3
+81652871,26289144,4
+53171655,26289144,5
+Phoenix.R,26289144,4
+cici1127,26289144,5
+rhythmfish,26289144,4
+131278340,26289144,5
+63432491,26289144,1
+cici0617,26289144,4
+63119034,26289144,4
+sqxmy,26289144,4
+44573720,26289144,4
+2675546,26289144,4
+62743962,26289144,4
+leoflower,26289144,4
+52228251,26289144,4
+91653104,26289144,3
+131508135,26289144,3
+56808256,26289144,2
+1478265,26289144,4
+122232631,26289144,5
+132764273,26289144,4
+skyjadebear,26289144,4
+cloverjiang,26289144,4
+62875817,26289144,5
+120237667,26289144,4
+121270446,26289144,5
+68280727,26289144,4
+emd12,26289144,3
+3086105,26289144,5
+Cosmo--,26289144,3
+41110782,26289144,4
+xiaoyu_,26289144,4
+67654598,26289144,5
+57576645,26289144,3
+4252806,26289144,5
+ribby2530032,26289144,5
+Jennifer6364,26289144,5
+52093119,26289144,4
+68363266,26289144,4
+3549790,26289144,4
+71159763,26289144,5
+128061195,26289144,3
+kkbear,26289144,3
+57126994,26289144,4
+maomiDD,26289144,5
+joy0209,26289144,5
+34946618,26289144,4
+2823823,26289144,3
+x1Ao_y,26289144,2
+30119648,26289144,4
+103601040,26289144,5
+52593168,26289144,5
+siorjot,26289144,3
+73644036,26289144,3
+50219833,26289144,3
+Elvis-lx3,26289144,3
+86928462,26289144,5
+130093358,26289144,5
+68102477,26289144,3
+smallxuxu,26289144,5
+13198756,26289144,3
+57980226,26289144,2
+venice1989,26289144,5
+122244041,26289144,5
+ltec,26289144,4
+55470975,26289144,5
+baiseshijie,26289144,4
+92612053,26289144,3
+48171385,26289144,2
+63291664,26289144,4
+47391200,26289144,4
+77868057,26289144,3
+104217695,26289144,5
+change724,26289144,4
+ymelissa,26289144,3
+65366981,26289144,5
+54783483,26289144,3
+don_C,26289144,3
+67111553,26289144,4
+78609376,26289144,3
+JhPi,26289144,3
+63758631,26289144,4
+51067587,26289144,5
+66100876,26289144,4
+73696070,26289144,5
+54772166,26289144,4
+81848652,26289144,1
+49346952,26289144,4
+allblue,26289144,3
+50041894,26289144,3
+72097640,26289144,5
+cancercell,26289144,3
+39353379,26289144,5
+30435959,26289144,3
+59813473,26289144,5
+hhl199504,26289144,3
+33179901,26289144,4
+124697172,26289144,3
+75585925,26289144,5
+51761822,26289144,4
+sdqz111,26289144,5
+105547420,26289144,4
+4323578,26289144,5
+lesoleil29,26289144,3
+jinli06251011,26289144,4
+Isabella_Li,26289144,4
+65213268,26289144,3
+50557701,26289144,5
+93565638,26289144,4
+68791794,26289144,4
+4095313,26289144,4
+50566408,26289144,3
+83359033,26289144,5
+63454457,26289144,5
+shouzi123,26289144,1
+72394582,26289144,3
+73398002,26289144,5
+evolastaroth,26289144,4
+70167292,26289144,4
+55795486,26289144,4
+lamp77,26289144,3
+88817660,26289144,4
+nestark,26289144,4
+80468427,26289144,5
+x1ngstar,26289144,4
+107513216,26289144,5
+uncleradar,26289144,2
+123642318,26289144,5
+65985883,26289144,4
+yoyoyoyoyoyoyo,26289144,3
+122857735,26289144,4
+27193398,26289144,3
+46683408,26289144,4
+24678754,26289144,5
+43983604,26289144,5
+sunflowerlife,26289144,5
+63788372,26289144,2
+50540249,26289144,2
+xsmm995,26289144,4
+linkahay,26289144,-1
+70507408,26289144,3
+128140278,26289144,5
+56523767,26289144,2
+pussyyy,26289144,4
+65058797,26289144,4
+Exiaofei,26289144,2
+53789319,26289144,3
+xiangL,26289144,-1
+55933493,26289144,3
+ricardo1213,26289144,-1
+52813259,26289144,4
+1177906,26289144,5
+69806082,26289144,4
+YouyuCherry,26289144,5
+124451829,26289144,4
+115713999,26289144,4
+69675369,26289144,4
+62891524,26289144,4
+68917720,26289144,3
+silyhy,26289144,5
+122130571,26289144,1
+wutongtree,26289144,3
+83387684,26289144,3
+115892758,26289144,5
+renzongxian,26289144,4
+arlena-lxy,26289144,4
+55691470,26289144,1
+mwangym,26289144,3
+64931899,26289144,4
+125028043,26289144,4
+59537499,26289144,4
+lonaliu,26289144,-1
+75914022,26289144,4
+68568891,26289144,3
+75196730,26289144,5
+119295809,26289144,3
+48941673,26289144,2
+leixiaotian,26289144,5
+lulusea,26289144,3
+46852735,26289144,4
+hussi,26289144,4
+52304130,26289144,5
+69947402,26289144,4
+40679184,26289144,5
+44753719,26289144,2
+59945460,26289144,5
+75386626,26289144,4
+isabellaaa,26289144,5
+52522813,26289144,4
+jueli,26289144,5
+53006710,26289144,5
+easy1028,26289144,3
+52890425,26289144,4
+2776195,26289144,3
+68567528,26289144,3
+semenov,26289144,3
+Maideren,26289144,4
+freedom-seeker,26289144,2
+49568811,26289144,5
+48310457,26289144,4
+carolcai,26289144,4
+69006454,26289144,4
+yingxxxxx,26289144,5
+15909016,26289144,4
+44394014,26289144,4
+124765626,26289144,5
+77136700,26289144,5
+66494720,26289144,4
+52128308,26289144,2
+qianmolvshui,26289144,3
+75151366,26289144,1
+4590533,26289144,3
+33893684,26289144,5
+kathychu,26289144,4
+26124696,26289144,4
+52399993,26289144,2
+ooh,26289144,-1
+130996928,26289144,4
+52046312,26289144,4
+3514375,26289144,3
+81377005,26289144,4
+47250034,26289144,5
+43157559,26289144,3
+leeho,26289144,4
+43649933,26289144,3
+79770015,26289144,3
+mmdr,26289144,4
+41142807,26289144,5
+44800768,26289144,3
+61956247,26289144,5
+benchaos,26289144,3
+49547121,26289144,4
+stellazz,26289144,5
+11383205,26289144,2
+60199012,26289144,3
+45637798,26289144,4
+50833816,26289144,2
+58040215,26289144,3
+iamsyh,26289144,2
+66801407,26289144,3
+Danny-Green,26289144,-1
+65634385,26289144,4
+aimar1989,26289144,2
+97757646,26289144,3
+bugaoxing233,26289144,3
+1021243,26289144,3
+84602566,26289144,3
+65039210,26289144,5
+fenglimuren,26289144,3
+128416506,26289144,5
+37770325,26289144,5
+49072774,26289144,4
+4192096,26289144,5
+39577574,26289144,3
+81665300,26289144,4
+allancat,26289144,3
+62742351,26289144,1
+samsaid,26289144,5
+m.Blacky,26289144,4
+irissui,26289144,4
+3365374,26289144,4
+81134195,26289144,3
+84752076,26289144,4
+121767165,26289144,5
+62901863,26289144,4
+108282995,26289144,3
+84796559,26289144,4
+47346400,26289144,4
+63942513,26289144,5
+49283771,26289144,4
+47476631,26289144,4
+4182754,26289144,2
+58079991,26289144,4
+63982929,26289144,1
+3682455,26289144,3
+yangqiaohe,26289144,3
+78603493,26289144,2
+77890563,26289144,3
+lovelei1128,26289144,5
+69822920,26289144,4
+4160305,26289144,5
+SophieRu,26289144,4
+49130506,26289144,4
+42932797,26289144,2
+7549744,26289144,4
+shihuayiduo,26289144,5
+53877844,26289144,3
+63413340,26289144,4
+baby-giG,26289144,4
+37840696,26289144,5
+47495254,26289144,3
+dear.sunny,26289144,4
+14480826,26289144,4
+128778083,26289144,3
+shengworld,26289144,5
+BeanInk,26289144,4
+129432208,26289144,3
+127345819,26289144,5
+52084703,26289144,3
+littlepinkbang7,26289144,3
+42606868,26289144,5
+luoyunxiang72,26289144,5
+107189670,26289144,5
+3712644,26289144,5
+28736165,26289144,3
+Stephanie0812,26289144,4
+48764091,26289144,4
+chenzhuoqing,26289144,5
+56908068,26289144,3
+132294875,26289144,4
+sol_cher,26289144,2
+40786451,26289144,4
+ichizi,26289144,4
+4247319,26289144,3
+84196322,26289144,5
+ruoyingwang,26289144,3
+78727212,26289144,3
+48003133,26289144,4
+44842518,26289144,3
+cilar,26289144,4
+62403523,26289144,3
+erosthefaith,26289144,3
+lil1314,26289144,2
+1151347,26289144,5
+56272874,26289144,3
+4742214,26289144,4
+celia550,26289144,5
+karen_n,26289144,3
+65054384,26289144,5
+85659565,26289144,5
+gsle,26289144,3
+125275470,26289144,4
+3894298,26289144,5
+dywinlo,26289144,3
+130315248,26289144,3
+53814284,26289144,4
+ysding,26289144,5
+52821678,26289144,3
+3252036,26289144,5
+70253982,26289144,2
+mary27,26289144,3
+120671583,26289144,4
+60270558,26289144,5
+zzhwong,26289144,3
+sho2mon4e4y,26289144,3
+newbear,26289144,4
+63946270,26289144,4
+45956471,26289144,3
+julsparks,26289144,3
+iswear_4ever,26289144,4
+65268125,26289144,4
+81275158,26289144,4
+2299177,26289144,4
+Xulol,26289144,5
+77052440,26289144,4
+11952708,26289144,5
+forgotten_a,26289144,5
+51815099,26289144,4
+51964304,26289144,5
+honeyeve99,26289144,4
+zitong970329,26289144,4
+46711215,26289144,4
+91511148,26289144,5
+antoniagreen,26289144,4
+3061104,26289144,3
+47788698,26289144,-1
+51054582,26289144,4
+45580817,26289144,4
+49901679,26289144,4
+51803624,26289144,4
+41007086,26289144,2
+66602695,26289144,3
+30986190,26289144,5
+45485577,26289144,3
+elva_M,26289144,5
+qiongdong,26289144,5
+timetowrite,26289144,3
+62248380,26289144,5
+geyao1994,26289144,3
+60373659,26289144,4
+macaronigerrard,26289144,4
+67664389,26289144,4
+2718136,26289144,4
+71100061,26289144,3
+55765864,26289144,4
+halouwai,26289144,5
+raeshow,26289144,1
+64216484,26289144,3
+49055465,26289144,4
+3023775,26289144,5
+42096804,26289144,5
+58536019,26289144,5
+koalalalalala,26289144,4
+cassiopeiaxiah,26289144,4
+3011208,26289144,5
+wenjun63,26289144,3
+84776215,26289144,3
+2922610,26289144,4
+amy6663,26289144,4
+3563546,26289144,1
+57695371,26289144,2
+54575402,26289144,4
+69273282,26289144,2
+Forrestgary,26289144,3
+91626041,26289144,1
+48314806,26289144,4
+more-lee,26289144,5
+133239175,26289144,3
+suri00,26289144,1
+suri00,26289144,1
+75215072,26289144,3
+withCR7,26289144,4
+68622402,26289144,5
+jewelalways,26289144,3
+62149917,26289144,5
+36116632,26289144,5
+lostoldboy,26289144,3
+80313143,26289144,3
+96390757,26289144,5
+130743803,26289144,4
+58155275,26289144,4
+79926360,26289144,5
+54478772,26289144,4
+67072789,26289144,5
+xuansunjipu,26289144,5
+34823102,26289144,3
+59660757,26289144,4
+74230231,26289144,5
+94073624,26289144,4
+123818102,26289144,4
+49761983,26289144,5
+michaelswift,26289144,4
+124507424,26289144,3
+lucifer-.,26289144,5
+49435214,26289144,4
+11542932,26289144,3
+4431205,26289144,1
+96891092,26289144,4
+xiao33319,26289144,4
+godspeedcl,26289144,4
+KathyChin,26289144,4
+29076066,26289144,4
+63438574,26289144,4
+nuoxiaofan,26289144,4
+lingjunxin,26289144,3
+70659345,26289144,3
+loneleaf,26289144,3
+131186872,26289144,4
+68146250,26289144,4
+2403415,26289144,4
+47052897,26289144,4
+khuntracie,26289144,3
+1442997,26289144,4
+hachilovenana,26289144,4
+1212231,26289144,4
+120672729,26289144,5
+echolee314,26289144,3
+75816616,26289144,5
+53068258,26289144,4
+37402421,26289144,4
+49176180,26289144,4
+lareida,26289144,3
+banine,26289144,5
+amily,26289144,5
+serenity.,26289144,3
+4427410,26289144,3
+63446871,26289144,5
+3406367,26289144,3
+4652229,26289144,4
+2236097,26289144,3
+mymx,26289144,3
+3639221,26289144,3
+chusijie,26289144,3
+2437069,26289144,3
+54636102,26289144,4
+88070266,26289144,4
+45415998,26289144,5
+67817372,26289144,5
+o.oMIKA,26289144,4
+karenapao,26289144,4
+55286449,26289144,4
+49027531,26289144,4
+ianchueng,26289144,4
+kTears,26289144,4
+36654067,26289144,3
+54914078,26289144,5
+53061557,26289144,3
+69193607,26289144,5
+58934229,26289144,4
+PKUTeaParty,26289144,1
+79116802,26289144,3
+62616565,26289144,4
+57230680,26289144,2
+muxiaoxu,26289144,4
+62876857,26289144,4
+27041231,26289144,3
+62113425,26289144,4
+56649595,26289144,3
+43526618,26289144,4
+acheri,26289144,4
+116540697,26289144,3
+95626875,26289144,3
+woodrain,26289144,4
+68948810,26289144,4
+41316861,26289144,4
+66311081,26289144,5
+80826623,26289144,4
+37180784,26289144,4
+38756287,26289144,5
+82484536,26289144,4
+67700979,26289144,4
+67699413,26289144,4
+DAJi.,26289144,-1
+125063685,26289144,4
+51195238,26289144,4
+ChanelFive,26289144,3
+andichou,26289144,4
+xuylu,26289144,3
+61565344,26289144,5
+1432690,26289144,4
+63371846,26289144,5
+loveuparis,26289144,-1
+Hiedra,26289144,2
+122483306,26289144,5
+51381772,26289144,5
+69253315,26289144,4
+50188089,26289144,4
+131169136,26289144,4
+lorenmt,26289144,5
+49809695,26289144,4
+majiali,26289144,4
+37216617,26289144,3
+4297674,26289144,3
+42784448,26289144,5
+Isforever,26289144,4
+45658858,26289144,2
+abciris,26289144,1
+HELLLORD,26289144,3
+51199402,26289144,4
+chj19890824,26289144,4
+yrvincy0622yang,26289144,3
+41400893,26289144,4
+56186350,26289144,4
+54754800,26289144,4
+68949311,26289144,4
+90257264,26289144,4
+47157955,26289144,3
+muxueqz,26289144,4
+129101053,26289144,4
+61193045,26289144,3
+52189374,26289144,3
+47352728,26289144,5
+bestfaye9916,26289144,4
+iverain_sunny,26289144,4
+2754902,26289144,5
+sandy0205,26289144,4
+WanSAMA,26289144,4
+84994086,26289144,5
+iplumage,26289144,5
+75823430,26289144,4
+8708200,26289144,4
+Veronicam,26289144,4
+airq7,26289144,4
+57941736,26289144,4
+hayako8059,26289144,3
+82222392,26289144,5
+FILANIEYOTE,26289144,3
+77412866,26289144,4
+79773701,26289144,3
+4856520,26289144,3
+bluefaith_,26289144,4
+41939078,26289144,4
+milkbook,26289144,4
+gee880130,26289144,3
+8135531,26289144,4
+genevieve_xie,26289144,4
+crystal1812,26289144,3
+damos,26289144,4
+47993403,26289144,4
+pau,26289144,3
+124346436,26289144,-1
+52203160,26289144,4
+49583852,26289144,4
+szzhhq,26289144,5
+57842655,26289144,4
+Morta13,26289144,4
+noelmumu,26289144,4
+57646854,26289144,4
+happy.ending,26289144,4
+127569899,26289144,5
+5580630,26289144,5
+tatamiao,26289144,4
+49353802,26289144,4
+6990422,26289144,5
+66900616,26289144,4
+84620795,26289144,5
+GGGGGly,26289144,4
+51478034,26289144,4
+50339842,26289144,3
+40624562,26289144,4
+greengina,26289144,4
+yue2510,26289144,3
+58016445,26289144,4
+StandOnLifE,26289144,4
+1333942,26289144,4
+65021672,26289144,3
+101126607,26289144,4
+53159489,26289144,5
+54463527,26289144,4
+girlishpunk,26289144,3
+79560195,26289144,3
+still21,26289144,4
+asato,26289144,3
+CrossGigi,26289144,3
+27783640,26289144,5
+53317988,26289144,2
+84936380,26289144,3
+2193208,26289144,4
+4040058,26289144,4
+65648001,26289144,5
+14510418,26289144,4
+47936336,26289144,5
+poppy1985,26289144,4
+129931141,26289144,3
+78753679,26289144,4
+10841900,26289144,5
+56270144,26289144,3
+81469223,26289144,4
+70066511,26289144,4
+46020243,26289144,4
+sherry1013L,26289144,4
+126682168,26289144,5
+69946594,26289144,4
+60017606,26289144,5
+72902533,26289144,4
+Joongsim952,26289144,4
+lynn6,26289144,5
+51503805,26289144,4
+103282457,26289144,4
+102992565,26289144,4
+atong1013,26289144,5
+44166324,26289144,4
+68804843,26289144,3
+supercat_cc,26289144,4
+vivianya,26289144,4
+62605469,26289144,4
+pingpingen,26289144,3
+qilapengqi,26289144,3
+47244043,26289144,5
+57844107,26289144,4
+zita1021,26289144,4
+56968028,26289144,4
+66899072,26289144,3
+85994648,26289144,4
+qianshu19921105,26289144,5
+graceberyl,26289144,5
+92758974,26289144,5
+45545379,26289144,2
+64393293,26289144,4
+huaflower,26289144,4
+z_ana,26289144,3
+anniebear,26289144,4
+47625762,26289144,5
+baniujun,26289144,3
+123028634,26289144,1
+77640366,26289144,3
+tianchuan,26289144,3
+dgtdgb,26289144,5
+llllLoadingllll,26289144,1
+stayfoolishstay,26289144,4
+33290727,26289144,4
+43948714,26289144,3
+78941984,26289144,5
+53187473,26289144,3
+hici,26289144,4
+50228316,26289144,5
+48441251,26289144,4
+zeisiphe,26289144,3
+118607602,26289144,3
+56909243,26289144,4
+64413783,26289144,3
+46171648,26289144,4
+43562049,26289144,3
+74672452,26289144,5
+59021120,26289144,4
+4618269,26289144,4
+meow-3-,26289144,-1
+63612567,26289144,4
+hongshui,26289144,4
+36268247,26289144,3
+Explosion,26289144,3
+sherjohn,26289144,5
+65524636,26289144,5
+snowwjq,26289144,4
+63564385,26289144,4
+moviet,26289144,4
+37569925,26289144,4
+hualiyan,26289144,5
+57057682,26289144,4
+55457402,26289144,4
+91528271,26289144,5
+57993547,26289144,4
+jayya,26289144,5
+63111195,26289144,3
+mylittlehero,26289144,4
+ljjchn,26289144,5
+azizi,26289144,5
+violinyuki,26289144,5
+dandan.g,26289144,4
+64882417,26289144,4
+1629434,26289144,5
+2878601,26289144,4
+68740315,26289144,3
+62677649,26289144,5
+jizisudexiaowo,26289144,4
+63765493,26289144,3
+huchuyiduoyun,26289144,3
+4359622,26289144,5
+64254102,26289144,3
+23750536,26289144,4
+44272314,26289144,3
+3059834,26289144,4
+Ying-77,26289144,4
+twitodd,26289144,3
+68549947,26289144,4
+Freiheit429,26289144,5
+12345596,26289144,4
+83459700,26289144,3
+56874186,26289144,3
+53516691,26289144,5
+126225635,26289144,3
+51680395,26289144,3
+heck,26289144,2
+52719303,26289144,4
+103925530,26289144,3
+94269146,26289144,5
+4725146,26289144,5
+126557589,26289144,4
+130745675,26289144,5
+47890909,26289144,4
+4116226,26289144,3
+127058988,26289144,4
+39447144,26289144,4
+47425111,26289144,4
+57640790,26289144,5
+67727072,26289144,3
+1496249,26289144,-1
+soutyo,26289144,4
+100582359,26289144,4
+13330129,26289144,4
+44828590,26289144,5
+softwind,26289144,4
+72781855,26289144,3
+gsjivy,26289144,5
+73701438,26289144,5
+taiyouchashe,26289144,5
+9552246,26289144,5
+131817734,26289144,3
+16048346,26289144,5
+cl20lc,26289144,4
+66650863,26289144,3
+29904054,26289144,5
+Yolandaleaf,26289144,4
+71429906,26289144,3
+lee.elsie,26289144,5
+130147627,26289144,5
+131244878,26289144,4
+51800781,26289144,3
+fkimi,26289144,4
+diqiuchaoren,26289144,4
+67502392,26289144,3
+56843116,26289144,5
+dmLaura,26289144,4
+80005992,26289144,4
+alan1991,26289144,4
+126156647,26289144,3
+BELINDA.S,26289144,3
+michelle88411,26289144,3
+nian-an,26289144,5
+4419252,26289144,3
+sweetxyy,26289144,4
+70192323,26289144,5
+dydoudou,26289144,5
+54537877,26289144,2
+nianhuaapple,26289144,3
+71958034,26289144,4
+53945006,26289144,4
+hegwin,26289144,3
+73626355,26289144,4
+62657502,26289144,3
+40850252,26289144,3
+pedant,26289144,3
+63606603,26289144,3
+2705619,26289144,5
+scorates1984,26289144,3
+13424749,26289144,3
+84883951,26289144,5
+55537673,26289144,5
+stwloveyou,26289144,4
+songdajia,26289144,3
+scarlett128,26289144,5
+LarryCC,26289144,4
+60968500,26289144,3
+4692822,26289144,4
+nonolv,26289144,4
+samsyu,26289144,3
+CloudRiver,26289144,3
+sweetranran,26289144,5
+120907919,26289144,5
+65041467,26289144,4
+2428233,26289144,2
+71640049,26289144,3
+65516017,26289144,3
+3875131,26289144,4
+45484348,26289144,5
+lcpeng,26289144,4
+morachen,26289144,5
+JustStayReal,26289144,4
+81518415,26289144,5
+50340855,26289144,5
+helianthus249,26289144,5
+xiaolian818,26289144,4
+minilion,26289144,3
+sunlightsilent,26289144,4
+106535203,26289144,4
+88020154,26289144,5
+47072592,26289144,4
+61587775,26289144,2
+germ546,26289144,4
+52656396,26289144,3
+130658738,26289144,4
+2874898,26289144,4
+66688383,26289144,-1
+sherwinchen,26289144,4
+86482648,26289144,4
+touch1986summer,26289144,4
+62395792,26289144,5
+babemomo,26289144,4
+82238487,26289144,3
+dbl1209,26289144,5
+addff,26289144,4
+55312255,26289144,5
+3681116,26289144,4
+121187003,26289144,4
+dtspsAli,26289144,5
+yihuiw,26289144,-1
+77779025,26289144,5
+sukey91,26289144,-1
+9275684,26289144,4
+3442648,26289144,4
+52477984,26289144,4
+10392574,26289144,5
+96514775,26289144,4
+binglanxier,26289144,3
+xiaoyingshuo,26289144,4
+50402097,26289144,4
+65536740,26289144,3
+66824818,26289144,5
+cancerb,26289144,3
+4107805,26289144,4
+52897840,26289144,3
+66629958,26289144,3
+Malivoni,26289144,3
+52490954,26289144,4
+119447313,26289144,4
+12940795,26289144,5
+calvingaga,26289144,5
+55701734,26289144,4
+57154936,26289144,5
+lan_nal,26289144,5
+2988089,26289144,4
+53867160,26289144,4
+82981100,26289144,4
+132516248,26289144,5
+75407043,26289144,5
+81675003,26289144,4
+88449358,26289144,3
+78469944,26289144,4
+40671585,26289144,3
+Wsuansuan,26289144,3
+28089263,26289144,5
+42443171,26289144,4
+125699910,26289144,5
+52725183,26289144,4
+49326924,26289144,-1
+69033332,26289144,4
+71213580,26289144,2
+74636626,26289144,5
+xiaozhudejia,26289144,3
+remember08,26289144,3
+Ane1114,26289144,4
+wwwwind,26289144,4
+101847790,26289144,3
+83421554,26289144,4
+122254128,26289144,2
+129548995,26289144,3
+jia931218,26289144,3
+amylittle,26289144,4
+53768209,26289144,4
+132959097,26289144,2
+71260543,26289144,4
+40301659,26289144,4
+sesey,26289144,4
+soloz,26289144,4
+48107309,26289144,3
+100308331,26289144,3
+sofahuang,26289144,5
+43771540,26289144,3
+icyiwing,26289144,3
+3551930,26289144,4
+3601408,26289144,5
+55801158,26289144,4
+48115783,26289144,4
+wetony,26289144,5
+zyqwendy,26289144,4
+sweetloli,26289144,5
+crystal12345678,26289144,3
+49226452,26289144,4
+kikiyo,26289144,5
+70126303,26289144,5
+130563021,26289144,5
+64479470,26289144,4
+47709338,26289144,4
+76368408,26289144,4
+ooohhh,26289144,3
+tosummer,26289144,4
+4644252,26289144,4
+12769559,26289144,4
+57818188,26289144,5
+76879519,26289144,4
+59117359,26289144,4
+ginnyisbest,26289144,3
+64092197,26289144,2
+2118444,26289144,4
+falling__slowly,26289144,5
+58612152,26289144,5
+veraxia,26289144,3
+dolphivy,26289144,4
+82922841,26289144,5
+sanjingshu,26289144,4
+92156048,26289144,4
+127326691,26289144,3
+61721303,26289144,5
+34845334,26289144,2
+51481264,26289144,-1
+ylo1995,26289144,4
+48852309,26289144,4
+50663566,26289144,3
+50042237,26289144,3
+4605514,26289144,-1
+oqopo,26289144,4
+115690394,26289144,3
+asparku,26289144,1
+34946964,26289144,4
+37862989,26289144,4
+70451033,26289144,4
+june140,26289144,5
+3051416,26289144,4
+92882189,26289144,5
+124506846,26289144,3
+30756543,26289144,4
+67330324,26289144,5
+31082152,26289144,4
+wen_Schwartz,26289144,3
+schauer,26289144,4
+49859720,26289144,3
+63283519,26289144,4
+1732296,26289144,5
+7255952,26289144,4
+edward4th,26289144,4
+78936814,26289144,3
+yueakou,26289144,4
+seclock,26289144,4
+52340966,26289144,5
+fycqcyl,26289144,4
+queeneiekong,26289144,4
+69143303,26289144,3
+125111991,26289144,4
+61479485,26289144,5
+52639138,26289144,4
+61756518,26289144,4
+31825547,26289144,4
+junxu,26289144,5
+iris007,26289144,5
+Irice,26289144,3
+51863269,26289144,3
+minisle,26289144,-1
+summer_ending,26289144,4
+28677254,26289144,4
+2849023,26289144,5
+57567703,26289144,4
+46988809,26289144,5
+77066905,26289144,4
+115725912,26289144,3
+68211622,26289144,4
+69269026,26289144,3
+46706719,26289144,3
+121143952,26289144,4
+48854947,26289144,4
+50487557,26289144,4
+FlowerCharlotte,26289144,4
+70933657,26289144,2
+nsxrb,26289144,5
+126823086,26289144,3
+zo3c,26289144,3
+133206938,26289144,5
+52267466,26289144,4
+127161571,26289144,4
+61551663,26289144,3
+CandyLee,26289144,4
+55372361,26289144,4
+123469699,26289144,5
+48086899,26289144,3
+58936179,26289144,5
+69318478,26289144,5
+45182456,26289144,4
+sherry-he,26289144,3
+66782031,26289144,4
+61294090,26289144,3
+45573643,26289144,4
+46192988,26289144,3
+yangsheng213,26289144,5
+57948603,26289144,4
+28953793,26289144,4
+sirs,26289144,5
+49731358,26289144,4
+star7uk,26289144,4
+100682612,26289144,5
+49999035,26289144,4
+47748422,26289144,5
+92185128,26289144,3
+60042358,26289144,4
+50995944,26289144,4
+2749090,26289144,4
+93728249,26289144,3
+4003283,26289144,3
+crystalLXT,26289144,5
+54484674,26289144,4
+39941847,26289144,2
+60164945,26289144,4
+xudifang13,26289144,4
+twofour,26289144,3
+83145085,26289144,4
+gothickid,26289144,3
+notfound4O4,26289144,4
+124144390,26289144,3
+48194344,26289144,4
+GUYU7,26289144,3
+45344907,26289144,4
+63528738,26289144,5
+annieer,26289144,3
+jsgoldwall,26289144,5
+58082630,26289144,4
+1424866,26289144,4
+colorjiang,26289144,4
+105737828,26289144,3
+Sarinagara,26289144,4
+77377194,26289144,-1
+chuqihua,26289144,5
+ops-out,26289144,4
+45872414,26289144,5
+weiluotuo,26289144,5
+2453788,26289144,5
+HYQRZKLS,26289144,4
+62767717,26289144,3
+36740289,26289144,5
+39277050,26289144,4
+34751637,26289144,2
+changle0605,26289144,4
+basketdai,26289144,2
+2406760,26289144,3
+4693252,26289144,3
+46281534,26289144,4
+53617231,26289144,5
+76763638,26289144,4
+56524561,26289144,4
+60653503,26289144,4
+47195572,26289144,3
+49680971,26289144,4
+2842222,26289144,3
+YUYII,26289144,3
+tongyc8844,26289144,4
+69406658,26289144,4
+hujiarui,26289144,5
+amandaccforever,26289144,4
+56797287,26289144,4
+67863557,26289144,1
+17039920,26289144,5
+48568251,26289144,5
+75796576,26289144,4
+jack13,26289144,3
+lachie,26289144,4
+1464431,26289144,5
+59281940,26289144,5
+raibei,26289144,4
+121902065,26289144,4
+57830328,26289144,2
+bina,26289144,5
+beijinglife,26289144,4
+55761413,26289144,5
+lunatic,26289144,-1
+1975978,26289144,2
+snivelbb,26289144,4
+50299553,26289144,4
+77869883,26289144,3
+my-travel,26289144,4
+s1975,26289144,4
+62599463,26289144,1
+zcq741433220,26289144,3
+CINDY_YL,26289144,5
+46542025,26289144,4
+Beth0204,26289144,4
+57847785,26289144,4
+37779729,26289144,4
+108098569,26289144,5
+daidai1113,26289144,3
+130190354,26289144,5
+SheRrySweets,26289144,4
+Guessdache,26289144,3
+70214405,26289144,3
+84563751,26289144,3
+43632207,26289144,4
+luoqiuyue,26289144,4
+rienge,26289144,5
+Lucky_zx,26289144,4
+27553815,26289144,4
+62569026,26289144,5
+48667596,26289144,4
+44772366,26289144,4
+cicichen520,26289144,4
+42818177,26289144,2
+85261994,26289144,5
+wangymm,26289144,4
+69192646,26289144,5
+123288101,26289144,4
+xiaole91,26289144,5
+53267569,26289144,3
+34569099,26289144,4
+FUTU,26289144,4
+120268630,26289144,3
+53671054,26289144,3
+49724572,26289144,3
+76716859,26289144,4
+80178442,26289144,2
+ABadguyII,26289144,1
+hedmgh,26289144,4
+55840798,26289144,3
+47210442,26289144,4
+64463407,26289144,3
+115999678,26289144,4
+45849847,26289144,5
+39378921,26289144,4
+liza_,26289144,5
+cheerjuno,26289144,5
+yededi8821,26289144,4
+4606615,26289144,4
+v-iviann,26289144,5
+88675754,26289144,3
+syanns,26289144,4
+4361447,26289144,-1
+119995299,26289144,4
+46723620,26289144,5
+rangdream,26289144,5
+89474196,26289144,4
+97482066,26289144,4
+Gypsonia,26289144,5
+45509005,26289144,5
+123266321,26289144,5
+1666027,26289144,3
+v1wanghuang,26289144,5
+irockbunny,26289144,4
+4638925,26289144,4
+30723982,26289144,4
+Conniejin,26289144,3
+53675537,26289144,5
+xx218,26289144,3
+diana961108,26289144,-1
+1430050,26289144,4
+emily2ang,26289144,3
+57837592,26289144,3
+70242855,26289144,3
+83161147,26289144,5
+Cmille_Kong,26289144,4
+zero01,26289144,3
+131966869,26289144,1
+95501857,26289144,4
+104062670,26289144,4
+dragonflyzen,26289144,5
+cynthiaaw,26289144,3
+yubaozilee,26289144,3
+54632275,26289144,2
+2014095,26289144,4
+51060145,26289144,5
+123707252,26289144,4
+58774425,26289144,5
+71326321,26289144,4
+49958643,26289144,4
+BBBigZhi,26289144,5
+fishtheobscure,26289144,4
+yacharlotte,26289144,3
+4826633,26289144,3
+74463808,26289144,3
+3899782,26289144,4
+hans_berdych,26289144,1
+cicizhaowei,26289144,3
+woniumm,26289144,4
+28524293,26289144,4
+wangyice,26289144,3
+58399217,26289144,4
+ran28,26289144,4
+43360069,26289144,4
+74780656,26289144,4
+58729354,26289144,5
+59657501,26289144,4
+9463369,26289144,4
+wildold,26289144,4
+47894136,26289144,3
+43384535,26289144,2
+46892616,26289144,3
+46188471,26289144,2
+cjchow,26289144,3
+49157213,26289144,3
+rosecarriage,26289144,5
+54107272,26289144,5
+lies583,26289144,4
+winterppt,26289144,4
+36470321,26289144,5
+35528479,26289144,4
+Muslim_L,26289144,4
+sofasay,26289144,4
+rudygiraffe,26289144,3
+119463216,26289144,5
+ym_199355,26289144,4
+40839121,26289144,3
+2150724,26289144,4
+34901213,26289144,3
+57828483,26289144,1
+4283192,26289144,2
+53066739,26289144,4
+43850574,26289144,5
+69150679,26289144,5
+spark0601,26289144,4
+96213946,26289144,2
+1538876,26289144,-1
+virginieds,26289144,3
+49529143,26289144,2
+46949718,26289144,3
+108686463,26289144,3
+JustRainbow,26289144,4
+16618379,26289144,3
+sunfloweroom,26289144,3
+2713765,26289144,4
+89066668,26289144,4
+66153871,26289144,2
+48345636,26289144,4
+2105861,26289144,3
+cindycoo,26289144,3
+45578211,26289144,3
+12822970,26289144,4
+76681041,26289144,4
+67330888,26289144,3
+phoebefly,26289144,4
+34063715,26289144,5
+116030466,26289144,5
+jieniniu,26289144,4
+56903684,26289144,4
+119368897,26289144,3
+cossi,26289144,4
+2275556,26289144,3
+aptxkim,26289144,4
+120480108,26289144,3
+sharkyueyue,26289144,5
+52493813,26289144,3
+33456055,26289144,4
+gardeniaJ,26289144,4
+91036793,26289144,3
+L1fe1sw0nderfu2,26289144,4
+70487203,26289144,3
+39440823,26289144,4
+119404798,26289144,2
+55601920,26289144,4
+Bermuda-RAN,26289144,5
+130778242,26289144,3
+67738250,26289144,4
+ll_azrael,26289144,5
+83192271,26289144,4
+58609856,26289144,3
+51445328,26289144,4
+41338064,26289144,4
+130531955,26289144,4
+56318477,26289144,5
+1026510,26289144,4
+nuan950707,26289144,4
+125130054,26289144,5
+74625744,26289144,4
+27632752,26289144,4
+57563598,26289144,5
+82232780,26289144,4
+50329066,26289144,5
+116504334,26289144,4
+3026733,26289144,4
+120129379,26289144,4
+veraaa,26289144,4
+43674596,26289144,4
+131016761,26289144,5
+43396822,26289144,3
+53401173,26289144,4
+76998416,26289144,3
+55755674,26289144,3
+120729297,26289144,5
+67575567,26289144,2
+3487458,26289144,5
+75545538,26289144,4
+71757787,26289144,5
+98623305,26289144,5
+darkeudemon,26289144,4
+44816197,26289144,3
+34938813,26289144,3
+3408833,26289144,4
+71966545,26289144,4
+73689655,26289144,5
+a-Joel,26289144,4
+74658355,26289144,4
+61219748,26289144,4
+jjwhu,26289144,4
+kid007spy,26289144,2
+77248938,26289144,4
+50136328,26289144,3
+cqlavender,26289144,4
+50371058,26289144,5
+85254473,26289144,4
+61689441,26289144,1
+48170123,26289144,4
+49420713,26289144,4
+83803190,26289144,2
+52117173,26289144,4
+121831939,26289144,5
+51928382,26289144,4
+45726021,26289144,3
+karain,26289144,4
+55305426,26289144,4
+4644977,26289144,4
+98598243,26289144,1
+54540628,26289144,3
+52815179,26289144,4
+74109134,26289144,4
+xueyugaoyuan,26289144,3
+67769734,26289144,4
+102644288,26289144,3
+82705597,26289144,5
+ALE277X,26289144,4
+45851335,26289144,2
+75881434,26289144,3
+songgrui,26289144,1
+53412014,26289144,3
+126853775,26289144,3
+58489855,26289144,5
+redhairmashroom,26289144,1
+zhhsbkl,26289144,4
+67925418,26289144,5
+55283261,26289144,-1
+54107257,26289144,4
+buxiaoyanger,26289144,3
+suyinyu,26289144,3
+49630968,26289144,4
+78123649,26289144,4
+121289460,26289144,4
+62288453,26289144,4
+auvpe,26289144,3
+3398230,26289144,2
+45542406,26289144,4
+yoxi222,26289144,2
+122311065,26289144,5
+YoNasiti,26289144,4
+122858118,26289144,4
+ingail,26289144,5
+52454145,26289144,4
+molin327,26289144,5
+123127945,26289144,4
+luoxupei,26289144,5
+121900406,26289144,4
+37445380,26289144,5
+45784540,26289144,4
+francie1227,26289144,4
+100303280,26289144,4
+108175205,26289144,4
+58204456,26289144,3
+119270472,26289144,3
+82909338,26289144,5
+36036646,26289144,4
+2776455,26289144,3
+2538567,26289144,3
+67605510,26289144,4
+48610227,26289144,-1
+xiaoshuogege,26289144,4
+55652120,26289144,5
+74472287,26289144,5
+bonjourlouise,26289144,4
+66493866,26289144,2
+38547386,26289144,5
+53937641,26289144,5
+1929758,26289144,3
+64014672,26289144,4
+58479345,26289144,5
+103233470,26289144,1
+66604794,26289144,5
+62343222,26289144,5
+sunnyareas,26289144,3
+91261533,26289144,4
+yolandamo,26289144,5
+58988692,26289144,4
+92066353,26289144,-1
+93224854,26289144,5
+67463541,26289144,3
+80453139,26289144,4
+89421913,26289144,4
+61058312,26289144,4
+83130364,26289144,5
+55859694,26289144,3
+132908375,26289144,3
+maydayfuck,26289144,3
+Lucifer_0,26289144,-1
+a6853550,26289144,4
+58482566,26289144,5
+poppysuen,26289144,4
+10344719,26289144,4
+44901258,26289144,4
+43087480,26289144,3
+101206978,26289144,5
+101206978,26289144,5
+91584522,26289144,4
+97416328,26289144,3
+51191835,26289144,2
+72101661,26289144,5
+56834550,26289144,4
+55990410,26289144,3
+107056898,26289144,4
+121499670,26289144,4
+122296517,26289144,5
+74954748,26289144,3
+geeoff,26289144,1
+49708830,26289144,4
+rovsgonio,26289144,3
+66329065,26289144,4
+motangmo,26289144,4
+50416688,26289144,4
+Notali64,26289144,3
+82560961,26289144,4
+65488534,26289144,5
+63208019,26289144,4
+103484338,26289144,5
+S1973,26289144,4
+71467211,26289144,5
+75246716,26289144,4
+2730322,26289144,4
+chris310-nan,26289144,4
+62298442,26289144,4
+49317045,26289144,5
+90500870,26289144,4
+46824404,26289144,2
+verschung,26289144,4
+32776828,26289144,4
+49265540,26289144,5
+79442987,26289144,4
+47920799,26289144,4
+amyaima,26289144,4
+22860086,26289144,4
+shesmile,26289144,2
+91990371,26289144,1
+2662835,26289144,4
+DianJuBaby,26289144,5
+klrobsten,26289144,4
+69292249,26289144,4
+47376302,26289144,3
+chouchouMQ1010,26289144,3
+66521777,26289144,3
+60282020,26289144,3
+lyych,26289144,4
+48168328,26289144,3
+117360867,26289144,3
+rosemasquerader,26289144,5
+57285886,26289144,4
+78664563,26289144,4
+79249648,26289144,4
+44121177,26289144,5
+54033630,26289144,2
+122935567,26289144,4
+97184237,26289144,3
+fortiffany,26289144,4
+iam44,26289144,4
+cushifu,26289144,5
+songai0609,26289144,4
+61304869,26289144,3
+katrina_vivi,26289144,4
+83861463,26289144,3
+sadie_xiong,26289144,4
+53801441,26289144,4
+17661600,26289144,2
+1182787,26289144,4
+50583077,26289144,4
+janie225,26289144,5
+nangongdumpling,26289144,4
+EnronZhao,26289144,5
+57823249,26289144,3
+115764101,26289144,4
+littleaprilfool,26289144,5
+internalecho,26289144,3
+36743264,26289144,4
+123833891,26289144,5
+35497511,26289144,4
+renmeng,26289144,4
+evalinezhou,26289144,4
+gabrina,26289144,-1
+69756602,26289144,4
+swarmplay,26289144,4
+lockrock,26289144,4
+atasaka,26289144,4
+3580594,26289144,1
+62405259,26289144,4
+71468174,26289144,3
+82913819,26289144,4
+62762871,26289144,3
+miashen,26289144,4
+90831537,26289144,4
+132038522,26289144,3
+72376361,26289144,4
+48168803,26289144,4
+aaaaaaana,26289144,4
+74848025,26289144,3
+130445057,26289144,3
+63167150,26289144,3
+L.ccnightcat,26289144,3
+yezixin1991,26289144,4
+sunnyvicky,26289144,4
+75475810,26289144,3
+48832813,26289144,3
+yoyodove,26289144,4
+2384837,26289144,3
+132342909,26289144,3
+1672449,26289144,5
+xianyunfei,26289144,5
+53031430,26289144,5
+69811337,26289144,5
+61720773,26289144,4
+60119754,26289144,4
+63380319,26289144,4
+25350324,26289144,2
+77256773,26289144,4
+Nathancai,26289144,4
+Nathancai,26289144,4
+Kanoezuo93,26289144,5
+74257902,26289144,3
+61062541,26289144,4
+cicici2002,26289144,3
+ADORE8000,26289144,3
+AprilHo,26289144,5
+119583854,26289144,4
+StellaLiu0331,26289144,3
+60552303,26289144,4
+52115389,26289144,3
+41470882,26289144,5
+mxymj729,26289144,4
+piscesmio,26289144,1
+rhea860618,26289144,3
+51313270,26289144,5
+83879581,26289144,5
+84930768,26289144,4
+1230136,26289144,4
+133083146,26289144,3
+56206646,26289144,4
+25774865,26289144,4
+55323988,26289144,4
+2910992,26289144,4
+90884547,26289144,4
+zen-william,26289144,2
+85191711,26289144,5
+62472741,26289144,5
+chloexile,26289144,5
+48812858,26289144,4
+41787565,26289144,2
+127300222,26289144,3
+126732220,26289144,3
+63698545,26289144,4
+70361131,26289144,3
+49648543,26289144,5
+45784144,26289144,5
+123131043,26289144,4
+48793243,26289144,5
+58917228,26289144,4
+73204677,26289144,4
+LadyMavis,26289144,5
+49767479,26289144,4
+37453965,26289144,5
+1138243,26289144,4
+46507265,26289144,5
+jun0728,26289144,5
+29024043,26289144,4
+2436041,26289144,5
+silence_queen,26289144,4
+eloisepqy,26289144,3
+82522145,26289144,4
+57171458,26289144,4
+3427616,26289144,4
+NKscar,26289144,4
+52684249,26289144,3
+58035387,26289144,4
+130421783,26289144,4
+103048113,26289144,5
+60890395,26289144,4
+75219384,26289144,4
+60722327,26289144,3
+promise_717,26289144,4
+1786804,26289144,1
+shxiao6,26289144,1
+loveguigui7814,26289144,3
+28904947,26289144,3
+92853395,26289144,2
+antiekin,26289144,4
+56237180,26289144,-1
+3942245,26289144,5
+131447889,26289144,3
+43002843,26289144,4
+48383608,26289144,5
+Errin_LXF,26289144,4
+94514917,26289144,3
+3843941,26289144,4
+K_Kaito,26289144,4
+roseforu,26289144,4
+arcluo,26289144,3
+zzxuan,26289144,5
+53080124,26289144,2
+icemonique,26289144,5
+53632795,26289144,4
+34597331,26289144,4
+sundayikel,26289144,-1
+60290035,26289144,5
+carrie_lo,26289144,2
+sakuya,26289144,4
+69127854,26289144,4
+90269055,26289144,4
+Zon_,26289144,4
+71125053,26289144,5
+47392683,26289144,4
+backYi,26289144,4
+48459404,26289144,3
+88334836,26289144,3
+2256302,26289144,4
+50636732,26289144,4
+peter-pen,26289144,4
+monster-bro,26289144,-1
+40811083,26289144,4
+48859035,26289144,4
+suki0704,26289144,-1
+92267089,26289144,4
+adaylanie,26289144,4
+54309491,26289144,4
+79387387,26289144,5
+Hrypenlyandroid,26289144,4
+47879484,26289144,4
+67104840,26289144,4
+hikkii,26289144,3
+61461484,26289144,4
+115125689,26289144,4
+126693961,26289144,3
+ibluepurple,26289144,4
+6591920,26289144,5
+46785194,26289144,4
+sunbiyu,26289144,4
+legolasmi,26289144,4
+51959718,26289144,4
+58350801,26289144,3
+icecream0330,26289144,3
+TGLRF,26289144,5
+leshu312,26289144,4
+Samadh1,26289144,5
+80359378,26289144,4
+72719769,26289144,3
+NINA0220,26289144,4
+1775216,26289144,5
+94341296,26289144,4
+15606204,26289144,4
+jessieq,26289144,-1
+69438436,26289144,4
+71144394,26289144,5
+individualj,26289144,5
+58051571,26289144,4
+46854138,26289144,4
+kiki.krystina,26289144,4
+flycanfly,26289144,-1
+an491033958,26289144,4
+33909935,26289144,1
+44357083,26289144,4
+3528696,26289144,5
+fishinglight,26289144,4
+42678961,26289144,4
+seeme,26289144,4
+49474405,26289144,4
+95391349,26289144,5
+58697087,26289144,4
+kongmutou,26289144,4
+43990323,26289144,4
+52293955,26289144,4
+54554719,26289144,5
+xqer,26289144,5
+53498411,26289144,5
+ddkitty,26289144,4
+133125055,26289144,1
+tiffany.w,26289144,4
+only_690371311,26289144,4
+80171035,26289144,5
+tout-les-jours,26289144,4
+54803109,26289144,4
+43192927,26289144,5
+liunian1998,26289144,4
+jasontodd,26289144,3
+linetwang,26289144,4
+QQ3BlueRose,26289144,4
+64475979,26289144,3
+49463279,26289144,4
+64009647,26289144,4
+63174808,26289144,3
+55628220,26289144,4
+98356595,26289144,5
+miRroRtic,26289144,4
+13786574,26289144,5
+63630042,26289144,5
+31507629,26289144,3
+69725938,26289144,1
+ohghost,26289144,-1
+ohghost,26289144,-1
+78713550,26289144,4
+130717797,26289144,4
+45953948,26289144,4
+caesarphoenix,26289144,4
+81933039,26289144,4
+103756653,26289144,3
+45789533,26289144,3
+hika99,26289144,4
+25558028,26289144,4
+52692390,26289144,2
+babyana,26289144,2
+49052219,26289144,4
+4150828,26289144,3
+46942165,26289144,5
+102599770,26289144,1
+48911984,26289144,4
+Rebekah1222,26289144,4
+12039408,26289144,2
+51274769,26289144,3
+52854839,26289144,4
+searchforriver,26289144,3
+63750280,26289144,3
+Year0201,26289144,3
+xtzz,26289144,3
+maynardleung,26289144,5
+zlmomo,26289144,5
+zhuo1993,26289144,3
+131368901,26289144,5
+82789354,26289144,2
+84607154,26289144,5
+hyjsghr,26289144,3
+55323906,26289144,3
+huiha,26289144,4
+niuzhi,26289144,5
+131604050,26289144,3
+mangooooo,26289144,4
+52841977,26289144,4
+imecho,26289144,4
+52592607,26289144,4
+50040902,26289144,5
+48257634,26289144,5
+51109702,26289144,5
+52598525,26289144,4
+1306838,26289144,4
+120201514,26289144,3
+b18616691141,26289144,5
+50219998,26289144,3
+51087579,26289144,4
+55387652,26289144,5
+118096038,26289144,3
+2824404,26289144,3
+55638323,26289144,4
+62856959,26289144,1
+cloud1989,26289144,5
+chidaowufengdai,26289144,4
+98583644,26289144,4
+53489022,26289144,4
+cathy5,26289144,5
+63249490,26289144,4
+41385681,26289144,5
+92836075,26289144,-1
+4558927,26289144,4
+53433671,26289144,4
+115164005,26289144,4
+43388918,26289144,4
+96483524,26289144,4
+wxq1012,26289144,4
+nancylo,26289144,4
+wangzhanhei,26289144,4
+kyuly,26289144,4
+AdileGuan,26289144,4
+yxgn,26289144,4
+weldon,26289144,4
+3458545,26289144,5
+imsuper,26289144,3
+97062397,26289144,5
+Apirl0426,26289144,5
+jessie811,26289144,-1
+69578055,26289144,3
+70019854,26289144,3
+52530490,26289144,4
+26650310,26289144,3
+for1007,26289144,3
+true_,26289144,3
+50568364,26289144,4
+lcrgreen,26289144,4
+133173683,26289144,4
+84885070,26289144,4
+memechayedandan,26289144,3
+hememory,26289144,4
+double121,26289144,5
+132576897,26289144,4
+102951329,26289144,5
+netant3000,26289144,5
+43087680,26289144,4
+benjaminbai,26289144,4
+37102095,26289144,-1
+61150593,26289144,2
+61312900,26289144,3
+41883902,26289144,5
+oranicge,26289144,5
+43649169,26289144,4
+diamond911,26289144,5
+83651306,26289144,4
+69828920,26289144,4
+rickybieber,26289144,5
+Sweet_Lee131,26289144,4
+102877618,26289144,4
+52120384,26289144,5
+48480563,26289144,3
+mew-yxs,26289144,4
+praguenight,26289144,4
+48150565,26289144,2
+128675043,26289144,3
+linyer,26289144,4
+45518170,26289144,5
+3554657,26289144,5
+124071720,26289144,4
+2888284,26289144,3
+Shoukeirei,26289144,4
+4279428,26289144,3
+36120993,26289144,4
+130603884,26289144,5
+71270529,26289144,4
+115590593,26289144,4
+longxsen,26289144,4
+vduo,26289144,3
+37029015,26289144,3
+52955243,26289144,1
+4710028,26289144,3
+57999912,26289144,3
+66015806,26289144,2
+64873901,26289144,4
+61014893,26289144,3
+chtls,26289144,-1
+58036895,26289144,1
+65913943,26289144,5
+73114101,26289144,4
+89413216,26289144,5
+125208149,26289144,3
+92673816,26289144,2
+128379271,26289144,4
+131104086,26289144,4
+68771614,26289144,5
+50249833,26289144,4
+marilyn9l,26289144,2
+124492738,26289144,4
+elvinyoung,26289144,4
+131711489,26289144,5
+1554976,26289144,4
+3890374,26289144,4
+52773857,26289144,4
+61858967,26289144,4
+48804998,26289144,5
+47977266,26289144,4
+cicihappy,26289144,3
+36940575,26289144,4
+tiny___Lee,26289144,5
+47784418,26289144,5
+IMINCR,26289144,3
+41574175,26289144,5
+ily98426,26289144,3
+58264368,26289144,5
+16910877,26289144,4
+67910969,26289144,5
+50835910,26289144,4
+63305510,26289144,3
+softshock,26289144,-1
+daisylook,26289144,2
+dengzhuo,26289144,4
+Ceciumleaf730,26289144,4
+35051373,26289144,4
+kingkongbarbie,26289144,4
+aaronramsey,26289144,5
+65077432,26289144,3
+l44398821,26289144,5
+amoaymo,26289144,5
+kimusaki,26289144,5
+63384083,26289144,-1
+32390009,26289144,3
+amigojr,26289144,4
+JoyYoung,26289144,4
+sentexiaohu,26289144,3
+51571478,26289144,5
+wangsanjin,26289144,3
+xiaoyujiejie,26289144,5
+82855904,26289144,2
+41829211,26289144,5
+jennyofmine,26289144,4
+62874787,26289144,3
+124742096,26289144,5
+55976796,26289144,3
+60425870,26289144,3
+50183635,26289144,3
+73571191,26289144,4
+71143154,26289144,2
+4092606,26289144,4
+43255855,26289144,5
+2243859,26289144,5
+66986250,26289144,4
+43677938,26289144,3
+ldzy,26289144,4
+3863626,26289144,4
+60649443,26289144,2
+4828017,26289144,4
+85179487,26289144,4
+designforlife,26289144,5
+71325468,26289144,3
+82150919,26289144,1
+117359316,26289144,3
+essay13,26289144,3
+41994755,26289144,3
+42709375,26289144,5
+77200977,26289144,5
+44919543,26289144,4
+huanm,26289144,4
+51909873,26289144,4
+lololo712,26289144,4
+3862073,26289144,3
+violetsnow,26289144,5
+slevwh,26289144,4
+41012306,26289144,3
+124313805,26289144,4
+bonny1111,26289144,4
+helen_freespace,26289144,3
+lhyendless,26289144,4
+46636363,26289144,3
+36811646,26289144,3
+north85,26289144,4
+119666088,26289144,4
+48217943,26289144,5
+54915058,26289144,4
+65266454,26289144,3
+4404193,26289144,4
+53507443,26289144,4
+4565301,26289144,4
+34936413,26289144,5
+48098094,26289144,3
+4608887,26289144,5
+treeplanting,26289144,5
+eddychao,26289144,4
+126818106,26289144,4
+69367982,26289144,3
+maniacmolecules,26289144,3
+musedarling,26289144,4
+79923498,26289144,3
+C121,26289144,4
+36541831,26289144,5
+rainiajee,26289144,1
+jasonliu0315,26289144,4
+60847691,26289144,5
+60847691,26289144,5
+49893264,26289144,4
+56686931,26289144,3
+4113291,26289144,-1
+miki_ai,26289144,4
+82317477,26289144,5
+joeyada,26289144,4
+gudaduo,26289144,3
+2901431,26289144,4
+109084248,26289144,5
+lumins,26289144,4
+38984888,26289144,4
+3814651,26289144,4
+130564444,26289144,4
+66025844,26289144,3
+100396637,26289144,5
+49212885,26289144,3
+syviesun,26289144,4
+58294032,26289144,4
+66719737,26289144,3
+yvoneye,26289144,5
+44975625,26289144,4
+toprocku,26289144,4
+wildflower,26289144,4
+99899210,26289144,5
+65214570,26289144,4
+wuningxiaozhao,26289144,3
+zison,26289144,3
+82906662,26289144,5
+97088153,26289144,3
+59412896,26289144,3
+115782738,26289144,4
+60288003,26289144,5
+1285360,26289144,5
+EffyQ,26289144,3
+Ironduck,26289144,4
+wanghuzou,26289144,3
+67911399,26289144,5
+65520398,26289144,5
+orangev1990,26289144,3
+54882693,26289144,4
+zizi.p,26289144,2
+2668629,26289144,5
+133159114,26289144,5
+57342523,26289144,3
+alicenana,26289144,4
+52320568,26289144,3
+dej_you,26289144,5
+28978843,26289144,3
+42692898,26289144,5
+pansini,26289144,3
+83123138,26289144,4
+71408490,26289144,3
+46350498,26289144,3
+70557752,26289144,4
+43891940,26289144,4
+47659163,26289144,5
+43878527,26289144,4
+84167567,26289144,4
+sheep864,26289144,3
+133158095,26289144,4
+22447567,26289144,4
+sanmir,26289144,5
+124683946,26289144,4
+129371077,26289144,5
+132101946,26289144,5
+4229853,26289144,4
+76430480,26289144,4
+62480013,26289144,3
+36769800,26289144,4
+2844320,26289144,3
+84100874,26289144,3
+130116482,26289144,4
+72023919,26289144,5
+69337550,26289144,4
+64069869,26289144,4
+babyroll,26289144,4
+magiprincess,26289144,5
+genli,26289144,5
+37340203,26289144,5
+casussi,26289144,4
+108992489,26289144,5
+MrTricky,26289144,3
+orangehat,26289144,4
+60073080,26289144,5
+tiantianyeye,26289144,4
+kcxhr,26289144,4
+noisH,26289144,3
+64972660,26289144,2
+72004354,26289144,3
+3480174,26289144,5
+33329266,26289144,3
+cactusr,26289144,5
+3861635,26289144,5
+icyinvent,26289144,4
+zhudanni1209,26289144,5
+129713967,26289144,5
+3379375,26289144,5
+Misha-BesideYou,26289144,4
+roseauthor,26289144,4
+123260841,26289144,5
+69153579,26289144,4
+3807164,26289144,4
+127928705,26289144,5
+ValentineQ,26289144,4
+34302653,26289144,3
+45207380,26289144,3
+62475168,26289144,4
+80701511,26289144,4
+casper2fly,26289144,4
+elvies,26289144,4
+30273027,26289144,3
+52548060,26289144,3
+27008930,26289144,4
+Shiely,26289144,4
+50432773,26289144,4
+bathorycc,26289144,5
+75001261,26289144,4
+82456949,26289144,3
+42981208,26289144,3
+9848429,26289144,2
+zhangshiyu1024,26289144,4
+42366789,26289144,4
+frostshuang1989,26289144,3
+50165261,26289144,3
+nanchizi,26289144,2
+4248371,26289144,3
+115958498,26289144,4
+62535973,26289144,4
+57263657,26289144,2
+37785613,26289144,4
+1327654,26289144,-1
+Vanessa.,26289144,4
+55984951,26289144,5
+61920379,26289144,4
+45066931,26289144,5
+73648035,26289144,3
+50801206,26289144,5
+mmlovechrislee,26289144,4
+WSSWHL,26289144,3
+sanzanglx,26289144,4
+33323969,26289144,4
+3170874,26289144,3
+63121383,26289144,5
+53621487,26289144,3
+ys5259,26289144,5
+djqq930,26289144,4
+49582191,26289144,2
+actionaction,26289144,4
+aiyoucao520,26289144,5
+nini1030,26289144,3
+57286406,26289144,4
+33028834,26289144,3
+ligil,26289144,5
+61324818,26289144,3
+6375558,26289144,4
+wsllbaby,26289144,4
+127217269,26289144,5
+violetsand,26289144,5
+131985896,26289144,5
+55280839,26289144,3
+wjgq0722,26289144,-1
+53202810,26289144,5
+63201309,26289144,4
+41833499,26289144,4
+54332107,26289144,5
+54090532,26289144,5
+slbx_Lau,26289144,3
+MrJagger,26289144,1
+mikey_66,26289144,5
+mmff,26289144,4
+30532525,26289144,5
+69403102,26289144,4
+45996774,26289144,5
+kkkwhite,26289144,5
+132906114,26289144,5
+46079828,26289144,5
+51419685,26289144,3
+66991726,26289144,2
+1882204,26289144,5
+keneyzhao,26289144,3
+100249349,26289144,4
+tracciyu,26289144,3
+coollamb,26289144,1
+44965572,26289144,4
+104365743,26289144,3
+rockrujing,26289144,4
+49441461,26289144,4
+48778935,26289144,3
+54358561,26289144,4
+53768086,26289144,3
+3539294,26289144,5
+50360714,26289144,4
+soyoung1986,26289144,4
+58101535,26289144,2
+3020797,26289144,5
+4657465,26289144,4
+55466368,26289144,4
+alexw,26289144,2
+vilasecret,26289144,4
+dlanxin76,26289144,-1
+lishidai93,26289144,4
+55554354,26289144,3
+pisceslydia,26289144,5
+58431994,26289144,5
+49339307,26289144,5
+60472087,26289144,5
+62565954,26289144,4
+43618482,26289144,4
+45869247,26289144,4
+125603682,26289144,4
+40823380,26289144,4
+hollypong,26289144,3
+65575124,26289144,5
+zoe315,26289144,4
+KINGRUNRUN,26289144,5
+84741578,26289144,3
+zhaoxueting,26289144,4
+56628925,26289144,-1
+fuyunyajie,26289144,5
+ZotterElaine,26289144,4
+dave_m,26289144,5
+42168201,26289144,5
+51583782,26289144,3
+waistline2011,26289144,5
+121033654,26289144,4
+53396533,26289144,5
+99667209,26289144,4
+123331677,26289144,3
+2206399,26289144,3
+123268413,26289144,4
+70668927,26289144,4
+jinlinyuyu,26289144,5
+rityou,26289144,5
+62020201,26289144,4
+130692811,26289144,5
+121885439,26289144,4
+ivylmj,26289144,4
+rim0821,26289144,3
+64290310,26289144,3
+carcajou,26289144,3
+lqj1,26289144,4
+2842505,26289144,4
+34317519,26289144,3
+61120762,26289144,5
+khlsuiyuan,26289144,2
+84405567,26289144,3
+72700363,26289144,4
+lilang123,26289144,4
+59390060,26289144,3
+Haoxixiansen,26289144,4
+58578065,26289144,4
+good.speed.0,26289144,3
+67460075,26289144,3
+64979240,26289144,3
+48440999,26289144,3
+93048732,26289144,4
+123461714,26289144,4
+122451528,26289144,5
+mush24,26289144,4
+44203780,26289144,4
+68833269,26289144,4
+99075022,26289144,2
+momoxiaozhangyu,26289144,4
+super600,26289144,4
+61788705,26289144,4
+42805443,26289144,5
+yihanlin,26289144,3
+131925668,26289144,5
+80581175,26289144,5
+53933380,26289144,4
+85239246,26289144,4
+78548715,26289144,4
+76749304,26289144,5
+127043703,26289144,4
+63269023,26289144,5
+61772051,26289144,5
+29774277,26289144,3
+120485709,26289144,3
+60694225,26289144,-1
+roboto,26289144,3
+83188412,26289144,4
+Fairyhei,26289144,5
+57569233,26289144,5
+35471410,26289144,4
+shikunlu,26289144,1
+6765143,26289144,5
+97656023,26289144,3
+alwaysforyou,26289144,3
+65560821,26289144,3
+43200549,26289144,4
+chezidaobai,26289144,4
+45948889,26289144,3
+elvish,26289144,5
+50269699,26289144,3
+3471664,26289144,4
+62960950,26289144,2
+43354957,26289144,5
+126162318,26289144,1
+47671840,26289144,5
+52084400,26289144,5
+51918172,26289144,5
+tubiji,26289144,4
+32502933,26289144,3
+lrxsamantha,26289144,5
+zoezhu,26289144,4
+51430525,26289144,5
+35725005,26289144,4
+76012813,26289144,4
+xiaojirou007,26289144,4
+124245470,26289144,2
+jennifershi,26289144,4
+67695770,26289144,4
+95213691,26289144,5
+53320090,26289144,5
+47485602,26289144,4
+ameibush9799,26289144,3
+xiaomaowaxika,26289144,3
+62591475,26289144,3
+48539921,26289144,5
+125505200,26289144,4
+56668791,26289144,5
+tdlimon,26289144,3
+55016503,26289144,4
+62799720,26289144,5
+cht,26289144,4
+duanduan520,26289144,5
+95592443,26289144,4
+nancy-chan,26289144,5
+lovelyyuchen,26289144,5
+17289580,26289144,4
+xx2086,26289144,4
+fre7dom,26289144,4
+133153060,26289144,5
+1894296,26289144,3
+51095150,26289144,4
+51720308,26289144,3
+44239369,26289144,2
+35005590,26289144,5
+55643876,26289144,4
+73118410,26289144,4
+131608049,26289144,4
+38770333,26289144,3
+39529333,26289144,4
+madwithu,26289144,4
+41761191,26289144,3
+mango-mian,26289144,5
+25572888,26289144,5
+3285936,26289144,4
+MiaZWY,26289144,3
+jyw56,26289144,4
+44611681,26289144,4
+bicaihua,26289144,1
+vivizhao,26289144,5
+azuremoon0118,26289144,-1
+yelisi,26289144,3
+3866963,26289144,5
+qingxuan0706,26289144,-1
+47494442,26289144,5
+59347352,26289144,3
+61088596,26289144,5
+rudolf_year,26289144,2
+119421761,26289144,3
+bayuetianweilan,26289144,4
+69556893,26289144,5
+126346458,26289144,3
+52284138,26289144,5
+imcici08,26289144,4
+4523655,26289144,4
+82847789,26289144,4
+baicaitai,26289144,4
+thearcon,26289144,4
+98524765,26289144,3
+xiaoxiao0718,26289144,5
+believe823,26289144,4
+34864615,26289144,4
+shlalalalala,26289144,4
+121758259,26289144,3
+Creep_v,26289144,5
+JTimberlake,26289144,4
+58104207,26289144,3
+fuloli,26289144,4
+58494684,26289144,4
+xiaopoyu,26289144,4
+wsy-101,26289144,4
+126346682,26289144,2
+whitedrama,26289144,3
+102602713,26289144,5
+2033498,26289144,5
+44562127,26289144,5
+48921388,26289144,1
+2036689,26289144,4
+76181752,26289144,4
+49585596,26289144,4
+63022254,26289144,5
+51782347,26289144,2
+yiannislee,26289144,4
+107495405,26289144,3
+110416233,26289144,4
+62830784,26289144,5
+beautyxyw,26289144,4
+84479943,26289144,3
+mass1945,26289144,3
+90168995,26289144,4
+hahaha111,26289144,2
+29564013,26289144,4
+what-do-u-mean,26289144,4
+rabbitfish,26289144,3
+missguo3,26289144,5
+78851730,26289144,3
+kim899,26289144,5
+bea-u,26289144,3
+92079969,26289144,3
+microogle,26289144,3
+mobei,26289144,3
+72876609,26289144,4
+badaalle,26289144,3
+fengjiansun,26289144,3
+aiziji,26289144,5
+luciaandmayday,26289144,5
+linn2034,26289144,3
+caixiaoqiang,26289144,4
+yitingyanyu,26289144,3
+brahms49,26289144,4
+63837750,26289144,5
+52762831,26289144,4
+30959598,26289144,4
+lbwqqq,26289144,4
+xiaoxiaomu0114,26289144,4
+Nicole0,26289144,3
+62382255,26289144,3
+122201840,26289144,2
+yushengchong,26289144,4
+lianyalee,26289144,3
+fengbeer,26289144,5
+laisse,26289144,5
+Lokry666,26289144,3
+92149226,26289144,5
+55979387,26289144,4
+shinewithtvxq,26289144,4
+3735733,26289144,4
+37037916,26289144,4
+elice,26289144,3
+68401982,26289144,5
+80430212,26289144,3
+69303888,26289144,4
+kuizhizhu,26289144,3
+93854184,26289144,4
+83668746,26289144,4
+62498352,26289144,3
+113421250,26289144,3
+2165121,26289144,5
+68788637,26289144,4
+74358640,26289144,3
+julynan,26289144,4
+83357763,26289144,4
+62704108,26289144,5
+xujingjue,26289144,4
+88272921,26289144,3
+129801735,26289144,2
+103970279,26289144,5
+JCsama,26289144,2
+75763994,26289144,3
+1337092,26289144,3
+4621814,26289144,4
+Jansnet,26289144,4
+52207027,26289144,4
+106310454,26289144,3
+cathrynlv,26289144,4
+58113714,26289144,4
+48342025,26289144,4
+ca3as2caco3,26289144,5
+49633186,26289144,3
+Minus-M,26289144,4
+4151606,26289144,5
+127552693,26289144,3
+119687484,26289144,5
+76636095,26289144,4
+71719033,26289144,3
+54635444,26289144,4
+33177895,26289144,3
+69115195,26289144,5
+52996403,26289144,-1
+amy0303,26289144,3
+3955122,26289144,3
+75313122,26289144,5
+SmilingJune,26289144,4
+z19990731,26289144,4
+flavouroflife,26289144,4
+fakeyouout,26289144,3
+95824497,26289144,4
+65021113,26289144,4
+tttwgangan,26289144,4
+absinthejt,26289144,5
+lyzxoxo,26289144,5
+Decembermay,26289144,5
+124042651,26289144,4
+89301982,26289144,4
+78810397,26289144,4
+78428870,26289144,4
+CatherineBloom,26289144,3
+68497673,26289144,4
+d.brown,26289144,3
+ethan.zhang,26289144,4
+mariewyssa,26289144,5
+36591569,26289144,3
+49918804,26289144,4
+132841407,26289144,5
+4369388,26289144,4
+68844083,26289144,3
+xss0791,26289144,5
+46664771,26289144,4
+piecelost,26289144,4
+74948787,26289144,5
+TalkChan,26289144,3
+cinderlla,26289144,5
+64329337,26289144,4
+123093980,26289144,5
+bihanguan,26289144,4
+xulu_films,26289144,3
+Erman-Wei,26289144,4
+25577577,26289144,1
+52850808,26289144,4
+64870027,26289144,4
+126010784,26289144,5
+53571155,26289144,3
+48385402,26289144,5
+49501478,26289144,3
+52754378,26289144,4
+84852383,26289144,4
+shouhulantian,26289144,3
+62709413,26289144,5
+NG,26289144,4
+119589473,26289144,4
+45768011,26289144,5
+82791782,26289144,5
+bramblesinwind,26289144,5
+72885322,26289144,3
+67284885,26289144,4
+bay0224,26289144,3
+68989213,26289144,4
+milara,26289144,4
+52513783,26289144,3
+127399419,26289144,3
+101113512,26289144,1
+angena123,26289144,2
+44592602,26289144,-1
+53308031,26289144,4
+faydao,26289144,2
+2381926,26289144,4
+ikaka,26289144,3
+54938342,26289144,5
+caprice_vvn,26289144,3
+122425209,26289144,4
+56103216,26289144,3
+58441390,26289144,4
+62198193,26289144,4
+47190086,26289144,2
+100293359,26289144,3
+2829310,26289144,5
+fi_fi,26289144,3
+116772456,26289144,4
+60715104,26289144,4
+69227741,26289144,5
+121700755,26289144,3
+31739452,26289144,4
+76871723,26289144,4
+47743128,26289144,5
+57528820,26289144,5
+45158500,26289144,3
+48311981,26289144,4
+47202062,26289144,4
+65432868,26289144,5
+77319132,26289144,3
+46333291,26289144,5
+1582706,26289144,5
+96046921,26289144,3
+flos_solis0821,26289144,4
+47588699,26289144,4
+4531781,26289144,5
+idyllw,26289144,4
+43924425,26289144,5
+71609374,26289144,4
+121351165,26289144,1
+48707415,26289144,4
+39610619,26289144,1
+3555049,26289144,4
+yuanfounder,26289144,4
+4349474,26289144,4
+Kishimoto,26289144,3
+grace-since1997,26289144,5
+70812373,26289144,4
+xuyinaxxxxxxx,26289144,5
+nashinashi,26289144,3
+yestar,26289144,3
+yolandalzo,26289144,4
+80062653,26289144,4
+zhizhujuntuan,26289144,3
+58135379,26289144,4
+53356414,26289144,4
+shero_zhang,26289144,4
+57818440,26289144,5
+changyeweiyang,26289144,4
+104779135,26289144,5
+53536327,26289144,5
+50745405,26289144,3
+113171403,26289144,4
+shelleyhsu,26289144,3
+Candiceme,26289144,3
+119224522,26289144,4
+60662074,26289144,-1
+farewell2286492,26289144,4
+czy940903,26289144,4
+73292250,26289144,4
+vosr,26289144,2
+bingoh2o,26289144,4
+51354667,26289144,4
+alicelotus,26289144,4
+119281931,26289144,4
+sebasverm,26289144,4
+72346278,26289144,5
+treee,26289144,4
+MileySheung,26289144,5
+97977376,26289144,4
+Jerchozj,26289144,3
+SQ17,26289144,5
+Kira4660,26289144,4
+55973777,26289144,4
+87212478,26289144,3
+64777908,26289144,3
+102656858,26289144,5
+50397601,26289144,4
+75809068,26289144,3
+61506735,26289144,5
+122335329,26289144,3
+38629950,26289144,4
+52520976,26289144,3
+47240557,26289144,4
+119683375,26289144,4
+chancechance,26289144,3
+67733438,26289144,3
+53068177,26289144,2
+93651159,26289144,3
+87855895,26289144,4
+3144827,26289144,3
+72651777,26289144,4
+78139997,26289144,4
+scale2,26289144,4
+zz_lucy,26289144,4
+44071695,26289144,2
+4044609,26289144,5
+3563264,26289144,-1
+68811221,26289144,1
+73456502,26289144,1
+49421412,26289144,4
+deynzou,26289144,3
+adeline9999,26289144,4
+50201051,26289144,4
+82991875,26289144,4
+50394173,26289144,4
+3876612,26289144,-1
+63774339,26289144,3
+69124810,26289144,4
+52324732,26289144,5
+51737352,26289144,4
+61733254,26289144,2
+ConverseAbbey,26289144,-1
+reneefay,26289144,4
+reneefay,26289144,4
+oldnikki,26289144,3
+133141228,26289144,5
+65081339,26289144,4
+mismiling,26289144,4
+3555702,26289144,3
+58734372,26289144,3
+horizontality,26289144,2
+47708632,26289144,4
+eveningbaby,26289144,4
+57798377,26289144,4
+87642267,26289144,4
+89652500,26289144,5
+54117151,26289144,5
+47155611,26289144,4
+83744928,26289144,4
+51338891,26289144,4
+PIERO1208,26289144,3
+iris0619,26289144,5
+51008270,26289144,4
+empty_icer,26289144,3
+stng,26289144,4
+112955391,26289144,5
+122240307,26289144,4
+36874977,26289144,4
+qingmuwu,26289144,3
+76145173,26289144,4
+46300608,26289144,5
+121718342,26289144,5
+125270666,26289144,5
+Kishimushroom,26289144,4
+meidusa-pan,26289144,4
+57605115,26289144,3
+40013410,26289144,3
+44595410,26289144,4
+tshoo,26289144,4
+jojozsx,26289144,5
+36329145,26289144,3
+32727331,26289144,3
+summerbs,26289144,5
+samadhi,26289144,3
+49833007,26289144,4
+107982317,26289144,4
+huskie,26289144,4
+35336788,26289144,4
+soultaker,26289144,3
+95360863,26289144,5
+3340559,26289144,5
+77620484,26289144,5
+69125337,26289144,5
+3116575,26289144,4
+poonyuenyee,26289144,3
+133000264,26289144,2
+4711630,26289144,4
+72133543,26289144,4
+50204008,26289144,4
+59106111,26289144,3
+somedayin1991,26289144,4
+47297505,26289144,5
+55447460,26289144,4
+joyce_zhx504,26289144,4
+Rubio,26289144,4
+antony0520,26289144,3
+fcuki,26289144,1
+theSabayon,26289144,-1
+119263777,26289144,3
+4828233,26289144,5
+p.aeon.c,26289144,3
+pineappledog,26289144,3
+1413008,26289144,3
+56141863,26289144,5
+4512296,26289144,4
+57104894,26289144,4
+58583668,26289144,4
+27223833,26289144,3
+35228199,26289144,4
+71316982,26289144,5
+121993907,26289144,4
+dangelme,26289144,5
+congyang77,26289144,4
+48354312,26289144,2
+127528653,26289144,4
+2118507,26289144,5
+StoneandFlower,26289144,4
+39368984,26289144,5
+6581246,26289144,5
+8711485,26289144,3
+68080863,26289144,5
+Aurora5769,26289144,3
+60570526,26289144,5
+universcope,26289144,4
+127607547,26289144,5
+1368772,26289144,1
+131125342,26289144,4
+37857132,26289144,4
+74869653,26289144,2
+sosisarah,26289144,5
+Jacobzebra,26289144,4
+adrian1990,26289144,-1
+130250492,26289144,5
+4688839,26289144,2
+81409226,26289144,2
+seaskyLK,26289144,4
+47875553,26289144,5
+3804622,26289144,5
+63850516,26289144,1
+amiaaso,26289144,4
+coco911007,26289144,4
+59984219,26289144,4
+paradise624,26289144,4
+stonelcc,26289144,4
+43315131,26289144,4
+ysfulongmei,26289144,5
+SafeHaven,26289144,5
+99523862,26289144,5
+Orange_Milk,26289144,4
+108222983,26289144,4
+72111097,26289144,4
+63011235,26289144,3
+qzh,26289144,4
+34468320,26289144,5
+66632216,26289144,4
+67748565,26289144,5
+kouziwen,26289144,3
+72352617,26289144,5
+114420146,26289144,2
+2909779,26289144,4
+58603812,26289144,4
+73827929,26289144,5
+52694995,26289144,5
+66064522,26289144,2
+CWQ1030,26289144,4
+2634815,26289144,5
+3570982,26289144,4
+kamisangma,26289144,5
+56297473,26289144,4
+58711288,26289144,5
+50867193,26289144,4
+58884767,26289144,4
+80225385,26289144,5
+may.wong,26289144,5
+78909444,26289144,3
+6534807,26289144,3
+50887988,26289144,4
+84207817,26289144,3
+38252883,26289144,4
+54300130,26289144,2
+43664671,26289144,4
+73944113,26289144,3
+132678322,26289144,5
+fmy910625033,26289144,4
+58460115,26289144,3
+50840366,26289144,5
+83253621,26289144,3
+xiaobai219559,26289144,5
+51014734,26289144,4
+46466887,26289144,3
+133136590,26289144,4
+53997125,26289144,4
+52129503,26289144,3
+52129503,26289144,3
+shannon_lxj,26289144,4
+72723513,26289144,3
+1734341,26289144,4
+iamzzy,26289144,4
+63101856,26289144,4
+1357759,26289144,4
+jesse-w,26289144,4
+43908956,26289144,3
+132450955,26289144,4
+xiaohundexiaoba,26289144,4
+long7yi,26289144,5
+princessamigo,26289144,3
+51960322,26289144,4
+133001857,26289144,5
+princessqfy,26289144,4
+75190732,26289144,3
+pompomlai,26289144,4
+67320672,26289144,5
+64572749,26289144,3
+mayfeeling,26289144,3
+yc82267869,26289144,5
+aragakki,26289144,4
+DemiNee,26289144,4
+61719919,26289144,4
+bingoyao,26289144,3
+3979883,26289144,3
+llamame,26289144,2
+30885179,26289144,4
+126712894,26289144,3
+Librazxc,26289144,5
+masida,26289144,5
+88941806,26289144,5
+69121526,26289144,4
+violet412,26289144,3
+91397317,26289144,4
+msdoggy,26289144,5
+yanhaolee,26289144,4
+leaf-of-life,26289144,4
+47259806,26289144,4
+64317618,26289144,4
+fanfouxiong,26289144,3
+superMmm,26289144,4
+qiaonianci,26289144,5
+60652654,26289144,4
+3290709,26289144,5
+maqingyun,26289144,1
+56221536,26289144,4
+80607312,26289144,5
+lutaozi,26289144,3
+swinning,26289144,4
+65429142,26289144,4
+daisy28,26289144,3
+43413298,26289144,3
+didadidi,26289144,4
+35703098,26289144,4
+74648826,26289144,4
+83019906,26289144,5
+51707718,26289144,4
+59110325,26289144,4
+ZHAIXIAOYI,26289144,4
+49638124,26289144,4
+53957027,26289144,2
+1512802,26289144,5
+4341731,26289144,4
+4467798,26289144,4
+63227249,26289144,3
+red325,26289144,4
+39833999,26289144,5
+50453835,26289144,5
+41532813,26289144,3
+3387308,26289144,5
+Bianco,26289144,2
+48306725,26289144,5
+yrftx,26289144,3
+ocn27,26289144,4
+gillyuan,26289144,5
+64761922,26289144,4
+65804780,26289144,4
+48794309,26289144,4
+48794309,26289144,4
+guguDoris,26289144,4
+130532413,26289144,5
+laotang,26289144,4
+83667346,26289144,4
+52364655,26289144,4
+56707701,26289144,4
+50618027,26289144,4
+68920399,26289144,4
+36090011,26289144,4
+56117635,26289144,4
+su_mao,26289144,5
+46522785,26289144,4
+60494996,26289144,4
+74301144,26289144,3
+33133224,26289144,5
+qh1121,26289144,5
+shixiaoli,26289144,5
+fishxsherry,26289144,5
+42065664,26289144,4
+74602950,26289144,5
+tongnixcv,26289144,3
+2670607,26289144,4
+47308672,26289144,5
+shuiduocao,26289144,2
+43198783,26289144,5
+97955936,26289144,5
+56694430,26289144,4
+44973932,26289144,4
+larrylazy,26289144,4
+monster.sen,26289144,-1
+raynal,26289144,3
+34404885,26289144,-1
+seeker_,26289144,4
+yuzzz,26289144,5
+47990285,26289144,5
+agwhy,26289144,2
+loveyixiao,26289144,4
+3822591,26289144,4
+52416598,26289144,5
+65570354,26289144,4
+yanranaduo,26289144,5
+6614127,26289144,4
+67209913,26289144,3
+gogo530,26289144,4
+Whitestonelily,26289144,3
+49983823,26289144,3
+67150876,26289144,5
+53781940,26289144,4
+47924726,26289144,3
+45484861,26289144,3
+2043911,26289144,4
+48036288,26289144,3
+Erishia,26289144,3
+56347233,26289144,4
+cocoonsyd,26289144,4
+128122162,26289144,4
+27636746,26289144,5
+sunred66,26289144,3
+Brando,26289144,3
+55575289,26289144,3
+103382309,26289144,3
+lexieweila,26289144,-1
+47701757,26289144,3
+38897761,26289144,3
+skyto77,26289144,4
+123419758,26289144,5
+greensa,26289144,5
+xiaoxianwudi,26289144,3
+129157418,26289144,5
+45061776,26289144,3
+4753861,26289144,3
+orangeo,26289144,4
+cn1027,26289144,5
+29374473,26289144,4
+60149646,26289144,4
+yifanElle,26289144,5
+yanala,26289144,4
+zhongyi,26289144,5
+ketherine,26289144,4
+24543063,26289144,4
+68231886,26289144,4
+1724203,26289144,2
+126873709,26289144,5
+67087929,26289144,4
+tanglu,26289144,3
+1766112,26289144,3
+74551171,26289144,4
+xiaomo828,26289144,4
+39130354,26289144,4
+megryan,26289144,2
+45183610,26289144,4
+39520405,26289144,4
+m.911,26289144,4
+39909152,26289144,4
+kubhitnolan,26289144,4
+74553266,26289144,1
+o0Oo0O,26289144,4
+122858787,26289144,5
+17435111,26289144,5
+17435111,26289144,5
+cabaret,26289144,3
+kristylynn,26289144,5
+mee2ashin,26289144,4
+75828184,26289144,-1
+Luxiyalu,26289144,-1
+45097114,26289144,3
+72411684,26289144,4
+50431505,26289144,4
+a625880066,26289144,5
+58177373,26289144,3
+53393312,26289144,4
+80849511,26289144,3
+Hi-summer,26289144,5
+53439195,26289144,5
+carrotjune,26289144,4
+74971861,26289144,3
+48510715,26289144,4
+janelcc777,26289144,3
+75757535,26289144,3
+81521216,26289144,4
+lic,26289144,4
+jiliuyinlai,26289144,3
+50565787,26289144,4
+66113164,26289144,4
+huotuifei,26289144,4
+53672256,26289144,4
+64450665,26289144,3
+63939883,26289144,4
+47272004,26289144,4
+43486975,26289144,4
+64510815,26289144,5
+52753936,26289144,4
+50276433,26289144,4
+59206130,26289144,4
+50668498,26289144,4
+66355794,26289144,3
+angelcheng728,26289144,5
+53933661,26289144,4
+2678240,26289144,3
+2571425,26289144,5
+110953624,26289144,4
+3347059,26289144,4
+moszz,26289144,5
+37298592,26289144,5
+124741216,26289144,5
+128755032,26289144,5
+50559047,26289144,4
+131426803,26289144,4
+33712486,26289144,4
+2763659,26289144,4
+78980684,26289144,3
+summerlinnine,26289144,2
+77095251,26289144,2
+39569779,26289144,-1
+23502589,26289144,1
+41409099,26289144,5
+djdaisy1874,26289144,5
+yusanqi,26289144,5
+26409611,26289144,5
+63465276,26289144,3
+Hex79696e67,26289144,3
+aihepin,26289144,3
+83433574,26289144,5
+wazis,26289144,4
+luna59131,26289144,5
+lilicumhouse,26289144,5
+rinnie,26289144,4
+108597970,26289144,3
+57693778,26289144,3
+70255132,26289144,4
+greyknowsblue,26289144,5
+geminige,26289144,4
+43508209,26289144,3
+85368660,26289144,4
+2219194,26289144,4
+67984945,26289144,4
+130418392,26289144,4
+64626347,26289144,3
+maximilian0522,26289144,5
+jozenky,26289144,4
+UFO007,26289144,4
+48415219,26289144,5
+jeady2311,26289144,1
+54239245,26289144,5
+loner_drn,26289144,5
+datuobok,26289144,5
+103196058,26289144,5
+57088096,26289144,5
+44361784,26289144,3
+2073049,26289144,3
+hhcc149174,26289144,4
+joyzhuang,26289144,-1
+124470674,26289144,5
+zhongxiaoho,26289144,5
+3748350,26289144,4
+smile-7,26289144,3
+withmydog,26289144,3
+cecilynie,26289144,5
+3406579,26289144,3
+59012758,26289144,4
+56422706,26289144,5
+jill-volleyball,26289144,4
+heyshego,26289144,1
+126748700,26289144,3
+lifedraft,26289144,4
+48160969,26289144,2
+zhaonima,26289144,3
+auvauva,26289144,3
+133122713,26289144,1
+54282219,26289144,3
+hedgehog,26289144,4
+132395688,26289144,3
+46064171,26289144,4
+jimodexueren,26289144,5
+menyingqi,26289144,5
+5662776,26289144,3
+46039104,26289144,3
+amiciao,26289144,4
+summertt422,26289144,4
+3722422,26289144,5
+moxiaotu,26289144,4
+jimmy47,26289144,5
+1297044,26289144,3
+89178219,26289144,4
+hmily0316,26289144,4
+51860822,26289144,4
+castle416,26289144,3
+42310478,26289144,3
+52910373,26289144,3
+41833568,26289144,5
+49432517,26289144,5
+46605494,26289144,4
+43321938,26289144,-1
+69842524,26289144,4
+MadHorse,26289144,3
+yuan425,26289144,5
+3030378,26289144,5
+62491933,26289144,3
+51865230,26289144,5
+janiris,26289144,3
+lunaya,26289144,3
+47314582,26289144,4
+4716613,26289144,-1
+xiaotaoyaoyao,26289144,4
+2973153,26289144,2
+57311033,26289144,5
+60891750,26289144,4
+wmn,26289144,4
+54608411,26289144,4
+ChenJY971002,26289144,5
+learw0,26289144,5
+viola-x,26289144,4
+50689721,26289144,5
+84771494,26289144,3
+46533854,26289144,5
+42465627,26289144,4
+42162053,26289144,5
+58535825,26289144,3
+1240620,26289144,4
+juand,26289144,5
+79434594,26289144,4
+54798234,26289144,5
+shuihe,26289144,4
+94768716,26289144,3
+52801695,26289144,4
+55961670,26289144,5
+SINCE1988,26289144,4
+junefirst,26289144,5
+120394443,26289144,3
+67206600,26289144,4
+vickining,26289144,4
+yehuajie,26289144,4
+kwan0617,26289144,4
+131055900,26289144,4
+xiaren2011,26289144,4
+elinnao,26289144,3
+47058104,26289144,4
+colormoon,26289144,4
+54703835,26289144,4
+129815984,26289144,5
+mengwei1021,26289144,5
+87517858,26289144,5
+63209981,26289144,5
+67785924,26289144,4
+54345628,26289144,3
+kiwiwing,26289144,3
+liancheng,26289144,4
+126482942,26289144,5
+mihudexiaojing,26289144,5
+su27,26289144,4
+xinxinyu,26289144,4
+zy421,26289144,3
+46547191,26289144,4
+linyita,26289144,2
+bebusybee,26289144,4
+artofloving,26289144,4
+wulijejung,26289144,5
+30884176,26289144,3
+34255820,26289144,4
+66427798,26289144,5
+60133071,26289144,4
+fukumm,26289144,4
+46372731,26289144,4
+53343790,26289144,5
+51741927,26289144,3
+52739987,26289144,4
+narcissus.echo,26289144,4
+79896532,26289144,4
+chenxiaoke,26289144,3
+fredshare,26289144,4
+104266951,26289144,4
+43233255,26289144,4
+sevenfishing,26289144,3
+64814580,26289144,4
+90697037,26289144,5
+onionfang,26289144,4
+12832281,26289144,3
+4115756,26289144,5
+74519826,26289144,4
+4703013,26289144,4
+46462484,26289144,5
+Ovilia.,26289144,4
+54533341,26289144,4
+dearpeach,26289144,3
+40354955,26289144,5
+ARTEMIS777,26289144,5
+gtx2013,26289144,5
+37360973,26289144,1
+32111208,26289144,4
+43547425,26289144,3
+66993627,26289144,4
+72197323,26289144,2
+50557669,26289144,4
+4027052,26289144,5
+61616788,26289144,5
+90944162,26289144,4
+gcd0318,26289144,3
+48683953,26289144,3
+101910827,26289144,4
+haha4007,26289144,5
+Paradox_Q,26289144,3
+82799575,26289144,5
+114677586,26289144,4
+song1227,26289144,4
+sanzang007,26289144,3
+Magic-L,26289144,5
+qrange,26289144,3
+Que3n,26289144,2
+49531336,26289144,5
+yousu,26289144,5
+27898838,26289144,4
+58325786,26289144,3
+2324685,26289144,5
+49729749,26289144,5
+R17,26289144,4
+bapuyi,26289144,3
+62632229,26289144,4
+53582924,26289144,5
+yyy1240,26289144,4
+sunny1992,26289144,3
+21850895,26289144,5
+CYU1520,26289144,2
+3053086,26289144,4
+51828462,26289144,4
+lbq0175,26289144,5
+49356073,26289144,-1
+jiajiaqi,26289144,4
+93940379,26289144,3
+tblxben,26289144,4
+56281076,26289144,4
+lesari,26289144,4
+51163329,26289144,4
+45925639,26289144,4
+130071542,26289144,3
+45893124,26289144,4
+54119781,26289144,4
+84663969,26289144,4
+43172878,26289144,4
+tt-can,26289144,3
+42328427,26289144,5
+47351249,26289144,4
+39045216,26289144,5
+huoxiaolan,26289144,4
+vicky0521,26289144,2
+zianzhao,26289144,4
+MissBao,26289144,3
+47196378,26289144,-1
+Pinellia,26289144,5
+54619955,26289144,4
+69779377,26289144,4
+Ran_Zhuang,26289144,2
+53581045,26289144,4
+marysays,26289144,-1
+52189151,26289144,4
+farewellmyeteen,26289144,5
+55673324,26289144,4
+71061023,26289144,4
+av13,26289144,2
+64667835,26289144,3
+73921973,26289144,4
+59450940,26289144,5
+28033045,26289144,5
+95386451,26289144,5
+superxiaoqi123,26289144,4
+11149109,26289144,5
+52617233,26289144,3
+konglinghuanyin,26289144,4
+8912393,26289144,4
+128683384,26289144,3
+87655848,26289144,3
+36950966,26289144,4
+56372247,26289144,3
+131039568,26289144,4
+2242910,26289144,4
+38595603,26289144,3
+74909337,26289144,4
+renzhewei,26289144,5
+sodazxw,26289144,5
+49164975,26289144,5
+53238210,26289144,3
+47911343,26289144,5
+107140803,26289144,3
+44615298,26289144,4
+duoxiaoduoyy,26289144,4
+64776383,26289144,5
+50234828,26289144,5
+xujiujiu,26289144,4
+katichang,26289144,3
+50143933,26289144,5
+41313904,26289144,3
+124668726,26289144,3
+56879046,26289144,5
+zi,26289144,3
+litikky,26289144,5
+50759469,26289144,3
+ljl7764,26289144,5
+91848413,26289144,5
+mfslalala,26289144,4
+20665997,26289144,4
+50510383,26289144,4
+73921398,26289144,2
+shelstar,26289144,3
+Tor.design,26289144,4
+63781325,26289144,3
+taiyanghuazhen,26289144,5
+33527780,26289144,4
+iclover1314,26289144,4
+38105854,26289144,4
+zellmissu,26289144,3
+44049094,26289144,4
+127905530,26289144,4
+mmmy,26289144,5
+37424688,26289144,3
+schuni,26289144,5
+16038998,26289144,5
+toby_7,26289144,4
+3199607,26289144,4
+130808289,26289144,4
+dream_for3,26289144,5
+48072909,26289144,2
+wuyaicho,26289144,3
+5994776,26289144,5
+50062390,26289144,4
+birdieeos,26289144,3
+Johannisberg,26289144,4
+91994560,26289144,3
+easonlau,26289144,4
+75486128,26289144,4
+54277282,26289144,4
+crony09,26289144,3
+61722322,26289144,3
+52151546,26289144,4
+41693160,26289144,4
+8072298,26289144,4
+smilingelaine,26289144,4
+127646902,26289144,4
+48065350,26289144,5
+69251373,26289144,5
+40536889,26289144,4
+yushuting1122,26289144,4
+77500999,26289144,1
+41027619,26289144,3
+72316189,26289144,5
+elbe,26289144,4
+62671989,26289144,2
+Lillian-LYL,26289144,3
+36395354,26289144,5
+45197584,26289144,4
+yoyofun,26289144,-1
+4313748,26289144,4
+104147841,26289144,4
+sunianjinshired,26289144,4
+63126204,26289144,4
+49905941,26289144,4
+83971141,26289144,4
+47506857,26289144,4
+MONSTER-HaN,26289144,3
+sooooosweet,26289144,3
+1601177,26289144,4
+hakana,26289144,4
+102581208,26289144,4
+joyceoneone,26289144,5
+1525208,26289144,4
+2030403,26289144,3
+131771853,26289144,5
+52972629,26289144,5
+beckysay,26289144,5
+81667289,26289144,4
+47648192,26289144,3
+cincincindy,26289144,5
+64495212,26289144,3
+2040214,26289144,4
+55660651,26289144,3
+54758824,26289144,4
+33042240,26289144,4
+65813989,26289144,3
+51780165,26289144,5
+122753398,26289144,1
+69696291,26289144,5
+1440772,26289144,4
+48042607,26289144,4
+68635821,26289144,4
+3925691,26289144,3
+56474762,26289144,5
+88256583,26289144,5
+84567467,26289144,4
+mao_mao,26289144,4
+53857925,26289144,5
+4432446,26289144,4
+weiweiweiwei,26289144,4
+miamangaw,26289144,-1
+4382959,26289144,5
+adora,26289144,5
+60095742,26289144,4
+loveblues,26289144,5
+133109039,26289144,4
+2485814,26289144,4
+60804345,26289144,3
+harry731,26289144,3
+naratan,26289144,2
+58888075,26289144,4
+pamelayang,26289144,4
+wndhaor,26289144,4
+viktorhou,26289144,2
+60659819,26289144,3
+50094605,26289144,4
+121841318,26289144,3
+rukiawang,26289144,3
+CacheMemory,26289144,5
+im1900lys,26289144,-1
+77460780,26289144,4
+113440309,26289144,2
+48688516,26289144,3
+Erinnerung,26289144,5
+65773482,26289144,4
+46361986,26289144,3
+2126475,26289144,5
+32569876,26289144,5
+sanguinepong,26289144,4
+twoerer,26289144,3
+jfbobo,26289144,5
+52217550,26289144,4
+klose_y,26289144,4
+58670353,26289144,4
+52856586,26289144,5
+78644847,26289144,3
+YiLingShen,26289144,3
+46220008,26289144,4
+72677574,26289144,4
+71613050,26289144,5
+aishangyudehai,26289144,4
+110352307,26289144,4
+82065150,26289144,3
+yueyuebetty,26289144,-1
+33751223,26289144,4
+52113084,26289144,2
+efscpig,26289144,5
+132830109,26289144,4
+3820154,26289144,4
+2268415,26289144,4
+jimuwawa,26289144,4
+48009224,26289144,1
+4484031,26289144,4
+57930112,26289144,4
+lullaby_ly,26289144,4
+Roxane,26289144,-1
+44239008,26289144,5
+68457091,26289144,5
+45430088,26289144,5
+4629967,26289144,5
+63916400,26289144,5
+cheeseberry,26289144,4
+totozhang,26289144,3
+15752330,26289144,4
+58976778,26289144,5
+49110008,26289144,3
+calvin88,26289144,4
+57578672,26289144,5
+3712687,26289144,4
+CZ1011,26289144,5
+43405636,26289144,-1
+haiziyaya,26289144,4
+3489632,26289144,4
+viola0204,26289144,4
+70780193,26289144,4
+58209087,26289144,3
+63127637,26289144,3
+shashaishere,26289144,3
+34204093,26289144,2
+65972853,26289144,5
+ayi690,26289144,3
+lampard199019,26289144,2
+120178108,26289144,5
+yyuan9372,26289144,4
+92811330,26289144,3
+jetaimeyc,26289144,4
+54444481,26289144,4
+43474767,26289144,4
+caosen,26289144,4
+45442822,26289144,2
+Le.89,26289144,4
+129063057,26289144,4
+64673199,26289144,4
+cxyecho,26289144,3
+60608866,26289144,4
+wangjun1900,26289144,3
+86204468,26289144,4
+yueqianjin,26289144,4
+56186272,26289144,5
+niubility1258,26289144,5
+i.m.yours,26289144,4
+47959588,26289144,4
+xiatian722,26289144,4
+61219547,26289144,3
+snowpanda,26289144,4
+Sherry-OCDer,26289144,2
+57678650,26289144,5
+2359358,26289144,4
+63642359,26289144,3
+49260594,26289144,3
+58252389,26289144,4
+65276056,26289144,5
+stgrave,26289144,4
+48250254,26289144,3
+53800868,26289144,3
+42276004,26289144,5
+shy_nothing,26289144,1
+60104421,26289144,5
+sarainotes,26289144,-1
+103343276,26289144,4
+54236825,26289144,4
+1223666,26289144,4
+Laura0927,26289144,4
+maluguojiang,26289144,4
+124238052,26289144,5
+68201628,26289144,4
+133106963,26289144,4
+52121729,26289144,3
+71505159,26289144,4
+81539389,26289144,2
+54909935,26289144,4
+weiranchenglin,26289144,4
+38979539,26289144,3
+62934408,26289144,4
+crystal1124,26289144,-1
+84364994,26289144,4
+55747324,26289144,4
+5955160,26289144,4
+1478783,26289144,4
+yanxianxian,26289144,4
+viviannasun,26289144,4
+miantanjie,26289144,4
+92020136,26289144,4
+xuxiaomao,26289144,4
+patio,26289144,5
+fivero,26289144,4
+133106437,26289144,4
+126846791,26289144,4
+4853049,26289144,4
+sarawoo,26289144,3
+57193473,26289144,4
+65383456,26289144,-1
+115497658,26289144,4
+astrology11,26289144,4
+dog-color,26289144,4
+133106358,26289144,5
+124385874,26289144,4
+47359834,26289144,4
+26044083,26289144,4
+54506320,26289144,4
+3640752,26289144,4
+132479981,26289144,3
+131610219,26289144,2
+bforbetter,26289144,3
+52140378,26289144,4
+79071322,26289144,5
+48978684,26289144,3
+48789543,26289144,3
+59263792,26289144,4
+122254547,26289144,4
+westender,26289144,3
+42748490,26289144,5
+62134225,26289144,5
+125134010,26289144,5
+3290196,26289144,5
+4026585,26289144,4
+58028787,26289144,3
+105864771,26289144,4
+Terri0710,26289144,5
+51037544,26289144,4
+2243044,26289144,4
+43955496,26289144,1
+charmine913,26289144,4
+44941614,26289144,4
+1007921,26289144,3
+1435293,26289144,5
+vaughndou,26289144,4
+49173755,26289144,4
+cheexx7,26289144,5
+mamuzuke,26289144,4
+63027817,26289144,3
+dingzijie,26289144,4
+83493569,26289144,5
+guangxia413,26289144,3
+48300631,26289144,4
+zydaydream,26289144,5
+41370734,26289144,5
+58060314,26289144,4
+wzshere,26289144,2
+doraemon63,26289144,3
+59136561,26289144,4
+42827834,26289144,4
+48489477,26289144,4
+unicorno,26289144,3
+52347416,26289144,1
+15163815,26289144,2
+45385294,26289144,4
+48937810,26289144,3
+leecyril,26289144,4
+leecyril,26289144,4
+70391782,26289144,5
+79901535,26289144,5
+60599665,26289144,5
+allentear,26289144,5
+36809297,26289144,3
+Zealx,26289144,4
+withharrypotter,26289144,4
+55833673,26289144,5
+orange511,26289144,5
+66232190,26289144,4
+2486660,26289144,5
+51807331,26289144,4
+xinxinyan,26289144,4
+fxl0977,26289144,4
+tinyno7,26289144,4
+31085938,26289144,4
+vliangfrank,26289144,4
+67944529,26289144,5
+66976207,26289144,3
+66976207,26289144,3
+3268480,26289144,4
+nancynancygu,26289144,5
+67812928,26289144,4
+52725191,26289144,4
+bryantarecool,26289144,3
+2101526,26289144,3
+75179640,26289144,3
+PIERRELIU,26289144,5
+26860515,26289144,4
+nevershuo,26289144,4
+57178102,26289144,5
+35991194,26289144,3
+2162065,26289144,-1
+96370254,26289144,3
+59813466,26289144,5
+4372093,26289144,2
+2485313,26289144,3
+34805000,26289144,5
+briteching,26289144,4
+45982097,26289144,4
+44796686,26289144,4
+51293208,26289144,4
+5918950,26289144,3
+60350995,26289144,4
+elisha_gai,26289144,4
+suzyfine,26289144,1
+54090082,26289144,4
+Eveh,26289144,3
+48746387,26289144,5
+tenaciousdragon,26289144,3
+whitedandilion,26289144,4
+64294256,26289144,2
+2777743,26289144,3
+73711889,26289144,4
+77305939,26289144,4
+snowing_y,26289144,5
+chefism,26289144,4
+49411879,26289144,4
+zealionz,26289144,4
+cookie-bear,26289144,4
+4204545,26289144,4
+118883751,26289144,5
+lalalawuyun,26289144,3
+62219119,26289144,4
+charlie_c,26289144,4
+45517061,26289144,4
+warm_fan,26289144,4
+bookpotato,26289144,4
+122206706,26289144,5
+hualuowushengsi,26289144,4
+130633201,26289144,5
+zyc1990111,26289144,-1
+46058827,26289144,3
+chaochao817,26289144,3
+2118404,26289144,1
+43229954,26289144,5
+77613125,26289144,3
+2233142,26289144,4
+58783930,26289144,5
+amilyzz,26289144,4
+69874704,26289144,2
+52169356,26289144,3
+cskywalker,26289144,4
+43462039,26289144,5
+2248587,26289144,4
+tree1990,26289144,-1
+51841459,26289144,4
+umaymaymay,26289144,3
+41608232,26289144,5
+48349929,26289144,5
+Scarlett...,26289144,4
+59281963,26289144,4
+SDx74,26289144,4
+50842003,26289144,3
+cimuhu,26289144,-1
+121432090,26289144,5
+miucather,26289144,4
+twinslt,26289144,4
+cxqyy8,26289144,3
+59938173,26289144,3
+54054785,26289144,2
+2830223,26289144,3
+58200229,26289144,4
+53833960,26289144,4
+70130998,26289144,4
+67208670,26289144,5
+qiusuiying,26289144,3
+34033819,26289144,4
+50373897,26289144,4
+2507688,26289144,5
+42603367,26289144,4
+my_landscape,26289144,5
+mrorbiz,26289144,5
+63992894,26289144,4
+tuzichiluobo,26289144,4
+xiaojiaheng,26289144,4
+123049067,26289144,3
+81643046,26289144,4
+Elaine1103,26289144,4
+118843796,26289144,5
+sxywingwing,26289144,-1
+65209686,26289144,5
+surenyi,26289144,3
+125608618,26289144,1
+yanlifan,26289144,4
+sundea,26289144,3
+131134300,26289144,3
+XING0131,26289144,4
+lebule,26289144,3
+64109076,26289144,4
+122759258,26289144,4
+2265138,26289144,4
+70439283,26289144,5
+dfzxqqian,26289144,5
+MissCg,26289144,4
+wwwrachel,26289144,5
+Karilyn,26289144,3
+gondia,26289144,1
+65123381,26289144,4
+Elizabethly,26289144,3
+arale180,26289144,4
+brucetown,26289144,3
+126375178,26289144,5
+david_xmz,26289144,2
+52463415,26289144,3
+133103066,26289144,3
+xeniacheung,26289144,4
+1495593,26289144,5
+82776171,26289144,4
+joycerabbit,26289144,4
+81848282,26289144,3
+57724049,26289144,4
+52080967,26289144,4
+28410778,26289144,4
+52221751,26289144,3
+131627562,26289144,3
+14944907,26289144,5
+8342264,26289144,4
+lynn1123,26289144,5
+wonfrade,26289144,4
+xiaomao27,26289144,5
+66036408,26289144,3
+50422639,26289144,5
+57405430,26289144,3
+roy_box,26289144,4
+1101526,26289144,3
+fanbucloud,26289144,5
+68335601,26289144,5
+103969062,26289144,5
+zhangzhai,26289144,4
+bigdream3721,26289144,5
+1901240,26289144,4
+49126396,26289144,4
+52311613,26289144,3
+62318575,26289144,4
+maggiexx,26289144,4
+46393539,26289144,4
+yapii,26289144,4
+114357928,26289144,5
+49864789,26289144,4
+9662580,26289144,4
+51947959,26289144,3
+Vicarol,26289144,4
+4868364,26289144,3
+2632594,26289144,5
+ET-Ocean,26289144,5
+102104781,26289144,4
+66066845,26289144,4
+janeyur,26289144,4
+55626118,26289144,4
+gstone1723,26289144,4
+rutanilla07,26289144,-1
+54500977,26289144,4
+53080091,26289144,4
+91392339,26289144,5
+jqong1,26289144,4
+ukimuknow,26289144,4
+61474625,26289144,4
+132024097,26289144,3
+120605718,26289144,5
+alphatown,26289144,4
+53580673,26289144,4
+90599205,26289144,4
+greymz,26289144,5
+58520710,26289144,5
+53103600,26289144,5
+119806823,26289144,4
+57433106,26289144,5
+126959087,26289144,2
+rap_hael,26289144,4
+59500634,26289144,4
+62483503,26289144,4
+103277074,26289144,4
+nicole24,26289144,5
+63045020,26289144,4
+rankor,26289144,3
+80585311,26289144,4
+94115130,26289144,4
+foreveryoung01,26289144,3
+58742101,26289144,4
+yoS2oy,26289144,5
+57370195,26289144,4
+44257922,26289144,3
+127728111,26289144,3
+soleilratemma,26289144,4
+3372957,26289144,3
+91135637,26289144,4
+53982181,26289144,4
+57495744,26289144,-1
+zhangying0913,26289144,4
+54336874,26289144,4
+41766735,26289144,5
+2299452,26289144,5
+44921449,26289144,4
+gaier,26289144,5
+2578380,26289144,5
+66996841,26289144,4
+59998509,26289144,4
+64162048,26289144,4
+orangeboy,26289144,4
+1413100,26289144,3
+aiiicat,26289144,3
+41492377,26289144,3
+64612843,26289144,4
+54051724,26289144,3
+4612573,26289144,4
+ian9,26289144,5
+lingrui1995,26289144,3
+104528325,26289144,5
+sosoJean,26289144,4
+violetlovekaye,26289144,5
+54842337,26289144,1
+106109346,26289144,5
+74059129,26289144,4
+132690366,26289144,5
+adejavu,26289144,4
+59735330,26289144,3
+lishijia,26289144,5
+71203011,26289144,3
+adaxia,26289144,3
+49784018,26289144,4
+51369610,26289144,3
+53023463,26289144,4
+zhusiyang,26289144,5
+58959669,26289144,5
+lynna26,26289144,5
+Xionz,26289144,4
+PP_wei,26289144,5
+hejiabao,26289144,4
+68714865,26289144,4
+Duyuanyuan,26289144,4
+40498676,26289144,3
+3131916,26289144,3
+54400244,26289144,3
+59263516,26289144,3
+48873151,26289144,5
+53080002,26289144,5
+5212986,26289144,5
+TRISTAxTY14,26289144,5
+72549209,26289144,4
+1056656,26289144,4
+79600120,26289144,5
+on-my-way,26289144,5
+102342515,26289144,5
+4804994,26289144,3
+66919459,26289144,3
+49164545,26289144,4
+Bugbear1,26289144,-1
+71269844,26289144,4
+64024738,26289144,4
+freedomiron,26289144,4
+83401257,26289144,4
+51367308,26289144,5
+3843671,26289144,4
+61100170,26289144,3
+mia1013,26289144,5
+27088353,26289144,4
+43314025,26289144,4
+zenlee,26289144,3
+3887086,26289144,3
+23321019,26289144,4
+43137756,26289144,4
+71466903,26289144,5
+60822788,26289144,4
+60092465,26289144,4
+54048072,26289144,4
+60752122,26289144,4
+angelliujiayun,26289144,4
+ice1,26289144,5
+32941683,26289144,5
+4872222,26289144,5
+huynbinF,26289144,4
+nellylin,26289144,4
+115816477,26289144,4
+52640944,26289144,5
+vip_chang,26289144,4
+44531163,26289144,5
+remi,26289144,4
+mojiang730,26289144,3
+3573467,26289144,3
+afumini,26289144,4
+daydream466,26289144,4
+57468187,26289144,4
+58762290,26289144,3
+41946258,26289144,3
+36362041,26289144,4
+59586906,26289144,-1
+80133214,26289144,5
+aafeier,26289144,4
+94337182,26289144,4
+55342702,26289144,4
+amor_fati,26289144,5
+60153424,26289144,5
+4882025,26289144,4
+catlyn,26289144,4
+48658836,26289144,5
+74661878,26289144,5
+33747314,26289144,3
+frankfankai,26289144,5
+61866931,26289144,3
+33226742,26289144,5
+31004958,26289144,4
+108243039,26289144,5
+yvonnezhang0615,26289144,4
+62251744,26289144,4
+103106457,26289144,4
+49273885,26289144,5
+gannizi,26289144,5
+sachi227,26289144,4
+36187020,26289144,4
+lili-snape,26289144,4
+ddling,26289144,5
+2701338,26289144,5
+82229229,26289144,5
+40201382,26289144,3
+carolgu1990,26289144,4
+126948794,26289144,3
+tinylong,26289144,4
+mianmian27,26289144,2
+gingershoes,26289144,2
+Utopia.YY,26289144,4
+54352343,26289144,4
+emmalty,26289144,3
+58323329,26289144,4
+lucifan,26289144,5
+58934879,26289144,4
+48596019,26289144,3
+64389615,26289144,5
+tildali1214,26289144,3
+46100445,26289144,5
+125810771,26289144,3
+58067296,26289144,4
+4183818,26289144,4
+130222270,26289144,4
+czjlove,26289144,4
+74959611,26289144,4
+liebejenny,26289144,4
+58343870,26289144,4
+62712830,26289144,4
+dongqingjia,26289144,3
+60126055,26289144,4
+52056943,26289144,5
+54231110,26289144,-1
+dvddvd,26289144,4
+eugne,26289144,4
+85191656,26289144,5
+57098099,26289144,5
+104630878,26289144,5
+2183610,26289144,3
+3494501,26289144,5
+91432391,26289144,4
+78914788,26289144,3
+39500183,26289144,5
+starnicky,26289144,5
+62595700,26289144,4
+VendettaChild,26289144,-1
+xiaoyezi_miao,26289144,5
+3131808,26289144,3
+quill,26289144,2
+35890739,26289144,3
+41843142,26289144,4
+79466970,26289144,2
+small7,26289144,4
+Younglar,26289144,3
+mon_coeur,26289144,4
+50304732,26289144,5
+78843795,26289144,5
+xiaoyuhen,26289144,3
+42910357,26289144,5
+4216686,26289144,5
+113251096,26289144,4
+2711621,26289144,3
+58404696,26289144,5
+laodao9527,26289144,2
+Abbey_sick,26289144,5
+jing0614,26289144,5
+43677316,26289144,5
+Ste_corleone,26289144,3
+63461605,26289144,4
+34454459,26289144,5
+blew,26289144,2
+43785855,26289144,3
+59202829,26289144,3
+zml5d,26289144,4
+108040682,26289144,4
+charita,26289144,4
+68116821,26289144,4
+44190066,26289144,4
+1494955,26289144,4
+October21,26289144,4
+51490972,26289144,1
+74684254,26289144,3
+51406263,26289144,3
+alisa_lea,26289144,4
+17549723,26289144,2
+67361991,26289144,5
+bluefish123,26289144,5
+49689956,26289144,4
+3574182,26289144,5
+xcyangel111,26289144,4
+Jenn__ifer,26289144,5
+70474463,26289144,4
+132834328,26289144,5
+84739128,26289144,3
+Emily723,26289144,5
+zoe0124,26289144,4
+shirley_zhong,26289144,5
+2978891,26289144,5
+53367527,26289144,5
+102621114,26289144,3
+duduxiongzhifu,26289144,4
+53828574,26289144,5
+4459358,26289144,3
+tfdlyoo,26289144,3
+foxtt,26289144,4
+68640061,26289144,3
+41878969,26289144,5
+alicenight,26289144,5
+61602655,26289144,5
+alex_tsou,26289144,4
+72395169,26289144,5
+65362150,26289144,5
+nelatever,26289144,-1
+75350728,26289144,5
+41630786,26289144,3
+Chohin,26289144,4
+6609613,26289144,3
+LHone,26289144,3
+litsunny,26289144,4
+Jing.lee,26289144,3
+129798303,26289144,3
+57553454,26289144,4
+57919693,26289144,4
+3385352,26289144,3
+122028540,26289144,5
+61218887,26289144,4
+130221209,26289144,4
+alexs,26289144,3
+cl1235,26289144,3
+41949085,26289144,1
+48615515,26289144,3
+102733238,26289144,4
+128450167,26289144,4
+45631854,26289144,4
+1643126,26289144,3
+bmkg,26289144,3
+63969344,26289144,4
+3850256,26289144,4
+64286220,26289144,4
+Desmondj,26289144,4
+87693266,26289144,4
+55429218,26289144,3
+sylvia1207,26289144,4
+rainymu,26289144,3
+119619987,26289144,3
+60821745,26289144,4
+41281992,26289144,5
+3977584,26289144,3
+gexiaoshang,26289144,4
+windyli,26289144,4
+124304094,26289144,5
+35739270,26289144,5
+72181533,26289144,4
+64816700,26289144,3
+1567784,26289144,3
+xiaoshi0212,26289144,3
+xiaowa77,26289144,5
+59504947,26289144,5
+103429424,26289144,4
+40233523,26289144,4
+Vivadavila,26289144,5
+faychen007,26289144,5
+2812420,26289144,5
+59843515,26289144,4
+1106581,26289144,4
+63690698,26289144,1
+wqljane,26289144,4
+33959216,26289144,5
+kingpein,26289144,1
+63622302,26289144,2
+maocan,26289144,-1
+90127295,26289144,5
+Uroboros,26289144,4
+Jooolanda,26289144,5
+duanjiajia,26289144,2
+123208179,26289144,4
+16959294,26289144,4
+3049354,26289144,2
+rachel1120,26289144,5
+zhangsisi333,26289144,4
+119024126,26289144,3
+DERRICK_ROSE,26289144,5
+levitating,26289144,3
+jinshutiegan,26289144,5
+too_up,26289144,5
+66146839,26289144,4
+Sophiashen,26289144,4
+56754071,26289144,5
+shanl,26289144,3
+zcz1994,26289144,3
+34728701,26289144,3
+Sophieless,26289144,5
+unclelonglegs,26289144,4
+hoho_32,26289144,4
+54641947,26289144,4
+iceout,26289144,3
+46168428,26289144,3
+76781369,26289144,4
+71834374,26289144,4
+imlarisa,26289144,4
+71048330,26289144,4
+yangnaonao,26289144,5
+lsmichelle007,26289144,4
+yamiyomi,26289144,5
+45848976,26289144,1
+126010214,26289144,5
+127467448,26289144,3
+57354872,26289144,4
+peggynana,26289144,4
+jammie2011,26289144,2
+102700712,26289144,4
+52383930,26289144,5
+52539188,26289144,4
+2685590,26289144,5
+60865096,26289144,5
+elliry,26289144,3
+68193127,26289144,3
+65595818,26289144,4
+46468142,26289144,5
+ireneyan,26289144,4
+41566646,26289144,4
+50862966,26289144,4
+56926782,26289144,4
+77809977,26289144,5
+yc11,26289144,2
+75829238,26289144,3
+92581964,26289144,3
+dearbeibei,26289144,4
+121656702,26289144,-1
+44686746,26289144,5
+chenchunru,26289144,4
+A-BeR,26289144,4
+55289792,26289144,4
+1240037,26289144,4
+43780153,26289144,3
+54139963,26289144,2
+92701106,26289144,4
+74495148,26289144,3
+black0728,26289144,4
+65441937,26289144,5
+69008622,26289144,5
+LogicLady,26289144,4
+50880532,26289144,2
+64003394,26289144,5
+53743879,26289144,1
+62270927,26289144,4
+stickman,26289144,5
+gray1210,26289144,-1
+62156230,26289144,4
+pengxuan1996,26289144,5
+68497565,26289144,2
+15260965,26289144,-1
+ni0712,26289144,5
+mxlzyd,26289144,4
+81929147,26289144,5
+43102408,26289144,4
+xiaodao102,26289144,-1
+summer0507,26289144,4
+61171378,26289144,3
+42900224,26289144,3
+qileyi761,26289144,4
+121338991,26289144,4
+62416411,26289144,4
+bl.mio,26289144,4
+chenbing,26289144,4
+46732038,26289144,4
+48218453,26289144,2
+Lreckle,26289144,4
+cooiky,26289144,-1
+49576050,26289144,4
+3277639,26289144,5
+71766001,26289144,4
+91297667,26289144,4
+3246311,26289144,3
+73585315,26289144,4
+zhuqingdaren,26289144,5
+yingtaoher,26289144,5
+haprabbit,26289144,5
+sukuangllp,26289144,5
+81666344,26289144,5
+72191576,26289144,5
+84355222,26289144,4
+113100904,26289144,4
+47995436,26289144,3
+52368125,26289144,2
+eaaaa,26289144,5
+54089152,26289144,4
+ydlxiaolong,26289144,4
+69000298,26289144,2
+69000298,26289144,2
+48679878,26289144,4
+104872369,26289144,5
+132041780,26289144,4
+vincet,26289144,4
+doowadoo,26289144,3
+51728085,26289144,5
+45693262,26289144,4
+aasian,26289144,3
+82344430,26289144,3
+2569325,26289144,3
+65399116,26289144,4
+62182493,26289144,4
+59135045,26289144,4
+78160726,26289144,4
+52858125,26289144,5
+97312448,26289144,4
+mtz,26289144,5
+guoyeh,26289144,4
+48933786,26289144,4
+36716093,26289144,4
+77818044,26289144,4
+15923962,26289144,2
+70764851,26289144,5
+69819504,26289144,4
+4835293,26289144,3
+122110316,26289144,3
+54271813,26289144,5
+Ridagun,26289144,4
+121539889,26289144,4
+51355598,26289144,4
+sandywhite,26289144,3
+43241733,26289144,4
+twisterlily,26289144,4
+66922766,26289144,3
+babysd,26289144,5
+huoniu,26289144,4
+46393158,26289144,4
+gaellon,26289144,4
+22648222,26289144,4
+52384624,26289144,3
+61569566,26289144,4
+31834718,26289144,5
+mockingbirddb,26289144,-1
+yoky,26289144,3
+31955384,26289144,4
+DanielArmstrong,26289144,-1
+berber918,26289144,5
+36477944,26289144,4
+1794888,26289144,5
+78977201,26289144,4
+sybilyuan,26289144,4
+47514715,26289144,4
+wxsw,26289144,4
+2232768,26289144,4
+crystalaeroplan,26289144,5
+48991225,26289144,4
+3213833,26289144,4
+andk2181,26289144,4
+Dling-YYY,26289144,3
+43134221,26289144,5
+nishinoyuichi,26289144,2
+6681296,26289144,4
+smallbai406,26289144,4
+yinmoqingsanhe,26289144,4
+61424734,26289144,4
+moka_me,26289144,4
+120764662,26289144,4
+49788914,26289144,4
+65747014,26289144,4
+2222172,26289144,3
+54206173,26289144,1
+50077438,26289144,5
+47516693,26289144,5
+Rabbitoe,26289144,4
+ycy19870313,26289144,3
+littlemoon218,26289144,4
+52747900,26289144,4
+buleiba,26289144,5
+48582853,26289144,5
+74551006,26289144,5
+4146586,26289144,3
+38248874,26289144,5
+126507806,26289144,3
+55362027,26289144,3
+YagyuKyuubei,26289144,3
+lcghere,26289144,4
+97480976,26289144,4
+winifred911,26289144,-1
+89992830,26289144,4
+sacowiw,26289144,5
+jue_mingzi,26289144,4
+52671999,26289144,5
+84473008,26289144,4
+23403898,26289144,5
+1901235,26289144,5
+54910721,26289144,4
+51239314,26289144,4
+47731149,26289144,4
+ireneg,26289144,5
+graceanbaby,26289144,4
+2404315,26289144,3
+34915744,26289144,4
+jasonshaw,26289144,4
+48944368,26289144,4
+57947466,26289144,4
+31709638,26289144,4
+94254044,26289144,3
+Serena_0512,26289144,4
+taoeco,26289144,5
+BoondockSaints,26289144,3
+102407375,26289144,4
+59752375,26289144,4
+1613774,26289144,3
+119838841,26289144,4
+46156875,26289144,5
+54766723,26289144,4
+hanxudaydayup,26289144,5
+63332065,26289144,3
+58959067,26289144,4
+52871587,26289144,5
+tmyiris,26289144,3
+Charmaine,26289144,5
+4171608,26289144,5
+68731965,26289144,4
+48763005,26289144,5
+1113431,26289144,4
+hades1029,26289144,4
+Funkiso,26289144,4
+68447618,26289144,3
+wsyyw,26289144,4
+linngallery,26289144,5
+maorabbit,26289144,4
+74341937,26289144,4
+96636386,26289144,4
+121070723,26289144,2
+71560494,26289144,4
+80834580,26289144,1
+91537188,26289144,5
+72585899,26289144,3
+55764121,26289144,4
+46738101,26289144,3
+manuela,26289144,5
+48126657,26289144,4
+59721065,26289144,4
+tabbysmile,26289144,5
+64971534,26289144,4
+42042564,26289144,4
+82511491,26289144,4
+54308994,26289144,4
+2780529,26289144,5
+catmaocat,26289144,5
+63054075,26289144,5
+89016897,26289144,4
+51112387,26289144,5
+xxxcici123,26289144,-1
+66805785,26289144,2
+rbit,26289144,4
+122891503,26289144,4
+mourirank,26289144,4
+37373558,26289144,3
+spiritual,26289144,-1
+38866851,26289144,5
+magilee0608,26289144,4
+lovinglifefocky,26289144,5
+2404844,26289144,5
+48198812,26289144,5
+sliaobellamy,26289144,3
+51414722,26289144,5
+35950569,26289144,5
+124467661,26289144,4
+windissolo,26289144,5
+43320898,26289144,5
+a-lin,26289144,3
+huochemao,26289144,3
+28229661,26289144,5
+jujufan,26289144,3
+suvein,26289144,-1
+51022455,26289144,5
+102853868,26289144,5
+taoqishu,26289144,4
+59210685,26289144,4
+63412313,26289144,4
+75624333,26289144,5
+15706603,26289144,4
+52364005,26289144,5
+16693810,26289144,5
+lujia6,26289144,3
+71929336,26289144,4
+53368191,26289144,3
+2310421,26289144,4
+1733533,26289144,5
+121568939,26289144,3
+25639111,26289144,4
+63202867,26289144,5
+huoLayfeng,26289144,4
+115029613,26289144,-1
+61773607,26289144,5
+48230348,26289144,4
+131914536,26289144,4
+4182606,26289144,4
+Sura890123,26289144,5
+60621560,26289144,4
+60016523,26289144,3
+52981185,26289144,4
+rayll,26289144,5
+hymoonlight,26289144,5
+120119799,26289144,4
+59199050,26289144,5
+rukaaa,26289144,5
+85369618,26289144,4
+52774723,26289144,5
+74654132,26289144,5
+68955090,26289144,4
+35315925,26289144,4
+80822437,26289144,1
+102718430,26289144,4
+hyunoo,26289144,3
+66867402,26289144,4
+75511285,26289144,5
+50725954,26289144,4
+tsunamijiang,26289144,4
+65333916,26289144,3
+37411559,26289144,4
+50258293,26289144,2
+4239908,26289144,4
+41690409,26289144,5
+65446206,26289144,3
+butuisedelan,26289144,4
+41502689,26289144,3
+1424695,26289144,3
+68399998,26289144,3
+swingzhu,26289144,3
+zyl2ljf,26289144,4
+60020438,26289144,3
+1314661,26289144,2
+63318995,26289144,3
+hsy1108,26289144,4
+56596188,26289144,4
+62426044,26289144,5
+62426044,26289144,5
+45400633,26289144,3
+52666405,26289144,5
+roaring90h,26289144,4
+57210088,26289144,4
+eddie18,26289144,5
+10595793,26289144,3
+4912841,26289144,5
+79736160,26289144,4
+43865848,26289144,4
+luhome,26289144,4
+71108612,26289144,4
+M_0013,26289144,4
+122915542,26289144,4
+45775524,26289144,5
+49120008,26289144,2
+91157157,26289144,5
+raintingfan,26289144,3
+50595538,26289144,5
+tudou0321,26289144,4
+bossgugu,26289144,4
+50608084,26289144,4
+arielwjx,26289144,4
+126078660,26289144,4
+haoheart,26289144,3
+gy12,26289144,5
+siyoo,26289144,5
+81928972,26289144,5
+119489543,26289144,4
+23235822,26289144,5
+jacklqw,26289144,2
+jinyuhen,26289144,5
+leftrighthands,26289144,4
+67843456,26289144,3
+ichigogogo,26289144,3
+mandy23,26289144,5
+41349161,26289144,4
+lidazhuan,26289144,4
+csprite,26289144,4
+zhangreeki,26289144,1
+63407517,26289144,5
+unico626,26289144,5
+132742952,26289144,5
+dreamgmh,26289144,3
+97649336,26289144,5
+82432964,26289144,3
+ing...,26289144,4
+37966759,26289144,4
+52242741,26289144,3
+50555792,26289144,4
+122627623,26289144,5
+71133348,26289144,5
+53030747,26289144,4
+whypretty,26289144,5
+2851223,26289144,5
+58079597,26289144,4
+88099642,26289144,5
+57276771,26289144,4
+79139853,26289144,5
+rubychen0611,26289144,5
+93492854,26289144,4
+lianbin,26289144,4
+misspill,26289144,5
+52728173,26289144,3
+27300376,26289144,3
+jocelyn710,26289144,4
+10750432,26289144,2
+missmoony,26289144,3
+leapmonth,26289144,3
+95979688,26289144,4
+62579424,26289144,4
+45401530,26289144,3
+43785559,26289144,4
+ttgrace1,26289144,5
+chenruijie1111,26289144,3
+wincy_5c,26289144,4
+mascotchen,26289144,5
+65638659,26289144,4
+82934335,26289144,4
+iamxiaoqi,26289144,2
+zhongguobaoan,26289144,4
+numbercoco,26289144,4
+54450707,26289144,4
+55641594,26289144,5
+hanachloe,26289144,3
+fang070553,26289144,3
+62030418,26289144,3
+ty2012,26289144,4
+Catherine_ne,26289144,4
+84250645,26289144,3
+45909249,26289144,3
+sakurakim,26289144,4
+102823475,26289144,5
+52156735,26289144,4
+3401236,26289144,3
+53941514,26289144,4
+66467703,26289144,4
+52977562,26289144,2
+lionhere0808,26289144,3
+greenlifehi,26289144,4
+74512782,26289144,5
+jiangxuan430,26289144,3
+67752944,26289144,4
+VerNadette,26289144,3
+81363115,26289144,3
+60936574,26289144,5
+114412044,26289144,3
+1590523,26289144,3
+zhuyuying,26289144,4
+Na0mi,26289144,4
+ellencc,26289144,5
+msuper,26289144,4
+4109920,26289144,5
+42274147,26289144,4
+47274200,26289144,3
+jmn_white,26289144,4
+xiezhenyu,26289144,4
+ArwenZhang,26289144,4
+128320836,26289144,5
+36575109,26289144,3
+50876794,26289144,4
+nonowhy,26289144,5
+1412545,26289144,3
+yisideta,26289144,1
+MatinetHP,26289144,3
+1519013,26289144,5
+iGatsby,26289144,3
+121486273,26289144,5
+59979647,26289144,4
+59005410,26289144,3
+4872425,26289144,4
+64223729,26289144,4
+115605628,26289144,5
+hawaiii,26289144,4
+54896584,26289144,4
+61599926,26289144,4
+54623477,26289144,3
+3477296,26289144,4
+4218644,26289144,3
+42889609,26289144,4
+53909997,26289144,5
+75570117,26289144,5
+s1269304716,26289144,4
+SharonShining,26289144,4
+98143301,26289144,4
+119911226,26289144,3
+51361369,26289144,4
+laneddy,26289144,3
+63644333,26289144,4
+2976553,26289144,3
+81003605,26289144,5
+mmtete,26289144,3
+114422467,26289144,5
+115164997,26289144,-1
+82760754,26289144,5
+60988503,26289144,5
+127320783,26289144,5
+bonniebluesky,26289144,5
+124007898,26289144,4
+43907604,26289144,4
+120556762,26289144,4
+76187253,26289144,3
+57250543,26289144,3
+127334146,26289144,2
+tucaomalisu,26289144,4
+45231026,26289144,5
+edgeyeung,26289144,5
+summer0323,26289144,4
+57590168,26289144,3
+lasiahaitang,26289144,5
+4154813,26289144,5
+FerrariCake,26289144,4
+51364758,26289144,5
+xd0812,26289144,4
+26538637,26289144,5
+SZH19920707,26289144,4
+momoko_huang,26289144,4
+48051436,26289144,4
+54650764,26289144,4
+jollykudo,26289144,4
+33445354,26289144,5
+tmz1127,26289144,4
+sumgreen,26289144,4
+61683576,26289144,4
+Strangefamiliar,26289144,4
+1519050,26289144,4
+orangill,26289144,5
+kazuha,26289144,4
+44633309,26289144,4
+withoutbe,26289144,4
+61042051,26289144,5
+75971596,26289144,4
+55683912,26289144,4
+SoyQueenaTse,26289144,3
+87988157,26289144,3
+128221638,26289144,3
+45686083,26289144,4
+2995739,26289144,4
+56676061,26289144,4
+65873693,26289144,4
+liusuer,26289144,5
+88320086,26289144,5
+40067937,26289144,4
+88583473,26289144,4
+akiliapple,26289144,5
+65127956,26289144,3
+60943644,26289144,5
+73478164,26289144,3
+83951072,26289144,5
+83317166,26289144,-1
+92444618,26289144,3
+48158663,26289144,4
+45167634,26289144,5
+76893393,26289144,5
+psychycokie,26289144,4
+6440487,26289144,5
+34452283,26289144,5
+icefishe,26289144,4
+130654032,26289144,4
+65125200,26289144,5
+65125200,26289144,5
+1392037,26289144,5
+hanuit,26289144,4
+55983243,26289144,4
+opheliafeeling,26289144,4
+52956090,26289144,4
+emmafish,26289144,3
+126189333,26289144,4
+42691855,26289144,4
+wangshengyang,26289144,4
+57534338,26289144,5
+deviltom,26289144,4
+enberry,26289144,4
+bread.H,26289144,3
+janewuyajing,26289144,4
+lushrene,26289144,3
+52179569,26289144,4
+alexhj,26289144,4
+75737770,26289144,3
+LynetteDong,26289144,5
+3974458,26289144,3
+summer712,26289144,5
+71133496,26289144,4
+74060146,26289144,3
+76872047,26289144,4
+74523158,26289144,4
+56070301,26289144,4
+4742366,26289144,4
+89108079,26289144,-1
+115467690,26289144,3
+129152031,26289144,3
+43471974,26289144,5
+58605628,26289144,5
+heweizhi,26289144,3
+bigsb,26289144,4
+3816221,26289144,4
+lauriexue,26289144,5
+46881075,26289144,4
+57465277,26289144,4
+46120245,26289144,4
+jinjingjing,26289144,4
+10724372,26289144,4
+seanroadster,26289144,5
+45273631,26289144,5
+miss_moomo,26289144,3
+wh396011051,26289144,3
+chinesean,26289144,3
+90581117,26289144,5
+59909492,26289144,4
+3866651,26289144,5
+hvangwei,26289144,4
+57062689,26289144,3
+60961304,26289144,5
+phoebe_wo,26289144,3
+3010194,26289144,5
+50942013,26289144,2
+57445211,26289144,2
+123254320,26289144,5
+78474826,26289144,5
+39996045,26289144,3
+60318955,26289144,4
+15497319,26289144,4
+huanhuanyy,26289144,5
+zzqinxx,26289144,4
+nico.heng.Y,26289144,3
+66546390,26289144,4
+103251122,26289144,5
+68311938,26289144,4
+94248044,26289144,3
+3677612,26289144,4
+wendysunny,26289144,4
+64213876,26289144,5
+spaceli,26289144,5
+56855422,26289144,3
+44966819,26289144,3
+37345783,26289144,3
+coral1210,26289144,3
+3819480,26289144,5
+50829431,26289144,4
+66194404,26289144,5
+124107116,26289144,4
+socalled,26289144,4
+Mr-Sixty,26289144,5
+ryanchxl,26289144,4
+84109824,26289144,5
+wyqjdm123,26289144,4
+yixiujie,26289144,4
+56804902,26289144,5
+kivachu,26289144,3
+HugoVince,26289144,3
+32806317,26289144,3
+52684314,26289144,4
+abenoseimei,26289144,4
+50755752,26289144,4
+jieyi429,26289144,4
+48708306,26289144,4
+72296325,26289144,4
+45181987,26289144,4
+kildren2013,26289144,4
+Moqi,26289144,5
+1183756,26289144,5
+43925619,26289144,5
+bonnie_lee,26289144,4
+3179740,26289144,5
+lalalahm,26289144,4
+fengt,26289144,3
+chuxiangyuan,26289144,5
+58739148,26289144,4
+Live123,26289144,5
+cmisland,26289144,2
+53243920,26289144,-1
+122560765,26289144,1
+sophigrace,26289144,2
+tobekalorce,26289144,4
+36208276,26289144,3
+53733836,26289144,2
+52944653,26289144,1
+pisceanw,26289144,3
+lp12,26289144,5
+51417733,26289144,4
+51417733,26289144,4
+vincente,26289144,4
+liuqy,26289144,3
+57558926,26289144,4
+tinkertseng,26289144,3
+33540039,26289144,5
+am-gemini,26289144,4
+59334555,26289144,2
+69515899,26289144,5
+55617091,26289144,3
+51346784,26289144,5
+RivenZhong,26289144,4
+46901555,26289144,4
+3397020,26289144,5
+aquarelle12c,26289144,4
+steammoonsnow,26289144,-1
+longya,26289144,3
+53791984,26289144,4
+85080739,26289144,3
+81412709,26289144,5
+muyitangtang,26289144,5
+48997081,26289144,4
+4318512,26289144,4
+130531885,26289144,4
+2274906,26289144,5
+c2c3,26289144,5
+peRFect1012,26289144,4
+46982712,26289144,3
+38226162,26289144,4
+52521782,26289144,3
+91952258,26289144,5
+woodwool,26289144,4
+johnnyshen90,26289144,5
+yb7116163,26289144,4
+tobewith0216,26289144,4
+michel0110,26289144,5
+80848465,26289144,4
+101849853,26289144,4
+41403646,26289144,4
+78689113,26289144,3
+3487006,26289144,5
+56396911,26289144,3
+elephantjun,26289144,3
+57998290,26289144,3
+69320295,26289144,5
+bwldm,26289144,4
+3399239,26289144,-1
+52304138,26289144,5
+yueningxin,26289144,3
+3111516,26289144,4
+2728833,26289144,5
+65440660,26289144,4
+muzhizhanglang,26289144,4
+summerboom,26289144,4
+61910501,26289144,4
+77148874,26289144,5
+64005189,26289144,5
+34035451,26289144,5
+elci,26289144,5
+114321835,26289144,5
+114321835,26289144,5
+41205351,26289144,3
+universallo,26289144,3
+blablachen,26289144,5
+Jane-L,26289144,4
+93956744,26289144,4
+samhooxee,26289144,4
+50924648,26289144,5
+13375568,26289144,5
+74207607,26289144,1
+ddcchenfei,26289144,4
+2669000,26289144,4
+44574545,26289144,4
+59389607,26289144,3
+37037810,26289144,4
+73429716,26289144,5
+annseekgreen,26289144,3
+133082737,26289144,4
+51049860,26289144,3
+41684888,26289144,5
+1436107,26289144,3
+101992598,26289144,3
+islandsea,26289144,3
+34557052,26289144,4
+silence08,26289144,-1
+72932373,26289144,5
+132691826,26289144,5
+Sylein,26289144,3
+75723338,26289144,1
+42989054,26289144,2
+53857004,26289144,4
+loverwenzi22,26289144,4
+3070126,26289144,4
+129023984,26289144,4
+guonianle,26289144,4
+76818492,26289144,3
+monii,26289144,4
+65274866,26289144,3
+piangpiangpiang,26289144,4
+freddie,26289144,3
+95813529,26289144,5
+69125005,26289144,4
+aquqmarine,26289144,4
+48494718,26289144,4
+crazyfamily,26289144,5
+huanzai,26289144,4
+a-piao,26289144,2
+58116442,26289144,4
+73574149,26289144,3
+Marcoshan,26289144,4
+46906647,26289144,5
+41545017,26289144,5
+48850203,26289144,4
+63228338,26289144,4
+carmencoal,26289144,4
+chenxiliu,26289144,5
+ticky77,26289144,4
+2720332,26289144,4
+54782824,26289144,4
+niuxiaohei,26289144,4
+41511009,26289144,3
+71790709,26289144,2
+35499746,26289144,2
+nocturnetian,26289144,3
+54454841,26289144,4
+67941529,26289144,3
+2168969,26289144,4
+53243039,26289144,5
+42265536,26289144,5
+OnHsing,26289144,4
+67235309,26289144,5
+3709827,26289144,5
+3500195,26289144,5
+53106493,26289144,4
+xiaoranfang,26289144,4
+3663683,26289144,4
+80352249,26289144,5
+3850332,26289144,5
+QINGFENGDIEWU,26289144,4
+132217575,26289144,5
+47496531,26289144,4
+78608814,26289144,4
+43917006,26289144,-1
+gooddie29,26289144,3
+51791050,26289144,4
+ODODOD,26289144,3
+Tonoah,26289144,4
+51387684,26289144,4
+xxdehome,26289144,5
+shoolee,26289144,4
+4160484,26289144,3
+75268479,26289144,4
+45313223,26289144,4
+52712122,26289144,5
+3365504,26289144,5
+50073903,26289144,5
+48414248,26289144,5
+Pm_wanderlust,26289144,3
+bearwinner,26289144,5
+daisyq1015,26289144,3
+42781520,26289144,4
+Cycneverstop,26289144,4
+41138577,26289144,4
+26020799,26289144,5
+beaux,26289144,5
+90020843,26289144,5
+133080033,26289144,3
+2444430,26289144,3
+59285776,26289144,4
+69012682,26289144,-1
+AmberArch,26289144,4
+71497179,26289144,5
+47381919,26289144,5
+77235132,26289144,3
+49090392,26289144,4
+64473872,26289144,4
+bernadettttttte,26289144,1
+104265215,26289144,4
+65173505,26289144,2
+9823994,26289144,4
+leeeeeeeew,26289144,5
+Gothicone,26289144,3
+78666384,26289144,5
+melon618a,26289144,5
+39605411,26289144,3
+61839009,26289144,-1
+4734892,26289144,5
+1633981,26289144,3
+45266385,26289144,5
+24322539,26289144,3
+50508303,26289144,4
+34636317,26289144,5
+43991922,26289144,4
+doreen333,26289144,4
+rucic,26289144,5
+lizhm,26289144,5
+51365706,26289144,5
+iamamortal,26289144,4
+hiyami,26289144,3
+121365628,26289144,4
+41148862,26289144,3
+xinzaixinwai,26289144,4
+30919513,26289144,4
+65466052,26289144,4
+70595414,26289144,4
+65415488,26289144,5
+44436573,26289144,2
+122876646,26289144,3
+mrlp,26289144,3
+maoguer,26289144,4
+leungaom,26289144,4
+52392093,26289144,4
+88124263,26289144,4
+3442167,26289144,4
+56053205,26289144,3
+68480782,26289144,5
+54987396,26289144,3
+128849268,26289144,5
+betty5940,26289144,3
+124257806,26289144,4
+2403220,26289144,4
+menkoumahu,26289144,5
+62339561,26289144,4
+55480147,26289144,2
+LinuxPlusPlus,26289144,3
+misa11,26289144,4
+131751998,26289144,5
+erin-cl,26289144,4
+6539111,26289144,4
+xuhailong87,26289144,5
+3557042,26289144,4
+39613044,26289144,4
+46359852,26289144,5
+1450181,26289144,3
+66273636,26289144,5
+liuyujiabnu,26289144,4
+piupiuc,26289144,4
+66798898,26289144,5
+whatafday,26289144,4
+brison,26289144,4
+brison,26289144,4
+2610938,26289144,5
+DSFTEM_TANG,26289144,3
+huangzj09thu,26289144,4
+2724287,26289144,5
+32580795,26289144,4
+lianjin,26289144,4
+ganqianru,26289144,4
+pandoragbn,26289144,5
+levkimi,26289144,4
+xkiki,26289144,4
+56193837,26289144,4
+yomuxi,26289144,3
+27571749,26289144,3
+linjunzhe,26289144,3
+53197921,26289144,5
+panmen,26289144,4
+80914640,26289144,4
+37731857,26289144,4
+87057947,26289144,5
+commonwalker,26289144,3
+49500956,26289144,3
+58630530,26289144,5
+54604560,26289144,5
+nancyci,26289144,5
+leejinyu,26289144,5
+74463127,26289144,3
+qino,26289144,4
+51786434,26289144,4
+vince717,26289144,5
+sarahbob,26289144,5
+81158905,26289144,4
+zhoukan2017,26289144,4
+69572761,26289144,3
+53771308,26289144,3
+50667649,26289144,4
+2984029,26289144,5
+88206996,26289144,5
+40125031,26289144,3
+42069458,26289144,4
+45539899,26289144,4
+wyms33,26289144,5
+Luciferre,26289144,5
+somovie,26289144,4
+bobim,26289144,3
+hexin199012,26289144,3
+44908756,26289144,5
+8605018,26289144,3
+uujulin,26289144,4
+directorLOIS,26289144,3
+rokkumu,26289144,3
+jichuhood,26289144,4
+63538083,26289144,4
+58574173,26289144,3
+71814815,26289144,4
+82932461,26289144,4
+16954200,26289144,4
+3602431,26289144,3
+120538141,26289144,5
+49914426,26289144,4
+120929960,26289144,4
+tinybone,26289144,5
+69428143,26289144,5
+1339281,26289144,5
+63175477,26289144,4
+iriszhong,26289144,4
+64329208,26289144,4
+foreverwxin,26289144,4
+52951268,26289144,4
+iayunuo,26289144,5
+53220311,26289144,3
+75463946,26289144,4
+119670372,26289144,5
+59272250,26289144,4
+51653649,26289144,4
+83520827,26289144,3
+2191520,26289144,4
+102791213,26289144,4
+amaokk,26289144,4
+93113085,26289144,4
+51571830,26289144,5
+49971927,26289144,1
+2880913,26289144,3
+62979514,26289144,3
+xiaomengqiuyue,26289144,4
+75860030,26289144,4
+4002589,26289144,4
+52155953,26289144,5
+120334590,26289144,3
+Ronicalee,26289144,1
+Cherie.,26289144,2
+2287976,26289144,4
+76536277,26289144,-1
+sandlee1986,26289144,4
+21338461,26289144,4
+xiaodaoyang,26289144,3
+echo0307,26289144,4
+willydu,26289144,3
+48724979,26289144,1
+72292155,26289144,4
+37747347,26289144,4
+121998810,26289144,4
+xuqingkuang,26289144,2
+xiongmaoxiaoj,26289144,3
+leehow29,26289144,2
+kided,26289144,5
+63548568,26289144,3
+49324662,26289144,4
+biggrass,26289144,3
+tonypaopao,26289144,4
+Radia17,26289144,4
+1448932,26289144,3
+37382236,26289144,5
+echiechi,26289144,5
+60154972,26289144,1
+48973534,26289144,4
+53743236,26289144,4
+102014161,26289144,3
+120302342,26289144,4
+tintin_yu,26289144,5
+tintin_yu,26289144,5
+57244347,26289144,5
+39805563,26289144,5
+116054829,26289144,4
+51279827,26289144,4
+114530367,26289144,4
+34648606,26289144,4
+57879982,26289144,1
+105736560,26289144,3
+weicheng,26289144,4
+never-be-loser,26289144,4
+60688367,26289144,4
+43822211,26289144,3
+50180272,26289144,4
+44597595,26289144,4
+lamwithme,26289144,5
+43333688,26289144,3
+80276904,26289144,4
+15786448,26289144,5
+44244009,26289144,5
+83942613,26289144,5
+50213510,26289144,4
+34380581,26289144,3
+62423967,26289144,4
+Angel.Tracy,26289144,5
+16710269,26289144,5
+s13,26289144,5
+caojiang,26289144,4
+66572341,26289144,-1
+yvetterowe_away,26289144,3
+28313985,26289144,4
+66219107,26289144,4
+astroro,26289144,4
+douxiuwei,26289144,4
+74190059,26289144,5
+51425915,26289144,4
+131204343,26289144,3
+tm_lover,26289144,5
+boffe,26289144,3
+63620716,26289144,4
+68590483,26289144,4
+2436774,26289144,5
+4421543,26289144,5
+44971294,26289144,4
+behindlies,26289144,3
+129815517,26289144,4
+78377702,26289144,4
+58371683,26289144,3
+nevernice,26289144,4
+128405814,26289144,3
+Ryan-Z,26289144,3
+Aldephoe,26289144,4
+62635861,26289144,1
+97017536,26289144,4
+42781171,26289144,3
+Mdoudou,26289144,3
+50404815,26289144,4
+junylovejuny,26289144,4
+63976517,26289144,3
+octopusz,26289144,5
+3242374,26289144,4
+30198322,26289144,4
+83985284,26289144,1
+fairycastle,26289144,4
+15965977,26289144,5
+42360628,26289144,4
+45957514,26289144,4
+129764944,26289144,5
+cyeon,26289144,5
+pillbug,26289144,-1
+49277404,26289144,3
+mr0__0rabbit,26289144,4
+119240610,26289144,3
+89017979,26289144,5
+58949996,26289144,1
+35450002,26289144,4
+127365822,26289144,4
+huxiaotian,26289144,3
+66620515,26289144,4
+momodi,26289144,4
+momodi,26289144,4
+breezeY,26289144,4
+moliao,26289144,3
+43851694,26289144,4
+iampromise,26289144,5
+zf468930104,26289144,5
+nebulaxing,26289144,3
+116856151,26289144,4
+10162011,26289144,4
+rachelife930,26289144,3
+50493709,26289144,4
+47784827,26289144,4
+64368656,26289144,4
+57995045,26289144,3
+leeyo,26289144,4
+yzk2237084,26289144,4
+57215044,26289144,5
+yimianmian,26289144,5
+54679074,26289144,4
+82319086,26289144,4
+120954219,26289144,4
+53492986,26289144,2
+sumisumi,26289144,5
+48936071,26289144,5
+7997785,26289144,2
+hjaoxjl,26289144,5
+summertong,26289144,5
+foreveryoyo,26289144,3
+75621811,26289144,4
+82299258,26289144,4
+48935399,26289144,5
+69434820,26289144,4
+Hsummer,26289144,3
+122385818,26289144,4
+lihuashi,26289144,3
+34517933,26289144,5
+77731556,26289144,3
+32956098,26289144,3
+104312412,26289144,4
+54224245,26289144,3
+siyuquan,26289144,5
+54598939,26289144,5
+puyangxixu,26289144,4
+69673873,26289144,3
+50620883,26289144,3
+58536535,26289144,3
+ytt1990,26289144,4
+46370067,26289144,4
+33328418,26289144,3
+hanhuipsy,26289144,5
+sujinglu,26289144,4
+astroangel,26289144,2
+120084291,26289144,5
+48168032,26289144,4
+128469750,26289144,4
+yyq811,26289144,4
+1128775,26289144,5
+76466963,26289144,4
+DellaZ,26289144,4
+raising_dawn,26289144,3
+58170363,26289144,3
+mentholcris,26289144,-1
+68963965,26289144,4
+128616169,26289144,4
+xiaotianqing,26289144,5
+55771326,26289144,5
+64017906,26289144,5
+2610640,26289144,5
+1011787,26289144,3
+119062503,26289144,4
+78585148,26289144,5
+juju.d,26289144,4
+2453044,26289144,3
+36118700,26289144,3
+120625991,26289144,4
+127000408,26289144,5
+131081631,26289144,4
+zansheep,26289144,4
+yingyujiaoshi,26289144,5
+125362688,26289144,4
+44757253,26289144,4
+sisiliya,26289144,4
+88126173,26289144,3
+sevenVSseven,26289144,4
+mozi1233240,26289144,5
+58950299,26289144,4
+sandrapis,26289144,2
+2266030,26289144,4
+76261788,26289144,4
+57769803,26289144,2
+1200610,26289144,4
+nathan_R,26289144,5
+46540303,26289144,1
+helloldq,26289144,5
+40931757,26289144,3
+4553065,26289144,3
+40325078,26289144,5
+4527709,26289144,3
+47325319,26289144,3
+47591131,26289144,-1
+105908990,26289144,5
+58480998,26289144,3
+suijingjing,26289144,3
+67257851,26289144,5
+tangshundgar,26289144,5
+mr81,26289144,5
+towelcatryna,26289144,3
+68531336,26289144,3
+bbbonniechan,26289144,4
+85770162,26289144,4
+36458786,26289144,5
+2373335,26289144,4
+52309535,26289144,3
+52001200,26289144,3
+48604788,26289144,5
+130314342,26289144,5
+tedfan,26289144,4
+34848237,26289144,5
+77207422,26289144,4
+3531814,26289144,4
+90445661,26289144,5
+48673621,26289144,2
+51795855,26289144,4
+81444870,26289144,4
+iamyx0116,26289144,4
+103281873,26289144,2
+5899417,26289144,5
+52326027,26289144,4
+84396587,26289144,4
+bodyblue,26289144,4
+ArsenalCH,26289144,5
+cycana,26289144,4
+88877033,26289144,3
+rou3lives,26289144,4
+23255914,26289144,4
+ivy_713,26289144,5
+Chikomoumao,26289144,4
+oliverfish,26289144,4
+37105076,26289144,1
+loveajiang,26289144,4
+97250156,26289144,2
+55634065,26289144,4
+130564437,26289144,4
+42763704,26289144,3
+crab802,26289144,5
+55656322,26289144,2
+23853027,26289144,4
+49003393,26289144,4
+79934578,26289144,5
+48040831,26289144,4
+Showga,26289144,5
+ShinichiNinomi,26289144,5
+133043824,26289144,5
+answer0545716,26289144,3
+cissy_cissy,26289144,4
+43671403,26289144,5
+131197515,26289144,2
+kurobox,26289144,5
+73240882,26289144,5
+ecstasybird,26289144,4
+rickydang7,26289144,5
+3772203,26289144,4
+27037345,26289144,4
+51832513,26289144,5
+m2529,26289144,3
+pashplus,26289144,5
+49589129,26289144,5
+16965088,26289144,4
+76671934,26289144,4
+52493758,26289144,5
+132728475,26289144,4
+Elainezhang,26289144,4
+15121621,26289144,5
+hwx0807,26289144,3
+housecatch123,26289144,4
+67763944,26289144,3
+25977714,26289144,3
+ravinenoravine,26289144,4
+Chiyudeygt,26289144,3
+53264755,26289144,4
+xixi-0303,26289144,2
+miu921,26289144,5
+111965475,26289144,5
+56146022,26289144,3
+103998461,26289144,4
+silverrrr9142,26289144,4
+130568330,26289144,4
+Joyce_YY_,26289144,4
+59217273,26289144,4
+5666411,26289144,5
+ouyanggefei,26289144,5
+87935638,26289144,4
+59319272,26289144,4
+1865210,26289144,3
+fuzuyi,26289144,-1
+4354890,26289144,3
+fangyuan1987,26289144,5
+4540425,26289144,4
+else1104,26289144,4
+caucute,26289144,1
+49832249,26289144,3
+48922029,26289144,5
+zhuzx,26289144,4
+80082149,26289144,5
+treesun173,26289144,-1
+63502277,26289144,4
+49166988,26289144,2
+86253613,26289144,4
+li_tao,26289144,5
+54817318,26289144,4
+62790084,26289144,4
+supermagua,26289144,4
+zhaogyrain,26289144,5
+Rilakkkkkuma,26289144,5
+lynshian,26289144,4
+22043363,26289144,3
+dylanicious,26289144,3
+uPsKy01,26289144,5
+ddumplling,26289144,4
+chenxi0355,26289144,3
+128458151,26289144,5
+greenbeansand,26289144,4
+hikirres,26289144,3
+naschris,26289144,4
+61983960,26289144,5
+zoever,26289144,4
+feesle,26289144,4
+yjybibby,26289144,5
+cindychan89,26289144,4
+43809399,26289144,3
+60310098,26289144,4
+TeenageDream,26289144,4
+62641379,26289144,4
+rbhuanxiong,26289144,5
+B-B-B-Side,26289144,3
+yoeamber,26289144,3
+44976171,26289144,3
+yuyanlin,26289144,4
+60211180,26289144,4
+121736995,26289144,5
+mylucky1010,26289144,5
+fushushuailuoli,26289144,4
+122848107,26289144,3
+slipper003,26289144,3
+51083261,26289144,4
+46397487,26289144,2
+wakahoo,26289144,4
+3792249,26289144,4
+mirrorsx,26289144,3
+6407298,26289144,4
+63401093,26289144,5
+79542238,26289144,4
+27091040,26289144,5
+76414184,26289144,4
+40549768,26289144,5
+pxladx,26289144,4
+mollye,26289144,5
+liuzhusn,26289144,5
+100541029,26289144,4
+cymvip,26289144,5
+crazies,26289144,3
+sunchuan,26289144,5
+lululalalulu,26289144,5
+fayexu,26289144,5
+36452184,26289144,5
+70536128,26289144,4
+Jewon,26289144,4
+85369018,26289144,3
+xuli916,26289144,3
+82465483,26289144,4
+nomoremomo,26289144,-1
+pengnix,26289144,2
+a-zhu,26289144,4
+46423055,26289144,4
+1664251,26289144,2
+47649150,26289144,4
+50372208,26289144,4
+63254362,26289144,3
+kermy,26289144,5
+xiaoxiaozhihou,26289144,-1
+61312621,26289144,4
+xyy_1214,26289144,4
+stranger-7,26289144,3
+kalapigdogpig,26289144,3
+jelly0411,26289144,5
+51444963,26289144,5
+missuguys,26289144,4
+christna,26289144,5
+3280072,26289144,4
+75625714,26289144,2
+richer725,26289144,2
+3574648,26289144,4
+69844965,26289144,5
+onionzoooo,26289144,4
+doumeiyuou,26289144,4
+36208121,26289144,5
+70818335,26289144,5
+shmilyisf,26289144,4
+2291008,26289144,4
+56437151,26289144,4
+ahanciel,26289144,5
+90299967,26289144,4
+47674074,26289144,4
+TaTaxxxx,26289144,4
+SummerChai,26289144,4
+pawear,26289144,4
+mishi,26289144,5
+50159821,26289144,2
+80176061,26289144,3
+31616755,26289144,5
+76990067,26289144,4
+47368196,26289144,4
+47444356,26289144,4
+87949968,26289144,5
+120964759,26289144,4
+benbenmuxi,26289144,4
+2911617,26289144,3
+xcser,26289144,-1
+sixvivid,26289144,4
+65978599,26289144,3
+38412947,26289144,4
+1403754,26289144,4
+62868573,26289144,4
+103395389,26289144,3
+43989001,26289144,4
+Secretloveplace,26289144,5
+70984718,26289144,4
+denny.bean,26289144,4
+levycycca,26289144,3
+3831630,26289144,4
+2952598,26289144,5
+Holly810,26289144,2
+50204863,26289144,4
+3091791,26289144,4
+yellowcroaker,26289144,3
+happygar,26289144,5
+58734971,26289144,5
+39875217,26289144,4
+60685986,26289144,3
+36664715,26289144,4
+73931877,26289144,5
+54073244,26289144,-1
+67654909,26289144,4
+amychen124,26289144,5
+37810756,26289144,4
+cicilyting,26289144,5
+100396653,26289144,5
+Mint1031,26289144,3
+103629204,26289144,3
+doubleS,26289144,4
+69146144,26289144,4
+10038789,26289144,4
+yt0310,26289144,5
+redjar,26289144,3
+37914560,26289144,3
+4347027,26289144,4
+xmusicandy,26289144,3
+57773278,26289144,5
+65566265,26289144,3
+48542605,26289144,4
+ourpeerlesshero,26289144,4
+shumingray,26289144,4
+memor,26289144,4
+103909159,26289144,4
+likeonly7,26289144,4
+52254551,26289144,5
+yummy7713,26289144,4
+ya829,26289144,3
+131881210,26289144,4
+onlycee,26289144,3
+132869648,26289144,3
+amelie329,26289144,4
+muyeah,26289144,4
+62141852,26289144,4
+xixufu,26289144,4
+y1ngbb,26289144,4
+halfhalf,26289144,4
+l-snow,26289144,4
+mirahlee,26289144,3
+3413893,26289144,4
+82262295,26289144,3
+Phyrra,26289144,5
+44358201,26289144,3
+chenchang,26289144,5
+35297714,26289144,3
+SamuelYan,26289144,3
+53437976,26289144,4
+63089726,26289144,5
+50360912,26289144,4
+56314850,26289144,5
+sealyhere,26289144,4
+somiracle,26289144,3
+Kevin3,26289144,4
+z1901111,26289144,4
+AzuresongWarden,26289144,4
+2504247,26289144,4
+52122495,26289144,4
+mlac,26289144,4
+Hobbitimomo,26289144,5
+15724007,26289144,5
+2681017,26289144,4
+2544278,26289144,5
+CackleHan,26289144,4
+132809518,26289144,4
+allenyang7753,26289144,4
+52964714,26289144,5
+scaren,26289144,4
+75096112,26289144,5
+63314716,26289144,5
+reneesnow,26289144,4
+mrcandy,26289144,4
+125166919,26289144,4
+43909634,26289144,2
+stillm,26289144,4
+baby4inlove,26289144,4
+51658191,26289144,3
+jiang_feng_xiu,26289144,4
+49565536,26289144,-1
+67494271,26289144,4
+4519716,26289144,5
+caijin,26289144,4
+lstra,26289144,4
+50406569,26289144,2
+4636124,26289144,3
+4010903,26289144,4
+lwl8823,26289144,4
+cookiesssss,26289144,4
+50982372,26289144,5
+82233289,26289144,2
+Mizleave,26289144,4
+46876577,26289144,4
+3211870,26289144,4
+57157420,26289144,4
+alivevampire,26289144,4
+53503878,26289144,4
+67863438,26289144,4
+37596237,26289144,5
+49117698,26289144,5
+1586946,26289144,4
+happyness0828,26289144,4
+6873293,26289144,4
+61930984,26289144,5
+luluwings,26289144,5
+du215,26289144,3
+96142455,26289144,2
+1065431,26289144,5
+2007634,26289144,4
+Pinca,26289144,2
+phoebehsu,26289144,2
+queensmary,26289144,3
+52244996,26289144,4
+48474156,26289144,3
+sa1990,26289144,4
+58332166,26289144,4
+2902661,26289144,4
+84282668,26289144,5
+45935605,26289144,3
+58782901,26289144,5
+2964464,26289144,4
+ann912,26289144,2
+14341331,26289144,4
+1935319,26289144,5
+weipengcheng,26289144,4
+domire,26289144,4
+sokuuu,26289144,5
+vipan,26289144,5
+fjwjune,26289144,4
+71593445,26289144,4
+47388873,26289144,3
+75888884,26289144,4
+shadow-yao,26289144,5
+38291713,26289144,3
+makc,26289144,4
+dchaochao,26289144,4
+52515675,26289144,3
+49913221,26289144,5
+michaelfun,26289144,4
+kuangk,26289144,4
+52701456,26289144,3
+wanglinlin,26289144,4
+65289283,26289144,3
+paopaotang1990,26289144,3
+11630561,26289144,4
+129988582,26289144,4
+linxiaoyuan01,26289144,4
+65045632,26289144,4
+2106137,26289144,5
+gaopengyuan,26289144,2
+luanshijiaren,26289144,3
+65811043,26289144,4
+stellalula,26289144,3
+cutejack,26289144,3
+inearlysummer,26289144,4
+beijingsijia,26289144,4
+92674357,26289144,5
+vivizhang,26289144,5
+48593748,26289144,5
+snjjwb,26289144,4
+money_Sybil,26289144,4
+48102279,26289144,3
+43986418,26289144,4
+61173588,26289144,5
+36800266,26289144,5
+69171390,26289144,5
+48722381,26289144,4
+takarailia,26289144,3
+35086930,26289144,-1
+JIAXIAOQI,26289144,5
+pansydalloway,26289144,3
+36701150,26289144,4
+61059314,26289144,4
+54128700,26289144,4
+aaaaaaaaaaa,26289144,3
+seekis,26289144,3
+63213227,26289144,5
+maomao3644,26289144,5
+janeythai,26289144,4
+35106539,26289144,4
+henhenlove,26289144,3
+128759511,26289144,3
+53724452,26289144,3
+39863972,26289144,4
+72100141,26289144,3
+76600314,26289144,5
+63032514,26289144,4
+sunvforever,26289144,4
+3892140,26289144,4
+hippokun,26289144,3
+Trafalgar,26289144,5
+43827754,26289144,5
+Arielfar,26289144,4
+76479647,26289144,4
+Kyou_Kyou,26289144,4
+lucky498,26289144,4
+128580925,26289144,5
+csaver,26289144,5
+strawman81,26289144,4
+sunnianyu,26289144,4
+mirroree,26289144,4
+nymeria52,26289144,3
+79236036,26289144,3
+47504805,26289144,4
+65647916,26289144,3
+36687091,26289144,4
+sourirefish,26289144,4
+zhaihui,26289144,5
+snailnim,26289144,4
+75874484,26289144,5
+31915002,26289144,3
+124475849,26289144,5
+helloxiaoyan,26289144,4
+doris0924,26289144,4
+ohAnthea,26289144,4
+wfxs,26289144,3
+130396316,26289144,5
+leonardzhu,26289144,4
+imlyc,26289144,5
+luanjunyi,26289144,4
+49201790,26289144,5
+woainikakashi,26289144,4
+woainikakashi,26289144,4
+2420853,26289144,4
+71278523,26289144,4
+3375543,26289144,4
+68631195,26289144,4
+125800739,26289144,5
+2838141,26289144,4
+blackmeajump,26289144,5
+liukakakaka,26289144,5
+Pius,26289144,3
+101747870,26289144,3
+56444863,26289144,5
+45482089,26289144,3
+31421017,26289144,5
+huasajun,26289144,2
+53496053,26289144,2
+2616909,26289144,3
+mosneverland,26289144,5
+skysowe,26289144,4
+4108038,26289144,5
+4244492,26289144,3
+70856854,26289144,4
+4516843,26289144,4
+123832709,26289144,5
+freda_thx,26289144,4
+shuoying,26289144,3
+aeris511,26289144,4
+25752889,26289144,5
+23128103,26289144,5
+ooohhhrrr,26289144,4
+53362180,26289144,5
+4101720,26289144,4
+zlpEcho,26289144,4
+68023776,26289144,4
+51090157,26289144,4
+little_baby,26289144,4
+68738037,26289144,2
+amo-qiqiqiqiqi,26289144,3
+68952248,26289144,4
+eugenewilber,26289144,4
+44349376,26289144,4
+79073234,26289144,4
+daisyhantt,26289144,4
+69236289,26289144,3
+1482384,26289144,3
+aprilliusiyue,26289144,4
+62507198,26289144,3
+37412441,26289144,4
+wishwishwish,26289144,3
+64124840,26289144,1
+45834679,26289144,4
+73070893,26289144,4
+57968983,26289144,4
+susidai,26289144,3
+2110865,26289144,4
+2292568,26289144,4
+shumeiying,26289144,5
+zhouqianyun,26289144,4
+47218521,26289144,3
+starry_liu,26289144,3
+36360632,26289144,3
+85177696,26289144,5
+99686229,26289144,4
+41864108,26289144,4
+48396212,26289144,4
+62420384,26289144,4
+47045254,26289144,5
+53893558,26289144,4
+60038854,26289144,3
+JeffyT,26289144,4
+62741271,26289144,3
+47539887,26289144,5
+iamlotte,26289144,5
+4284376,26289144,5
+78763010,26289144,3
+zhengchengcheng,26289144,4
+blastfay,26289144,4
+3543290,26289144,5
+57014543,26289144,4
+bluetiger,26289144,3
+DearHuman,26289144,3
+83437516,26289144,4
+IANMUSHUNER,26289144,4
+39704115,26289144,4
+sofiso,26289144,4
+aprilray,26289144,4
+datudoudatudou,26289144,4
+Tigren,26289144,3
+liuxiaobamboo,26289144,5
+47745204,26289144,4
+25685225,26289144,4
+49294962,26289144,5
+45543286,26289144,2
+xgtmy95,26289144,4
+3242895,26289144,5
+szdd,26289144,3
+76602042,26289144,5
+57691329,26289144,3
+102776994,26289144,4
+iceleehom,26289144,3
+42785296,26289144,4
+63443426,26289144,4
+68796410,26289144,4
+eddy_charlie,26289144,3
+69692421,26289144,4
+48744613,26289144,5
+Ruoheng,26289144,2
+69930229,26289144,4
+49305517,26289144,2
+13634368,26289144,4
+50178831,26289144,5
+55898556,26289144,5
+119779832,26289144,4
+kongyan15,26289144,4
+16718050,26289144,5
+60105733,26289144,4
+90930244,26289144,4
+68653967,26289144,3
+94441801,26289144,5
+69680398,26289144,5
+102456387,26289144,5
+foryoungheart,26289144,5
+79407609,26289144,3
+66911642,26289144,3
+4132596,26289144,3
+49903431,26289144,3
+44196469,26289144,4
+49387929,26289144,4
+50963591,26289144,4
+131286609,26289144,4
+68771576,26289144,4
+seluti,26289144,4
+75812054,26289144,2
+76209433,26289144,3
+lvshuyip,26289144,4
+47608264,26289144,3
+132574736,26289144,4
+eternityc,26289144,4
+3276325,26289144,4
+49687167,26289144,4
+abelardmus,26289144,5
+49574001,26289144,4
+forest_desert,26289144,4
+HeyNanana,26289144,3
+xuhui880321gege,26289144,4
+xq03471022,26289144,5
+66512629,26289144,4
+5012885,26289144,5
+Doodledoodle,26289144,5
+78724440,26289144,3
+65054888,26289144,4
+woshishunv,26289144,3
+39014074,26289144,3
+SeaLionYouth,26289144,3
+littleadd,26289144,4
+83739647,26289144,4
+summerking23,26289144,3
+73057111,26289144,4
+celiaxiaowu,26289144,4
+102436486,26289144,4
+44209376,26289144,4
+2222740,26289144,5
+Hi_Five,26289144,5
+73959584,26289144,4
+52449324,26289144,5
+53080180,26289144,4
+2172840,26289144,4
+2267651,26289144,4
+3923443,26289144,4
+3867251,26289144,3
+3638194,26289144,4
+45436450,26289144,4
+81301720,26289144,4
+65364463,26289144,4
+liuyuxing,26289144,4
+changertebieer,26289144,4
+aloh3,26289144,4
+58992948,26289144,3
+Hellina,26289144,5
+93420965,26289144,4
+devillzhang,26289144,4
+74256621,26289144,4
+82463994,26289144,5
+37679562,26289144,4
+71566080,26289144,4
+superzoukang,26289144,1
+10562960,26289144,5
+LTLOVEMAYDAY,26289144,5
+4414323,26289144,4
+kiyono9,26289144,2
+40119554,26289144,4
+mmmisa,26289144,3
+82889509,26289144,5
+122101793,26289144,5
+54057694,26289144,5
+121402491,26289144,4
+133050138,26289144,4
+huihuiai1314,26289144,4
+bbl45,26289144,5
+9420677,26289144,5
+alivinlondonl,26289144,2
+dadafanhe,26289144,3
+49907411,26289144,3
+Cherry.Pluto,26289144,3
+49273431,26289144,4
+56767865,26289144,5
+maixiaobao,26289144,4
+56675868,26289144,5
+leafalone,26289144,4
+44599506,26289144,4
+34087859,26289144,3
+49953838,26289144,2
+lkk900518,26289144,5
+68906822,26289144,5
+lovefeather,26289144,5
+71808498,26289144,4
+64181731,26289144,3
+hwhollywu,26289144,4
+ringrose5719,26289144,4
+sunny57,26289144,5
+3683994,26289144,3
+llbreeze,26289144,3
+64599412,26289144,-1
+lemo4ever,26289144,5
+1859986,26289144,5
+49849512,26289144,4
+34682309,26289144,3
+83479704,26289144,5
+Q__,26289144,5
+52192679,26289144,2
+44188912,26289144,5
+2606816,26289144,4
+55392439,26289144,3
+74061535,26289144,4
+70794815,26289144,4
+magic90ni,26289144,5
+bluedestiny,26289144,3
+zoesun,26289144,4
+Ian-COD,26289144,5
+32798555,26289144,4
+znrpiggey,26289144,3
+khuntoria,26289144,4
+54008688,26289144,4
+45791353,26289144,5
+62954392,26289144,-1
+1495292,26289144,3
+51395326,26289144,3
+xiaolvtier,26289144,3
+47603027,26289144,5
+80075564,26289144,5
+40071327,26289144,5
+25588497,26289144,3
+yasonyyx,26289144,5
+64579754,26289144,4
+58206277,26289144,4
+4222235,26289144,4
+jiqn,26289144,4
+93724180,26289144,3
+chanelluo,26289144,4
+huoxingrice,26289144,5
+70043510,26289144,5
+chori,26289144,1
+mymimu,26289144,3
+69336085,26289144,4
+tinysean,26289144,4
+102803398,26289144,5
+43518138,26289144,4
+58041448,26289144,4
+47650145,26289144,4
+Amulp,26289144,4
+74799167,26289144,5
+6916157,26289144,5
+72223273,26289144,4
+52872697,26289144,4
+126741827,26289144,5
+58093736,26289144,5
+62436945,26289144,2
+43281124,26289144,4
+husteiraul,26289144,5
+xilouchen,26289144,3
+2056209,26289144,3
+43948755,26289144,4
+yimairen,26289144,5
+31949524,26289144,4
+52322539,26289144,3
+28363540,26289144,4
+70775632,26289144,4
+L0ve-zL,26289144,5
+62740578,26289144,3
+80808595,26289144,5
+34835392,26289144,4
+47903791,26289144,4
+zyx256,26289144,3
+58258651,26289144,4
+50689193,26289144,4
+3634287,26289144,4
+83309837,26289144,3
+39646702,26289144,4
+47841941,26289144,5
+xueshanfeitu,26289144,4
+62509398,26289144,4
+46121551,26289144,4
+68818444,26289144,5
+61060366,26289144,3
+29179639,26289144,4
+1536567,26289144,4
+aabbbcccc,26289144,4
+1509677,26289144,4
+47372422,26289144,4
+45097131,26289144,4
+3953340,26289144,4
+sufeiyu,26289144,4
+jane921111,26289144,3
+49141997,26289144,4
+75659998,26289144,3
+tingkelly,26289144,5
+wenjunlwj,26289144,4
+53892739,26289144,4
+41801093,26289144,4
+Bobbie13,26289144,5
+51018099,26289144,4
+132149696,26289144,3
+65461083,26289144,5
+69454898,26289144,4
+chenghu,26289144,5
+rayzhou,26289144,3
+52111107,26289144,5
+50927542,26289144,4
+47732306,26289144,5
+56008242,26289144,4
+veronicaz,26289144,4
+46929844,26289144,-1
+4320074,26289144,3
+imusiq,26289144,4
+1876785,26289144,4
+mufasaxu,26289144,4
+65830621,26289144,5
+ViviaChen,26289144,3
+54131572,26289144,5
+53167493,26289144,5
+3608735,26289144,5
+72288362,26289144,4
+53281566,26289144,5
+1390221,26289144,4
+11889754,26289144,3
+93858057,26289144,5
+121346678,26289144,4
+115583872,26289144,5
+97555786,26289144,4
+81812882,26289144,5
+41605259,26289144,4
+wanerly,26289144,4
+36008103,26289144,4
+132855989,26289144,4
+26490137,26289144,5
+69328473,26289144,4
+45619712,26289144,4
+70534283,26289144,3
+60500701,26289144,4
+3867957,26289144,4
+flyuki,26289144,5
+71624097,26289144,3
+87026553,26289144,5
+hiolivia,26289144,5
+zhangaozhan,26289144,4
+sybrianrock,26289144,4
+76617093,26289144,3
+booboo777,26289144,3
+77145306,26289144,3
+66426220,26289144,4
+61554035,26289144,5
+28169414,26289144,5
+45383601,26289144,4
+axuan,26289144,1
+38515582,26289144,4
+kayxuan,26289144,5
+126685684,26289144,5
+52970998,26289144,4
+jinkim,26289144,4
+62943026,26289144,3
+wanghaoze,26289144,3
+53223307,26289144,5
+ashley.zl,26289144,4
+42927631,26289144,5
+bbbbazingaaa,26289144,4
+43612401,26289144,4
+68855957,26289144,5
+25698186,26289144,5
+59805346,26289144,4
+bloodleopard,26289144,4
+mr.slow,26289144,4
+zzzxy,26289144,5
+3529058,26289144,4
+anita411,26289144,4
+Dumbwaystodi,26289144,5
+kiara1988,26289144,3
+2205092,26289144,1
+51546106,26289144,5
+67048173,26289144,5
+doubandayima,26289144,3
+48713524,26289144,4
+lynxnewyork,26289144,4
+115974574,26289144,5
+im-zhuang,26289144,-1
+35705031,26289144,4
+gaodashanghai,26289144,5
+3725966,26289144,4
+pplife,26289144,4
+miya411,26289144,3
+132820826,26289144,4
+pettydog,26289144,4
+70328585,26289144,4
+49681222,26289144,4
+1369121,26289144,4
+20339677,26289144,4
+zdq108,26289144,5
+71625816,26289144,5
+3928793,26289144,3
+7605327,26289144,4
+brightwsx,26289144,5
+wuxubo,26289144,5
+12227939,26289144,5
+80839618,26289144,4
+78263023,26289144,4
+42707637,26289144,3
+Hanakoko,26289144,2
+mr.glasses,26289144,3
+122633809,26289144,4
+81731050,26289144,4
+87937161,26289144,5
+here-for-you,26289144,4
+4597054,26289144,4
+65980750,26289144,5
+52167842,26289144,5
+dkjune,26289144,2
+43554949,26289144,4
+63165429,26289144,4
+46064508,26289144,4
+46935605,26289144,4
+102042212,26289144,4
+liujintong,26289144,5
+joyceyujian,26289144,3
+xiaorujuly,26289144,4
+HA_bamboo,26289144,3
+sxy921026,26289144,3
+43778462,26289144,-1
+ninalan911,26289144,5
+35605638,26289144,4
+2903172,26289144,5
+fantasticmybaby,26289144,5
+80305341,26289144,3
+57982992,26289144,4
+106176013,26289144,4
+63343874,26289144,5
+55455640,26289144,3
+64919115,26289144,5
+markiexi,26289144,4
+zuoxiaoer,26289144,5
+63090822,26289144,3
+76692022,26289144,4
+76692022,26289144,4
+leexiaoxiao,26289144,4
+43114187,26289144,4
+49559696,26289144,4
+45357966,26289144,5
+4444603,26289144,4
+39738167,26289144,4
+maruoama,26289144,3
+77280863,26289144,4
+26889158,26289144,4
+DominoRecording,26289144,4
+1833105,26289144,4
+103105403,26289144,4
+75809533,26289144,2
+37381135,26289144,4
+83246310,26289144,5
+74654705,26289144,4
+78632762,26289144,5
+onidalee,26289144,5
+2329944,26289144,4
+4388033,26289144,3
+48977391,26289144,3
+45406348,26289144,4
+74573393,26289144,3
+Hannia,26289144,4
+69808734,26289144,3
+Ertu,26289144,4
+43320017,26289144,3
+summerul,26289144,5
+59596686,26289144,5
+82232966,26289144,3
+46209502,26289144,4
+67878115,26289144,4
+xiaoqi526,26289144,3
+4867856,26289144,5
+MaisieX,26289144,5
+GianfrancoLee,26289144,4
+youwanttobe,26289144,4
+solwe,26289144,5
+52639817,26289144,4
+liuzhuang,26289144,4
+63315790,26289144,4
+47750593,26289144,4
+n0waTer,26289144,5
+Aureisjoke,26289144,3
+48796562,26289144,5
+35099655,26289144,4
+93091639,26289144,3
+shuimudeyu1990,26289144,4
+freezinggl,26289144,2
+53240953,26289144,3
+lillyvan,26289144,4
+sweetsss,26289144,4
+4503655,26289144,4
+wendy-tsai,26289144,4
+53585857,26289144,4
+calypso29,26289144,3
+115377494,26289144,5
+3741660,26289144,4
+4847438,26289144,5
+nnod,26289144,4
+sophiefeifei,26289144,-1
+121319256,26289144,5
+49072248,26289144,4
+117808564,26289144,3
+howaiyan,26289144,4
+57210818,26289144,4
+41403989,26289144,3
+cheergoll,26289144,3
+49538269,26289144,4
+3863337,26289144,5
+33149603,26289144,4
+127529044,26289144,5
+130716428,26289144,5
+47154651,26289144,5
+fsdyf,26289144,4
+49366823,26289144,4
+5219319,26289144,4
+100324027,26289144,5
+4170268,26289144,4
+1809252,26289144,5
+53223737,26289144,5
+48864646,26289144,4
+50111172,26289144,3
+61093612,26289144,4
+88151197,26289144,3
+dreamtalee,26289144,4
+rachelyi23,26289144,4
+mikadu,26289144,5
+130920695,26289144,4
+45795420,26289144,5
+qiufen,26289144,4
+lovesoweak,26289144,5
+65664176,26289144,5
+43833588,26289144,3
+68285010,26289144,-1
+51383637,26289144,5
+daizhongjie,26289144,3
+dearajiu,26289144,5
+RRspace,26289144,3
+4241997,26289144,5
+127029651,26289144,5
+51141120,26289144,3
+58142666,26289144,5
+35367131,26289144,4
+44758413,26289144,3
+4801513,26289144,3
+poochai,26289144,3
+kbs---ak,26289144,3
+63876321,26289144,1
+49891918,26289144,5
+Jerry-feng,26289144,4
+sunshineW,26289144,4
+xixixiloowho,26289144,2
+47604910,26289144,4
+43260991,26289144,5
+29536418,26289144,4
+42670122,26289144,5
+121986921,26289144,5
+74778874,26289144,4
+59854397,26289144,4
+53099197,26289144,4
+38652742,26289144,4
+starry_ripple,26289144,5
+gdccyylin,26289144,5
+75869760,26289144,5
+CNToria617,26289144,4
+51879316,26289144,5
+131058118,26289144,3
+loooli,26289144,4
+mathilda_le,26289144,4
+63571575,26289144,5
+slshukui,26289144,-1
+64522340,26289144,3
+23599955,26289144,4
+56128139,26289144,5
+75485763,26289144,5
+57978536,26289144,5
+apologizeqin,26289144,1
+3006618,26289144,3
+2376645,26289144,3
+MUMU_7,26289144,4
+63565039,26289144,5
+vior0724,26289144,5
+1895030,26289144,4
+ellenbell,26289144,-1
+53740528,26289144,-1
+1791766,26289144,5
+41993830,26289144,5
+riyueming024,26289144,4
+34591792,26289144,5
+63575195,26289144,4
+126731826,26289144,4
+129158063,26289144,5
+109347674,26289144,4
+2842455,26289144,3
+wangyi2011,26289144,3
+53669377,26289144,4
+102687238,26289144,4
+52246931,26289144,4
+54877038,26289144,4
+53656219,26289144,3
+57815451,26289144,4
+languheshang,26289144,3
+122603381,26289144,1
+george808,26289144,4
+miffi,26289144,5
+102749538,26289144,4
+54863567,26289144,5
+canhongfw,26289144,4
+64012826,26289144,4
+64273735,26289144,2
+72387570,26289144,1
+huayuan619,26289144,5
+81364422,26289144,4
+127508395,26289144,5
+heathersiner,26289144,2
+zhangtiexun,26289144,5
+53395141,26289144,4
+93240060,26289144,5
+35055098,26289144,5
+justinwu0129,26289144,3
+119833132,26289144,5
+115476786,26289144,5
+quite-yacca,26289144,4
+48958931,26289144,5
+57122429,26289144,4
+48866416,26289144,3
+126911678,26289144,2
+121567803,26289144,3
+94168906,26289144,4
+chesterchoi,26289144,4
+Calvin1113,26289144,5
+risingfred,26289144,5
+WHF_Jabel,26289144,5
+littlepussy_wf,26289144,-1
+boyeen,26289144,3
+hanxiao1874,26289144,5
+34704440,26289144,4
+77162594,26289144,5
+59345564,26289144,3
+smileliao,26289144,5
+wenteng1988,26289144,4
+79342106,26289144,4
+125176810,26289144,3
+51195956,26289144,4
+nianshaozi,26289144,5
+127319320,26289144,5
+47273453,26289144,4
+suika1986,26289144,4
+57366467,26289144,5
+50833058,26289144,4
+82479868,26289144,5
+subeishaonian,26289144,4
+yuebing123,26289144,4
+46416150,26289144,5
+54823137,26289144,3
+lenelavigne,26289144,4
+4842930,26289144,4
+70094249,26289144,4
+willness,26289144,5
+74955987,26289144,4
+yliu,26289144,4
+127085106,26289144,4
+64713233,26289144,3
+fiona721,26289144,5
+70536178,26289144,5
+43125642,26289144,4
+qingjuesikong,26289144,4
+aegeanguo,26289144,5
+ppmy,26289144,4
+53612447,26289144,4
+B.angus,26289144,4
+63757609,26289144,4
+76534851,26289144,5
+41967416,26289144,4
+dosky,26289144,4
+14358522,26289144,5
+ysatis.wan,26289144,-1
+littlehorse,26289144,5
+63681662,26289144,4
+zxlannette,26289144,4
+47716640,26289144,4
+63618538,26289144,4
+43467821,26289144,4
+46983241,26289144,4
+62517955,26289144,-1
+autumnfly,26289144,4
+50630189,26289144,4
+euphoriacy,26289144,1
+54811577,26289144,5
+takacmon,26289144,4
+yoyoya,26289144,3
+qiaowu2,26289144,4
+andoze,26289144,4
+4593781,26289144,3
+68058220,26289144,1
+53667913,26289144,3
+florian,26289144,4
+39247767,26289144,4
+3421677,26289144,3
+supertrf,26289144,4
+duoyuxiong,26289144,4
+21069193,26289144,3
+dwyk500,26289144,4
+51100351,26289144,4
+babykays,26289144,5
+raintree00,26289144,3
+34826304,26289144,3
+92999358,26289144,4
+121118830,26289144,4
+1116703,26289144,4
+kissfragrancy,26289144,5
+51303010,26289144,4
+tuzixiansheng,26289144,5
+FindingKnightly,26289144,4
+podolski,26289144,3
+121398687,26289144,3
+57562576,26289144,4
+kaizoo,26289144,4
+68092386,26289144,5
+41968895,26289144,4
+58929848,26289144,4
+65924418,26289144,2
+59186096,26289144,3
+42884654,26289144,4
+quzheng1986,26289144,3
+starrynight9,26289144,5
+75581591,26289144,4
+lenairis,26289144,3
+48052337,26289144,4
+3042073,26289144,4
+se7xn,26289144,3
+alvivi,26289144,4
+56660352,26289144,5
+115631804,26289144,5
+65331621,26289144,4
+26633445,26289144,3
+2946787,26289144,2
+47065864,26289144,2
+52846746,26289144,3
+RebeccaRan,26289144,4
+61582904,26289144,4
+Alice.P,26289144,3
+lost902,26289144,4
+57906673,26289144,5
+taoqianmo,26289144,4
+121644279,26289144,5
+48007103,26289144,5
+47887493,26289144,5
+131274128,26289144,4
+130122841,26289144,4
+76199793,26289144,3
+57476701,26289144,4
+54990235,26289144,4
+44861342,26289144,4
+81080319,26289144,5
+75475788,26289144,5
+indieluster,26289144,4
+67503021,26289144,3
+2986383,26289144,2
+50886291,26289144,4
+34385255,26289144,3
+carl1988,26289144,4
+49884893,26289144,4
+29839643,26289144,4
+debrah,26289144,3
+thehours_lxx,26289144,3
+52538749,26289144,3
+61514355,26289144,3
+53911150,26289144,4
+qinqinein,26289144,4
+2696668,26289144,5
+zdoudou,26289144,3
+zhchtcm,26289144,5
+geminer,26289144,-1
+63377431,26289144,1
+33016220,26289144,5
+56385781,26289144,4
+68318202,26289144,5
+hyykkb,26289144,5
+2761282,26289144,5
+chenyj,26289144,4
+60161365,26289144,4
+viennall,26289144,4
+yangqihang,26289144,4
+50281371,26289144,5
+103601580,26289144,5
+4241910,26289144,4
+88174425,26289144,3
+badapple,26289144,5
+flowermoi,26289144,5
+49893647,26289144,4
+45173770,26289144,5
+49552465,26289144,3
+hellowind,26289144,3
+97936654,26289144,4
+49833321,26289144,4
+53880577,26289144,4
+66201314,26289144,5
+wangliran,26289144,4
+CAYmomo,26289144,3
+54035553,26289144,5
+36435105,26289144,3
+josiezs,26289144,4
+60583642,26289144,4
+J_Seraph,26289144,3
+120981329,26289144,5
+stillfyou,26289144,4
+45851871,26289144,4
+103060200,26289144,1
+69481682,26289144,3
+may0510,26289144,4
+2081187,26289144,3
+jiayi6616,26289144,3
+41947526,26289144,3
+zyr920924,26289144,5
+cyberpwz2002,26289144,5
+small_matty,26289144,4
+alks,26289144,4
+sunnymoon1019,26289144,3
+mxmxmxxx,26289144,5
+STT810,26289144,4
+thehorizon,26289144,4
+eleven0824,26289144,4
+Inkfearless,26289144,3
+qincaiboai,26289144,4
+51188157,26289144,4
+48690334,26289144,4
+61474869,26289144,4
+68776997,26289144,3
+joy21278,26289144,-1
+easyfeel,26289144,4
+63797161,26289144,5
+116539336,26289144,4
+53092429,26289144,4
+131626464,26289144,5
+nuannuan827,26289144,4
+chenbala,26289144,3
+86010283,26289144,5
+53854833,26289144,3
+62502924,26289144,5
+93377221,26289144,4
+77313579,26289144,5
+47974584,26289144,4
+54145491,26289144,4
+49798911,26289144,5
+49168882,26289144,5
+xiaojia86,26289144,4
+63812165,26289144,4
+summereve,26289144,4
+64498251,26289144,5
+31462086,26289144,5
+51237240,26289144,5
+misszhao7,26289144,3
+sherry0425,26289144,4
+97729106,26289144,5
+benbenzh,26289144,4
+2394490,26289144,3
+59655331,26289144,5
+2144303,26289144,4
+115686371,26289144,4
+66112076,26289144,3
+49505291,26289144,4
+58192083,26289144,3
+54096060,26289144,4
+liaojinzi,26289144,3
+55880604,26289144,3
+57477853,26289144,5
+ankavs,26289144,3
+v193333,26289144,5
+tmacjunwei,26289144,2
+theyear,26289144,5
+77576075,26289144,5
+53273650,26289144,3
+lnzyn,26289144,4
+54173340,26289144,5
+4624578,26289144,4
+4624578,26289144,4
+jeanne68240109,26289144,4
+Iacocca,26289144,4
+58287928,26289144,3
+45099103,26289144,5
+55354674,26289144,4
+53094126,26289144,5
+119615925,26289144,3
+48826228,26289144,5
+42570419,26289144,5
+64907526,26289144,4
+63893254,26289144,5
+88260020,26289144,4
+liai,26289144,3
+xjrm,26289144,5
+1785087,26289144,3
+youyang1991,26289144,5
+71166963,26289144,1
+122848551,26289144,5
+51430921,26289144,5
+58419588,26289144,5
+46267341,26289144,1
+71332667,26289144,4
+120736500,26289144,4
+53470947,26289144,4
+Pora,26289144,5
+corly13,26289144,5
+17336273,26289144,-1
+62999603,26289144,3
+kingszar,26289144,4
+jiaozhenshayne,26289144,5
+65692300,26289144,5
+jingYO1130,26289144,5
+51439533,26289144,5
+dodoo7,26289144,4
+24936156,26289144,4
+N-CHOU,26289144,-1
+2588629,26289144,5
+iatihs,26289144,2
+49330983,26289144,5
+zuozuotongzhi,26289144,4
+78626733,26289144,3
+75251795,26289144,4
+indoors,26289144,3
+64403814,26289144,4
+132157747,26289144,4
+tarcy1027,26289144,5
+gardeniasky,26289144,3
+58272176,26289144,2
+peoplehlj,26289144,5
+ekamiao,26289144,4
+langyalan,26289144,5
+55968793,26289144,4
+66973670,26289144,3
+64497662,26289144,5
+53492499,26289144,5
+yanyu_r,26289144,2
+49294645,26289144,4
+15286071,26289144,5
+dandiallen,26289144,5
+27617505,26289144,4
+45448375,26289144,3
+evara77,26289144,5
+orchild0517,26289144,4
+laozo,26289144,4
+46891725,26289144,4
+54753971,26289144,3
+maryshirley,26289144,3
+Goudy,26289144,4
+81939398,26289144,5
+59370551,26289144,4
+Yuz-day,26289144,3
+69914528,26289144,3
+doubannini,26289144,5
+56909414,26289144,-1
+werder100,26289144,3
+51276928,26289144,3
+43901070,26289144,5
+130502520,26289144,5
+2266577,26289144,4
+56200146,26289144,5
+yue9,26289144,4
+53027192,26289144,4
+46054766,26289144,-1
+63843241,26289144,4
+51608559,26289144,4
+yunzhonghe_xd,26289144,4
+luvndisaster,26289144,5
+ohchara,26289144,5
+51415587,26289144,4
+xieyixi,26289144,4
+114351262,26289144,2
+evelyn_only,26289144,2
+57774434,26289144,3
+60915070,26289144,4
+45607579,26289144,4
+behindme,26289144,4
+130696206,26289144,5
+44855100,26289144,3
+63730167,26289144,4
+41010757,26289144,5
+46066560,26289144,5
+kk_22,26289144,5
+2672610,26289144,4
+47458523,26289144,3
+MariahC,26289144,4
+gnlee,26289144,5
+wjjjzz,26289144,5
+2592298,26289144,5
+chenyanluli,26289144,4
+louiseYR,26289144,4
+52146606,26289144,4
+89993946,26289144,5
+4086708,26289144,5
+rip626,26289144,4
+60181393,26289144,2
+104878352,26289144,5
+53787602,26289144,3
+curingresidence,26289144,4
+4157643,26289144,5
+ruanshusheng,26289144,4
+65934810,26289144,5
+smaosta,26289144,5
+81832804,26289144,4
+56164426,26289144,4
+132780949,26289144,3
+49043955,26289144,4
+50898018,26289144,4
+45020999,26289144,4
+laerngiv,26289144,5
+55849765,26289144,3
+59367965,26289144,3
+69126111,26289144,4
+59250796,26289144,5
+since1990bymama,26289144,-1
+2646633,26289144,5
+ymj1116,26289144,4
+94886676,26289144,3
+48380421,26289144,4
+32541723,26289144,5
+1919476,26289144,3
+51964381,26289144,4
+80984820,26289144,4
+1021139,26289144,5
+4523412,26289144,5
+huangmou,26289144,5
+43807777,26289144,4
+52896143,26289144,3
+ashuimmer,26289144,4
+53734415,26289144,3
+40254571,26289144,4
+42662264,26289144,3
+ZLJde5951,26289144,4
+53905800,26289144,3
+131557392,26289144,5
+47251661,26289144,1
+saintdump,26289144,3
+11758187,26289144,5
+PuPuY,26289144,5
+46368088,26289144,4
+49693965,26289144,4
+52641872,26289144,2
+121480587,26289144,4
+39668757,26289144,4
+74520684,26289144,4
+stingroger,26289144,4
+47959962,26289144,4
+hulalachump,26289144,4
+131538725,26289144,5
+chui13,26289144,4
+92361571,26289144,4
+27617970,26289144,4
+55984415,26289144,4
+48849197,26289144,4
+63874494,26289144,3
+62986694,26289144,4
+69049149,26289144,4
+83092740,26289144,4
+121873218,26289144,5
+62788376,26289144,4
+30649428,26289144,3
+71930901,26289144,5
+88121855,26289144,5
+jieup,26289144,4
+44369382,26289144,5
+78656769,26289144,5
+75651392,26289144,3
+coolwd,26289144,4
+54125438,26289144,4
+102037614,26289144,4
+LoveRaul77,26289144,2
+echowangxw,26289144,3
+49445419,26289144,4
+greenbeast,26289144,4
+33933254,26289144,4
+52273545,26289144,4
+stevecarell,26289144,4
+edininja,26289144,5
+91957409,26289144,4
+lovewx3,26289144,4
+mrsvan,26289144,3
+38420639,26289144,5
+58199841,26289144,4
+53868679,26289144,4
+truant,26289144,5
+vvvvvvvvvvvvI,26289144,4
+55942870,26289144,4
+snailzoey,26289144,5
+2819583,26289144,5
+porvinci,26289144,4
+musica,26289144,2
+isayan,26289144,5
+joanna726,26289144,5
+50527952,26289144,3
+64245643,26289144,3
+73873085,26289144,5
+doace,26289144,3
+56104621,26289144,3
+46588781,26289144,4
+48823676,26289144,4
+fishzzm,26289144,1
+2187534,26289144,5
+22203596,26289144,4
+cyjoy,26289144,5
+116652565,26289144,4
+danielgillies,26289144,1
+babylucky,26289144,5
+124563320,26289144,5
+lonelymile,26289144,5
+littlebreeze,26289144,5
+85035571,26289144,3
+27518977,26289144,4
+51908097,26289144,5
+129435920,26289144,2
+tjzoey,26289144,3
+46354029,26289144,4
+81051190,26289144,5
+64796716,26289144,3
+65458998,26289144,4
+idealtemple,26289144,4
+vannnns,26289144,2
+81180683,26289144,3
+81180683,26289144,3
+AmySpecial,26289144,3
+goldpoppy,26289144,4
+2202810,26289144,3
+4340099,26289144,3
+72260700,26289144,5
+feibaobei,26289144,3
+tibet412,26289144,4
+60506014,26289144,4
+47415911,26289144,4
+128641812,26289144,4
+39315197,26289144,3
+63934272,26289144,5
+27090335,26289144,4
+60981159,26289144,2
+possion007,26289144,4
+angelazha,26289144,3
+Amy-Winter,26289144,4
+Farewellxxx,26289144,4
+1584930,26289144,4
+danmemory,26289144,2
+tonyuanChen,26289144,3
+73495060,26289144,4
+zeroooccc,26289144,5
+4368925,26289144,4
+3730071,26289144,4
+fanzhenNO1,26289144,3
+sissybaby,26289144,4
+81410286,26289144,5
+4193022,26289144,5
+43059614,26289144,4
+kicker10,26289144,4
+68703413,26289144,4
+wangguobin,26289144,5
+kbbean620,26289144,4
+74608127,26289144,4
+93299177,26289144,4
+43671696,26289144,2
+46348903,26289144,3
+53411965,26289144,5
+53411965,26289144,5
+Yiemao,26289144,5
+125053842,26289144,5
+1175153,26289144,4
+121533229,26289144,5
+125992098,26289144,5
+54757893,26289144,3
+frankxumomo,26289144,3
+1359081,26289144,4
+vivvvvvchan,26289144,2
+summer_waiting,26289144,4
+64239272,26289144,4
+3845322,26289144,4
+37753012,26289144,5
+hunxiyi,26289144,4
+28077686,26289144,4
+121305318,26289144,1
+dingxiaotu1990,26289144,4
+36667235,26289144,4
+132357464,26289144,3
+aimizu,26289144,4
+Septembres,26289144,4
+41627268,26289144,4
+Isabella_Meow,26289144,4
+ashleyzla,26289144,4
+59992554,26289144,4
+74559543,26289144,4
+58057340,26289144,3
+soft-rain,26289144,3
+echovoice,26289144,3
+48047254,26289144,4
+lv_shuang,26289144,4
+53735558,26289144,4
+60308488,26289144,4
+rapidsmove,26289144,4
+73847270,26289144,3
+reika_scar,26289144,3
+8792564,26289144,4
+102356757,26289144,5
+54811615,26289144,4
+laaan,26289144,-1
+53784570,26289144,4
+i-m17,26289144,4
+49908736,26289144,5
+67728756,26289144,2
+71088642,26289144,5
+93411838,26289144,5
+76146142,26289144,3
+wliiter,26289144,4
+perfectdemon,26289144,2
+64547560,26289144,4
+atengbrilliance,26289144,5
+ninosun,26289144,4
+51247678,26289144,4
+75025238,26289144,3
+14965275,26289144,3
+80657169,26289144,5
+107663768,26289144,4
+33449368,26289144,5
+babypei,26289144,2
+wujiwudu,26289144,5
+tanggg,26289144,4
+122342244,26289144,3
+4421085,26289144,5
+40593676,26289144,2
+fx20061006,26289144,4
+lovelyxiaoqi,26289144,2
+sylvains,26289144,4
+63910386,26289144,4
+127262027,26289144,5
+1913000,26289144,-1
+58457174,26289144,5
+73378499,26289144,4
+75096370,26289144,2
+58281873,26289144,5
+60608137,26289144,5
+50257103,26289144,5
+55770448,26289144,3
+97190506,26289144,5
+43270152,26289144,5
+did-it,26289144,4
+69361608,26289144,4
+mrsworldwide,26289144,4
+eileenx,26289144,4
+plq,26289144,5
+Eayo,26289144,3
+LeeMar,26289144,4
+harriet,26289144,2
+4709576,26289144,5
+bodhigang,26289144,1
+45447065,26289144,2
+31449811,26289144,5
+loveulovelife,26289144,3
+xingzhesun,26289144,4
+coldlife,26289144,3
+icejoke,26289144,1
+59307680,26289144,5
+43654432,26289144,2
+4686814,26289144,2
+18071732,26289144,4
+18071732,26289144,4
+122821584,26289144,5
+56898104,26289144,3
+100953233,26289144,4
+43156825,26289144,2
+helenaaranya,26289144,5
+49914687,26289144,4
+57365117,26289144,2
+haixiaoyang,26289144,4
+leexiang,26289144,2
+monstersimon,26289144,4
+69361573,26289144,4
+121928647,26289144,3
+92637851,26289144,3
+claudiabaobeier,26289144,3
+start20130208,26289144,5
+morain1010,26289144,4
+34678139,26289144,1
+115737541,26289144,4
+67951946,26289144,5
+Bamboooooo,26289144,4
+92081945,26289144,1
+2168933,26289144,2
+55856338,26289144,5
+119396712,26289144,5
+53978560,26289144,4
+dyc0326,26289144,4
+49855278,26289144,4
+47152561,26289144,4
+26538596,26289144,3
+63587714,26289144,1
+132190479,26289144,3
+84785338,26289144,4
+mingyu1992,26289144,4
+81131012,26289144,5
+119943904,26289144,5
+79240212,26289144,4
+70055114,26289144,4
+3689113,26289144,-1
+34908296,26289144,4
+45322158,26289144,4
+108264732,26289144,4
+ziningcanyue,26289144,3
+47443659,26289144,3
+100403846,26289144,4
+70047087,26289144,3
+50344211,26289144,5
+snagbin,26289144,4
+35904729,26289144,4
+adui,26289144,3
+72936098,26289144,-1
+122527158,26289144,4
+joearde,26289144,3
+Robotme,26289144,4
+zicheng05,26289144,4
+CAIHUAJIANG,26289144,4
+70251090,26289144,3
+3410802,26289144,4
+52836731,26289144,5
+47943470,26289144,4
+mcymcy,26289144,5
+tangjiaqi,26289144,3
+ziv_tmac,26289144,5
+50036747,26289144,5
+gwaihir,26289144,4
+edithloving,26289144,3
+45274666,26289144,4
+62995680,26289144,3
+littlenest,26289144,5
+125650125,26289144,3
+78275647,26289144,-1
+44561459,26289144,4
+eric9210,26289144,5
+ceh19930603,26289144,3
+joelove,26289144,5
+xiaokudou,26289144,3
+81241177,26289144,4
+75416298,26289144,2
+42722420,26289144,4
+tingdy,26289144,4
+4915899,26289144,4
+Jayne_pig,26289144,5
+65521542,26289144,-1
+131863386,26289144,4
+37402473,26289144,3
+the3000,26289144,4
+ctotoro,26289144,5
+Encore11,26289144,4
+curtis_zhu,26289144,3
+yue_cp,26289144,3
+37784979,26289144,4
+colorwind,26289144,4
+45267369,26289144,-1
+75007342,26289144,4
+3738773,26289144,5
+65933344,26289144,4
+47215662,26289144,4
+4147254,26289144,5
+Holywinnie,26289144,5
+llms,26289144,3
+3874583,26289144,3
+41922022,26289144,4
+kikyo531,26289144,3
+52338322,26289144,4
+48807629,26289144,5
+72923671,26289144,4
+sid005,26289144,2
+72097121,26289144,2
+40482611,26289144,4
+medusayuan,26289144,4
+66041501,26289144,5
+1205451,26289144,4
+SUNNY927,26289144,4
+108445445,26289144,3
+MrChristy,26289144,4
+1391757,26289144,4
+sidneybig,26289144,3
+64530872,26289144,4
+28351349,26289144,5
+47088428,26289144,5
+37848161,26289144,4
+47187938,26289144,3
+130410027,26289144,5
+oylzllk,26289144,4
+78975012,26289144,4
+8872886,26289144,2
+82232666,26289144,4
+nanadong,26289144,5
+115482550,26289144,4
+26256447,26289144,5
+71633312,26289144,5
+76482774,26289144,3
+situxx,26289144,4
+131807022,26289144,5
+snakesarah,26289144,4
+1663187,26289144,4
+43683587,26289144,3
+95017521,26289144,5
+40018241,26289144,5
+123576889,26289144,4
+yberbing,26289144,5
+48117474,26289144,4
+syavalon,26289144,3
+whichonelisten,26289144,2
+park_summer,26289144,4
+97188131,26289144,4
+54923572,26289144,4
+traveler1756,26289144,3
+69258021,26289144,3
+fengyueling,26289144,4
+prague2046,26289144,-1
+22170805,26289144,4
+58335462,26289144,4
+ygeng,26289144,4
+43905279,26289144,-1
+52240587,26289144,-1
+128063403,26289144,3
+wohouhou,26289144,4
+2229038,26289144,3
+58016622,26289144,2
+132348134,26289144,3
+vanjuta,26289144,3
+youasshole,26289144,-1
+58084681,26289144,1
+poison1988,26289144,4
+45756580,26289144,1
+4132181,26289144,4
+taojingyu1996,26289144,4
+PanDreancat,26289144,5
+75683760,26289144,4
+36546118,26289144,1
+summerasyou,26289144,4
+54884820,26289144,4
+90467667,26289144,3
+athenahyphen,26289144,5
+3852753,26289144,4
+waiwaide,26289144,5
+91674742,26289144,5
+2195494,26289144,-1
+1427065,26289144,4
+52524176,26289144,5
+85536299,26289144,4
+114090542,26289144,3
+71867547,26289144,3
+24274750,26289144,4
+imarco,26289144,4
+1864146,26289144,3
+108247778,26289144,3
+60771932,26289144,3
+68679029,26289144,4
+48549596,26289144,4
+67641940,26289144,3
+alysa_,26289144,5
+Amberine,26289144,4
+68881008,26289144,3
+62606235,26289144,5
+dawanzi_c,26289144,3
+1454015,26289144,3
+104701659,26289144,4
+75987958,26289144,4
+49025394,26289144,5
+mixiaoduosmile,26289144,4
+snoopypark,26289144,4
+59765953,26289144,3
+112314303,26289144,4
+59329084,26289144,4
+Real-One,26289144,4
+52246319,26289144,3
+128616856,26289144,4
+74040194,26289144,3
+3632876,26289144,4
+classa,26289144,4
+95119878,26289144,5
+40916435,26289144,5
+Lul.z,26289144,3
+59426800,26289144,5
+42149811,26289144,5
+noal,26289144,4
+foreverlethe,26289144,-1
+cuiyingjun,26289144,2
+darkcarp,26289144,3
+54726075,26289144,3
+meganlee,26289144,4
+yummyW,26289144,4
+54479962,26289144,4
+71188390,26289144,4
+58957642,26289144,4
+130110997,26289144,4
+xxh911,26289144,4
+tracy4u,26289144,3
+mala112,26289144,4
+35208519,26289144,3
+62971762,26289144,2
+66044059,26289144,4
+jeremyzhuo,26289144,4
+51563875,26289144,2
+62976329,26289144,3
+43211886,26289144,4
+JJSJJ,26289144,2
+40735647,26289144,4
+wyfshejyd,26289144,4
+62949380,26289144,4
+92616696,26289144,3
+63896361,26289144,4
+muson00,26289144,4
+49083776,26289144,4
+82219188,26289144,3
+2199104,26289144,4
+akilee614,26289144,4
+vivissky,26289144,4
+zhouxiaotong,26289144,4
+102889525,26289144,5
+39364170,26289144,5
+61145820,26289144,5
+guoguangming,26289144,4
+scarlett520,26289144,4
+6958959,26289144,3
+125404969,26289144,4
+60803331,26289144,3
+57710980,26289144,4
+121209028,26289144,4
+60698727,26289144,2
+22842390,26289144,4
+78651241,26289144,4
+51134052,26289144,4
+Qinxiao47,26289144,4
+80631367,26289144,3
+64497522,26289144,3
+70509315,26289144,4
+63477660,26289144,4
+amy221525,26289144,5
+96035607,26289144,4
+yeallingmay,26289144,4
+48819383,26289144,4
+4427457,26289144,4
+xiaobai_,26289144,5
+txjbb,26289144,4
+kathytop,26289144,4
+53988247,26289144,5
+dovm,26289144,4
+78484143,26289144,4
+mkid1412,26289144,3
+joesay,26289144,4
+59032878,26289144,4
+49123021,26289144,5
+41092202,26289144,4
+53817584,26289144,4
+alex.tseng,26289144,4
+45927754,26289144,4
+68945862,26289144,4
+65263102,26289144,3
+3876276,26289144,4
+123000223,26289144,4
+green912,26289144,4
+yuntun,26289144,3
+88952158,26289144,4
+windsbuer,26289144,4
+agentying,26289144,4
+63191025,26289144,5
+3432048,26289144,4
+123853930,26289144,5
+84195999,26289144,4
+44382672,26289144,1
+69900690,26289144,4
+gooo111,26289144,4
+58191457,26289144,4
+60180000,26289144,5
+2678412,26289144,4
+1569518,26289144,2
+julyxf,26289144,5
+44034935,26289144,5
+58442075,26289144,4
+xumhandy,26289144,4
+iceboy874,26289144,4
+1171026,26289144,4
+4098661,26289144,3
+63220171,26289144,3
+47036844,26289144,4
+65675536,26289144,5
+46170417,26289144,3
+4521703,26289144,5
+sinxu,26289144,4
+fm532,26289144,4
+52275922,26289144,3
+49014999,26289144,4
+undeadcherry,26289144,3
+27632591,26289144,4
+72133915,26289144,4
+XMY-1995,26289144,4
+leebins,26289144,4
+wander429,26289144,5
+73410392,26289144,1
+70174542,26289144,4
+4537211,26289144,4
+48428436,26289144,4
+BennyB,26289144,4
+btfunv,26289144,5
+50915159,26289144,5
+44875082,26289144,-1
+49265816,26289144,4
+49265816,26289144,4
+chrissie619108,26289144,4
+31072510,26289144,5
+poemorning0326,26289144,5
+47929973,26289144,4
+52219315,26289144,3
+clearhappy7,26289144,2
+wkwkaka,26289144,4
+29640209,26289144,5
+115545865,26289144,5
+62864359,26289144,4
+25960765,26289144,3
+46346813,26289144,4
+maomao19901108,26289144,4
+tcyzco3,26289144,4
+gintokihi,26289144,5
+43212336,26289144,5
+viviansummer,26289144,4
+52416544,26289144,4
+30361242,26289144,4
+yanleung1102,26289144,2
+104056990,26289144,4
+FifthDlassie,26289144,3
+ziyuzili911328,26289144,4
+82988329,26289144,4
+finalaic,26289144,4
+4483116,26289144,4
+woodstar,26289144,5
+2990853,26289144,5
+dear.still,26289144,4
+42292957,26289144,3
+majesty.voyi,26289144,1
+65019328,26289144,5
+azalea-.-,26289144,5
+Lis_Z,26289144,2
+81413289,26289144,3
+36499503,26289144,3
+81294259,26289144,5
+1189560,26289144,4
+cheng_Ting,26289144,3
+64287527,26289144,4
+Yshine,26289144,4
+FilmYan,26289144,3
+38564804,26289144,4
+MISSMOUMOU,26289144,4
+maomaoye,26289144,4
+53256552,26289144,5
+4095918,26289144,4
+torrywong,26289144,3
+73335242,26289144,3
+75569999,26289144,5
+50179203,26289144,4
+60008487,26289144,5
+yycznh0520,26289144,4
+46512598,26289144,4
+berialgreener,26289144,3
+yeyuda,26289144,4
+67865489,26289144,4
+destined7,26289144,5
+7305861,26289144,5
+51401098,26289144,4
+64648933,26289144,4
+131892019,26289144,4
+62323478,26289144,5
+64969140,26289144,4
+65135573,26289144,4
+53914537,26289144,1
+cactus_le,26289144,4
+molly1012,26289144,2
+76782634,26289144,4
+putaonat,26289144,5
+3820356,26289144,5
+130442588,26289144,3
+iiimo,26289144,3
+60408856,26289144,4
+l---j,26289144,4
+DIRENGREY,26289144,4
+57716356,26289144,4
+71479420,26289144,3
+46682644,26289144,5
+sodawubei,26289144,5
+2628458,26289144,4
+skyiris-kinoko,26289144,4
+lanxinzi,26289144,5
+tricky_V,26289144,3
+100240812,26289144,4
+fsivyneof4,26289144,4
+witheve,26289144,4
+66079002,26289144,3
+irisj,26289144,5
+L-muyan,26289144,3
+2317013,26289144,5
+2578732,26289144,5
+lips,26289144,5
+52145577,26289144,5
+55957394,26289144,5
+35350032,26289144,4
+33978409,26289144,4
+47413482,26289144,4
+solordia,26289144,5
+solordia,26289144,5
+4697357,26289144,4
+28889345,26289144,5
+57964215,26289144,4
+62720771,26289144,5
+122899369,26289144,5
+caroltt4024333,26289144,4
+chris027,26289144,4
+craneink,26289144,4
+79278811,26289144,3
+3870395,26289144,4
+cindy547288,26289144,5
+52594518,26289144,5
+giveareason,26289144,5
+100342523,26289144,4
+58794497,26289144,4
+71065080,26289144,3
+51884253,26289144,4
+silver11,26289144,3
+RUOER,26289144,3
+85207439,26289144,3
+53405110,26289144,4
+50005636,26289144,2
+8925160,26289144,4
+44249875,26289144,3
+3438528,26289144,4
+lqpubic,26289144,2
+50060410,26289144,5
+1110686,26289144,4
+niexiaoyuan,26289144,3
+50117171,26289144,3
+59376897,26289144,5
+59946746,26289144,4
+2857621,26289144,-1
+74011152,26289144,5
+62784694,26289144,4
+47396719,26289144,4
+2940531,26289144,4
+gambler801,26289144,5
+4421742,26289144,4
+gabrielwood,26289144,4
+kongben,26289144,5
+44843464,26289144,4
+75476246,26289144,4
+BobMing,26289144,4
+32764216,26289144,3
+2190982,26289144,4
+77847494,26289144,4
+43246260,26289144,5
+cat_rs,26289144,4
+46506277,26289144,5
+1145700,26289144,2
+mengqingjiao,26289144,4
+88922357,26289144,4
+78871037,26289144,3
+aaronfighting,26289144,4
+4129696,26289144,3
+46380360,26289144,4
+xinziai,26289144,4
+76331020,26289144,4
+travel_yuong,26289144,4
+1830523,26289144,4
+64227759,26289144,4
+51585864,26289144,4
+35877038,26289144,3
+49959307,26289144,4
+sunshine_sk,26289144,5
+59728258,26289144,4
+68893720,26289144,5
+blankF,26289144,5
+tomato88,26289144,3
+36030831,26289144,4
+62362677,26289144,3
+venicedream,26289144,3
+60956192,26289144,5
+k1na,26289144,4
+shu1226,26289144,3
+49808101,26289144,5
+IcyloveSeraphy,26289144,4
+serein0423,26289144,5
+feqinfan,26289144,4
+64041722,26289144,4
+121356026,26289144,5
+63708348,26289144,4
+131329716,26289144,4
+81351219,26289144,3
+39942596,26289144,5
+daheiluozi,26289144,3
+65868986,26289144,4
+2121850,26289144,3
+5566664,26289144,4
+captainanlie,26289144,5
+44581261,26289144,3
+66056067,26289144,4
+61330247,26289144,4
+68179093,26289144,5
+53010578,26289144,-1
+zoe-1988,26289144,4
+53962149,26289144,5
+47504020,26289144,4
+31854340,26289144,4
+2334248,26289144,4
+Spherenix,26289144,2
+mysha,26289144,3
+caizhidao,26289144,4
+130085182,26289144,4
+zhiqi_cheung,26289144,4
+littlesugar,26289144,4
+121460001,26289144,4
+47669123,26289144,3
+yuyu0726,26289144,4
+132086884,26289144,5
+132342610,26289144,4
+lovelyekin,26289144,4
+49609934,26289144,5
+58957770,26289144,4
+1967724,26289144,4
+131771988,26289144,3
+35369841,26289144,3
+132724157,26289144,5
+132724157,26289144,5
+yyue,26289144,-1
+53357389,26289144,5
+fulanwawa,26289144,5
+102945477,26289144,4
+woohly,26289144,4
+40017309,26289144,2
+xiaoxiaoshuo,26289144,5
+45262915,26289144,3
+53376823,26289144,4
+74170855,26289144,3
+55916803,26289144,5
+29225258,26289144,-1
+32781872,26289144,5
+80993663,26289144,5
+DOOLYUNI,26289144,4
+39328555,26289144,4
+star-b612,26289144,4
+119852744,26289144,3
+dianekeke,26289144,5
+kexiaoxuan_,26289144,3
+4661286,26289144,4
+cescpires,26289144,5
+63382079,26289144,4
+unbounder,26289144,3
+132338913,26289144,5
+oneweek,26289144,4
+52731672,26289144,2
+48593382,26289144,3
+47904697,26289144,2
+61581753,26289144,4
+49528887,26289144,3
+MK_ijal,26289144,4
+50958323,26289144,3
+49750493,26289144,2
+84641449,26289144,3
+LYNevermind,26289144,5
+duoerjiayou,26289144,5
+46507022,26289144,5
+56941343,26289144,3
+timing,26289144,4
+45808338,26289144,4
+64778238,26289144,4
+53854187,26289144,3
+Jillian,26289144,2
+ilestlevraije,26289144,5
+51467287,26289144,5
+29606366,26289144,4
+mississluu,26289144,5
+BritpopStarFeel,26289144,3
+54879429,26289144,3
+100420531,26289144,4
+mywpq,26289144,2
+42563034,26289144,5
+50616224,26289144,3
+73156181,26289144,4
+3227323,26289144,4
+greenyiruo,26289144,-1
+74671754,26289144,2
+sonyalee13,26289144,4
+132350496,26289144,4
+121668648,26289144,5
+irene826,26289144,4
+95119805,26289144,4
+48357583,26289144,5
+59116425,26289144,3
+22040154,26289144,4
+84655356,26289144,3
+milanjia,26289144,4
+dearFreundin,26289144,4
+hehuimin,26289144,3
+tracy0702,26289144,4
+39518332,26289144,4
+41522528,26289144,4
+47078670,26289144,4
+42078963,26289144,4
+DVforever,26289144,4
+lovely1314mt,26289144,4
+63047607,26289144,5
+52245563,26289144,4
+49916900,26289144,5
+88695508,26289144,5
+anvirdo,26289144,3
+57831051,26289144,3
+43682836,26289144,3
+finsen27,26289144,4
+sugustmac,26289144,4
+lns,26289144,4
+58359527,26289144,5
+chrisrocknroll,26289144,5
+15146438,26289144,5
+41933310,26289144,4
+84849322,26289144,4
+34411968,26289144,5
+leilasu,26289144,3
+34097491,26289144,5
+94460148,26289144,4
+isabella_shi,26289144,4
+piggasol,26289144,3
+lauer,26289144,3
+127979730,26289144,5
+58950825,26289144,4
+121484000,26289144,4
+51686369,26289144,3
+littlemiemie,26289144,5
+XXXXXmian,26289144,3
+saieleven,26289144,4
+icelfen,26289144,5
+52033080,26289144,5
+46672186,26289144,5
+silenttsea,26289144,4
+rainyls,26289144,3
+116262258,26289144,5
+tinydream,26289144,2
+65616591,26289144,5
+73892674,26289144,5
+pikelubojue,26289144,5
+45261585,26289144,2
+40757284,26289144,4
+yoshidaerika,26289144,4
+62632799,26289144,3
+anguijia,26289144,5
+ynian2011,26289144,3
+zhennidiandian,26289144,-1
+2055478,26289144,4
+debussy,26289144,3
+76763774,26289144,4
+32274745,26289144,4
+sandimu,26289144,5
+echo0208,26289144,-1
+63156510,26289144,4
+Loota,26289144,4
+leisuretimeyun,26289144,5
+48420105,26289144,5
+50275536,26289144,1
+115784778,26289144,5
+87799350,26289144,3
+Simplelove_,26289144,4
+121148510,26289144,4
+75688896,26289144,1
+hexybaby,26289144,3
+56795809,26289144,5
+51359075,26289144,2
+94082374,26289144,4
+40553391,26289144,5
+ets,26289144,5
+64013167,26289144,4
+missdarcy,26289144,5
+40447897,26289144,4
+Veronicachai,26289144,3
+59376214,26289144,4
+8184556,26289144,5
+1133756,26289144,4
+71758766,26289144,4
+41649419,26289144,4
+lyning,26289144,3
+41194137,26289144,4
+flyrodney,26289144,3
+57126111,26289144,3
+Zhpher,26289144,3
+58096445,26289144,4
+wangsmoly,26289144,4
+itechen,26289144,5
+82990219,26289144,4
+121807969,26289144,4
+X-YU,26289144,-1
+62326407,26289144,5
+109071347,26289144,4
+chenrr1106,26289144,4
+lancaocao,26289144,4
+76018725,26289144,5
+45182883,26289144,4
+zackman,26289144,3
+51664077,26289144,5
+68593362,26289144,4
+wendychou,26289144,3
+rachelandrarol,26289144,5
+63337821,26289144,4
+maples611627,26289144,4
+101306122,26289144,4
+edwardtroy,26289144,3
+87962296,26289144,5
+34595483,26289144,4
+15668245,26289144,3
+41386230,26289144,4
+2053540,26289144,4
+thomsonkoo,26289144,3
+54823776,26289144,4
+32560246,26289144,3
+xizhaoming,26289144,5
+2255714,26289144,5
+58187681,26289144,2
+115171271,26289144,5
+61273725,26289144,5
+55529322,26289144,3
+XBGY,26289144,4
+yihaifei,26289144,3
+73899002,26289144,3
+4766836,26289144,4
+twi,26289144,4
+69441778,26289144,4
+58433899,26289144,5
+2246096,26289144,5
+86025873,26289144,4
+2039807,26289144,4
+62151456,26289144,5
+K531678326,26289144,4
+65077511,26289144,1
+129520863,26289144,5
+53159454,26289144,4
+74628004,26289144,4
+gexiarong,26289144,4
+Giraffe830,26289144,4
+108472446,26289144,5
+42037161,26289144,4
+54049800,26289144,3
+4270579,26289144,3
+67173929,26289144,3
+xcoral,26289144,3
+45224713,26289144,5
+87838848,26289144,5
+dearcy,26289144,5
+42723395,26289144,5
+4713776,26289144,4
+25537188,26289144,5
+38815468,26289144,4
+62422860,26289144,5
+alowisy,26289144,4
+colacici67,26289144,2
+1200423,26289144,1
+fwkboran,26289144,5
+susana8824,26289144,5
+128500303,26289144,2
+Mozilla,26289144,3
+121754280,26289144,5
+lonely19520,26289144,5
+Han-Lyn,26289144,5
+Arenas4.-_-Hreo,26289144,4
+46319235,26289144,3
+showmeet111,26289144,4
+73922651,26289144,4
+4552437,26289144,3
+53603990,26289144,4
+48353133,26289144,3
+130100257,26289144,3
+72057821,26289144,5
+38973688,26289144,4
+3854905,26289144,3
+69093692,26289144,2
+106467997,26289144,-1
+103357406,26289144,5
+46053347,26289144,3
+52894230,26289144,4
+53719354,26289144,4
+C-Plus,26289144,4
+62650109,26289144,4
+128885646,26289144,4
+56200284,26289144,4
+68779428,26289144,4
+sakura9686,26289144,5
+68342524,26289144,3
+51817711,26289144,4
+119078211,26289144,5
+FFFine,26289144,4
+48638598,26289144,3
+91742876,26289144,5
+lazycatsn,26289144,4
+chenbrush,26289144,5
+44305889,26289144,4
+59264326,26289144,5
+38882087,26289144,5
+61740800,26289144,5
+juscici,26289144,-1
+67232116,26289144,3
+zhangtuo,26289144,3
+96190802,26289144,5
+62806809,26289144,5
+4489482,26289144,4
+58696336,26289144,5
+agassiwpx,26289144,4
+63604772,26289144,4
+55874346,26289144,5
+56416276,26289144,5
+59260003,26289144,2
+64677693,26289144,5
+130102740,26289144,4
+ivy26,26289144,4
+2206235,26289144,4
+4818550,26289144,5
+violetsensation,26289144,3
+44626452,26289144,4
+doratora,26289144,5
+xxs127,26289144,2
+sodasue,26289144,5
+5632513,26289144,-1
+74397322,26289144,5
+46289233,26289144,4
+62544588,26289144,3
+57749924,26289144,3
+kassyxuemeng,26289144,5
+63383650,26289144,4
+meizizibaby,26289144,4
+4784552,26289144,2
+57962044,26289144,5
+silencewong,26289144,3
+70950521,26289144,3
+desa,26289144,5
+85450588,26289144,5
+LilithXu,26289144,3
+131704221,26289144,4
+Koushaoye,26289144,4
+50082759,26289144,5
+2994831,26289144,4
+asfhl,26289144,5
+43601720,26289144,2
+54359155,26289144,2
+mo2eda,26289144,5
+raecc,26289144,5
+112850351,26289144,3
+61742449,26289144,4
+56143225,26289144,3
+71679335,26289144,4
+6086714,26289144,4
+4855838,26289144,4
+120556914,26289144,4
+sailbeixiaobei,26289144,5
+lfj1016,26289144,4
+doudoumin,26289144,1
+25664582,26289144,2
+55645236,26289144,4
+susansayslove,26289144,4
+elsolmysun,26289144,4
+cantona_x,26289144,4
+fulimei,26289144,3
+61218179,26289144,4
+48394515,26289144,5
+67781678,26289144,4
+hkgothic,26289144,4
+58421953,26289144,5
+57929718,26289144,5
+27647451,26289144,4
+liuxiyue,26289144,4
+63714261,26289144,4
+KinggieWU,26289144,4
+42898994,26289144,4
+131784684,26289144,3
+64020906,26289144,3
+102747007,26289144,4
+2139770,26289144,4
+Microka,26289144,2
+1762545,26289144,3
+73125867,26289144,5
+4493785,26289144,2
+applejune,26289144,4
+48685347,26289144,4
+102986186,26289144,4
+4603863,26289144,4
+23029442,26289144,3
+goodbyelenin,26289144,2
+prostate,26289144,5
+88871523,26289144,2
+summerbu,26289144,3
+3705062,26289144,4
+132954979,26289144,3
+66250308,26289144,4
+Charlie.Lee,26289144,2
+xi_1483,26289144,4
+lf_wei,26289144,4
+TomboyJoe,26289144,4
+63236633,26289144,3
+59193526,26289144,-1
+35076658,26289144,3
+80671308,26289144,5
+wuhuiting,26289144,4
+133001212,26289144,4
+cherrybombbb,26289144,4
+74096448,26289144,4
+nianmianbujue,26289144,2
+marurui,26289144,4
+67957141,26289144,4
+57922928,26289144,3
+62253827,26289144,5
+pianzhixiaogui,26289144,4
+47675907,26289144,3
+lish5621,26289144,4
+cl411,26289144,3
+J19,26289144,4
+25140645,26289144,3
+45943207,26289144,4
+6263589,26289144,3
+acmilanzjt,26289144,5
+58634093,26289144,4
+53103898,26289144,1
+Amymy,26289144,3
+82572629,26289144,2
+44669432,26289144,4
+yuanlongleslie,26289144,1
+52543100,26289144,-1
+hawords,26289144,4
+56063621,26289144,4
+63642208,26289144,3
+52116951,26289144,3
+77207939,26289144,4
+3931180,26289144,4
+85057811,26289144,3
+52597198,26289144,4
+56163581,26289144,5
+XterCollins,26289144,3
+84431385,26289144,4
+yujianxiaoben,26289144,5
+55519511,26289144,5
+78957039,26289144,2
+ricardoHE,26289144,4
+5198781,26289144,3
+58603704,26289144,4
+77758955,26289144,3
+75850688,26289144,5
+100014319,26289144,2
+66066828,26289144,3
+44555430,26289144,4
+131814242,26289144,4
+4454692,26289144,3
+55631098,26289144,5
+130712247,26289144,4
+32090465,26289144,1
+38811434,26289144,3
+baoqiddpp,26289144,4
+alwaysaniceday,26289144,-1
+fairyhui521,26289144,5
+17543193,26289144,2
+73403097,26289144,4
+ak31,26289144,-1
+lotusworld,26289144,3
+60623717,26289144,4
+42137156,26289144,4
+r712,26289144,3
+68183228,26289144,-1
+61802597,26289144,4
+rainy525,26289144,3
+a1b2c32046,26289144,4
+49652642,26289144,3
+4154705,26289144,3
+68118678,26289144,5
+2419772,26289144,4
+68668703,26289144,4
+70333895,26289144,5
+68416685,26289144,5
+97431474,26289144,4
+34990141,26289144,3
+80915451,26289144,3
+37168028,26289144,3
+vanros,26289144,4
+luckyinvoke,26289144,5
+3232162,26289144,5
+36071533,26289144,5
+dasyhiqiang,26289144,3
+zlaye,26289144,5
+71574131,26289144,4
+64384242,26289144,1
+68936327,26289144,4
+31634046,26289144,5
+129766862,26289144,3
+4566763,26289144,5
+31444426,26289144,4
+liunisn,26289144,5
+71408182,26289144,5
+48877140,26289144,4
+113050393,26289144,3
+35194523,26289144,3
+3939225,26289144,4
+52117256,26289144,2
+jin.paopao,26289144,4
+yama.,26289144,4
+42759061,26289144,4
+68523574,26289144,4
+endlesssisyphus,26289144,4
+merryliang,26289144,4
+hshsh33,26289144,-1
+ler.sky.,26289144,3
+50071224,26289144,4
+50071224,26289144,4
+131856288,26289144,4
+35813524,26289144,3
+45848130,26289144,5
+crlazy_,26289144,4
+13823787,26289144,3
+82604234,26289144,5
+coolsin,26289144,5
+baiwei_ren,26289144,5
+4655853,26289144,4
+shability-,26289144,4
+80183664,26289144,5
+29245203,26289144,4
+30639936,26289144,4
+72590868,26289144,5
+43447764,26289144,5
+130518352,26289144,5
+huahuaxiaocai,26289144,3
+sala.baa,26289144,5
+58547827,26289144,4
+84531200,26289144,4
+43832032,26289144,4
+Carman.Feng,26289144,4
+zoehuan,26289144,3
+112933075,26289144,3
+55875465,26289144,4
+ensi,26289144,4
+78651458,26289144,5
+amer94,26289144,3
+luckyanc,26289144,5
+pingchengweixin,26289144,3
+89535449,26289144,4
+65907866,26289144,4
+59155713,26289144,5
+tjmelody,26289144,4
+59032770,26289144,4
+58267808,26289144,3
+longlegdaddy,26289144,4
+3649520,26289144,1
+55585638,26289144,3
+62532021,26289144,4
+62121031,26289144,4
+WN-ninja,26289144,3
+52004957,26289144,3
+pywx,26289144,3
+46963738,26289144,4
+77430587,26289144,4
+anthoni0711,26289144,-1
+62100452,26289144,4
+48128735,26289144,5
+Helena250520,26289144,4
+33330297,26289144,4
+114275619,26289144,5
+78853925,26289144,5
+4855309,26289144,4
+65038272,26289144,4
+119315449,26289144,3
+81159938,26289144,3
+35827809,26289144,3
+55625618,26289144,2
+livingfly,26289144,4
+63294351,26289144,4
+wsmint,26289144,5
+artjam,26289144,3
+3865672,26289144,2
+45524096,26289144,4
+57982510,26289144,5
+57864238,26289144,5
+80908342,26289144,4
+58894398,26289144,5
+45957568,26289144,1
+dingruitaba,26289144,4
+47297112,26289144,4
+Gladysxie,26289144,3
+MidnightMark,26289144,5
+mydearcat,26289144,4
+lidejun,26289144,5
+67976109,26289144,4
+rabbiy,26289144,5
+65161284,26289144,4
+28853372,26289144,3
+64136344,26289144,3
+66719799,26289144,5
+66358226,26289144,5
+120764157,26289144,4
+goldensunflower,26289144,4
+126089212,26289144,4
+113088428,26289144,4
+75175463,26289144,3
+59302028,26289144,5
+53122155,26289144,5
+princessvivian,26289144,3
+71972126,26289144,5
+92462355,26289144,1
+42307079,26289144,5
+lanyangyangdecc,26289144,4
+44073563,26289144,4
+67742621,26289144,3
+29998862,26289144,4
+3249318,26289144,5
+yufangxue,26289144,5
+hecongqi,26289144,4
+lovingly,26289144,4
+lokio,26289144,5
+watever_lan,26289144,-1
+iamzuzhitao,26289144,4
+Irissadness,26289144,4
+65346969,26289144,4
+maggieleaf,26289144,3
+102862602,26289144,4
+63099220,26289144,4
+102960018,26289144,5
+4455176,26289144,4
+59129938,26289144,4
+6583292,26289144,4
+41222803,26289144,4
+64708060,26289144,-1
+LWODE,26289144,5
+65925279,26289144,4
+122049706,26289144,4
+125334017,26289144,3
+92576305,26289144,3
+kjj01261012,26289144,4
+wondershine,26289144,4
+69751106,26289144,4
+43236574,26289144,4
+66234722,26289144,5
+tiffanieee,26289144,3
+58059498,26289144,3
+rakumm,26289144,2
+35904639,26289144,4
+60092575,26289144,3
+killmystery,26289144,-1
+goodbyemyprince,26289144,4
+efrey,26289144,4
+33064145,26289144,4
+3313195,26289144,3
+sorrow_YMY,26289144,3
+44585968,26289144,4
+79605736,26289144,4
+69005394,26289144,5
+anthea_me,26289144,2
+justinnext,26289144,4
+68776992,26289144,4
+103339430,26289144,3
+38355276,26289144,5
+120566516,26289144,5
+47702606,26289144,3
+49693617,26289144,4
+69759745,26289144,2
+yeslie,26289144,3
+lingfriendly,26289144,3
+122886150,26289144,5
+54160566,26289144,5
+50061960,26289144,5
+124640229,26289144,4
+1225190,26289144,5
+tiany87,26289144,-1
+114499367,26289144,3
+53785140,26289144,4
+seeeeela,26289144,3
+53595902,26289144,4
+wushiyi1122,26289144,3
+14363390,26289144,4
+51651519,26289144,4
+84591615,26289144,5
+56590853,26289144,3
+littlejuice,26289144,-1
+84539912,26289144,5
+53073700,26289144,5
+51159769,26289144,4
+candyff123,26289144,4
+kateniceday,26289144,4
+50432949,26289144,-1
+chch1420,26289144,-1
+42243165,26289144,4
+68963714,26289144,5
+lovejason87,26289144,5
+cuteeestar,26289144,4
+perfect14,26289144,3
+perfect14,26289144,3
+31483921,26289144,4
+121708235,26289144,4
+101982187,26289144,2
+liangluo,26289144,3
+121221798,26289144,4
+49188433,26289144,3
+129937511,26289144,5
+47256072,26289144,5
+57968508,26289144,4
+43044150,26289144,4
+52299023,26289144,3
+xixihahaxiao,26289144,4
+jing-junjie,26289144,4
+48198672,26289144,4
+48159178,26289144,4
+libramao,26289144,4
+50880780,26289144,5
+120219887,26289144,3
+44559687,26289144,3
+78292650,26289144,5
+gong_ken,26289144,4
+seasing1992,26289144,5
+iear,26289144,4
+76611008,26289144,3
+74258577,26289144,4
+77118319,26289144,4
+youdebin1992,26289144,5
+little-dog,26289144,5
+4017228,26289144,3
+2284835,26289144,4
+72839034,26289144,4
+Xin1984,26289144,4
+lele480,26289144,3
+Eunyul,26289144,3
+59621398,26289144,5
+ydbsszl,26289144,5
+akkabby,26289144,4
+51175601,26289144,2
+122526882,26289144,4
+3306665,26289144,5
+21217017,26289144,4
+61403829,26289144,4
+17672710,26289144,4
+wingsnye,26289144,5
+75995638,26289144,4
+65547477,26289144,4
+reneemiemie,26289144,2
+virtuosowang,26289144,3
+85395899,26289144,3
+68366606,26289144,4
+130706971,26289144,4
+77762504,26289144,3
+peggyzhu,26289144,5
+dongjh,26289144,1
+lindsayfly,26289144,2
+twoherb,26289144,-1
+54654221,26289144,4
+56803551,26289144,5
+90894536,26289144,4
+90894536,26289144,4
+Lewxorn,26289144,4
+132063881,26289144,5
+130692853,26289144,4
+zhouyuan0124,26289144,2
+75413631,26289144,4
+FTDxiaowukong,26289144,4
+41052184,26289144,4
+wusequanwei,26289144,3
+127079220,26289144,5
+49370528,26289144,4
+121880026,26289144,3
+carlo_,26289144,4
+iRayc,26289144,4
+40659159,26289144,4
+chen11640,26289144,4
+puttingpooh,26289144,4
+yuan521123,26289144,4
+60150191,26289144,5
+kidland,26289144,3
+52075291,26289144,5
+1001195,26289144,4
+121420624,26289144,5
+58741014,26289144,-1
+114493439,26289144,5
+60411524,26289144,3
+4164323,26289144,4
+124887489,26289144,4
+44313962,26289144,5
+weilianglalala,26289144,5
+119787917,26289144,4
+2707331,26289144,4
+71887540,26289144,4
+65563453,26289144,4
+chouvan,26289144,4
+ido_idoing,26289144,4
+51151809,26289144,4
+WyBaby,26289144,3
+76497080,26289144,4
+steph6luna,26289144,2
+44868532,26289144,4
+71818009,26289144,3
+jinnjinnee,26289144,4
+zheshijian,26289144,5
+37295606,26289144,4
+52313283,26289144,4
+58956706,26289144,3
+81250715,26289144,5
+37025309,26289144,5
+22105037,26289144,4
+130876276,26289144,5
+131616351,26289144,4
+53379708,26289144,3
+124384968,26289144,5
+83155481,26289144,5
+96660784,26289144,3
+49910186,26289144,5
+kurtty,26289144,2
+61932917,26289144,2
+130617320,26289144,5
+130617320,26289144,5
+Csq1994106,26289144,3
+aprilwind_shi,26289144,5
+51399526,26289144,4
+68061879,26289144,3
+66724380,26289144,2
+wuh,26289144,5
+lemonke,26289144,4
+47641962,26289144,4
+movie007wn,26289144,3
+56630736,26289144,5
+sunshine_ape,26289144,5
+60648081,26289144,5
+T...Tina,26289144,4
+49389676,26289144,4
+60413316,26289144,4
+33063429,26289144,5
+58337049,26289144,3
+109558086,26289144,3
+2533890,26289144,4
+tiantianquan233,26289144,3
+zhupeng1115,26289144,4
+79498937,26289144,5
+iris77yaxo,26289144,4
+lovesunqi,26289144,5
+pseudoyu,26289144,4
+79773660,26289144,5
+93307877,26289144,3
+dumica,26289144,3
+110235118,26289144,4
+82137693,26289144,5
+Lotuslands,26289144,4
+45229731,26289144,3
+69094998,26289144,4
+soda-fine,26289144,2
+90925457,26289144,5
+77557122,26289144,4
+98665982,26289144,3
+joyfish0912,26289144,3
+liwanjun,26289144,-1
+37644839,26289144,5
+57829570,26289144,5
+some1one,26289144,5
+43546234,26289144,4
+92393333,26289144,5
+3478406,26289144,4
+day14,26289144,4
+87885475,26289144,1
+62252532,26289144,3
+47991605,26289144,3
+47301910,26289144,5
+GLSNYA,26289144,4
+39012867,26289144,4
+49151871,26289144,4
+YvetteYvette,26289144,4
+102556936,26289144,4
+zaraatnike,26289144,4
+zlx199707,26289144,5
+kingkinlx7bibi,26289144,3
+tatawill,26289144,5
+2521209,26289144,4
+lidianxi1990,26289144,3
+woshiadan,26289144,3
+yan6,26289144,4
+62672201,26289144,4
+foxmoyin,26289144,5
+anya2011,26289144,3
+danzilee,26289144,2
+likecake,26289144,4
+120999005,26289144,4
+128513143,26289144,5
+78714718,26289144,5
+1029394,26289144,4
+82689458,26289144,1
+106489095,26289144,5
+jichan,26289144,-1
+sansan465992682,26289144,4
+67823084,26289144,4
+4544241,26289144,5
+52818523,26289144,4
+61171869,26289144,5
+68424058,26289144,5
+47139815,26289144,5
+li_1314,26289144,4
+3609679,26289144,4
+128418401,26289144,3
+72692620,26289144,3
+53569508,26289144,3
+42144339,26289144,5
+61747030,26289144,5
+WilburZheng,26289144,5
+timememo,26289144,4
+48815125,26289144,5
+71324630,26289144,4
+56524460,26289144,4
+53706093,26289144,4
+choushabi,26289144,4
+phoenixfannie,26289144,4
+duanduankong,26289144,4
+92978277,26289144,3
+44361116,26289144,2
+4736507,26289144,5
+68946693,26289144,4
+62635960,26289144,4
+63682044,26289144,4
+58607038,26289144,5
+dahuilang15656,26289144,5
+47605458,26289144,5
+83674616,26289144,4
+duhuitang,26289144,-1
+129577459,26289144,1
+80240498,26289144,3
+66690322,26289144,4
+130603128,26289144,5
+58411324,26289144,4
+L_kid,26289144,4
+4640701,26289144,4
+GossipRyan,26289144,4
+3340201,26289144,4
+pigeon-komatsu,26289144,4
+120925225,26289144,3
+52867570,26289144,4
+59881458,26289144,3
+46483748,26289144,4
+sanzihui,26289144,3
+49853837,26289144,4
+56751525,26289144,4
+61836437,26289144,3
+adachinoboolu,26289144,4
+68079880,26289144,4
+57953336,26289144,1
+traitor1988,26289144,5
+security,26289144,-1
+71270361,26289144,4
+3852548,26289144,-1
+Ginger_house,26289144,3
+59458875,26289144,3
+52621027,26289144,5
+74346229,26289144,5
+jaycee103,26289144,4
+anqixue,26289144,4
+48592137,26289144,5
+lilysld,26289144,4
+65450414,26289144,3
+IcePickJones,26289144,1
+121908520,26289144,5
+40703330,26289144,5
+9478540,26289144,-1
+69321069,26289144,5
+78728775,26289144,5
+post-rocker,26289144,4
+lynnhal,26289144,4
+113752134,26289144,4
+hechaozhe,26289144,5
+62969916,26289144,5
+58054055,26289144,5
+51262183,26289144,3
+48110404,26289144,4
+102661962,26289144,3
+4336649,26289144,4
+4336649,26289144,4
+3634800,26289144,4
+juuarashi,26289144,4
+43930540,26289144,3
+59797746,26289144,4
+luly_xy,26289144,-1
+79930612,26289144,5
+81325605,26289144,3
+qjquu,26289144,3
+Fice,26289144,2
+123202989,26289144,3
+75555636,26289144,5
+T0822,26289144,3
+34243551,26289144,3
+xia0xue,26289144,3
+54878176,26289144,5
+isUna,26289144,4
+xinxinniannian,26289144,3
+61753661,26289144,4
+46681695,26289144,5
+yurixyz,26289144,4
+131117180,26289144,3
+36945830,26289144,4
+48883608,26289144,5
+40573013,26289144,3
+90551475,26289144,4
+19734042,26289144,4
+128370030,26289144,5
+120824926,26289144,4
+modoulvxing,26289144,4
+128666486,26289144,5
+dingdean,26289144,5
+loreleishanny,26289144,3
+131151824,26289144,4
+30267706,26289144,4
+60013985,26289144,5
+aileennico,26289144,4
+57418562,26289144,4
+76240599,26289144,4
+zhangyutao519,26289144,4
+iaiao,26289144,4
+75539953,26289144,2
+hellomilky,26289144,5
+87636985,26289144,3
+57910521,26289144,5
+singeNicolas,26289144,5
+103112337,26289144,5
+47131649,26289144,5
+heikichi,26289144,4
+2039887,26289144,4
+qinxinzhu,26289144,3
+Seawards_S,26289144,3
+91769345,26289144,4
+97277841,26289144,4
+aharley,26289144,3
+61130628,26289144,5
+curlsangle,26289144,3
+81845055,26289144,3
+121583885,26289144,-1
+luchenran,26289144,5
+60140602,26289144,2
+stephanie816,26289144,4
+97503255,26289144,5
+68020354,26289144,3
+89406416,26289144,4
+von71224,26289144,4
+58369888,26289144,3
+78383254,26289144,3
+74145154,26289144,5
+11258610,26289144,5
+82208968,26289144,5
+49267780,26289144,5
+39095645,26289144,3
+jasperss,26289144,5
+4413666,26289144,3
+Leslie_Cheung,26289144,3
+pengpeng_0926,26289144,4
+63125194,26289144,4
+3035586,26289144,3
+seven-land,26289144,4
+seven-land,26289144,4
+49155241,26289144,5
+131505012,26289144,3
+luluwhite,26289144,4
+130989210,26289144,3
+cuican,26289144,4
+vienna76,26289144,5
+jingchun,26289144,3
+firecrane,26289144,3
+ILWTFT,26289144,3
+tyidly,26289144,4
+61863577,26289144,4
+17342003,26289144,4
+50775749,26289144,4
+63662895,26289144,5
+watson_1990,26289144,5
+57775883,26289144,5
+1818595,26289144,3
+125229716,26289144,5
+xiangguniang,26289144,4
+2100629,26289144,5
+imhjl412,26289144,4
+55395981,26289144,4
+53050998,26289144,5
+122155449,26289144,3
+Hjalmar,26289144,4
+4200326,26289144,3
+75369986,26289144,5
+60752428,26289144,4
+78387852,26289144,3
+83389859,26289144,3
+uniquemanman,26289144,4
+spx,26289144,2
+1204890,26289144,5
+90223491,26289144,5
+65806272,26289144,4
+1585106,26289144,3
+66743693,26289144,5
+63612050,26289144,3
+network,26289144,4
+59524378,26289144,3
+51219877,26289144,4
+62158087,26289144,2
+64086666,26289144,4
+miko0409,26289144,5
+120518242,26289144,4
+39321082,26289144,5
+53205723,26289144,5
+59570753,26289144,5
+32478975,26289144,4
+Before37,26289144,3
+45448846,26289144,3
+47764209,26289144,4
+50617317,26289144,1
+sunnyday-u,26289144,4
+79426082,26289144,4
+49411009,26289144,5
+2783035,26289144,4
+81283334,26289144,5
+90787039,26289144,5
+61824176,26289144,4
+fasn,26289144,4
+43214194,26289144,4
+57440655,26289144,4
+129448195,26289144,5
+45463936,26289144,4
+103706853,26289144,4
+60088640,26289144,4
+124694624,26289144,4
+52514983,26289144,4
+48689695,26289144,4
+53152941,26289144,5
+daxiwanzi,26289144,4
+34569018,26289144,4
+61845493,26289144,5
+kikizhu,26289144,4
+Sttaan,26289144,4
+1462888,26289144,5
+129586774,26289144,4
+125583691,26289144,4
+chennanlydia,26289144,5
+58399327,26289144,4
+Chayhaw,26289144,5
+Georginaxx,26289144,5
+2659580,26289144,3
+shmilypiao,26289144,3
+102264205,26289144,1
+57572100,26289144,2
+2248064,26289144,2
+2722902,26289144,4
+34186094,26289144,3
+3039573,26289144,4
+pussycheer,26289144,4
+60862702,26289144,4
+TravelingZero,26289144,3
+130939164,26289144,4
+fengwanlu,26289144,3
+sxyyjya,26289144,1
+102691553,26289144,5
+57250310,26289144,5
+59878199,26289144,3
+yuriyurichan,26289144,4
+64205519,26289144,3
+qiaqiajing,26289144,4
+liwei1806,26289144,5
+101464428,26289144,4
+57476889,26289144,5
+SnoopyVan,26289144,3
+Ihuiyao,26289144,4
+56617946,26289144,4
+76496998,26289144,4
+40382277,26289144,3
+giochen,26289144,4
+3009094,26289144,5
+3203530,26289144,5
+vivisnbb,26289144,4
+62540867,26289144,4
+47814886,26289144,1
+3884388,26289144,2
+44863662,26289144,5
+50559543,26289144,5
+hedgehog030,26289144,3
+125386476,26289144,5
+peri_yi,26289144,4
+48823817,26289144,4
+4465154,26289144,5
+116049427,26289144,4
+simuvchen,26289144,5
+1456200,26289144,3
+60594201,26289144,2
+ukiyo823,26289144,5
+76726550,26289144,5
+31172327,26289144,1
+68584250,26289144,5
+61841169,26289144,5
+62735268,26289144,1
+84486485,26289144,5
+70449020,26289144,4
+74139024,26289144,4
+pupu19891230,26289144,4
+baozha,26289144,4
+blue1997,26289144,4
+josism,26289144,4
+tuka0710,26289144,4
+8517504,26289144,2
+50900048,26289144,3
+young0330,26289144,3
+63938212,26289144,5
+46152001,26289144,4
+50919850,26289144,5
+1110575,26289144,4
+56328149,26289144,4
+64139791,26289144,4
+58211668,26289144,5
+132563952,26289144,4
+day1900,26289144,4
+jinminghui,26289144,4
+88434665,26289144,5
+58653742,26289144,5
+75909451,26289144,5
+yangyangwu,26289144,5
+joyceatobe,26289144,4
+49489445,26289144,5
+119700095,26289144,4
+53420942,26289144,4
+Marilyn_maru,26289144,2
+63048659,26289144,3
+62993339,26289144,2
+125643700,26289144,1
+62379184,26289144,4
+L-sheep,26289144,3
+42037772,26289144,3
+maoniannian,26289144,-1
+122392735,26289144,3
+47179551,26289144,4
+falsefish,26289144,5
+1224771,26289144,-1
+45242330,26289144,4
+41008714,26289144,5
+67811520,26289144,1
+67811520,26289144,1
+50807724,26289144,4
+sofarpluto,26289144,4
+lowai,26289144,5
+130856040,26289144,3
+76346345,26289144,4
+bdmm,26289144,4
+Hazelxxxx,26289144,4
+1278367,26289144,3
+fufu28,26289144,4
+BUNNV,26289144,3
+62038429,26289144,5
+IAU,26289144,5
+3276784,26289144,-1
+chrisairfly,26289144,4
+51783209,26289144,4
+lzannie823,26289144,4
+Simpurify,26289144,5
+1521152,26289144,5
+52981467,26289144,4
+74569443,26289144,4
+121329465,26289144,4
+crazychenchen,26289144,3
+1166849,26289144,4
+boneloverock,26289144,4
+88719109,26289144,5
+59970340,26289144,-1
+48909969,26289144,3
+51759241,26289144,3
+tq0fqeu,26289144,4
+littlecar,26289144,5
+56196085,26289144,5
+easysmile,26289144,4
+utopialand,26289144,4
+3744088,26289144,4
+smilingwords,26289144,5
+42695400,26289144,4
+2475047,26289144,3
+dulllennon,26289144,4
+2833700,26289144,5
+27627449,26289144,3
+70737495,26289144,4
+YoungChow,26289144,5
+128381248,26289144,3
+91573211,26289144,4
+49860842,26289144,5
+33439278,26289144,3
+62035499,26289144,3
+xukunbing,26289144,5
+UncleTS,26289144,3
+zyw19870917,26289144,3
+101915583,26289144,4
+2237566,26289144,5
+58323332,26289144,5
+22525155,26289144,4
+1147396,26289144,3
+80786128,26289144,3
+lalack1987,26289144,5
+59167569,26289144,5
+37408838,26289144,3
+76800880,26289144,3
+35203556,26289144,3
+115943222,26289144,4
+xiekaiwait,26289144,5
+wzx921009,26289144,4
+119742644,26289144,4
+2052146,26289144,-1
+46523085,26289144,4
+imagefly,26289144,4
+40642356,26289144,2
+jeyhello,26289144,4
+knightingale,26289144,5
+3139782,26289144,4
+wsxh,26289144,4
+80768830,26289144,4
+bignoodle,26289144,3
+77883575,26289144,5
+46719875,26289144,5
+erhuyouxuan,26289144,4
+62983982,26289144,5
+48005250,26289144,4
+97880539,26289144,4
+Talushen,26289144,4
+boffin,26289144,3
+50425824,26289144,5
+11680578,26289144,4
+56451790,26289144,3
+84504176,26289144,4
+42604000,26289144,3
+40787821,26289144,2
+lilygoy,26289144,4
+1456080,26289144,4
+deafbear,26289144,4
+cancerism,26289144,3
+74261928,26289144,3
+77292800,26289144,4
+3060677,26289144,5
+50943462,26289144,5
+83090614,26289144,4
+flyingfree8012,26289144,4
+imalright,26289144,2
+49782457,26289144,4
+131837034,26289144,4
+vegetablepenny,26289144,3
+86907672,26289144,3
+82133013,26289144,4
+64056530,26289144,4
+33793057,26289144,5
+77592151,26289144,5
+46721645,26289144,5
+daijun1988,26289144,3
+pumeiling,26289144,4
+58697566,26289144,3
+brittanyLee,26289144,4
+youhui,26289144,4
+2725757,26289144,4
+constantmartin,26289144,4
+guaishou1017,26289144,4
+47838456,26289144,4
+59013874,26289144,4
+47227699,26289144,5
+104432779,26289144,5
+58797277,26289144,4
+53533608,26289144,5
+52829142,26289144,3
+candy_maoshijia,26289144,5
+71108776,26289144,4
+2113603,26289144,3
+50426260,26289144,4
+2298998,26289144,5
+79037298,26289144,4
+68470005,26289144,3
+18747582,26289144,3
+119428504,26289144,3
+64091286,26289144,4
+59773682,26289144,4
+72233881,26289144,4
+88350907,26289144,4
+126281883,26289144,4
+47708776,26289144,4
+57666536,26289144,4
+rucool,26289144,4
+mian823,26289144,4
+berserker,26289144,3
+Miss_tu7,26289144,5
+daidai1346,26289144,4
+102098975,26289144,4
+4324357,26289144,3
+4160222,26289144,3
+71086095,26289144,4
+2911268,26289144,4
+44927626,26289144,5
+83429427,26289144,4
+33525010,26289144,4
+38877757,26289144,4
+2419512,26289144,5
+3005065,26289144,4
+Song1183,26289144,5
+yangsongzhou,26289144,5
+2538688,26289144,4
+ericatdoll,26289144,4
+56235039,26289144,4
+leafwaiting,26289144,3
+mazedcity,26289144,5
+2935013,26289144,4
+davidttmam,26289144,3
+69040717,26289144,3
+35473568,26289144,5
+isseyisseyissey,26289144,3
+creepofhuihui,26289144,3
+65526333,26289144,5
+hualiaoo,26289144,4
+Wh1452881875,26289144,5
+2892895,26289144,5
+MissFebruary,26289144,2
+DUNHILLJJ,26289144,5
+75381849,26289144,5
+121085525,26289144,4
+43322350,26289144,5
+63677986,26289144,3
+51763445,26289144,4
+58360970,26289144,5
+4668212,26289144,4
+47166458,26289144,5
+gxlengxue,26289144,5
+43302321,26289144,4
+34473328,26289144,4
+50048433,26289144,4
+aoeiuy,26289144,4
+xixi9000,26289144,4
+1109340,26289144,4
+mogudiandiankit,26289144,5
+yanoooo,26289144,5
+50025753,26289144,3
+120983042,26289144,4
+132446691,26289144,3
+maggiemars,26289144,3
+44888850,26289144,4
+46317949,26289144,4
+80717633,26289144,5
+92306245,26289144,4
+92855943,26289144,4
+2565413,26289144,4
+52678874,26289144,4
+126530174,26289144,3
+59803290,26289144,-1
+cera,26289144,3
+fanxiaoci,26289144,4
+yuki_haru,26289144,5
+52948312,26289144,4
+79588582,26289144,1
+orangeair,26289144,5
+Utopiartist,26289144,3
+131463589,26289144,1
+miss-sun,26289144,4
+jjzzjoyce,26289144,5
+47123122,26289144,3
+83298227,26289144,3
+52579292,26289144,5
+DavyNight,26289144,4
+62715368,26289144,5
+85642211,26289144,5
+48506304,26289144,5
+69274709,26289144,5
+120391642,26289144,5
+124744172,26289144,5
+58007520,26289144,4
+4549116,26289144,5
+oncemultiverse,26289144,3
+candymelody,26289144,4
+49558870,26289144,3
+angemon,26289144,5
+46553524,26289144,2
+sodaorchid,26289144,3
+evan.liew,26289144,4
+hottgb,26289144,5
+2597570,26289144,2
+wolfenstein,26289144,5
+2596592,26289144,5
+127731435,26289144,5
+38012408,26289144,4
+yunyunjustakid,26289144,4
+youyou3709,26289144,5
+vamos_revenge,26289144,4
+gaiasmile,26289144,4
+83497810,26289144,4
+45590452,26289144,4
+Pomethos,26289144,-1
+flyingchips,26289144,3
+40141522,26289144,4
+yeung123,26289144,4
+47081544,26289144,4
+45238478,26289144,2
+mrroyal,26289144,4
+42291314,26289144,5
+36454323,26289144,3
+StevenW,26289144,4
+101795214,26289144,4
+45088175,26289144,3
+yang2333,26289144,5
+53431261,26289144,5
+48212517,26289144,5
+70081048,26289144,4
+roll7,26289144,3
+119248717,26289144,5
+130798088,26289144,5
+79945542,26289144,4
+52275175,26289144,5
+1831722,26289144,3
+62843919,26289144,4
+kakayanzi,26289144,4
+102600793,26289144,4
+cuisandy,26289144,5
+30569646,26289144,5
+51688659,26289144,2
+82630847,26289144,3
+45954041,26289144,4
+61110036,26289144,3
+fatenighting,26289144,3
+101963490,26289144,5
+xiaotao,26289144,5
+agathayi,26289144,5
+80071306,26289144,4
+lovely_love,26289144,3
+sugarl,26289144,5
+Liew_qing,26289144,5
+66598578,26289144,5
+78493096,26289144,5
+5520945,26289144,5
+69653798,26289144,4
+75894849,26289144,4
+27054474,26289144,5
+hanadomoto,26289144,4
+s.a.k.u.r.a,26289144,5
+charlene1996,26289144,-1
+steve647,26289144,5
+53932937,26289144,4
+95794515,26289144,4
+HEYHo,26289144,4
+dofine,26289144,3
+86254981,26289144,4
+wayephang,26289144,4
+below17,26289144,4
+89270889,26289144,4
+56244631,26289144,4
+greencottonrose,26289144,4
+2823579,26289144,5
+MENG-331,26289144,3
+74779895,26289144,4
+K220810,26289144,5
+70160255,26289144,4
+Link0406,26289144,4
+53707161,26289144,3
+Sean__Wang,26289144,4
+2847632,26289144,3
+57717534,26289144,4
+71947752,26289144,3
+64909692,26289144,5
+superhy,26289144,4
+longislandiced,26289144,3
+37082050,26289144,3
+ccccccIty,26289144,2
+ywx100407,26289144,-1
+7881838,26289144,3
+haman,26289144,5
+51845720,26289144,5
+heydi,26289144,3
+48480567,26289144,4
+122051773,26289144,5
+51942274,26289144,3
+rdhm,26289144,3
+129692137,26289144,5
+62150747,26289144,4
+95017002,26289144,2
+47715196,26289144,-1
+3111680,26289144,5
+51660342,26289144,3
+facier,26289144,5
+78413454,26289144,5
+52718923,26289144,5
+19171602,26289144,4
+2788632,26289144,3
+50164012,26289144,3
+49073345,26289144,4
+43595713,26289144,4
+nana4132,26289144,4
+57772675,26289144,3
+45228749,26289144,4
+35155184,26289144,4
+junjunshuai,26289144,5
+zhaix0221,26289144,5
+w.uknow,26289144,4
+curlooo,26289144,3
+babywineer,26289144,5
+yuxiangyun,26289144,5
+61287576,26289144,5
+frienger,26289144,2
+ciel2jia,26289144,5
+48990593,26289144,4
+baobao520,26289144,4
+baobao520,26289144,4
+88716209,26289144,-1
+q962265267,26289144,4
+2596903,26289144,3
+3867934,26289144,2
+78343150,26289144,4
+ShuangXiaodan,26289144,3
+131855831,26289144,4
+allenwangzihan,26289144,3
+81504159,26289144,3
+3859112,26289144,3
+17006018,26289144,4
+monkeyfish,26289144,1
+carmengmm,26289144,4
+imvesper,26289144,4
+3565998,26289144,5
+46061693,26289144,4
+2401713,26289144,5
+38487515,26289144,4
+56689572,26289144,3
+zhaosq,26289144,4
+52683154,26289144,-1
+74286517,26289144,4
+zoe-chung,26289144,3
+wangyilin321,26289144,4
+32462724,26289144,5
+53486329,26289144,4
+grinch,26289144,3
+MissAria_R,26289144,4
+60853182,26289144,3
+46242801,26289144,5
+2187326,26289144,3
+mandylu2010,26289144,3
+59798760,26289144,4
+ninababy25,26289144,4
+chyq519,26289144,4
+74892606,26289144,4
+39034881,26289144,4
+38821369,26289144,4
+61538847,26289144,4
+myjune,26289144,4
+56580928,26289144,4
+h724922851,26289144,2
+cca2222223,26289144,5
+43842293,26289144,4
+69272743,26289144,4
+anthony007,26289144,5
+43716096,26289144,4
+97659248,26289144,3
+sanfuren,26289144,5
+50179673,26289144,5
+70176070,26289144,4
+92270856,26289144,5
+binkychou,26289144,3
+yongliai,26289144,4
+aaate,26289144,4
+pengchen,26289144,4
+51377009,26289144,3
+91926682,26289144,4
+89723194,26289144,2
+89723194,26289144,2
+43882997,26289144,4
+JasmineYu,26289144,4
+rex-hu,26289144,5
+nanmomo,26289144,5
+hiyangtao,26289144,4
+132954597,26289144,5
+51716006,26289144,4
+thorllaphi,26289144,5
+47359205,26289144,4
+whz1990911,26289144,5
+3290692,26289144,5
+101747409,26289144,3
+52922906,26289144,4
+xy_sailors,26289144,2
+jyuelovejay,26289144,-1
+121720779,26289144,1
+ms0604,26289144,4
+73571891,26289144,4
+Laty,26289144,5
+dorothy6851,26289144,5
+132954430,26289144,4
+thegarbo,26289144,4
+115608839,26289144,3
+ayannagai,26289144,1
+jollychang,26289144,2
+3353179,26289144,3
+82685125,26289144,3
+4160312,26289144,5
+62764076,26289144,4
+8151313,26289144,4
+83135902,26289144,5
+lesleylui,26289144,4
+anniefay,26289144,5
+KAGAMI-J,26289144,4
+113924103,26289144,3
+gavinsays,26289144,3
+2510654,26289144,3
+63651791,26289144,5
+IAN-M,26289144,5
+IAN-M,26289144,5
+132954116,26289144,1
+songchunxue,26289144,5
+amateur,26289144,3
+68882429,26289144,4
+wss5336,26289144,4
+124285500,26289144,4
+67387298,26289144,4
+ballteda,26289144,3
+niazion,26289144,4
+herbage,26289144,4
+47707485,26289144,2
+xiedan51335,26289144,5
+74941787,26289144,4
+3015699,26289144,4
+72279651,26289144,4
+75173878,26289144,5
+18349242,26289144,3
+130164378,26289144,4
+123641994,26289144,5
+36507254,26289144,4
+58189352,26289144,3
+zsq0028347,26289144,4
+64855629,26289144,3
+ukawashou,26289144,4
+3155091,26289144,5
+82825771,26289144,4
+91319965,26289144,5
+71086916,26289144,5
+131535153,26289144,3
+zhenzhen07,26289144,3
+evim,26289144,4
+weiliaoliao,26289144,4
+82582719,26289144,4
+39443486,26289144,4
+50118479,26289144,4
+42292299,26289144,5
+3619392,26289144,5
+64539712,26289144,4
+34549773,26289144,4
+linghufei,26289144,5
+lnayg1221,26289144,5
+72228476,26289144,4
+65937993,26289144,-1
+chubby_yy,26289144,4
+circle920,26289144,4
+Lena-Ho,26289144,4
+31108272,26289144,4
+80012530,26289144,5
+summer-oblivion,26289144,5
+64635717,26289144,-1
+132811341,26289144,4
+daguai7,26289144,4
+101114328,26289144,4
+jessica0118,26289144,5
+haozhaiyihao,26289144,4
+MovieL,26289144,2
+38808960,26289144,5
+Sigrid_Lu,26289144,3
+zouzouwanwan,26289144,4
+60119095,26289144,5
+63760364,26289144,5
+132178432,26289144,5
+1854765,26289144,3
+62509855,26289144,-1
+132953078,26289144,5
+132952880,26289144,4
+qianqianaini,26289144,1
+1584024,26289144,4
+56461793,26289144,4
+abelleba,26289144,1
+behavivian,26289144,3
+52167289,26289144,4
+Chloezjy,26289144,4
+72693000,26289144,4
+54961193,26289144,4
+xurn,26289144,5
+44610743,26289144,5
+15187405,26289144,3
+74719967,26289144,4
+131731039,26289144,5
+52434759,26289144,4
+64284331,26289144,4
+Gayfriend10ve,26289144,-1
+119464315,26289144,1
+elainexyx,26289144,3
+HilaryYue,26289144,4
+51103959,26289144,2
+126638748,26289144,5
+130603786,26289144,5
+qikun,26289144,4
+52455925,26289144,5
+71651583,26289144,5
+yachne1220,26289144,5
+32705581,26289144,3
+4826996,26289144,5
+63753537,26289144,4
+62346407,26289144,5
+danzi0105,26289144,4
+42797360,26289144,4
+woodleaf_723,26289144,4
+imoviekobe,26289144,3
+markmong,26289144,4
+binfancy,26289144,4
+44345461,26289144,3
+56964513,26289144,5
+122702155,26289144,5
+64189007,26289144,4
+little9,26289144,4
+132952544,26289144,5
+129110274,26289144,-1
+57319762,26289144,3
+forever-me,26289144,-1
+djtears88,26289144,4
+SiweiSun,26289144,4
+120555899,26289144,3
+120605598,26289144,4
+3989670,26289144,4
+54713128,26289144,3
+4695427,26289144,4
+93375560,26289144,5
+air0113,26289144,5
+ramonachan,26289144,2
+60788836,26289144,4
+62582467,26289144,5
+46195556,26289144,4
+130400247,26289144,-1
+kikilili006,26289144,5
+1971815,26289144,4
+i_djx,26289144,4
+120388551,26289144,5
+49073976,26289144,5
+48710899,26289144,1
+mdx622813,26289144,5
+77428381,26289144,5
+FORYUKI,26289144,4
+45107933,26289144,4
+49649488,26289144,3
+62296200,26289144,5
+79507258,26289144,5
+122437580,26289144,4
+2903830,26289144,4
+113954593,26289144,3
+53646910,26289144,5
+41734674,26289144,3
+55708358,26289144,5
+48503456,26289144,2
+mangojoan,26289144,4
+3113509,26289144,4
+mushroom198812,26289144,4
+46342568,26289144,4
+91212635,26289144,4
+3255421,26289144,-1
+nangongmocheng,26289144,4
+qinwenrene,26289144,5
+45594176,26289144,5
+52273001,26289144,3
+marvin42,26289144,4
+52499863,26289144,3
+60590150,26289144,3
+3165431,26289144,3
+rainbowhuizi,26289144,5
+luancai,26289144,4
+lovesunny,26289144,4
+69237478,26289144,5
+kuruto,26289144,4
+124060014,26289144,4
+55886349,26289144,5
+bluelibra.zero,26289144,5
+miss90,26289144,4
+44157753,26289144,3
+ran3233,26289144,5
+ilovesloth,26289144,5
+43883337,26289144,4
+3273386,26289144,4
+Cbear,26289144,3
+64023928,26289144,3
+yvtoutou,26289144,4
+65399277,26289144,4
+dl13619598865,26289144,4
+youyiwanan,26289144,5
+62826188,26289144,4
+4468522,26289144,4
+lixintong,26289144,5
+131499885,26289144,3
+sullivan_lee,26289144,4
+yyyyyrl,26289144,4
+109021206,26289144,3
+4411528,26289144,4
+50747076,26289144,4
+baisechengai,26289144,4
+onlyYH,26289144,3
+4584624,26289144,4
+43228715,26289144,4
+woaichanganmou,26289144,4
+wpy114,26289144,3
+132951145,26289144,-1
+52561499,26289144,4
+46810832,26289144,5
+2416031,26289144,4
+38567114,26289144,3
+sophiaqing,26289144,4
+88321543,26289144,5
+46066822,26289144,4
+70336535,26289144,4
+83883222,26289144,3
+50937562,26289144,5
+xiaomo1,26289144,3
+smartsz,26289144,5
+72683607,26289144,4
+4310321,26289144,3
+131148728,26289144,5
+68526356,26289144,5
+50058305,26289144,5
+51086058,26289144,3
+121192728,26289144,3
+35447196,26289144,1
+46017359,26289144,5
+big_and_small,26289144,5
+lanshangba,26289144,4
+86138673,26289144,5
+lapland,26289144,5
+Remember.,26289144,3
+60870044,26289144,2
+daisyyy1989,26289144,4
+2980085,26289144,4
+neoelsa,26289144,5
+93158337,26289144,5
+leann1217,26289144,5
+84231339,26289144,4
+29710107,26289144,5
+132438473,26289144,1
+summersoso,26289144,5
+123970913,26289144,5
+spritefall,26289144,3
+mengyejian,26289144,3
+Nemoyo,26289144,5
+46712820,26289144,5
+44335994,26289144,5
+63773386,26289144,2
+xiaoyuan_0310,26289144,3
+132949225,26289144,5
+langlangtalent,26289144,-1
+49543853,26289144,5
+55511378,26289144,3
+122753689,26289144,4
+65350542,26289144,4
+39603337,26289144,4
+skyisquiet,26289144,4
+67385694,26289144,3
+83660165,26289144,3
+111974961,26289144,5
+54338591,26289144,4
+87277999,26289144,5
+32314974,26289144,5
+53006212,26289144,3
+Tavico,26289144,4
+33202523,26289144,4
+55643387,26289144,4
+janyue,26289144,2
+juicebiubiu,26289144,5
+80098161,26289144,5
+4498928,26289144,5
+Gulnigar,26289144,4
+53225925,26289144,5
+42962790,26289144,4
+67694516,26289144,4
+zjlovezj,26289144,4
+52132683,26289144,5
+46728642,26289144,4
+zhou0603,26289144,4
+120854619,26289144,5
+64770213,26289144,3
+132264499,26289144,5
+37410275,26289144,4
+4247692,26289144,3
+52282629,26289144,4
+121849085,26289144,4
+66596564,26289144,4
+changefiona,26289144,-1
+Dasiycat,26289144,4
+74659221,26289144,5
+116649672,26289144,5
+115874709,26289144,4
+misskanie,26289144,4
+fuckmetender,26289144,5
+54251461,26289144,3
+niubo,26289144,4
+120527000,26289144,5
+ryeon,26289144,4
+130065923,26289144,5
+Sucydream,26289144,3
+53725270,26289144,5
+79329873,26289144,4
+kayone119,26289144,5
+ZhhOnearth,26289144,5
+54108257,26289144,5
+alwayslo7e,26289144,5
+75861648,26289144,4
+48463715,26289144,4
+sanyoumu,26289144,4
+wenzhengchen,26289144,4
+132713788,26289144,5
+38590154,26289144,5
+longlystone,26289144,4
+132950258,26289144,5
+colin930,26289144,4
+124354241,26289144,5
+50221817,26289144,4
+88203401,26289144,4
+BELOW-the-MOON,26289144,5
+83269650,26289144,3
+52172835,26289144,4
+taylorzc,26289144,5
+57436067,26289144,4
+zhtianyu,26289144,3
+jinqianmei,26289144,4
+102652883,26289144,4
+34234049,26289144,4
+rey89,26289144,5
+tapir_yi,26289144,5
+56174035,26289144,4
+130324639,26289144,5
+42939161,26289144,4
+88019378,26289144,-1
+Laoyuelife,26289144,5
+shousolo,26289144,3
+47885824,26289144,5
+122946337,26289144,3
+54757798,26289144,3
+songorz,26289144,4
+rampage_akasha,26289144,3
+114618835,26289144,4
+mio1989,26289144,4
+zhangrenran,26289144,3
+3751249,26289144,4
+respect_Z,26289144,5
+13736379,26289144,5
+127424592,26289144,5
+xylonapp,26289144,3
+122198216,26289144,5
+leLJ,26289144,4
+49083244,26289144,5
+40909491,26289144,5
+lumu,26289144,5
+67729273,26289144,4
+51223075,26289144,5
+isaxue,26289144,4
+damnm,26289144,4
+a1234567,26289144,5
+kymair,26289144,4
+56298430,26289144,4
+38613760,26289144,3
+1271321,26289144,5
+90751741,26289144,4
+130490060,26289144,4
+xizi90,26289144,4
+2049952,26289144,4
+120822205,26289144,2
+49732037,26289144,5
+49732037,26289144,5
+eternalsummer87,26289144,4
+Blair-L,26289144,5
+42367485,26289144,4
+cai_smalleyes,26289144,-1
+2846883,26289144,5
+55021112,26289144,4
+53177182,26289144,5
+mr-carrot,26289144,4
+3540030,26289144,5
+63465084,26289144,5
+quyi1012,26289144,4
+ebear,26289144,4
+4648701,26289144,5
+alienecho,26289144,4
+52925540,26289144,4
+65084443,26289144,4
+iittot,26289144,5
+ulayh0607,26289144,4
+130164086,26289144,4
+yoyowenwen007,26289144,4
+Lucy.Y,26289144,3
+shawivy,26289144,5
+tht1995,26289144,5
+39695667,26289144,3
+36226396,26289144,5
+123542528,26289144,5
+131563671,26289144,4
+62122609,26289144,5
+114567490,26289144,5
+VIVIAN-ZS,26289144,5
+47114271,26289144,4
+132949264,26289144,4
+Cuba,26289144,4
+chenkefeng,26289144,4
+131218666,26289144,4
+49136862,26289144,-1
+48300402,26289144,4
+59320480,26289144,4
+3557152,26289144,4
+3441923,26289144,4
+jelly12,26289144,5
+57786267,26289144,3
+83324529,26289144,5
+foreverjc,26289144,4
+Y-chloe,26289144,5
+48804184,26289144,4
+58408279,26289144,5
+precmomen,26289144,3
+nineautumn,26289144,4
+marvirah,26289144,5
+125437988,26289144,5
+63371877,26289144,4
+2687697,26289144,1
+64064680,26289144,5
+37589516,26289144,4
+63003958,26289144,5
+55455531,26289144,4
+liaoxiaoben,26289144,5
+47629954,26289144,2
+132948550,26289144,5
+49893874,26289144,3
+nss1w1,26289144,4
+eill,26289144,1
+caseyqian,26289144,5
+53276382,26289144,5
+echosmilefor,26289144,4
+122178478,26289144,5
+3483729,26289144,4
+guohaomeitian,26289144,5
+gongzitian,26289144,3
+June_1,26289144,4
+mirroroo,26289144,5
+63849240,26289144,3
+3719037,26289144,-1
+83070447,26289144,5
+ccweiyang,26289144,4
+70272043,26289144,4
+49417223,26289144,-1
+francesyu9233,26289144,5
+58762404,26289144,3
+yifeng2013,26289144,3
+40904465,26289144,1
+momo0724,26289144,4
+miss-rome,26289144,4
+132947515,26289144,-1
+14482266,26289144,5
+may5may,26289144,5
+Chenxionh,26289144,4
+59636835,26289144,-1
+guandao--,26289144,5
+2014851,26289144,4
+xuancanna,26289144,5
+3906584,26289144,4
+wwwsxst,26289144,4
+yimutan,26289144,4
+130957788,26289144,3
+28649058,26289144,5
+61369928,26289144,2
+132948495,26289144,5
+84896449,26289144,5
+78189213,26289144,4
+58624199,26289144,3
+67007418,26289144,4
+60055945,26289144,4
+11786089,26289144,4
+57811548,26289144,4
+1477802,26289144,5
+36112089,26289144,4
+56702437,26289144,4
+59421721,26289144,4
+53176271,26289144,5
+58088013,26289144,4
+29155785,26289144,5
+131504998,26289144,4
+salome69,26289144,-1
+cyblocker,26289144,5
+mylittlefour,26289144,4
+samcoco,26289144,4
+17407986,26289144,5
+17407986,26289144,5
+liwujiu,26289144,5
+83927943,26289144,4
+17247772,26289144,4
+62970536,26289144,5
+cao_mq1989.,26289144,4
+69429649,26289144,3
+Alinaqueen,26289144,2
+quanzhouren,26289144,4
+128522795,26289144,4
+novasu,26289144,4
+Serena201314,26289144,3
+nancy.chang,26289144,5
+yaohooo,26289144,4
+50036509,26289144,3
+jsh0915,26289144,4
+132948130,26289144,5
+echo7forest,26289144,3
+ameliefei,26289144,5
+sheepoy,26289144,5
+52622213,26289144,4
+lan.chan,26289144,4
+Summer_zhou7,26289144,5
+47755264,26289144,4
+betty3,26289144,1
+7214513,26289144,4
+42949382,26289144,3
+58379555,26289144,5
+takigo,26289144,4
+4005034,26289144,5
+116308396,26289144,4
+3140556,26289144,3
+SummerDuan,26289144,5
+131019210,26289144,4
+49258293,26289144,3
+48805048,26289144,5
+32485856,26289144,3
+iash,26289144,4
+68490361,26289144,4
+flatpeach,26289144,4
+waka7,26289144,3
+sujutotheme,26289144,2
+4265133,26289144,5
+79302633,26289144,5
+4427458,26289144,4
+93967033,26289144,5
+50565369,26289144,5
+36505752,26289144,5
+lovesay,26289144,4
+6923590,26289144,4
+jiejueliaoyi,26289144,5
+123304129,26289144,5
+63513932,26289144,4
+2699977,26289144,5
+73631748,26289144,3
+OrangeWeiei,26289144,3
+61754132,26289144,4
+53908274,26289144,3
+53984450,26289144,4
+132750086,26289144,3
+121055562,26289144,4
+yours8687,26289144,5
+lf89,26289144,5
+kidadida,26289144,4
+91152583,26289144,5
+101462415,26289144,4
+preservative,26289144,5
+98618508,26289144,4
+60311898,26289144,3
+132946797,26289144,4
+33525277,26289144,4
+46082749,26289144,4
+47239413,26289144,2
+90985861,26289144,5
+60881895,26289144,4
+64315881,26289144,3
+76299602,26289144,5
+zihaozai0407,26289144,5
+49278912,26289144,5
+66217108,26289144,3
+42016293,26289144,3
+BlackForever,26289144,4
+shoooooock,26289144,4
+32995807,26289144,3
+dreamownlove,26289144,5
+121330964,26289144,3
+claireGuoDH,26289144,5
+zhuakuangshitai,26289144,4
+63045251,26289144,5
+40401643,26289144,4
+daseinbo,26289144,4
+cosmos-deu,26289144,3
+51930449,26289144,5
+45519656,26289144,4
+58523083,26289144,3
+novel,26289144,4
+80230025,26289144,5
+lilian0724,26289144,4
+silverhawk,26289144,3
+56500125,26289144,5
+stanley1459,26289144,3
+2243854,26289144,4
+acepatrick,26289144,4
+69998360,26289144,3
+yidoudou,26289144,4
+92302421,26289144,5
+68501710,26289144,-1
+80991459,26289144,3
+gaozixin,26289144,5
+59276752,26289144,4
+55807482,26289144,5
+52060705,26289144,4
+119222171,26289144,5
+youeqian,26289144,4
+sunshineautumn,26289144,4
+Vampire1004,26289144,5
+46753092,26289144,4
+48086861,26289144,4
+oldwolfnwf,26289144,4
+yixi7,26289144,4
+lakita0410,26289144,5
+82481394,26289144,2
+shanghai11,26289144,5
+58737934,26289144,4
+17871243,26289144,4
+46061169,26289144,4
+67246411,26289144,4
+glax,26289144,4
+132344039,26289144,5
+1747708,26289144,5
+47519598,26289144,5
+80358373,26289144,5
+heather_d,26289144,4
+tasuka_l,26289144,3
+55603094,26289144,3
+87599661,26289144,3
+VivianLL,26289144,3
+freeup157,26289144,3
+50003428,26289144,1
+47681702,26289144,4
+132655760,26289144,-1
+35890249,26289144,5
+68809907,26289144,4
+73952321,26289144,2
+thushao,26289144,5
+105530942,26289144,4
+SouYing,26289144,4
+4509975,26289144,4
+47305840,26289144,4
+fengdemengxiang,26289144,5
+50769743,26289144,4
+zc1020,26289144,3
+48658567,26289144,4
+4587293,26289144,4
+49139965,26289144,4
+VonXL,26289144,4
+lokolifestyle,26289144,4
+hxh1992,26289144,4
+3431557,26289144,4
+131112549,26289144,3
+49231708,26289144,5
+ECHO0707,26289144,2
+e2cat,26289144,4
+2198979,26289144,5
+zyycat,26289144,4
+48829574,26289144,3
+hatsukoitaste,26289144,4
+xzhyqq866,26289144,5
+2167564,26289144,4
+Tshangxin,26289144,5
+hui_112233,26289144,3
+4333099,26289144,4
+55737203,26289144,2
+125738022,26289144,3
+53143088,26289144,3
+57629601,26289144,5
+62820344,26289144,2
+118036743,26289144,3
+junelong,26289144,5
+115590633,26289144,4
+128935761,26289144,4
+helloanthony,26289144,5
+56173485,26289144,5
+75115896,26289144,5
+lxmoe0617,26289144,5
+paandpa,26289144,5
+swell1019,26289144,4
+gransong,26289144,5
+4134966,26289144,4
+52877486,26289144,4
+bella99,26289144,5
+38396842,26289144,4
+kinobear,26289144,4
+98499862,26289144,5
+braveshengchun,26289144,5
+42733924,26289144,5
+68778355,26289144,3
+summerx7,26289144,-1
+kaarlo,26289144,5
+51907715,26289144,4
+Panmatan,26289144,5
+44130617,26289144,5
+yidaijiankuan,26289144,5
+121519477,26289144,4
+132944406,26289144,4
+124454581,26289144,4
+100054657,26289144,4
+43909006,26289144,4
+132943744,26289144,4
+132632092,26289144,-1
+4370686,26289144,4
+96904757,26289144,5
+SunnySumey,26289144,3
+gloryofnt,26289144,4
+91397625,26289144,5
+carrie0905,26289144,5
+88429697,26289144,4
+mzmuxin,26289144,4
+tami0112,26289144,4
+102216776,26289144,5
+runningaway11,26289144,5
+wyc198765,26289144,5
+ding1yi,26289144,3
+zt1616789_,26289144,5
+115279614,26289144,5
+78575214,26289144,5
+wangxin128,26289144,4
+73866765,26289144,4
+q2lee,26289144,5
+65889401,26289144,4
+75690116,26289144,5
+winnieshoney,26289144,5
+129701605,26289144,4
+fyyxf,26289144,4
+52709247,26289144,4
+lizzywoo,26289144,3
+68739318,26289144,5
+130134159,26289144,5
+66684520,26289144,4
+joko14,26289144,3
+113602700,26289144,5
+hm1993aa,26289144,4
+78320811,26289144,5
+no1like_u,26289144,5
+payolee,26289144,4
+43766729,26289144,4
+cindysummer,26289144,4
+4678321,26289144,4
+48793240,26289144,4
+51292649,26289144,4
+50598564,26289144,5
+53307313,26289144,4
+75547814,26289144,3
+132789634,26289144,-1
+84921848,26289144,4
+81083696,26289144,4
+120069048,26289144,5
+2797260,26289144,5
+peerless14,26289144,5
+111572690,26289144,3
+48065738,26289144,4
+xiaoan7EF,26289144,-1
+62652374,26289144,5
+dzone,26289144,4
+45305916,26289144,4
+58708776,26289144,5
+59997067,26289144,3
+42695669,26289144,4
+2859580,26289144,4
+92230776,26289144,4
+hal-end,26289144,4
+4074985,26289144,5
+120551719,26289144,4
+makamoz,26289144,4
+lcx79,26289144,4
+123133275,26289144,4
+83156275,26289144,5
+54827704,26289144,4
+54351295,26289144,4
+safara,26289144,4
+zhousophia,26289144,4
+Creep_,26289144,3
+52292753,26289144,4
+47543097,26289144,5
+76688945,26289144,5
+1887825,26289144,3
+55668412,26289144,4
+evieyao,26289144,4
+49857976,26289144,3
+83183139,26289144,5
+60793015,26289144,5
+12468955,26289144,4
+dreamcatcher17,26289144,5
+41866327,26289144,5
+XX210,26289144,5
+eDDDie,26289144,5
+zstars,26289144,4
+61852645,26289144,3
+63853626,26289144,3
+Binnie_Allen,26289144,5
+131466194,26289144,4
+51068875,26289144,4
+49917435,26289144,3
+septemwong,26289144,5
+70816379,26289144,5
+132942537,26289144,5
+childlikesplend,26289144,5
+55444870,26289144,4
+yanyi221,26289144,4
+122881934,26289144,4
+63156283,26289144,5
+37179759,26289144,3
+liiinda,26289144,1
+xuyimeng,26289144,4
+78458638,26289144,4
+65077678,26289144,4
+4429031,26289144,5
+132942370,26289144,5
+cyj970205,26289144,3
+81337782,26289144,5
+43854747,26289144,5
+129778224,26289144,2
+16992419,26289144,5
+KIMMY27,26289144,3
+96660049,26289144,4
+4369602,26289144,3
+90904421,26289144,4
+wsgjr,26289144,5
+monkey.q,26289144,5
+37131063,26289144,3
+13835219,26289144,3
+3019857,26289144,5
+jewelshao,26289144,4
+42610129,26289144,5
+1765008,26289144,4
+60448203,26289144,5
+128443021,26289144,5
+129478508,26289144,4
+q455,26289144,2
+62968482,26289144,5
+106341534,26289144,4
+122251713,26289144,4
+53512949,26289144,4
+50136165,26289144,4
+dongjiayue,26289144,5
+distinguished,26289144,5
+jessetoo,26289144,4
+46960959,26289144,4
+87628591,26289144,4
+chenmess,26289144,3
+102675224,26289144,4
+62571454,26289144,4
+131276453,26289144,1
+130359713,26289144,4
+Yindaxian,26289144,4
+36757046,26289144,5
+113212712,26289144,5
+51435556,26289144,5
+81003990,26289144,4
+43286732,26289144,4
+114977043,26289144,4
+48137592,26289144,4
+56104597,26289144,2
+61132009,26289144,5
+42500417,26289144,5
+65719594,26289144,4
+132940953,26289144,5
+27743840,26289144,5
+76462847,26289144,4
+suxiaodan,26289144,4
+75916776,26289144,4
+79534422,26289144,4
+54695817,26289144,5
+fighting1016,26289144,3
+46361626,26289144,1
+29935501,26289144,5
+98269929,26289144,4
+dengdaiyouyi,26289144,3
+bieshaohui,26289144,4
+91303859,26289144,4
+yororo.7,26289144,2
+genglihui,26289144,5
+ZEIN.SY,26289144,4
+89814111,26289144,3
+64010291,26289144,5
+131011949,26289144,3
+57824448,26289144,4
+44271862,26289144,2
+41512395,26289144,3
+konghanlei,26289144,1
+2242668,26289144,5
+4075540,26289144,3
+43597625,26289144,5
+paomians,26289144,5
+3198572,26289144,5
+mickkey,26289144,5
+latticetsui,26289144,-1
+82507807,26289144,5
+baisiliu,26289144,4
+119829181,26289144,3
+91746178,26289144,4
+63426980,26289144,5
+X-forest,26289144,5
+129245907,26289144,5
+ylamb,26289144,4
+lijun_,26289144,4
+56408861,26289144,5
+chinimei,26289144,5
+orangeumoon,26289144,4
+132940000,26289144,2
+dingxinpeng,26289144,4
+lynnstefanie,26289144,3
+dekaixu,26289144,2
+acbc115,26289144,4
+46670046,26289144,4
+unabian,26289144,4
+72091054,26289144,4
+51763262,26289144,5
+claire1031,26289144,5
+jacobin,26289144,1
+49093725,26289144,5
+74103020,26289144,4
+Little09Captain,26289144,5
+132939849,26289144,5
+27064459,26289144,5
+47200046,26289144,4
+30568962,26289144,4
+118277522,26289144,3
+54896833,26289144,4
+keimo,26289144,3
+57607618,26289144,5
+wenwen7459,26289144,5
+1863792,26289144,5
+51243076,26289144,3
+61317516,26289144,5
+zhong13211,26289144,4
+132939594,26289144,5
+132683186,26289144,3
+natalieq,26289144,4
+125852701,26289144,4
+34753066,26289144,4
+40411739,26289144,3
+64326622,26289144,4
+121725315,26289144,5
+131802543,26289144,5
+jenniferxiao,26289144,4
+122179988,26289144,3
+remenbercc,26289144,3
+charlene1225,26289144,5
+77153470,26289144,3
+38717001,26289144,5
+97196400,26289144,4
+72945702,26289144,3
+57844859,26289144,4
+113327866,26289144,5
+69197339,26289144,4
+120378701,26289144,3
+weimengxiao,26289144,3
+105493936,26289144,-1
+82159990,26289144,5
+76276828,26289144,5
+47949405,26289144,2
+123400221,26289144,4
+102059557,26289144,3
+108101667,26289144,4
+78720836,26289144,3
+avaloncloud,26289144,5
+46711552,26289144,4
+Georgewen,26289144,3
+128516916,26289144,3
+40876369,26289144,5
+Yinaly,26289144,4
+comewinni,26289144,4
+62917415,26289144,4
+52028198,26289144,4
+52259960,26289144,4
+126841382,26289144,3
+caoxuanjun,26289144,4
+89419712,26289144,4
+53914126,26289144,4
+55815208,26289144,3
+78489673,26289144,4
+102657573,26289144,4
+jaywooh,26289144,4
+33674931,26289144,5
+120207668,26289144,4
+60978946,26289144,5
+114733320,26289144,3
+64648579,26289144,5
+daiyuanvian,26289144,3
+104813439,26289144,4
+49748838,26289144,4
+sususlsz,26289144,5
+73847256,26289144,3
+58337655,26289144,5
+125481969,26289144,4
+127816393,26289144,5
+82022775,26289144,4
+49125583,26289144,4
+56765956,26289144,4
+131005431,26289144,5
+61520831,26289144,4
+59295882,26289144,4
+130642973,26289144,4
+79322204,26289144,5
+132431871,26289144,5
+youlemei47,26289144,5
+82966798,26289144,3
+131004052,26289144,4
+83264508,26289144,3
+tayswiftie,26289144,5
+vermeer1665,26289144,5
+102747303,26289144,3
+alphard0615,26289144,5
+53605408,26289144,3
+72997899,26289144,4
+stevenhsu,26289144,3
+sarahzk,26289144,-1
+132325954,26289144,4
+2848425,26289144,3
+2848425,26289144,3
+58956740,26289144,5
+1779389,26289144,2
+52928685,26289144,2
+lesleylove,26289144,3
+58952579,26289144,3
+64205062,26289144,4
+fangzhou422,26289144,3
+vicky_vampire,26289144,4
+120179899,26289144,4
+132023053,26289144,5
+spunkycarrot,26289144,5
+67863005,26289144,4
+58159662,26289144,5
+132936865,26289144,5
+94683221,26289144,5
+2624480,26289144,4
+31455360,26289144,4
+3158960,26289144,2
+loveLizhenyu,26289144,4
+90187672,26289144,5
+yyingz,26289144,4
+103888095,26289144,5
+77048670,26289144,2
+63874750,26289144,4
+72684898,26289144,4
+50945725,26289144,4
+129284878,26289144,5
+47175751,26289144,3
+eileen666lxh,26289144,3
+lixinleixinli,26289144,5
+76206641,26289144,5
+121441966,26289144,4
+3318034,26289144,3
+54786298,26289144,4
+76460569,26289144,5
+77909575,26289144,2
+milanmao,26289144,4
+132667635,26289144,2
+132325460,26289144,5
+xuxinyan083,26289144,4
+glowxi,26289144,4
+92032476,26289144,4
+63744862,26289144,5
+tracynoble,26289144,4
+51197243,26289144,3
+2870355,26289144,4
+42262762,26289144,5
+96204394,26289144,4
+lixiaguniang,26289144,4
+Celethy,26289144,4
+49000204,26289144,4
+47509216,26289144,5
+iSaw11021,26289144,4
+lingyun93,26289144,4
+65239116,26289144,5
+54146811,26289144,2
+achrista,26289144,4
+83317663,26289144,4
+chenshuting0919,26289144,4
+131500891,26289144,4
+128454770,26289144,-1
+132760769,26289144,3
+131903425,26289144,5
+70809185,26289144,3
+fei-never,26289144,4
+92328135,26289144,5
+132934998,26289144,5
+gxyvonne,26289144,3
+47396894,26289144,3
+50201885,26289144,5
+4439779,26289144,4
+120272196,26289144,5
+89098612,26289144,3
+67677954,26289144,4
+67742715,26289144,4
+119295165,26289144,4
+cyan_xi,26289144,5
+129409424,26289144,4
+54200755,26289144,4
+77084971,26289144,4
+124670596,26289144,3
+97045498,26289144,5
+nirvanainfire,26289144,4
+49419305,26289144,-1
+122420292,26289144,3
+94273870,26289144,4
+67388709,26289144,4
+maodou_,26289144,-1
+80690199,26289144,5
+51840690,26289144,5
+77307938,26289144,4
+131811169,26289144,5
+102578826,26289144,5
+3346015,26289144,3
+AuRevoir7,26289144,3
+67163006,26289144,4
+122941400,26289144,3
+68361061,26289144,5
+52117580,26289144,5
+jianyuanshunshu,26289144,-1
+68469839,26289144,4
+31180188,26289144,-1
+102650688,26289144,4
+Milk_Solo,26289144,4
+39522500,26289144,4
+52889197,26289144,2
+62192019,26289144,4
+58025689,26289144,5
+131853709,26289144,4
+AprilWannaBe,26289144,5
+128054204,26289144,4
+63377727,26289144,3
+36148411,26289144,4
+3511490,26289144,3
+51061132,26289144,4
+132933511,26289144,5
+mint29,26289144,4
+76960780,26289144,4
+nyandjm,26289144,4
+nyandjm,26289144,4
+sj1_1ei,26289144,3
+50270612,26289144,5
+3317762,26289144,5
+85204284,26289144,5
+104348290,26289144,4
+97195706,26289144,5
+40588949,26289144,4
+130875614,26289144,3
+132932818,26289144,5
+112083584,26289144,5
+71407779,26289144,4
+DanielWu74,26289144,3
+4421106,26289144,5
+53182864,26289144,4
+Q289637188,26289144,3
+43511289,26289144,5
+66369365,26289144,2
+85316996,26289144,3
+givindream,26289144,4
+2285992,26289144,4
+KinO_O,26289144,5
+3407887,26289144,4
+dyz_McAvoy,26289144,3
+miracle1988,26289144,3
+59584497,26289144,4
+bigEggplant,26289144,4
+64253762,26289144,4
+a553028641,26289144,4
+132931621,26289144,5
+iphoebe,26289144,4
+55446081,26289144,3
+4703557,26289144,5
+103786856,26289144,5
+121191194,26289144,1
+summerose,26289144,4
+95670618,26289144,4
+132931172,26289144,4
+75381843,26289144,4
+132728964,26289144,5
+37436539,26289144,5
+Guardianangel,26289144,4
+132931050,26289144,5
+123576068,26289144,4
+57966431,26289144,4
+wym97819,26289144,5
+vincent_zhe47,26289144,4
+123413024,26289144,3
+76529709,26289144,2
+dreamyRachel,26289144,3
+LL0923,26289144,5
+132461991,26289144,5
+1005000,26289144,5
+luluyunxiao,26289144,5
+79372078,26289144,4
+82874810,26289144,4
+4099282,26289144,3
+zhy650218,26289144,5
+67561953,26289144,5
+50562416,26289144,4
+lingkong911,26289144,3
+132929736,26289144,5
+102103244,26289144,5
+belle,26289144,3
+48378034,26289144,5
+NysUn,26289144,4
+91583621,26289144,5
+47078925,26289144,3
+42853271,26289144,4
+129496750,26289144,4
+karouzyn,26289144,4
+36399466,26289144,5
+71985811,26289144,4
+132929174,26289144,5
+fedorajiang,26289144,4
+62952005,26289144,5
+smile_smile1988,26289144,4
+KGThunder,26289144,1
+65940576,26289144,5
+113992757,26289144,4
+113992757,26289144,4
+28631660,26289144,4
+101419547,26289144,5
+49268204,26289144,4
+houicetint,26289144,5
+52529736,26289144,3
+dearmaggie,26289144,4
+130806847,26289144,5
+15874122,26289144,4
+93096346,26289144,5
+52113990,26289144,4
+59171526,26289144,4
+120390983,26289144,5
+2823928,26289144,4
+sweeroty,26289144,4
+34864785,26289144,5
+130082458,26289144,5
+53907163,26289144,5
+duxiaoyu,26289144,2
+2266961,26289144,5
+muxuehan,26289144,4
+75467529,26289144,5
+126303148,26289144,4
+69266204,26289144,2
+3436526,26289144,-1
+jessieKeh,26289144,3
+62440786,26289144,4
+62774430,26289144,3
+131615477,26289144,3
+55462319,26289144,4
+4866728,26289144,5
+film101,26289144,3
+122536695,26289144,4
+127705481,26289144,5
+Ryanzeng,26289144,4
+joyestin,26289144,4
+TERRYBEAR,26289144,4
+4560593,26289144,4
+weixiaobaobao,26289144,3
+winnie.35,26289144,4
+61557848,26289144,4
+130098092,26289144,5
+qijiuzhiyue,26289144,3
+yizhaisansheng,26289144,2
+61246019,26289144,5
+73061172,26289144,4
+39376423,26289144,3
+eason0210,26289144,1
+1307328,26289144,3
+73285826,26289144,5
+54137574,26289144,5
+54222336,26289144,4
+121848300,26289144,5
+66338674,26289144,4
+83217907,26289144,5
+128115257,26289144,4
+88737850,26289144,5
+132925448,26289144,4
+62891256,26289144,5
+jijillwang,26289144,5
+49314265,26289144,5
+53127978,26289144,5
+Kev.Garnett,26289144,3
+53094976,26289144,3
+94797689,26289144,4
+kuii,26289144,4
+119945055,26289144,3
+42535832,26289144,1
+helene9933,26289144,4
+132270128,26289144,5
+2108403,26289144,4
+lidy33,26289144,5
+62952650,26289144,4
+66404994,26289144,5
+131727002,26289144,5
+51378582,26289144,1
+68492607,26289144,4
+45556826,26289144,4
+121516783,26289144,1
+68880594,26289144,4
+132823845,26289144,5
+82209136,26289144,4
+94162680,26289144,4
+109330278,26289144,3
+66799655,26289144,3
+49019812,26289144,4
+83193212,26289144,5
+129255326,26289144,5
+132923595,26289144,5
+59109173,26289144,5
+4676880,26289144,4
+60792013,26289144,3
+ritalu,26289144,3
+76239452,26289144,4
+summerxmx,26289144,5
+100357940,26289144,4
+gyj1030,26289144,5
+bessie28,26289144,5
+2802044,26289144,1
+66836438,26289144,3
+maryoasis,26289144,4
+fangmengxin,26289144,5
+115185293,26289144,4
+132922375,26289144,5
+80285873,26289144,1
+78932970,26289144,4
+47022632,26289144,4
+132922119,26289144,5
+fenlanbingyan,26289144,4
+Anh.zz,26289144,3
+a_lying_eight,26289144,4
+61641617,26289144,3
+4255750,26289144,2
+48937128,26289144,5
+90548915,26289144,5
+tiffanyji,26289144,4
+1767400,26289144,4
+43310692,26289144,3
+freakbody,26289144,3
+2170932,26289144,-1
+132711960,26289144,5
+xjnjenny,26289144,-1
+2737013,26289144,2
+emily7726,26289144,4
+65724587,26289144,5
+4564695,26289144,5
+130983822,26289144,3
+Sophie.,26289144,4
+42221560,26289144,4
+60933677,26289144,4
+30765497,26289144,-1
+54428123,26289144,3
+55930699,26289144,5
+44391545,26289144,4
+82717454,26289144,4
+121925432,26289144,4
+44316758,26289144,3
+45681861,26289144,4
+53698727,26289144,3
+62457534,26289144,5
+64324480,26289144,5
+84704746,26289144,5
+48949608,26289144,3
+30842717,26289144,4
+ixiaoi,26289144,4
+zhangqiyuan,26289144,4
+90893058,26289144,4
+60841792,26289144,-1
+72626479,26289144,4
+engineman,26289144,4
+launa,26289144,3
+kyhero,26289144,4
+54825583,26289144,3
+1818164,26289144,4
+65032980,26289144,5
+67313637,26289144,4
+greeneyesgirl,26289144,3
+2986990,26289144,4
+74449417,26289144,5
+59101282,26289144,3
+dundun85,26289144,4
+sophieyuxiuying,26289144,5
+80606571,26289144,5
+79940249,26289144,4
+52544571,26289144,4
+81348694,26289144,4
+74641801,26289144,3
+danielx,26289144,5
+kirahome,26289144,2
+rp027,26289144,4
+zhuobielin,26289144,5
+62455169,26289144,5
+49048529,26289144,4
+64047703,26289144,4
+echorus-walker,26289144,3
+lonelydark7,26289144,3
+63250313,26289144,4
+50472438,26289144,4
+hemufei,26289144,5
+35108936,26289144,3
+5355596,26289144,5
+54442469,26289144,2
+Rocklisa,26289144,4
+sagotutu,26289144,4
+89168485,26289144,5
+boomXXboomXX,26289144,4
+49365684,26289144,4
+45796345,26289144,5
+125773849,26289144,5
+xiaoczhang,26289144,4
+122052846,26289144,4
+66714330,26289144,4
+75704681,26289144,5
+sugarci,26289144,5
+huangnan,26289144,4
+80846705,26289144,4
+44614198,26289144,4
+53893318,26289144,1
+lesia,26289144,4
+shochiu,26289144,4
+63822026,26289144,5
+83044349,26289144,5
+75021019,26289144,4
+73878048,26289144,5
+37448218,26289144,5
+74234207,26289144,3
+sofafish,26289144,2
+wish430,26289144,4
+62446851,26289144,4
+39479021,26289144,3
+chunjuantaihou,26289144,5
+49519356,26289144,4
+44020723,26289144,5
+58080389,26289144,5
+66758358,26289144,5
+PandaRing,26289144,3
+58400700,26289144,3
+47747818,26289144,5
+46291335,26289144,4
+54827170,26289144,2
+58752983,26289144,3
+1212139,26289144,4
+mojiwhat,26289144,4
+sopin_kevin,26289144,5
+121920760,26289144,4
+81742698,26289144,1
+2220167,26289144,5
+51457792,26289144,4
+lolitahanhan,26289144,3
+co_cobalt,26289144,4
+ayumi,26289144,3
+103793768,26289144,3
+74975671,26289144,5
+chufanyan,26289144,4
+70537665,26289144,4
+53648369,26289144,5
+wtfisthis,26289144,3
+jicheng1993,26289144,3
+inout,26289144,3
+allthesame,26289144,3
+angle223,26289144,3
+57542378,26289144,3
+69175335,26289144,4
+35414122,26289144,3
+61151666,26289144,3
+alvinchan1226,26289144,4
+VINCENTVCHAN,26289144,4
+53602254,26289144,4
+64968243,26289144,3
+132854070,26289144,5
+84303160,26289144,5
+4550491,26289144,3
+winl,26289144,5
+57372938,26289144,4
+87818852,26289144,5
+55858054,26289144,4
+36458457,26289144,4
+94872079,26289144,4
+14113539,26289144,5
+68745924,26289144,5
+sunny_i,26289144,4
+47976319,26289144,4
+44268837,26289144,5
+53437669,26289144,3
+51816645,26289144,5
+60073105,26289144,4
+75003253,26289144,-1
+110315543,26289144,-1
+79115910,26289144,5
+58515646,26289144,3
+99483183,26289144,4
+dixueyaxiaojie,26289144,4
+53230563,26289144,3
+zxl321,26289144,3
+49893438,26289144,4
+pinkmouse,26289144,3
+63618729,26289144,4
+Yann.A.S,26289144,3
+3253630,26289144,5
+ohnirvana,26289144,4
+ohnirvana,26289144,4
+gu_yan,26289144,4
+siyunluo,26289144,5
+51166745,26289144,1
+63982448,26289144,3
+46698247,26289144,3
+qinsining,26289144,4
+68942746,26289144,4
+dxq1216,26289144,3
+36669166,26289144,5
+106153294,26289144,5
+emmaus3,26289144,3
+38633281,26289144,4
+4518731,26289144,3
+sprite520,26289144,3
+55811847,26289144,5
+121488937,26289144,3
+monkeek,26289144,4
+64780091,26289144,2
+Rouwell,26289144,3
+67013615,26289144,5
+Caoxiao,26289144,5
+1715390,26289144,3
+87605838,26289144,4
+ramya99,26289144,4
+57758855,26289144,4
+61426958,26289144,3
+44564870,26289144,4
+78490842,26289144,3
+4165611,26289144,1
+54463600,26289144,4
+49465683,26289144,4
+115552732,26289144,3
+coolgi,26289144,5
+3597938,26289144,4
+61680958,26289144,4
+zayaza,26289144,4
+leslietongdc339,26289144,3
+elikceburld,26289144,4
+queentown,26289144,4
+68244540,26289144,5
+woxiaoting,26289144,4
+misamore,26289144,5
+123504720,26289144,3
+cassidesert,26289144,5
+LLLLLLyt,26289144,5
+itsuki1101,26289144,4
+julypoem,26289144,4
+132403789,26289144,-1
+53467813,26289144,3
+andezhu,26289144,5
+Uvo,26289144,3
+72365575,26289144,5
+tammyj_11,26289144,3
+1224581,26289144,3
+found5,26289144,4
+70081984,26289144,3
+53757843,26289144,5
+42047004,26289144,5
+65881944,26289144,4
+81695729,26289144,4
+joyliang,26289144,4
+72538044,26289144,3
+wnuenue,26289144,3
+mwkang,26289144,5
+60709257,26289144,4
+leungsy,26289144,3
+83531928,26289144,5
+51526777,26289144,-1
+maxiangge,26289144,3
+44789325,26289144,5
+21771687,26289144,3
+53514548,26289144,5
+59999741,26289144,1
+132096780,26289144,5
+hellocecilia,26289144,3
+93360072,26289144,4
+76270911,26289144,3
+Iamapoem,26289144,3
+mxl1988,26289144,5
+61966427,26289144,5
+78955356,26289144,2
+wingqiqi,26289144,4
+xwjaney,26289144,4
+47904693,26289144,5
+eddychaw,26289144,3
+88292094,26289144,4
+4909737,26289144,5
+summer000000,26289144,3
+69569015,26289144,4
+36928382,26289144,5
+116728333,26289144,4
+82095773,26289144,3
+87937718,26289144,5
+imachild,26289144,4
+66075441,26289144,5
+47681496,26289144,4
+momojasper,26289144,4
+qcdx013,26289144,4
+CeciliaQueen,26289144,-1
+54363066,26289144,5
+66528852,26289144,4
+zeroqq,26289144,-1
+59319434,26289144,4
+47100950,26289144,4
+42812557,26289144,5
+44549599,26289144,4
+mumu1007,26289144,3
+cindy_1994816,26289144,4
+seail,26289144,4
+winya229,26289144,4
+4498680,26289144,4
+sakamoto1ren,26289144,3
+aiyucheng,26289144,3
+beamanly,26289144,5
+jofanie,26289144,4
+47126133,26289144,3
+126702436,26289144,4
+2510900,26289144,5
+Dielin,26289144,5
+3371479,26289144,4
+60118052,26289144,4
+15142274,26289144,4
+53798871,26289144,3
+lwvsch,26289144,3
+qianricao,26289144,4
+2703230,26289144,4
+dearmia,26289144,5
+71389371,26289144,4
+54791351,26289144,4
+63704631,26289144,5
+missfaye,26289144,4
+earlyzaozao,26289144,3
+rabitLVleslie,26289144,3
+51098156,26289144,4
+97302377,26289144,5
+freeeeeeee,26289144,4
+diaosicheng,26289144,1
+kakaloveu,26289144,5
+2323154,26289144,-1
+2323154,26289144,-1
+imcherrie,26289144,5
+3841030,26289144,4
+70315903,26289144,5
+dingjiandoris,26289144,4
+xuxudaodao,26289144,4
+3438426,26289144,5
+51494643,26289144,5
+53594701,26289144,5
+63878764,26289144,4
+coconutZii,26289144,4
+8469986,26289144,3
+34728183,26289144,5
+jessica-cyy,26289144,4
+TXS0331,26289144,4
+34111959,26289144,4
+68825025,26289144,3
+66203352,26289144,3
+littleyue,26289144,5
+3129085,26289144,4
+Nigrum,26289144,5
+2581669,26289144,4
+33889938,26289144,4
+49575577,26289144,4
+36601365,26289144,5
+59058717,26289144,4
+57264204,26289144,4
+ladybird789,26289144,5
+46813477,26289144,5
+Draculala,26289144,4
+58927939,26289144,4
+67559637,26289144,5
+ameba,26289144,4
+cymkibum,26289144,4
+45375135,26289144,3
+richey_,26289144,4
+arcadia8703,26289144,5
+ditto223,26289144,4
+2579882,26289144,3
+45214246,26289144,4
+orangeT,26289144,3
+1089374,26289144,4
+47540994,26289144,4
+losacos,26289144,4
+41874215,26289144,4
+89986030,26289144,4
+53784803,26289144,4
+lovedorababy,26289144,5
+35289140,26289144,5
+51814592,26289144,4
+45369975,26289144,4
+44862070,26289144,4
+82572574,26289144,3
+46424655,26289144,4
+heartandsoul,26289144,3
+78635378,26289144,3
+jollar,26289144,3
+2220794,26289144,4
+55700551,26289144,3
+2261750,26289144,5
+harechan,26289144,3
+vickey-77,26289144,5
+dai0927,26289144,4
+48932419,26289144,4
+66502007,26289144,3
+disby,26289144,3
+problemchildren,26289144,4
+2021116,26289144,3
+lurenjia__,26289144,3
+littlekidzouzou,26289144,3
+63603619,26289144,4
+ningning9164,26289144,-1
+49547973,26289144,5
+58364435,26289144,3
+46047412,26289144,4
+kitor,26289144,1
+78619194,26289144,4
+romance90,26289144,3
+3773993,26289144,5
+68977947,26289144,4
+68977947,26289144,4
+lunaa,26289144,4
+48094204,26289144,5
+124573500,26289144,3
+daisy-bbf,26289144,4
+princesssyn,26289144,3
+summerisabel,26289144,4
+71510267,26289144,4
+66997852,26289144,3
+pandejian250,26289144,4
+65723913,26289144,4
+58113974,26289144,5
+17189076,26289144,4
+meijiangshi,26289144,3
+115853836,26289144,3
+63753742,26289144,4
+wsnake,26289144,4
+pearl.lu,26289144,5
+zoe_xi,26289144,5
+47373898,26289144,5
+94274085,26289144,2
+yenjo7,26289144,4
+jiumu,26289144,5
+zidary,26289144,4
+badblueeyes,26289144,4
+64069487,26289144,3
+99835693,26289144,4
+90605938,26289144,5
+chengyue888,26289144,5
+45868354,26289144,5
+53257768,26289144,4
+3043818,26289144,5
+34161257,26289144,4
+zi057,26289144,4
+82569239,26289144,2
+rushi3,26289144,4
+57947049,26289144,5
+103187802,26289144,3
+jodiefan,26289144,4
+62391234,26289144,4
+stonyshiny,26289144,5
+75614710,26289144,4
+49328378,26289144,3
+45104299,26289144,5
+126248045,26289144,4
+liudan0706,26289144,4
+cheerychang,26289144,2
+heechen,26289144,4
+55332677,26289144,4
+kite2002,26289144,3
+nuoyafangzhou,26289144,4
+2668037,26289144,4
+solo007,26289144,2
+14968820,26289144,-1
+iamMrBobo,26289144,3
+78710315,26289144,4
+dazzzhhh,26289144,4
+dayandnights,26289144,4
+4387958,26289144,4
+54298534,26289144,3
+tuotuo666,26289144,5
+qd724945697,26289144,4
+rouroulu,26289144,5
+61797796,26289144,5
+barren_island,26289144,4
+FFFFFFay,26289144,5
+30677211,26289144,3
+jeelychair,26289144,4
+122669942,26289144,5
+bobdu,26289144,4
+51760780,26289144,5
+78572720,26289144,5
+wangjingyu917,26289144,5
+63485325,26289144,4
+35914058,26289144,5
+58513606,26289144,4
+phoebe0_0nn,26289144,4
+83855853,26289144,5
+67404244,26289144,1
+ninihoney,26289144,3
+62664539,26289144,3
+Mr_movie,26289144,-1
+Pennyui,26289144,4
+57903037,26289144,4
+48887491,26289144,3
+56206950,26289144,5
+supergububble,26289144,5
+ccino,26289144,4
+muyue1112,26289144,5
+kkkccc,26289144,4
+56526733,26289144,3
+14523458,26289144,3
+kloccd,26289144,4
+43948105,26289144,3
+aprilpear,26289144,4
+shahuizhang,26289144,4
+71455965,26289144,4
+12997006,26289144,4
+3572546,26289144,5
+duzhouchi,26289144,4
+2427450,26289144,4
+sirluoji,26289144,2
+wbx,26289144,5
+clytzesmile,26289144,5
+2329339,26289144,3
+73749265,26289144,4
+tofuchico,26289144,4
+6028450,26289144,4
+62532715,26289144,4
+104033946,26289144,5
+35022452,26289144,4
+132010641,26289144,5
+zhangqiuyu,26289144,5
+60850526,26289144,5
+jessie962464,26289144,5
+132369577,26289144,5
+49891343,26289144,5
+35270225,26289144,4
+3208992,26289144,-1
+PhilosZhang,26289144,4
+66414485,26289144,4
+1335533,26289144,4
+troublebreaker,26289144,4
+40929048,26289144,4
+50203852,26289144,5
+85054280,26289144,5
+37106430,26289144,4
+23612143,26289144,4
+summerbear,26289144,5
+socordia,26289144,4
+1971410,26289144,5
+68654254,26289144,4
+36108304,26289144,-1
+84279039,26289144,4
+127022514,26289144,5
+jijiyuluo,26289144,4
+56493798,26289144,4
+102839412,26289144,4
+88649367,26289144,1
+47332080,26289144,4
+noirdeja,26289144,5
+64664851,26289144,4
+4791622,26289144,4
+38896056,26289144,5
+wonderfulBonnie,26289144,5
+lhlqzhuge,26289144,5
+Ti7,26289144,2
+xunchengwei,26289144,4
+51664645,26289144,4
+nicolastong,26289144,4
+65283286,26289144,4
+4806563,26289144,4
+jiang1365,26289144,5
+47692471,26289144,4
+veronica_wu,26289144,5
+53128064,26289144,4
+deardeerdearme,26289144,3
+cachecache,26289144,4
+2766948,26289144,3
+libera--,26289144,4
+59025385,26289144,2
+63830890,26289144,4
+taochongshaozhu,26289144,3
+36392442,26289144,5
+124299373,26289144,4
+128549976,26289144,4
+90564869,26289144,4
+57804762,26289144,4
+l.don,26289144,4
+64694528,26289144,5
+77046292,26289144,4
+77356251,26289144,4
+74380209,26289144,5
+43644112,26289144,5
+63364481,26289144,5
+yiweicoffee,26289144,4
+wangluoad,26289144,-1
+119749151,26289144,5
+101433184,26289144,4
+39607607,26289144,5
+56615628,26289144,5
+88539374,26289144,3
+LuckyStrikeNero,26289144,-1
+37518003,26289144,4
+58605674,26289144,4
+57992597,26289144,4
+60370348,26289144,3
+judybubu,26289144,3
+theMicky,26289144,3
+treedoctor,26289144,5
+ameihuhaitao,26289144,4
+kane7,26289144,4
+ivy_lmj,26289144,3
+poly0330,26289144,3
+45660957,26289144,4
+Kristy_Cheung,26289144,4
+hellosuperfish,26289144,4
+40733706,26289144,3
+huxiaoxiong,26289144,5
+82257077,26289144,4
+130828082,26289144,4
+irislxxx,26289144,3
+37757378,26289144,5
+Sissi.Wu,26289144,5
+60980785,26289144,4
+roylaw,26289144,5
+sfroompp,26289144,4
+88600705,26289144,4
+73709425,26289144,5
+46657628,26289144,4
+1537902,26289144,4
+Melodyfan,26289144,4
+qiaoyayafly,26289144,4
+37495463,26289144,3
+sept,26289144,3
+2858394,26289144,3
+49228505,26289144,4
+48919627,26289144,5
+tintintsang,26289144,3
+suememory,26289144,-1
+suememory,26289144,-1
+cazze,26289144,4
+aaayoudonotknow,26289144,3
+61802428,26289144,4
+52533835,26289144,5
+46894377,26289144,4
+50589086,26289144,5
+5466368,26289144,5
+DrRay,26289144,3
+47104715,26289144,4
+1686617,26289144,4
+115203825,26289144,4
+flowerfrommars,26289144,4
+72647940,26289144,4
+49548565,26289144,5
+122649591,26289144,5
+89467395,26289144,4
+49856887,26289144,2
+49263977,26289144,4
+3548835,26289144,3
+3548835,26289144,3
+nailuoyitai,26289144,3
+FOOL624,26289144,4
+Erica1011,26289144,4
+marvelwei,26289144,5
+evaniscoming,26289144,4
+man_man_,26289144,4
+4313535,26289144,3
+1469007,26289144,4
+jackie1211,26289144,5
+yz326,26289144,4
+adamhsieh,26289144,2
+Ghostlin,26289144,5
+prettyshit,26289144,4
+terachi,26289144,5
+dennisqiang,26289144,5
+3415449,26289144,3
+61111185,26289144,4
+2632722,26289144,4
+42907481,26289144,4
+Ray_W,26289144,4
+adamhu,26289144,3
+97323293,26289144,3
+122524451,26289144,4
+103290825,26289144,4
+127589546,26289144,4
+21927784,26289144,5
+michellejnj,26289144,4
+4652178,26289144,4
+123036590,26289144,5
+designernoideas,26289144,4
+youcheng321,26289144,4
+1298130,26289144,5
+41447042,26289144,4
+yaoyaolu,26289144,3
+sylviapoor,26289144,5
+velourzbhu,26289144,4
+90546553,26289144,5
+noahark,26289144,5
+48224282,26289144,5
+50023585,26289144,4
+karly1943,26289144,4
+77351374,26289144,4
+37737818,26289144,4
+Howen,26289144,4
+zhuiazhui,26289144,4
+128247761,26289144,5
+valleyshan,26289144,4
+fyl00,26289144,4
+lovemapaandhuhu,26289144,5
+52106062,26289144,4
+55628165,26289144,5
+3919406,26289144,-1
+pinkylulu,26289144,5
+dodo729,26289144,5
+74455374,26289144,5
+132705146,26289144,5
+lly950412,26289144,4
+lllllllii,26289144,3
+haluway,26289144,4
+3978018,26289144,4
+hippo2,26289144,-1
+120872335,26289144,5
+anthonywoo.,26289144,3
+56914134,26289144,5
+Yanyuqing,26289144,5
+kejinlong,26289144,4
+viviling,26289144,5
+pbc0615,26289144,3
+126338836,26289144,4
+vexit,26289144,-1
+chagrinbleu,26289144,4
+62290459,26289144,5
+123961251,26289144,5
+38986558,26289144,3
+74567017,26289144,5
+joysun,26289144,5
+wwl6002,26289144,4
+qiangqiangzhang,26289144,2
+1412805,26289144,4
+81544351,26289144,3
+karenizumi,26289144,5
+29345040,26289144,5
+52286623,26289144,3
+coldplayguzhuo,26289144,3
+3189527,26289144,4
+36564630,26289144,5
+1428027,26289144,4
+64895995,26289144,4
+132704545,26289144,4
+46507893,26289144,5
+59380774,26289144,2
+cassieee,26289144,4
+xdcheung,26289144,4
+44707726,26289144,5
+28460777,26289144,4
+bluekitten,26289144,5
+som3day,26289144,4
+pandasleepy,26289144,4
+67328720,26289144,4
+66902350,26289144,4
+45156035,26289144,5
+nbyuan,26289144,2
+47968118,26289144,4
+54513758,26289144,5
+yanziniguang,26289144,5
+53011645,26289144,5
+54082963,26289144,5
+MonkeyChoi,26289144,5
+58292946,26289144,5
+74890053,26289144,4
+28802478,26289144,4
+MYtachikoma,26289144,3
+63211767,26289144,4
+43387760,26289144,3
+Lhightluce,26289144,4
+zizon,26289144,5
+39498531,26289144,4
+83621605,26289144,5
+50588044,26289144,4
+anxiao,26289144,4
+4679354,26289144,5
+doubanfujin1995,26289144,3
+oscarxia,26289144,5
+4830826,26289144,4
+73757988,26289144,5
+Eileke,26289144,4
+ankui,26289144,3
+lost-kaine,26289144,3
+48865553,26289144,5
+45838830,26289144,4
+28633682,26289144,3
+42822757,26289144,5
+kumabear,26289144,3
+48801010,26289144,4
+59363812,26289144,5
+121816269,26289144,5
+52076607,26289144,4
+1849977,26289144,5
+57597596,26289144,4
+34972271,26289144,4
+49181653,26289144,4
+zmzlx,26289144,4
+1346719,26289144,3
+64755839,26289144,2
+44159956,26289144,4
+yqsophia,26289144,3
+47971743,26289144,4
+75285531,26289144,4
+limitediam,26289144,5
+52907807,26289144,5
+42749222,26289144,4
+conpenhagen,26289144,3
+64199614,26289144,5
+131912581,26289144,5
+6356289,26289144,4
+82808408,26289144,4
+66965482,26289144,3
+45608534,26289144,3
+87374913,26289144,5
+41069819,26289144,3
+wangrui19890810,26289144,5
+toxichoco,26289144,4
+66077019,26289144,2
+1078136,26289144,3
+60928291,26289144,4
+70316327,26289144,5
+4705722,26289144,5
+54367149,26289144,5
+dokuso,26289144,5
+37968335,26289144,4
+3278968,26289144,4
+mio-crystalyu,26289144,4
+dingdanglbh,26289144,4
+hlsdy,26289144,5
+47837799,26289144,5
+honestydudu,26289144,4
+leenn,26289144,3
+43776830,26289144,4
+76999762,26289144,3
+shoufy,26289144,4
+54388277,26289144,5
+49707254,26289144,5
+48976619,26289144,4
+61366971,26289144,5
+superman-cici,26289144,4
+50506429,26289144,4
+41023522,26289144,4
+annie-bean,26289144,4
+vanishyang,26289144,4
+janefly,26289144,4
+126771575,26289144,4
+59249237,26289144,4
+hansey1994,26289144,3
+bearmum,26289144,5
+79381337,26289144,5
+apirlapple,26289144,4
+34108808,26289144,5
+63879603,26289144,5
+60819782,26289144,5
+jazzbon,26289144,5
+58886429,26289144,4
+3774521,26289144,-1
+49891610,26289144,4
+53476786,26289144,5
+47243761,26289144,5
+meysure,26289144,4
+Aug.Q,26289144,-1
+bay2fun,26289144,3
+64392106,26289144,5
+hildasu,26289144,5
+ahmu,26289144,5
+123473233,26289144,3
+130676060,26289144,1
+severus,26289144,5
+58847621,26289144,2
+Lotto59,26289144,1
+60011840,26289144,4
+simbelmyne,26289144,4
+59237362,26289144,4
+32288408,26289144,5
+brair,26289144,5
+115949877,26289144,4
+12452258,26289144,4
+52476848,26289144,4
+fengweizhou,26289144,4
+108277867,26289144,5
+38255744,26289144,1
+56571222,26289144,5
+37736612,26289144,5
+47609007,26289144,4
+dl0514,26289144,5
+48724953,26289144,5
+kinghoi,26289144,5
+41968793,26289144,4
+82690334,26289144,4
+15885288,26289144,4
+78378658,26289144,5
+54424447,26289144,4
+78289516,26289144,4
+132232670,26289144,4
+yuexiaokan,26289144,4
+90795414,26289144,3
+vvingl,26289144,5
+60488216,26289144,4
+76120521,26289144,5
+badayidi,26289144,4
+82431278,26289144,4
+77718867,26289144,3
+65098129,26289144,4
+cucnmql,26289144,2
+51235874,26289144,5
+tokyoyuki,26289144,5
+jacobzhai,26289144,5
+Saggezza,26289144,4
+zhangdaoling,26289144,5
+guanxiaosong,26289144,5
+94563993,26289144,4
+YvonneGQ,26289144,3
+jialinwonder,26289144,5
+jialinwonder,26289144,5
+sylviasun2011,26289144,5
+49980514,26289144,5
+116695354,26289144,4
+51259360,26289144,5
+4431102,26289144,5
+chaiyanchao,26289144,5
+luolieke,26289144,4
+80655381,26289144,4
+amnesia_z,26289144,5
+84612888,26289144,3
+hjing1993,26289144,3
+daniel_gao,26289144,4
+87862605,26289144,5
+streamercity,26289144,4
+59344860,26289144,5
+80227581,26289144,5
+2174790,26289144,3
+46151363,26289144,5
+cici_wtf13,26289144,4
+50182035,26289144,2
+wangjim,26289144,5
+71585704,26289144,5
+2328391,26289144,5
+dancerinfire,26289144,1
+leskwan,26289144,5
+14443514,26289144,5
+ruilixiurui,26289144,3
+3484320,26289144,5
+BH4_leon,26289144,4
+76406795,26289144,3
+nemo2man,26289144,3
+40843838,26289144,4
+suxudong,26289144,5
+34394752,26289144,4
+49421064,26289144,4
+20189736,26289144,3
+130084772,26289144,3
+53252879,26289144,4
+50217070,26289144,5
+3980916,26289144,5
+yemenxu,26289144,5
+Rock21,26289144,5
+missaloveme,26289144,4
+102410673,26289144,3
+60432635,26289144,3
+zhaoyao0919,26289144,3
+61926092,26289144,5
+montee_D,26289144,3
+50029958,26289144,5
+gdragon-ily,26289144,5
+62126174,26289144,3
+46630645,26289144,5
+xly7788,26289144,2
+SILENT7,26289144,5
+48175855,26289144,5
+83267131,26289144,2
+56057081,26289144,3
+45311427,26289144,4
+2300644,26289144,4
+4589772,26289144,4
+54934785,26289144,3
+62438769,26289144,3
+3880942,26289144,3
+jimodipingxian,26289144,5
+58552673,26289144,3
+115772568,26289144,3
+izaijin,26289144,4
+miss.cachalot,26289144,4
+16782490,26289144,4
+49272831,26289144,3
+53001825,26289144,4
+120091522,26289144,4
+79372510,26289144,5
+royin.chao,26289144,3
+62934434,26289144,5
+122393456,26289144,4
+40104674,26289144,4
+headofpig,26289144,4
+lemonomel,26289144,4
+hear_me,26289144,5
+78753463,26289144,4
+antwon,26289144,5
+60223940,26289144,3
+Monica007,26289144,4
+louix,26289144,5
+67968935,26289144,5
+28556542,26289144,4
+84755098,26289144,4
+Kingnima,26289144,4
+92427949,26289144,5
+49854531,26289144,3
+46439800,26289144,2
+Eie10_9,26289144,5
+4189551,26289144,-1
+88481535,26289144,5
+121243676,26289144,5
+austing,26289144,5
+whiteStripes,26289144,2
+24900499,26289144,3
+62582526,26289144,4
+2471325,26289144,4
+131338219,26289144,2
+60952252,26289144,4
+47166701,26289144,3
+57001973,26289144,4
+libaokui,26289144,4
+cuppa,26289144,4
+4407883,26289144,3
+61132884,26289144,3
+45345873,26289144,3
+129087038,26289144,4
+79915546,26289144,4
+51362848,26289144,3
+strangersssss,26289144,5
+43909148,26289144,5
+48217298,26289144,5
+54323614,26289144,5
+67262547,26289144,4
+elvandjane,26289144,4
+53718083,26289144,5
+55863856,26289144,4
+43542310,26289144,3
+69520730,26289144,5
+2602594,26289144,3
+darlingtudai,26289144,4
+62568293,26289144,5
+61280115,26289144,5
+57150118,26289144,4
+74718882,26289144,3
+47302500,26289144,2
+31978586,26289144,5
+lovewallace1130,26289144,5
+lianshengruci,26289144,4
+89329574,26289144,4
+2032702,26289144,5
+51126355,26289144,5
+92962269,26289144,3
+sharkup,26289144,3
+3542307,26289144,4
+68449205,26289144,5
+Madao_D,26289144,3
+43650897,26289144,4
+75163927,26289144,4
+53817733,26289144,5
+53462734,26289144,3
+hanxiaonuan,26289144,3
+phonexu,26289144,3
+29958349,26289144,5
+Monster_004,26289144,4
+3786994,26289144,5
+50792165,26289144,4
+unakao,26289144,5
+49586478,26289144,4
+shinemypolaris,26289144,4
+107718660,26289144,3
+53497780,26289144,3
+jc119,26289144,5
+69196878,26289144,3
+75756405,26289144,3
+74962272,26289144,5
+cheryl84,26289144,3
+misschonger,26289144,5
+85739611,26289144,4
+iklong,26289144,4
+58035552,26289144,3
+chuan1989,26289144,5
+51975402,26289144,3
+Dpudding,26289144,5
+sunxujjack,26289144,3
+2397813,26289144,4
+kimixu1017,26289144,3
+55011213,26289144,5
+11935248,26289144,5
+47764024,26289144,4
+47489065,26289144,5
+discon,26289144,3
+41806618,26289144,4
+64173822,26289144,4
+chenwanrao,26289144,4
+chenwanrao,26289144,4
+Lelio090101,26289144,3
+128509659,26289144,4
+66880325,26289144,5
+71214465,26289144,4
+103269832,26289144,5
+96137054,26289144,4
+53133974,26289144,5
+seekyo,26289144,4
+129293724,26289144,5
+49199928,26289144,5
+69048023,26289144,3
+4024224,26289144,4
+Araide_Rie,26289144,5
+yangqijane,26289144,5
+toddzhou,26289144,4
+130167204,26289144,4
+dqzhuzhu,26289144,5
+4268724,26289144,1
+elle.luo,26289144,5
+CanaanYoung,26289144,3
+76339815,26289144,5
+flowertide,26289144,4
+67529255,26289144,4
+97348317,26289144,3
+my.80.times,26289144,5
+48072166,26289144,3
+120909510,26289144,3
+57405925,26289144,5
+AnchorS,26289144,5
+wwnoah,26289144,4
+sarinalee,26289144,4
+6987390,26289144,2
+33538024,26289144,5
+Abandoned_Sundy,26289144,4
+joly523,26289144,5
+4422074,26289144,4
+124636499,26289144,4
+2906253,26289144,3
+lion,26289144,3
+79847046,26289144,4
+107493544,26289144,4
+121700538,26289144,5
+62817881,26289144,4
+letonk,26289144,5
+67389352,26289144,4
+star-,26289144,4
+48906452,26289144,4
+46697374,26289144,3
+1179798,26289144,5
+92200521,26289144,5
+121805239,26289144,4
+3846319,26289144,4
+zaizaiyoxi,26289144,5
+91295474,26289144,5
+74404471,26289144,-1
+40875034,26289144,5
+67204969,26289144,5
+68741248,26289144,5
+129106127,26289144,3
+64705544,26289144,5
+lephemera,26289144,4
+wsyta,26289144,5
+sunnyujia,26289144,5
+listenmumu,26289144,5
+63287228,26289144,4
+qixian1125,26289144,4
+InTheShadowOfLo,26289144,3
+2296297,26289144,4
+reccx,26289144,5
+mixradio,26289144,3
+vanjohnbob,26289144,5
+13405505,26289144,3
+mingtaiyupao,26289144,5
+henry929,26289144,4
+83817130,26289144,4
+lukeyu,26289144,5
+54977613,26289144,4
+shushizhenliu,26289144,4
+70278827,26289144,4
+suppppperrr,26289144,5
+62978822,26289144,5
+46342757,26289144,4
+feng-tracy,26289144,4
+90785580,26289144,4
+36621116,26289144,4
+43232986,26289144,5
+48545858,26289144,4
+83601520,26289144,5
+dongdayeah,26289144,4
+Knight9,26289144,4
+dongshuiqiang,26289144,4
+naivekook,26289144,4
+ltraman,26289144,4
+54627862,26289144,5
+68874904,26289144,4
+fifa10,26289144,5
+53911259,26289144,3
+2738872,26289144,4
+chidaodexiaolou,26289144,3
+129376262,26289144,3
+3063479,26289144,4
+48281906,26289144,5
+gabriel_yyc,26289144,4
+30221113,26289144,2
+bethsc,26289144,5
+35567760,26289144,4
+mumaer,26289144,5
+69133855,26289144,-1
+80634044,26289144,4
+Aimovie,26289144,3
+42522085,26289144,5
+75940485,26289144,4
+74904112,26289144,4
+68806699,26289144,5
+43104606,26289144,4
+125934212,26289144,4
+127680038,26289144,2
+122244893,26289144,5
+ruo,26289144,5
+43328284,26289144,4
+mrwumao,26289144,4
+49305149,26289144,4
+49233634,26289144,3
+74932520,26289144,4
+28903343,26289144,5
+80414582,26289144,5
+79621273,26289144,5
+65706798,26289144,4
+62415146,26289144,5
+TiKuanYin,26289144,4
+phonicfei,26289144,5
+4842786,26289144,3
+67952869,26289144,4
+zzjjk5,26289144,5
+69074281,26289144,4
+irisyours,26289144,3
+Enigmapoet,26289144,4
+72538808,26289144,5
+binben,26289144,5
+10321693,26289144,5
+cschester,26289144,5
+62815815,26289144,5
+116648253,26289144,4
+47448262,26289144,4
+56892226,26289144,5
+96783169,26289144,5
+83701119,26289144,4
+79948176,26289144,4
+sherrychen,26289144,5
+35890204,26289144,5
+mickeyshufe,26289144,5
+4286712,26289144,5
+55365789,26289144,5
+130496328,26289144,3
+4651277,26289144,4
+56869847,26289144,4
+46430549,26289144,5
+93956191,26289144,4
+wentaoxie,26289144,3
+jinniuxiansheng,26289144,5
+flowervirus,26289144,5
+74910161,26289144,4
+zht777,26289144,5
+48763298,26289144,4
+75243231,26289144,4
+55919103,26289144,4
+Nenya,26289144,3
+davidtian,26289144,5
+2230826,26289144,4
+63352248,26289144,4
+58810279,26289144,3
+xiaosuii,26289144,4
+91396306,26289144,5
+yeyinger,26289144,5
+38599840,26289144,-1
+zhqiyao,26289144,4
+81916130,26289144,4
+63758231,26289144,5
+76857499,26289144,4
+sugartingshuo,26289144,4
+qingfengmao,26289144,5
+aegeanfjcdg25,26289144,5
+48034227,26289144,4
+52464033,26289144,4
+xijiayang,26289144,3
+63211106,26289144,4
+56977637,26289144,5
+3849316,26289144,3
+Avila_Yin,26289144,3
+78414144,26289144,3
+4694061,26289144,5
+lighttraveller,26289144,4
+74058706,26289144,5
+jygreen,26289144,4
+1994954,26289144,4
+heym,26289144,4
+sophie-z,26289144,-1
+bettylwx,26289144,3
+lovelans,26289144,5
+3538758,26289144,4
+3007033,26289144,5
+zhaoru,26289144,5
+4150144,26289144,4
+Jacc,26289144,4
+haozi20,26289144,3
+dssbnxz,26289144,5
+janice1124,26289144,4
+61533176,26289144,5
+mao227,26289144,5
+65369148,26289144,3
+yinchuanfu,26289144,5
+cyrus_wong,26289144,4
+52175149,26289144,3
+seafans,26289144,5
+50915937,26289144,4
+fangxiulei,26289144,1
+122161339,26289144,5
+littlegousheng,26289144,4
+52972063,26289144,3
+45623540,26289144,4
+aiyuo,26289144,5
+yfqc24pippo,26289144,3
+Kraatui,26289144,4
+65075320,26289144,5
+niguize,26289144,4
+76831491,26289144,2
+kyleul,26289144,5
+canmei,26289144,5
+bullshitforever,26289144,4
+dychou,26289144,3
+49628220,26289144,5
+Benny2qian,26289144,5
+47852493,26289144,4
+wangmian0729,26289144,4
+sofans,26289144,4
+jinglingwangzi,26289144,-1
+55769747,26289144,3
+91872215,26289144,4
+Obtson,26289144,3
+121933130,26289144,4
+justnijin,26289144,4
+3122796,26289144,4
+misteror,26289144,4
+48761994,26289144,3
+YYDEE,26289144,2
+tangmm,26289144,4
+allenzn125,26289144,4
+piaoweier,26289144,4
+83336803,26289144,4
+14914580,26289144,4
+GeiaoGeiao,26289144,3
+49872790,26289144,3
+71621608,26289144,3
+2649968,26289144,4
+59740753,26289144,4
+54049023,26289144,5
+46815070,26289144,3
+3382542,26289144,4
+38593153,26289144,5
+fuxiu,26289144,3
+Mickey-Cai,26289144,3
+50058629,26289144,4
+63995854,26289144,5
+48497184,26289144,3
+62743500,26289144,5
+44735401,26289144,4
+56072564,26289144,4
+bluegrid,26289144,4
+93202185,26289144,4
+3599865,26289144,3
+103474402,26289144,5
+amhuming,26289144,5
+120952542,26289144,2
+55799617,26289144,5
+83550216,26289144,4
+saosaoxy,26289144,3
+karita,26289144,5
+124254697,26289144,4
+70488224,26289144,4
+43423557,26289144,5
+miantiao123,26289144,5
+50820424,26289144,5
+clarattttt,26289144,5
+107561388,26289144,3
+34956783,26289144,4
+YOHaYY,26289144,4
+1043714,26289144,3
+41638531,26289144,5
+94585757,26289144,4
+69127375,26289144,4
+weinixiongjide,26289144,3
+yunwaizhizhi,26289144,4
+83717387,26289144,5
+doraeman,26289144,3
+62199242,26289144,5
+53044772,26289144,5
+douxiaokou,26289144,3
+youzibanana,26289144,4
+44145594,26289144,2
+44145594,26289144,2
+huohuoa,26289144,5
+diorsunrise,26289144,4
+evilQin,26289144,3
+57835232,26289144,5
+SELVEN,26289144,3
+63742684,26289144,3
+elia01,26289144,4
+62053077,26289144,4
+jeremy25,26289144,5
+shanguicheng,26289144,4
+36183091,26289144,5
+48523065,26289144,3
+libiezaijian,26289144,3
+megansyr,26289144,4
+61511872,26289144,3
+3435437,26289144,5
+2986410,26289144,4
+huoruiting,26289144,5
+19921711,26289144,5
+51339375,26289144,5
+yunge1991,26289144,3
+june.q,26289144,3
+19861416,26289144,5
+85016135,26289144,4
+75215757,26289144,3
+3085103,26289144,4
+21354916,26289144,4
+2571757,26289144,2
+32415478,26289144,5
+2059210,26289144,3
+zzy1217,26289144,2
+63069817,26289144,4
+119192914,26289144,5
+127329113,26289144,4
+15528507,26289144,4
+13148640,26289144,4
+73993036,26289144,3
+DeWatson,26289144,5
+52944642,26289144,4
+59774628,26289144,4
+aprilfoollee,26289144,4
+angel15ferry,26289144,5
+Iamwanghaha,26289144,5
+78319959,26289144,1
+mickyququ,26289144,3
+4600161,26289144,4
+62122665,26289144,4
+3341499,26289144,4
+121228591,26289144,4
+JerryFeng,26289144,4
+55324515,26289144,3
+2498446,26289144,5
+106497872,26289144,5
+elefant,26289144,3
+yalindongdong,26289144,4
+tjz230,26289144,4
+66966914,26289144,4
+76185877,26289144,5
+68156660,26289144,4
+115104803,26289144,5
+Scorpio_lxs,26289144,5
+67013030,26289144,3
+62871612,26289144,3
+jose-,26289144,5
+37948273,26289144,4
+66819256,26289144,5
+Darevivion,26289144,3
+bianyuanai,26289144,5
+37889499,26289144,5
+henhen0701,26289144,5
+84755665,26289144,4
+shixiaoxuan,26289144,5
+sisje,26289144,3
+132341755,26289144,3
+61602605,26289144,4
+raychau,26289144,3
+noh55iw,26289144,4
+58297451,26289144,5
+bellagio,26289144,3
+45508468,26289144,4
+jaredspecter,26289144,3
+liuhuaminson,26289144,3
+49902714,26289144,3
+sweetlalalove,26289144,3
+47188401,26289144,5
+4401259,26289144,4
+81301624,26289144,4
+Mathilda_428,26289144,4
+wangpenguin,26289144,4
+yy_cha,26289144,4
+79746301,26289144,4
+younger105,26289144,4
+57105566,26289144,3
+xiaotuo,26289144,3
+76901769,26289144,4
+sewer-d,26289144,4
+60312308,26289144,5
+KOBENYF,26289144,5
+50574546,26289144,5
+3917363,26289144,4
+RoyalParty,26289144,5
+59664988,26289144,5
+50043116,26289144,4
+min1,26289144,5
+50231066,26289144,4
+80508054,26289144,-1
+sakimay,26289144,3
+youngfire,26289144,4
+42328531,26289144,3
+65308671,26289144,4
+65719691,26289144,4
+75866967,26289144,5
+72164651,26289144,5
+114358395,26289144,3
+4135777,26289144,4
+dearruby,26289144,4
+mikey_chou,26289144,3
+62716748,26289144,1
+3079698,26289144,4
+98424901,26289144,5
+ScarlettCheung,26289144,5
+28798513,26289144,4
+40281526,26289144,4
+keiskeihyy,26289144,5
+64867760,26289144,5
+51781734,26289144,-1
+79750101,26289144,4
+yuki7799,26289144,5
+rosavivian,26289144,4
+minglemingle,26289144,4
+63034866,26289144,5
+61921759,26289144,4
+lxu,26289144,4
+66975195,26289144,4
+jeffchuwei,26289144,3
+wangheda,26289144,4
+48530285,26289144,4
+4108180,26289144,4
+40581978,26289144,4
+40581978,26289144,4
+wangyujia520,26289144,4
+91024874,26289144,1
+ijunojiang,26289144,5
+chenrongrong28,26289144,4
+51124344,26289144,-1
+daphneleaf,26289144,4
+125524083,26289144,4
+cjdowson,26289144,5
+roseyan_lxy,26289144,4
+49439864,26289144,4
+72432038,26289144,4
+51204884,26289144,5
+FrankWasabi,26289144,3
+35805626,26289144,3
+46449280,26289144,4
+yamaci,26289144,3
+51095448,26289144,3
+mobymarry,26289144,5
+meilingmj,26289144,4
+108583705,26289144,5
+130666196,26289144,5
+fylingy,26289144,3
+awuawu,26289144,4
+3949296,26289144,4
+57409751,26289144,4
+45231027,26289144,4
+70271335,26289144,4
+dcydb,26289144,4
+Carf,26289144,3
+visss,26289144,4
+81120462,26289144,5
+54296399,26289144,2
+47029323,26289144,4
+2733941,26289144,3
+134520468,26289144,4
+135939677,26289144,4
+66794775,26289144,5
+34040552,26289144,3
+66333721,26289144,3
+48137780,25752261,3
+q114055080,25752261,-1
+97334739,25752261,4
+121142020,25752261,4
+1838937,25752261,5
+snowchong1984,25752261,4
+45181987,25752261,4
+19124466,25752261,3
+40850926,25752261,1
+64092114,25752261,5
+71078758,25752261,5
+134057557,25752261,3
+1354076,25752261,4
+62635960,25752261,5
+125154714,25752261,2
+90105219,25752261,5
+56249366,25752261,4
+126348691,25752261,4
+122258109,25752261,3
+nizhenhua1981,25752261,3
+122587004,25752261,2
+krisleung,25752261,5
+pkuwu,25752261,4
+35905879,25752261,4
+122789808,25752261,2
+65890025,25752261,4
+11192863,25752261,4
+4291484,25752261,3
+109488189,25752261,4
+56994326,25752261,4
+34835392,25752261,4
+47415286,25752261,4
+70699214,25752261,3
+4624601,25752261,3
+136133409,25752261,3
+lingqingchun,25752261,-1
+62816278,25752261,3
+silent.mi,25752261,3
+qstc12345,25752261,4
+hianan,25752261,4
+hianan,25752261,4
+21680407,25752261,-1
+fenjinnan,25752261,4
+cappuccino-jl,25752261,3
+hrzlvn,25752261,3
+Fil-girl,25752261,3
+80430212,25752261,2
+axio,25752261,4
+lovetowns,25752261,4
+2198362,25752261,5
+70872466,25752261,4
+zhanghui1988,25752261,4
+spirita,25752261,4
+57160155,25752261,4
+61767555,25752261,4
+putaowong,25752261,5
+101978260,25752261,5
+31313042,25752261,3
+coffeehao,25752261,4
+54327177,25752261,2
+54327177,25752261,2
+rechal1218,25752261,4
+104462145,25752261,-1
+131783056,25752261,4
+43817219,25752261,4
+loafingnick,25752261,3
+lampin,25752261,3
+56985246,25752261,4
+49838718,25752261,4
+kongxiaojie,25752261,3
+42939013,25752261,4
+66191716,25752261,4
+87320259,25752261,3
+57550343,25752261,3
+47056482,25752261,4
+37229624,25752261,4
+138128237,25752261,4
+41740929,25752261,4
+35106539,25752261,4
+57642444,25752261,4
+35892393,25752261,3
+76460934,25752261,3
+68277125,25752261,3
+8873669,25752261,5
+131838639,25752261,4
+100230675,25752261,5
+54202610,25752261,2
+wangyuan2648,25752261,3
+46166294,25752261,5
+48003781,25752261,3
+Dreamology525,25752261,4
+luxe,25752261,5
+doreending,25752261,4
+131182158,25752261,2
+64013139,25752261,4
+64624172,25752261,-1
+52763562,25752261,4
+ly08096,25752261,5
+50992070,25752261,4
+75259919,25752261,5
+48261192,25752261,4
+16331608,25752261,4
+67266475,25752261,4
+42661364,25752261,3
+122048565,25752261,5
+50532923,25752261,2
+wuyunoy,25752261,4
+62791393,25752261,5
+48144780,25752261,4
+yycat,25752261,4
+tangmm,25752261,3
+85320947,25752261,4
+babylon14,25752261,5
+53275472,25752261,3
+61341827,25752261,4
+3971708,25752261,4
+59398238,25752261,5
+2946787,25752261,4
+2830223,25752261,3
+58810077,25752261,-1
+goldensunflower,25752261,-1
+2798381,25752261,4
+131333953,25752261,3
+2720430,25752261,5
+1482288,25752261,4
+2468582,25752261,3
+pennate,25752261,4
+tiebin223,25752261,5
+53023463,25752261,4
+83299695,25752261,4
+62388823,25752261,5
+127131340,25752261,3
+royalheart,25752261,3
+10444299,25752261,5
+50451729,25752261,4
+101937454,25752261,3
+laraison,25752261,4
+136942011,25752261,5
+135928484,25752261,4
+mslc5024,25752261,4
+easytodo,25752261,4
+lostgraduate,25752261,3
+veroniques,25752261,4
+Monster_004,25752261,5
+1437339,25752261,4
+74199863,25752261,5
+naizhengtan,25752261,4
+47593725,25752261,5
+Moqi,25752261,3
+yituanjianghu,25752261,4
+lvyaoking,25752261,5
+50473170,25752261,4
+43554408,25752261,4
+52487586,25752261,4
+42057447,25752261,-1
+csaver,25752261,5
+137555231,25752261,4
+inthesummer,25752261,3
+48445532,25752261,3
+badjian,25752261,4
+65079342,25752261,4
+Knight9,25752261,4
+81163129,25752261,5
+136263386,25752261,5
+48709489,25752261,3
+Queen613,25752261,4
+76509928,25752261,3
+81304385,25752261,5
+113345841,25752261,4
+Leesuner,25752261,4
+135753239,25752261,1
+Lkila,25752261,5
+5116652,25752261,3
+126393954,25752261,5
+49624513,25752261,3
+57583046,25752261,5
+52899761,25752261,5
+PasS__bY,25752261,3
+canran1989,25752261,3
+59649901,25752261,3
+zyone,25752261,5
+82766218,25752261,5
+yangruozheng,25752261,5
+beckhacong,25752261,5
+48790837,25752261,4
+69362231,25752261,5
+1991085,25752261,4
+51904993,25752261,3
+andybabyroy,25752261,4
+127299151,25752261,3
+31970870,25752261,3
+iamsellpigs,25752261,5
+48863903,25752261,3
+135545986,25752261,3
+innnnnni,25752261,4
+115553730,25752261,4
+130445057,25752261,3
+2543390,25752261,4
+119263813,25752261,3
+129521464,25752261,4
+limabixiaojie,25752261,4
+39362601,25752261,3
+miof,25752261,4
+1995910,25752261,4
+52025578,25752261,3
+47165746,25752261,3
+44510032,25752261,4
+50526806,25752261,3
+64274502,25752261,5
+61330896,25752261,5
+wu-x,25752261,4
+zhuyaoyao,25752261,3
+48304899,25752261,4
+aabbccjay,25752261,4
+43539810,25752261,4
+54611627,25752261,5
+65520417,25752261,4
+Sadalsuudy,25752261,5
+aka-sybil,25752261,3
+43094798,25752261,5
+65279270,25752261,1
+4290500,25752261,4
+nicocs,25752261,5
+127932658,25752261,3
+104985254,25752261,4
+100020528,25752261,3
+43820792,25752261,4
+iskl,25752261,4
+1712187,25752261,3
+63937204,25752261,4
+3705182,25752261,4
+46065523,25752261,5
+53869706,25752261,4
+87603533,25752261,5
+137800179,25752261,5
+71176381,25752261,5
+x-miko,25752261,4
+86450573,25752261,4
+kurcee,25752261,5
+51781269,25752261,-1
+yushan33,25752261,3
+52477308,25752261,2
+36100413,25752261,5
+133978729,25752261,3
+3936900,25752261,5
+ichangan,25752261,4
+2866973,25752261,4
+91140276,25752261,3
+31698933,25752261,3
+3494790,25752261,3
+3314831,25752261,3
+pizzamx,25752261,5
+48945780,25752261,4
+easonkoko,25752261,3
+yiibaby,25752261,4
+inearlysummer,25752261,4
+55287270,25752261,4
+53455347,25752261,4
+1092465,25752261,3
+pandoranavi,25752261,5
+62874039,25752261,5
+6442650,25752261,5
+losrfuu,25752261,3
+59048783,25752261,5
+55771467,25752261,4
+76529709,25752261,4
+41842523,25752261,5
+1981762,25752261,5
+70923979,25752261,3
+40861955,25752261,4
+55366144,25752261,5
+121460001,25752261,5
+76654767,25752261,5
+124737964,25752261,-1
+135928273,25752261,-1
+42905617,25752261,4
+98014856,25752261,3
+jianchen810,25752261,3
+68174256,25752261,4
+34479227,25752261,3
+65720427,25752261,3
+81685996,25752261,4
+windyboy,25752261,4
+124568969,25752261,3
+57684790,25752261,4
+34648661,25752261,3
+121875738,25752261,3
+49441067,25752261,4
+alec13131,25752261,4
+2732455,25752261,4
+45918820,25752261,4
+cca2222223,25752261,2
+2426372,25752261,3
+67232116,25752261,-1
+75323893,25752261,4
+njuhmj,25752261,3
+xiaoqiww,25752261,4
+50499996,25752261,4
+3519752,25752261,3
+56239771,25752261,5
+38527141,25752261,4
+aprilpear,25752261,4
+59253003,25752261,4
+124210070,25752261,3
+LegendZX,25752261,5
+37306803,25752261,4
+137670832,25752261,4
+102916412,25752261,5
+taichele,25752261,3
+104748049,25752261,3
+63453904,25752261,4
+2622666,25752261,3
+36071533,25752261,4
+131749198,25752261,3
+4324357,25752261,3
+bfa1950,25752261,4
+67958578,25752261,3
+42817015,25752261,3
+driftorhu,25752261,4
+115329516,25752261,4
+1198621,25752261,4
+1084703,25752261,4
+Claudialovedad,25752261,3
+51445817,25752261,4
+49201790,25752261,4
+134108684,25752261,4
+goofy-G,25752261,5
+100370956,25752261,4
+2812599,25752261,4
+yaoyayue,25752261,5
+40835496,25752261,-1
+90412571,25752261,2
+sharplhl,25752261,3
+1313315,25752261,4
+53634803,25752261,5
+46734513,25752261,4
+31306349,25752261,4
+monkeek,25752261,4
+53370159,25752261,5
+lele4027,25752261,2
+61415736,25752261,3
+tequi1a,25752261,5
+91912832,25752261,4
+mashasha,25752261,4
+59472697,25752261,-1
+MALIMA,25752261,5
+55017354,25752261,3
+1170928,25752261,4
+62832736,25752261,4
+feellings,25752261,3
+119590373,25752261,3
+137437939,25752261,5
+laohao,25752261,3
+46055685,25752261,3
+veronicawu1982,25752261,5
+88564672,25752261,3
+53942992,25752261,5
+3086120,25752261,3
+91280997,25752261,4
+52428120,25752261,4
+123238661,25752261,5
+59336433,25752261,3
+39108497,25752261,4
+53526243,25752261,3
+46565536,25752261,2
+56871040,25752261,4
+Sze-wahng,25752261,3
+58693526,25752261,5
+69807491,25752261,3
+41898081,25752261,4
+31563326,25752261,3
+2717983,25752261,3
+6630818,25752261,4
+yan6,25752261,4
+84735501,25752261,5
+lilyz,25752261,3
+luoqiuyue,25752261,4
+slowfood,25752261,4
+53897145,25752261,4
+135936928,25752261,4
+bigsword,25752261,3
+65835081,25752261,5
+119874761,25752261,4
+34438242,25752261,4
+34155630,25752261,4
+1004754,25752261,3
+71586138,25752261,4
+48970342,25752261,4
+Hyke,25752261,4
+michaelya,25752261,4
+Renee_er_est,25752261,4
+129106127,25752261,4
+63282326,25752261,3
+75723338,25752261,4
+3924193,25752261,-1
+55494665,25752261,4
+126467467,25752261,4
+87937161,25752261,4
+47702767,25752261,4
+120038071,25752261,4
+3769878,25752261,4
+83094433,25752261,3
+xinanxinan,25752261,4
+tea123,25752261,4
+60811220,25752261,5
+apple16,25752261,4
+30725262,25752261,4
+Y19950422,25752261,1
+dqlead,25752261,3
+olejue,25752261,5
+137193574,25752261,4
+37552777,25752261,5
+corly13,25752261,5
+97030740,25752261,4
+conanwansui,25752261,4
+123736721,25752261,5
+3541486,25752261,4
+129057188,25752261,5
+fluorinespark,25752261,5
+41354434,25752261,4
+137483520,25752261,3
+oqopo,25752261,5
+Amy_L,25752261,5
+82235522,25752261,3
+45268716,25752261,4
+130773923,25752261,5
+37551097,25752261,3
+mrsmsr,25752261,3
+131909298,25752261,3
+hellofriday,25752261,4
+83192703,25752261,3
+aiwangyue,25752261,4
+63528738,25752261,5
+1314588,25752261,3
+76781286,25752261,4
+3631792,25752261,4
+1993256,25752261,5
+71117694,25752261,4
+CharlesTian,25752261,4
+MayaDey,25752261,4
+MayaDey,25752261,4
+happy_function,25752261,4
+102987982,25752261,3
+2404315,25752261,4
+55020304,25752261,3
+49297637,25752261,4
+132515968,25752261,5
+jean4you,25752261,3
+JasonKing1021,25752261,2
+alexhj,25752261,4
+108481476,25752261,4
+16395064,25752261,4
+weixiaoP,25752261,3
+neillee312,25752261,4
+57880300,25752261,4
+64713560,25752261,3
+DeepZhuo,25752261,3
+43343230,25752261,5
+71026194,25752261,4
+ayannagai,25752261,2
+37757034,25752261,4
+91252045,25752261,4
+44592673,25752261,4
+79506720,25752261,4
+75874006,25752261,4
+lanyangyangdecc,25752261,3
+kangwenyi,25752261,4
+4537053,25752261,2
+1122386,25752261,3
+126202371,25752261,4
+2324627,25752261,4
+heart_forever,25752261,5
+125553548,25752261,4
+47037959,25752261,3
+isatly,25752261,3
+63306713,25752261,5
+60072437,25752261,3
+37462874,25752261,3
+48195937,25752261,3
+yeats1865,25752261,3
+chrisyx,25752261,4
+sunpeipei,25752261,4
+4350779,25752261,4
+VC39,25752261,5
+interskh,25752261,3
+2613946,25752261,3
+32409019,25752261,5
+vanilla666,25752261,4
+43982125,25752261,4
+52188970,25752261,4
+1296334,25752261,4
+baggywalking,25752261,4
+zhuowenlz,25752261,3
+yiuyiuu,25752261,4
+kongguyouju,25752261,5
+shuikanshuizhid,25752261,4
+68730794,25752261,5
+2694587,25752261,4
+76976556,25752261,2
+116271293,25752261,5
+72086305,25752261,3
+88658178,25752261,3
+3854905,25752261,4
+susan1943,25752261,5
+74738582,25752261,3
+38090828,25752261,5
+49129833,25752261,4
+m-n,25752261,4
+54146328,25752261,4
+54991804,25752261,4
+ravingrabbid,25752261,4
+64060154,25752261,3
+hyacinthiris,25752261,3
+2848616,25752261,4
+57982827,25752261,4
+134523196,25752261,4
+65897421,25752261,3
+13984024,25752261,4
+60559982,25752261,4
+68410719,25752261,3
+112965343,25752261,4
+44109040,25752261,5
+Yuenyuan,25752261,3
+49519975,25752261,3
+61708505,25752261,4
+onlyblue16,25752261,4
+galvin2012,25752261,2
+m.chaotic,25752261,3
+71259453,25752261,5
+10723764,25752261,4
+loveraymond,25752261,4
+zhxyl,25752261,5
+54704864,25752261,4
+tlbin1989,25752261,4
+seth-king,25752261,4
+51795855,25752261,4
+45156629,25752261,4
+ewanyang11,25752261,4
+33261301,25752261,2
+zhangzhao345,25752261,4
+voene,25752261,3
+88857098,25752261,4
+63285193,25752261,4
+3398416,25752261,3
+zazaza,25752261,-1
+mrkingdom,25752261,4
+70007681,25752261,4
+bunny_Shen,25752261,4
+74230672,25752261,3
+dashebei,25752261,4
+wusiyunfeng,25752261,5
+lazyjo,25752261,3
+49994320,25752261,4
+3811853,25752261,4
+yuxiaodi1988,25752261,3
+zmyBattier,25752261,3
+74580493,25752261,2
+33684021,25752261,3
+63430017,25752261,3
+124869246,25752261,5
+124869246,25752261,5
+rockyanhua,25752261,4
+52466117,25752261,4
+53377652,25752261,4
+44990923,25752261,2
+DrGonzo,25752261,3
+2571322,25752261,3
+kunp,25752261,4
+86926721,25752261,3
+twooneseven,25752261,3
+4404541,25752261,4
+nsxrb,25752261,5
+48096986,25752261,5
+lovefilms,25752261,4
+siriusvicky,25752261,3
+53920626,25752261,4
+57275922,25752261,2
+ohnomiya,25752261,4
+50467985,25752261,4
+61945985,25752261,3
+62987205,25752261,-1
+127225715,25752261,2
+roymo,25752261,4
+88356969,25752261,4
+foolmyself,25752261,5
+36475631,25752261,5
+67759095,25752261,4
+44268763,25752261,5
+103208436,25752261,4
+79420813,25752261,4
+wingrabbit,25752261,4
+137206904,25752261,5
+62705311,25752261,3
+133978250,25752261,5
+97645479,25752261,4
+125849315,25752261,4
+47137013,25752261,3
+49542471,25752261,5
+75515881,25752261,3
+50995419,25752261,3
+50995419,25752261,3
+2074638,25752261,4
+78975012,25752261,5
+39698078,25752261,4
+98956225,25752261,5
+76335173,25752261,4
+58136152,25752261,5
+127298823,25752261,4
+136928599,25752261,5
+lstarss,25752261,2
+47621269,25752261,5
+anitajoy,25752261,4
+58697566,25752261,3
+4118910,25752261,4
+71240597,25752261,4
+68784188,25752261,4
+96869610,25752261,3
+majoselyqiujuan,25752261,4
+58338006,25752261,4
+88535863,25752261,4
+53678053,25752261,3
+82566965,25752261,4
+astrogirl1028,25752261,5
+88256455,25752261,3
+114257816,25752261,4
+38146297,25752261,3
+91325840,25752261,5
+eric_V,25752261,4
+57288678,25752261,4
+oriclschu,25752261,4
+50178808,25752261,3
+1074069,25752261,3
+27632752,25752261,4
+hehe2day,25752261,5
+3142312,25752261,4
+49854579,25752261,4
+48415827,25752261,4
+touch1986summer,25752261,3
+3971838,25752261,3
+50662959,25752261,4
+52124959,25752261,4
+136594496,25752261,4
+23400839,25752261,4
+60164301,25752261,5
+s-h-eet,25752261,3
+catfacegirl,25752261,3
+59583944,25752261,5
+90161175,25752261,2
+134625303,25752261,3
+maddaemon,25752261,3
+130540529,25752261,3
+1690690,25752261,4
+61681574,25752261,4
+jonasjonaszy,25752261,5
+51290521,25752261,1
+chekee,25752261,5
+61356337,25752261,3
+4582318,25752261,3
+louisyoung1026,25752261,2
+2579882,25752261,3
+52451378,25752261,3
+37212118,25752261,4
+pengpengyue,25752261,5
+arriettyT,25752261,3
+jolllllly,25752261,5
+honestydudu,25752261,3
+MC.Zi,25752261,5
+50939073,25752261,4
+134008062,25752261,5
+122871112,25752261,4
+1666027,25752261,4
+48406181,25752261,5
+kamine,25752261,3
+82655767,25752261,4
+hudodo0314,25752261,-1
+54011582,25752261,4
+piaoyull,25752261,3
+81241683,25752261,4
+120566516,25752261,4
+aaleng,25752261,3
+6646673,25752261,4
+CyberKnight,25752261,3
+83195313,25752261,4
+100413156,25752261,3
+48093431,25752261,3
+3003736,25752261,3
+82550997,25752261,2
+1491863,25752261,4
+45454541,25752261,5
+49594731,25752261,5
+mondialito,25752261,4
+Faychang,25752261,5
+youli241,25752261,4
+GATIK,25752261,5
+2226350,25752261,5
+88425798,25752261,3
+50109915,25752261,4
+fuyouforest,25752261,3
+72016479,25752261,4
+55715149,25752261,2
+3682455,25752261,4
+2286926,25752261,4
+3254520,25752261,4
+dongworui,25752261,3
+76732231,25752261,4
+daysofyouth,25752261,4
+91026618,25752261,5
+Elinna0525,25752261,5
+rockgong,25752261,2
+79635570,25752261,4
+tangmy,25752261,4
+31820753,25752261,3
+60101492,25752261,5
+135724867,25752261,5
+104707030,25752261,3
+66572341,25752261,-1
+dogfish,25752261,3
+136490082,25752261,5
+50297672,25752261,4
+2189984,25752261,-1
+48585196,25752261,4
+52737447,25752261,4
+103556883,25752261,4
+132951000,25752261,4
+44820765,25752261,4
+2488427,25752261,2
+51022866,25752261,4
+119863705,25752261,4
+46823456,25752261,4
+87884178,25752261,2
+48237514,25752261,5
+54622662,25752261,3
+86010283,25752261,5
+85190529,25752261,2
+fan77seven,25752261,5
+53830067,25752261,3
+55933493,25752261,4
+42862890,25752261,3
+sunny333,25752261,3
+72596766,25752261,5
+72596766,25752261,5
+66195013,25752261,1
+2655191,25752261,4
+2726151,25752261,3
+graceguolinjing,25752261,4
+luxise,25752261,3
+82823263,25752261,3
+128353754,25752261,3
+34707868,25752261,3
+65125200,25752261,5
+51587083,25752261,3
+77001369,25752261,4
+32144547,25752261,4
+4415716,25752261,4
+m_l,25752261,5
+33707224,25752261,3
+54323000,25752261,4
+Joy2009,25752261,4
+zhegejiale,25752261,3
+magieq,25752261,4
+64715710,25752261,4
+70499982,25752261,3
+110752603,25752261,3
+minijoan,25752261,4
+53316539,25752261,4
+2309931,25752261,4
+moonorz,25752261,4
+liuziruo,25752261,4
+40161822,25752261,5
+Sennir,25752261,4
+4096669,25752261,2
+hotice_1,25752261,5
+54450944,25752261,3
+4447712,25752261,4
+journeyboy,25752261,4
+3690173,25752261,5
+63277654,25752261,4
+50797855,25752261,3
+96140309,25752261,3
+122888716,25752261,5
+nianlu,25752261,3
+91537543,25752261,2
+2184495,25752261,4
+saknife,25752261,3
+earthchild,25752261,3
+86585180,25752261,4
+30354186,25752261,4
+38853044,25752261,3
+16348172,25752261,4
+3589399,25752261,3
+136878015,25752261,3
+73924056,25752261,5
+73123286,25752261,3
+1437680,25752261,4
+35819333,25752261,3
+14311494,25752261,3
+63095265,25752261,3
+sjzqzkn,25752261,3
+3852877,25752261,4
+42620728,25752261,3
+85234116,25752261,5
+4657028,25752261,3
+66056067,25752261,4
+128902296,25752261,4
+yang_fan_,25752261,4
+4904166,25752261,5
+66606480,25752261,-1
+yixiaoyan_,25752261,3
+55864034,25752261,4
+38452436,25752261,-1
+76032119,25752261,4
+121397901,25752261,5
+52894891,25752261,5
+79915546,25752261,5
+nuvo615,25752261,4
+22427303,25752261,4
+kandyball,25752261,4
+136019111,25752261,3
+NTkyrie,25752261,3
+26014787,25752261,3
+133088458,25752261,3
+3249318,25752261,5
+iloveEminem,25752261,3
+more1npc,25752261,5
+61015056,25752261,4
+lcm0414,25752261,4
+4409440,25752261,3
+4668252,25752261,5
+Miatang007,25752261,5
+79378805,25752261,4
+120878915,25752261,4
+agreedoes,25752261,4
+50519888,25752261,3
+65804378,25752261,3
+saviolalwj,25752261,4
+xlei130,25752261,2
+fantasy507,25752261,3
+53511950,25752261,4
+48756490,25752261,5
+limifly,25752261,5
+limifly,25752261,5
+115097585,25752261,4
+70278597,25752261,3
+1326010,25752261,3
+55800838,25752261,4
+56866137,25752261,4
+104056990,25752261,3
+56486542,25752261,4
+jennystar,25752261,4
+39708814,25752261,4
+63089726,25752261,5
+4242859,25752261,4
+77394245,25752261,4
+45274800,25752261,4
+65450414,25752261,4
+52656841,25752261,4
+135012811,25752261,4
+echolovekc,25752261,5
+guoqichepiao,25752261,-1
+136402775,25752261,5
+53791114,25752261,4
+42956067,25752261,5
+119249396,25752261,3
+biguniverse,25752261,4
+2713839,25752261,4
+58041448,25752261,5
+122855833,25752261,3
+47732306,25752261,5
+tutudance,25752261,5
+mira_yukin,25752261,5
+124640229,25752261,4
+76506122,25752261,4
+33688715,25752261,4
+56281076,25752261,4
+imoviemaker,25752261,3
+115819915,25752261,4
+Hunjianxia,25752261,4
+45722226,25752261,4
+bruce_liu1123,25752261,5
+blindye,25752261,3
+60460597,25752261,4
+63959089,25752261,4
+43475473,25752261,5
+xuxuyooxi,25752261,4
+121780577,25752261,3
+chinriya,25752261,3
+4342737,25752261,5
+pettydog,25752261,4
+29755688,25752261,5
+69542619,25752261,4
+52668501,25752261,3
+mekey,25752261,4
+zhouloveyun,25752261,4
+lovedtomma,25752261,1
+29127850,25752261,5
+callmetracy,25752261,4
+48409104,25752261,4
+sisyphos,25752261,4
+44066080,25752261,2
+77222475,25752261,4
+39200949,25752261,4
+120383320,25752261,3
+zzzt29,25752261,3
+beat6wong,25752261,-1
+70588269,25752261,3
+2210223,25752261,4
+45608027,25752261,4
+anmian,25752261,4
+hezhijie,25752261,5
+58901835,25752261,2
+marxpayne,25752261,4
+16171023,25752261,4
+2063546,25752261,4
+52792351,25752261,5
+117339283,25752261,3
+towne,25752261,3
+68736032,25752261,5
+melentao,25752261,4
+58021816,25752261,4
+zhukeke,25752261,4
+eazi2,25752261,4
+101699165,25752261,4
+kssky,25752261,4
+61813472,25752261,4
+yujie270,25752261,4
+44355487,25752261,4
+kaitangshou,25752261,4
+135746121,25752261,4
+yvoria,25752261,4
+40591919,25752261,4
+we_are_Smug,25752261,5
+56493831,25752261,4
+zhenglei1919,25752261,4
+darlingm,25752261,4
+51688901,25752261,5
+51302979,25752261,3
+young753951,25752261,5
+earlyzaozao,25752261,5
+48269766,25752261,3
+136693733,25752261,4
+135297886,25752261,4
+zhizhizhizhi,25752261,4
+131941091,25752261,5
+41363805,25752261,5
+39771066,25752261,5
+2331276,25752261,3
+4595474,25752261,4
+3130327,25752261,4
+43912671,25752261,3
+46144657,25752261,4
+JuliusLiao,25752261,5
+antime,25752261,4
+63865208,25752261,5
+42862661,25752261,4
+67231468,25752261,4
+94168906,25752261,5
+2504247,25752261,4
+3160790,25752261,5
+121558315,25752261,4
+41506911,25752261,4
+59408878,25752261,4
+66131519,25752261,4
+123481090,25752261,1
+nicemeat,25752261,4
+92490871,25752261,3
+57179724,25752261,3
+49979829,25752261,5
+125165455,25752261,4
+YSAZA,25752261,3
+xiuxii,25752261,4
+relaispferd,25752261,5
+6019648,25752261,4
+49362198,25752261,3
+6400247,25752261,5
+sunsun0222,25752261,5
+53227132,25752261,4
+58213815,25752261,3
+131068311,25752261,4
+40474222,25752261,4
+46285519,25752261,4
+40474222,25752261,4
+46285519,25752261,4
+1900968,25752261,5
+49037811,25752261,5
+72991242,25752261,3
+fotoz,25752261,4
+126838227,25752261,5
+87704099,25752261,-1
+83192314,25752261,4
+cheeseberry,25752261,4
+BlackPure,25752261,5
+40322094,25752261,5
+lotusworld,25752261,5
+125267371,25752261,3
+NBES,25752261,-1
+135731311,25752261,4
+72383278,25752261,4
+44923935,25752261,5
+1717832,25752261,4
+My_Little_World,25752261,4
+76802075,25752261,4
+53628473,25752261,-1
+xl8690,25752261,4
+Pius,25752261,4
+78833399,25752261,3
+130251472,25752261,2
+99181086,25752261,1
+50944576,25752261,4
+53749033,25752261,3
+maloma1721x,25752261,5
+84962977,25752261,4
+sophiaforfree,25752261,3
+Skin.C,25752261,4
+skywalkerw,25752261,3
+lulinhaohan,25752261,4
+74471598,25752261,3
+119295809,25752261,3
+63993568,25752261,4
+54506812,25752261,3
+64037870,25752261,5
+84166452,25752261,4
+halk,25752261,3
+49672172,25752261,4
+jindadong,25752261,3
+yin5,25752261,2
+follytinge,25752261,4
+56916670,25752261,3
+46150436,25752261,3
+136096165,25752261,3
+62607499,25752261,4
+63933607,25752261,5
+74589582,25752261,5
+60256082,25752261,5
+104433254,25752261,4
+57235976,25752261,4
+58506656,25752261,4
+44109266,25752261,3
+101956762,25752261,4
+63843063,25752261,2
+22105037,25752261,3
+willicy,25752261,4
+69982769,25752261,5
+qingxi52vv,25752261,4
+80060716,25752261,5
+41555500,25752261,3
+76549265,25752261,4
+134301446,25752261,4
+55863434,25752261,4
+15044978,25752261,5
+61088246,25752261,5
+47911245,25752261,4
+2441016,25752261,4
+33293861,25752261,3
+96536272,25752261,5
+twoored,25752261,5
+honeyforest,25752261,3
+80359060,25752261,1
+dsqingdao,25752261,-1
+43516388,25752261,4
+3535529,25752261,4
+x2x2x2,25752261,5
+m619546766,25752261,4
+45890616,25752261,3
+59192273,25752261,4
+2668897,25752261,5
+73975883,25752261,4
+yaoyaoxiaozhan,25752261,1
+58158290,25752261,4
+47768193,25752261,5
+115125689,25752261,4
+130292196,25752261,5
+82168131,25752261,5
+JunkRoad,25752261,4
+sunyuan,25752261,3
+73291837,25752261,3
+78501893,25752261,-1
+88172434,25752261,4
+72438704,25752261,5
+dionysian,25752261,4
+70930463,25752261,3
+96512812,25752261,5
+34405220,25752261,3
+122648938,25752261,3
+Southernghost,25752261,4
+Jessica_Nangong,25752261,3
+56241501,25752261,4
+123099974,25752261,5
+5467957,25752261,4
+41795083,25752261,4
+126898039,25752261,-1
+90859526,25752261,4
+53791841,25752261,4
+79779762,25752261,4
+imcici08,25752261,3
+62891256,25752261,4
+62855309,25752261,4
+68561607,25752261,3
+69195695,25752261,3
+ayurine,25752261,5
+35443594,25752261,4
+1998903,25752261,1
+BackToNight,25752261,4
+59538070,25752261,5
+57032941,25752261,4
+yueryu,25752261,4
+67383515,25752261,5
+82459449,25752261,3
+78603493,25752261,2
+4357598,25752261,4
+Sue0815,25752261,3
+41483799,25752261,4
+NysUn,25752261,4
+70354592,25752261,4
+54158411,25752261,3
+50919323,25752261,5
+55274244,25752261,3
+79139734,25752261,5
+102901525,25752261,3
+MyloveXxy,25752261,5
+3638314,25752261,4
+136421859,25752261,4
+Yolanda.Leo,25752261,4
+7221416,25752261,2
+kevi2dan,25752261,4
+moxmo,25752261,4
+4704797,25752261,5
+3733528,25752261,5
+lollipopwyj,25752261,3
+eastease,25752261,4
+132025988,25752261,4
+4251044,25752261,2
+119281931,25752261,1
+jeskovampire,25752261,5
+le_grand_bleu,25752261,4
+49708830,25752261,4
+Shark201303,25752261,3
+DKfeixiang,25752261,4
+Bai-Bbai,25752261,4
+76564313,25752261,3
+68661080,25752261,5
+76564313,25752261,3
+68661080,25752261,5
+2698249,25752261,3
+3442593,25752261,4
+126758242,25752261,3
+75801738,25752261,4
+withsurui,25752261,3
+32461449,25752261,5
+60112538,25752261,4
+shmilyeve,25752261,4
+46970893,25752261,4
+xingxing0889,25752261,4
+60703648,25752261,3
+kach244,25752261,3
+43409918,25752261,4
+88304289,25752261,2
+sakina_s,25752261,4
+2970713,25752261,4
+x1nyu,25752261,-1
+44141060,25752261,5
+56572401,25752261,5
+107718660,25752261,4
+2283018,25752261,2
+72061303,25752261,3
+acomplexman,25752261,4
+77619786,25752261,4
+61169740,25752261,4
+42816869,25752261,-1
+2117969,25752261,4
+vivianya,25752261,3
+1884591,25752261,4
+82630245,25752261,3
+49676712,25752261,4
+65280514,25752261,5
+3549577,25752261,4
+somegg,25752261,4
+85155782,25752261,4
+60650660,25752261,5
+121920760,25752261,4
+lfz,25752261,3
+70470821,25752261,3
+h1057015905,25752261,3
+115138237,25752261,4
+3931948,25752261,4
+2785136,25752261,-1
+lululovexiah,25752261,-1
+36784029,25752261,3
+62180561,25752261,3
+strawer,25752261,4
+vaneptune,25752261,5
+6797539,25752261,4
+133433124,25752261,3
+iamliving,25752261,5
+lidiss,25752261,4
+StanleyLiu,25752261,4
+Ken,25752261,4
+2339845,25752261,4
+135687100,25752261,4
+daisychen1942,25752261,5
+harjol,25752261,4
+55775160,25752261,5
+2777956,25752261,5
+yyuq,25752261,-1
+lyh1014,25752261,3
+82285213,25752261,3
+3693991,25752261,3
+1360789,25752261,3
+67153884,25752261,3
+DeWatson,25752261,5
+102751216,25752261,2
+43790131,25752261,3
+kamoku,25752261,4
+53829796,25752261,5
+59156269,25752261,3
+emmacqq,25752261,3
+67590523,25752261,3
+aprilhan,25752261,3
+1860994,25752261,4
+52758719,25752261,4
+4331359,25752261,2
+eksmemo,25752261,4
+nancywon,25752261,3
+4265798,25752261,4
+17790607,25752261,5
+76005313,25752261,5
+35567760,25752261,5
+Scarlett...,25752261,3
+49886917,25752261,5
+fangyuan1mi,25752261,2
+athena51244,25752261,5
+115982359,25752261,4
+sskllt,25752261,4
+72642943,25752261,3
+50135797,25752261,5
+47284322,25752261,4
+Devil.Q,25752261,3
+135975588,25752261,5
+79568500,25752261,5
+FinalFantasy,25752261,4
+41686662,25752261,3
+klggy,25752261,2
+likechuck,25752261,4
+BUZZSHUNJES,25752261,4
+taotainiang,25752261,5
+67436408,25752261,4
+areskila,25752261,5
+68020354,25752261,3
+58542880,25752261,5
+70379849,25752261,4
+3024636,25752261,4
+65832475,25752261,5
+WildandWarm,25752261,3
+73198350,25752261,5
+69790989,25752261,4
+17810133,25752261,3
+Snoopeacer,25752261,4
+40237768,25752261,3
+nemo2man,25752261,4
+pengyaos,25752261,4
+hyjstc,25752261,1
+hyjstc,25752261,1
+45375152,25752261,5
+frosteeeee,25752261,4
+xubosias,25752261,4
+135128946,25752261,4
+62699217,25752261,3
+76187986,25752261,5
+51664918,25752261,5
+51588465,25752261,4
+celestejue,25752261,3
+61739872,25752261,3
+51963997,25752261,4
+32561880,25752261,5
+59393765,25752261,3
+1240037,25752261,4
+c-bode,25752261,4
+53723765,25752261,5
+baicaidundoufu,25752261,4
+135378177,25752261,3
+103251122,25752261,4
+37948273,25752261,4
+66043535,25752261,4
+96948133,25752261,4
+59303781,25752261,3
+109868590,25752261,4
+60606413,25752261,4
+58121967,25752261,4
+huapiqiu,25752261,4
+49712766,25752261,4
+2213454,25752261,3
+48748065,25752261,5
+pangjiansheng,25752261,4
+134417369,25752261,4
+73039194,25752261,3
+Yunsta,25752261,3
+darkness211,25752261,4
+59834267,25752261,4
+52884834,25752261,3
+130758637,25752261,4
+57001880,25752261,3
+57001880,25752261,3
+36054625,25752261,3
+66183026,25752261,3
+47574517,25752261,3
+38479950,25752261,-1
+wangDP,25752261,5
+angalny,25752261,2
+jiong7,25752261,3
+64508591,25752261,3
+vva_,25752261,4
+64163444,25752261,4
+car.men,25752261,5
+78130123,25752261,4
+Cherryzuo,25752261,3
+YUKi.R,25752261,4
+newzallery,25752261,5
+smiletome,25752261,5
+47929973,25752261,4
+2234320,25752261,3
+2292966,25752261,5
+72576116,25752261,4
+lin2jie,25752261,4
+3617275,25752261,4
+chaud,25752261,5
+89063619,25752261,4
+48330242,25752261,3
+115083844,25752261,3
+shang132,25752261,3
+Georgehong,25752261,4
+louieeeee,25752261,3
+december.L,25752261,1
+bulijite,25752261,3
+103343443,25752261,3
+94578244,25752261,4
+liuhuanluoyang,25752261,4
+42531507,25752261,4
+2110961,25752261,4
+46590028,25752261,3
+64350273,25752261,4
+58747185,25752261,3
+samove,25752261,3
+willese,25752261,4
+nicdone,25752261,4
+4437785,25752261,5
+134434591,25752261,2
+71372922,25752261,4
+lina017890,25752261,5
+83404231,25752261,3
+49645185,25752261,-1
+25504280,25752261,5
+fsivyneof4,25752261,5
+3923065,25752261,4
+47747519,25752261,4
+62382864,25752261,5
+anpinglu,25752261,4
+snowyhowe,25752261,3
+69773402,25752261,-1
+56159025,25752261,3
+60435322,25752261,5
+starpieces,25752261,-1
+84855467,25752261,5
+shirleybin,25752261,4
+91756102,25752261,4
+terryanastasia,25752261,5
+59618340,25752261,4
+57545593,25752261,4
+53692479,25752261,3
+105270130,25752261,4
+1105624,25752261,2
+aprildaisy,25752261,4
+122090145,25752261,-1
+zcy2531,25752261,5
+2361128,25752261,4
+134495648,25752261,3
+1274832,25752261,3
+Zukunft,25752261,3
+MaclovenZD,25752261,4
+lolitahanhan,25752261,4
+123370298,25752261,4
+63770889,25752261,4
+63770889,25752261,4
+momo077,25752261,4
+amour,25752261,4
+49491185,25752261,3
+48501189,25752261,4
+2262469,25752261,3
+48994021,25752261,5
+lijie,25752261,3
+wxcn843,25752261,3
+dalizi,25752261,4
+enderstar,25752261,2
+41594789,25752261,4
+85316996,25752261,3
+82320533,25752261,5
+Banana_Z,25752261,4
+4909600,25752261,5
+104600854,25752261,5
+evabianyiwei,25752261,4
+somkanel,25752261,3
+4200336,25752261,4
+2769218,25752261,4
+2997234,25752261,3
+73741678,25752261,3
+zoe_dabai,25752261,4
+monk,25752261,2
+71772436,25752261,5
+130053920,25752261,3
+64748860,25752261,5
+11566740,25752261,2
+129466351,25752261,5
+5895489,25752261,3
+38327139,25752261,4
+45648190,25752261,4
+snakefly,25752261,5
+F1vese7enone,25752261,3
+59312159,25752261,5
+48737936,25752261,4
+44549735,25752261,4
+23450183,25752261,5
+moneylatem,25752261,3
+2921812,25752261,4
+mhyigeren,25752261,3
+kidify,25752261,3
+resurgam92dawn,25752261,4
+face0,25752261,4
+66794675,25752261,3
+edenhsu,25752261,2
+zhibo1992,25752261,5
+59017371,25752261,4
+52582150,25752261,4
+64142096,25752261,3
+musichellsing,25752261,3
+4134812,25752261,3
+64884896,25752261,4
+dengda,25752261,3
+63348521,25752261,4
+karo1993,25752261,4
+64692199,25752261,4
+37026691,25752261,5
+27261422,25752261,4
+75436336,25752261,4
+skeletone,25752261,5
+47167717,25752261,4
+51179038,25752261,5
+45099103,25752261,4
+73110105,25752261,4
+80503633,25752261,4
+41089133,25752261,4
+akashi,25752261,3
+42222694,25752261,3
+Qooo,25752261,4
+48554960,25752261,3
+sweethurts,25752261,5
+51310444,25752261,5
+82569258,25752261,5
+35514248,25752261,3
+67769734,25752261,4
+JamesPound,25752261,3
+50124782,25752261,4
+icerk,25752261,4
+47472746,25752261,4
+120879875,25752261,4
+4353001,25752261,4
+135237999,25752261,3
+134306404,25752261,4
+130320878,25752261,3
+65557756,25752261,4
+rebecca.psy,25752261,4
+jiujiuprincess,25752261,4
+2768603,25752261,3
+87387635,25752261,4
+48025965,25752261,3
+gangrel96,25752261,3
+lowingsea,25752261,-1
+54926735,25752261,4
+51045990,25752261,5
+65662348,25752261,3
+87521541,25752261,4
+51463285,25752261,5
+joybang,25752261,3
+59534707,25752261,4
+37679542,25752261,3
+samedittt,25752261,5
+93374803,25752261,4
+tonitoni,25752261,4
+jibenbanana,25752261,3
+53608504,25752261,3
+49439503,25752261,4
+42121668,25752261,5
+tatanolove,25752261,4
+micsense,25752261,4
+78053734,25752261,5
+LuckyStrikeNero,25752261,-1
+121475864,25752261,4
+qq381525772,25752261,1
+10828318,25752261,3
+62379540,25752261,5
+84078952,25752261,4
+AAAhua,25752261,4
+sherryvi,25752261,3
+74942804,25752261,3
+Insight,25752261,4
+brucas,25752261,3
+dengxuanhai,25752261,3
+movieview,25752261,4
+52828296,25752261,4
+4709296,25752261,2
+97869711,25752261,4
+129678208,25752261,3
+w8101,25752261,4
+2920373,25752261,4
+58308697,25752261,3
+Cicipo44,25752261,3
+lucia_LY,25752261,5
+47233944,25752261,4
+bananazookeeper,25752261,2
+128491346,25752261,5
+zhanglinge,25752261,4
+77676888,25752261,3
+49232358,25752261,3
+135451199,25752261,4
+ni484sa,25752261,4
+48766335,25752261,4
+54761530,25752261,-1
+2672889,25752261,4
+36152069,25752261,2
+56218882,25752261,2
+biti.vector,25752261,4
+2121850,25752261,3
+43476966,25752261,4
+134017391,25752261,5
+wanghuzou,25752261,4
+STILLWATERRUNS,25752261,3
+nalusea,25752261,4
+fbndragona,25752261,4
+72648633,25752261,3
+fuckoffpussy,25752261,4
+Youandi4,25752261,-1
+41644827,25752261,4
+ice-yan,25752261,5
+62978653,25752261,3
+cen1126,25752261,4
+massachy,25752261,4
+74104010,25752261,4
+44359880,25752261,4
+83089085,25752261,5
+102042212,25752261,4
+yunlongshang521,25752261,5
+Lotus511,25752261,4
+83298227,25752261,4
+moonpaul,25752261,4
+103020260,25752261,-1
+71569163,25752261,4
+jieyaren,25752261,2
+57240144,25752261,4
+AllenHarris,25752261,4
+48742011,25752261,3
+41786241,25752261,3
+renshaoqun,25752261,5
+67250998,25752261,-1
+67250998,25752261,-1
+daniayoyo,25752261,-1
+77378264,25752261,4
+66888888,25752261,3
+18571046,25752261,5
+52872697,25752261,5
+z0830,25752261,3
+luerdelphic,25752261,4
+moneybear,25752261,3
+iriszhong,25752261,5
+73532203,25752261,5
+1727088,25752261,4
+fyl00,25752261,3
+idreammrs,25752261,4
+coldmist,25752261,4
+waiting58,25752261,3
+jdqx,25752261,4
+4290135,25752261,4
+chelsenmao,25752261,5
+46965914,25752261,4
+130084772,25752261,3
+Ghost.Melody,25752261,4
+2275412,25752261,3
+48396212,25752261,3
+se7enwt,25752261,2
+54821794,25752261,4
+2600677,25752261,5
+76839665,25752261,3
+66803034,25752261,4
+47805986,25752261,-1
+35473568,25752261,4
+lightwings,25752261,4
+2237566,25752261,4
+1921806,25752261,2
+xiaopin19,25752261,4
+119942879,25752261,4
+4268350,25752261,4
+46310239,25752261,3
+85110196,25752261,4
+psyche213,25752261,4
+psyche213,25752261,4
+46718931,25752261,4
+50800754,25752261,4
+weneedplay,25752261,3
+65734199,25752261,3
+133123885,25752261,5
+babezeno,25752261,5
+131975363,25752261,3
+ChinTran,25752261,5
+36680326,25752261,4
+ducklucy,25752261,4
+52543603,25752261,3
+62877748,25752261,4
+1704805,25752261,3
+49807352,25752261,4
+liebejenny,25752261,3
+67574388,25752261,4
+tiramisu-katy,25752261,4
+lynnesay,25752261,3
+3855232,25752261,4
+3855232,25752261,4
+65418706,25752261,4
+111273600,25752261,5
+122765987,25752261,5
+88452602,25752261,4
+84406810,25752261,3
+49191117,25752261,4
+130890583,25752261,3
+biquan,25752261,1
+59842125,25752261,3
+98452549,25752261,4
+59347517,25752261,4
+86202635,25752261,4
+4287655,25752261,3
+houmuchiloveyou,25752261,4
+amibubai,25752261,4
+126957176,25752261,4
+3180095,25752261,3
+calandra,25752261,3
+85343444,25752261,5
+KidHolmes,25752261,4
+43589265,25752261,4
+48723558,25752261,4
+119461328,25752261,3
+snjjwb,25752261,4
+64239323,25752261,5
+zhoujiewu,25752261,3
+15439490,25752261,5
+37445047,25752261,3
+45291333,25752261,4
+vaan_konh,25752261,4
+Sherryego,25752261,4
+48855139,25752261,4
+nonob,25752261,4
+F7LOWER,25752261,4
+4481826,25752261,4
+pimichang,25752261,1
+hope62442,25752261,5
+56075027,25752261,2
+vivienvb,25752261,5
+46936953,25752261,3
+85266036,25752261,4
+52243326,25752261,2
+loischoi,25752261,4
+80893099,25752261,4
+clarattttt,25752261,4
+46428362,25752261,5
+58164155,25752261,4
+leonardodicapri,25752261,5
+95264069,25752261,4
+Microka,25752261,4
+67425224,25752261,3
+113088428,25752261,2
+119090951,25752261,5
+61280115,25752261,4
+48146801,25752261,5
+57168306,25752261,5
+89925651,25752261,3
+65339878,25752261,3
+2395529,25752261,4
+27518977,25752261,3
+43961500,25752261,4
+49465758,25752261,4
+jensen8985,25752261,3
+79352949,25752261,4
+2488466,25752261,4
+seancheung,25752261,3
+37450030,25752261,3
+53795201,25752261,4
+88822742,25752261,5
+124573261,25752261,5
+104265215,25752261,3
+Albus-feng,25752261,4
+29590814,25752261,3
+45754770,25752261,3
+47564941,25752261,3
+81916004,25752261,4
+sunmmerrainy,25752261,4
+66689721,25752261,3
+jhxxs,25752261,4
+amao890424,25752261,5
+130657350,25752261,4
+55447460,25752261,3
+56400825,25752261,4
+96654904,25752261,4
+4354747,25752261,-1
+122317247,25752261,5
+53868140,25752261,4
+54727803,25752261,4
+61184196,25752261,3
+57175016,25752261,3
+alphard0615,25752261,4
+marioshuairen,25752261,4
+wendayuan,25752261,4
+135570170,25752261,4
+eye-side,25752261,5
+NIMESH,25752261,4
+linxiaolin_,25752261,3
+55701739,25752261,5
+williamtse,25752261,4
+foreverGJC8023,25752261,4
+63150042,25752261,3
+126474447,25752261,3
+2935013,25752261,3
+62604469,25752261,4
+133486848,25752261,4
+singing_bird,25752261,3
+83942238,25752261,3
+52147499,25752261,5
+63793789,25752261,4
+90108397,25752261,4
+122360797,25752261,4
+49115709,25752261,4
+secretsoda,25752261,4
+42961533,25752261,4
+Rebecca_yu,25752261,4
+25560643,25752261,3
+ydyie,25752261,3
+8527993,25752261,3
+1943039,25752261,5
+1943039,25752261,5
+stoneyiyi,25752261,4
+50728438,25752261,3
+32551454,25752261,3
+66505410,25752261,4
+jupiterji,25752261,4
+58302904,25752261,4
+101503219,25752261,5
+longlongday,25752261,5
+zachzhou,25752261,4
+45655057,25752261,4
+urannus,25752261,4
+1588264,25752261,4
+fenshoudashi,25752261,3
+45385201,25752261,4
+FeeSouler,25752261,4
+98277632,25752261,2
+3502559,25752261,4
+54676136,25752261,3
+Edward_Elric,25752261,3
+57890138,25752261,3
+iloveeuro,25752261,3
+dltmw,25752261,4
+wyjfl,25752261,3
+49176180,25752261,5
+121074324,25752261,5
+zoepoirot,25752261,3
+4494902,25752261,3
+51945032,25752261,4
+43503664,25752261,5
+35697125,25752261,3
+62189600,25752261,-1
+37074871,25752261,3
+115994323,25752261,4
+21118502,25752261,4
+37225215,25752261,5
+133861190,25752261,3
+49220225,25752261,5
+xiankanhualuo,25752261,2
+53888176,25752261,4
+53888176,25752261,4
+43547642,25752261,4
+79852900,25752261,4
+4254152,25752261,4
+ET.papillon,25752261,4
+17109660,25752261,4
+2291503,25752261,5
+yaya102,25752261,4
+2338145,25752261,3
+porquetevas,25752261,4
+58467960,25752261,3
+28846484,25752261,4
+123663607,25752261,4
+MsDuoli,25752261,4
+135415686,25752261,2
+fabrique1987,25752261,4
+jolien,25752261,4
+73133920,25752261,5
+3671198,25752261,4
+58063696,25752261,4
+anicelv,25752261,3
+bennyrabbit,25752261,4
+50063811,25752261,3
+71140874,25752261,4
+geb515,25752261,2
+xunliwu,25752261,4
+lgl8839,25752261,5
+maybe520sunshin,25752261,4
+45785775,25752261,4
+70781768,25752261,-1
+132359473,25752261,5
+40760358,25752261,3
+genol,25752261,2
+cainroziel,25752261,4
+Vivian77,25752261,3
+64266034,25752261,4
+27598248,25752261,4
+1098294,25752261,5
+79873309,25752261,4
+cyeon,25752261,3
+cmyts54,25752261,5
+supernic,25752261,4
+foreverjc,25752261,3
+candia,25752261,5
+98626245,25752261,4
+52876797,25752261,4
+goldenday,25752261,4
+nakassuse,25752261,-1
+xiaochanzi,25752261,4
+qi221,25752261,5
+1133720,25752261,4
+23964620,25752261,4
+ayohan,25752261,4
+98605942,25752261,3
+98767132,25752261,4
+mczane,25752261,4
+129556271,25752261,2
+69224150,25752261,3
+119688975,25752261,5
+62375548,25752261,3
+pearl.lu,25752261,4
+62388997,25752261,5
+80637982,25752261,5
+53741508,25752261,5
+46058827,25752261,4
+lee7lee,25752261,5
+zhaodancuc,25752261,3
+132065702,25752261,4
+QueenieZee,25752261,4
+122124788,25752261,4
+southdrift,25752261,4
+fdid,25752261,2
+1492653,25752261,5
+cajiln,25752261,4
+77774632,25752261,3
+63595507,25752261,3
+pandaz23,25752261,4
+36031855,25752261,3
+tasvi,25752261,4
+66989068,25752261,3
+63961458,25752261,4
+55390748,25752261,4
+dahlie,25752261,4
+fay841883694,25752261,5
+flytomilan,25752261,4
+73868761,25752261,3
+50785660,25752261,5
+kanzaki666,25752261,3
+wzq1981,25752261,4
+foofights,25752261,4
+feiqilin,25752261,4
+53277775,25752261,3
+Aprilnuts,25752261,5
+ziyoupaifeizai,25752261,4
+68547609,25752261,3
+froggrandpa,25752261,3
+37746595,25752261,3
+77542604,25752261,4
+yoyodesmile,25752261,3
+14791938,25752261,4
+vincentjones,25752261,4
+75903225,25752261,3
+3846319,25752261,2
+3175216,25752261,5
+jolinalbert,25752261,4
+128086623,25752261,5
+120792651,25752261,3
+54593861,25752261,4
+xita,25752261,5
+yeahxcx,25752261,3
+79699248,25752261,3
+LinWoo,25752261,4
+skingqian,25752261,2
+135357583,25752261,5
+christinaliu,25752261,4
+49015850,25752261,4
+70574692,25752261,4
+63016674,25752261,4
+shift77,25752261,4
+xuanmg,25752261,5
+heathercone,25752261,3
+52104896,25752261,3
+jiyimicheng,25752261,5
+76515207,25752261,5
+zr90129,25752261,4
+givindream,25752261,3
+bbass,25752261,3
+4334431,25752261,3
+55840798,25752261,3
+49875622,25752261,2
+132186892,25752261,5
+78934649,25752261,4
+49394474,25752261,2
+2574869,25752261,5
+59440194,25752261,3
+103686584,25752261,5
+55419617,25752261,4
+80275782,25752261,3
+xchill,25752261,4
+126331855,25752261,4
+126331855,25752261,4
+llllllazy,25752261,4
+lovetatum,25752261,3
+rahrah,25752261,4
+2820792,25752261,4
+134916252,25752261,5
+solarshr,25752261,4
+1698143,25752261,4
+92919500,25752261,4
+marco_0708,25752261,3
+anison,25752261,3
+65380079,25752261,5
+54779295,25752261,3
+annie-bean,25752261,4
+jiangjem,25752261,5
+1550135,25752261,2
+122450255,25752261,3
+ludj_007,25752261,5
+3701499,25752261,4
+64879609,25752261,3
+2205975,25752261,3
+98280521,25752261,4
+hey7s1r,25752261,4
+cantona_x,25752261,4
+42576668,25752261,4
+62873685,25752261,4
+71895219,25752261,5
+57979888,25752261,5
+thethirteenth,25752261,2
+43646111,25752261,2
+58956706,25752261,4
+45266385,25752261,4
+55624184,25752261,3
+zilongu,25752261,5
+52943143,25752261,3
+33619574,25752261,5
+48812180,25752261,4
+122448234,25752261,5
+67342694,25752261,2
+130954450,25752261,4
+130954450,25752261,4
+czj950615,25752261,4
+74607366,25752261,-1
+yyh,25752261,4
+88338755,25752261,3
+4156800,25752261,4
+4008035,25752261,4
+48792321,25752261,4
+wdwinson,25752261,3
+guoguoguodaxia,25752261,5
+10128811,25752261,4
+125760534,25752261,3
+52572327,25752261,5
+mymike,25752261,4
+49808652,25752261,4
+lapand,25752261,4
+18045809,25752261,4
+59989606,25752261,5
+aboutdistance,25752261,4
+4246182,25752261,4
+85370337,25752261,5
+2756044,25752261,3
+1128067,25752261,2
+50994095,25752261,4
+Cyder,25752261,4
+eowyns,25752261,4
+122859901,25752261,4
+sisiwang,25752261,4
+44284522,25752261,4
+130222539,25752261,3
+54413129,25752261,4
+80058700,25752261,3
+hollycn,25752261,3
+52729351,25752261,4
+hangecho,25752261,4
+116073490,25752261,4
+caunion,25752261,5
+4404145,25752261,3
+46175747,25752261,4
+103685842,25752261,5
+81998298,25752261,4
+129571818,25752261,5
+128265644,25752261,4
+76442034,25752261,5
+3107549,25752261,3
+jack77gyq,25752261,5
+98165549,25752261,4
+121945022,25752261,5
+58945241,25752261,-1
+3674593,25752261,4
+89399541,25752261,3
+duoduoshuwu,25752261,4
+34486562,25752261,5
+giantchen,25752261,3
+2774116,25752261,3
+85472462,25752261,4
+69407013,25752261,5
+2515260,25752261,5
+57581825,25752261,4
+dbclbcl,25752261,2
+CheeseTree,25752261,5
+63105919,25752261,5
+85634562,25752261,4
+loftywain,25752261,-1
+moian,25752261,3
+58611624,25752261,3
+shir23,25752261,-1
+nearlloveyou,25752261,-1
+deasil,25752261,-1
+85288278,25752261,3
+1424695,25752261,3
+zooyam,25752261,3
+26473546,25752261,-1
+65580896,25752261,5
+48260143,25752261,4
+57562576,25752261,4
+130808289,25752261,4
+101462888,25752261,4
+liutianhong1992,25752261,3
+redsmile,25752261,-1
+2368703,25752261,-1
+114845268,25752261,2
+1417703,25752261,2
+eileenxx,25752261,5
+63224088,25752261,-1
+65974526,25752261,3
+119950155,25752261,4
+VVIVXIV,25752261,4
+121925432,25752261,4
+41927716,25752261,4
+lostyoursoul,25752261,5
+77199851,25752261,3
+47681496,25752261,4
+72643649,25752261,3
+phelix7,25752261,4
+biglovebigbang,25752261,5
+danielpaolod,25752261,3
+little_mari0,25752261,4
+ur.little.girl.,25752261,4
+53768301,25752261,3
+43222334,25752261,4
+71273423,25752261,4
+124004426,25752261,5
+liuyingxin_1984,25752261,4
+80578018,25752261,5
+miss2tao,25752261,4
+101792652,25752261,5
+fengwuyaoye,25752261,4
+53988209,25752261,2
+myself2,25752261,3
+81040698,25752261,4
+tinka,25752261,3
+74418129,25752261,5
+mucy95,25752261,5
+shenluos,25752261,4
+90854543,25752261,4
+62314563,25752261,4
+60563094,25752261,3
+67801477,25752261,-1
+53718083,25752261,3
+125001899,25752261,3
+xuyansong,25752261,3
+88193100,25752261,3
+3942203,25752261,4
+91935314,25752261,4
+3214138,25752261,4
+84418105,25752261,-1
+68799841,25752261,3
+48795051,25752261,1
+DVforever,25752261,3
+zhaozhaolv,25752261,3
+whz1143243564,25752261,3
+135067568,25752261,3
+muxu413,25752261,3
+46348954,25752261,4
+zyjsunk,25752261,4
+43039565,25752261,4
+izy1984,25752261,4
+doroink,25752261,5
+gossipygirl,25752261,4
+gossipygirl,25752261,4
+48153292,25752261,4
+2316813,25752261,3
+46983520,25752261,5
+wuliangmouji,25752261,3
+50493709,25752261,3
+cherub235,25752261,4
+Amiesays,25752261,5
+54231597,25752261,4
+blacktea077,25752261,3
+ymm,25752261,2
+47345728,25752261,5
+thierryhenry,25752261,4
+66632216,25752261,4
+69280679,25752261,3
+Elaine_citi,25752261,4
+JaceJing,25752261,3
+58288224,25752261,4
+myself7,25752261,4
+vv_gh,25752261,5
+3818190,25752261,5
+1852923,25752261,3
+52156870,25752261,3
+zyaiyoko,25752261,4
+wxhsolo,25752261,3
+2513938,25752261,3
+monetsun,25752261,-1
+shexinqian,25752261,3
+40613593,25752261,5
+30251701,25752261,4
+54711146,25752261,2
+1527758,25752261,3
+21729477,25752261,4
+huangrui1016,25752261,3
+54306906,25752261,4
+daisymouse,25752261,4
+ayumiH,25752261,3
+53639789,25752261,5
+Aianita,25752261,4
+53602254,25752261,4
+2417785,25752261,4
+49968268,25752261,3
+sleepinyoursong,25752261,5
+shanshan33,25752261,4
+61054715,25752261,4
+ipodmelody,25752261,4
+willdb,25752261,3
+40572936,25752261,3
+polarday,25752261,5
+47448827,25752261,5
+114435379,25752261,3
+jinduoduo,25752261,5
+58863257,25752261,5
+wajie1129,25752261,3
+52305498,25752261,4
+80912012,25752261,4
+51865230,25752261,4
+2253369,25752261,3
+68608061,25752261,4
+51213466,25752261,4
+seeyouaa,25752261,3
+96342252,25752261,3
+Q.Henry,25752261,5
+lyning,25752261,3
+20196112,25752261,4
+38744011,25752261,-1
+yasin.z,25752261,3
+celestetang,25752261,3
+2360360,25752261,5
+44820990,25752261,3
+130983616,25752261,4
+54395692,25752261,4
+linkliu,25752261,4
+121697874,25752261,4
+122381360,25752261,2
+YOUGOTGOU,25752261,3
+Jackandfoureyes,25752261,-1
+3510245,25752261,4
+46237216,25752261,4
+67826155,25752261,4
+Esine,25752261,3
+56248710,25752261,4
+53541312,25752261,4
+watchboy,25752261,5
+LolaLola,25752261,-1
+1498974,25752261,3
+43063615,25752261,4
+61369928,25752261,3
+88867964,25752261,5
+40116755,25752261,4
+2620783,25752261,5
+57382521,25752261,1
+42243165,25752261,5
+trianglecat,25752261,3
+Freiheit429,25752261,5
+60595664,25752261,4
+6102978,25752261,4
+73901440,25752261,4
+26487427,25752261,4
+MusiCspace,25752261,4
+22140861,25752261,4
+ccbadger,25752261,3
+3978591,25752261,3
+80503995,25752261,4
+134161390,25752261,3
+62420028,25752261,3
+2229995,25752261,4
+51840426,25752261,4
+49025271,25752261,5
+126980247,25752261,4
+73011629,25752261,4
+JuniorKnight,25752261,3
+bessie10105101,25752261,4
+4766836,25752261,3
+2429292,25752261,4
+68286323,25752261,4
+57740011,25752261,4
+61898774,25752261,4
+cherrywoodpig,25752261,3
+103735356,25752261,3
+yangtao0810,25752261,3
+88174425,25752261,2
+59197305,25752261,3
+ALTNATIONAL,25752261,4
+28009926,25752261,5
+41609523,25752261,5
+on1ooker,25752261,3
+thesillyone,25752261,5
+81030268,25752261,2
+seafans,25752261,4
+1643126,25752261,5
+memejoo,25752261,3
+72381317,25752261,5
+7934750,25752261,4
+xiao-song,25752261,3
+75175463,25752261,4
+52624380,25752261,2
+yzone,25752261,5
+46018704,25752261,3
+IMD__,25752261,4
+34486036,25752261,5
+3599865,25752261,5
+66311081,25752261,5
+52338601,25752261,5
+little_cupid,25752261,3
+renchenwei,25752261,4
+rongmenkezhan,25752261,3
+yuikkk,25752261,4
+133332673,25752261,3
+hecky,25752261,5
+vicky_talk,25752261,4
+63612050,25752261,3
+zichuanxiao,25752261,3
+54266589,25752261,4
+3571623,25752261,5
+56557982,25752261,4
+114057522,25752261,3
+3044565,25752261,3
+vigilgt,25752261,4
+45965937,25752261,4
+wiki7,25752261,-1
+116711265,25752261,4
+b4152070,25752261,4
+yuedawei,25752261,2
+shadowalker,25752261,3
+42689691,25752261,4
+2887572,25752261,4
+61724448,25752261,5
+yyue,25752261,-1
+20194870,25752261,4
+122394685,25752261,2
+holy-fishman,25752261,4
+Ahomo,25752261,2
+3509926,25752261,4
+la_luna,25752261,4
+39068910,25752261,4
+fuzyu,25752261,3
+59620866,25752261,4
+SaxaTamija,25752261,5
+67029274,25752261,4
+45905762,25752261,4
+bzfdu,25752261,4
+future-lee,25752261,4
+46123999,25752261,4
+65108877,25752261,4
+66557005,25752261,4
+69785577,25752261,5
+78408036,25752261,4
+44349376,25752261,3
+71181579,25752261,5
+59760298,25752261,5
+78977506,25752261,3
+77420474,25752261,4
+133651758,25752261,2
+2339752,25752261,3
+zhanghanha,25752261,3
+65132102,25752261,4
+silverland,25752261,4
+75288450,25752261,2
+74232483,25752261,5
+46607055,25752261,4
+87558213,25752261,4
+babyIker,25752261,4
+sanhao_love,25752261,4
+aaaaaaaaaaa,25752261,3
+dzl15,25752261,3
+48395509,25752261,3
+4077370,25752261,3
+68091042,25752261,4
+edocsil,25752261,4
+50017356,25752261,5
+79745413,25752261,5
+3617677,25752261,3
+1562154,25752261,4
+48765818,25752261,4
+89847136,25752261,4
+64244763,25752261,4
+73948805,25752261,4
+62304027,25752261,5
+48798073,25752261,3
+4914081,25752261,4
+zyv1224,25752261,4
+64309170,25752261,3
+40201382,25752261,4
+qingjuesikong,25752261,3
+78488911,25752261,3
+44705370,25752261,4
+liyuchen,25752261,5
+102938445,25752261,4
+47517431,25752261,3
+84010010,25752261,4
+2404348,25752261,4
+114991648,25752261,5
+geminehoo,25752261,4
+134528233,25752261,3
+67439008,25752261,5
+120547538,25752261,3
+Cgangs,25752261,4
+63583816,25752261,2
+51821114,25752261,5
+133067591,25752261,5
+48091725,25752261,5
+31951077,25752261,4
+sweettalk5205,25752261,3
+50264279,25752261,3
+134131182,25752261,4
+66629958,25752261,3
+AsleepOrDead,25752261,4
+52155271,25752261,4
+2974918,25752261,1
+xiaoyujiejie,25752261,2
+3991087,25752261,4
+81258030,25752261,3
+3266611,25752261,3
+61783140,25752261,4
+3678762,25752261,2
+11189422,25752261,4
+zaiyuzhouqin,25752261,5
+jaward,25752261,4
+lienhe,25752261,3
+81628425,25752261,3
+dinnerlove,25752261,4
+57707856,25752261,3
+121671392,25752261,3
+morechou,25752261,3
+1867121,25752261,4
+chesterchoi,25752261,4
+3218379,25752261,4
+96799379,25752261,4
+downbeats,25752261,4
+43842293,25752261,4
+57416489,25752261,5
+57262819,25752261,4
+62121031,25752261,3
+16460262,25752261,5
+laomi92,25752261,2
+129764944,25752261,3
+quxiaoli,25752261,5
+125971465,25752261,4
+64170974,25752261,4
+75937419,25752261,2
+49866554,25752261,4
+wuxipaopao,25752261,3
+cancerism,25752261,3
+51840690,25752261,4
+yzj1212,25752261,4
+37311123,25752261,4
+8882421,25752261,4
+51036171,25752261,4
+58290785,25752261,3
+SZH19920707,25752261,4
+26612648,25752261,5
+59867809,25752261,3
+60768165,25752261,3
+47481448,25752261,4
+3929718,25752261,4
+two_dogz,25752261,4
+12275685,25752261,5
+56731399,25752261,-1
+63171651,25752261,4
+1843710,25752261,4
+73189680,25752261,4
+sable_in_red,25752261,4
+48927560,25752261,4
+58131621,25752261,5
+fanmengya,25752261,5
+1845398,25752261,2
+look,25752261,2
+57249057,25752261,4
+weizen,25752261,3
+a_lying_eight,25752261,4
+happy178,25752261,4
+48216346,25752261,4
+41234171,25752261,4
+79337395,25752261,4
+yinmouren,25752261,4
+neverwashair,25752261,4
+gene4ever,25752261,4
+shf993,25752261,4
+54493645,25752261,4
+50217926,25752261,4
+58438773,25752261,3
+52399993,25752261,4
+nengyinyibeiwu,25752261,4
+zongjunxiao,25752261,4
+45242330,25752261,3
+44431964,25752261,5
+58207796,25752261,4
+93062015,25752261,4
+50054232,25752261,5
+81893070,25752261,4
+OpenSpaces,25752261,4
+58270150,25752261,4
+45490337,25752261,3
+mainemay,25752261,4
+3572503,25752261,4
+53400090,25752261,5
+72263938,25752261,4
+wamaggieng,25752261,5
+mousesayit,25752261,4
+kuangjieyu,25752261,3
+119597348,25752261,3
+bainiqiu,25752261,-1
+1979010,25752261,3
+119276408,25752261,4
+udbird,25752261,4
+50130752,25752261,3
+che.part.one,25752261,3
+db924519251,25752261,2
+62489520,25752261,4
+zwbhappy,25752261,2
+jiajia1130,25752261,3
+amyiwlyf,25752261,5
+99117906,25752261,4
+vito0719,25752261,5
+59927608,25752261,5
+96514775,25752261,5
+21133666,25752261,5
+jideknight,25752261,3
+47837056,25752261,4
+Alucard,25752261,4
+Mengzhuzhu,25752261,1
+jcpanda,25752261,4
+102158786,25752261,4
+1813198,25752261,5
+104777463,25752261,4
+xyyelfin,25752261,4
+richer725,25752261,3
+40447897,25752261,3
+116050896,25752261,5
+34390858,25752261,4
+liuGrey,25752261,3
+atoki,25752261,3
+72083821,25752261,5
+67330324,25752261,4
+2774375,25752261,4
+62860351,25752261,3
+127951901,25752261,2
+TomiOh,25752261,4
+57981494,25752261,4
+skyearthone,25752261,4
+46646449,25752261,2
+qixuelun,25752261,5
+happysadop,25752261,4
+65869124,25752261,5
+moshushi1123,25752261,4
+csi910,25752261,5
+47047627,25752261,4
+vermouthsama,25752261,4
+65187145,25752261,2
+57617460,25752261,3
+DKJessica,25752261,4
+vegenious,25752261,2
+60241657,25752261,5
+M1racle,25752261,3
+xiaoipiao,25752261,5
+8938679,25752261,3
+46149652,25752261,5
+58706786,25752261,-1
+50016760,25752261,5
+58052672,25752261,5
+62062793,25752261,4
+50742151,25752261,3
+51345502,25752261,4
+12360363,25752261,4
+2946363,25752261,4
+69631212,25752261,4
+tongflower,25752261,3
+123061684,25752261,5
+awesomz,25752261,4
+60664918,25752261,4
+77164733,25752261,4
+33693061,25752261,3
+101067288,25752261,4
+niugnip,25752261,3
+59217273,25752261,3
+HottestDaisy,25752261,5
+envyandecho,25752261,3
+134732771,25752261,4
+43978378,25752261,3
+48008465,25752261,4
+54485075,25752261,3
+57834233,25752261,4
+megane0931,25752261,2
+43256604,25752261,4
+52175149,25752261,2
+43270152,25752261,3
+127785608,25752261,4
+60311898,25752261,4
+69476809,25752261,5
+56421063,25752261,3
+1101928,25752261,3
+3477062,25752261,4
+14479133,25752261,4
+54158519,25752261,5
+81812897,25752261,4
+BethBubbly,25752261,4
+29302066,25752261,2
+80659174,25752261,5
+Renkomei,25752261,4
+83123138,25752261,4
+2799911,25752261,5
+122775909,25752261,4
+114669964,25752261,4
+67322553,25752261,3
+58644104,25752261,5
+11054187,25752261,4
+Cccabbage,25752261,4
+1457618,25752261,3
+2265138,25752261,5
+3198764,25752261,4
+riefuforyou,25752261,5
+2867036,25752261,5
+66344990,25752261,3
+55916506,25752261,3
+Pum,25752261,4
+47913948,25752261,4
+lidongyu,25752261,4
+47172452,25752261,2
+brucetown,25752261,3
+48650976,25752261,4
+134523911,25752261,4
+78731933,25752261,3
+88273996,25752261,4
+2332724,25752261,4
+59459283,25752261,4
+58544856,25752261,5
+visualhyde,25752261,3
+67854963,25752261,4
+yuer007,25752261,5
+67446786,25752261,5
+55910656,25752261,5
+51852760,25752261,3
+1174148,25752261,3
+78216114,25752261,3
+suzheer,25752261,4
+53212620,25752261,5
+71440202,25752261,4
+ferliciaf,25752261,4
+T.Shinoda,25752261,3
+45418355,25752261,3
+dolphin1408,25752261,-1
+134369817,25752261,3
+movie8,25752261,4
+127972732,25752261,4
+90051465,25752261,3
+wwwwind,25752261,4
+happy-ying,25752261,3
+71365804,25752261,5
+88317701,25752261,5
+seamouse,25752261,4
+131882002,25752261,4
+2718336,25752261,4
+58094874,25752261,3
+45414619,25752261,4
+67410434,25752261,3
+74641801,25752261,2
+58819021,25752261,3
+33705979,25752261,5
+4389847,25752261,4
+43788388,25752261,3
+108171675,25752261,4
+goofy,25752261,3
+53815086,25752261,4
+tijuana,25752261,4
+melissaou,25752261,5
+2305028,25752261,4
+45354123,25752261,3
+csc,25752261,3
+jafey1,25752261,1
+57981890,25752261,2
+dustblue,25752261,4
+catsama77,25752261,3
+mufengqin,25752261,3
+75812054,25752261,4
+41193009,25752261,4
+61640481,25752261,3
+33245540,25752261,3
+3039172,25752261,3
+89778884,25752261,3
+2546239,25752261,5
+43921829,25752261,4
+72606790,25752261,4
+fengs,25752261,5
+1205451,25752261,4
+tianranzijiegou,25752261,3
+60983088,25752261,2
+48807888,25752261,5
+ys1013,25752261,3
+83459700,25752261,4
+greensylviaq,25752261,5
+fxxxfancy,25752261,4
+rosiness,25752261,3
+41585470,25752261,2
+Filmdirector,25752261,3
+60228734,25752261,4
+59290556,25752261,4
+44710286,25752261,5
+50256249,25752261,5
+43282525,25752261,5
+43282525,25752261,5
+49428588,25752261,5
+4391066,25752261,3
+35925189,25752261,4
+1502044,25752261,5
+40003537,25752261,4
+50271561,25752261,5
+51583306,25752261,4
+80732468,25752261,4
+xiaomei0606511,25752261,4
+43532322,25752261,3
+59923496,25752261,5
+hikarulea,25752261,4
+48328231,25752261,5
+96000077,25752261,5
+127688878,25752261,5
+wangya.sophia,25752261,4
+1001195,25752261,4
+87584148,25752261,4
+1599200,25752261,4
+130860796,25752261,5
+69944887,25752261,5
+fuyu8818,25752261,4
+48678038,25752261,5
+nocturne11,25752261,3
+55849765,25752261,4
+67319725,25752261,4
+119829181,25752261,5
+72012626,25752261,2
+natejumper,25752261,3
+XXXXKKKK,25752261,3
+74768790,25752261,4
+49825242,25752261,5
+4514078,25752261,3
+howlformousai,25752261,4
+moesolo,25752261,4
+arota,25752261,5
+60054829,25752261,3
+52765670,25752261,4
+119063618,25752261,4
+47163316,25752261,5
+56603661,25752261,4
+justbella,25752261,3
+faceChrist,25752261,3
+79694642,25752261,-1
+ruoyingwang,25752261,4
+1557359,25752261,4
+lijunqi,25752261,5
+echowithu,25752261,4
+1605613,25752261,4
+aurden,25752261,4
+jhy007,25752261,4
+lazydesigner,25752261,3
+67575567,25752261,4
+40328376,25752261,5
+left_right,25752261,4
+53854867,25752261,4
+108289478,25752261,4
+51779600,25752261,4
+88201815,25752261,2
+1824542,25752261,4
+4481559,25752261,4
+43584128,25752261,4
+ivyfly,25752261,4
+2174443,25752261,4
+66854443,25752261,5
+1284677,25752261,5
+1514019,25752261,3
+wiwikuang,25752261,4
+131615477,25752261,3
+36568075,25752261,4
+120541509,25752261,3
+44230402,25752261,5
+65721466,25752261,3
+63923908,25752261,2
+1877066,25752261,4
+79846050,25752261,4
+raymann,25752261,2
+49298107,25752261,4
+68603418,25752261,4
+2056209,25752261,3
+51045384,25752261,4
+rinneco,25752261,4
+knoppers,25752261,4
+pumpkinTU,25752261,4
+HeyMok,25752261,3
+Zizou_Vam,25752261,4
+blackmeajump,25752261,4
+yoshimi,25752261,4
+45008619,25752261,4
+46712687,25752261,5
+4457496,25752261,4
+62416822,25752261,3
+2256967,25752261,5
+30166414,25752261,4
+64777260,25752261,3
+1452576,25752261,4
+46516340,25752261,5
+132226147,25752261,4
+aprisliver,25752261,5
+40512144,25752261,4
+1236338,25752261,3
+102364800,25752261,5
+48078859,25752261,3
+jasonai,25752261,3
+3730280,25752261,4
+45966706,25752261,4
+countessAlmasy,25752261,-1
+kangmeng,25752261,3
+129936841,25752261,4
+Johannisberg,25752261,2
+83040147,25752261,3
+47379301,25752261,5
+56824817,25752261,5
+45986784,25752261,4
+62259012,25752261,4
+96716394,25752261,5
+91350742,25752261,4
+131610704,25752261,4
+54234447,25752261,5
+83177067,25752261,5
+Ann-e,25752261,2
+130132099,25752261,3
+46948343,25752261,4
+Jaytaoo,25752261,4
+LauFun,25752261,3
+1671301,25752261,4
+35846375,25752261,5
+sunshinexuu,25752261,4
+ideyes,25752261,3
+SharonShining,25752261,4
+animationangel,25752261,5
+1616822,25752261,4
+Isabella_baby,25752261,3
+4516843,25752261,4
+130227648,25752261,3
+120299687,25752261,4
+58642484,25752261,5
+2156528,25752261,4
+neflower,25752261,3
+67333061,25752261,4
+84920230,25752261,3
+134469731,25752261,4
+bilin,25752261,3
+86807524,25752261,3
+renqiaoyun,25752261,4
+84374264,25752261,4
+noco,25752261,3
+2919381,25752261,2
+faycheung,25752261,4
+24502706,25752261,4
+3561048,25752261,4
+ele30tin,25752261,4
+104629005,25752261,4
+momoran,25752261,4
+runawaysleepful,25752261,5
+Harvey_Ho,25752261,5
+127755735,25752261,4
+wangjiejerry,25752261,4
+55438034,25752261,4
+80609092,25752261,3
+44345461,25752261,3
+frozone,25752261,2
+phejohnwang,25752261,4
+ld0717,25752261,3
+60701395,25752261,4
+55446081,25752261,3
+53785455,25752261,5
+66794531,25752261,4
+47723496,25752261,4
+shaoguangleo,25752261,4
+48644057,25752261,4
+63559969,25752261,4
+43531755,25752261,2
+50481255,25752261,4
+41787565,25752261,3
+79549976,25752261,5
+47458734,25752261,3
+45059307,25752261,3
+WatanabeSumire,25752261,3
+chuanshu,25752261,3
+thoughts,25752261,4
+63202867,25752261,3
+tiazhihen290,25752261,4
+123254320,25752261,3
+44345468,25752261,4
+solodeath,25752261,5
+123073450,25752261,3
+75034696,25752261,4
+63565906,25752261,4
+120860718,25752261,4
+63550585,25752261,4
+66177469,25752261,4
+34592808,25752261,3
+127781489,25752261,4
+MarquisX,25752261,4
+hcaelb,25752261,4
+feichangc,25752261,4
+64082591,25752261,5
+61021408,25752261,5
+67184394,25752261,3
+wuhe5,25752261,4
+86140576,25752261,-1
+StanleyCheung,25752261,4
+123543090,25752261,4
+zorrozj,25752261,4
+51549413,25752261,3
+54268454,25752261,5
+44975625,25752261,3
+7223165,25752261,5
+74599483,25752261,4
+2695144,25752261,5
+79652917,25752261,5
+nvxiahxx,25752261,4
+93900680,25752261,4
+4327225,25752261,5
+132354500,25752261,4
+55476347,25752261,2
+2659361,25752261,3
+55842990,25752261,3
+73064038,25752261,4
+carolilac,25752261,3
+wood0913,25752261,4
+60458599,25752261,4
+emor-hwang,25752261,3
+25140645,25752261,2
+88345379,25752261,4
+HowShouldIKnow,25752261,4
+AeroAnte,25752261,4
+77583980,25752261,4
+34017411,25752261,5
+lq_lemon,25752261,4
+michaelcc,25752261,3
+119000514,25752261,-1
+couple1314,25752261,4
+66295147,25752261,4
+57474326,25752261,4
+19848707,25752261,2
+52093514,25752261,4
+49713409,25752261,3
+6303192,25752261,4
+ccushuaia1220,25752261,-1
+73314180,25752261,5
+92449125,25752261,4
+129977566,25752261,3
+62093986,25752261,4
+51596124,25752261,3
+91911602,25752261,4
+83715675,25752261,3
+30762446,25752261,4
+cjsjason,25752261,3
+14840393,25752261,4
+leoo_leee,25752261,4
+57947049,25752261,5
+132410493,25752261,4
+44081301,25752261,4
+Lin_Ling,25752261,3
+86712548,25752261,3
+102007900,25752261,5
+colinhayashi,25752261,4
+105325845,25752261,3
+121289747,25752261,4
+wutongsuliang,25752261,4
+120828757,25752261,4
+yyuan9372,25752261,4
+SeanShepherd,25752261,3
+fcuki,25752261,3
+49691795,25752261,-1
+66810723,25752261,3
+13441174,25752261,4
+1381065,25752261,3
+2768954,25752261,3
+83268589,25752261,5
+63049878,25752261,4
+123555386,25752261,4
+pengyn,25752261,5
+xxberny,25752261,3
+65898498,25752261,4
+4115987,25752261,5
+xiaoxiao0504,25752261,5
+xiaoxiao0504,25752261,5
+58630944,25752261,3
+49145683,25752261,4
+maggiemars,25752261,4
+christopherlin,25752261,4
+54780204,25752261,3
+121125426,25752261,5
+32019435,25752261,4
+8718496,25752261,4
+6821770,25752261,4
+92906741,25752261,4
+zipox,25752261,3
+82334721,25752261,-1
+51141223,25752261,-1
+4889156,25752261,3
+bobolu,25752261,3
+4040197,25752261,4
+100639145,25752261,4
+4273374,25752261,4
+mlgbbbb,25752261,4
+sept-itchy,25752261,5
+45698347,25752261,4
+shadow1,25752261,3
+syuee,25752261,3
+DCBinseven,25752261,5
+34739546,25752261,4
+3278894,25752261,5
+70057422,25752261,3
+1558709,25752261,4
+106137917,25752261,4
+2428818,25752261,4
+sunq,25752261,2
+53322654,25752261,5
+50473158,25752261,4
+heisixiang,25752261,5
+grayfoxever,25752261,4
+landaishuyihao,25752261,4
+yz501,25752261,3
+50452092,25752261,3
+53559369,25752261,5
+30219531,25752261,3
+Funfuner,25752261,5
+56618669,25752261,4
+76412365,25752261,4
+lilianzly,25752261,5
+51274391,25752261,3
+carmen8212,25752261,3
+L_kid,25752261,3
+84745831,25752261,4
+buubu,25752261,5
+36980568,25752261,5
+103583567,25752261,5
+31786510,25752261,4
+48614999,25752261,4
+94068216,25752261,3
+lidanhua,25752261,5
+yiritang,25752261,5
+17949602,25752261,3
+3740613,25752261,4
+56628925,25752261,3
+58126798,25752261,5
+annho,25752261,4
+mmllove,25752261,4
+68669440,25752261,3
+133628416,25752261,4
+45521984,25752261,4
+Seuysiro,25752261,2
+85830142,25752261,3
+12410068,25752261,5
+47808773,25752261,3
+104157986,25752261,5
+kkx2222,25752261,4
+lynn0128,25752261,-1
+2350156,25752261,3
+82072691,25752261,5
+braveshengchun,25752261,5
+66643938,25752261,3
+achen130,25752261,4
+110040852,25752261,4
+35189092,25752261,3
+39270011,25752261,5
+tina,25752261,2
+2610640,25752261,4
+coka1999,25752261,4
+Chiniac_Cubic,25752261,-1
+53744550,25752261,3
+chloethegirl,25752261,3
+sanzanglx,25752261,5
+66746194,25752261,5
+134287799,25752261,2
+124143175,25752261,5
+40052924,25752261,5
+liulingyuan,25752261,3
+61069338,25752261,3
+76168957,25752261,5
+Shadowman,25752261,4
+prague2046,25752261,4
+27432217,25752261,3
+1811474,25752261,-1
+winning-11,25752261,3
+36601365,25752261,3
+marcamoy,25752261,3
+rrrrravi,25752261,3
+qinduo,25752261,5
+chongchenglove,25752261,5
+37567847,25752261,4
+mirrorjing,25752261,4
+4021296,25752261,3
+qiangzhuang,25752261,2
+115356553,25752261,5
+47633821,25752261,3
+127795305,25752261,5
+walinee,25752261,3
+115714696,25752261,4
+joewice,25752261,4
+aiwengfan,25752261,2
+69948545,25752261,5
+protos,25752261,4
+1998897,25752261,3
+4501745,25752261,2
+81530706,25752261,4
+45964771,25752261,3
+124027537,25752261,4
+fumihiko1985,25752261,3
+dydaisy,25752261,4
+amofirenze,25752261,4
+agentying,25752261,2
+69196878,25752261,5
+pscjanet,25752261,4
+46690733,25752261,3
+redodo,25752261,5
+122021533,25752261,5
+1904712,25752261,4
+zc378810767,25752261,4
+chobit.w,25752261,4
+lxlkey,25752261,5
+tzungtzu,25752261,4
+gmrxfx,25752261,3
+133202676,25752261,4
+doudoulavender,25752261,3
+lingjun611,25752261,4
+19893059,25752261,5
+35183435,25752261,4
+32647118,25752261,3
+haji,25752261,4
+4621815,25752261,5
+1559062,25752261,5
+aimaibumai,25752261,4
+laowinglok,25752261,4
+oathkeeper,25752261,4
+36735001,25752261,4
+68277572,25752261,4
+103039257,25752261,5
+3233256,25752261,4
+50094689,25752261,3
+32536283,25752261,4
+117808839,25752261,4
+103704385,25752261,3
+yolandazhang,25752261,5
+129137675,25752261,4
+44955991,25752261,3
+niol,25752261,4
+1840162,25752261,4
+133190465,25752261,4
+universe_7,25752261,5
+wj888,25752261,5
+63309491,25752261,5
+82580428,25752261,4
+wangyumeng,25752261,4
+radiooo,25752261,2
+vampire1900,25752261,4
+moonphoebela,25752261,3
+82332601,25752261,3
+prayer,25752261,-1
+61742449,25752261,4
+2917314,25752261,4
+turandot0815,25752261,3
+bala_bala,25752261,5
+56498373,25752261,5
+79356961,25752261,5
+hello_hikaru,25752261,5
+63477660,25752261,4
+3365504,25752261,4
+57998533,25752261,4
+83991598,25752261,3
+84899568,25752261,3
+gluttony6,25752261,3
+ilovehongkou,25752261,5
+will_u,25752261,2
+OMFG,25752261,5
+51420490,25752261,4
+cynthianewmoon,25752261,4
+59311627,25752261,3
+28676334,25752261,4
+51412001,25752261,5
+65935512,25752261,4
+babybottle,25752261,3
+64841580,25752261,1
+38850701,25752261,4
+70680016,25752261,5
+121656332,25752261,3
+29113494,25752261,4
+35640176,25752261,5
+deandai,25752261,4
+33554230,25752261,4
+59665595,25752261,3
+1555181,25752261,3
+finle,25752261,4
+28820949,25752261,3
+95442218,25752261,4
+57896401,25752261,3
+43607926,25752261,5
+43910063,25752261,3
+50280331,25752261,4
+wokkkkk012345,25752261,3
+mrlp,25752261,4
+70034039,25752261,2
+1568730,25752261,5
+52327328,25752261,4
+Tigerag,25752261,3
+109882764,25752261,4
+hollysisland,25752261,4
+1735243,25752261,3
+yumuyou,25752261,4
+43977092,25752261,3
+Garing,25752261,4
+yqshuo,25752261,4
+82802978,25752261,5
+48722381,25752261,4
+56207725,25752261,4
+83895101,25752261,5
+54455940,25752261,4
+39720218,25752261,3
+80914640,25752261,4
+53236485,25752261,5
+jes77,25752261,4
+76630020,25752261,4
+57080555,25752261,4
+61946723,25752261,3
+54449997,25752261,3
+uiuu,25752261,4
+1526094,25752261,4
+Crystal0111,25752261,5
+83139491,25752261,5
+132718277,25752261,3
+pbc0615,25752261,3
+craneink,25752261,5
+109530447,25752261,2
+forevercz,25752261,4
+44436573,25752261,3
+57195945,25752261,5
+cplcs,25752261,5
+83723800,25752261,3
+karain,25752261,4
+62101965,25752261,4
+1455801,25752261,4
+45258018,25752261,4
+61132009,25752261,4
+Robotme,25752261,4
+3556906,25752261,3
+50378452,25752261,5
+1784278,25752261,4
+63306444,25752261,2
+zephyrance,25752261,3
+98832174,25752261,5
+gruel_,25752261,5
+126842883,25752261,4
+4155525,25752261,4
+92541865,25752261,4
+alei7774,25752261,3
+46341474,25752261,4
+122365805,25752261,3
+84207817,25752261,5
+53055726,25752261,4
+63927330,25752261,4
+52598445,25752261,4
+69236289,25752261,4
+33990008,25752261,4
+89187307,25752261,5
+lovesunqi,25752261,5
+fish0813,25752261,4
+bronco,25752261,4
+maxdoreen,25752261,3
+58950740,25752261,5
+ClaireL,25752261,4
+lovehebey,25752261,5
+62714490,25752261,4
+79092004,25752261,4
+127008939,25752261,4
+122772628,25752261,3
+maryshirley,25752261,4
+Ellenlium01,25752261,4
+32448002,25752261,-1
+51733805,25752261,3
+94254038,25752261,3
+39525517,25752261,4
+120772872,25752261,4
+ichmirmich,25752261,5
+doctormiro,25752261,3
+68456066,25752261,5
+45792584,25752261,3
+67705949,25752261,4
+63281322,25752261,3
+cxxloveavril,25752261,5
+ygweric,25752261,4
+52167289,25752261,5
+119807771,25752261,4
+120652563,25752261,5
+72324170,25752261,3
+58956237,25752261,4
+1976955,25752261,4
+15965977,25752261,3
+123961251,25752261,5
+65645276,25752261,4
+lostcat84,25752261,-1
+yogi198791,25752261,4
+65388114,25752261,5
+wendysunny,25752261,3
+124697172,25752261,4
+53936570,25752261,4
+48062615,25752261,3
+108077404,25752261,2
+4310321,25752261,4
+trudiQ,25752261,4
+insomniafish,25752261,5
+katherinejun,25752261,4
+yeskor,25752261,4
+mcbird3017,25752261,5
+127979730,25752261,5
+69874247,25752261,3
+73856461,25752261,5
+44326808,25752261,5
+tianjinwangai,25752261,4
+hhhhhhhhhhhh,25752261,2
+yonita_yang,25752261,5
+4374088,25752261,5
+ninjiushinin,25752261,4
+61019177,25752261,5
+76909039,25752261,4
+bravefish,25752261,3
+27928039,25752261,4
+70023173,25752261,5
+61845707,25752261,3
+is_yours,25752261,5
+littlesugar,25752261,5
+110172016,25752261,2
+69875903,25752261,4
+47565039,25752261,4
+3637984,25752261,4
+3042850,25752261,3
+59290535,25752261,4
+sugarman638,25752261,3
+105736560,25752261,4
+myice,25752261,4
+46336179,25752261,5
+JUN10,25752261,2
+1795787,25752261,-1
+junyilee,25752261,4
+seashinan,25752261,4
+hika99,25752261,4
+15497319,25752261,4
+J.Wen,25752261,3
+4784880,25752261,3
+13307772,25752261,4
+81923941,25752261,4
+90257264,25752261,5
+p0pking,25752261,4
+71814035,25752261,2
+58094531,25752261,3
+28077686,25752261,4
+42171704,25752261,5
+91114476,25752261,3
+3555189,25752261,3
+whitenight629,25752261,3
+87381547,25752261,3
+huxiaotian,25752261,4
+81836452,25752261,4
+44258031,25752261,5
+4089785,25752261,4
+53724452,25752261,4
+33854264,25752261,3
+60027417,25752261,5
+rechyo,25752261,3
+71271781,25752261,4
+61775961,25752261,3
+17391461,25752261,4
+114704718,25752261,3
+yfqc24pippo,25752261,4
+desmond1982,25752261,4
+81856033,25752261,4
+3435038,25752261,4
+55799828,25752261,5
+tristanfree,25752261,3
+jiachangting,25752261,4
+saryta,25752261,5
+112934055,25752261,1
+Miss_Silence,25752261,5
+clh7,25752261,2
+3323980,25752261,4
+120521050,25752261,4
+51950348,25752261,3
+49074611,25752261,3
+50805673,25752261,5
+travelaway,25752261,4
+chainsong,25752261,2
+1792183,25752261,5
+76722357,25752261,4
+60762947,25752261,4
+memorysongs,25752261,5
+Reneelovely,25752261,4
+29602196,25752261,4
+71479420,25752261,4
+MoaChen,25752261,5
+thisisstan,25752261,5
+95147125,25752261,4
+ami6328007,25752261,3
+1043912,25752261,4
+StephanieL6223,25752261,3
+Mia_San_Mia,25752261,4
+66673687,25752261,-1
+starstear4ever,25752261,-1
+68145483,25752261,4
+62716748,25752261,5
+42625255,25752261,5
+wonderer,25752261,4
+57398318,25752261,2
+sweetmisscat,25752261,3
+gropher,25752261,4
+madbilly,25752261,3
+1856731,25752261,4
+qiao517,25752261,3
+3134070,25752261,3
+32645204,25752261,4
+51410491,25752261,4
+132530411,25752261,3
+69162144,25752261,4
+66770422,25752261,4
+46898540,25752261,-1
+113124571,25752261,5
+108693709,25752261,4
+64996012,25752261,4
+49318064,25752261,4
+StellaLiu0331,25752261,4
+HAPPYFFF,25752261,5
+timpas,25752261,4
+69516043,25752261,4
+courtney,25752261,4
+YYY0u0,25752261,4
+bigbigrain,25752261,5
+52852194,25752261,3
+53021898,25752261,3
+aNeEr,25752261,3
+38737800,25752261,5
+89766487,25752261,5
+58242884,25752261,4
+48712788,25752261,4
+youtuo_,25752261,5
+scarlett4ever,25752261,4
+aiiicat,25752261,4
+44387956,25752261,3
+71878737,25752261,4
+DJwalawala,25752261,4
+121657475,25752261,4
+30701255,25752261,4
+lijingyu1027,25752261,3
+deandy,25752261,4
+xiaoyutoufengla,25752261,5
+85084961,25752261,3
+oscarly,25752261,4
+119253554,25752261,4
+Jewelyxy,25752261,4
+buwubuhui,25752261,2
+subaru244,25752261,3
+67072789,25752261,4
+60192740,25752261,3
+96798086,25752261,3
+mrdriver,25752261,4
+83415261,25752261,3
+81344855,25752261,3
+cai_smalleyes,25752261,-1
+flower-flower25,25752261,4
+43176716,25752261,4
+1302842,25752261,1
+ayake,25752261,3
+smallhare,25752261,4
+3887848,25752261,3
+shjolin,25752261,3
+for_love,25752261,4
+52318221,25752261,5
+133990026,25752261,3
+59906784,25752261,4
+zuiyufengzhong,25752261,4
+jackiesbackbone,25752261,5
+105188554,25752261,4
+3041529,25752261,3
+pianohood,25752261,5
+amorphousiren,25752261,5
+116035367,25752261,3
+linshang,25752261,5
+46221574,25752261,4
+46221574,25752261,4
+88378303,25752261,5
+abby0109,25752261,4
+71688338,25752261,-1
+raysun81,25752261,4
+65723626,25752261,4
+susidai,25752261,3
+65021113,25752261,5
+wakin1707,25752261,2
+ecstasybird,25752261,4
+49620873,25752261,3
+zini8023,25752261,3
+95416047,25752261,2
+103622140,25752261,2
+132835611,25752261,4
+63354645,25752261,3
+47969171,25752261,4
+72995081,25752261,2
+vince717,25752261,5
+77785733,25752261,5
+77785733,25752261,5
+CaptBastard,25752261,3
+akikozhuo8,25752261,5
+zhangrihe,25752261,3
+47636927,25752261,5
+tmdd,25752261,5
+68111480,25752261,5
+ilovejay79118,25752261,3
+61497577,25752261,4
+kemoaye,25752261,4
+3113435,25752261,4
+67663384,25752261,4
+55563514,25752261,3
+78056349,25752261,4
+1596435,25752261,4
+banyinxie,25752261,4
+46912278,25752261,4
+2481028,25752261,4
+jessieyingable,25752261,5
+51057847,25752261,3
+59236889,25752261,3
+60514515,25752261,3
+sorchalee,25752261,3
+52947594,25752261,5
+lecia,25752261,3
+Eudaimonia,25752261,4
+fsdyf,25752261,3
+105146664,25752261,3
+66494720,25752261,3
+2596903,25752261,3
+82481394,25752261,3
+28577257,25752261,4
+liuchuanzi,25752261,5
+127256948,25752261,4
+70202233,25752261,4
+115131162,25752261,3
+41017931,25752261,4
+veronbb,25752261,3
+50451911,25752261,4
+90581117,25752261,4
+2577981,25752261,3
+60826813,25752261,4
+65901691,25752261,3
+sun-sun-emma,25752261,3
+132893137,25752261,4
+4520580,25752261,5
+corphine,25752261,5
+mikawxi,25752261,4
+cloudlandlord,25752261,3
+59210955,25752261,4
+yangshu1991,25752261,3
+49946350,25752261,4
+133493079,25752261,4
+2754204,25752261,2
+51424042,25752261,3
+1920062,25752261,5
+128468373,25752261,3
+124465825,25752261,4
+sylvainhe,25752261,4
+52710825,25752261,4
+woshihaoren123,25752261,4
+43258987,25752261,3
+zhuxiaoxuan,25752261,4
+50875593,25752261,3
+89590912,25752261,3
+48251188,25752261,3
+ratyie,25752261,3
+xuexiaoyan,25752261,4
+96674410,25752261,5
+82096379,25752261,1
+74188273,25752261,4
+wulei1104,25752261,4
+35769554,25752261,3
+joycerabbit,25752261,3
+123009579,25752261,5
+dongyiren,25752261,3
+Mercury-dong,25752261,5
+78116847,25752261,4
+nana_007,25752261,5
+56921126,25752261,3
+wylwddjz,25752261,5
+quliaoliao,25752261,4
+2493346,25752261,3
+2336429,25752261,4
+twoerer,25752261,4
+longnel,25752261,3
+jinqianmei,25752261,3
+64393293,25752261,5
+104076508,25752261,4
+3610531,25752261,5
+x-inter,25752261,4
+4592782,25752261,2
+103503223,25752261,4
+wheRe,25752261,4
+bilvqzhu,25752261,4
+omnia,25752261,3
+114290703,25752261,-1
+curemyself,25752261,4
+3759585,25752261,3
+87551744,25752261,4
+sostomato,25752261,3
+65465409,25752261,4
+47025279,25752261,4
+119622839,25752261,4
+punk90,25752261,4
+43891940,25752261,3
+45003782,25752261,3
+xiaofanskyfree,25752261,5
+annaanonly,25752261,5
+43775545,25752261,4
+78851730,25752261,4
+77799876,25752261,4
+133083146,25752261,4
+montcalgary,25752261,4
+61415856,25752261,4
+63327830,25752261,5
+57148360,25752261,3
+windyolivia,25752261,4
+68984410,25752261,3
+52021826,25752261,4
+2737013,25752261,5
+bigfishk,25752261,4
+jinlu2,25752261,3
+elliry,25752261,4
+pjcs,25752261,2
+adejavu,25752261,4
+34936413,25752261,4
+1823435,25752261,4
+97913735,25752261,4
+4481063,25752261,3
+3181832,25752261,4
+40853957,25752261,4
+laomo,25752261,-1
+68700662,25752261,4
+108821133,25752261,3
+cloud47,25752261,4
+freak_lee,25752261,3
+37426664,25752261,5
+phoebeshining,25752261,4
+74059129,25752261,4
+HeyAriel,25752261,3
+63805238,25752261,3
+46689688,25752261,4
+1426157,25752261,3
+21212589,25752261,3
+67491757,25752261,5
+maokezhiwu,25752261,3
+junqli86,25752261,4
+58442010,25752261,4
+AzureSoc,25752261,4
+sakura8839,25752261,4
+52933244,25752261,5
+duyishi,25752261,5
+cosmosea,25752261,5
+60631421,25752261,3
+1595315,25752261,4
+luyt,25752261,4
+lizzyar,25752261,4
+46999454,25752261,4
+i840152811,25752261,4
+67392975,25752261,4
+congba,25752261,4
+sapphire,25752261,4
+June-sunshine,25752261,3
+quarter,25752261,3
+64132743,25752261,4
+3093793,25752261,3
+62222208,25752261,4
+2428882,25752261,3
+60357094,25752261,3
+38182265,25752261,4
+biao1020,25752261,3
+brew,25752261,3
+hougirl,25752261,4
+79733760,25752261,5
+34894274,25752261,3
+huiverci,25752261,3
+107812748,25752261,4
+SunandShadow,25752261,3
+62998360,25752261,5
+cris7ss,25752261,4
+43096733,25752261,4
+126804729,25752261,4
+50562416,25752261,4
+65922740,25752261,4
+67852674,25752261,4
+ICollection,25752261,4
+neofree,25752261,4
+50887988,25752261,3
+78066054,25752261,2
+62288515,25752261,4
+2431790,25752261,5
+127386685,25752261,4
+50304706,25752261,5
+evennn55555999,25752261,3
+64757557,25752261,4
+41083928,25752261,4
+96241491,25752261,4
+17654843,25752261,5
+53735887,25752261,4
+119420162,25752261,5
+ricchow,25752261,4
+52536969,25752261,5
+2274126,25752261,-1
+hidemyhead,25752261,4
+39788968,25752261,5
+57058870,25752261,5
+yogurt2202,25752261,5
+132808026,25752261,5
+aitoutou,25752261,5
+tree-mu,25752261,3
+2121794,25752261,4
+4434079,25752261,4
+57249703,25752261,4
+51379572,25752261,4
+66473805,25752261,4
+coldlife,25752261,4
+72972634,25752261,4
+25795086,25752261,2
+127695510,25752261,3
+8752115,25752261,4
+minyee,25752261,5
+73163829,25752261,5
+92659635,25752261,5
+128991169,25752261,2
+75328137,25752261,3
+53938589,25752261,4
+1182787,25752261,3
+3082551,25752261,4
+Kingnima,25752261,4
+3783012,25752261,4
+104823188,25752261,4
+91656862,25752261,4
+62453659,25752261,5
+djwayye,25752261,4
+52775018,25752261,5
+46394422,25752261,4
+44939590,25752261,4
+liz37,25752261,-1
+jore1102,25752261,4
+2444103,25752261,3
+78955356,25752261,4
+sunshinezz1991,25752261,4
+68207288,25752261,3
+50775339,25752261,5
+120352953,25752261,3
+OGGGG,25752261,5
+71867993,25752261,3
+85174401,25752261,4
+ZouzheFoudouzhe,25752261,-1
+114535314,25752261,4
+41556922,25752261,2
+51711108,25752261,5
+133575194,25752261,3
+101793601,25752261,3
+67489382,25752261,5
+adi,25752261,3
+xring273,25752261,3
+53659664,25752261,4
+44724487,25752261,4
+45025869,25752261,5
+46484046,25752261,4
+1022296,25752261,4
+127649705,25752261,3
+45135037,25752261,-1
+4082102,25752261,4
+wishna,25752261,4
+53479153,25752261,-1
+52689721,25752261,4
+sirluoji,25752261,4
+70582013,25752261,5
+elenacuo,25752261,5
+fairyhui521,25752261,4
+5336287,25752261,-1
+4195703,25752261,5
+93582909,25752261,4
+91814028,25752261,4
+58539257,25752261,4
+34674400,25752261,3
+AshleyJo,25752261,4
+3351778,25752261,4
+shevjensen,25752261,4
+yuanzedong,25752261,4
+jingyajun,25752261,2
+2781564,25752261,4
+49813166,25752261,3
+76467871,25752261,4
+Lynnehe,25752261,4
+106167412,25752261,4
+jeyhello,25752261,3
+guitarain,25752261,4
+46351532,25752261,3
+baguabagua,25752261,2
+1411336,25752261,3
+12822970,25752261,4
+eamontoday,25752261,4
+chumin201111,25752261,5
+87852350,25752261,3
+leexiaoxiao,25752261,3
+Travisea,25752261,4
+kaca_tana,25752261,3
+j946791150,25752261,3
+70654982,25752261,4
+4583473,25752261,3
+lynnstefanie,25752261,4
+blurrrrr,25752261,4
+71765627,25752261,3
+41474557,25752261,4
+46163023,25752261,-1
+63777033,25752261,5
+fangxiaotang,25752261,4
+54308994,25752261,3
+Koko_head,25752261,5
+bilibili01,25752261,3
+cold24,25752261,4
+34507934,25752261,4
+91564466,25752261,-1
+91456037,25752261,3
+72047826,25752261,4
+liancheng,25752261,5
+42421580,25752261,5
+80323022,25752261,3
+8944795,25752261,4
+Quester,25752261,3
+TJewelz,25752261,5
+3925691,25752261,3
+70464788,25752261,4
+63782888,25752261,4
+69273736,25752261,4
+sqxmy,25752261,3
+97968492,25752261,3
+31427645,25752261,4
+42443171,25752261,5
+133305333,25752261,4
+133496258,25752261,3
+4247692,25752261,3
+ryeon,25752261,3
+4373936,25752261,2
+aysonzyy,25752261,3
+A-Cat,25752261,4
+49445106,25752261,2
+yvonne777,25752261,5
+75913868,25752261,4
+51953879,25752261,4
+philhan524,25752261,4
+gliuxiaofan119,25752261,5
+4544241,25752261,5
+1821069,25752261,1
+31757691,25752261,4
+60017606,25752261,5
+gracegsmile,25752261,3
+yampak,25752261,3
+odin_chen,25752261,4
+65417028,25752261,3
+62526131,25752261,4
+46572945,25752261,4
+IamV,25752261,3
+yumiaowater,25752261,4
+66098214,25752261,-1
+maomixiaosu,25752261,4
+amandehome,25752261,4
+3752454,25752261,4
+54941298,25752261,5
+dolphinfu,25752261,4
+toqueena,25752261,4
+65121646,25752261,2
+yukiyoung,25752261,4
+ycho1203,25752261,2
+SELVEN,25752261,3
+79502356,25752261,4
+64352987,25752261,4
+49048693,25752261,5
+bebesummer,25752261,4
+59705593,25752261,4
+131006869,25752261,4
+1322481,25752261,4
+knocknock,25752261,5
+69856173,25752261,4
+74170855,25752261,3
+SUrou,25752261,-1
+56072564,25752261,4
+125021641,25752261,5
+2016454,25752261,4
+1480836,25752261,3
+Lazy__cat,25752261,4
+123274527,25752261,4
+1178759,25752261,4
+beckhong,25752261,4
+53416381,25752261,4
+greece7,25752261,2
+37521902,25752261,3
+78957039,25752261,4
+81335043,25752261,5
+42556657,25752261,3
+artmisia,25752261,3
+brutwater,25752261,3
+2256302,25752261,1
+lolitaj,25752261,5
+wheel,25752261,4
+PaigeRaw,25752261,4
+PaigeRaw,25752261,4
+57365488,25752261,4
+48957245,25752261,4
+58245871,25752261,3
+76428013,25752261,4
+53836712,25752261,5
+Aimeechiu,25752261,5
+68632515,25752261,3
+52841977,25752261,4
+bluefrog,25752261,-1
+lynnhal,25752261,4
+37160658,25752261,3
+sukimushroom,25752261,4
+tiffany07,25752261,5
+41839110,25752261,4
+hengyunyixiang,25752261,4
+freenest,25752261,3
+75967739,25752261,4
+youkashi,25752261,3
+80126415,25752261,4
+62344979,25752261,4
+yinw83,25752261,4
+niki2wynn,25752261,5
+60347813,25752261,2
+4114969,25752261,4
+syyw88,25752261,4
+1778088,25752261,3
+hecaba,25752261,4
+onless,25752261,3
+97537742,25752261,4
+wushihao,25752261,4
+zzfznp,25752261,2
+2625768,25752261,3
+3053086,25752261,2
+53107283,25752261,3
+66178513,25752261,4
+fracysun,25752261,5
+55833673,25752261,3
+CleanCoder,25752261,5
+127809639,25752261,5
+127809639,25752261,5
+50233060,25752261,4
+102618812,25752261,3
+Katherinexiaoya,25752261,5
+51881494,25752261,5
+ziminliuri,25752261,4
+2219194,25752261,2
+75184606,25752261,4
+46534834,25752261,5
+45268036,25752261,3
+Ivycynthia,25752261,5
+77318318,25752261,5
+2537864,25752261,-1
+62984615,25752261,5
+132753121,25752261,4
+bbsether,25752261,2
+64251575,25752261,5
+Longinuss,25752261,3
+hthj,25752261,5
+48713524,25752261,3
+1764476,25752261,4
+wen1028,25752261,-1
+bailuweishuang,25752261,4
+53464636,25752261,4
+83188680,25752261,4
+yushi,25752261,2
+73416424,25752261,5
+2162982,25752261,4
+127148800,25752261,4
+qinhang,25752261,2
+54605481,25752261,3
+74721875,25752261,3
+55882161,25752261,5
+Anian_tuzi,25752261,3
+59038247,25752261,2
+80063493,25752261,3
+47667310,25752261,4
+AriesSusan,25752261,4
+shea,25752261,4
+64309746,25752261,-1
+doraeman,25752261,4
+38514261,25752261,4
+44537605,25752261,4
+78630061,25752261,3
+76155478,25752261,4
+deina,25752261,5
+42737521,25752261,4
+78497624,25752261,4
+3383915,25752261,3
+46702310,25752261,5
+91252299,25752261,5
+70249829,25752261,2
+50638011,25752261,3
+51641962,25752261,4
+57609384,25752261,3
+44837247,25752261,4
+tildali1214,25752261,4
+46753827,25752261,5
+flytta,25752261,5
+50219833,25752261,2
+65111838,25752261,3
+chloe6668,25752261,4
+4071147,25752261,5
+39352791,25752261,-1
+3943144,25752261,4
+85091142,25752261,3
+98510487,25752261,4
+76146142,25752261,3
+133086770,25752261,3
+1754630,25752261,5
+4691398,25752261,5
+51183747,25752261,3
+4407414,25752261,3
+55644615,25752261,4
+yyy1240,25752261,3
+satanprince,25752261,4
+36470321,25752261,5
+charmaineklo579,25752261,4
+HIDING.,25752261,3
+jeremy-won,25752261,4
+jeremy-won,25752261,4
+SINCE1988,25752261,3
+bossdjy,25752261,4
+BOBLEE82,25752261,4
+32767171,25752261,4
+calvincho,25752261,4
+3310293,25752261,3
+Artystayshungry,25752261,5
+70860940,25752261,3
+69986931,25752261,4
+46996433,25752261,4
+120076379,25752261,3
+55850316,25752261,4
+125180351,25752261,5
+Meowww,25752261,3
+9915911,25752261,3
+loneblog,25752261,3
+byjch,25752261,4
+77459141,25752261,4
+caicai1005,25752261,4
+josephgyal,25752261,2
+yasmine818,25752261,4
+42679394,25752261,3
+hilca,25752261,3
+47257885,25752261,4
+wubudingyang,25752261,4
+rainbowwww,25752261,5
+62650109,25752261,4
+71950308,25752261,5
+basil_yying,25752261,5
+92806168,25752261,4
+robinsparrow,25752261,5
+68089671,25752261,3
+23712945,25752261,5
+Tianyangyang,25752261,5
+99598599,25752261,3
+qqb143,25752261,3
+62837123,25752261,3
+mickeyhao,25752261,4
+67979559,25752261,4
+63223538,25752261,3
+32448053,25752261,4
+yuanqing630,25752261,5
+35135916,25752261,4
+26503826,25752261,3
+120929768,25752261,3
+66178639,25752261,3
+3440508,25752261,5
+46627349,25752261,3
+xianfengyana,25752261,5
+53135086,25752261,4
+133208122,25752261,4
+91432391,25752261,4
+mouzhi,25752261,5
+79841047,25752261,4
+66234722,25752261,3
+58520151,25752261,3
+81845294,25752261,4
+kimeshichan,25752261,4
+cloudy20011128,25752261,3
+84003620,25752261,5
+45252963,25752261,3
+45953798,25752261,3
+54250866,25752261,5
+81336001,25752261,5
+92934548,25752261,2
+lipinqing0423,25752261,3
+34823555,25752261,4
+46455848,25752261,4
+bzys,25752261,5
+44987439,25752261,5
+jewelshao,25752261,4
+53685870,25752261,4
+47212439,25752261,5
+dominic---,25752261,4
+64224636,25752261,4
+53370460,25752261,4
+49326502,25752261,4
+62317747,25752261,4
+47193126,25752261,4
+52897840,25752261,3
+65233662,25752261,4
+45782661,25752261,4
+27037345,25752261,4
+50527578,25752261,3
+sainobook,25752261,4
+133141228,25752261,5
+56448548,25752261,5
+81752466,25752261,4
+yisideta,25752261,5
+jekyll,25752261,4
+48355482,25752261,5
+laroky,25752261,5
+jaywooh,25752261,2
+44028431,25752261,4
+nmkl,25752261,4
+heiziyefengkuan,25752261,5
+simu19,25752261,4
+yaoez,25752261,3
+115501579,25752261,4
+ANPANG,25752261,4
+63060917,25752261,3
+leonx818,25752261,4
+132618483,25752261,4
+91575456,25752261,4
+49028309,25752261,3
+70361131,25752261,3
+fei-never,25752261,4
+60890395,25752261,4
+52662813,25752261,3
+103917417,25752261,4
+maolu,25752261,4
+TomboyJoe,25752261,4
+58161520,25752261,5
+51152344,25752261,4
+54375575,25752261,3
+at_summer,25752261,3
+cmhloveukulele,25752261,-1
+cai1st,25752261,4
+cjshangbuqi,25752261,4
+lieds,25752261,3
+JLikeOOXX,25752261,4
+yuchenyuan,25752261,3
+annvivienne,25752261,4
+43712380,25752261,4
+woaifanfou,25752261,2
+73921973,25752261,4
+104445642,25752261,4
+47785072,25752261,3
+heydenny,25752261,4
+holy_ml,25752261,3
+127545106,25752261,5
+ummmmmmmmy,25752261,4
+29433181,25752261,4
+63676625,25752261,3
+34990141,25752261,4
+92697402,25752261,4
+59537499,25752261,5
+50234002,25752261,5
+67449498,25752261,3
+sethqi,25752261,4
+annie_0414,25752261,3
+54488759,25752261,4
+37402473,25752261,3
+kevinsy,25752261,3
+63641303,25752261,4
+scutxc,25752261,4
+61686862,25752261,3
+baozi1008,25752261,4
+63196145,25752261,5
+simontien,25752261,4
+96473743,25752261,3
+3709827,25752261,4
+jiajunzhi,25752261,3
+79648769,25752261,5
+38262081,25752261,4
+88393319,25752261,3
+30601618,25752261,5
+57295120,25752261,4
+69102270,25752261,4
+peggyzhu,25752261,5
+Seeos,25752261,4
+weijjcd,25752261,4
+47470464,25752261,3
+lidao1127,25752261,4
+45362948,25752261,4
+104799628,25752261,4
+87488566,25752261,4
+sep1221,25752261,5
+33538019,25752261,3
+84755098,25752261,3
+xiatian722,25752261,4
+59480546,25752261,5
+51105174,25752261,4
+wen_Schwartz,25752261,4
+BernieButler,25752261,3
+74217191,25752261,2
+uranus_taotao,25752261,5
+65239673,25752261,4
+maxmartin,25752261,4
+Paradox_Q,25752261,3
+58797753,25752261,4
+2817521,25752261,-1
+43867607,25752261,4
+4269577,25752261,5
+shuiyun52,25752261,3
+beate,25752261,4
+alori,25752261,5
+76769424,25752261,5
+vespalee,25752261,3
+findmusic,25752261,4
+1493686,25752261,4
+liuxinyuxiao,25752261,5
+43703010,25752261,3
+erobin,25752261,3
+61745840,25752261,2
+1569518,25752261,4
+rixingyishan,25752261,4
+35623829,25752261,4
+56506887,25752261,4
+50353681,25752261,4
+silence17,25752261,4
+122321727,25752261,4
+64759305,25752261,4
+eggpant,25752261,5
+61223246,25752261,5
+71025766,25752261,1
+57882904,25752261,2
+2030641,25752261,5
+xiaoke1687,25752261,1
+44504599,25752261,3
+50154536,25752261,3
+24678754,25752261,5
+1773768,25752261,4
+64380963,25752261,4
+73193476,25752261,4
+124580122,25752261,5
+bl.mio,25752261,4
+76466963,25752261,4
+59113427,25752261,3
+xxxiyybabe,25752261,3
+36465280,25752261,4
+87981727,25752261,4
+yuuu,25752261,4
+lzl890129,25752261,5
+mayshin,25752261,4
+58488318,25752261,5
+97482066,25752261,5
+88048268,25752261,4
+53791984,25752261,4
+lamb14,25752261,4
+30974329,25752261,5
+2821497,25752261,4
+4429031,25752261,3
+1436107,25752261,4
+dongjingting,25752261,4
+magickori,25752261,3
+41964570,25752261,4
+64783983,25752261,4
+43814222,25752261,4
+popoxee,25752261,3
+58709526,25752261,3
+LrioWong,25752261,3
+72292155,25752261,4
+kided,25752261,4
+3832888,25752261,4
+janeyyxl,25752261,3
+40929874,25752261,4
+63369291,25752261,3
+4896950,25752261,5
+Hans_Du,25752261,2
+39792754,25752261,4
+62996817,25752261,4
+51763291,25752261,3
+vanyeeyouth,25752261,4
+fei2046,25752261,2
+4684950,25752261,4
+baimaheizong,25752261,4
+2330715,25752261,4
+79667856,25752261,4
+yi_yang,25752261,4
+49981766,25752261,5
+bladeboy,25752261,3
+112285998,25752261,4
+28736165,25752261,4
+115666260,25752261,5
+57532429,25752261,3
+cuacfxx,25752261,3
+64249507,25752261,3
+aibaobaoguai327,25752261,4
+likecake,25752261,3
+mizerable,25752261,2
+ng19840809,25752261,4
+48587777,25752261,-1
+4603620,25752261,4
+54090532,25752261,5
+1844596,25752261,4
+nowforever,25752261,3
+44710985,25752261,5
+Simply08,25752261,5
+Simply08,25752261,5
+67742715,25752261,3
+65978599,25752261,4
+Just_vv,25752261,4
+floraman,25752261,5
+58774315,25752261,3
+48976619,25752261,4
+peridot,25752261,-1
+122812221,25752261,3
+47913481,25752261,2
+cynthia311,25752261,4
+Lost_Atlantis,25752261,4
+72731242,25752261,4
+44811751,25752261,4
+HugoVince,25752261,3
+50164247,25752261,3
+107586571,25752261,3
+2447177,25752261,5
+92330155,25752261,4
+63006566,25752261,4
+4243064,25752261,5
+33118181,25752261,4
+64382868,25752261,3
+47601578,25752261,3
+wainwong,25752261,3
+74199132,25752261,4
+yinshan1025,25752261,4
+1851702,25752261,4
+zero0756,25752261,4
+4588595,25752261,5
+51635702,25752261,2
+vivi112,25752261,4
+49273310,25752261,5
+120356994,25752261,3
+27900708,25752261,3
+lovingly,25752261,4
+17871243,25752261,3
+27517816,25752261,4
+93294169,25752261,4
+81845055,25752261,3
+49389676,25752261,4
+xqsmao,25752261,3
+49785601,25752261,3
+78090080,25752261,4
+lyzw,25752261,3
+70440245,25752261,3
+49444266,25752261,3
+88214341,25752261,4
+51402436,25752261,4
+47764209,25752261,3
+40931837,25752261,4
+imqiuzi,25752261,3
+NicoleDR,25752261,5
+108212384,25752261,5
+46055019,25752261,5
+nunnun,25752261,-1
+57831811,25752261,3
+68881946,25752261,5
+4338735,25752261,3
+paul314,25752261,3
+WangXuejing,25752261,4
+41430205,25752261,3
+85362955,25752261,3
+Delfifi,25752261,3
+81106134,25752261,4
+83876707,25752261,3
+yaoyaolu,25752261,3
+errena,25752261,3
+3605624,25752261,4
+39015968,25752261,4
+59568875,25752261,4
+48193930,25752261,2
+mangege,25752261,4
+101953197,25752261,3
+killthatfirefly,25752261,5
+36072726,25752261,4
+128136989,25752261,4
+50109761,25752261,4
+76993603,25752261,4
+1152785,25752261,2
+weapin,25752261,3
+sevengin,25752261,5
+minus16,25752261,4
+zhazha-GUY,25752261,5
+ycye,25752261,4
+2854749,25752261,-1
+66636246,25752261,3
+90461578,25752261,4
+81441568,25752261,3
+58332166,25752261,4
+42725072,25752261,3
+julsparks,25752261,3
+62036290,25752261,4
+misayxt,25752261,3
+74056494,25752261,3
+X98612357,25752261,5
+54428123,25752261,4
+72827871,25752261,4
+62877248,25752261,4
+46656643,25752261,4
+62877248,25752261,4
+46656643,25752261,4
+8490514,25752261,4
+y1991513,25752261,3
+59164881,25752261,4
+2187326,25752261,3
+48990139,25752261,4
+3677825,25752261,4
+44556273,25752261,4
+69930229,25752261,4
+mayoxiaoxi,25752261,4
+GameCEO,25752261,3
+47779615,25752261,5
+39086364,25752261,5
+50413289,25752261,4
+48047032,25752261,4
+62119961,25752261,4
+92090810,25752261,4
+73983729,25752261,5
+CorsoChiggiato,25752261,4
+70750862,25752261,3
+49041524,25752261,5
+x-ran,25752261,3
+62095303,25752261,4
+29710107,25752261,5
+mengshixilou,25752261,4
+78190173,25752261,3
+59044334,25752261,3
+FennyFu,25752261,3
+123431259,25752261,5
+65041509,25752261,2
+102636668,25752261,5
+1638378,25752261,5
+64332856,25752261,3
+80017178,25752261,5
+simuvchen,25752261,4
+68307753,25752261,4
+sshge,25752261,5
+48589119,25752261,4
+51618406,25752261,4
+51618406,25752261,4
+2301005,25752261,3
+76148620,25752261,3
+45055967,25752261,4
+1776736,25752261,5
+46754344,25752261,3
+liuanan0606,25752261,5
+121517314,25752261,5
+72235760,25752261,5
+37264633,25752261,2
+104745481,25752261,4
+eyesi,25752261,4
+52739316,25752261,3
+48386986,25752261,4
+yanyanzhou110,25752261,4
+2569268,25752261,4
+26189887,25752261,3
+64144494,25752261,3
+1876785,25752261,3
+49122242,25752261,4
+yoocat,25752261,3
+Liangkui,25752261,4
+131043269,25752261,4
+youknow810,25752261,3
+116778035,25752261,4
+119297298,25752261,5
+4624041,25752261,4
+mythjill,25752261,3
+74959611,25752261,4
+80995779,25752261,4
+hanqiu1995,25752261,3
+2754370,25752261,5
+6669413,25752261,4
+122762907,25752261,5
+zhouzizi,25752261,3
+44045443,25752261,4
+41629334,25752261,4
+grantqian,25752261,4
+3597500,25752261,3
+3193277,25752261,3
+3193277,25752261,3
+cecilylmy,25752261,3
+54536885,25752261,4
+25401769,25752261,3
+51431288,25752261,4
+61547123,25752261,4
+27898838,25752261,4
+52843468,25752261,3
+91304159,25752261,3
+57955732,25752261,3
+netsurfe,25752261,3
+3395385,25752261,3
+61797915,25752261,3
+rock0323,25752261,4
+66831677,25752261,2
+75481608,25752261,3
+49406464,25752261,3
+63766051,25752261,4
+110637480,25752261,4
+4387690,25752261,3
+pansin,25752261,4
+4116430,25752261,3
+4267119,25752261,3
+35165687,25752261,4
+3535619,25752261,5
+42463723,25752261,4
+3803257,25752261,5
+76497080,25752261,4
+freggieg,25752261,3
+129751512,25752261,4
+5594345,25752261,4
+45463396,25752261,3
+81390968,25752261,3
+60817087,25752261,4
+manhuamao,25752261,4
+47998075,25752261,4
+34219306,25752261,-1
+131495477,25752261,4
+bailinlin,25752261,-1
+38926931,25752261,5
+50769986,25752261,4
+57729353,25752261,4
+47385143,25752261,5
+44584514,25752261,3
+4271937,25752261,4
+64724465,25752261,4
+99632498,25752261,3
+78937198,25752261,5
+wahahaaa,25752261,5
+66341284,25752261,4
+120689172,25752261,5
+115103932,25752261,2
+2633400,25752261,3
+79875260,25752261,3
+lvchencf,25752261,4
+JupiterGalileo,25752261,5
+ricizki,25752261,2
+winnie0212,25752261,4
+64252611,25752261,4
+lemons,25752261,3
+zhaoyin,25752261,4
+qiulaodie,25752261,2
+imatetsu,25752261,3
+harechan,25752261,5
+119224182,25752261,3
+104120710,25752261,4
+lingerer,25752261,3
+25676059,25752261,4
+67763944,25752261,2
+huyuwei,25752261,5
+3403075,25752261,3
+36475827,25752261,4
+57654704,25752261,4
+mieskai,25752261,3
+stoneqr,25752261,5
+weiimpossible,25752261,4
+72993383,25752261,3
+LilC,25752261,4
+83507458,25752261,4
+mymisssummer,25752261,4
+13038456,25752261,3
+2387426,25752261,3
+frankxiafan,25752261,4
+andvic,25752261,5
+2465698,25752261,3
+woruili,25752261,3
+52148050,25752261,5
+1972175,25752261,4
+69706945,25752261,3
+yeyixin,25752261,3
+77151897,25752261,4
+lixinleixinli,25752261,3
+3006385,25752261,4
+132683558,25752261,4
+49684834,25752261,-1
+xiaoyaowan,25752261,5
+realbamboo,25752261,3
+kay_oo7,25752261,3
+ysl,25752261,4
+4352057,25752261,4
+4352057,25752261,4
+colorbeta,25752261,3
+62871612,25752261,4
+47815647,25752261,4
+58355533,25752261,4
+roseunicorn,25752261,5
+60352980,25752261,3
+41236968,25752261,3
+89844032,25752261,4
+cutebbluckygirl,25752261,2
+lingweiran_0305,25752261,-1
+kimyeol,25752261,4
+somelolitas,25752261,5
+70676468,25752261,5
+132257242,25752261,3
+1383301,25752261,4
+Sliency,25752261,5
+44224970,25752261,5
+51542054,25752261,3
+yangisyang,25752261,5
+yangisyang,25752261,5
+1187790,25752261,-1
+laotiee,25752261,3
+chancyTVXQ,25752261,4
+wj8198026,25752261,3
+2174123,25752261,4
+75667669,25752261,4
+53335866,25752261,5
+leeyzh,25752261,5
+longfei39,25752261,5
+63981734,25752261,4
+4840048,25752261,4
+45127178,25752261,4
+49272831,25752261,2
+dingding1113,25752261,4
+51879316,25752261,3
+gaojie0114,25752261,3
+62709413,25752261,5
+24874842,25752261,4
+heyebei,25752261,4
+xxqxz,25752261,3
+2594481,25752261,3
+69736847,25752261,4
+celiaoutsider,25752261,5
+71861591,25752261,4
+hahjhahj,25752261,4
+46168021,25752261,4
+57512376,25752261,4
+sweetxyy,25752261,3
+1187053,25752261,4
+nanacancer,25752261,3
+show06254444,25752261,3
+47937098,25752261,5
+siersiershiwo,25752261,4
+12841181,25752261,5
+nicer,25752261,4
+101334259,25752261,5
+lst_lovetvxq,25752261,4
+41836759,25752261,2
+65181695,25752261,4
+sakurairo,25752261,2
+78757579,25752261,3
+58297666,25752261,3
+FindingKnightly,25752261,3
+115549792,25752261,4
+59576952,25752261,5
+97415424,25752261,3
+41664547,25752261,4
+4493785,25752261,4
+21927784,25752261,4
+93447112,25752261,-1
+Novin,25752261,3
+113520330,25752261,-1
+47570599,25752261,3
+michaelhuan,25752261,5
+69679017,25752261,4
+48174101,25752261,3
+tonyuanChen,25752261,3
+wuyuloveelva,25752261,5
+annalotory,25752261,5
+78771431,25752261,1
+harryheyang,25752261,4
+63210071,25752261,3
+cpt21,25752261,2
+koujill,25752261,-1
+53496104,25752261,3
+1797671,25752261,4
+80044603,25752261,4
+liaoliao219,25752261,4
+82569239,25752261,4
+teena1002,25752261,4
+51277324,25752261,3
+41758984,25752261,3
+69459870,25752261,4
+47729298,25752261,4
+60442939,25752261,2
+112941907,25752261,3
+1631122,25752261,4
+62761147,25752261,4
+132633082,25752261,4
+48238479,25752261,4
+chevalier7,25752261,3
+50180510,25752261,4
+onelifeonelove,25752261,3
+Rebecca_618,25752261,5
+kafaka,25752261,4
+kingsitcome,25752261,3
+1919476,25752261,3
+43919647,25752261,4
+61285752,25752261,5
+3722910,25752261,5
+celinedsam,25752261,4
+liamsee,25752261,5
+runcastor,25752261,-1
+48523065,25752261,3
+46753092,25752261,3
+67781678,25752261,3
+4020678,25752261,3
+idontcarebitch,25752261,3
+gourideqingchun,25752261,4
+122898070,25752261,4
+leoglory,25752261,4
+3742479,25752261,4
+tangerine0113,25752261,3
+csj0824,25752261,4
+50405954,25752261,4
+53932616,25752261,3
+dddjl,25752261,3
+2797193,25752261,5
+tripster,25752261,4
+128905184,25752261,3
+moon.s11_11,25752261,4
+33576174,25752261,5
+25110019,25752261,3
+9694640,25752261,3
+guigui291,25752261,5
+sima77,25752261,3
+78219576,25752261,4
+jiqiuqiu,25752261,5
+moryfor,25752261,3
+131115228,25752261,4
+daniel_gao,25752261,3
+57811898,25752261,3
+96305246,25752261,3
+greatsmallnine,25752261,-1
+57001973,25752261,4
+64075825,25752261,4
+21857316,25752261,3
+52436476,25752261,4
+young6409,25752261,4
+50616224,25752261,5
+4568946,25752261,3
+ukimuknow,25752261,3
+95386641,25752261,3
+120331217,25752261,4
+20278593,25752261,4
+129766862,25752261,3
+87653122,25752261,4
+MrMia,25752261,2
+57535559,25752261,5
+68945862,25752261,4
+102066374,25752261,4
+78125099,25752261,2
+47396719,25752261,4
+46735351,25752261,4
+90598022,25752261,3
+132320147,25752261,4
+129132996,25752261,4
+132576897,25752261,4
+EdmondYan,25752261,4
+46466887,25752261,3
+62345841,25752261,4
+1717972,25752261,4
+alcat,25752261,5
+62471533,25752261,4
+piaoweier,25752261,4
+81691649,25752261,2
+akilaa,25752261,3
+67888545,25752261,5
+nolemchc,25752261,4
+lenadaluobo,25752261,3
+roy325,25752261,4
+daydream466,25752261,4
+48808520,25752261,3
+ilovemyself,25752261,5
+60512689,25752261,4
+56138640,25752261,4
+fxiaobo,25752261,3
+edisonlx312321,25752261,5
+York29,25752261,5
+xiongyuzhen,25752261,4
+90884269,25752261,4
+48407248,25752261,3
+rdjtmntrl,25752261,5
+54839416,25752261,4
+Branda,25752261,4
+32462724,25752261,3
+63385457,25752261,2
+124033490,25752261,4
+102983230,25752261,5
+49587951,25752261,3
+pastories,25752261,5
+132111748,25752261,5
+2940089,25752261,5
+104884768,25752261,3
+buzhihuowu,25752261,3
+64461922,25752261,3
+jade0711,25752261,5
+verrivanii,25752261,2
+xx_jmlx,25752261,4
+65183183,25752261,4
+132092156,25752261,5
+43475366,25752261,4
+67437110,25752261,-1
+48815744,25752261,3
+josephine2able,25752261,3
+46988073,25752261,4
+1333942,25752261,3
+mylittletower,25752261,5
+53387777,25752261,1
+121478447,25752261,4
+xu77,25752261,4
+122228928,25752261,5
+39681701,25752261,3
+67346668,25752261,3
+128587734,25752261,4
+icepenny77,25752261,3
+53363578,25752261,4
+57639704,25752261,4
+126702436,25752261,4
+50940233,25752261,4
+67148832,25752261,5
+riverbrother,25752261,4
+amyzys1998,25752261,4
+52381043,25752261,5
+WillHunted,25752261,4
+50472438,25752261,4
+5851064,25752261,3
+41197911,25752261,3
+115985324,25752261,3
+50063059,25752261,3
+hnnyzxh,25752261,3
+notonlysleep,25752261,4
+3509692,25752261,3
+36269842,25752261,4
+100574320,25752261,4
+38240500,25752261,5
+littlemiemie,25752261,5
+claireqq,25752261,4
+92254946,25752261,4
+HelloBunny,25752261,3
+132342909,25752261,4
+51119059,25752261,2
+EnamE,25752261,4
+127066563,25752261,3
+keensolo,25752261,4
+xuetongwang,25752261,4
+39363445,25752261,3
+89431473,25752261,5
+87636985,25752261,2
+49321934,25752261,4
+53536327,25752261,5
+2663124,25752261,-1
+Davidcyclone,25752261,-1
+127569899,25752261,3
+YiLingShen,25752261,3
+46742119,25752261,4
+suikz,25752261,5
+tanblin,25752261,4
+born_to_die,25752261,4
+43228715,25752261,3
+robins1979,25752261,4
+46088268,25752261,5
+moika,25752261,4
+Aki.loves.rock,25752261,3
+peegod,25752261,5
+69307226,25752261,5
+rabbitzhuyin,25752261,4
+hongdoushanuomi,25752261,4
+3783132,25752261,4
+54983933,25752261,3
+fancheyu,25752261,4
+zxt1219,25752261,2
+EMonica,25752261,4
+2094664,25752261,4
+45351288,25752261,5
+124773780,25752261,4
+117348494,25752261,5
+2753456,25752261,4
+77602373,25752261,5
+redcookie,25752261,4
+74824888,25752261,4
+62764426,25752261,5
+55406228,25752261,3
+61935443,25752261,4
+imcandy,25752261,4
+totdaisy,25752261,4
+57407001,25752261,4
+justsay,25752261,3
+119992317,25752261,4
+lucksam,25752261,3
+graygem,25752261,4
+cynthia3922,25752261,3
+chengjw,25752261,3
+64259939,25752261,3
+yeahqiang,25752261,4
+58139430,25752261,4
+85112816,25752261,3
+cooiky,25752261,-1
+s5ven,25752261,3
+pipixi,25752261,3
+may5may,25752261,4
+carrieloveless,25752261,4
+34571461,25752261,5
+maochenmu,25752261,-1
+verschung,25752261,5
+58278187,25752261,4
+48360878,25752261,4
+63760743,25752261,4
+62318575,25752261,4
+125112279,25752261,3
+56737259,25752261,3
+45484348,25752261,2
+genie37,25752261,3
+fullofvitamin,25752261,4
+47405308,25752261,3
+40950202,25752261,4
+seagreenskyblue,25752261,-1
+54309491,25752261,3
+2814849,25752261,4
+2498446,25752261,5
+lanbignsu,25752261,5
+53042572,25752261,-1
+hlung,25752261,5
+83797718,25752261,4
+2870954,25752261,3
+63044059,25752261,3
+cld104123,25752261,4
+49487093,25752261,4
+Razzmatazz,25752261,4
+53981944,25752261,4
+66188683,25752261,5
+2294404,25752261,3
+4116226,25752261,3
+66536008,25752261,4
+Pennyui,25752261,5
+MihaelKeehl,25752261,4
+52702832,25752261,4
+Cq1988,25752261,3
+wangmian0729,25752261,2
+izaijin,25752261,4
+ValsonChen,25752261,2
+51606142,25752261,3
+vanjuta,25752261,4
+rainyrainy,25752261,5
+34043000,25752261,3
+cherryhj,25752261,3
+55613939,25752261,5
+128277585,25752261,4
+nicoyan,25752261,4
+necrovagus,25752261,5
+dingjiandoris,25752261,4
+lovenapp,25752261,3
+4409109,25752261,4
+3756676,25752261,4
+pisceanw,25752261,3
+67997947,25752261,3
+64716010,25752261,5
+black-h,25752261,4
+64270457,25752261,5
+yizhao,25752261,3
+49561830,25752261,3
+60913793,25752261,5
+51490972,25752261,3
+56524776,25752261,5
+surfire,25752261,4
+62397503,25752261,4
+cherwy,25752261,3
+57367354,25752261,4
+zengchinhuang,25752261,4
+1960285,25752261,3
+44486202,25752261,3
+2828074,25752261,3
+51273572,25752261,-1
+35886249,25752261,4
+Mr.panda,25752261,3
+45244208,25752261,4
+121173641,25752261,5
+96009356,25752261,5
+63864214,25752261,3
+50433488,25752261,3
+69406009,25752261,4
+alcudish,25752261,4
+34668649,25752261,4
+nknymphet,25752261,3
+57145798,25752261,4
+dalianhaizao,25752261,4
+anna923,25752261,5
+abezhang,25752261,4
+121579661,25752261,4
+91446742,25752261,5
+49225161,25752261,4
+131687078,25752261,4
+63307477,25752261,4
+VIVIannnkk,25752261,5
+pattywenjiao,25752261,5
+90807462,25752261,4
+endlessend,25752261,5
+52504218,25752261,5
+41936951,25752261,5
+36118700,25752261,3
+126344543,25752261,5
+lishidai93,25752261,4
+ink1020,25752261,4
+bearhearted,25752261,4
+SnoopyVan,25752261,4
+120263299,25752261,4
+2838141,25752261,4
+4269560,25752261,4
+66168101,25752261,4
+64506925,25752261,4
+3248812,25752261,4
+marsong,25752261,4
+47215662,25752261,4
+jupengorall,25752261,2
+120980814,25752261,4
+66979855,25752261,4
+deirdra,25752261,3
+42818177,25752261,4
+lxp1234,25752261,3
+85354918,25752261,5
+81219036,25752261,4
+goodbyemyprince,25752261,4
+cschester,25752261,4
+4320088,25752261,3
+68828044,25752261,2
+96771459,25752261,4
+2119698,25752261,3
+64314238,25752261,-1
+34591381,25752261,5
+1328765,25752261,5
+itzhaoxiangyu,25752261,2
+58243506,25752261,3
+127292796,25752261,5
+iamxy2,25752261,2
+zepwhen,25752261,4
+63243356,25752261,4
+116607290,25752261,2
+henry2004,25752261,4
+Vision0027,25752261,5
+49307671,25752261,4
+naschris,25752261,4
+hela,25752261,4
+4511323,25752261,5
+maotou1980,25752261,4
+pinpin1023,25752261,5
+68812580,25752261,3
+43650897,25752261,5
+115822113,25752261,3
+103016833,25752261,5
+2984167,25752261,4
+fengjiansun,25752261,4
+currant,25752261,3
+57368289,25752261,5
+28079955,25752261,3
+50453309,25752261,4
+YuleWu,25752261,4
+64975249,25752261,4
+58643220,25752261,4
+39132623,25752261,5
+43130115,25752261,5
+maoyufreng,25752261,4
+louisalau007,25752261,4
+51750507,25752261,4
+4525639,25752261,5
+10724871,25752261,5
+czy940903,25752261,5
+63724956,25752261,4
+62342347,25752261,4
+sandymint,25752261,3
+Jungly,25752261,4
+66583629,25752261,5
+sherry123,25752261,4
+52561499,25752261,4
+77922789,25752261,4
+67677954,25752261,3
+49750493,25752261,3
+sophiablanc,25752261,4
+markshi425,25752261,4
+20967601,25752261,4
+VRoss,25752261,5
+53904124,25752261,4
+iRayc,25752261,3
+27019548,25752261,5
+reneryu,25752261,4
+82603168,25752261,5
+blueraindrop,25752261,3
+veolxxxx,25752261,4
+47259806,25752261,3
+61296926,25752261,5
+61190847,25752261,4
+109055681,25752261,4
+1273166,25752261,5
+28748505,25752261,4
+65412989,25752261,4
+77911523,25752261,4
+60119202,25752261,5
+1795295,25752261,3
+81506415,25752261,3
+39772273,25752261,4
+44134802,25752261,3
+50566408,25752261,4
+42842033,25752261,3
+Happysunshine,25752261,4
+kiteshady,25752261,4
+49335488,25752261,4
+58762290,25752261,3
+60763444,25752261,4
+47353624,25752261,4
+34276741,25752261,4
+1929074,25752261,4
+50743687,25752261,5
+50075764,25752261,5
+mymx,25752261,4
+k-kuai,25752261,3
+121197040,25752261,4
+Y.muffin,25752261,4
+68189537,25752261,3
+88132855,25752261,3
+1783337,25752261,4
+84530034,25752261,3
+102077432,25752261,3
+121564913,25752261,5
+59251112,25752261,3
+104128832,25752261,4
+55321548,25752261,4
+131684327,25752261,3
+mirror_sen,25752261,4
+51620794,25752261,4
+dannytheking,25752261,3
+damnhorrorxxx,25752261,4
+42222714,25752261,5
+58557988,25752261,4
+treeplanting,25752261,3
+birdgirl,25752261,4
+DavyNight,25752261,4
+terabithia.les,25752261,5
+roxanneshiong,25752261,4
+i7COLORS,25752261,5
+3750983,25752261,4
+120358782,25752261,4
+balalily,25752261,4
+50616281,25752261,4
+90729667,25752261,3
+vaie,25752261,5
+90913856,25752261,4
+53927357,25752261,5
+paes,25752261,2
+4535772,25752261,3
+bunnydoll,25752261,3
+4317619,25752261,3
+cgy0330,25752261,5
+Augustonearth,25752261,3
+119580583,25752261,5
+49116772,25752261,3
+60429907,25752261,5
+CharlesChou,25752261,3
+61025821,25752261,4
+2664199,25752261,5
+74629156,25752261,5
+42756036,25752261,4
+6243740,25752261,4
+49759767,25752261,4
+vanessazheng,25752261,4
+61661593,25752261,2
+49871363,25752261,3
+Yukio,25752261,4
+74085984,25752261,4
+46447954,25752261,4
+62723571,25752261,3
+1278805,25752261,3
+2208855,25752261,3
+81042721,25752261,4
+95212775,25752261,3
+4624921,25752261,4
+114734252,25752261,2
+chezidaobai,25752261,3
+60785049,25752261,3
+FTY364002361,25752261,2
+4217792,25752261,3
+waitsummer,25752261,4
+58462261,25752261,4
+fat_hill,25752261,4
+2726762,25752261,2
+2227016,25752261,4
+yxjeremy,25752261,4
+65283141,25752261,5
+60166296,25752261,4
+74106602,25752261,3
+gerruwu1990,25752261,4
+kiplinghu,25752261,5
+dream_for3,25752261,4
+rose886,25752261,5
+awesomeperfect,25752261,4
+ohnosang,25752261,4
+108210499,25752261,1
+54954502,25752261,5
+nkorea,25752261,4
+58777523,25752261,4
+qiangqiangzhang,25752261,3
+58704227,25752261,3
+4683518,25752261,4
+52687755,25752261,5
+119734974,25752261,4
+65647086,25752261,5
+Cathybebrave,25752261,3
+nancyasuka,25752261,3
+sevenseven.7,25752261,4
+62369741,25752261,3
+virkong,25752261,3
+KiD-KiM,25752261,3
+33400757,25752261,4
+libaohen,25752261,5
+108168194,25752261,4
+72087317,25752261,4
+beannyontheroad,25752261,4
+122758361,25752261,5
+67447555,25752261,4
+VampirX,25752261,4
+nanzang,25752261,4
+62532021,25752261,3
+5580906,25752261,-1
+agnes223,25752261,3
+Shuimu3,25752261,4
+121722324,25752261,4
+57084612,25752261,3
+103348980,25752261,4
+Woxinhuashu,25752261,1
+58402026,25752261,5
+54485776,25752261,3
+80993663,25752261,5
+cui_xianan,25752261,4
+mondinounique,25752261,4
+4826633,25752261,5
+alphy,25752261,3
+Edward-Lockwood,25752261,5
+54506320,25752261,5
+64873674,25752261,4
+1786804,25752261,4
+hc9726,25752261,4
+57991654,25752261,4
+viviancien,25752261,4
+50519870,25752261,2
+qamber,25752261,4
+45975385,25752261,3
+touya0229,25752261,3
+69020759,25752261,4
+53848825,25752261,4
+62198966,25752261,4
+72470726,25752261,5
+nekoface,25752261,3
+TallTan,25752261,4
+blueskyfly,25752261,4
+46026235,25752261,5
+60635722,25752261,5
+99942273,25752261,3
+angelfromhell,25752261,4
+Sunny851020,25752261,5
+joicyvane,25752261,4
+49668143,25752261,5
+101593391,25752261,2
+Vof,25752261,4
+prana27,25752261,3
+121748685,25752261,3
+40153271,25752261,5
+103619776,25752261,5
+55777311,25752261,4
+47281283,25752261,4
+7768202,25752261,5
+78160726,25752261,5
+olivia851112,25752261,3
+132213872,25752261,3
+laputanyoung,25752261,4
+jx0517,25752261,4
+67246411,25752261,4
+47150701,25752261,5
+93469106,25752261,3
+weiwei1020,25752261,4
+huahetao,25752261,3
+2187670,25752261,4
+olabaobao,25752261,4
+1840916,25752261,4
+1765008,25752261,4
+5215498,25752261,4
+58057340,25752261,3
+121059128,25752261,3
+yzk2237084,25752261,2
+2044436,25752261,3
+64771060,25752261,3
+querr,25752261,5
+49486495,25752261,5
+problemchildren,25752261,5
+24139618,25752261,3
+40296024,25752261,3
+43153098,25752261,4
+xiaojiongxia,25752261,3
+1528226,25752261,5
+luckywolf,25752261,5
+moliao,25752261,4
+doriskojima,25752261,3
+72684898,25752261,3
+71179615,25752261,4
+58070874,25752261,3
+67883787,25752261,5
+50938886,25752261,3
+60349266,25752261,4
+helloanyone,25752261,2
+blackeleven,25752261,4
+54473705,25752261,4
+SmilerCheung,25752261,5
+41130036,25752261,3
+79866373,25752261,5
+60160104,25752261,4
+jessiezhaixi,25752261,5
+47810404,25752261,4
+hiJelly,25752261,-1
+2135257,25752261,3
+131842614,25752261,3
+58603704,25752261,4
+50739519,25752261,5
+3092474,25752261,3
+58703391,25752261,4
+rakumm,25752261,3
+132190479,25752261,3
+xxxcici123,25752261,4
+mmk817,25752261,5
+miucather,25752261,4
+sensenecho,25752261,3
+66201506,25752261,4
+heydzi,25752261,3
+125010605,25752261,4
+12294278,25752261,2
+66345679,25752261,5
+whatsuplaura,25752261,4
+34006414,25752261,5
+125474588,25752261,4
+43948755,25752261,-1
+42144339,25752261,4
+oak1890,25752261,3
+albus_1987,25752261,3
+52187900,25752261,4
+yunyou1989,25752261,4
+loudi,25752261,4
+Petrick628,25752261,2
+68193326,25752261,3
+1171665,25752261,4
+33042240,25752261,3
+65357988,25752261,5
+wndtlkr,25752261,3
+57293187,25752261,5
+57293187,25752261,5
+iyuge,25752261,4
+chuyouyuan,25752261,2
+63154261,25752261,4
+70356127,25752261,4
+kissyangod,25752261,4
+zhongshanaoli,25752261,4
+yueyuedad1972,25752261,5
+JCJC,25752261,4
+58192083,25752261,5
+AaronJemm,25752261,5
+xxxlingxxx,25752261,5
+kiki204629,25752261,4
+104217695,25752261,3
+js10410,25752261,4
+MyMichelle,25752261,5
+2333505,25752261,4
+4295298,25752261,4
+62920331,25752261,5
+85660086,25752261,4
+mycage,25752261,4
+131898558,25752261,4
+2654815,25752261,5
+35877038,25752261,4
+122456206,25752261,5
+qiujie,25752261,4
+bellaG,25752261,3
+xinnii,25752261,4
+117359316,25752261,5
+54853596,25752261,3
+47459422,25752261,4
+59219031,25752261,5
+114505579,25752261,5
+52287609,25752261,4
+53159039,25752261,4
+louis15yao,25752261,4
+3546054,25752261,2
+63636223,25752261,4
+pal1,25752261,4
+Melody_sw,25752261,4
+51564972,25752261,3
+41316861,25752261,3
+miaoxiao123,25752261,4
+2380878,25752261,4
+InMisery,25752261,4
+69458682,25752261,3
+60610338,25752261,3
+92973509,25752261,5
+50027948,25752261,4
+57126111,25752261,4
+71402960,25752261,5
+Bainan,25752261,4
+gagaye,25752261,5
+62122190,25752261,4
+49594661,25752261,3
+89794153,25752261,4
+peggy622,25752261,4
+1133756,25752261,4
+gainboy,25752261,5
+54533341,25752261,4
+54533341,25752261,4
+52432137,25752261,-1
+xxxyz,25752261,-1
+83788584,25752261,3
+83195287,25752261,4
+57074529,25752261,3
+69777270,25752261,4
+amyenvy,25752261,5
+PP_wei,25752261,4
+zuoshoudezuo,25752261,4
+53581844,25752261,2
+59253056,25752261,5
+3809098,25752261,3
+Rurutia7,25752261,3
+119276614,25752261,5
+91257239,25752261,4
+28293516,25752261,4
+tuzinike,25752261,2
+62498830,25752261,4
+62875817,25752261,5
+xyc1987,25752261,5
+41363496,25752261,5
+129662205,25752261,3
+xiaosongqu,25752261,3
+rainred,25752261,3
+127741400,25752261,3
+fyvonne,25752261,3
+49190112,25752261,5
+2912255,25752261,4
+53134632,25752261,4
+chang945,25752261,5
+42132535,25752261,5
+46266224,25752261,4
+1897616,25752261,4
+75325570,25752261,5
+doulaodou,25752261,3
+tokasa,25752261,3
+49254231,25752261,4
+yamilove,25752261,3
+58342964,25752261,4
+83913811,25752261,-1
+zuozuotongzhi,25752261,4
+67326475,25752261,5
+42993511,25752261,5
+pierrewrs,25752261,4
+51673161,25752261,2
+54989820,25752261,3
+77006697,25752261,5
+sunivengg,25752261,4
+44809136,25752261,4
+65912201,25752261,4
+53393312,25752261,3
+1333997,25752261,2
+60061265,25752261,5
+74389768,25752261,3
+5404310,25752261,4
+Mrssin,25752261,4
+dirkhysteria,25752261,4
+63262081,25752261,4
+84257030,25752261,5
+celt,25752261,4
+kasimsophie,25752261,4
+116391652,25752261,3
+51870876,25752261,4
+guinie,25752261,3
+49907555,25752261,4
+sxforever,25752261,4
+4789722,25752261,4
+iamjessi,25752261,4
+Ryan-Z,25752261,4
+105892231,25752261,4
+88877033,25752261,4
+58253013,25752261,5
+60536752,25752261,2
+75513285,25752261,4
+122130429,25752261,3
+everfreeneciel,25752261,3
+moradin,25752261,4
+littlehorse,25752261,4
+poire,25752261,2
+4878767,25752261,4
+75416666,25752261,3
+mengthinking,25752261,3
+93666846,25752261,4
+koushisi,25752261,4
+56484149,25752261,4
+75987958,25752261,4
+66767418,25752261,4
+49498523,25752261,5
+AirCastle,25752261,5
+xfjzoe,25752261,4
+DizzyFox,25752261,4
+vincenttumi,25752261,4
+45276725,25752261,4
+partingkadaj,25752261,4
+61599926,25752261,5
+onlystella,25752261,5
+crystal612,25752261,4
+kmlg_dx,25752261,4
+muamu,25752261,4
+4110596,25752261,5
+68331532,25752261,4
+90532402,25752261,5
+7880093,25752261,2
+79383062,25752261,4
+57874487,25752261,4
+77200765,25752261,5
+erhuyouxuan,25752261,4
+azureallul,25752261,5
+4753861,25752261,3
+33324533,25752261,4
+aprilray,25752261,4
+102292256,25752261,5
+113037019,25752261,4
+80121316,25752261,4
+1885662,25752261,3
+biketo,25752261,3
+52944642,25752261,3
+57542378,25752261,4
+62608491,25752261,5
+68936327,25752261,4
+54984127,25752261,5
+bluesorry,25752261,3
+KnightWhite,25752261,4
+55942870,25752261,4
+ballsirius,25752261,4
+45816367,25752261,4
+83899962,25752261,4
+sodayui,25752261,4
+baiyang36172417,25752261,-1
+soultaker,25752261,4
+dxwsz1,25752261,4
+63444394,25752261,3
+cryuyu,25752261,4
+116036519,25752261,3
+56586044,25752261,5
+60016627,25752261,3
+4297674,25752261,3
+feizhuangzhuang,25752261,3
+61391879,25752261,-1
+lulu_power,25752261,5
+fkimi,25752261,4
+37691659,25752261,3
+janfle,25752261,4
+80346808,25752261,4
+92775477,25752261,4
+bluetiger,25752261,4
+44653636,25752261,3
+50805750,25752261,5
+evanyoung,25752261,4
+spzmoon,25752261,4
+nangegeiforce,25752261,3
+maimufei,25752261,3
+3648785,25752261,5
+67909214,25752261,2
+51338179,25752261,4
+127345355,25752261,4
+aggerek,25752261,-1
+4664430,25752261,4
+3881393,25752261,4
+ring_ring,25752261,5
+35044445,25752261,4
+50582816,25752261,4
+58720878,25752261,4
+15342214,25752261,4
+foolfoo,25752261,3
+85665063,25752261,4
+tomato88,25752261,3
+59574095,25752261,5
+4287326,25752261,5
+51506462,25752261,3
+44854145,25752261,1
+120010714,25752261,4
+64715321,25752261,4
+summerwang,25752261,3
+ninosun,25752261,4
+42724768,25752261,3
+47096545,25752261,3
+48800025,25752261,4
+65312708,25752261,5
+2700487,25752261,4
+shosony,25752261,3
+69735820,25752261,4
+forsxl,25752261,4
+Olesama,25752261,3
+dxdbygtt,25752261,3
+1486502,25752261,4
+10844337,25752261,4
+27749034,25752261,4
+aiolia,25752261,4
+43891249,25752261,4
+131684545,25752261,4
+1909194,25752261,4
+47104715,25752261,4
+TANGKOU,25752261,-1
+4575341,25752261,4
+61389067,25752261,4
+51126064,25752261,3
+68842437,25752261,3
+109084248,25752261,5
+3298336,25752261,4
+59621398,25752261,4
+mamalin,25752261,5
+1077003,25752261,3
+raizzt,25752261,5
+kathy1105,25752261,3
+74232031,25752261,3
+gss2046,25752261,4
+46993789,25752261,4
+121512625,25752261,3
+80500079,25752261,5
+kalo1021,25752261,4
+1097543,25752261,5
+53267569,25752261,3
+120625991,25752261,3
+65383773,25752261,4
+60583997,25752261,4
+ChrisNoth,25752261,3
+Tomokin,25752261,4
+86208688,25752261,4
+51165636,25752261,4
+119456663,25752261,3
+caodanlian,25752261,3
+3625223,25752261,4
+37640485,25752261,4
+50870712,25752261,3
+zhibiaoshi,25752261,4
+heming_way,25752261,4
+duc_k,25752261,4
+49365587,25752261,3
+millylyu,25752261,3
+43384723,25752261,4
+124939258,25752261,5
+Shin7KYO,25752261,4
+63325811,25752261,4
+75138623,25752261,3
+lilianweng,25752261,4
+winteliu,25752261,4
+3464028,25752261,5
+laperseus,25752261,4
+2325252,25752261,3
+77680309,25752261,5
+xiamudemao,25752261,3
+distance_scar,25752261,4
+59055667,25752261,3
+60732201,25752261,4
+virlee,25752261,4
+4852496,25752261,4
+69547285,25752261,4
+113122817,25752261,4
+67330888,25752261,4
+nicole_ni,25752261,5
+xiesicong,25752261,4
+Lungle,25752261,4
+Yu-Tommy,25752261,3
+iamzzy,25752261,5
+64947764,25752261,4
+33324943,25752261,4
+52527248,25752261,-1
+3606261,25752261,3
+moontrain,25752261,3
+92887508,25752261,5
+singlesinger,25752261,4
+qianmoch,25752261,-1
+elliottyue,25752261,4
+Chiunotfortoday,25752261,5
+51867437,25752261,4
+kally_allen,25752261,3
+marissatsui,25752261,3
+51751455,25752261,5
+benzene,25752261,4
+sakanayuyu,25752261,3
+fenris,25752261,5
+Serenie,25752261,4
+muniuxiaoquan,25752261,5
+53932937,25752261,4
+tyu,25752261,4
+baskara,25752261,4
+49318472,25752261,4
+4462311,25752261,3
+65800708,25752261,3
+44275428,25752261,4
+3180739,25752261,4
+linchuzhuang,25752261,5
+81000948,25752261,4
+101860430,25752261,4
+130024032,25752261,4
+4464121,25752261,5
+124537695,25752261,4
+34479006,25752261,3
+62571454,25752261,3
+119922273,25752261,4
+57765448,25752261,3
+momot,25752261,5
+64898125,25752261,4
+90027945,25752261,1
+130436479,25752261,4
+53244433,25752261,4
+thesp,25752261,4
+diysad,25752261,-1
+littlepinkbang7,25752261,4
+moland,25752261,5
+125221772,25752261,3
+onlyloll,25752261,4
+79844827,25752261,3
+66973670,25752261,5
+xiao8888,25752261,3
+jack13,25752261,3
+51664645,25752261,4
+41815717,25752261,-1
+123458045,25752261,4
+57436180,25752261,3
+maryzhao,25752261,4
+80744107,25752261,5
+knoxie,25752261,4
+57661914,25752261,3
+72984075,25752261,-1
+anthony1123,25752261,3
+67779609,25752261,4
+132019921,25752261,4
+zephyrho,25752261,5
+45826317,25752261,3
+cachecache,25752261,4
+1550127,25752261,3
+81850559,25752261,3
+7219773,25752261,2
+4207280,25752261,5
+liumang2,25752261,4
+120084471,25752261,2
+57360043,25752261,5
+54145491,25752261,4
+8079258,25752261,3
+77075195,25752261,4
+68251895,25752261,3
+2543451,25752261,5
+45615134,25752261,3
+36422732,25752261,5
+58575244,25752261,4
+blessyue,25752261,4
+58836054,25752261,3
+34544680,25752261,2
+shenbaijun,25752261,5
+95592443,25752261,3
+63090885,25752261,1
+jasminesyc,25752261,4
+68397442,25752261,3
+dustybaby,25752261,4
+anaru,25752261,3
+yichenjian,25752261,4
+IantoJones,25752261,5
+95768578,25752261,5
+aug811,25752261,5
+wjmm,25752261,4
+60892519,25752261,5
+1236656,25752261,5
+65301310,25752261,5
+3358010,25752261,3
+55833200,25752261,5
+atengbrilliance,25752261,4
+68447618,25752261,5
+27402449,25752261,4
+46897570,25752261,3
+51067589,25752261,4
+50620549,25752261,3
+1747318,25752261,4
+49659191,25752261,4
+glhxanthus,25752261,3
+CobbWalt,25752261,-1
+FrankWasabi,25752261,3
+54688343,25752261,3
+58273860,25752261,4
+51796463,25752261,4
+baijiazhang,25752261,4
+xiaoxinadd,25752261,5
+52138435,25752261,5
+gtxyxyz,25752261,4
+9167697,25752261,3
+123730595,25752261,4
+3880844,25752261,3
+2364578,25752261,4
+2364578,25752261,4
+Dependon,25752261,3
+AFroThinda,25752261,4
+hawords,25752261,4
+81652871,25752261,3
+73353707,25752261,3
+jurgenzn,25752261,3
+aginny,25752261,4
+emilydakota,25752261,4
+faye2,25752261,5
+105270645,25752261,4
+53486801,25752261,4
+bobharris,25752261,3
+flowermoi,25752261,3
+hzloli,25752261,-1
+cheersun,25752261,5
+57714176,25752261,4
+YAMAHA_GO,25752261,4
+125281406,25752261,4
+winter0313,25752261,5
+eeagle,25752261,3
+68140400,25752261,5
+66803513,25752261,4
+63485325,25752261,3
+3741660,25752261,3
+mellowang,25752261,4
+COCOCOQUEEN,25752261,4
+easternmoon,25752261,4
+2039569,25752261,3
+8640305,25752261,3
+ciyoandcicy,25752261,4
+69814261,25752261,3
+1554300,25752261,3
+57689333,25752261,5
+61878012,25752261,4
+66128252,25752261,4
+aquariusyoyo,25752261,5
+2243854,25752261,4
+stogangan,25752261,4
+chuan1989,25752261,4
+flyingCaptian,25752261,4
+2803203,25752261,5
+undas,25752261,4
+54035267,25752261,3
+61953901,25752261,4
+128543745,25752261,2
+zjnsas,25752261,3
+4657541,25752261,3
+129298730,25752261,4
+51113199,25752261,3
+4882323,25752261,3
+61551903,25752261,5
+45543897,25752261,4
+84593823,25752261,4
+34347136,25752261,4
+50391566,25752261,4
+gongqiong,25752261,4
+aprilwind_shi,25752261,4
+84238214,25752261,4
+ctimelessc,25752261,4
+maychendaxu,25752261,4
+tianbuman,25752261,3
+14327084,25752261,4
+huachunyan,25752261,3
+grannys_bear,25752261,2
+zaozi,25752261,4
+76216989,25752261,2
+56328565,25752261,5
+66336980,25752261,3
+66228440,25752261,4
+maomaoye,25752261,4
+55617091,25752261,4
+38151651,25752261,3
+74397322,25752261,3
+i13nocry,25752261,4
+yushuuk,25752261,4
+65117604,25752261,3
+51472613,25752261,4
+91371841,25752261,3
+1498731,25752261,3
+73154787,25752261,5
+123013458,25752261,4
+miss.elaine,25752261,4
+40684892,25752261,3
+cloverllx,25752261,2
+lingjue,25752261,4
+65056943,25752261,4
+4200201,25752261,4
+sakurayao,25752261,5
+65146789,25752261,3
+45511772,25752261,2
+129937511,25752261,4
+37133098,25752261,5
+24888847,25752261,5
+64972514,25752261,5
+yummygirl,25752261,2
+mecerdes,25752261,3
+47995488,25752261,4
+3275817,25752261,3
+58929082,25752261,3
+zhangrenran,25752261,3
+1956404,25752261,5
+haitan39,25752261,-1
+55885423,25752261,3
+49900100,25752261,-1
+97491371,25752261,5
+wl_22,25752261,3
+menkoumahu,25752261,3
+dellama,25752261,4
+49576050,25752261,2
+yf611x,25752261,4
+deshley,25752261,5
+70821942,25752261,4
+57672911,25752261,3
+98728218,25752261,5
+47788698,25752261,4
+1138243,25752261,3
+60977504,25752261,4
+2449818,25752261,3
+59220835,25752261,3
+xiangfo,25752261,4
+43618172,25752261,5
+48166739,25752261,5
+3030883,25752261,3
+helloivan,25752261,4
+myjeajoon,25752261,4
+82995055,25752261,5
+3177593,25752261,3
+52858240,25752261,5
+amwindy,25752261,5
+58434981,25752261,4
+46305664,25752261,3
+121154422,25752261,4
+wooafei,25752261,1
+35003294,25752261,3
+cannwindsor,25752261,5
+29458018,25752261,4
+61602605,25752261,4
+qixiaole,25752261,4
+79354740,25752261,4
+79354740,25752261,4
+vipzole,25752261,3
+85414641,25752261,4
+53819334,25752261,4
+74707969,25752261,5
+129595269,25752261,3
+orangesee,25752261,4
+77156561,25752261,3
+21606016,25752261,3
+bobowudi,25752261,4
+48591645,25752261,4
+51909873,25752261,3
+1484739,25752261,2
+69854006,25752261,4
+37488201,25752261,-1
+stone_zhao,25752261,3
+iasen,25752261,5
+1895030,25752261,4
+losite,25752261,3
+lilithyi,25752261,5
+102459602,25752261,4
+46722646,25752261,4
+36379679,25752261,4
+qinyouxuan,25752261,4
+1364563,25752261,4
+changchangxian,25752261,5
+60103253,25752261,3
+3122796,25752261,3
+2073755,25752261,5
+yido312,25752261,3
+35071954,25752261,4
+57006141,25752261,4
+61602922,25752261,5
+65709225,25752261,3
+dewar,25752261,3
+goxofy,25752261,5
+63941479,25752261,4
+127029651,25752261,4
+tt1426,25752261,4
+51354667,25752261,5
+Alice798,25752261,5
+49380138,25752261,4
+58091395,25752261,5
+2891944,25752261,4
+16903025,25752261,3
+8130576,25752261,4
+3656658,25752261,4
+3491773,25752261,4
+10172527,25752261,3
+3691040,25752261,2
+50090335,25752261,3
+102581208,25752261,4
+50364248,25752261,5
+57425096,25752261,3
+45256002,25752261,5
+themissingone,25752261,4
+CPUCMX,25752261,4
+104128172,25752261,4
+58081588,25752261,-1
+av13,25752261,3
+17991181,25752261,4
+Josephine.R,25752261,5
+69530712,25752261,3
+83184870,25752261,5
+lixiaguniang,25752261,4
+127838353,25752261,5
+84287763,25752261,4
+zhanggongzi,25752261,4
+57548410,25752261,3
+tonychou,25752261,3
+45586512,25752261,4
+52689515,25752261,5
+88256583,25752261,3
+ekkus66,25752261,4
+34184327,25752261,5
+49977374,25752261,5
+69152007,25752261,5
+49433742,25752261,3
+charmine913,25752261,4
+1369113,25752261,4
+64511208,25752261,3
+91686187,25752261,4
+76931391,25752261,3
+baibi,25752261,3
+59524621,25752261,3
+50032889,25752261,4
+57011017,25752261,4
+112757196,25752261,4
+52447788,25752261,4
+98200423,25752261,2
+53639016,25752261,4
+72327409,25752261,5
+liguligu,25752261,4
+51743352,25752261,5
+69646127,25752261,-1
+58309873,25752261,3
+51132496,25752261,3
+PsyLadyTricky,25752261,4
+49259713,25752261,3
+64821728,25752261,4
+yutang,25752261,3
+3553432,25752261,3
+60650202,25752261,4
+72949033,25752261,4
+bluesky1314,25752261,1
+agwhy,25752261,4
+luzhiyu,25752261,3
+xsy0923,25752261,4
+78998600,25752261,3
+52994115,25752261,4
+49926539,25752261,5
+36354672,25752261,5
+iamluobo,25752261,4
+lozer,25752261,3
+lswawabao,25752261,5
+1463801,25752261,4
+etsuko120,25752261,3
+35715082,25752261,4
+51736844,25752261,4
+1754955,25752261,3
+46152001,25752261,4
+1480415,25752261,4
+3688568,25752261,5
+angusfox,25752261,3
+121556627,25752261,4
+klot,25752261,4
+58515646,25752261,4
+antiekin,25752261,3
+leexiaomu,25752261,5
+61468605,25752261,3
+48374408,25752261,4
+xuezhiyuan-,25752261,4
+loveirina,25752261,3
+45923967,25752261,3
+kimomo,25752261,3
+gxyvonne,25752261,3
+69616241,25752261,3
+52350910,25752261,5
+aliceshi,25752261,2
+superseahell,25752261,5
+no1no,25752261,2
+36659083,25752261,3
+122713796,25752261,4
+49920383,25752261,5
+121539453,25752261,5
+ARTHURU,25752261,4
+4298839,25752261,3
+shanegl,25752261,4
+62354535,25752261,5
+70369993,25752261,5
+34231521,25752261,5
+yyhhf,25752261,3
+sky.huangxia,25752261,5
+5483875,25752261,5
+46355021,25752261,3
+99169967,25752261,3
+2341945,25752261,3
+47781014,25752261,4
+on1yys,25752261,4
+69215741,25752261,5
+52906613,25752261,4
+cigaretteAmor,25752261,5
+guolinong,25752261,5
+stardust.,25752261,4
+52294863,25752261,2
+68016906,25752261,5
+play0829,25752261,4
+54065263,25752261,3
+27943997,25752261,5
+VioletChong,25752261,4
+stream_wang,25752261,4
+IceKey,25752261,4
+66233315,25752261,4
+47080438,25752261,4
+gongzitian,25752261,3
+48509446,25752261,4
+AuRevoir7,25752261,4
+vera0902,25752261,4
+se7enteeny,25752261,3
+2186902,25752261,-1
+45505895,25752261,5
+vacodia,25752261,5
+48071996,25752261,3
+69998360,25752261,3
+34656430,25752261,4
+114351262,25752261,5
+66458815,25752261,4
+52411930,25752261,3
+2745009,25752261,4
+chen_cao,25752261,3
+60015294,25752261,5
+91375204,25752261,5
+sofasay,25752261,4
+hulalo,25752261,5
+31873447,25752261,3
+Sophieless,25752261,5
+lingxiaoen,25752261,4
+2923837,25752261,2
+13826202,25752261,3
+52278915,25752261,4
+4466010,25752261,4
+aitiaowudemeng,25752261,4
+niazion,25752261,4
+31978586,25752261,5
+72931122,25752261,5
+frankchi,25752261,2
+78448364,25752261,4
+90214054,25752261,3
+59971019,25752261,4
+3794173,25752261,2
+42082247,25752261,5
+66423049,25752261,3
+53561838,25752261,3
+heshizan,25752261,4
+58295895,25752261,4
+1818595,25752261,3
+leikea,25752261,3
+hooklt,25752261,4
+DoctorHou,25752261,3
+43098377,25752261,4
+45422614,25752261,3
+parala,25752261,4
+52962046,25752261,4
+50930270,25752261,4
+AYMA,25752261,2
+jo422,25752261,5
+53245934,25752261,2
+59156667,25752261,2
+30278494,25752261,4
+53472098,25752261,4
+49198106,25752261,5
+shiro666,25752261,4
+3439248,25752261,4
+57964940,25752261,4
+58977732,25752261,4
+83357048,25752261,3
+haroolovbom,25752261,3
+81311477,25752261,4
+xiaodaohuifei,25752261,5
+76457077,25752261,5
+38150776,25752261,-1
+stonexu,25752261,4
+59200218,25752261,4
+JohnnyJiong,25752261,4
+neee_,25752261,5
+kathychu,25752261,4
+4500468,25752261,4
+80996314,25752261,2
+cej,25752261,5
+60123701,25752261,4
+ruanzebang,25752261,4
+78412332,25752261,3
+dial911,25752261,4
+48259477,25752261,4
+summer_ending,25752261,4
+blossom-luputa,25752261,5
+2128957,25752261,1
+27290899,25752261,4
+61621650,25752261,3
+xuliking,25752261,4
+fengzaifei,25752261,3
+4246871,25752261,5
+leavingVegas,25752261,3
+122458396,25752261,3
+liuctic,25752261,3
+33020235,25752261,3
+angelstone,25752261,4
+haha_R,25752261,3
+3634776,25752261,4
+cika,25752261,5
+68288048,25752261,3
+joyque,25752261,4
+87579241,25752261,5
+53392958,25752261,3
+zero1979,25752261,4
+55550016,25752261,4
+taotaomvp,25752261,4
+34526603,25752261,1
+54495452,25752261,3
+105011179,25752261,4
+lukaka,25752261,3
+poornicky,25752261,4
+21212541,25752261,4
+36412946,25752261,4
+anteruna,25752261,-1
+92345427,25752261,3
+threetimes,25752261,4
+38986558,25752261,4
+asfishinwater,25752261,4
+97152342,25752261,3
+64308036,25752261,4
+78166009,25752261,3
+23853027,25752261,3
+91582621,25752261,3
+52592607,25752261,2
+snowbetty,25752261,3
+56789686,25752261,5
+53412927,25752261,4
+1670915,25752261,3
+113924103,25752261,3
+113924103,25752261,3
+46430952,25752261,-1
+48877341,25752261,3
+abigcat,25752261,5
+52632528,25752261,4
+42834387,25752261,4
+cheesechee,25752261,5
+jack_chenxiaotu,25752261,5
+xiaoshuogege,25752261,4
+2438152,25752261,2
+59967519,25752261,-1
+47618742,25752261,3
+FingerRoll,25752261,5
+20047139,25752261,3
+52462524,25752261,4
+48483774,25752261,4
+miao1211211,25752261,4
+lexieweila,25752261,-1
+2678267,25752261,4
+83759888,25752261,4
+101832527,25752261,5
+64707906,25752261,4
+suec,25752261,4
+46087148,25752261,4
+lovemycats,25752261,4
+102912620,25752261,3
+49642517,25752261,4
+58707423,25752261,4
+19698586,25752261,5
+80932097,25752261,4
+63093651,25752261,4
+48427684,25752261,4
+81666481,25752261,3
+samy0868,25752261,4
+35348647,25752261,4
+43901390,25752261,5
+62853956,25752261,4
+missneuf,25752261,3
+2176730,25752261,4
+88077335,25752261,5
+72820166,25752261,3
+101112458,25752261,5
+29905943,25752261,4
+1091236,25752261,-1
+wyw-o-,25752261,4
+68523936,25752261,5
+ElyseLee,25752261,5
+1208857,25752261,3
+50118479,25752261,4
+Obtson,25752261,3
+108269252,25752261,4
+morgankuku,25752261,5
+xihahaha,25752261,5
+44236825,25752261,3
+1394891,25752261,3
+58494684,25752261,4
+catbuild,25752261,5
+48165079,25752261,3
+4286666,25752261,4
+boxxx,25752261,4
+BUNNV,25752261,4
+2449614,25752261,4
+su311,25752261,4
+42337937,25752261,4
+63704631,25752261,4
+130658738,25752261,4
+79551281,25752261,5
+cheapchic,25752261,2
+45513879,25752261,4
+73763567,25752261,5
+89487181,25752261,4
+q258523454,25752261,5
+S.lakeheart,25752261,4
+xiguaguagua,25752261,4
+65951681,25752261,5
+53538029,25752261,4
+89870657,25752261,5
+63015769,25752261,4
+48639175,25752261,4
+4638543,25752261,3
+fpe99,25752261,4
+RAINYF,25752261,4
+owenclv,25752261,4
+55870223,25752261,5
+70124708,25752261,4
+38682661,25752261,3
+87357593,25752261,3
+77377807,25752261,4
+78229297,25752261,4
+xilouchen,25752261,1
+59129237,25752261,5
+63513932,25752261,3
+52160935,25752261,5
+eliachu,25752261,-1
+60016523,25752261,4
+75538960,25752261,3
+64882417,25752261,2
+74951548,25752261,4
+3717542,25752261,4
+summer-12,25752261,3
+107704699,25752261,4
+Ciris,25752261,5
+96977711,25752261,3
+64729781,25752261,5
+zuozichu,25752261,4
+3705062,25752261,4
+3725818,25752261,5
+65323058,25752261,4
+palmasz,25752261,3
+36807657,25752261,4
+55414544,25752261,3
+piscescissy,25752261,4
+madeleinejiang,25752261,4
+3843671,25752261,4
+pangwaer,25752261,3
+75283214,25752261,4
+aliceindreams,25752261,2
+62383479,25752261,4
+62754758,25752261,4
+double_wen,25752261,4
+92983760,25752261,4
+summertreevbme,25752261,3
+120392055,25752261,3
+75270004,25752261,5
+xiaotuo,25752261,3
+49294645,25752261,3
+43200056,25752261,2
+34321151,25752261,3
+lynn_500,25752261,4
+119559372,25752261,5
+plstudio,25752261,1
+4341731,25752261,4
+julia0214,25752261,4
+sadie_xiong,25752261,4
+saosaoxy,25752261,3
+darcy0306,25752261,4
+dorothylee0406,25752261,3
+philette,25752261,4
+miko0409,25752261,3
+51683768,25752261,3
+60088640,25752261,2
+june_jane,25752261,4
+41086330,25752261,2
+lqj1,25752261,4
+tarorez,25752261,4
+36760873,25752261,4
+37953747,25752261,5
+64702519,25752261,4
+50474625,25752261,4
+108942456,25752261,3
+3788323,25752261,4
+z1874,25752261,4
+75007342,25752261,4
+4280640,25752261,3
+14113539,25752261,4
+4504184,25752261,4
+120282120,25752261,5
+48759553,25752261,5
+70440738,25752261,4
+sarahvong,25752261,2
+66581287,25752261,4
+64066819,25752261,4
+ivykwok,25752261,3
+4609090,25752261,4
+53378505,25752261,3
+51393119,25752261,3
+78572720,25752261,4
+54326669,25752261,4
+119587434,25752261,4
+proust_7,25752261,4
+mylovelylove,25752261,3
+4669024,25752261,5
+sevenwill,25752261,4
+action552200,25752261,3
+66581892,25752261,4
+lafan,25752261,3
+1230430,25752261,3
+number814,25752261,4
+LWODE,25752261,4
+4001333,25752261,3
+MrQueen,25752261,5
+toostupid,25752261,5
+lwx624,25752261,4
+53431261,25752261,3
+84513545,25752261,3
+43824187,25752261,4
+49353802,25752261,5
+nile0106,25752261,3
+49922821,25752261,-1
+cyrus_wong,25752261,2
+4671919,25752261,4
+60570793,25752261,3
+64571969,25752261,3
+63592658,25752261,3
+summer_Remember,25752261,3
+73084756,25752261,3
+skay,25752261,4
+121702182,25752261,4
+85487169,25752261,5
+Ms.G,25752261,4
+62715554,25752261,5
+eatbananamoku,25752261,5
+6981512,25752261,3
+1860668,25752261,4
+aipa,25752261,3
+maluguos,25752261,4
+53362229,25752261,4
+57405167,25752261,4
+44521682,25752261,3
+53539927,25752261,4
+zuoyouyoyo,25752261,4
+xboncher233,25752261,5
+38359787,25752261,4
+122708996,25752261,1
+67758784,25752261,4
+taxi,25752261,4
+tinychen,25752261,4
+58051077,25752261,4
+32033776,25752261,4
+79963490,25752261,4
+goodbyelenin,25752261,4
+hanadomoto,25752261,5
+liuruomei,25752261,3
+50763897,25752261,3
+4377011,25752261,4
+58783819,25752261,4
+70094249,25752261,5
+CAla,25752261,3
+onlyxia,25752261,4
+81002115,25752261,5
+35586325,25752261,3
+Time-Trust,25752261,4
+77890563,25752261,4
+3026459,25752261,4
+54044420,25752261,5
+C-Plus,25752261,4
+lmgomg,25752261,4
+35497511,25752261,5
+50293450,25752261,4
+3063479,25752261,4
+yzy-Amelie,25752261,4
+ngc4151,25752261,4
+61797911,25752261,3
+dizzylu,25752261,4
+ning12wei,25752261,5
+yunxiaohui,25752261,3
+79108534,25752261,2
+60277804,25752261,3
+ler.sky.,25752261,3
+ps2xboxgbaxbox,25752261,4
+51908064,25752261,4
+34971055,25752261,5
+81973367,25752261,4
+119774543,25752261,4
+aprilsunshine,25752261,4
+119203760,25752261,3
+80663628,25752261,4
+shirline7,25752261,3
+2178609,25752261,3
+joycedays,25752261,-1
+joycedays,25752261,-1
+77216984,25752261,5
+armins,25752261,3
+ksjaewon,25752261,5
+123653183,25752261,2
+erosxx,25752261,3
+53049553,25752261,4
+94227961,25752261,5
+CWQ1030,25752261,4
+50283544,25752261,5
+67653468,25752261,4
+51288517,25752261,2
+3665615,25752261,4
+53218506,25752261,4
+38648875,25752261,4
+51152524,25752261,2
+93202185,25752261,4
+50608084,25752261,4
+115613463,25752261,3
+bike24,25752261,4
+wentaoxie,25752261,4
+linziyang,25752261,5
+1815495,25752261,-1
+32810352,25752261,5
+1066031,25752261,2
+3934959,25752261,4
+2058011,25752261,4
+Sophie.,25752261,4
+47427697,25752261,4
+64866923,25752261,3
+50366197,25752261,4
+39463332,25752261,4
+chenshuting0919,25752261,3
+61823510,25752261,4
+48951367,25752261,3
+mikiwdy,25752261,5
+61403829,25752261,5
+1505838,25752261,4
+1532624,25752261,4
+chenxiaozi,25752261,3
+chenxiaozi,25752261,3
+bubblewing,25752261,3
+michelleyan,25752261,3
+haywire,25752261,4
+3481297,25752261,3
+131504298,25752261,4
+zhr123456,25752261,4
+51882704,25752261,2
+9104603,25752261,3
+lauraqi,25752261,3
+68607460,25752261,5
+12116570,25752261,3
+69492907,25752261,5
+resurrection,25752261,3
+91397317,25752261,3
+48937128,25752261,3
+zhongshan711,25752261,4
+60074125,25752261,4
+65590622,25752261,4
+58016622,25752261,4
+59101445,25752261,3
+51855205,25752261,5
+71217329,25752261,4
+62401840,25752261,4
+zzetazz,25752261,4
+eureka7,25752261,3
+61511872,25752261,3
+leann1217,25752261,4
+6500897,25752261,4
+40638118,25752261,4
+61076987,25752261,3
+yo911217,25752261,4
+50079024,25752261,3
+qiaomai,25752261,3
+fanzling,25752261,4
+melanie_je,25752261,3
+70680447,25752261,3
+x__,25752261,5
+51274963,25752261,4
+UNVS,25752261,3
+66777676,25752261,5
+3920175,25752261,3
+yikoyumisa,25752261,4
+msbering,25752261,4
+zhou33,25752261,4
+1208646,25752261,-1
+2839200,25752261,4
+gianostalgia,25752261,3
+2918978,25752261,3
+48498923,25752261,4
+rena0115,25752261,4
+44095527,25752261,5
+4498680,25752261,5
+huangyourong,25752261,4
+48999552,25752261,3
+36049101,25752261,4
+RainingDemo,25752261,5
+49868522,25752261,5
+30836444,25752261,3
+melodysmelody,25752261,4
+121134593,25752261,4
+Summerhoda,25752261,4
+3005065,25752261,3
+2658903,25752261,4
+38231242,25752261,5
+26462981,25752261,3
+2653727,25752261,3
+45298840,25752261,4
+notoshaz,25752261,4
+gavinturkey,25752261,4
+47660842,25752261,5
+2667938,25752261,4
+qixian1125,25752261,5
+Aimovie,25752261,4
+jkk0620,25752261,5
+yidagege,25752261,4
+79571053,25752261,4
+57743813,25752261,4
+62529217,25752261,3
+pinxue,25752261,4
+3344824,25752261,3
+78730817,25752261,3
+1575077,25752261,4
+Yoshimang,25752261,4
+yisilian,25752261,4
+52779048,25752261,5
+3908249,25752261,4
+52838594,25752261,2
+121033172,25752261,3
+47376302,25752261,4
+51329457,25752261,5
+9623777,25752261,4
+69388549,25752261,5
+52277061,25752261,-1
+blue828,25752261,4
+joyyoung19,25752261,3
+70944686,25752261,4
+shadowlew,25752261,3
+casusu,25752261,4
+jbecks,25752261,4
+57105566,25752261,3
+71946766,25752261,4
+loewely,25752261,4
+54366340,25752261,3
+yingchen221e,25752261,4
+darkerthanwhite,25752261,4
+44725365,25752261,3
+nyssa712,25752261,4
+2216486,25752261,4
+75178022,25752261,4
+kanghao413,25752261,4
+minmins,25752261,5
+mumaer,25752261,-1
+1963086,25752261,4
+57920897,25752261,5
+daily815,25752261,-1
+108355955,25752261,4
+131663027,25752261,3
+sonnenshein,25752261,4
+kimikochan,25752261,5
+FifthDlassie,25752261,5
+towelcatryna,25752261,3
+tapir_yi,25752261,5
+2009122,25752261,3
+84599749,25752261,4
+ooo000ooo,25752261,4
+bigseaurchin,25752261,3
+77386416,25752261,4
+40264297,25752261,4
+78136860,25752261,5
+B-B-B-Side,25752261,2
+10793041,25752261,3
+juwujian,25752261,4
+40029379,25752261,5
+53560863,25752261,5
+yu830,25752261,5
+52270206,25752261,3
+53467813,25752261,3
+58369888,25752261,3
+gaxiaomi,25752261,4
+84722461,25752261,5
+fmon,25752261,4
+2856696,25752261,3
+3440574,25752261,3
+70362034,25752261,2
+hikirres,25752261,4
+MOVA,25752261,-1
+haiziyaya,25752261,4
+fealty93314,25752261,3
+79127642,25752261,5
+63059985,25752261,5
+jianbrother,25752261,5
+54721365,25752261,4
+42886827,25752261,2
+84615091,25752261,5
+59367965,25752261,4
+65369148,25752261,4
+gjhlikemusic,25752261,3
+1352282,25752261,5
+90551968,25752261,4
+85450609,25752261,4
+50014287,25752261,3
+kongnici,25752261,4
+mikewansui,25752261,-1
+51152974,25752261,3
+18080670,25752261,3
+27668778,25752261,4
+40970313,25752261,4
+prettylily,25752261,5
+60942276,25752261,5
+gaylife,25752261,5
+68597884,25752261,5
+2978891,25752261,4
+lvkunpeng,25752261,4
+crazycathr,25752261,3
+78491782,25752261,4
+Leslie_ontheway,25752261,4
+26104068,25752261,4
+mywallace,25752261,4
+liwujiu,25752261,4
+58359312,25752261,4
+4835209,25752261,4
+60382121,25752261,-1
+57036451,25752261,5
+triumph,25752261,5
+Magicians,25752261,3
+76169652,25752261,3
+45551165,25752261,5
+46184375,25752261,2
+48568857,25752261,4
+57910322,25752261,4
+127354177,25752261,4
+13600762,25752261,3
+nleydy,25752261,4
+76077861,25752261,3
+vppsb009,25752261,5
+rhh,25752261,4
+T914344365,25752261,4
+31281892,25752261,3
+34156068,25752261,3
+66310390,25752261,4
+88122881,25752261,4
+61040304,25752261,5
+vitasharry,25752261,4
+47707866,25752261,-1
+89409949,25752261,4
+49032670,25752261,5
+33547006,25752261,5
+mons13,25752261,3
+AKbianhua,25752261,5
+71133496,25752261,3
+cathrk,25752261,4
+henrywhy,25752261,3
+58854842,25752261,5
+Simplelove_,25752261,3
+motou0328,25752261,4
+59354182,25752261,5
+64157304,25752261,5
+48794742,25752261,4
+fortblk,25752261,3
+sosxisang,25752261,4
+26320475,25752261,5
+68825348,25752261,5
+ivyg,25752261,4
+67235309,25752261,4
+65137167,25752261,5
+miki_leung001,25752261,5
+zhaimozi,25752261,3
+laoziiii,25752261,4
+51064618,25752261,4
+41996198,25752261,4
+laiwei,25752261,4
+53242249,25752261,4
+55855348,25752261,3
+zuluatom,25752261,4
+mountainriver,25752261,4
+2342573,25752261,4
+68983294,25752261,4
+2332653,25752261,4
+2576970,25752261,5
+ryance,25752261,4
+nirvanayl,25752261,4
+46483875,25752261,4
+100039626,25752261,3
+82248938,25752261,1
+icatcat,25752261,4
+35546848,25752261,4
+wavelpc,25752261,4
+angelazang,25752261,5
+Notting,25752261,5
+33010059,25752261,4
+moipiggy,25752261,-1
+2314341,25752261,4
+48973534,25752261,4
+14434782,25752261,4
+oobibigo,25752261,4
+57667535,25752261,4
+p2165,25752261,3
+konglinghuanyin,25752261,4
+74418627,25752261,3
+PatrickMYK,25752261,4
+72430905,25752261,5
+monkeycupl,25752261,5
+onlyYH,25752261,4
+lolypop,25752261,4
+Smileysnow,25752261,4
+fish1984,25752261,4
+122394659,25752261,3
+63822026,25752261,4
+126178361,25752261,5
+47853230,25752261,3
+129652201,25752261,5
+41785476,25752261,4
+52742786,25752261,5
+Carriemine,25752261,5
+53171772,25752261,3
+memorystream,25752261,5
+45482570,25752261,3
+wildestor,25752261,4
+hayney,25752261,5
+3106185,25752261,4
+90548401,25752261,3
+tjz230,25752261,2
+1531239,25752261,4
+59856519,25752261,3
+52963641,25752261,4
+106347535,25752261,3
+103550111,25752261,3
+homecat1983,25752261,4
+caosen,25752261,2
+126039569,25752261,2
+45491031,25752261,2
+94333219,25752261,2
+lsx8270,25752261,3
+48770075,25752261,4
+waershi,25752261,5
+47529878,25752261,4
+zhaoqingyue,25752261,3
+1159822,25752261,4
+liasuz,25752261,5
+60882378,25752261,5
+Luna42,25752261,5
+51836771,25752261,5
+57770614,25752261,4
+Sheeplady,25752261,3
+blacklisted,25752261,5
+64345409,25752261,4
+18049794,25752261,4
+81900373,25752261,4
+iamnunu,25752261,4
+coj,25752261,3
+1460180,25752261,3
+82904793,25752261,4
+aphemia,25752261,4
+49322454,25752261,3
+aquar25,25752261,4
+yunfanle,25752261,4
+hichai,25752261,3
+bryanfoo,25752261,3
+48917306,25752261,4
+76689420,25752261,2
+123951946,25752261,4
+74017888,25752261,4
+annerabbit1127,25752261,4
+51061137,25752261,4
+GTY,25752261,4
+43791681,25752261,4
+122757661,25752261,3
+129673687,25752261,4
+4369982,25752261,4
+59129484,25752261,5
+loveangelalove,25752261,5
+55465032,25752261,4
+zhangjianpeng,25752261,2
+50931510,25752261,1
+58107870,25752261,3
+44756085,25752261,5
+travel_yuong,25752261,-1
+bihu,25752261,4
+11255442,25752261,4
+43308232,25752261,4
+K-Child,25752261,4
+43255902,25752261,5
+maomouren,25752261,3
+64203397,25752261,3
+64192238,25752261,5
+59290832,25752261,3
+38361995,25752261,4
+vipdayu,25752261,4
+muyu125,25752261,3
+Broderick,25752261,4
+75418722,25752261,3
+6050984,25752261,3
+83749532,25752261,5
+Aisora,25752261,5
+84698699,25752261,4
+btpighit,25752261,3
+fansherlocked,25752261,4
+50060410,25752261,4
+l-sky,25752261,5
+jidewei,25752261,3
+54126303,25752261,5
+75696994,25752261,4
+loooli,25752261,3
+56308219,25752261,5
+49040828,25752261,4
+68219798,25752261,4
+49636511,25752261,4
+3759700,25752261,4
+75298987,25752261,4
+silent_island,25752261,3
+anjiji,25752261,3
+wanwanxiaojie,25752261,5
+47622714,25752261,4
+65086870,25752261,3
+33978151,25752261,4
+50518823,25752261,5
+55914846,25752261,4
+1001637,25752261,5
+bora2547,25752261,3
+2456765,25752261,4
+evim,25752261,3
+42646716,25752261,4
+58569679,25752261,4
+81930957,25752261,3
+44230369,25752261,4
+45549454,25752261,3
+chingy888,25752261,5
+sunny810,25752261,5
+54907991,25752261,4
+4100649,25752261,4
+49956516,25752261,4
+60389754,25752261,4
+119340847,25752261,4
+58913635,25752261,3
+87506885,25752261,5
+67539758,25752261,5
+a343200140,25752261,5
+xiongbear01,25752261,5
+dudumozart,25752261,3
+Norma,25752261,3
+shuangeryu,25752261,3
+131500618,25752261,5
+62276848,25752261,5
+51299697,25752261,4
+87587366,25752261,4
+3451324,25752261,2
+35931052,25752261,4
+gdhdun,25752261,4
+lastunicorn,25752261,5
+a529105502,25752261,3
+67981371,25752261,4
+46984985,25752261,4
+51653649,25752261,5
+75874484,25752261,5
+2062524,25752261,4
+cauli65,25752261,3
+Kidew,25752261,3
+49340336,25752261,2
+kissofdead,25752261,3
+16959294,25752261,2
+61573582,25752261,4
+48607071,25752261,4
+67388709,25752261,5
+93476152,25752261,5
+theLastQuijote,25752261,3
+molibrenda,25752261,5
+2349154,25752261,4
+cindydragon,25752261,4
+49775406,25752261,5
+ke-ke,25752261,5
+44232292,25752261,4
+2106137,25752261,5
+lylehxh,25752261,5
+53795476,25752261,4
+78925849,25752261,4
+2869321,25752261,5
+ohmygod813,25752261,4
+52712309,25752261,1
+53441725,25752261,5
+53441725,25752261,5
+44973722,25752261,5
+57912090,25752261,4
+44595410,25752261,4
+4388033,25752261,4
+58840542,25752261,4
+jessie1456,25752261,5
+apriliah,25752261,4
+ilovehouyi,25752261,3
+carriewxy,25752261,5
+116049427,25752261,4
+kkkid,25752261,5
+126637791,25752261,4
+stacieee,25752261,4
+72789208,25752261,4
+wantyourmore,25752261,3
+57307141,25752261,4
+68503636,25752261,4
+45340915,25752261,3
+41610301,25752261,3
+49910264,25752261,3
+davidtian,25752261,4
+chasel,25752261,4
+57501453,25752261,3
+45129270,25752261,2
+huti,25752261,5
+63531003,25752261,5
+albee0613,25752261,5
+SweetCoffee,25752261,3
+nighteye1123,25752261,4
+37670870,25752261,5
+79680480,25752261,4
+jj-lee,25752261,3
+67216908,25752261,3
+62456918,25752261,5
+14622412,25752261,4
+51453848,25752261,4
+28074817,25752261,4
+nana17,25752261,3
+51786128,25752261,4
+cijfer,25752261,5
+3874094,25752261,5
+1863179,25752261,4
+tttwgangan,25752261,5
+longestname,25752261,2
+34936131,25752261,4
+56071242,25752261,3
+62597862,25752261,3
+heartandsoul,25752261,4
+65924418,25752261,3
+pershingsay,25752261,4
+nancyyan,25752261,4
+fix,25752261,3
+johnmcclane,25752261,4
+63548568,25752261,3
+liveline,25752261,-1
+58061567,25752261,5
+4774837,25752261,4
+68934324,25752261,5
+4545627,25752261,5
+61037567,25752261,5
+afterhanabinigh,25752261,5
+68999326,25752261,4
+remu,25752261,4
+49499844,25752261,5
+46742218,25752261,5
+toufu88,25752261,4
+82222392,25752261,5
+4380586,25752261,4
+70918450,25752261,4
+47424558,25752261,4
+48190133,25752261,4
+4603294,25752261,3
+4581200,25752261,4
+63462794,25752261,5
+35650374,25752261,4
+ivy726,25752261,5
+60783143,25752261,4
+46911994,25752261,3
+14988021,25752261,4
+41564076,25752261,3
+55423271,25752261,4
+62417186,25752261,2
+2825155,25752261,5
+2540887,25752261,5
+flatpeach,25752261,4
+Alejandro0929,25752261,3
+51283004,25752261,2
+73161188,25752261,4
+37168028,25752261,4
+52259960,25752261,3
+2000074,25752261,3
+46082749,25752261,4
+57923940,25752261,3
+39306601,25752261,5
+73125867,25752261,4
+58727486,25752261,4
+boomXXboomXX,25752261,3
+83853096,25752261,4
+82997686,25752261,3
+82997686,25752261,3
+76933799,25752261,3
+lunann,25752261,3
+49983823,25752261,3
+1188181,25752261,5
+liangzhuzaoshu,25752261,-1
+75481120,25752261,5
+75869572,25752261,5
+4324223,25752261,5
+62854869,25752261,3
+47209079,25752261,5
+76566444,25752261,3
+45080512,25752261,3
+45399130,25752261,4
+york_wu,25752261,3
+61054934,25752261,5
+3634203,25752261,4
+42216945,25752261,4
+huyouyou,25752261,4
+seasonart,25752261,3
+30426517,25752261,4
+68696664,25752261,3
+119288749,25752261,5
+IMINCR,25752261,5
+lilcur,25752261,-1
+4703233,25752261,4
+41127672,25752261,4
+1829309,25752261,4
+june12day,25752261,4
+104512986,25752261,3
+1621094,25752261,5
+57290714,25752261,4
+120853771,25752261,4
+satellitecity,25752261,5
+Vanessa...,25752261,3
+Cryostatgirl,25752261,5
+3006805,25752261,4
+foreverlee,25752261,5
+X-Vin,25752261,4
+48128948,25752261,-1
+33973764,25752261,5
+26605757,25752261,4
+xiangL,25752261,4
+87528505,25752261,4
+unarcenciel,25752261,3
+62661789,25752261,4
+jewelschen,25752261,5
+75991960,25752261,2
+baicaitai,25752261,5
+evich,25752261,2
+72207422,25752261,4
+wonderfultimes,25752261,4
+70794815,25752261,3
+cody555,25752261,4
+18664682,25752261,3
+leeXD22,25752261,5
+59524378,25752261,3
+56994216,25752261,4
+56572972,25752261,4
+48278440,25752261,4
+liphy,25752261,4
+74106981,25752261,4
+dotchild,25752261,3
+131210503,25752261,5
+samsaran,25752261,5
+48204509,25752261,4
+alayai,25752261,4
+1617432,25752261,3
+anneshi1105,25752261,4
+69394485,25752261,4
+iampearl,25752261,4
+58637551,25752261,3
+31548307,25752261,3
+phunny,25752261,3
+3627412,25752261,4
+miss-sun,25752261,5
+goldendali,25752261,4
+sleepinapril,25752261,3
+skyontherun,25752261,5
+kingiknow,25752261,3
+53869399,25752261,5
+67238808,25752261,3
+116508078,25752261,5
+K_wang,25752261,3
+69056740,25752261,3
+60027945,25752261,4
+47783369,25752261,5
+49730580,25752261,-1
+dailypop,25752261,4
+doll88,25752261,4
+sofreaking,25752261,5
+115232324,25752261,5
+DNA.eNd,25752261,4
+25546658,25752261,5
+57656965,25752261,4
+42836131,25752261,5
+70574144,25752261,5
+vivian443600819,25752261,4
+50410615,25752261,5
+64716871,25752261,3
+simonly,25752261,5
+3471791,25752261,3
+60145877,25752261,4
+colacat_sandy,25752261,4
+68031012,25752261,3
+lewish,25752261,4
+colorjiang,25752261,5
+1482191,25752261,4
+3209949,25752261,4
+68678476,25752261,3
+75519812,25752261,4
+41132362,25752261,5
+61435009,25752261,5
+mm48,25752261,5
+xiao33319,25752261,3
+58992948,25752261,4
+49384394,25752261,2
+vanvan07,25752261,3
+58042507,25752261,5
+69216233,25752261,5
+40995007,25752261,3
+absinthejt,25752261,4
+18988151,25752261,5
+42039153,25752261,4
+85124779,25752261,4
+47309128,25752261,3
+nanguaxiansheng,25752261,4
+2570820,25752261,5
+aynrand1943,25752261,5
+4236071,25752261,3
+1115389,25752261,5
+52374368,25752261,4
+lyych,25752261,3
+46721798,25752261,3
+67249578,25752261,4
+55711683,25752261,5
+47580309,25752261,3
+3484320,25752261,4
+72580043,25752261,1
+85635101,25752261,5
+85635101,25752261,5
+sb54ha,25752261,5
+2685340,25752261,5
+34186094,25752261,3
+lygirl989193,25752261,4
+sara36,25752261,3
+pottqqq,25752261,3
+102050741,25752261,4
+79420441,25752261,3
+49651317,25752261,3
+kingdoucloud,25752261,3
+46828936,25752261,3
+57714650,25752261,4
+1567784,25752261,4
+52284149,25752261,3
+Qixiaopang,25752261,3
+WTYMJ,25752261,4
+44311860,25752261,4
+jinjidexiong,25752261,3
+spade3,25752261,4
+hdjjys,25752261,2
+ChenMelon,25752261,5
+akilee614,25752261,3
+54107632,25752261,-1
+milizi,25752261,5
+NapCote,25752261,4
+1771263,25752261,3
+34956783,25752261,4
+Ste_corleone,25752261,3
+53458096,25752261,5
+laxiaomian,25752261,4
+53845482,25752261,5
+91474719,25752261,4
+wangdoudou20,25752261,4
+60093239,25752261,5
+67352190,25752261,4
+57874939,25752261,3
+istrangers,25752261,4
+sarabilau2,25752261,3
+LAURANOWHERE,25752261,3
+74525845,25752261,4
+liuzechuen,25752261,3
+dd54,25752261,4
+56431276,25752261,4
+essemoon,25752261,4
+102978456,25752261,3
+loli_do,25752261,-1
+26438724,25752261,4
+wpy114,25752261,3
+4641764,25752261,5
+Summer-isKing,25752261,4
+liyuantown,25752261,3
+34724471,25752261,3
+67310334,25752261,3
+62658973,25752261,5
+4118381,25752261,3
+1659068,25752261,-1
+67313637,25752261,3
+59082437,25752261,4
+ArtXu,25752261,5
+lizzywoo,25752261,4
+1886453,25752261,4
+teztuko,25752261,5
+42907481,25752261,4
+60269516,25752261,5
+4525795,25752261,4
+37580592,25752261,3
+43085940,25752261,5
+kitoh,25752261,4
+56826936,25752261,4
+baiyugg,25752261,4
+3027228,25752261,5
+54056952,25752261,3
+95824497,25752261,4
+82915767,25752261,3
+121917998,25752261,5
+kkbpopsy,25752261,3
+cicihappy,25752261,4
+51183805,25752261,3
+13871057,25752261,3
+61943727,25752261,5
+xiarenge,25752261,5
+Heiyoo,25752261,4
+53362350,25752261,3
+chenxiaodan,25752261,5
+75531469,25752261,3
+74599733,25752261,5
+48065972,25752261,3
+yezhan,25752261,5
+58880510,25752261,4
+ITASTE,25752261,4
+Impitta,25752261,5
+Uroboros,25752261,3
+97305087,25752261,4
+63523258,25752261,5
+61236643,25752261,4
+Fedsay,25752261,4
+83773769,25752261,4
+39815718,25752261,4
+49212885,25752261,4
+124393594,25752261,3
+93104938,25752261,4
+urasucker,25752261,5
+45858265,25752261,4
+49807065,25752261,4
+93208688,25752261,4
+boonie,25752261,4
+63784569,25752261,5
+71831541,25752261,4
+91498001,25752261,4
+GreenFire,25752261,3
+hotfall,25752261,5
+maroon1218,25752261,3
+93155227,25752261,4
+58433027,25752261,5
+2355408,25752261,4
+6681296,25752261,4
+119362745,25752261,4
+sagtree,25752261,4
+orangerye,25752261,4
+orangerye,25752261,4
+colorwind,25752261,4
+31788712,25752261,3
+2772666,25752261,3
+130930909,25752261,3
+55405486,25752261,4
+89928823,25752261,4
+59745258,25752261,4
+50563925,25752261,3
+youandmekizuna,25752261,5
+61273534,25752261,5
+journey..,25752261,5
+50851987,25752261,3
+31422090,25752261,3
+60177097,25752261,1
+xhide,25752261,4
+58598004,25752261,3
+63706315,25752261,3
+joanne_do,25752261,3
+42787791,25752261,4
+Odera,25752261,4
+miaoxiaoqiu,25752261,5
+66053525,25752261,2
+79865158,25752261,4
+90056142,25752261,4
+15912473,25752261,3
+apple_jody,25752261,4
+Royeka.Es,25752261,5
+lovelinRan,25752261,4
+madelinezl,25752261,5
+maeho,25752261,5
+czuni,25752261,5
+47589332,25752261,4
+Sylar10,25752261,3
+mian11,25752261,4
+82266049,25752261,4
+3519575,25752261,3
+130064704,25752261,2
+3436094,25752261,4
+68657829,25752261,3
+freekami,25752261,4
+aben,25752261,3
+62129234,25752261,4
+1802019,25752261,5
+53656219,25752261,4
+50144933,25752261,4
+3269129,25752261,3
+ibty,25752261,5
+bigmiao,25752261,4
+xianschool,25752261,5
+120899626,25752261,5
+bingkuaizhuiluo,25752261,5
+63828870,25752261,4
+modan89,25752261,3
+haman,25752261,3
+65123381,25752261,4
+qiandouduo,25752261,5
+monkeydoll,25752261,5
+83217907,25752261,4
+4605744,25752261,5
+60593481,25752261,4
+tezuka15,25752261,4
+zl99,25752261,3
+58735862,25752261,4
+53033860,25752261,5
+75888884,25752261,3
+123142542,25752261,5
+49408765,25752261,-1
+superrao,25752261,5
+80854961,25752261,4
+13822817,25752261,3
+4239908,25752261,2
+andysu,25752261,5
+50682062,25752261,4
+62929277,25752261,5
+50720620,25752261,5
+17979531,25752261,4
+stevense,25752261,4
+1012162,25752261,3
+gladychen,25752261,5
+93772248,25752261,4
+slavica,25752261,-1
+56739185,25752261,4
+raitydove,25752261,3
+choushabi,25752261,4
+tranz,25752261,4
+lion,25752261,4
+3173862,25752261,4
+myjocelyn,25752261,5
+weilijie,25752261,4
+69030272,25752261,5
+puccaandhippo,25752261,4
+88931926,25752261,3
+liutengzhi,25752261,4
+44387904,25752261,4
+45107128,25752261,4
+102749538,25752261,4
+2213401,25752261,5
+13262749,25752261,3
+79330359,25752261,4
+2890229,25752261,5
+bulbosa,25752261,5
+4587143,25752261,4
+3110715,25752261,4
+82145368,25752261,2
+62314941,25752261,4
+govgouviiiiiiii,25752261,4
+milkbook,25752261,4
+avivatang,25752261,4
+2517259,25752261,4
+exploremore,25752261,4
+64317656,25752261,5
+67294195,25752261,3
+4521508,25752261,4
+4366193,25752261,4
+48995689,25752261,5
+75756405,25752261,3
+60863980,25752261,4
+85054280,25752261,4
+73421795,25752261,3
+85337817,25752261,5
+73696070,25752261,5
+71864970,25752261,3
+77316354,25752261,4
+112466936,25752261,3
+itsmeymq,25752261,3
+57980305,25752261,4
+70074306,25752261,5
+45283744,25752261,4
+momo0724,25752261,3
+64189382,25752261,3
+pbchen,25752261,4
+35575281,25752261,2
+casper009,25752261,4
+scbox,25752261,4
+akkkkkkkkkki,25752261,4
+56018610,25752261,2
+Kristenhay,25752261,4
+53847386,25752261,4
+63307905,25752261,4
+63307905,25752261,4
+37720932,25752261,4
+47676983,25752261,3
+59446610,25752261,3
+luezhuan,25752261,3
+3663654,25752261,4
+61132884,25752261,3
+69036663,25752261,2
+47381091,25752261,4
+loveyourass,25752261,3
+scarlett128,25752261,5
+82367892,25752261,4
+Tiny_Jelly,25752261,4
+44622528,25752261,3
+130365524,25752261,4
+4154813,25752261,4
+56925135,25752261,5
+ADmoviemtime,25752261,5
+hlicemilk,25752261,4
+65590938,25752261,5
+65590938,25752261,5
+sunlessabyss,25752261,4
+zuoyou_16,25752261,5
+60662074,25752261,-1
+zv_____,25752261,4
+xiaowangzi1984,25752261,-1
+70154626,25752261,4
+shsf-sharon,25752261,4
+43554712,25752261,3
+shuanger54,25752261,5
+1271019,25752261,-1
+2340389,25752261,3
+yihaifei,25752261,4
+81235855,25752261,1
+44878815,25752261,4
+73449717,25752261,3
+53418104,25752261,4
+yypudding,25752261,4
+43590001,25752261,4
+55989261,25752261,5
+Phyllis5,25752261,3
+47050600,25752261,3
+91851250,25752261,4
+60941930,25752261,5
+chenxiaoguai,25752261,4
+Janone,25752261,4
+102871082,25752261,4
+steph6luna,25752261,2
+62614786,25752261,4
+wuzouhuanghun,25752261,3
+65784611,25752261,4
+54950938,25752261,3
+NatsuTrevor,25752261,2
+qiao-un,25752261,5
+4593197,25752261,3
+121679794,25752261,5
+4026025,25752261,4
+102647493,25752261,4
+3514906,25752261,4
+82928232,25752261,5
+Byebye-lilian,25752261,4
+58480988,25752261,4
+48248068,25752261,5
+guiguixiaobei,25752261,5
+zoemanon,25752261,4
+48613697,25752261,5
+36003110,25752261,5
+CherryChyi,25752261,5
+rienge,25752261,5
+slipper003,25752261,3
+119081444,25752261,3
+56660352,25752261,4
+Smilene_22,25752261,4
+41634233,25752261,3
+lvwenzhi,25752261,3
+18360610,25752261,4
+70193468,25752261,-1
+52886592,25752261,5
+MSYANLUOBU,25752261,2
+43612401,25752261,4
+ritoki,25752261,4
+47099555,25752261,4
+4453892,25752261,-1
+48050176,25752261,2
+27254965,25752261,4
+4032411,25752261,3
+79453323,25752261,4
+raphaelife,25752261,5
+39061280,25752261,-1
+jcarter,25752261,3
+stefanieray,25752261,4
+52190037,25752261,4
+3410857,25752261,5
+39987739,25752261,4
+60981917,25752261,3
+42232123,25752261,-1
+85866685,25752261,5
+107794504,25752261,2
+43914505,25752261,4
+markmong,25752261,5
+zbar1234,25752261,5
+104365503,25752261,4
+16910877,25752261,5
+48269477,25752261,5
+gaoqr,25752261,3
+56392220,25752261,4
+44794793,25752261,5
+63614653,25752261,5
+59311720,25752261,4
+46030667,25752261,5
+sooooosweet,25752261,4
+xiaosanye,25752261,4
+26697552,25752261,4
+65379776,25752261,5
+63011235,25752261,3
+73074752,25752261,4
+3237425,25752261,5
+wyfar,25752261,3
+zynhello,25752261,5
+shoiihoibjk,25752261,4
+RoronoaLuffy,25752261,4
+49308797,25752261,4
+52792047,25752261,5
+119569714,25752261,4
+little_MOMO,25752261,4
+4341792,25752261,4
+72867351,25752261,4
+61345635,25752261,3
+30166860,25752261,3
+woohaa,25752261,3
+50180272,25752261,5
+charlotjan,25752261,4
+44463308,25752261,4
+14745605,25752261,5
+49568187,25752261,4
+lhomeA7,25752261,3
+77084511,25752261,4
+1545634,25752261,3
+57517262,25752261,3
+70487817,25752261,3
+52214552,25752261,4
+miserablefaith,25752261,4
+75661398,25752261,3
+56896542,25752261,3
+jessie811,25752261,-1
+77017255,25752261,3
+67727072,25752261,4
+92423237,25752261,4
+Dorasimon,25752261,-1
+joyveela,25752261,4
+foreverleo,25752261,5
+TitanNing,25752261,4
+the7th_bloom,25752261,4
+crab802,25752261,4
+wenyuan_li,25752261,3
+84117668,25752261,4
+shamoyandeyu,25752261,5
+2441545,25752261,-1
+44100097,25752261,5
+47331203,25752261,4
+ttyingyuan,25752261,3
+Bigdad,25752261,4
+mengaxin,25752261,2
+3643871,25752261,4
+4228484,25752261,4
+58442075,25752261,4
+46688085,25752261,-1
+37390884,25752261,5
+119883443,25752261,4
+62799720,25752261,5
+61011795,25752261,4
+64182296,25752261,5
+3092747,25752261,5
+78907182,25752261,5
+61807648,25752261,4
+60411524,25752261,3
+63371877,25752261,4
+52278256,25752261,5
+notscreaming,25752261,5
+80689279,25752261,3
+48438391,25752261,5
+81616503,25752261,4
+51943027,25752261,3
+39278293,25752261,4
+34727533,25752261,3
+Aaronyy,25752261,3
+63819525,25752261,4
+51602185,25752261,4
+madwithu,25752261,4
+un-do,25752261,5
+53559432,25752261,3
+islandmeng,25752261,-1
+49784959,25752261,4
+m19900714,25752261,4
+pupuxiang,25752261,5
+kitsch2013,25752261,4
+65677283,25752261,4
+68201628,25752261,4
+59904891,25752261,4
+IrisandNancy,25752261,4
+yway1101,25752261,5
+35407270,25752261,2
+wmymt,25752261,4
+67605510,25752261,4
+BlueMoonshine,25752261,2
+46654545,25752261,4
+64113646,25752261,5
+45646209,25752261,4
+65981408,25752261,4
+luhang363,25752261,4
+44976171,25752261,4
+earthquakes,25752261,4
+GUAN,25752261,3
+1364576,25752261,2
+62122112,25752261,4
+allblue,25752261,4
+moredarkwhite,25752261,3
+sheyinghui,25752261,4
+103247038,25752261,3
+solavre,25752261,-1
+58728864,25752261,5
+wangxiangjiqi,25752261,3
+120943212,25752261,4
+qiluoluo,25752261,3
+Utopia.YY,25752261,4
+108728463,25752261,5
+1265544,25752261,5
+65851349,25752261,4
+61955471,25752261,4
+2112561,25752261,3
+miraclekylin,25752261,4
+yelei-una,25752261,4
+75595490,25752261,3
+52371666,25752261,4
+92174979,25752261,5
+Ston3s,25752261,4
+83479704,25752261,5
+48253364,25752261,4
+26461987,25752261,3
+Solv,25752261,5
+59592907,25752261,-1
+70924936,25752261,3
+guppyfish,25752261,5
+botuoxi,25752261,3
+58305570,25752261,4
+mushroombaby_g,25752261,4
+50453656,25752261,4
+sadiee,25752261,4
+58753726,25752261,5
+59378291,25752261,4
+2102530,25752261,5
+92245110,25752261,5
+uncledark,25752261,5
+neverknewme,25752261,4
+53911150,25752261,5
+63336838,25752261,4
+getefuxing,25752261,4
+echozhan,25752261,5
+63639535,25752261,4
+121429600,25752261,4
+127905303,25752261,3
+47589972,25752261,3
+fm4714,25752261,4
+32791958,25752261,4
+Allentlf,25752261,3
+aaa---ti,25752261,4
+87621689,25752261,5
+omg-_-,25752261,5
+79812878,25752261,5
+amsingapore,25752261,4
+121354261,25752261,3
+81833605,25752261,-1
+78310941,25752261,5
+forjinger,25752261,4
+amay1023,25752261,4
+42368147,25752261,2
+48849197,25752261,5
+67353177,25752261,4
+91201009,25752261,4
+tzhuang,25752261,4
+35904729,25752261,4
+emston,25752261,5
+jurijiangmm,25752261,4
+4345264,25752261,4
+47849453,25752261,5
+xyxyxyxyxy1995,25752261,5
+EddieCurre,25752261,4
+53811699,25752261,3
+zhangyanwen,25752261,4
+4281036,25752261,5
+52236123,25752261,4
+48975477,25752261,3
+130335538,25752261,5
+16928498,25752261,3
+fannyl,25752261,4
+125148047,25752261,4
+72438301,25752261,3
+asuka216,25752261,4
+ferkmavie,25752261,4
+celia550,25752261,5
+56732738,25752261,3
+59504522,25752261,4
+Faithy26,25752261,4
+121148510,25752261,3
+3321575,25752261,3
+lazzaro,25752261,3
+116138651,25752261,4
+wizbp,25752261,3
+48558495,25752261,5
+70853850,25752261,3
+91816564,25752261,3
+52925540,25752261,5
+81365960,25752261,5
+3831169,25752261,4
+zhujiao,25752261,3
+34790819,25752261,3
+49297870,25752261,3
+se2o3,25752261,3
+74671754,25752261,4
+4841197,25752261,4
+51549155,25752261,3
+48540834,25752261,5
+62538300,25752261,3
+orsule,25752261,3
+62378722,25752261,4
+Ronnie816,25752261,4
+53717841,25752261,3
+waltz1991,25752261,4
+30058751,25752261,2
+37975199,25752261,3
+menchy,25752261,3
+31269616,25752261,4
+sissi871110,25752261,5
+slowdeepdive,25752261,4
+122414138,25752261,2
+60413211,25752261,3
+62667852,25752261,4
+43694846,25752261,5
+107311495,25752261,5
+57606505,25752261,5
+36185142,25752261,4
+SafeHaven,25752261,4
+55474748,25752261,4
+48028421,25752261,4
+4209485,25752261,5
+52384106,25752261,3
+4278167,25752261,4
+xiaohundaban,25752261,3
+47305840,25752261,3
+lingrui1995,25752261,3
+56396911,25752261,3
+3492824,25752261,4
+41768682,25752261,4
+52129503,25752261,3
+namatterwhat,25752261,5
+MLMLMLMLML,25752261,3
+woshiex,25752261,3
+40605101,25752261,-1
+58472013,25752261,4
+1446460,25752261,4
+59280889,25752261,5
+92569558,25752261,3
+70160255,25752261,4
+2734376,25752261,3
+amwtt,25752261,5
+4028097,25752261,4
+dtmql,25752261,3
+3344118,25752261,5
+yujianxiaoben,25752261,5
+3783213,25752261,3
+faiel,25752261,3
+joyceatobe,25752261,4
+53706113,25752261,5
+mouhua,25752261,5
+3178442,25752261,2
+YEEtalks,25752261,3
+75260597,25752261,4
+78380925,25752261,4
+50068065,25752261,3
+49258293,25752261,3
+adamneverland,25752261,3
+junebug51fan,25752261,-1
+memphisss,25752261,2
+62284723,25752261,5
+honeykey,25752261,3
+naigely,25752261,3
+50632642,25752261,4
+121674354,25752261,4
+56416143,25752261,4
+moonstyle000,25752261,4
+62192650,25752261,5
+maggieleaf,25752261,4
+51412054,25752261,4
+seanxftkesha,25752261,4
+Tylermrx,25752261,-1
+qianxiaolang,25752261,4
+softpur,25752261,4
+nofer,25752261,4
+Stilll,25752261,5
+SwimGood,25752261,5
+sail308,25752261,-1
+47576659,25752261,4
+pzk320,25752261,4
+32835447,25752261,4
+silenceB,25752261,3
+128739482,25752261,4
+70173493,25752261,4
+69993436,25752261,5
+woaigogoyahoo,25752261,4
+kennycpy,25752261,5
+1839121,25752261,4
+petitejoie21,25752261,4
+boboyue,25752261,4
+vliangfrank,25752261,5
+43039008,25752261,5
+50410160,25752261,4
+lin-salome,25752261,5
+128645774,25752261,4
+seriousz,25752261,3
+gooo111,25752261,3
+ivril,25752261,4
+51534915,25752261,3
+haheniwota,25752261,5
+untouchable,25752261,4
+84171597,25752261,3
+anarchy4,25752261,3
+53485894,25752261,4
+93664984,25752261,4
+fiona_DQ,25752261,4
+57609060,25752261,-1
+77218169,25752261,3
+loreleishanny,25752261,4
+czdjl,25752261,4
+57274544,25752261,5
+50703649,25752261,3
+47881141,25752261,4
+88072113,25752261,4
+yanala,25752261,4
+51679757,25752261,5
+7997785,25752261,3
+75060350,25752261,4
+suck-man,25752261,3
+1668414,25752261,3
+Georgewen,25752261,4
+10560080,25752261,3
+120327562,25752261,3
+appreciation,25752261,4
+stanza,25752261,4
+57587090,25752261,3
+framtid,25752261,4
+67700979,25752261,3
+gongxi11,25752261,4
+Lennnnnox,25752261,5
+lex1940,25752261,4
+88171828,25752261,2
+49266863,25752261,5
+83888533,25752261,4
+gui2160,25752261,4
+2806653,25752261,4
+yiqiu8932,25752261,4
+50393259,25752261,2
+3489125,25752261,3
+njtintin,25752261,4
+veradreamer2011,25752261,4
+53056312,25752261,5
+43942858,25752261,4
+tilovefa,25752261,5
+yianran,25752261,5
+mithlond,25752261,4
+2607959,25752261,4
+51224776,25752261,4
+2923778,25752261,4
+131380413,25752261,1
+70308764,25752261,5
+54896702,25752261,5
+64277319,25752261,3
+1315020,25752261,5
+chuleiwu,25752261,4
+131108295,25752261,4
+ask4more,25752261,4
+aprilfoollee,25752261,4
+heraunty,25752261,4
+zhangbook,25752261,5
+johnqz874,25752261,5
+4503914,25752261,4
+78857918,25752261,3
+charrme,25752261,4
+75842929,25752261,4
+92427949,25752261,5
+53723225,25752261,4
+DPYiSuo,25752261,3
+YVANFUS,25752261,4
+2523763,25752261,-1
+migege,25752261,5
+sep23,25752261,4
+neverevenever,25752261,5
+supremeJ,25752261,4
+71887351,25752261,3
+54507832,25752261,4
+49216647,25752261,4
+casillas1213l,25752261,5
+78447440,25752261,4
+75953505,25752261,4
+echo_me_,25752261,3
+65191758,25752261,5
+4161317,25752261,4
+95817419,25752261,3
+1109141,25752261,4
+124764727,25752261,4
+48490607,25752261,5
+53065744,25752261,4
+62825162,25752261,4
+yangcht,25752261,3
+116551398,25752261,5
+juixy,25752261,4
+61111185,25752261,4
+huoguo,25752261,-1
+youwanttobe,25752261,4
+haoxuesheng,25752261,4
+IrishRouge,25752261,4
+3066956,25752261,3
+49742235,25752261,4
+parislover,25752261,4
+muouplay,25752261,3
+whypretty,25752261,5
+tracycw618,25752261,3
+66492007,25752261,4
+130646245,25752261,5
+68156660,25752261,5
+shinjong,25752261,3
+45598227,25752261,3
+82999508,25752261,4
+75894162,25752261,4
+51210782,25752261,4
+joyinzone,25752261,4
+1848823,25752261,4
+127464842,25752261,3
+43601720,25752261,4
+liebelann,25752261,3
+lexin10129,25752261,5
+125427272,25752261,3
+54981077,25752261,5
+57455479,25752261,5
+51469631,25752261,3
+heyavril,25752261,3
+gigalo,25752261,4
+BreadYoung,25752261,4
+114618835,25752261,4
+laura13,25752261,4
+1637301,25752261,3
+57476701,25752261,4
+onlyeleven,25752261,5
+92655993,25752261,5
+puccaa,25752261,3
+115305871,25752261,5
+52679281,25752261,3
+44556619,25752261,4
+skyllla,25752261,4
+1762955,25752261,4
+68888856,25752261,4
+liuweilian,25752261,5
+sixer1005,25752261,4
+61211793,25752261,3
+66991726,25752261,4
+heyan0225,25752261,4
+81626835,25752261,-1
+lycans,25752261,5
+64069869,25752261,4
+lijun_,25752261,4
+RanQixi,25752261,3
+34744036,25752261,4
+bunnyuki,25752261,5
+49563367,25752261,5
+May_T,25752261,3
+61457577,25752261,4
+ash1a1ym,25752261,3
+81250941,25752261,5
+freeup157,25752261,4
+2054495,25752261,4
+Castellan199,25752261,4
+marvin42,25752261,3
+45953948,25752261,4
+51113045,25752261,4
+setsail_z,25752261,4
+yszy1992,25752261,4
+boredblooming,25752261,3
+48329538,25752261,5
+52898119,25752261,3
+52286623,25752261,3
+74948257,25752261,4
+35322417,25752261,3
+von71224,25752261,5
+56524460,25752261,4
+35545320,25752261,4
+68149806,25752261,4
+lena0517,25752261,5
+65321007,25752261,3
+onlyck,25752261,3
+59955092,25752261,5
+2803619,25752261,5
+3308607,25752261,4
+Britpop,25752261,5
+48100400,25752261,2
+nangongmocheng,25752261,5
+59425944,25752261,3
+leeyo,25752261,4
+gjmsjb,25752261,4
+59684689,25752261,4
+Jane940516,25752261,4
+zeph1462,25752261,-1
+bestfriendwm,25752261,5
+yumiao2,25752261,4
+34367914,25752261,3
+48559229,25752261,4
+51559890,25752261,4
+yningc,25752261,4
+wunching,25752261,4
+97977376,25752261,3
+danielyan1991,25752261,5
+sangdafa,25752261,4
+mwr23929,25752261,3
+youyeqiuxin,25752261,3
+53975225,25752261,5
+Sk.Young,25752261,3
+80826623,25752261,3
+flxl,25752261,3
+25553362,25752261,4
+56684398,25752261,2
+Link0406,25752261,4
+89852120,25752261,2
+1793879,25752261,4
+goodnightmoon,25752261,5
+41829211,25752261,4
+45379301,25752261,3
+antoniagreen,25752261,3
+teeeeen,25752261,5
+43474774,25752261,4
+lxu,25752261,4
+lfcwhy,25752261,3
+68742880,25752261,5
+48545794,25752261,4
+53854833,25752261,3
+60743609,25752261,5
+1327234,25752261,4
+4098953,25752261,4
+74103020,25752261,3
+hasuki523,25752261,3
+foleyfan,25752261,5
+49905274,25752261,5
+Lreckle,25752261,3
+dyq930211,25752261,3
+michaelfun,25752261,4
+1494780,25752261,4
+53754505,25752261,5
+3059050,25752261,5
+70455730,25752261,3
+52060705,25752261,3
+annchuu,25752261,4
+14941047,25752261,4
+46684749,25752261,5
+98074157,25752261,4
+bluetracy0113,25752261,4
+49419305,25752261,3
+goldjinzi,25752261,2
+yaochunpeng,25752261,4
+63636822,25752261,3
+68585121,25752261,3
+lidianxi1990,25752261,3
+68477521,25752261,3
+101397222,25752261,4
+fengyicici,25752261,5
+Feibie,25752261,3
+Jodiezhang,25752261,4
+yuhuanhuan,25752261,3
+56228022,25752261,4
+116213668,25752261,5
+1171612,25752261,4
+nicocosama,25752261,2
+j1angvei,25752261,5
+63250313,25752261,2
+le_petit_alice,25752261,3
+2856840,25752261,4
+flowermoon,25752261,3
+torresgomenggo,25752261,-1
+LU_Tan,25752261,5
+guanxin898,25752261,4
+jshippo,25752261,5
+61078508,25752261,5
+kyo85,25752261,4
+schweinyu,25752261,4
+47876726,25752261,5
+4169061,25752261,5
+72792251,25752261,3
+naiveyi,25752261,4
+YvonneGQ,25752261,3
+42932768,25752261,2
+Frank_Che,25752261,5
+jujubejuice,25752261,4
+2772927,25752261,4
+74520684,25752261,4
+74520684,25752261,4
+74564790,25752261,4
+jessie3115,25752261,5
+2430432,25752261,3
+72040827,25752261,4
+justinran,25752261,3
+45753459,25752261,4
+amanjj,25752261,-1
+hakuhaku,25752261,3
+Pengjianjun,25752261,4
+53339781,25752261,3
+70011209,25752261,5
+50401772,25752261,5
+zxpjs,25752261,3
+82029682,25752261,3
+54756499,25752261,-1
+space1028,25752261,4
+91604108,25752261,4
+60649791,25752261,5
+1489663,25752261,3
+76413878,25752261,3
+45390521,25752261,3
+78526597,25752261,5
+61557388,25752261,5
+zod798,25752261,4
+120332872,25752261,3
+68390243,25752261,4
+64276762,25752261,5
+hrj21,25752261,4
+87602683,25752261,4
+58337578,25752261,3
+62333494,25752261,5
+74899897,25752261,4
+29177172,25752261,3
+62148442,25752261,5
+killrec,25752261,3
+kollysgone,25752261,4
+tomerlaw,25752261,4
+35739270,25752261,5
+36927005,25752261,4
+greendayvae,25752261,5
+Grace_Xuliang,25752261,4
+shenmism,25752261,5
+76288591,25752261,4
+120985349,25752261,4
+angena123,25752261,4
+71547837,25752261,3
+lomers,25752261,4
+91952258,25752261,5
+kuangren79,25752261,3
+3199596,25752261,4
+88316927,25752261,2
+ruilixiurui,25752261,4
+97952005,25752261,4
+3410512,25752261,5
+62278686,25752261,3
+80265155,25752261,3
+suisui214,25752261,4
+51346390,25752261,4
+42469083,25752261,4
+lidickaka,25752261,3
+some_Ji,25752261,3
+Alicestormrage,25752261,-1
+97917605,25752261,3
+68392675,25752261,4
+BeanInk,25752261,4
+47593124,25752261,4
+1686304,25752261,3
+mirandy,25752261,-1
+119182643,25752261,4
+ivy1969,25752261,4
+lankfire,25752261,3
+luanma1977,25752261,5
+4326093,25752261,4
+53811936,25752261,5
+drunkpiano2011,25752261,2
+102788052,25752261,4
+jack_eminem,25752261,4
+120322125,25752261,4
+30146474,25752261,4
+soul922,25752261,3
+54595884,25752261,4
+63617713,25752261,4
+helianthus249,25752261,4
+130395100,25752261,2
+65087582,25752261,3
+50890869,25752261,4
+gardyourass,25752261,4
+pkughost,25752261,4
+penny_penny,25752261,3
+102722400,25752261,4
+xuyinaxxxxxxx,25752261,5
+74680638,25752261,3
+1385455,25752261,5
+3768934,25752261,4
+simonyao,25752261,4
+2295492,25752261,4
+luan2097,25752261,3
+lemonsaining,25752261,4
+122598157,25752261,4
+57311033,25752261,3
+75789624,25752261,4
+leiii,25752261,4
+stupidcat7652,25752261,3
+3352969,25752261,3
+45200872,25752261,4
+reiko_xiaoqi,25752261,-1
+haru0817,25752261,4
+2571976,25752261,4
+irisli777,25752261,4
+64407340,25752261,3
+love_in_a_puff,25752261,4
+3846941,25752261,4
+55373134,25752261,4
+dorky,25752261,3
+lixiaodai,25752261,4
+4077141,25752261,4
+heywendi,25752261,5
+61394930,25752261,5
+elijahh,25752261,4
+52576282,25752261,5
+58061945,25752261,5
+88149801,25752261,4
+quriola,25752261,4
+maorabbit,25752261,4
+82238487,25752261,4
+63255139,25752261,5
+49351272,25752261,4
+57658746,25752261,4
+Chingshun,25752261,4
+violette,25752261,3
+2812955,25752261,3
+buzhiyuba,25752261,4
+76881504,25752261,3
+3512026,25752261,3
+80338852,25752261,5
+souryu,25752261,4
+Nages,25752261,4
+61907651,25752261,3
+rence,25752261,4
+guoyifeng,25752261,4
+withtea,25752261,4
+45786010,25752261,4
+sissibear,25752261,5
+52657880,25752261,5
+maoamao,25752261,3
+53833067,25752261,2
+52702022,25752261,3
+1663187,25752261,4
+56800653,25752261,3
+caizhidao,25752261,4
+44875082,25752261,4
+54880316,25752261,5
+84938785,25752261,4
+90808222,25752261,4
+just_peysa,25752261,4
+2850261,25752261,3
+36185277,25752261,4
+ibanyan,25752261,4
+kcxhr,25752261,5
+57429985,25752261,3
+65813989,25752261,5
+2555357,25752261,4
+punaisilvia,25752261,4
+when31,25752261,4
+huangxiaokun,25752261,5
+3547067,25752261,2
+121385842,25752261,5
+3843498,25752261,4
+roro0306,25752261,4
+35450002,25752261,5
+73869586,25752261,5
+yubaozilee,25752261,4
+2984695,25752261,4
+68542833,25752261,2
+cinsmiles,25752261,4
+76157804,25752261,5
+spencerreid,25752261,4
+Cherry.Pluto,25752261,3
+71270529,25752261,4
+34168497,25752261,4
+comebabycome,25752261,3
+63462182,25752261,4
+56922790,25752261,5
+130963655,25752261,5
+46590871,25752261,3
+57026267,25752261,2
+hypertxt,25752261,5
+64602194,25752261,5
+elaineaoi,25752261,5
+delmar,25752261,5
+Sen.Z,25752261,4
+119396712,25752261,5
+44505021,25752261,5
+l00000000,25752261,3
+63988739,25752261,4
+loverwenzi22,25752261,4
+duduxiongzhifu,25752261,4
+olivialuan,25752261,4
+76393487,25752261,5
+57931932,25752261,5
+3816364,25752261,4
+hwf254,25752261,4
+64779909,25752261,4
+sherryzala,25752261,4
+64728959,25752261,4
+101603016,25752261,4
+weixiaol,25752261,4
+65320288,25752261,5
+snowelf,25752261,4
+cici1127,25752261,5
+59099811,25752261,4
+Fairyhei,25752261,5
+71127427,25752261,5
+63291664,25752261,3
+50210563,25752261,3
+80442790,25752261,4
+97304737,25752261,4
+76477435,25752261,3
+lu...lu,25752261,4
+56998461,25752261,4
+49718559,25752261,4
+51773323,25752261,5
+54484399,25752261,3
+95621225,25752261,3
+4477044,25752261,5
+51472413,25752261,4
+48396736,25752261,4
+sea-lucky,25752261,4
+28609798,25752261,4
+94032763,25752261,4
+AdamWu,25752261,3
+Zsaraj,25752261,4
+62329066,25752261,4
+48943856,25752261,4
+29998862,25752261,3
+59156821,25752261,4
+3772330,25752261,4
+54207379,25752261,3
+wonderfulhoujie,25752261,4
+32390009,25752261,4
+83192271,25752261,4
+dataroom,25752261,5
+leonhardtdb,25752261,3
+73033101,25752261,5
+66088686,25752261,2
+55668412,25752261,4
+guanghui,25752261,4
+63403641,25752261,5
+3682487,25752261,4
+40339642,25752261,4
+76160573,25752261,4
+toddzhou,25752261,4
+Moanin,25752261,3
+88439681,25752261,4
+32776828,25752261,3
+51477715,25752261,3
+zenlee,25752261,4
+27068945,25752261,4
+3758018,25752261,5
+suffering0,25752261,2
+59955851,25752261,5
+50106958,25752261,4
+shiminxu,25752261,4
+1373968,25752261,5
+77235132,25752261,5
+1401672,25752261,5
+huaiyundemazha,25752261,4
+81322557,25752261,4
+64689820,25752261,3
+89843845,25752261,5
+52769977,25752261,5
+28026736,25752261,3
+1552243,25752261,4
+64063888,25752261,4
+48087715,25752261,4
+immmmm,25752261,4
+58113714,25752261,4
+gothes,25752261,3
+69099872,25752261,3
+67019496,25752261,3
+76589400,25752261,4
+49875686,25752261,5
+56755911,25752261,4
+metkee,25752261,3
+64880714,25752261,3
+51928009,25752261,3
+42539278,25752261,5
+58231376,25752261,4
+creepNIBA,25752261,4
+jeansolove,25752261,3
+65695073,25752261,4
+68481342,25752261,4
+67922362,25752261,4
+47563229,25752261,4
+2185769,25752261,4
+pilgrim_soul,25752261,4
+58820411,25752261,3
+tanyemaozi,25752261,4
+chloeqx,25752261,4
+chloeqx,25752261,4
+amphy,25752261,-1
+67725912,25752261,3
+sp0328,25752261,4
+39847804,25752261,3
+108235913,25752261,5
+Para.Five,25752261,-1
+zhuobielin,25752261,4
+119024126,25752261,4
+52048174,25752261,5
+71213483,25752261,3
+chelseawangqin,25752261,4
+colin628,25752261,5
+nimonnwang,25752261,5
+1061597,25752261,3
+68431348,25752261,5
+73619940,25752261,5
+xuylu,25752261,3
+12699479,25752261,3
+eddychaw,25752261,4
+77186305,25752261,4
+alicewithoutyou,25752261,3
+57968864,25752261,5
+milansunshine,25752261,4
+happyjoy,25752261,4
+36120993,25752261,3
+3908075,25752261,5
+41027619,25752261,5
+lagloria,25752261,3
+3712644,25752261,4
+Heresy666,25752261,5
+daisy_41,25752261,3
+Nova_Caine,25752261,-1
+129910475,25752261,2
+44649844,25752261,4
+80936991,25752261,4
+41294131,25752261,2
+1929758,25752261,4
+68617780,25752261,4
+61748227,25752261,4
+65520925,25752261,4
+72442723,25752261,3
+79668765,25752261,3
+kildren2013,25752261,4
+43375121,25752261,4
+74872914,25752261,-1
+Aulicaxoxo,25752261,-1
+56203117,25752261,3
+89646343,25752261,5
+15276648,25752261,2
+64253762,25752261,3
+pdleo,25752261,3
+63635904,25752261,4
+71870096,25752261,5
+7510013,25752261,3
+fergie37,25752261,4
+2196262,25752261,4
+the920,25752261,4
+helenrain553,25752261,4
+QQXLH,25752261,5
+78786637,25752261,4
+hana-neverland,25752261,3
+47198507,25752261,4
+58339263,25752261,4
+73751576,25752261,4
+mxydhd,25752261,3
+74715074,25752261,5
+49897508,25752261,3
+bluepride,25752261,4
+showlow-e,25752261,3
+45855923,25752261,3
+63730928,25752261,5
+37959469,25752261,5
+47395567,25752261,4
+60095742,25752261,5
+77552632,25752261,3
+2705335,25752261,3
+fairyx,25752261,4
+66885477,25752261,4
+li2007,25752261,-1
+li2007,25752261,-1
+36260283,25752261,4
+zhongcaideyuanz,25752261,5
+45404415,25752261,3
+Kidz,25752261,5
+rijiben,25752261,4
+tongnixcv,25752261,3
+reneew,25752261,4
+51543094,25752261,5
+sourirefish,25752261,4
+dearbeibei,25752261,5
+67931012,25752261,5
+27617970,25752261,4
+2444385,25752261,5
+doris19921203,25752261,4
+Cathy.C,25752261,4
+lazy.wanderlust,25752261,4
+calvingaga,25752261,5
+50769743,25752261,4
+84344197,25752261,5
+67870138,25752261,4
+65408583,25752261,3
+127091291,25752261,3
+58111605,25752261,4
+124136324,25752261,3
+75332568,25752261,4
+64325413,25752261,5
+127632434,25752261,-1
+conifer,25752261,5
+67125371,25752261,5
+silverzi,25752261,4
+2387705,25752261,5
+wasasw,25752261,4
+michellengan,25752261,3
+40733180,25752261,4
+yukuai,25752261,-1
+66663254,25752261,3
+28881911,25752261,2
+dodoo7,25752261,4
+63844800,25752261,3
+elice,25752261,4
+ciseibian,25752261,3
+newbear,25752261,4
+50951864,25752261,3
+ricochen,25752261,4
+3922372,25752261,3
+53300404,25752261,5
+seren,25752261,4
+50570726,25752261,4
+1380354,25752261,4
+bloodleopard,25752261,4
+47227699,25752261,4
+kodokoja,25752261,4
+Dadaspurs,25752261,3
+4292817,25752261,3
+3801481,25752261,4
+43402352,25752261,5
+42345472,25752261,4
+3422749,25752261,4
+53794054,25752261,4
+48007103,25752261,3
+84473008,25752261,5
+2116608,25752261,-1
+youngmu,25752261,4
+dipezzy,25752261,4
+rucool,25752261,3
+kimi-1119,25752261,4
+103028552,25752261,4
+37058834,25752261,3
+paradise624,25752261,4
+99448311,25752261,4
+Tiara0211,25752261,4
+1503417,25752261,3
+86026697,25752261,5
+4093754,25752261,5
+3930387,25752261,3
+eiji218837,25752261,3
+ambermemory,25752261,4
+2125225,25752261,3
+surpass0demon,25752261,4
+kyd77,25752261,5
+adoredmouse,25752261,3
+122331299,25752261,5
+2283860,25752261,5
+50229670,25752261,3
+2000752,25752261,4
+68948810,25752261,5
+79148662,25752261,-1
+zling--HE,25752261,5
+49335664,25752261,3
+52235575,25752261,3
+60151341,25752261,4
+TalkChan,25752261,4
+49582119,25752261,3
+PCvarment,25752261,-1
+41922022,25752261,2
+68420280,25752261,5
+56897677,25752261,5
+DEMO9266,25752261,4
+enzai,25752261,5
+methodolody,25752261,5
+50212998,25752261,4
+sqchen,25752261,4
+50687127,25752261,3
+57038536,25752261,4
+77086576,25752261,3
+Renovatio84,25752261,4
+chrisyan,25752261,5
+93347677,25752261,4
+2557436,25752261,5
+cynthiaesfeliz,25752261,4
+47220658,25752261,4
+Lucyceng,25752261,3
+applesnake,25752261,4
+61766488,25752261,5
+1584930,25752261,5
+txiaomiao,25752261,3
+66692285,25752261,3
+48990593,25752261,4
+69434822,25752261,4
+61536666,25752261,4
+47852493,25752261,4
+92086611,25752261,5
+lanl,25752261,3
+78721948,25752261,4
+xxxxxxdee,25752261,3
+69884318,25752261,4
+62532789,25752261,4
+122281583,25752261,4
+103477859,25752261,4
+31409369,25752261,5
+39530278,25752261,4
+126703081,25752261,4
+33326569,25752261,4
+w_j_y,25752261,-1
+gozn,25752261,5
+jennychang,25752261,3
+connie-kangni,25752261,4
+heavywoo,25752261,4
+91661265,25752261,3
+kenc,25752261,5
+RicoooooO,25752261,5
+69356155,25752261,5
+woodring,25752261,-1
+43496631,25752261,5
+22991326,25752261,5
+blueskd,25752261,4
+50929196,25752261,4
+50670787,25752261,4
+46260385,25752261,3
+51915169,25752261,3
+129081230,25752261,4
+83836566,25752261,4
+malu,25752261,4
+Amico,25752261,5
+50694634,25752261,3
+shmilymichelle,25752261,2
+51489993,25752261,4
+58179785,25752261,5
+baisechengai,25752261,4
+49166988,25752261,3
+67561364,25752261,5
+Aurore.C,25752261,3
+2327858,25752261,5
+57650145,25752261,4
+Rukia,25752261,3
+4730490,25752261,4
+hothotdarling,25752261,3
+63014642,25752261,3
+closed2200,25752261,4
+88288973,25752261,4
+103769558,25752261,2
+2471335,25752261,3
+hellochensasa,25752261,4
+33977432,25752261,4
+34891674,25752261,3
+31819006,25752261,5
+nanoButterMint,25752261,3
+orsettp,25752261,4
+96658819,25752261,4
+47381919,25752261,5
+68597225,25752261,5
+yangxiaofeliz,25752261,4
+bubble77,25752261,5
+51955912,25752261,5
+qiuxiaoli,25752261,4
+xiaoyuhen,25752261,3
+56136584,25752261,4
+54087603,25752261,4
+2030773,25752261,4
+45869247,25752261,5
+34000533,25752261,4
+zera,25752261,4
+81771803,25752261,3
+57665696,25752261,5
+46396920,25752261,4
+61292565,25752261,4
+E-Yum,25752261,1
+sixties,25752261,5
+61572428,25752261,4
+63359487,25752261,5
+yingtaoher,25752261,5
+82760754,25752261,5
+49416713,25752261,4
+80769810,25752261,4
+65396178,25752261,5
+strange_,25752261,5
+2651943,25752261,5
+52480937,25752261,3
+bianbiankiko,25752261,4
+48877110,25752261,5
+loveyu3317,25752261,5
+colintide,25752261,4
+1787071,25752261,5
+52917026,25752261,5
+lichen_sun,25752261,4
+TVBVSBON,25752261,4
+antmujue,25752261,4
+63496954,25752261,3
+pengpeng,25752261,3
+103214078,25752261,3
+rongyan1223,25752261,5
+Mr.rawness,25752261,3
+54887603,25752261,-1
+chemicalromance,25752261,3
+AlBiKlose,25752261,4
+83303980,25752261,-1
+becky7,25752261,4
+CCCOLE0605,25752261,4
+52655756,25752261,-1
+windirt,25752261,3
+48269548,25752261,3
+38811434,25752261,3
+dunyong,25752261,5
+izhangzhu,25752261,5
+lincolnhong,25752261,3
+73983245,25752261,4
+67843912,25752261,3
+51638198,25752261,3
+52762831,25752261,4
+52762831,25752261,4
+50372291,25752261,5
+zjycalbee,25752261,4
+zhangxiaori,25752261,5
+64904915,25752261,4
+35051709,25752261,4
+15535572,25752261,4
+saintj,25752261,5
+90793123,25752261,4
+1002192,25752261,3
+74573393,25752261,4
+35687471,25752261,4
+Secretloveplace,25752261,4
+Torence,25752261,5
+65917717,25752261,5
+ashli,25752261,4
+doublecome,25752261,3
+57259895,25752261,5
+93006470,25752261,3
+micao-onlyhui,25752261,3
+55608502,25752261,4
+18628004,25752261,4
+Dolfay,25752261,4
+45650024,25752261,4
+SK1d125,25752261,3
+115681868,25752261,4
+neverfm,25752261,4
+superpanv,25752261,4
+52889197,25752261,4
+67679868,25752261,4
+55814996,25752261,5
+fccc,25752261,3
+42256726,25752261,4
+2707331,25752261,3
+imagefly,25752261,4
+bway,25752261,5
+YolaZhang,25752261,4
+58110414,25752261,5
+9352143,25752261,4
+43944824,25752261,4
+tatoo,25752261,3
+imjerry,25752261,2
+61541491,25752261,4
+guagua1992,25752261,3
+2943338,25752261,5
+miuzc.pei,25752261,4
+meskelil,25752261,4
+62330413,25752261,4
+xi_er,25752261,4
+82504736,25752261,5
+4325552,25752261,4
+63958025,25752261,4
+65442139,25752261,4
+54732272,25752261,4
+1039253,25752261,4
+4587125,25752261,2
+TiramisuPig,25752261,3
+longlanglang,25752261,3
+54635444,25752261,2
+missriverhorse,25752261,4
+longdeshijie,25752261,4
+JustStayReal,25752261,4
+3530338,25752261,5
+56141450,25752261,4
+39607607,25752261,5
+Son47,25752261,3
+luweiyan2012,25752261,4
+57302028,25752261,5
+67831727,25752261,3
+kelsangmetok,25752261,4
+58559629,25752261,3
+Marchseven,25752261,5
+60389912,25752261,4
+45267287,25752261,4
+2208335,25752261,3
+43596686,25752261,3
+46375249,25752261,4
+RJ861126,25752261,4
+f91_82,25752261,4
+sunluilui,25752261,4
+37405681,25752261,3
+fondxy,25752261,4
+caocaoty,25752261,-1
+67707481,25752261,4
+90635232,25752261,5
+51890173,25752261,4
+rockymei,25752261,4
+herofaykjj,25752261,4
+ohahahu,25752261,4
+62498352,25752261,4
+48459404,25752261,4
+mixj93,25752261,4
+3575164,25752261,4
+1013761,25752261,4
+61492149,25752261,3
+karasu419,25752261,4
+kamexi,25752261,4
+breezeY,25752261,4
+42955100,25752261,3
+41304325,25752261,4
+67317668,25752261,3
+53906378,25752261,4
+lokaven,25752261,4
+62187279,25752261,5
+ZotterElaine,25752261,4
+znrpiggey,25752261,3
+126329792,25752261,4
+donnie,25752261,3
+cabaret,25752261,4
+Sparta233,25752261,4
+71060639,25752261,3
+xiaowumei,25752261,-1
+cristinali,25752261,4
+69556914,25752261,4
+55540547,25752261,4
+june.q,25752261,3
+46673618,25752261,4
+53052782,25752261,4
+e2cat,25752261,4
+2604555,25752261,4
+fay19881025,25752261,4
+zbc_endo,25752261,4
+muxieyes,25752261,4
+92047884,25752261,-1
+55585297,25752261,4
+9505833,25752261,4
+57729721,25752261,-1
+53199032,25752261,3
+fre7dom,25752261,4
+121777032,25752261,5
+guiying96,25752261,5
+41093304,25752261,4
+1793602,25752261,3
+megzzy,25752261,4
+pluto81,25752261,5
+7255952,25752261,4
+liarelaw,25752261,3
+royin.chao,25752261,4
+40659159,25752261,4
+lovehour,25752261,5
+sallyssland,25752261,5
+129472402,25752261,4
+scarlett982,25752261,4
+44417635,25752261,3
+JakeNow,25752261,3
+sigle,25752261,-1
+55736985,25752261,4
+qiongdong,25752261,4
+yjyskoala,25752261,5
+zebra168,25752261,5
+62476143,25752261,4
+3535148,25752261,4
+Kevin3,25752261,4
+3331579,25752261,3
+52003906,25752261,4
+dobima,25752261,3
+52049296,25752261,-1
+wawanghuan,25752261,3
+64740791,25752261,2
+aralebox,25752261,4
+80786877,25752261,2
+kellyelbe,25752261,3
+40929460,25752261,4
+tinker828,25752261,4
+43891486,25752261,-1
+edgeyeung,25752261,5
+58896741,25752261,4
+25982397,25752261,4
+4107805,25752261,4
+3914295,25752261,4
+25314137,25752261,5
+hjzj,25752261,4
+73586590,25752261,5
+hedgew3w,25752261,4
+54352313,25752261,4
+1298227,25752261,3
+lemoncan,25752261,4
+38789187,25752261,3
+44029751,25752261,4
+54731687,25752261,4
+131190343,25752261,4
+130154428,25752261,3
+72902533,25752261,4
+3208406,25752261,4
+56070920,25752261,3
+88559856,25752261,4
+78476188,25752261,3
+59164249,25752261,3
+yjjtdcq200,25752261,3
+65458998,25752261,4
+xuanyushuo,25752261,4
+47687839,25752261,5
+52969700,25752261,5
+45886049,25752261,4
+60956966,25752261,5
+68732725,25752261,5
+janktelenburg,25752261,4
+67758880,25752261,4
+60063091,25752261,3
+efscpig,25752261,4
+xiaoqianquan,25752261,4
+sunmiaoran,25752261,4
+joyce19920111,25752261,5
+chanxiner,25752261,5
+55954435,25752261,4
+quwaiwai,25752261,3
+Mr_movie,25752261,-1
+1505921,25752261,3
+78801731,25752261,5
+62860016,25752261,4
+57580969,25752261,4
+84593268,25752261,3
+55603094,25752261,5
+119189786,25752261,5
+colleena333,25752261,3
+61726072,25752261,5
+70787019,25752261,4
+3161053,25752261,4
+58723573,25752261,5
+66135071,25752261,5
+yan599083337,25752261,4
+paulinekp,25752261,5
+weizheren,25752261,4
+2187951,25752261,3
+109381843,25752261,4
+65660961,25752261,5
+rocksun,25752261,3
+sophia1869,25752261,5
+96044338,25752261,3
+2467328,25752261,5
+miqingye,25752261,2
+xileabc,25752261,5
+68968517,25752261,3
+ghostcatstudio,25752261,4
+58503937,25752261,4
+auvauva,25752261,3
+Nathancai,25752261,5
+beautifish,25752261,5
+molly1016,25752261,5
+vivifyvivi,25752261,3
+1495292,25752261,4
+104559183,25752261,3
+flowernim,25752261,3
+89436393,25752261,4
+rolemodel,25752261,3
+45251073,25752261,4
+47958996,25752261,3
+41837755,25752261,4
+25803795,25752261,4
+121519477,25752261,3
+RitaXuQ,25752261,4
+dordot,25752261,4
+47114271,25752261,4
+120551581,25752261,5
+evabre,25752261,4
+Solo-n,25752261,3
+keysersoze,25752261,4
+comicsuperman,25752261,4
+alwayslo7e,25752261,5
+64396292,25752261,4
+wangshiqian1024,25752261,4
+chenhuayang,25752261,3
+77048663,25752261,5
+rjh1994,25752261,3
+KOBENYF,25752261,4
+57030523,25752261,4
+2445053,25752261,4
+85293907,25752261,4
+3306133,25752261,4
+2231023,25752261,4
+1815827,25752261,5
+29857265,25752261,5
+109238530,25752261,2
+drsoul,25752261,4
+72997899,25752261,4
+73060633,25752261,4
+49141293,25752261,3
+blueto,25752261,4
+situfang,25752261,4
+Darkkid,25752261,4
+honeybunny9048,25752261,4
+Hc66,25752261,4
+4658849,25752261,2
+62708823,25752261,2
+60214722,25752261,4
+moniquewang,25752261,4
+lzh625,25752261,-1
+78414144,25752261,4
+38924619,25752261,4
+1694079,25752261,5
+allwordswrong,25752261,4
+61461484,25752261,4
+1412545,25752261,3
+99623872,25752261,5
+2959380,25752261,5
+44833816,25752261,4
+71298339,25752261,5
+55924051,25752261,5
+56534538,25752261,4
+89787162,25752261,4
+63594336,25752261,5
+qiuqiuwei,25752261,5
+123890207,25752261,3
+62559581,25752261,4
+70990506,25752261,3
+44392983,25752261,4
+duzhouchi,25752261,4
+41212756,25752261,4
+fengbao945,25752261,5
+littlemansay,25752261,5
+54770734,25752261,4
+thisisgap,25752261,3
+xdJumpING,25752261,3
+Christina63,25752261,3
+walkeri,25752261,5
+31555036,25752261,4
+itrueidelicacy,25752261,4
+hedgehog,25752261,4
+58291702,25752261,2
+aicbgyihai,25752261,4
+zyjj141,25752261,3
+4190834,25752261,3
+liujieweiwei,25752261,2
+35330593,25752261,5
+81555856,25752261,3
+benjayming,25752261,4
+81370561,25752261,4
+xhlaxhla,25752261,3
+dkjune,25752261,4
+3904908,25752261,4
+55990850,25752261,4
+25674163,25752261,3
+61712114,25752261,4
+60841792,25752261,-1
+RouYang,25752261,5
+balancee,25752261,4
+lnnlnn,25752261,4
+zxrsygcjdtc,25752261,5
+xyhen,25752261,4
+3169210,25752261,4
+53126915,25752261,3
+33149603,25752261,4
+2671857,25752261,3
+kinolin,25752261,3
+1359081,25752261,3
+hihicd,25752261,4
+sdayor,25752261,3
+1721507,25752261,4
+wcwc,25752261,5
+weiwei06110918,25752261,4
+57886651,25752261,5
+iisakura,25752261,4
+ethanwalking,25752261,3
+happyds1225,25752261,2
+54151974,25752261,4
+69168057,25752261,5
+57416043,25752261,3
+56936714,25752261,4
+2615897,25752261,4
+2399727,25752261,3
+26039197,25752261,5
+DolceKaze,25752261,5
+guder,25752261,4
+1653790,25752261,4
+Vincentwsk,25752261,4
+121861982,25752261,3
+57978230,25752261,4
+kamegemma,25752261,4
+liaojinzi,25752261,5
+45853075,25752261,4
+4063711,25752261,4
+58289345,25752261,2
+2063659,25752261,-1
+79453297,25752261,2
+vividtime,25752261,4
+8582710,25752261,3
+50702301,25752261,4
+29741430,25752261,4
+42112015,25752261,4
+48649262,25752261,3
+78588214,25752261,4
+63338415,25752261,4
+pinkcandiii,25752261,5
+60140602,25752261,3
+scarlywoo,25752261,4
+60157184,25752261,5
+Chinchilla0717,25752261,5
+1068125,25752261,3
+51795148,25752261,4
+xbey,25752261,3
+35849817,25752261,5
+46393539,25752261,5
+WendiMurdoch,25752261,3
+55609637,25752261,4
+puma007,25752261,4
+82895419,25752261,3
+3862073,25752261,4
+39781923,25752261,5
+avivalovestory,25752261,3
+60015125,25752261,4
+Tony1168,25752261,4
+chabaochabao,25752261,3
+Caterina,25752261,5
+sky12,25752261,3
+ovanisho,25752261,4
+56686931,25752261,5
+Benjamin_exe,25752261,5
+VIVIANXIN0926,25752261,4
+51156864,25752261,4
+35199283,25752261,5
+qncs,25752261,5
+73478164,25752261,3
+69532674,25752261,5
+1830523,25752261,4
+69680398,25752261,4
+adelineadele,25752261,4
+47317447,25752261,5
+chinesean,25752261,4
+moquin,25752261,2
+74799167,25752261,5
+Yubk111111,25752261,4
+so-it-is,25752261,4
+mexicanredknee,25752261,5
+47594544,25752261,5
+63278789,25752261,4
+43909634,25752261,4
+52775910,25752261,5
+58255325,25752261,4
+1416219,25752261,5
+70669319,25752261,5
+1626485,25752261,5
+wskhandsome,25752261,5
+37646652,25752261,3
+59361957,25752261,4
+80634044,25752261,5
+qiufen,25752261,4
+reira_jxy,25752261,4
+64128291,25752261,3
+48219520,25752261,3
+49305143,25752261,4
+3633800,25752261,3
+xixihahaxiao,25752261,3
+39789288,25752261,5
+74013716,25752261,5
+46011187,25752261,3
+43127616,25752261,4
+imoioi,25752261,4
+55885677,25752261,3
+Schwarzwaelder,25752261,4
+3959996,25752261,4
+81586403,25752261,5
+55656322,25752261,3
+shineeamber,25752261,-1
+gardens,25752261,5
+72102386,25752261,4
+50878855,25752261,4
+3479695,25752261,3
+jxyyy,25752261,5
+60046536,25752261,3
+weini0410,25752261,4
+DTShow,25752261,5
+58180377,25752261,4
+82124586,25752261,4
+1603592,25752261,3
+teamototavita,25752261,5
+1911959,25752261,3
+52585917,25752261,4
+48354152,25752261,4
+Edom,25752261,3
+62668317,25752261,4
+131145177,25752261,4
+40710431,25752261,4
+maybejoker,25752261,-1
+alianhei,25752261,4
+gancao,25752261,5
+cup-whent,25752261,3
+76617762,25752261,4
+tangsongsong,25752261,3
+voltage,25752261,4
+63657398,25752261,4
+62927689,25752261,5
+47243834,25752261,4
+afasia,25752261,5
+75243916,25752261,-1
+43359124,25752261,3
+MrJlol,25752261,3
+guanchen76,25752261,3
+chimneyqueen,25752261,4
+MihoKomatsu,25752261,4
+LadySandra,25752261,5
+59634469,25752261,4
+30943019,25752261,4
+64205062,25752261,4
+vikawang,25752261,4
+mearcher,25752261,4
+59084050,25752261,4
+72781855,25752261,5
+130692591,25752261,4
+beckham7,25752261,5
+70929695,25752261,5
+70929695,25752261,5
+rockerai,25752261,4
+3720128,25752261,4
+layne37,25752261,4
+102975459,25752261,3
+akhexiaobai,25752261,4
+1259506,25752261,4
+117240526,25752261,2
+61222044,25752261,3
+arizona,25752261,3
+1114488,25752261,4
+48206424,25752261,3
+59677707,25752261,3
+joycelam,25752261,4
+70728230,25752261,4
+powerfultony,25752261,4
+2711621,25752261,4
+121620281,25752261,4
+39121054,25752261,4
+46788062,25752261,5
+43837940,25752261,4
+47933054,25752261,2
+andezhu,25752261,4
+arthurwen,25752261,3
+61057861,25752261,5
+62749653,25752261,4
+52029973,25752261,2
+valentina999,25752261,5
+3435535,25752261,3
+abin520918,25752261,3
+4635895,25752261,5
+60303704,25752261,4
+49346952,25752261,3
+dwyk500,25752261,4
+olovc,25752261,4
+50179673,25752261,4
+solarlion,25752261,5
+69247286,25752261,4
+U-Know-Who,25752261,4
+75724026,25752261,4
+50451093,25752261,5
+scorpiogigi,25752261,4
+76029249,25752261,5
+76621126,25752261,4
+vivian1165,25752261,4
+80382193,25752261,4
+2310497,25752261,3
+ramsestwo,25752261,4
+riceseedling,25752261,3
+81317162,25752261,5
+janeythai,25752261,3
+70893868,25752261,4
+53783506,25752261,5
+callmemrcoolman,25752261,3
+2363758,25752261,5
+83328709,25752261,3
+51735678,25752261,3
+13108215,25752261,1
+senlintu,25752261,4
+55671161,25752261,3
+littleshy,25752261,3
+Dasiycat,25752261,4
+115762881,25752261,4
+MAOXIAOCHENG,25752261,4
+judeli,25752261,5
+manray,25752261,4
+84334911,25752261,4
+ftgaox,25752261,2
+53571368,25752261,5
+spadar,25752261,5
+47660748,25752261,3
+f8023,25752261,4
+78728562,25752261,3
+bingno,25752261,5
+32223318,25752261,4
+4075064,25752261,5
+2260384,25752261,3
+45797451,25752261,3
+frankie0927,25752261,4
+57983066,25752261,5
+56994135,25752261,5
+nwpu642,25752261,3
+85143816,25752261,3
+77532413,25752261,5
+1313926,25752261,5
+reave,25752261,5
+casapink,25752261,4
+gyd,25752261,4
+nangle,25752261,3
+52140579,25752261,3
+johnkale,25752261,4
+58543683,25752261,4
+79820861,25752261,5
+67936960,25752261,4
+75621811,25752261,3
+65810005,25752261,5
+52433144,25752261,3
+53933892,25752261,5
+58021214,25752261,3
+52146606,25752261,4
+Tracy1230,25752261,4
+papa1968,25752261,5
+43896457,25752261,3
+52512289,25752261,5
+50601199,25752261,5
+liumangJone,25752261,3
+junoqi,25752261,4
+47670080,25752261,4
+douchebag,25752261,4
+vinkingking,25752261,5
+rabbit6,25752261,3
+1831746,25752261,4
+thistle_,25752261,4
+fhlan,25752261,4
+brandnewstart,25752261,4
+58993842,25752261,4
+iear,25752261,4
+67710176,25752261,-1
+41798049,25752261,3
+48180333,25752261,4
+52929305,25752261,4
+casoon,25752261,5
+4520667,25752261,3
+71929336,25752261,2
+Chliztian,25752261,3
+34040442,25752261,5
+Magic_L,25752261,4
+2062909,25752261,3
+126929965,25752261,4
+25798169,25752261,5
+stevecarell,25752261,4
+60154183,25752261,3
+37675452,25752261,4
+49166520,25752261,5
+56103306,25752261,3
+sinedouban,25752261,4
+40027917,25752261,4
+endlessid,25752261,2
+57028649,25752261,4
+misslisa,25752261,4
+cl20lc,25752261,3
+dolcetta99,25752261,5
+kissorli,25752261,4
+121084172,25752261,3
+SuzyMao,25752261,4
+100422638,25752261,4
+vanon,25752261,2
+52499368,25752261,3
+124877440,25752261,-1
+56606229,25752261,4
+43710853,25752261,3
+3481743,25752261,4
+83925397,25752261,-1
+70272043,25752261,4
+44579499,25752261,3
+xfdshcbsmw,25752261,5
+125663520,25752261,3
+30075876,25752261,4
+36103812,25752261,4
+56447812,25752261,3
+56447812,25752261,3
+38191056,25752261,4
+wangxin128,25752261,5
+zhangcoolhaas,25752261,2
+socalledgin,25752261,4
+128203745,25752261,2
+1379373,25752261,4
+68061879,25752261,4
+irislovelfie,25752261,4
+musicyue21,25752261,4
+4074620,25752261,5
+4311389,25752261,5
+chrno,25752261,4
+90675141,25752261,4
+violasha,25752261,4
+misswatermelon,25752261,2
+47199948,25752261,4
+lolopraying,25752261,4
+39957115,25752261,5
+mickyxj,25752261,5
+wangshaoer,25752261,5
+Scullyzfq,25752261,4
+mysheepy,25752261,4
+52485054,25752261,4
+ranke0129,25752261,5
+diaosicheng,25752261,3
+lycheng,25752261,5
+26713841,25752261,4
+MoQin,25752261,3
+beier0310,25752261,4
+zhaoshihan,25752261,4
+43462039,25752261,5
+twisterlily,25752261,3
+ianianian,25752261,4
+waterdrops,25752261,4
+68372587,25752261,3
+ccrystall,25752261,3
+49693617,25752261,3
+3706500,25752261,5
+wruo,25752261,4
+wruo,25752261,4
+AlejandroX,25752261,3
+42150092,25752261,4
+63818892,25752261,3
+53682563,25752261,4
+92468807,25752261,3
+43968587,25752261,3
+61611296,25752261,4
+45123579,25752261,5
+35285718,25752261,3
+84564093,25752261,4
+54489877,25752261,5
+88171857,25752261,3
+50174936,25752261,4
+81929147,25752261,5
+tofuchico,25752261,4
+34484262,25752261,4
+sangou,25752261,3
+Lioka,25752261,4
+62363490,25752261,5
+45593428,25752261,5
+mianni,25752261,3
+89531686,25752261,5
+MAXISMYLIFE,25752261,5
+3311602,25752261,4
+52727319,25752261,4
+53212541,25752261,4
+yeslie,25752261,5
+51156582,25752261,4
+29844884,25752261,3
+candyff123,25752261,5
+avon0801,25752261,4
+45345873,25752261,4
+mrockfire,25752261,5
+59340784,25752261,4
+66713336,25752261,4
+116977972,25752261,4
+44713959,25752261,4
+TERRYBEAR,25752261,4
+uumay,25752261,5
+47782519,25752261,3
+milk817,25752261,4
+liquor,25752261,4
+2424181,25752261,3
+61039882,25752261,3
+disheron,25752261,4
+lucyhu,25752261,1
+45558720,25752261,4
+vero_nicat,25752261,5
+41122541,25752261,4
+hd35,25752261,3
+91755433,25752261,5
+iozz,25752261,-1
+73112329,25752261,2
+102666107,25752261,-1
+56758013,25752261,4
+54041624,25752261,4
+56104621,25752261,3
+73847256,25752261,2
+iamdengdeng,25752261,4
+nevertori,25752261,4
+tanguy,25752261,4
+ballteda,25752261,5
+gunguning,25752261,4
+51468288,25752261,4
+123228313,25752261,4
+2080452,25752261,4
+64780259,25752261,3
+1951463,25752261,2
+onlyz1,25752261,4
+58197963,25752261,4
+75652747,25752261,4
+59127988,25752261,2
+52653707,25752261,5
+54405784,25752261,4
+socordia,25752261,5
+51204884,25752261,3
+dwy1212,25752261,5
+zhtianyu,25752261,3
+3428014,25752261,3
+1811122,25752261,4
+sallyingying,25752261,3
+moodymooday,25752261,4
+GMDY,25752261,3
+whisaly,25752261,4
+ellordie,25752261,4
+daiyuanvian,25752261,4
+stigie,25752261,4
+llzclm,25752261,4
+MISSMOUMOU,25752261,4
+impzz,25752261,4
+74325059,25752261,5
+sam_smile,25752261,3
+3491366,25752261,-1
+49272886,25752261,3
+43266773,25752261,4
+48046895,25752261,-1
+59673895,25752261,4
+4597338,25752261,3
+36789209,25752261,4
+46370564,25752261,5
+42291376,25752261,4
+ameliuge,25752261,4
+fifa10,25752261,4
+dustxu,25752261,4
+rum1412,25752261,4
+Charloo,25752261,2
+66136937,25752261,5
+62159923,25752261,4
+AngelaDayday,25752261,4
+52304361,25752261,5
+68975855,25752261,5
+51670628,25752261,3
+68172611,25752261,-1
+xuaoling,25752261,4
+104492031,25752261,5
+GLSQ,25752261,3
+54540243,25752261,4
+yzarc,25752261,4
+66269844,25752261,4
+illiteracy,25752261,4
+59370142,25752261,4
+1012932,25752261,4
+wy320,25752261,5
+oycl,25752261,5
+4150828,25752261,3
+4292449,25752261,4
+aurawang95,25752261,4
+putoff,25752261,3
+64571103,25752261,5
+10631205,25752261,3
+xiaomengqiuyue,25752261,4
+30116913,25752261,3
+130806444,25752261,4
+102249146,25752261,3
+43508209,25752261,3
+kugaren,25752261,4
+tintingo,25752261,4
+37487275,25752261,1
+81283209,25752261,4
+47022632,25752261,3
+PsychoMissSo,25752261,4
+68427316,25752261,4
+89700756,25752261,4
+gmailchrome,25752261,3
+kellangamp,25752261,3
+nbyuan,25752261,2
+2834857,25752261,-1
+akaorz,25752261,5
+80703672,25752261,3
+1172752,25752261,4
+50645471,25752261,4
+56387836,25752261,5
+yanyi421,25752261,4
+51165620,25752261,3
+applesan,25752261,4
+71953415,25752261,3
+2759613,25752261,3
+monkeypeach,25752261,4
+DOPHPIRATE,25752261,5
+55942518,25752261,3
+31102423,25752261,3
+52811536,25752261,2
+a3615,25752261,4
+81646981,25752261,3
+leucex,25752261,4
+13833588,25752261,5
+tcff,25752261,4
+73787415,25752261,4
+75251795,25752261,4
+67039563,25752261,4
+67358323,25752261,4
+yutingamy,25752261,3
+60455917,25752261,4
+3907593,25752261,4
+56198749,25752261,5
+gaoshiqi,25752261,5
+61761466,25752261,5
+59316467,25752261,4
+ray7667268,25752261,5
+85868315,25752261,5
+2298833,25752261,3
+jeffersontang,25752261,3
+wunie,25752261,4
+CKyan,25752261,5
+8316667,25752261,4
+49385882,25752261,5
+62776173,25752261,4
+shire,25752261,5
+wtforz,25752261,4
+llllsy1991,25752261,4
+68020683,25752261,3
+1109340,25752261,4
+113226235,25752261,4
+52470011,25752261,3
+AllanBen,25752261,4
+Eunyul,25752261,4
+Aubrey4S,25752261,4
+49319979,25752261,3
+zhangxunnj,25752261,3
+76611008,25752261,3
+2254511,25752261,5
+58310071,25752261,3
+37312382,25752261,2
+rex_yun,25752261,3
+72970549,25752261,3
+zpavel,25752261,4
+1892627,25752261,2
+augusttt,25752261,3
+35998666,25752261,5
+89763899,25752261,4
+odileyue,25752261,3
+49812770,25752261,4
+48564928,25752261,3
+partipris,25752261,4
+72122656,25752261,3
+cb1030,25752261,3
+84430794,25752261,4
+67182363,25752261,4
+59270322,25752261,4
+50650526,25752261,5
+4465654,25752261,4
+helene9933,25752261,3
+rttcat,25752261,3
+65873693,25752261,3
+59390060,25752261,3
+47843661,25752261,5
+55919844,25752261,3
+63971578,25752261,4
+46360410,25752261,3
+1463503,25752261,3
+ann-in-april,25752261,4
+23808564,25752261,5
+42600622,25752261,-1
+80823041,25752261,4
+mml3774,25752261,4
+1553175,25752261,5
+46338692,25752261,3
+51227412,25752261,4
+33845603,25752261,5
+63156283,25752261,4
+1841749,25752261,3
+66057217,25752261,4
+80071306,25752261,5
+zxcmagic,25752261,4
+ishikari,25752261,4
+127361227,25752261,3
+oneinfour,25752261,4
+peachhyn,25752261,4
+122738024,25752261,4
+cloudvast,25752261,4
+61314645,25752261,3
+alternative,25752261,3
+2600693,25752261,4
+IFOoo,25752261,4
+stonekuang_123,25752261,4
+pcgk,25752261,5
+renrouqiji,25752261,4
+wuxiaohua,25752261,4
+59038571,25752261,4
+HJS_L,25752261,4
+hanxu521,25752261,5
+88951785,25752261,4
+68631195,25752261,3
+79763326,25752261,4
+61782892,25752261,4
+cynthiazhang_,25752261,4
+pandorapple,25752261,3
+85811535,25752261,3
+57450244,25752261,4
+61648064,25752261,4
+cageyz,25752261,3
+67240595,25752261,3
+76790888,25752261,4
+simig,25752261,4
+zheshijian,25752261,5
+83143884,25752261,4
+robotstar,25752261,4
+masaikejun,25752261,4
+wsc7315,25752261,3
+darendaren,25752261,4
+littlefatty815,25752261,5
+81138274,25752261,4
+Lihao_zi,25752261,5
+marvelwei,25752261,5
+Exaiy,25752261,4
+thomsonkoo,25752261,4
+4126419,25752261,3
+dinoel,25752261,3
+81130400,25752261,3
+aragakki,25752261,4
+49298846,25752261,3
+favezhihao,25752261,4
+51440227,25752261,3
+3061850,25752261,4
+46287060,25752261,4
+113050393,25752261,3
+58596058,25752261,3
+47524810,25752261,4
+121888064,25752261,4
+j780417605,25752261,4
+70055114,25752261,3
+twitodd,25752261,3
+sircayden,25752261,4
+solycoco,25752261,4
+yueyuebetty,25752261,-1
+norlesamourai,25752261,-1
+51435556,25752261,4
+QQQN,25752261,5
+ertsoe,25752261,4
+ymirlan,25752261,5
+120736500,25752261,5
+xiaoyinxuanpapa,25752261,5
+3924801,25752261,4
+violette0826,25752261,5
+27675083,25752261,5
+82387187,25752261,3
+33158247,25752261,5
+gsh1215,25752261,5
+sheeppark,25752261,4
+68881008,25752261,5
+twetwo,25752261,3
+louis4498,25752261,4
+76777124,25752261,5
+vincent2010,25752261,4
+shin3,25752261,5
+Don520Juan,25752261,4
+olanduo,25752261,2
+43343642,25752261,5
+119079844,25752261,3
+evergreen3507,25752261,3
+niuchen0288,25752261,5
+Sandal,25752261,1
+thehours_lxx,25752261,3
+Tong323,25752261,3
+LoveHugo,25752261,4
+60392839,25752261,4
+imoviekobe,25752261,3
+Springgu,25752261,4
+53577893,25752261,4
+loselove,25752261,5
+35477330,25752261,4
+campbellding,25752261,3
+62525055,25752261,4
+sugayama,25752261,2
+Ada_quan,25752261,-1
+56567872,25752261,3
+feqinfan,25752261,1
+77057576,25752261,4
+2444863,25752261,3
+46741446,25752261,5
+70149072,25752261,4
+teenwolf,25752261,5
+37751161,25752261,5
+caocaoa,25752261,2
+106514817,25752261,3
+RemyAnderson,25752261,4
+50169026,25752261,5
+127766292,25752261,4
+64218724,25752261,4
+90862997,25752261,5
+73958470,25752261,4
+15175212,25752261,5
+93920997,25752261,4
+61511831,25752261,3
+alafangfang,25752261,3
+huantong,25752261,4
+44561459,25752261,3
+46738101,25752261,2
+100043163,25752261,4
+53162024,25752261,1
+4534568,25752261,4
+51636177,25752261,2
+60871322,25752261,2
+littleisle,25752261,4
+zweikun,25752261,4
+43490498,25752261,5
+51374117,25752261,3
+68099155,25752261,3
+78753463,25752261,4
+41976054,25752261,3
+rubyxr1028,25752261,5
+45804814,25752261,3
+LyleWang,25752261,4
+Creep_,25752261,2
+65366516,25752261,4
+seeu-shieh,25752261,4
+85169230,25752261,4
+50700305,25752261,-1
+wuxi4945,25752261,1
+Youoen,25752261,3
+lipipi,25752261,4
+48480567,25752261,4
+92592691,25752261,4
+42636733,25752261,3
+ohohzhizhi,25752261,3
+130147627,25752261,5
+46646867,25752261,-1
+51564570,25752261,5
+46722209,25752261,4
+32433633,25752261,2
+Minimalis,25752261,4
+32995807,25752261,3
+7542909,25752261,3
+july8903,25752261,4
+43664862,25752261,1
+32320904,25752261,4
+54760150,25752261,4
+108797239,25752261,4
+2597570,25752261,5
+53620031,25752261,4
+sunny_i,25752261,3
+75416768,25752261,3
+37252391,25752261,4
+qiQ,25752261,3
+61845850,25752261,4
+120233886,25752261,3
+83162641,25752261,3
+51086058,25752261,4
+33651732,25752261,5
+49170151,25752261,4
+2387348,25752261,4
+stanup,25752261,4
+41764429,25752261,3
+digdug,25752261,4
+45498889,25752261,4
+64173822,25752261,5
+sunkyeast,25752261,4
+moved,25752261,4
+wsqabc,25752261,5
+ssime,25752261,4
+54121460,25752261,5
+4105483,25752261,4
+69529988,25752261,4
+65930256,25752261,3
+3418984,25752261,4
+46458502,25752261,3
+88078787,25752261,3
+tomhu,25752261,4
+77289829,25752261,4
+tobekalorce,25752261,4
+1815039,25752261,3
+46932541,25752261,4
+49397696,25752261,3
+sevpridra,25752261,5
+44228468,25752261,5
+60201729,25752261,5
+73571891,25752261,5
+68500162,25752261,3
+74553266,25752261,3
+dober,25752261,4
+56623440,25752261,3
+67134272,25752261,4
+84162494,25752261,4
+51940752,25752261,5
+47854967,25752261,4
+3278392,25752261,4
+candicechang,25752261,5
+61504169,25752261,4
+52529736,25752261,4
+51439533,25752261,4
+49543670,25752261,4
+W3IQ7,25752261,3
+115660168,25752261,4
+changefiona,25752261,4
+48164798,25752261,3
+everytimedouble,25752261,3
+1284659,25752261,3
+sunzeya,25752261,4
+dmyra1011,25752261,4
+qingmuwu,25752261,5
+70310265,25752261,4
+didopyj,25752261,3
+moxiaocai,25752261,3
+67589382,25752261,4
+126152053,25752261,3
+69066580,25752261,5
+52622213,25752261,3
+68698952,25752261,3
+121902065,25752261,5
+Nanamii,25752261,4
+stuyannnnnnnnnn,25752261,3
+ftjason,25752261,4
+zdoudou,25752261,1
+62999603,25752261,3
+weenn,25752261,5
+100416475,25752261,4
+KUBRICK2OO1,25752261,4
+34505710,25752261,4
+ice_pudding,25752261,3
+48198502,25752261,5
+1088676,25752261,2
+fallenshaman,25752261,3
+42936334,25752261,5
+woshisu3,25752261,3
+dianat,25752261,4
+2036072,25752261,4
+76153086,25752261,4
+amy0303,25752261,3
+47473847,25752261,4
+87035372,25752261,3
+47471768,25752261,2
+87222005,25752261,4
+53269895,25752261,3
+nodane,25752261,4
+lynnwhite,25752261,5
+101513427,25752261,2
+72719769,25752261,4
+2768259,25752261,4
+4614210,25752261,3
+75743298,25752261,5
+1316371,25752261,5
+PC_Mancola,25752261,3
+64854726,25752261,3
+49529006,25752261,2
+lyx906,25752261,4
+70248212,25752261,5
+hayden001,25752261,4
+AndiChiao,25752261,4
+Polo79,25752261,3
+4332615,25752261,5
+bell-wind,25752261,4
+mpower007,25752261,3
+autumnalequinox,25752261,3
+Milk_Solo,25752261,5
+qunlangzhishou,25752261,4
+42826387,25752261,3
+56223706,25752261,4
+56921766,25752261,5
+mp4_20,25752261,3
+Phlypig,25752261,5
+57088195,25752261,4
+63343294,25752261,-1
+Amulp,25752261,3
+snokin,25752261,4
+58941013,25752261,4
+48826276,25752261,4
+56922610,25752261,5
+renchicheng,25752261,4
+60002715,25752261,3
+dnarna_vicky,25752261,-1
+rayeah,25752261,5
+50023640,25752261,3
+52581971,25752261,4
+dyinbride,25752261,4
+43703653,25752261,3
+46812658,25752261,3
+huanhai,25752261,3
+33328876,25752261,5
+terrann,25752261,2
+2476748,25752261,4
+neblue,25752261,4
+qjk,25752261,4
+59107827,25752261,5
+enchanted13,25752261,3
+cyanu,25752261,3
+61823164,25752261,3
+60065221,25752261,3
+Jennytakun,25752261,5
+pxyushu,25752261,5
+2438025,25752261,3
+chrisicgong,25752261,2
+mrbrooks,25752261,4
+dudunvmotou,25752261,3
+45207380,25752261,3
+122605310,25752261,3
+pennycatii,25752261,4
+blacksora,25752261,4
+53462734,25752261,4
+Sonicmorphine,25752261,3
+44182814,25752261,4
+yzkk821,25752261,2
+Jellyfish1993,25752261,4
+28865787,25752261,4
+joyousjoy,25752261,5
+fatfatpanda,25752261,5
+jolinxian,25752261,4
+113224928,25752261,-1
+97977278,25752261,3
+lee_way,25752261,4
+37216410,25752261,4
+45577366,25752261,3
+kelvinshaw,25752261,3
+124558052,25752261,3
+fuckyoubuddy,25752261,4
+122981729,25752261,3
+27028067,25752261,4
+87651171,25752261,5
+sissigoon,25752261,5
+33226742,25752261,4
+69146144,25752261,3
+41786270,25752261,3
+51945136,25752261,3
+46818877,25752261,4
+55825179,25752261,4
+64477541,25752261,3
+39745338,25752261,4
+ricy-rice,25752261,-1
+52143519,25752261,3
+51860476,25752261,3
+3421677,25752261,4
+78656769,25752261,5
+107581698,25752261,4
+3534002,25752261,-1
+49703092,25752261,3
+34245713,25752261,4
+104427009,25752261,3
+agenta,25752261,5
+shunong,25752261,3
+34193357,25752261,5
+HL0919,25752261,3
+64110948,25752261,4
+Forrestgary,25752261,5
+61506971,25752261,5
+58865216,25752261,4
+vensia,25752261,3
+4557738,25752261,3
+49177191,25752261,3
+ronmul,25752261,3
+97431474,25752261,4
+53982181,25752261,3
+annbabyyan,25752261,3
+7669558,25752261,4
+45312368,25752261,3
+43970229,25752261,-1
+fengshurui,25752261,-1
+1978997,25752261,5
+52636646,25752261,4
+72682584,25752261,3
+2265615,25752261,4
+wangyiyi,25752261,4
+Lance_lc,25752261,3
+52791114,25752261,3
+51287977,25752261,4
+EvilCat,25752261,5
+68835916,25752261,3
+dingtan,25752261,4
+melancholyhill,25752261,4
+120008046,25752261,4
+89451365,25752261,4
+49312818,25752261,4
+80794899,25752261,4
+66926887,25752261,4
+65675536,25752261,5
+115552732,25752261,3
+48880965,25752261,4
+97277841,25752261,3
+2201380,25752261,5
+EdwardLear,25752261,4
+75803122,25752261,5
+54036678,25752261,4
+121328872,25752261,5
+70214878,25752261,4
+q164511490,25752261,4
+4404354,25752261,5
+75215757,25752261,4
+1767558,25752261,4
+heyheygun,25752261,3
+62376787,25752261,4
+81240800,25752261,4
+60861914,25752261,2
+12074004,25752261,4
+everlastingEGO,25752261,3
+58044228,25752261,3
+oakhui,25752261,5
+65079476,25752261,3
+66224726,25752261,5
+RainbowRen,25752261,3
+58942968,25752261,5
+72774742,25752261,4
+xjh0509,25752261,5
+77092352,25752261,3
+princessqfy,25752261,5
+59604055,25752261,3
+91437515,25752261,4
+50900048,25752261,3
+yalindongdong,25752261,3
+71316784,25752261,3
+128799458,25752261,5
+VenusDoom,25752261,4
+59068262,25752261,5
+duskbreeze,25752261,3
+34174788,25752261,-1
+Xingda,25752261,5
+ciaoxu,25752261,4
+fischer1111,25752261,5
+4668466,25752261,3
+51274941,25752261,-1
+51602608,25752261,3
+1452797,25752261,3
+64124840,25752261,3
+Shahtoosh,25752261,4
+58059498,25752261,3
+susiewater,25752261,5
+tender_night,25752261,3
+superpandaba,25752261,-1
+ayiann,25752261,4
+14461239,25752261,4
+ILWTFT,25752261,2
+adamhsieh,25752261,4
+celebrate,25752261,4
+57943867,25752261,4
+48369826,25752261,1
+lyming,25752261,4
+33914811,25752261,-1
+36008103,25752261,5
+inknheart,25752261,5
+papaduty,25752261,4
+gloria1102,25752261,3
+acgfan,25752261,5
+98436048,25752261,3
+chengjin,25752261,5
+55656004,25752261,4
+livelongandpros,25752261,5
+62996238,25752261,-1
+rilisi,25752261,5
+1886385,25752261,3
+xiaoweiwang,25752261,3
+47709338,25752261,3
+juno2011,25752261,4
+gracebaobao,25752261,4
+20657820,25752261,5
+Jannalu,25752261,5
+xfile99,25752261,3
+FILANIEYOTE,25752261,4
+42585603,25752261,3
+michaelhhu,25752261,5
+79016211,25752261,5
+59799961,25752261,2
+53942242,25752261,4
+49893816,25752261,3
+dawn1n,25752261,4
+xiaoqili,25752261,3
+71770049,25752261,4
+manxiaoyue,25752261,4
+62069415,25752261,4
+35383379,25752261,3
+shannonsummer,25752261,4
+54069821,25752261,3
+61540867,25752261,4
+43237878,25752261,3
+54159008,25752261,4
+1614995,25752261,3
+34483971,25752261,3
+wzn,25752261,3
+2761343,25752261,-1
+67619742,25752261,4
+49870243,25752261,4
+2052146,25752261,-1
+78795036,25752261,1
+50398793,25752261,3
+feifei0806,25752261,4
+4119152,25752261,4
+68942746,25752261,5
+Aileen0825,25752261,4
+69805658,25752261,3
+57653061,25752261,4
+24806813,25752261,3
+shirleycapri,25752261,3
+shipisanliang,25752261,-1
+44079904,25752261,4
+63989347,25752261,4
+50939193,25752261,3
+39299123,25752261,3
+shyeong,25752261,4
+56910905,25752261,4
+1154633,25752261,4
+69682298,25752261,4
+btone0808,25752261,3
+74783952,25752261,4
+41419698,25752261,4
+Janny_blue,25752261,5
+cuoyiban,25752261,4
+charlottey,25752261,4
+dbhungry,25752261,3
+shanguicheng,25752261,5
+d.brown,25752261,4
+cain69,25752261,4
+122256280,25752261,5
+giochen,25752261,4
+72387570,25752261,3
+2352053,25752261,4
+wwnoah,25752261,5
+61398424,25752261,4
+2842455,25752261,3
+51402290,25752261,3
+pigmoon,25752261,4
+Lynniass,25752261,5
+bellewang,25752261,5
+44862479,25752261,4
+49004115,25752261,3
+SoniaLu-douban,25752261,4
+128514178,25752261,4
+71125053,25752261,5
+71179408,25752261,3
+fayyuki,25752261,4
+58148727,25752261,3
+kuku_yang,25752261,4
+Hex79696e67,25752261,2
+wallaceLee,25752261,3
+cx9146,25752261,4
+61100322,25752261,5
+viviwanghoho,25752261,4
+lianmaomi,25752261,5
+51157596,25752261,4
+yukinari999,25752261,3
+shelleyhsu,25752261,3
+51264470,25752261,5
+2295266,25752261,5
+91268300,25752261,5
+zhangxingshen,25752261,4
+HanHi,25752261,1
+orangesuan,25752261,4
+sambolero,25752261,5
+41440075,25752261,4
+lcaesar,25752261,5
+rocwang,25752261,3
+53518992,25752261,5
+48604788,25752261,3
+colinpanda,25752261,4
+1051503,25752261,4
+chidoufuma,25752261,2
+77267201,25752261,4
+adlonely,25752261,5
+37424688,25752261,3
+xianxianchen,25752261,5
+sho2mon4e4y,25752261,4
+62072231,25752261,4
+53301589,25752261,4
+totozhang,25752261,5
+63133964,25752261,4
+catvoldemort,25752261,5
+leslied41,25752261,5
+fuckyeahdelia,25752261,5
+33597419,25752261,4
+49761291,25752261,4
+47609007,25752261,3
+51777015,25752261,4
+53247764,25752261,3
+jess1cal,25752261,2
+68878726,25752261,3
+29515987,25752261,4
+rki,25752261,5
+53908274,25752261,2
+geoffero,25752261,3
+42689506,25752261,4
+zhaoyao0919,25752261,3
+75231611,25752261,5
+terry_f,25752261,4
+kaojiesi,25752261,4
+kirsten7,25752261,5
+104261144,25752261,3
+81325605,25752261,3
+Sharpay0405,25752261,3
+jasontodd,25752261,3
+72365328,25752261,5
+lephemera,25752261,3
+JoooNE,25752261,5
+iliuweiming,25752261,4
+120287193,25752261,4
+48349088,25752261,4
+78548156,25752261,4
+3377097,25752261,5
+36138367,25752261,4
+50826750,25752261,5
+59623092,25752261,4
+47241007,25752261,2
+linkahay,25752261,4
+92133935,25752261,4
+shuimudeyu1990,25752261,3
+wjscxx,25752261,4
+3588917,25752261,3
+xiaosongstory,25752261,5
+44963286,25752261,5
+89516875,25752261,2
+nathaliema,25752261,3
+62135529,25752261,5
+violetmelody,25752261,4
+50181250,25752261,4
+68738740,25752261,3
+32008707,25752261,5
+50166201,25752261,4
+2853604,25752261,3
+checy,25752261,5
+50673336,25752261,5
+iampromise,25752261,5
+skye1110,25752261,5
+magic.rhythm,25752261,3
+101747870,25752261,4
+laaviee,25752261,3
+67803227,25752261,3
+42366991,25752261,5
+51490120,25752261,5
+windcqy,25752261,4
+41868148,25752261,4
+dusk.xiyang,25752261,3
+54631317,25752261,2
+58805947,25752261,4
+52237739,25752261,4
+evilynq,25752261,4
+41742715,25752261,4
+8603145,25752261,4
+2625374,25752261,3
+3548440,25752261,4
+2963229,25752261,4
+40225013,25752261,4
+47796650,25752261,4
+Mayk,25752261,3
+3673640,25752261,5
+misscalla,25752261,4
+WelfareHealth,25752261,4
+4584476,25752261,3
+72918708,25752261,3
+inameless,25752261,4
+98009481,25752261,5
+4253202,25752261,4
+iceba,25752261,5
+Du_sunflower,25752261,5
+um_banana,25752261,4
+92061156,25752261,3
+proband,25752261,4
+Lynd,25752261,5
+76624951,25752261,4
+66936799,25752261,4
+48942164,25752261,4
+severus,25752261,5
+carinawang,25752261,4
+63146725,25752261,5
+Sherlock.B,25752261,4
+jyamolmiry,25752261,5
+64511968,25752261,2
+gracencharles,25752261,5
+43594988,25752261,5
+54463600,25752261,3
+73681830,25752261,4
+Hua_huA,25752261,5
+dorislee63,25752261,4
+130581811,25752261,4
+4635910,25752261,5
+AubreySoong,25752261,4
+dramatic150,25752261,4
+47417998,25752261,3
+6855830,25752261,1
+59769605,25752261,3
+83993012,25752261,4
+35066546,25752261,4
+cocageng,25752261,3
+59005316,25752261,2
+nongnong424,25752261,3
+face_off,25752261,4
+38774242,25752261,4
+JunSta,25752261,4
+backinblack,25752261,3
+cclitost,25752261,4
+zhongxueyin,25752261,4
+kianfish,25752261,-1
+Summer_passion,25752261,3
+40195954,25752261,3
+xiaoduzi,25752261,3
+icemankobe,25752261,3
+doylerao,25752261,5
+Cecil.,25752261,3
+52705401,25752261,4
+deerainy,25752261,5
+LeeAnson,25752261,5
+130504774,25752261,4
+52046312,25752261,5
+42165209,25752261,4
+12644505,25752261,5
+2644737,25752261,4
+kuangbi,25752261,4
+suekyshi,25752261,4
+rurucat,25752261,3
+41069819,25752261,4
+4231536,25752261,5
+4266952,25752261,4
+kaolaxing,25752261,2
+82254270,25752261,5
+54433785,25752261,4
+guoguo427,25752261,-1
+awesomedragon,25752261,5
+49191644,25752261,4
+3569551,25752261,-1
+63699428,25752261,5
+66161914,25752261,5
+65417437,25752261,3
+daphew,25752261,4
+shadow_break,25752261,4
+2220298,25752261,4
+yucca26,25752261,4
+128606226,25752261,3
+2711254,25752261,3
+75242193,25752261,5
+wuxiang1203,25752261,3
+46126944,25752261,4
+samantha-jy,25752261,3
+cvisy,25752261,3
+RITABMW,25752261,4
+xweiway,25752261,5
+53592125,25752261,3
+53592125,25752261,3
+68530717,25752261,3
+garywongpk,25752261,3
+28013682,25752261,5
+1634975,25752261,3
+17912150,25752261,4
+xuqianxun,25752261,4
+JY-DAI,25752261,4
+48119983,25752261,4
+1016029,25752261,4
+31591592,25752261,5
+119277789,25752261,5
+58905615,25752261,4
+Amandaland,25752261,4
+4407883,25752261,4
+dinfinity,25752261,4
+fishfeimi,25752261,3
+n-i-o,25752261,5
+hijikataT,25752261,4
+125391105,25752261,4
+53941925,25752261,5
+changgu4290,25752261,3
+49845781,25752261,5
+59553766,25752261,3
+xiashizhang,25752261,2
+62465119,25752261,5
+4860409,25752261,4
+rachelff,25752261,3
+60120741,25752261,1
+stacy-agony,25752261,5
+daphneleaf,25752261,5
+56523090,25752261,5
+48709459,25752261,4
+sadness,25752261,4
+monser,25752261,5
+46702896,25752261,4
+55340250,25752261,-1
+83100870,25752261,5
+orry-lee,25752261,5
+34461821,25752261,3
+34461821,25752261,3
+64067029,25752261,3
+48578756,25752261,5
+takifugu,25752261,3
+66346680,25752261,4
+57950348,25752261,4
+monkeywoman,25752261,4
+36791649,25752261,4
+80816818,25752261,3
+62450111,25752261,4
+62253276,25752261,2
+1274020,25752261,3
+missdonglian,25752261,5
+Brad_King,25752261,4
+xumhandy,25752261,4
+35963638,25752261,5
+et2o,25752261,4
+34028726,25752261,5
+ohghost,25752261,3
+127728111,25752261,3
+68341229,25752261,4
+belyone,25752261,3
+blue_stone,25752261,4
+nathanyun,25752261,4
+lil1314,25752261,3
+luvis1499,25752261,3
+2263279,25752261,5
+40061842,25752261,5
+7609988,25752261,3
+33285857,25752261,5
+1924272,25752261,4
+G--er,25752261,3
+75691865,25752261,4
+44258193,25752261,3
+58499826,25752261,5
+55364280,25752261,5
+ruoxingyi,25752261,3
+4205911,25752261,4
+daijialu1992,25752261,5
+66967830,25752261,5
+44576253,25752261,4
+mrcoolchina,25752261,4
+petercat,25752261,3
+nanka,25752261,5
+46511566,25752261,5
+55694141,25752261,4
+leonrara,25752261,5
+cvzl,25752261,5
+48735350,25752261,5
+76086734,25752261,4
+56970395,25752261,3
+thesue,25752261,4
+fivero,25752261,4
+ffantuan,25752261,5
+29827748,25752261,5
+megkim,25752261,4
+huacanghua,25752261,4
+120781613,25752261,4
+woshuoshuoshuo,25752261,5
+vivie7,25752261,5
+4042513,25752261,4
+truth3204,25752261,3
+zipaiwang,25752261,3
+16446452,25752261,4
+59556078,25752261,4
+62917415,25752261,4
+camia,25752261,5
+41511401,25752261,3
+appreciate,25752261,4
+1736671,25752261,3
+lsloveshow,25752261,4
+julia_duan,25752261,3
+48229823,25752261,4
+petitespot,25752261,4
+deardarling,25752261,4
+nathaneil,25752261,4
+55635987,25752261,5
+zillyromantic,25752261,5
+59733385,25752261,4
+lostinfire,25752261,5
+1296624,25752261,4
+15277249,25752261,4
+2401213,25752261,5
+49988296,25752261,3
+58283106,25752261,4
+sidneylumet,25752261,4
+Elsa.pan,25752261,4
+49243034,25752261,5
+willgabuta,25752261,5
+zechewang007,25752261,3
+iris77here,25752261,4
+56144263,25752261,4
+63376089,25752261,3
+65009709,25752261,4
+shallwe07,25752261,3
+kang8,25752261,5
+63364633,25752261,4
+4068114,25752261,4
+Hanry7,25752261,5
+honeybluesky,25752261,5
+58576630,25752261,2
+elephanthuihui,25752261,5
+93534509,25752261,4
+jomey,25752261,5
+122804233,25752261,5
+3519238,25752261,5
+54386309,25752261,4
+50823402,25752261,4
+greenhe,25752261,4
+2288541,25752261,4
+Moretoless,25752261,4
+chris0303,25752261,5
+xlee,25752261,4
+54525580,25752261,4
+45112751,25752261,5
+RossoneriViola,25752261,5
+viona,25752261,5
+56085509,25752261,4
+57818309,25752261,4
+zoe0124,25752261,5
+oursonkuma,25752261,3
+thandiwe,25752261,3
+YuRAY,25752261,4
+48158308,25752261,3
+39091136,25752261,5
+Populusalba,25752261,3
+essy,25752261,5
+highmore91,25752261,4
+49082695,25752261,4
+wndhaor,25752261,3
+2044636,25752261,5
+61468495,25752261,2
+92399399,25752261,3
+49068854,25752261,4
+brainlesscong,25752261,4
+72166467,25752261,4
+54947013,25752261,3
+inkhkkk,25752261,4
+halfling,25752261,4
+bubblelam,25752261,4
+vanessa07,25752261,5
+38651346,25752261,4
+51231937,25752261,5
+yangshuangblue,25752261,3
+45845721,25752261,4
+1952334,25752261,3
+dawdle,25752261,4
+84433988,25752261,4
+66302726,25752261,3
+sbbisabel,25752261,-1
+cat_rs,25752261,4
+2311976,25752261,3
+wklappt,25752261,4
+1845330,25752261,5
+58801678,25752261,5
+85090983,25752261,4
+ossianshiwo,25752261,3
+47777105,25752261,4
+68952917,25752261,5
+53203892,25752261,5
+57799081,25752261,5
+elinnao,25752261,3
+1249947,25752261,3
+51965596,25752261,4
+49270565,25752261,4
+Ask,25752261,4
+54845592,25752261,4
+jessezheng,25752261,3
+jiqingyi,25752261,4
+compauline1010,25752261,5
+53024139,25752261,4
+morphinerouge,25752261,4
+66397755,25752261,4
+1061640,25752261,3
+chrisWen,25752261,4
+camillushi,25752261,5
+125886098,25752261,4
+57351487,25752261,3
+kokia233,25752261,5
+harveyz,25752261,5
+47493762,25752261,2
+lunamu,25752261,3
+82553066,25752261,5
+sunny1992,25752261,3
+jaycee103,25752261,4
+donglaixia,25752261,3
+79272694,25752261,4
+29107256,25752261,3
+64154441,25752261,4
+planeyang,25752261,4
+babywineer,25752261,3
+65178670,25752261,4
+80897105,25752261,-1
+61775783,25752261,5
+26641956,25752261,4
+DJeliza,25752261,4
+mrbrightside,25752261,4
+28681555,25752261,4
+18851959,25752261,3
+50735225,25752261,5
+51992165,25752261,5
+2852065,25752261,5
+44001066,25752261,3
+janicefish,25752261,4
+AdaDream,25752261,3
+16678998,25752261,5
+54131075,25752261,5
+foreveryoung01,25752261,5
+awp625691500,25752261,5
+lumin1989,25752261,5
+3680251,25752261,4
+ruo1996,25752261,4
+cylarzc,25752261,4
+13280049,25752261,4
+ben0813,25752261,4
+ClockSheepZ,25752261,5
+Teresa.O_O,25752261,4
+oli_piglet,25752261,3
+guoyandao,25752261,3
+funvdaduoduo,25752261,5
+Pabalee,25752261,4
+lesile,25752261,3
+tiffanyqiang,25752261,5
+2701375,25752261,3
+44481656,25752261,5
+izume,25752261,5
+ziyanhe,25752261,4
+Illbeamyouup,25752261,5
+XIAOTUTONG,25752261,3
+63965908,25752261,4
+84356883,25752261,4
+zhecx,25752261,4
+janetbubble,25752261,3
+afa1021,25752261,5
+102812397,25752261,4
+92118420,25752261,5
+love_of_kitty,25752261,5
+cowbie,25752261,4
+mschang,25752261,5
+58011320,25752261,4
+zzhumemory,25752261,4
+1477764,25752261,3
+VicW330,25752261,5
+apple475,25752261,5
+52111433,25752261,3
+53066275,25752261,5
+50219893,25752261,4
+85573817,25752261,4
+4624578,25752261,4
+38556715,25752261,5
+noel_89,25752261,4
+fuckinghate,25752261,-1
+fifiyard,25752261,5
+rargeyy,25752261,5
+MooTheMonster,25752261,5
+jesterselby,25752261,4
+UnaAmazon,25752261,-1
+53370793,25752261,5
+Etoilefilante,25752261,4
+54711543,25752261,4
+97840419,25752261,4
+sevenready,25752261,4
+21197410,25752261,4
+47639252,25752261,3
+carerina,25752261,4
+imnothan,25752261,5
+chibbo,25752261,5
+79163764,25752261,5
+41464421,25752261,5
+45968027,25752261,4
+57390567,25752261,5
+xiaodaoyang,25752261,5
+kwokchloe,25752261,5
+JasonEllision,25752261,3
+sheldonkao,25752261,3
+Ethan_,25752261,4
+71455965,25752261,4
+lyuri,25752261,5
+31622009,25752261,4
+47008277,25752261,3
+2830816,25752261,5
+jaerson,25752261,4
+bayer04040404,25752261,5
+taylorwang,25752261,3
+lucywang53,25752261,4
+Pincent,25752261,4
+cuicanhaha,25752261,4
+Linkinport,25752261,4
+terryhangover,25752261,4
+52698885,25752261,4
+sundayikel,25752261,-1
+52226268,25752261,4
+electroniXtar,25752261,5
+EstellaSun,25752261,3
+leafmela,25752261,2
+starrrrrr,25752261,5
+73660377,25752261,4
+2777454,25752261,-1
+1324290,25752261,3
+wangxhtt,25752261,5
+tev,25752261,4
+diafarona,25752261,2
+37296535,25752261,5
+44542197,25752261,-1
+1159054,25752261,5
+52097875,25752261,3
+46797478,25752261,5
+Queenlotus,25752261,4
+ivygreen06,25752261,5
+wsyzoscar,25752261,4
+bingbingaloe,25752261,5
+echodtatu,25752261,5
+4009151,25752261,4
+63553338,25752261,5
+youngtoo,25752261,4
+linger37,25752261,3
+60785904,25752261,4
+yixuananana,25752261,4
+57925888,25752261,4
+4697106,25752261,5
+3412571,25752261,4
+52889400,25752261,2
+LunaticSothis,25752261,4
+HayleyWestrate,25752261,-1
+68379103,25752261,4
+staryanxing,25752261,5
+reader-shuo,25752261,-1
+51795288,25752261,5
+52375179,25752261,4
+61485332,25752261,3
+vivamian,25752261,3
+53022241,25752261,4
+naomi724,25752261,4
+fishandbicycle,25752261,4
+27979325,25752261,5
+L.D.king,25752261,5
+81476241,25752261,4
+terrubunny,25752261,4
+3869259,25752261,4
+53404081,25752261,5
+53404081,25752261,5
+1832033,25752261,5
+imjanette,25752261,5
+62554972,25752261,5
+Hunter2046,25752261,4
+112088753,25752261,4
+Neoo0,25752261,4
+75940485,25752261,4
+39288960,25752261,3
+FEL_Murasakiiro,25752261,3
+acepatrick,25752261,4
+80066409,25752261,4
+qingmingchen,25752261,-1
+47882725,25752261,4
+jasonchang1991,25752261,5
+3934357,25752261,5
+64700587,25752261,3
+edisonme,25752261,3
+guanjunyan,25752261,-1
+bdhztian,25752261,3
+zhu1ping,25752261,4
+AstridL411,25752261,4
+1651604,25752261,3
+37677418,25752261,5
+68095660,25752261,5
+duanduankong,25752261,4
+56971084,25752261,4
+103105403,25752261,4
+93527647,25752261,4
+55845400,25752261,5
+KidTJ,25752261,5
+50139520,25752261,5
+gomorrha,25752261,4
+55389424,25752261,4
+44070862,25752261,4
+btjd,25752261,4
+3175914,25752261,2
+45641492,25752261,5
+SukiJin,25752261,4
+46340614,25752261,5
+4095323,25752261,4
+heptahedron,25752261,5
+42074061,25752261,4
+95313700,25752261,4
+64090284,25752261,5
+CarpDiem,25752261,4
+4883112,25752261,4
+31634567,25752261,5
+zmiya,25752261,2
+hibeauty,25752261,5
+44600352,25752261,4
+46822299,25752261,5
+shalouzhitong,25752261,5
+wildold,25752261,4
+60094901,25752261,3
+44072732,25752261,-1
+4643266,25752261,5
+39294617,25752261,4
+lozzy,25752261,4
+2370961,25752261,4
+Clarke,25752261,3
+xulu_films,25752261,5
+lunatique,25752261,4
+Espejos_,25752261,4
+hilaryaom,25752261,4
+vplumage,25752261,4
+Secilia,25752261,4
+sonfeo,25752261,3
+Aretha,25752261,4
+deathlegend,25752261,-1
+beatricehzp,25752261,5
+49420713,25752261,4
+60046891,25752261,4
+3680323,25752261,4
+pinkopink,25752261,4
+fang0079,25752261,5
+48341626,25752261,5
+72183184,25752261,4
+Sara_13,25752261,4
+21771687,25752261,5
+21771687,25752261,5
+emmalaw,25752261,3
+53997661,25752261,3
+48510715,25752261,5
+xiza,25752261,4
+56978693,25752261,5
+Langsdfsdf,25752261,3
+jackiex,25752261,5
+103629201,25752261,5
+cathove646,25752261,4
+113001047,25752261,5
+moyanmoyu,25752261,3
+kidpt,25752261,3
+46919543,25752261,5
+120913568,25752261,4
+shadow.u,25752261,4
+51923237,25752261,5
+hengacheung,25752261,5
+wcngsjb,25752261,4
+35595189,25752261,5
+48661159,25752261,3
+yuanfounder,25752261,-1
+4441887,25752261,4
+yaoyaodaren,25752261,3
+19676752,25752261,5
+48427771,25752261,4
+52395639,25752261,4
+finsy,25752261,5
+baoshumin,25752261,3
+48787128,25752261,5
+56223234,25752261,4
+69751106,25752261,4
+69122945,25752261,4
+76356022,25752261,4
+EthanWine,25752261,4
+tricky_V,25752261,3
+samsyu,25752261,4
+39446038,25752261,5
+75606386,25752261,4
+foreverlethe,25752261,5
+58497726,25752261,4
+46843344,25752261,3
+fenglao,25752261,2
+84700364,25752261,3
+56403979,25752261,4
+caroline_lls,25752261,4
+49430506,25752261,3
+christywitch,25752261,5
+43802399,25752261,4
+mengdalian,25752261,4
+yoyo_wu,25752261,3
+doomedlover,25752261,3
+1762540,25752261,3
+Sean__Wang,25752261,5
+71053452,25752261,4
+lizlee0601,25752261,5
+wuzhaozhao,25752261,4
+NinevehQ,25752261,4
+51943044,25752261,4
+Liircu,25752261,-1
+67331748,25752261,3
+4299219,25752261,3
+helio,25752261,4
+veronica0607,25752261,3
+60237257,25752261,5
+fionacaiqi,25752261,4
+81404706,25752261,3
+bunny-say,25752261,4
+summerholiday,25752261,4
+fenglimuren,25752261,4
+2213588,25752261,4
+70043510,25752261,5
+tenko,25752261,5
+lingdariver,25752261,-1
+62469238,25752261,4
+65113652,25752261,3
+81003990,25752261,4
+88938201,25752261,4
+59658494,25752261,-1
+2996377,25752261,5
+39255754,25752261,4
+68843343,25752261,2
+47476631,25752261,5
+goldenhornking,25752261,4
+jieou1984,25752261,4
+didijia,25752261,4
+qq530898920,25752261,4
+25329087,25752261,4
+amberose,25752261,5
+piecelost,25752261,5
+56160592,25752261,2
+80063534,25752261,5
+69386924,25752261,4
+60475552,25752261,4
+43335184,25752261,4
+xiaoruizi,25752261,5
+48877194,25752261,3
+windson7,25752261,4
+buddhajump,25752261,2
+ice_bloom,25752261,4
+dixonzhang,25752261,4
+hebe_linchao,25752261,5
+starrynite,25752261,4
+oopsvanessa,25752261,-1
+3691637,25752261,5
+b_less,25752261,5
+4161702,25752261,5
+alacrity516,25752261,3
+abcclk,25752261,5
+stetehe,25752261,4
+1780860,25752261,4
+leprechaun,25752261,3
+45448846,25752261,4
+4263312,25752261,4
+57727663,25752261,4
+smshuimu,25752261,4
+126513997,25752261,4
+suowan,25752261,4
+54400244,25752261,4
+1935824,25752261,3
+baixg,25752261,-1
+liweiheng,25752261,4
+80715123,25752261,4
+lyxx0728,25752261,5
+60788989,25752261,4
+53061557,25752261,4
+75209751,25752261,3
+andrewrhao,25752261,4
+MissPrissy,25752261,4
+Ivy_bramble,25752261,4
+46300049,25752261,-1
+32643935,25752261,5
+ScarletShikY,25752261,4
+64894018,25752261,5
+49895670,25752261,4
+99215743,25752261,4
+owen289607833,25752261,4
+85168864,25752261,4
+zuochangyu,25752261,4
+sizhuite,25752261,4
+xianyu719,25752261,3
+58087167,25752261,4
+85324202,25752261,4
+yumu2015,25752261,4
+67711452,25752261,4
+64780091,25752261,4
+jisixue0111,25752261,4
+14699938,25752261,4
+11020421,25752261,3
+66802637,25752261,4
+53405330,25752261,5
+65758167,25752261,4
+66460349,25752261,3
+41627268,25752261,5
+60374077,25752261,1
+bxg555,25752261,-1
+graceyangzi,25752261,5
+naughtyguy,25752261,4
+4440208,25752261,4
+douzihao,25752261,5
+Sophieven,25752261,4
+48502563,25752261,3
+eaufavor,25752261,5
+4022317,25752261,4
+junyong,25752261,5
+1226511,25752261,4
+58523222,25752261,3
+wanxiaojin,25752261,4
+helenjiao,25752261,5
+Chrisqi,25752261,4
+69068097,25752261,5
+69454424,25752261,5
+banxian,25752261,4
+aaaaaaalice,25752261,4
+mocnabuodouhs,25752261,4
+77794824,25752261,3
+50585223,25752261,5
+57149541,25752261,3
+NatsuSea,25752261,4
+44317755,25752261,5
+miumiu444,25752261,4
+hellomaggie,25752261,5
+2202216,25752261,4
+47239979,25752261,4
+59035457,25752261,5
+33396944,25752261,4
+45794051,25752261,5
+68416685,25752261,5
+xiaofangma,25752261,3
+25923908,25752261,5
+60577747,25752261,4
+msfigaro,25752261,5
+Lee_0618,25752261,5
+cassiopeiaxiah,25752261,4
+48789543,25752261,4
+puhuahua,25752261,5
+1225917,25752261,3
+mongly,25752261,3
+nanlu665,25752261,5
+ericandlisa,25752261,3
+ericandlisa,25752261,3
+81369320,25752261,5
+alan_fanfan,25752261,3
+kidaliu,25752261,4
+echoooz,25752261,4
+pillbug,25752261,4
+64519164,25752261,3
+25468044,25752261,5
+51073562,25752261,4
+7400552,25752261,4
+76432110,25752261,4
+werder100,25752261,4
+47941742,25752261,3
+brad_tsye,25752261,3
+43966741,25752261,4
+Vampire0704,25752261,4
+Ron1230,25752261,4
+47144465,25752261,4
+78487387,25752261,5
+bearblindman,25752261,5
+78134557,25752261,4
+83116335,25752261,3
+lilibuth,25752261,5
+59376067,25752261,-1
+55480143,25752261,5
+44245225,25752261,4
+65058502,25752261,5
+PinKame,25752261,4
+Vincentknight,25752261,4
+1688067,25752261,-1
+3435212,25752261,5
+47788131,25752261,5
+entendu,25752261,4
+43260783,25752261,2
+57701070,25752261,4
+purepureheart,25752261,5
+beiliya6261,25752261,3
+emma777,25752261,4
+bimbo,25752261,4
+xc-cindy,25752261,5
+omenjoy,25752261,5
+wywu1990,25752261,5
+47471992,25752261,4
+qwishu,25752261,4
+IAMVILLIAN,25752261,4
+kangtadlt,25752261,5
+besify,25752261,4
+2853059,25752261,5
+XinZee,25752261,4
+wtffffff,25752261,4
+1344334,25752261,4
+3341659,25752261,4
+13038312,25752261,3
+46914347,25752261,4
+40211763,25752261,4
+kaoya,25752261,5
+superegg.,25752261,4
+49575753,25752261,5
+MATTZ,25752261,5
+2438329,25752261,5
+4081670,25752261,4
+51377015,25752261,3
+souldive,25752261,3
+41430865,25752261,4
+renshengyingjia,25752261,3
+34476095,25752261,4
+3419902,25752261,5
+angelliujiayun,25752261,4
+yanniyanni,25752261,4
+zybxixi,25752261,5
+60142180,25752261,5
+66931955,25752261,5
+9386243,25752261,4
+4720392,25752261,4
+50083570,25752261,5
+2876544,25752261,5
+62294102,25752261,4
+65038272,25752261,4
+45959791,25752261,4
+dazhao,25752261,4
+Linqiny,25752261,3
+52413397,25752261,5
+waking,25752261,4
+alisontsai,25752261,5
+81016849,25752261,4
+TianTiana,25752261,5
+flora_dong,25752261,4
+NICOLE_,25752261,5
+48366651,25752261,4
+jjforever,25752261,4
+39725541,25752261,5
+102231174,25752261,5
+2977496,25752261,3
+moonwater,25752261,1
+SylviaWang,25752261,5
+Miracle0616,25752261,4
+tiamo_c,25752261,4
+2690106,25752261,4
+fishy,25752261,4
+49364738,25752261,3
+22871754,25752261,5
+44869983,25752261,5
+lucameow,25752261,5
+Charmaine,25752261,4
+daisywithlove,25752261,5
+55990119,25752261,4
+23904361,25752261,4
+yjrockon,25752261,4
+63642212,25752261,5
+64972660,25752261,3
+RR_Sherrol,25752261,5
+66237715,25752261,5
+neptune_smile,25752261,4
+jiangziwen,25752261,5
+rackylo,25752261,5
+suyanz,25752261,4
+tmbbf,25752261,5
+78802092,25752261,4
+53033730,25752261,5
+23251785,25752261,5
+edward1988,25752261,4
+3744867,25752261,4
+1385012,25752261,3
+crankysophia,25752261,4
+64407051,25752261,5
+sunny_S,25752261,3
+59335490,25752261,3
+soffeeyang,25752261,4
+no.41,25752261,3
+3526958,25752261,-1
+2640900,25752261,5
+chopinfisher,25752261,3
+52366349,25752261,3
+leayingly,25752261,5
+aptxkim,25752261,4
+74679165,25752261,4
+2228048,25752261,4
+dasyure,25752261,4
+Shellxiaosh,25752261,4
+129028198,25752261,3
+9678828,25752261,4
+34805156,25752261,3
+51898571,25752261,4
+evilQin,25752261,3
+derekyyc,25752261,5
+4600230,25752261,5
+44829604,25752261,5
+48813347,25752261,4
+65042146,25752261,3
+vkinoko,25752261,4
+49800908,25752261,5
+57674137,25752261,4
+51816710,25752261,4
+hisass,25752261,4
+2039887,25752261,4
+77905933,25752261,5
+ajiaclpk,25752261,5
+61664242,25752261,4
+jushang,25752261,4
+RivenZhong,25752261,4
+55338407,25752261,4
+notexist,25752261,3
+2578076,25752261,5
+68936887,25752261,4
+Garfield88,25752261,4
+119626702,25752261,5
+39051094,25752261,4
+violetljj,25752261,4
+sure,25752261,4
+58480998,25752261,4
+30758845,25752261,5
+3894700,25752261,4
+chiarachan,25752261,5
+siyannnn,25752261,5
+1740474,25752261,3
+53972660,25752261,5
+zeitlos,25752261,5
+121491174,25752261,4
+4117430,25752261,5
+offers,25752261,4
+lilyang,25752261,3
+AliceYmz,25752261,5
+lowai,25752261,5
+riverheai,25752261,5
+marilia0125,25752261,5
+58789251,25752261,4
+undeadmonster,25752261,3
+4147254,25752261,3
+2287090,25752261,5
+43233255,25752261,4
+71100061,25752261,5
+nowaysis,25752261,4
+haimengkai,25752261,5
+68906717,25752261,5
+3955015,25752261,1
+freeeeeeee,25752261,5
+violajoe,25752261,4
+17342003,25752261,4
+andyr0925,25752261,3
+65113325,25752261,5
+2456676,25752261,3
+drennuz,25752261,3
+89108079,25752261,4
+48474156,25752261,3
+6440487,25752261,4
+mubin,25752261,2
+AmadHatter,25752261,5
+iamsyh,25752261,4
+sadsea,25752261,4
+blair77,25752261,3
+skeer,25752261,5
+64708572,25752261,3
+yunmiwu,25752261,4
+tvxqforeveryj,25752261,5
+puttingpooh,25752261,3
+an__,25752261,4
+2458174,25752261,4
+wzdradon,25752261,5
+dearqun,25752261,5
+andriylin,25752261,4
+andriylin,25752261,4
+68794405,25752261,5
+millayQ,25752261,5
+2248658,25752261,5
+duddleBug,25752261,4
+pumpkin_s,25752261,4
+yixiugeagnes,25752261,4
+Uvo,25752261,4
+45072336,25752261,5
+4413248,25752261,4
+14627562,25752261,-1
+43087680,25752261,3
+35591333,25752261,5
+anyone,25752261,2
+73150320,25752261,4
+Ryansher,25752261,1
+zhouxin95,25752261,4
+sesame1002,25752261,3
+32023588,25752261,4
+okship,25752261,4
+68792801,25752261,4
+evan618,25752261,5
+avaxi,25752261,5
+season-ho,25752261,4
+muyuexueying,25752261,-1
+yangqiaohe,25752261,3
+shawnNK,25752261,4
+80115244,25752261,4
+38562636,25752261,4
+57639200,25752261,3
+65389752,25752261,4
+hall1c,25752261,4
+puppy22,25752261,5
+59993114,25752261,5
+kickyourleg,25752261,2
+49668025,25752261,5
+2596592,25752261,5
+52032404,25752261,2
+4175111,25752261,4
+ningning9164,25752261,-1
+Tipi.C,25752261,4
+ValentineQ,25752261,5
+72432038,25752261,4
+66836438,25752261,4
+53644977,25752261,4
+53253261,25752261,4
+3026733,25752261,3
+90900527,25752261,3
+serab1tch720,25752261,4
+Amo-L,25752261,5
+10208605,25752261,4
+smallove816,25752261,-1
+xinxinya,25752261,-1
+jemappelle651,25752261,4
+55321453,25752261,5
+48065350,25752261,5
+2377434,25752261,3
+Hanndiex_,25752261,5
+3881204,25752261,5
+tinywine,25752261,4
+3282615,25752261,5
+yangziyoko,25752261,5
+scarling,25752261,5
+14523458,25752261,5
+wayizh,25752261,-1
+51898920,25752261,4
+36805272,25752261,4
+47514336,25752261,5
+xujunhui,25752261,4
+57124272,25752261,4
+64716585,25752261,5
+52951268,25752261,3
+3918402,25752261,4
+46261227,25752261,4
+jonyzhou61,25752261,4
+wade,25752261,4
+an_girl,25752261,5
+6023961,25752261,3
+4283238,25752261,4
+supermikam,25752261,5
+61779592,25752261,4
+prejudice,25752261,4
+67841412,25752261,5
+88719620,25752261,5
+72133915,25752261,3
+shawryan,25752261,4
+48898232,25752261,4
+56776280,25752261,1
+53070283,25752261,4
+65400706,25752261,4
+alonso_frame,25752261,4
+35605638,25752261,5
+ecane,25752261,4
+8312118,25752261,4
+jluy,25752261,4
+troublemakerjoy,25752261,4
+47602699,25752261,4
+c.g,25752261,3
+imjason,25752261,5
+46692098,25752261,4
+46692098,25752261,4
+ananpsc,25752261,3
+71741760,25752261,4
+4527041,25752261,3
+landcrosser,25752261,5
+zhanyangying,25752261,4
+61030127,25752261,4
+deepkid,25752261,-1
+mophia,25752261,3
+49125980,25752261,5
+Kelsey.,25752261,4
+49877723,25752261,5
+49545340,25752261,4
+ltp19950208,25752261,4
+1631968,25752261,3
+45047336,25752261,3
+4273687,25752261,5
+32722540,25752261,5
+Aaaronwu,25752261,5
+35364683,25752261,4
+115299290,25752261,5
+123503132,25752261,5
+25240448,25752261,3
+49539687,25752261,3
+majolica,25752261,4
+47821826,25752261,4
+2275057,25752261,5
+klaus2015,25752261,5
+40069561,25752261,4
+subuuti,25752261,4
+47874303,25752261,4
+47026621,25752261,5
+sharonsama,25752261,4
+zetto,25752261,-1
+cukia,25752261,5
+51242421,25752261,5
+4165611,25752261,4
+halouwai,25752261,4
+mabokun,25752261,-1
+36250262,25752261,5
+lenglen,25752261,4
+cumming,25752261,5
+zuojian07,25752261,4
+poseidonbunny,25752261,4
+zhushu,25752261,4
+mericandy,25752261,5
+Mizleave,25752261,4
+davidyao1993,25752261,4
+67211309,25752261,4
+56552029,25752261,3
+43871169,25752261,3
+70121628,25752261,4
+79013811,25752261,5
+46492005,25752261,4
+hgn2007,25752261,3
+68966981,25752261,4
+48821553,25752261,5
+fashional,25752261,4
+kidsama,25752261,5
+28359015,25752261,4
+57224796,25752261,4
+issac_poon,25752261,4
+ythsxz,25752261,4
+withoutleaving,25752261,4
+49191100,25752261,4
+niler,25752261,4
+bluelsd,25752261,2
+3903753,25752261,4
+48322771,25752261,3
+45572942,25752261,5
+3812836,25752261,4
+4317448,25752261,4
+59864726,25752261,5
+75189651,25752261,4
+55943262,25752261,4
+sakimay,25752261,3
+shamkle,25752261,4
+65649327,25752261,4
+2762470,25752261,5
+51445023,25752261,5
+90553868,25752261,5
+62041665,25752261,4
+47844203,25752261,4
+Mmmmmmagica,25752261,5
+30408977,25752261,5
+Lanaliu,25752261,5
+xixi_c902,25752261,5
+50945725,25752261,3
+iammagic,25752261,5
+xinziai,25752261,4
+59372484,25752261,5
+6578851,25752261,4
+120313404,25752261,5
+3431847,25752261,5
+sandiagoge,25752261,5
+48623785,25752261,4
+120241385,25752261,5
+jackxyc,25752261,5
+variabled,25752261,5
+44365763,25752261,4
+linnjil,25752261,5
+paradoxofTM,25752261,5
+85671125,25752261,4
+candywong,25752261,3
+lamovrevx,25752261,5
+4324772,25752261,5
+se7en8736,25752261,4
+81134195,25752261,3
+hw4life,25752261,5
+JANETZHENG,25752261,4
+47877507,25752261,5
+KatherineLOL,25752261,5
+wangxiaok,25752261,5
+57818188,25752261,3
+92638103,25752261,5
+rebecaooo,25752261,5
+berialgreener,25752261,4
+fortunearn,25752261,4
+bg1212,25752261,5
+SadTomato,25752261,4
+miao0miao,25752261,4
+52076370,25752261,4
+Beth0204,25752261,4
+97211660,25752261,5
+83502519,25752261,5
+Celiac,25752261,5
+14466743,25752261,5
+whowho2008,25752261,4
+shelley_ni,25752261,4
+84384668,25752261,5
+yeeye,25752261,4
+1752320,25752261,4
+40303756,25752261,4
+85958266,25752261,3
+2192381,25752261,4
+ValJester,25752261,5
+keiiii,25752261,5
+Kkumako,25752261,4
+127513838,25752261,4
+45238478,25752261,5
+HeroineDaode,25752261,5
+blur4love,25752261,4
+suntt1987,25752261,5
+46845668,25752261,2
+29202485,25752261,5
+59237362,25752261,4
+126825775,25752261,2
+maixiaohuang,25752261,4
+47482651,25752261,4
+55619717,25752261,4
+Pathon,25752261,4
+53518939,25752261,4
+38652742,25752261,4
+superabigail,25752261,5
+chuyuan,25752261,4
+60566825,25752261,4
+5679595,25752261,-1
+wusequanwei,25752261,3
+32025786,25752261,4
+126514473,25752261,3
+60378678,25752261,5
+2401872,25752261,4
+xiaoxiao9061,25752261,4
+2944300,25752261,5
+Sammyzheng,25752261,3
+54107502,25752261,4
+50030842,25752261,5
+57783752,25752261,3
+fr33k,25752261,4
+59202996,25752261,3
+41054771,25752261,4
+DrRay,25752261,3
+58096445,25752261,4
+3826970,25752261,-1
+1234887,25752261,3
+wendyhsu,25752261,4
+aprilwhu,25752261,4
+49502630,25752261,5
+appleweiwei,25752261,3
+hanajiang,25752261,3
+46579498,25752261,3
+58141131,25752261,5
+75837915,25752261,4
+52112521,25752261,5
+51736421,25752261,-1
+49408202,25752261,5
+novel,25752261,4
+idealtemple,25752261,4
+2299664,25752261,3
+47870683,25752261,4
+wann_,25752261,5
+u_soda,25752261,4
+FK621,25752261,4
+jccycj,25752261,4
+Curry_Egg,25752261,3
+pandoragbn,25752261,5
+26545118,25752261,5
+amunli,25752261,4
+wywapple,25752261,4
+iamnoone,25752261,5
+73444446,25752261,3
+79605736,25752261,4
+whatafday,25752261,4
+IloveyouDanica,25752261,3
+77381797,25752261,5
+2746036,25752261,5
+unaunaquantro,25752261,3
+60714670,25752261,3
+74342747,25752261,5
+ccj0212,25752261,4
+48143172,25752261,3
+70665071,25752261,4
+wennan_z,25752261,4
+Mianmian.,25752261,3
+oneonecandy,25752261,4
+Jiangxiaolu,25752261,4
+49567226,25752261,4
+PTSherryXie,25752261,4
+2787010,25752261,4
+joey12255555,25752261,3
+joey12255555,25752261,3
+yeeeeeee,25752261,4
+succina,25752261,4
+acbc115,25752261,5
+84758064,25752261,4
+Do-my-self,25752261,4
+59490259,25752261,3
+37266138,25752261,3
+lyndonneu,25752261,5
+51790573,25752261,-1
+zhangyired,25752261,4
+gnosis,25752261,5
+75043360,25752261,3
+ning77,25752261,5
+leah926,25752261,5
+4161339,25752261,4
+1582961,25752261,5
+54254523,25752261,3
+sincerity615,25752261,3
+luciusku,25752261,5
+68405839,25752261,4
+Strangefamiliar,25752261,3
+115212595,25752261,4
+zykmilan,25752261,3
+68972539,25752261,5
+61654063,25752261,4
+52828965,25752261,3
+31407826,25752261,5
+peterpanty,25752261,4
+baijixing,25752261,3
+54166163,25752261,3
+nolady,25752261,4
+87230484,25752261,4
+winter-h,25752261,3
+CookieCrumbler,25752261,3
+sy9443,25752261,3
+45476449,25752261,4
+followmydreams,25752261,4
+77492957,25752261,3
+jaimeerica,25752261,4
+49608766,25752261,5
+49490666,25752261,4
+muxiaoxu,25752261,5
+stories7,25752261,4
+55772953,25752261,3
+dianyingzhizui,25752261,4
+sinxu,25752261,4
+Lylaohyeah,25752261,5
+bethwong,25752261,4
+lukastina,25752261,5
+72985710,25752261,4
+51721466,25752261,4
+JoshLee525,25752261,4
+103458789,25752261,3
+102747007,25752261,3
+sxy921026,25752261,4
+konfer,25752261,4
+39205376,25752261,5
+1418248,25752261,3
+65685834,25752261,4
+48854947,25752261,4
+3459240,25752261,-1
+49612534,25752261,3
+4632449,25752261,3
+65988925,25752261,4
+59366761,25752261,4
+Talushen,25752261,4
+notyetdone,25752261,5
+66977263,25752261,5
+gs21cn,25752261,3
+69725938,25752261,4
+86091558,25752261,4
+lux1119,25752261,3
+MOVIE--KO,25752261,3
+61216437,25752261,3
+dr_new,25752261,5
+miko_83,25752261,4
+78914788,25752261,4
+DADA-X,25752261,5
+liao_le,25752261,4
+39047335,25752261,4
+zuoxiaoan45,25752261,4
+2785610,25752261,4
+46920813,25752261,3
+52326435,25752261,-1
+neko_neko_,25752261,5
+kimliuzaixi,25752261,4
+fernweh,25752261,5
+chenpei0318521,25752261,4
+1573732,25752261,4
+Queenita,25752261,-1
+shanshanyouli,25752261,5
+jimmyusher,25752261,4
+52853944,25752261,5
+5964944,25752261,4
+McBee,25752261,4
+121817489,25752261,4
+48636409,25752261,1
+Dreamboat_Lu,25752261,4
+shepherded,25752261,5
+51741700,25752261,4
+shiyanshigou,25752261,4
+montemou,25752261,3
+4010650,25752261,4
+74938203,25752261,5
+6107837,25752261,4
+summerwoods,25752261,4
+dulllennon,25752261,4
+vesperxu,25752261,-1
+53859574,25752261,4
+52333368,25752261,4
+qcmm,25752261,4
+29631507,25752261,5
+70006548,25752261,5
+bolailuo,25752261,4
+albeedesert,25752261,3
+89812272,25752261,4
+orlando_6,25752261,4
+YOKIII,25752261,5
+66409658,25752261,2
+cbw506021,25752261,4
+88109580,25752261,3
+36458457,25752261,3
+3803915,25752261,4
+xiaopo,25752261,4
+oliverisme,25752261,5
+curett,25752261,2
+ruocun123,25752261,5
+49577718,25752261,5
+eveshi,25752261,5
+1225013,25752261,-1
+huilai,25752261,4
+alicec61632,25752261,4
+AgiHan0221,25752261,5
+floatingmeat,25752261,4
+68034788,25752261,5
+nolanjr,25752261,5
+36768577,25752261,5
+48238044,25752261,5
+miloz0908,25752261,5
+40924557,25752261,5
+3421868,25752261,4
+Angine,25752261,5
+34434303,25752261,4
+hollyxiyi,25752261,4
+Ianyeah,25752261,5
+AnJang,25752261,5
+33131948,25752261,2
+sunnykatty,25752261,4
+sisonzhang,25752261,5
+joyceamigo,25752261,3
+maclauring,25752261,5
+colleen_1211,25752261,4
+2194320,25752261,5
+Kagula,25752261,4
+28199588,25752261,3
+janice5680,25752261,4
+ripplelien,25752261,4
+53336127,25752261,5
+45344133,25752261,4
+118862756,25752261,5
+NarcissusMomo,25752261,5
+xiaoluohao,25752261,5
+3741229,25752261,4
+P_CK,25752261,3
+73709289,25752261,3
+48441416,25752261,5
+Chilwoo,25752261,5
+glassywitch,25752261,4
+zhousb,25752261,3
+4607351,25752261,4
+49842997,25752261,4
+39234011,25752261,5
+madlab,25752261,4
+heylucyliu,25752261,5
+hypochondria,25752261,4
+122133532,25752261,5
+119425581,25752261,3
+4519637,25752261,5
+ximutudan,25752261,5
+daisycat,25752261,3
+57285886,25752261,4
+tracyprx,25752261,4
+2348564,25752261,5
+konghanlei,25752261,5
+author,25752261,5
+48139046,25752261,4
+foamwhisper,25752261,5
+26482350,25752261,5
+astroangel,25752261,5
+DING-lamour,25752261,5
+Ching-s,25752261,5
+sundongge,25752261,3
+leigamo,25752261,3
+64844513,25752261,3
+74013127,25752261,3
+3139928,25752261,4
+4896156,25752261,3
+2635870,25752261,4
+idorothy,25752261,4
+lemonmeow,25752261,5
+2092985,25752261,4
+corvin,25752261,5
+floriacheng,25752261,4
+16437500,25752261,5
+5755075,25752261,5
+6394575,25752261,1
+queeenababy,25752261,4
+sunnie.j,25752261,4
+peterdyf,25752261,3
+racheal0711,25752261,4
+66595969,25752261,5
+50431006,25752261,4
+Baronera,25752261,5
+70763681,25752261,4
+minastivith,25752261,4
+ozzythewizard,25752261,4
+2005598,25752261,5
+79406388,25752261,4
+65734088,25752261,4
+2431859,25752261,5
+seongtan,25752261,3
+raychau,25752261,4
+l_panda,25752261,5
+suwa,25752261,4
+hbr,25752261,4
+crystalmy1027,25752261,5
+56872460,25752261,5
+circlevita,25752261,5
+2784323,25752261,4
+Alice_sea,25752261,5
+57200771,25752261,5
+tytony890115,25752261,4
+68467794,25752261,4
+runaway6161,25752261,5
+z275,25752261,5
+fishel,25752261,-1
+wzptoby,25752261,5
+62862861,25752261,4
+sebastian_who,25752261,3
+jasoncx,25752261,5
+1355490,25752261,3
+Momo-at1615,25752261,5
+blackbanana3Y,25752261,4
+42242645,25752261,5
+yaoye,25752261,5
+49559165,25752261,3
+3540441,25752261,4
+1922327,25752261,5
+vigshane,25752261,4
+shirley9292,25752261,4
+27199413,25752261,3
+4320404,25752261,3
+nocturnelee,25752261,4
+4685727,25752261,4
+47974911,25752261,3
+chenxijessica,25752261,5
+58521633,25752261,4
+bxhOTZ,25752261,3
+iScandinavia,25752261,5
+natonick,25752261,5
+124585332,25752261,4
+52887670,25752261,5
+ceci33,25752261,4
+79262344,25752261,5
+54150368,25752261,4
+littlelu,25752261,5
+susimai,25752261,3
+wrongthesis,25752261,5
+margaret_wmx,25752261,5
+freddy_xu,25752261,3
+judy0420,25752261,4
+shirleyhu,25752261,4
+60432937,25752261,5
+63422177,25752261,4
+ss25,25752261,4
+65452477,25752261,3
+joarieas,25752261,3
+2641925,25752261,4
+87909103,25752261,3
+fatfatbird,25752261,5
+65895302,25752261,3
+64213791,25752261,4
+51342796,25752261,3
+beijingstone,25752261,5
+61282710,25752261,5
+55575027,25752261,4
+yupz,25752261,3
+87559103,25752261,4
+23730457,25752261,3
+79254578,25752261,4
+53971929,25752261,3
+70862123,25752261,3
+orangeT,25752261,4
+53713588,25752261,5
+xsy2020,25752261,4
+lei1925,25752261,5
+isuluo,25752261,3
+Fayfraidy,25752261,4
+howelvxing,25752261,4
+48137780,25752261,3
+q114055080,25752261,-1
+97334739,25752261,4
+121142020,25752261,4
+1838937,25752261,5
+snowchong1984,25752261,4
+45181987,25752261,4
+19124466,25752261,3
+40850926,25752261,1
+64092114,25752261,5
+71078758,25752261,5
+134057557,25752261,3
+1354076,25752261,4
+62635960,25752261,5
+125154714,25752261,2
+90105219,25752261,5
+56249366,25752261,4
+126348691,25752261,4
+122258109,25752261,3
+nizhenhua1981,25752261,3
+31286837,25881628,2
+2799911,25881628,4
+42620728,25881628,4
+4247034,25881628,3
+44975625,25881628,3
+55839974,25881628,4
+yeung123,25881628,3
+108693709,25881628,3
+17871243,25881628,4
+94131092,25881628,3
+annho,25881628,4
+44049094,25881628,4
+blueto,25881628,3
+42724768,25881628,1
+48979950,25881628,5
+46334603,25881628,3
+61935443,25881628,4
+busyq,25881628,4
+104890249,25881628,4
+87284079,25881628,3
+3876276,25881628,3
+51393119,25881628,4
+130601471,25881628,3
+snowyhowe,25881628,3
+lurenjia__,25881628,3
+12681117,25881628,3
+mouzhi,25881628,4
+maomiwang809,25881628,2
+82891330,25881628,3
+shanxr,25881628,3
+lizheyuan,25881628,4
+keisa,25881628,4
+76515029,25881628,3
+waistcoat,25881628,4
+84978868,25881628,4
+1561528,25881628,3
+127426227,25881628,4
+jamaica,25881628,4
+25960765,25881628,3
+2765900,25881628,2
+69396109,25881628,5
+131844597,25881628,5
+51940752,25881628,3
+2752972,25881628,3
+sherlocknh2fan,25881628,3
+Amyh97,25881628,4
+81685996,25881628,3
+3006805,25881628,4
+3522393,25881628,2
+93907270,25881628,4
+83899962,25881628,3
+49154510,25881628,3
+LunaticPandora,25881628,4
+carmen8212,25881628,3
+48102959,25881628,3
+25795086,25881628,2
+62434414,25881628,5
+76364366,25881628,4
+71887540,25881628,3
+49325988,25881628,3
+mengdalian,25881628,4
+1786605,25881628,3
+joycesxq,25881628,4
+125265127,25881628,4
+2305028,25881628,3
+82305871,25881628,3
+85770148,25881628,4
+52399993,25881628,3
+137946234,25881628,4
+134215443,25881628,3
+1632293,25881628,4
+2224920,25881628,5
+70809185,25881628,4
+63547423,25881628,3
+82312414,25881628,4
+57350477,25881628,2
+4684950,25881628,4
+2210399,25881628,2
+47941742,25881628,4
+3554996,25881628,5
+49326623,25881628,3
+131374333,25881628,4
+47958996,25881628,3
+43393007,25881628,2
+yao_123,25881628,3
+56071242,25881628,3
+anniehoneys,25881628,4
+84868729,25881628,4
+62388823,25881628,5
+135844072,25881628,3
+fish6058,25881628,3
+colinhayashi,25881628,4
+67950329,25881628,4
+81464535,25881628,3
+STILLWATERRUNS,25881628,2
+31269616,25881628,-1
+xiaojirou007,25881628,3
+phunny,25881628,2
+space_junk,25881628,4
+3119464,25881628,3
+64193702,25881628,2
+98048421,25881628,2
+Ruty1985,25881628,4
+61375984,25881628,3
+4340710,25881628,3
+76234777,25881628,4
+50828641,25881628,5
+summeric,25881628,3
+jite,25881628,3
+130978369,25881628,3
+63637774,25881628,2
+48127699,25881628,3
+neonmomo,25881628,4
+haman,25881628,5
+Betty_king,25881628,4
+heanfy,25881628,3
+kenheart_ccxuan,25881628,4
+K.chan,25881628,3
+sicheung,25881628,3
+52975858,25881628,3
+61315672,25881628,3
+23853027,25881628,3
+52765670,25881628,4
+dujianpeng,25881628,3
+blueslyrist,25881628,4
+15174414,25881628,4
+2718163,25881628,5
+49415166,25881628,3
+underthegun,25881628,4
+maoguer,25881628,3
+picnicskins,25881628,3
+64826972,25881628,4
+95626875,25881628,3
+13356942,25881628,4
+loreleishanny,25881628,3
+QQ3BlueRose,25881628,3
+49948992,25881628,4
+123600757,25881628,3
+48492345,25881628,5
+suixi,25881628,3
+xylor,25881628,1
+znrpiggey,25881628,3
+46177546,25881628,3
+unakao,25881628,5
+79201115,25881628,4
+103277074,25881628,3
+91259845,25881628,3
+wstlivetony,25881628,3
+74563489,25881628,4
+131909298,25881628,3
+1926318,25881628,5
+airan712,25881628,-1
+49065754,25881628,2
+47705439,25881628,4
+CD7,25881628,4
+53715801,25881628,4
+yigedaguangtou,25881628,5
+hana0811,25881628,2
+cynthia1155,25881628,3
+jian175102157,25881628,3
+135754076,25881628,2
+68634522,25881628,4
+137555231,25881628,3
+51058811,25881628,3
+56387836,25881628,4
+53906378,25881628,4
+kidify,25881628,3
+Vera1997,25881628,4
+55616558,25881628,3
+3769878,25881628,3
+49412559,25881628,4
+65809636,25881628,-1
+28736165,25881628,2
+na777,25881628,4
+81059417,25881628,3
+zzfuck,25881628,2
+vanilla666,25881628,3
+henshss,25881628,3
+50519888,25881628,4
+44485871,25881628,3
+76015198,25881628,5
+79254578,25881628,3
+coldmist,25881628,3
+69180632,25881628,4
+15439490,25881628,5
+104629005,25881628,3
+28421732,25881628,5
+4258349,25881628,4
+nowingcolorful,25881628,3
+cdhd,25881628,2
+1381065,25881628,3
+3506465,25881628,4
+konglinghuanyin,25881628,5
+67517398,25881628,3
+onlyYH,25881628,4
+136290817,25881628,3
+3075693,25881628,1
+75684194,25881628,4
+46276304,25881628,3
+53052178,25881628,3
+1609757,25881628,4
+Kohlerdagger,25881628,5
+98626245,25881628,4
+58229713,25881628,3
+ideyes,25881628,2
+julian_lu,25881628,4
+50619132,25881628,3
+53706113,25881628,3
+woaa,25881628,4
+chenruan,25881628,3
+58526834,25881628,3
+135534814,25881628,1
+gojin,25881628,4
+68585121,25881628,4
+mrx1987,25881628,3
+4376907,25881628,4
+4077370,25881628,3
+judybear,25881628,2
+superbin1014,25881628,4
+platero,25881628,5
+platero,25881628,5
+134198005,25881628,3
+47269712,25881628,4
+swimmingfish33,25881628,4
+Hunjianxia,25881628,4
+65468639,25881628,5
+mian11,25881628,2
+66931955,25881628,4
+38371308,25881628,3
+8927123,25881628,5
+78246162,25881628,-1
+52873640,25881628,4
+5592736,25881628,3
+37110649,25881628,3
+127378719,25881628,3
+130353620,25881628,3
+131068311,25881628,4
+3031088,25881628,5
+sissysays,25881628,4
+34093246,25881628,5
+66345679,25881628,4
+sunjinrui,25881628,5
+120789579,25881628,4
+35181291,25881628,2
+darkhands,25881628,4
+49545873,25881628,3
+61681574,25881628,4
+AsleepOrDead,25881628,3
+67021523,25881628,3
+69439267,25881628,3
+67679868,25881628,3
+51366710,25881628,3
+rbw1007,25881628,5
+52636646,25881628,3
+28739392,25881628,5
+49174267,25881628,3
+fallenisland,25881628,4
+64702519,25881628,3
+mr.littlefish,25881628,4
+erika-3104,25881628,3
+81351219,25881628,3
+fortiffany,25881628,1
+47077015,25881628,4
+withliancheng,25881628,3
+bingkuaizhuiluo,25881628,4
+Cicinnurus,25881628,3
+gflfof,25881628,5
+Stupid,25881628,2
+43511352,25881628,3
+sevenvivid,25881628,4
+2388590,25881628,3
+65683768,25881628,3
+rinoa1018,25881628,3
+eastease,25881628,4
+38876439,25881628,4
+xiawu1130,25881628,5
+48558495,25881628,3
+cnxh,25881628,3
+53450077,25881628,4
+43071340,25881628,1
+43071340,25881628,1
+leiii,25881628,4
+2588271,25881628,4
+62498352,25881628,3
+57943867,25881628,3
+40684892,25881628,4
+98956225,25881628,2
+star0607,25881628,4
+51735678,25881628,1
+69066404,25881628,4
+54215499,25881628,4
+54056952,25881628,3
+debussy,25881628,3
+60656963,25881628,5
+PsychoMissSo,25881628,3
+kildren2013,25881628,3
+50452092,25881628,4
+weijianjian,25881628,3
+melanie_je,25881628,4
+62532163,25881628,3
+45513879,25881628,4
+sweethurts,25881628,5
+cl20lc,25881628,4
+LadySandra,25881628,3
+52622488,25881628,3
+3690205,25881628,4
+fzw83035379,25881628,4
+43118043,25881628,5
+caosancat,25881628,4
+103424753,25881628,3
+dalaoying,25881628,3
+chaochao85mao,25881628,-1
+45291333,25881628,3
+comicsuperman,25881628,3
+ifonly117,25881628,3
+65081730,25881628,4
+uhura,25881628,1
+DivingWhale,25881628,4
+130410512,25881628,3
+kxhehe,25881628,2
+rodinian,25881628,4
+bleachabcdefg,25881628,4
+kingiknow,25881628,3
+51978662,25881628,4
+vancion,25881628,3
+sagtree,25881628,3
+58102624,25881628,-1
+88426116,25881628,4
+25534577,25881628,5
+79236036,25881628,2
+anchor1978,25881628,4
+hanluweishuang,25881628,3
+68920095,25881628,4
+2295894,25881628,4
+135731311,25881628,4
+paco,25881628,4
+adonis_zhang,25881628,3
+11914612,25881628,3
+62140009,25881628,5
+cheapchic,25881628,4
+yoursna,25881628,3
+deppdeep,25881628,4
+KBQN,25881628,4
+sevenready,25881628,4
+e0305,25881628,3
+83691770,25881628,4
+fursonfu,25881628,4
+92167444,25881628,4
+130435722,25881628,3
+46619428,25881628,4
+2569857,25881628,4
+90494251,25881628,4
+53485113,25881628,4
+4695427,25881628,-1
+65079476,25881628,3
+52106062,25881628,5
+teikamouse,25881628,3
+14113539,25881628,4
+83299695,25881628,3
+75896027,25881628,3
+64162059,25881628,4
+50222808,25881628,2
+ing...,25881628,4
+52630185,25881628,5
+heartfalure,25881628,4
+53257465,25881628,3
+SKIN69-L,25881628,4
+sif7,25881628,4
+omo_mo,25881628,4
+diafarona,25881628,3
+112822542,25881628,4
+68767704,25881628,3
+eisenhajime,25881628,3
+36580588,25881628,4
+133542871,25881628,4
+53511950,25881628,3
+119606902,25881628,3
+zhqi11,25881628,3
+49119255,25881628,3
+57991554,25881628,3
+75433053,25881628,5
+Melaniegyq,25881628,4
+yytaizi,25881628,2
+shadow.u,25881628,5
+45655057,25881628,3
+60185886,25881628,5
+thezealer,25881628,4
+59745258,25881628,3
+47802617,25881628,2
+84250012,25881628,5
+55606165,25881628,3
+lc_ENo.,25881628,4
+55287270,25881628,-1
+xtrats,25881628,4
+aki.sh,25881628,3
+loselove,25881628,4
+63415003,25881628,4
+70315903,25881628,4
+44709496,25881628,4
+46534834,25881628,3
+92147297,25881628,5
+4170552,25881628,3
+ridicumas,25881628,4
+48501189,25881628,4
+PASSMEBY,25881628,3
+35499398,25881628,4
+82275664,25881628,4
+2528575,25881628,4
+47937098,25881628,4
+lllllllei,25881628,3
+70392138,25881628,3
+55910656,25881628,4
+62817547,25881628,3
+48474156,25881628,1
+marioii,25881628,-1
+akiko77,25881628,4
+56207725,25881628,3
+llamame,25881628,2
+63283519,25881628,5
+skyw510,25881628,4
+skyw510,25881628,4
+58696033,25881628,3
+122360797,25881628,4
+60908358,25881628,3
+53806077,25881628,3
+2461759,25881628,3
+yeyixin,25881628,5
+xiaoxunoisy,25881628,4
+77719731,25881628,3
+89879186,25881628,5
+xyzzecho,25881628,3
+60002715,25881628,4
+xinglushen,25881628,4
+39266615,25881628,5
+kinjio,25881628,3
+arielhappiness,25881628,2
+58847654,25881628,3
+72135894,25881628,5
+puyi,25881628,-1
+127515076,25881628,4
+58641674,25881628,3
+58291702,25881628,3
+45598227,25881628,4
+5845407,25881628,4
+47619273,25881628,3
+mostephanie58,25881628,4
+MR_grey,25881628,4
+kuroda_sakaki,25881628,2
+47856322,25881628,3
+81537831,25881628,3
+joycow,25881628,4
+applekido,25881628,3
+15321915,25881628,4
+qinduo,25881628,4
+memorycatcher,25881628,3
+75645970,25881628,3
+48561660,25881628,4
+chen33,25881628,-1
+34245923,25881628,3
+115976556,25881628,4
+35497511,25881628,4
+59565294,25881628,5
+ffantuan,25881628,5
+noidea,25881628,3
+moneybear,25881628,3
+gdhdun,25881628,3
+2890229,25881628,3
+51408985,25881628,4
+57427687,25881628,3
+45150324,25881628,4
+73585315,25881628,4
+75323893,25881628,4
+orchid926,25881628,4
+66813798,25881628,3
+c243,25881628,3
+43650897,25881628,4
+122675776,25881628,5
+57925126,25881628,2
+letmeletgo,25881628,3
+52444662,25881628,2
+darlingm,25881628,3
+56899432,25881628,4
+liang9527,25881628,4
+29282642,25881628,3
+58741364,25881628,3
+52911845,25881628,3
+dahlie,25881628,3
+63927330,25881628,3
+Alice-Mu,25881628,3
+senlintu,25881628,4
+56396911,25881628,2
+lyragosa,25881628,3
+47071046,25881628,-1
+48745618,25881628,3
+qyf620,25881628,4
+pengyaos,25881628,-1
+134450644,25881628,2
+49759903,25881628,3
+50244260,25881628,3
+lovecall,25881628,3
+64858060,25881628,3
+71262628,25881628,3
+toai,25881628,4
+djoko,25881628,3
+whales,25881628,4
+army8735,25881628,3
+43471200,25881628,3
+Blureen,25881628,4
+97517593,25881628,3
+42020814,25881628,4
+47873866,25881628,4
+53002549,25881628,2
+GodAssassin,25881628,4
+62333494,25881628,4
+126073377,25881628,3
+yelia926,25881628,5
+janwwj,25881628,3
+125739150,25881628,3
+kikiya,25881628,4
+61420594,25881628,5
+61420594,25881628,5
+66744703,25881628,4
+dearpea,25881628,5
+124673449,25881628,4
+83357916,25881628,3
+ryod,25881628,4
+lovesay,25881628,3
+50499996,25881628,4
+kurwel,25881628,4
+47537862,25881628,3
+problemchildren,25881628,5
+39056403,25881628,2
+46812658,25881628,4
+paltrow,25881628,-1
+52103871,25881628,4
+56826435,25881628,4
+killmystery,25881628,4
+4361353,25881628,4
+74783952,25881628,4
+1892627,25881628,3
+52655756,25881628,-1
+3502559,25881628,3
+90785580,25881628,4
+43966741,25881628,3
+60854074,25881628,4
+76227940,25881628,4
+1078536,25881628,5
+47025279,25881628,2
+Paradox_Q,25881628,3
+Curry_Egg,25881628,3
+3353584,25881628,4
+lostinfire,25881628,2
+128932894,25881628,4
+137206904,25881628,2
+54158411,25881628,3
+59968700,25881628,5
+2341945,25881628,4
+79452257,25881628,4
+bt4ever,25881628,5
+fuzyu,25881628,3
+CookieCrumbler,25881628,2
+65262873,25881628,3
+6303192,25881628,3
+67561364,25881628,5
+134156002,25881628,2
+55619717,25881628,3
+woodrain,25881628,3
+Q9,25881628,3
+45268716,25881628,4
+44276090,25881628,2
+103533221,25881628,3
+ferkmavie,25881628,4
+f91_82,25881628,3
+on1ooker,25881628,3
+130952703,25881628,3
+64954125,25881628,2
+92590936,25881628,3
+38404027,25881628,2
+45722938,25881628,3
+hero2010086,25881628,4
+zuoshoudezuo,25881628,3
+movieview,25881628,2
+liuyang1227,25881628,3
+55309903,25881628,4
+100091686,25881628,4
+xzfd,25881628,3
+70586246,25881628,2
+honeyforest,25881628,4
+62753939,25881628,4
+56260072,25881628,2
+xiaoweiwang,25881628,4
+itsmeymq,25881628,3
+andrpirl,25881628,3
+64595804,25881628,3
+134503288,25881628,3
+Exaiy,25881628,3
+130355076,25881628,4
+52077849,25881628,2
+mspengmei,25881628,2
+2781564,25881628,4
+3783012,25881628,3
+75651301,25881628,3
+65123072,25881628,2
+58288224,25881628,5
+15655185,25881628,4
+suzihan,25881628,4
+39817838,25881628,2
+ii53231323,25881628,3
+stonenod,25881628,4
+amy0303,25881628,4
+62023518,25881628,2
+iamce,25881628,4
+linyanyanyan,25881628,4
+myweekend,25881628,4
+121120311,25881628,3
+49356246,25881628,2
+IceKey,25881628,3
+applecs,25881628,4
+122998110,25881628,5
+hearta,25881628,4
+chinabeta,25881628,2
+avaxi,25881628,3
+susimai,25881628,3
+64713560,25881628,3
+ricohjing,25881628,4
+lucky77,25881628,3
+64882453,25881628,3
+8505616,25881628,3
+xchill,25881628,4
+67030468,25881628,4
+115897834,25881628,3
+81365960,25881628,5
+1690690,25881628,4
+26713841,25881628,4
+58343189,25881628,4
+izaijin,25881628,4
+2113603,25881628,4
+24274750,25881628,3
+89451365,25881628,3
+grace0327,25881628,4
+nyx0115,25881628,4
+51150975,25881628,3
+cantona_x,25881628,3
+49499844,25881628,4
+130800910,25881628,3
+3555547,25881628,-1
+shangkang,25881628,4
+Clarke,25881628,3
+84430794,25881628,3
+Ahomo,25881628,5
+4422335,25881628,4
+115114260,25881628,-1
+73285863,25881628,3
+corona92cml,25881628,4
+evenz,25881628,3
+4520667,25881628,3
+1935413,25881628,3
+65672051,25881628,5
+35224934,25881628,4
+aurawang95,25881628,4
+aurawang95,25881628,4
+30587036,25881628,3
+63620716,25881628,4
+58369888,25881628,4
+cazze,25881628,4
+cheaphy,25881628,4
+64315881,25881628,4
+bearblindman,25881628,4
+hope62442,25881628,3
+Elinna0525,25881628,3
+SpinStop,25881628,3
+gruel_,25881628,4
+29881117,25881628,3
+48687824,25881628,4
+tianxkong,25881628,4
+lynn24,25881628,3
+yueyuebetty,25881628,-1
+32195437,25881628,4
+134194471,25881628,2
+71929336,25881628,4
+xihahaha,25881628,4
+99448311,25881628,4
+130944431,25881628,3
+67517097,25881628,3
+46980853,25881628,3
+yunyuyangqiu,25881628,4
+128991169,25881628,4
+2954485,25881628,4
+46712687,25881628,3
+102938445,25881628,3
+fantastic1021,25881628,-1
+kingcopushu,25881628,3
+lynxmao,25881628,4
+64704924,25881628,3
+53912773,25881628,4
+Besthide,25881628,3
+2856696,25881628,3
+em_sheep,25881628,4
+67624149,25881628,4
+117808839,25881628,3
+49120667,25881628,4
+62036162,25881628,3
+40733477,25881628,3
+yomuxi,25881628,4
+70621262,25881628,3
+119464315,25881628,5
+edgeyeung,25881628,4
+1638378,25881628,4
+78925849,25881628,2
+Sk.Young,25881628,3
+limicm,25881628,4
+35904729,25881628,4
+68737646,25881628,4
+40654523,25881628,5
+133703690,25881628,2
+sk8yc,25881628,3
+xulewyw,25881628,4
+fergie,25881628,3
+davyjones,25881628,3
+99206914,25881628,5
+81693555,25881628,4
+51965596,25881628,3
+BackToNight,25881628,4
+3355859,25881628,2
+54126303,25881628,5
+26487427,25881628,3
+31776574,25881628,-1
+kingtreetooth,25881628,3
+1316648,25881628,3
+121468237,25881628,5
+46683408,25881628,4
+50180510,25881628,4
+khailll,25881628,4
+63191025,25881628,4
+45355870,25881628,3
+movie-liang,25881628,3
+zhtqqi,25881628,5
+49074611,25881628,3
+rorschachlau,25881628,3
+VicS,25881628,4
+119644008,25881628,4
+1815039,25881628,3
+4146399,25881628,4
+fenglianjun,25881628,4
+xyhen,25881628,4
+liancheng,25881628,3
+51302979,25881628,3
+47821826,25881628,3
+45080512,25881628,4
+loveloki913,25881628,5
+luoxuan2379,25881628,4
+Chliztian,25881628,4
+48116599,25881628,4
+72985710,25881628,4
+sxy921026,25881628,4
+cyrus_wong,25881628,4
+66016685,25881628,3
+68678476,25881628,3
+jy89110,25881628,3
+3522119,25881628,5
+44398126,25881628,4
+wuhuihong1992,25881628,4
+3656028,25881628,5
+Son47,25881628,3
+131535153,25881628,3
+54732272,25881628,3
+67843912,25881628,3
+hahatedan,25881628,4
+deathlegend,25881628,-1
+ludj_007,25881628,2
+58729242,25881628,4
+56519940,25881628,4
+67014670,25881628,3
+czj950615,25881628,3
+48148912,25881628,4
+103380368,25881628,3
+40970313,25881628,3
+32645204,25881628,4
+134898713,25881628,3
+socordia,25881628,3
+duoduoshuwu,25881628,3
+62498830,25881628,4
+58231376,25881628,3
+magic_kid,25881628,4
+15769560,25881628,3
+96241491,25881628,3
+fanmengya,25881628,5
+64136344,25881628,3
+3078221,25881628,3
+41369322,25881628,4
+sirk,25881628,2
+inearlysummer,25881628,4
+2178451,25881628,4
+2847987,25881628,3
+4154813,25881628,4
+punaisilvia,25881628,3
+buxiebujie,25881628,3
+4057118,25881628,4
+pilixiaohongmao,25881628,3
+TERRYBEAR,25881628,4
+59446610,25881628,3
+75903225,25881628,3
+reincarnate,25881628,4
+7609988,25881628,4
+bigmiao,25881628,3
+nangle,25881628,3
+93469106,25881628,5
+jiqiuqiu,25881628,4
+49460136,25881628,3
+4374610,25881628,4
+sharkspeare,25881628,3
+71953415,25881628,3
+120239157,25881628,3
+55817697,25881628,3
+lemoncan,25881628,3
+podolski,25881628,4
+shalouzhitong,25881628,3
+53392734,25881628,3
+88273996,25881628,3
+buuwp,25881628,4
+63834933,25881628,3
+nicdone,25881628,4
+70469575,25881628,4
+jzk,25881628,4
+68542833,25881628,2
+121888064,25881628,3
+ILWTFT,25881628,3
+barbarossa1753,25881628,3
+102024318,25881628,5
+82814499,25881628,4
+an__,25881628,3
+Dling-YYY,25881628,5
+49893438,25881628,5
+83162641,25881628,3
+50944576,25881628,3
+93920997,25881628,4
+62546651,25881628,4
+70870817,25881628,3
+2919840,25881628,-1
+saosaoxy,25881628,2
+69532674,25881628,4
+Innerplant,25881628,-1
+2039569,25881628,2
+50378172,25881628,5
+2099122,25881628,3
+78065496,25881628,3
+108077404,25881628,3
+silencewong,25881628,3
+tsoo416,25881628,3
+59556078,25881628,4
+58863205,25881628,3
+47481448,25881628,2
+Meya8947,25881628,3
+74954730,25881628,3
+Ouidah,25881628,1
+3410512,25881628,5
+134545730,25881628,3
+71298339,25881628,3
+2600693,25881628,3
+41287969,25881628,3
+bei1004,25881628,4
+2598729,25881628,5
+62877248,25881628,3
+longislandiced,25881628,-1
+66803513,25881628,3
+71400865,25881628,4
+4324772,25881628,3
+2774375,25881628,3
+48834090,25881628,4
+2114161,25881628,4
+72418572,25881628,4
+134574897,25881628,2
+85811535,25881628,2
+61657305,25881628,3
+57617460,25881628,2
+72642943,25881628,3
+qijiuzhiyue,25881628,4
+tifa_woo,25881628,3
+ilovehouyi,25881628,3
+edward1988,25881628,2
+66716197,25881628,5
+lying,25881628,4
+2265138,25881628,3
+proband,25881628,3
+yumofu,25881628,4
+65178670,25881628,4
+everdream,25881628,2
+OneiLulu,25881628,3
+49269031,25881628,2
+120541376,25881628,-1
+kingkongofkhan,25881628,3
+4134812,25881628,3
+yangchuhan123,25881628,4
+2444385,25881628,5
+LionManKinG,25881628,4
+55487227,25881628,4
+envyandecho,25881628,3
+88101207,25881628,2
+CCCOLE0605,25881628,4
+eternalblue,25881628,3
+46996433,25881628,2
+134417369,25881628,3
+lsr870909366,25881628,4
+45476708,25881628,4
+79090756,25881628,5
+10449879,25881628,3
+winnie0212,25881628,2
+1480836,25881628,3
+65854158,25881628,3
+2714941,25881628,5
+46510966,25881628,3
+47515047,25881628,4
+47838456,25881628,3
+2784323,25881628,5
+edizoo,25881628,4
+134203222,25881628,1
+kevin_lu1001,25881628,2
+36621283,25881628,4
+50527578,25881628,-1
+2848557,25881628,4
+50570726,25881628,3
+lixixi1995,25881628,2
+blueskyfly,25881628,3
+53505227,25881628,5
+49775406,25881628,5
+62677139,25881628,3
+134580402,25881628,3
+124640229,25881628,3
+43409918,25881628,3
+62894547,25881628,3
+49048693,25881628,4
+55609637,25881628,3
+49628529,25881628,3
+tinka,25881628,3
+angelababy_,25881628,3
+aki0726,25881628,3
+52951780,25881628,5
+56827109,25881628,4
+23520450,25881628,4
+mimimalian,25881628,-1
+marlborosin,25881628,3
+30218761,25881628,5
+53659864,25881628,4
+57460299,25881628,4
+2445750,25881628,5
+50801190,25881628,5
+58805947,25881628,4
+47546589,25881628,3
+51253098,25881628,2
+ricechow,25881628,4
+55617091,25881628,3
+babbye,25881628,4
+ecstasybird,25881628,4
+83177067,25881628,2
+52393301,25881628,5
+pm,25881628,3
+1611100,25881628,4
+wuxiaohua,25881628,4
+reave,25881628,5
+3571623,25881628,3
+47193126,25881628,3
+57080555,25881628,2
+131632042,25881628,3
+rurucat,25881628,2
+72854478,25881628,4
+sheldonkao,25881628,4
+41440625,25881628,3
+41482074,25881628,4
+Ann-e,25881628,3
+65366516,25881628,4
+74346817,25881628,3
+48740274,25881628,4
+122879836,25881628,3
+2788057,25881628,4
+70390842,25881628,4
+nangongmocheng,25881628,4
+lordbaker,25881628,4
+52710825,25881628,3
+90105219,25881628,1
+6239310,25881628,3
+ps2xboxgbaxbox,25881628,2
+btone0808,25881628,2
+133454212,25881628,4
+Heyimwalker,25881628,3
+46843344,25881628,4
+2187326,25881628,3
+81404706,25881628,3
+65937337,25881628,-1
+47163316,25881628,5
+1886385,25881628,3
+ff_way,25881628,5
+120119799,25881628,3
+4559768,25881628,2
+2106137,25881628,3
+69068986,25881628,3
+48509446,25881628,3
+64124840,25881628,2
+matt33,25881628,4
+48770075,25881628,2
+77285062,25881628,2
+bulijite,25881628,2
+42600622,25881628,3
+64672716,25881628,3
+61222044,25881628,3
+53061557,25881628,3
+1294589,25881628,2
+124040620,25881628,5
+51836771,25881628,4
+49988944,25881628,5
+58112773,25881628,3
+104310668,25881628,3
+55509648,25881628,3
+imoioi,25881628,2
+53920626,25881628,3
+cangbaicanku,25881628,3
+jasontodd,25881628,3
+54277204,25881628,3
+134692898,25881628,5
+50900048,25881628,3
+73112329,25881628,3
+72491217,25881628,4
+61694611,25881628,5
+63676625,25881628,3
+48375782,25881628,3
+135467494,25881628,3
+nbcc,25881628,4
+lauer,25881628,4
+51883716,25881628,4
+49196106,25881628,4
+63820584,25881628,5
+87651171,25881628,1
+92775477,25881628,4
+78164697,25881628,5
+rudygiraffe,25881628,4
+1892501,25881628,4
+57743813,25881628,4
+132843413,25881628,3
+MOVIE--KO,25881628,3
+cabaret,25881628,3
+Sammyzheng,25881628,4
+31286837,25881628,2
+2799911,25881628,4
+42620728,25881628,4
+4247034,25881628,3
+44975625,25881628,3
+55839974,25881628,4
+yeung123,25881628,3
+108693709,25881628,3
+17871243,25881628,4
+94131092,25881628,3
+annho,25881628,4
+44049094,25881628,4
+blueto,25881628,3
+42724768,25881628,1
+48979950,25881628,5
+46334603,25881628,3
+61935443,25881628,4
+busyq,25881628,4
+104890249,25881628,4
+87284079,25881628,3
+ballsirius,25853129,2
+michellengan,25853129,2
+cindy738963892,25853129,3
+pengzhou,25853129,4
+47576659,25853129,2
+59129484,25853129,5
+131610704,25853129,3
+63044059,25853129,3
+metalmickey,25853129,4
+susanlovefrance,25853129,3
+44006704,25853129,3
+supayou,25853129,3
+nonob,25853129,2
+54349281,25853129,3
+3997554,25853129,5
+128991169,25853129,5
+137555231,25853129,2
+136995611,25853129,2
+wangshengyang,25853129,3
+35200825,25853129,3
+lord_luo,25853129,4
+45184440,25853129,4
+4551793,25853129,5
+kingiknow,25853129,3
+66803513,25853129,3
+47458734,25853129,3
+58456907,25853129,4
+122932689,25853129,3
+55325883,25853129,3
+50861907,25853129,3
+43725091,25853129,3
+2376689,25853129,-1
+vivifyvivi,25853129,3
+67024367,25853129,3
+67679868,25853129,3
+kanzaki666,25853129,3
+Son47,25853129,3
+Dcynic,25853129,2
+134580402,25853129,3
+65930256,25853129,2
+130445057,25853129,3
+48850482,25853129,3
+mrfengge,25853129,3
+snowandrain,25853129,4
+24678754,25853129,3
+86240865,25853129,4
+98956225,25853129,2
+106570148,25853129,3
+june.q,25853129,3
+135886747,25853129,-1
+122868077,25853129,2
+64618863,25853129,2
+1369113,25853129,3
+2187326,25853129,3
+2580831,25853129,2
+53316539,25853129,4
+66191716,25853129,3
+49809768,25853129,3
+135175472,25853129,4
+22238838,25853129,5
+50919323,25853129,3
+69682298,25853129,4
+1495292,25853129,4
+pinky0215,25853129,5
+2092765,25853129,2
+16452382,25853129,4
+lengleng,25853129,3
+71457288,25853129,4
+91252045,25853129,3
+55287270,25853129,-1
+134417369,25853129,3
+59099811,25853129,3
+112683822,25853129,3
+61845850,25853129,2
+84374264,25853129,4
+MaxC,25853129,4
+foleyfan,25853129,3
+53485894,25853129,3
+61315672,25853129,3
+2432383,25853129,3
+131909298,25853129,2
+taralz0527,25853129,3
+hanachloe,25853129,3
+duduxiongzhifu,25853129,3
+78921107,25853129,4
+GZ,25853129,3
+petitespot,25853129,3
+owenclv,25853129,3
+97977376,25853129,3
+40970313,25853129,2
+3752454,25853129,2
+linnjil,25853129,4
+cxykelly,25853129,4
+50761421,25853129,3
+32390009,25853129,2
+44398603,25853129,4
+it-fans,25853129,2
+jidewei,25853129,3
+2106137,25853129,3
+100458912,25853129,4
+78667352,25853129,5
+79879080,25853129,3
+55802778,25853129,3
+2822373,25853129,-1
+126467467,25853129,4
+49620873,25853129,3
+willgabuta,25853129,3
+131521748,25853129,4
+Time-Trust,25853129,4
+helene9933,25853129,4
+58863205,25853129,2
+HChase,25853129,5
+136594496,25853129,3
+iear,25853129,4
+53458096,25853129,3
+cl20lc,25853129,3
+51377015,25853129,3
+33707224,25853129,3
+46830920,25853129,5
+xuxiaozhe,25853129,4
+tracyloveeric,25853129,3
+50527578,25853129,-1
+30587036,25853129,3
+limicm,25853129,4
+zhangzhiwen,25853129,4
+linseylovescats,25853129,3
+71217329,25853129,4
+btone0808,25853129,4
+2099122,25853129,3
+87651171,25853129,3
+windtalking,25853129,3
+recyclebiner,25853129,3
+42368147,25853129,2
+60406508,25853129,2
+wuyexingstars,25853129,4
+eddychaw,25853129,3
+52765670,25853129,5
+60455917,25853129,5
+57819875,25853129,-1
+1778088,25853129,3
+AngelikaSigrid,25853129,3
+54133944,25853129,3
+57874939,25853129,2
+hypnoticboy,25853129,3
+71507184,25853129,5
+kaine666,25853129,-1
+63422177,25853129,3
+alexDlee,25853129,4
+48877341,25853129,4
+122605310,25853129,3
+88690250,25853129,4
+znrpiggey,25853129,3
+49719880,25853129,4
+70979308,25853129,5
+57088195,25853129,3
+6239310,25853129,2
+64051414,25853129,2
+50900048,25853129,2
+45286644,25853129,3
+66331142,25853129,2
+1373968,25853129,4
+4057118,25853129,3
+46869727,25853129,2
+65366516,25853129,3
+2341945,25853129,3
+pii3you,25853129,4
+77049026,25853129,-1
+jiyingfan,25853129,3
+1892501,25853129,1
+58455191,25853129,4
+hayden001,25853129,3
+102607701,25853129,1
+cele,25853129,3
+lt-2988,25853129,4
+60420315,25853129,3
+38264754,25853129,2
+1560232,25853129,2
+leonardodicapri,25853129,3
+79272694,25853129,3
+charmaineklo579,25853129,3
+france_lj,25853129,3
+Sonique_Pierre,25853129,3
+xiesicong,25853129,3
+Seeeeeeee,25853129,3
+troublemakerjoy,25853129,2
+53229994,25853129,4
+Secilia,25853129,3
+Ada_quan,25853129,-1
+kekeximi,25853129,2
+58905615,25853129,5
+66057217,25853129,3
+subuuti,25853129,3
+yangshuangblue,25853129,3
+silentbean,25853129,4
+loveirina,25853129,3
+43087284,25853129,2
+44044101,25853129,4
+et2o,25853129,3
+loiscybier,25853129,5
+stevecarell,25853129,3
+57416285,25853129,3
+bigbusyboy,25853129,4
+30187417,25853129,4
+ste0815,25853129,2
+130787417,25853129,3
+ilovelusi,25853129,3
+75215757,25853129,3
+towelcatryna,25853129,2
+rhuang,25853129,3
+zzhumemory,25853129,2
+63593169,25853129,5
+missapple,25853129,-1
+neilchi,25853129,3
+lyuri,25853129,3
+xuqianxun,25853129,3
+blacksora,25853129,3
+14946098,25853129,5
+58401385,25853129,3
+moonriver1314,25853129,-1
+heyowl,25853129,2
+heyowl,25853129,2
+56833900,25853129,4
+yangqiaohe,25853129,2
+annerabbit1127,25853129,3
+cleveradai,25853129,4
+43159348,25853129,4
+34245713,25853129,1
+69694769,25853129,2
+71207673,25853129,3
+YiXuanIvor,25853129,3
+50738788,25853129,3
+mondo5,25853129,2
+22377041,25853129,2
+yvonne1209yewei,25853129,5
+qianlidinian,25853129,3
+seven784533,25853129,3
+63066483,25853129,3
+64395750,25853129,4
+64617040,25853129,4
+46661681,25853129,3
+ballsirius,25853129,2
+michellengan,25853129,2
+cindy738963892,25853129,3
+pengzhou,25853129,4
+47576659,25853129,2
+59129484,25853129,5
+131610704,25853129,3
+63044059,25853129,3
+metalmickey,25853129,4
+susanlovefrance,25853129,3
+44006704,25853129,3
+supayou,25853129,3
+nonob,25853129,2
+54349281,25853129,3
+3997554,25853129,5
+128991169,25853129,5
+137555231,25853129,2
+136995611,25853129,2
+wangshengyang,25853129,3
+35200825,25853129,3
+47854967,25746375,4
+3171344,25746375,4
+59149801,25746375,4
+48553912,25746375,4
+43639134,25746375,3
+63868760,25746375,4
+122093935,25746375,3
+127068197,25746375,4
+Mr.Children06,25746375,5
+baoyue,25746375,4
+13036313,25746375,4
+8430434,25746375,4
+117808839,25746375,4
+85566548,25746375,4
+124033490,25746375,4
+45181987,25746375,3
+55566255,25746375,5
+isabella_shi,25746375,3
+124450954,25746375,4
+55309786,25746375,4
+55309786,25746375,4
+57924481,25746375,4
+49902216,25746375,4
+57893927,25746375,4
+25927417,25746375,4
+28927892,25746375,3
+iisakura,25746375,2
+135138287,25746375,5
+134531481,25746375,3
+61276700,25746375,3
+roiroii,25746375,3
+vala1994,25746375,2
+60159493,25746375,5
+yeyangyuxuan,25746375,3
+63192405,25746375,3
+anyijietuili,25746375,4
+13474998,25746375,4
+kylema,25746375,3
+1727376,25746375,4
+8412009,25746375,3
+weizi1977,25746375,3
+2142898,25746375,3
+122258109,25746375,3
+3502898,25746375,3
+72703568,25746375,3
+79489792,25746375,5
+3444801,25746375,2
+87556424,25746375,5
+moushenglingyu,25746375,4
+jcstar,25746375,4
+49201790,25746375,5
+49150210,25746375,4
+69365887,25746375,3
+41843254,25746375,4
+43960066,25746375,4
+89474196,25746375,3
+54364422,25746375,3
+81180185,25746375,4
+66991726,25746375,2
+hotowl,25746375,3
+zhenziren,25746375,3
+129772148,25746375,5
+62343222,25746375,4
+45057820,25746375,4
+80183664,25746375,4
+4624601,25746375,3
+agaric26,25746375,4
+VC39,25746375,2
+3107478,25746375,-1
+11509694,25746375,5
+62535636,25746375,5
+1535922,25746375,4
+41743713,25746375,4
+90559300,25746375,4
+50476857,25746375,2
+134945336,25746375,4
+Smeagol,25746375,4
+41158884,25746375,4
+131254424,25746375,3
+70805035,25746375,4
+carol2sea,25746375,3
+53058832,25746375,4
+angeiyc,25746375,4
+63710456,25746375,3
+116540146,25746375,4
+cafe9527,25746375,4
+2424837,25746375,4
+emilia1990,25746375,4
+67646824,25746375,4
+101393970,25746375,5
+3593565,25746375,4
+2048402,25746375,3
+52789942,25746375,4
+108860224,25746375,5
+huxy1983,25746375,4
+121146535,25746375,4
+brilliantze,25746375,3
+44903919,25746375,1
+115974574,25746375,3
+MariahC,25746375,4
+4082734,25746375,3
+101978260,25746375,4
+48825512,25746375,4
+131025711,25746375,3
+60585416,25746375,4
+lostcat84,25746375,-1
+122589505,25746375,4
+75165533,25746375,5
+oOUmi,25746375,4
+90017409,25746375,4
+104462145,25746375,-1
+sijizhp,25746375,3
+90809338,25746375,5
+35336788,25746375,4
+50307120,25746375,2
+zranoi,25746375,5
+lampin,25746375,4
+1514019,25746375,3
+135953489,25746375,5
+130932656,25746375,4
+67028837,25746375,2
+hettler,25746375,-1
+2935710,25746375,5
+smileliao,25746375,3
+gongchen,25746375,3
+46348954,25746375,5
+36571303,25746375,4
+14014568,25746375,2
+Ryu_9320,25746375,4
+48774230,25746375,2
+chenahu,25746375,5
+62667107,25746375,3
+46718288,25746375,3
+59249650,25746375,4
+80197452,25746375,4
+54202610,25746375,4
+3470100,25746375,4
+46640524,25746375,5
+lybf1106,25746375,3
+dream_for3,25746375,4
+134862117,25746375,4
+49673011,25746375,3
+sooyun,25746375,4
+74509794,25746375,3
+54658264,25746375,4
+myself920,25746375,4
+102653753,25746375,4
+81725101,25746375,3
+64585406,25746375,3
+2600549,25746375,2
+48163178,25746375,-1
+137555231,25746375,2
+49220314,25746375,3
+a5045402,25746375,3
+48003781,25746375,3
+47715297,25746375,4
+2911189,25746375,2
+129775647,25746375,3
+137800980,25746375,3
+39382448,25746375,4
+126348390,25746375,5
+50195547,25746375,3
+37628489,25746375,4
+48034227,25746375,3
+2626046,25746375,3
+39463332,25746375,4
+huangzj09thu,25746375,3
+49841196,25746375,4
+34087859,25746375,4
+aspoon,25746375,5
+28612508,25746375,4
+52242741,25746375,3
+64254188,25746375,4
+50992070,25746375,3
+sharrie,25746375,3
+54452935,25746375,5
+120336940,25746375,4
+64319376,25746375,3
+2636027,25746375,3
+60038533,25746375,4
+61085061,25746375,3
+goodday,25746375,3
+83080407,25746375,3
+57185456,25746375,4
+66424224,25746375,4
+99331350,25746375,5
+Emily723,25746375,-1
+46058489,25746375,5
+vivichris,25746375,4
+sinan,25746375,4
+spider127,25746375,4
+38494486,25746375,3
+54018422,25746375,3
+1189560,25746375,3
+43447764,25746375,2
+137334566,25746375,4
+137671530,25746375,5
+hwh,25746375,3
+BLuuuuE,25746375,3
+2134658,25746375,3
+ohmymicky,25746375,4
+52228910,25746375,4
+eva_nannan,25746375,4
+1520497,25746375,4
+78906900,25746375,4
+60672137,25746375,5
+jamesjiongsi,25746375,5
+sunlight531,25746375,5
+phlunhai,25746375,4
+80276904,25746375,4
+tangrumei1022,25746375,4
+137305184,25746375,4
+78416389,25746375,5
+maorui,25746375,-1
+85745624,25746375,3
+69232328,25746375,4
+50143205,25746375,5
+57741374,25746375,3
+XinwenCheng,25746375,3
+101419547,25746375,4
+65287564,25746375,3
+ever4ever,25746375,4
+25694661,25746375,3
+gemini_zhang,25746375,4
+70379849,25746375,3
+40464100,25746375,3
+41706695,25746375,5
+avaxi,25746375,3
+131006485,25746375,4
+liangsnowru,25746375,3
+44919145,25746375,3
+2170932,25746375,-1
+2164915,25746375,-1
+zuozuoqing,25746375,4
+1929074,25746375,3
+kid1121,25746375,5
+muini,25746375,3
+situfang,25746375,3
+sue-fighter,25746375,3
+57620266,25746375,3
+CANCER75,25746375,4
+117007812,25746375,1
+134943894,25746375,5
+jeffchuwei,25746375,4
+mayka,25746375,3
+2289487,25746375,2
+5467957,25746375,3
+hilca,25746375,3
+91578532,25746375,3
+junqli86,25746375,4
+wyfar,25746375,3
+waiwai323,25746375,3
+allentear,25746375,4
+51513481,25746375,2
+2703809,25746375,2
+dearmorpheus,25746375,3
+79866373,25746375,3
+133895653,25746375,2
+82305871,25746375,4
+76858812,25746375,4
+76858812,25746375,4
+121805239,25746375,3
+mzdrgwj,25746375,-1
+41839110,25746375,4
+68799841,25746375,3
+1077086,25746375,3
+knoxie,25746375,3
+jdrop,25746375,3
+LuthienLee,25746375,4
+66339259,25746375,5
+44096316,25746375,5
+133648602,25746375,3
+2849990,25746375,3
+57784137,25746375,5
+43417607,25746375,4
+85262730,25746375,5
+dinge,25746375,-1
+102207645,25746375,5
+114503696,25746375,5
+2624480,25746375,4
+33493653,25746375,4
+8136180,25746375,5
+91069970,25746375,4
+114380547,25746375,3
+2891944,25746375,4
+50400133,25746375,4
+122932689,25746375,3
+52321375,25746375,4
+ywsbc,25746375,3
+58703684,25746375,4
+99669308,25746375,2
+63044289,25746375,3
+3908149,25746375,5
+51344773,25746375,3
+48389272,25746375,4
+2145215,25746375,5
+51898214,25746375,1
+74332625,25746375,2
+29262337,25746375,4
+120275582,25746375,4
+53477635,25746375,5
+luanshijiaren,25746375,4
+68255466,25746375,-1
+52118293,25746375,5
+45777141,25746375,4
+91396306,25746375,4
+92060510,25746375,4
+43286397,25746375,5
+55554310,25746375,3
+66721010,25746375,5
+wojiaoxiashenma,25746375,5
+121575209,25746375,5
+61015297,25746375,5
+zhuyaoyao,25746375,4
+1886385,25746375,3
+lillianQ,25746375,3
+58976262,25746375,5
+qiaotengfei,25746375,5
+1965573,25746375,5
+82980188,25746375,3
+4840565,25746375,4
+tmz1127,25746375,4
+33971663,25746375,5
+buguameng,25746375,3
+1880246,25746375,5
+stellayuki,25746375,4
+karsu808,25746375,4
+43728521,25746375,1
+104427856,25746375,3
+echowithyou,25746375,3
+58082536,25746375,3
+andybabyroy,25746375,5
+68550514,25746375,3
+hexin199012,25746375,-1
+70363510,25746375,4
+102720326,25746375,4
+4575064,25746375,3
+130647398,25746375,4
+80717633,25746375,4
+45431775,25746375,4
+59351166,25746375,3
+2543390,25746375,3
+ly_yun811,25746375,4
+KaRiCh,25746375,5
+wangliran,25746375,4
+46948343,25746375,3
+31652863,25746375,5
+53460171,25746375,5
+69307403,25746375,3
+3101776,25746375,4
+74567166,25746375,4
+2980085,25746375,4
+122868077,25746375,4
+57371510,25746375,4
+129964938,25746375,3
+4626587,25746375,4
+z_red,25746375,4
+45573643,25746375,4
+93955295,25746375,4
+32919142,25746375,5
+2513289,25746375,4
+78385443,25746375,3
+33364584,25746375,4
+63250603,25746375,4
+69058007,25746375,4
+51417733,25746375,4
+46170417,25746375,4
+izune,25746375,4
+taya,25746375,4
+tpop,25746375,4
+40351422,25746375,3
+83746589,25746375,3
+zhangtianyi1216,25746375,4
+cult.bee,25746375,3
+44506499,25746375,2
+30189268,25746375,2
+59214894,25746375,4
+57872112,25746375,2
+kusch,25746375,4
+120854619,25746375,5
+120854619,25746375,5
+katerzo,25746375,2
+53573316,25746375,4
+yihengxi,25746375,4
+57831727,25746375,3
+58649588,25746375,4
+126994808,25746375,2
+50859449,25746375,4
+85675408,25746375,4
+54977018,25746375,3
+Tony_MuYuan,25746375,4
+Summer-isKing,25746375,4
+47364154,25746375,3
+2491978,25746375,3
+Tz0202,25746375,3
+98365624,25746375,3
+xhide,25746375,3
+133864365,25746375,5
+132997902,25746375,4
+61841141,25746375,5
+yiliangsan,25746375,2
+momoyaoyaoyao,25746375,2
+67183297,25746375,4
+60661944,25746375,5
+61315672,25746375,3
+82623937,25746375,3
+51053103,25746375,3
+73158261,25746375,3
+Narcisken,25746375,3
+74878082,25746375,4
+geminehoo,25746375,4
+128083770,25746375,2
+lmelva,25746375,3
+131524251,25746375,3
+dabyrowe,25746375,4
+121270733,25746375,3
+icwk,25746375,5
+EtudeInEMajor,25746375,4
+6023961,25746375,3
+85455779,25746375,4
+31656081,25746375,4
+irissmy,25746375,4
+53378522,25746375,3
+134519666,25746375,3
+52790172,25746375,3
+libin1012,25746375,2
+134519689,25746375,4
+dujianpeng,25746375,3
+59912109,25746375,4
+65830621,25746375,4
+siyunxp,25746375,4
+42785964,25746375,4
+42041704,25746375,5
+dizzyluke,25746375,4
+gubutong,25746375,5
+1500370,25746375,4
+he3764,25746375,4
+2209447,25746375,4
+buan420,25746375,4
+53906176,25746375,4
+135906739,25746375,5
+125675802,25746375,4
+88048268,25746375,3
+134534654,25746375,4
+110519343,25746375,3
+104512986,25746375,3
+131335578,25746375,4
+51059548,25746375,5
+56894941,25746375,3
+75547814,25746375,4
+kenheart_ccxuan,25746375,5
+1393380,25746375,3
+qingqiushu,25746375,5
+40505982,25746375,4
+51284624,25746375,5
+51200991,25746375,5
+hanuit,25746375,4
+crystal1681,25746375,4
+67240733,25746375,4
+logik,25746375,4
+daisygxd,25746375,4
+125748282,25746375,3
+fishsu,25746375,1
+57246795,25746375,5
+67843912,25746375,2
+78936465,25746375,4
+128583698,25746375,5
+55669081,25746375,4
+53455347,25746375,4
+1188503,25746375,3
+47444356,25746375,4
+52887110,25746375,3
+beyondcen,25746375,5
+40558804,25746375,3
+57878638,25746375,4
+3772235,25746375,3
+81418362,25746375,4
+133499151,25746375,3
+morgangeist,25746375,3
+3006948,25746375,5
+jill426,25746375,3
+109026469,25746375,3
+128666486,25746375,3
+90546251,25746375,5
+51196326,25746375,4
+40848331,25746375,5
+115715339,25746375,3
+47029943,25746375,4
+mi-hang,25746375,4
+iris29,25746375,4
+47935255,25746375,5
+39739074,25746375,3
+wu-x,25746375,3
+wei75820,25746375,4
+61619787,25746375,4
+2798962,25746375,2
+bonnie920311,25746375,3
+85085943,25746375,5
+67842305,25746375,3
+136773683,25746375,3
+xDa,25746375,4
+54186418,25746375,4
+kiyono9,25746375,3
+onlysmile,25746375,5
+133092422,25746375,3
+57127166,25746375,3
+62294425,25746375,4
+muxiansen,25746375,1
+61753912,25746375,2
+40318838,25746375,3
+4338735,25746375,3
+85226504,25746375,3
+36435105,25746375,5
+meadow0618,25746375,4
+29662178,25746375,3
+l-memory,25746375,4
+4321081,25746375,3
+126970287,25746375,4
+4159676,25746375,4
+128403577,25746375,5
+128403577,25746375,5
+108816754,25746375,4
+82296076,25746375,5
+57350477,25746375,3
+98014856,25746375,-1
+xunhu,25746375,4
+76738601,25746375,3
+54449997,25746375,4
+szq520zq,25746375,5
+132983622,25746375,4
+66620851,25746375,4
+67661678,25746375,5
+49440941,25746375,4
+57218441,25746375,4
+54946553,25746375,-1
+50467795,25746375,3
+61541011,25746375,4
+90727698,25746375,4
+3771475,25746375,4
+creanion,25746375,4
+35438123,25746375,4
+53227132,25746375,3
+65924681,25746375,3
+92962162,25746375,4
+Annata,25746375,4
+42375246,25746375,3
+121933130,25746375,3
+48339890,25746375,4
+3361340,25746375,3
+125831014,25746375,3
+122761096,25746375,5
+44284522,25746375,4
+51728436,25746375,5
+15965977,25746375,3
+1020177,25746375,4
+137683447,25746375,3
+102705579,25746375,4
+133319658,25746375,4
+3519752,25746375,3
+36805272,25746375,3
+freewhao,25746375,4
+benbenmuxi,25746375,4
+64881520,25746375,1
+yyq871,25746375,3
+menzeld,25746375,4
+1677337,25746375,4
+41659155,25746375,3
+59235742,25746375,5
+72220959,25746375,3
+banxia819,25746375,2
+47319867,25746375,4
+ruanjingtian,25746375,4
+1600165,25746375,3
+54258426,25746375,4
+34553514,25746375,4
+54813786,25746375,4
+42711041,25746375,3
+yuluyaer,25746375,3
+97693514,25746375,4
+137072636,25746375,5
+133556437,25746375,4
+2898955,25746375,3
+53647318,25746375,5
+72598751,25746375,5
+61888159,25746375,4
+60624598,25746375,4
+1413100,25746375,3
+pulemon,25746375,4
+hill__,25746375,4
+63821916,25746375,5
+77055604,25746375,4
+79053164,25746375,4
+61124642,25746375,4
+126039569,25746375,5
+123927119,25746375,4
+ihana,25746375,4
+53795550,25746375,5
+yelano,25746375,3
+98956266,25746375,4
+54273337,25746375,3
+bLack.N.bLue,25746375,2
+xiloxilo,25746375,3
+34154389,25746375,4
+inkhkkk,25746375,1
+136669389,25746375,4
+55850435,25746375,1
+72995081,25746375,2
+54805419,25746375,4
+mint_pegasus,25746375,4
+lainey1006,25746375,3
+4303543,25746375,4
+s-andy,25746375,3
+90972400,25746375,2
+68550063,25746375,4
+51338478,25746375,3
+luoochaoo,25746375,4
+67531205,25746375,4
+73998702,25746375,3
+87719224,25746375,4
+4221299,25746375,3
+38632566,25746375,4
+imswan,25746375,4
+51081238,25746375,4
+65392414,25746375,3
+25870327,25746375,5
+wentibuda,25746375,5
+50502799,25746375,3
+18071732,25746375,2
+57822161,25746375,4
+donkeylv,25746375,4
+66966914,25746375,5
+33942554,25746375,3
+56923647,25746375,4
+59721741,25746375,3
+44052755,25746375,5
+133281735,25746375,4
+43730319,25746375,4
+ruanzebang,25746375,5
+59307428,25746375,3
+46023770,25746375,3
+65458998,25746375,3
+isheldon,25746375,4
+doon7,25746375,3
+49007860,25746375,4
+47705439,25746375,4
+jideknight,25746375,3
+elvawang,25746375,3
+KSD1988,25746375,-1
+136557229,25746375,2
+thesue,25746375,2
+betajin,25746375,5
+65260404,25746375,4
+127965244,25746375,4
+91809497,25746375,2
+40329331,25746375,-1
+xiaokongji,25746375,3
+67652760,25746375,4
+104710659,25746375,2
+128038668,25746375,-1
+34882816,25746375,-1
+3716043,25746375,4
+54066175,25746375,4
+52038346,25746375,4
+39543044,25746375,3
+43360135,25746375,4
+abicee,25746375,5
+violetmelody,25746375,4
+TGLRF,25746375,3
+inameless,25746375,3
+65031840,25746375,4
+Fil-girl,25746375,2
+127273097,25746375,5
+Man7l,25746375,-1
+135197318,25746375,5
+40009085,25746375,4
+letu,25746375,5
+2924137,25746375,4
+4534607,25746375,4
+taxidriver1976,25746375,3
+chapu,25746375,5
+46625386,25746375,4
+lhnlyons,25746375,4
+blazel,25746375,3
+76148379,25746375,3
+49052740,25746375,3
+coldcall,25746375,4
+134461055,25746375,4
+126500017,25746375,3
+131427089,25746375,3
+12629797,25746375,3
+98956225,25746375,4
+48990593,25746375,3
+PhotonicsLab,25746375,3
+43958959,25746375,4
+67189963,25746375,4
+ysj,25746375,4
+bilibili01,25746375,3
+mirroryi,25746375,4
+46179117,25746375,4
+137503237,25746375,4
+92098661,25746375,1
+yumianfeilong,25746375,4
+48491192,25746375,2
+39518332,25746375,4
+34990141,25746375,1
+132790620,25746375,4
+66112477,25746375,2
+53919202,25746375,3
+65060690,25746375,5
+68771576,25746375,3
+lee_duhem,25746375,4
+godblessyou07,25746375,4
+viliyo,25746375,2
+windflower18,25746375,4
+4563034,25746375,4
+leecarp,25746375,2
+102804958,25746375,4
+colinjiang,25746375,4
+emmalty,25746375,3
+GKTThh,25746375,4
+1366693,25746375,3
+74139940,25746375,2
+55494665,25746375,4
+40451193,25746375,2
+mofang816,25746375,4
+4507417,25746375,3
+4223711,25746375,3
+tea123,25746375,3
+13319192,25746375,-1
+46152456,25746375,5
+2506122,25746375,2
+phantom77,25746375,3
+46963738,25746375,4
+51890989,25746375,4
+aawenping,25746375,5
+65937854,25746375,5
+47631922,25746375,4
+2376689,25746375,-1
+47737561,25746375,4
+114179686,25746375,4
+32505687,25746375,2
+4185694,25746375,5
+84212963,25746375,-1
+124887908,25746375,5
+91626041,25746375,3
+mycio,25746375,4
+54278180,25746375,-1
+wunengzi,25746375,2
+2210399,25746375,3
+137398525,25746375,4
+tangsoo,25746375,4
+125827809,25746375,3
+76379695,25746375,3
+135247004,25746375,4
+xihongshi103,25746375,4
+96807966,25746375,4
+zhaosq,25746375,3
+43297511,25746375,3
+131887197,25746375,4
+zhanghui1988,25746375,3
+gluttony6,25746375,3
+54135833,25746375,4
+20811878,25746375,4
+81916130,25746375,5
+48247472,25746375,3
+18218505,25746375,5
+49680774,25746375,3
+horadric,25746375,2
+Paranoidc,25746375,3
+63928218,25746375,5
+112962497,25746375,4
+62834139,25746375,3
+jinx_pure,25746375,4
+69750232,25746375,4
+63681662,25746375,4
+68547609,25746375,4
+38553909,25746375,4
+57446627,25746375,4
+137006409,25746375,4
+115786111,25746375,3
+120857431,25746375,5
+xiaoism,25746375,3
+68883830,25746375,4
+mikesun,25746375,3
+65944325,25746375,4
+114813775,25746375,-1
+mic1990,25746375,3
+84137263,25746375,4
+32650866,25746375,3
+70877322,25746375,4
+91958040,25746375,3
+128498983,25746375,1
+1655091,25746375,3
+wuyuxin,25746375,4
+41752430,25746375,4
+47815647,25746375,5
+89998402,25746375,4
+65895122,25746375,4
+maoxiaofeng,25746375,3
+75914022,25746375,5
+136409582,25746375,3
+66205030,25746375,3
+54693337,25746375,2
+saviolalwj,25746375,5
+3039896,25746375,-1
+faye2,25746375,3
+88345829,25746375,3
+liuhuan88,25746375,3
+jisixue0111,25746375,3
+colejie,25746375,4
+38519091,25746375,3
+47895323,25746375,4
+nikkiweiguo,25746375,3
+sherlyandnicole,25746375,3
+70350780,25746375,3
+4295874,25746375,4
+37034778,25746375,4
+journeyforever,25746375,3
+goldenslumber,25746375,2
+54679074,25746375,2
+3934064,25746375,4
+34826304,25746375,2
+52023451,25746375,4
+36658060,25746375,4
+48807966,25746375,5
+73135208,25746375,2
+whalebb,25746375,4
+130085182,25746375,5
+63015769,25746375,4
+3691770,25746375,4
+78236258,25746375,4
+84965549,25746375,4
+55596682,25746375,4
+35238754,25746375,4
+103390772,25746375,5
+whdxaamark,25746375,3
+65528579,25746375,2
+xiaoyu86,25746375,3
+imashley,25746375,3
+136829715,25746375,3
+penddy,25746375,3
+66575578,25746375,3
+80304181,25746375,4
+41926358,25746375,4
+71187686,25746375,3
+52956534,25746375,2
+34002570,25746375,4
+79404532,25746375,3
+58117184,25746375,3
+60669532,25746375,2
+1465243,25746375,4
+75196730,25746375,3
+111226948,25746375,4
+2634600,25746375,3
+69004349,25746375,4
+71273423,25746375,2
+nowaysis,25746375,4
+JoeyMoe,25746375,4
+126775069,25746375,3
+Bettylsb,25746375,4
+74973391,25746375,3
+4025639,25746375,4
+93113085,25746375,4
+5116652,25746375,4
+sniperfl,25746375,4
+lule,25746375,4
+35681480,25746375,4
+73319989,25746375,4
+3610351,25746375,3
+splu5,25746375,1
+58932081,25746375,5
+sanityyyang,25746375,4
+48312950,25746375,4
+54272292,25746375,3
+xiaobuting,25746375,5
+50399920,25746375,4
+melodywu,25746375,4
+119698382,25746375,3
+y1991513,25746375,5
+3649520,25746375,4
+50025009,25746375,4
+127757365,25746375,4
+134643922,25746375,4
+lmpq,25746375,5
+mpower007,25746375,3
+mcbaka,25746375,5
+zsq0028347,25746375,3
+BALENO,25746375,4
+mina1921,25746375,1
+42275944,25746375,4
+62870229,25746375,3
+14696091,25746375,1
+lonelyattic,25746375,4
+102902029,25746375,4
+33511772,25746375,4
+tuniu1,25746375,3
+119454086,25746375,3
+hermint,25746375,3
+48547507,25746375,4
+51863917,25746375,3
+daisylikeu,25746375,4
+51503469,25746375,3
+4182845,25746375,3
+darcyfio,25746375,4
+65025231,25746375,3
+136818696,25746375,2
+38576202,25746375,5
+61690695,25746375,4
+summermayfly,25746375,2
+att2046,25746375,3
+130309969,25746375,4
+zd342864648,25746375,5
+2445824,25746375,4
+58168997,25746375,-1
+60849208,25746375,4
+59807660,25746375,3
+pen,25746375,3
+125264394,25746375,2
+bread.H,25746375,-1
+3393944,25746375,5
+130534487,25746375,3
+onlyblue16,25746375,4
+48079918,25746375,4
+JoyceAn,25746375,4
+appleueno,25746375,5
+ev3ve,25746375,-1
+125741310,25746375,3
+youtuo_,25746375,5
+morphinerouge,25746375,4
+sundancingkid,25746375,3
+ziyunying,25746375,4
+noodleno3,25746375,5
+53932937,25746375,4
+66872399,25746375,5
+52629192,25746375,3
+pgdjx,25746375,4
+1370532,25746375,4
+63767578,25746375,5
+61652772,25746375,4
+fan0208,25746375,3
+67943333,25746375,3
+Lynnehe,25746375,4
+49772103,25746375,5
+32111208,25746375,4
+84599460,25746375,-1
+2018008,25746375,1
+120113112,25746375,5
+38412910,25746375,4
+66921135,25746375,3
+80731397,25746375,1
+4361353,25746375,2
+55888029,25746375,3
+50383138,25746375,5
+derek_major,25746375,4
+wch2020,25746375,3
+137240912,25746375,3
+52410236,25746375,4
+66219063,25746375,4
+74230672,25746375,4
+62314563,25746375,3
+3660751,25746375,4
+2828074,25746375,4
+66635759,25746375,4
+2121850,25746375,3
+61219547,25746375,3
+18102922,25746375,3
+77915462,25746375,3
+89435562,25746375,2
+135378115,25746375,4
+131205877,25746375,3
+Gabriel_Mars,25746375,4
+39890190,25746375,2
+12031989,25746375,4
+Liew_qing,25746375,3
+48998348,25746375,4
+63354598,25746375,2
+137129170,25746375,4
+137127465,25746375,4
+88206344,25746375,3
+azurepale,25746375,4
+maggie711,25746375,4
+ulawang0614,25746375,4
+137273110,25746375,4
+132611152,25746375,3
+51206699,25746375,4
+kiwihello,25746375,3
+120627904,25746375,3
+25123789,25746375,4
+70449020,25746375,4
+67368575,25746375,3
+sevenn77,25746375,4
+104713983,25746375,4
+47776464,25746375,4
+72820019,25746375,4
+xiaoyufan569801,25746375,4
+casuallife,25746375,4
+51503621,25746375,4
+135229497,25746375,3
+27704994,25746375,4
+chengjiaxuan,25746375,5
+36617894,25746375,2
+45870459,25746375,3
+piaoyi,25746375,4
+2556660,25746375,4
+1666027,25746375,4
+119030495,25746375,5
+49228948,25746375,5
+59167569,25746375,4
+71627900,25746375,4
+136175260,25746375,4
+68707622,25746375,4
+yuanpy,25746375,3
+134417369,25746375,4
+52360941,25746375,4
+73993174,25746375,3
+nonpchy,25746375,4
+rebean,25746375,5
+ying823624,25746375,4
+60246956,25746375,4
+29947405,25746375,2
+2850261,25746375,2
+wusuowei102,25746375,3
+ttlovett,25746375,5
+4724531,25746375,3
+55576764,25746375,4
+66207797,25746375,4
+xfhhj1984,25746375,4
+62795624,25746375,3
+130353620,25746375,3
+127115764,25746375,2
+127062843,25746375,4
+67494005,25746375,2
+115547734,25746375,2
+71625928,25746375,2
+41758761,25746375,4
+69822920,25746375,3
+49278748,25746375,4
+53476410,25746375,4
+82681356,25746375,3
+67759095,25746375,1
+67759095,25746375,1
+62745983,25746375,4
+131909298,25746375,3
+137101396,25746375,4
+132098902,25746375,1
+sirius_zhang,25746375,2
+45862256,25746375,4
+93455789,25746375,2
+50873714,25746375,4
+73034014,25746375,5
+angelliujiayun,25746375,4
+69095785,25746375,4
+63095954,25746375,4
+137206904,25746375,4
+shazhiyuan,25746375,3
+matoishere,25746375,3
+krenee,25746375,3
+90321364,25746375,5
+4217513,25746375,3
+55609700,25746375,4
+unclewangzz,25746375,3
+77883575,25746375,4
+136974711,25746375,4
+107898433,25746375,4
+51734113,25746375,3
+xianxiansushou,25746375,4
+71988580,25746375,4
+68505371,25746375,4
+15520729,25746375,3
+zhuzhenning,25746375,4
+70313709,25746375,4
+48239295,25746375,4
+84796061,25746375,4
+lunaya,25746375,2
+ibenben,25746375,3
+14068242,25746375,3
+lovesay,25746375,2
+69439267,25746375,3
+zhouruopei,25746375,3
+shelstar,25746375,5
+censhinan,25746375,5
+136879375,25746375,4
+94341296,25746375,3
+48259477,25746375,5
+liandilove,25746375,3
+61683482,25746375,2
+57155123,25746375,4
+83119838,25746375,3
+132701112,25746375,2
+bluesun1031,25746375,4
+113225797,25746375,2
+yagao1,25746375,3
+juiceyang,25746375,3
+104621407,25746375,3
+50900186,25746375,5
+68725217,25746375,5
+dayna,25746375,3
+43706777,25746375,5
+72786325,25746375,4
+lindadarling,25746375,5
+43290072,25746375,4
+62878798,25746375,3
+JoshuaW,25746375,4
+127297247,25746375,4
+grace0621,25746375,5
+changanamei,25746375,4
+83737381,25746375,3
+81592044,25746375,3
+53916327,25746375,3
+134499178,25746375,3
+136988227,25746375,4
+65207565,25746375,4
+34250438,25746375,-1
+134221842,25746375,4
+131704221,25746375,3
+1626349,25746375,3
+134041897,25746375,3
+62705416,25746375,4
+137061387,25746375,4
+68666799,25746375,4
+68666799,25746375,4
+69981208,25746375,4
+34364053,25746375,2
+136998081,25746375,4
+59788445,25746375,4
+48967331,25746375,5
+68551392,25746375,3
+43773252,25746375,4
+86183338,25746375,3
+64713560,25746375,3
+45268716,25746375,4
+yanzi_db,25746375,-1
+44049094,25746375,4
+46166301,25746375,5
+Ruty1985,25746375,3
+91882469,25746375,4
+127111031,25746375,3
+yvonneye,25746375,4
+40544887,25746375,5
+anteruna,25746375,3
+127373473,25746375,4
+rubiawu,25746375,3
+56005941,25746375,3
+harry731,25746375,3
+zhoulefeng,25746375,3
+78728709,25746375,3
+7329004,25746375,4
+4426162,25746375,4
+6972638,25746375,3
+RLanffy,25746375,3
+47054399,25746375,3
+127119228,25746375,4
+1423904,25746375,4
+131033417,25746375,4
+76590669,25746375,4
+zuoxiaoer,25746375,2
+Lee_13,25746375,4
+db00goal,25746375,3
+89747008,25746375,3
+102397525,25746375,3
+65723826,25746375,4
+122526882,25746375,4
+furore,25746375,5
+chenjialu031,25746375,2
+49904464,25746375,4
+119488274,25746375,4
+sunq,25746375,3
+40567402,25746375,4
+52054076,25746375,3
+76490379,25746375,4
+91121917,25746375,4
+131636309,25746375,5
+61559411,25746375,3
+55356134,25746375,4
+68630108,25746375,3
+75810755,25746375,1
+63894811,25746375,3
+49364288,25746375,4
+ifuseekayu,25746375,-1
+49164698,25746375,5
+Twdrop,25746375,4
+mkid1412,25746375,5
+61920965,25746375,1
+58215137,25746375,3
+102877510,25746375,3
+120782486,25746375,5
+119416612,25746375,3
+115258566,25746375,4
+fengjun,25746375,2
+51429005,25746375,5
+cyjcandychan,25746375,3
+71622967,25746375,4
+56500125,25746375,5
+57339325,25746375,5
+72645709,25746375,3
+71108612,25746375,3
+61024723,25746375,4
+55332677,25746375,3
+58606962,25746375,4
+track12345,25746375,3
+61150921,25746375,3
+70006548,25746375,5
+136251378,25746375,4
+reveur07,25746375,3
+104905007,25746375,4
+52046624,25746375,4
+58768499,25746375,3
+58356811,25746375,5
+majide,25746375,3
+viteless,25746375,4
+sunxiaozhao,25746375,4
+136765411,25746375,3
+137061442,25746375,4
+45012026,25746375,4
+47045027,25746375,5
+goodbyemagi,25746375,3
+57656194,25746375,3
+59716189,25746375,4
+53807344,25746375,3
+61681574,25746375,4
+44551969,25746375,4
+61675448,25746375,4
+84854172,25746375,4
+63599562,25746375,4
+xclc,25746375,5
+3312073,25746375,4
+4118910,25746375,2
+vcgreen,25746375,3
+130350658,25746375,-1
+59365027,25746375,5
+62688110,25746375,3
+xiaochen1109,25746375,3
+49326502,25746375,4
+131136009,25746375,4
+66991215,25746375,3
+xinxinyan,25746375,4
+jiangjiang10,25746375,3
+129336979,25746375,5
+61084664,25746375,3
+28374099,25746375,5
+74580493,25746375,3
+73470763,25746375,4
+wangyuwei526,25746375,3
+84431385,25746375,4
+136707179,25746375,4
+35260694,25746375,5
+4595070,25746375,4
+Kuroi,25746375,4
+45925572,25746375,3
+124669450,25746375,4
+119488264,25746375,4
+CCLOVEFF,25746375,4
+73530411,25746375,5
+kiethope,25746375,2
+126785151,25746375,3
+3077879,25746375,3
+4209463,25746375,3
+65488479,25746375,4
+136274462,25746375,5
+36886500,25746375,4
+65431427,25746375,4
+66088686,25746375,5
+114531705,25746375,3
+2798198,25746375,4
+90582258,25746375,4
+129633404,25746375,4
+49802388,25746375,4
+127131340,25746375,2
+3801705,25746375,1
+lightu,25746375,3
+57583046,25746375,2
+43328284,25746375,3
+aids,25746375,3
+53199629,25746375,3
+107827183,25746375,3
+47229378,25746375,4
+3003736,25746375,3
+96241491,25746375,3
+125386476,25746375,4
+70603009,25746375,4
+38449214,25746375,3
+57615935,25746375,2
+1491610,25746375,3
+50965309,25746375,3
+64486055,25746375,3
+wxf19951218,25746375,3
+133399736,25746375,4
+UnoCici,25746375,2
+127313933,25746375,4
+helloivan,25746375,3
+36002366,25746375,4
+59956628,25746375,4
+134101610,25746375,3
+71636255,25746375,4
+cccbean,25746375,4
+37879706,25746375,3
+63294498,25746375,4
+44177669,25746375,4
+50726933,25746375,5
+64531485,25746375,3
+115051698,25746375,3
+126248170,25746375,3
+mrserious,25746375,4
+43141610,25746375,4
+jimmyjiayou,25746375,4
+112178752,25746375,4
+terrybj,25746375,3
+passion.shen,25746375,5
+Valen-Valen,25746375,5
+112727322,25746375,4
+vianann,25746375,3
+13873761,25746375,3
+53308366,25746375,3
+56980595,25746375,4
+OldQuentin,25746375,4
+135888657,25746375,4
+2721610,25746375,4
+120567507,25746375,3
+49605690,25746375,5
+kangadai,25746375,4
+kangadai,25746375,4
+39923615,25746375,3
+48854353,25746375,2
+79834547,25746375,3
+2240638,25746375,1
+47181400,25746375,5
+dreckding,25746375,3
+zya5411,25746375,-1
+2353548,25746375,5
+whitekid,25746375,4
+3765392,25746375,5
+55322822,25746375,3
+130445057,25746375,4
+73156181,25746375,3
+99024523,25746375,4
+36317992,25746375,5
+4668252,25746375,3
+34246698,25746375,4
+66107296,25746375,4
+61252673,25746375,2
+sunshinetoo,25746375,3
+135290961,25746375,4
+54100046,25746375,5
+58057227,25746375,5
+63862716,25746375,5
+121619925,25746375,3
+lingdongling,25746375,3
+94392595,25746375,4
+4002268,25746375,3
+tracywu0326,25746375,3
+52392093,25746375,3
+54398591,25746375,3
+45631854,25746375,3
+hjaoxjl,25746375,3
+38698372,25746375,4
+ile,25746375,3
+55320874,25746375,1
+3450694,25746375,3
+bluefrog,25746375,5
+84544522,25746375,4
+110565024,25746375,3
+60927256,25746375,5
+41398559,25746375,3
+51181845,25746375,3
+123002309,25746375,4
+48966304,25746375,4
+136333363,25746375,3
+guanyu123,25746375,4
+4686156,25746375,4
+35670244,25746375,5
+jinbing,25746375,4
+68434505,25746375,5
+124370519,25746375,3
+1406185,25746375,5
+eiris,25746375,3
+65740339,25746375,5
+1739128,25746375,5
+CrystalFung,25746375,3
+123123131,25746375,4
+131141632,25746375,2
+4109036,25746375,5
+50403801,25746375,4
+76956024,25746375,3
+51271400,25746375,3
+43542523,25746375,3
+56687999,25746375,3
+74373859,25746375,4
+103596838,25746375,5
+45848130,25746375,5
+lovecall,25746375,3
+30569646,25746375,2
+57847628,25746375,-1
+28953793,25746375,3
+134390440,25746375,4
+hanhanq,25746375,3
+leechambo,25746375,2
+122436890,25746375,4
+55891007,25746375,4
+luocaoyaoyao,25746375,4
+3302374,25746375,4
+54935420,25746375,5
+62140326,25746375,3
+91458915,25746375,3
+27081582,25746375,3
+1014745,25746375,1
+xiamodegema,25746375,5
+xieyixi,25746375,3
+35700224,25746375,4
+67905577,25746375,3
+42765442,25746375,5
+48591645,25746375,3
+weiyangge,25746375,3
+lulu521621,25746375,3
+124720710,25746375,-1
+68468748,25746375,5
+40756690,25746375,4
+61116211,25746375,5
+131858556,25746375,3
+heathlon,25746375,5
+tiramisu-1990,25746375,2
+84558178,25746375,3
+134625303,25746375,3
+50219625,25746375,1
+2139004,25746375,-1
+3641686,25746375,5
+61398424,25746375,2
+32360693,25746375,4
+2370135,25746375,3
+55583926,25746375,4
+121921036,25746375,5
+4161321,25746375,5
+daisyhyj,25746375,3
+xxling,25746375,-1
+50192647,25746375,3
+58316570,25746375,3
+93211311,25746375,4
+38726798,25746375,5
+blackhead,25746375,3
+yangjing113,25746375,3
+76994083,25746375,4
+fmxiaofei,25746375,5
+14437038,25746375,1
+4491930,25746375,4
+shuang331,25746375,3
+78967703,25746375,4
+78831074,25746375,4
+zhegejiale,25746375,3
+2571976,25746375,3
+122888716,25746375,5
+70588269,25746375,4
+9596432,25746375,3
+60752975,25746375,2
+64725454,25746375,2
+3865432,25746375,3
+47335967,25746375,4
+tree1900,25746375,3
+Cynthiasama,25746375,4
+alex.tseng,25746375,3
+81253472,25746375,4
+4112102,25746375,3
+zhhuang1980,25746375,4
+49904422,25746375,5
+80227476,25746375,3
+clockwork-fish,25746375,3
+80905831,25746375,4
+avrilyian,25746375,4
+dx7590,25746375,4
+AllenZ_CN,25746375,3
+1840162,25746375,4
+4092102,25746375,4
+54158206,25746375,4
+xiawen0624,25746375,4
+84951260,25746375,3
+Vimmer,25746375,4
+61887621,25746375,4
+2923091,25746375,4
+61545524,25746375,5
+126600332,25746375,5
+68403421,25746375,5
+51405185,25746375,4
+1533129,25746375,5
+61076584,25746375,4
+lafengnan,25746375,3
+62350026,25746375,-1
+70030165,25746375,5
+65000612,25746375,5
+49337423,25746375,4
+50039035,25746375,5
+1700673,25746375,3
+54323000,25746375,4
+dengxian123,25746375,3
+64819804,25746375,2
+persephone_,25746375,2
+60599913,25746375,3
+69698013,25746375,5
+120233886,25746375,4
+knightvine,25746375,3
+71142163,25746375,5
+kadai929,25746375,4
+57683355,25746375,3
+66120167,25746375,4
+tzy608,25746375,4
+36391286,25746375,4
+130601471,25746375,4
+Jessicalulu,25746375,4
+3242895,25746375,4
+127018675,25746375,4
+2167030,25746375,4
+68251895,25746375,2
+50360912,25746375,3
+3609952,25746375,4
+63932302,25746375,5
+mayday728,25746375,5
+daizhongjie,25746375,3
+cheryllala,25746375,-1
+lavitelloni,25746375,3
+wlee21,25746375,3
+41209497,25746375,4
+38303495,25746375,5
+63874494,25746375,3
+35373128,25746375,4
+jiyuanwang,25746375,4
+3624250,25746375,4
+wuzicun,25746375,1
+89774510,25746375,5
+65698620,25746375,4
+aotui,25746375,3
+thina,25746375,5
+wangchengji47,25746375,5
+48654184,25746375,4
+miffy23,25746375,2
+130192544,25746375,4
+stilllive,25746375,2
+46655913,25746375,4
+34859400,25746375,4
+mhkm,25746375,2
+68686014,25746375,4
+sopin_kevin,25746375,5
+70102322,25746375,4
+60382938,25746375,-1
+5439991,25746375,4
+4622986,25746375,4
+mimimamahong_,25746375,3
+48377628,25746375,5
+OYPP1987,25746375,2
+103202495,25746375,3
+48417342,25746375,3
+38632557,25746375,4
+76230819,25746375,4
+wylwddjz,25746375,4
+3262786,25746375,4
+102931240,25746375,5
+2381269,25746375,2
+63777033,25746375,2
+53377652,25746375,5
+MITyuewen,25746375,5
+3006385,25746375,4
+75706202,25746375,3
+nuanshuiping,25746375,4
+132794903,25746375,4
+127654631,25746375,5
+1319405,25746375,1
+65688183,25746375,3
+130391371,25746375,3
+133706367,25746375,4
+4466839,25746375,2
+69326188,25746375,4
+52381487,25746375,4
+35549531,25746375,4
+48198502,25746375,3
+89079545,25746375,3
+47483268,25746375,4
+45787212,25746375,4
+77794190,25746375,5
+67115672,25746375,3
+xuzhezhen,25746375,5
+70055114,25746375,4
+yinmilan,25746375,4
+44699537,25746375,3
+80659101,25746375,1
+hawaiii,25746375,2
+120187057,25746375,4
+liyang3228082,25746375,5
+2178430,25746375,2
+2480215,25746375,3
+36329145,25746375,3
+60394296,25746375,5
+1122936,25746375,1
+liu65425,25746375,3
+90617915,25746375,-1
+52373049,25746375,4
+81629667,25746375,4
+4164323,25746375,4
+yuchaop,25746375,4
+51090641,25746375,4
+75375560,25746375,3
+41555500,25746375,2
+70506259,25746375,4
+63568126,25746375,3
+3101876,25746375,4
+4624921,25746375,4
+76995701,25746375,4
+3109255,25746375,4
+2299374,25746375,-1
+ypppp,25746375,4
+52545049,25746375,5
+53791114,25746375,4
+fenjianchen,25746375,4
+46530228,25746375,3
+8932929,25746375,4
+47183443,25746375,5
+hezihezi,25746375,-1
+summerose,25746375,4
+hairh,25746375,4
+luomengyuan,25746375,3
+jibo1991,25746375,4
+chennanlydia,25746375,4
+136510389,25746375,4
+xiaotwo,25746375,4
+tosummer,25746375,4
+51890472,25746375,3
+JayeeXu,25746375,4
+anitanine,25746375,3
+Yu-Tommy,25746375,4
+59572879,25746375,4
+104686807,25746375,5
+45061776,25746375,3
+72273417,25746375,2
+55910262,25746375,1
+61014554,25746375,5
+134003187,25746375,3
+yini100,25746375,4
+uzimakinaruto,25746375,1
+107835849,25746375,3
+44140767,25746375,3
+xieetuzi,25746375,3
+uncocor,25746375,4
+10851412,25746375,3
+88151197,25746375,4
+46708015,25746375,5
+oceanboo,25746375,3
+4749427,25746375,4
+agenta,25746375,-1
+60373659,25746375,4
+4734422,25746375,4
+55860333,25746375,4
+102435306,25746375,4
+135090308,25746375,5
+1375074,25746375,4
+46567889,25746375,3
+85324202,25746375,3
+65233662,25746375,5
+61152347,25746375,3
+spsara,25746375,3
+honey-honey,25746375,3
+62662196,25746375,5
+1240620,25746375,4
+64309170,25746375,3
+132104176,25746375,5
+128453737,25746375,3
+72399328,25746375,3
+wangxiaotuan,25746375,4
+blue1997,25746375,3
+136802138,25746375,5
+youmuyishu,25746375,4
+122064580,25746375,3
+106866145,25746375,4
+45925638,25746375,-1
+3005993,25746375,3
+67826155,25746375,3
+MaclovenZD,25746375,4
+wangxi,25746375,3
+74719967,25746375,4
+48071029,25746375,4
+123298914,25746375,4
+60430589,25746375,3
+logboy,25746375,4
+yunge1991,25746375,4
+47599682,25746375,4
+46631367,25746375,3
+134631211,25746375,3
+ran3233,25746375,4
+runcastor,25746375,5
+2837777,25746375,3
+62767717,25746375,2
+48486926,25746375,2
+tutudance,25746375,4
+120470819,25746375,3
+2835420,25746375,2
+73132324,25746375,5
+58983814,25746375,5
+79590572,25746375,-1
+66881453,25746375,3
+83795048,25746375,4
+130222539,25746375,3
+50854633,25746375,2
+lantianxia,25746375,2
+1365076,25746375,3
+123005858,25746375,5
+55021112,25746375,2
+50298838,25746375,4
+fred25,25746375,3
+54113299,25746375,5
+49724572,25746375,4
+babyprincy,25746375,4
+ypfair,25746375,3
+2121054,25746375,4
+80508054,25746375,5
+3229150,25746375,4
+antiquezz,25746375,3
+2647676,25746375,3
+79499016,25746375,4
+tiger.grass,25746375,5
+greatabel,25746375,4
+2437069,25746375,3
+personality,25746375,3
+2761282,25746375,4
+70484549,25746375,4
+22596190,25746375,4
+wt1112,25746375,-1
+68589815,25746375,3
+luanwuCAT,25746375,3
+seodler,25746375,3
+60835378,25746375,4
+126186349,25746375,4
+57947466,25746375,5
+120471779,25746375,5
+iFree,25746375,5
+136295452,25746375,5
+108328665,25746375,1
+63174808,25746375,3
+57779114,25746375,4
+1551353,25746375,4
+124618760,25746375,4
+15146438,25746375,4
+zhijunyo,25746375,3
+sisyphos,25746375,3
+48877659,25746375,3
+59556078,25746375,3
+moon_shiny,25746375,4
+35628940,25746375,4
+77130491,25746375,3
+108282995,25746375,4
+cherrytiaotiao,25746375,5
+topxpp,25746375,5
+papa1968,25746375,3
+3733528,25746375,1
+68951998,25746375,4
+64884887,25746375,3
+135112639,25746375,5
+olivelva,25746375,2
+44709496,25746375,1
+4141698,25746375,4
+58901835,25746375,4
+jojo19870625,25746375,5
+48623743,25746375,2
+66193180,25746375,4
+ann27996090,25746375,4
+32131953,25746375,1
+60181393,25746375,5
+85309350,25746375,4
+4534037,25746375,3
+108821133,25746375,4
+shepherded,25746375,4
+yoyo5411,25746375,5
+51005136,25746375,5
+1324079,25746375,3
+zzy1217,25746375,1
+63188462,25746375,4
+youjinane,25746375,4
+3012688,25746375,3
+C7chuqi,25746375,4
+neversad,25746375,3
+135853572,25746375,-1
+122994511,25746375,2
+akpe,25746375,5
+chickJzi,25746375,3
+3115138,25746375,5
+puppysora,25746375,4
+37620368,25746375,4
+136669626,25746375,3
+3642691,25746375,4
+74541103,25746375,2
+50094357,25746375,3
+57642711,25746375,2
+103089307,25746375,3
+136666408,25746375,3
+69244531,25746375,4
+82054541,25746375,3
+134511914,25746375,1
+43627476,25746375,3
+131132192,25746375,3
+39855725,25746375,4
+1532624,25746375,4
+53347373,25746375,4
+24515643,25746375,4
+64858053,25746375,4
+136653803,25746375,4
+4265133,25746375,3
+76553080,25746375,3
+sniperchris,25746375,3
+66036292,25746375,-1
+98942278,25746375,4
+senzai,25746375,2
+niuchen0288,25746375,4
+czhou,25746375,3
+87704099,25746375,-1
+51795855,25746375,3
+1958346,25746375,3
+chenfeiyu,25746375,3
+hermione_lv,25746375,3
+gexiaoshang,25746375,4
+60571781,25746375,2
+58079311,25746375,4
+lovedtomma,25746375,-1
+71767028,25746375,4
+64342708,25746375,4
+radiooo,25746375,3
+yaoxingjia,25746375,4
+33847605,25746375,4
+37120516,25746375,4
+74471598,25746375,4
+luoqingyou,25746375,3
+8026660,25746375,5
+GingerWang,25746375,4
+salahdou,25746375,4
+q164511490,25746375,4
+3012167,25746375,4
+55534067,25746375,3
+131053418,25746375,2
+54843650,25746375,3
+takashisama,25746375,3
+2820792,25746375,4
+49020270,25746375,4
+dyd0217,25746375,4
+61448696,25746375,5
+88312024,25746375,5
+2977227,25746375,3
+s_plus,25746375,5
+125455262,25746375,4
+87313440,25746375,3
+114558681,25746375,5
+77449073,25746375,4
+51588465,25746375,5
+guierzidegandie,25746375,5
+66706241,25746375,3
+sleety,25746375,4
+matamune,25746375,4
+125053842,25746375,4
+2305028,25746375,3
+116537123,25746375,4
+51245229,25746375,4
+57670721,25746375,5
+57658984,25746375,3
+46976674,25746375,3
+3041980,25746375,4
+anygned,25746375,-1
+2845890,25746375,5
+4127720,25746375,3
+94886676,25746375,3
+94886676,25746375,3
+135694361,25746375,3
+106521911,25746375,4
+68947670,25746375,3
+Orchendor,25746375,4
+3085720,25746375,3
+yaoyaoxiaozhan,25746375,4
+61033806,25746375,5
+57966431,25746375,3
+tongnixcv,25746375,4
+73735328,25746375,4
+harriet,25746375,2
+gj_1987,25746375,4
+lh12123,25746375,3
+121064013,25746375,3
+KeryChou,25746375,3
+65976416,25746375,3
+73416826,25746375,2
+Songoing,25746375,4
+sarlthuz,25746375,3
+yuyueehappy,25746375,3
+56347511,25746375,5
+136102603,25746375,3
+116614076,25746375,3
+136486316,25746375,3
+coryzh,25746375,4
+52598525,25746375,4
+77430587,25746375,4
+49339227,25746375,5
+2915862,25746375,3
+zhangdanyang,25746375,5
+127642913,25746375,5
+77263108,25746375,5
+103182067,25746375,4
+55416040,25746375,3
+127287577,25746375,3
+evertoooo,25746375,-1
+Vincentwu,25746375,4
+57032941,25746375,2
+43776116,25746375,4
+59640195,25746375,4
+78632729,25746375,3
+59025385,25746375,3
+136182892,25746375,4
+135970229,25746375,5
+128409852,25746375,3
+56260072,25746375,4
+55694899,25746375,5
+Nagini,25746375,1
+79030834,25746375,3
+52676418,25746375,4
+116073490,25746375,4
+61083695,25746375,1
+71373551,25746375,2
+grandmoon,25746375,4
+3914860,25746375,4
+50886730,25746375,3
+Rosier,25746375,3
+1244086,25746375,3
+134463446,25746375,3
+4392505,25746375,3
+44057273,25746375,4
+74337586,25746375,3
+56111522,25746375,3
+53536298,25746375,3
+66552525,25746375,3
+foreversylvia,25746375,2
+58731052,25746375,4
+yuetianxian,25746375,3
+freedomtravell,25746375,3
+2741100,25746375,5
+50275832,25746375,3
+1519013,25746375,4
+3897743,25746375,3
+chumin201111,25746375,3
+68963965,25746375,2
+79495537,25746375,4
+45939025,25746375,3
+134348634,25746375,3
+joycesi,25746375,5
+joycesi,25746375,5
+47725909,25746375,4
+zoe2punk,25746375,4
+136337190,25746375,3
+62730894,25746375,3
+xianxianchen,25746375,3
+68441766,25746375,3
+79158419,25746375,4
+68192537,25746375,5
+53907528,25746375,4
+103066869,25746375,4
+44109266,25746375,3
+42172734,25746375,5
+1271261,25746375,3
+51606763,25746375,5
+91117590,25746375,1
+quanetta,25746375,4
+3561748,25746375,3
+2158121,25746375,3
+1397180,25746375,4
+kitajimajunko,25746375,4
+43308232,25746375,5
+121299325,25746375,-1
+53980961,25746375,3
+34340016,25746375,4
+gongxiaoshan,25746375,3
+23543377,25746375,3
+132954430,25746375,3
+4033467,25746375,-1
+60668466,25746375,2
+63095049,25746375,3
+136039149,25746375,3
+datudoudatudou,25746375,4
+47589972,25746375,4
+46091317,25746375,3
+103271136,25746375,4
+acomplexman,25746375,4
+80786128,25746375,4
+96146816,25746375,2
+134433329,25746375,4
+89948761,25746375,3
+JackingChen,25746375,2
+48164798,25746375,3
+68399606,25746375,3
+yutang,25746375,3
+Video-game,25746375,5
+65178670,25746375,4
+cpxxpc,25746375,3
+llabria,25746375,3
+69337188,25746375,3
+67393303,25746375,3
+lovecimi,25746375,1
+119644008,25746375,4
+41636718,25746375,3
+62711685,25746375,2
+136182829,25746375,5
+44359880,25746375,2
+wongbur,25746375,4
+cyansugar,25746375,3
+115138237,25746375,4
+seattle_on,25746375,3
+49496474,25746375,3
+66540464,25746375,4
+2970334,25746375,3
+JOOOO,25746375,2
+46444197,25746375,3
+w74,25746375,3
+77621365,25746375,4
+84363352,25746375,4
+sushengkun,25746375,4
+30441221,25746375,4
+126513771,25746375,3
+sixiaokong,25746375,3
+39817838,25746375,3
+52347601,25746375,4
+46184375,25746375,4
+skyaim,25746375,4
+45259366,25746375,4
+50117171,25746375,4
+3413450,25746375,5
+3413450,25746375,5
+119296720,25746375,4
+kalla,25746375,4
+77169093,25746375,4
+18628004,25746375,5
+49382503,25746375,4
+135328500,25746375,4
+wfxs,25746375,4
+124697172,25746375,5
+134969713,25746375,3
+fzlinyanxia,25746375,5
+44741261,25746375,4
+88172383,25746375,3
+53561667,25746375,3
+bhg,25746375,3
+smartsz,25746375,5
+1645989,25746375,2
+122821584,25746375,4
+119731928,25746375,5
+3633901,25746375,5
+35961384,25746375,3
+123591194,25746375,3
+114422491,25746375,4
+59883834,25746375,5
+OldYuan,25746375,3
+zhangyuyuzhang,25746375,3
+5566664,25746375,3
+xxshen,25746375,3
+135372483,25746375,4
+70895488,25746375,4
+113234997,25746375,4
+56076845,25746375,5
+kaqiyuaiecho,25746375,4
+laolei19900613,25746375,3
+49137650,25746375,4
+scolo,25746375,4
+83322438,25746375,3
+2273247,25746375,4
+74897410,25746375,4
+71246873,25746375,5
+71246873,25746375,5
+120280467,25746375,4
+everytimedouble,25746375,3
+63830890,25746375,3
+73901440,25746375,4
+2845192,25746375,5
+wizardcypress,25746375,5
+53143088,25746375,3
+lyzw,25746375,5
+30531434,25746375,3
+2598849,25746375,5
+Maybo-Chang,25746375,3
+79423689,25746375,4
+67712120,25746375,5
+90748727,25746375,5
+KInCwen,25746375,4
+3880595,25746375,2
+vipdayu,25746375,3
+134496609,25746375,4
+theshow,25746375,4
+summerdayday,25746375,1
+mhyigeren,25746375,5
+wentrue,25746375,4
+56510668,25746375,5
+lady0627,25746375,3
+Gordoncoco,25746375,2
+sodayui,25746375,4
+6922527,25746375,4
+4342329,25746375,5
+53135638,25746375,4
+104167946,25746375,3
+se7en-se7en,25746375,3
+62650557,25746375,3
+121587043,25746375,5
+49028309,25746375,3
+24557674,25746375,4
+134580402,25746375,4
+1793602,25746375,3
+cailinxoo,25746375,4
+Yuenyuan,25746375,3
+Yuenyuan,25746375,3
+134339414,25746375,5
+jackie1211,25746375,5
+92335297,25746375,4
+55820297,25746375,4
+suis,25746375,4
+83192314,25746375,4
+135302519,25746375,3
+134505006,25746375,4
+82266049,25746375,2
+moonbutterfly,25746375,3
+75231611,25746375,3
+54557622,25746375,-1
+wangleku0310,25746375,3
+52009323,25746375,5
+ilovesusan,25746375,4
+129473035,25746375,4
+mintring,25746375,2
+135067568,25746375,3
+42066144,25746375,3
+skynery,25746375,4
+3613357,25746375,3
+OnlyCoffee,25746375,4
+GSP2006,25746375,3
+87652324,25746375,4
+feiwujin,25746375,4
+butcher09,25746375,5
+Ken,25746375,4
+bluesky1314,25746375,2
+62136582,25746375,-1
+59524621,25746375,2
+50619132,25746375,2
+52428606,25746375,4
+gaotianoye,25746375,3
+61898774,25746375,3
+63136253,25746375,4
+50478596,25746375,4
+vva_,25746375,3
+magicwind,25746375,2
+52278915,25746375,4
+28313985,25746375,2
+longdeshijie,25746375,4
+1840916,25746375,5
+41891982,25746375,5
+71654816,25746375,2
+1011562,25746375,4
+136054482,25746375,5
+cometoloveme,25746375,3
+3921724,25746375,3
+goddyzhao,25746375,5
+44863662,25746375,4
+49155542,25746375,1
+xiao7,25746375,4
+63278789,25746375,4
+81247992,25746375,4
+133664025,25746375,4
+95501857,25746375,3
+74916567,25746375,4
+30181678,25746375,3
+71467734,25746375,4
+79337395,25746375,3
+delicioussalad,25746375,5
+1207173,25746375,4
+chaud,25746375,4
+ritabx,25746375,4
+yeats1865,25746375,1
+52454145,25746375,4
+skysnow5201314,25746375,3
+3538758,25746375,4
+48408073,25746375,4
+liuhuanluoyang,25746375,4
+71471723,25746375,3
+97365571,25746375,3
+41353197,25746375,4
+45890616,25746375,3
+philette,25746375,3
+53685664,25746375,4
+115691415,25746375,3
+99977887,25746375,5
+2586114,25746375,3
+47509216,25746375,4
+46660893,25746375,3
+72593305,25746375,5
+chinadaidai,25746375,4
+xss0791,25746375,2
+75531469,25746375,1
+58708135,25746375,2
+68857964,25746375,4
+85398631,25746375,3
+128129404,25746375,5
+3618040,25746375,3
+raincatlee,25746375,3
+punkvv31,25746375,-1
+71918561,25746375,3
+49283691,25746375,3
+51990836,25746375,4
+3804622,25746375,1
+all_is_well,25746375,4
+55287270,25746375,4
+j23ju,25746375,4
+j23ju,25746375,4
+51792615,25746375,4
+68576240,25746375,3
+sunshinewang,25746375,4
+shirleybin,25746375,3
+84947801,25746375,2
+63598192,25746375,3
+133564346,25746375,3
+31466007,25746375,4
+28130069,25746375,3
+71547837,25746375,3
+68497673,25746375,4
+deadcolour,25746375,3
+sigoyiyang,25746375,5
+45639473,25746375,3
+57819875,25746375,3
+74797419,25746375,-1
+63886728,25746375,3
+72153259,25746375,4
+135799063,25746375,3
+31698933,25746375,3
+momojasper,25746375,4
+121163756,25746375,4
+47218828,25746375,2
+80578018,25746375,4
+zxdfgyiop,25746375,3
+58512408,25746375,4
+135788425,25746375,4
+54352343,25746375,4
+134937890,25746375,4
+20886546,25746375,3
+78196339,25746375,3
+1282890,25746375,-1
+michiru,25746375,3
+bof,25746375,4
+3859112,25746375,3
+yangyin827,25746375,4
+1486195,25746375,4
+1105862,25746375,3
+51092958,25746375,3
+zingchampion,25746375,4
+46269002,25746375,3
+luluoyi,25746375,5
+44045443,25746375,3
+bvnonesuch,25746375,5
+47471768,25746375,1
+sevenVSseven,25746375,3
+66519184,25746375,4
+56571660,25746375,3
+120934977,25746375,3
+51020341,25746375,4
+93828886,25746375,5
+81380855,25746375,3
+qingfengmubai,25746375,4
+powerdog,25746375,4
+45278107,25746375,2
+qd724945697,25746375,4
+iceprincess,25746375,3
+121932752,25746375,4
+39646385,25746375,3
+34006126,25746375,3
+56966752,25746375,3
+48705415,25746375,4
+haidiaozyx,25746375,5
+suncrying,25746375,5
+4024857,25746375,4
+fealty93314,25746375,3
+zilongu,25746375,5
+ruyuwong,25746375,2
+129215683,25746375,3
+forevervivi,25746375,5
+83268589,25746375,5
+happysadop,25746375,3
+49942003,25746375,4
+2185742,25746375,5
+4667696,25746375,1
+58601544,25746375,4
+49848172,25746375,3
+xyk_fly_sky,25746375,5
+HanCheung,25746375,4
+4115756,25746375,4
+57640790,25746375,4
+85634562,25746375,4
+129408166,25746375,3
+Y_juana,25746375,3
+54374544,25746375,-1
+65589400,25746375,3
+33149603,25746375,5
+119365101,25746375,3
+40081609,25746375,3
+67016989,25746375,3
+chjack,25746375,5
+ysxiang,25746375,4
+maimai251,25746375,3
+2196209,25746375,4
+4415376,25746375,3
+80791412,25746375,4
+sisiwong,25746375,5
+melody.wong,25746375,3
+120879875,25746375,4
+vanie,25746375,3
+Stamay_chou,25746375,4
+45053582,25746375,3
+84582504,25746375,2
+50739381,25746375,3
+80065462,25746375,1
+flower_ryoo,25746375,2
+60119754,25746375,2
+37001447,25746375,5
+4587913,25746375,4
+62369741,25746375,5
+ulenka,25746375,4
+4537806,25746375,-1
+1548541,25746375,4
+3690549,25746375,5
+illness,25746375,4
+40105202,25746375,4
+134021149,25746375,3
+35270225,25746375,5
+57848317,25746375,3
+leon_howe,25746375,5
+48031945,25746375,4
+81407852,25746375,3
+yanleung1102,25746375,3
+124914342,25746375,5
+52138435,25746375,1
+52558082,25746375,4
+48711761,25746375,5
+65138658,25746375,5
+zxjtmac,25746375,5
+64992164,25746375,5
+DrinkD,25746375,5
+47768193,25746375,4
+133504650,25746375,4
+90201276,25746375,5
+65557756,25746375,3
+51163329,25746375,3
+xiao-song,25746375,4
+120211426,25746375,4
+jiujiuprincess,25746375,4
+reyo,25746375,3
+vidia,25746375,5
+Chainsaw,25746375,4
+52555096,25746375,2
+yue126,25746375,4
+133890183,25746375,4
+59280087,25746375,5
+77288583,25746375,3
+jijillwang,25746375,3
+95074857,25746375,4
+NINEYR,25746375,3
+4222468,25746375,4
+44128425,25746375,3
+63820149,25746375,4
+43197819,25746375,4
+joybang,25746375,4
+122031722,25746375,-1
+4320404,25746375,3
+venus3255,25746375,4
+73381574,25746375,4
+58453718,25746375,3
+76526220,25746375,3
+46642490,25746375,4
+96428900,25746375,4
+49423075,25746375,4
+howhappy,25746375,3
+Sunx,25746375,3
+3345181,25746375,4
+124071720,25746375,5
+50875593,25746375,4
+uselesswlei,25746375,4
+121585200,25746375,3
+44020426,25746375,2
+3116575,25746375,4
+yoonjae_,25746375,2
+1768350,25746375,3
+121475864,25746375,4
+liuwen,25746375,-1
+laurawang,25746375,-1
+67550871,25746375,3
+maoyufreng,25746375,4
+50859088,25746375,5
+mutii,25746375,4
+34243799,25746375,4
+zhongdoudou,25746375,3
+105270130,25746375,4
+Pincent,25746375,3
+79450664,25746375,5
+98931515,25746375,5
+maomaoinjuye,25746375,1
+97869711,25746375,3
+56608210,25746375,3
+76509928,25746375,3
+isabella2524,25746375,3
+88035736,25746375,4
+45162443,25746375,4
+nvq7Gin,25746375,5
+csc,25746375,3
+47413356,25746375,3
+peipeilan,25746375,3
+peipeilan,25746375,3
+waisel,25746375,4
+128041275,25746375,5
+67100950,25746375,5
+gisellaxu,25746375,1
+107495405,25746375,4
+francisoloist,25746375,4
+131255183,25746375,2
+62677139,25746375,3
+3606264,25746375,3
+2532339,25746375,3
+76392317,25746375,2
+97035513,25746375,5
+70257063,25746375,4
+56603661,25746375,3
+chch1420,25746375,-1
+jc33,25746375,4
+49815117,25746375,4
+wmz1106,25746375,3
+ak0402,25746375,5
+1579290,25746375,4
+4214124,25746375,5
+Latios,25746375,5
+jumpingjanice,25746375,4
+60970282,25746375,4
+88213659,25746375,4
+3988772,25746375,2
+57175495,25746375,5
+62540914,25746375,3
+wfay,25746375,3
+74687875,25746375,5
+135469999,25746375,3
+52903376,25746375,4
+59698187,25746375,4
+2744514,25746375,4
+66646375,25746375,4
+86003490,25746375,5
+59959913,25746375,5
+litian19890502,25746375,3
+55387190,25746375,5
+52999504,25746375,4
+88355194,25746375,3
+65662348,25746375,3
+80566761,25746375,3
+62705115,25746375,3
+53408262,25746375,5
+2393231,25746375,3
+43782586,25746375,2
+narrowjiu,25746375,2
+4750660,25746375,3
+121943500,25746375,4
+1000545,25746375,4
+63145913,25746375,3
+56693883,25746375,4
+colorfullion,25746375,5
+he_wei,25746375,3
+134542917,25746375,3
+61682333,25746375,4
+lizandliz,25746375,3
+xweiway,25746375,3
+79990790,25746375,3
+48119930,25746375,4
+65077445,25746375,3
+littlet2010,25746375,4
+34102114,25746375,3
+55019838,25746375,4
+xinyu1890,25746375,4
+preppyM,25746375,4
+133864523,25746375,3
+C61497775,25746375,4
+3467669,25746375,3
+43257585,25746375,3
+43210840,25746375,4
+linxhe,25746375,4
+alaxos,25746375,3
+3745695,25746375,5
+64406910,25746375,2
+120274901,25746375,4
+119669141,25746375,3
+xisme,25746375,4
+97293420,25746375,4
+66544363,25746375,1
+qq381525772,25746375,4
+suiyi7367,25746375,3
+74106602,25746375,2
+summerday510,25746375,5
+21354916,25746375,3
+131829692,25746375,3
+mydrean,25746375,4
+50729959,25746375,5
+103277074,25746375,4
+81591121,25746375,5
+51706956,25746375,4
+luminRAY,25746375,4
+yangsheng213,25746375,4
+72128165,25746375,3
+skyjadebear,25746375,4
+33665319,25746375,3
+45078275,25746375,4
+121959506,25746375,3
+aniya320,25746375,3
+26743316,25746375,5
+30116913,25746375,4
+59544350,25746375,3
+85931860,25746375,4
+1751335,25746375,4
+66458815,25746375,2
+kaixian,25746375,4
+Nicccki,25746375,4
+Jerry_sun,25746375,4
+jinsek,25746375,5
+124087231,25746375,3
+37425972,25746375,3
+I_love_night,25746375,3
+92177885,25746375,4
+62074957,25746375,4
+57089947,25746375,5
+72168473,25746375,5
+95832299,25746375,3
+helianthus249,25746375,5
+134495648,25746375,3
+im61,25746375,4
+102688832,25746375,4
+3362566,25746375,3
+Fay...,25746375,2
+mangomaluko,25746375,3
+2974903,25746375,3
+34437764,25746375,4
+131843195,25746375,4
+jiudoucairen,25746375,4
+cgy,25746375,1
+2797115,25746375,3
+1214399,25746375,5
+bltee,25746375,3
+89792510,25746375,4
+xiaofeilv,25746375,5
+47212245,25746375,-1
+66976207,25746375,3
+49394474,25746375,4
+bulijite,25746375,4
+Georgewen,25746375,4
+50273521,25746375,-1
+guey4,25746375,5
+125546785,25746375,3
+44095444,25746375,3
+endlishock,25746375,4
+pandoragbn,25746375,3
+70459367,25746375,2
+95460891,25746375,5
+dongboqi,25746375,3
+70238509,25746375,4
+43393007,25746375,3
+delysia11,25746375,3
+cherub235,25746375,3
+40966373,25746375,2
+121909765,25746375,4
+57163926,25746375,4
+1569342,25746375,2
+ellenbell,25746375,4
+xingxiaoxin,25746375,5
+58859760,25746375,4
+3433935,25746375,3
+48095362,25746375,3
+44536599,25746375,2
+49234073,25746375,4
+18206417,25746375,4
+momosnailhouse,25746375,4
+kring,25746375,4
+4564181,25746375,3
+54632275,25746375,3
+57276589,25746375,-1
+manmandemange,25746375,3
+135585747,25746375,1
+58004418,25746375,4
+103441649,25746375,3
+131591198,25746375,4
+79823709,25746375,5
+nigu_lulu,25746375,2
+81445026,25746375,3
+62776173,25746375,3
+xiajixiangnan,25746375,5
+rainbowwang,25746375,5
+128255313,25746375,4
+feng1224,25746375,3
+80425908,25746375,4
+3551930,25746375,5
+80372330,25746375,5
+airqueen,25746375,3
+49750444,25746375,4
+102108363,25746375,5
+83987761,25746375,3
+zbpp1986,25746375,5
+58880510,25746375,4
+carinawang,25746375,4
+54727803,25746375,4
+48055933,25746375,4
+102853868,25746375,4
+133483951,25746375,1
+57831670,25746375,4
+54265487,25746375,3
+48032170,25746375,5
+40762182,25746375,4
+121758004,25746375,3
+micheljj928,25746375,2
+gogowa,25746375,4
+allenyao,25746375,2
+67425224,25746375,4
+rasimya,25746375,3
+gslzym,25746375,4
+56630500,25746375,5
+67416002,25746375,3
+3679450,25746375,4
+16333554,25746375,4
+80784693,25746375,5
+2632722,25746375,4
+78540104,25746375,3
+50474968,25746375,1
+60232354,25746375,5
+2731428,25746375,4
+1333031,25746375,-1
+dahlie,25746375,3
+109576871,25746375,3
+57294981,25746375,4
+72723779,25746375,3
+78906906,25746375,4
+3261532,25746375,2
+79478187,25746375,4
+63202867,25746375,3
+134318408,25746375,1
+flyingaway07,25746375,4
+1615580,25746375,4
+45362948,25746375,4
+cwalet,25746375,5
+46718918,25746375,2
+lomoka,25746375,3
+38853044,25746375,2
+31714780,25746375,5
+52587148,25746375,3
+ink1020,25746375,4
+WYTlucky_420,25746375,3
+66563256,25746375,5
+68510883,25746375,3
+lrshmily,25746375,4
+51636486,25746375,3
+sophia_423,25746375,3
+115735544,25746375,4
+fenshoudashi,25746375,4
+xiaoxiaoxincute,25746375,5
+131455416,25746375,2
+Kay.X,25746375,5
+peterzhou001,25746375,4
+nevernice,25746375,4
+k33425,25746375,4
+troyshen,25746375,4
+ruo,25746375,3
+119098958,25746375,4
+45415867,25746375,5
+cen1126,25746375,3
+64142096,25746375,3
+simplyme,25746375,-1
+simplyme,25746375,-1
+abecho,25746375,4
+71593445,25746375,4
+30986190,25746375,4
+sandywhite,25746375,3
+69594701,25746375,3
+93613617,25746375,2
+103551700,25746375,2
+48875745,25746375,4
+92642414,25746375,3
+AmadHatter,25746375,2
+84978476,25746375,3
+1485397,25746375,3
+xuanxuan1209,25746375,4
+5302841,25746375,5
+Coky.M,25746375,3
+65153719,25746375,5
+135317067,25746375,4
+53562021,25746375,3
+1144335,25746375,3
+shrekD,25746375,3
+23416699,25746375,3
+131106137,25746375,4
+yushuuk,25746375,2
+73926000,25746375,1
+porquetevas,25746375,-1
+124497944,25746375,4
+QINGFENGDIEWU,25746375,4
+Gladysxie,25746375,4
+75531460,25746375,4
+yuanzedong,25746375,3
+on1yys,25746375,3
+53082027,25746375,5
+kiddoanne,25746375,3
+jadexyy,25746375,4
+81030268,25746375,4
+bluedestiny,25746375,5
+68283591,25746375,4
+121391257,25746375,4
+thelovebones,25746375,4
+izzie,25746375,4
+46183275,25746375,3
+123004132,25746375,4
+134758461,25746375,3
+51363216,25746375,3
+66779947,25746375,4
+46402600,25746375,4
+68758179,25746375,3
+68421851,25746375,5
+3892506,25746375,3
+93374803,25746375,4
+135470899,25746375,4
+120002421,25746375,3
+64163444,25746375,3
+120358782,25746375,4
+3442024,25746375,2
+Jo_6002,25746375,3
+49525551,25746375,3
+48006044,25746375,2
+131932102,25746375,4
+63858929,25746375,3
+87825965,25746375,3
+vivacto,25746375,4
+91088197,25746375,5
+54742628,25746375,4
+60437819,25746375,5
+127592240,25746375,3
+72563139,25746375,4
+Light_L,25746375,-1
+51067589,25746375,3
+97354586,25746375,3
+samomos,25746375,4
+65561773,25746375,4
+baicun,25746375,4
+52169768,25746375,4
+3223179,25746375,-1
+sysonchen,25746375,4
+Reignian,25746375,1
+43574449,25746375,4
+blue-Petit,25746375,3
+looktwice,25746375,2
+25740506,25746375,4
+52816310,25746375,4
+50516350,25746375,4
+53806077,25746375,4
+hibi,25746375,4
+75255232,25746375,2
+shuaziwang,25746375,4
+62428481,25746375,4
+l97183025,25746375,3
+61209060,25746375,4
+44451771,25746375,4
+132967809,25746375,4
+119831217,25746375,3
+nuriazsy,25746375,5
+14991491,25746375,1
+super_tao,25746375,4
+zhahaibo,25746375,-1
+87532340,25746375,4
+52385653,25746375,2
+132841345,25746375,4
+115356546,25746375,3
+4056994,25746375,4
+92155502,25746375,4
+48910590,25746375,4
+3536775,25746375,3
+27090157,25746375,4
+4207280,25746375,4
+27408437,25746375,4
+68968517,25746375,3
+48113232,25746375,3
+45933152,25746375,4
+jetaimeyc,25746375,3
+53332081,25746375,4
+crystal91ma,25746375,5
+steve-zhang,25746375,4
+68014143,25746375,4
+132010641,25746375,5
+102812397,25746375,2
+tongjy,25746375,3
+14113539,25746375,4
+EdgarII,25746375,3
+13156041,25746375,4
+52033116,25746375,3
+45637798,25746375,4
+five_eren,25746375,2
+noeee_j,25746375,3
+artemishappy,25746375,2
+66969635,25746375,4
+53604938,25746375,3
+guihan,25746375,4
+69273736,25746375,5
+3805082,25746375,5
+80820907,25746375,4
+133593177,25746375,4
+killian9999,25746375,4
+33491668,25746375,3
+55519511,25746375,4
+ijoy1987,25746375,5
+40593676,25746375,1
+135396561,25746375,4
+monster1000,25746375,4
+46397769,25746375,4
+66767418,25746375,4
+41351821,25746375,4
+85016135,25746375,3
+61944030,25746375,3
+ts14,25746375,4
+82254270,25746375,4
+lollypop777,25746375,1
+tristanfree,25746375,4
+1467788,25746375,5
+darkwindsd,25746375,3
+51691062,25746375,2
+66800718,25746375,3
+Razzmatazz,25746375,3
+AJDENOLE-,25746375,3
+57841233,25746375,1
+83693320,25746375,4
+79858645,25746375,3
+79858645,25746375,3
+44748684,25746375,3
+130819255,25746375,4
+35586325,25746375,3
+2428233,25746375,3
+vanessa-hsueh,25746375,5
+toka,25746375,4
+3591608,25746375,3
+104341762,25746375,5
+tsuan,25746375,4
+lostoldboy,25746375,3
+53071214,25746375,3
+62318575,25746375,4
+2762159,25746375,4
+79923593,25746375,-1
+landelanle,25746375,4
+neverjames,25746375,-1
+nancyasuka,25746375,3
+47801703,25746375,4
+125760534,25746375,3
+125760534,25746375,3
+35384928,25746375,4
+ccushuaia1220,25746375,-1
+1817816,25746375,5
+132011879,25746375,4
+62519656,25746375,5
+124956698,25746375,2
+128405814,25746375,2
+badaalle,25746375,4
+yushuliuy,25746375,2
+1068125,25746375,4
+ximeir,25746375,4
+47186001,25746375,3
+shine-wang,25746375,4
+Yolandaleaf,25746375,5
+cancer1990,25746375,5
+pirouette,25746375,4
+73868761,25746375,4
+sonicyang,25746375,5
+114306583,25746375,5
+stoneone,25746375,4
+131511603,25746375,4
+arriettyT,25746375,3
+61775961,25746375,4
+102220097,25746375,5
+103786251,25746375,4
+63081650,25746375,5
+levitating,25746375,2
+80920192,25746375,4
+128736430,25746375,3
+kim5257,25746375,5
+68971338,25746375,3
+63100732,25746375,3
+marco_0708,25746375,3
+shaojianbuguai,25746375,5
+2028239,25746375,3
+2265583,25746375,4
+134275392,25746375,3
+119163796,25746375,4
+90644875,25746375,4
+50555792,25746375,4
+Yuimokin,25746375,4
+72461082,25746375,4
+56529479,25746375,4
+56441549,25746375,4
+127188875,25746375,3
+47317231,25746375,4
+xingxin6,25746375,4
+93484113,25746375,3
+63579771,25746375,3
+imthewind,25746375,3
+114713934,25746375,4
+121945022,25746375,5
+87956504,25746375,4
+54893820,25746375,4
+68000398,25746375,3
+maydayyqy,25746375,3
+yuexiaokan,25746375,-1
+131551681,25746375,4
+78619480,25746375,5
+47774379,25746375,2
+leehikari,25746375,4
+10200994,25746375,5
+paul314,25746375,3
+bear1943,25746375,2
+51491569,25746375,2
+chenkefeng,25746375,1
+alicelv,25746375,5
+76594256,25746375,4
+huahuadaisy,25746375,4
+131860652,25746375,3
+49469319,25746375,-1
+34343005,25746375,4
+LOHANSYANG,25746375,4
+ji3206,25746375,4
+53272974,25746375,4
+68607460,25746375,2
+56803436,25746375,3
+66179494,25746375,4
+80050743,25746375,5
+37771316,25746375,3
+1943946,25746375,-1
+40081722,25746375,4
+58611624,25746375,4
+paper,25746375,-1
+65925279,25746375,3
+46150436,25746375,4
+funz_7,25746375,4
+73270980,25746375,-1
+97057870,25746375,4
+48787115,25746375,5
+44028253,25746375,3
+45784891,25746375,3
+11889754,25746375,-1
+2324863,25746375,3
+134523911,25746375,-1
+43888841,25746375,4
+1767400,25746375,-1
+47849881,25746375,4
+122039396,25746375,3
+132745705,25746375,5
+helen--lu,25746375,-1
+123274527,25746375,3
+55835825,25746375,5
+76189804,25746375,3
+iammonna,25746375,-1
+nxam,25746375,4
+50073602,25746375,5
+60079529,25746375,4
+xyzxun,25746375,3
+nangdaocc,25746375,4
+waershi,25746375,4
+1958578,25746375,4
+74691684,25746375,5
+4315193,25746375,-1
+lilong4174,25746375,-1
+4051028,25746375,4
+53207085,25746375,4
+livyluqin,25746375,5
+127113606,25746375,3
+127113606,25746375,3
+MeloTheFisher,25746375,3
+71062611,25746375,3
+65535508,25746375,4
+111008242,25746375,3
+45800647,25746375,2
+xiaopjie,25746375,2
+47057852,25746375,3
+87997485,25746375,2
+hecongqi,25746375,5
+132849065,25746375,2
+121346678,25746375,3
+67461746,25746375,4
+stellazz,25746375,3
+Lynnxj,25746375,2
+73059881,25746375,3
+65518234,25746375,5
+marryliu,25746375,3
+64144494,25746375,2
+grayer,25746375,3
+73741678,25746375,3
+43625639,25746375,3
+Hitachi,25746375,3
+xinxinniannian,25746375,3
+48014314,25746375,3
+trista-lam,25746375,-1
+yue17years,25746375,4
+yexuanyulinxi,25746375,5
+63090822,25746375,3
+47689914,25746375,4
+37675452,25746375,5
+81770301,25746375,5
+lewis_zzc,25746375,4
+3111681,25746375,3
+50608703,25746375,4
+50892549,25746375,3
+45186809,25746375,5
+93924879,25746375,-1
+nbyidao,25746375,2
+tayee,25746375,5
+ZXL29011076,25746375,4
+124640229,25746375,4
+46496098,25746375,-1
+34990334,25746375,5
+A-Marvin-T,25746375,2
+111461811,25746375,5
+bmw.lili,25746375,4
+40105087,25746375,3
+mayoke,25746375,4
+58414355,25746375,2
+69573255,25746375,2
+36537385,25746375,4
+16928498,25746375,4
+1356477,25746375,4
+68978681,25746375,4
+pavi_liu_chenka,25746375,2
+sherrykingna,25746375,4
+75937419,25746375,4
+29562487,25746375,4
+44303318,25746375,3
+44303318,25746375,3
+3712505,25746375,4
+36621771,25746375,2
+47696504,25746375,4
+97537742,25746375,3
+peyman,25746375,4
+73012023,25746375,1
+33328526,25746375,5
+127449662,25746375,3
+67520406,25746375,2
+53665936,25746375,3
+monser,25746375,4
+57048528,25746375,5
+skiny_orange,25746375,4
+129134167,25746375,4
+camellowang,25746375,3
+pigSu,25746375,5
+79897503,25746375,4
+60751376,25746375,4
+46734513,25746375,5
+53794095,25746375,3
+71616521,25746375,4
+3818190,25746375,3
+47120473,25746375,5
+67244165,25746375,3
+3306133,25746375,5
+12215890,25746375,5
+130817915,25746375,2
+lichuman,25746375,5
+SLNWANNA,25746375,2
+1334269,25746375,4
+73161604,25746375,3
+linxiaohuajun,25746375,5
+66904097,25746375,5
+89522853,25746375,4
+1467881,25746375,3
+134914562,25746375,5
+chloeti,25746375,3
+Z-nana,25746375,3
+xueqianxun321,25746375,3
+12530761,25746375,3
+43005070,25746375,2
+helene420,25746375,3
+96619761,25746375,4
+58042557,25746375,4
+2752525,25746375,4
+ruthchai,25746375,3
+55933493,25746375,4
+51299697,25746375,4
+sophytao,25746375,4
+2162982,25746375,4
+93185183,25746375,5
+68364127,25746375,2
+4607061,25746375,4
+116977972,25746375,4
+liting888,25746375,4
+4380133,25746375,3
+41715781,25746375,4
+49442507,25746375,3
+1182532,25746375,3
+55852131,25746375,4
+89716765,25746375,5
+81403687,25746375,5
+zeroseo,25746375,5
+OMGZZ,25746375,4
+54703119,25746375,4
+1530502,25746375,3
+klausking941016,25746375,4
+2554786,25746375,4
+40479921,25746375,4
+2976950,25746375,1
+85948759,25746375,5
+1828898,25746375,3
+39412698,25746375,3
+yangpuwei,25746375,3
+99193832,25746375,4
+135042340,25746375,3
+yifeng2013,25746375,4
+jhbaidiao,25746375,4
+2161651,25746375,-1
+52399477,25746375,5
+50120843,25746375,4
+4553065,25746375,5
+1802279,25746375,3
+lotus47,25746375,3
+66178639,25746375,1
+56981599,25746375,2
+gypsy1993,25746375,3
+86955055,25746375,4
+violet_heaven,25746375,3
+mewcatcher,25746375,4
+47554822,25746375,4
+52071881,25746375,3
+28170509,25746375,4
+kongguyouju,25746375,4
+50238914,25746375,4
+114435379,25746375,4
+79847046,25746375,2
+winglet,25746375,4
+50846350,25746375,4
+shexihuan,25746375,4
+100935420,25746375,4
+47230637,25746375,3
+79463544,25746375,4
+13026676,25746375,4
+misteror,25746375,4
+QJiangSpeak,25746375,4
+59567345,25746375,2
+wangyy99,25746375,3
+karenlo,25746375,5
+49702943,25746375,3
+listentomelody,25746375,4
+49465683,25746375,4
+forgodot,25746375,3
+LEE0222,25746375,4
+68014946,25746375,4
+49922892,25746375,3
+lcnverland,25746375,4
+4245898,25746375,5
+2030775,25746375,4
+sky31even,25746375,5
+70401181,25746375,5
+1041979,25746375,4
+15778860,25746375,2
+63923308,25746375,2
+szhiji,25746375,3
+48370202,25746375,-1
+fireflyxin,25746375,4
+115721198,25746375,4
+78403851,25746375,4
+53541312,25746375,5
+conniemya,25746375,3
+71900698,25746375,4
+55022659,25746375,4
+64197994,25746375,3
+88652488,25746375,2
+yvone1220,25746375,3
+26461987,25746375,3
+45079617,25746375,3
+94587558,25746375,4
+39583969,25746375,4
+sunwindow,25746375,4
+p_travel,25746375,5
+122184294,25746375,4
+4606888,25746375,5
+67649121,25746375,5
+toysfactory,25746375,3
+2512786,25746375,3
+barcelonazhou,25746375,4
+tanguohong,25746375,5
+87677601,25746375,-1
+1468930,25746375,5
+Irene_1991,25746375,4
+78364683,25746375,4
+1074069,25746375,3
+HBtemptation,25746375,2
+49437518,25746375,4
+135077083,25746375,4
+anison,25746375,4
+114441069,25746375,3
+122251320,25746375,5
+48121857,25746375,4
+109446676,25746375,5
+SuzyMao,25746375,3
+heybuwawa,25746375,4
+ala7lee,25746375,3
+30674711,25746375,4
+saintage,25746375,4
+4329212,25746375,2
+appleright,25746375,2
+dancoldan,25746375,4
+summerforever,25746375,4
+on1ooker,25746375,3
+tinything,25746375,4
+57730238,25746375,5
+lubolin,25746375,3
+66686811,25746375,5
+xylor,25746375,4
+samsamt,25746375,-1
+131364833,25746375,1
+weiyg1989,25746375,-1
+69068594,25746375,3
+tommyyoung,25746375,4
+50931510,25746375,5
+acemore,25746375,4
+47504020,25746375,3
+108229820,25746375,3
+89707711,25746375,5
+96638998,25746375,5
+56803551,25746375,3
+64841580,25746375,3
+53430150,25746375,3
+59390060,25746375,3
+84139416,25746375,3
+butterfly123,25746375,2
+133332673,25746375,4
+ala310,25746375,3
+2728631,25746375,3
+linnea0313,25746375,3
+49248736,25746375,4
+yangqiaohe,25746375,3
+48562105,25746375,5
+ice41322,25746375,1
+24406697,25746375,4
+sylier,25746375,2
+63214398,25746375,4
+dante8977,25746375,4
+suzie09-20,25746375,4
+54034056,25746375,3
+tessai,25746375,4
+x0510z,25746375,5
+30804612,25746375,4
+24040752,25746375,2
+fanze,25746375,2
+61184354,25746375,4
+47635352,25746375,5
+mabeysomeday,25746375,3
+62664539,25746375,4
+61823164,25746375,4
+2229038,25746375,3
+61223246,25746375,4
+purpleagle,25746375,3
+2911617,25746375,4
+zgd0914,25746375,4
+55640916,25746375,4
+88951785,25746375,2
+134983577,25746375,4
+52697786,25746375,4
+61547123,25746375,3
+kafka85,25746375,-1
+wangwaixian508,25746375,3
+122341750,25746375,2
+justcrazy,25746375,3
+countryman,25746375,2
+1766764,25746375,2
+78977506,25746375,2
+cqwz,25746375,2
+cocof,25746375,3
+44973722,25746375,3
+39739261,25746375,4
+54994533,25746375,4
+59944601,25746375,3
+54242754,25746375,4
+126081007,25746375,5
+2411985,25746375,4
+xuyinaxxxxxxx,25746375,5
+zhangdi7019,25746375,5
+117027234,25746375,4
+69785577,25746375,3
+visionhyr,25746375,2
+54630524,25746375,4
+54784875,25746375,4
+52899301,25746375,4
+39347867,25746375,4
+70638556,25746375,5
+52640944,25746375,5
+133651758,25746375,2
+68403341,25746375,3
+81962971,25746375,3
+37420534,25746375,4
+41579519,25746375,5
+38538166,25746375,1
+134503726,25746375,4
+Dallowave,25746375,3
+xiaoershuo,25746375,2
+hiolivia,25746375,3
+69572564,25746375,3
+80933554,25746375,4
+crazyfatpig,25746375,4
+77089569,25746375,5
+62671036,25746375,3
+3392435,25746375,5
+88961089,25746375,4
+wl_22,25746375,4
+schumibati,25746375,4
+unicorn1018,25746375,4
+46361626,25746375,3
+4019279,25746375,3
+30894678,25746375,4
+63218478,25746375,5
+45716667,25746375,3
+48163368,25746375,5
+46827374,25746375,4
+rachelkaka,25746375,2
+daodi,25746375,3
+ccaokunn,25746375,5
+littleyellowhat,25746375,4
+48905575,25746375,4
+92119764,25746375,3
+41823915,25746375,4
+134589409,25746375,5
+65683142,25746375,3
+45619504,25746375,-1
+62257668,25746375,5
+3863337,25746375,3
+69847160,25746375,2
+47273031,25746375,5
+beijusenlin,25746375,3
+88679885,25746375,5
+MapleWY1106,25746375,3
+92859692,25746375,3
+childy,25746375,5
+Elvis-lx3,25746375,3
+62237138,25746375,4
+50413289,25746375,3
+96490951,25746375,4
+47178705,25746375,3
+MrKny,25746375,2
+72133915,25746375,5
+46615871,25746375,5
+54152146,25746375,3
+44930454,25746375,3
+fengbao945,25746375,4
+53944778,25746375,1
+weexf,25746375,3
+syh622,25746375,3
+vicky_talk,25746375,2
+34343021,25746375,5
+GZ,25746375,2
+49055568,25746375,3
+49055568,25746375,3
+47755926,25746375,3
+57880931,25746375,4
+caicai1005,25746375,4
+42889609,25746375,4
+hai2hai,25746375,3
+isabel_cui,25746375,1
+59012758,25746375,4
+wjiandan,25746375,4
+40765170,25746375,5
+122154980,25746375,3
+wodezuiai99,25746375,4
+loveubefor,25746375,3
+my-movie,25746375,3
+soultaker,25746375,3
+65373191,25746375,3
+skyearthone,25746375,4
+FiveStrong,25746375,3
+qiluoluo,25746375,4
+9990655,25746375,3
+82027868,25746375,5
+33757247,25746375,5
+63033488,25746375,4
+74606368,25746375,3
+120003714,25746375,4
+79758590,25746375,3
+62086431,25746375,5
+35506270,25746375,4
+59430357,25746375,3
+51103959,25746375,5
+48167317,25746375,4
+4196011,25746375,2
+134750335,25746375,3
+Lan.die,25746375,4
+130952703,25746375,3
+2009103,25746375,4
+40840298,25746375,3
+88154746,25746375,3
+46899693,25746375,4
+48440999,25746375,3
+50699357,25746375,5
+mrbrightside,25746375,2
+WSSWHL,25746375,3
+eapac,25746375,-1
+48252437,25746375,2
+65292306,25746375,3
+18984732,25746375,5
+55983243,25746375,4
+53638972,25746375,4
+79409218,25746375,3
+FrozenEric,25746375,3
+honey-catherine,25746375,3
+2139321,25746375,3
+biteorange,25746375,3
+43375121,25746375,4
+2842937,25746375,3
+yourmint,25746375,3
+linxiaoleng,25746375,3
+sure1101,25746375,3
+123029780,25746375,5
+51618406,25746375,3
+yangshijie1107,25746375,4
+wxb24,25746375,3
+53504947,25746375,1
+59537499,25746375,5
+45755121,25746375,3
+xiaozhujsy,25746375,3
+89039670,25746375,2
+1358167,25746375,4
+YOUGOTGOU,25746375,3
+64056530,25746375,3
+luoyuhu,25746375,4
+48258223,25746375,5
+60095714,25746375,4
+62932403,25746375,-1
+55512330,25746375,1
+130479445,25746375,5
+15810065,25746375,3
+Shadow..,25746375,4
+kakaitachi,25746375,3
+brucewong,25746375,4
+50890852,25746375,5
+1303295,25746375,3
+61688299,25746375,4
+2458174,25746375,4
+92398298,25746375,4
+56475433,25746375,3
+54364299,25746375,5
+69270211,25746375,3
+peter-pen,25746375,2
+beckham7,25746375,3
+individualj,25746375,4
+60183212,25746375,4
+1117300,25746375,3
+echo_pong,25746375,5
+3081706,25746375,4
+80387935,25746375,5
+vicness,25746375,5
+1498768,25746375,3
+mint-v,25746375,5
+mint-v,25746375,5
+78251252,25746375,5
+46493353,25746375,4
+dongdiandaxue,25746375,4
+123461714,25746375,4
+120241385,25746375,3
+thesp,25746375,3
+kingwindang,25746375,4
+59282588,25746375,5
+53559369,25746375,5
+sui2,25746375,4
+74932520,25746375,4
+65832475,25746375,5
+3446414,25746375,3
+49181653,25746375,3
+36643405,25746375,3
+36282135,25746375,3
+52997011,25746375,5
+39863972,25746375,5
+64485578,25746375,5
+126868088,25746375,3
+134602220,25746375,3
+neverwashair,25746375,3
+41815717,25746375,-1
+69822258,25746375,4
+64974509,25746375,3
+78795036,25746375,4
+fantasticmybaby,25746375,5
+61313201,25746375,4
+104312412,25746375,4
+2920373,25746375,4
+81514613,25746375,5
+85245609,25746375,4
+59514938,25746375,4
+6012188,25746375,4
+60348521,25746375,3
+125347499,25746375,-1
+2199140,25746375,3
+57831811,25746375,4
+4742094,25746375,5
+wen1028,25746375,-1
+48832349,25746375,2
+vinjun,25746375,3
+70701467,25746375,4
+63699428,25746375,4
+Veronicam,25746375,3
+65084443,25746375,4
+doubuliang,25746375,3
+46847393,25746375,3
+2427012,25746375,-1
+johnnybai,25746375,3
+46441063,25746375,5
+129102492,25746375,5
+82357316,25746375,3
+chaosi,25746375,4
+41070205,25746375,4
+47905946,25746375,5
+72040927,25746375,5
+xiao__F,25746375,4
+83604307,25746375,3
+sccforye,25746375,5
+63989347,25746375,4
+koutiao,25746375,4
+Philoco,25746375,4
+maydays81,25746375,3
+4918767,25746375,3
+illusion1125,25746375,5
+98605942,25746375,4
+jackchen,25746375,4
+32920328,25746375,3
+70987947,25746375,5
+3365504,25746375,5
+60421761,25746375,2
+KOBENYF,25746375,5
+doppio,25746375,3
+61497577,25746375,3
+jenniferxue,25746375,4
+chunzhenamen,25746375,2
+findingfinding,25746375,3
+120299687,25746375,3
+dancelatoto,25746375,2
+2268277,25746375,3
+wsz910919,25746375,3
+130541613,25746375,3
+58957122,25746375,5
+2096340,25746375,3
+ileonwii,25746375,4
+faithinus,25746375,5
+double_wen,25746375,4
+50568364,25746375,4
+yuwenyong,25746375,4
+1921806,25746375,4
+highlightxing,25746375,3
+69030272,25746375,4
+xuffan,25746375,1
+liarb,25746375,4
+3846099,25746375,-1
+2304159,25746375,4
+utagawaken,25746375,-1
+tino_zyj,25746375,2
+tino_zyj,25746375,2
+43500933,25746375,4
+60822788,25746375,4
+dossantos,25746375,4
+58197963,25746375,5
+icebully521,25746375,4
+52113603,25746375,5
+52718909,25746375,2
+16002433,25746375,4
+41307413,25746375,4
+52392787,25746375,3
+59370142,25746375,2
+72547163,25746375,4
+52768878,25746375,4
+zeroqq,25746375,-1
+55379612,25746375,3
+soloz,25746375,4
+30494481,25746375,3
+81799497,25746375,5
+suziyu_2222,25746375,4
+xincheer,25746375,2
+121227270,25746375,4
+3183734,25746375,3
+53815311,25746375,5
+84708478,25746375,3
+xiaocheng88,25746375,3
+kitty920,25746375,4
+43840425,25746375,4
+phrases,25746375,3
+50590088,25746375,5
+127217738,25746375,3
+iaiao,25746375,5
+50386050,25746375,4
+74145867,25746375,3
+Lumiere5200,25746375,4
+2235528,25746375,3
+74117962,25746375,5
+54529930,25746375,4
+little_cupid,25746375,3
+yido312,25746375,4
+cxycxy19930520,25746375,5
+106212001,25746375,4
+91656862,25746375,4
+134161390,25746375,2
+halling720,25746375,2
+linqiu126,25746375,4
+jacky.v.c,25746375,4
+132218568,25746375,1
+79887691,25746375,1
+103815567,25746375,5
+91096805,25746375,4
+84247711,25746375,5
+51600146,25746375,5
+2404315,25746375,3
+jinneewang,25746375,3
+59301340,25746375,3
+55822408,25746375,2
+54454841,25746375,3
+weishenmo,25746375,4
+66676801,25746375,5
+52395639,25746375,4
+imsatan,25746375,3
+36617215,25746375,4
+91670876,25746375,4
+3554349,25746375,5
+51022866,25746375,4
+8708200,25746375,3
+134500343,25746375,3
+49101414,25746375,4
+64217349,25746375,4
+tuzinike,25746375,5
+56959845,25746375,4
+126842438,25746375,2
+14484123,25746375,3
+80429208,25746375,4
+zhouxin95,25746375,4
+shenmyu,25746375,-1
+digdug,25746375,5
+4056191,25746375,-1
+97341954,25746375,4
+77914516,25746375,3
+dearmore,25746375,4
+weichuu,25746375,4
+120450292,25746375,5
+62964103,25746375,3
+47029323,25746375,3
+121228834,25746375,5
+51030434,25746375,2
+foryoungheart,25746375,5
+42810636,25746375,3
+macie-w,25746375,-1
+bbfary,25746375,3
+131950889,25746375,4
+62489520,25746375,4
+31673634,25746375,4
+74944832,25746375,4
+70775632,25746375,4
+40523064,25746375,5
+134040475,25746375,4
+53061128,25746375,2
+131208902,25746375,3
+ymj1116,25746375,4
+gargoylee,25746375,3
+xandraaa,25746375,3
+52001200,25746375,4
+youdianhuanjue,25746375,4
+enderstar,25746375,1
+imarilyn,25746375,4
+124621410,25746375,5
+66604481,25746375,2
+3322909,25746375,4
+43767898,25746375,3
+48118281,25746375,3
+shugesugar,25746375,3
+123546456,25746375,5
+wuyaa1215,25746375,3
+53694721,25746375,2
+52125579,25746375,3
+50178808,25746375,4
+122822781,25746375,3
+122822781,25746375,3
+48503456,25746375,3
+66802637,25746375,4
+16739191,25746375,5
+lycanthropy,25746375,3
+3390402,25746375,1
+siwumidou,25746375,-1
+caiwoshishei,25746375,3
+Cgangs,25746375,-1
+34482289,25746375,2
+64892183,25746375,3
+41471656,25746375,4
+133245536,25746375,5
+2330272,25746375,5
+39491647,25746375,3
+yangtao0810,25746375,4
+3119825,25746375,3
+sese_0,25746375,4
+han_sy,25746375,3
+pinkmemory,25746375,5
+mmcv,25746375,3
+70805460,25746375,4
+movie-liang,25746375,4
+130651540,25746375,5
+kongong,25746375,3
+43089605,25746375,4
+Antidream,25746375,4
+55763432,25746375,4
+rajorAn,25746375,2
+48812180,25746375,5
+66916695,25746375,5
+yozir,25746375,2
+51171811,25746375,4
+43560923,25746375,3
+35902122,25746375,5
+54119781,25746375,3
+1055848,25746375,4
+1457618,25746375,4
+40931837,25746375,4
+wrx1203,25746375,4
+46112543,25746375,4
+94784652,25746375,4
+80755814,25746375,4
+qiuyoungto22,25746375,3
+57501453,25746375,1
+53048177,25746375,2
+55389424,25746375,2
+67911635,25746375,3
+liuxiaoming,25746375,5
+14357343,25746375,3
+85288278,25746375,5
+52247790,25746375,4
+134494053,25746375,4
+67633281,25746375,1
+48997081,25746375,3
+122124788,25746375,4
+54300451,25746375,3
+wait2000,25746375,5
+cundong,25746375,4
+1923202,25746375,4
+59665595,25746375,4
+28709669,25746375,3
+2671897,25746375,4
+2530690,25746375,1
+78731933,25746375,3
+133136492,25746375,5
+49414944,25746375,1
+96152194,25746375,4
+36591569,25746375,4
+vnoonv,25746375,-1
+gowinder,25746375,-1
+48763260,25746375,4
+diyidouya,25746375,3
+62798977,25746375,3
+66237030,25746375,2
+58729484,25746375,4
+chuleiwu,25746375,3
+sev7n777,25746375,3
+69278500,25746375,3
+qieer_422,25746375,5
+Boomer,25746375,3
+37448778,25746375,3
+130988431,25746375,4
+4740160,25746375,3
+im-joyce,25746375,-1
+guppyfish,25746375,3
+3663725,25746375,3
+3513527,25746375,4
+ntjht2013,25746375,4
+ilovejay79118,25746375,3
+52285215,25746375,3
+realycc,25746375,4
+37336269,25746375,4
+roseunicorn,25746375,3
+2670607,25746375,4
+ttangelica,25746375,3
+41760769,25746375,3
+63526709,25746375,2
+62498869,25746375,4
+129101053,25746375,5
+54396392,25746375,4
+28840841,25746375,3
+3116029,25746375,4
+51918172,25746375,4
+39791533,25746375,3
+dreamagainagain,25746375,5
+barbie_ye,25746375,3
+57633693,25746375,4
+linlin009006,25746375,3
+Seuysiro,25746375,2
+paradoxx,25746375,3
+133493079,25746375,5
+meskelil,25746375,4
+44177740,25746375,1
+48307109,25746375,1
+55763790,25746375,4
+63927330,25746375,4
+Cappe,25746375,3
+67134272,25746375,2
+80537833,25746375,3
+58618853,25746375,5
+64111478,25746375,4
+l1086905132,25746375,5
+Irivin,25746375,3
+Matthew2937,25746375,3
+1149126,25746375,3
+67652524,25746375,3
+60267759,25746375,3
+meixinmeifei,25746375,4
+zouhuzm,25746375,4
+Roseate,25746375,4
+51573307,25746375,5
+pamelayang,25746375,3
+52708584,25746375,3
+76943413,25746375,2
+vic_qiao,25746375,5
+52451378,25746375,3
+120630724,25746375,4
+topgunly,25746375,-1
+4623641,25746375,3
+121920760,25746375,4
+yjjtdcq200,25746375,5
+130540529,25746375,4
+49868632,25746375,2
+45449630,25746375,3
+134617663,25746375,4
+Asteria,25746375,4
+123134764,25746375,3
+leexiaoxiao,25746375,4
+54778838,25746375,4
+46988073,25746375,2
+80066409,25746375,3
+taibeike,25746375,3
+52801695,25746375,3
+2268636,25746375,4
+69856173,25746375,2
+65240441,25746375,1
+31806999,25746375,1
+56566421,25746375,5
+44476398,25746375,2
+93205038,25746375,5
+83016108,25746375,4
+44345461,25746375,4
+emusun,25746375,3
+134585517,25746375,2
+69251373,25746375,3
+guiwuu,25746375,3
+skyFei,25746375,4
+79148918,25746375,5
+FeatherDouglas,25746375,3
+VZ---LZW,25746375,4
+wstccr11,25746375,1
+39363264,25746375,3
+BarbieZ,25746375,3
+81885646,25746375,4
+LNCYZM,25746375,3
+57981688,25746375,4
+Artiewatchmovie,25746375,4
+panicsun,25746375,3
+49949826,25746375,5
+qulinzhang,25746375,5
+73189108,25746375,4
+55405960,25746375,4
+46355021,25746375,5
+ironCC,25746375,3
+q258523454,25746375,5
+1865714,25746375,3
+lyw820271564,25746375,4
+hela,25746375,-1
+65151326,25746375,4
+46781917,25746375,-1
+37672067,25746375,5
+goodays,25746375,-1
+allen_y,25746375,4
+134593324,25746375,4
+82849854,25746375,5
+78284919,25746375,4
+hyacinthlove101,25746375,4
+89928823,25746375,4
+Dyouknow,25746375,4
+Dyouknow,25746375,4
+134532187,25746375,4
+52396951,25746375,2
+60377456,25746375,4
+85206828,25746375,3
+50112537,25746375,5
+53040458,25746375,4
+41295711,25746375,5
+33693061,25746375,3
+120069048,25746375,1
+13293190,25746375,3
+58487163,25746375,3
+86136547,25746375,4
+50840366,25746375,4
+echo520f1,25746375,3
+1056004,25746375,3
+goofy,25746375,3
+65013886,25746375,3
+2235381,25746375,2
+wheresafe,25746375,3
+67451821,25746375,3
+59711389,25746375,3
+loveequeen,25746375,4
+48271739,25746375,4
+127728111,25746375,3
+54391531,25746375,4
+qxp1015beauty,25746375,3
+132463662,25746375,3
+60819367,25746375,4
+ky1on,25746375,4
+55715149,25746375,4
+3501453,25746375,3
+61748227,25746375,4
+74572703,25746375,2
+104475176,25746375,5
+lovepizza,25746375,4
+58418894,25746375,4
+june527,25746375,-1
+littleshit,25746375,4
+4545627,25746375,3
+Awhatever,25746375,3
+leoglory,25746375,4
+lxlkey,25746375,4
+fiona-cin,25746375,3
+66031948,25746375,4
+ruoyang,25746375,4
+65081339,25746375,4
+83747600,25746375,3
+53511670,25746375,3
+cianshijie,25746375,4
+101738421,25746375,3
+53925910,25746375,3
+66967732,25746375,4
+128017227,25746375,5
+43409918,25746375,3
+13569936,25746375,2
+67112573,25746375,1
+1623664,25746375,4
+shadowfoxxuan,25746375,3
+Bill_zz,25746375,4
+tzungtzu,25746375,4
+shaoraul,25746375,4
+50957337,25746375,-1
+65477496,25746375,4
+48819084,25746375,4
+46243415,25746375,1
+129227883,25746375,4
+62312732,25746375,4
+60808695,25746375,2
+45804522,25746375,4
+av,25746375,-1
+49290361,25746375,5
+immaning,25746375,5
+80040060,25746375,4
+yhbx,25746375,3
+65111838,25746375,4
+80189159,25746375,4
+133414711,25746375,4
+2426372,25746375,3
+50797982,25746375,5
+79127642,25746375,3
+2616668,25746375,5
+71123769,25746375,4
+alessioliu,25746375,3
+11189422,25746375,3
+aaaai,25746375,5
+linyuxi,25746375,3
+120273977,25746375,4
+Crystal_Fong,25746375,3
+39935657,25746375,2
+89525142,25746375,4
+3167300,25746375,3
+128760790,25746375,3
+110025674,25746375,2
+dearpea,25746375,3
+photov,25746375,4
+91252045,25746375,3
+91821624,25746375,4
+50185195,25746375,4
+nanshuo,25746375,4
+66195013,25746375,4
+131079832,25746375,3
+50118479,25746375,3
+127585242,25746375,3
+121933047,25746375,3
+108946509,25746375,4
+Francis.chiang,25746375,3
+fangkaka,25746375,4
+kugooer,25746375,4
+46320869,25746375,3
+45487500,25746375,4
+55769747,25746375,4
+2954485,25746375,4
+61890434,25746375,4
+60274677,25746375,2
+47775685,25746375,4
+130274229,25746375,4
+121767619,25746375,4
+49997537,25746375,3
+guaishou995,25746375,3
+3287454,25746375,2
+81697410,25746375,4
+3661802,25746375,5
+80568483,25746375,4
+65764407,25746375,4
+TZN7,25746375,5
+45441570,25746375,4
+134498032,25746375,5
+32424363,25746375,4
+4482032,25746375,2
+65187145,25746375,2
+133125055,25746375,4
+49713409,25746375,3
+66810723,25746375,4
+55299131,25746375,4
+penjing1026,25746375,5
+52482326,25746375,4
+3984993,25746375,4
+sunlinlovemicky,25746375,3
+znyzjhwl,25746375,5
+85368660,25746375,4
+ngc2535,25746375,4
+yenobis,25746375,3
+75521175,25746375,5
+46428362,25746375,4
+88054073,25746375,4
+4273284,25746375,-1
+BenedictusVI,25746375,3
+93582909,25746375,5
+6750346,25746375,4
+rominakata,25746375,3
+43280454,25746375,3
+mr81,25746375,3
+54366340,25746375,2
+59817977,25746375,3
+60240368,25746375,4
+14369952,25746375,4
+3547067,25746375,1
+sunshine4you,25746375,5
+132957841,25746375,5
+62308831,25746375,4
+131849470,25746375,4
+57862943,25746375,4
+123238661,25746375,4
+24162736,25746375,4
+73666911,25746375,4
+129834051,25746375,4
+farmerdouban,25746375,3
+45160142,25746375,4
+39539496,25746375,4
+58001500,25746375,4
+16645869,25746375,5
+47172452,25746375,2
+fangmuchen1314,25746375,1
+133554035,25746375,4
+urannus,25746375,5
+demondeng,25746375,4
+54306143,25746375,3
+faiel,25746375,3
+130599589,25746375,4
+22818127,25746375,3
+97610451,25746375,2
+63990028,25746375,4
+trosey20,25746375,5
+show.huang,25746375,3
+57180856,25746375,4
+2137969,25746375,4
+82685125,25746375,3
+littleD,25746375,2
+57593317,25746375,5
+bester214,25746375,5
+3909726,25746375,4
+45693911,25746375,4
+59257575,25746375,-1
+66557005,25746375,3
+3758190,25746375,3
+57093116,25746375,4
+43096733,25746375,4
+jeremysuit,25746375,3
+sunsetbutterfly,25746375,3
+Michellekids,25746375,3
+42954116,25746375,4
+ivy_lmj,25746375,3
+graceoklove,25746375,4
+32448053,25746375,4
+56035155,25746375,3
+53362229,25746375,3
+2432104,25746375,4
+xiongkaihang,25746375,4
+egotime,25746375,4
+35578162,25746375,4
+32402352,25746375,3
+KennySiliver,25746375,3
+53500604,25746375,4
+qc1994,25746375,4
+69049149,25746375,3
+minnierai,25746375,4
+3923065,25746375,5
+41769170,25746375,3
+3855637,25746375,4
+3956478,25746375,4
+64886603,25746375,5
+54378325,25746375,4
+67653468,25746375,2
+92962269,25746375,3
+butina,25746375,3
+65590168,25746375,4
+redpeach,25746375,4
+2583704,25746375,2
+38808960,25746375,4
+60721081,25746375,4
+tiantianyun,25746375,3
+2957616,25746375,2
+133914507,25746375,5
+1475149,25746375,4
+49004115,25746375,5
+Angel.Tracy,25746375,3
+73398342,25746375,3
+49558870,25746375,4
+102812066,25746375,3
+notzues,25746375,3
+4431281,25746375,3
+53010578,25746375,-1
+cxlpanda,25746375,3
+53862196,25746375,-1
+play0829,25746375,3
+QuincyLiang,25746375,3
+3687958,25746375,4
+71832192,25746375,4
+AhLang,25746375,3
+62923758,25746375,3
+1941418,25746375,4
+119301457,25746375,4
+emmazq,25746375,4
+69280679,25746375,2
+8586170,25746375,4
+53560863,25746375,3
+lips,25746375,4
+65628781,25746375,4
+69693230,25746375,4
+53942242,25746375,4
+58290785,25746375,4
+sentimento-rose,25746375,3
+ashleystella,25746375,4
+zhoufeifan,25746375,1
+55755674,25746375,3
+lanhouzi,25746375,3
+hanyoyo2000,25746375,4
+127722758,25746375,4
+62455186,25746375,4
+spzmoon,25746375,3
+33663407,25746375,3
+3053086,25746375,3
+52981022,25746375,3
+51909458,25746375,3
+weblinder,25746375,4
+58005752,25746375,4
+81304385,25746375,5
+65580896,25746375,5
+paradisexue,25746375,5
+71133348,25746375,5
+i5conan,25746375,3
+potatotin,25746375,4
+130754309,25746375,2
+58112577,25746375,5
+zhangfangli,25746375,4
+germ546,25746375,4
+53866546,25746375,4
+51498594,25746375,4
+78971867,25746375,3
+princesshood,25746375,3
+summer2lin,25746375,4
+73784914,25746375,2
+lijiefu007,25746375,3
+55836344,25746375,5
+67680996,25746375,3
+61504169,25746375,4
+Iris.he,25746375,4
+3959826,25746375,4
+48335787,25746375,4
+usagikuma,25746375,3
+fantastic7,25746375,3
+50179673,25746375,5
+doddlegone,25746375,4
+4917178,25746375,4
+117018256,25746375,4
+kongqinan,25746375,2
+sjzqzkn,25746375,3
+43531755,25746375,3
+xxyyxx12321,25746375,5
+50481255,25746375,4
+48874173,25746375,-1
+87383835,25746375,4
+51313270,25746375,5
+53161174,25746375,4
+Kevin3,25746375,4
+iamtough,25746375,4
+f91_82,25746375,3
+66919459,25746375,2
+mrcandy,25746375,4
+2606795,25746375,4
+OpenSpaces,25746375,4
+1554569,25746375,2
+119882836,25746375,4
+47220302,25746375,4
+lan_nal,25746375,3
+littleteatea,25746375,5
+131881210,25746375,5
+yangyangzheng,25746375,3
+53592649,25746375,4
+superfeel,25746375,3
+zhujiao,25746375,5
+51229956,25746375,4
+3634800,25746375,3
+45513879,25746375,4
+2041666,25746375,3
+101804061,25746375,5
+finle,25746375,4
+jeffersontang,25746375,4
+45312368,25746375,2
+3166613,25746375,5
+benitalin,25746375,3
+134094707,25746375,3
+ahuido,25746375,4
+112934055,25746375,3
+50242818,25746375,4
+natsunokaori,25746375,5
+51965075,25746375,4
+33880591,25746375,3
+68725414,25746375,5
+60766541,25746375,4
+rabbiton,25746375,1
+56953846,25746375,3
+90496628,25746375,4
+46959168,25746375,3
+3744867,25746375,2
+45484348,25746375,4
+44388338,25746375,3
+57387221,25746375,3
+97721547,25746375,-1
+130937387,25746375,3
+46493467,25746375,3
+9430999,25746375,5
+46966617,25746375,5
+jiiiiiaaaa,25746375,4
+55444463,25746375,3
+lumen,25746375,3
+124035859,25746375,5
+Pius,25746375,3
+necromansy,25746375,4
+82911001,25746375,3
+5963975,25746375,4
+134414836,25746375,5
+131668774,25746375,4
+37010101,25746375,5
+104559183,25746375,3
+homebody,25746375,3
+51254605,25746375,4
+79852634,25746375,4
+chemicalromance,25746375,4
+76076225,25746375,4
+126241859,25746375,3
+1457201,25746375,4
+52636646,25746375,5
+64902546,25746375,3
+panyangdedouban,25746375,5
+132354500,25746375,4
+76636095,25746375,4
+46821255,25746375,4
+azeizei,25746375,4
+28219717,25746375,4
+50063811,25746375,3
+yuzhoushan,25746375,4
+wuxipaopao,25746375,3
+freeman888,25746375,5
+126022263,25746375,4
+131183374,25746375,3
+4659732,25746375,4
+Xia0_K,25746375,5
+5854721,25746375,3
+muyeah,25746375,4
+2110060,25746375,5
+67988925,25746375,3
+chezidaobai,25746375,1
+119490298,25746375,4
+49393280,25746375,4
+130648493,25746375,4
+zenglk,25746375,4
+62259012,25746375,4
+menophenon,25746375,5
+52832781,25746375,3
+zhzh_0831,25746375,3
+61162296,25746375,-1
+35925189,25746375,4
+49308867,25746375,4
+lanmai,25746375,5
+41541704,25746375,2
+1638378,25746375,3
+bodd,25746375,1
+3471074,25746375,3
+93224854,25746375,5
+yiduan,25746375,4
+thezealer,25746375,3
+59202996,25746375,4
+52021571,25746375,4
+38396842,25746375,3
+59005110,25746375,3
+jiaoailsa,25746375,-1
+nicokey,25746375,4
+75750781,25746375,4
+84300026,25746375,4
+35008425,25746375,2
+81491962,25746375,4
+6303192,25746375,1
+crazygrave,25746375,4
+79151265,25746375,3
+54889228,25746375,4
+133475672,25746375,4
+47913094,25746375,5
+sakiring,25746375,2
+candicechang,25746375,4
+niguangfeng,25746375,3
+65361448,25746375,4
+69980622,25746375,3
+55020977,25746375,3
+3596469,25746375,4
+72028864,25746375,4
+73980214,25746375,4
+83601248,25746375,4
+134175540,25746375,5
+hywhere,25746375,4
+2622237,25746375,5
+26438724,25746375,3
+2675588,25746375,4
+58889054,25746375,3
+51729072,25746375,4
+94136085,25746375,4
+43786893,25746375,3
+zi,25746375,5
+121057597,25746375,5
+dingzijie,25746375,4
+34174788,25746375,-1
+cyhappy36507,25746375,3
+lovinest,25746375,4
+14140341,25746375,5
+yingxxxxx,25746375,5
+jonenow,25746375,3
+122938944,25746375,4
+9915911,25746375,4
+lomokid,25746375,5
+dashdot,25746375,4
+42535832,25746375,4
+102867420,25746375,3
+1484739,25746375,3
+14479133,25746375,5
+yulonglol,25746375,4
+2514000,25746375,4
+3617454,25746375,4
+27068945,25746375,3
+CRA1G,25746375,5
+portugalsummer,25746375,4
+2119013,25746375,3
+119852340,25746375,4
+63603619,25746375,3
+127089161,25746375,3
+42897156,25746375,3
+3653514,25746375,5
+108496110,25746375,5
+xiaojiongxia,25746375,4
+80161356,25746375,4
+81341228,25746375,3
+qianjin,25746375,4
+47374105,25746375,4
+78277110,25746375,5
+105087746,25746375,4
+25725176,25746375,4
+30796658,25746375,2
+49632569,25746375,4
+37230449,25746375,4
+56072639,25746375,4
+84270133,25746375,4
+62735975,25746375,3
+119868910,25746375,3
+121679857,25746375,-1
+2428631,25746375,4
+54247869,25746375,3
+88345379,25746375,4
+60782706,25746375,3
+qrange,25746375,2
+68239286,25746375,5
+122770555,25746375,3
+wendell003,25746375,3
+Makoto614,25746375,3
+pengyn,25746375,2
+50312843,25746375,5
+yiyiii,25746375,4
+57280262,25746375,5
+122789808,25746375,4
+immengxmeng,25746375,4
+xxberny,25746375,4
+oasisercher,25746375,3
+WoSeaN_Vincent,25746375,4
+iratao,25746375,5
+60906528,25746375,3
+carlebee,25746375,3
+89081401,25746375,4
+134000470,25746375,4
+125797467,25746375,4
+49120309,25746375,2
+75795997,25746375,4
+48675593,25746375,4
+nicy119,25746375,4
+101793601,25746375,4
+X-G-FAMILY,25746375,4
+32680856,25746375,4
+133672618,25746375,5
+53049553,25746375,4
+pdleo,25746375,3
+4716984,25746375,5
+123630666,25746375,4
+lovers-fahion,25746375,5
+6669413,25746375,4
+61483050,25746375,3
+3588825,25746375,3
+55446081,25746375,4
+64467057,25746375,2
+124869246,25746375,3
+89415384,25746375,3
+cylarzc,25746375,3
+3996368,25746375,3
+61822233,25746375,1
+51105091,25746375,4
+59573485,25746375,3
+47636927,25746375,3
+123331677,25746375,3
+85233162,25746375,3
+132433995,25746375,3
+64153022,25746375,4
+gongxukai,25746375,5
+dandan0451,25746375,5
+cabaret,25746375,3
+cherry1992,25746375,5
+xy9102,25746375,4
+44527198,25746375,3
+34404618,25746375,4
+66706238,25746375,5
+40156361,25746375,5
+dominic---,25746375,3
+sumengsumeng,25746375,3
+77267201,25746375,3
+122161339,25746375,1
+132796794,25746375,3
+53116355,25746375,4
+47932760,25746375,4
+61953901,25746375,4
+119623175,25746375,3
+129638814,25746375,5
+79108534,25746375,4
+52236886,25746375,5
+ez2dier,25746375,4
+2428818,25746375,4
+jessicarfield,25746375,4
+johnny174,25746375,4
+103735356,25746375,3
+46722646,25746375,5
+suminjie,25746375,-1
+4760755,25746375,4
+50479628,25746375,3
+63829269,25746375,4
+39152562,25746375,-1
+Windbroken,25746375,3
+51143310,25746375,5
+126334650,25746375,5
+51507158,25746375,4
+120699928,25746375,5
+4214141,25746375,3
+happylife1821,25746375,5
+51783252,25746375,2
+buzzsunny,25746375,1
+LXH88888888,25746375,3
+49587951,25746375,5
+2340389,25746375,4
+77283675,25746375,1
+133718009,25746375,3
+57477748,25746375,4
+64243172,25746375,4
+49421192,25746375,5
+58934229,25746375,4
+61927827,25746375,4
+14944907,25746375,3
+31786510,25746375,5
+68318202,25746375,5
+12573860,25746375,4
+55664253,25746375,4
+yuyouting,25746375,3
+126948377,25746375,5
+82371585,25746375,3
+66100459,25746375,5
+2307563,25746375,4
+dhlp,25746375,5
+dhlp,25746375,5
+64335429,25746375,4
+szdd,25746375,4
+yoyo3105,25746375,3
+60908358,25746375,4
+59309532,25746375,4
+timliutianxiang,25746375,2
+linxiaolin_,25746375,5
+48482114,25746375,4
+CheeseTree,25746375,4
+46138752,25746375,3
+larene,25746375,4
+77038019,25746375,3
+XIAOTUTONG,25746375,3
+26322881,25746375,3
+131647140,25746375,4
+74053506,25746375,3
+peiyan11,25746375,5
+108289325,25746375,4
+66442511,25746375,4
+66442511,25746375,4
+124887489,25746375,3
+dustblue,25746375,3
+Southern_,25746375,3
+yiren-sun,25746375,-1
+rocekrong,25746375,5
+30219531,25746375,3
+zhaifei-movie,25746375,3
+100328938,25746375,5
+xhlaxhla,25746375,1
+60764117,25746375,3
+39922157,25746375,3
+60704424,25746375,4
+108944187,25746375,4
+74553304,25746375,5
+3979883,25746375,4
+58216177,25746375,3
+61375666,25746375,4
+46036255,25746375,1
+Roxane,25746375,-1
+27632752,25746375,2
+lanodg,25746375,4
+62466531,25746375,5
+55849765,25746375,3
+49509949,25746375,5
+36399495,25746375,4
+reebi,25746375,4
+75288450,25746375,4
+81351219,25746375,4
+Devil.Q,25746375,4
+2670240,25746375,2
+leisurelee,25746375,2
+RockDai,25746375,5
+83059994,25746375,4
+65663691,25746375,3
+17471764,25746375,-1
+62442761,25746375,1
+133846679,25746375,4
+marilynnsos,25746375,4
+hoxx,25746375,3
+57062689,25746375,4
+128937113,25746375,3
+16959294,25746375,3
+52823226,25746375,5
+83193363,25746375,3
+divingsun,25746375,5
+loribo,25746375,3
+76617762,25746375,5
+120764157,25746375,4
+Zenforfree,25746375,5
+55916506,25746375,5
+74013127,25746375,2
+46528708,25746375,4
+72540789,25746375,5
+baisui,25746375,5
+30497145,25746375,2
+hqwxyz,25746375,2
+yangquan0914,25746375,5
+84342168,25746375,4
+fangyu0701,25746375,4
+shushi2011,25746375,4
+ying1012,25746375,4
+35474492,25746375,3
+55866534,25746375,3
+46097027,25746375,4
+schauer,25746375,4
+16084893,25746375,2
+40836230,25746375,3
+75869572,25746375,3
+49550156,25746375,4
+83491146,25746375,4
+SmellyDong,25746375,3
+34685994,25746375,1
+64444161,25746375,3
+125570850,25746375,5
+123202130,25746375,3
+sapphire,25746375,3
+46146450,25746375,3
+1123445,25746375,5
+74145154,25746375,5
+40093892,25746375,4
+szhi,25746375,3
+96801913,25746375,4
+45080512,25746375,2
+66475895,25746375,3
+93868672,25746375,4
+45301941,25746375,3
+sanqianx,25746375,4
+jadepei,25746375,3
+41036146,25746375,3
+3709827,25746375,4
+jqcx,25746375,3
+56687501,25746375,5
+81784019,25746375,3
+cleopatra927,25746375,3
+youyousina,25746375,4
+53401565,25746375,4
+bigmiao,25746375,1
+124027537,25746375,4
+69360968,25746375,4
+outsidecastle,25746375,4
+28087184,25746375,3
+39644972,25746375,3
+s_3,25746375,5
+64297139,25746375,4
+79748311,25746375,3
+51306418,25746375,-1
+119938228,25746375,5
+134148719,25746375,5
+52134827,25746375,5
+40922320,25746375,5
+antony007007,25746375,3
+80014838,25746375,4
+57464724,25746375,-1
+jeanwoo,25746375,3
+66906516,25746375,3
+51381887,25746375,3
+63547117,25746375,3
+star027,25746375,3
+68148628,25746375,5
+68148628,25746375,5
+60343773,25746375,5
+39618439,25746375,3
+lovenapp,25746375,3
+115645606,25746375,5
+soonylei,25746375,4
+78500828,25746375,3
+129369858,25746375,3
+Solitude.F,25746375,5
+librelove,25746375,2
+49523598,25746375,4
+LimeBlast,25746375,4
+70730906,25746375,5
+52944852,25746375,3
+mmmmmmiko,25746375,5
+monlina,25746375,3
+50747236,25746375,2
+50222908,25746375,5
+sam112895,25746375,4
+63575195,25746375,3
+29433181,25746375,3
+67306781,25746375,4
+67330324,25746375,5
+51283005,25746375,4
+caozhuo,25746375,3
+Le5in,25746375,3
+Rae.Y,25746375,4
+w_weixing,25746375,4
+momojoke,25746375,3
+laolieqiang,25746375,4
+62213399,25746375,4
+56911400,25746375,5
+59253640,25746375,4
+52384106,25746375,4
+66419543,25746375,5
+3341114,25746375,5
+kouok,25746375,4
+50326036,25746375,4
+72725890,25746375,4
+52867570,25746375,4
+68528163,25746375,5
+weipengcheng,25746375,4
+cruer,25746375,4
+jinzimiao,25746375,5
+91559501,25746375,4
+133268624,25746375,5
+50679453,25746375,5
+dingding1113,25746375,4
+70961097,25746375,-1
+50985886,25746375,3
+aimaibumai,25746375,3
+yrftx,25746375,3
+93151927,25746375,4
+121939824,25746375,3
+fanlv,25746375,3
+Jillyan,25746375,3
+4291199,25746375,4
+AmongV5,25746375,3
+80346080,25746375,3
+Arieskitty,25746375,3
+52279416,25746375,-1
+2107434,25746375,3
+3639221,25746375,3
+52524178,25746375,5
+41750008,25746375,4
+123543090,25746375,4
+68186986,25746375,4
+2825541,25746375,3
+42084433,25746375,4
+78902065,25746375,3
+1090307,25746375,4
+53103898,25746375,2
+64096688,25746375,4
+133770513,25746375,4
+60913007,25746375,4
+106661239,25746375,5
+30935515,25746375,4
+jaens,25746375,3
+133190465,25746375,1
+yaoliu,25746375,4
+125280444,25746375,3
+karain,25746375,4
+82580428,25746375,-1
+undeadmonster,25746375,3
+51855205,25746375,4
+47622076,25746375,3
+3234538,25746375,5
+58658426,25746375,3
+63781325,25746375,3
+80685538,25746375,4
+renxiaojun,25746375,3
+delavior,25746375,4
+58457160,25746375,3
+58609521,25746375,3
+58836800,25746375,5
+34070573,25746375,5
+56879046,25746375,3
+133042123,25746375,4
+52705405,25746375,3
+towzoo,25746375,4
+ohghost,25746375,-1
+69295551,25746375,4
+Levora,25746375,4
+1452008,25746375,-1
+41283150,25746375,4
+23692831,25746375,2
+59163242,25746375,4
+72430905,25746375,5
+74264454,25746375,4
+134222368,25746375,3
+37754828,25746375,-1
+131807022,25746375,5
+vyeah,25746375,4
+44379938,25746375,2
+62404811,25746375,3
+128991169,25746375,4
+that555,25746375,3
+30079642,25746375,3
+2340742,25746375,5
+69542619,25746375,2
+zmdouhua,25746375,4
+75792815,25746375,5
+4213577,25746375,2
+85356798,25746375,5
+53935985,25746375,3
+4605484,25746375,3
+61394698,25746375,5
+2095236,25746375,4
+47877768,25746375,4
+57916639,25746375,4
+69101082,25746375,4
+106548711,25746375,4
+3475246,25746375,3
+119980398,25746375,3
+60168447,25746375,5
+11542932,25746375,4
+77873291,25746375,4
+2298998,25746375,4
+3072272,25746375,2
+103247038,25746375,2
+103247038,25746375,2
+xiangshuoshenme,25746375,-1
+win7758,25746375,5
+47622714,25746375,4
+71561935,25746375,2
+tangziqiao,25746375,4
+db924519251,25746375,3
+83262411,25746375,2
+50778853,25746375,3
+74943239,25746375,3
+talxu,25746375,4
+26786112,25746375,5
+ad.7,25746375,4
+4574811,25746375,3
+69757567,25746375,5
+violinyuki,25746375,4
+hee.heung,25746375,4
+27253308,25746375,4
+viviastraea,25746375,2
+william_wue,25746375,5
+53953725,25746375,4
+90480173,25746375,3
+52214552,25746375,4
+44887235,25746375,3
+51863765,25746375,4
+123634795,25746375,5
+hfguren,25746375,4
+60149016,25746375,5
+1558354,25746375,4
+53637766,25746375,5
+52823341,25746375,4
+124253429,25746375,4
+59620866,25746375,4
+27728988,25746375,4
+1866298,25746375,3
+imlitianlu,25746375,3
+flashingcrystal,25746375,3
+weidong8888,25746375,5
+54020507,25746375,3
+feizhenzhen,25746375,4
+81521718,25746375,4
+erobin,25746375,3
+27085704,25746375,5
+hennic,25746375,4
+124822296,25746375,2
+40547313,25746375,3
+54454466,25746375,4
+67357105,25746375,3
+53268504,25746375,2
+21200754,25746375,4
+127386249,25746375,4
+76933799,25746375,2
+80850838,25746375,3
+66925472,25746375,4
+izhouxy,25746375,1
+1668702,25746375,4
+72133543,25746375,3
+58810422,25746375,5
+58858653,25746375,4
+enough45,25746375,4
+123978525,25746375,5
+50933389,25746375,5
+36664214,25746375,3
+reficulx,25746375,3
+chensiwang2008,25746375,3
+8752115,25746375,2
+2322719,25746375,3
+kevinlew,25746375,4
+xjrwjh,25746375,4
+50951864,25746375,4
+ArwenZhang,25746375,5
+113216618,25746375,3
+108253828,25746375,3
+31942615,25746375,2
+42368147,25746375,2
+jluy,25746375,3
+ziyinzheng,25746375,5
+yslove312,25746375,4
+85472462,25746375,4
+zzlcslg,25746375,-1
+27814266,25746375,5
+onewayroad,25746375,3
+76613662,25746375,3
+69152267,25746375,4
+gmrxfx,25746375,3
+75131339,25746375,5
+Alienzhao,25746375,4
+48324928,25746375,4
+49128296,25746375,3
+36591697,25746375,2
+alidaa,25746375,3
+67072789,25746375,5
+63000903,25746375,5
+60609410,25746375,3
+63044059,25746375,3
+34914170,25746375,5
+1159296,25746375,3
+58352034,25746375,4
+zyhang2005,25746375,2
+58015342,25746375,5
+30299632,25746375,4
+38566162,25746375,4
+qqyy402,25746375,4
+115144480,25746375,3
+77111727,25746375,3
+kong19870707,25746375,5
+39765753,25746375,4
+58338006,25746375,5
+122858309,25746375,5
+1700702,25746375,3
+xiaomei941201,25746375,5
+57580969,25746375,2
+1985213,25746375,4
+ofish0,25746375,3
+w-leaf,25746375,3
+2776195,25746375,5
+121602100,25746375,1
+yoory,25746375,-1
+62915199,25746375,4
+3480532,25746375,1
+Chiunotfortoday,25746375,5
+6400247,25746375,4
+17501604,25746375,2
+104313584,25746375,5
+msallsunday,25746375,-1
+fengwanjing,25746375,4
+1702693,25746375,4
+131479104,25746375,4
+pear_zi,25746375,4
+cookies4ever,25746375,2
+2529003,25746375,3
+59221485,25746375,5
+66517587,25746375,3
+Magic_L,25746375,3
+54269193,25746375,3
+103759446,25746375,4
+kidrun,25746375,4
+49362263,25746375,3
+1235064,25746375,4
+2544330,25746375,3
+xnan,25746375,-1
+Lius,25746375,4
+zhangrenran,25746375,5
+stagechiu,25746375,4
+ZWJ1996716,25746375,3
+106613599,25746375,5
+laijiojio,25746375,5
+39957958,25746375,4
+anillusion,25746375,3
+3239610,25746375,4
+48054248,25746375,3
+77216393,25746375,2
+4578133,25746375,4
+4917139,25746375,5
+fenghudue,25746375,5
+46338692,25746375,4
+T0822,25746375,3
+74980339,25746375,4
+yprenkouer,25746375,3
+59155713,25746375,4
+1061597,25746375,2
+york_wu,25746375,3
+33757115,25746375,-1
+104985254,25746375,4
+37220457,25746375,3
+81870071,25746375,4
+babybluevino,25746375,4
+3015416,25746375,4
+yangyihu,25746375,1
+violet412,25746375,3
+daidai1346,25746375,3
+56484149,25746375,3
+summer11007,25746375,4
+berry7,25746375,3
+biketo,25746375,3
+50826027,25746375,3
+2311976,25746375,2
+123011203,25746375,1
+45660564,25746375,5
+15188529,25746375,3
+H897120417,25746375,4
+lephemera,25746375,2
+2649213,25746375,3
+2602040,25746375,3
+51881334,25746375,-1
+131508476,25746375,4
+samtino,25746375,4
+noif,25746375,-1
+42620728,25746375,5
+56620067,25746375,2
+34212571,25746375,3
+46287830,25746375,-1
+27658403,25746375,5
+FeeSouler,25746375,4
+38850701,25746375,3
+pipipapa,25746375,4
+nidongnimei,25746375,4
+4713496,25746375,5
+wangholic,25746375,2
+1757039,25746375,3
+35518497,25746375,4
+64038033,25746375,4
+cai17931,25746375,4
+79302633,25746375,3
+10038789,25746375,3
+67178659,25746375,5
+41975874,25746375,5
+2448346,25746375,3
+67155067,25746375,5
+TinyLens1990,25746375,4
+herro58,25746375,5
+65649890,25746375,4
+wupeachfan,25746375,5
+131618502,25746375,3
+65135573,25746375,4
+50222666,25746375,-1
+lost902,25746375,4
+65396178,25746375,4
+mingyaback,25746375,3
+66292362,25746375,4
+49479464,25746375,-1
+wotaomei,25746375,5
+elmeria,25746375,5
+37382236,25746375,4
+2829310,25746375,3
+urpk,25746375,4
+57698084,25746375,3
+3011986,25746375,4
+42799171,25746375,3
+daiyuan1128,25746375,3
+74196181,25746375,4
+2166267,25746375,4
+68870851,25746375,3
+losiuhong,25746375,4
+46738101,25746375,1
+129137675,25746375,4
+2119698,25746375,3
+45055967,25746375,4
+4283893,25746375,5
+9614176,25746375,3
+41509198,25746375,5
+lee_king,25746375,4
+gong1341,25746375,2
+yadiel,25746375,4
+bearhao1976,25746375,4
+61309272,25746375,5
+1176355,25746375,4
+4313773,25746375,4
+itzhaoxiangyu,25746375,2
+3310337,25746375,3
+ivril,25746375,3
+1482901,25746375,4
+15583757,25746375,3
+36100413,25746375,4
+127944617,25746375,4
+danhuangbobo,25746375,3
+94257080,25746375,3
+tylot,25746375,5
+blueberrie,25746375,3
+calypso29,25746375,3
+8242597,25746375,4
+49283063,25746375,3
+jyngoing1990,25746375,5
+1343126,25746375,4
+Joan_J,25746375,2
+37885408,25746375,3
+3316493,25746375,5
+121844395,25746375,2
+75666359,25746375,4
+10805265,25746375,2
+125147208,25746375,3
+l-snow,25746375,4
+89488457,25746375,3
+Jocelyn119517,25746375,-1
+Daruke,25746375,2
+67393945,25746375,4
+79420252,25746375,4
+Joe_BuGai,25746375,4
+kristin0711,25746375,3
+3656467,25746375,2
+60925123,25746375,3
+wonderer,25746375,3
+willen007,25746375,3
+64476746,25746375,4
+90587256,25746375,3
+64013773,25746375,4
+19715448,25746375,5
+100571343,25746375,5
+3635055,25746375,2
+47541380,25746375,-1
+71488560,25746375,4
+45197584,25746375,3
+fycqcyl,25746375,4
+xuhongruc,25746375,3
+50109761,25746375,3
+dengfonglong,25746375,3
+woodmoon,25746375,4
+Sandal,25746375,3
+3476892,25746375,3
+imtutu,25746375,4
+daniel_gao,25746375,3
+chrdw,25746375,1
+57275922,25746375,3
+semall,25746375,4
+60392839,25746375,3
+88803097,25746375,3
+38886796,25746375,5
+74495148,25746375,2
+61304869,25746375,4
+3105123,25746375,4
+53998675,25746375,3
+3201065,25746375,1
+71989717,25746375,2
+xunuo828,25746375,4
+71663333,25746375,4
+73383984,25746375,4
+48143172,25746375,3
+1141798,25746375,5
+J13,25746375,4
+4481063,25746375,3
+yiranqingfu,25746375,4
+52974049,25746375,3
+80346808,25746375,3
+78389639,25746375,5
+89081852,25746375,3
+70272999,25746375,4
+62531945,25746375,1
+rozendeer,25746375,4
+53844672,25746375,-1
+Andrian-lee,25746375,5
+babbye,25746375,3
+59734711,25746375,2
+zhaodancuc,25746375,3
+46718731,25746375,3
+4228422,25746375,4
+listenmumu,25746375,4
+63063791,25746375,5
+3794173,25746375,5
+59745565,25746375,3
+54234447,25746375,4
+54234447,25746375,4
+66550490,25746375,3
+65422558,25746375,3
+eve22ven,25746375,4
+rhythmfish,25746375,5
+mGreening,25746375,3
+amputee_house,25746375,5
+shen3yang,25746375,3
+53994524,25746375,4
+zoezhangs,25746375,4
+Opensky,25746375,3
+47925201,25746375,3
+64110948,25746375,2
+fish35,25746375,4
+skywalkerw,25746375,3
+81680542,25746375,3
+53945903,25746375,4
+rongrong0517,25746375,4
+guanyoyo,25746375,3
+44690899,25746375,3
+adore1992,25746375,3
+aspartameeee,25746375,2
+ayan1001,25746375,3
+65095857,25746375,5
+44929193,25746375,4
+1797671,25746375,5
+dengboqing520,25746375,4
+3648258,25746375,4
+33679145,25746375,4
+55624184,25746375,3
+60027945,25746375,4
+133796991,25746375,4
+1211087,25746375,3
+2730322,25746375,3
+45094926,25746375,2
+99410677,25746375,5
+lianlian0626,25746375,5
+mogu1008,25746375,2
+49032670,25746375,5
+83411107,25746375,5
+wanglutong,25746375,4
+50930270,25746375,5
+72683607,25746375,4
+procxu,25746375,4
+50939623,25746375,2
+4099282,25746375,4
+65301310,25746375,3
+64321061,25746375,4
+67962053,25746375,1
+nxxnl,25746375,5
+shmilyyan,25746375,4
+84452285,25746375,5
+45010437,25746375,4
+46887415,25746375,4
+1422378,25746375,4
+34028398,25746375,4
+2445643,25746375,4
+13480447,25746375,4
+114353499,25746375,4
+62304027,25746375,5
+59149005,25746375,5
+91392218,25746375,5
+127066563,25746375,4
+4371910,25746375,4
+119166720,25746375,3
+fffflower,25746375,3
+52533067,25746375,3
+59012176,25746375,5
+36940575,25746375,5
+maoxiaomao,25746375,4
+55716610,25746375,5
+2475595,25746375,3
+35407270,25746375,3
+jockey_kyd,25746375,4
+51936769,25746375,2
+anderose,25746375,4
+3722910,25746375,3
+58990524,25746375,4
+71719673,25746375,5
+67919722,25746375,4
+64602563,25746375,3
+youlemei47,25746375,1
+36992481,25746375,2
+1295772,25746375,4
+88212348,25746375,4
+46935861,25746375,4
+14949134,25746375,4
+44821238,25746375,5
+36043913,25746375,3
+84247728,25746375,4
+yuanchao-op,25746375,4
+hengxi,25746375,5
+77151655,25746375,4
+49372738,25746375,4
+v1wanghuang,25746375,3
+78487311,25746375,4
+34707868,25746375,3
+luyang21,25746375,4
+45543551,25746375,4
+whuizw,25746375,5
+48214909,25746375,4
+14234896,25746375,4
+28430546,25746375,5
+fuxiaopang,25746375,2
+idida,25746375,4
+wj8198026,25746375,3
+51378582,25746375,5
+35061289,25746375,5
+duax,25746375,5
+zhanghuaxin,25746375,3
+79507251,25746375,3
+yeeeeeee,25746375,3
+anmian,25746375,3
+53349812,25746375,4
+bdnet,25746375,4
+50497680,25746375,4
+57001880,25746375,3
+xiaoyuhen,25746375,2
+78994143,25746375,3
+83377603,25746375,5
+75182939,25746375,4
+23826255,25746375,4
+1084576,25746375,3
+iloveyouwing,25746375,4
+weberchung,25746375,3
+53240525,25746375,4
+43910063,25746375,4
+66269073,25746375,4
+kitsch1984,25746375,5
+murmer,25746375,4
+2310421,25746375,4
+littleflowercan,25746375,3
+50868648,25746375,5
+maidelan,25746375,4
+61845850,25746375,2
+83141101,25746375,4
+luxifero,25746375,4
+frnong,25746375,5
+mango12580,25746375,2
+64976230,25746375,3
+68282002,25746375,3
+color4,25746375,4
+45485577,25746375,3
+97515933,25746375,5
+qilin,25746375,4
+auld.lang.syne,25746375,3
+1773126,25746375,3
+lingqingchun,25746375,-1
+king_lijin,25746375,4
+50357189,25746375,4
+13617292,25746375,2
+grephy,25746375,3
+5270734,25746375,4
+84310026,25746375,4
+1986183,25746375,3
+45505797,25746375,4
+47795407,25746375,2
+18046588,25746375,4
+71868009,25746375,4
+75151366,25746375,3
+120466803,25746375,5
+42785040,25746375,4
+34063715,25746375,4
+lu7,25746375,-1
+44105688,25746375,4
+knight2003,25746375,4
+80687112,25746375,3
+61134295,25746375,5
+41250740,25746375,4
+60103786,25746375,5
+50054232,25746375,4
+2889153,25746375,3
+renyuan46,25746375,4
+kennan,25746375,5
+53890677,25746375,5
+77048663,25746375,5
+47701816,25746375,4
+Koko_head,25746375,5
+ga_twenty,25746375,2
+OOXXWJW,25746375,5
+58569504,25746375,4
+83659881,25746375,3
+132777298,25746375,3
+detectivemmhy,25746375,3
+fantianyin,25746375,4
+130147627,25746375,5
+54801845,25746375,5
+89103199,25746375,1
+9029217,25746375,4
+1525882,25746375,5
+nickgao,25746375,4
+55393755,25746375,-1
+60787717,25746375,5
+4722206,25746375,3
+35087113,25746375,3
+chl199093,25746375,3
+92321464,25746375,4
+68539816,25746375,3
+60732201,25746375,3
+39621685,25746375,5
+39002723,25746375,5
+1978167,25746375,4
+17871243,25746375,4
+60858827,25746375,4
+71259453,25746375,5
+37621515,25746375,4
+3594852,25746375,2
+59787556,25746375,4
+62400100,25746375,4
+madblademan,25746375,5
+2180722,25746375,5
+posuoluo,25746375,3
+50532923,25746375,1
+3375154,25746375,4
+58976778,25746375,4
+37968335,25746375,4
+1115389,25746375,4
+37062227,25746375,4
+34140064,25746375,3
+48855139,25746375,3
+48940820,25746375,2
+beyond007,25746375,5
+love221B,25746375,5
+baigoogledu,25746375,4
+4544241,25746375,4
+73410174,25746375,4
+59890597,25746375,4
+3394942,25746375,3
+79132036,25746375,3
+68661080,25746375,4
+84593268,25746375,4
+52345284,25746375,3
+SuperWMY,25746375,5
+xxdezhanghao,25746375,4
+47637580,25746375,3
+xuxudaodao,25746375,3
+51134125,25746375,3
+73877407,25746375,5
+foreveryoung09,25746375,3
+37630136,25746375,5
+72285462,25746375,4
+donbeet,25746375,5
+81311883,25746375,3
+iswh,25746375,3
+120541509,25746375,4
+xiaopang1106,25746375,4
+2391373,25746375,4
+krsnik,25746375,3
+zc1997,25746375,5
+yestar,25746375,3
+84351170,25746375,3
+37160658,25746375,4
+3615093,25746375,4
+izpk,25746375,3
+81923941,25746375,3
+hekahuiqu,25746375,4
+48917306,25746375,4
+101048399,25746375,4
+63127179,25746375,4
+llms,25746375,3
+adamwzw,25746375,4
+57043451,25746375,5
+chenolivia,25746375,4
+127386685,25746375,3
+44217355,25746375,4
+yeslie,25746375,3
+sidafaming,25746375,-1
+jingeng,25746375,4
+68145483,25746375,3
+130988349,25746375,4
+50266692,25746375,4
+71298888,25746375,3
+49559696,25746375,5
+120527544,25746375,2
+59731229,25746375,4
+miumiu777,25746375,5
+34294374,25746375,3
+80245550,25746375,5
+logai,25746375,5
+61895046,25746375,1
+69134335,25746375,4
+36279517,25746375,3
+catlover33,25746375,3
+3599865,25746375,4
+47285302,25746375,4
+65398395,25746375,5
+25676059,25746375,4
+2625768,25746375,3
+18514935,25746375,5
+Ellenlium01,25746375,4
+69234532,25746375,3
+53710865,25746375,2
+jpdong,25746375,3
+4132596,25746375,2
+50404313,25746375,4
+3476283,25746375,4
+47136314,25746375,4
+83016162,25746375,3
+33300959,25746375,5
+41462868,25746375,5
+tuantuandoudou,25746375,3
+54578280,25746375,2
+1359081,25746375,3
+50566666,25746375,5
+paddlelala,25746375,4
+79765325,25746375,3
+tanronghong,25746375,3
+62579633,25746375,5
+92659635,25746375,4
+83486677,25746375,3
+xiaomujunjun,25746375,1
+xunjie,25746375,4
+46070924,25746375,2
+50079947,25746375,5
+ydyie,25746375,2
+88997815,25746375,3
+56524460,25746375,4
+60760507,25746375,5
+51909421,25746375,3
+jinmengyun,25746375,4
+103236141,25746375,2
+73161188,25746375,3
+y328675858,25746375,2
+3416468,25746375,4
+49361626,25746375,4
+Heyimwalker,25746375,3
+1069770,25746375,3
+122336700,25746375,3
+startalker,25746375,5
+zjhztjj,25746375,4
+118854321,25746375,4
+2067915,25746375,4
+50158938,25746375,5
+68941119,25746375,1
+74826577,25746375,4
+85022173,25746375,3
+38258575,25746375,5
+70421764,25746375,3
+56569091,25746375,4
+FORGET...,25746375,3
+51950348,25746375,3
+qfy,25746375,4
+TrendAnalysis,25746375,4
+58913556,25746375,4
+19716945,25746375,4
+YAMAHA_GO,25746375,4
+30902352,25746375,1
+2344931,25746375,4
+34204093,25746375,3
+132356471,25746375,4
+63454014,25746375,3
+77012577,25746375,5
+47331166,25746375,4
+50527578,25746375,-1
+summerguagua,25746375,2
+52790131,25746375,2
+1381698,25746375,5
+81668154,25746375,3
+yonita_yang,25746375,5
+moonlightshit,25746375,5
+enimo,25746375,4
+88292094,25746375,3
+115618317,25746375,5
+38819398,25746375,4
+babywineer,25746375,5
+3253959,25746375,4
+3254418,25746375,3
+67411402,25746375,4
+122136126,25746375,3
+117348494,25746375,5
+summerfay,25746375,4
+3392902,25746375,3
+4134812,25746375,4
+66238564,25746375,3
+67346668,25746375,4
+48441113,25746375,4
+damonhao-cs,25746375,3
+55422325,25746375,5
+47167717,25746375,3
+51083261,25746375,4
+teresa_leaves,25746375,2
+62288515,25746375,5
+jbecks,25746375,3
+49181189,25746375,4
+69914528,25746375,2
+38445269,25746375,3
+47250034,25746375,5
+40015062,25746375,3
+45479009,25746375,4
+11499024,25746375,3
+liunizhou,25746375,3
+duoran,25746375,3
+43497624,25746375,4
+valanthecarey,25746375,4
+63444910,25746375,4
+126940931,25746375,4
+57609788,25746375,-1
+icephoenixone,25746375,4
+71946766,25746375,-1
+2332373,25746375,4
+laotang,25746375,4
+imhechang,25746375,4
+1138243,25746375,2
+83018108,25746375,4
+83065402,25746375,3
+81403645,25746375,5
+56244786,25746375,4
+mongrue,25746375,3
+2304340,25746375,3
+34909792,25746375,3
+zhengkangkang,25746375,5
+42936334,25746375,5
+missx77,25746375,4
+shoonior,25746375,2
+sampetter,25746375,4
+131927527,25746375,3
+echozhanglijun,25746375,4
+pinkskin,25746375,4
+86055475,25746375,5
+1724013,25746375,4
+66707929,25746375,4
+falent,25746375,5
+Anoni,25746375,3
+34403067,25746375,4
+3880844,25746375,4
+57528820,25746375,4
+126829630,25746375,3
+124061437,25746375,4
+kelvin7mj,25746375,5
+1867292,25746375,2
+topdog,25746375,5
+66217281,25746375,5
+1087321,25746375,3
+zhaixiaojie,25746375,2
+40866645,25746375,5
+47949191,25746375,4
+4551695,25746375,4
+H_flower,25746375,5
+37586252,25746375,1
+liuweimao,25746375,5
+55965923,25746375,4
+caicaihuang,25746375,3
+73033279,25746375,2
+13893884,25746375,4
+cskywalker,25746375,2
+2438025,25746375,5
+58772458,25746375,4
+51772148,25746375,4
+57725456,25746375,3
+131206597,25746375,5
+72468752,25746375,4
+77122322,25746375,3
+zhenglei1919,25746375,4
+78389609,25746375,2
+39322389,25746375,3
+58371560,25746375,4
+75752859,25746375,5
+3680830,25746375,5
+2626566,25746375,3
+81550449,25746375,3
+1364563,25746375,3
+2048690,25746375,2
+Rouwell,25746375,3
+immmmm,25746375,5
+3763502,25746375,4
+nnnjjjpppsina,25746375,2
+justwinder,25746375,2
+57474326,25746375,4
+119182014,25746375,3
+yinmouren,25746375,3
+47633821,25746375,4
+56827696,25746375,4
+91428973,25746375,4
+shawnx,25746375,4
+mo719125078,25746375,4
+3654230,25746375,5
+47368646,25746375,4
+41075495,25746375,4
+48976619,25746375,4
+95360863,25746375,4
+95360863,25746375,4
+57489804,25746375,5
+63189940,25746375,5
+YovaMonster1027,25746375,4
+2238966,25746375,2
+yangui,25746375,1
+2005598,25746375,5
+60203929,25746375,3
+49114944,25746375,5
+46119325,25746375,3
+kimi-1119,25746375,3
+49340336,25746375,3
+daijun1988,25746375,4
+seayo,25746375,3
+4867707,25746375,4
+70392127,25746375,3
+lionlsh,25746375,4
+chaunceyjohn,25746375,4
+55279581,25746375,4
+32330761,25746375,3
+chaisisi,25746375,4
+lancaoqin,25746375,-1
+106596511,25746375,3
+setilis,25746375,3
+1556251,25746375,3
+58863205,25746375,1
+DorisM,25746375,4
+94422178,25746375,3
+bookpoto,25746375,2
+61110036,25746375,2
+70629279,25746375,2
+ooxx00xx,25746375,4
+65776181,25746375,4
+67615771,25746375,4
+72914221,25746375,3
+14247291,25746375,3
+55954551,25746375,5
+128192780,25746375,2
+ThreeMonkey,25746375,5
+langziyinyin,25746375,5
+1226511,25746375,3
+70464788,25746375,4
+62949378,25746375,4
+2333505,25746375,4
+13271937,25746375,3
+33445354,25746375,5
+96939018,25746375,2
+Lreckle,25746375,3
+nysaisai,25746375,4
+hnnyzxh,25746375,4
+46253376,25746375,4
+Niro-Zeng,25746375,4
+jie2u,25746375,4
+1133756,25746375,3
+difeijing,25746375,3
+47297505,25746375,2
+73856461,25746375,4
+52319588,25746375,5
+107958162,25746375,4
+107586571,25746375,5
+xutiandasheng,25746375,-1
+1818595,25746375,3
+3855116,25746375,5
+45701216,25746375,5
+76654767,25746375,5
+DUNHILLJJ,25746375,2
+DKJessica,25746375,4
+62150747,25746375,4
+71811082,25746375,4
+37162990,25746375,4
+113487954,25746375,5
+Merioply,25746375,5
+49659191,25746375,3
+sevensuns,25746375,4
+4411646,25746375,3
+baozai630,25746375,1
+fishbar,25746375,4
+56196018,25746375,4
+46175639,25746375,3
+fickKPCh,25746375,4
+88638997,25746375,4
+3534571,25746375,4
+Jane_anan,25746375,5
+48789543,25746375,3
+smile_smile1988,25746375,4
+1960285,25746375,3
+126818106,25746375,2
+1482288,25746375,3
+49772004,25746375,3
+OneiLulu,25746375,3
+15338047,25746375,2
+lm12199,25746375,5
+40237768,25746375,5
+48264510,25746375,3
+56914134,25746375,3
+68989572,25746375,3
+baleyang,25746375,4
+26827955,25746375,2
+16968943,25746375,2
+smallsugar,25746375,4
+78065496,25746375,4
+69434990,25746375,4
+weilianglalala,25746375,4
+127972732,25746375,3
+48786722,25746375,5
+62291927,25746375,2
+61779592,25746375,4
+81369268,25746375,4
+90272032,25746375,4
+xygoing,25746375,4
+milerano,25746375,5
+wenbao,25746375,4
+2560827,25746375,4
+crazyfan,25746375,4
+youranlan,25746375,4
+yolanda0416,25746375,5
+32853386,25746375,4
+25370754,25746375,5
+88603301,25746375,3
+alwaysraining,25746375,4
+122450255,25746375,3
+kikoliu999,25746375,4
+48058863,25746375,3
+121353064,25746375,4
+58809404,25746375,4
+aibanino,25746375,1
+xuyq,25746375,2
+88378303,25746375,4
+90699414,25746375,4
+yoyodove,25746375,4
+45311828,25746375,4
+imedi,25746375,3
+88256583,25746375,4
+cherry34525,25746375,4
+89467395,25746375,3
+60592477,25746375,3
+yz501,25746375,3
+yelusiku,25746375,4
+IcbM,25746375,3
+91413966,25746375,5
+103023613,25746375,4
+92945557,25746375,4
+48048904,25746375,5
+79668765,25746375,4
+57460299,25746375,4
+lyh1014,25746375,3
+71250285,25746375,3
+40093986,25746375,4
+shinysun,25746375,4
+74150636,25746375,4
+titzanyic,25746375,4
+124801307,25746375,4
+57607946,25746375,3
+Watermonster,25746375,5
+48132735,25746375,4
+50278899,25746375,3
+dickluo,25746375,4
+129028198,25746375,3
+23734555,25746375,4
+64881542,25746375,4
+66269844,25746375,3
+earthquakes,25746375,3
+47305840,25746375,4
+chidaoshu,25746375,4
+4733166,25746375,3
+6745246,25746375,4
+30396866,25746375,4
+130589394,25746375,4
+Vanessa...,25746375,5
+3593699,25746375,4
+89717097,25746375,1
+2327694,25746375,4
+55737467,25746375,5
+Joelia,25746375,3
+61595225,25746375,5
+29149233,25746375,5
+56203891,25746375,4
+43808911,25746375,4
+58889027,25746375,5
+63465175,25746375,4
+61506971,25746375,3
+61551903,25746375,3
+45586906,25746375,4
+69773402,25746375,2
+1311759,25746375,5
+2185129,25746375,5
+63075072,25746375,4
+jxx121212,25746375,3
+4804072,25746375,4
+47002164,25746375,3
+6537400,25746375,-1
+47123644,25746375,3
+6855368,25746375,4
+3169215,25746375,2
+78571558,25746375,3
+51786500,25746375,5
+aaronchenwei,25746375,4
+Charlotte-e,25746375,3
+qiuxiafei,25746375,4
+kingcopushu,25746375,3
+51792609,25746375,3
+kwg18168,25746375,5
+50970521,25746375,5
+81530706,25746375,4
+8073151,25746375,4
+14665779,25746375,3
+tshane,25746375,3
+2189724,25746375,5
+1623065,25746375,3
+colleena333,25746375,2
+69874704,25746375,3
+108693709,25746375,4
+62482710,25746375,4
+48586435,25746375,4
+64996012,25746375,5
+8605018,25746375,3
+PATCHPAN,25746375,3
+cicichild,25746375,3
+juzi888,25746375,3
+41842523,25746375,5
+32561880,25746375,3
+51728085,25746375,5
+37518729,25746375,4
+lbc21,25746375,4
+93438147,25746375,4
+44629760,25746375,3
+YuSu,25746375,4
+117934892,25746375,3
+niuniu2221,25746375,4
+66528319,25746375,5
+4454692,25746375,4
+45274666,25746375,4
+71181418,25746375,3
+45176243,25746375,3
+91498001,25746375,4
+Oliver_Lu,25746375,5
+69678068,25746375,4
+130227721,25746375,2
+68835916,25746375,5
+43462039,25746375,5
+67863005,25746375,2
+52294863,25746375,3
+lilongfei,25746375,5
+56578863,25746375,2
+35068096,25746375,5
+4700776,25746375,4
+34558131,25746375,4
+43609061,25746375,4
+4243064,25746375,3
+59735063,25746375,3
+60801673,25746375,3
+4270273,25746375,4
+erwa,25746375,4
+dingtian911,25746375,3
+121989246,25746375,4
+53728385,25746375,5
+85830142,25746375,2
+45836259,25746375,4
+20657820,25746375,4
+wqcr123,25746375,3
+2748006,25746375,3
+47541832,25746375,5
+tasria,25746375,3
+melon618a,25746375,3
+57367354,25746375,5
+Jewelyxy,25746375,3
+64739308,25746375,4
+choulaoya,25746375,4
+79330359,25746375,4
+shurazhang,25746375,2
+38747364,25746375,4
+127785608,25746375,3
+zstyle,25746375,5
+40005323,25746375,3
+anaij,25746375,4
+66306727,25746375,5
+6243740,25746375,3
+4355421,25746375,4
+tabris,25746375,3
+YH222,25746375,3
+onedotdot,25746375,3
+yscysc803,25746375,3
+58249010,25746375,4
+quadoooo,25746375,4
+43116901,25746375,4
+lilishi,25746375,4
+35716026,25746375,3
+xiao-fu,25746375,3
+2592298,25746375,3
+71078758,25746375,5
+coxat,25746375,4
+67342694,25746375,4
+44587302,25746375,3
+amatou,25746375,4
+127782706,25746375,4
+zoey1014,25746375,5
+42859187,25746375,4
+tammyj_11,25746375,3
+95416047,25746375,3
+forsure,25746375,5
+35559755,25746375,3
+whitekeyboard,25746375,-1
+1114835,25746375,2
+2632584,25746375,3
+59738934,25746375,3
+amis110,25746375,4
+60867302,25746375,3
+41627268,25746375,3
+133415623,25746375,4
+erikzm,25746375,4
+asato,25746375,2
+5691697,25746375,3
+103235739,25746375,4
+43120723,25746375,4
+2187670,25746375,3
+2092765,25746375,3
+71865681,25746375,4
+Populusalba,25746375,3
+47367894,25746375,4
+2109718,25746375,4
+92004174,25746375,5
+65535805,25746375,3
+25618688,25746375,5
+132904059,25746375,4
+2265399,25746375,4
+78757579,25746375,5
+nianyike,25746375,1
+60275029,25746375,3
+86091558,25746375,2
+46175274,25746375,4
+63190083,25746375,1
+2396187,25746375,3
+moonjourney,25746375,3
+53920626,25746375,4
+57767148,25746375,4
+39625057,25746375,3
+84704746,25746375,4
+sharkspeare,25746375,4
+62086153,25746375,2
+2475811,25746375,5
+68830460,25746375,4
+knightingale,25746375,3
+yisideta,25746375,2
+23712945,25746375,5
+wuxi4945,25746375,5
+lin2jie,25746375,3
+Sunnyshine,25746375,3
+32937331,25746375,4
+54626990,25746375,3
+51476394,25746375,4
+65184093,25746375,3
+132678799,25746375,4
+49921904,25746375,4
+yumiaowater,25746375,3
+10041078,25746375,4
+campocampo,25746375,3
+50382646,25746375,3
+hq-happy,25746375,2
+edward2wong,25746375,3
+65029025,25746375,4
+65029025,25746375,4
+45965937,25746375,4
+70308764,25746375,4
+55405486,25746375,3
+39937848,25746375,4
+Jerryxuch,25746375,3
+loveecho668,25746375,3
+ohahahu,25746375,3
+131534387,25746375,1
+evenrain2008,25746375,1
+79364792,25746375,3
+71271781,25746375,3
+4121303,25746375,-1
+36765167,25746375,2
+jiushitime,25746375,5
+46714159,25746375,4
+54049800,25746375,3
+132956553,25746375,4
+54959245,25746375,4
+58604416,25746375,2
+sodafan,25746375,5
+50747518,25746375,5
+1381497,25746375,4
+101504179,25746375,3
+131474595,25746375,3
+2125225,25746375,3
+slimseven,25746375,2
+40495510,25746375,2
+61013222,25746375,4
+Brooke_love,25746375,5
+53307065,25746375,4
+132484267,25746375,4
+yphjj,25746375,4
+wusequanwei,25746375,2
+42062370,25746375,3
+57837521,25746375,3
+72606790,25746375,4
+stare,25746375,3
+63981734,25746375,3
+maoamaoa,25746375,1
+maoamaoa,25746375,1
+pillbug,25746375,2
+ca3as2caco3,25746375,2
+54268700,25746375,5
+60662764,25746375,4
+132621698,25746375,5
+princewk1008,25746375,1
+guangyinzhen,25746375,2
+46799195,25746375,4
+33747314,25746375,4
+91582621,25746375,4
+46824404,25746375,3
+3130809,25746375,3
+58151132,25746375,2
+1285360,25746375,4
+49366879,25746375,3
+37340433,25746375,4
+57596518,25746375,4
+48622522,25746375,4
+ronanray,25746375,4
+8306233,25746375,5
+59408878,25746375,3
+yingcao,25746375,4
+54706735,25746375,3
+4421474,25746375,2
+60936664,25746375,3
+2126183,25746375,3
+1891335,25746375,5
+53744550,25746375,3
+Esine,25746375,3
+94380874,25746375,2
+127496421,25746375,4
+Rebecca_618,25746375,5
+a13221807,25746375,4
+120998712,25746375,5
+oppotatu,25746375,5
+xiao8888,25746375,3
+43628275,25746375,5
+fgics,25746375,4
+1454893,25746375,5
+64518708,25746375,4
+81391880,25746375,3
+zxmalhf,25746375,5
+68657829,25746375,3
+twooneseven,25746375,4
+58647643,25746375,5
+47151726,25746375,4
+daniboy,25746375,5
+littlemarss,25746375,4
+60474639,25746375,5
+129363996,25746375,4
+36899592,25746375,3
+65417028,25746375,4
+4158908,25746375,4
+48206799,25746375,4
+goldensunflower,25746375,-1
+2407582,25746375,1
+39015968,25746375,3
+42006560,25746375,3
+lawrenz0617,25746375,5
+vect0r,25746375,5
+anjingyigeren,25746375,4
+darchang,25746375,4
+57143181,25746375,5
+hellowind,25746375,2
+59281167,25746375,3
+54192378,25746375,3
+86807524,25746375,4
+ancg,25746375,2
+39696481,25746375,4
+84238214,25746375,4
+54224355,25746375,3
+14840393,25746375,4
+finsen27,25746375,4
+bluestar777,25746375,4
+53166537,25746375,3
+63281322,25746375,2
+puppetian,25746375,4
+2054495,25746375,4
+2444103,25746375,3
+2444103,25746375,3
+67449498,25746375,4
+5012885,25746375,4
+lionelwait,25746375,4
+132438473,25746375,5
+61293492,25746375,5
+qingxi52vv,25746375,2
+130806847,25746375,5
+46340614,25746375,4
+133965029,25746375,4
+55870223,25746375,2
+shouding,25746375,3
+78397458,25746375,4
+3113577,25746375,4
+ty2012,25746375,4
+72155995,25746375,4
+58774315,25746375,2
+45369843,25746375,5
+huihuiatu,25746375,5
+Sylar10,25746375,4
+43844057,25746375,2
+60963394,25746375,3
+xiaopam,25746375,4
+90419193,25746375,5
+133486624,25746375,4
+49807065,25746375,4
+hutianyi,25746375,3
+3918402,25746375,5
+14575914,25746375,3
+dust4hope,25746375,4
+pottqqq,25746375,3
+100422638,25746375,3
+123370298,25746375,4
+67238808,25746375,3
+37129050,25746375,5
+128608124,25746375,3
+55347894,25746375,4
+31102423,25746375,4
+34753066,25746375,3
+fallwood,25746375,4
+66857880,25746375,5
+doraemon63,25746375,3
+53770866,25746375,5
+53654985,25746375,4
+74951548,25746375,3
+48965557,25746375,4
+loselove,25746375,3
+lianqian,25746375,3
+131332142,25746375,4
+2244671,25746375,5
+1456080,25746375,3
+BiXiaoBengZhuRe,25746375,4
+72924510,25746375,3
+cruiseyoung,25746375,4
+95166626,25746375,4
+1244120,25746375,4
+34298053,25746375,3
+daiy,25746375,4
+49034223,25746375,4
+131068311,25746375,3
+jhourui,25746375,5
+coffeejikou,25746375,2
+51255691,25746375,3
+59129484,25746375,5
+132191737,25746375,4
+53311132,25746375,4
+53721830,25746375,3
+92344823,25746375,3
+Jsadx,25746375,4
+88367720,25746375,5
+jialezone,25746375,3
+84235049,25746375,4
+qinhang,25746375,5
+81518415,25746375,5
+1769693,25746375,2
+53620031,25746375,4
+47200046,25746375,4
+1794613,25746375,4
+59918012,25746375,4
+suichunjie,25746375,4
+55850316,25746375,3
+3278666,25746375,2
+zyy23,25746375,5
+50336000,25746375,3
+66207629,25746375,4
+1198621,25746375,4
+leeshiuan,25746375,4
+ice_pudding,25746375,4
+tianxianglouzhu,25746375,4
+58484976,25746375,3
+lkk900518,25746375,5
+83881122,25746375,5
+4039278,25746375,2
+k70,25746375,4
+metamorphisisly,25746375,4
+115661966,25746375,4
+aokam,25746375,5
+faye-wong,25746375,3
+pengpengyue,25746375,1
+114404573,25746375,4
+42461012,25746375,5
+wmymt,25746375,2
+1400556,25746375,4
+17407986,25746375,2
+51152524,25746375,4
+yiny10961,25746375,5
+1452888,25746375,4
+31335200,25746375,4
+64622433,25746375,3
+66945260,25746375,4
+42216853,25746375,-1
+cloudlandlord,25746375,5
+2361637,25746375,4
+66043535,25746375,5
+60980785,25746375,4
+81923930,25746375,4
+1092731,25746375,4
+50906731,25746375,3
+54186100,25746375,3
+132855429,25746375,3
+120050114,25746375,3
+your_j,25746375,2
+131817734,25746375,1
+53316387,25746375,3
+3610551,25746375,3
+37102095,25746375,-1
+56561314,25746375,4
+4124299,25746375,4
+ulysseus-2,25746375,4
+3857210,25746375,4
+antony1994,25746375,5
+71118924,25746375,5
+47266065,25746375,4
+1424607,25746375,3
+61531803,25746375,1
+96410540,25746375,5
+25572888,25746375,4
+113608312,25746375,4
+cheeseflower,25746375,3
+hqi7,25746375,5
+ys,25746375,1
+juliayunjie,25746375,3
+122093308,25746375,4
+guo4901,25746375,5
+63871072,25746375,3
+ivyshao,25746375,3
+51929151,25746375,4
+55321548,25746375,3
+2933629,25746375,3
+43264297,25746375,4
+frosteeeee,25746375,2
+2603031,25746375,3
+43207309,25746375,5
+29741430,25746375,4
+25560643,25746375,4
+55673445,25746375,3
+hejinsomething,25746375,4
+51730167,25746375,4
+wenboxia,25746375,4
+34600215,25746375,3
+132529083,25746375,4
+ke-ke,25746375,4
+132961530,25746375,2
+133926657,25746375,4
+3501606,25746375,3
+Elizabeth1989,25746375,4
+onless,25746375,3
+dongxuanlan,25746375,5
+50588044,25746375,4
+85084961,25746375,3
+74701610,25746375,5
+73975883,25746375,4
+52441252,25746375,5
+caocaoa,25746375,3
+3066956,25746375,4
+4003784,25746375,5
+23730457,25746375,1
+47212439,25746375,5
+2424966,25746375,5
+69318069,25746375,5
+wsscjl,25746375,3
+126514473,25746375,3
+bamboodew,25746375,4
+BELINDA.S,25746375,3
+34592808,25746375,4
+48582853,25746375,4
+104651253,25746375,4
+4588595,25746375,5
+L-Shuai,25746375,3
+dahuilang15656,25746375,3
+64007978,25746375,5
+4047603,25746375,4
+lidesheng,25746375,3
+may-may,25746375,5
+4405120,25746375,4
+zeonwon,25746375,3
+mwangym,25746375,3
+nianyanian,25746375,3
+4247179,25746375,1
+38778339,25746375,1
+71556669,25746375,4
+FOOL624,25746375,2
+55575289,25746375,2
+116908080,25746375,5
+51087297,25746375,4
+cajiln,25746375,3
+levid,25746375,4
+70238336,25746375,3
+66178513,25746375,4
+1772548,25746375,4
+75961277,25746375,4
+1397901,25746375,4
+41922045,25746375,3
+3297574,25746375,3
+36499503,25746375,5
+78634802,25746375,3
+87010317,25746375,3
+47300313,25746375,3
+49319979,25746375,4
+josephgyal,25746375,3
+69946594,25746375,2
+2106137,25746375,3
+hairu,25746375,3
+54614709,25746375,4
+1096571,25746375,3
+75192516,25746375,3
+45914356,25746375,3
+28521318,25746375,4
+2548730,25746375,3
+62154788,25746375,1
+xml1112,25746375,2
+Hey_825,25746375,5
+41899297,25746375,2
+71861591,25746375,5
+54876127,25746375,4
+43076738,25746375,4
+mylbj,25746375,4
+neoway,25746375,5
+76452322,25746375,5
+67918844,25746375,4
+judeyoung,25746375,2
+heixiuheixiu250,25746375,3
+66403603,25746375,5
+mubin,25746375,4
+Tipsy666,25746375,4
+gsle,25746375,2
+57714945,25746375,4
+41106056,25746375,4
+weiyimaizui,25746375,5
+63897988,25746375,4
+31854340,25746375,4
+1274922,25746375,4
+33538142,25746375,4
+bzfdu,25746375,4
+knde,25746375,-1
+lufvi,25746375,5
+103458789,25746375,1
+cici0904,25746375,5
+1132028,25746375,4
+mingtianqt,25746375,-1
+48400640,25746375,5
+44145594,25746375,5
+36831869,25746375,5
+51243331,25746375,3
+131194167,25746375,3
+wangrong1990,25746375,4
+xiangfo,25746375,4
+64318494,25746375,5
+oneofus,25746375,4
+4247692,25746375,2
+53070769,25746375,4
+59393765,25746375,1
+129730100,25746375,4
+asvra,25746375,4
+80602343,25746375,3
+28582685,25746375,5
+92576305,25746375,2
+itsmeymq,25746375,1
+95442218,25746375,3
+48073177,25746375,4
+39843361,25746375,4
+3493096,25746375,4
+120891708,25746375,4
+65498039,25746375,4
+54251461,25746375,3
+wusiyi,25746375,2
+jjq_wuyi,25746375,3
+95386641,25746375,2
+41766735,25746375,4
+yekarey,25746375,4
+4590078,25746375,3
+28026736,25746375,5
+36151365,25746375,3
+walinee,25746375,4
+26650310,25746375,5
+2275412,25746375,4
+1167339,25746375,3
+133083146,25746375,4
+37462874,25746375,4
+54073244,25746375,4
+longlanglang,25746375,4
+47996487,25746375,3
+49914687,25746375,3
+114505500,25746375,4
+erentuo,25746375,5
+79096888,25746375,4
+53458050,25746375,4
+sunjialin1989,25746375,5
+54756616,25746375,4
+130681615,25746375,4
+41482074,25746375,4
+78716929,25746375,2
+133198269,25746375,3
+74825312,25746375,3
+Ran7,25746375,4
+43703010,25746375,3
+133543830,25746375,4
+44406151,25746375,4
+122825199,25746375,4
+128580925,25746375,3
+4766893,25746375,4
+sy19960123,25746375,5
+62514800,25746375,3
+slothbug,25746375,3
+4523741,25746375,3
+messiahzhaoze,25746375,2
+hpress,25746375,4
+yizizhiming,25746375,3
+moliangege,25746375,2
+la_luna,25746375,4
+51578243,25746375,2
+64886307,25746375,4
+beamanly,25746375,5
+et2dai,25746375,3
+2033498,25746375,2
+127933526,25746375,2
+53252879,25746375,4
+nss1w1,25746375,3
+48795051,25746375,2
+pankida,25746375,4
+3712644,25746375,4
+58308697,25746375,4
+eason0210,25746375,2
+123097653,25746375,3
+erichalfrchuck,25746375,4
+44006704,25746375,2
+mrwangzai,25746375,2
+3942799,25746375,3
+Amima,25746375,-1
+27432217,25746375,3
+chrissie619108,25746375,3
+56684398,25746375,3
+XY920521,25746375,3
+akilaa,25746375,3
+zhengweipiao,25746375,4
+dreamer13piggy,25746375,4
+4354314,25746375,1
+2658066,25746375,4
+84936380,25746375,-1
+xyc1987,25746375,4
+deepseashell,25746375,4
+3520200,25746375,4
+42202741,25746375,4
+115827848,25746375,4
+44373773,25746375,3
+123645823,25746375,2
+54184798,25746375,4
+52271140,25746375,4
+jhxxs,25746375,4
+2217349,25746375,3
+1240037,25746375,3
+alonggauss,25746375,4
+55589971,25746375,4
+44622528,25746375,4
+101820045,25746375,3
+48510715,25746375,4
+3833311,25746375,4
+huyouyou,25746375,3
+juwujian,25746375,2
+53228107,25746375,4
+53228107,25746375,4
+1721242,25746375,3
+66391032,25746375,4
+garyzhang,25746375,2
+38924619,25746375,3
+lauraqi,25746375,4
+58824133,25746375,4
+yny23,25746375,3
+44162461,25746375,3
+2599411,25746375,4
+kangmeng,25746375,4
+1596351,25746375,4
+pbc0615,25746375,3
+67125371,25746375,5
+shushudabaoz,25746375,5
+87602683,25746375,2
+2678240,25746375,4
+62425505,25746375,4
+70314512,25746375,4
+maoyu,25746375,3
+63571575,25746375,4
+62281464,25746375,3
+Rachel180236,25746375,2
+58094874,25746375,4
+120259879,25746375,4
+42794283,25746375,4
+47926068,25746375,4
+45623343,25746375,4
+128468373,25746375,3
+GMDY,25746375,3
+65408583,25746375,3
+41294131,25746375,3
+liuyongchina,25746375,2
+youngspring,25746375,3
+1731256,25746375,5
+57385084,25746375,5
+55663940,25746375,-1
+2771396,25746375,4
+68506147,25746375,3
+heydzi,25746375,3
+82096379,25746375,1
+morpheus5,25746375,4
+55452920,25746375,4
+alfiestudio,25746375,4
+AzureSoc,25746375,4
+131329189,25746375,-1
+baoziaron,25746375,5
+28312683,25746375,1
+1333089,25746375,4
+marysays,25746375,-1
+emlia,25746375,4
+50028709,25746375,2
+zhangjiwei,25746375,5
+qinduo,25746375,5
+kuxingseng80,25746375,4
+50166201,25746375,5
+84729919,25746375,4
+58179619,25746375,2
+59760298,25746375,4
+59901599,25746375,5
+fenglao,25746375,2
+66346680,25746375,5
+Artha,25746375,4
+54936166,25746375,4
+threeyears,25746375,3
+imom918,25746375,5
+42645517,25746375,5
+59290556,25746375,3
+kurobox,25746375,3
+63576753,25746375,5
+poetchou,25746375,4
+3838722,25746375,3
+81930957,25746375,2
+54776017,25746375,5
+65275677,25746375,3
+crpily,25746375,2
+3033835,25746375,5
+3816943,25746375,5
+39824106,25746375,1
+crazymelon,25746375,3
+crazymelon,25746375,3
+49198824,25746375,4
+melook,25746375,5
+whc4956,25746375,4
+62995680,25746375,4
+80922094,25746375,3
+1206373,25746375,3
+19266682,25746375,5
+shulan,25746375,4
+bridgerthe,25746375,4
+Jastine,25746375,4
+49715964,25746375,4
+67843385,25746375,2
+1314726,25746375,5
+formyself,25746375,5
+36271029,25746375,4
+53682563,25746375,4
+vivi112,25746375,-1
+97623200,25746375,2
+45819377,25746375,4
+Milk_Solo,25746375,3
+Zdb,25746375,4
+46588781,25746375,3
+Stone2k,25746375,4
+arthurx,25746375,4
+80663628,25746375,4
+Sandorothy,25746375,3
+ruoren,25746375,3
+FuckUrMother,25746375,3
+4192759,25746375,3
+cody555,25746375,2
+57805307,25746375,5
+L82yua,25746375,4
+otnemem,25746375,3
+64024738,25746375,3
+72140350,25746375,5
+63866031,25746375,5
+61415068,25746375,4
+tsoo416,25746375,4
+88020154,25746375,4
+Jodiezhang,25746375,3
+49082285,25746375,3
+45182133,25746375,3
+44183342,25746375,1
+122879836,25746375,4
+maimenger,25746375,5
+3719774,25746375,3
+CrossYou,25746375,5
+51001959,25746375,4
+wbx,25746375,3
+cathy_59,25746375,4
+57707856,25746375,2
+zuoshoudezuo,25746375,3
+60140602,25746375,5
+80437815,25746375,3
+Leyteris,25746375,5
+54395094,25746375,2
+133564344,25746375,3
+53497780,25746375,2
+42038430,25746375,4
+114734252,25746375,4
+2668037,25746375,4
+66696808,25746375,3
+132024097,25746375,3
+Farshal,25746375,4
+68163340,25746375,5
+wutongtree,25746375,3
+ciseibian,25746375,3
+sleepwalk,25746375,4
+lc_galaxy,25746375,4
+Garing,25746375,4
+lovin12,25746375,4
+42171704,25746375,2
+52992190,25746375,2
+37019836,25746375,4
+dewriver,25746375,5
+42171117,25746375,4
+53030747,25746375,5
+1375942,25746375,5
+54766723,25746375,4
+52736219,25746375,5
+sourcek2,25746375,5
+91957409,25746375,3
+37751161,25746375,3
+51605377,25746375,4
+63849510,25746375,3
+hejianjian,25746375,5
+58519561,25746375,4
+3024123,25746375,4
+62141852,25746375,4
+2858394,25746375,4
+46797117,25746375,3
+mellowang,25746375,3
+thymedy,25746375,4
+93375016,25746375,3
+4596072,25746375,4
+44483182,25746375,4
+Martin-Zhang,25746375,3
+wzjzxgj,25746375,-1
+75037124,25746375,4
+yilingyu,25746375,5
+127569899,25746375,2
+TubieWang,25746375,4
+36060435,25746375,2
+34323470,25746375,4
+70124708,25746375,5
+25282878,25746375,3
+64597466,25746375,5
+CatPrince,25746375,4
+133794602,25746375,4
+48539431,25746375,2
+1042464,25746375,3
+2325631,25746375,4
+fantasyfamily,25746375,5
+sambo,25746375,3
+4527709,25746375,2
+40659159,25746375,4
+3588360,25746375,3
+2664514,25746375,4
+43133361,25746375,4
+88327648,25746375,3
+78786637,25746375,4
+life2x,25746375,4
+yunl988,25746375,3
+50663434,25746375,2
+ilovehouyi,25746375,4
+48723605,25746375,5
+115740561,25746375,5
+yzone,25746375,5
+52470011,25746375,3
+windirt,25746375,3
+chrisairfly,25746375,3
+inruin,25746375,4
+33751339,25746375,4
+pp_jing,25746375,3
+movelay,25746375,4
+therecomy,25746375,4
+57617460,25746375,3
+Optimus-Prime,25746375,4
+6231766,25746375,3
+65303828,25746375,4
+87510148,25746375,3
+JiJiMOMO,25746375,4
+79936861,25746375,3
+3086740,25746375,3
+44392983,25746375,2
+57067318,25746375,3
+47581698,25746375,4
+4016597,25746375,3
+ms1919,25746375,4
+43849260,25746375,2
+120654245,25746375,3
+tom926,25746375,2
+99598599,25746375,4
+62864634,25746375,5
+4597338,25746375,3
+11012424,25746375,3
+meizu2016,25746375,1
+45461182,25746375,4
+42137156,25746375,4
+3655806,25746375,5
+44203908,25746375,3
+AvrilLavigine,25746375,5
+zml5d,25746375,4
+57213056,25746375,4
+han962464,25746375,3
+3484265,25746375,4
+81836984,25746375,3
+115593440,25746375,5
+47851634,25746375,4
+sevenBB,25746375,5
+61583937,25746375,2
+annko,25746375,2
+3977584,25746375,3
+jvilin,25746375,4
+55529322,25746375,5
+sheldonkao,25746375,4
+69875076,25746375,5
+31012523,25746375,3
+yuedawei,25746375,4
+58081877,25746375,4
+zihunjun,25746375,4
+46818877,25746375,4
+59606439,25746375,5
+65283141,25746375,3
+80671615,25746375,5
+120542127,25746375,5
+51374117,25746375,4
+leee14,25746375,2
+zeg,25746375,5
+godblesswho,25746375,4
+78934278,25746375,4
+CT19950923,25746375,3
+39850116,25746375,4
+53644977,25746375,3
+earthchild,25746375,4
+veolxxxx,25746375,3
+sally_cl,25746375,4
+wangyilin220,25746375,4
+2477156,25746375,4
+33385447,25746375,2
+sevenseven.7,25746375,3
+84899568,25746375,4
+bicha,25746375,5
+55554436,25746375,-1
+124514675,25746375,4
+2229529,25746375,4
+3487458,25746375,5
+57538254,25746375,3
+parasol00100,25746375,4
+54211342,25746375,3
+14327084,25746375,4
+61500590,25746375,3
+121881765,25746375,2
+50615991,25746375,5
+106163472,25746375,4
+xiaosongqu,25746375,4
+131416608,25746375,4
+3602153,25746375,4
+54597801,25746375,3
+liuxiaowan,25746375,4
+59307847,25746375,4
+2029651,25746375,-1
+2205097,25746375,4
+58933515,25746375,4
+wkwkaka,25746375,2
+52905046,25746375,3
+renee_bai,25746375,3
+77356251,25746375,2
+46375776,25746375,4
+37029015,25746375,3
+montcalgary,25746375,4
+1550135,25746375,2
+90325710,25746375,3
+mollyfang777,25746375,4
+64541292,25746375,4
+thierryhenry,25746375,5
+132813257,25746375,5
+70517273,25746375,4
+59971242,25746375,2
+2298495,25746375,4
+freddy_xu,25746375,3
+maplepu,25746375,3
+1781887,25746375,4
+74234828,25746375,4
+xue0302,25746375,3
+49422565,25746375,4
+103622140,25746375,4
+33886622,25746375,4
+29271779,25746375,4
+1951463,25746375,2
+58886429,25746375,3
+90564869,25746375,5
+83691770,25746375,4
+53630763,25746375,2
+55989112,25746375,4
+MotherConfessor,25746375,2
+yunshenglevi,25746375,5
+65152562,25746375,4
+56478530,25746375,4
+1391137,25746375,4
+2720430,25746375,2
+3605330,25746375,3
+55914846,25746375,3
+saai,25746375,3
+wong_orz,25746375,4
+1663187,25746375,2
+1380204,25746375,2
+69307279,25746375,5
+113037019,25746375,3
+felinezs,25746375,4
+80775122,25746375,4
+4638925,25746375,5
+kingdoucloud,25746375,2
+59217273,25746375,4
+58653283,25746375,4
+botuoxi,25746375,1
+52903647,25746375,4
+iamlowe,25746375,3
+youzhi,25746375,4
+45066097,25746375,4
+2925323,25746375,5
+2890229,25746375,5
+45686083,25746375,4
+acbc115,25746375,3
+lovezhuangjia,25746375,4
+sweetqin,25746375,3
+43648335,25746375,4
+lijie867350,25746375,5
+66234722,25746375,4
+muson00,25746375,1
+116304949,25746375,5
+pengpeng,25746375,3
+shiminxu,25746375,4
+65087582,25746375,2
+80163980,25746375,2
+108146760,25746375,3
+59826514,25746375,3
+103538832,25746375,4
+57883614,25746375,3
+93892137,25746375,2
+shinnodoo,25746375,3
+54222336,25746375,5
+130051341,25746375,3
+61532678,25746375,3
+106663926,25746375,3
+47025279,25746375,4
+xiongweilin,25746375,4
+91917385,25746375,5
+luciane,25746375,5
+91136103,25746375,3
+55619638,25746375,5
+ChanelFive,25746375,4
+56039933,25746375,-1
+62745830,25746375,5
+58808535,25746375,5
+3346776,25746375,2
+gongzitian,25746375,3
+Hfun33,25746375,3
+venryterna,25746375,5
+52368906,25746375,5
+57437837,25746375,3
+zbar1234,25746375,4
+29652168,25746375,5
+yolandityb,25746375,3
+aiguiling,25746375,4
+85811535,25746375,4
+87862605,25746375,5
+64345409,25746375,4
+63321391,25746375,4
+133810252,25746375,4
+42983014,25746375,4
+kenny_w,25746375,3
+addonn,25746375,4
+2504247,25746375,4
+iamliz,25746375,4
+lazyjo,25746375,3
+52647007,25746375,4
+kingkongofkhan,25746375,3
+103503223,25746375,3
+37480927,25746375,3
+42724768,25746375,2
+loveirina,25746375,2
+133847224,25746375,-1
+53942243,25746375,4
+53809848,25746375,4
+43233504,25746375,4
+1495292,25746375,3
+61380006,25746375,4
+EthanChu,25746375,3
+icheney,25746375,1
+snivelbb,25746375,3
+120978925,25746375,4
+susie1991,25746375,4
+simppydhl,25746375,5
+51941649,25746375,4
+85314786,25746375,5
+52282089,25746375,4
+53550565,25746375,5
+71127427,25746375,4
+70934160,25746375,4
+88070266,25746375,5
+3783693,25746375,5
+qingyingzhaoxin,25746375,4
+133471355,25746375,4
+62258561,25746375,2
+nearlloveyou,25746375,4
+2387348,25746375,3
+12794807,25746375,3
+mihion,25746375,3
+62504399,25746375,2
+115965924,25746375,4
+25110019,25746375,3
+55842990,25746375,3
+31066447,25746375,3
+rocksun,25746375,3
+69345358,25746375,4
+56609049,25746375,4
+foreversleepy,25746375,4
+64880714,25746375,2
+isabellagala,25746375,3
+elle.luo,25746375,3
+made-by-stan,25746375,2
+antime,25746375,3
+Ali1065641315,25746375,2
+h58487,25746375,3
+1455801,25746375,4
+120304667,25746375,-1
+76086734,25746375,4
+2817521,25746375,-1
+133191270,25746375,5
+27126657,25746375,5
+53962149,25746375,5
+hexuanpomon,25746375,2
+MK_ijal,25746375,4
+gaokai3091354,25746375,3
+2186089,25746375,4
+125770398,25746375,4
+jimmyfallon,25746375,3
+115660168,25746375,2
+59357149,25746375,5
+47114271,25746375,3
+mjtang,25746375,4
+littlemmbaby,25746375,4
+2468214,25746375,3
+zhhongbo,25746375,4
+MC.Zi,25746375,5
+3173862,25746375,2
+thunderous,25746375,3
+readyliu,25746375,4
+biskup,25746375,3
+CKyan,25746375,4
+sczz_tang,25746375,4
+58919934,25746375,3
+44849027,25746375,5
+joelipam,25746375,4
+59623092,25746375,3
+71720681,25746375,4
+2538567,25746375,3
+wunie,25746375,3
+4405260,25746375,2
+65684544,25746375,4
+kg1898,25746375,4
+67561107,25746375,3
+ljskljsk,25746375,3
+lokaven,25746375,4
+64180484,25746375,4
+movieview,25746375,3
+49301222,25746375,3
+67795929,25746375,5
+3557042,25746375,4
+129611962,25746375,4
+dyduyao,25746375,3
+60270558,25746375,4
+87902611,25746375,1
+53242249,25746375,4
+plawyer,25746375,4
+SilentLookYou,25746375,-1
+128615153,25746375,-1
+57881682,25746375,3
+65321007,25746375,4
+63997678,25746375,4
+36169541,25746375,4
+tuochacha,25746375,4
+suntina,25746375,4
+45509766,25746375,5
+xxxxxxdee,25746375,3
+streamlx,25746375,4
+banruoliuli,25746375,3
+83816838,25746375,1
+2620087,25746375,4
+cb1030,25746375,4
+83759888,25746375,4
+Sylary,25746375,4
+127363324,25746375,4
+57947049,25746375,4
+82784319,25746375,3
+77389336,25746375,5
+66091959,25746375,2
+npc518,25746375,4
+62883035,25746375,3
+73600166,25746375,4
+54467510,25746375,1
+2258983,25746375,5
+63462794,25746375,4
+80808595,25746375,4
+thomas032,25746375,5
+Wangaile,25746375,5
+3572985,25746375,3
+lucifermi,25746375,3
+2663629,25746375,4
+shipan,25746375,4
+69220050,25746375,4
+80598638,25746375,5
+yangliening,25746375,4
+3922372,25746375,4
+4226601,25746375,4
+48583836,25746375,1
+z7z,25746375,5
+G-Dear,25746375,4
+G-Dear,25746375,4
+121823052,25746375,3
+jacobzhai,25746375,5
+74529248,25746375,3
+129732129,25746375,1
+DEMO23,25746375,4
+67333061,25746375,3
+54422865,25746375,4
+60981917,25746375,3
+nanjournal,25746375,4
+103446908,25746375,4
+54345196,25746375,3
+52951780,25746375,4
+allblue,25746375,4
+64677693,25746375,5
+lh771,25746375,4
+74479513,25746375,5
+sophie-july23,25746375,4
+50094689,25746375,4
+68747518,25746375,4
+lovemycats,25746375,4
+abin520918,25746375,4
+73287736,25746375,4
+41680643,25746375,5
+55538609,25746375,4
+51345502,25746375,4
+61459253,25746375,3
+57633355,25746375,3
+54119335,25746375,2
+39168659,25746375,3
+xuningyu,25746375,3
+jiachangting,25746375,5
+113528717,25746375,2
+zini8023,25746375,4
+102184386,25746375,3
+49520759,25746375,3
+staved,25746375,3
+fre7dom,25746375,4
+zondwq,25746375,3
+baimaheizong,25746375,3
+1558709,25746375,4
+townlet,25746375,4
+zest,25746375,4
+mineLingLei,25746375,4
+60413211,25746375,3
+87818830,25746375,5
+130377649,25746375,3
+stardust1900,25746375,3
+3438313,25746375,3
+82065150,25746375,3
+Lene_XJTU,25746375,4
+47259806,25746375,4
+43978378,25746375,3
+61389962,25746375,3
+42623950,25746375,4
+iamxiaoqi,25746375,3
+kane-chen,25746375,3
+62379540,25746375,3
+42777952,25746375,5
+57771053,25746375,3
+74855673,25746375,4
+119681727,25746375,5
+yetiaoruo,25746375,4
+1383301,25746375,3
+55799617,25746375,4
+78925849,25746375,3
+PaPajudy,25746375,4
+48089294,25746375,5
+102104781,25746375,4
+simysm,25746375,4
+45789849,25746375,4
+arsene,25746375,5
+kubrick311,25746375,3
+45295722,25746375,5
+ccppeyre,25746375,5
+42029452,25746375,3
+59781288,25746375,5
+zipaiwang,25746375,4
+1020913,25746375,-1
+78578037,25746375,4
+45030783,25746375,5
+32803733,25746375,5
+mwr23929,25746375,3
+65687089,25746375,4
+stand314,25746375,3
+105280800,25746375,2
+yangcht,25746375,3
+68403152,25746375,-1
+43772242,25746375,4
+58419356,25746375,4
+49254570,25746375,3
+AldrickBanks,25746375,3
+miuccia,25746375,4
+natsukimi,25746375,3
+52798749,25746375,4
+50663566,25746375,4
+beautysheng,25746375,4
+102747303,25746375,1
+48288703,25746375,3
+mirccccco,25746375,4
+35063229,25746375,3
+76755993,25746375,4
+47688996,25746375,4
+58542527,25746375,4
+81752466,25746375,2
+zigamber,25746375,4
+4501745,25746375,4
+62860016,25746375,4
+sifangfengdong,25746375,3
+67246411,25746375,3
+dzone,25746375,3
+qingdaofu,25746375,5
+40626862,25746375,4
+holy-fishman,25746375,3
+67247084,25746375,4
+74942804,25746375,2
+58993842,25746375,4
+54129779,25746375,3
+paozu,25746375,2
+holyfield,25746375,5
+50556906,25746375,4
+xydudu,25746375,3
+86140576,25746375,-1
+tianyi1020,25746375,4
+4412176,25746375,4
+2750410,25746375,3
+58630530,25746375,5
+50515546,25746375,5
+1411336,25746375,3
+48532700,25746375,4
+2883444,25746375,5
+yimoyoulan916,25746375,4
+80631367,25746375,4
+133758631,25746375,5
+47193126,25746375,2
+74060146,25746375,3
+67618142,25746375,3
+49351576,25746375,5
+25454256,25746375,1
+zzgpyfz,25746375,5
+48712788,25746375,3
+subingjie,25746375,5
+3661713,25746375,3
+log318,25746375,3
+47434041,25746375,3
+106594383,25746375,4
+wxhsolo,25746375,3
+baisechengai,25746375,4
+75757535,25746375,4
+3592617,25746375,4
+2402223,25746375,4
+46678115,25746375,5
+69191222,25746375,4
+63531003,25746375,4
+127219953,25746375,3
+2403220,25746375,4
+bingo-kll,25746375,4
+71376133,25746375,2
+L-muyan,25746375,4
+icefishe,25746375,4
+icefishe,25746375,4
+16693810,25746375,2
+64796769,25746375,5
+51545041,25746375,3
+45956471,25746375,4
+66746051,25746375,3
+122232090,25746375,3
+46564377,25746375,3
+49706621,25746375,5
+cheshiredoc,25746375,4
+minhuzi,25746375,5
+yangyurou,25746375,4
+71809535,25746375,2
+2471325,25746375,3
+133020185,25746375,4
+68878726,25746375,4
+48636603,25746375,4
+80559391,25746375,3
+65199752,25746375,4
+103214078,25746375,3
+popopo,25746375,3
+75163927,25746375,5
+funnyxucheng,25746375,3
+55509648,25746375,3
+90000787,25746375,4
+53485894,25746375,4
+95910591,25746375,4
+1404901,25746375,3
+41980752,25746375,5
+4100649,25746375,3
+loworlower,25746375,3
+4239908,25746375,4
+HappinessZero,25746375,4
+51410491,25746375,5
+95817419,25746375,4
+88317701,25746375,5
+51149079,25746375,4
+20194870,25746375,3
+67572632,25746375,2
+tangmm,25746375,3
+molilala,25746375,5
+67659493,25746375,4
+qi2xue,25746375,4
+32314974,25746375,4
+43315131,25746375,4
+rinalee,25746375,3
+27008930,25746375,4
+merryliang,25746375,3
+shanyier,25746375,4
+45595430,25746375,4
+bravefish,25746375,4
+happywangwen,25746375,3
+51265293,25746375,4
+Do-my-self,25746375,4
+52769977,25746375,2
+81296522,25746375,4
+techie.zy,25746375,3
+4846888,25746375,5
+65532408,25746375,5
+59330201,25746375,2
+83480049,25746375,4
+3584957,25746375,4
+2738683,25746375,4
+wendawen,25746375,4
+keLviNleEe,25746375,4
+jiaowodlam,25746375,5
+cloverllx,25746375,3
+1653942,25746375,3
+55353522,25746375,4
+64801416,25746375,4
+petterzhang,25746375,3
+39832384,25746375,3
+guitarain,25746375,5
+76181752,25746375,4
+huangtoufa,25746375,4
+48747709,25746375,3
+66550666,25746375,2
+33960706,25746375,4
+69833946,25746375,5
+miss.underwater,25746375,2
+74759325,25746375,3
+45331865,25746375,4
+50044744,25746375,3
+frozone,25746375,3
+xianyuxiaojie,25746375,4
+1665848,25746375,5
+1712529,25746375,4
+83853096,25746375,3
+53639016,25746375,4
+victorwuman,25746375,4
+123945021,25746375,4
+68131545,25746375,3
+4199486,25746375,3
+22991326,25746375,4
+44575311,25746375,4
+62317747,25746375,2
+jindadong,25746375,3
+64173822,25746375,4
+maharaga,25746375,4
+cocojamboo,25746375,4
+45754770,25746375,3
+shin3,25746375,3
+changle0605,25746375,4
+2760210,25746375,4
+Longinuss,25746375,4
+43810613,25746375,4
+115212094,25746375,4
+50256249,25746375,4
+moredarkwhite,25746375,3
+qiqihhappy,25746375,4
+oldfeng,25746375,5
+127939230,25746375,4
+62989333,25746375,4
+41922022,25746375,2
+121925373,25746375,3
+1485318,25746375,4
+41726005,25746375,5
+47286656,25746375,4
+25982397,25746375,4
+davies,25746375,5
+2651943,25746375,5
+26985231,25746375,5
+cjshangbuqi,25746375,4
+33177895,25746375,3
+liaojiafen,25746375,4
+96092788,25746375,3
+yaoly0709,25746375,3
+43699027,25746375,4
+oakhui,25746375,2
+joyjay,25746375,5
+30084869,25746375,4
+42781171,25746375,3
+jsw9155,25746375,4
+79461965,25746375,3
+smilegoodday,25746375,5
+102402145,25746375,3
+pjcs,25746375,3
+don_C,25746375,4
+mufengqin,25746375,4
+yekaokao,25746375,4
+yekaokao,25746375,4
+47152561,25746375,4
+65502815,25746375,4
+49539687,25746375,3
+2564859,25746375,4
+66612496,25746375,4
+121665406,25746375,-1
+58039910,25746375,4
+ccjuse,25746375,5
+Jackandfoureyes,25746375,2
+76811076,25746375,4
+36514760,25746375,3
+qzl,25746375,3
+69970746,25746375,3
+61685486,25746375,3
+btone0808,25746375,1
+48874966,25746375,4
+2394327,25746375,5
+61795297,25746375,3
+37017024,25746375,3
+55325388,25746375,5
+34647053,25746375,3
+56856472,25746375,4
+48057004,25746375,5
+28368079,25746375,3
+castaneousair,25746375,3
+86846017,25746375,1
+3598072,25746375,4
+viviyin,25746375,4
+74532668,25746375,5
+65366516,25746375,3
+45809891,25746375,3
+68204055,25746375,5
+triStoneL,25746375,3
+3442648,25746375,4
+80074512,25746375,3
+44992130,25746375,3
+122021533,25746375,4
+sclpanda,25746375,4
+60046536,25746375,4
+67851427,25746375,3
+2024774,25746375,4
+nakunamanihong,25746375,3
+jashia,25746375,5
+49266863,25746375,3
+57715527,25746375,4
+57637480,25746375,5
+32433633,25746375,3
+61971241,25746375,4
+beier24,25746375,3
+4114969,25746375,3
+58786397,25746375,1
+halk,25746375,4
+130762342,25746375,3
+JustStayReal,25746375,4
+4038977,25746375,3
+babieblue,25746375,4
+flowml,25746375,4
+49162215,25746375,4
+jane.zhu,25746375,3
+zhengcl000,25746375,4
+14406293,25746375,4
+rosebushpiggy,25746375,4
+44504599,25746375,3
+40823380,25746375,4
+88237732,25746375,4
+65133684,25746375,3
+113999648,25746375,4
+64262100,25746375,4
+i840152811,25746375,4
+dzjzmj,25746375,5
+52702832,25746375,3
+1692752,25746375,5
+TiffanyBrisset,25746375,2
+leonx818,25746375,4
+64454454,25746375,3
+maggie1268,25746375,4
+3289683,25746375,5
+64692199,25746375,4
+60347813,25746375,3
+cloudwwb,25746375,5
+Fucking_hell,25746375,4
+airusi,25746375,1
+48763298,25746375,3
+gilyun,25746375,3
+ilovecola,25746375,4
+sdg1989,25746375,3
+4506723,25746375,4
+37967188,25746375,4
+4889336,25746375,4
+4325847,25746375,4
+confuzzle,25746375,3
+xiaojirou007,25746375,4
+57784183,25746375,5
+2679276,25746375,4
+58051077,25746375,1
+nanday,25746375,3
+4251338,25746375,3
+3725560,25746375,4
+3579800,25746375,2
+54721365,25746375,4
+47199948,25746375,4
+VVIVXIV,25746375,4
+48509446,25746375,3
+73210562,25746375,4
+45804814,25746375,4
+70954003,25746375,4
+4146586,25746375,2
+fancyyan,25746375,4
+68090825,25746375,5
+dfay,25746375,4
+kane7,25746375,3
+65441937,25746375,3
+52782307,25746375,3
+63300955,25746375,4
+roki,25746375,4
+share329,25746375,5
+zoujian-999,25746375,3
+malinda2199,25746375,4
+45840642,25746375,5
+2187326,25746375,3
+jahwey,25746375,4
+67352190,25746375,4
+fatia0,25746375,5
+justsay,25746375,4
+6014374,25746375,4
+14542773,25746375,3
+44561459,25746375,5
+K_Kaito,25746375,4
+119883443,25746375,4
+1719492,25746375,3
+55997882,25746375,2
+62910705,25746375,5
+swwol32,25746375,3
+zichuanxiao,25746375,5
+51229713,25746375,4
+56988998,25746375,3
+81848282,25746375,1
+59423518,25746375,5
+50353681,25746375,5
+62568293,25746375,4
+2590915,25746375,3
+3414829,25746375,4
+1110575,25746375,3
+72997506,25746375,3
+3703670,25746375,4
+qszone,25746375,1
+4213270,25746375,4
+2488466,25746375,4
+44728054,25746375,4
+mostai,25746375,5
+susanbear,25746375,5
+wuxiaominghan,25746375,5
+58386149,25746375,3
+46722209,25746375,2
+52886775,25746375,3
+milanbian,25746375,5
+46394662,25746375,3
+79734997,25746375,2
+64618863,25746375,4
+50351028,25746375,4
+K.Gray,25746375,4
+1831746,25746375,3
+85054306,25746375,3
+91669617,25746375,3
+canace_wang,25746375,4
+85597473,25746375,4
+46718931,25746375,4
+51777015,25746375,2
+hello_db,25746375,5
+5594345,25746375,3
+AILUHAN123,25746375,4
+49842879,25746375,3
+nangle,25746375,3
+60038262,25746375,3
+ler.sky.,25746375,3
+62864359,25746375,3
+43269770,25746375,5
+1197799,25746375,4
+zllzyu,25746375,4
+sjch,25746375,4
+24460380,25746375,5
+71383486,25746375,3
+yuelai15,25746375,4
+kinokoneko,25746375,2
+56835268,25746375,1
+60079134,25746375,4
+1333942,25746375,3
+markmong,25746375,3
+129381529,25746375,1
+73958470,25746375,4
+47587289,25746375,3
+Davidcyclone,25746375,-1
+Fedsay,25746375,3
+hahode,25746375,4
+zhangdahua,25746375,-1
+77626905,25746375,4
+yxjeremy,25746375,4
+ttanycall,25746375,4
+51915169,25746375,3
+76697169,25746375,4
+56884321,25746375,2
+85054310,25746375,2
+57886651,25746375,3
+36382798,25746375,5
+redenter,25746375,3
+76018485,25746375,4
+104551226,25746375,3
+96473743,25746375,4
+54083120,25746375,4
+67392975,25746375,4
+yumofu,25746375,2
+90793123,25746375,4
+CSO-Botasky,25746375,5
+misswoo,25746375,4
+89738729,25746375,3
+superonie,25746375,3
+johndoex,25746375,3
+lachie,25746375,3
+68087144,25746375,3
+68087144,25746375,3
+xzw1407,25746375,5
+42291376,25746375,5
+2788057,25746375,3
+41927716,25746375,4
+57585752,25746375,2
+72219224,25746375,5
+buttflied,25746375,4
+56397573,25746375,4
+ys1013,25746375,4
+2705335,25746375,3
+immarvin,25746375,1
+x_zr525,25746375,4
+echofrancis,25746375,3
+75328137,25746375,3
+93606686,25746375,4
+Mr_Sunday,25746375,4
+132870303,25746375,4
+kellengao,25746375,4
+beibeiyu,25746375,2
+dongjh,25746375,4
+2593614,25746375,5
+sslmagic,25746375,4
+50662959,25746375,4
+45008619,25746375,5
+1752320,25746375,4
+menkoumahu,25746375,5
+46525176,25746375,4
+45291333,25746375,4
+huangdx,25746375,3
+120378701,25746375,2
+46436685,25746375,-1
+57088195,25746375,3
+80202749,25746375,4
+71516012,25746375,4
+xys5413,25746375,4
+90884547,25746375,3
+MOVIE--KO,25746375,3
+2498446,25746375,4
+58301523,25746375,4
+76624965,25746375,1
+akirasama,25746375,3
+115662069,25746375,5
+75179640,25746375,3
+63496954,25746375,3
+52509884,25746375,3
+Solo-n,25746375,3
+shininglai,25746375,4
+77670734,25746375,4
+66083249,25746375,5
+69838036,25746375,2
+aNeEr,25746375,3
+3522043,25746375,5
+127224312,25746375,4
+87860382,25746375,4
+41374892,25746375,3
+89852120,25746375,4
+mrboxdpx,25746375,5
+2150724,25746375,3
+67800883,25746375,4
+allcybowie,25746375,4
+35736307,25746375,4
+Crazy__Lindy,25746375,4
+xiaosongstory,25746375,5
+50665690,25746375,2
+127777711,25746375,1
+1265651,25746375,1
+lilmi13,25746375,2
+liujunhe123,25746375,2
+48467281,25746375,3
+68561607,25746375,3
+94546976,25746375,3
+rangerswang,25746375,5
+64223729,25746375,4
+3218379,25746375,4
+62943460,25746375,3
+88047435,25746375,4
+1052022,25746375,4
+51591369,25746375,2
+lixixi1995,25746375,4
+Lizzieyuan,25746375,4
+87651171,25746375,1
+kimi-qianli,25746375,4
+70534283,25746375,4
+63472866,25746375,3
+1512451,25746375,2
+37216410,25746375,2
+fanyichao,25746375,2
+33372140,25746375,4
+shayy,25746375,3
+waka7,25746375,3
+tuotuodetuo,25746375,3
+flowertide,25746375,3
+vincentjones,25746375,4
+houyuan425,25746375,5
+87035372,25746375,3
+slevwh,25746375,3
+53362350,25746375,3
+xoki,25746375,5
+56349029,25746375,4
+56349029,25746375,4
+89635048,25746375,1
+59378291,25746375,4
+zebra168,25746375,5
+loooli,25746375,3
+powerfultony,25746375,3
+72852558,25746375,2
+jingrong,25746375,3
+Eumenides_7,25746375,4
+2305521,25746375,4
+whison,25746375,4
+DavyNight,25746375,4
+62877248,25746375,4
+huhuxiaoxue0219,25746375,5
+ivykwok,25746375,1
+66867402,25746375,3
+65285164,25746375,4
+3759700,25746375,4
+129857824,25746375,5
+42585852,25746375,3
+chenghan1990,25746375,1
+nanshengism,25746375,4
+sugarsugarcane,25746375,3
+64132743,25746375,4
+71038565,25746375,4
+80457179,25746375,4
+71267265,25746375,3
+3079947,25746375,4
+45661291,25746375,5
+57149541,25746375,3
+issdream,25746375,3
+34377268,25746375,4
+58698487,25746375,3
+53343599,25746375,5
+problemchildren,25746375,4
+59821556,25746375,4
+64700587,25746375,3
+2190682,25746375,5
+121754243,25746375,5
+1795919,25746375,2
+2161369,25746375,3
+66819479,25746375,4
+10026373,25746375,3
+skyofhaley,25746375,4
+1433006,25746375,4
+twenty1guns,25746375,3
+41871846,25746375,1
+57126111,25746375,4
+69037881,25746375,3
+dairytea,25746375,3
+32906170,25746375,4
+luanma1977,25746375,4
+104809540,25746375,5
+armitt,25746375,4
+82926624,25746375,3
+48423987,25746375,3
+44490194,25746375,3
+4758428,25746375,2
+redcookie,25746375,4
+52892284,25746375,3
+Iamfull,25746375,2
+51432651,25746375,5
+133595862,25746375,2
+3588917,25746375,3
+15918471,25746375,4
+ylEalon,25746375,3
+65956742,25746375,4
+129214543,25746375,3
+alessiagu,25746375,4
+97112144,25746375,3
+32625691,25746375,2
+zqsnail121,25746375,5
+51156864,25746375,4
+fanxiaodong,25746375,3
+59083968,25746375,3
+44386404,25746375,4
+30285418,25746375,4
+53662568,25746375,3
+43814222,25746375,4
+60905842,25746375,3
+48802127,25746375,3
+stillliving,25746375,4
+56758013,25746375,4
+69065215,25746375,4
+119987907,25746375,5
+70924398,25746375,2
+114250104,25746375,4
+47338150,25746375,5
+77351180,25746375,2
+120556762,25746375,3
+49284817,25746375,3
+43771540,25746375,3
+49441461,25746375,2
+97062397,25746375,4
+45641492,25746375,5
+jeensk,25746375,3
+87410268,25746375,5
+64899095,25746375,5
+kaka247,25746375,3
+fxoc,25746375,4
+83926604,25746375,4
+69034733,25746375,4
+lulusea,25746375,2
+71205321,25746375,5
+63612050,25746375,3
+63917152,25746375,3
+ning12wei,25746375,4
+68146250,25746375,4
+dou_chi,25746375,-1
+63285359,25746375,4
+39315197,25746375,3
+123688744,25746375,2
+77578341,25746375,4
+81412709,25746375,4
+130745675,25746375,4
+angalny,25746375,3
+ABQK,25746375,3
+62420483,25746375,4
+49154020,25746375,2
+4251050,25746375,5
+130937635,25746375,3
+swedishwolf,25746375,4
+kingofjungleo,25746375,3
+zhqjuice,25746375,3
+3182850,25746375,4
+80319833,25746375,4
+133070891,25746375,2
+jimson0791,25746375,3
+3115385,25746375,3
+31068430,25746375,4
+AngelaDayday,25746375,4
+2066944,25746375,5
+61657305,25746375,4
+johnqz874,25746375,3
+Arenas4.-_-Hreo,25746375,3
+tedfan,25746375,4
+56617946,25746375,4
+fengeasy,25746375,4
+47887769,25746375,1
+75912541,25746375,2
+47065864,25746375,3
+yxmj1982,25746375,5
+55867399,25746375,4
+gaoqr,25746375,2
+66479900,25746375,4
+AspireY,25746375,4
+91732362,25746375,4
+traveler1756,25746375,3
+77576075,25746375,4
+3869328,25746375,2
+50536832,25746375,5
+69465675,25746375,-1
+rushi3,25746375,4
+49177179,25746375,-1
+xifengshoumei,25746375,3
+10208465,25746375,4
+87599451,25746375,4
+lightwing86,25746375,4
+zhangfeitt,25746375,5
+4368925,25746375,3
+72827871,25746375,4
+point1to1,25746375,2
+114284723,25746375,4
+50023640,25746375,4
+tingdreamer,25746375,3
+1592554,25746375,5
+34946618,25746375,5
+52732434,25746375,3
+fangyuan1987,25746375,3
+68523574,25746375,4
+88564672,25746375,3
+103672023,25746375,3
+51435361,25746375,4
+101864611,25746375,3
+34794492,25746375,3
+clover121,25746375,5
+26798926,25746375,2
+wheatkittymew,25746375,3
+sofafish,25746375,4
+92032476,25746375,2
+44866431,25746375,3
+42807903,25746375,4
+52167289,25746375,3
+86708177,25746375,3
+52402555,25746375,3
+zhanghanha,25746375,3
+132344629,25746375,3
+103663267,25746375,2
+2246869,25746375,4
+43846305,25746375,3
+safulas,25746375,4
+104445642,25746375,4
+45951993,25746375,5
+70892372,25746375,3
+1715390,25746375,3
+81645668,25746375,4
+77922789,25746375,4
+103793768,25746375,3
+34244241,25746375,4
+weirdoToC,25746375,4
+66117401,25746375,4
+61273534,25746375,5
+3540441,25746375,2
+damienyf,25746375,5
+4024641,25746375,2
+132208597,25746375,4
+1313926,25746375,3
+stevenfive,25746375,4
+kimomo,25746375,2
+82529955,25746375,5
+43343642,25746375,4
+42761507,25746375,3
+summersuy,25746375,4
+52799019,25746375,5
+2896376,25746375,2
+fortunearn,25746375,4
+123938127,25746375,5
+34160744,25746375,4
+pupuleaf,25746375,3
+mufanxuanji,25746375,3
+79560195,25746375,3
+132770225,25746375,4
+3398416,25746375,4
+harechan,25746375,5
+68102477,25746375,4
+82299258,25746375,4
+55686150,25746375,4
+64975231,25746375,4
+2166426,25746375,4
+kylintsao,25746375,5
+ymli,25746375,3
+1364035,25746375,3
+3693991,25746375,3
+yan599083337,25746375,3
+85104639,25746375,4
+toyomana,25746375,4
+2265615,25746375,4
+zhaoliqun,25746375,5
+59638137,25746375,5
+46572945,25746375,5
+3635922,25746375,5
+TrueBit,25746375,4
+JimmyLien,25746375,3
+3701499,25746375,4
+jinqianmei,25746375,3
+126183742,25746375,-1
+46222507,25746375,2
+2318837,25746375,4
+2949759,25746375,3
+132355628,25746375,4
+angryberry,25746375,4
+hdjjys,25746375,4
+muyu125,25746375,4
+jollychang,25746375,3
+sanzhiling,25746375,4
+76216989,25746375,4
+kiki204629,25746375,4
+33064145,25746375,4
+1456706,25746375,3
+43020527,25746375,3
+zhuzhuzhu1990,25746375,3
+64103380,25746375,4
+Sherry0ai88,25746375,4
+66494720,25746375,3
+vinowan,25746375,4
+83513831,25746375,5
+riceseedling,25746375,4
+nini1030,25746375,3
+70307710,25746375,4
+yyt0105,25746375,3
+robins1979,25746375,4
+ricehouse,25746375,4
+bLue.C,25746375,4
+62936115,25746375,5
+xmm3790,25746375,4
+11503015,25746375,4
+77464601,25746375,4
+xsky1988,25746375,5
+58725860,25746375,4
+zhangjiaan,25746375,4
+72626479,25746375,4
+28633682,25746375,3
+jorney88,25746375,3
+zwj514235,25746375,4
+54328973,25746375,2
+68942746,25746375,2
+Popdai,25746375,5
+66631115,25746375,3
+42522085,25746375,5
+42808435,25746375,4
+3845975,25746375,3
+39047335,25746375,3
+126125556,25746375,4
+79631427,25746375,3
+83495567,25746375,4
+iMoney,25746375,5
+123008116,25746375,4
+yinzaixi,25746375,2
+45129270,25746375,4
+ikezhao,25746375,4
+67742715,25746375,3
+59032148,25746375,4
+57001973,25746375,3
+52478596,25746375,5
+31689638,25746375,3
+wangdahe,25746375,3
+davidttmam,25746375,4
+89160272,25746375,4
+20216566,25746375,3
+3308358,25746375,3
+2348623,25746375,-1
+yangshu1991,25746375,4
+88199581,25746375,4
+68311988,25746375,3
+JustCallMeCJ,25746375,4
+2210703,25746375,4
+44975625,25746375,3
+120269206,25746375,3
+mademoiselle3,25746375,3
+10236919,25746375,4
+81317162,25746375,4
+4856255,25746375,4
+110929955,25746375,4
+51096995,25746375,5
+youngfuck,25746375,5
+Kraatui,25746375,2
+vividgreen,25746375,5
+yixuan2,25746375,5
+icsky,25746375,4
+77058316,25746375,4
+88122336,25746375,4
+58412725,25746375,4
+lotusmomo,25746375,4
+46615150,25746375,5
+afewyearslater,25746375,4
+clay,25746375,3
+musichellsing,25746375,3
+63161358,25746375,5
+36664361,25746375,4
+conwaykang,25746375,4
+123067666,25746375,4
+54395692,25746375,4
+43719217,25746375,5
+58618452,25746375,3
+47434523,25746375,2
+62842608,25746375,3
+yzllwx,25746375,4
+106538681,25746375,5
+119683375,25746375,3
+stephenyoung119,25746375,5
+77898629,25746375,3
+132342909,25746375,3
+130701225,25746375,5
+syrz,25746375,4
+nekozamurai,25746375,4
+121329465,25746375,5
+122352396,25746375,2
+hxp1989,25746375,3
+48042943,25746375,3
+Joestar23,25746375,4
+shjolin,25746375,4
+59111693,25746375,4
+128203745,25746375,4
+122357621,25746375,4
+66994202,25746375,3
+50075764,25746375,5
+45569084,25746375,4
+2923033,25746375,1
+79242268,25746375,5
+qiangqiangzhang,25746375,2
+98094232,25746375,2
+49929451,25746375,5
+71394820,25746375,2
+fleming21,25746375,5
+ftgaox,25746375,5
+happygs,25746375,4
+fengmangbilu,25746375,5
+64867760,25746375,3
+44255937,25746375,3
+84091392,25746375,3
+8499887,25746375,5
+80146650,25746375,-1
+liangfangfang,25746375,4
+36731496,25746375,5
+60746988,25746375,4
+49171184,25746375,3
+duoduoshuwu,25746375,3
+62591475,25746375,3
+74283242,25746375,3
+53833067,25746375,5
+93242523,25746375,4
+3321433,25746375,2
+65672790,25746375,4
+lnayg1221,25746375,4
+106837860,25746375,4
+131970953,25746375,4
+67517659,25746375,-1
+90175149,25746375,4
+63223538,25746375,4
+3884732,25746375,4
+2986410,25746375,3
+1977836,25746375,3
+65681528,25746375,5
+62339561,25746375,3
+120828432,25746375,4
+77092352,25746375,2
+51620794,25746375,3
+chechengxuan,25746375,4
+54231509,25746375,3
+66989068,25746375,3
+marsong,25746375,3
+7116166,25746375,5
+123288101,25746375,4
+51490424,25746375,3
+little_stone,25746375,4
+54751676,25746375,4
+49060307,25746375,5
+125524083,25746375,2
+48649262,25746375,3
+wangzhy,25746375,3
+15131978,25746375,5
+moryfor,25746375,2
+zhuqingchen,25746375,3
+windowsosok,25746375,5
+cunpao,25746375,1
+2274906,25746375,3
+33438465,25746375,3
+132357464,25746375,3
+80442320,25746375,4
+48483774,25746375,4
+40461093,25746375,4
+aralebox,25746375,3
+59581636,25746375,2
+63041378,25746375,4
+62479715,25746375,3
+61190847,25746375,3
+hikarulea,25746375,4
+renling,25746375,1
+46950408,25746375,5
+126949865,25746375,5
+126949865,25746375,5
+62090217,25746375,4
+piubiu,25746375,4
+49055465,25746375,4
+132323816,25746375,3
+zhanlusword,25746375,4
+37424688,25746375,3
+49640193,25746375,2
+vaie,25746375,5
+Morewhite,25746375,2
+51014734,25746375,4
+4549116,25746375,5
+84602566,25746375,3
+80801746,25746375,1
+119550935,25746375,4
+62963887,25746375,4
+linetwang,25746375,-1
+79592185,25746375,5
+129766862,25746375,5
+60804345,25746375,3
+64469960,25746375,4
+kevingao27,25746375,3
+2514634,25746375,4
+67182027,25746375,5
+3497971,25746375,3
+superchilli,25746375,3
+1375877,25746375,4
+lucky0520,25746375,4
+53785149,25746375,4
+39306601,25746375,4
+43891249,25746375,5
+69236289,25746375,4
+108793879,25746375,5
+76621126,25746375,5
+60105839,25746375,4
+2092985,25746375,3
+76803382,25746375,4
+61166940,25746375,4
+46061693,25746375,4
+alicialin,25746375,3
+fuxinisgood,25746375,3
+38984888,25746375,3
+susanstone,25746375,4
+55852519,25746375,4
+55392439,25746375,4
+57691329,25746375,3
+75801738,25746375,4
+2568671,25746375,3
+SweetCoffee,25746375,4
+132145463,25746375,4
+madiwu,25746375,3
+parkjungsoo,25746375,5
+64640148,25746375,3
+boneloverock,25746375,3
+roseforu,25746375,4
+mxmxmxxx,25746375,3
+aiwe27,25746375,4
+chengcheng1012,25746375,3
+48889692,25746375,4
+1693893,25746375,4
+Ryan-Z,25746375,4
+40127953,25746375,4
+49186665,25746375,4
+simple545,25746375,4
+42033576,25746375,3
+qunger,25746375,3
+6781786,25746375,3
+61086502,25746375,3
+calamusrain,25746375,3
+3071504,25746375,3
+roger589,25746375,3
+59428188,25746375,2
+16048346,25746375,5
+52543603,25746375,4
+Fannie0929,25746375,4
+96392036,25746375,2
+51126355,25746375,4
+1411201,25746375,3
+51312401,25746375,4
+3814643,25746375,2
+2225894,25746375,4
+60375141,25746375,4
+Luptior,25746375,2
+2944259,25746375,2
+132024010,25746375,3
+62726422,25746375,3
+3370269,25746375,3
+Firm_Julien,25746375,5
+62013379,25746375,1
+51292681,25746375,4
+52548384,25746375,-1
+126092428,25746375,3
+88078787,25746375,3
+120956047,25746375,3
+lijun_,25746375,3
+65045632,25746375,3
+59604055,25746375,1
+41786241,25746375,4
+2085959,25746375,3
+130983822,25746375,4
+49411879,25746375,2
+67267269,25746375,3
+4135777,25746375,3
+4116226,25746375,3
+fuji-kelly,25746375,4
+125709334,25746375,5
+82519366,25746375,4
+szk13731584239,25746375,3
+54349031,25746375,2
+92637851,25746375,4
+39108497,25746375,3
+applecs,25746375,3
+20719866,25746375,3
+2258556,25746375,3
+66845875,25746375,3
+MephistophelesK,25746375,4
+1225334,25746375,4
+49954576,25746375,4
+1673724,25746375,5
+3793771,25746375,5
+rayal,25746375,4
+72727625,25746375,3
+3423661,25746375,4
+44969187,25746375,4
+2230826,25746375,3
+szdouban,25746375,3
+2998980,25746375,3
+7010764,25746375,4
+36403736,25746375,5
+68447008,25746375,3
+13330129,25746375,3
+34199128,25746375,4
+77673608,25746375,3
+52929940,25746375,4
+4500468,25746375,3
+86850732,25746375,4
+62995857,25746375,3
+51340873,25746375,3
+67452375,25746375,4
+56797832,25746375,1
+47274200,25746375,4
+129552489,25746375,4
+likinglr,25746375,4
+summerhee,25746375,3
+122696705,25746375,4
+2743256,25746375,3
+119806823,25746375,4
+1765008,25746375,4
+49282329,25746375,3
+colorwind,25746375,3
+3826970,25746375,-1
+3908682,25746375,5
+2177082,25746375,-1
+xi77,25746375,5
+agnesliuctt,25746375,4
+15439490,25746375,4
+holykathy,25746375,4
+nebgnahz,25746375,5
+zoneone,25746375,3
+maxine_9395,25746375,3
+marsradiance,25746375,5
+nemo2017,25746375,4
+83100870,25746375,4
+chenhuayang,25746375,4
+131197515,25746375,3
+sukiffff,25746375,3
+58723016,25746375,3
+buwubuhui,25746375,3
+66489043,25746375,3
+fxx1498420,25746375,4
+3026459,25746375,4
+Faytongs,25746375,4
+55296144,25746375,4
+45803181,25746375,5
+4899345,25746375,3
+53343134,25746375,4
+specialjophy,25746375,3
+woodstock_zjy,25746375,5
+penpeter,25746375,5
+48371024,25746375,5
+slowerlearner,25746375,-1
+78640879,25746375,4
+52064559,25746375,4
+2889364,25746375,4
+LinSe7en,25746375,5
+1088676,25746375,3
+58034308,25746375,3
+ccccoffee,25746375,2
+1151347,25746375,4
+pussycheer,25746375,3
+lqr,25746375,4
+iamwangtao,25746375,5
+ssdomoto,25746375,3
+4001949,25746375,4
+71862712,25746375,4
+kuxiafeng,25746375,3
+49589129,25746375,4
+50311046,25746375,5
+120695517,25746375,3
+96217743,25746375,3
+60703648,25746375,3
+xiaoxiafu,25746375,4
+93032560,25746375,4
+36302109,25746375,4
+131737515,25746375,3
+65417437,25746375,2
+67024367,25746375,3
+45957568,25746375,3
+66944171,25746375,5
+xiaocaomeifay,25746375,5
+3336467,25746375,4
+78801731,25746375,5
+k5k,25746375,3
+35805626,25746375,3
+48667836,25746375,4
+83153978,25746375,4
+EarlySun,25746375,3
+ily98426,25746375,3
+51381772,25746375,5
+Jerry-feng,25746375,3
+phoebehsu,25746375,3
+131713125,25746375,4
+50670787,25746375,3
+cos2xhps,25746375,1
+33738050,25746375,3
+pingfengma,25746375,5
+41127479,25746375,4
+30857670,25746375,3
+42576821,25746375,3
+1843916,25746375,4
+78192927,25746375,4
+48507560,25746375,4
+2855599,25746375,5
+unicornlarry,25746375,4
+ChihiroLee,25746375,3
+80743649,25746375,3
+49602795,25746375,4
+43378617,25746375,4
+124981596,25746375,4
+60781966,25746375,4
+36757912,25746375,4
+49082695,25746375,3
+63338415,25746375,3
+jet92,25746375,4
+70488224,25746375,5
+58844330,25746375,4
+60725017,25746375,3
+55962178,25746375,3
+80241584,25746375,3
+ryanhsueh,25746375,3
+96290717,25746375,4
+1800345,25746375,4
+54603314,25746375,4
+pinkyboat,25746375,3
+chugesheng,25746375,5
+45588600,25746375,2
+41341856,25746375,3
+80317889,25746375,3
+ruilixiurui,25746375,2
+76786786,25746375,4
+82570789,25746375,3
+95082546,25746375,3
+45084687,25746375,4
+66203352,25746375,4
+52350621,25746375,4
+34969112,25746375,4
+xubosias,25746375,4
+71172794,25746375,2
+55573490,25746375,2
+dearruby,25746375,5
+MollyMollyMolly,25746375,4
+zxming,25746375,5
+lmm333,25746375,4
+62198966,25746375,4
+37862989,25746375,4
+toprocku,25746375,2
+68675820,25746375,4
+2694506,25746375,2
+42311814,25746375,4
+mingyu1992,25746375,5
+130949529,25746375,3
+4138330,25746375,4
+50745089,25746375,4
+57741256,25746375,5
+52460447,25746375,5
+81404706,25746375,5
+bbbonniechan,25746375,1
+63617440,25746375,-1
+84281755,25746375,2
+4115987,25746375,4
+49260594,25746375,4
+graciealwaysbe,25746375,4
+45868354,25746375,2
+40687803,25746375,4
+125880438,25746375,3
+83145085,25746375,2
+59524505,25746375,3
+dxq1216,25746375,3
+undertree,25746375,3
+sah1015,25746375,3
+42199537,25746375,5
+120964759,25746375,4
+2260384,25746375,3
+130658738,25746375,4
+2208183,25746375,4
+Frenda,25746375,3
+jiangyuhang,25746375,4
+4236071,25746375,3
+lovingmomo,25746375,3
+zihaozai0407,25746375,4
+76206479,25746375,5
+88938201,25746375,4
+53241571,25746375,5
+42630229,25746375,3
+L_islander,25746375,2
+62869919,25746375,1
+xiaobaohys,25746375,2
+Little-bear.,25746375,3
+60552303,25746375,4
+2600693,25746375,5
+39947592,25746375,3
+missufinally,25746375,4
+seiseilovexixi,25746375,4
+50161136,25746375,3
+rurucat,25746375,2
+amazingQi,25746375,5
+82680490,25746375,4
+supersun1005,25746375,4
+44987741,25746375,4
+39077146,25746375,4
+52151546,25746375,2
+122014449,25746375,5
+90812716,25746375,4
+uranus_taotao,25746375,5
+46671305,25746375,3
+52150311,25746375,3
+weldon,25746375,2
+68004061,25746375,4
+76770413,25746375,3
+3349482,25746375,4
+simonzhang,25746375,4
+50883641,25746375,3
+43930540,25746375,4
+45522216,25746375,4
+4334942,25746375,-1
+elainexyx,25746375,3
+emotion7,25746375,3
+15528507,25746375,3
+deaconsu,25746375,5
+57386472,25746375,4
+skyri,25746375,5
+2940531,25746375,2
+zchou,25746375,3
+nagle,25746375,3
+ayannagai,25746375,1
+47814049,25746375,4
+69173173,25746375,4
+68941794,25746375,5
+1169851,25746375,3
+zking1,25746375,5
+abaqiao,25746375,4
+123612947,25746375,3
+alisonxxxx,25746375,5
+56070301,25746375,4
+61142417,25746375,4
+52507418,25746375,2
+54938342,25746375,5
+56405753,25746375,3
+127771383,25746375,3
+45302622,25746375,4
+4311033,25746375,3
+47988380,25746375,4
+xiaowangzi1984,25746375,4
+abientot,25746375,4
+tristasmile,25746375,4
+61520625,25746375,3
+71996038,25746375,3
+91381377,25746375,5
+2130456,25746375,2
+40851528,25746375,5
+40851528,25746375,5
+127480277,25746375,5
+2291718,25746375,4
+9274036,25746375,3
+shenshenet,25746375,3
+52635205,25746375,-1
+26960233,25746375,3
+41013730,25746375,4
+80817324,25746375,3
+anjia617,25746375,3
+3753878,25746375,3
+42380844,25746375,3
+lemengxilexie,25746375,4
+99543744,25746375,4
+avall0n,25746375,4
+72037398,25746375,4
+4096669,25746375,3
+Angeline_xu,25746375,4
+90446896,25746375,3
+3506204,25746375,5
+45842646,25746375,3
+huix,25746375,3
+38781759,25746375,2
+67094093,25746375,3
+45416494,25746375,4
+130221209,25746375,4
+xiaobob03,25746375,3
+122198216,25746375,4
+40485290,25746375,3
+60306425,25746375,3
+emofuh,25746375,-1
+lulilu,25746375,3
+tarapanda,25746375,3
+1604882,25746375,3
+movie007wn,25746375,4
+130296477,25746375,1
+47597913,25746375,1
+87734503,25746375,5
+mingfeng1988,25746375,3
+83188680,25746375,4
+cc3ee,25746375,3
+kelira,25746375,5
+salutsissi,25746375,3
+62742263,25746375,4
+83739220,25746375,5
+simplece,25746375,4
+130314342,25746375,4
+122649591,25746375,3
+xqyamour,25746375,2
+48056684,25746375,4
+56085825,25746375,5
+dandan0720,25746375,4
+nothingbird,25746375,4
+40195954,25746375,4
+2849436,25746375,4
+56381828,25746375,2
+27459048,25746375,3
+43842293,25746375,4
+hallucinations,25746375,4
+126671524,25746375,5
+92062002,25746375,3
+2374657,25746375,4
+66454794,25746375,3
+101369491,25746375,2
+62814196,25746375,3
+83462778,25746375,5
+MsDuoli,25746375,4
+66512641,25746375,3
+127273157,25746375,5
+92057558,25746375,4
+45894165,25746375,4
+52614774,25746375,2
+astroangel,25746375,5
+32835447,25746375,4
+xiaohundaban,25746375,4
+zljded,25746375,4
+sunlion2,25746375,3
+48390020,25746375,5
+52003906,25746375,3
+54404280,25746375,3
+55010892,25746375,5
+yezhan,25746375,3
+125128020,25746375,4
+fuuuuuuuuck,25746375,4
+jjinglee,25746375,4
+xzhyqq866,25746375,5
+didinovember,25746375,4
+57892517,25746375,4
+adaxinyi,25746375,4
+47676983,25746375,3
+93209262,25746375,3
+sarabilau2,25746375,3
+92926718,25746375,3
+83811612,25746375,3
+3629598,25746375,4
+83127130,25746375,4
+Evan.yao,25746375,4
+68471660,25746375,4
+poo0ooq,25746375,4
+57200771,25746375,5
+hellohuman,25746375,3
+120566516,25746375,3
+56543834,25746375,4
+sundea,25746375,4
+27780120,25746375,-1
+belongstobrenda,25746375,3
+27032939,25746375,4
+3093793,25746375,4
+34841595,25746375,3
+57075245,25746375,4
+67844394,25746375,4
+fanink,25746375,3
+2573377,25746375,4
+54399333,25746375,1
+48312862,25746375,3
+131385202,25746375,3
+43743828,25746375,2
+121666382,25746375,3
+57762234,25746375,4
+xc051441,25746375,3
+44549010,25746375,1
+tikkit,25746375,4
+Jane88126,25746375,2
+60092810,25746375,-1
+chyq519,25746375,5
+xiaojidunmoguxi,25746375,5
+60588744,25746375,4
+51031885,25746375,4
+88731228,25746375,3
+59378260,25746375,5
+67483285,25746375,4
+ohoooooo,25746375,3
+45220607,25746375,2
+unclebear,25746375,3
+3002507,25746375,4
+3538993,25746375,4
+renmeng,25746375,4
+93455705,25746375,4
+51126064,25746375,4
+4146949,25746375,3
+82884353,25746375,2
+27824791,25746375,4
+48329538,25746375,5
+together1018,25746375,3
+66277472,25746375,4
+brucetown,25746375,4
+goodjelly,25746375,3
+68627815,25746375,5
+88481535,25746375,3
+devildie4,25746375,4
+fairyhui521,25746375,3
+58279594,25746375,4
+51012253,25746375,2
+futureinapr,25746375,5
+50610588,25746375,5
+46308834,25746375,4
+ivy_713,25746375,4
+cheerychang,25746375,3
+128509659,25746375,3
+7069657,25746375,3
+7069657,25746375,3
+60655321,25746375,4
+50750779,25746375,4
+zhwjz,25746375,4
+53242545,25746375,4
+gustavo_wwd,25746375,3
+60136071,25746375,3
+47488134,25746375,5
+shuiwublossom,25746375,4
+maxiangge,25746375,5
+3353584,25746375,4
+56044350,25746375,4
+70253982,25746375,4
+78530407,25746375,5
+22911916,25746375,3
+34184327,25746375,5
+60025721,25746375,4
+angekok,25746375,2
+57083421,25746375,4
+isay,25746375,3
+74955143,25746375,-1
+54731797,25746375,3
+53399092,25746375,5
+stanlyking,25746375,2
+soya45,25746375,4
+55635987,25746375,3
+3471096,25746375,3
+Littlelittle-J,25746375,4
+48248068,25746375,5
+41940074,25746375,2
+64740791,25746375,4
+69432585,25746375,2
+69602683,25746375,2
+Song1183,25746375,4
+61485916,25746375,5
+69616363,25746375,3
+17004593,25746375,4
+3410802,25746375,4
+lilingyang,25746375,4
+3847108,25746375,3
+orangela,25746375,3
+49976313,25746375,4
+athousand,25746375,4
+2144442,25746375,5
+58308335,25746375,4
+90205716,25746375,4
+xu_peizheng,25746375,5
+58323332,25746375,4
+qq78467004,25746375,5
+ijunojiang,25746375,4
+46823456,25746375,4
+31922995,25746375,5
+102191343,25746375,4
+D-bao,25746375,3
+48667596,25746375,3
+47256072,25746375,4
+ielit,25746375,3
+yusanqi,25746375,5
+86636671,25746375,3
+joyplayer,25746375,4
+52456095,25746375,3
+50945725,25746375,3
+62735268,25746375,4
+clairez,25746375,2
+63606511,25746375,3
+38960112,25746375,3
+66314549,25746375,3
+14042957,25746375,2
+haoxiaoru,25746375,4
+61271737,25746375,5
+hssss,25746375,3
+46898679,25746375,3
+56182319,25746375,3
+49245081,25746375,3
+2228783,25746375,4
+63950350,25746375,4
+114533111,25746375,4
+120831081,25746375,5
+1503790,25746375,4
+lilwhite,25746375,3
+68213529,25746375,2
+jiangmingji,25746375,4
+42937359,25746375,5
+4876430,25746375,5
+61807648,25746375,3
+60954463,25746375,4
+60865096,25746375,4
+4672889,25746375,3
+7706836,25746375,3
+lixiaoyo,25746375,3
+Chilwoo,25746375,4
+54166252,25746375,5
+1338530,25746375,2
+44589459,25746375,3
+48928187,25746375,3
+72699733,25746375,4
+1477802,25746375,-1
+47981405,25746375,5
+45832248,25746375,3
+71083043,25746375,4
+mars7088,25746375,4
+54865702,25746375,4
+59691399,25746375,5
+gk521,25746375,5
+39266502,25746375,5
+131130961,25746375,3
+fish_peanut,25746375,3
+LogicLady,25746375,3
+129475990,25746375,4
+3541486,25746375,4
+22043363,25746375,2
+ring_leslie,25746375,4
+60105481,25746375,5
+dodocancer,25746375,4
+68464521,25746375,4
+3340201,25746375,3
+dayandnights,25746375,3
+52349899,25746375,3
+77186305,25746375,4
+passionfly,25746375,5
+1357759,25746375,3
+45537891,25746375,3
+121362164,25746375,2
+4525795,25746375,4
+47618855,25746375,-1
+68404885,25746375,4
+superkarit,25746375,2
+Little_bear,25746375,3
+46166294,25746375,5
+chongzilalala,25746375,3
+fumihiko1985,25746375,2
+35639294,25746375,4
+119428504,25746375,4
+gillx,25746375,4
+RulyLee,25746375,4
+missfandy,25746375,3
+peggy622,25746375,4
+82075201,25746375,5
+phoebe0225,25746375,3
+39148019,25746375,4
+57831440,25746375,4
+sancosmos,25746375,4
+23853027,25746375,4
+anotheronexia,25746375,-1
+55701734,25746375,5
+annho,25746375,4
+38633281,25746375,3
+2217105,25746375,4
+53431261,25746375,3
+2248064,25746375,4
+49019773,25746375,5
+65940627,25746375,3
+dreamstealer,25746375,4
+Sioobhan,25746375,4
+freezinggl,25746375,3
+82569258,25746375,4
+4147254,25746375,3
+104539011,25746375,4
+40037855,25746375,4
+lintao,25746375,4
+59739922,25746375,3
+Miss.Hyacinth,25746375,4
+mia777,25746375,3
+4267240,25746375,4
+foreverroad,25746375,3
+101915583,25746375,4
+59380890,25746375,2
+52934173,25746375,4
+30457423,25746375,4
+8083237,25746375,3
+51281256,25746375,3
+joyeecheung,25746375,4
+65159840,25746375,4
+48007103,25746375,4
+52539188,25746375,4
+guccy,25746375,3
+45786438,25746375,3
+lieds,25746375,4
+74493313,25746375,4
+mianbucixiu,25746375,3
+mianbucixiu,25746375,3
+Googlechina,25746375,3
+blueshadow30,25746375,4
+130828030,25746375,4
+52211403,25746375,3
+48286955,25746375,3
+aprisliver,25746375,3
+ztl-poppy,25746375,4
+44854300,25746375,4
+3492952,25746375,4
+37280239,25746375,4
+39517329,25746375,4
+flydreamer,25746375,3
+58442010,25746375,5
+2766911,25746375,5
+47418045,25746375,4
+72159980,25746375,5
+winnizhu,25746375,4
+loftywain,25746375,-1
+105734460,25746375,5
+68875085,25746375,5
+34005309,25746375,4
+lalalameans,25746375,3
+57587090,25746375,3
+catbet,25746375,5
+patchwork,25746375,3
+48821319,25746375,4
+money_1,25746375,4
+beatrice_bei,25746375,4
+61223588,25746375,3
+68449205,25746375,4
+41874215,25746375,5
+karupisu,25746375,2
+31530097,25746375,3
+63093651,25746375,3
+madbug,25746375,3
+36810630,25746375,4
+DennisZz9,25746375,3
+62087328,25746375,4
+39942596,25746375,4
+justinnext,25746375,5
+beaux,25746375,4
+82909338,25746375,3
+andk2181,25746375,2
+52925540,25746375,3
+76671934,25746375,3
+131220424,25746375,4
+55777311,25746375,4
+34591792,25746375,5
+diqiuchaoren,25746375,4
+76082574,25746375,4
+51583738,25746375,4
+60650614,25746375,3
+74170855,25746375,5
+REALEYE,25746375,5
+j5281,25746375,4
+yyy1240,25746375,3
+soleilratemma,25746375,4
+51188157,25746375,4
+2950945,25746375,4
+4034036,25746375,5
+61540845,25746375,5
+54865862,25746375,5
+daiyuxuan,25746375,3
+49911238,25746375,-1
+zhangjianpeng,25746375,3
+73948805,25746375,4
+4129507,25746375,5
+81899801,25746375,5
+82365180,25746375,5
+issalou,25746375,3
+55858444,25746375,4
+levislong,25746375,4
+79614333,25746375,4
+61544297,25746375,3
+sylviapoor,25746375,5
+34948612,25746375,3
+50703946,25746375,3
+100445422,25746375,4
+dc_ckhab,25746375,3
+iamaprilm,25746375,3
+58207555,25746375,5
+baiwuya,25746375,3
+hsyh1989,25746375,5
+104575422,25746375,4
+irenewithu,25746375,5
+Rinascita,25746375,4
+54119751,25746375,3
+131191820,25746375,3
+121553297,25746375,5
+52710825,25746375,5
+58702826,25746375,3
+yt0310,25746375,5
+bliss24,25746375,4
+63254243,25746375,5
+3406491,25746375,3
+3764716,25746375,5
+2228009,25746375,4
+2349644,25746375,3
+53978584,25746375,3
+1969540,25746375,4
+relaispferd,25746375,5
+60549417,25746375,4
+44705229,25746375,3
+2875550,25746375,5
+34889740,25746375,4
+70081984,25746375,4
+81325605,25746375,4
+42962790,25746375,4
+2331096,25746375,4
+yunfanle,25746375,3
+tommytaurus,25746375,5
+Dydia,25746375,3
+71756751,25746375,3
+yutti,25746375,4
+130400247,25746375,-1
+72191576,25746375,4
+7829388,25746375,4
+104402849,25746375,5
+93036792,25746375,5
+93036792,25746375,5
+38207955,25746375,4
+HYX811,25746375,4
+62357925,25746375,5
+94227961,25746375,3
+monstersimon,25746375,3
+vjjdwn,25746375,3
+paopaotang1990,25746375,3
+46810832,25746375,3
+violetshel,25746375,4
+52889528,25746375,4
+69319715,25746375,5
+4200711,25746375,4
+103734560,25746375,4
+arrowkey,25746375,4
+zypq,25746375,4
+miu-Wolf,25746375,3
+50234076,25746375,4
+42912534,25746375,3
+56924966,25746375,4
+56924966,25746375,4
+64664386,25746375,5
+42651970,25746375,3
+52349741,25746375,-1
+koonwah,25746375,4
+abenmao,25746375,3
+58956952,25746375,4
+3113815,25746375,4
+helenliuman,25746375,4
+102423336,25746375,4
+4632449,25746375,4
+omgjingjing,25746375,4
+51517839,25746375,5
+mirror-y,25746375,4
+60073105,25746375,5
+momodeshang,25746375,5
+heaven0658,25746375,5
+quill,25746375,3
+79948176,25746375,5
+58038108,25746375,3
+SuzumiyaHaruhi,25746375,4
+89709568,25746375,4
+jiyuanwai,25746375,4
+cyisatree,25746375,5
+yakomoz,25746375,4
+muxueqz,25746375,4
+monkeycupl,25746375,4
+2598216,25746375,3
+freed0me,25746375,5
+obliviosage,25746375,3
+oct6th,25746375,5
+64104549,25746375,4
+1311496,25746375,4
+65092694,25746375,3
+RizMi,25746375,3
+49508441,25746375,3
+wufan,25746375,3
+64148365,25746375,4
+42125701,25746375,-1
+3703647,25746375,3
+57080555,25746375,4
+45786589,25746375,4
+119559372,25746375,5
+1496227,25746375,4
+58281873,25746375,4
+58421094,25746375,4
+1583835,25746375,4
+tyfevan,25746375,4
+1897438,25746375,4
+foofights,25746375,3
+124401468,25746375,5
+65672467,25746375,3
+yuuto,25746375,5
+53325709,25746375,5
+62919199,25746375,2
+toni1203,25746375,4
+konglinghuanyin,25746375,1
+cowsumy,25746375,4
+71143154,25746375,4
+43214194,25746375,4
+25978852,25746375,5
+leer7,25746375,4
+ivalen,25746375,4
+1512803,25746375,4
+13262103,25746375,3
+kingkongbarbie,25746375,4
+sylviasun2011,25746375,4
+8491923,25746375,4
+30354186,25746375,4
+ton9cuiyini,25746375,4
+3943602,25746375,5
+131151824,25746375,4
+ceachother,25746375,4
+prettyshit,25746375,4
+2242910,25746375,4
+deatheart,25746375,5
+55809849,25746375,4
+64788988,25746375,5
+69489690,25746375,3
+36576530,25746375,3
+aspirin-m,25746375,4
+4391247,25746375,4
+60537174,25746375,4
+Melodyfan,25746375,5
+kusohusky2,25746375,4
+84076381,25746375,2
+63790894,25746375,4
+Aries-in-douban,25746375,4
+RuiYip,25746375,4
+51578168,25746375,4
+47346006,25746375,4
+64755839,25746375,3
+82095351,25746375,1
+91295474,25746375,4
+80914640,25746375,3
+47950856,25746375,4
+50347133,25746375,4
+46792245,25746375,3
+bossgugu,25746375,4
+82367083,25746375,3
+2075652,25746375,-1
+56347749,25746375,3
+64036955,25746375,4
+48354152,25746375,2
+charita,25746375,4
+jlyyh,25746375,4
+130968714,25746375,5
+peovsple,25746375,4
+61506215,25746375,2
+ge383203180xin,25746375,4
+Sparta233,25746375,3
+eriol1987,25746375,4
+2706993,25746375,4
+setfree,25746375,4
+125166025,25746375,5
+78638741,25746375,3
+42842983,25746375,4
+78097943,25746375,3
+nnn1,25746375,1
+64821035,25746375,3
+RonaNg,25746375,2
+43609343,25746375,4
+48260143,25746375,4
+34271981,25746375,4
+JianLei93,25746375,2
+43867742,25746375,3
+48414241,25746375,3
+120563382,25746375,5
+moenning,25746375,4
+lying0,25746375,4
+shihuayiduo,25746375,4
+windy.chen,25746375,3
+ydzxt,25746375,5
+29109256,25746375,4
+xiaojiaheng,25746375,4
+107141723,25746375,4
+41710578,25746375,4
+4523412,25746375,5
+42191844,25746375,4
+55362027,25746375,5
+65684805,25746375,4
+SK1d125,25746375,5
+myshowfan,25746375,4
+RRspace,25746375,4
+23957168,25746375,4
+75188752,25746375,5
+llmymint,25746375,4
+loveLizhenyu,25746375,4
+xiiiiiin,25746375,-1
+64570396,25746375,3
+americanidiot,25746375,4
+chenjisoler,25746375,4
+65430180,25746375,3
+62051832,25746375,3
+2097598,25746375,4
+coconutZii,25746375,3
+6010524,25746375,5
+53139337,25746375,5
+121191945,25746375,4
+fishrimp,25746375,5
+3509288,25746375,4
+62943026,25746375,3
+3891395,25746375,2
+124890265,25746375,5
+Chelly,25746375,3
+75931284,25746375,4
+51817711,25746375,3
+WIllyWonka,25746375,4
+3141648,25746375,4
+130998330,25746375,3
+2846758,25746375,4
+lswawabao,25746375,4
+22842369,25746375,5
+viavia1991,25746375,4
+51862860,25746375,5
+romance90,25746375,4
+faerysun,25746375,2
+58914252,25746375,4
+87026553,25746375,5
+50047548,25746375,-1
+129468631,25746375,4
+34682309,25746375,5
+christinacyy,25746375,2
+46267341,25746375,2
+3053008,25746375,5
+56655499,25746375,2
+77218169,25746375,5
+111575511,25746375,4
+supperzhu,25746375,5
+moguduola,25746375,5
+43720178,25746375,3
+khunfeng,25746375,5
+48495016,25746375,5
+47104715,25746375,4
+amy5love,25746375,4
+joanna726,25746375,4
+56024205,25746375,3
+shezaizuyi,25746375,2
+2246096,25746375,5
+pansin,25746375,4
+79699248,25746375,4
+70535180,25746375,3
+58992832,25746375,4
+121433153,25746375,4
+bayuquandi,25746375,3
+88038496,25746375,4
+131118514,25746375,5
+120035398,25746375,4
+53308119,25746375,5
+2214938,25746375,5
+57695924,25746375,5
+55786630,25746375,3
+Regina749,25746375,4
+wildflower,25746375,1
+waniu,25746375,4
+48137784,25746375,5
+46754080,25746375,1
+serpentine0930,25746375,4
+66405994,25746375,4
+32015744,25746375,3
+56871206,25746375,3
+52660199,25746375,4
+2131466,25746375,4
+48254198,25746375,5
+53534566,25746375,4
+Bobbyency,25746375,3
+fledermaus,25746375,5
+53561059,25746375,5
+smilehuhu,25746375,5
+wqjym,25746375,4
+i_wanna,25746375,3
+yikouerren,25746375,4
+z7z7,25746375,4
+2731270,25746375,4
+eyrehuang,25746375,5
+ll_azrael,25746375,5
+67832658,25746375,4
+4357790,25746375,4
+yuyuyuyuyuxp,25746375,3
+shela,25746375,2
+FUTU,25746375,4
+laineygu,25746375,3
+75908113,25746375,4
+12907729,25746375,3
+51165620,25746375,2
+47940206,25746375,5
+chenyaya,25746375,5
+45866549,25746375,2
+lokio,25746375,3
+59212546,25746375,4
+hugemouse,25746375,4
+72970549,25746375,3
+karly1943,25746375,3
+63531655,25746375,4
+chingching,25746375,-1
+1659068,25746375,-1
+48936742,25746375,4
+cheng_Ting,25746375,3
+82569239,25746375,4
+61832387,25746375,5
+61832387,25746375,5
+cai1st,25746375,3
+GAJI,25746375,3
+36638272,25746375,5
+2918978,25746375,4
+47853825,25746375,5
+13295115,25746375,1
+llh9277,25746375,3
+50396291,25746375,4
+53339781,25746375,3
+90638331,25746375,4
+35295281,25746375,1
+virus11,25746375,1
+31043480,25746375,4
+slavezero,25746375,5
+49983823,25746375,3
+ravinenoravine,25746375,3
+35806860,25746375,5
+bugsula,25746375,3
+127231907,25746375,3
+78548156,25746375,4
+AliceTang27,25746375,3
+57105566,25746375,3
+2370392,25746375,3
+49436106,25746375,5
+52259960,25746375,3
+qubill,25746375,4
+royin.chao,25746375,3
+userl1,25746375,4
+37445916,25746375,-1
+feiluoxingji,25746375,4
+48419666,25746375,4
+50236723,25746375,3
+merrycherry,25746375,4
+49761291,25746375,4
+83187671,25746375,5
+rickydang7,25746375,4
+liweimin,25746375,3
+ooohhhrrr,25746375,3
+71863067,25746375,4
+131088684,25746375,-1
+61134040,25746375,5
+easy1028,25746375,3
+hhsasha,25746375,4
+129698032,25746375,4
+1876785,25746375,3
+41598793,25746375,3
+Q__,25746375,4
+128718320,25746375,3
+zhongshumocun,25746375,4
+foreveryoung01,25746375,4
+woshiadan,25746375,5
+73247451,25746375,2
+fengvicky0528,25746375,5
+elwy,25746375,4
+bluetiger,25746375,3
+68185079,25746375,4
+qcdx013,25746375,4
+54683018,25746375,5
+69165300,25746375,4
+69165300,25746375,4
+66637654,25746375,5
+zhaimozi,25746375,4
+54764887,25746375,4
+76414184,25746375,3
+130271332,25746375,4
+98104030,25746375,4
+Charlie007,25746375,3
+120551719,25746375,4
+Jewon,25746375,2
+121478143,25746375,5
+ruxiaoguo,25746375,4
+enxiaoci,25746375,5
+56867346,25746375,3
+ElyseLee,25746375,4
+1967724,25746375,3
+4335554,25746375,3
+ivylmj,25746375,4
+51603332,25746375,3
+52073677,25746375,5
+52073677,25746375,5
+heheyuanmengyiu,25746375,4
+102581208,25746375,5
+1734314,25746375,3
+1056656,25746375,3
+62610096,25746375,3
+70682305,25746375,3
+120334590,25746375,4
+James70s,25746375,1
+58640864,25746375,5
+BigLo,25746375,5
+guoerer,25746375,4
+77762504,25746375,3
+Lifer,25746375,-1
+2390982,25746375,4
+93527647,25746375,4
+ALLCOFFEE,25746375,5
+3736224,25746375,4
+45489465,25746375,4
+zhengzheng_l,25746375,4
+wanghaoze,25746375,4
+4842882,25746375,4
+2841133,25746375,4
+48700474,25746375,4
+44140187,25746375,4
+HesperShen,25746375,4
+39695667,25746375,3
+dennyricardo,25746375,-1
+Dera666King,25746375,4
+akward,25746375,4
+81721634,25746375,5
+76529709,25746375,2
+48699954,25746375,4
+41065952,25746375,5
+Campion,25746375,3
+kkbear,25746375,2
+wudaxi,25746375,5
+wmms,25746375,4
+1284659,25746375,5
+92850508,25746375,5
+53218506,25746375,4
+53663495,25746375,1
+44276241,25746375,5
+4200380,25746375,3
+84453809,25746375,4
+87528128,25746375,4
+130396316,25746375,5
+129012253,25746375,2
+3430040,25746375,-1
+wander429,25746375,4
+57546427,25746375,4
+ECHO0707,25746375,3
+66261518,25746375,4
+80798437,25746375,3
+mockingko,25746375,4
+3971708,25746375,4
+53728627,25746375,3
+49419342,25746375,3
+3915247,25746375,4
+zansheep,25746375,3
+43775375,25746375,4
+30714456,25746375,3
+carhfq,25746375,5
+97279852,25746375,4
+shingle,25746375,4
+39890237,25746375,4
+Yqrwxf,25746375,4
+shambhala,25746375,-1
+xinxinya,25746375,4
+50688073,25746375,4
+1631122,25746375,4
+47922587,25746375,3
+54382305,25746375,4
+62196307,25746375,3
+wawaing,25746375,4
+24382866,25746375,4
+4474619,25746375,4
+64264699,25746375,3
+49108378,25746375,3
+129956212,25746375,3
+93617074,25746375,4
+10020257,25746375,4
+47465928,25746375,4
+83473411,25746375,-1
+50623516,25746375,4
+caiyunfei,25746375,4
+121971887,25746375,4
+102103244,25746375,5
+sinzer.,25746375,4
+crystal1812,25746375,4
+79309643,25746375,4
+66554243,25746375,4
+samuelv,25746375,4
+2211361,25746375,4
+65722778,25746375,4
+3907593,25746375,4
+51979447,25746375,3
+84994086,25746375,4
+60468202,25746375,4
+2320875,25746375,4
+31685113,25746375,3
+dovely1sh,25746375,5
+Novembersnow,25746375,4
+59993815,25746375,4
+dorothy.C,25746375,3
+117360867,25746375,4
+64776383,25746375,5
+46735231,25746375,2
+48948981,25746375,3
+103172934,25746375,5
+swing8,25746375,4
+4190834,25746375,3
+doudouqin,25746375,3
+62027209,25746375,1
+51417200,25746375,3
+23750536,25746375,4
+50083716,25746375,5
+51771437,25746375,3
+KINGRUNRUN,25746375,1
+huhu1999,25746375,3
+130450218,25746375,4
+57077807,25746375,3
+129685348,25746375,5
+2822846,25746375,4
+chrisocean,25746375,4
+49924796,25746375,3
+60685986,25746375,4
+Irma26,25746375,3
+weakness,25746375,4
+fanxiaoyu,25746375,5
+47568574,25746375,4
+101963490,25746375,4
+69028223,25746375,5
+61336044,25746375,3
+61552559,25746375,5
+banxiamelove,25746375,5
+88174425,25746375,5
+myasuka,25746375,4
+mzcat,25746375,3
+shangdixiaole,25746375,3
+treeplanting,25746375,4
+yueyue718,25746375,4
+49187525,25746375,4
+120555899,25746375,3
+36545488,25746375,1
+62908552,25746375,4
+3882824,25746375,4
+51898920,25746375,4
+DERRICK_ROSE,25746375,3
+14518330,25746375,5
+43018283,25746375,4
+crazies,25746375,3
+komusou,25746375,4
+ijihoon,25746375,3
+48823348,25746375,5
+cherish-u,25746375,4
+48078575,25746375,4
+misurata,25746375,4
+qswoomsb,25746375,4
+57400243,25746375,-1
+xipingchangnata,25746375,5
+127248581,25746375,4
+68596231,25746375,2
+45155872,25746375,4
+2521351,25746375,4
+53914126,25746375,4
+119581983,25746375,5
+112845734,25746375,4
+50862966,25746375,3
+41649419,25746375,3
+69165207,25746375,3
+carboot,25746375,5
+59082872,25746375,-1
+37335417,25746375,4
+53734415,25746375,5
+62323512,25746375,3
+55374511,25746375,3
+spaceli,25746375,3
+63782965,25746375,5
+36832783,25746375,3
+36832783,25746375,3
+suaguai7,25746375,4
+53789977,25746375,5
+1368419,25746375,3
+2982439,25746375,3
+chenbaiyan,25746375,5
+petit-poisson,25746375,1
+76824704,25746375,4
+64389615,25746375,5
+moon6fly,25746375,4
+liaojiejue,25746375,2
+barboon,25746375,3
+57218999,25746375,3
+lily-monkey,25746375,1
+Luv_Frances,25746375,2
+76124816,25746375,4
+68913582,25746375,3
+aikki27,25746375,-1
+madgirl,25746375,4
+63213227,25746375,4
+1683063,25746375,2
+64981286,25746375,3
+imlynn7,25746375,4
+57060844,25746375,4
+1920409,25746375,4
+53577645,25746375,-1
+Robincharity,25746375,5
+40424921,25746375,3
+52690274,25746375,3
+51508482,25746375,5
+1926472,25746375,4
+leLJ,25746375,4
+121523895,25746375,5
+31555036,25746375,4
+47188150,25746375,3
+11396494,25746375,3
+57244499,25746375,3
+65592563,25746375,2
+JimmyLauOppps,25746375,5
+dream09104,25746375,4
+37366802,25746375,3
+44615298,25746375,4
+krisyeol_0627,25746375,3
+allenwangzihan,25746375,4
+65543837,25746375,4
+jaltahiti,25746375,-1
+45411639,25746375,4
+serendip,25746375,4
+linyanyanyan,25746375,2
+48847988,25746375,3
+48790837,25746375,4
+48494718,25746375,4
+51907715,25746375,4
+62102534,25746375,4
+120244834,25746375,5
+3767226,25746375,1
+58016622,25746375,3
+labelleza,25746375,5
+52906969,25746375,4
+42188580,25746375,2
+lyn.nb,25746375,5
+ordovices,25746375,2
+37736612,25746375,3
+myxiguachong,25746375,5
+122240307,25746375,3
+2471940,25746375,5
+7292654,25746375,2
+53617119,25746375,1
+smalltimeinblue,25746375,3
+22525155,25746375,5
+4462347,25746375,5
+tintingo,25746375,2
+nicole31,25746375,3
+56018293,25746375,2
+83070447,25746375,5
+alicenana,25746375,4
+70235777,25746375,3
+flydolphin,25746375,4
+melatielian,25746375,3
+xixi_g,25746375,4
+3384819,25746375,5
+127397854,25746375,5
+flowernora,25746375,3
+34347136,25746375,3
+74435589,25746375,5
+14480826,25746375,3
+61088148,25746375,4
+anya2011,25746375,4
+3627066,25746375,2
+fenrirgu,25746375,-1
+EsperanzaX,25746375,4
+kedoumili,25746375,4
+63770150,25746375,3
+Carolinev7,25746375,4
+76737341,25746375,4
+102714413,25746375,4
+68616795,25746375,3
+83389859,25746375,4
+121615327,25746375,4
+llbestmvp,25746375,5
+wuzhuan105,25746375,3
+Lynnarea,25746375,2
+puhonglei,25746375,3
+49950062,25746375,4
+130526552,25746375,4
+70030001,25746375,4
+54961193,25746375,4
+13593852,25746375,3
+50797675,25746375,4
+58179278,25746375,4
+44210341,25746375,5
+1460018,25746375,4
+qinxinzhu,25746375,3
+120728437,25746375,4
+66711883,25746375,3
+54908740,25746375,5
+aiwangyue,25746375,5
+69753373,25746375,5
+44381485,25746375,4
+43562049,25746375,4
+43562049,25746375,4
+62726844,25746375,3
+2439820,25746375,4
+alice1123,25746375,3
+chuangwaiyouxin,25746375,5
+jiulexiong,25746375,5
+62318695,25746375,3
+2678642,25746375,3
+71882861,25746375,4
+64473872,25746375,1
+echofong,25746375,4
+50051485,25746375,3
+46917427,25746375,3
+soyoung1986,25746375,5
+44937867,25746375,5
+nothingicare,25746375,5
+48258273,25746375,4
+51962854,25746375,4
+49207878,25746375,4
+40241549,25746375,3
+Lotus511,25746375,3
+83681028,25746375,3
+127975111,25746375,5
+1809252,25746375,5
+73203890,25746375,4
+103315563,25746375,4
+54767673,25746375,5
+60243350,25746375,4
+guangying0211,25746375,5
+49143390,25746375,4
+69857353,25746375,3
+4719369,25746375,4
+51156826,25746375,3
+77198061,25746375,3
+3157228,25746375,3
+82847789,25746375,4
+75987958,25746375,4
+62628758,25746375,5
+YvonneGQ,25746375,3
+32865838,25746375,4
+jessie962464,25746375,5
+44835567,25746375,4
+75581591,25746375,3
+91607712,25746375,5
+73275349,25746375,3
+37552777,25746375,4
+wadb,25746375,3
+oxolin,25746375,3
+fangxiaotang,25746375,5
+8527993,25746375,3
+57722592,25746375,4
+14240797,25746375,5
+58133611,25746375,4
+45190826,25746375,4
+quanmengli,25746375,4
+57710980,25746375,5
+55953481,25746375,4
+virlee,25746375,-1
+luziyujiang,25746375,4
+catchch,25746375,3
+35791083,25746375,1
+46880306,25746375,3
+fengjiansun,25746375,3
+50082759,25746375,4
+62585325,25746375,5
+1743863,25746375,4
+renlon,25746375,4
+veralai,25746375,4
+changefiona,25746375,4
+28467614,25746375,3
+Goshawk-,25746375,-1
+50501455,25746375,5
+54231024,25746375,3
+Vicky0507,25746375,3
+79148425,25746375,5
+lonelyalex,25746375,4
+38585131,25746375,4
+71336777,25746375,5
+pspld,25746375,4
+96410412,25746375,4
+81131012,25746375,-1
+63020890,25746375,5
+122377549,25746375,5
+2640849,25746375,4
+121217339,25746375,-1
+26387979,25746375,4
+47747281,25746375,4
+cr99,25746375,-1
+64342801,25746375,3
+40299888,25746375,4
+kevincaiduo,25746375,5
+47465732,25746375,5
+47671341,25746375,5
+48075210,25746375,3
+1219663,25746375,2
+YNKM,25746375,4
+ygf,25746375,3
+54885866,25746375,4
+38518725,25746375,5
+SM0916,25746375,3
+39760597,25746375,4
+omg-_-,25746375,5
+48883608,25746375,4
+37600684,25746375,3
+71058780,25746375,4
+farewellmyeteen,25746375,4
+46482640,25746375,4
+xiaojia86,25746375,2
+xyhoster,25746375,5
+91504508,25746375,4
+102014511,25746375,5
+56628925,25746375,4
+34685812,25746375,3
+xiaodazi,25746375,5
+65555922,25746375,5
+31592401,25746375,4
+zackman,25746375,4
+jianchen810,25746375,4
+53507443,25746375,4
+Kishimoto,25746375,3
+74343211,25746375,3
+aaronfighting,25746375,5
+2219194,25746375,4
+mushichong,25746375,4
+50506429,25746375,4
+y-3y17,25746375,4
+4909737,25746375,3
+CCNemo,25746375,4
+49879451,25746375,5
+hyukcat,25746375,4
+5592925,25746375,5
+nivakyo,25746375,4
+yeung123,25746375,3
+62156230,25746375,3
+83267313,25746375,4
+kaxen,25746375,4
+showlay,25746375,4
+6595795,25746375,3
+84456035,25746375,3
+55846970,25746375,4
+55846970,25746375,4
+evencare,25746375,5
+73051410,25746375,2
+38487515,25746375,5
+iconsky,25746375,4
+36575109,25746375,4
+57379426,25746375,4
+49048891,25746375,1
+vvish,25746375,4
+candyhorse,25746375,5
+4074985,25746375,4
+mnky,25746375,5
+sylar_chan,25746375,5
+34964485,25746375,4
+96471943,25746375,5
+2280761,25746375,4
+87790169,25746375,3
+4372093,25746375,4
+1823435,25746375,4
+pengpeng0308,25746375,3
+3857084,25746375,4
+catchg,25746375,5
+56712332,25746375,4
+3634555,25746375,3
+72806494,25746375,5
+4297964,25746375,3
+1897420,25746375,3
+nxy941123,25746375,4
+49388908,25746375,4
+104298228,25746375,4
+74537722,25746375,4
+47832790,25746375,3
+86253613,25746375,4
+76624951,25746375,3
+85482709,25746375,3
+gengxiang2012,25746375,3
+48119351,25746375,5
+78352623,25746375,4
+46630645,25746375,3
+liuxunsimida,25746375,5
+Gypsyinmysoul,25746375,3
+33949296,25746375,2
+62446851,25746375,4
+51336568,25746375,4
+75025238,25746375,3
+56886614,25746375,4
+61971859,25746375,-1
+68193127,25746375,3
+manhattant,25746375,4
+calmlygod,25746375,5
+69248971,25746375,3
+67262547,25746375,4
+3569551,25746375,4
+33290727,25746375,3
+57568286,25746375,4
+kakasoul,25746375,3
+73866765,25746375,4
+everybear,25746375,5
+4503914,25746375,5
+3522938,25746375,4
+35782756,25746375,2
+47258020,25746375,4
+35499398,25746375,5
+40069561,25746375,4
+huoguohuoguo,25746375,4
+53900618,25746375,4
+47924320,25746375,4
+19872766,25746375,3
+misawang,25746375,2
+2235847,25746375,5
+53888810,25746375,-1
+47373898,25746375,5
+68099155,25746375,4
+129149711,25746375,3
+102860717,25746375,5
+3725414,25746375,3
+1113592,25746375,5
+gezhihan,25746375,5
+sevenhan,25746375,4
+gusuxiaoqiao,25746375,1
+phyllis_withu,25746375,3
+severus,25746375,3
+minifish7,25746375,4
+76744695,25746375,3
+53255833,25746375,5
+evastone,25746375,3
+12954764,25746375,3
+ohnosang,25746375,2
+zhaopeng007,25746375,2
+122329830,25746375,4
+sunnyskyblue,25746375,4
+39132532,25746375,5
+120889048,25746375,5
+CalvinAzure,25746375,5
+40436346,25746375,4
+8242631,25746375,5
+shqx1,25746375,4
+pandaxiaoke,25746375,3
+azurepeach,25746375,4
+52228251,25746375,3
+70413922,25746375,1
+liuhuaminson,25746375,5
+80026003,25746375,4
+39529333,25746375,3
+sunaiyue,25746375,4
+littlemana,25746375,5
+heyavril,25746375,3
+nsol,25746375,5
+4315821,25746375,5
+a-zhu,25746375,5
+58223702,25746375,5
+60349083,25746375,4
+58603704,25746375,3
+76279565,25746375,5
+68841907,25746375,4
+tq010or,25746375,4
+rainsforu,25746375,1
+78507863,25746375,4
+yanala,25746375,4
+1282175,25746375,4
+98914244,25746375,5
+25674163,25746375,4
+ZotterElaine,25746375,4
+yanzibaobao,25746375,1
+Eileen-Lin,25746375,4
+49717804,25746375,3
+12919014,25746375,5
+64124840,25746375,2
+91515979,25746375,5
+xiaoconggo,25746375,4
+disanfang,25746375,5
+kkjoy2617,25746375,5
+1474754,25746375,2
+130276654,25746375,4
+4266811,25746375,2
+25503918,25746375,3
+103554299,25746375,2
+1337092,25746375,5
+11973232,25746375,3
+68579661,25746375,4
+120735055,25746375,3
+59421721,25746375,4
+46249272,25746375,2
+42224701,25746375,5
+adhoc,25746375,3
+flatfish.ryoko,25746375,4
+jingshensushi,25746375,5
+48480563,25746375,4
+louix,25746375,5
+3223740,25746375,5
+42000833,25746375,5
+27091040,25746375,2
+chkx,25746375,4
+39863904,25746375,4
+4079288,25746375,2
+120814304,25746375,4
+chuck0jessie,25746375,4
+enoughlove,25746375,4
+mousethe8,25746375,4
+40140527,25746375,3
+90612297,25746375,3
+3550233,25746375,3
+nicoleHXQ,25746375,2
+55901741,25746375,4
+53433843,25746375,3
+itserica,25746375,4
+42280233,25746375,4
+bluejessica,25746375,2
+123168812,25746375,4
+beachboyzx,25746375,4
+61209876,25746375,-1
+113050393,25746375,1
+96661360,25746375,3
+46058827,25746375,3
+55773220,25746375,2
+fishandbike,25746375,4
+58364140,25746375,3
+80021363,25746375,2
+85245250,25746375,2
+124254697,25746375,3
+124254697,25746375,3
+122156942,25746375,2
+49243034,25746375,5
+liang00liang,25746375,2
+Utopia.YY,25746375,3
+alivinlondonl,25746375,2
+67796824,25746375,3
+Aquarius_Girl,25746375,5
+43616371,25746375,2
+ferkmavie,25746375,3
+102006715,25746375,4
+39483647,25746375,4
+49727842,25746375,5
+65507275,25746375,5
+44008475,25746375,4
+boohooer,25746375,3
+41454040,25746375,4
+snowchong1984,25746375,4
+changzheng,25746375,5
+36803758,25746375,4
+54642925,25746375,5
+41582940,25746375,3
+53261530,25746375,5
+86721520,25746375,5
+41014466,25746375,3
+ddww911028,25746375,5
+48548563,25746375,5
+45042581,25746375,4
+100179635,25746375,4
+mafiafansv,25746375,5
+87603831,25746375,4
+70506684,25746375,4
+DARKM,25746375,4
+wwnoah,25746375,4
+MiracleQ,25746375,4
+chencheng2046,25746375,4
+ReyRab,25746375,5
+121499670,25746375,4
+61704117,25746375,4
+2910534,25746375,3
+75739395,25746375,4
+66602695,25746375,4
+78885563,25746375,4
+eleGuai,25746375,4
+44952303,25746375,4
+Tracy.Wan,25746375,4
+56565242,25746375,3
+1121093,25746375,4
+63376089,25746375,5
+51402436,25746375,3
+43955073,25746375,4
+57646854,25746375,3
+dramaticlife,25746375,3
+63244355,25746375,5
+67545355,25746375,1
+4807458,25746375,3
+shaochaowen,25746375,4
+3042073,25746375,4
+luckia1991,25746375,3
+windy.lin,25746375,5
+46567129,25746375,3
+119447313,25746375,5
+51606142,25746375,3
+kellywhite,25746375,4
+56222138,25746375,4
+117307392,25746375,3
+1564629,25746375,5
+Yokizyz,25746375,4
+65537266,25746375,4
+38978576,25746375,4
+sunnianyu,25746375,4
+3739608,25746375,4
+18139261,25746375,4
+3294725,25746375,5
+4643817,25746375,2
+46368829,25746375,4
+1818164,25746375,4
+49866554,25746375,3
+119615925,25746375,3
+46968893,25746375,4
+guoqichepiao,25746375,3
+56360766,25746375,4
+34664148,25746375,4
+corgi,25746375,-1
+47460482,25746375,3
+43057375,25746375,3
+SupremeLady,25746375,3
+46539421,25746375,4
+62382255,25746375,4
+89747225,25746375,4
+ning_yan,25746375,3
+dear.sunny,25746375,4
+93962585,25746375,5
+44282848,25746375,4
+benben321,25746375,5
+62737718,25746375,4
+2655191,25746375,4
+raising_dawn,25746375,3
+Mary_Lee,25746375,3
+4369602,25746375,-1
+mikey_chou,25746375,2
+yinyuedeng35,25746375,5
+trekker0,25746375,3
+eloise0114,25746375,4
+60314544,25746375,2
+58158546,25746375,4
+postr,25746375,4
+59641053,25746375,4
+73410392,25746375,5
+63508031,25746375,4
+1420038,25746375,4
+52810889,25746375,3
+45319686,25746375,3
+64852339,25746375,4
+45261585,25746375,4
+peggyhuang26,25746375,4
+32995807,25746375,3
+6375537,25746375,3
+1189550,25746375,4
+seeuaftersunday,25746375,2
+67330888,25746375,4
+iclover1314,25746375,4
+62334058,25746375,2
+59998509,25746375,5
+ViviaChen,25746375,3
+44150163,25746375,4
+huashengmi,25746375,4
+69388549,25746375,3
+115381052,25746375,4
+58587564,25746375,4
+7989655,25746375,5
+63011221,25746375,5
+littlecar,25746375,3
+88154137,25746375,3
+64091286,25746375,4
+shousolo,25746375,3
+3113188,25746375,5
+3818284,25746375,5
+ylanxixi,25746375,-1
+120315786,25746375,4
+63503398,25746375,4
+sabishi,25746375,4
+79203500,25746375,5
+35532855,25746375,5
+god151,25746375,3
+3974458,25746375,3
+60829180,25746375,5
+charlotte0526,25746375,3
+xiao_shuai,25746375,4
+Coreasshole,25746375,2
+49448413,25746375,4
+lapd,25746375,3
+99629606,25746375,3
+duouo,25746375,5
+waterskop,25746375,3
+57252256,25746375,3
+46318827,25746375,5
+aiJC,25746375,2
+63082584,25746375,4
+52680540,25746375,4
+49182005,25746375,3
+63358788,25746375,3
+renrumao,25746375,5
+88196239,25746375,3
+76935168,25746375,4
+118883751,25746375,5
+yuzhaobin,25746375,4
+xianuannian,25746375,5
+82992621,25746375,3
+60126786,25746375,2
+64121528,25746375,5
+2275556,25746375,3
+cn1027,25746375,5
+allegretto,25746375,3
+52933333,25746375,5
+70515402,25746375,3
+53375345,25746375,5
+deepe,25746375,5
+65448112,25746375,3
+currant,25746375,4
+3607686,25746375,5
+6440487,25746375,4
+1397182,25746375,5
+shirley317,25746375,4
+49519356,25746375,4
+32956626,25746375,4
+casbim,25746375,4
+2399727,25746375,3
+59235428,25746375,4
+91429129,25746375,3
+59220835,25746375,5
+missfuluola,25746375,4
+41805226,25746375,3
+minusculeF,25746375,3
+52104521,25746375,4
+63538128,25746375,5
+51919631,25746375,4
+zhongshan711,25746375,4
+maybeland,25746375,3
+122248485,25746375,4
+imhjl412,25746375,3
+1762190,25746375,5
+chaimengjie,25746375,4
+hjing1993,25746375,3
+123036590,25746375,3
+1971815,25746375,4
+52930373,25746375,1
+63177559,25746375,4
+cxh19920714,25746375,3
+63101856,25746375,5
+Phoebe.Lee,25746375,3
+71579974,25746375,5
+fcleung,25746375,5
+63689594,25746375,2
+2902661,25746375,3
+92444618,25746375,3
+2110865,25746375,3
+71575345,25746375,5
+lankiki7,25746375,5
+cheerjuno,25746375,3
+87699080,25746375,3
+piggasol,25746375,4
+129760491,25746375,3
+3972651,25746375,4
+44966176,25746375,4
+47116857,25746375,4
+aQuabLus,25746375,2
+27562730,25746375,3
+42443171,25746375,5
+benbenunhappy,25746375,3
+yoyofun,25746375,5
+2870958,25746375,3
+2394056,25746375,-1
+66735625,25746375,4
+89758966,25746375,3
+Utopiartist,25746375,4
+adrian.chai.au,25746375,3
+3339865,25746375,5
+lesliehan9210,25746375,5
+sherryzala,25746375,4
+2870309,25746375,-1
+122101793,25746375,3
+Gotrifajrohoo,25746375,5
+apple4520,25746375,4
+53748577,25746375,5
+74766860,25746375,3
+4157643,25746375,4
+xizi90,25746375,3
+somnus0319,25746375,3
+41660790,25746375,2
+lyj426,25746375,5
+raychau,25746375,3
+lewuleyi,25746375,4
+119404798,25746375,4
+lavicong,25746375,4
+king1108,25746375,4
+iorange,25746375,4
+ksky,25746375,5
+lucyhuang21,25746375,4
+brant800,25746375,4
+milanmao,25746375,3
+69125337,25746375,4
+85375875,25746375,4
+shijiabeini0701,25746375,5
+guonianle,25746375,5
+63048659,25746375,4
+36120993,25746375,3
+76551061,25746375,4
+46243518,25746375,4
+zhoujialin,25746375,4
+58607038,25746375,5
+2556060,25746375,4
+63945813,25746375,3
+121788420,25746375,4
+44335994,25746375,5
+ytismile,25746375,4
+64297751,25746375,4
+58921825,25746375,4
+lamp77,25746375,-1
+richer725,25746375,1
+65036885,25746375,3
+2163937,25746375,5
+61973546,25746375,5
+4631779,25746375,-1
+50299553,25746375,4
+rednurse,25746375,4
+43766729,25746375,4
+60150191,25746375,4
+14836914,25746375,4
+lotusworld,25746375,4
+ytt1990,25746375,-1
+85654044,25746375,5
+towelcatryna,25746375,3
+48159178,25746375,4
+menmener,25746375,3
+foreverdannie,25746375,5
+59189424,25746375,-1
+48899383,25746375,3
+78728775,25746375,3
+45800541,25746375,4
+45383601,25746375,3
+Ray_u,25746375,4
+Wangkioooo,25746375,2
+27658050,25746375,5
+68250216,25746375,4
+116600876,25746375,4
+4953358,25746375,4
+goose721,25746375,4
+s12s,25746375,3
+42748490,25746375,5
+60692884,25746375,4
+81149989,25746375,5
+JunKun,25746375,5
+61739173,25746375,4
+55561510,25746375,4
+28631660,25746375,4
+77905956,25746375,4
+57871767,25746375,4
+3731723,25746375,4
+82041849,25746375,5
+layne33,25746375,4
+51412736,25746375,-1
+63866164,25746375,4
+fyingelle,25746375,3
+haluway,25746375,3
+23105719,25746375,5
+53632477,25746375,5
+34938813,25746375,3
+hhy2013,25746375,4
+76584740,25746375,4
+10149854,25746375,4
+weixiaol,25746375,4
+75660933,25746375,4
+ummmmmmmmy,25746375,3
+ranfei,25746375,2
+52399993,25746375,3
+121434858,25746375,3
+51098338,25746375,3
+lovinggarfield,25746375,4
+59271699,25746375,4
+zhangqizhuangbi,25746375,4
+tev,25746375,2
+126931660,25746375,4
+55016503,25746375,4
+50204574,25746375,4
+outsider_9122,25746375,5
+lulu123,25746375,3
+monicachan,25746375,4
+52356046,25746375,4
+59658731,25746375,3
+ScarlettCheung,25746375,4
+lanebuxia,25746375,3
+39592000,25746375,3
+watermelonna,25746375,5
+78914788,25746375,4
+63419581,25746375,5
+hephan,25746375,-1
+DouDoucomehere,25746375,2
+44539777,25746375,5
+120172771,25746375,4
+crash-go,25746375,5
+nekojiru,25746375,-1
+1425941,25746375,4
+4028097,25746375,3
+49409117,25746375,5
+79882566,25746375,-1
+84310892,25746375,3
+55740203,25746375,5
+130851910,25746375,4
+3489632,25746375,4
+47325962,25746375,5
+dangdangtian,25746375,-1
+61573146,25746375,3
+95427243,25746375,4
+nightink,25746375,5
+May_T,25746375,4
+16919281,25746375,2
+57608084,25746375,4
+Tracy_morning,25746375,4
+48134685,25746375,4
+2310583,25746375,4
+jinyatou,25746375,4
+52214819,25746375,2
+71806570,25746375,2
+124347540,25746375,3
+smarthk,25746375,4
+48232992,25746375,4
+59347767,25746375,4
+54749824,25746375,4
+66714330,25746375,4
+48713524,25746375,3
+102818452,25746375,3
+caizixuan,25746375,3
+49219935,25746375,4
+liutengzhi,25746375,3
+1458725,25746375,4
+whatmike,25746375,3
+83044349,25746375,4
+61538847,25746375,3
+70781004,25746375,3
+70781004,25746375,3
+stonelcc,25746375,4
+noblehumble,25746375,5
+39808171,25746375,5
+siruila,25746375,4
+3407751,25746375,4
+67388458,25746375,3
+why112,25746375,4
+yunijiajia,25746375,5
+zcx1990,25746375,5
+48202928,25746375,5
+59693690,25746375,4
+actionaction,25746375,3
+mangojoan,25746375,2
+68886348,25746375,3
+51141120,25746375,3
+103512115,25746375,4
+34059998,25746375,4
+50599216,25746375,2
+kaarlo,25746375,5
+32776828,25746375,4
+53982181,25746375,4
+125845842,25746375,4
+53131355,25746375,3
+63206768,25746375,5
+31196925,25746375,4
+50450766,25746375,5
+Something-Rock,25746375,4
+3198993,25746375,4
+sidneylumet,25746375,4
+vikingshesaid,25746375,-1
+50041267,25746375,3
+3669366,25746375,4
+35760339,25746375,4
+helenooc,25746375,2
+64417719,25746375,4
+SZH19920707,25746375,4
+huoshuyinhua,25746375,3
+hatanomio,25746375,4
+40779185,25746375,4
+lyxuntang,25746375,2
+momoko_huang,25746375,3
+edisonme,25746375,5
+71715342,25746375,4
+52282792,25746375,3
+drinkme,25746375,3
+36199638,25746375,3
+26786636,25746375,4
+Cosmo--,25746375,3
+48604788,25746375,4
+44078982,25746375,3
+72994567,25746375,3
+47122526,25746375,3
+2657246,25746375,3
+53818655,25746375,4
+48148787,25746375,5
+49028296,25746375,4
+virginiaboat,25746375,-1
+41142807,25746375,4
+thespencer,25746375,4
+120376008,25746375,3
+128739482,25746375,4
+67672494,25746375,4
+31789782,25746375,3
+121657066,25746375,3
+JC921004,25746375,4
+3005606,25746375,5
+55764121,25746375,4
+2324250,25746375,1
+67763944,25746375,4
+shoushouan,25746375,-1
+morningsu,25746375,4
+76315009,25746375,4
+Vol.de.nuit,25746375,3
+TualatriX,25746375,5
+Ruby-0917,25746375,1
+66831677,25746375,2
+24274750,25746375,5
+54500977,25746375,4
+3455527,25746375,3
+45927824,25746375,4
+58313086,25746375,4
+caesarphoenix,25746375,4
+47707485,25746375,3
+wanpunleo,25746375,5
+esy0706,25746375,5
+45238478,25746375,2
+3229284,25746375,3
+54909935,25746375,4
+alphy,25746375,3
+soledadan,25746375,3
+xr-single,25746375,3
+hcaelb,25746375,4
+89796820,25746375,5
+45529514,25746375,2
+36300587,25746375,3
+78493096,25746375,1
+yumik9,25746375,4
+raytao,25746375,3
+68853437,25746375,4
+68853437,25746375,4
+implicitallure,25746375,5
+caoenjian,25746375,3
+bianziwaiwai,25746375,4
+feibaobei,25746375,3
+36805986,25746375,4
+56003950,25746375,3
+130395100,25746375,4
+85527494,25746375,2
+1762545,25746375,4
+joyjoyjoychan,25746375,3
+122782956,25746375,3
+huanghongyang,25746375,4
+azizi,25746375,5
+sallyd679,25746375,4
+Missy1012,25746375,4
+1599809,25746375,4
+41833499,25746375,3
+Amymy,25746375,3
+megansyr,25746375,-1
+IRIDESCENT.ONE,25746375,5
+66979855,25746375,4
+60747227,25746375,4
+43275344,25746375,4
+gd2244,25746375,4
+35914058,25746375,5
+pandejian250,25746375,3
+60338101,25746375,3
+35353317,25746375,4
+56731399,25746375,5
+61722322,25746375,4
+jkk0620,25746375,4
+exzx,25746375,3
+55859362,25746375,5
+102631650,25746375,3
+2422304,25746375,4
+gala9394,25746375,5
+34617683,25746375,-1
+Mr.baozi,25746375,5
+73084756,25746375,1
+3471574,25746375,4
+dingruitaba,25746375,4
+blew,25746375,4
+45107933,25746375,3
+muyi1988,25746375,5
+48920065,25746375,4
+lothron,25746375,4
+4283238,25746375,4
+beloving,25746375,5
+51488028,25746375,2
+60717435,25746375,4
+4723158,25746375,5
+Jake52592,25746375,5
+dongdansh,25746375,5
+119489564,25746375,3
+35813524,25746375,3
+PMsxl,25746375,5
+sincerity615,25746375,5
+1849770,25746375,4
+maoqijian1221,25746375,4
+89667488,25746375,4
+lancezou,25746375,3
+31465488,25746375,4
+50433409,25746375,4
+Xiaojieli,25746375,4
+45928300,25746375,2
+1172752,25746375,4
+38412947,25746375,4
+sipan,25746375,3
+so-lonely,25746375,5
+62030418,25746375,2
+vickyhanv,25746375,3
+53942101,25746375,1
+53204374,25746375,4
+90127295,25746375,4
+44708171,25746375,3
+45463396,25746375,2
+130828082,25746375,4
+83847244,25746375,3
+2108562,25746375,5
+freakbody,25746375,3
+67182363,25746375,3
+94460148,25746375,5
+63132632,25746375,3
+lotusjunepp,25746375,5
+66809666,25746375,3
+83311615,25746375,5
+48980467,25746375,5
+zydaydream,25746375,4
+61349784,25746375,5
+68298279,25746375,5
+48793240,25746375,4
+47398025,25746375,-1
+71938369,25746375,3
+ShuangXiaodan,25746375,3
+up2dan,25746375,4
+54457349,25746375,3
+63165563,25746375,5
+zpzs,25746375,3
+102735168,25746375,4
+Aianita,25746375,3
+Raphael_cc,25746375,4
+62688277,25746375,5
+sho2mon4e4y,25746375,3
+41690409,25746375,4
+xlzz,25746375,3
+Elizabeth-Lee,25746375,3
+27852981,25746375,-1
+SldneyZhang,25746375,5
+prin0602cess,25746375,-1
+63412313,25746375,3
+wstczy,25746375,3
+LeslieLydia,25746375,4
+44868532,25746375,4
+48873151,25746375,4
+39003865,25746375,5
+daisy932025,25746375,3
+65400188,25746375,3
+yb7116163,25746375,3
+LuuuuC,25746375,3
+127141779,25746375,5
+120352953,25746375,-1
+4674424,25746375,4
+topdragon,25746375,3
+47580510,25746375,5
+27891262,25746375,4
+91140332,25746375,4
+122222690,25746375,4
+121942823,25746375,3
+52728173,25746375,4
+53105432,25746375,4
+resurrection,25746375,3
+1053312,25746375,3
+52316308,25746375,4
+81003990,25746375,3
+vegenious,25746375,4
+IKEAUO,25746375,4
+48553188,25746375,3
+92468807,25746375,2
+55805974,25746375,5
+62085517,25746375,4
+hxlgoodboy,25746375,2
+130082458,25746375,3
+gaoweipo,25746375,4
+4720825,25746375,5
+Lucian_Liu,25746375,5
+53492986,25746375,5
+58211668,25746375,3
+52583553,25746375,3
+enjoyleelife,25746375,3
+58109203,25746375,5
+73805161,25746375,4
+nycharline,25746375,4
+blueandgreen,25746375,4
+daangel,25746375,4
+3663683,25746375,4
+gujunhao50,25746375,4
+55423972,25746375,4
+65181695,25746375,3
+av13,25746375,3
+jeansolove,25746375,3
+120353268,25746375,5
+33933254,25746375,5
+71091934,25746375,4
+47679128,25746375,4
+85298627,25746375,5
+Young.forU,25746375,4
+feelzyl,25746375,5
+56660352,25746375,4
+sisilovechoco,25746375,2
+60162544,25746375,5
+86714653,25746375,5
+44730715,25746375,3
+84855467,25746375,4
+sss214,25746375,4
+hehejiu,25746375,4
+tomochang,25746375,3
+3428014,25746375,3
+61671045,25746375,5
+chesterchoi,25746375,3
+42144339,25746375,4
+xiaoxianwudi,25746375,4
+1730018,25746375,3
+51264470,25746375,2
+AuRevoir7,25746375,3
+57171140,25746375,3
+122066432,25746375,5
+2014851,25746375,5
+49139242,25746375,5
+65748381,25746375,-1
+44492341,25746375,3
+super110,25746375,3
+Tornatore,25746375,4
+XLFiona,25746375,3
+yuanyang1100,25746375,4
+2725757,25746375,4
+1929758,25746375,3
+2302405,25746375,4
+121816665,25746375,4
+31548307,25746375,2
+87069723,25746375,4
+Candy_Can,25746375,4
+25685225,25746375,4
+74021336,25746375,5
+Monster.,25746375,3
+amateur,25746375,4
+mihudexiaojing,25746375,3
+61543977,25746375,1
+3718848,25746375,1
+JLinn,25746375,4
+52807688,25746375,4
+34446319,25746375,4
+56688438,25746375,4
+53988086,25746375,2
+49258293,25746375,5
+haizizang5,25746375,4
+55767927,25746375,5
+Josephinehere,25746375,5
+liujinlin,25746375,3
+83704374,25746375,1
+51959545,25746375,3
+3518415,25746375,5
+duckdan,25746375,4
+42412497,25746375,5
+59109173,25746375,5
+4621746,25746375,4
+summeric,25746375,3
+1796714,25746375,5
+phoenixfannie,25746375,4
+4576801,25746375,3
+bukuweidouban,25746375,2
+tongkaishi,25746375,5
+59264164,25746375,3
+66892068,25746375,5
+heartrick,25746375,3
+guominhua,25746375,5
+53500297,25746375,4
+52583509,25746375,3
+77283735,25746375,3
+29536418,25746375,1
+2469434,25746375,3
+49853288,25746375,4
+89726078,25746375,4
+57335774,25746375,2
+49079570,25746375,2
+72277431,25746375,5
+80786335,25746375,5
+2178406,25746375,4
+sidnad,25746375,4
+4600752,25746375,4
+58031683,25746375,4
+55746390,25746375,4
+63785506,25746375,3
+freestill22,25746375,4
+54512951,25746375,5
+76737589,25746375,4
+48127682,25746375,5
+78585148,25746375,3
+2481956,25746375,5
+caiheda,25746375,4
+1166642,25746375,4
+127278998,25746375,4
+24263050,25746375,3
+121892686,25746375,5
+61461484,25746375,4
+7704445,25746375,4
+53392346,25746375,4
+61951790,25746375,4
+allenzn125,25746375,4
+lukai41douban,25746375,3
+67619742,25746375,3
+kangqingbo,25746375,4
+2561289,25746375,1
+67811189,25746375,3
+tinysean,25746375,4
+65810750,25746375,4
+44249721,25746375,4
+metkee,25746375,3
+yvonne9254,25746375,4
+2559623,25746375,5
+3501623,25746375,4
+24346292,25746375,3
+57011593,25746375,5
+47182866,25746375,4
+123854349,25746375,3
+Uvo,25746375,4
+ColinRebirth,25746375,3
+tomsnakewang,25746375,3
+1743694,25746375,4
+119157867,25746375,3
+53873820,25746375,5
+67640749,25746375,3
+49945629,25746375,3
+silence_smile,25746375,5
+3966394,25746375,4
+60788126,25746375,4
+130359713,25746375,4
+3044833,25746375,3
+zz5555,25746375,2
+35330593,25746375,3
+guobingyao728,25746375,4
+52826626,25746375,4
+68013076,25746375,5
+ColinZhang,25746375,4
+52075291,25746375,5
+91584041,25746375,4
+57605115,25746375,2
+63677986,25746375,4
+81301720,25746375,4
+51156601,25746375,5
+59802289,25746375,5
+63325454,25746375,4
+lunamoonriver,25746375,4
+serah,25746375,3
+44080659,25746375,5
+2687637,25746375,3
+emilyang428,25746375,4
+fenglimuren,25746375,3
+47807328,25746375,4
+philllin,25746375,2
+philllin,25746375,2
+70221431,25746375,5
+zoic,25746375,3
+74346817,25746375,3
+lisiben,25746375,5
+sophieyuxiuying,25746375,5
+89451365,25746375,4
+iceleehom,25746375,2
+jopees,25746375,5
+48599180,25746375,4
+cosmos-deu,25746375,4
+3405357,25746375,4
+4703013,25746375,-1
+66362055,25746375,5
+52129503,25746375,4
+37660069,25746375,3
+52922298,25746375,2
+feitongerxi,25746375,3
+14150564,25746375,4
+2646633,25746375,4
+ZouJiajing,25746375,3
+Cherie.,25746375,-1
+Lemonsir,25746375,3
+48751710,25746375,3
+xunzhi,25746375,1
+69611074,25746375,2
+2426009,25746375,3
+geminige,25746375,4
+nuannuangyy,25746375,3
+rgwmnzyq,25746375,1
+Hsummer,25746375,5
+25555778,25746375,3
+xiaohundexiaoba,25746375,4
+wangyou1989,25746375,3
+51759241,25746375,4
+111584714,25746375,2
+52996895,25746375,4
+bxg555,25746375,-1
+ShaRu,25746375,4
+1521152,25746375,4
+54533341,25746375,4
+61703830,25746375,3
+1493686,25746375,3
+63069817,25746375,3
+mrbye,25746375,1
+60475552,25746375,3
+seangao,25746375,2
+36883436,25746375,3
+2270098,25746375,3
+yufei707,25746375,4
+55919089,25746375,4
+Vincent-zhuzi,25746375,3
+88222232,25746375,4
+56328715,25746375,5
+killprince,25746375,5
+miracleq0614,25746375,4
+lynn6,25746375,3
+85180680,25746375,5
+pengxiaoyu,25746375,3
+Laylauu,25746375,5
+129743539,25746375,5
+yueveron,25746375,5
+57834233,25746375,4
+82137548,25746375,-1
+xixiaomomo,25746375,3
+ElleJ,25746375,4
+46421296,25746375,3
+33382680,25746375,-1
+3568201,25746375,5
+tangqy,25746375,5
+4651198,25746375,5
+freakfreakfreak,25746375,4
+55443753,25746375,4
+47837264,25746375,4
+119174493,25746375,5
+2488091,25746375,4
+50416874,25746375,5
+gelsey1992,25746375,4
+64254250,25746375,4
+64492617,25746375,4
+73496560,25746375,4
+46192988,25746375,3
+45475747,25746375,5
+seveness,25746375,3
+litianye,25746375,4
+3255193,25746375,4
+SILENT7,25746375,3
+4581200,25746375,3
+1170261,25746375,5
+wangzijin2738,25746375,4
+58544506,25746375,5
+78495229,25746375,5
+Eleesi,25746375,4
+catherinex217,25746375,3
+2544534,25746375,5
+2217071,25746375,3
+youeqian,25746375,4
+46499372,25746375,3
+swarovskii,25746375,3
+2380878,25746375,5
+61866321,25746375,3
+Hermetic,25746375,3
+48310124,25746375,5
+65974526,25746375,3
+115599238,25746375,4
+timbbm,25746375,2
+univercen,25746375,4
+33908385,25746375,4
+casper2fly,25746375,2
+pluto.s,25746375,4
+60767599,25746375,4
+shellycxl,25746375,3
+littlewings,25746375,5
+ppxihuanni,25746375,4
+28587995,25746375,4
+lostcindy,25746375,4
+76769321,25746375,4
+50153652,25746375,4
+45311427,25746375,4
+78760255,25746375,4
+36328705,25746375,4
+47436910,25746375,4
+44705986,25746375,4
+53742032,25746375,4
+67305392,25746375,3
+yinuokayi,25746375,4
+Zgf-95,25746375,5
+45697598,25746375,4
+47243761,25746375,5
+68916733,25746375,1
+115622817,25746375,4
+74892606,25746375,3
+miki_ai,25746375,3
+56775169,25746375,5
+tincnie,25746375,2
+laperseus,25746375,4
+55925233,25746375,2
+ryanwaiting,25746375,4
+59716419,25746375,5
+62511563,25746375,1
+cat_rs,25746375,3
+4291484,25746375,3
+luoyiyu,25746375,4
+wenteng1988,25746375,3
+muyunattitude,25746375,3
+104265782,25746375,4
+4706235,25746375,5
+26601106,25746375,2
+wanls,25746375,4
+cindy_ming,25746375,-1
+40510334,25746375,3
+XiaoxinSunny,25746375,5
+72102386,25746375,4
+120872335,25746375,4
+arvinsho,25746375,-1
+59019854,25746375,5
+33708910,25746375,4
+59140520,25746375,4
+sophie.sue,25746375,3
+55629625,25746375,2
+Chinajoke,25746375,4
+2859857,25746375,4
+wangjun1900,25746375,3
+miss_zoay,25746375,4
+walkingtime,25746375,4
+85057811,25746375,5
+74224240,25746375,4
+121569446,25746375,4
+yunqiu,25746375,2
+66613325,25746375,4
+59270375,25746375,1
+1189538,25746375,4
+122186312,25746375,5
+2265138,25746375,5
+evillions,25746375,4
+24543063,25746375,4
+Ronnie816,25746375,3
+75243231,25746375,4
+yanmoaizc,25746375,5
+winya229,25746375,4
+68742620,25746375,4
+zhouhaha,25746375,1
+75285126,25746375,3
+46797913,25746375,4
+ask4more,25746375,-1
+1849977,25746375,5
+dongcongcong,25746375,3
+likechuck,25746375,3
+14687237,25746375,4
+summer000000,25746375,3
+51266657,25746375,5
+edward4th,25746375,3
+82776171,25746375,5
+cindol,25746375,-1
+3764940,25746375,5
+zqdqzx,25746375,4
+4021496,25746375,4
+sm0king,25746375,4
+62178416,25746375,5
+75874484,25746375,4
+joysun,25746375,4
+xuci,25746375,3
+42785384,25746375,3
+67194113,25746375,3
+LeeMar,25746375,4
+51449484,25746375,4
+csaver,25746375,4
+2681017,25746375,3
+girliris,25746375,4
+66903176,25746375,3
+fifa10,25746375,4
+130755981,25746375,4
+66787474,25746375,4
+2262469,25746375,3
+5318547,25746375,1
+39095645,25746375,2
+1493055,25746375,3
+bootingman,25746375,5
+102369185,25746375,5
+reeves2014,25746375,4
+papalangji,25746375,3
+zion12345,25746375,3
+sunyuanke,25746375,4
+superstitious,25746375,3
+122212002,25746375,3
+121568939,25746375,3
+53498133,25746375,2
+zhuyuejun,25746375,4
+41651378,25746375,3
+2430432,25746375,4
+53933380,25746375,4
+83521053,25746375,4
+michelleorz,25746375,5
+129595269,25746375,3
+56299828,25746375,4
+54909533,25746375,3
+2202052,25746375,3
+2256093,25746375,-1
+12908578,25746375,5
+dulllennon,25746375,3
+58494684,25746375,3
+dms,25746375,3
+essementhol,25746375,3
+44203780,25746375,4
+1079289,25746375,3
+miaoxiaof,25746375,4
+69420876,25746375,4
+82011503,25746375,4
+jackxyc,25746375,4
+Aurly,25746375,5
+50003111,25746375,3
+50464203,25746375,3
+orangeabby,25746375,4
+lefter,25746375,3
+122192387,25746375,3
+dchaochao,25746375,4
+summercharon,25746375,4
+haidonsun,25746375,3
+70357022,25746375,4
+yexiaohao,25746375,3
+3111392,25746375,5
+87515685,25746375,5
+55656004,25746375,4
+wu.,25746375,5
+58605674,25746375,3
+57969840,25746375,3
+130770428,25746375,4
+cinne1,25746375,2
+57943031,25746375,5
+sentexiaohu,25746375,3
+45573967,25746375,4
+51476083,25746375,5
+54686261,25746375,4
+zhuangdikun,25746375,5
+minamy1227,25746375,3
+6314014,25746375,2
+68010226,25746375,4
+74258577,25746375,4
+veritymuma,25746375,4
+53781940,25746375,4
+4163899,25746375,5
+kissorli,25746375,3
+63977456,25746375,5
+51513711,25746375,3
+54938573,25746375,4
+3165431,25746375,3
+michaelkingdom,25746375,4
+fanlina,25746375,4
+3776067,25746375,4
+130526976,25746375,5
+63849840,25746375,5
+zmx447684192,25746375,3
+119673605,25746375,5
+44828590,25746375,4
+40536656,25746375,5
+mio1989,25746375,4
+81929410,25746375,4
+viviensong,25746375,4
+25481348,25746375,4
+smallhare,25746375,4
+Jennybaby,25746375,3
+jywpl,25746375,2
+82760754,25746375,3
+69855883,25746375,4
+yifei1110,25746375,5
+foxmuldery,25746375,5
+50566408,25746375,4
+52371666,25746375,3
+45072405,25746375,5
+63352248,25746375,4
+59907116,25746375,1
+a1234567,25746375,3
+yufangxue,25746375,5
+54783483,25746375,4
+4916602,25746375,5
+mangggggg,25746375,4
+34186094,25746375,2
+joko14,25746375,3
+106830425,25746375,3
+50748318,25746375,4
+kongyan15,25746375,4
+cynthiays,25746375,5
+52453989,25746375,4
+msghost,25746375,4
+2201495,25746375,4
+84340226,25746375,3
+yummy1710,25746375,4
+Ciarlo,25746375,2
+56215590,25746375,3
+36664715,25746375,4
+adiaye,25746375,4
+mitchi327,25746375,4
+leedany,25746375,3
+64211454,25746375,2
+50195035,25746375,4
+xiaopinshan,25746375,4
+yulingshenyue,25746375,4
+67618719,25746375,5
+liwei1806,25746375,4
+li_1314,25746375,5
+127624177,25746375,4
+grayfoxever,25746375,4
+43826661,25746375,4
+52247156,25746375,4
+jiangyipeng,25746375,4
+39255754,25746375,4
+marlborosin,25746375,2
+48828944,25746375,5
+58012896,25746375,3
+xueshanfeitu,25746375,5
+size,25746375,4
+FTDxiaowukong,25746375,5
+48523065,25746375,4
+hellruby,25746375,5
+MayaDey,25746375,3
+1412545,25746375,-1
+jingj,25746375,5
+40165312,25746375,4
+dancingwind,25746375,4
+40447604,25746375,3
+twinslt,25746375,3
+74202388,25746375,3
+59113427,25746375,3
+43474668,25746375,3
+nuannuanmo,25746375,4
+125801421,25746375,4
+30599363,25746375,3
+50749706,25746375,4
+58075856,25746375,3
+64069487,25746375,4
+koji,25746375,2
+linshiyi07,25746375,2
+4766836,25746375,4
+catduo,25746375,4
+teamme2,25746375,4
+34543870,25746375,4
+hjyjenny,25746375,3
+nidanhe,25746375,4
+68366606,25746375,3
+mengmengdong,25746375,5
+64947764,25746375,4
+37681863,25746375,4
+49604322,25746375,4
+masida,25746375,5
+forestwanglin,25746375,4
+sunwukong.326,25746375,4
+56103928,25746375,4
+myplacemyway,25746375,5
+49118645,25746375,4
+tangjiaqi,25746375,2
+50308243,25746375,5
+tongyc8844,25746375,4
+84884580,25746375,4
+51807191,25746375,5
+62456540,25746375,5
+53994106,25746375,5
+p2prmb,25746375,5
+jolinalbert,25746375,4
+49330983,25746375,5
+mymydemon,25746375,4
+suikame,25746375,4
+cymvip,25746375,5
+3575164,25746375,4
+antonia422,25746375,3
+wyong0501,25746375,3
+122073792,25746375,5
+47240557,25746375,4
+54131572,25746375,4
+jing0614,25746375,4
+129454783,25746375,4
+Ayouki,25746375,2
+65496075,25746375,3
+58273860,25746375,3
+4272147,25746375,3
+Uni_zz,25746375,3
+4310321,25746375,4
+doublemilk,25746375,3
+7605327,25746375,5
+49583852,25746375,4
+67808822,25746375,4
+76185877,25746375,4
+catheringli,25746375,4
+judybubu,25746375,3
+StandOnLifE,25746375,3
+120672970,25746375,5
+hobson_11,25746375,5
+zlpEcho,25746375,3
+rikyo,25746375,3
+37589516,25746375,3
+55660651,25746375,3
+zouzhiruo,25746375,5
+130271779,25746375,4
+xinxu,25746375,4
+Yinaly,25746375,4
+64067835,25746375,4
+37694449,25746375,4
+ccccccIty,25746375,4
+3551672,25746375,4
+mirrorling,25746375,4
+36253770,25746375,3
+36253770,25746375,3
+sophiee,25746375,4
+39565182,25746375,4
+50689721,25746375,5
+3904796,25746375,3
+foxzool,25746375,4
+shmily_yummy,25746375,2
+121723993,25746375,5
+2737013,25746375,3
+57998285,25746375,2
+23612143,25746375,3
+3978018,25746375,4
+73144387,25746375,4
+3265509,25746375,4
+64062517,25746375,4
+48746328,25746375,3
+44882588,25746375,4
+genuinesuz,25746375,4
+wangzhanhei,25746375,3
+45242330,25746375,3
+55644124,25746375,5
+114513399,25746375,1
+57132937,25746375,4
+jjwzgrmdx,25746375,4
+gbluki,25746375,4
+anqier1,25746375,1
+mcfeemiki,25746375,4
+scofieldx,25746375,4
+44574545,25746375,3
+63646607,25746375,3
+126821975,25746375,4
+79219004,25746375,3
+Yang-jiale,25746375,4
+sunflowermay,25746375,3
+121689080,25746375,3
+59677707,25746375,3
+52108070,25746375,4
+1436131,25746375,3
+69002441,25746375,5
+49151798,25746375,-1
+46424200,25746375,4
+67525836,25746375,5
+128416506,25746375,5
+sodaorchid,25746375,4
+88081334,25746375,3
+55606165,25746375,3
+Alvin0414,25746375,4
+yaoguai120,25746375,4
+48579853,25746375,5
+laozo,25746375,5
+inout,25746375,3
+52463415,25746375,3
+47166458,25746375,4
+54623477,25746375,3
+2243854,25746375,4
+foreverjc,25746375,3
+antebellum,25746375,3
+iysy,25746375,4
+59591573,25746375,4
+60818460,25746375,3
+127358334,25746375,4
+73667301,25746375,4
+4339556,25746375,4
+helloface,25746375,3
+formeswong,25746375,4
+wjscxx,25746375,4
+85075595,25746375,4
+jaywooh,25746375,2
+charmine913,25746375,3
+65369148,25746375,3
+zhenvstian,25746375,4
+chinacheng,25746375,4
+slcws,25746375,4
+fuyunyajie,25746375,3
+gxlengxue,25746375,5
+bronzeJ,25746375,5
+lening,25746375,4
+videe,25746375,4
+33399271,25746375,3
+sewer-d,25746375,3
+arale180,25746375,4
+NataliaZhao,25746375,4
+nowingcolorful,25746375,4
+4451578,25746375,-1
+xffighting,25746375,1
+74849633,25746375,4
+2917249,25746375,4
+36743264,25746375,5
+oatgnik,25746375,5
+104409838,25746375,4
+gaoxiaopang,25746375,4
+3634776,25746375,3
+joecycc,25746375,5
+angle223,25746375,4
+124653543,25746375,4
+wjww2128,25746375,4
+baconbacon,25746375,5
+goonerhuwenbo,25746375,4
+70849512,25746375,3
+huxiaotian,25746375,4
+kakayanzi,25746375,5
+rainbowwww,25746375,4
+Iamapoem,25746375,3
+66293542,25746375,5
+Yindaxian,25746375,2
+dirtylee,25746375,5
+58754814,25746375,3
+75058618,25746375,3
+wenbo2003,25746375,3
+58903847,25746375,5
+68741248,25746375,5
+superfatrich,25746375,4
+47682539,25746375,4
+82317477,25746375,5
+3605626,25746375,3
+45245030,25746375,3
+vincente,25746375,3
+84484396,25746375,3
+absinthejt,25746375,4
+coolwd,25746375,3
+3447252,25746375,3
+109045518,25746375,5
+128590126,25746375,4
+51204884,25746375,4
+2182012,25746375,5
+59310960,25746375,3
+winnylee,25746375,4
+52490954,25746375,3
+47325319,25746375,3
+4022323,25746375,5
+1308789,25746375,-1
+liwujiu,25746375,3
+ieff,25746375,4
+1478265,25746375,4
+dingding4g,25746375,5
+56866137,25746375,5
+44868728,25746375,4
+74896185,25746375,4
+precmomen,25746375,3
+ribi,25746375,3
+53259114,25746375,5
+51478709,25746375,3
+sdqz111,25746375,4
+phyliss,25746375,3
+queensmary,25746375,3
+45384664,25746375,3
+48116599,25746375,5
+37229624,25746375,4
+1601177,25746375,5
+88174577,25746375,4
+summercold,25746375,3
+boonup,25746375,4
+65692300,25746375,3
+44173062,25746375,3
+66322119,25746375,5
+tracyyuliang,25746375,4
+4640701,25746375,4
+lianliying,25746375,4
+maggiemars,25746375,4
+130119581,25746375,3
+weizaia,25746375,1
+57927830,25746375,5
+123642318,25746375,3
+65397009,25746375,5
+51571084,25746375,5
+51697863,25746375,5
+41571785,25746375,4
+3319103,25746375,3
+81774069,25746375,4
+50478757,25746375,4
+48857179,25746375,4
+47598972,25746375,4
+85113803,25746375,1
+70308238,25746375,3
+vera-cyw,25746375,4
+ltec,25746375,4
+SJzzy314,25746375,4
+46431247,25746375,3
+64092197,25746375,3
+screamers,25746375,5
+114670150,25746375,5
+58090967,25746375,5
+Isabella_Meow,25746375,4
+frontboy,25746375,5
+130280555,25746375,5
+52621026,25746375,5
+56676061,25746375,3
+yuk1uo,25746375,4
+Sophia_1989,25746375,3
+2699313,25746375,4
+71336529,25746375,3
+130689340,25746375,4
+uncleradar,25746375,1
+115376627,25746375,4
+3229037,25746375,3
+68504200,25746375,4
+47692471,25746375,4
+2883655,25746375,4
+4204545,25746375,3
+65784611,25746375,3
+46945318,25746375,5
+51330797,25746375,4
+2683471,25746375,4
+81773475,25746375,3
+fionachen520ma,25746375,2
+121822634,25746375,3
+57459962,25746375,5
+randervaart,25746375,4
+127766292,25746375,1
+littlehero,25746375,4
+58008481,25746375,4
+yxh0715,25746375,5
+24853995,25746375,4
+Chivar,25746375,4
+3182137,25746375,5
+1076820,25746375,1
+from_echo,25746375,3
+37450029,25746375,4
+70587570,25746375,3
+84261396,25746375,4
+am-gemini,25746375,4
+Gz_Gz,25746375,3
+73571891,25746375,4
+104056990,25746375,3
+48967001,25746375,5
+39370570,25746375,-1
+63671933,25746375,3
+71135421,25746375,3
+29837427,25746375,4
+59822585,25746375,5
+79486718,25746375,4
+63306444,25746375,1
+4244492,25746375,5
+4909186,25746375,3
+ginny_sc,25746375,4
+ibluepurple,25746375,1
+dyalan,25746375,2
+27927536,25746375,3
+janiris,25746375,3
+78447440,25746375,3
+2882725,25746375,2
+49196106,25746375,4
+14408491,25746375,4
+40447897,25746375,3
+36791649,25746375,4
+MAOXIAOCHENG,25746375,-1
+lp1028,25746375,4
+49854579,25746375,3
+1887825,25746375,3
+zendwen,25746375,4
+olive1984,25746375,4
+87909103,25746375,4
+47297112,25746375,4
+62917415,25746375,5
+48317558,25746375,5
+2016454,25746375,4
+willkwan,25746375,4
+nianwanger,25746375,4
+63236633,25746375,3
+tls,25746375,4
+1179798,25746375,4
+poochai,25746375,4
+74061622,25746375,3
+56314850,25746375,3
+68100167,25746375,5
+colorwindeer,25746375,3
+love-99,25746375,4
+68993451,25746375,3
+40097921,25746375,4
+49505829,25746375,4
+heyebei,25746375,2
+Benny_Fu,25746375,4
+johnnyshen90,25746375,4
+70341874,25746375,3
+45449329,25746375,3
+katichang,25746375,3
+reMadeInChina,25746375,5
+59065720,25746375,4
+gerenmovie,25746375,3
+hanwin216,25746375,4
+wakaka1986,25746375,3
+afa1021,25746375,3
+100135816,25746375,2
+48369193,25746375,5
+xiaoan7EF,25746375,-1
+55874346,25746375,4
+63668063,25746375,5
+XUYIHONG,25746375,3
+regain,25746375,3
+65873693,25746375,3
+moleeatwood,25746375,3
+57577112,25746375,4
+40616987,25746375,4
+40591271,25746375,5
+124454581,25746375,4
+xbl911,25746375,4
+45788241,25746375,-1
+79079794,25746375,3
+aaaaasun,25746375,4
+64522093,25746375,3
+55314641,25746375,5
+57829570,25746375,5
+48117474,25746375,5
+LilC,25746375,3
+luhui57674426,25746375,4
+104474314,25746375,4
+sxhour,25746375,4
+70027321,25746375,5
+70930410,25746375,4
+yklizheng123,25746375,5
+serene_sh,25746375,4
+127380400,25746375,4
+echovoice,25746375,3
+76960780,25746375,4
+willdawn,25746375,1
+79301447,25746375,5
+95937050,25746375,5
+spancercheng,25746375,3
+Iris1989,25746375,4
+yuanyuanfang,25746375,4
+beanchx,25746375,4
+119493650,25746375,3
+69127375,25746375,3
+tamamadesu,25746375,4
+2804944,25746375,3
+yishiyiwu,25746375,3
+127504000,25746375,3
+34255820,25746375,4
+wll1205,25746375,5
+50601199,25746375,5
+Capital-fall,25746375,3
+4692824,25746375,5
+mansona,25746375,-1
+70300622,25746375,4
+wooya,25746375,2
+3590275,25746375,1
+lizhenghome,25746375,5
+81517892,25746375,-1
+50101777,25746375,4
+67104840,25746375,3
+67104840,25746375,3
+wuxiaocao,25746375,3
+birdieeos,25746375,5
+3539441,25746375,5
+54897737,25746375,4
+67943452,25746375,4
+76999762,25746375,5
+65412989,25746375,5
+9352143,25746375,4
+MilkyWayH,25746375,3
+nuoweibai11,25746375,4
+45511772,25746375,4
+chuanhua1989,25746375,5
+ecoli88cry,25746375,4
+ybwm,25746375,5
+81540386,25746375,4
+2590120,25746375,3
+10960178,25746375,3
+93031665,25746375,4
+63544997,25746375,5
+Victor_D,25746375,4
+turbine,25746375,4
+126980247,25746375,4
+90141654,25746375,-1
+3789589,25746375,3
+DeiDWang,25746375,5
+53486111,25746375,5
+32314297,25746375,4
+55912143,25746375,5
+28917760,25746375,5
+dodo87,25746375,1
+44136800,25746375,4
+50451911,25746375,4
+zxl321,25746375,3
+127680038,25746375,4
+summer0323,25746375,3
+47127791,25746375,4
+standing_macdul,25746375,4
+aeoluslin,25746375,3
+czhl2215,25746375,3
+summer_waiting,25746375,5
+itsuki11,25746375,4
+lzannie823,25746375,4
+seventhworkshop,25746375,3
+66015452,25746375,3
+A_jYOU,25746375,-1
+imauve,25746375,4
+evita_lj,25746375,4
+baniujun,25746375,2
+Wsuansuan,25746375,3
+pushuoshuo,25746375,2
+51387212,25746375,5
+81757410,25746375,3
+55831735,25746375,4
+tomatoecho,25746375,4
+50848466,25746375,3
+50079024,25746375,3
+1295507,25746375,5
+lingling_in_sz,25746375,3
+60761601,25746375,4
+60761601,25746375,4
+1492653,25746375,5
+68162187,25746375,3
+4362013,25746375,4
+75015059,25746375,5
+evcololo,25746375,4
+123473233,25746375,3
+despina,25746375,3
+vikingforest,25746375,4
+erjimaidou,25746375,4
+45922244,25746375,4
+justbelieve,25746375,2
+74577151,25746375,4
+kally_allen,25746375,3
+boonie,25746375,4
+giantpanda,25746375,4
+Showga,25746375,5
+58283218,25746375,3
+demonawang,25746375,4
+joesoqs,25746375,5
+Forrestgary,25746375,3
+58636228,25746375,2
+1820379,25746375,4
+2071722,25746375,5
+favorite,25746375,4
+53134670,25746375,5
+47077151,25746375,3
+2572927,25746375,3
+ningning9164,25746375,-1
+58107870,25746375,3
+2307407,25746375,4
+2480830,25746375,3
+myvonne,25746375,5
+liulaoye,25746375,4
+73571191,25746375,3
+91480264,25746375,3
+3529621,25746375,5
+lilac921,25746375,3
+losed,25746375,3
+48002747,25746375,3
+9823994,25746375,4
+66339819,25746375,5
+Chenjingwang92,25746375,4
+53632507,25746375,4
+121411617,25746375,4
+60223940,25746375,4
+49594661,25746375,4
+yekui,25746375,5
+88274127,25746375,5
+52954426,25746375,4
+xianqiejiao,25746375,5
+Edvar,25746375,5
+Nibia,25746375,4
+joysu,25746375,4
+98547691,25746375,4
+A317,25746375,4
+41327989,25746375,4
+45436450,25746375,4
+1475172,25746375,3
+4712087,25746375,5
+ougree,25746375,4
+xiaoranlee,25746375,3
+71133496,25746375,4
+123049067,25746375,4
+19129723,25746375,4
+croath,25746375,4
+4878767,25746375,4
+gs21cn,25746375,5
+mynange,25746375,4
+70039420,25746375,5
+ameibush9799,25746375,4
+2517259,25746375,5
+yangjianmeiyang,25746375,3
+58077411,25746375,4
+abelleba,25746375,4
+55676658,25746375,5
+1335533,25746375,4
+parkchan,25746375,2
+76653168,25746375,5
+stewartsun,25746375,5
+48116369,25746375,4
+57230631,25746375,3
+42926256,25746375,3
+12034593,25746375,3
+cuuut,25746375,5
+dkjune,25746375,3
+107140803,25746375,5
+43991922,25746375,3
+39789528,25746375,3
+suri00,25746375,5
+4083554,25746375,3
+yihuiw,25746375,4
+3799907,25746375,4
+echosun921,25746375,5
+53908274,25746375,4
+71797507,25746375,5
+120828757,25746375,4
+52286623,25746375,3
+36563636,25746375,3
+minervayy,25746375,5
+adrienbrody,25746375,4
+71430335,25746375,3
+4690305,25746375,5
+mississluu,25746375,4
+86204468,25746375,4
+momokoochan,25746375,3
+1828101,25746375,3
+71325468,25746375,3
+2266961,25746375,1
+1385975,25746375,5
+mayday_paopao,25746375,2
+61830049,25746375,4
+51180631,25746375,3
+Sam-css,25746375,4
+30722315,25746375,5
+ohchara,25746375,4
+85122693,25746375,3
+sheenshuay,25746375,1
+46067513,25746375,2
+inearlysummer,25746375,4
+129255326,25746375,4
+ixiaoi,25746375,4
+8872886,25746375,3
+poemaroma,25746375,5
+42711469,25746375,4
+8460879,25746375,-1
+privateoo,25746375,3
+liero,25746375,5
+126715409,25746375,2
+46424655,25746375,3
+37521103,25746375,5
+56689572,25746375,4
+aben,25746375,4
+snowbusy,25746375,3
+Jonhanna,25746375,4
+48939653,25746375,5
+siniang,25746375,-1
+48658567,25746375,4
+zouzouwanwan,25746375,4
+58035376,25746375,-1
+strawman81,25746375,3
+51721466,25746375,2
+66137395,25746375,5
+43891940,25746375,3
+woonpen,25746375,1
+59170088,25746375,4
+2111465,25746375,5
+61901471,25746375,3
+119368897,25746375,3
+benben76,25746375,5
+33902664,25746375,5
+imagefly,25746375,2
+3597938,25746375,5
+nil4,25746375,5
+9091191,25746375,3
+rickeneyes,25746375,5
+57377674,25746375,4
+cecilynie,25746375,4
+54724200,25746375,4
+39795294,25746375,4
+39795294,25746375,4
+gudushamo,25746375,4
+51257333,25746375,3
+iear,25746375,4
+2290969,25746375,4
+northeastman,25746375,4
+58802831,25746375,4
+60276461,25746375,1
+28743113,25746375,4
+48258414,25746375,5
+gannizi,25746375,4
+49138497,25746375,5
+tzhou730,25746375,4
+yang7si,25746375,4
+53339899,25746375,3
+1078136,25746375,3
+38811434,25746375,3
+65514496,25746375,4
+128606975,25746375,4
+lyx974,25746375,3
+67387013,25746375,4
+51862785,25746375,5
+4284000,25746375,3
+1000086,25746375,4
+27926435,25746375,3
+77633290,25746375,3
+126804729,25746375,4
+zzllxiaoxiao,25746375,3
+66204869,25746375,5
+66803513,25746375,4
+58908611,25746375,4
+anboli,25746375,2
+58950825,25746375,3
+karif,25746375,5
+liuine,25746375,5
+48504589,25746375,3
+33490013,25746375,4
+74601834,25746375,4
+50450547,25746375,4
+gtjadg,25746375,5
+mumuximilik,25746375,4
+shawivy,25746375,4
+delaku,25746375,-1
+cat_water,25746375,4
+miku,25746375,4
+57626964,25746375,5
+zacklee,25746375,1
+44951032,25746375,4
+34766480,25746375,3
+28572987,25746375,5
+64041275,25746375,4
+4547499,25746375,3
+59281963,25746375,3
+xiaotuo,25746375,1
+marage,25746375,4
+ladypiao,25746375,4
+4199523,25746375,4
+97985591,25746375,1
+52244996,25746375,4
+68911927,25746375,5
+menmen90,25746375,5
+gamering,25746375,4
+130646245,25746375,2
+jiapp,25746375,4
+luanjunyi,25746375,4
+haizeihuahua,25746375,4
+3465717,25746375,3
+83662787,25746375,5
+Exiaofei,25746375,4
+deepurple,25746375,3
+klcklc,25746375,1
+64768670,25746375,3
+tsj116917,25746375,4
+28884615,25746375,2
+demi1949,25746375,4
+51799436,25746375,4
+45182883,25746375,4
+55712357,25746375,5
+34096463,25746375,3
+51704621,25746375,4
+46706719,25746375,3
+122675776,25746375,5
+Rebecca0122,25746375,3
+74551006,25746375,4
+41801093,25746375,4
+71108776,25746375,2
+Hedda,25746375,5
+dongguayin,25746375,5
+39519519,25746375,3
+guangbudu,25746375,4
+40843838,25746375,4
+42442394,25746375,4
+66719799,25746375,5
+53006324,25746375,4
+64226724,25746375,3
+kidadida,25746375,4
+qian828,25746375,3
+47465476,25746375,4
+60941714,25746375,4
+wuyayaya,25746375,2
+zhouzixun,25746375,5
+wqmeoe,25746375,3
+60308192,25746375,4
+60311898,25746375,3
+49876674,25746375,4
+69441778,25746375,5
+sandlee1986,25746375,4
+missfaye,25746375,3
+adaylanie,25746375,2
+48905282,25746375,4
+125182895,25746375,4
+54170171,25746375,4
+62475521,25746375,2
+Medusa_fc,25746375,1
+46292175,25746375,5
+mexicanredknee,25746375,4
+Artillerys,25746375,4
+67664797,25746375,4
+49272831,25746375,2
+58399043,25746375,4
+112314303,25746375,4
+flyingdove,25746375,4
+2218484,25746375,2
+loriwithme,25746375,4
+122844148,25746375,1
+mylucky1010,25746375,3
+63945238,25746375,5
+hellomybluelife,25746375,3
+125149507,25746375,4
+braquentin,25746375,2
+sqd080,25746375,4
+lolitahanhan,25746375,3
+dosky,25746375,4
+bernadettttttte,25746375,3
+57085478,25746375,2
+dmLaura,25746375,4
+64883992,25746375,4
+Kagula,25746375,3
+50339842,25746375,4
+cijunbutileng,25746375,4
+4353393,25746375,3
+58462202,25746375,3
+lovefaith,25746375,5
+34569018,25746375,4
+yangmianyang,25746375,4
+53669377,25746375,4
+56498451,25746375,4
+3403979,25746375,3
+JoyYoung,25746375,3
+87047606,25746375,3
+79856367,25746375,4
+kg820,25746375,5
+42292941,25746375,3
+clh7,25746375,2
+sunbiyu,25746375,5
+littlemen,25746375,5
+50880780,25746375,3
+suki1003,25746375,4
+48188623,25746375,4
+1585106,25746375,3
+sunalsorise,25746375,-1
+52978814,25746375,4
+kaka-inzaghi,25746375,4
+73118410,25746375,5
+yoky,25746375,3
+65947697,25746375,4
+52959427,25746375,2
+76042398,25746375,5
+40104674,25746375,3
+9823482,25746375,5
+82152426,25746375,-1
+hedmgh,25746375,4
+jimuwawa,25746375,4
+40401643,25746375,3
+68363266,25746375,5
+51310444,25746375,5
+129582003,25746375,2
+69680398,25746375,4
+62048062,25746375,4
+littlehorse,25746375,4
+littlehorse,25746375,4
+2783681,25746375,3
+qiqixin,25746375,4
+dreamer629,25746375,4
+120990499,25746375,5
+44967228,25746375,3
+peashooter,25746375,5
+36239717,25746375,3
+muchacha,25746375,4
+46658511,25746375,3
+62332371,25746375,3
+augusttt,25746375,3
+zhuqingdaren,25746375,4
+62478858,25746375,4
+67235309,25746375,4
+renxiaoheng,25746375,3
+102429029,25746375,5
+41604678,25746375,4
+Chris_Martin,25746375,3
+nangongmocheng,25746375,4
+67011634,25746375,4
+1905986,25746375,5
+adayinthelife,25746375,3
+AmberArch,25746375,4
+crystalnian,25746375,4
+minmin0801ahoah,25746375,2
+25968212,25746375,4
+47144920,25746375,3
+55942870,25746375,4
+jcpanda,25746375,3
+levone,25746375,5
+spiritvision,25746375,4
+HEYHo,25746375,3
+3717792,25746375,5
+qiaoliangyu,25746375,4
+52607696,25746375,4
+georgebobochina,25746375,1
+48682653,25746375,3
+unbounder,25746375,3
+ziv_yll,25746375,3
+71808498,25746375,3
+db_time,25746375,4
+53367527,25746375,3
+68186008,25746375,4
+55501438,25746375,2
+56392889,25746375,3
+40572113,25746375,4
+88266093,25746375,1
+3841030,25746375,4
+120296136,25746375,3
+pucca999,25746375,4
+85112816,25746375,3
+56228022,25746375,2
+4363649,25746375,3
+35937463,25746375,3
+44714353,25746375,-1
+58068960,25746375,4
+foleyfan,25746375,5
+kay_oo7,25746375,5
+25958436,25746375,5
+12300787,25746375,4
+jofanie,25746375,4
+mumu5300,25746375,4
+3192663,25746375,3
+80719948,25746375,4
+63730928,25746375,3
+107415902,25746375,5
+74844430,25746375,4
+raye.b,25746375,3
+79506720,25746375,4
+lili9790,25746375,4
+65940007,25746375,4
+3548787,25746375,2
+87655848,25746375,4
+2183610,25746375,2
+3873893,25746375,5
+Lke_Feng,25746375,5
+67976109,25746375,4
+datoushen,25746375,1
+dingpu,25746375,3
+79037298,25746375,2
+130704537,25746375,4
+iconsume,25746375,4
+3065154,25746375,5
+celia550,25746375,4
+88096302,25746375,5
+72279635,25746375,4
+59784439,25746375,2
+Lkongming,25746375,3
+48398238,25746375,4
+125151033,25746375,4
+minza,25746375,4
+59005410,25746375,4
+eastge,25746375,4
+gigiego,25746375,5
+30637928,25746375,5
+99329704,25746375,4
+76299602,25746375,4
+65806272,25746375,3
+sunxujjack,25746375,3
+shio713,25746375,4
+121993907,25746375,4
+Swindler,25746375,1
+1437680,25746375,5
+asfishinwater,25746375,5
+SummerChen,25746375,3
+55373656,25746375,3
+51132496,25746375,4
+3539800,25746375,4
+jenniferxiao,25746375,5
+60027617,25746375,4
+68708140,25746375,3
+autumnalequinox,25746375,4
+57906754,25746375,4
+54827422,25746375,3
+43828485,25746375,4
+54096060,25746375,4
+58258651,25746375,3
+joycebigtime,25746375,3
+christopherlin,25746375,3
+bozzi,25746375,4
+34901213,25746375,3
+56328149,25746375,3
+2416826,25746375,4
+60506014,25746375,4
+2118507,25746375,3
+88779522,25746375,5
+129106127,25746375,2
+labikyo,25746375,5
+kkguagangqin,25746375,3
+taronie,25746375,2
+zuolun2046,25746375,4
+izzytse,25746375,2
+28628487,25746375,1
+75659998,25746375,4
+derivatives,25746375,1
+39298188,25746375,4
+3729384,25746375,4
+sharon.jin,25746375,4
+wangdoudou20,25746375,2
+68855550,25746375,2
+Alan59,25746375,5
+d_minor,25746375,4
+liligin,25746375,5
+63896361,25746375,3
+63391208,25746375,3
+89163665,25746375,3
+1748846,25746375,3
+69529988,25746375,1
+50329136,25746375,3
+star2s,25746375,5
+50775749,25746375,4
+70333895,25746375,4
+62069415,25746375,4
+zpavel,25746375,5
+106171897,25746375,3
+4570731,25746375,1
+ideyes,25746375,3
+76550501,25746375,4
+suh5213,25746375,3
+69133093,25746375,4
+51199402,25746375,3
+36627775,25746375,-1
+linkk,25746375,5
+2340314,25746375,4
+46430154,25746375,5
+Cancer_x,25746375,4
+63666748,25746375,3
+50477939,25746375,4
+idealtemple,25746375,3
+65911054,25746375,4
+72781461,25746375,4
+buxiebujie,25746375,4
+53583275,25746375,3
+AmySpecial,25746375,4
+52071601,25746375,3
+49670470,25746375,4
+naiveal,25746375,4
+hongdoushanuomi,25746375,3
+4468522,25746375,4
+dreamchris,25746375,4
+101945887,25746375,5
+92809978,25746375,3
+discon,25746375,2
+carlalee,25746375,5
+wxstar,25746375,5
+69311501,25746375,4
+81712287,25746375,3
+vicking,25746375,3
+58596058,25746375,4
+3783132,25746375,4
+reneesnow,25746375,3
+s1975,25746375,4
+2119730,25746375,1
+56096097,25746375,5
+47904693,25746375,4
+amandaccforever,25746375,5
+64595511,25746375,4
+3342036,25746375,4
+hanshuang,25746375,2
+70241348,25746375,5
+92673816,25746375,4
+MikaZhu,25746375,4
+80768830,25746375,4
+41502488,25746375,5
+rienge,25746375,4
+75828184,25746375,-1
+tadashi,25746375,5
+3180846,25746375,4
+35942398,25746375,4
+macroideal,25746375,4
+baishibaihu,25746375,5
+53654434,25746375,4
+3502559,25746375,4
+17210436,25746375,4
+mowanhuai,25746375,4
+duoerjiayou,25746375,5
+angelclaudia,25746375,4
+68738752,25746375,4
+mylittlefour,25746375,4
+mylittlefour,25746375,4
+114741657,25746375,4
+28677254,25746375,4
+130696206,25746375,5
+121720779,25746375,3
+soulchang,25746375,4
+73067284,25746375,3
+devillzhang,25746375,4
+70294038,25746375,4
+Boyxiaowen,25746375,4
+3478406,25746375,4
+jixianlin,25746375,4
+ken84,25746375,1
+86133055,25746375,5
+51263608,25746375,5
+45697233,25746375,5
+pussyman,25746375,3
+2717959,25746375,4
+maryoasis,25746375,2
+47165433,25746375,4
+34557052,25746375,4
+50213452,25746375,2
+96875707,25746375,5
+Jobszhuisui9,25746375,5
+58840542,25746375,3
+46843344,25746375,4
+61469153,25746375,2
+57058120,25746375,5
+longya,25746375,4
+hugolee,25746375,3
+cachecache,25746375,5
+johnmcclane,25746375,5
+46992157,25746375,4
+59450940,25746375,4
+kite2002,25746375,-1
+raehide,25746375,4
+68811807,25746375,3
+70650261,25746375,4
+124117539,25746375,4
+66128252,25746375,4
+27277879,25746375,5
+momopeach,25746375,4
+adamhu,25746375,4
+31068073,25746375,5
+crystalpansong,25746375,4
+greendaythelawn,25746375,4
+12764291,25746375,3
+woshitantan,25746375,4
+2946021,25746375,5
+69795982,25746375,4
+chinesean,25746375,4
+58037454,25746375,3
+91940704,25746375,1
+hlrt99,25746375,5
+56834550,25746375,4
+129549176,25746375,3
+youyeyi,25746375,5
+Chohin,25746375,3
+juneyrain,25746375,4
+imlyc,25746375,2
+52852194,25746375,5
+wangxingq,25746375,4
+aylia,25746375,4
+4706725,25746375,-1
+ddumplling,25746375,4
+44436573,25746375,3
+1778043,25746375,4
+127450235,25746375,-1
+4909767,25746375,4
+sillylily6002,25746375,4
+62394357,25746375,4
+daisyparadise,25746375,4
+apupuo,25746375,1
+70363758,25746375,4
+36507254,25746375,3
+52529736,25746375,3
+caligula114,25746375,4
+130020039,25746375,4
+34011772,25746375,4
+47764024,25746375,4
+liujing214,25746375,2
+allthesame,25746375,4
+48841040,25746375,3
+121188347,25746375,1
+58389742,25746375,3
+114381106,25746375,4
+31873785,25746375,5
+2772825,25746375,4
+jerrylou,25746375,3
+3951378,25746375,4
+lullaby_ly,25746375,5
+74418627,25746375,4
+playgame,25746375,4
+fjwjune,25746375,4
+82910448,25746375,5
+xxxdorisxxx,25746375,2
+43603952,25746375,3
+32541723,25746375,4
+1569518,25746375,3
+felinoshuffle,25746375,4
+19708790,25746375,3
+xiekaiwait,25746375,4
+coco475511,25746375,3
+1236338,25746375,4
+KeithMoon,25746375,4
+80754766,25746375,4
+susanlovefrance,25746375,1
+52078136,25746375,3
+jadyx,25746375,2
+68260249,25746375,3
+yvette820,25746375,3
+76818492,25746375,4
+50910686,25746375,4
+C-Plus,25746375,3
+49497625,25746375,5
+tracy4125,25746375,3
+94392173,25746375,2
+55817697,25746375,3
+50313990,25746375,3
+75848919,25746375,3
+44355344,25746375,5
+charmingR,25746375,5
+ritalu,25746375,5
+jimmykuk,25746375,5
+3510245,25746375,3
+weizheren,25746375,3
+59909082,25746375,1
+heavycoldteahou,25746375,5
+119412148,25746375,5
+1115324,25746375,4
+42797250,25746375,4
+65266454,25746375,1
+79699046,25746375,3
+yypudding,25746375,2
+97350616,25746375,4
+60827436,25746375,4
+58870605,25746375,4
+3494501,25746375,5
+summertt422,25746375,4
+125773849,25746375,3
+sanhao_love,25746375,4
+sue04,25746375,5
+autumnday916,25746375,4
+47159605,25746375,4
+121481602,25746375,4
+58544664,25746375,5
+2254252,25746375,-1
+92147297,25746375,4
+1019579,25746375,3
+ydna,25746375,4
+whisper,25746375,-1
+wuxuqu,25746375,4
+yaozi0426,25746375,4
+47280771,25746375,4
+jj2332,25746375,2
+msuper,25746375,4
+38515582,25746375,3
+2776724,25746375,-1
+57882904,25746375,3
+2664010,25746375,3
+2439609,25746375,5
+30742511,25746375,4
+76667923,25746375,1
+4267389,25746375,4
+40254571,25746375,4
+46087148,25746375,5
+50139044,25746375,3
+norlesamourai,25746375,-1
+cherry-yyq,25746375,3
+4500680,25746375,1
+bookbug,25746375,4
+jiansforever,25746375,3
+124091634,25746375,3
+124668726,25746375,4
+hujiajie1019,25746375,4
+99251376,25746375,4
+PsychoMissSo,25746375,4
+apple_jody,25746375,4
+4873070,25746375,3
+40688720,25746375,4
+4606993,25746375,5
+98649579,25746375,4
+sixfingers,25746375,4
+4006554,25746375,4
+neverevenever,25746375,5
+lovekym,25746375,5
+jxncm,25746375,4
+lanetheking,25746375,4
+olivia_lee,25746375,5
+sophie1900,25746375,3
+62119610,25746375,5
+48937810,25746375,4
+sunshinean2000,25746375,4
+47838456,25746375,3
+u2bb,25746375,3
+LIUYUANZI,25746375,3
+119319069,25746375,3
+xiaoxingboy,25746375,5
+zakime,25746375,4
+49283723,25746375,4
+xxtd,25746375,5
+zhaoqingyue,25746375,3
+fanxk1014,25746375,3
+42794486,25746375,4
+fatenaught,25746375,3
+Ryanzeng,25746375,2
+laurencelee,25746375,3
+4327266,25746375,4
+55937351,25746375,2
+50754744,25746375,5
+2950551,25746375,4
+52709919,25746375,3
+A-SU,25746375,1
+yinghefan,25746375,4
+48493733,25746375,4
+seamouse,25746375,3
+65309880,25746375,2
+mkbl,25746375,3
+54035267,25746375,4
+alohaceci,25746375,4
+107094530,25746375,5
+63822026,25746375,4
+ray1011,25746375,4
+xsbbbb,25746375,4
+77207422,25746375,3
+title,25746375,5
+terrysteven,25746375,3
+4016863,25746375,1
+66902287,25746375,5
+nining,25746375,5
+mercury0302,25746375,3
+4466802,25746375,4
+113327866,25746375,4
+joyanlie,25746375,4
+signal,25746375,5
+5612926,25746375,3
+bonnieswt,25746375,4
+Guardianangel,25746375,3
+49693965,25746375,4
+charo,25746375,4
+61621650,25746375,4
+pangzimiao,25746375,4
+lqj1,25746375,4
+51941920,25746375,3
+cranberry711,25746375,4
+iamwhatiam,25746375,4
+kk_22,25746375,4
+89528523,25746375,5
+26166685,25746375,5
+airyafreet,25746375,5
+69394485,25746375,5
+2658903,25746375,5
+104060863,25746375,3
+41786270,25746375,5
+ILWTFT,25746375,-1
+3170513,25746375,3
+leonyounger,25746375,4
+124205329,25746375,5
+120267137,25746375,4
+bzking,25746375,5
+tomhu,25746375,3
+93203680,25746375,4
+Basten,25746375,2
+Gejiansheng,25746375,5
+jiubadaoxiahun,25746375,4
+56326446,25746375,4
+3273386,25746375,3
+44854145,25746375,3
+58020700,25746375,4
+55643387,25746375,3
+superMmm,25746375,3
+FORYUKI,25746375,3
+45648190,25746375,5
+122263759,25746375,5
+67225686,25746375,3
+45315390,25746375,5
+jiayidevil,25746375,5
+43677938,25746375,4
+58096445,25746375,3
+82582719,25746375,4
+60432635,25746375,3
+59024604,25746375,5
+vicW,25746375,3
+127685396,25746375,5
+goodbyelenin,25746375,3
+73421771,25746375,3
+1864146,25746375,4
+2472751,25746375,4
+dodo729,25746375,4
+74913423,25746375,5
+88371415,25746375,4
+49957499,25746375,5
+rafael_j,25746375,3
+greychan,25746375,5
+51401098,25746375,3
+2517607,25746375,4
+pplife,25746375,4
+hankluo,25746375,4
+taylor_fu,25746375,4
+4408867,25746375,4
+baoguoyueguang,25746375,4
+Ancore,25746375,4
+badblueeyes,25746375,4
+61132884,25746375,4
+PeopleWeekly,25746375,5
+scorndefeat,25746375,4
+coto,25746375,2
+46742218,25746375,1
+4186070,25746375,4
+48435609,25746375,5
+108496496,25746375,4
+3922229,25746375,4
+51942274,25746375,3
+4614727,25746375,5
+Nothing_Mew,25746375,5
+82990219,25746375,4
+40691351,25746375,4
+52100331,25746375,5
+lly950412,25746375,3
+37169384,25746375,5
+Renascen,25746375,5
+78966790,25746375,5
+3820356,25746375,3
+51775024,25746375,4
+48746387,25746375,4
+xxxcici123,25746375,3
+xyhen,25746375,4
+50767890,25746375,4
+39743124,25746375,4
+3958061,25746375,4
+yelanlan,25746375,5
+81848540,25746375,4
+mangomangotree,25746375,3
+57775883,25746375,4
+31425726,25746375,5
+xly7788,25746375,3
+14583847,25746375,4
+phoebe211,25746375,4
+iris1031,25746375,3
+61992166,25746375,5
+DVforever,25746375,3
+60139322,25746375,5
+dominique2011,25746375,3
+izaijin,25746375,3
+88425798,25746375,3
+43671403,25746375,3
+taorong,25746375,5
+89076924,25746375,5
+luerdelphic,25746375,5
+missing7V,25746375,4
+88844052,25746375,3
+53729800,25746375,5
+58131642,25746375,4
+73757749,25746375,5
+befreelancer,25746375,5
+xiaobao121,25746375,5
+3022833,25746375,5
+55872961,25746375,5
+toddzhou,25746375,4
+jasminum-sambac,25746375,1
+yingtaozi07,25746375,4
+25491726,25746375,5
+65061479,25746375,3
+bamboo0214,25746375,4
+79559265,25746375,3
+120427833,25746375,1
+47512664,25746375,4
+63105886,25746375,3
+55619623,25746375,5
+50900048,25746375,2
+manuela,25746375,5
+81359953,25746375,-1
+Catherine_ne,25746375,3
+3619895,25746375,5
+3906584,25746375,4
+yeyinger,25746375,4
+1721938,25746375,3
+1377546,25746375,5
+luoweiliangchen,25746375,3
+64163569,25746375,5
+53668796,25746375,5
+35631200,25746375,4
+RivenZhong,25746375,3
+woniumm,25746375,4
+54505273,25746375,3
+122994591,25746375,3
+78710315,25746375,5
+46920813,25746375,4
+yyuan9372,25746375,3
+81409226,25746375,5
+94563993,25746375,4
+49543853,25746375,3
+49789259,25746375,4
+68599558,25746375,3
+60156625,25746375,5
+62117986,25746375,4
+49882814,25746375,5
+im-zhuang,25746375,-1
+64023928,25746375,4
+49298107,25746375,1
+zhengchengcheng,25746375,4
+35734348,25746375,5
+45896757,25746375,4
+simpleway,25746375,5
+masterbuyuan,25746375,5
+lingfriendly,25746375,4
+48047560,25746375,4
+darlingtudai,25746375,3
+MonteVita,25746375,-1
+1427052,25746375,4
+azuremoon0118,25746375,-1
+75812054,25746375,5
+103189636,25746375,2
+128390764,25746375,4
+2144848,25746375,3
+47471992,25746375,4
+130146016,25746375,4
+67727072,25746375,5
+69094998,25746375,3
+fayed,25746375,4
+Deicide,25746375,4
+52995380,25746375,5
+27627449,25746375,4
+36641683,25746375,5
+isolated,25746375,3
+Exaiy,25746375,4
+48716928,25746375,3
+130497320,25746375,5
+xiaozhangshi,25746375,4
+42961895,25746375,3
+103269832,25746375,5
+TanLoveU,25746375,4
+126685684,25746375,5
+xuemengfei,25746375,5
+Dasiycat,25746375,4
+35969279,25746375,2
+Sunset-Wario,25746375,5
+46266851,25746375,4
+Pledge,25746375,3
+glax,25746375,4
+Creep_,25746375,3
+liuziyu0426,25746375,5
+52777499,25746375,4
+36341358,25746375,4
+37914560,25746375,4
+121720805,25746375,5
+imyoyo1116,25746375,3
+xiayifeng412,25746375,3
+suvein,25746375,-1
+seabisuit,25746375,4
+angemon,25746375,5
+88439681,25746375,2
+mangolu,25746375,5
+46865782,25746375,3
+48525620,25746375,3
+53665608,25746375,5
+27502595,25746375,5
+msdivian,25746375,-1
+3846319,25746375,3
+maerta,25746375,3
+AuTa520,25746375,4
+37228673,25746375,5
+stevenzha,25746375,1
+63343874,25746375,4
+129353415,25746375,1
+eddychaw,25746375,5
+61014893,25746375,2
+haixiaoyang,25746375,4
+94441801,25746375,5
+fuxiu,25746375,3
+65732402,25746375,5
+momola,25746375,4
+53854833,25746375,3
+62947924,25746375,5
+dekaixu,25746375,2
+renjiananhuo,25746375,4
+60200003,25746375,4
+59621398,25746375,4
+54818133,25746375,-1
+dokuso,25746375,5
+24874842,25746375,4
+35438845,25746375,5
+AveryShen,25746375,3
+26475045,25746375,5
+77117895,25746375,3
+Lotosschnee,25746375,3
+cuppa,25746375,4
+3446950,25746375,4
+skyiris-kinoko,25746375,5
+waitingsong,25746375,5
+78387852,25746375,3
+24559088,25746375,4
+1968389,25746375,5
+68174124,25746375,4
+66858542,25746375,4
+57084612,25746375,3
+84394974,25746375,3
+58391749,25746375,4
+43134221,25746375,1
+64136344,25746375,4
+74237278,25746375,3
+56941343,25746375,4
+75007342,25746375,4
+40661171,25746375,3
+mynigel,25746375,2
+76304167,25746375,3
+wsy0309,25746375,3
+tiamat,25746375,4
+4075540,25746375,4
+4841197,25746375,3
+44025713,25746375,4
+43211886,25746375,4
+zhong13211,25746375,4
+casablanca0912,25746375,4
+14692856,25746375,3
+50183039,25746375,5
+49922437,25746375,5
+sfroompp,25746375,5
+18045809,25746375,2
+118096038,25746375,2
+33436258,25746375,3
+66932091,25746375,4
+59740753,25746375,4
+56948718,25746375,3
+doublelovediguo,25746375,4
+53096522,25746375,5
+46984307,25746375,4
+47172637,25746375,4
+79853058,25746375,4
+yaohooo,25746375,2
+56164157,25746375,5
+120117514,25746375,3
+103045657,25746375,4
+34269148,25746375,4
+2986985,25746375,5
+douxiaokou,25746375,3
+GreenySoul,25746375,4
+115504725,25746375,4
+Binnie_Allen,25746375,3
+sjk,25746375,4
+29428562,25746375,4
+40241805,25746375,4
+102368955,25746375,3
+bluegatecrossin,25746375,4
+fenglianjun,25746375,3
+4287011,25746375,3
+71859163,25746375,4
+129967972,25746375,-1
+laipigui,25746375,4
+53677228,25746375,3
+iimozart,25746375,4
+130642973,25746375,5
+37615847,25746375,4
+64926044,25746375,4
+65973438,25746375,5
+57224984,25746375,4
+69682298,25746375,3
+127071890,25746375,3
+46697374,25746375,3
+Isipatana,25746375,4
+43671696,25746375,4
+4313535,25746375,3
+kakaloveu,25746375,4
+65444726,25746375,5
+57274544,25746375,2
+xiao33319,25746375,4
+1364576,25746375,3
+c2c3,25746375,4
+54823776,25746375,3
+twitodd,25746375,4
+qyl7924,25746375,1
+yingbupu,25746375,4
+34459109,25746375,3
+46337332,25746375,4
+48224282,25746375,4
+buleddoll,25746375,3
+lcghere,25746375,4
+3815024,25746375,-1
+lizzy2005,25746375,4
+1341261,25746375,5
+47088428,25746375,5
+clever_trick,25746375,3
+2488600,25746375,-1
+38624462,25746375,5
+63873621,25746375,3
+duanzizai,25746375,3
+51377009,25746375,2
+113752134,25746375,3
+28876488,25746375,4
+DomEw,25746375,3
+single_meow,25746375,4
+50081676,25746375,4
+28808683,25746375,3
+112098382,25746375,4
+STT810,25746375,4
+83571302,25746375,2
+112862078,25746375,5
+65283286,25746375,4
+seeyou--,25746375,4
+woshixiaoqi,25746375,4
+Zhpher,25746375,4
+62296200,25746375,5
+130040784,25746375,4
+123553512,25746375,5
+49872790,25746375,4
+62756843,25746375,5
+zhtianyu,25746375,5
+zyjj141,25746375,3
+126894330,25746375,5
+4359954,25746375,2
+87885475,25746375,2
+42709375,25746375,4
+49052219,25746375,4
+130650007,25746375,4
+95769207,25746375,5
+72023919,25746375,5
+frankfankai,25746375,4
+115772568,25746375,3
+114082783,25746375,4
+vista1990,25746375,3
+1496396,25746375,4
+zero520,25746375,4
+zasuny,25746375,3
+qianricao,25746375,4
+27517816,25746375,4
+52893219,25746375,3
+128370030,25746375,5
+91239382,25746375,2
+4255750,25746375,3
+57233366,25746375,5
+63643182,25746375,3
+4589772,25746375,4
+mint4tops,25746375,4
+Vivian77,25746375,4
+snowintheheaven,25746375,4
+84564093,25746375,3
+63153392,25746375,5
+47279331,25746375,3
+61509749,25746375,4
+gaishixiaogui,25746375,4
+gaishixiaogui,25746375,4
+64898125,25746375,4
+77452056,25746375,5
+giochen,25746375,4
+51749255,25746375,5
+48773692,25746375,4
+kumasan,25746375,-1
+18974924,25746375,4
+huan19494114,25746375,2
+Ferloco,25746375,3
+31310592,25746375,4
+1468570,25746375,4
+IHUGEjae,25746375,3
+2189023,25746375,4
+4160191,25746375,3
+52116951,25746375,3
+a_marantine,25746375,3
+duduxiongzhifu,25746375,4
+59691717,25746375,3
+42987621,25746375,5
+4194244,25746375,4
+65979615,25746375,4
+43335184,25746375,3
+tjz230,25746375,5
+56857225,25746375,-1
+49232578,25746375,3
+zyzyzythl,25746375,4
+93893593,25746375,4
+80319590,25746375,4
+60699753,25746375,3
+44356920,25746375,4
+85986688,25746375,3
+leileisunshine,25746375,4
+53289993,25746375,3
+xuekesheng,25746375,4
+70569612,25746375,-1
+PP_wei,25746375,3
+57931932,25746375,4
+76777443,25746375,1
+49872247,25746375,5
+mikeodj,25746375,3
+xdcheung,25746375,5
+46897570,25746375,3
+solomon_da,25746375,4
+82689458,25746375,2
+qi-shao-shang,25746375,3
+36784618,25746375,3
+78056349,25746375,5
+bai233,25746375,5
+s22f,25746375,3
+130564137,25746375,4
+78955356,25746375,4
+115118627,25746375,3
+41767360,25746375,4
+hongzhouche,25746375,5
+govgouviiiiiiii,25746375,3
+yunduan6,25746375,5
+sheepoy,25746375,4
+lishidai93,25746375,3
+SuperViking,25746375,4
+64199614,25746375,3
+2174521,25746375,4
+4582224,25746375,4
+35228199,25746375,5
+xuyimeng,25746375,4
+63423532,25746375,3
+qqqing,25746375,4
+69422415,25746375,3
+1605613,25746375,3
+31649808,25746375,5
+megzhu,25746375,5
+80792973,25746375,4
+81061970,25746375,5
+4203960,25746375,3
+52247452,25746375,5
+daisyyatou,25746375,5
+novasu,25746375,3
+47787346,25746375,4
+xiaomaolaile,25746375,5
+hudieyy89,25746375,4
+38897761,25746375,3
+50415311,25746375,3
+rubychen0611,25746375,5
+71421150,25746375,3
+3346015,25746375,2
+3114698,25746375,4
+1865210,25746375,4
+coolsin,25746375,5
+58061081,25746375,3
+chrisyx,25746375,3
+ycy19870313,25746375,2
+54479962,25746375,3
+2922610,25746375,3
+zaywb,25746375,3
+fallinlovexu,25746375,3
+Arabian_mu,25746375,2
+jjjjffff,25746375,4
+26605757,25746375,5
+64780091,25746375,2
+64105461,25746375,3
+58270299,25746375,4
+CJPVIP,25746375,3
+57104894,25746375,3
+42691855,25746375,4
+2640758,25746375,1
+72420983,25746375,5
+53698183,25746375,3
+jellysmiling,25746375,4
+aibaobaoguai327,25746375,5
+jzhshow,25746375,4
+49090392,25746375,3
+52140579,25746375,4
+14593260,25746375,3
+3800028,25746375,2
+119296421,25746375,5
+zsy_azure,25746375,2
+104003575,25746375,4
+23922595,25746375,5
+36407001,25746375,5
+babylovelife,25746375,3
+3113509,25746375,3
+Mickey-Cai,25746375,4
+45224713,25746375,3
+cherryyang316,25746375,-1
+66521777,25746375,3
+36862106,25746375,4
+66794531,25746375,4
+36049101,25746375,4
+56104621,25746375,3
+107561388,25746375,3
+123420895,25746375,4
+50191563,25746375,2
+31004958,25746375,4
+41985002,25746375,4
+4753861,25746375,2
+swimming7891,25746375,4
+wang1dan,25746375,2
+jingfei,25746375,4
+gxyvonne,25746375,3
+roy821,25746375,5
+119516358,25746375,1
+64039298,25746375,5
+126693961,25746375,2
+4033459,25746375,3
+yfqc24pippo,25746375,3
+49402699,25746375,2
+plstudio,25746375,3
+achering,25746375,3
+130624893,25746375,5
+Bollin,25746375,4
+78473653,25746375,5
+mint29,25746375,5
+56439401,25746375,4
+64114079,25746375,4
+3582172,25746375,3
+61935443,25746375,4
+54934785,25746375,2
+63211106,25746375,3
+thomsonkoo,25746375,3
+B-B-B-Side,25746375,3
+56901042,25746375,3
+28796162,25746375,4
+39351378,25746375,5
+108797239,25746375,4
+51183805,25746375,4
+10345879,25746375,4
+57511216,25746375,4
+57918756,25746375,4
+13903375,25746375,3
+48078934,25746375,3
+chenftao,25746375,3
+2492062,25746375,4
+85868332,25746375,5
+61787036,25746375,4
+1726868,25746375,4
+vienC,25746375,4
+Renee_la,25746375,5
+2847632,25746375,4
+21766290,25746375,3
+susidai,25746375,3
+81616133,25746375,3
+126738819,25746375,5
+100814233,25746375,3
+91616390,25746375,5
+3065272,25746375,4
+81126169,25746375,5
+sentimen,25746375,2
+lnzyn,25746375,4
+30357149,25746375,3
+4287946,25746375,5
+skysunny,25746375,3
+79334007,25746375,3
+50060410,25746375,3
+53173007,25746375,4
+lulu1992,25746375,3
+69223309,25746375,5
+hitomiorange,25746375,3
+taoxiaohua,25746375,4
+alisa_lea,25746375,5
+64955104,25746375,4
+44082192,25746375,3
+liruqi,25746375,5
+rabitLVleslie,25746375,3
+dado.,25746375,4
+n1ev,25746375,4
+122678907,25746375,4
+tkoks,25746375,5
+meathill,25746375,4
+15716080,25746375,4
+hushibookstore,25746375,4
+99508404,25746375,5
+winmaxangle,25746375,4
+gjr,25746375,4
+vinciwang,25746375,3
+50269699,25746375,4
+40889918,25746375,3
+44614198,25746375,5
+wangboyuan,25746375,5
+3035586,25746375,3
+48705699,25746375,4
+suffering0,25746375,2
+sevend106,25746375,4
+ikaka,25746375,3
+4045951,25746375,5
+65808040,25746375,4
+130613741,25746375,4
+NONOJIA,25746375,3
+62527586,25746375,5
+130531885,25746375,3
+hdx1991,25746375,3
+58264368,25746375,4
+3469841,25746375,3
+28240327,25746375,3
+4744464,25746375,1
+56818506,25746375,5
+57597596,25746375,4
+vontall,25746375,1
+25674811,25746375,4
+1537775,25746375,5
+miaomiaoariel,25746375,4
+1809227,25746375,5
+93991647,25746375,5
+33749828,25746375,4
+xyh818,25746375,3
+reave,25746375,3
+lingrui1995,25746375,3
+50620996,25746375,3
+55484274,25746375,3
+xipo,25746375,5
+54795000,25746375,4
+bigpig93,25746375,5
+fishyuyue,25746375,5
+45660957,25746375,5
+3531610,25746375,4
+115599807,25746375,5
+tenspace,25746375,3
+silentff,25746375,3
+onlyYH,25746375,3
+52792351,25746375,5
+froggrandpa,25746375,2
+34482746,25746375,4
+MYtachikoma,25746375,3
+xiaolanshiguang,25746375,3
+72409759,25746375,5
+she-is-momo,25746375,4
+fayegong,25746375,4
+43308904,25746375,5
+YYDEE,25746375,4
+veggicc,25746375,4
+60725481,25746375,5
+xinlingsenlin,25746375,3
+chenhangv,25746375,4
+53092429,25746375,3
+2307372,25746375,5
+45752455,25746375,4
+4382959,25746375,4
+37617516,25746375,4
+41933310,25746375,5
+summerinbloom,25746375,4
+wen_Schwartz,25746375,3
+live4ever,25746375,3
+122729888,25746375,3
+49637787,25746375,3
+119282583,25746375,2
+milknang,25746375,2
+82630962,25746375,3
+domire,25746375,3
+65398660,25746375,5
+42879782,25746375,5
+52889197,25746375,4
+70120903,25746375,2
+flowermumu,25746375,2
+53611798,25746375,5
+52925465,25746375,4
+dudubao,25746375,5
+85242652,25746375,4
+2842455,25746375,2
+48886934,25746375,5
+metylee,25746375,5
+proband,25746375,4
+69998360,25746375,2
+x1Ao_y,25746375,4
+57643998,25746375,4
+xin1105,25746375,4
+4426659,25746375,4
+89095718,25746375,3
+54998105,25746375,4
+65510626,25746375,4
+58379589,25746375,4
+1068202,25746375,5
+kejinlong,25746375,3
+72934606,25746375,3
+tofuchico,25746375,4
+olive0925,25746375,5
+14409304,25746375,5
+xilouchen,25746375,3
+timika,25746375,5
+59470406,25746375,4
+2579882,25746375,5
+edwinho,25746375,4
+1970231,25746375,5
+68213997,25746375,4
+45753236,25746375,1
+78970884,25746375,4
+aibamoe,25746375,3
+40399819,25746375,4
+CrimsonSamantha,25746375,2
+chenyushu,25746375,5
+25917087,25746375,4
+44685216,25746375,3
+huster-lion,25746375,4
+53794132,25746375,2
+84171597,25746375,5
+Bookthief,25746375,4
+57411563,25746375,5
+56138640,25746375,3
+quandolinger,25746375,4
+michellejnj,25746375,4
+airq7,25746375,5
+47619273,25746375,4
+s_sc1,25746375,5
+107200905,25746375,4
+vyajana,25746375,2
+58929848,25746375,3
+129977566,25746375,4
+20880123,25746375,5
+Draculala,25746375,4
+CanaanYoung,25746375,2
+58369888,25746375,3
+83932735,25746375,3
+42646468,25746375,4
+2610640,25746375,3
+89723194,25746375,5
+61581753,25746375,4
+AAAxiaowei,25746375,4
+69971206,25746375,4
+66040410,25746375,4
+67103295,25746375,3
+130044129,25746375,4
+ruokongzhi,25746375,3
+MaxinAn,25746375,3
+65532755,25746375,4
+4040058,25746375,5
+gaoxiafang,25746375,5
+45795420,25746375,3
+58489855,25746375,4
+114657880,25746375,4
+50769743,25746375,4
+56688608,25746375,4
+46037154,25746375,3
+63098034,25746375,3
+61726273,25746375,5
+yinleo,25746375,3
+36108991,25746375,3
+68936887,25746375,4
+62877626,25746375,5
+70932292,25746375,1
+48057080,25746375,3
+128622752,25746375,4
+102638537,25746375,2
+qijiuzhiyue,25746375,3
+wtforz,25746375,3
+particles,25746375,3
+3581002,25746375,3
+71420798,25746375,4
+matt5,25746375,4
+cyan_xi,25746375,4
+sisje,25746375,3
+3769878,25746375,5
+49307986,25746375,4
+46247554,25746375,4
+dodorene,25746375,3
+Andy9,25746375,5
+hellokimi,25746375,2
+60861914,25746375,3
+130603786,25746375,4
+xc0126,25746375,4
+tonyleung2046,25746375,3
+2777892,25746375,3
+69099872,25746375,3
+127125267,25746375,4
+39567934,25746375,4
+huangzhen,25746375,3
+sunlinght,25746375,5
+classical622,25746375,4
+yingyujiaoshi,25746375,4
+wownow,25746375,1
+125569953,25746375,2
+swan93,25746375,4
+122393456,25746375,4
+62582526,25746375,4
+48506304,25746375,4
+67641940,25746375,4
+29211262,25746375,4
+64693133,25746375,3
+75043360,25746375,3
+3768964,25746375,4
+5955160,25746375,4
+3249521,25746375,3
+82887347,25746375,4
+wind_field,25746375,3
+57909039,25746375,4
+65646310,25746375,3
+aprilwind_shi,25746375,5
+119248717,25746375,5
+tangstar27,25746375,3
+eveshi,25746375,2
+3045195,25746375,5
+maydaythering,25746375,3
+wyjlwyy,25746375,4
+64417959,25746375,-1
+122052846,25746375,4
+Dlulu,25746375,4
+cchestnut,25746375,4
+120263408,25746375,4
+39581289,25746375,5
+duduben1861,25746375,3
+lancer04,25746375,3
+3609605,25746375,3
+81042721,25746375,4
+50186720,25746375,5
+bluestone17,25746375,2
+kp81ndlf,25746375,4
+delma,25746375,4
+68447103,25746375,2
+ouyanggefei,25746375,5
+76393487,25746375,4
+83855853,25746375,3
+jaredspecter,25746375,3
+38609942,25746375,4
+130467850,25746375,5
+54653189,25746375,1
+45115459,25746375,4
+akilee614,25746375,2
+29244553,25746375,3
+54293276,25746375,5
+83443118,25746375,1
+1782017,25746375,1
+antimido,25746375,3
+liancheng,25746375,3
+amazingta,25746375,5
+eiji218837,25746375,3
+lazzaro,25746375,4
+73931877,25746375,3
+camel1990,25746375,4
+48542981,25746375,4
+livelongandpros,25746375,5
+shanguicheng,25746375,3
+Iamwanghaha,25746375,4
+121925432,25746375,4
+46171691,25746375,2
+q114055080,25746375,5
+Eileke,25746375,3
+84303160,25746375,3
+40547322,25746375,3
+4335163,25746375,2
+2859580,25746375,3
+22593878,25746375,5
+zonovo,25746375,4
+51054485,25746375,4
+53936469,25746375,-1
+warmgun7,25746375,2
+dearmia,25746375,5
+chenxiaobei,25746375,3
+46883062,25746375,5
+gaolina,25746375,4
+windwith,25746375,4
+luckycici,25746375,2
+realien,25746375,5
+30499670,25746375,4
+yangziqiang,25746375,3
+Polo79,25746375,5
+91848413,25746375,4
+54226052,25746375,5
+57534338,25746375,3
+79262344,25746375,4
+tuanzilove,25746375,3
+54064610,25746375,5
+68642531,25746375,3
+ameliefei,25746375,5
+69572287,25746375,4
+48919627,25746375,3
+maqingyun,25746375,4
+115681868,25746375,4
+47814886,25746375,4
+qijue711,25746375,2
+defblue4life,25746375,4
+bbvilin,25746375,5
+4622525,25746375,3
+lisadeworld,25746375,4
+53594562,25746375,3
+43678166,25746375,3
+57726747,25746375,4
+daiyuko,25746375,4
+97302377,25746375,4
+1691557,25746375,1
+3932141,25746375,5
+imoviekobe,25746375,3
+seafans,25746375,4
+1487718,25746375,4
+qingwuhuiwang,25746375,5
+Microka,25746375,4
+spoont,25746375,3
+62871612,25746375,3
+sorry8,25746375,3
+55603094,25746375,4
+1339110,25746375,4
+4394605,25746375,4
+yixi7,25746375,3
+22842390,25746375,5
+41806618,25746375,5
+64681992,25746375,4
+gefforey,25746375,2
+shenhuxi,25746375,5
+106497872,25746375,3
+61967626,25746375,3
+128167486,25746375,4
+4370686,25746375,4
+1423262,25746375,3
+75940543,25746375,-1
+89997882,25746375,4
+ningyaogezhi,25746375,4
+xiatan,25746375,4
+4165611,25746375,4
+58975463,25746375,3
+102718430,25746375,4
+47154165,25746375,3
+steve647,25746375,4
+81625946,25746375,-1
+liyixuan5566,25746375,4
+jutaomomo,25746375,-1
+kinged14,25746375,4
+gregoryhouse,25746375,4
+37747347,25746375,4
+74954660,25746375,3
+Hero14,25746375,4
+71985811,25746375,3
+mrsrost,25746375,1
+65828524,25746375,5
+goffy2679,25746375,3
+2649968,25746375,3
+4868891,25746375,4
+liluoliluo,25746375,3
+69133855,25746375,3
+43947432,25746375,4
+79092669,25746375,4
+huijie3546789,25746375,4
+3182859,25746375,4
+ALee301302,25746375,3
+83084496,25746375,5
+4154813,25746375,3
+65295255,25746375,4
+seditionary,25746375,4
+mariaaa,25746375,3
+dreams_be_dream,25746375,4
+adamyoung1518,25746375,3
+wsgjr,25746375,5
+3330105,25746375,4
+67711452,25746375,4
+bettylwx,25746375,4
+65714390,25746375,4
+104609781,25746375,2
+128112253,25746375,5
+7542909,25746375,3
+yuuu,25746375,4
+64817099,25746375,3
+mr.slow,25746375,4
+54783024,25746375,3
+63312230,25746375,5
+3397020,25746375,4
+phoebejh,25746375,5
+3137688,25746375,4
+97687322,25746375,3
+3262787,25746375,4
+Miralte,25746375,4
+3243828,25746375,5
+lukeyu,25746375,4
+2543974,25746375,4
+1479546,25746375,4
+55289792,25746375,4
+clover1027,25746375,4
+vfish,25746375,5
+sophie125,25746375,3
+54770734,25746375,4
+weichengluanma,25746375,3
+43595713,25746375,3
+3179652,25746375,4
+47228082,25746375,4
+83989454,25746375,5
+4469892,25746375,5
+58956740,25746375,4
+102164266,25746375,4
+mimosalan,25746375,4
+sodasue,25746375,3
+53726011,25746375,2
+KathyChin,25746375,3
+etfan,25746375,5
+Sinept,25746375,3
+57542378,25746375,3
+jisien,25746375,5
+47215662,25746375,4
+coffee-tree,25746375,3
+74545384,25746375,3
+37131063,25746375,3
+Sophie.,25746375,3
+stillm,25746375,5
+106359277,25746375,3
+130496028,25746375,4
+liuxiangyu,25746375,3
+dirkhysteria,25746375,1
+65701341,25746375,4
+hupozhu,25746375,4
+122392735,25746375,4
+rayhal,25746375,2
+88959943,25746375,5
+34035451,25746375,4
+dazhuang1990,25746375,4
+40474222,25746375,5
+48508682,25746375,4
+123208179,25746375,4
+river0405,25746375,4
+57342932,25746375,5
+24900499,25746375,4
+detective,25746375,5
+42907481,25746375,5
+36770072,25746375,-1
+53084795,25746375,4
+129040380,25746375,3
+66836438,25746375,3
+49915969,25746375,3
+banezhang,25746375,5
+62457534,25746375,3
+49854531,25746375,3
+longhua,25746375,5
+kyleul,25746375,5
+68015443,25746375,3
+76153086,25746375,3
+lucky_sm,25746375,3
+3596777,25746375,2
+45158897,25746375,5
+46736455,25746375,3
+zynhello,25746375,5
+wxay,25746375,5
+gu_yan,25746375,4
+runtofreedom,25746375,3
+laowinglok,25746375,5
+98552283,25746375,4
+46815070,25746375,2
+nanajd,25746375,-1
+dklovesmovie,25746375,2
+83942613,25746375,3
+wen1011,25746375,3
+64978016,25746375,3
+96331633,25746375,4
+xiaxiaoqiang,25746375,4
+bodyblue,25746375,4
+76475483,25746375,4
+xx218,25746375,3
+lynnesay,25746375,4
+129798303,25746375,3
+15986782,25746375,4
+51288517,25746375,3
+PKUTeaParty,25746375,1
+65214570,25746375,4
+87689465,25746375,5
+68330823,25746375,4
+40141522,25746375,3
+62803697,25746375,3
+fengt,25746375,3
+langlang000,25746375,5
+115335906,25746375,4
+63250313,25746375,4
+45290589,25746375,4
+62264594,25746375,5
+qwer3485,25746375,4
+87821425,25746375,3
+59210685,25746375,3
+106911506,25746375,5
+61542149,25746375,3
+peng2,25746375,4
+armai,25746375,3
+4607251,25746375,4
+duzhouchi,25746375,3
+babyxy006,25746375,4
+37775182,25746375,5
+LinWoo,25746375,4
+geyan,25746375,4
+leave614,25746375,5
+47320573,25746375,5
+zhuzx,25746375,4
+gdweton,25746375,4
+14904352,25746375,4
+fengxiao_hh,25746375,3
+Alex-boil,25746375,3
+43710642,25746375,4
+4234876,25746375,4
+franklinton,25746375,4
+secretcat,25746375,4
+sophielikeit,25746375,4
+5355133,25746375,5
+youling714,25746375,4
+jiatianyu1,25746375,4
+FK621,25746375,4
+102657573,25746375,3
+72472207,25746375,4
+stories7,25746375,3
+wushuangbiaojie,25746375,2
+pajamania,25746375,3
+46220008,25746375,4
+sirluoji,25746375,4
+pigeye,25746375,-1
+hanadomoto,25746375,4
+flxjp,25746375,3
+silent_island,25746375,2
+liyashun,25746375,3
+languheshang,25746375,5
+FrankWasabi,25746375,3
+jiongreborn,25746375,2
+oooweirooo,25746375,3
+73828343,25746375,5
+129620267,25746375,5
+66404994,25746375,3
+maggiejingliu,25746375,3
+56340290,25746375,4
+niguize,25746375,2
+Gladysbrad,25746375,-1
+cathyhere,25746375,3
+nailuoyitai,25746375,4
+zayaza,25746375,3
+3758504,25746375,2
+bullshitforever,25746375,2
+Vanchi,25746375,-1
+coffeeshop,25746375,3
+38105854,25746375,5
+w.uknow,25746375,3
+36031855,25746375,3
+vane0109,25746375,5
+NysUn,25746375,4
+108077404,25746375,3
+sweetlalalove,25746375,2
+doraeman,25746375,5
+2275151,25746375,5
+80570322,25746375,3
+xpen95,25746375,5
+jackiam,25746375,3
+68735389,25746375,4
+69305068,25746375,4
+1001195,25746375,3
+68264319,25746375,4
+viola210,25746375,4
+nora7yasu,25746375,3
+80743917,25746375,5
+82846844,25746375,4
+gwei6585119,25746375,4
+4546565,25746375,4
+92364458,25746375,5
+47342662,25746375,2
+55328158,25746375,3
+63647766,25746375,4
+3853716,25746375,5
+71465294,25746375,3
+60860186,25746375,4
+52948312,25746375,3
+52694353,25746375,4
+79750101,25746375,4
+schilthorn,25746375,-1
+yan6,25746375,4
+carolcai,25746375,4
+108637207,25746375,5
+2049714,25746375,4
+2596903,25746375,3
+june.q,25746375,4
+moquin,25746375,3
+66036408,25746375,3
+47745204,25746375,4
+meowarrier,25746375,4
+37826043,25746375,4
+minijoan,25746375,5
+yinchuanfu,25746375,5
+52523559,25746375,3
+78586687,25746375,3
+4026585,25746375,3
+luoying6,25746375,4
+79940249,25746375,4
+59774628,25746375,3
+3723805,25746375,2
+xuaoling,25746375,4
+sunny_i,25746375,3
+60902238,25746375,3
+98524765,25746375,3
+63723593,25746375,4
+123129041,25746375,5
+122924278,25746375,5
+alcudish,25746375,3
+51047226,25746375,4
+yimianmian,25746375,2
+miss90,25746375,4
+3420320,25746375,4
+wss5336,25746375,4
+52104937,25746375,5
+37546445,25746375,5
+annie-bean,25746375,4
+63329467,25746375,4
+3382542,25746375,4
+4401259,25746375,4
+129081230,25746375,5
+liunisn,25746375,5
+suheagatha,25746375,5
+amelietao,25746375,3
+53512949,25746375,4
+evollove,25746375,4
+71350146,25746375,4
+70302658,25746375,5
+Patrick_Kang,25746375,3
+102542234,25746375,4
+60054131,25746375,3
+leeqf,25746375,5
+92340097,25746375,-1
+yirao,25746375,4
+cheng4496,25746375,4
+cheng4496,25746375,4
+85421476,25746375,5
+chenrongrong28,25746375,1
+julywaits,25746375,4
+K_kk,25746375,4
+52497918,25746375,4
+83713331,25746375,4
+Q289637188,25746375,3
+2862311,25746375,3
+48845052,25746375,4
+poppy7mbsf,25746375,3
+axiu0122,25746375,5
+liqiyao8931,25746375,2
+83717387,25746375,3
+50560979,25746375,3
+1740474,25746375,3
+59945441,25746375,4
+64450294,25746375,3
+yechadeyecha,25746375,3
+fukumm,25746375,5
+fukumm,25746375,5
+51733172,25746375,4
+firstcause,25746375,5
+66848309,25746375,4
+sw7eets,25746375,2
+47764376,25746375,3
+naples5,25746375,3
+linglongwunv,25746375,2
+stella_zhou,25746375,5
+larrylazy,25746375,4
+58432917,25746375,3
+57782916,25746375,4
+47351813,25746375,2
+71621608,25746375,4
+RIVERT,25746375,2
+Bravo_o,25746375,3
+2776951,25746375,3
+maychen,25746375,-1
+42224337,25746375,3
+Yulia,25746375,3
+yalindongdong,25746375,3
+4161339,25746375,3
+32128731,25746375,4
+youngtoo,25746375,4
+hexiaoqin,25746375,3
+3803805,25746375,4
+zoe-1988,25746375,4
+41796932,25746375,2
+belljazzzzzzzzz,25746375,4
+rinnie,25746375,4
+dataroom,25746375,3
+49305149,25746375,4
+samnice,25746375,-1
+2423369,25746375,3
+eden_zong,25746375,3
+45832624,25746375,5
+35827809,25746375,3
+xiangdahai,25746375,4
+105196709,25746375,4
+60366405,25746375,5
+76047428,25746375,5
+87222005,25746375,2
+51711938,25746375,3
+daisyunsun,25746375,3
+nighthanwei,25746375,3
+ninerock,25746375,3
+bluegrid,25746375,5
+qiaoyizhou,25746375,3
+waternut,25746375,2
+49926639,25746375,5
+70534967,25746375,4
+49338594,25746375,4
+cozy421,25746375,3
+MoQin,25746375,4
+zhupeng1115,25746375,5
+erlica,25746375,2
+cangjie1900,25746375,4
+100169550,25746375,5
+120156023,25746375,5
+1279239,25746375,4
+laox,25746375,5
+Sylein,25746375,3
+JonathanX,25746375,5
+53656219,25746375,3
+selina_cyq,25746375,5
+37396527,25746375,5
+p2165,25746375,2
+49326623,25746375,3
+3815906,25746375,4
+congxiao,25746375,5
+j946791150,25746375,4
+j946791150,25746375,4
+roseyan_lxy,25746375,4
+zod798,25746375,3
+zajm,25746375,3
+xslidian,25746375,2
+68307753,25746375,3
+115203825,25746375,5
+78891799,25746375,3
+110901020,25746375,4
+stephaniesecret,25746375,4
+89931172,25746375,2
+shunong,25746375,3
+66799655,25746375,3
+xinde01,25746375,5
+47479797,25746375,3
+83229871,25746375,4
+76676760,25746375,5
+wy81,25746375,5
+cuc_scm,25746375,5
+71121278,25746375,4
+45749483,25746375,3
+43513094,25746375,3
+53554219,25746375,3
+58227442,25746375,3
+54266422,25746375,4
+123504720,25746375,1
+3771616,25746375,4
+wreckitzak,25746375,5
+4474468,25746375,3
+41848345,25746375,5
+sofans,25746375,4
+36766174,25746375,5
+elefant,25746375,4
+injune,25746375,5
+xiangnv,25746375,-1
+rememberjuly,25746375,4
+GrEy4ai,25746375,2
+57589585,25746375,5
+yeyuda,25746375,4
+119838841,25746375,4
+graceinjune,25746375,5
+67019496,25746375,4
+xiaoyaozizai,25746375,5
+79318934,25746375,5
+43239303,25746375,5
+59504522,25746375,1
+luzhiyu,25746375,4
+sunyugo,25746375,2
+greenyiruo,25746375,-1
+76986698,25746375,3
+101464428,25746375,4
+51868250,25746375,4
+58759380,25746375,3
+85143816,25746375,4
+54104457,25746375,5
+43508209,25746375,3
+72418572,25746375,5
+43869534,25746375,4
+sixtime,25746375,5
+60860847,25746375,3
+dancylon,25746375,4
+Jayne_pig,25746375,3
+a55h01e,25746375,4
+49148779,25746375,3
+SINCE1988,25746375,4
+52313283,25746375,2
+67730744,25746375,4
+78802092,25746375,5
+63377727,25746375,3
+43234275,25746375,5
+garcia98102,25746375,-1
+49895670,25746375,4
+124136324,25746375,4
+3849086,25746375,5
+49117698,25746375,4
+doriszhangye,25746375,5
+lensliao,25746375,2
+124829943,25746375,5
+newbear,25746375,4
+Hans_Du,25746375,4
+67454636,25746375,5
+xiaoxiaodeyuanz,25746375,1
+41998379,25746375,4
+Obtson,25746375,4
+71911591,25746375,5
+baozha,25746375,4
+59578482,25746375,5
+kbs---ak,25746375,3
+72432038,25746375,4
+74062182,25746375,4
+feesle,25746375,4
+58043896,25746375,5
+39176396,25746375,-1
+36945830,25746375,5
+keyilibie,25746375,2
+zhchtcm,25746375,4
+58605628,25746375,2
+jicheng1993,25746375,4
+85655374,25746375,4
+80115244,25746375,5
+42680639,25746375,3
+chancechance,25746375,4
+mountainriver,25746375,3
+49419366,25746375,3
+cyrus_wong,25746375,3
+128247761,25746375,4
+94138981,25746375,5
+49631095,25746375,4
+60358393,25746375,2
+75691865,25746375,5
+48724953,25746375,3
+57980305,25746375,4
+Crecy,25746375,3
+44834403,25746375,4
+xieyuhan1988,25746375,4
+1614995,25746375,3
+miloz0908,25746375,4
+3113748,25746375,-1
+51061132,25746375,4
+52870951,25746375,5
+53392958,25746375,3
+67746910,25746375,3
+xcser,25746375,3
+yiritang,25746375,5
+zhr19951204,25746375,4
+81311477,25746375,4
+xiaoshizhan,25746375,4
+82890119,25746375,5
+quizas63,25746375,4
+taugenichts,25746375,3
+61985343,25746375,5
+nofer,25746375,4
+minwoowife,25746375,4
+helene9933,25746375,3
+61424734,25746375,3
+kekexilijiu,25746375,3
+42440252,25746375,4
+62122609,25746375,-1
+DrRay,25746375,3
+116856151,25746375,4
+ryeon,25746375,3
+4001291,25746375,3
+leexiang,25746375,5
+71181579,25746375,2
+126702436,25746375,3
+49181289,25746375,4
+58691394,25746375,4
+29898737,25746375,4
+48167450,25746375,4
+lynnux,25753326,4
+beyond1983,25753326,4
+56309200,25753326,-1
+62902715,25753326,2
+Kidew,25753326,3
+64092114,25753326,5
+1651604,25753326,4
+eefee,25753326,1
+zbar1234,25753326,3
+103343443,25753326,2
+131254424,25753326,3
+4511323,25753326,5
+zhangziyi,25753326,3
+66836438,25753326,2
+AhLang,25753326,4
+redcookie,25753326,3
+52428120,25753326,5
+2992563,25753326,5
+62608491,25753326,4
+41437311,25753326,3
+72242260,25753326,4
+1909194,25753326,4
+104462145,25753326,-1
+Biggie,25753326,3
+58901835,25753326,3
+106154963,25753326,5
+78490224,25753326,5
+60981829,25753326,-1
+iamliving,25753326,4
+xuliking,25753326,4
+snowyhowe,25753326,2
+47191946,25753326,3
+49852947,25753326,4
+zzfznp,25753326,3
+2187326,25753326,3
+22595281,25753326,4
+4563516,25753326,3
+66563256,25753326,5
+coldmist,25753326,4
+woshigejilao,25753326,3
+41842523,25753326,2
+74418627,25753326,2
+69152007,25753326,4
+45241922,25753326,4
+andrpirl,25753326,4
+42623950,25753326,4
+47476934,25753326,1
+95822092,25753326,3
+3880844,25753326,3
+thesurfingleaf,25753326,4
+124253429,25753326,4
+87311289,25753326,2
+70499050,25753326,3
+chenning3288,25753326,4
+minminye,25753326,5
+36185142,25753326,4
+1391038,25753326,2
+130817915,25753326,5
+120962190,25753326,5
+julian_lu,25753326,4
+29399686,25753326,1
+MR_CHEN,25753326,5
+39447144,25753326,3
+dixiaofeng,25753326,4
+shdibas,25753326,4
+48066058,25753326,5
+41001686,25753326,5
+2821452,25753326,2
+66858038,25753326,5
+57742250,25753326,3
+78713846,25753326,3
+68893935,25753326,4
+liangtong,25753326,5
+imhechang,25753326,4
+1233601,25753326,2
+ryanp,25753326,-1
+121173641,25753326,3
+seventhworkshop,25753326,3
+52840916,25753326,3
+iceboland,25753326,5
+iceboland,25753326,5
+59336433,25753326,3
+81336001,25753326,3
+42684668,25753326,4
+5771443,25753326,5
+81645668,25753326,4
+mi-hang,25753326,4
+4582318,25753326,4
+icy1004,25753326,5
+49013411,25753326,4
+levid,25753326,3
+47818066,25753326,3
+ruxia68,25753326,4
+D_Architect,25753326,5
+SZH19920707,25753326,2
+77048663,25753326,5
+faiel,25753326,2
+kevi2dan,25753326,4
+102705579,25753326,5
+60631421,25753326,4
+137555231,25753326,2
+joyjay,25753326,4
+103271136,25753326,3
+121806653,25753326,5
+62314563,25753326,3
+83747600,25753326,2
+1953044,25753326,4
+vane918,25753326,3
+fjlxcs,25753326,5
+136942011,25753326,4
+RealDigit,25753326,-1
+benbig,25753326,-1
+97402740,25753326,1
+56613176,25753326,4
+skylightking,25753326,5
+48622975,25753326,5
+102609702,25753326,2
+82049060,25753326,4
+87672197,25753326,4
+4295298,25753326,4
+98956225,25753326,4
+dearpluto,25753326,-1
+stormsuck,25753326,4
+76428013,25753326,3
+3744982,25753326,4
+duffei,25753326,3
+54562055,25753326,3
+90105219,25753326,3
+57409980,25753326,3
+26487427,25753326,3
+guosong0804,25753326,4
+10149854,25753326,4
+66456284,25753326,4
+jiangrenz,25753326,2
+3969292,25753326,3
+xwliqi,25753326,4
+47631922,25753326,2
+2280920,25753326,2
+92615342,25753326,4
+1369113,25753326,4
+85084961,25753326,3
+horadric,25753326,4
+20732021,25753326,5
+75215989,25753326,4
+61840209,25753326,4
+132388146,25753326,5
+137435960,25753326,5
+shahua,25753326,3
+132024097,25753326,3
+mirandaseven,25753326,4
+38184816,25753326,3
+kblexel,25753326,5
+OpenSpaces,25753326,5
+67072789,25753326,5
+60923783,25753326,-1
+51358310,25753326,3
+131632042,25753326,2
+14327084,25753326,3
+3393961,25753326,3
+alft-huahua,25753326,3
+3393961,25753326,3
+alft-huahua,25753326,3
+129472402,25753326,4
+102911668,25753326,2
+98880412,25753326,5
+55977360,25753326,4
+60608137,25753326,4
+3501606,25753326,2
+42011727,25753326,4
+65025231,25753326,3
+4200336,25753326,3
+Chrismade,25753326,3
+michaelya,25753326,4
+amanjj,25753326,-1
+lovezhuangjia,25753326,4
+3033835,25753326,5
+cgy,25753326,3
+kundalinii,25753326,4
+muzimisneil,25753326,3
+1394814,25753326,5
+lvyue1986,25753326,4
+70162864,25753326,4
+maluguos,25753326,2
+ooosky,25753326,4
+101915984,25753326,4
+kenzo1983,25753326,3
+121997108,25753326,3
+MihoKomatsu,25753326,4
+75667669,25753326,2
+61489786,25753326,4
+44176282,25753326,4
+7106437,25753326,4
+echosmilefor,25753326,5
+tofrom,25753326,5
+55596530,25753326,4
+sunyangchina,25753326,3
+77922789,25753326,4
+84290248,25753326,3
+97365571,25753326,4
+53815649,25753326,4
+72642943,25753326,3
+58338006,25753326,4
+131909298,25753326,3
+1182787,25753326,3
+hanbooo,25753326,-1
+102987982,25753326,5
+50865043,25753326,3
+49020007,25753326,5
+54832274,25753326,5
+89108079,25753326,3
+frnong,25753326,4
+4116226,25753326,2
+Vivi17,25753326,4
+3122454,25753326,1
+61506971,25753326,3
+3208134,25753326,3
+49319217,25753326,5
+kiethope,25753326,3
+45268716,25753326,3
+58774025,25753326,2
+36554914,25753326,1
+84609158,25753326,3
+108212384,25753326,4
+132277009,25753326,4
+114435379,25753326,4
+61872443,25753326,4
+70603009,25753326,3
+4118910,25753326,3
+61921715,25753326,4
+61169740,25753326,3
+wakakawakakawak,25753326,4
+laoshububen,25753326,4
+100418686,25753326,3
+53271347,25753326,5
+49231240,25753326,5
+Rencee,25753326,4
+4190834,25753326,3
+53210734,25753326,2
+42759061,25753326,4
+31335200,25753326,5
+zhangguangdong,25753326,5
+103415530,25753326,4
+dgzy1644,25753326,5
+64163444,25753326,4
+108821133,25753326,3
+31102423,25753326,3
+62582526,25753326,3
+49356246,25753326,3
+48590382,25753326,3
+1061597,25753326,3
+liaofei,25753326,3
+4259768,25753326,3
+43921829,25753326,4
+36013177,25753326,3
+mumucha,25753326,3
+lilithyang1983,25753326,3
+mayjor,25753326,5
+ilovehotcoffee,25753326,-1
+51171341,25753326,3
+Bobby320415,25753326,5
+80609092,25753326,4
+124712461,25753326,3
+48153292,25753326,4
+33886622,25753326,3
+baisechengai,25753326,4
+46754344,25753326,2
+42006560,25753326,4
+20196112,25753326,3
+2229995,25753326,5
+enriqueiglesias,25753326,4
+1698143,25753326,5
+zengchinhuang,25753326,5
+65303828,25753326,3
+45864291,25753326,3
+52499368,25753326,3
+76815966,25753326,5
+macdonk,25753326,-1
+87327748,25753326,4
+64673199,25753326,4
+81998298,25753326,4
+54633561,25753326,5
+Sennir,25753326,4
+recyclebiner,25753326,3
+dupang,25753326,3
+67866798,25753326,5
+49886917,25753326,5
+amazingcamel,25753326,3
+45059307,25753326,4
+91746178,25753326,2
+1496920,25753326,5
+48495423,25753326,4
+hanaling,25753326,4
+bzking,25753326,2
+lxytracy.mvp,25753326,5
+52662813,25753326,5
+77378264,25753326,4
+ruck,25753326,3
+66403603,25753326,5
+JaceJing,25753326,3
+63014642,25753326,3
+chen1776,25753326,3
+41327515,25753326,4
+58068182,25753326,2
+46515637,25753326,5
+122612759,25753326,3
+43770198,25753326,2
+3198764,25753326,3
+languheshang,25753326,4
+chrno,25753326,2
+65112013,25753326,3
+126605030,25753326,5
+loveleo,25753326,4
+yuhongliang,25753326,4
+53033730,25753326,4
+oops5p4,25753326,4
+46712687,25753326,1
+shuangzhe,25753326,-1
+4108727,25753326,3
+4066025,25753326,3
+silenceyt,25753326,1
+84278334,25753326,4
+51004726,25753326,3
+46898679,25753326,3
+66578884,25753326,3
+44041767,25753326,1
+staryanxing,25753326,3
+1929758,25753326,3
+102170416,25753326,4
+kinso,25753326,4
+59065480,25753326,4
+48506304,25753326,4
+stevezp,25753326,3
+49937057,25753326,3
+cpt21,25753326,4
+pretendor,25753326,4
+51266657,25753326,3
+114809892,25753326,5
+Raging,25753326,-1
+130888340,25753326,3
+58484149,25753326,4
+2586114,25753326,4
+misayxt,25753326,3
+62699217,25753326,4
+Obtson,25753326,2
+58543683,25753326,4
+libangsi,25753326,3
+cappuccino-jl,25753326,3
+62572474,25753326,4
+2114161,25753326,5
+2805974,25753326,3
+65128519,25753326,3
+69232328,25753326,4
+kellyouka,25753326,1
+Sheeplady,25753326,5
+81806532,25753326,4
+70786863,25753326,4
+38957706,25753326,5
+2737234,25753326,4
+56602222,25753326,4
+71390552,25753326,5
+39072740,25753326,5
+flyingbamboo,25753326,4
+kingkongofkhan,25753326,3
+foxambition,25753326,4
+47096545,25753326,3
+xuehaotian,25753326,3
+4615290,25753326,2
+134318408,25753326,4
+42028639,25753326,4
+63015769,25753326,4
+59556078,25753326,1
+53920626,25753326,3
+128583623,25753326,3
+33064145,25753326,4
+iameric,25753326,5
+17748095,25753326,5
+113999648,25753326,5
+50761351,25753326,5
+Tigerag,25753326,-1
+58840542,25753326,3
+61304983,25753326,5
+68523936,25753326,2
+61813472,25753326,4
+103333124,25753326,4
+59334980,25753326,3
+ckrainy,25753326,4
+78925849,25753326,3
+zoeyhe,25753326,4
+wangchengji47,25753326,5
+blue-Petit,25753326,4
+angalny,25753326,2
+1079578,25753326,5
+65641754,25753326,3
+yoroziyaokusan,25753326,-1
+49949826,25753326,4
+cocojamboo,25753326,3
+33538904,25753326,5
+43409918,25753326,4
+vanvin,25753326,3
+Smeagol,25753326,5
+Le5in,25753326,3
+47481448,25753326,3
+mishi,25753326,3
+2914721,25753326,3
+81061045,25753326,3
+bozil,25753326,4
+4285342,25753326,3
+4165611,25753326,5
+87035372,25753326,2
+69386924,25753326,5
+61986707,25753326,3
+29844884,25753326,3
+54277204,25753326,4
+47025279,25753326,3
+136475614,25753326,5
+127973052,25753326,4
+93606686,25753326,4
+chentuo,25753326,5
+zhangjian_1q26,25753326,3
+68710052,25753326,4
+49298107,25753326,3
+chinalnkn,25753326,5
+81691649,25753326,2
+33522893,25753326,1
+shanxr,25753326,1
+103536040,25753326,4
+qianxun_lin,25753326,4
+4313714,25753326,1
+52046312,25753326,2
+135886747,25753326,4
+bibo110809,25753326,3
+1896089,25753326,4
+59217273,25753326,3
+4722347,25753326,5
+54092051,25753326,3
+44753719,25753326,2
+77604144,25753326,2
+52061169,25753326,4
+81222828,25753326,1
+NottMee,25753326,3
+seafans,25753326,4
+121146638,25753326,3
+51045384,25753326,4
+38986558,25753326,5
+131988839,25753326,1
+131616351,25753326,5
+nanshuo,25753326,5
+g_success,25753326,4
+54984584,25753326,4
+iyuntian,25753326,-1
+yhjiang,25753326,-1
+mountaindew,25753326,4
+1519166,25753326,4
+131665257,25753326,2
+99601239,25753326,2
+feizhuangzhuang,25753326,3
+87942128,25753326,5
+gang43998,25753326,4
+2561289,25753326,4
+mereth,25753326,3
+dongkuichen,25753326,4
+58370703,25753326,3
+132598919,25753326,4
+58863205,25753326,1
+shalouzhitong,25753326,1
+imagefly,25753326,3
+1485351,25753326,3
+50256249,25753326,5
+7510013,25753326,3
+70034039,25753326,2
+91117590,25753326,5
+88095866,25753326,4
+Daniel-Luo159,25753326,3
+54020507,25753326,3
+30311427,25753326,4
+37017024,25753326,3
+snowlydouban,25753326,5
+st000031,25753326,-1
+izaijin,25753326,3
+3541486,25753326,3
+taoyisanya,25753326,3
+134642033,25753326,4
+104592207,25753326,2
+68366606,25753326,3
+63099215,25753326,4
+HanHi,25753326,5
+127686469,25753326,5
+acbc115,25753326,3
+gtxyxyz,25753326,5
+6881518,25753326,3
+130488268,25753326,3
+68835916,25753326,4
+50733014,25753326,4
+4355421,25753326,4
+77869650,25753326,3
+46832337,25753326,5
+sogstad,25753326,3
+45207380,25753326,4
+65664176,25753326,4
+34600682,25753326,3
+JJ88pig,25753326,5
+linchuzhuang,25753326,5
+46858223,25753326,3
+qiukuleng,25753326,3
+44517782,25753326,4
+58535825,25753326,3
+14234896,25753326,3
+44709496,25753326,4
+2270098,25753326,3
+135751000,25753326,4
+slimseven,25753326,2
+46695163,25753326,2
+49901515,25753326,4
+53362350,25753326,3
+marco_0708,25753326,1
+baihe107,25753326,4
+41486823,25753326,4
+48543551,25753326,1
+57275922,25753326,3
+williampitt,25753326,4
+65269749,25753326,3
+xyc1987,25753326,4
+iiDonkey,25753326,2
+102938445,25753326,5
+92067028,25753326,4
+65155738,25753326,2
+72086305,25753326,2
+106663926,25753326,4
+zclei,25753326,4
+44060155,25753326,-1
+77225401,25753326,5
+71400865,25753326,3
+1205451,25753326,4
+nextdawn,25753326,3
+37546543,25753326,4
+49810191,25753326,4
+monetsun,25753326,4
+65014224,25753326,4
+btone0808,25753326,3
+2202819,25753326,4
+51558823,25753326,4
+daiqiu920,25753326,4
+14562861,25753326,5
+wangzhibin,25753326,4
+43507289,25753326,4
+40596238,25753326,3
+16313678,25753326,4
+baijixing,25753326,5
+51018176,25753326,4
+FilmYan,25753326,3
+64740791,25753326,4
+3053426,25753326,3
+58117184,25753326,3
+45639608,25753326,4
+83513831,25753326,3
+4841197,25753326,3
+45527228,25753326,3
+108051142,25753326,3
+2866973,25753326,4
+49783661,25753326,4
+yangguangyi2,25753326,3
+31914408,25753326,3
+67182363,25753326,2
+67921032,25753326,1
+103214078,25753326,3
+88078787,25753326,1
+Zsaraj,25753326,3
+zhl19741130520,25753326,3
+shunong,25753326,3
+59713586,25753326,5
+81834646,25753326,3
+teapot,25753326,4
+56981196,25753326,5
+doexist,25753326,3
+motou0328,25753326,3
+42484020,25753326,3
+66945260,25753326,4
+58290785,25753326,1
+zayaza,25753326,2
+yuemian,25753326,3
+Daixi-ru,25753326,-1
+zl99,25753326,2
+niazion,25753326,4
+41655744,25753326,-1
+66598168,25753326,2
+2588271,25753326,-1
+8502578,25753326,1
+95264069,25753326,3
+maqingyun,25753326,2
+1593742,25753326,3
+55921426,25753326,3
+41923387,25753326,2
+69152913,25753326,3
+zzweimeng,25753326,4
+4208782,25753326,4
+80060056,25753326,4
+vivo,25753326,-1
+allblue,25753326,3
+52722463,25753326,3
+59592907,25753326,2
+39786572,25753326,4
+29643367,25753326,5
+59901599,25753326,4
+69130681,25753326,3
+49342454,25753326,3
+loveyu3317,25753326,4
+hutiehua,25753326,3
+101447033,25753326,4
+57963777,25753326,3
+71231764,25753326,4
+13984024,25753326,5
+92399399,25753326,3
+4441887,25753326,5
+52179978,25753326,5
+macroideal,25753326,4
+3547067,25753326,1
+45390521,25753326,4
+71573163,25753326,3
+freak_lee,25753326,4
+wangjiaren,25753326,-1
+60727909,25753326,1
+karmairis,25753326,4
+69768465,25753326,3
+kumorijin,25753326,3
+70043510,25753326,5
+lordbaker,25753326,-1
+120338818,25753326,3
+45951993,25753326,1
+133094793,25753326,4
+89144585,25753326,5
+fenxinyu,25753326,4
+63406200,25753326,3
+53317988,25753326,1
+58107870,25753326,1
+1747633,25753326,-1
+2809081,25753326,4
+jokerli,25753326,4
+48542981,25753326,3
+121920760,25753326,4
+50125343,25753326,4
+xiaowuchao,25753326,2
+41107629,25753326,-1
+84131231,25753326,3
+41980752,25753326,5
+2788057,25753326,3
+41036146,25753326,3
+54159008,25753326,5
+91139241,25753326,4
+1316648,25753326,3
+3386741,25753326,2
+121795248,25753326,4
+evelyne_hsu,25753326,4
+4200326,25753326,2
+liujiabin1002,25753326,3
+mowenxia,25753326,4
+89847136,25753326,4
+musicer03,25753326,4
+peae,25753326,1
+suh5213,25753326,2
+120156023,25753326,3
+1313415,25753326,3
+jumpjumpgogogo,25753326,3
+Ces7,25753326,3
+lingfriendly,25753326,4
+iwei,25753326,3
+84949449,25753326,4
+46738782,25753326,-1
+124530152,25753326,5
+dbsays,25753326,5
+akiisajunk,25753326,5
+eddeeee,25753326,5
+WSSWHL,25753326,2
+75984184,25753326,1
+everlastingEGO,25753326,3
+foleyfan,25753326,2
+nleydy,25753326,4
+105433262,25753326,4
+zhr19951204,25753326,4
+89313000,25753326,4
+cxl951404897,25753326,2
+8752115,25753326,2
+83836566,25753326,4
+52214552,25753326,4
+3218379,25753326,5
+63730928,25753326,2
+78636509,25753326,4
+63612050,25753326,4
+93211311,25753326,4
+48448737,25753326,3
+yalindongdong,25753326,3
+lisanlin,25753326,1
+80769810,25753326,3
+3379883,25753326,4
+54404280,25753326,4
+47821826,25753326,4
+Creep_,25753326,2
+73191281,25753326,3
+57545593,25753326,3
+135143930,25753326,5
+46432541,25753326,5
+67516737,25753326,4
+68656765,25753326,4
+burclover,25753326,3
+54066096,25753326,-1
+bullshitforever,25753326,3
+51001959,25753326,3
+wz1031h,25753326,5
+114143891,25753326,-1
+cellursoda,25753326,3
+34005046,25753326,5
+88236856,25753326,2
+1845398,25753326,4
+65513668,25753326,1
+2264023,25753326,3
+fanxiaodong,25753326,3
+99550697,25753326,2
+46888824,25753326,3
+69735820,25753326,3
+74379338,25753326,4
+askthedust,25753326,4
+105188554,25753326,4
+100135816,25753326,2
+84564093,25753326,4
+52568253,25753326,3
+zqzhuqiu,25753326,4
+36060435,25753326,4
+angelaaaaa,25753326,-1
+52270206,25753326,2
+xiaopang1106,25753326,3
+47068033,25753326,5
+77058316,25753326,3
+135645909,25753326,-1
+63571575,25753326,3
+102905031,25753326,5
+57367354,25753326,2
+icaruswing,25753326,5
+chowmo,25753326,5
+122290574,25753326,2
+3540441,25753326,2
+1849096,25753326,-1
+36869911,25753326,-1
+94546976,25753326,3
+35421582,25753326,4
+48333582,25753326,4
+71332667,25753326,5
+84152502,25753326,3
+124318175,25753326,3
+124584550,25753326,4
+3171344,25753326,3
+cherry.cherry,25753326,4
+3731360,25753326,2
+p2165,25753326,4
+78997134,25753326,4
+33580503,25753326,4
+77800007,25753326,4
+1569326,25753326,4
+jxzq007,25753326,4
+wdd789,25753326,4
+abin520918,25753326,4
+50827446,25753326,5
+illiteracy,25753326,4
+hongyeshou,25753326,4
+54141112,25753326,3
+58721432,25753326,3
+morninghill,25753326,5
+China.He,25753326,4
+63422177,25753326,1
+53277775,25753326,4
+winsteps,25753326,5
+87532340,25753326,4
+81607229,25753326,4
+42787743,25753326,-1
+43558241,25753326,4
+37571281,25753326,5
+60174209,25753326,2
+67436408,25753326,3
+14437038,25753326,5
+MOVIE--KO,25753326,3
+srada,25753326,3
+51100351,25753326,5
+64345409,25753326,5
+63531003,25753326,5
+mayiok,25753326,3
+75043360,25753326,2
+65313383,25753326,2
+54821248,25753326,3
+nwpu642,25753326,4
+68190360,25753326,5
+34390858,25753326,-1
+sweetcha,25753326,5
+77235132,25753326,4
+74855673,25753326,3
+119559372,25753326,4
+56475433,25753326,3
+119484113,25753326,4
+81404706,25753326,4
+Snmusic,25753326,5
+85811535,25753326,3
+125543859,25753326,5
+1452797,25753326,3
+blueskyfly,25753326,4
+flxjp,25753326,3
+4243064,25753326,5
+76289844,25753326,1
+65720816,25753326,4
+venhow,25753326,5
+29107256,25753326,4
+65218298,25753326,3
+64780091,25753326,1
+GMDY,25753326,4
+119456550,25753326,4
+ruyine,25753326,4
+44027260,25753326,4
+Death1nJuly,25753326,4
+Ariellin,25753326,3
+momianwa,25753326,3
+waitingxixi,25753326,2
+outman001,25753326,3
+137775454,25753326,5
+kalalau86,25753326,2
+lynnux,25753326,4
+beyond1983,25753326,4
+56309200,25753326,-1
+62902715,25753326,2
+Kidew,25753326,3
+64092114,25753326,5
+1651604,25753326,4
+eefee,25753326,1
+zbar1234,25753326,3
+103343443,25753326,2
+131254424,25753326,3
+4511323,25753326,5
+zhangziyi,25753326,3
+66836438,25753326,2
+AhLang,25753326,4
+redcookie,25753326,3
+52428120,25753326,5
+2992563,25753326,5
+62608491,25753326,4
+41437311,25753326,3
+121844395,4075568,2
+40789061,4075568,3
+68092386,4075568,5
+prague2046,4075568,3
+45939025,4075568,3
+maimufei,4075568,3
+landystar,4075568,4
+130445057,4075568,3
+EloiseL,4075568,4
+ink1020,4075568,2
+79879080,4075568,4
+jessicajoe,4075568,5
+50476857,4075568,3
+2117824,4075568,3
+w112233,4075568,5
+1849986,4075568,4
+baozha,4075568,3
+ohghost,4075568,4
+39132623,4075568,3
+47799758,4075568,4
+kelvinshaw,4075568,2
+63457669,4075568,2
+66620661,4075568,4
+njtintin,4075568,3
+83295870,4075568,5
+66932854,4075568,3
+jbecks,4075568,3
+33042240,4075568,4
+62832736,4075568,3
+no-reply-,4075568,-1
+wanghui1979,4075568,4
+3310337,4075568,2
+49491185,4075568,3
+zhibiaoshi,4075568,3
+1614995,4075568,3
+2625680,4075568,4
+adaxinyi,4075568,4
+lidickaka,4075568,3
+9491401,4075568,4
+63223538,4075568,4
+58901835,4075568,3
+yannis0417,4075568,4
+wjdszy,4075568,4
+rubyxr1028,4075568,4
+31068073,4075568,3
+LilC,4075568,3
+49419366,4075568,3
+4239908,4075568,5
+131168132,4075568,4
+wacky02,4075568,3
+4445169,4075568,4
+rigelong,4075568,5
+likecake,4075568,3
+iamliving,4075568,4
+51226667,4075568,2
+50629676,4075568,1
+vivianlovesun,4075568,3
+85451111,4075568,5
+mickey1130,4075568,3
+dudumozart,4075568,3
+mickey1130,4075568,3
+dudumozart,4075568,3
+12873508,4075568,2
+ilearner,4075568,3
+45385917,4075568,3
+4134812,4075568,3
+34601889,4075568,4
+1977618,4075568,3
+Michelleci,4075568,4
+41787565,4075568,3
+ouyangbella,4075568,4
+49122242,4075568,4
+61797915,4075568,3
+42093597,4075568,4
+45278107,4075568,3
+ivylan,4075568,4
+38774242,4075568,3
+34006126,4075568,4
+tomqulab,4075568,1
+137555231,4075568,3
+137555231,4075568,3
+48102959,4075568,3
+45055967,4075568,5
+coldmist,4075568,4
+69232328,4075568,4
+fightim,4075568,3
+zx8713,4075568,4
+59210685,4075568,4
+2586114,4075568,3
+35322417,4075568,4
+uzbaby,4075568,4
+124333866,4075568,4
+47193126,4075568,3
+zipaiwang,4075568,3
+tomhu,4075568,4
+idevin,4075568,3
+4077370,4075568,3
+younger,4075568,2
+76018485,4075568,4
+longfei39,4075568,2
+longfei39,4075568,2
+39146215,4075568,4
+131740688,4075568,4
+41976054,4075568,3
+sentexiaohu,4075568,4
+lovelypocky,4075568,4
+ohahahu,4075568,4
+46996433,4075568,4
+60597609,4075568,4
+47481448,4075568,4
+68477521,4075568,3
+2718163,4075568,5
+51617452,4075568,4
+63760065,4075568,4
+63565906,4075568,4
+mickjoust,4075568,3
+51358310,4075568,5
+sunflowersp,4075568,3
+Chneyu8504,4075568,4
+30974329,4075568,3
+darkness211,4075568,4
+celinedsam,4075568,4
+zhangrihe,4075568,2
+2507107,4075568,3
+47281283,4075568,3
+pierrewrs,4075568,4
+4141698,4075568,5
+37471230,4075568,2
+76790888,4075568,3
+31102423,4075568,3
+kwokchloe,4075568,3
+koitori,4075568,4
+51342796,4075568,3
+93347677,4075568,4
+sanrio1992,4075568,4
+thinthin,4075568,4
+2238297,4075568,5
+122484981,4075568,3
+61076987,4075568,3
+61506971,4075568,3
+77378264,4075568,4
+roy325,4075568,3
+3078221,4075568,3
+bingbingaloe,4075568,4
+2658903,4075568,3
+cantona_x,4075568,3
+Daruke,4075568,3
+90051465,4075568,3
+61935443,4075568,4
+vanexu,4075568,3
+lb19901116,4075568,4
+50919323,4075568,4
+74825312,4075568,3
+34507670,4075568,3
+41802567,4075568,4
+35066963,4075568,4
+79720313,4075568,4
+36034980,4075568,3
+55581484,4075568,4
+120439339,4075568,4
+60861914,4075568,3
+1532624,4075568,3
+120700818,4075568,3
+csaver,4075568,5
+OldYuan,4075568,3
+1610768,4075568,4
+CaptBastard,4075568,2
+131909298,4075568,3
+98956225,4075568,2
+58665959,4075568,4
+redrabbit,4075568,4
+52545422,4075568,3
+69439267,4075568,3
+69170773,4075568,3
+some_Ji,4075568,3
+35224934,4075568,4
+shinnodoo,4075568,4
+AaronMix,4075568,3
+Renee_er_est,4075568,4
+3418378,4075568,3
+59101445,4075568,2
+135754076,4075568,4
+81370561,4075568,5
+sxy921026,4075568,2
+130540529,4075568,3
+koutiao,4075568,3
+52623345,4075568,4
+3495848,4075568,5
+70419528,4075568,4
+annie7223,4075568,4
+44504599,4075568,3
+glimo,4075568,4
+67319725,4075568,3
+79896532,4075568,5
+58137395,4075568,4
+51840690,4075568,3
+50836475,4075568,3
+43921829,4075568,4
+xuylu,4075568,3
+135604751,4075568,3
+43864644,4075568,2
+yeeeeeee,4075568,3
+xichenfreeze,4075568,1
+75860265,4075568,5
+leoglory,4075568,3
+2803619,4075568,5
+15439490,4075568,5
+134573584,4075568,4
+134523196,4075568,4
+4320404,4075568,3
+xieyuhan1988,4075568,3
+gene4ever,4075568,3
+68172611,4075568,-1
+xxxxpp,4075568,4
+4656823,4075568,4
+53942242,4075568,5
+61708505,4075568,3
+43409918,4075568,3
+122789390,4075568,3
+67977532,4075568,5
+74541142,4075568,3
+viwingsleung,4075568,3
+91252045,4075568,3
+2498717,4075568,3
+1484739,4075568,4
+31427645,4075568,3
+25444489,4075568,3
+42243165,4075568,4
+52852194,4075568,4
+72719769,4075568,3
+65442139,4075568,4
+2071906,4075568,4
+marcamoy,4075568,3
+49587231,4075568,4
+zhaoyu1222,4075568,3
+98880412,4075568,3
+55609637,4075568,4
+62705311,4075568,1
+124253429,4075568,5
+80354010,4075568,3
+80354010,4075568,3
+122933889,4075568,5
+Besthide,4075568,4
+86926721,4075568,2
+roymo,4075568,4
+idontcarebitch,4075568,2
+4125875,4075568,4
+48194135,4075568,2
+59623092,4075568,3
+131020888,4075568,2
+59961169,4075568,3
+nangongmocheng,4075568,4
+monetsun,4075568,4
+47037959,4075568,-1
+65989078,4075568,4
+xuyansong,4075568,3
+69168173,4075568,1
+52214552,4075568,3
+vivifyvivi,4075568,2
+83836566,4075568,4
+liuchuanzi,4075568,3
+82054541,4075568,3
+60140602,4075568,3
+120551581,4075568,4
+fredztq,4075568,5
+60164301,4075568,3
+115051698,4075568,3
+129611474,4075568,3
+66707798,4075568,4
+JoshLee525,4075568,3
+70549270,4075568,4
+125663520,4075568,3
+59066202,4075568,4
+43068881,4075568,4
+50875593,4075568,3
+122889599,4075568,2
+47025279,4075568,3
+90701273,4075568,3
+chowmo,4075568,4
+hollydoyle,4075568,4
+48093431,4075568,3
+131878915,4075568,4
+41644891,4075568,3
+3044565,4075568,3
+yolanda_kin,4075568,3
+39369770,4075568,3
+136826257,4075568,1
+68631195,4075568,4
+tlping,4075568,2
+maomaojazz,4075568,4
+69680398,4075568,4
+3939599,4075568,5
+50790879,4075568,5
+122901063,4075568,2
+4159690,4075568,4
+bettercharlot,4075568,3
+jolinxian,4075568,3
+60871322,4075568,4
+50640951,4075568,5
+59601426,4075568,3
+109530447,4075568,3
+swwwrui,4075568,3
+127748889,4075568,4
+hyacinthiris,4075568,4
+52499368,4075568,2
+78377702,4075568,3
+106570148,4075568,4
+hikirres,4075568,3
+vigilgt,4075568,4
+moonorz,4075568,3
+42862661,4075568,3
+f91_82,4075568,3
+47594544,4075568,5
+51734926,4075568,1
+Riky-555,4075568,3
+29822208,4075568,3
+73135988,4075568,4
+127242444,4075568,5
+105409285,4075568,3
+80283092,4075568,3
+1867292,4075568,5
+jade0711,4075568,5
+49298107,4075568,3
+54053273,4075568,3
+firemilanzqt,4075568,5
+62245513,4075568,3
+79597559,4075568,4
+reneew,4075568,3
+Zoog,4075568,5
+1364563,4075568,3
+4617038,4075568,4
+robins1979,4075568,4
+130227721,4075568,2
+pbc0615,4075568,3
+36760873,4075568,5
+47609007,4075568,4
+snotman,4075568,3
+36884802,4075568,4
+justgin,4075568,3
+51179038,4075568,5
+MOVIE--KO,4075568,3
+49900100,4075568,-1
+bearhands,4075568,3
+shelleyhsu,4075568,3
+3484767,4075568,3
+57679372,4075568,4
+6961377,4075568,3
+78409802,4075568,2
+liujunhe123,4075568,4
+L-U-N-A,4075568,3
+6400247,4075568,5
+onlyz1,4075568,4
+136460394,4075568,3
+82058844,4075568,3
+74471598,4075568,2
+34442427,4075568,4
+reeves2014,4075568,4
+88535863,4075568,3
+OneiLulu,4075568,4
+kjstart,4075568,5
+74589582,4075568,4
+sometimeme,4075568,4
+37306803,4075568,3
+lukaka,4075568,3
+62113839,4075568,3
+xlei130,4075568,2
+1101928,4075568,3
+u-sister,4075568,3
+120092472,4075568,3
+qingjuesikong,4075568,3
+48826276,4075568,3
+Makoto614,4075568,3
+zhangluning,4075568,3
+51997514,4075568,5
+ruanzebang,4075568,4
+40684892,4075568,4
+49921068,4075568,3
+missdonglian,4075568,4
+59699452,4075568,4
+freak_lee,4075568,4
+37313199,4075568,3
+46762996,4075568,4
+hoboland,4075568,4
+131223774,4075568,4
+61223246,4075568,5
+68792801,4075568,2
+44045443,4075568,3
+67306930,4075568,5
+jiangjiang1214,4075568,2
+liarelaw,4075568,3
+zeroflowing,4075568,3
+nvwu_sophia,4075568,3
+84418105,4075568,-1
+66520731,4075568,4
+60717456,4075568,5
+medeHOW,4075568,4
+MLeslieM,4075568,-1
+1929758,4075568,3
+131749198,4075568,3
+49022504,4075568,4
+2929780,4075568,5
+119559372,4075568,4
+acomplexman,4075568,4
+louisyoung1026,4075568,3
+48740274,4075568,5
+71140874,4075568,3
+49266863,4075568,5
+zzzhy,4075568,4
+82387095,4075568,4
+78487387,4075568,-1
+40950202,4075568,2
+insraq,4075568,4
+hysdqw,4075568,5
+65273951,4075568,5
+134545730,4075568,3
+81921037,4075568,5
+63548568,4075568,2
+bolijiao,4075568,3
+91851250,4075568,3
+70055114,4075568,2
+135928273,4075568,3
+121249457,4075568,5
+69352434,4075568,4
+57892875,4075568,-1
+64110534,4075568,5
+102722400,4075568,3
+43814222,4075568,5
+93374803,4075568,4
+willieoo,4075568,4
+70794815,4075568,4
+68189537,4075568,4
+67605537,4075568,3
+zongzongzong,4075568,3
+68709265,4075568,4
+yangborui,4075568,5
+piecelost,4075568,2
+134792608,4075568,3
+41675106,4075568,5
+62847748,4075568,3
+shengqingyue,4075568,4
+25553362,4075568,4
+mintbear,4075568,3
+PatrickMYK,4075568,2
+1226511,4075568,3
+uniquemanman,4075568,5
+59760298,4075568,4
+54336845,4075568,3
+59524621,4075568,3
+46712687,4075568,2
+64124840,4075568,2
+88367720,4075568,4
+32019435,4075568,3
+3801481,4075568,4
+jite,4075568,3
+49980268,4075568,5
+bubublue,4075568,4
+37390884,4075568,3
+49712766,4075568,4
+xdcheung,4075568,4
+lygirl989193,4075568,4
+lygirl989193,4075568,4
+102446060,4075568,4
+3744867,4075568,4
+39273953,4075568,4
+114689592,4075568,3
+taski.C,4075568,-1
+yol0321,4075568,3
+zeroplanet,4075568,-1
+okship,4075568,3
+newslizi,4075568,3
+4157643,4075568,4
+48742011,4075568,3
+Freiheit429,4075568,5
+45933152,4075568,4
+18360610,4075568,3
+susimai,4075568,4
+72100909,4075568,3
+46718731,4075568,4
+56971596,4075568,4
+53024139,4075568,4
+37615847,4075568,5
+63281322,4075568,4
+Son47,4075568,3
+48877341,4075568,3
+55312255,4075568,5
+66552525,4075568,4
+shadowlover0816,4075568,4
+53806077,4075568,4
+59220835,4075568,1
+41083928,4075568,3
+motou0328,4075568,3
+virgin,4075568,3
+49061947,4075568,3
+125661279,4075568,4
+84152502,4075568,4
+71259453,4075568,5
+4544241,4075568,4
+85384480,4075568,2
+56824817,4075568,5
+70694295,4075568,3
+66718384,4075568,4
+3722910,4075568,3
+83343003,4075568,4
+75261344,4075568,3
+83793299,4075568,-1
+68014143,4075568,4
+2039569,4075568,2
+jackxyc,4075568,3
+103278080,4075568,5
+2674608,4075568,3
+Philoco,4075568,1
+4391066,4075568,5
+110447556,4075568,3
+95313700,4075568,5
+60913793,4075568,5
+69858046,4075568,3
+59378291,4075568,3
+joybang,4075568,3
+122031722,4075568,-1
+bela,4075568,3
+yueyuedad1972,4075568,5
+kyo85,4075568,3
+72251882,4075568,4
+Tracy1230,4075568,3
+fbndragona,4075568,4
+100418686,4075568,3
+yiritang,4075568,5
+96000077,4075568,4
+34434303,4075568,3
+4453892,4075568,-1
+sophia_423,4075568,4
+tomchil,4075568,4
+47612067,4075568,4
+cloverllx,4075568,3
+53888176,4075568,3
+52032404,4075568,3
+94988945,4075568,4
+83268589,4075568,5
+60191465,4075568,4
+nalusea,4075568,4
+50769743,4075568,3
+66103395,4075568,4
+48509446,4075568,5
+63793789,4075568,4
+sugarli,4075568,5
+61535522,4075568,4
+63888010,4075568,4
+15230288,4075568,5
+39520405,4075568,4
+belle,4075568,3
+zuoshoudezuo,4075568,3
+gojin,4075568,4
+114242546,4075568,4
+huapiqiu,4075568,3
+3544390,4075568,-1
+4296925,4075568,5
+3959406,4075568,5
+114734252,4075568,3
+rhythmfish,4075568,4
+120313404,4075568,5
+hughll,4075568,3
+52393301,4075568,3
+ljwcurry,4075568,3
+laoshixier,4075568,4
+76490710,4075568,3
+evanye,4075568,-1
+70700918,4075568,5
+johnny86,4075568,4
+60655749,4075568,3
+alcudish,4075568,2
+xiaoliok,4075568,4
+l_panda,4075568,4
+sunzeya,4075568,3
+lumins,4075568,2
+4527041,4075568,2
+48445532,4075568,4
+48530220,4075568,3
+xweiway,4075568,3
+119938228,4075568,3
+67763944,4075568,3
+Rolls-Royce,4075568,4
+bodd,4075568,5
+91126211,4075568,4
+85866685,4075568,4
+48559229,4075568,3
+DERRICK_ROSE,4075568,4
+wuyuruo,4075568,2
+24022856,4075568,4
+133046698,4075568,4
+arisonholic,4075568,4
+maggiore,4075568,3
+83177067,4075568,5
+62608491,4075568,4
+67679868,4075568,3
+Cicinnurus,4075568,4
+64479752,4075568,2
+2245968,4075568,3
+49443898,4075568,4
+48354152,4075568,3
+daniboy,4075568,5
+128366588,4075568,3
+27253308,4075568,3
+30218761,4075568,4
+82716279,4075568,-1
+3818190,4075568,4
+70970974,4075568,3
+4352057,4075568,4
+50280331,4075568,4
+134417369,4075568,3
+owenclv,4075568,3
+47515047,4075568,4
+42030874,4075568,4
+yido312,4075568,3
+2110097,4075568,4
+erduo,4075568,4
+121385842,4075568,4
+127365822,4075568,5
+123280530,4075568,4
+5851064,4075568,4
+jerrycan,4075568,4
+60808695,4075568,3
+70690888,4075568,4
+70469575,4075568,4
+casoon,4075568,3
+40519102,4075568,3
+for-coee,4075568,4
+64164384,4075568,3
+53110113,4075568,3
+43966741,4075568,4
+luciddreamlq,4075568,-1
+45362948,4075568,3
+vivienvb,4075568,5
+48926566,4075568,3
+songmint,4075568,4
+jamfever,4075568,4
+yinleo,4075568,3
+xuliking,4075568,4
+stanup,4075568,4
+imjanette,4075568,5
+46952185,4075568,3
+Ira_Jing,4075568,5
+shalouzhitong,4075568,5
+cwyalpha,4075568,4
+xiexuefei,4075568,5
+86240865,4075568,4
+sheshoumeizhi,4075568,4
+84265640,4075568,3
+135519326,4075568,4
+velmafei,4075568,4
+48472407,4075568,4
+43087251,4075568,3
+52446473,4075568,4
+KK22,4075568,4
+2600693,4075568,4
+36627836,4075568,3
+blacksora,4075568,4
+imarco,4075568,4
+51206699,4075568,3
+octobia,4075568,4
+ivril,4075568,3
+oyanglulu,4075568,4
+3903753,4075568,3
+MissSurvive,4075568,1
+AmadHatter,4075568,3
+73132535,4075568,4
+candia,4075568,5
+72985710,4075568,3
+64972660,4075568,3
+79782865,4075568,4
+flowermoi,4075568,4
+41294131,4075568,3
+41758984,4075568,3
+57665696,4075568,2
+50527578,4075568,-1
+91604108,4075568,5
+fafashit,4075568,4
+131849470,4075568,4
+9455174,4075568,3
+foenix,4075568,3
+113050393,4075568,3
+28587995,4075568,3
+Bodhisatto,4075568,3
+67333061,4075568,4
+imimi,4075568,4
+2332162,4075568,3
+80923059,4075568,3
+Vulpeculae,4075568,4
+11508329,4075568,3
+miucather,4075568,3
+81660493,4075568,3
+62735975,4075568,4
+bxg555,4075568,-1
+74418627,4075568,4
+43603952,4075568,4
+11566740,4075568,2
+54170909,4075568,4
+xiangjiaopian,4075568,5
+54277204,4075568,3
+xuxuyooxi,4075568,2
+mymydemon,4075568,3
+56955441,4075568,5
+yoyo325325,4075568,5
+arsene,4075568,4
+49812770,4075568,3
+Mobius.wang,4075568,3
+wzdradon,4075568,3
+126331855,4075568,3
+locolee,4075568,3
+123254320,4075568,3
+34063715,4075568,4
+kaverjody,4075568,3
+54965773,4075568,4
+49519192,4075568,4
+idmmdi,4075568,4
+37751161,4075568,3
+103108509,4075568,4
+1451680,4075568,3
+83715675,4075568,4
+63506712,4075568,3
+lovesebby,4075568,2
+58267868,4075568,3
+3981138,4075568,5
+qilekod,4075568,1
+57930365,4075568,4
+2834857,4075568,-1
+85597473,4075568,4
+92232503,4075568,4
+72936098,4075568,5
+kongguyouju,4075568,4
+36927005,4075568,3
+58072209,4075568,3
+2890229,4075568,4
+66973670,4075568,4
+qiangzhuang,4075568,3
+farewel,4075568,2
+zita07,4075568,4
+Beth0204,4075568,3
+2797193,4075568,4
+podolski,4075568,3
+lancaoqin,4075568,-1
+lancaoqin,4075568,-1
+75723338,4075568,4
+37160658,4075568,3
+4129696,4075568,4
+44441839,4075568,4
+57217580,4075568,3
+54034056,4075568,3
+fansherlocked,4075568,3
+71946766,4075568,4
+66993627,4075568,4
+v1wanghuang,4075568,3
+3880844,4075568,3
+Nickhsu,4075568,5
+gliuxiaofan119,4075568,5
+77577203,4075568,5
+126980247,4075568,4
+49662983,4075568,3
+4279038,4075568,3
+6303192,4075568,1
+paradis1230,4075568,4
+64677693,4075568,4
+4527709,4075568,4
+65930256,4075568,2
+60437819,4075568,4
+cl20lc,4075568,3
+47051808,4075568,5
+48036288,4075568,5
+43297403,4075568,3
+59774628,4075568,4
+89399541,4075568,4
+zpavel,4075568,5
+xulu_films,4075568,4
+62161898,4075568,5
+52348153,4075568,3
+3914295,4075568,3
+71180219,4075568,4
+119569256,4075568,5
+67436408,4075568,3
+51472613,4075568,4
+47537862,4075568,4
+robotstar,4075568,4
+46064508,4075568,3
+57095832,4075568,3
+4520667,4075568,3
+lmx1220,4075568,4
+51836771,4075568,4
+fowu,4075568,-1
+92610102,4075568,4
+25546658,4075568,-1
+45491031,4075568,4
+3569760,4075568,-1
+changle0605,4075568,4
+57088195,4075568,4
+46461287,4075568,-1
+48849197,4075568,5
+rainylovely,4075568,4
+regalo,4075568,3
+1088676,4075568,3
+62644533,4075568,3
+popzoe,4075568,3
+popzoe,4075568,3
+acbc115,4075568,4
+3571623,4075568,5
+xiaoxiao0504,4075568,3
+hantabby,4075568,4
+135012811,4075568,2
+119262226,4075568,5
+54184798,4075568,3
+evergreen3507,4075568,3
+131130976,4075568,5
+irisyours,4075568,3
+62668317,4075568,5
+3894772,4075568,3
+erhuyouxuan,4075568,4
+4678419,4075568,5
+67447555,4075568,4
+51401098,4075568,3
+119829181,4075568,4
+60061265,4075568,4
+5318547,4075568,1
+131068311,4075568,4
+1849697,4075568,4
+Longinuss,4075568,3
+51022866,4075568,3
+aixiaoni,4075568,4
+55563514,4075568,4
+76865023,4075568,5
+4451840,4075568,4
+amber0517,4075568,4
+huxiaotian,4075568,2
+20760667,4075568,3
+xuyinaxxxxxxx,4075568,4
+JosephGordon,4075568,5
+134463446,4075568,5
+114633723,4075568,4
+beckham7,4075568,5
+61030127,4075568,4
+97537742,4075568,4
+1951882,4075568,5
+Devil.Q,4075568,3
+64345409,4075568,4
+52841977,4075568,3
+2374450,4075568,4
+xiaoyesu,4075568,3
+i5conan,4075568,4
+bway,4075568,1
+92118420,4075568,4
+44669555,4075568,2
+60347813,4075568,2
+134797075,4075568,4
+sissistar,4075568,3
+coldlife,4075568,3
+neverfm,4075568,4
+58964015,4075568,5
+linchuzhuang,4075568,5
+57259895,4075568,5
+69458682,4075568,3
+130353620,4075568,3
+skyisquiet,4075568,5
+34558131,4075568,2
+64729781,4075568,5
+stone-ron,4075568,4
+black-h,4075568,3
+foleyfan,4075568,4
+44833816,4075568,3
+2444385,4075568,5
+mrbrooks,4075568,4
+61890434,4075568,5
+127688878,4075568,5
+53745833,4075568,5
+53159276,4075568,3
+92806168,4075568,4
+45158500,4075568,4
+shanbaby,4075568,3
+102838934,4075568,3
+xinlong1987,4075568,4
+42277300,4075568,4
+wjmm,4075568,4
+28736165,4075568,4
+IceKey,4075568,3
+37106108,4075568,4
+132082727,4075568,4
+55364280,4075568,3
+sophytao,4075568,3
+q164511490,4075568,3
+53640227,4075568,5
+50805673,4075568,4
+105023809,4075568,3
+53518992,4075568,5
+80912012,4075568,2
+4521508,4075568,3
+alualu,4075568,4
+GameCEO,4075568,4
+Albus-feng,4075568,4
+terranceZC,4075568,4
+39649962,4075568,3
+derek8356,4075568,3
+56144263,4075568,2
+4026025,4075568,3
+94260167,4075568,4
+57096958,4075568,4
+4520580,4075568,4
+1073807,4075568,2
+4190834,4075568,3
+68227584,4075568,3
+ellencx,4075568,-1
+4605744,4075568,4
+xiongkaihang,4075568,3
+75215757,4075568,4
+32505572,4075568,4
+littlesmartness,4075568,4
+amy0303,4075568,4
+miraclesws,4075568,4
+132194541,4075568,5
+58197963,4075568,3
+130248738,4075568,3
+2799911,4075568,3
+38371308,4075568,4
+3873448,4075568,3
+47847363,4075568,3
+6023961,4075568,3
+deathangel54,4075568,1
+52873640,4075568,5
+41430205,4075568,5
+47981838,4075568,3
+85143816,4075568,2
+81845294,4075568,4
+55983625,4075568,2
+3752454,4075568,5
+tinka,4075568,4
+LadySandra,4075568,4
+JoeyXu,4075568,5
+84047449,4075568,3
+hu36,4075568,5
+64009647,4075568,3
+candyrice,4075568,4
+68341229,4075568,3
+sunny333,4075568,2
+51542054,4075568,3
+jiajunzhi,4075568,4
+48808520,4075568,2
+14407650,4075568,4
+alianhei,4075568,3
+65663691,4075568,-1
+loveloki913,4075568,5
+127632434,4075568,3
+47186001,4075568,4
+23575352,4075568,5
+Oah,4075568,5
+64308036,4075568,3
+misawang,4075568,3
+3218379,4075568,3
+61599926,4075568,3
+amay1023,4075568,3
+45484261,4075568,4
+VRoss,4075568,4
+so-it-is,4075568,4
+40511976,4075568,5
+53126913,4075568,4
+74007490,4075568,3
+millylyu,4075568,4
+124142241,4075568,4
+qiongdong,4075568,3
+a476583825,4075568,3
+53602254,4075568,3
+115128718,4075568,1
+45697598,4075568,3
+50616224,4075568,3
+5600454,4075568,4
+kingfokings,4075568,5
+52582202,4075568,4
+51638198,4075568,3
+39961322,4075568,4
+zitangyaye,4075568,4
+52917026,4075568,5
+yyy1240,4075568,3
+xiaoqianquan,4075568,4
+laudee,4075568,3
+anison,4075568,4
+60214722,4075568,3
+2943338,4075568,4
+ednnaLan,4075568,3
+3489125,4075568,4
+56670381,4075568,5
+26641956,4075568,2
+47591131,4075568,-1
+XMK007,4075568,3
+shuangyugongjue,4075568,4
+43096733,4075568,4
+FilmYan,4075568,4
+souring,4075568,1
+yzone,4075568,5
+samii,4075568,3
+2106137,4075568,3
+49917088,4075568,2
+49775406,4075568,5
+54557622,4075568,4
+74762630,4075568,3
+veraaa,4075568,3
+123588338,4075568,3
+52533161,4075568,4
+K.F,4075568,4
+brandonfong,4075568,5
+63250313,4075568,4
+8438524,4075568,2
+4691398,4075568,5
+36872538,4075568,3
+more-u-are,4075568,2
+ts14,4075568,5
+34309421,4075568,2
+lan1999,4075568,4
+problemchildren,4075568,5
+Janone,4075568,3
+44927910,4075568,5
+70007681,4075568,4
+aaaaaaalice,4075568,4
+43301248,4075568,4
+54342307,4075568,3
+51763291,4075568,3
+spartan117,4075568,5
+winnie0212,4075568,4
+34065248,4075568,4
+53706113,4075568,4
+36601365,4075568,3
+84722461,4075568,4
+76467871,4075568,1
+62757407,4075568,4
+35294199,4075568,4
+Z-hy,4075568,4
+57080555,4075568,-1
+fuyulovehyde,4075568,3
+24990940,4075568,4
+55711683,4075568,4
+1077003,4075568,3
+56995704,4075568,4
+53632984,4075568,5
+PCvarment,4075568,-1
+60181393,4075568,3
+crankysophia,4075568,4
+chelsea_baker,4075568,5
+62091433,4075568,5
+bunny-say,4075568,4
+55389424,4075568,4
+48046648,4075568,5
+36342485,4075568,4
+62873920,4075568,4
+petitqq,4075568,4
+OMGZZ,4075568,4
+q962265267,4075568,4
+44608963,4075568,5
+33914811,4075568,-1
+119883443,4075568,4
+74707117,4075568,4
+yxm8854,4075568,5
+79706317,4075568,1
+73530078,4075568,4
+66057217,4075568,3
+62549814,4075568,4
+2867036,4075568,4
+Iamwanghaha,4075568,4
+3783012,4075568,4
+53769979,4075568,3
+115660168,4075568,5
+yinkun,4075568,4
+80769810,4075568,3
+41845743,4075568,4
+jingchen-ai,4075568,3
+74232483,4075568,3
+63412313,4075568,3
+caosancat,4075568,3
+85065723,4075568,4
+56491296,4075568,3
+47077015,4075568,4
+RAINYF,4075568,3
+ahao25,4075568,3
+56686931,4075568,3
+alan_shen,4075568,4
+46149652,4075568,4
+86091558,4075568,4
+50083570,4075568,4
+86585180,4075568,3
+cherryhj,4075568,2
+62894547,4075568,4
+jiaxintuanzi,4075568,3
+vikawang,4075568,2
+LizShen,4075568,4
+Seuysiro,4075568,3
+fengbao945,4075568,4
+57864938,4075568,5
+88078787,4075568,3
+2653727,4075568,3
+3656028,4075568,4
+Magellan,4075568,1
+Polo79,4075568,4
+Sophieless,4075568,4
+36043913,4075568,3
+71217329,4075568,4
+2934232,4075568,4
+IloveyouDanica,4075568,3
+72296325,4075568,2
+zhangrenran,4075568,4
+kokia233,4075568,4
+130365524,4075568,3
+43295924,4075568,3
+61779592,4075568,3
+newbear,4075568,3
+C443658,4075568,4
+59808282,4075568,4
+49923390,4075568,4
+13569936,4075568,4
+45102531,4075568,5
+maomao19901108,4075568,4
+53245859,4075568,5
+2920373,4075568,2
+Tinynana,4075568,5
+87909103,4075568,4
+58314949,4075568,3
+on1ooker,4075568,2
+edocsil,4075568,5
+koklite,4075568,4
+1795295,4075568,4
+121055789,4075568,3
+126740769,4075568,3
+120008046,4075568,5
+ayiann,4075568,4
+ikezhao,4075568,3
+89847136,4075568,3
+action552200,4075568,1
+lovewaiter,4075568,4
+49988447,4075568,3
+YVANFUS,4075568,3
+yeyixin,4075568,4
+samsyu,4075568,3
+67009587,4075568,2
+50190840,4075568,5
+37640485,4075568,4
+75940485,4075568,2
+shunong,4075568,1
+foreverlee,4075568,5
+126804729,4075568,3
+126804729,4075568,3
+63123198,4075568,4
+71416831,4075568,4
+96514775,4075568,3
+121920760,4075568,3
+52679855,4075568,3
+134896142,4075568,3
+ilaolao,4075568,4
+2131520,4075568,3
+yuanqing630,4075568,3
+45344133,4075568,4
+68869311,4075568,4
+46572945,4075568,4
+51227412,4075568,2
+Alcor,4075568,3
+lingrui1995,4075568,3
+2428511,4075568,4
+52529736,4075568,3
+60783143,4075568,4
+1364278,4075568,4
+52762831,4075568,4
+42242645,4075568,-1
+36008103,4075568,3
+yvone1220,4075568,4
+61110036,4075568,2
+53980961,4075568,4
+134503726,4075568,3
+60667221,4075568,5
+4324772,4075568,4
+106587393,4075568,5
+85324202,4075568,4
+cyrus_wong,4075568,2
+131329189,4075568,-1
+MissLeft,4075568,4
+41686939,4075568,5
+74246341,4075568,4
+55286456,4075568,5
+42600622,4075568,-1
+43303328,4075568,5
+4146399,4075568,4
+71878737,4075568,3
+49021922,4075568,3
+49048693,4075568,3
+softshock,4075568,-1
+16348172,4075568,4
+qiluoluo,4075568,3
+doll88,4075568,4
+83123138,4075568,4
+51688901,4075568,3
+49273310,4075568,4
+3355859,4075568,4
+blueskyfly,4075568,4
+ivy726,4075568,4
+51047476,4075568,3
+chinriya,4075568,3
+52755028,4075568,4
+CharlesLC,4075568,2
+42368147,4075568,2
+51477715,4075568,3
+83389859,4075568,4
+102885531,4075568,4
+angelababy_,4075568,3
+12794807,4075568,3
+107097785,4075568,5
+2340389,4075568,3
+39725541,4075568,5
+120291697,4075568,4
+84174348,4075568,3
+129346558,4075568,4
+1886385,4075568,3
+27344898,4075568,4
+angelinebyi,4075568,4
+43375121,4075568,4
+120287193,4075568,4
+stefani_hz,4075568,3
+47418045,4075568,4
+74084881,4075568,5
+14113539,4075568,4
+3535619,4075568,5
+bbfary,4075568,3
+130490518,4075568,4
+2005598,4075568,4
+btone0808,4075568,3
+90884547,4075568,4
+57743813,4075568,3
+77485550,4075568,4
+65366516,4075568,2
+Cgangs,4075568,-1
+yutingamy,4075568,2
+83684239,4075568,2
+63513932,4075568,2
+92151320,4075568,5
+fangxiaotang,4075568,4
+Ada_quan,4075568,-1
+tianyajie,4075568,4
+andrpirl,4075568,4
+muxiaoxu,4075568,3
+62877248,4075568,4
+zykmilan,4075568,3
+120263299,4075568,3
+59867809,4075568,3
+laespoirao,4075568,5
+rinneco,4075568,4
+grannys_bear,4075568,3
+3540441,4075568,3
+67006833,4075568,5
+44542197,4075568,3
+NinevehQ,4075568,3
+hirochi,4075568,3
+1376657,4075568,3
+11615091,4075568,4
+87602683,4075568,4
+3944394,4075568,3
+54049800,4075568,3
+imoviekobe,4075568,4
+jsc528,4075568,4
+ludj_007,4075568,5
+banyinxie,4075568,3
+xita,4075568,3
+montcalgary,4075568,3
+wen_Schwartz,4075568,3
+lesleyjiang,4075568,3
+64674632,4075568,-1
+71455965,4075568,4
+liqiyao8931,4075568,4
+71924539,4075568,3
+YellowDi,4075568,5
+63177196,4075568,4
+gavinturkey,4075568,4
+121946361,4075568,4
+lynnesay,4075568,3
+36193600,4075568,3
+HeyAriel,4075568,4
+xuaoling,4075568,3
+88101207,4075568,4
+claireqq,4075568,4
+63371877,4075568,4
+47417998,4075568,2
+77058316,4075568,4
+45459664,4075568,4
+87576742,4075568,5
+80442320,4075568,4
+67954129,4075568,4
+123963583,4075568,4
+73542789,4075568,5
+110621378,4075568,5
+75235038,4075568,4
+90556805,4075568,4
+49198106,4075568,4
+48198502,4075568,4
+2374657,4075568,3
+Sinatanis,4075568,4
+62825162,4075568,4
+play0829,4075568,4
+52399993,4075568,4
+103182067,4075568,4
+1039253,4075568,4
+Leslie_ontheway,4075568,3
+58091395,4075568,5
+snowmeg,4075568,4
+kiwiiiii,4075568,3
+dirkhysteria,4075568,2
+haizor,4075568,4
+54036678,4075568,5
+54885866,4075568,2
+51047226,4075568,4
+52470011,4075568,3
+8312118,4075568,4
+72230455,4075568,4
+shenliyang,4075568,5
+15183757,4075568,3
+131514121,4075568,3
+133040027,4075568,5
+100453044,4075568,5
+102744158,4075568,4
+sunnyisle,4075568,2
+44431964,4075568,3
+Luna_me,4075568,3
+116778035,4075568,4
+4325552,4075568,3
+51930449,4075568,5
+kloccd,4075568,5
+BakeryforMe,4075568,5
+14277787,4075568,3
+25982397,4075568,3
+duan2,4075568,4
+46718931,4075568,4
+Heyimwalker,4075568,4
+133471355,4075568,4
+Mo-Cuishle,4075568,4
+50297767,4075568,4
+4595705,4075568,5
+4747606,4075568,4
+51606142,4075568,2
+69196878,4075568,3
+77289829,4075568,4
+disheron,4075568,4
+1440686,4075568,4
+78588214,4075568,4
+zebramomo,4075568,3
+zebramomo,4075568,3
+37497401,4075568,5
+75007342,4075568,4
+74783952,4075568,3
+64618863,4075568,3
+adelebleu,4075568,4
+71547837,4075568,5
+56758013,4075568,4
+26713841,4075568,4
+57405478,4075568,4
+42646716,4075568,3
+hooklt,4075568,3
+Clara0916,4075568,3
+65400706,4075568,5
+31914408,4075568,4
+sheldonkao,4075568,3
+13833588,4075568,4
+93476152,4075568,5
+49576689,4075568,4
+69967865,4075568,5
+65075320,4075568,5
+62715368,4075568,5
+63531003,4075568,4
+lauer,4075568,4
+abenoseimei,4075568,4
+reave,4075568,4
+132192126,4075568,5
+ask4more,4075568,3
+73112329,4075568,4
+66716197,4075568,5
+97517593,4075568,5
+71107908,4075568,4
+88163092,4075568,4
+abin520918,4075568,4
+ys1013,4075568,3
+astroangel,4075568,4
+50210563,4075568,4
+48770075,4075568,4
+MaratChan,4075568,-1
+2445750,4075568,5
+2445750,4075568,5
+64740791,4075568,2
+52876797,4075568,5
+53411711,4075568,4
+37424688,4075568,3
+xianxianchen,4075568,4
+xlee,4075568,3
+3772330,4075568,4
+68700662,4075568,3
+vividodo,4075568,3
+linjunzhe,4075568,2
+itayloriswift,4075568,4
+52278256,4075568,5
+smallove816,4075568,-1
+xinwenlulu,4075568,4
+molecule,4075568,5
+moiselletea,4075568,3
+66266382,4075568,4
+75298987,4075568,5
+yuusuke_riku,4075568,4
+sevengin,4075568,5
+LLLLLucas,4075568,4
+73763567,4075568,3
+Pabalee,4075568,4
+anywherebuthome,4075568,3
+50112413,4075568,4
+2597570,4075568,4
+47637789,4075568,4
+48156038,4075568,4
+78403986,4075568,4
+21771687,4075568,5
+liseahy,4075568,4
+2409685,4075568,2
+dwn0810,4075568,5
+tieliuwudi,4075568,5
+64241350,4075568,2
+53598922,4075568,3
+E-lim,4075568,4
+k.keqing,4075568,5
+Du_sunflower,4075568,4
+sunshinezz1991,4075568,4
+ossianshiwo,4075568,3
+56198749,4075568,4
+52807688,4075568,4
+58905615,4075568,5
+19224434,4075568,3
+rharuki,4075568,2
+Hida,4075568,3
+131838639,4075568,4
+59465835,4075568,4
+2177155,4075568,3
+52536542,4075568,4
+heylucyliu,4075568,5
+1359052,4075568,3
+103042585,4075568,5
+camia,4075568,4
+KristenL,4075568,5
+2220298,4075568,3
+60372811,4075568,5
+50545656,4075568,4
+50545656,4075568,4
+54845530,4075568,3
+132791896,4075568,-1
+60348817,4075568,4
+79272694,4075568,5
+alienzyc,4075568,4
+stevecarell,4075568,3
+zillyromantic,4075568,3
+46845668,4075568,2
+47098539,4075568,4
+49870932,4075568,3
+birdgirl,4075568,4
+sinbone,4075568,2
+iceboal,4075568,2
+Serrya,4075568,5
+Julinawang,4075568,4
+48816171,4075568,3
+84384668,4075568,4
+fenglimuren,4075568,3
+FK621,4075568,4
+FK621,4075568,4
+4896156,4075568,4
+whateverwbwb,4075568,3
+bobbygd,4075568,4
+1963086,4075568,4
+60183259,4075568,4
+81404706,4075568,3
+zzhumemory,4075568,3
+Violetleite,4075568,3
+pumpkin_s,4075568,4
+LilHayah,4075568,-1
+simonyao,4075568,3
+125495885,4075568,5
+Christina63,4075568,4
+6679580,4075568,3
+3982862,4075568,3
+85811535,4075568,4
+51950907,4075568,5
+33663451,4075568,4
+53518939,4075568,3
+chassit,4075568,4
+sosansosan,4075568,3
+a1830996698,4075568,3
+oakhui,4075568,5
+evolhjt,4075568,3
+thechamp,4075568,4
+57416285,4075568,5
+charlottey,4075568,2
+kimoqi,4075568,3
+EileenUnknown,4075568,4
+Mayk,4075568,3
+VicW330,4075568,5
+48484470,4075568,3
+128799458,4075568,4
+wann_,4075568,4
+27560437,4075568,4
+44622653,4075568,4
+vigshane,4075568,4
+idiotxu,4075568,4
+63422177,4075568,2
+75266929,4075568,3
+ddddo,4075568,4
+51910569,4075568,4
+lazydesigner,4075568,3
+ALDI81,4075568,3
+53644977,4075568,3
+an__,4075568,4
+wz1031h,4075568,3
+Suuuuuure,4075568,3
+engamichelle,4075568,5
+Knight9,4075568,3
+136957672,4075568,4
+84995051,4075568,3
+123630110,4075568,4
+64386196,4075568,-1
+1478764,4075568,3
+51608515,4075568,4
+8941823,4075568,4
+nick2a,4075568,3
+Leo-Huang,4075568,3
+121844395,4075568,2
+40789061,4075568,3
+68092386,4075568,5
+prague2046,4075568,3
+45939025,4075568,3
+maimufei,4075568,3
+landystar,4075568,4
+130445057,4075568,3
+EloiseL,4075568,4
+ink1020,4075568,2
+79879080,4075568,4
+jessicajoe,4075568,5
+50476857,4075568,3
+2117824,4075568,3
+w112233,4075568,5
+1849986,4075568,4
+baozha,4075568,3
+ohghost,4075568,4
+39132623,4075568,3
+47799758,4075568,4
+2720160,6039412,2
+56123189,6039412,2
+jian-man,6039412,2
+136739686,6039412,4
+qiuyudoudou,6039412,5
+52046624,6039412,3
+ho000,6039412,4
+2131520,6039412,3
+76793809,6039412,2
+113068656,6039412,4
+97693514,6039412,2
+103277074,6039412,3
+3203277,6039412,4
+wongsam,6039412,4
+38408883,6039412,4
+tranicaa,6039412,5
+69439267,6039412,4
+evergreeen,6039412,3
+68630098,6039412,3
+hanxiaonuan,6039412,3
+lingdongling,6039412,2
+137555231,6039412,3
+46587877,6039412,3
+byeprincess,6039412,3
+62341894,6039412,3
+30218761,6039412,3
+68744286,6039412,4
+58094531,6039412,3
+18071732,6039412,3
+lilimin5161,6039412,2
+45032609,6039412,3
+82216412,6039412,4
+52005761,6039412,2
+nadiawoo,6039412,4
+67436507,6039412,2
+67702705,6039412,2
+irissui,6039412,3
+39360207,6039412,4
+carolinix,6039412,4
+130540894,6039412,2
+WickyX,6039412,2
+128867718,6039412,4
+jixixi,6039412,2
+3797778,6039412,2
+71016890,6039412,5
+YO.YUKI,6039412,3
+66205663,6039412,4
+83166758,6039412,3
+46824404,6039412,3
+59158037,6039412,4
+1032754,6039412,3
+khalilfongmlg,6039412,4
+oliviafyy,6039412,3
+2920373,6039412,4
+65563696,6039412,3
+85320947,6039412,2
+3310337,6039412,3
+onlymcdull,6039412,3
+53869706,6039412,4
+christinechu,6039412,4
+4580713,6039412,5
+53033447,6039412,2
+2558325,6039412,3
+kingiknow,6039412,3
+121777488,6039412,4
+130353620,6039412,3
+34280530,6039412,4
+throughwind,6039412,3
+57991554,6039412,3
+hongliang5623,6039412,3
+35677289,6039412,3
+66408075,6039412,-1
+46603705,6039412,3
+57372938,6039412,2
+xmengyao,6039412,4
+2385119,6039412,3
+53884528,6039412,-1
+darlingyxy,6039412,-1
+qingxingji47,6039412,2
+63741942,6039412,3
+52997821,6039412,3
+68630000,6039412,3
+4657339,6039412,2
+3524450,6039412,3
+34574338,6039412,3
+idevin,6039412,2
+kilo2009,6039412,2
+Kamelia-Jia,6039412,3
+136344918,6039412,3
+86255707,6039412,4
+3477296,6039412,-1
+108816754,6039412,3
+46460186,6039412,3
+50383138,6039412,3
+135545986,6039412,3
+127950752,6039412,3
+iyeyu,6039412,-1
+42841681,6039412,1
+2965102,6039412,3
+baywreath,6039412,3
+2857340,6039412,-1
+65145890,6039412,3
+mytong,6039412,2
+65642489,6039412,3
+19835187,6039412,3
+66488518,6039412,3
+sevenfall,6039412,2
+63977281,6039412,2
+44820765,6039412,4
+pariseros,6039412,4
+44326808,6039412,3
+43978103,6039412,4
+kidsama,6039412,4
+2847632,6039412,-1
+54043321,6039412,3
+ichic,6039412,3
+daisywj,6039412,3
+47293974,6039412,4
+4094159,6039412,4
+ltracy,6039412,3
+46327229,6039412,2
+77164733,6039412,3
+135320329,6039412,3
+95443822,6039412,2
+crazybitch08,6039412,4
+104985254,6039412,3
+74508061,6039412,3
+isnico,6039412,3
+70321611,6039412,3
+72086305,6039412,2
+71176381,6039412,5
+114356120,6039412,3
+hxtdkz1226,6039412,4
+54195425,6039412,5
+122025364,6039412,3
+65496704,6039412,2
+poppy7777,6039412,3
+114516064,6039412,3
+66167939,6039412,3
+61145820,6039412,5
+131909298,6039412,3
+vickyfu,6039412,2
+4606849,6039412,4
+59040186,6039412,2
+62414047,6039412,3
+62321975,6039412,5
+68238165,6039412,2
+127811271,6039412,4
+95458846,6039412,2
+45497857,6039412,4
+61276700,6039412,3
+72628748,6039412,3
+50945725,6039412,2
+sarah_ni330,6039412,4
+tiepido,6039412,4
+cheerpunkid,6039412,2
+Cryostatgirl,6039412,3
+56070920,6039412,3
+48869247,6039412,5
+meltyice,6039412,3
+53458096,6039412,3
+IcbM,6039412,4
+3672180,6039412,4
+68550063,6039412,4
+60199001,6039412,5
+zxyang,6039412,4
+68496579,6039412,3
+32536351,6039412,2
+89103199,6039412,3
+42190092,6039412,-1
+51741700,6039412,3
+cinciu,6039412,-1
+49876674,6039412,3
+1887182,6039412,3
+1101526,6039412,2
+61681574,6039412,4
+123002309,6039412,2
+48322771,6039412,3
+laoA,6039412,5
+54482277,6039412,3
+56095656,6039412,2
+46899635,6039412,3
+LyleWang,6039412,4
+luxilu,6039412,-1
+57550343,6039412,5
+56807608,6039412,4
+Psycho_L,6039412,2
+3219043,6039412,3
+50144933,6039412,2
+lllusion,6039412,-1
+2394323,6039412,3
+131740688,6039412,3
+8701005,6039412,4
+axjlxch,6039412,1
+137483520,6039412,3
+103646867,6039412,2
+2334495,6039412,-1
+crystal19910312,6039412,-1
+ledaodao,6039412,2
+85114697,6039412,4
+67139992,6039412,3
+98956225,6039412,2
+74920289,6039412,3
+4537053,6039412,3
+44447664,6039412,4
+64713560,6039412,2
+Surecan,6039412,3
+76025225,6039412,3
+66817705,6039412,5
+48090771,6039412,2
+82075343,6039412,3
+84866154,6039412,3
+121633982,6039412,2
+1101491,6039412,3
+68530717,6039412,4
+136714687,6039412,3
+81433597,6039412,3
+onlyyoung,6039412,3
+62748351,6039412,3
+ayannagai,6039412,3
+seeing...,6039412,4
+47319867,6039412,5
+88658178,6039412,2
+liheping0310,6039412,1
+126911965,6039412,3
+63889861,6039412,3
+54955614,6039412,4
+shixinyu,6039412,3
+yaoxingjia,6039412,4
+127755762,6039412,3
+2883264,6039412,3
+48532127,6039412,4
+127080746,6039412,2
+136179114,6039412,5
+54211342,6039412,3
+60634927,6039412,4
+56187691,6039412,3
+mancha,6039412,2
+61752288,6039412,3
+70238509,6039412,5
+S.H.I.L.E.R,6039412,5
+79478918,6039412,4
+79573537,6039412,2
+83782620,6039412,4
+rollin,6039412,3
+Yulia,6039412,3
+1247885,6039412,3
+52350227,6039412,4
+3047846,6039412,5
+123029780,6039412,4
+125770398,6039412,3
+83486677,6039412,2
+lulu123,6039412,-1
+62008000,6039412,2
+66867402,6039412,3
+121262498,6039412,3
+126380434,6039412,1
+81524908,6039412,4
+fayezhang,6039412,3
+137206904,6039412,4
+2571322,6039412,4
+120187474,6039412,2
+49968401,6039412,3
+46353056,6039412,2
+44013526,6039412,3
+70313784,6039412,3
+52415788,6039412,2
+114560463,6039412,4
+90430000,6039412,3
+amanda0728,6039412,5
+69095785,6039412,3
+120741265,6039412,3
+49384394,6039412,2
+37945803,6039412,3
+68550655,6039412,4
+69838036,6039412,1
+55575289,6039412,2
+houdana,6039412,3
+124640229,6039412,3
+130952703,6039412,3
+70923979,6039412,3
+2798198,6039412,2
+stephy0627,6039412,5
+133507859,6039412,3
+52443906,6039412,2
+115611401,6039412,4
+135474125,6039412,4
+variation,6039412,2
+cjmhehe,6039412,3
+care-about-me,6039412,5
+43986624,6039412,4
+56450349,6039412,3
+64441475,6039412,4
+kristin0711,6039412,3
+cenxiaoceng,6039412,-1
+49712271,6039412,3
+eeiceeic,6039412,2
+115203825,6039412,3
+tatafox,6039412,-1
+littlenono,6039412,3
+littlenono,6039412,3
+16820487,6039412,-1
+57258871,6039412,3
+loralu,6039412,3
+66888888,6039412,3
+82269433,6039412,5
+125010605,6039412,3
+37019836,6039412,3
+cqingteng,6039412,4
+dudumozart,6039412,2
+xiaohuaxia,6039412,4
+4839154,6039412,4
+4576801,6039412,3
+48935399,6039412,5
+133047552,6039412,3
+Amanda-Z,6039412,2
+50513548,6039412,2
+54562736,6039412,3
+132958067,6039412,4
+countcrows,6039412,2
+AgiHan0221,6039412,3
+scorpionnie,6039412,4
+34859400,6039412,3
+3491773,6039412,4
+rainystar,6039412,4
+96479513,6039412,3
+kiwiiiii,6039412,-1
+51698835,6039412,3
+62498869,6039412,3
+nensey,6039412,3
+liaozhongchao,6039412,2
+yuan-wang,6039412,4
+lovemofei,6039412,3
+48286955,6039412,2
+102108363,6039412,5
+48370487,6039412,3
+62922013,6039412,1
+60583715,6039412,4
+85316996,6039412,3
+61455222,6039412,3
+chris027,6039412,3
+Maoplace021,6039412,3
+3510608,6039412,3
+7778058,6039412,4
+1158756,6039412,1
+Supper1225,6039412,3
+34765454,6039412,2
+63714261,6039412,3
+coldestwind,6039412,3
+tutudance,6039412,5
+14286734,6039412,5
+96638998,6039412,4
+62600930,6039412,5
+46880306,6039412,3
+83116719,6039412,3
+taolitianxia,6039412,5
+133533083,6039412,3
+52970455,6039412,2
+119583854,6039412,3
+80460975,6039412,3
+122287111,6039412,3
+lola721,6039412,3
+51503469,6039412,4
+s_3,6039412,4
+48088093,6039412,4
+53301589,6039412,3
+121475864,6039412,4
+GeSMD,6039412,4
+130919245,6039412,3
+miki_ai,6039412,3
+66274614,6039412,4
+50195547,6039412,3
+niangyue,6039412,2
+guojiaqi1015,6039412,4
+tzungtzu,6039412,3
+guto,6039412,3
+55386802,6039412,5
+pineappledog,6039412,3
+ria_really,6039412,3
+43416259,6039412,4
+sxhour,6039412,4
+73075482,6039412,3
+pangzimiao,6039412,3
+89928823,6039412,3
+75145515,6039412,2
+87834515,6039412,3
+101503219,6039412,3
+1310734,6039412,3
+57947049,6039412,3
+45014171,6039412,3
+35475264,6039412,2
+58697566,6039412,2
+2053753,6039412,3
+3264938,6039412,4
+74589582,6039412,3
+51245229,6039412,3
+iklong,6039412,4
+48919627,6039412,3
+43506224,6039412,2
+Sun1989,6039412,3
+f91_82,6039412,2
+52420121,6039412,3
+85375875,6039412,3
+49949996,6039412,4
+1378503,6039412,3
+2216479,6039412,2
+2119698,6039412,3
+64060371,6039412,5
+57808087,6039412,4
+konglinghuanyin,6039412,2
+sisiwang,6039412,3
+68102492,6039412,4
+yuuuuuki,6039412,-1
+65031840,6039412,3
+114833164,6039412,5
+97365571,6039412,3
+wlhjz,6039412,3
+1286114,6039412,2
+48006997,6039412,2
+elephanthuihui,6039412,2
+103796743,6039412,4
+honeylkx,6039412,3
+50117482,6039412,4
+62476143,6039412,1
+81378317,6039412,4
+leexiaoxiao,6039412,3
+135746612,6039412,2
+wklappt,6039412,3
+4467348,6039412,3
+136337190,6039412,4
+47601113,6039412,5
+49103701,6039412,2
+2391230,6039412,3
+61483763,6039412,4
+wrnmdk,6039412,5
+107481201,6039412,3
+38853803,6039412,3
+58087297,6039412,3
+lukaka,6039412,2
+79897130,6039412,4
+51310183,6039412,3
+79568500,6039412,3
+64821035,6039412,4
+68617708,6039412,2
+53518992,6039412,3
+Hanndiex_,6039412,3
+nigu_lulu,6039412,2
+monomonotree,6039412,3
+41127672,6039412,4
+120280467,6039412,3
+4541080,6039412,1
+50805210,6039412,-1
+96146816,6039412,3
+magiahaoking,6039412,3
+136274471,6039412,5
+2121196,6039412,4
+miss_CMYK,6039412,3
+78277982,6039412,2
+67009587,6039412,3
+yimoyoulan916,6039412,3
+1805528,6039412,4
+90415514,6039412,4
+50038300,6039412,2
+sp0721,6039412,3
+43120723,6039412,3
+51469631,6039412,3
+x1Ao_y,6039412,4
+iisakura,6039412,1
+63845710,6039412,3
+ohAnthea,6039412,3
+52484761,6039412,3
+127675582,6039412,1
+55874346,6039412,5
+baggywalking,6039412,3
+cherryye,6039412,3
+hellomybluelife,6039412,3
+30221434,6039412,2
+48942391,6039412,2
+47558444,6039412,4
+jessicatow,6039412,2
+etsbin12,6039412,3
+3505386,6039412,3
+3326265,6039412,5
+76552950,6039412,2
+1379680,6039412,3
+Ali1065641315,6039412,4
+57825183,6039412,4
+2166987,6039412,3
+90697037,6039412,4
+62699217,6039412,4
+engram_4,6039412,3
+baoziyudigua,6039412,4
+49256651,6039412,-1
+haimengkai,6039412,3
+mianmaimai,6039412,3
+98605942,6039412,2
+4116226,6039412,3
+4364181,6039412,3
+135302519,6039412,2
+2426372,6039412,3
+127569899,6039412,2
+leafmela,6039412,2
+summerose,6039412,3
+136097338,6039412,3
+alicelv,6039412,5
+joy4,6039412,3
+petitlynn,6039412,2
+23380026,6039412,2
+69354188,6039412,3
+jeanwoo,6039412,3
+83295870,6039412,4
+62891256,6039412,3
+103815567,6039412,4
+45340658,6039412,3
+59475205,6039412,3
+131364833,6039412,5
+micsense,6039412,3
+46712687,6039412,1
+eunnis,6039412,5
+62688110,6039412,4
+81916004,6039412,3
+35461386,6039412,3
+50636205,6039412,4
+43961500,6039412,4
+59303781,6039412,2
+66552525,6039412,3
+45006589,6039412,5
+Malivoni,6039412,4
+63494405,6039412,4
+132410493,6039412,5
+134495648,6039412,2
+small7,6039412,5
+60149462,6039412,3
+45473293,6039412,3
+48707650,6039412,3
+49191117,6039412,4
+4451071,6039412,5
+49467147,6039412,3
+milkteaLayla,6039412,3
+C121,6039412,3
+C121,6039412,3
+42349049,6039412,2
+sarahsun,6039412,3
+tomomasa,6039412,3
+zy04154,6039412,4
+Lucieni,6039412,3
+45693911,6039412,3
+46656528,6039412,3
+112920430,6039412,4
+49731512,6039412,-1
+25572888,6039412,5
+kingkinlx7bibi,6039412,4
+54833078,6039412,3
+9167697,6039412,-1
+arcueid,6039412,3
+40519102,6039412,3
+plastictree,6039412,2
+63194138,6039412,1
+54076693,6039412,3
+maoking,6039412,3
+maoking,6039412,3
+cheeseberry,6039412,2
+KiD-KiM,6039412,3
+lindsaymao,6039412,3
+70474463,6039412,4
+70109874,6039412,3
+60894983,6039412,4
+36108304,6039412,3
+64620630,6039412,3
+zoe_su,6039412,3
+62855309,6039412,3
+myiesha,6039412,2
+2837832,6039412,3
+fantacools,6039412,5
+121920760,6039412,2
+41252524,6039412,4
+jinsy,6039412,3
+far-deep,6039412,4
+61054715,6039412,2
+2040214,6039412,3
+fionasocool,6039412,2
+4497549,6039412,5
+fishpjr,6039412,3
+8184556,6039412,4
+2265138,6039412,3
+70729984,6039412,4
+Insight,6039412,4
+katherine0620,6039412,2
+130156451,6039412,2
+littleGu,6039412,3
+chloe6668,6039412,4
+piulidayoki,6039412,3
+60411717,6039412,3
+2626566,6039412,3
+4236471,6039412,3
+rainloveyy,6039412,3
+2606254,6039412,3
+3426596,6039412,3
+nancy425,6039412,3
+1804035,6039412,1
+Monderian,6039412,3
+peiluz,6039412,2
+guiguibuwugui,6039412,3
+131259091,6039412,3
+63682283,6039412,2
+78974642,6039412,2
+2893753,6039412,3
+momo_pan,6039412,-1
+54551242,6039412,4
+66646375,6039412,4
+114353499,6039412,3
+69862656,6039412,-1
+74960024,6039412,3
+48848721,6039412,2
+daodi,6039412,3
+49684268,6039412,3
+47869637,6039412,1
+58177592,6039412,1
+4231166,6039412,3
+3673640,6039412,3
+hello_ten,6039412,2
+seraphzz,6039412,3
+parisyu,6039412,4
+sarah59,6039412,3
+124369176,6039412,4
+55939788,6039412,5
+63788967,6039412,3
+LeeMar,6039412,3
+darlinfish,6039412,-1
+131012186,6039412,5
+kidsboom,6039412,3
+10595793,6039412,3
+2352053,6039412,2
+133788229,6039412,4
+135614717,6039412,3
+55380497,6039412,5
+46398519,6039412,4
+57168306,6039412,3
+2415644,6039412,4
+Erotica,6039412,4
+lunapurple,6039412,3
+1821069,6039412,5
+evastone,6039412,3
+42961533,6039412,5
+52873693,6039412,1
+1130880,6039412,2
+May1997,6039412,3
+102643843,6039412,5
+kaqen,6039412,5
+jenesaispas,6039412,2
+toyshen,6039412,4
+56922790,6039412,4
+58015177,6039412,5
+4270273,6039412,5
+124146990,6039412,3
+48197946,6039412,2
+shmilymichelle,6039412,2
+135519326,6039412,3
+134528233,6039412,3
+kingtreetooth,6039412,2
+68821782,6039412,1
+122399571,6039412,4
+shingle,6039412,2
+leonardo2,6039412,3
+mancyann,6039412,4
+106283796,6039412,2
+anjingyigeren,6039412,-1
+51664816,6039412,5
+88256583,6039412,3
+jessicah,6039412,4
+76638389,6039412,2
+23129411,6039412,3
+34946223,6039412,3
+23964620,6039412,3
+lovepeople,6039412,4
+25924528,6039412,4
+roger0420,6039412,4
+faye.yu,6039412,3
+33245540,6039412,3
+135317252,6039412,2
+hou_yuting,6039412,-1
+84311404,6039412,3
+13653549,6039412,4
+59301340,6039412,4
+god8knows,6039412,3
+loveless002,6039412,-1
+77922789,6039412,3
+zhanglejing,6039412,4
+shushushu,6039412,5
+pierrewrs,6039412,3
+SnoozyOwl,6039412,3
+126331855,6039412,4
+2236050,6039412,2
+xdzhouli,6039412,3
+121481681,6039412,3
+93486979,6039412,2
+49097725,6039412,3
+72365575,6039412,2
+ala7lee,6039412,3
+135396561,6039412,-1
+104041207,6039412,4
+Quester,6039412,3
+65108877,6039412,3
+119884183,6039412,3
+flyingCaptian,6039412,-1
+41111572,6039412,3
+61845288,6039412,4
+64192074,6039412,3
+hatelies,6039412,-1
+113986971,6039412,5
+36627775,6039412,-1
+Buy_one,6039412,3
+hthj,6039412,4
+73656056,6039412,3
+thezoo,6039412,1
+2368703,6039412,2
+lensmo,6039412,3
+aetian,6039412,4
+G-Dear,6039412,4
+koukouxuanhe,6039412,2
+53476786,6039412,3
+LIngrid,6039412,3
+48101089,6039412,2
+amytsai,6039412,4
+98578639,6039412,-1
+34900547,6039412,3
+chyj926,6039412,-1
+130599620,6039412,3
+ongleyi,6039412,3
+1998991,6039412,5
+58611624,6039412,3
+67516676,6039412,4
+103380368,6039412,3
+ster,6039412,2
+58505287,6039412,-1
+3513626,6039412,3
+77017255,6039412,3
+Liverpoolsun,6039412,2
+52903037,6039412,3
+tamiwang,6039412,-1
+31820753,6039412,3
+snipersteve,6039412,-1
+tovera,6039412,2
+66770908,6039412,3
+61654956,6039412,3
+124069663,6039412,3
+45448846,6039412,2
+2946363,6039412,5
+piratte,6039412,-1
+DangerRose,6039412,1
+miss2tao,6039412,3
+81958013,6039412,2
+abin520918,6039412,3
+91985440,6039412,3
+gongzitian,6039412,2
+zi-jojopig,6039412,3
+xiaopang1106,6039412,4
+sweettalk5205,6039412,4
+LoveJHart,6039412,4
+87651171,6039412,1
+75242193,6039412,4
+47537834,6039412,1
+45238478,6039412,2
+75023854,6039412,3
+ling_chen,6039412,-1
+Pincent,6039412,2
+yomaybe,6039412,3
+73204677,6039412,3
+123183376,6039412,4
+ivy_lmj,6039412,3
+72642943,6039412,4
+33954897,6039412,4
+pinger87,6039412,3
+102705579,6039412,4
+65138658,6039412,5
+2620278,6039412,1
+55593701,6039412,3
+127330626,6039412,2
+freewhao,6039412,4
+85156145,6039412,4
+75235466,6039412,2
+135012811,6039412,3
+95374874,6039412,3
+4392505,6039412,3
+freshyyblue,6039412,1
+49767497,6039412,-1
+81697410,6039412,3
+molsy,6039412,3
+shhhhhhh,6039412,3
+71814413,6039412,3
+49022504,6039412,4
+qingnianluoke,6039412,2
+47025677,6039412,3
+clijsterssophia,6039412,3
+83660319,6039412,3
+bowenqiangji,6039412,3
+41207080,6039412,3
+poppyprincess,6039412,3
+2671866,6039412,3
+74392239,6039412,3
+90205716,6039412,3
+63841440,6039412,3
+3571623,6039412,5
+janejeh,6039412,2
+raphaelife,6039412,2
+69679169,6039412,3
+102958157,6039412,2
+skag,6039412,3
+66995930,6039412,3
+athenasaga,6039412,3
+dzl15,6039412,3
+57850208,6039412,3
+daijialu1992,6039412,3
+38770627,6039412,3
+68932301,6039412,4
+Adrift_eternity,6039412,5
+47195572,6039412,5
+55849798,6039412,3
+emily0016,6039412,-1
+67439008,6039412,4
+133241079,6039412,3
+49145559,6039412,3
+doddlegone,6039412,3
+Kristy_Cheung,6039412,2
+zest,6039412,3
+79193917,6039412,3
+lostcm,6039412,-1
+EstellaSun,6039412,3
+63963645,6039412,4
+43921829,6039412,3
+26612648,6039412,3
+54364299,6039412,3
+45359667,6039412,2
+3284948,6039412,5
+2121850,6039412,3
+1141627,6039412,3
+ark_Rosie,6039412,3
+1570580,6039412,3
+11760447,6039412,3
+48965557,6039412,4
+48965557,6039412,4
+cynthiayunyun,6039412,5
+vagabonder912,6039412,4
+34990141,6039412,3
+via.van,6039412,4
+53294489,6039412,3
+clamianmian,6039412,2
+39540944,6039412,3
+72040927,6039412,4
+6679580,6039412,3
+51157596,6039412,3
+49260594,6039412,2
+48342724,6039412,4
+133348345,6039412,2
+27518977,6039412,3
+133758631,6039412,4
+100303280,6039412,2
+57981494,6039412,4
+67946884,6039412,2
+Rotta,6039412,3
+Rotta,6039412,3
+97199608,6039412,3
+jhm279697317,6039412,4
+rucic,6039412,5
+36681127,6039412,3
+42196106,6039412,3
+41017931,6039412,2
+130093495,6039412,3
+57984336,6039412,3
+q7queen,6039412,1
+66493866,6039412,3
+52514383,6039412,3
+fengzimin0221,6039412,4
+sub206,6039412,2
+shooting-stars,6039412,1
+47444692,6039412,3
+3031709,6039412,3
+Lynx-GAGA,6039412,4
+sherrydjm,6039412,3
+81698816,6039412,4
+53932616,6039412,2
+80659174,6039412,4
+128130563,6039412,3
+piecelost,6039412,3
+116902692,6039412,3
+81835425,6039412,2
+134131182,6039412,3
+wangmian0729,6039412,3
+62489520,6039412,3
+35652268,6039412,3
+destiny049,6039412,2
+32334286,6039412,2
+127855614,6039412,4
+3119464,6039412,3
+68978861,6039412,3
+missair,6039412,3
+wymushroom,6039412,4
+94274253,6039412,2
+53242249,6039412,3
+Teresa.O_O,6039412,3
+baizi886,6039412,3
+Livingintherose,6039412,3
+Daisyjing,6039412,5
+ffgg34,6039412,2
+weishenmo,6039412,3
+greenyiruo,6039412,-1
+wangsc1102,6039412,3
+Ouidah,6039412,2
+xyy_1214,6039412,3
+yan920131,6039412,3
+1526094,6039412,3
+73458864,6039412,3
+65247884,6039412,3
+53318659,6039412,3
+citruss,6039412,3
+lifangze,6039412,5
+syhhh,6039412,5
+122154980,6039412,3
+musair,6039412,4
+michelle_hyde,6039412,4
+50939193,6039412,3
+elainemumu,6039412,2
+1843710,6039412,4
+1322402,6039412,3
+gzrunman,6039412,5
+70656928,6039412,3
+58722109,6039412,3
+kaname,6039412,4
+119431735,6039412,4
+50738842,6039412,1
+121243676,6039412,2
+56652981,6039412,2
+BaBaBaL,6039412,4
+55965923,6039412,2
+47508082,6039412,4
+48704882,6039412,2
+44661693,6039412,3
+53228249,6039412,3
+31863102,6039412,4
+lucyshang,6039412,3
+2919381,6039412,3
+87863211,6039412,5
+freya0714,6039412,2
+1998903,6039412,3
+122482788,6039412,3
+121016269,6039412,4
+lareida,6039412,2
+12571373,6039412,2
+2595920,6039412,3
+30322114,6039412,-1
+57473807,6039412,3
+chenxiaodong,6039412,2
+stepnine,6039412,3
+24112539,6039412,3
+fortiffany,6039412,4
+17247716,6039412,3
+Miss_Young,6039412,1
+2236519,6039412,3
+iamtough,6039412,3
+4200336,6039412,1
+39588548,6039412,5
+44176282,6039412,3
+115632980,6039412,3
+55860957,6039412,4
+paobecky,6039412,3
+spancercheng,6039412,3
+41305702,6039412,3
+1201937,6039412,1
+92894015,6039412,2
+65086870,6039412,2
+57956919,6039412,3
+45269064,6039412,4
+81483152,6039412,3
+withsurui,6039412,2
+rockt,6039412,3
+63351658,6039412,1
+lohasdang,6039412,3
+85316491,6039412,3
+134026402,6039412,4
+123555386,6039412,4
+58630944,6039412,3
+89804270,6039412,3
+53959125,6039412,3
+lonelyattic,6039412,3
+1380828,6039412,3
+3874094,6039412,5
+80365604,6039412,4
+97816774,6039412,4
+64110948,6039412,2
+59015401,6039412,3
+ccushuaia1220,6039412,-1
+134173332,6039412,4
+dellama,6039412,-1
+3923065,6039412,3
+99223990,6039412,3
+kidrun,6039412,1
+HeyAriel,6039412,3
+45839663,6039412,3
+26438724,6039412,2
+90972400,6039412,2
+viola1990mm,6039412,1
+gongqiong,6039412,3
+39091136,6039412,3
+alphy,6039412,2
+huixiang1004,6039412,3
+64841770,6039412,4
+49895650,6039412,2
+4110596,6039412,3
+spunik,6039412,4
+56856472,6039412,3
+dingdaiwei,6039412,4
+Sub___,6039412,5
+44203991,6039412,2
+fanleny,6039412,3
+47182696,6039412,4
+tsebb,6039412,3
+cirrus,6039412,3
+dearFreundin,6039412,2
+carmen8212,6039412,4
+baoshumin,6039412,2
+baoshumin,6039412,2
+yiren-sun,6039412,-1
+klcklc,6039412,4
+133190465,6039412,3
+52445513,6039412,1
+48970342,6039412,5
+134222368,6039412,3
+shuaihuanggua,6039412,4
+zhousophia,6039412,2
+130339161,6039412,3
+57754572,6039412,3
+gooooooooooohe,6039412,4
+120085809,6039412,5
+quizas63,6039412,-1
+chinye,6039412,1
+merryliang,6039412,3
+angelmagic,6039412,3
+91193494,6039412,4
+62521900,6039412,3
+46058827,6039412,2
+46058827,6039412,2
+80098161,6039412,4
+mikimake,6039412,3
+55742803,6039412,5
+88262446,6039412,3
+64585406,6039412,3
+59925125,6039412,3
+omenjoy,6039412,3
+98832174,6039412,3
+jnhero,6039412,3
+lisayang,6039412,3
+kinderbaby,6039412,3
+12992904,6039412,2
+annaxingxin,6039412,2
+66171228,6039412,2
+xyyelfin,6039412,3
+67306318,6039412,2
+132945472,6039412,3
+52331640,6039412,3
+60802919,6039412,3
+60802919,6039412,3
+134076328,6039412,1
+40666919,6039412,3
+3346776,6039412,3
+Mr.bomb,6039412,1
+74555181,6039412,3
+76914057,6039412,2
+63348856,6039412,3
+wangyumeng,6039412,3
+holykathy,6039412,4
+GAJI,6039412,3
+45604552,6039412,5
+2668545,6039412,4
+48798073,6039412,4
+33973764,6039412,4
+hlinwang,6039412,3
+69875903,6039412,4
+90496189,6039412,3
+2483011,6039412,3
+myice,6039412,3
+myice,6039412,3
+74931346,6039412,3
+4644252,6039412,3
+42029452,6039412,2
+1392553,6039412,1
+36458457,6039412,3
+liaoliao90,6039412,3
+elan,6039412,3
+61716750,6039412,2
+jiuzao,6039412,4
+1740474,6039412,2
+eapac,6039412,4
+aissi,6039412,3
+PATCHPAN,6039412,2
+46483875,6039412,2
+128443021,6039412,4
+52105092,6039412,4
+memokun,6039412,4
+29602196,6039412,3
+49119586,6039412,5
+zhangcj1224,6039412,3
+2727802,6039412,3
+Edward_Elric,6039412,3
+80996621,6039412,4
+34086492,6039412,4
+mcflee,6039412,4
+3593565,6039412,3
+70350780,6039412,3
+Cheeranita,6039412,3
+57301508,6039412,3
+58562865,6039412,2
+45768011,6039412,3
+54222336,6039412,4
+51058811,6039412,4
+36735001,6039412,4
+62370855,6039412,3
+leftside,6039412,3
+59017371,6039412,4
+huixinyixiao444,6039412,3
+78668658,6039412,3
+alice0574,6039412,4
+56156777,6039412,3
+87559278,6039412,3
+achenlydia,6039412,2
+66706238,6039412,5
+48331689,6039412,3
+119412148,6039412,3
+52479067,6039412,3
+72972634,6039412,5
+s1219snow,6039412,3
+1757021,6039412,2
+132943744,6039412,2
+89766487,6039412,4
+foreverlovewuxm,6039412,4
+liuGrey,6039412,3
+3425257,6039412,1
+Arielyan,6039412,3
+JomiNeverDies,6039412,3
+wood008,6039412,3
+61207902,6039412,5
+xisochakaihuale,6039412,1
+68893935,6039412,3
+clivery,6039412,3
+39530278,6039412,3
+zhangxunnj,6039412,2
+A_R_C_rops,6039412,4
+xiabingxia,6039412,3
+73136711,6039412,5
+cay_gene,6039412,2
+75237378,6039412,3
+105188554,6039412,4
+wuxiaohua,6039412,-1
+slowwalker,6039412,1
+JeLLyss,6039412,-1
+119622839,6039412,3
+yooogurt,6039412,1
+wengxiaolan,6039412,5
+etfromchina,6039412,4
+lullaby_ly,6039412,3
+44057299,6039412,5
+for3st,6039412,2
+fanhuan1123,6039412,3
+40028524,6039412,4
+81742461,6039412,3
+chikagokk,6039412,3
+westerly,6039412,3
+41437422,6039412,2
+anaisecho,6039412,3
+anniebridge,6039412,3
+problemchildren,6039412,3
+1366592,6039412,2
+29988044,6039412,3
+3656467,6039412,4
+62641042,6039412,3
+11781856,6039412,3
+aprilsunshine,6039412,3
+82454010,6039412,3
+55488825,6039412,3
+yulebecky,6039412,4
+46018704,6039412,3
+4357598,6039412,3
+47971865,6039412,4
+96912190,6039412,3
+42522085,6039412,3
+33404159,6039412,3
+liuchuanzi,6039412,3
+76916226,6039412,3
+huix,6039412,2
+laura2zero,6039412,3
+4760085,6039412,-1
+33787946,6039412,3
+SylviaWang,6039412,4
+30457423,6039412,3
+46655782,6039412,-1
+noif,6039412,-1
+48396383,6039412,2
+64540248,6039412,3
+125924196,6039412,3
+67770399,6039412,3
+yuxiaodi1988,6039412,3
+120241385,6039412,3
+pipasway,6039412,2
+Jellabah,6039412,-1
+crazygrave,6039412,3
+beartolove,6039412,2
+81130737,6039412,5
+7511995,6039412,3
+JaceJing,6039412,2
+earthchild,6039412,4
+126250610,6039412,-1
+121657475,6039412,3
+50875593,6039412,3
+forever7young,6039412,3
+kathycxr,6039412,3
+53353815,6039412,3
+justico,6039412,4
+46234987,6039412,3
+cornelia109,6039412,4
+48712788,6039412,3
+50166201,6039412,2
+50583077,6039412,3
+51009814,6039412,-1
+ccyndi,6039412,5
+97062397,6039412,3
+64528316,6039412,4
+iclarasun,6039412,3
+13826202,6039412,3
+83082276,6039412,1
+41325269,6039412,3
+62902715,6039412,3
+madblademan,6039412,4
+72563139,6039412,3
+Gorjess3,6039412,3
+2655191,6039412,4
+2750410,6039412,3
+50044744,6039412,2
+2737013,6039412,2
+41375493,6039412,3
+83201171,6039412,4
+57591346,6039412,4
+57591346,6039412,4
+58951524,6039412,3
+C_C--321,6039412,3
+sf12447411,6039412,3
+104257497,6039412,4
+46448651,6039412,4
+57978230,6039412,2
+52983513,6039412,4
+46746652,6039412,3
+bfa1950,6039412,4
+shanejiliao,6039412,2
+59480546,6039412,4
+46689688,6039412,5
+Msdolphin,6039412,2
+59319434,6039412,4
+carrottbjihyrl,6039412,3
+47473114,6039412,2
+76227940,6039412,3
+81819532,6039412,4
+121857406,6039412,4
+3607786,6039412,3
+pandoll,6039412,3
+132320147,6039412,3
+anniee,6039412,-1
+tarapengharvard,6039412,5
+104742376,6039412,3
+ricelittlesand,6039412,2
+steal-someone,6039412,3
+4436078,6039412,2
+Bambie_Z,6039412,1
+2257637,6039412,4
+122517492,6039412,3
+geligeerni,6039412,1
+52766247,6039412,3
+tiffanyco,6039412,2
+60989639,6039412,3
+51710765,6039412,3
+tengyu,6039412,3
+envyandecho,6039412,3
+79930432,6039412,-1
+lleytonia,6039412,2
+50667944,6039412,3
+StringAlice,6039412,2
+67852674,6039412,3
+36410386,6039412,-1
+37234505,6039412,3
+127524766,6039412,3
+33260321,6039412,4
+dbhungry,6039412,1
+Carpediemnicole,6039412,3
+yaomiaomiao,6039412,5
+mmming,6039412,4
+133662506,6039412,1
+3111681,6039412,3
+4239908,6039412,3
+ruohu3094,6039412,3
+81316047,6039412,2
+sunskystone,6039412,2
+43708089,6039412,2
+104823188,6039412,3
+60303704,6039412,4
+cassiecici,6039412,3
+42787791,6039412,3
+74230231,6039412,4
+Joan_J,6039412,3
+53930904,6039412,2
+42410152,6039412,2
+spacedementia,6039412,2
+55846038,6039412,3
+Rain77,6039412,3
+54108610,6039412,3
+lmelva,6039412,3
+4377378,6039412,3
+132278723,6039412,4
+alivenotdead,6039412,3
+57238055,6039412,3
+4543622,6039412,3
+46329517,6039412,-1
+muchamucha,6039412,3
+a960629,6039412,3
+violetawong,6039412,3
+icezyf415,6039412,3
+65763988,6039412,3
+4509995,6039412,2
+linxi,6039412,5
+92047884,6039412,4
+Danys,6039412,3
+65198344,6039412,3
+124887489,6039412,3
+cappuccino-jl,6039412,2
+carey_kyuu,6039412,2
+dauz,6039412,3
+70138570,6039412,3
+61260691,6039412,5
+4669955,6039412,4
+77607835,6039412,2
+ourson,6039412,4
+junoqi,6039412,5
+49478508,6039412,4
+lzy010198,6039412,2
+1548712,6039412,2
+Yvonnerain,6039412,3
+51662101,6039412,5
+3772330,6039412,3
+32390009,6039412,3
+97406703,6039412,3
+59826580,6039412,3
+42954116,6039412,3
+shane_Xu,6039412,3
+65055816,6039412,4
+yuanzedong,6039412,3
+125603682,6039412,3
+2923778,6039412,3
+Donna_P,6039412,3
+4647141,6039412,3
+60751376,6039412,3
+pennate,6039412,4
+juyue13,6039412,-1
+LieblingCL,6039412,5
+lindoublelan,6039412,3
+122212347,6039412,3
+65098968,6039412,4
+60858827,6039412,2
+tlbb008,6039412,3
+fangxiaotang,6039412,2
+pixiezhezhe,6039412,3
+18081083,6039412,5
+4071147,6039412,3
+49921497,6039412,4
+43883164,6039412,4
+67582454,6039412,3
+pau,6039412,4
+38803533,6039412,3
+leantong,6039412,2
+82686502,6039412,3
+goyankeesgo,6039412,1
+65664176,6039412,3
+38791208,6039412,5
+79415032,6039412,4
+IRIDESCENT.ONE,6039412,4
+3161055,6039412,4
+lanchong03,6039412,3
+33933648,6039412,3
+67330324,6039412,3
+55310143,6039412,2
+seenay,6039412,4
+32977496,6039412,4
+60880119,6039412,4
+121829507,6039412,4
+79915546,6039412,2
+49570940,6039412,3
+43549148,6039412,4
+47574517,6039412,4
+55875465,6039412,3
+ruilixiurui,6039412,3
+43840561,6039412,3
+45984681,6039412,2
+68199229,6039412,3
+maixiaobao,6039412,3
+zoelovepuppy,6039412,1
+54998421,6039412,3
+ljlww191,6039412,-1
+3540765,6039412,5
+43955496,6039412,5
+apr1lcoo,6039412,3
+anniedear,6039412,3
+2849700,6039412,2
+55340250,6039412,2
+58322733,6039412,2
+44069318,6039412,3
+65982449,6039412,3
+68887897,6039412,3
+77871944,6039412,3
+vivianzhying,6039412,4
+76808256,6039412,3
+41842523,6039412,3
+48941504,6039412,2
+132356139,6039412,2
+119079844,6039412,1
+79923158,6039412,2
+tongyip,6039412,4
+42114790,6039412,5
+53512949,6039412,3
+66044059,6039412,2
+1574050,6039412,5
+4154813,6039412,2
+86010283,6039412,3
+2191624,6039412,2
+43459920,6039412,3
+61540850,6039412,3
+lucarolinelu,6039412,3
+58462261,6039412,3
+lovelovecat,6039412,3
+56002939,6039412,4
+znrpiggey,6039412,3
+nightldj,6039412,-1
+4034593,6039412,4
+93462898,6039412,3
+59418689,6039412,3
+Isil.G,6039412,2
+66405619,6039412,4
+2999259,6039412,3
+132351585,6039412,2
+frances-6,6039412,3
+biuflower,6039412,4
+84828143,6039412,3
+53631000,6039412,3
+3939599,6039412,4
+ben_nsr,6039412,3
+26696495,6039412,2
+2746630,6039412,4
+ocean11,6039412,4
+45088693,6039412,3
+tanyemaozi,6039412,1
+65239097,6039412,4
+31342755,6039412,-1
+chendax,6039412,2
+ellenha,6039412,3
+2234609,6039412,2
+33122876,6039412,4
+wooya,6039412,1
+53734471,6039412,1
+48999675,6039412,3
+102231174,6039412,5
+116169238,6039412,4
+65355841,6039412,3
+3133701,6039412,3
+hilarylynn,6039412,3
+mufanxuanji,6039412,3
+momoko11510,6039412,4
+monkeydshinki,6039412,3
+32187017,6039412,4
+49510973,6039412,2
+maorui,6039412,3
+51545041,6039412,2
+jersey0821,6039412,3
+74150636,6039412,3
+57350477,6039412,3
+45792584,6039412,1
+56007618,6039412,5
+Artillerys,6039412,4
+yanbigflower,6039412,-1
+avdios,6039412,2
+70633415,6039412,3
+52597818,6039412,4
+applebunny,6039412,5
+juniorstar,6039412,4
+sunny_kuang0715,6039412,3
+mouhua,6039412,3
+84461169,6039412,3
+sif7,6039412,4
+63506712,6039412,3
+77480068,6039412,5
+53852610,6039412,1
+oldnikki,6039412,3
+qinchongayo,6039412,4
+56139987,6039412,5
+63830890,6039412,3
+fergie37,6039412,4
+66178984,6039412,3
+66178984,6039412,3
+122226220,6039412,3
+jinbing,6039412,3
+cuccossette,6039412,4
+94791211,6039412,3
+jojodin,6039412,3
+2951993,6039412,4
+michaelswift,6039412,3
+83366128,6039412,3
+47568982,6039412,4
+34476599,6039412,-1
+132870303,6039412,3
+annia0216,6039412,2
+dgtdgb,6039412,3
+kaka_arctic,6039412,4
+imantique,6039412,1
+2974918,6039412,3
+80024991,6039412,2
+64801475,6039412,5
+73068546,6039412,5
+73068546,6039412,5
+1493686,6039412,2
+81179835,6039412,5
+MolaM,6039412,3
+fanfankuaipao,6039412,-1
+40871466,6039412,5
+4325847,6039412,3
+Elaine_citi,6039412,3
+62479715,6039412,4
+2776491,6039412,4
+fanfouxiong,6039412,4
+52649059,6039412,4
+universe_7,6039412,3
+mingnqiut,6039412,4
+25503918,6039412,3
+zxyan,6039412,4
+4431856,6039412,3
+60890395,6039412,3
+61422043,6039412,5
+70898886,6039412,4
+43538965,6039412,3
+120322125,6039412,2
+84722461,6039412,4
+AnNQiu,6039412,3
+yetmeaningless,6039412,3
+carcajou,6039412,3
+sylviasun2011,6039412,3
+47806996,6039412,3
+fizban,6039412,4
+eleveniris,6039412,4
+wdwinson,6039412,2
+2393231,6039412,3
+53724452,6039412,3
+53022387,6039412,-1
+60871322,6039412,3
+68872792,6039412,3
+jyfang07,6039412,3
+yummy425,6039412,4
+123851520,6039412,3
+55596124,6039412,3
+60461731,6039412,4
+tracyla,6039412,2
+33322895,6039412,4
+132811341,6039412,3
+pjia,6039412,-1
+54215342,6039412,3
+suikame,6039412,3
+49852947,6039412,4
+114034263,6039412,-1
+dorothy.C,6039412,3
+fionacaiqi,6039412,4
+zl939835663,6039412,3
+49191528,6039412,2
+currant,6039412,3
+131932102,6039412,2
+4306218,6039412,4
+1865714,6039412,3
+96716394,6039412,5
+3541006,6039412,5
+gusuxiaoqiao,6039412,2
+4594994,6039412,3
+23712945,6039412,4
+17434045,6039412,3
+58919117,6039412,4
+53585857,6039412,4
+53811131,6039412,3
+53936917,6039412,4
+xxxxxoxxxxx,6039412,4
+hyapple,6039412,2
+64828664,6039412,3
+48512996,6039412,3
+60828704,6039412,4
+panmen,6039412,3
+55897235,6039412,3
+50566408,6039412,3
+pp521,6039412,3
+4190834,6039412,3
+55314641,6039412,4
+yiri,6039412,-1
+wbyring,6039412,5
+royin.chao,6039412,3
+wugalll,6039412,4
+46670616,6039412,2
+avaxi,6039412,3
+xinziai,6039412,-1
+48823676,6039412,5
+74262574,6039412,5
+2821183,6039412,4
+benjin159,6039412,4
+whyoung,6039412,4
+61186332,6039412,3
+49981766,6039412,4
+120018328,6039412,5
+64087077,6039412,3
+50069716,6039412,2
+81886735,6039412,-1
+ancg,6039412,2
+mufishchi,6039412,3
+cakesama,6039412,3
+94422178,6039412,3
+94422178,6039412,3
+46845274,6039412,4
+55881700,6039412,2
+summerholiday,6039412,5
+bestkinki,6039412,2
+3862249,6039412,3
+115547734,6039412,3
+132983057,6039412,1
+49633786,6039412,3
+80792973,6039412,4
+70242208,6039412,5
+84948949,6039412,4
+homesweet,6039412,3
+shakie,6039412,4
+70315903,6039412,4
+81680542,6039412,3
+51763291,6039412,4
+mayxoxo,6039412,3
+48270504,6039412,3
+57262819,6039412,3
+Vanish2,6039412,2
+93189279,6039412,3
+80933554,6039412,3
+129227883,6039412,3
+3201065,6039412,5
+88298749,6039412,4
+xiaoxinjessica,6039412,4
+jinzhawithyou,6039412,3
+49968268,6039412,3
+56478943,6039412,3
+59620866,6039412,4
+125645366,6039412,1
+chaisisi,6039412,4
+48595594,6039412,3
+61978827,6039412,2
+larene,6039412,3
+XterCollins,6039412,3
+harukakiss,6039412,2
+127947406,6039412,3
+mushroomsauce,6039412,3
+80654901,6039412,2
+63932302,6039412,3
+1459581,6039412,3
+36072726,6039412,4
+130956052,6039412,4
+chiakiris,6039412,5
+palermo97,6039412,2
+72962465,6039412,5
+91259845,6039412,4
+4202836,6039412,2
+64716010,6039412,5
+92554133,6039412,4
+35294199,6039412,3
+yoyo...fish,6039412,3
+49133001,6039412,2
+56346107,6039412,3
+60234742,6039412,2
+Demonbane,6039412,4
+wdxc999999,6039412,4
+129902514,6039412,2
+129902514,6039412,2
+wangxiaolu,6039412,2
+121619687,6039412,2
+ice_pudding,6039412,3
+103793768,6039412,3
+18043217,6039412,5
+rachelllf,6039412,5
+2062961,6039412,3
+QQ3BlueRose,6039412,4
+65181695,6039412,3
+felo,6039412,3
+tina0330,6039412,3
+szk13731584239,6039412,3
+76148620,6039412,3
+62047301,6039412,3
+46218863,6039412,3
+streamlx,6039412,4
+seclo,6039412,4
+fjjacynth,6039412,3
+58737002,6039412,-1
+irissummer,6039412,4
+82802978,6039412,2
+49537151,6039412,2
+54639887,6039412,3
+102770095,6039412,3
+60307625,6039412,3
+35285718,6039412,4
+60209728,6039412,2
+59195846,6039412,3
+flycanfly,6039412,-1
+1886385,6039412,3
+57787729,6039412,2
+irrisawu,6039412,3
+24519656,6039412,3
+36621771,6039412,4
+35229125,6039412,4
+zcunlin,6039412,4
+nikizhangqian,6039412,4
+37229624,6039412,3
+meifyrt,6039412,-1
+3078221,6039412,4
+chanyochen,6039412,3
+3812836,6039412,2
+58986739,6039412,4
+vincenthanze,6039412,3
+slwilliam,6039412,2
+sakimay,6039412,3
+hdjjys,6039412,3
+123456916,6039412,4
+76689420,6039412,2
+lynnem,6039412,3
+5566664,6039412,2
+60411524,6039412,2
+2853604,6039412,1
+amyue,6039412,3
+shuaishui,6039412,4
+54443064,6039412,-1
+emeline,6039412,3
+127066563,6039412,3
+abaqiao,6039412,4
+52148050,6039412,3
+63367486,6039412,2
+55309998,6039412,2
+121475983,6039412,5
+36993897,6039412,3
+91882469,6039412,3
+feeky,6039412,3
+toufaluan,6039412,4
+129255326,6039412,4
+Milk_L,6039412,-1
+50063625,6039412,3
+4028097,6039412,3
+dusk.xiyang,6039412,2
+2859078,6039412,3
+IAmSoVain,6039412,2
+Jillyan,6039412,4
+SHANGHAIJAJA,6039412,4
+lorenza,6039412,3
+nyx1224,6039412,2
+121410902,6039412,4
+waiting..sun..,6039412,2
+Awewonderland,6039412,3
+Clarke,6039412,-1
+nianmin,6039412,3
+glimmer1993,6039412,1
+moneylatem,6039412,4
+42724768,6039412,3
+25559226,6039412,-1
+2632584,6039412,3
+61311082,6039412,-1
+42610129,6039412,3
+4431745,6039412,2
+duanxiu,6039412,3
+49663981,6039412,3
+puttingpooh,6039412,3
+aeroprince,6039412,3
+38924619,6039412,3
+82980188,6039412,2
+lulu_sheep,6039412,2
+48048904,6039412,3
+48048904,6039412,3
+132633082,6039412,4
+GRAPE12345,6039412,3
+sissemma,6039412,1
+49879451,6039412,3
+75543467,6039412,3
+88446161,6039412,2
+121511870,6039412,3
+106570148,6039412,5
+sonatina,6039412,3
+98040365,6039412,4
+73681396,6039412,4
+94052787,6039412,5
+willywyang,6039412,3
+iRayc,6039412,2
+babybottle,6039412,4
+132592664,6039412,3
+4067622,6039412,5
+nangongmocheng,6039412,3
+120532442,6039412,3
+120532442,6039412,3
+50785660,6039412,4
+alcat,6039412,5
+blablawanda,6039412,4
+sanzhiling,6039412,3
+28884615,6039412,2
+mystory0310,6039412,3
+19469713,6039412,3
+42906066,6039412,4
+lemmoy,6039412,2
+49175410,6039412,5
+kat.is.kathy,6039412,4
+57051908,6039412,3
+61807076,6039412,3
+nicole0107,6039412,3
+twentypercent,6039412,3
+70660322,6039412,3
+dyc0326,6039412,1
+68963965,6039412,3
+qhfls,6039412,3
+131186165,6039412,4
+jiayi6616,6039412,2
+56013393,6039412,3
+9274036,6039412,3
+Silvia9696,6039412,2
+4623210,6039412,4
+72096774,6039412,3
+60821745,6039412,3
+bss007vip,6039412,4
+70623349,6039412,3
+warmhouse,6039412,3
+vinette,6039412,3
+48313436,6039412,3
+Ava8023,6039412,3
+130856040,6039412,4
+florah,6039412,5
+holly_xu,6039412,2
+49268116,6039412,3
+qilapengqi,6039412,4
+RITABMW,6039412,2
+63875119,6039412,4
+2374450,6039412,5
+45950734,6039412,2
+1828898,6039412,2
+42274147,6039412,4
+132416760,6039412,3
+4678321,6039412,3
+basaya,6039412,3
+chuxcy,6039412,2
+4353368,6039412,3
+millylyu,6039412,3
+IMINCR,6039412,-1
+57823956,6039412,2
+48525140,6039412,2
+48719901,6039412,3
+Helene.H,6039412,2
+72381588,6039412,2
+3588110,6039412,4
+aki.sh,6039412,3
+xiaoleizi11,6039412,2
+xiaoleizi11,6039412,2
+85435469,6039412,3
+55612209,6039412,3
+yuyupompadour,6039412,4
+68034788,6039412,3
+3278466,6039412,3
+43780153,6039412,3
+4694061,6039412,4
+41651378,6039412,4
+kimchi_chips,6039412,1
+88134341,6039412,4
+84530034,6039412,3
+cinddleshaw,6039412,3
+129032954,6039412,3
+60541880,6039412,4
+2062524,6039412,4
+55930112,6039412,3
+54822077,6039412,3
+wezhang,6039412,2
+echowq520,6039412,2
+80876714,6039412,3
+claireclarissa,6039412,4
+119084646,6039412,3
+127901847,6039412,3
+52782307,6039412,3
+69561858,6039412,3
+3725818,6039412,3
+im-w-yt,6039412,5
+91548416,6039412,4
+63041714,6039412,4
+5580906,6039412,-1
+73156181,6039412,4
+130464866,6039412,5
+91464573,6039412,3
+73450758,6039412,3
+115786111,6039412,3
+lorrainelsy,6039412,4
+47563354,6039412,3
+51336568,6039412,4
+48509191,6039412,4
+62880392,6039412,3
+122735983,6039412,5
+Xuxiaohan,6039412,3
+94254038,6039412,3
+zebramomo,6039412,4
+16607791,6039412,3
+lee9026,6039412,3
+beijingstone,6039412,5
+58457804,6039412,1
+phoebesan,6039412,2
+3982610,6039412,3
+1939332,6039412,3
+1645965,6039412,3
+76101689,6039412,4
+77570203,6039412,3
+yoyopig,6039412,3
+75015059,6039412,-1
+68661080,6039412,4
+77121969,6039412,2
+82550997,6039412,1
+61542735,6039412,2
+121228834,6039412,4
+128235308,6039412,3
+A_wenyi,6039412,5
+77419999,6039412,3
+echo7forest,6039412,2
+lyning,6039412,2
+128421145,6039412,3
+bingbingaloe,6039412,3
+10078281,6039412,4
+132016475,6039412,3
+46506277,6039412,4
+6576481,6039412,3
+xs_212121,6039412,3
+43573971,6039412,3
+62950191,6039412,3
+4664430,6039412,3
+125639744,6039412,2
+charo,6039412,2
+31335200,6039412,4
+tuscany1234,6039412,3
+2139833,6039412,2
+49365587,6039412,4
+48811233,6039412,2
+nuonuox,6039412,5
+gm622yan,6039412,-1
+62784694,6039412,3
+51692061,6039412,5
+chuan1989,6039412,3
+126599373,6039412,3
+lishiyangmayo,6039412,3
+85080739,6039412,3
+67243233,6039412,4
+56524561,6039412,3
+82204517,6039412,3
+yukiyoung,6039412,3
+84374966,6039412,4
+e2cat,6039412,3
+46300049,6039412,-1
+pengpengyue,6039412,3
+69096849,6039412,3
+nnyxian,6039412,3
+68878726,6039412,3
+hiddenIris,6039412,2
+29946371,6039412,-1
+73703029,6039412,3
+3321069,6039412,3
+Vivid-try,6039412,3
+47493797,6039412,1
+summer_rock,6039412,5
+HopeBayy,6039412,-1
+2906253,6039412,4
+KinoTotoro,6039412,5
+leosy,6039412,3
+63548568,6039412,2
+finefinefine,6039412,-1
+93865760,6039412,2
+127932658,6039412,3
+3634203,6039412,4
+9678828,6039412,3
+dsqingdao,6039412,3
+3637664,6039412,3
+cavenli2008,6039412,3
+2720367,6039412,3
+68331532,6039412,4
+75723891,6039412,3
+F_28,6039412,3
+105023809,6039412,3
+47272242,6039412,3
+travel_yuong,6039412,-1
+flowerdrink,6039412,3
+mycage,6039412,1
+97152342,6039412,-1
+44768876,6039412,5
+Garfield88,6039412,3
+calamusrain,6039412,2
+camera_luu,6039412,5
+47528963,6039412,-1
+suec,6039412,3
+62498014,6039412,3
+etsuko120,6039412,2
+18080670,6039412,3
+missufinally,6039412,3
+131449449,6039412,4
+contrary,6039412,2
+83656919,6039412,2
+jeelychair,6039412,3
+serenalovetony,6039412,3
+43397816,6039412,3
+115868504,6039412,4
+keira0308,6039412,3
+ISRAFEL,6039412,4
+flowermoi,6039412,4
+babyIker,6039412,4
+80689279,6039412,2
+4118381,6039412,2
+57288121,6039412,3
+48999552,6039412,1
+wyfsmd,6039412,2
+loveangelalove,6039412,3
+wyfsmd,6039412,2
+loveangelalove,6039412,3
+131663027,6039412,3
+43713017,6039412,3
+futurama,6039412,4
+65311254,6039412,4
+58016622,6039412,3
+55835825,6039412,4
+oueidw,6039412,3
+53042770,6039412,4
+60037456,6039412,4
+wenvampire,6039412,3
+tianwenhexiaoy,6039412,4
+78903709,6039412,2
+LittleDorrit,6039412,4
+43762131,6039412,5
+lynn7lynch,6039412,3
+45505895,6039412,3
+fidotoy,6039412,3
+ssxxx,6039412,5
+53080002,6039412,4
+2625374,6039412,2
+4583369,6039412,3
+49056942,6039412,3
+68668703,6039412,3
+16531942,6039412,4
+55352127,6039412,3
+41766735,6039412,3
+47194139,6039412,3
+41398559,6039412,3
+iCyBLeu,6039412,3
+chloelone,6039412,3
+25350324,6039412,1
+63167572,6039412,3
+Kevser,6039412,-1
+sheensheen,6039412,3
+80559391,6039412,4
+48673422,6039412,4
+Mirry,6039412,3
+handsomegay,6039412,4
+50900186,6039412,3
+yww435052076,6039412,3
+53639016,6039412,3
+93155227,6039412,2
+43085940,6039412,3
+82849854,6039412,4
+102164266,6039412,3
+114647405,6039412,4
+100324027,6039412,3
+skyearthone,6039412,3
+szdd,6039412,4
+49542138,6039412,3
+64217814,6039412,3
+72719769,6039412,3
+ybcomg,6039412,3
+99872551,6039412,2
+honeydoris,6039412,5
+130064704,6039412,3
+plant,6039412,1
+129688595,6039412,2
+minusculeF,6039412,3
+16693810,6039412,3
+56653816,6039412,-1
+hiu,6039412,3
+66632216,6039412,3
+MELEM,6039412,4
+1425736,6039412,3
+3225204,6039412,2
+syuee,6039412,4
+72293050,6039412,4
+70235777,6039412,2
+debussy,6039412,3
+skferb,6039412,4
+78902065,6039412,3
+89255071,6039412,2
+97187997,6039412,2
+40907907,6039412,4
+128954101,6039412,5
+33538142,6039412,3
+64132856,6039412,3
+67162659,6039412,1
+TheSilvia,6039412,4
+miuzc.pei,6039412,2
+130223345,6039412,2
+2260384,6039412,3
+3259792,6039412,3
+60053558,6039412,3
+1923916,6039412,2
+42409288,6039412,3
+64136119,6039412,4
+yueyuedad1972,6039412,5
+40545555,6039412,3
+53466542,6039412,3
+timeoceans,6039412,4
+3609952,6039412,2
+73439795,6039412,5
+yugg7,6039412,5
+moweila,6039412,3
+84344197,6039412,3
+129490724,6039412,2
+57004443,6039412,4
+3852548,6039412,-1
+s_y_3,6039412,3
+yuzuyuyuka,6039412,3
+banana77,6039412,3
+50660338,6039412,3
+K_kk,6039412,3
+101864611,6039412,4
+42431883,6039412,5
+45925572,6039412,4
+dinkwok,6039412,4
+nicy119,6039412,4
+catrambu,6039412,3
+122394659,6039412,3
+haloyt,6039412,1
+41010803,6039412,4
+69467986,6039412,3
+babeblue,6039412,3
+62776173,6039412,4
+Arielfar,6039412,2
+coollamb,6039412,4
+r_sherry,6039412,4
+42993095,6039412,3
+fotapeter,6039412,4
+yufendou622,6039412,3
+125386628,6039412,3
+53617950,6039412,4
+125760534,6039412,3
+2178609,6039412,3
+shineeamber,6039412,-1
+46429312,6039412,3
+cup-whent,6039412,4
+2713839,6039412,2
+69020759,6039412,4
+87469999,6039412,3
+dannyZ,6039412,3
+36466126,6039412,3
+50066730,6039412,2
+niazion,6039412,2
+daisynormal,6039412,1
+130934527,6039412,3
+yuuuni,6039412,2
+laotang,6039412,3
+62582404,6039412,3
+Dydia,6039412,3
+131115228,6039412,2
+28984071,6039412,2
+67279545,6039412,4
+1592520,6039412,3
+113163801,6039412,3
+42546446,6039412,5
+71298339,6039412,3
+4776985,6039412,3
+82823554,6039412,3
+59440194,6039412,3
+48183944,6039412,1
+shashaishere,6039412,3
+thana19tos90,6039412,-1
+38302600,6039412,3
+44473457,6039412,3
+44473457,6039412,3
+56560717,6039412,5
+123310199,6039412,4
+124400305,6039412,3
+56920826,6039412,-1
+54636102,6039412,3
+rosemarylucy,6039412,4
+57683355,6039412,5
+fantasy219,6039412,3
+xiaohe5210,6039412,3
+78500828,6039412,3
+67514961,6039412,4
+52173503,6039412,4
+51068415,6039412,2
+nothinger,6039412,4
+Danny-Green,6039412,-1
+49569966,6039412,2
+102653753,6039412,3
+PASSMEBY,6039412,2
+41150727,6039412,2
+TIFFANYVI,6039412,3
+CatWitch,6039412,3
+dingjiandoris,6039412,3
+73097784,6039412,-1
+130270800,6039412,3
+70779185,6039412,2
+sweetxy,6039412,3
+74237203,6039412,2
+zoeyqyq,6039412,1
+40570491,6039412,3
+126745018,6039412,3
+64304447,6039412,3
+31530097,6039412,2
+poppysuen,6039412,3
+violetbooks,6039412,5
+49748838,6039412,3
+83526165,6039412,3
+60486798,6039412,4
+81721687,6039412,3
+58077912,6039412,3
+iiibuwan,6039412,4
+40185469,6039412,5
+58338006,6039412,3
+67664163,6039412,2
+52481059,6039412,4
+jessiesumer,6039412,3
+shenxi,6039412,3
+74005678,6039412,4
+129756377,6039412,3
+14747203,6039412,5
+58226091,6039412,4
+vliangfrank,6039412,4
+56856986,6039412,3
+thephysicist,6039412,1
+48673348,6039412,3
+caolong,6039412,3
+Flipped_Judy,6039412,3
+69228313,6039412,-1
+46520547,6039412,-1
+roseandwater,6039412,2
+59559950,6039412,3
+venusbea,6039412,4
+nvwu_sophia,6039412,2
+jyjRachel,6039412,2
+56598911,6039412,3
+a3615,6039412,3
+1271021,6039412,4
+122005023,6039412,5
+lcaesar,6039412,3
+65145767,6039412,4
+miaaa,6039412,3
+77686010,6039412,2
+onein6billion,6039412,4
+kellylee1227,6039412,4
+54208229,6039412,3
+clipclap7,6039412,2
+56722165,6039412,3
+wanprince,6039412,4
+120878915,6039412,3
+waitintheseason,6039412,3
+50079736,6039412,3
+bobowei55,6039412,4
+113584703,6039412,3
+65079476,6039412,3
+130787806,6039412,2
+rememberjuly,6039412,2
+115622817,6039412,3
+35507576,6039412,3
+Flora1119,6039412,-1
+winners711,6039412,4
+68294657,6039412,4
+69125005,6039412,3
+HottestDaisy,6039412,3
+lonelycloud,6039412,3
+2499876,6039412,4
+64874710,6039412,4
+24451966,6039412,4
+124569189,6039412,4
+40889918,6039412,4
+60041451,6039412,4
+q296579068,6039412,4
+guyuejiayu,6039412,3
+68315274,6039412,3
+huamochu,6039412,2
+57876228,6039412,4
+Vampire1004,6039412,3
+Innocence-1,6039412,4
+heyflower,6039412,3
+46932541,6039412,3
+78478149,6039412,3
+39236379,6039412,3
+79593752,6039412,4
+58202321,6039412,4
+53867160,6039412,3
+2829825,6039412,3
+41476840,6039412,5
+4583092,6039412,5
+2360360,6039412,4
+1246074,6039412,3
+2783261,6039412,2
+64104549,6039412,2
+Makoto614,6039412,3
+91543867,6039412,3
+80228830,6039412,2
+grace0621,6039412,4
+ivis1989,6039412,4
+2205198,6039412,-1
+xuaoling,6039412,5
+dreamsun,6039412,3
+akanarika,6039412,5
+AmySpecial,6039412,4
+62360669,6039412,3
+4215290,6039412,3
+61029261,6039412,4
+FK621,6039412,2
+70464788,6039412,2
+120043439,6039412,3
+68776992,6039412,4
+veranono,6039412,4
+sunxjlovepeace,6039412,4
+monica325,6039412,5
+99078833,6039412,3
+shengyiw,6039412,4
+sunruhan,6039412,3
+leoyvonne,6039412,5
+63457669,6039412,3
+49229512,6039412,3
+58618452,6039412,3
+11294260,6039412,3
+31407826,6039412,3
+74471191,6039412,3
+3731229,6039412,3
+57909039,6039412,2
+celile,6039412,4
+amsingapore,6039412,3
+Ciangie,6039412,2
+YH222,6039412,3
+65385294,6039412,3
+78273434,6039412,4
+6776669,6039412,3
+6776669,6039412,3
+51643428,6039412,4
+Daisy777777777,6039412,-1
+121689080,6039412,3
+LIMEADE,6039412,3
+121113544,6039412,-1
+38249596,6039412,3
+NarcissusMomo,6039412,2
+oceanmumu,6039412,3
+SophiaCGuo,6039412,1
+129369858,6039412,2
+82663579,6039412,4
+48358575,6039412,2
+127071890,6039412,4
+58148727,6039412,4
+cornerlife,6039412,4
+57911454,6039412,4
+godi,6039412,3
+40684002,6039412,5
+jxshuo,6039412,3
+Agateyss,6039412,2
+99172297,6039412,3
+ashley17,6039412,2
+55880604,6039412,2
+62092528,6039412,3
+85174401,6039412,1
+achrista,6039412,3
+38609460,6039412,3
+elinning,6039412,2
+79559178,6039412,3
+80756861,6039412,4
+3180846,6039412,4
+39795294,6039412,3
+real_zrd,6039412,4
+4287326,6039412,5
+86482006,6039412,4
+65803974,6039412,2
+sasa926,6039412,2
+45413186,6039412,-1
+Jamie0216,6039412,3
+Jamie0216,6039412,3
+126804729,6039412,3
+fangmingeva,6039412,3
+jyvivi,6039412,3
+17865557,6039412,4
+7862782,6039412,3
+60191143,6039412,2
+49479464,6039412,-1
+52505892,6039412,-1
+55850316,6039412,1
+48725678,6039412,1
+yz326,6039412,2
+28459915,6039412,3
+45307960,6039412,3
+36112089,6039412,4
+69539787,6039412,3
+87762204,6039412,3
+79194135,6039412,2
+longnel,6039412,2
+61421538,6039412,4
+45184440,6039412,4
+75418722,6039412,1
+2404229,6039412,-1
+nananadia,6039412,-1
+suekyshi,6039412,2
+92871854,6039412,3
+69998100,6039412,3
+37596947,6039412,2
+62155959,6039412,4
+122780834,6039412,4
+120054799,6039412,3
+73903391,6039412,3
+60782706,6039412,3
+MlovesB,6039412,2
+lepd,6039412,3
+taylor_fu,6039412,2
+74201077,6039412,3
+61816824,6039412,3
+75182939,6039412,2
+40126557,6039412,3
+12945910,6039412,3
+4623641,6039412,4
+teenwolf,6039412,3
+qiztholly,6039412,3
+69127854,6039412,2
+124832004,6039412,3
+lena0517,6039412,3
+omnia,6039412,3
+lizzyar,6039412,3
+13038312,6039412,2
+4297674,6039412,2
+csaver,6039412,4
+Spade47,6039412,3
+cheersun,6039412,1
+in-pest,6039412,3
+47747519,6039412,3
+Ste_corleone,6039412,3
+3966093,6039412,2
+60818936,6039412,5
+3522630,6039412,-1
+vera0902,6039412,4
+misamore,6039412,3
+brandnewstart,6039412,2
+mayhsu0619,6039412,4
+52017448,6039412,4
+Valen-Valen,6039412,4
+101699165,6039412,4
+91236974,6039412,4
+47525843,6039412,4
+54579149,6039412,1
+5642184,6039412,3
+2201311,6039412,3
+60123701,6039412,2
+47189582,6039412,2
+1980904,6039412,3
+fm2011,6039412,3
+ting0710,6039412,4
+tracygail,6039412,1
+36927005,6039412,2
+3289683,6039412,3
+81319731,6039412,2
+130340228,6039412,5
+slshukui,6039412,-1
+bobomasa,6039412,3
+2462297,6039412,1
+1105369,6039412,3
+65641173,6039412,3
+97767236,6039412,5
+zv_____,6039412,3
+48649262,6039412,3
+121729909,6039412,3
+2632722,6039412,3
+xc-cindy,6039412,3
+Cici0926,6039412,3
+miss.k,6039412,5
+tonytina,6039412,5
+cocoangellove,6039412,3
+75389100,6039412,3
+58223868,6039412,3
+4332615,6039412,4
+4332615,6039412,4
+72981170,6039412,3
+soranya,6039412,3
+1263662,6039412,3
+124297784,6039412,3
+wumeiqinvzi,6039412,2
+43961399,6039412,2
+haroolovbom,6039412,4
+betterchuck,6039412,5
+zhubeilife,6039412,3
+65415043,6039412,4
+29024580,6039412,4
+84047449,6039412,1
+45683425,6039412,3
+44923935,6039412,2
+6793679,6039412,4
+47511844,6039412,2
+53743236,6039412,1
+toxichoco,6039412,5
+61570428,6039412,5
+mooomecho,6039412,1
+82381482,6039412,4
+67503021,6039412,2
+3907847,6039412,3
+1215434,6039412,4
+AnchorS,6039412,3
+67436408,6039412,3
+88969146,6039412,4
+61415736,6039412,3
+81294259,6039412,2
+64108512,6039412,4
+satellitecity,6039412,2
+longerho,6039412,2
+48491796,6039412,3
+1952871,6039412,4
+62850714,6039412,5
+66767418,6039412,4
+3346622,6039412,3
+janejanegulu,6039412,3
+129356588,6039412,3
+76611008,6039412,3
+misssun,6039412,3
+59532972,6039412,1
+90561911,6039412,5
+58135379,6039412,3
+veolxxxx,6039412,3
+SamanthaShock,6039412,3
+70548189,6039412,3
+63285359,6039412,3
+38727371,6039412,2
+imnothan,6039412,5
+52404781,6039412,4
+64252611,6039412,3
+58821009,6039412,-1
+2113603,6039412,3
+2222172,6039412,2
+88648442,6039412,1
+2132959,6039412,4
+55408154,6039412,4
+54060298,6039412,2
+100169550,6039412,4
+amanjj,6039412,1
+Doraealice,6039412,2
+shaxiaohai,6039412,4
+35916224,6039412,4
+35578527,6039412,3
+65670813,6039412,3
+54760150,6039412,2
+crystal_zhao,6039412,3
+38819398,6039412,2
+119171762,6039412,3
+joyceyuen,6039412,3
+jaslee,6039412,3
+2262505,6039412,3
+40155038,6039412,2
+48894602,6039412,5
+queenvenus,6039412,3
+missdonglian,6039412,3
+1051503,6039412,4
+zhenx,6039412,3
+49091198,6039412,3
+leechambo,6039412,2
+clarattttt,6039412,4
+62483503,6039412,4
+2817521,6039412,3
+87997485,6039412,4
+52179569,6039412,3
+128631374,6039412,2
+50445283,6039412,3
+71097682,6039412,1
+127225715,6039412,4
+sichenblueberry,6039412,-1
+bjfqj,6039412,5
+yangpp,6039412,2
+70043510,6039412,3
+Bocahontas,6039412,3
+57646854,6039412,3
+128991169,6039412,3
+weekqin,6039412,3
+troy521,6039412,2
+3815475,6039412,2
+116089509,6039412,3
+50017857,6039412,3
+2912846,6039412,3
+59055667,6039412,3
+29428562,6039412,4
+1289488,6039412,-1
+47937098,6039412,3
+enjoyandhappy,6039412,4
+Dolores0813,6039412,3
+54415980,6039412,4
+115605628,6039412,5
+2485313,6039412,2
+Cycneverstop,6039412,4
+2978891,6039412,3
+1978347,6039412,3
+58140113,6039412,3
+51265293,6039412,4
+99387432,6039412,5
+36610260,6039412,4
+1529425,6039412,2
+74942807,6039412,-1
+79132036,6039412,2
+122393653,6039412,4
+1437680,6039412,4
+graceychu,6039412,2
+92762590,6039412,4
+99542809,6039412,5
+1771839,6039412,4
+96503660,6039412,4
+65046838,6039412,3
+linyanyanyan,6039412,3
+Emily723,6039412,4
+89787162,6039412,3
+15657499,6039412,4
+metaboo,6039412,3
+3575164,6039412,3
+limeikinder,6039412,2
+YAO-yao,6039412,3
+78763010,6039412,2
+78763010,6039412,2
+fickKPCh,6039412,1
+50244579,6039412,2
+47513428,6039412,2
+quqi,6039412,4
+73522540,6039412,2
+57238154,6039412,2
+aegeanelsie,6039412,5
+69273736,6039412,3
+lilyhmmm,6039412,3
+59573093,6039412,2
+ever4ever,6039412,4
+45394090,6039412,1
+53823521,6039412,1
+75735128,6039412,4
+qihaoqiuchang,6039412,5
+1970231,6039412,5
+4578484,6039412,3
+anastasiya,6039412,3
+popgustudio,6039412,5
+4582518,6039412,2
+3440574,6039412,3
+4470750,6039412,3
+69356627,6039412,3
+EvilCat,6039412,1
+caoyi555,6039412,-1
+2437974,6039412,2
+cherryfane,6039412,3
+70132891,6039412,2
+93157246,6039412,2
+66307816,6039412,4
+53178910,6039412,3
+73475415,6039412,3
+yededi8821,6039412,4
+47045254,6039412,2
+46250750,6039412,3
+ViviaChen,6039412,3
+elinorshen,6039412,4
+4595046,6039412,5
+68693130,6039412,5
+76548979,6039412,3
+35071954,6039412,4
+4346900,6039412,3
+61775961,6039412,3
+comicsuperman,6039412,3
+sherrychen,6039412,2
+50791528,6039412,2
+jenasy,6039412,3
+kingdoucloud,6039412,4
+52597930,6039412,2
+62379540,6039412,4
+74663099,6039412,4
+67005716,6039412,4
+52214552,6039412,4
+49053012,6039412,2
+47424558,6039412,1
+77145306,6039412,5
+57553454,6039412,3
+53489022,6039412,3
+3053159,6039412,3
+61158294,6039412,2
+YTlieb,6039412,3
+yanranaduo,6039412,3
+102791213,6039412,3
+65204496,6039412,2
+61855461,6039412,3
+irisloll,6039412,4
+43521478,6039412,4
+3727771,6039412,3
+ooshan,6039412,3
+Ciris,6039412,3
+sophiediao,6039412,3
+76200653,6039412,4
+63612050,6039412,3
+bamboolala,6039412,3
+57947419,6039412,3
+52167842,6039412,-1
+4652776,6039412,3
+laolei19900613,6039412,3
+69197662,6039412,5
+69197662,6039412,5
+mickey19900513,6039412,4
+129798303,6039412,1
+52313219,6039412,3
+42646716,6039412,3
+zoufei0404,6039412,4
+A-sun,6039412,3
+60858560,6039412,4
+3610707,6039412,2
+71402960,6039412,3
+80508054,6039412,4
+41310633,6039412,1
+52357915,6039412,4
+man_to_patient,6039412,3
+tudounvjue,6039412,3
+72391986,6039412,3
+79846975,6039412,5
+32094199,6039412,3
+64380356,6039412,5
+80537833,6039412,3
+Hey_Flicka,6039412,2
+70574129,6039412,3
+59236889,6039412,3
+Karol0411,6039412,4
+113251096,6039412,3
+77222475,6039412,2
+68024590,6039412,3
+MrBigKidney,6039412,2
+1530155,6039412,3
+jjkkfive,6039412,3
+69377134,6039412,5
+34028726,6039412,2
+54856226,6039412,2
+59245915,6039412,2
+35012688,6039412,3
+65361495,6039412,3
+6327344,6039412,3
+starcloudy,6039412,-1
+120929768,6039412,3
+nightivy,6039412,3
+nightivy,6039412,3
+liaoliao219,6039412,3
+Petrick628,6039412,2
+58672259,6039412,2
+27407319,6039412,5
+phoenixjanezhai,6039412,4
+62119484,6039412,2
+crazymelon,6039412,2
+yyo427,6039412,-1
+73079867,6039412,4
+55011354,6039412,2
+volitta,6039412,3
+122706377,6039412,4
+ache.vera,6039412,3
+COCOTTE,6039412,2
+EA-ZOE,6039412,-1
+63576554,6039412,4
+51821755,6039412,3
+53412927,6039412,3
+2676475,6039412,4
+2676475,6039412,4
+48885291,6039412,3
+60190469,6039412,3
+wheatkittymew,6039412,5
+bearcubmer,6039412,4
+60155135,6039412,2
+LauFun,6039412,2
+127337655,6039412,3
+46388568,6039412,3
+116054561,6039412,4
+elsfkyyo,6039412,2
+66802525,6039412,1
+3369909,6039412,4
+1768350,6039412,2
+4643817,6039412,3
+weiwei1020,6039412,4
+83206457,6039412,1
+tracy123456,6039412,3
+hello_hana,6039412,4
+4590334,6039412,4
+50081676,6039412,4
+30982627,6039412,-1
+50752972,6039412,3
+cloverllx,6039412,2
+yvonneliu,6039412,3
+47869189,6039412,3
+55279045,6039412,3
+2601748,6039412,-1
+92805867,6039412,3
+46815070,6039412,2
+djn1399,6039412,3
+2691573,6039412,2
+78481402,6039412,3
+1383919,6039412,4
+52696829,6039412,3
+66104614,6039412,3
+69836665,6039412,2
+40687803,6039412,5
+42669507,6039412,2
+superrao,6039412,-1
+54664894,6039412,3
+shiori,6039412,2
+nknymphet,6039412,3
+63352492,6039412,2
+78806633,6039412,3
+128200926,6039412,4
+verygossip,6039412,4
+Ghostlin,6039412,4
+yuan0243109,6039412,3
+52281129,6039412,-1
+63192137,6039412,4
+34230644,6039412,2
+2185742,6039412,3
+63132023,6039412,5
+69807491,6039412,3
+78786637,6039412,3
+yu830,6039412,5
+34753066,6039412,4
+53135086,6039412,3
+eastrose,6039412,3
+58245825,6039412,3
+suchendd,6039412,4
+4587526,6039412,3
+moon6fly,6039412,3
+2167679,6039412,3
+58012559,6039412,3
+28312683,6039412,3
+callmeone,6039412,3
+lunaya,6039412,3
+christinahua,6039412,4
+120986477,6039412,5
+1811212,6039412,3
+TenkyAn,6039412,4
+cazze,6039412,3
+78578230,6039412,3
+48253465,6039412,5
+Marcelleff,6039412,2
+tianchuan,6039412,3
+65054559,6039412,3
+122172972,6039412,3
+liaoyanwen,6039412,4
+qinglx,6039412,3
+39764337,6039412,3
+2348623,6039412,-1
+56480029,6039412,3
+66084053,6039412,5
+shiminxu,6039412,3
+64205062,6039412,2
+85360234,6039412,3
+120313404,6039412,3
+dadodo,6039412,-1
+CharlesLC,6039412,2
+xiaoqianquan,6039412,3
+74277533,6039412,-1
+amandaccforever,6039412,4
+67769734,6039412,3
+82229229,6039412,2
+78273526,6039412,2
+47421248,6039412,-1
+33787878,6039412,3
+uwtw,6039412,4
+Shin1ngDays,6039412,4
+33977432,6039412,2
+4107805,6039412,-1
+83888533,6039412,4
+58691001,6039412,4
+qianglavender,6039412,3
+32670743,6039412,3
+46144873,6039412,5
+Jkoim,6039412,3
+14247291,6039412,3
+37288881,6039412,4
+goldenhornking,6039412,2
+66142939,6039412,4
+foreverwxin,6039412,3
+48590382,6039412,3
+sadie_xiong,6039412,3
+39748225,6039412,4
+40460608,6039412,4
+callus,6039412,3
+lyuri,6039412,4
+52790328,6039412,4
+40498676,6039412,3
+CynthiaL,6039412,3
+LadyShino,6039412,4
+3721683,6039412,2
+zjw881224,6039412,3
+siemielu,6039412,3
+50009835,6039412,3
+4654940,6039412,4
+biquan,6039412,4
+summer4525,6039412,3
+40668370,6039412,2
+66907377,6039412,3
+zeroiris,6039412,1
+yoteamomucho,6039412,3
+miss.version,6039412,4
+2903830,6039412,3
+bigevaren,6039412,5
+49596137,6039412,3
+85324202,6039412,2
+LionManKinG,6039412,3
+37551097,6039412,3
+delicioussalad,6039412,3
+3843498,6039412,3
+2298495,6039412,5
+49639270,6039412,2
+jessie.sun,6039412,-1
+qiQ,6039412,4
+46065523,6039412,4
+caocaoa,6039412,3
+Smileysnow,6039412,5
+Precious0113,6039412,4
+103754230,6039412,2
+34592808,6039412,4
+Jaytaoo,6039412,4
+44852938,6039412,3
+AlecChou,6039412,4
+rienge,6039412,5
+wytwumin,6039412,3
+wytwumin,6039412,3
+74948787,6039412,5
+Rencee,6039412,5
+1496920,6039412,5
+iloveesb,6039412,3
+3142248,6039412,3
+4321081,6039412,4
+52277061,6039412,-1
+nora1sme,6039412,5
+55496858,6039412,4
+4114969,6039412,3
+76999762,6039412,3
+72040827,6039412,4
+imCheryl,6039412,2
+78833399,6039412,2
+yaoyaolu,6039412,3
+49653478,6039412,4
+26648697,6039412,4
+65178670,6039412,3
+46810238,6039412,2
+clever_trick,6039412,3
+120787443,6039412,4
+2918978,6039412,4
+53393312,6039412,3
+1336631,6039412,3
+bluegluegun,6039412,1
+54193786,6039412,2
+57723507,6039412,3
+wanwan824,6039412,5
+3377107,6039412,2
+91431287,6039412,3
+8342182,6039412,5
+Rachel.L,6039412,3
+justinwu0129,6039412,4
+freedom-seeker,6039412,2
+114790609,6039412,2
+1196601,6039412,2
+shupei,6039412,3
+liaojiafen,6039412,3
+28712164,6039412,5
+mouliangliang,6039412,4
+jiaosally,6039412,2
+85660979,6039412,4
+61811132,6039412,4
+4245970,6039412,2
+58287607,6039412,4
+84000442,6039412,3
+renling,6039412,4
+57088195,6039412,2
+13147316,6039412,3
+64173822,6039412,4
+sauking,6039412,4
+rainbowlla,6039412,3
+44058159,6039412,3
+1689876,6039412,3
+119420162,6039412,4
+44484325,6039412,4
+justz1e,6039412,4
+samy0868,6039412,3
+charmine913,6039412,3
+57562576,6039412,2
+myTrista,6039412,3
+62735975,6039412,3
+43592386,6039412,4
+feilong880928,6039412,4
+35508015,6039412,4
+62449580,6039412,2
+71348074,6039412,3
+120531545,6039412,1
+littlejy,6039412,3
+49541286,6039412,3
+bubblewing,6039412,3
+junlucy,6039412,3
+46572945,6039412,3
+3177593,6039412,2
+cat_yr,6039412,3
+Melbourner,6039412,3
+57060844,6039412,3
+74641801,6039412,3
+40591271,6039412,4
+xy9102,6039412,3
+69790989,6039412,2
+93582909,6039412,2
+33399271,6039412,3
+4351653,6039412,3
+50880780,6039412,2
+1133756,6039412,3
+57248096,6039412,4
+11020421,6039412,2
+yjjtdcq200,6039412,4
+89083122,6039412,2
+115702103,6039412,3
+56413716,6039412,2
+AeroAnte,6039412,3
+miqingye,6039412,4
+50179673,6039412,4
+zhudasu,6039412,3
+1809188,6039412,2
+tianranzijiegou,6039412,3
+45120293,6039412,3
+62644533,6039412,4
+60159317,6039412,3
+48855413,6039412,2
+jinjidexiong,6039412,2
+85205230,6039412,4
+sixties,6039412,3
+98780498,6039412,3
+1929758,6039412,3
+4344313,6039412,2
+58056381,6039412,1
+lvxing926,6039412,3
+33075480,6039412,3
+cyrus_wong,6039412,3
+75937419,6039412,3
+119644008,6039412,1
+70119569,6039412,3
+1498656,6039412,4
+61566876,6039412,4
+75149546,6039412,-1
+46146656,6039412,1
+2809081,6039412,4
+61314645,6039412,3
+72880091,6039412,5
+64744741,6039412,2
+yuxituo,6039412,3
+47554223,6039412,4
+80394054,6039412,2
+xiaoxintu,6039412,3
+120735055,6039412,3
+59621398,6039412,3
+2259682,6039412,3
+52706531,6039412,2
+2600693,6039412,3
+57723619,6039412,2
+xysxt,6039412,3
+ananw99,6039412,3
+57728302,6039412,3
+63844420,6039412,3
+dd1001,6039412,4
+gilyun,6039412,3
+Camusdead,6039412,4
+nikubenki,6039412,3
+53594562,6039412,3
+50126982,6039412,4
+Jennytakun,6039412,5
+MagaraC,6039412,3
+68811807,6039412,3
+56675092,6039412,3
+113310119,6039412,4
+hljmsfy,6039412,2
+42871982,6039412,4
+45242330,6039412,2
+76412365,6039412,3
+61733513,6039412,3
+3784972,6039412,1
+48591299,6039412,2
+50412168,6039412,4
+57476701,6039412,2
+sarahgreentea,6039412,3
+yalindongdong,6039412,3
+45772291,6039412,1
+shiningkiss85,6039412,4
+yolanda9421,6039412,3
+racol,6039412,3
+MOKUZJY,6039412,3
+4706549,6039412,-1
+120889404,6039412,4
+60417212,6039412,3
+89902421,6039412,3
+tenkappa,6039412,-1
+yoyolibing,6039412,3
+SIHEishere,6039412,3
+53437976,6039412,3
+63976517,6039412,3
+86636671,6039412,4
+40835496,6039412,3
+88346237,6039412,3
+68597225,6039412,3
+64025963,6039412,2
+42170299,6039412,4
+42170299,6039412,4
+45905762,6039412,3
+45416494,6039412,3
+61223246,6039412,3
+missleexx,6039412,2
+66053525,6039412,2
+4327225,6039412,3
+72967460,6039412,3
+louis4498,6039412,4
+57077284,6039412,2
+51815760,6039412,4
+4307886,6039412,2
+67907884,6039412,3
+duo728,6039412,-1
+momohei,6039412,2
+48194135,6039412,3
+2291008,6039412,3
+dinge,6039412,-1
+nikilee77,6039412,2
+57800462,6039412,3
+57800462,6039412,3
+sentexiaohu,6039412,3
+50616224,6039412,4
+62440294,6039412,4
+44510649,6039412,4
+127791327,6039412,3
+51413524,6039412,4
+27655958,6039412,3
+83907357,6039412,4
+five17,6039412,3
+99601239,6039412,4
+gracepeople,6039412,3
+sangdafa,6039412,3
+33080172,6039412,2
+56452253,6039412,3
+lchenye,6039412,4
+56890247,6039412,1
+62650320,6039412,2
+2111262,6039412,3
+102901525,6039412,1
+69277594,6039412,2
+summerguagua,6039412,2
+yaya_chichi,6039412,4
+victor618000,6039412,-1
+keytoworld,6039412,2
+51381785,6039412,3
+92713558,6039412,2
+51945032,6039412,3
+127728111,6039412,3
+71574131,6039412,3
+siqimarie,6039412,3
+97314140,6039412,4
+crystalhetian,6039412,2
+52401020,6039412,4
+128836726,6039412,4
+28959917,6039412,2
+konghanlei,6039412,3
+61716473,6039412,2
+93050157,6039412,3
+iammaxlai,6039412,3
+65662824,6039412,3
+sanbanzui,6039412,3
+imachild,6039412,3
+54315913,6039412,2
+53199032,6039412,3
+69406100,6039412,1
+55623765,6039412,-1
+dizzylu,6039412,3
+tinyrabbit,6039412,3
+fayeyes,6039412,4
+iamyx0116,6039412,2
+georginas_,6039412,5
+zhaopusheng,6039412,3
+47193126,6039412,2
+43714574,6039412,3
+59339605,6039412,3
+47681496,6039412,3
+89395128,6039412,4
+54405967,6039412,4
+90925457,6039412,1
+JuniorKnight,6039412,4
+2617674,6039412,3
+42137156,6039412,4
+60052107,6039412,2
+49809768,6039412,2
+GMDY,6039412,3
+55852131,6039412,5
+75231611,6039412,3
+53876925,6039412,3
+cassiopeiaxiah,6039412,3
+balconynemo,6039412,4
+60883936,6039412,3
+Adeline_Lau,6039412,3
+orangeT,6039412,4
+tangmenxiaosan,6039412,2
+47503793,6039412,1
+3836230,6039412,2
+57251364,6039412,3
+1101928,6039412,3
+54363681,6039412,3
+120356994,6039412,4
+70072870,6039412,2
+77165599,6039412,-1
+May_T,6039412,3
+oxygen02,6039412,2
+kejinlong,6039412,1
+57990089,6039412,2
+carol1990,6039412,4
+BAD1989,6039412,-1
+64859545,6039412,-1
+giacintaxx,6039412,4
+46609900,6039412,2
+yunyou1989,6039412,2
+weiweibujuan,6039412,3
+47971020,6039412,3
+susimai,6039412,2
+49273310,6039412,4
+honeypapa,6039412,3
+pajamania,6039412,2
+55480143,6039412,3
+iris59,6039412,-1
+54277204,6039412,3
+3723616,6039412,5
+67823084,6039412,3
+39611534,6039412,3
+119297298,6039412,3
+53107666,6039412,3
+52116951,6039412,3
+121805239,6039412,2
+37329078,6039412,5
+4749504,6039412,2
+60715343,6039412,3
+126023942,6039412,1
+3981138,6039412,4
+michelleyan,6039412,3
+59960623,6039412,3
+tqwang,6039412,3
+yingolanda,6039412,2
+51277324,6039412,4
+solphicsuecc,6039412,3
+3478406,6039412,3
+71412117,6039412,2
+29811353,6039412,3
+98588124,6039412,3
+120115211,6039412,2
+103214078,6039412,4
+56392220,6039412,3
+58768499,6039412,3
+64793869,6039412,1
+SeyfriedAriel,6039412,-1
+4841197,6039412,2
+38659536,6039412,3
+1499575,6039412,4
+120605718,6039412,3
+yozoh96119,6039412,2
+58149878,6039412,3
+4478025,6039412,2
+72368667,6039412,5
+84207817,6039412,3
+64307336,6039412,2
+ijihoon,6039412,3
+27432217,6039412,4
+124456282,6039412,4
+21113322,6039412,4
+83129118,6039412,3
+bluesky1314,6039412,1
+50930270,6039412,4
+17355189,6039412,-1
+43707620,6039412,2
+3072272,6039412,3
+pandawin,6039412,3
+51955912,6039412,5
+57418074,6039412,5
+13314482,6039412,3
+2751179,6039412,3
+2603359,6039412,3
+62135529,6039412,4
+qiusheng,6039412,3
+45107128,6039412,4
+53195586,6039412,4
+charlie_xumeng,6039412,4
+41939078,6039412,4
+49225161,6039412,4
+roxanneshiong,6039412,2
+isabell520,6039412,4
+1113431,6039412,2
+4367069,6039412,2
+sophiefeifei,6039412,2
+57929355,6039412,3
+75869572,6039412,3
+119526629,6039412,5
+65402009,6039412,3
+1747318,6039412,3
+14681606,6039412,5
+mengqishuo,6039412,5
+115467690,6039412,2
+wunie,6039412,2
+lilacdays,6039412,4
+12900199,6039412,1
+shanl,6039412,3
+tony07monkey,6039412,3
+58956740,6039412,3
+91222743,6039412,4
+2102530,6039412,3
+59638655,6039412,3
+49072248,6039412,2
+mmmmmya,6039412,4
+33773922,6039412,4
+27676863,6039412,3
+housefuture,6039412,5
+58018160,6039412,2
+66057217,6039412,3
+44716464,6039412,2
+43908956,6039412,3
+ISHADOW,6039412,3
+102862890,6039412,3
+62786223,6039412,2
+18746695,6039412,3
+61809588,6039412,4
+3624026,6039412,2
+wudaxi,6039412,3
+4264469,6039412,4
+83415261,6039412,3
+59340784,6039412,1
+49095343,6039412,2
+hapysmile,6039412,4
+85487157,6039412,3
+71755062,6039412,1
+54032989,6039412,5
+lihuan,6039412,3
+Ansheng_vivi,6039412,-1
+appreciation,6039412,2
+52469285,6039412,2
+61777956,6039412,5
+lunaa,6039412,2
+impzz,6039412,3
+sunlight115,6039412,3
+1898022,6039412,2
+sunyangchina,6039412,3
+jackybaby,6039412,2
+mixmx,6039412,3
+54004738,6039412,2
+wzn,6039412,4
+124004426,6039412,4
+xiguatang,6039412,3
+sailormoondan,6039412,4
+zhaix0221,6039412,1
+88450760,6039412,3
+21056454,6039412,3
+48258605,6039412,5
+71489312,6039412,2
+34417366,6039412,3
+51271192,6039412,3
+39200780,6039412,4
+126513997,6039412,2
+1285360,6039412,3
+gothiclolita,6039412,3
+59553434,6039412,4
+gushenshen,6039412,3
+gruice,6039412,2
+Freiheit429,6039412,4
+shousolo,6039412,3
+nancyyan,6039412,2
+62133991,6039412,3
+58435629,6039412,4
+60175719,6039412,4
+brainlesscong,6039412,3
+99805192,6039412,3
+67240379,6039412,3
+riqu,6039412,3
+soullyf,6039412,3
+yihaifei,6039412,4
+44316978,6039412,3
+52463415,6039412,3
+99812463,6039412,4
+34805156,6039412,3
+66105875,6039412,4
+59745943,6039412,3
+32742041,6039412,-1
+3506880,6039412,3
+128153765,6039412,4
+53462729,6039412,3
+62906196,6039412,3
+2818730,6039412,3
+hooklt,6039412,3
+84076381,6039412,4
+wentaoxie,6039412,3
+oliva,6039412,5
+49266863,6039412,3
+tintinggg,6039412,2
+41685508,6039412,3
+101763347,6039412,5
+LitCrack,6039412,2
+tanzhengyun,6039412,3
+twopersons,6039412,3
+64865282,6039412,5
+Nolonelyhere,6039412,5
+87459568,6039412,2
+68983294,6039412,4
+doreen1215,6039412,3
+3873448,6039412,3
+40021976,6039412,5
+jocelyn710,6039412,3
+49752957,6039412,3
+67494005,6039412,3
+50000718,6039412,4
+gm_hanxv,6039412,3
+76376590,6039412,5
+46060990,6039412,5
+qjlxiang,6039412,4
+3903753,6039412,2
+quite-yacca,6039412,3
+54146328,6039412,2
+98552283,6039412,4
+54540243,6039412,3
+54409197,6039412,-1
+53256209,6039412,3
+129015324,6039412,3
+lorenmt,6039412,2
+62087774,6039412,3
+58742257,6039412,1
+93449491,6039412,5
+58161520,6039412,2
+ink0,6039412,3
+39168659,6039412,3
+59774628,6039412,2
+51524247,6039412,-1
+25982397,6039412,4
+69387510,6039412,3
+88673988,6039412,5
+eazy89,6039412,3
+58135341,6039412,4
+74628004,6039412,2
+67823980,6039412,5
+39877849,6039412,4
+sue04,6039412,2
+Dabble,6039412,3
+59950516,6039412,1
+avro,6039412,3
+netsurfe,6039412,2
+48793243,6039412,3
+guitarain,6039412,3
+89785123,6039412,3
+becky-me,6039412,2
+hzloli,6039412,-1
+vivo,6039412,-1
+freeeeeeee,6039412,3
+71235824,6039412,5
+49258519,6039412,3
+2383316,6039412,4
+2829164,6039412,2
+74137880,6039412,4
+4549116,6039412,1
+TrueBit,6039412,2
+48911214,6039412,2
+7292654,6039412,3
+80317889,6039412,4
+echo-jian,6039412,3
+zephyrusxj,6039412,3
+stellaong,6039412,2
+86140576,6039412,-1
+childecc,6039412,3
+itisadamas,6039412,3
+91397625,6039412,5
+5758212,6039412,2
+93807160,6039412,4
+58063696,6039412,3
+emilialinlin,6039412,2
+xq03471022,6039412,5
+3429762,6039412,5
+116551398,6039412,3
+17828049,6039412,3
+119190302,6039412,3
+Qyaoyao,6039412,-1
+72870738,6039412,5
+misa_x,6039412,3
+1058726,6039412,-1
+69152007,6039412,2
+1338192,6039412,5
+84700560,6039412,3
+1251922,6039412,2
+79398772,6039412,2
+59945460,6039412,4
+2539331,6039412,4
+1333997,6039412,3
+92592691,6039412,3
+59593299,6039412,3
+54950938,6039412,2
+zhuqt,6039412,4
+1528379,6039412,3
+44295890,6039412,3
+44431964,6039412,2
+samixuan.,6039412,1
+47717774,6039412,3
+41365624,6039412,2
+69272743,6039412,2
+75045034,6039412,4
+4576925,6039412,1
+doingcando,6039412,3
+74028637,6039412,2
+duanduankong,6039412,4
+2386590,6039412,5
+58276692,6039412,3
+47821826,6039412,3
+47679672,6039412,2
+80995779,6039412,3
+122458396,6039412,-1
+xspretty,6039412,3
+47026437,6039412,3
+41839110,6039412,3
+119335678,6039412,3
+43508209,6039412,2
+82876812,6039412,2
+cactus.,6039412,2
+47052162,6039412,2
+28614229,6039412,3
+47227699,6039412,3
+30291732,6039412,-1
+61013102,6039412,4
+zoululu92,6039412,3
+21334043,6039412,3
+zoe_dl,6039412,3
+125148086,6039412,3
+colorhyun,6039412,3
+54593861,6039412,3
+evilQin,6039412,3
+58865783,6039412,3
+53773450,6039412,3
+63189132,6039412,1
+realpussy,6039412,2
+SUNSAD,6039412,3
+55886505,6039412,2
+91388404,6039412,3
+dmzrachel,6039412,2
+64332284,6039412,5
+3600974,6039412,3
+53590230,6039412,1
+pm,6039412,3
+76722357,6039412,4
+jhkhjkg,6039412,3
+86714653,6039412,3
+cikar,6039412,4
+60095742,6039412,-1
+poly0330,6039412,2
+63033488,6039412,3
+lizzywoo,6039412,3
+deathlegend,6039412,-1
+128957363,6039412,5
+58579932,6039412,5
+simoncxm,6039412,5
+71336941,6039412,3
+49269010,6039412,3
+73163829,6039412,5
+93504074,6039412,2
+47599277,6039412,4
+Kevin3,6039412,4
+81194906,6039412,3
+3202437,6039412,2
+91114065,6039412,2
+Justin.Bieber,6039412,4
+42650469,6039412,4
+macrocheng,6039412,3
+44276090,6039412,3
+128481768,6039412,1
+55675710,6039412,4
+2864670,6039412,4
+wanglinzi0214,6039412,4
+122290574,6039412,2
+70819038,6039412,5
+chatmeng,6039412,3
+50769743,6039412,3
+dearbox,6039412,5
+4409616,6039412,2
+wen163,6039412,3
+DKJessica,6039412,3
+xuxuyooxi,6039412,3
+125275470,6039412,4
+60160104,6039412,3
+mangojoan,6039412,3
+nightlord7,6039412,4
+Jensen4ever,6039412,1
+19136693,6039412,1
+10125205,6039412,1
+colorfulturtle,6039412,-1
+eddychaw,6039412,3
+52228251,6039412,2
+54959481,6039412,4
+1334804,6039412,3
+chris310-nan,6039412,3
+43133361,6039412,3
+jellysmiling,6039412,4
+Summerhoda,6039412,2
+56099441,6039412,2
+SundraLee,6039412,4
+84156933,6039412,4
+122107585,6039412,3
+72824963,6039412,1
+52129503,6039412,3
+102788325,6039412,3
+65854158,6039412,3
+65854158,6039412,3
+yiyen,6039412,4
+43909634,6039412,2
+3712505,6039412,4
+shixiaoxuan,6039412,3
+70887292,6039412,2
+47924060,6039412,1
+102987982,6039412,4
+128834814,6039412,2
+76284536,6039412,2
+naiveer,6039412,2
+AndiChiao,6039412,1
+49545854,6039412,2
+1366286,6039412,3
+41864568,6039412,3
+yuyangaiyang,6039412,4
+10197030,6039412,3
+47203589,6039412,3
+45553945,6039412,3
+90548304,6039412,3
+49636760,6039412,3
+baixiaobai88,6039412,2
+61514882,6039412,3
+119253554,6039412,3
+kikilili006,6039412,2
+49012195,6039412,-1
+AmadHatter,6039412,3
+xiaoczhang,6039412,5
+59993114,6039412,2
+78712739,6039412,3
+Tobyone,6039412,4
+45095218,6039412,3
+65272841,6039412,4
+56994216,6039412,2
+54757798,6039412,2
+2909826,6039412,3
+CTT696,6039412,4
+2808574,6039412,4
+37424688,6039412,3
+sofafish,6039412,4
+Youmans,6039412,3
+Xia0_K,6039412,3
+ezyli,6039412,1
+2192381,6039412,2
+52466064,6039412,2
+43156825,6039412,3
+77322249,6039412,3
+1834928,6039412,3
+fairyx,6039412,3
+62477319,6039412,3
+2187951,6039412,3
+52458935,6039412,3
+never_zj,6039412,4
+76781369,6039412,3
+ddcchenfei,6039412,5
+54385496,6039412,4
+42550528,6039412,3
+44810732,6039412,1
+tobewith0216,6039412,4
+lynn920419,6039412,5
+lynn920419,6039412,5
+32433633,6039412,3
+best_times,6039412,3
+125687586,6039412,4
+3680251,6039412,3
+4324027,6039412,3
+46428811,6039412,2
+68091042,6039412,2
+ldalice,6039412,3
+4881261,6039412,2
+silentg,6039412,1
+48479937,6039412,3
+angang721,6039412,4
+3766371,6039412,3
+Lreckle,6039412,1
+61302654,6039412,3
+41440625,6039412,3
+4213202,6039412,3
+103333124,6039412,1
+foreverbye622,6039412,2
+odelete,6039412,4
+66461284,6039412,4
+61093972,6039412,5
+yllovefish,6039412,3
+ailiyubaba,6039412,1
+63376272,6039412,3
+3071518,6039412,3
+louis15yao,6039412,4
+127766292,6039412,4
+128824873,6039412,4
+dashdot,6039412,4
+43375121,6039412,3
+frida0516,6039412,3
+tianbuman,6039412,1
+13294183,6039412,4
+69434822,6039412,2
+53800868,6039412,2
+78459327,6039412,4
+52872697,6039412,3
+wojuguniang,6039412,3
+3543860,6039412,3
+93952028,6039412,2
+justsmaki,6039412,3
+47403394,6039412,2
+invierno,6039412,3
+yuantown,6039412,3
+48967331,6039412,3
+55355100,6039412,3
+30435959,6039412,4
+48962442,6039412,-1
+57585752,6039412,3
+70914565,6039412,3
+35363595,6039412,3
+55613939,6039412,4
+48395509,6039412,2
+51573239,6039412,3
+68657829,6039412,3
+sqz1212,6039412,3
+stellalula,6039412,3
+121148510,6039412,1
+64168650,6039412,3
+63601043,6039412,3
+endlishock,6039412,5
+sillyonce,6039412,4
+66234722,6039412,4
+yh9708,6039412,3
+Iacocca,6039412,2
+4535265,6039412,3
+elsiehu,6039412,5
+3678658,6039412,2
+75952866,6039412,2
+89812272,6039412,4
+81189396,6039412,4
+56469194,6039412,3
+4266601,6039412,3
+Kelsilxq,6039412,3
+a-zhu,6039412,3
+59164249,6039412,3
+suren11,6039412,3
+52887670,6039412,4
+9463369,6039412,3
+51836771,6039412,2
+jokerpk,6039412,3
+sybilyuan,6039412,3
+57784370,6039412,3
+littlebomb,6039412,3
+zhchtcm,6039412,4
+58082445,6039412,4
+66937674,6039412,3
+76811076,6039412,3
+43258987,6039412,3
+hoho1012,6039412,5
+4469892,6039412,4
+ftjason,6039412,4
+55805704,6039412,4
+ishtarie,6039412,4
+looma,6039412,2
+2740224,6039412,4
+11035464,6039412,2
+83259241,6039412,3
+97284261,6039412,3
+70794815,6039412,3
+89480416,6039412,3
+54595884,6039412,3
+2993640,6039412,3
+daningcc,6039412,4
+44050654,6039412,4
+81611618,6039412,2
+114741657,6039412,2
+Lylaohyeah,6039412,4
+49190226,6039412,3
+pangpangguanzhe,6039412,-1
+mondayjungle,6039412,3
+Sharpay0405,6039412,3
+127785608,6039412,4
+39509324,6039412,2
+39913122,6039412,4
+88922890,6039412,4
+53070283,6039412,3
+jeanswearj,6039412,2
+57678157,6039412,2
+62864634,6039412,3
+92220759,6039412,4
+70543822,6039412,3
+82624141,6039412,4
+50420997,6039412,4
+84853014,6039412,5
+87770584,6039412,3
+50963591,6039412,3
+Tracy_morning,6039412,3
+danzig,6039412,3
+foxgarden,6039412,3
+80846481,6039412,2
+69844032,6039412,3
+70469575,6039412,2
+52858025,6039412,2
+susanyezi,6039412,3
+58339090,6039412,2
+killeren,6039412,3
+blachkitty,6039412,3
+40581527,6039412,3
+lamnene,6039412,5
+59101445,6039412,3
+75696994,6039412,4
+68443954,6039412,5
+1456706,6039412,3
+ivygreen06,6039412,3
+aralebox,6039412,2
+vane0109,6039412,3
+troublemakerjoy,6039412,2
+sophia_423,6039412,2
+imissyu,6039412,3
+zhoujingsi,6039412,4
+72657219,6039412,4
+44365763,6039412,2
+59699452,6039412,3
+junjemmm,6039412,2
+90693032,6039412,2
+merengue,6039412,4
+57472846,6039412,-1
+62761738,6039412,4
+58616372,6039412,5
+54612022,6039412,4
+noah520,6039412,2
+SanShing,6039412,2
+circus625,6039412,3
+122124788,6039412,3
+49128296,6039412,3
+63485325,6039412,3
+xun0717,6039412,5
+lastunicorn,6039412,5
+56582885,6039412,3
+126014934,6039412,4
+monica-lcw,6039412,2
+KinO_O,6039412,4
+40303756,6039412,3
+4688654,6039412,4
+xuemenga,6039412,4
+petitejoie,6039412,2
+124228223,6039412,2
+48669367,6039412,2
+istas,6039412,-1
+53312358,6039412,5
+40573013,6039412,3
+82040101,6039412,5
+69066282,6039412,2
+71944144,6039412,4
+57365488,6039412,3
+121754243,6039412,4
+Candy_Can,6039412,2
+peae,6039412,3
+79720313,6039412,4
+alicie,6039412,3
+23961800,6039412,4
+82404312,6039412,4
+59918811,6039412,4
+49082695,6039412,3
+65981408,6039412,2
+JoshLee525,6039412,2
+gin_gin,6039412,2
+frankie66,6039412,1
+57892875,6039412,-1
+46004647,6039412,5
+izhangzhu,6039412,3
+42362308,6039412,3
+cool123cool,6039412,4
+67393303,6039412,2
+more-u-are,6039412,2
+57819875,6039412,3
+Hagxe,6039412,2
+blue4light,6039412,4
+55374994,6039412,4
+Jacy,6039412,3
+45362948,6039412,2
+57425798,6039412,2
+57139809,6039412,4
+52156870,6039412,3
+3098845,6039412,4
+hanzhang9037,6039412,3
+4165770,6039412,3
+cris7ss,6039412,3
+caizhidao,6039412,3
+66136937,6039412,4
+yyharies,6039412,3
+evalinezhou,6039412,2
+1653790,6039412,3
+3914295,6039412,3
+linngallery,6039412,2
+alisontsai,6039412,4
+54683234,6039412,3
+54328973,6039412,3
+4335163,6039412,2
+3876144,6039412,2
+rurucat,6039412,3
+43215145,6039412,4
+ambrosia.levine,6039412,5
+52679814,6039412,3
+vivianya,6039412,4
+IM.DAN,6039412,3
+1217228,6039412,-1
+vividtime,6039412,2
+wushuyunb,6039412,2
+yolanda_kumo,6039412,-1
+NIMESH,6039412,3
+CB.7,6039412,4
+62093986,6039412,3
+C.YEll,6039412,3
+49444266,6039412,3
+53981357,6039412,2
+Betty818,6039412,5
+1248938,6039412,4
+43732585,6039412,3
+ClaireL,6039412,2
+onlyterence,6039412,4
+44412475,6039412,3
+26681915,6039412,2
+57200771,6039412,3
+maxmartin,6039412,5
+kimixu1017,6039412,2
+watson,6039412,3
+83094433,6039412,2
+70615998,6039412,3
+46911720,6039412,2
+58020548,6039412,2
+4445748,6039412,2
+48283426,6039412,5
+37596109,6039412,2
+47369676,6039412,3
+topxpp,6039412,3
+37751161,6039412,3
+32195292,6039412,3
+68699814,6039412,4
+3421868,6039412,2
+Ronnie816,6039412,2
+xiobai,6039412,3
+marryliu,6039412,5
+48986399,6039412,4
+50527578,6039412,3
+67679868,6039412,1
+1469928,6039412,3
+65294158,6039412,1
+44388455,6039412,4
+olivepope,6039412,4
+78644189,6039412,-1
+45319686,6039412,1
+4544241,6039412,3
+49089345,6039412,5
+61506971,6039412,3
+evahsu,6039412,4
+3602431,6039412,4
+mymydemon,6039412,2
+JLinn,6039412,4
+119081444,6039412,4
+93606686,6039412,3
+1434867,6039412,2
+47917142,6039412,3
+53212541,6039412,3
+53665197,6039412,3
+35135916,6039412,3
+82016647,6039412,5
+82016647,6039412,5
+53927357,6039412,4
+echozhan,6039412,2
+porkwen,6039412,3
+39002982,6039412,2
+68532789,6039412,3
+baladong123,6039412,2
+121874254,6039412,4
+68227584,6039412,3
+44003548,6039412,4
+shredderboss,6039412,3
+39649962,6039412,3
+shadyloveme3,6039412,1
+Sttaan,6039412,5
+leevee,6039412,2
+51207003,6039412,3
+kidaliu,6039412,2
+35739270,6039412,3
+115898172,6039412,3
+83974267,6039412,2
+57931932,6039412,3
+53420942,6039412,2
+wuyueqinghe,6039412,4
+127071596,6039412,4
+94678422,6039412,1
+1069770,6039412,3
+yokiiii,6039412,4
+58401385,6039412,2
+yzk2237084,6039412,4
+34309421,6039412,2
+74418627,6039412,2
+75513285,6039412,3
+3464028,6039412,3
+42556657,6039412,3
+summer-dong,6039412,4
+10036809,6039412,4
+49808652,6039412,3
+82521332,6039412,2
+53932443,6039412,4
+63531003,6039412,4
+63531003,6039412,4
+51200813,6039412,2
+67438572,6039412,4
+xunliwu,6039412,3
+58105572,6039412,3
+MLMLMLMLML,6039412,3
+luckycharm,6039412,-1
+43632851,6039412,3
+yeungyi,6039412,2
+iqiqio,6039412,3
+3592617,6039412,3
+zzsilence,6039412,3
+licinda,6039412,2
+84237206,6039412,2
+45283092,6039412,2
+39565182,6039412,3
+48847988,6039412,3
+54907080,6039412,5
+silenceandtears,6039412,1
+39161037,6039412,2
+101766372,6039412,5
+zhangyutao519,6039412,3
+46143252,6039412,3
+50474625,6039412,4
+60166916,6039412,2
+47043061,6039412,3
+INN4T3,6039412,1
+46600033,6039412,4
+2350018,6039412,2
+nuan3,6039412,-1
+Stephen2046,6039412,3
+52235121,6039412,3
+60701395,6039412,4
+hhhlulu,6039412,3
+104744030,6039412,3
+36942754,6039412,3
+sarome,6039412,2
+61037567,6039412,3
+62076752,6039412,5
+grassheaven,6039412,2
+71719658,6039412,3
+45761304,6039412,1
+52529736,6039412,2
+52039512,6039412,1
+3876276,6039412,3
+52287768,6039412,3
+3065272,6039412,2
+ambershi,6039412,1
+johninrongbin,6039412,3
+105169883,6039412,2
+Sally_Wu,6039412,3
+115721198,6039412,3
+ALTNATIONAL,6039412,3
+49308797,6039412,4
+windsdiary,6039412,1
+rebecca14jan,6039412,-1
+49832539,6039412,-1
+felili,6039412,3
+66224726,6039412,2
+122331299,6039412,2
+52629186,6039412,3
+Mmmmmmagica,6039412,3
+zdoudou,6039412,3
+cat-in-black,6039412,1
+coolmilk,6039412,3
+119619715,6039412,5
+102408048,6039412,3
+40008452,6039412,4
+57036739,6039412,5
+73478164,6039412,1
+102530220,6039412,2
+mafeifei246,6039412,3
+seasonrainbow,6039412,4
+fwk522,6039412,4
+wwwwind,6039412,3
+4873862,6039412,3
+Stan_Guy,6039412,5
+adelineadele,6039412,4
+56711007,6039412,3
+122168213,6039412,5
+57980226,6039412,4
+52662813,6039412,2
+lrc940928,6039412,4
+birchyanhua,6039412,3
+merolan,6039412,2
+1831746,6039412,3
+61105594,6039412,4
+zdq108,6039412,3
+luffyhan,6039412,5
+lilian199288,6039412,3
+3738868,6039412,2
+KeryChou,6039412,3
+zl99,6039412,4
+84855467,6039412,2
+58310222,6039412,4
+Mrsmilence,6039412,3
+120372720,6039412,2
+106158376,6039412,4
+57880300,6039412,5
+57213151,6039412,2
+haihouzhi,6039412,3
+90635697,6039412,3
+54011582,6039412,3
+127531680,6039412,5
+3792771,6039412,3
+zyb,6039412,3
+qiandouduo,6039412,5
+2106137,6039412,4
+32791891,6039412,3
+42006560,6039412,3
+49314835,6039412,3
+46229923,6039412,2
+vfish,6039412,3
+2429292,6039412,2
+Kallen_jiajia,6039412,4
+play0829,6039412,3
+Susan1224,6039412,5
+63932737,6039412,2
+cissyxuecc,6039412,4
+48126061,6039412,4
+48126061,6039412,4
+AmeliaZhu,6039412,-1
+36499503,6039412,3
+90741174,6039412,3
+fancynotgrow,6039412,4
+utasty,6039412,3
+47782519,6039412,2
+2515004,6039412,5
+49893874,6039412,3
+62047497,6039412,3
+121850166,6039412,2
+jujubejuice,6039412,2
+2464015,6039412,4
+3576170,6039412,3
+xxxdorisxxx,6039412,3
+48876090,6039412,2
+cookiesun0420,6039412,3
+34434303,6039412,3
+nancylo,6039412,4
+81506415,6039412,4
+71126772,6039412,5
+dearbaoba,6039412,5
+74139024,6039412,3
+fuzyu,6039412,4
+silverslivers,6039412,3
+128568817,6039412,3
+futureheihei,6039412,3
+1527797,6039412,2
+alwaysaway,6039412,3
+sophielinff,6039412,-1
+Turkeyears,6039412,3
+51286734,6039412,3
+bettyDX,6039412,4
+27713698,6039412,3
+35578162,6039412,3
+1177906,6039412,4
+leetreasure,6039412,3
+45878132,6039412,3
+67811520,6039412,-1
+3013752,6039412,3
+53854833,6039412,2
+51493816,6039412,3
+arabela7,6039412,4
+ting_shark,6039412,-1
+fikichow,6039412,3
+opheliafeeling,6039412,3
+eggsoup,6039412,4
+duoran,6039412,4
+Shuohai,6039412,3
+51729072,6039412,5
+3763502,6039412,3
+lzannie823,6039412,3
+46591668,6039412,4
+120051851,6039412,4
+time4tsj,6039412,1
+126960731,6039412,2
+iear,6039412,3
+58231390,6039412,3
+51638161,6039412,2
+vivienvb,6039412,3
+aprillands,6039412,3
+83446419,6039412,3
+109282362,6039412,3
+yangyi52,6039412,3
+124058067,6039412,4
+2325252,6039412,3
+cooloh,6039412,4
+13871057,6039412,3
+36514760,6039412,2
+62383479,6039412,3
+dbsays,6039412,5
+leavetaking,6039412,3
+65538675,6039412,3
+hello.louis,6039412,3
+joemayxu,6039412,3
+linguanyandxno1,6039412,5
+yiran513,6039412,4
+zj29,6039412,3
+75007342,6039412,2
+hokuto,6039412,3
+Nicccki,6039412,1
+tongbaojia,6039412,3
+60033206,6039412,3
+75546072,6039412,3
+xiaoyuxihai,6039412,3
+42368147,6039412,1
+30570003,6039412,4
+79867598,6039412,4
+Elevennight,6039412,2
+83455232,6039412,4
+sheldonkao,6039412,2
+88412250,6039412,4
+64779909,6039412,2
+74891398,6039412,3
+76561680,6039412,5
+103602476,6039412,5
+lauer,6039412,4
+lfyfnfn,6039412,3
+ziyu0802,6039412,4
+4601305,6039412,3
+43838200,6039412,2
+59082872,6039412,-1
+52587148,6039412,2
+ysera,6039412,2
+chemengting,6039412,3
+phoenix43,6039412,1
+35668888,6039412,3
+51445023,6039412,3
+51736421,6039412,2
+woollen50,6039412,2
+ttcucu,6039412,3
+84386523,6039412,3
+doctoroh,6039412,4
+51469731,6039412,3
+22696023,6039412,1
+105859099,6039412,3
+47881141,6039412,3
+28693684,6039412,2
+hedmgh,6039412,3
+55649933,6039412,2
+75703707,6039412,3
+fufumeo,6039412,2
+40920118,6039412,3
+49514931,6039412,4
+53711612,6039412,4
+75189651,6039412,2
+3061502,6039412,5
+38811434,6039412,2
+63676625,6039412,2
+58854758,6039412,3
+87796957,6039412,-1
+83853096,6039412,3
+59232994,6039412,4
+jacquelinelau,6039412,2
+50480913,6039412,3
+arielhappiness,6039412,3
+63503398,6039412,3
+60841792,6039412,-1
+55383324,6039412,3
+nianyanian,6039412,3
+67182363,6039412,2
+92392303,6039412,4
+alamao,6039412,-1
+74346817,6039412,3
+62389501,6039412,1
+zhangxiaolu,6039412,4
+63452908,6039412,3
+63496954,6039412,2
+43088933,6039412,2
+60614735,6039412,3
+84297602,6039412,5
+74762630,6039412,3
+sensenv,6039412,-1
+58242884,6039412,2
+jtaiyang,6039412,1
+83689607,6039412,4
+nnight,6039412,4
+Rockworld,6039412,3
+73074984,6039412,4
+57286406,6039412,3
+43631308,6039412,3
+43807777,6039412,3
+nocturnelee,6039412,2
+catyes,6039412,3
+48762314,6039412,4
+116540697,6039412,3
+49122242,6039412,3
+btone0808,6039412,3
+T.S.,6039412,3
+50041592,6039412,5
+FiveStrong,6039412,3
+2005598,6039412,3
+47593124,6039412,3
+irisirisiris,6039412,3
+Josieeeeee,6039412,2
+wujiuri,6039412,-1
+celia550,6039412,4
+Wangpenn,6039412,4
+vesperxu,6039412,-1
+64069869,6039412,3
+sureyan2,6039412,3
+loidi,6039412,3
+AaronJemm,6039412,5
+77905933,6039412,1
+53076830,6039412,3
+noheeyeon,6039412,4
+67516737,6039412,4
+52686959,6039412,2
+76310421,6039412,3
+3656028,6039412,5
+74791348,6039412,2
+xiaoheilian,6039412,4
+chouchouCp,6039412,-1
+48673876,6039412,2
+49312818,6039412,2
+lavalert1964,6039412,3
+46462063,6039412,2
+2417136,6039412,3
+mymx,6039412,2
+t_go,6039412,3
+1813564,6039412,3
+61267982,6039412,4
+48666472,6039412,3
+li620toyfly,6039412,2
+nicijinn,6039412,1
+spencersummer,6039412,-1
+norah1212,6039412,3
+34245713,6039412,1
+124532059,6039412,3
+64252494,6039412,3
+misschedan,6039412,3
+xianjianonly,6039412,3
+bg1212,6039412,2
+3568353,6039412,3
+54141535,6039412,3
+52708083,6039412,3
+chuleiwu,6039412,3
+Joanna-o,6039412,3
+kimliuzaixi,6039412,3
+elena-ye,6039412,4
+torresgomenggo,6039412,3
+83472045,6039412,4
+91348351,6039412,3
+56647071,6039412,1
+Cincky.XiN,6039412,1
+LolitaBerry,6039412,3
+1366486,6039412,-1
+53353169,6039412,4
+beyondcen,6039412,2
+51303010,6039412,2
+43527314,6039412,4
+58894699,6039412,3
+amber11,6039412,3
+49200775,6039412,4
+60127812,6039412,4
+changefiona,6039412,3
+dream_marker,6039412,3
+in551w1,6039412,3
+Mika-Q,6039412,4
+Phyllis5,6039412,1
+Phyllis5,6039412,1
+121602100,6039412,2
+rongmenkezhan,6039412,2
+64009647,6039412,3
+51156582,6039412,4
+popzoe,6039412,3
+44504599,6039412,3
+88076684,6039412,3
+3212190,6039412,2
+2226350,6039412,4
+soreciyn,6039412,4
+2282104,6039412,2
+liqiyao8931,6039412,2
+44666271,6039412,3
+moon.s11_11,6039412,2
+57311033,6039412,3
+120563917,6039412,3
+92230776,6039412,3
+40061842,6039412,3
+51067632,6039412,4
+51919503,6039412,3
+musichellsing,6039412,4
+107392932,6039412,2
+51407309,6039412,3
+59319026,6039412,3
+16313678,6039412,4
+76419237,6039412,3
+63945813,6039412,5
+127081165,6039412,4
+52807688,6039412,4
+sea1sky0725,6039412,3
+12232981,6039412,4
+5454322,6039412,4
+panyadie,6039412,3
+47021231,6039412,3
+70882513,6039412,2
+48815881,6039412,-1
+2955357,6039412,2
+1654472,6039412,3
+25460734,6039412,3
+59925796,6039412,3
+jisixue0111,6039412,3
+CharlesChou,6039412,1
+65457803,6039412,3
+121745176,6039412,2
+63132063,6039412,2
+39668757,6039412,3
+53656219,6039412,3
+4021496,6039412,3
+3333349,6039412,2
+79994497,6039412,3
+qianchong,6039412,3
+annehere,6039412,3
+25760345,6039412,1
+zhuweina,6039412,2
+12794807,6039412,2
+53710865,6039412,1
+peter-pen,6039412,2
+65508895,6039412,3
+jianfeirun,6039412,3
+43623157,6039412,4
+93920997,6039412,3
+51810692,6039412,-1
+bearblindman,6039412,4
+ruanzebang,6039412,1
+CI-XI,6039412,3
+67843456,6039412,3
+64249051,6039412,1
+ninababy25,6039412,4
+Ston3s,6039412,2
+45344133,6039412,3
+64712701,6039412,3
+41054771,6039412,3
+42689691,6039412,2
+48380493,6039412,1
+wruo,6039412,3
+90051465,6039412,3
+66979226,6039412,3
+Rosier,6039412,3
+91432391,6039412,3
+33404561,6039412,-1
+76153086,6039412,4
+89308667,6039412,5
+justinran,6039412,1
+117307392,6039412,3
+67843912,6039412,2
+xianeveryi,6039412,4
+65813989,6039412,3
+xnywrite2009,6039412,3
+66550666,6039412,3
+tangchaomin,6039412,2
+sealong,6039412,2
+mycforever,6039412,2
+TheLittlePrince,6039412,3
+78710041,6039412,2
+68392296,6039412,4
+66265082,6039412,4
+Pius,6039412,2
+112285998,6039412,3
+49189328,6039412,3
+49189328,6039412,3
+zhazha-GUY,6039412,5
+3671869,6039412,2
+1567784,6039412,3
+62520765,6039412,1
+91365822,6039412,2
+47576982,6039412,4
+91475245,6039412,3
+69328232,6039412,2
+KayYin,6039412,2
+63018410,6039412,5
+Candy_Ghost,6039412,2
+127122370,6039412,2
+domee,6039412,2
+45167538,6039412,3
+Beth0204,6039412,3
+65183183,6039412,3
+53146049,6039412,2
+50373897,6039412,4
+lcghere,6039412,4
+barbelo12,6039412,3
+librelove,6039412,3
+61988364,6039412,2
+55617091,6039412,2
+47599682,6039412,-1
+64477326,6039412,3
+53392958,6039412,2
+1343130,6039412,2
+Laura_Space,6039412,2
+wind_field,6039412,2
+wanmingyun,6039412,3
+55796583,6039412,4
+38734787,6039412,2
+2332724,6039412,2
+micho,6039412,3
+53050056,6039412,2
+1929074,6039412,3
+66101707,6039412,3
+112083584,6039412,4
+1599200,6039412,3
+88335567,6039412,3
+79617132,6039412,2
+qiaoqq,6039412,2
+rayn1ce,6039412,3
+guotong,6039412,2
+wywapple,6039412,3
+34794492,6039412,3
+73132940,6039412,3
+48065350,6039412,4
+4758854,6039412,3
+chen.qiu,6039412,3
+58231376,6039412,3
+jomey,6039412,2
+38793609,6039412,2
+joobe,6039412,4
+tzhuang,6039412,3
+73942837,6039412,2
+mayhi,6039412,1
+25798169,6039412,3
+unaunaquantro,6039412,2
+littlecin,6039412,2
+horizontality,6039412,3
+40049665,6039412,3
+ecstasybird,6039412,2
+75186086,6039412,3
+F1vese7enone,6039412,2
+bbmuyu,6039412,3
+cindyhello,6039412,-1
+1278741,6039412,2
+2019156,6039412,3
+zc...,6039412,4
+61666468,6039412,4
+55412522,6039412,2
+56744687,6039412,-1
+50272188,6039412,2
+ask4more,6039412,3
+ca5h,6039412,-1
+3905014,6039412,3
+Sophieven,6039412,1
+65357548,6039412,3
+35852291,6039412,5
+98760682,6039412,5
+Sarinagara,6039412,2
+suh5213,6039412,2
+teaword,6039412,3
+41874215,6039412,4
+changrabbit,6039412,4
+14352147,6039412,3
+victoria.yangsq,6039412,4
+1815039,6039412,3
+47888739,6039412,-1
+59260691,6039412,2
+itochika,6039412,3
+daixilala,6039412,2
+yaya_lduck,6039412,3
+suziyu_2222,6039412,-1
+1742977,6039412,3
+wangdoudou20,6039412,2
+49164430,6039412,3
+65642792,6039412,4
+fengshurui,6039412,-1
+4132596,6039412,1
+kikizhu,6039412,3
+4478851,6039412,3
+78089832,6039412,3
+39192898,6039412,4
+45483327,6039412,2
+48954056,6039412,2
+xiajing,6039412,3
+45245216,6039412,3
+2724011,6039412,3
+43664862,6039412,4
+80786877,6039412,3
+everlastingEGO,6039412,2
+7669558,6039412,3
+63563681,6039412,4
+3066770,6039412,3
+68023776,6039412,1
+88236856,6039412,2
+natsurialice,6039412,3
+natsurialice,6039412,3
+lumpy,6039412,3
+59774310,6039412,3
+77203417,6039412,1
+53339781,6039412,3
+naomilee,6039412,4
+43200056,6039412,3
+49212885,6039412,3
+59553409,6039412,1
+contact-u,6039412,3
+80357974,6039412,4
+43757100,6039412,4
+xxrachel,6039412,2
+Chingshun,6039412,2
+hrzlvn,6039412,3
+63193528,6039412,2
+marvelwei,6039412,3
+52838594,6039412,2
+58345113,6039412,2
+76804621,6039412,3
+83250285,6039412,5
+2831834,6039412,3
+renchicheng,6039412,3
+47280771,6039412,4
+64855352,6039412,2
+39644972,6039412,2
+89281052,6039412,4
+Ray_u,6039412,4
+ykangeroo,6039412,3
+48890174,6039412,3
+52623210,6039412,4
+51664077,6039412,4
+shizengyan,6039412,2
+118839999,6039412,3
+laihiukei,6039412,-1
+petulance,6039412,3
+55549387,6039412,1
+68200387,6039412,2
+50648419,6039412,3
+kugi,6039412,3
+jdumpling,6039412,4
+47999352,6039412,3
+yukinari999,6039412,2
+48937311,6039412,3
+lynnwhite,6039412,3
+66767676,6039412,4
+xiaoliang0621,6039412,3
+53372727,6039412,1
+57423264,6039412,3
+55852519,6039412,2
+47856534,6039412,5
+67729366,6039412,3
+23750536,6039412,3
+luizspirit,6039412,4
+85868315,6039412,3
+amidede,6039412,5
+MarksonForever,6039412,1
+safeplu,6039412,-1
+114500626,6039412,1
+49003442,6039412,4
+49003442,6039412,4
+OrianneLau,6039412,2
+roylaw,6039412,4
+58680365,6039412,3
+shonior,6039412,4
+58284262,6039412,3
+70781768,6039412,-1
+9377177,6039412,3
+82223675,6039412,4
+65087582,6039412,2
+li_1314,6039412,2
+4494770,6039412,3
+49429589,6039412,1
+81391880,6039412,3
+wiwie,6039412,3
+75638865,6039412,2
+75149022,6039412,3
+evaniscoming,6039412,4
+melodygxl,6039412,4
+A03080515,6039412,2
+COCOCOQUEEN,6039412,3
+52911203,6039412,3
+74166045,6039412,2
+84681267,6039412,3
+wjn,6039412,3
+arthurwen,6039412,3
+kathychu,6039412,3
+teikamouse,6039412,1
+92516233,6039412,2
+68226774,6039412,2
+45837126,6039412,1
+108352341,6039412,3
+58204456,6039412,3
+63391682,6039412,2
+90971876,6039412,2
+59253003,6039412,2
+vermouthsama,6039412,3
+88262083,6039412,2
+1274922,6039412,2
+w3j1y5,6039412,4
+w3j1y5,6039412,4
+68943607,6039412,3
+66945260,6039412,4
+fmloveme,6039412,1
+meiduolamu,6039412,2
+121186095,6039412,3
+autsummer,6039412,3
+54107659,6039412,2
+whisaly,6039412,3
+bonniekillu,6039412,2
+66272945,6039412,1
+apjuice,6039412,1
+53268007,6039412,2
+metkee,6039412,2
+yknowswhy,6039412,3
+47977808,6039412,2
+s22f,6039412,1
+55601920,6039412,4
+63574025,6039412,1
+rainjoy,6039412,1
+rainjoy,6039412,1
+zuoxiaoan45,6039412,3
+115232324,6039412,2
+cherryago,6039412,2
+67690348,6039412,1
+pray-entic,6039412,3
+49354246,6039412,1
+pirouette,6039412,2
+71718481,6039412,5
+2393425,6039412,2
+44600352,6039412,1
+57081822,6039412,2
+68708707,6039412,4
+GODIVA,6039412,3
+121623396,6039412,4
+51959718,6039412,5
+58299551,6039412,4
+p2165,6039412,2
+joeyada,6039412,2
+68115096,6039412,4
+cassidesert,6039412,4
+zzcchh,6039412,3
+4573696,6039412,3
+87636985,6039412,2
+126482942,6039412,5
+44783920,6039412,2
+qingxin623,6039412,2
+40069561,6039412,3
+6239310,6039412,1
+3322382,6039412,-1
+62828901,6039412,3
+57630254,6039412,4
+emeraldll,6039412,4
+60129524,6039412,4
+58704227,6039412,2
+58078285,6039412,3
+7609988,6039412,2
+mescal_zoo,6039412,5
+59725036,6039412,2
+50431505,6039412,3
+79640756,6039412,4
+xyzbehappy,6039412,4
+92086611,6039412,3
+dulllennon,6039412,4
+aoihai,6039412,3
+YesIDO.,6039412,3
+fragment,6039412,1
+46363434,6039412,2
+53605408,6039412,5
+76536733,6039412,4
+Sibier,6039412,4
+51402290,6039412,2
+aprilwhu,6039412,3
+59997800,6039412,3
+huxiaotian,6039412,2
+sukicic,6039412,4
+joyful_jojo,6039412,3
+53785455,6039412,5
+58038287,6039412,3
+53213022,6039412,3
+53213022,6039412,3
+julypan0710,6039412,2
+52325451,6039412,3
+muwuxi,6039412,3
+YUNCONS,6039412,2
+58072209,6039412,3
+4106036,6039412,4
+54632383,6039412,5
+bbznj,6039412,3
+47787325,6039412,3
+judeli,6039412,3
+50155261,6039412,3
+kiwiiiiii,6039412,2
+46699723,6039412,3
+61243781,6039412,3
+66084596,6039412,3
+63891578,6039412,3
+57837456,6039412,2
+70348077,6039412,2
+59301158,6039412,3
+38955500,6039412,3
+JaneLynn,6039412,5
+1225235,6039412,3
+58899302,6039412,1
+47503984,6039412,2
+77156561,6039412,3
+rubikcj,6039412,3
+laurellake,6039412,2
+CandyLee,6039412,2
+Angolo_retto,6039412,4
+71831541,6039412,2
+StandOnLifE,6039412,3
+44182814,6039412,2
+yolandayin,6039412,3
+70310265,6039412,3
+52915843,6039412,2
+gioupy,6039412,-1
+stupidcat7652,6039412,-1
+52081497,6039412,3
+ardenliu,6039412,3
+ardenliu,6039412,3
+Jungler,6039412,3
+EmayI,6039412,3
+2964464,6039412,3
+112527658,6039412,3
+annieaiannie,6039412,3
+76127642,6039412,2
+48960449,6039412,5
+53935414,6039412,2
+65709256,6039412,3
+xiawu1130,6039412,3
+128184368,6039412,3
+50459068,6039412,3
+AnotherLouise,6039412,3
+77307938,6039412,2
+waterdrops,6039412,4
+46149703,6039412,2
+83162641,6039412,1
+52353121,6039412,1
+sandymint,6039412,3
+73866765,6039412,2
+just_nomadic,6039412,5
+45224713,6039412,2
+cherrysoda1993,6039412,3
+usang,6039412,-1
+linanian,6039412,3
+49581171,6039412,4
+ghslyvia,6039412,3
+avivalovestory,6039412,3
+alaxos,6039412,3
+miashen,6039412,3
+Oyes,6039412,2
+phnothere,6039412,2
+1223459,6039412,3
+3422449,6039412,2
+mammonlee,6039412,2
+will_dream,6039412,4
+violetykx,6039412,3
+40256147,6039412,5
+53147371,6039412,3
+5964944,6039412,3
+127398009,6039412,3
+46686249,6039412,5
+nicoletta,6039412,2
+89448174,6039412,-1
+51796463,6039412,4
+90231600,6039412,2
+DereyantChan,6039412,3
+42030874,6039412,3
+peachhyn,6039412,2
+terry_f,6039412,-1
+49152289,6039412,-1
+51602185,6039412,2
+reineke_,6039412,-1
+diracsea,6039412,2
+62048217,6039412,3
+hayden001,6039412,3
+usewelltheday,6039412,2
+singlesinger,6039412,3
+xyq1995,6039412,4
+singlesinger,6039412,3
+xyq1995,6039412,4
+52594574,6039412,5
+10057599,6039412,-1
+50277925,6039412,3
+44199764,6039412,4
+3680323,6039412,2
+58442010,6039412,4
+chenboada,6039412,3
+nini9023,6039412,3
+gaoxiaopang,6039412,2
+58191457,6039412,3
+50186647,6039412,3
+Bravo_o,6039412,2
+circlevita,6039412,1
+4266952,6039412,1
+32008707,6039412,5
+jialinwonder,6039412,2
+maoamao,6039412,3
+S-hit,6039412,-1
+49272831,6039412,3
+52383930,6039412,2
+1778088,6039412,1
+121490085,6039412,4
+67023517,6039412,1
+shinkouyin,6039412,4
+1773768,6039412,3
+83601520,6039412,2
+53513282,6039412,4
+missguoguo,6039412,2
+63325811,6039412,2
+wwnoah,6039412,4
+56095578,6039412,2
+HeroineDaode,6039412,2
+haizaideng,6039412,3
+46065328,6039412,2
+seren,6039412,3
+2613079,6039412,3
+1354076,6039412,3
+1237270,6039412,5
+Neo-Augustism,6039412,2
+99710074,6039412,5
+vivienp,6039412,4
+3614212,6039412,4
+doris19921203,6039412,3
+2370135,6039412,2
+53023463,6039412,4
+97030740,6039412,2
+43648335,6039412,3
+CeleryLove,6039412,3
+hi_nieve,6039412,1
+luweiyan2012,6039412,3
+Will307,6039412,3
+61151240,6039412,2
+18586571,6039412,3
+wz1031h,6039412,2
+49177191,6039412,2
+balabala00,6039412,-1
+54220607,6039412,3
+karo1993,6039412,3
+36883010,6039412,3
+eq4,6039412,2
+1662765,6039412,3
+yamfesoul,6039412,3
+34700595,6039412,4
+zxt1219,6039412,3
+45283744,6039412,4
+2322487,6039412,-1
+73614049,6039412,5
+upyougo,6039412,4
+53908274,6039412,3
+ossianshiwo,6039412,3
+kadada,6039412,1
+53644977,6039412,2
+weiying1992,6039412,2
+AlohaJessica,6039412,3
+wenkim516,6039412,2
+60767824,6039412,4
+75885924,6039412,4
+53652012,6039412,3
+56194836,6039412,2
+corrinneh,6039412,2
+58044452,6039412,2
+55321453,6039412,2
+4469134,6039412,3
+LeeDouzi,6039412,2
+yingyingyixiao,6039412,2
+88543196,6039412,3
+34381919,6039412,3
+sunny_S,6039412,3
+51965656,6039412,3
+44317755,6039412,3
+ximutudan,6039412,1
+countessAlmasy,6039412,-1
+evanlee2018,6039412,2
+78333078,6039412,3
+OwlCityChina,6039412,4
+61282710,6039412,2
+65677283,6039412,2
+100324519,6039412,2
+RivenZhong,6039412,3
+muxiaoxu,6039412,2
+73577019,6039412,3
+Gxy0429,6039412,2
+sky2006Q,6039412,3
+jokylovecr,6039412,3
+75119489,6039412,-1
+40030685,6039412,1
+48407248,6039412,3
+felt,6039412,3
+65104793,6039412,3
+36877826,6039412,2
+ennevida,6039412,3
+37676493,6039412,3
+49430506,6039412,3
+3293708,6039412,1
+60916220,6039412,2
+applesnake,6039412,3
+80482136,6039412,2
+62224008,6039412,1
+baiwei_ren,6039412,4
+sunnyphantaci,6039412,4
+43296009,6039412,5
+78858017,6039412,3
+chenjialu031,6039412,2
+125522040,6039412,2
+mouselsb,6039412,3
+walkeri,6039412,3
+101099683,6039412,3
+4684799,6039412,2
+qiaojiujie,6039412,5
+mechant,6039412,4
+Her_Mione,6039412,2
+subuuti,6039412,4
+1762540,6039412,3
+45974539,6039412,5
+47639252,6039412,3
+an_girl,6039412,3
+nitaichangkuang,6039412,1
+day-break,6039412,2
+CAla,6039412,3
+bubble-water,6039412,1
+candyff123,6039412,4
+67294761,6039412,3
+spyx1njing,6039412,5
+31293576,6039412,4
+pink_summer,6039412,3
+77075195,6039412,4
+18656568,6039412,2
+missmici,6039412,-1
+Asita99,6039412,2
+40730943,6039412,-1
+77117649,6039412,2
+54032885,6039412,2
+62980963,6039412,2
+KATHLEEN285,6039412,2
+SuddenDream,6039412,3
+mewmewguai,6039412,3
+44001066,6039412,1
+30961553,6039412,1
+51297889,6039412,5
+amouravenir,6039412,3
+yanyan0724,6039412,2
+cecilynie,6039412,3
+60673865,6039412,2
+chasesong,6039412,4
+jmatsingapore,6039412,5
+chiarachan,6039412,3
+SHAPEOFMYHEART,6039412,5
+sun76779,6039412,3
+37405681,6039412,2
+37738041,6039412,2
+huhan,6039412,4
+frankxiafan,6039412,3
+spzmoon,6039412,3
+groupies.,6039412,2
+1513002,6039412,2
+57588789,6039412,5
+zxjtmac,6039412,4
+70742333,6039412,-1
+43956642,6039412,2
+rockyanhua,6039412,3
+ym8896,6039412,3
+31983093,6039412,1
+rackylo,6039412,5
+63422177,6039412,2
+carrieme,6039412,4
+Xiomara,6039412,2
+44427013,6039412,3
+etsdie,6039412,3
+rainbow0815,6039412,2
+48462419,6039412,3
+2245827,6039412,2
+4096732,6039412,3
+MAY2RAIN,6039412,3
+chloepisode,6039412,2
+Aubrey4S,6039412,4
+4398857,6039412,3
+3348318,6039412,3
+53063481,6039412,3
+53063481,6039412,3
+meme727,6039412,3
+91868202,6039412,4
+hyuk35zm,6039412,1
+xiaoshan0201,6039412,4
+simonyao,6039412,4
+44678301,6039412,5
+loulouxu,6039412,-1
+Colman,6039412,3
+65758167,6039412,4
+damienby,6039412,5
+30980638,6039412,4
+SaneWoo,6039412,3
+39168682,6039412,3
+52523145,6039412,2
+rakobi,6039412,1
+3573130,6039412,2
+yvonnezhang0615,6039412,3
+mlgg,6039412,4
+koly1987,6039412,1
+CineBibliophile,6039412,3
+44642517,6039412,4
+perfectcety,6039412,3
+16437500,6039412,3
+56410801,6039412,4
+echoooz,6039412,3
+58801678,6039412,2
+47602699,6039412,2
+27849344,6039412,4
+iwhatever,6039412,3
+mtzeng,6039412,3
+jinyatou,6039412,3
+44432163,6039412,3
+46458564,6039412,3
+3976854,6039412,4
+125535014,6039412,3
+47882725,6039412,3
+72956979,6039412,3
+54964109,6039412,-1
+mybreeze,6039412,2
+92398383,6039412,5
+vanilla1991,6039412,3
+bayer04040404,6039412,3
+yangqiuyu,6039412,5
+51658025,6039412,3
+60086315,6039412,3
+judy0420,6039412,1
+80278415,6039412,3
+1951501,6039412,2
+47265063,6039412,3
+LittleChong,6039412,2
+5580630,6039412,4
+69859774,6039412,1
+66237715,6039412,3
+3305440,6039412,-1
+36686647,6039412,4
+wtymarx,6039412,3
+33042240,6039412,2
+vincet,6039412,3
+Injurer,6039412,3
+65590168,6039412,3
+35963638,6039412,4
+49761983,6039412,3
+126825775,6039412,2
+fayy,6039412,3
+52032404,6039412,2
+2561513,6039412,3
+48911200,6039412,2
+Every_r,6039412,-1
+shiralees,6039412,5
+50946864,6039412,3
+ninoliu,6039412,2
+2588019,6039412,4
+evieyao,6039412,2
+4224404,6039412,5
+vaneptune,6039412,3
+2759371,6039412,4
+3818276,6039412,3
+67579686,6039412,4
+24570827,6039412,3
+58133135,6039412,5
+59099811,6039412,3
+34408067,6039412,2
+43297403,6039412,4
+34512469,6039412,2
+126327911,6039412,1
+42939713,6039412,2
+MOVIE--KO,6039412,3
+aaronlikecheese,6039412,4
+kuangk,6039412,4
+47741689,6039412,4
+65029290,6039412,3
+gallen_2011,6039412,2
+89431473,6039412,4
+49185719,6039412,2
+Sh1neYuan,6039412,2
+4025674,6039412,2
+iamclytze,6039412,2
+YOKIII,6039412,4
+zzc8883800,6039412,3
+irisji8990,6039412,2
+psyche213,6039412,4
+hennic,6039412,3
+32460085,6039412,-1
+veraberry,6039412,3
+66296653,6039412,3
+xilovechiao,6039412,3
+abooa,6039412,5
+41687639,6039412,3
+sukaka51,6039412,4
+i-Justin,6039412,3
+54146811,6039412,1
+lakuvicki,6039412,3
+papayoung,6039412,3
+46385467,6039412,-1
+81708243,6039412,2
+suckling,6039412,4
+stellababoon,6039412,4
+babybloodymary,6039412,4
+45974208,6039412,5
+3427595,6039412,4
+fishyfishy,6039412,4
+4474893,6039412,3
+andriylin,6039412,4
+zhaixi,6039412,2
+b_less,6039412,3
+1448393,6039412,3
+lothron,6039412,1
+yikoyumisa,6039412,5
+2179845,6039412,3
+30117998,6039412,1
+118277522,6039412,3
+sarashieh,6039412,3
+chloethegirl,6039412,3
+1740354,6039412,2
+73924798,6039412,4
+73299376,6039412,2
+loiscybier,6039412,1
+xuguanyu1381,6039412,3
+63002140,6039412,-1
+joanecho,6039412,3
+32574546,6039412,3
+sunflower1988,6039412,2
+Blair-L,6039412,3
+81192470,6039412,5
+3908056,6039412,4
+46884378,6039412,4
+80362984,6039412,4
+61653077,6039412,3
+85958266,6039412,3
+lovevicbabe,6039412,4
+ValentineQ,6039412,3
+zx2789402,6039412,4
+miss_tina,6039412,4
+siyannnn,6039412,3
+4635921,6039412,2
+rr317,6039412,3
+Avila_Yin,6039412,2
+63280608,6039412,3
+64798127,6039412,4
+64798127,6039412,4
+57895601,6039412,4
+63230167,6039412,1
+sweetsss,6039412,5
+81277517,6039412,1
+c28,6039412,3
+119879862,6039412,3
+76085199,6039412,3
+YYangping,6039412,3
+47331030,6039412,4
+soyas,6039412,3
+ImmortalSun,6039412,3
+knightbay,6039412,-1
+pinkopink,6039412,3
+34590485,6039412,4
+44628811,6039412,3
+jaimeerica,6039412,4
+2440348,6039412,3
+99226287,6039412,3
+49041999,6039412,2
+38184816,6039412,3
+56804273,6039412,4
+xiangjiaopian,6039412,4
+applecs,6039412,3
+48990593,6039412,3
+olivia_wwj,6039412,2
+ericjorgeeddy,6039412,3
+46770728,6039412,3
+45371986,6039412,3
+shushibi,6039412,4
+53061557,6039412,3
+46328450,6039412,2
+66629339,6039412,3
+aprilfoollee,6039412,3
+60011676,6039412,3
+41383794,6039412,4
+fsdyf,6039412,-1
+47376134,6039412,3
+acedamic,6039412,3
+x-n-x,6039412,2
+72461082,6039412,3
+aiyung,6039412,3
+41570719,6039412,3
+floragrx,6039412,3
+78851730,6039412,2
+9784009,6039412,2
+reader-shuo,6039412,-1
+XMALIMALIHONGX,6039412,3
+60201729,6039412,4
+48959774,6039412,3
+53173007,6039412,3
+qinwenrene,6039412,3
+DemiDeng,6039412,-1
+3295210,6039412,3
+YUMMYM,6039412,3
+69874704,6039412,3
+47404227,6039412,4
+Ashin1118,6039412,3
+fanyi0109,6039412,3
+3716043,6039412,4
+ooo000ooo,6039412,2
+51679757,6039412,4
+50118479,6039412,3
+alacrity516,6039412,3
+87865296,6039412,1
+59535372,6039412,3
+Stephanie0812,6039412,3
+102214206,6039412,2
+61140908,6039412,1
+king-mushroom,6039412,-1
+59676385,6039412,3
+2194320,6039412,4
+35073852,6039412,3
+Queenlotus,6039412,3
+cold24,6039412,-1
+49420713,6039412,3
+64479395,6039412,1
+shuiqiu,6039412,4
+39666261,6039412,3
+Princessia,6039412,4
+1178420,6039412,3
+49585303,6039412,1
+34454459,6039412,5
+1642177,6039412,3
+53015845,6039412,3
+emily56,6039412,3
+68918996,6039412,3
+boluzhang,6039412,3
+3741660,6039412,4
+3143567,6039412,2
+45698347,6039412,3
+73967200,6039412,4
+ayuk,6039412,1
+duanzizai,6039412,2
+33285857,6039412,-1
+beefeaters,6039412,1
+75286562,6039412,4
+84796922,6039412,4
+34929495,6039412,3
+50598130,6039412,5
+97331914,6039412,-1
+3306852,6039412,4
+zyiii,6039412,2
+48112826,6039412,3
+rachelray83,6039412,4
+faireuneprome,6039412,3
+doudouLee,6039412,3
+1884974,6039412,2
+merrycherry,6039412,2
+echolee77,6039412,2
+hanggenesis,6039412,4
+derekderek,6039412,3
+47080438,6039412,3
+48523065,6039412,3
+sunshinexuu,6039412,3
+LorraineC,6039412,3
+xxxholic99,6039412,4
+lanyuehu,6039412,4
+katieluqi,6039412,2
+30494787,6039412,3
+45359685,6039412,3
+50855912,6039412,4
+41868148,6039412,3
+45968027,6039412,3
+grave-,6039412,2
+56943870,6039412,1
+119695950,6039412,4
+kaka924,6039412,3
+purplr1986,6039412,4
+46087498,6039412,5
+58011320,6039412,2
+VIEJANE,6039412,4
+puppyfanfan,6039412,2
+64387229,6039412,3
+55364280,6039412,4
+70807559,6039412,2
+43653538,6039412,2
+longzhang,6039412,4
+45072336,6039412,4
+falling__slowly,6039412,3
+48942609,6039412,4
+1851702,6039412,3
+19863736,6039412,2
+46171648,6039412,5
+younvtongche,6039412,3
+46688085,6039412,2
+43627642,6039412,3
+74438094,6039412,4
+skytreepoo,6039412,3
+29411187,6039412,3
+54666689,6039412,3
+2596592,6039412,3
+6618394,6039412,2
+2752956,6039412,2
+53154018,6039412,2
+45286644,6039412,2
+74654745,6039412,4
+60186583,6039412,2
+1807732,6039412,4
+agnesliuctt,6039412,5
+agnesliuctt,6039412,5
+fj_ariel,6039412,2
+byronic,6039412,4
+57774716,6039412,3
+ly_yun811,6039412,2
+38427239,6039412,4
+cindycoo,6039412,1
+60650344,6039412,4
+45345873,6039412,3
+starry1990,6039412,2
+114260570,6039412,1
+privateplot,6039412,2
+80524683,6039412,5
+89262639,6039412,3
+spark0601,6039412,3
+guanstella,6039412,3
+ranyi0729,6039412,5
+49270931,6039412,-1
+xuguang_he,6039412,-1
+4197975,6039412,3
+marauder,6039412,4
+taylorwang,6039412,3
+63977605,6039412,5
+3000438,6039412,2
+SophieRu,6039412,4
+zyxlinda,6039412,4
+Lee_0618,6039412,3
+40559395,6039412,3
+millayQ,6039412,-1
+2999746,6039412,5
+mjinga,6039412,3
+cello22,6039412,3
+coffeepapagaga,6039412,1
+Jeuxdeaux,6039412,3
+37669601,6039412,3
+cherryade,6039412,3
+31207408,6039412,4
+37296535,6039412,4
+zoelau,6039412,2
+3894700,6039412,2
+Sabrina19,6039412,2
+pumpkin_s,6039412,3
+anko2626,6039412,3
+47902744,6039412,2
+VioletChong,6039412,3
+98665982,6039412,3
+sophie-z,6039412,3
+flyindance_fei,6039412,3
+shiyun.sherry,6039412,1
+58291702,6039412,3
+wann_,6039412,3
+50219893,6039412,1
+smeles,6039412,3
+ecane,6039412,2
+80943516,6039412,4
+83885200,6039412,2
+Illbeamyouup,6039412,3
+67213481,6039412,3
+75881434,6039412,2
+autumndream,6039412,2
+Hehh,6039412,-1
+57785126,6039412,-1
+Yan.er..dyn,6039412,4
+yiyimemory,6039412,3
+zhaimozi,6039412,2
+ZackorZac,6039412,5
+13048235,6039412,-1
+fredago,6039412,3
+60348817,6039412,3
+Wristcut,6039412,2
+shunicole,6039412,3
+wangdaxing,6039412,5
+Fay59,6039412,3
+viviyo,6039412,3
+tintindd,6039412,2
+supermikam,6039412,-1
+sevenshuai,6039412,3
+54443073,6039412,4
+DreamCoocoo,6039412,3
+37114766,6039412,1
+ifyouseekfrank,6039412,4
+4002113,6039412,4
+siyun,6039412,1
+4340710,6039412,3
+77911600,6039412,3
+curtisai,6039412,4
+yihuiw,6039412,1
+Duckpear10,6039412,2
+3540441,6039412,2
+1274020,6039412,3
+3021882,6039412,4
+Boice-YY,6039412,1
+67083312,6039412,3
+ladyfc116,6039412,3
+tiffanynesta,6039412,3
+46039604,6039412,3
+46358899,6039412,2
+jianghucrab,6039412,3
+114333708,6039412,3
+chenxijessica,6039412,2
+bitstream,6039412,2
+7083923,6039412,5
+kinkin77,6039412,-1
+122413256,6039412,5
+weiwei06110918,6039412,3
+30426517,6039412,4
+65686535,6039412,5
+2257722,6039412,4
+27814266,6039412,1
+gjkhlk,6039412,4
+ww2006,6039412,-1
+suena,6039412,-1
+72538044,6039412,3
+35303340,6039412,3
+Pandaoreo,6039412,3
+che_yan,6039412,3
+potatooo,6039412,3
+sisiwithfamily,6039412,4
+43828485,6039412,3
+58726406,6039412,3
+62411560,6039412,3
+44399575,6039412,2
+sorchalee,6039412,3
+elisalaura,6039412,3
+82225198,6039412,4
+ybqjxdhc,6039412,5
+luojiu,6039412,-1
+37924793,6039412,2
+viya.,6039412,3
+52244189,6039412,3
+55324794,6039412,5
+62312013,6039412,3
+52898475,6039412,4
+ying029,6039412,3
+48028421,6039412,2
+68742880,6039412,3
+8907036,6039412,3
+61797915,6039412,2
+annerabbit1127,6039412,3
+84303160,6039412,3
+83016162,6039412,3
+Ravishing,6039412,2
+alysa_,6039412,4
+66967830,6039412,3
+66581287,6039412,2
+Elaine_Changxin,6039412,2
+76553080,6039412,5
+czhou,6039412,3
+circleni,6039412,4
+52513935,6039412,-1
+80063534,6039412,-1
+42291551,6039412,4
+56660352,6039412,3
+AnneWong,6039412,4
+shanachysu,6039412,5
+91609218,6039412,3
+francesyu9233,6039412,2
+weexf,6039412,2
+44201949,6039412,3
+icerattan,6039412,3
+bulijite,6039412,-1
+52150356,6039412,5
+51940752,6039412,3
+36814878,6039412,4
+eelijah,6039412,-1
+zhaimi,6039412,3
+39631299,6039412,2
+54131540,6039412,3
+iamnian,6039412,3
+4155813,6039412,2
+3879838,6039412,3
+parachute1110,6039412,2
+carmengmm,6039412,3
+Yolanda0830,6039412,3
+40864785,6039412,4
+iamamortal,6039412,3
+121748685,6039412,3
+2853059,6039412,2
+46707419,6039412,3
+56249828,6039412,5
+lovableling,6039412,-1
+Swan.Lo,6039412,5
+Youandi4,6039412,-1
+sunnie.j,6039412,4
+floriacheng,6039412,3
+11658942,6039412,4
+Leslie221,6039412,2
+suian918,6039412,3
+yy0611,6039412,-1
+68476661,6039412,3
+JerryFeng,6039412,4
+bobolinc,6039412,3
+72725778,6039412,-1
+LuckybBamboo,6039412,4
+B612minmin,6039412,3
+47835316,6039412,3
+4467798,6039412,2
+36910425,6039412,3
+anniebear,6039412,3
+zhiou,6039412,2
+ak430,6039412,4
+Vulpeculae,6039412,5
+amigojr,6039412,3
+luminna,6039412,4
+louise1209,6039412,4
+qixian1125,6039412,2
+62237621,6039412,3
+44561459,6039412,1
+ladygoodman,6039412,3
+blueside,6039412,3
+yinzhi83,6039412,3
+57607145,6039412,3
+46251702,6039412,3
+RebeccaRabbit,6039412,-1
+47974584,6039412,3
+demiinzhang,6039412,4
+yamada,6039412,3
+maggiemars,6039412,3
+2216486,6039412,3
+Lancezhao,6039412,3
+4614210,6039412,3
+53010578,6039412,-1
+yang2333,6039412,5
+sysop,6039412,4
+pillbug,6039412,2
+57753542,6039412,4
+53904124,6039412,2
+3678717,6039412,4
+volartree,6039412,2
+seeuaftersunday,6039412,2
+69547285,6039412,3
+stridep,6039412,2
+79680480,6039412,3
+cynclarac,6039412,4
+tuncat,6039412,2
+45985032,6039412,4
+1582961,6039412,4
+3192065,6039412,2
+76501585,6039412,2
+44881183,6039412,4
+cxjtodob,6039412,5
+elenacaus,6039412,4
+68087313,6039412,5
+may_you_never,6039412,5
+snowintheheaven,6039412,2
+85994648,6039412,4
+sallen,6039412,3
+34722246,6039412,3
+69016984,6039412,5
+LancySiu,6039412,2
+rena0115,6039412,3
+caiwenjing0919,6039412,3
+sapphirecg,6039412,4
+qryousity,6039412,2
+102651290,6039412,4
+y_y316,6039412,3
+3251343,6039412,3
+40368947,6039412,3
+29844884,6039412,3
+moto0219,6039412,2
+69385606,6039412,4
+59347352,6039412,2
+jaward,6039412,5
+3682487,6039412,4
+4021192,6039412,4
+hannahhsing,6039412,4
+loulou-mae,6039412,3
+TangAnAnn,6039412,5
+verbiage,6039412,3
+57701070,6039412,3
+2842276,6039412,3
+ECHO0707,6039412,2
+Lucky_Azure,6039412,5
+ivonne87,6039412,4
+dannaloveedison,6039412,5
+sakura0531,6039412,3
+75903225,6039412,2
+diyedeshenyin,6039412,3
+39783440,6039412,3
+79407609,6039412,5
+48501430,6039412,4
+loveaholic,6039412,4
+53632201,6039412,3
+tangsongsong,6039412,4
+miucather,6039412,3
+49011902,6039412,4
+73701005,6039412,2
+tingloveyyt,6039412,4
+49988944,6039412,4
+hallie324,6039412,4
+lhkfighting,6039412,5
+zykmilan,6039412,4
+Allina,6039412,3
+52554533,6039412,3
+53012698,6039412,3
+shinesday,6039412,3
+nimonnwang,6039412,2
+52524623,6039412,3
+LTmaojin,6039412,2
+32461449,6039412,4
+73847256,6039412,-1
+capricornslythe,6039412,3
+2859890,6039412,3
+2076258,6039412,2
+fureia,6039412,3
+ninety-one,6039412,3
+unfoldway,6039412,3
+49505043,6039412,3
+misscalla,6039412,2
+weitan,6039412,2
+amber_raccoon,6039412,2
+qwishu,6039412,3
+zhxyl,6039412,3
+thegreatblueyon,6039412,4
+mspengmei,6039412,3
+46271571,6039412,4
+inkhkkk,6039412,2
+6050984,6039412,4
+56016394,6039412,3
+lovelans,6039412,3
+95313700,6039412,4
+4554066,6039412,2
+qiao517,6039412,3
+4079951,6039412,3
+yuki7799,6039412,3
+xi_1483,6039412,3
+podolski,6039412,3
+nonolv,6039412,2
+68288048,6039412,3
+48793659,6039412,3
+48205317,6039412,3
+doreending,6039412,2
+cherryjoanna,6039412,3
+78229297,6039412,4
+61261594,6039412,1
+Monica__Wang,6039412,2
+50605102,6039412,2
+Earrame,6039412,3
+yunzhenger,6039412,4
+ann-in-april,6039412,4
+time2night,6039412,2
+87506885,6039412,3
+yeamanda,6039412,4
+wudanwudanwudan,6039412,3
+69195695,6039412,1
+eva3190,6039412,4
+62958805,6039412,4
+castaneousair,6039412,3
+soulincase,6039412,3
+monbenben,6039412,3
+rockerai,6039412,3
+46710908,6039412,4
+moi.s,6039412,5
+134363338,6039412,3
+danff,6039412,4
+55545191,6039412,2
+138293122,6039412,3
+maixin,6039412,2
+67681602,6039412,3
+62464870,6039412,3
+2720160,6039412,2
+56123189,6039412,2
+jian-man,6039412,2
+136739686,6039412,4
+qiuyudoudou,6039412,5
+52046624,6039412,3
+ho000,6039412,4
+2131520,6039412,3
+76793809,6039412,2
+113068656,6039412,4
+97693514,6039412,2
+103277074,6039412,3
+3203277,6039412,4
+wongsam,6039412,4
+38408883,6039412,4
+tranicaa,6039412,5
+69439267,6039412,4
+evergreeen,6039412,3
+68630098,6039412,3
+hanxiaonuan,6039412,3
+14311494,25870236,5
+onlymengya,25870236,4
+xudifang13,25870236,5
+aids,25870236,4
+65159840,25870236,4
+58954301,25870236,4
+69439267,25870236,3
+2848557,25870236,4
+honeynaga,25870236,4
+46066822,25870236,5
+vala1994,25870236,4
+anitalover,25870236,3
+132322460,25870236,5
+40156361,25870236,4
+Grape0126,25870236,4
+64335429,25870236,4
+shajiu,25870236,-1
+108821133,25870236,4
+Ruty1985,25870236,4
+homebody,25870236,-1
+131970446,25870236,4
+angelzj88,25870236,4
+3562524,25870236,5
+68014143,25870236,4
+46929736,25870236,4
+sue0524,25870236,5
+fan0208,25870236,4
+DrRay,25870236,2
+58658233,25870236,4
+59610543,25870236,4
+83229059,25870236,5
+52242741,25870236,3
+Rachel23,25870236,3
+120069048,25870236,4
+57063027,25870236,3
+114321835,25870236,3
+121010760,25870236,4
+136773683,25870236,4
+thedreamrunner,25870236,4
+4582625,25870236,3
+64321061,25870236,3
+2882160,25870236,4
+innocentethan,25870236,5
+lost902,25870236,5
+flyingpossible,25870236,5
+K-Child,25870236,3
+73142599,25870236,4
+bebikiki,25870236,4
+1209665,25870236,3
+malu,25870236,3
+133195565,25870236,4
+shoolee,25870236,4
+jaylee,25870236,5
+1894296,25870236,5
+70587235,25870236,4
+andrpirl,25870236,4
+70300693,25870236,4
+48919627,25870236,5
+81586403,25870236,5
+4784070,25870236,5
+64713560,25870236,3
+2842455,25870236,5
+Felicia-Chiu,25870236,4
+127347148,25870236,4
+theshadow,25870236,4
+lostef,25870236,5
+94004207,25870236,5
+momojenny,25870236,4
+echowithyou,25870236,5
+67823605,25870236,4
+120470819,25870236,4
+avrilyian,25870236,3
+fntsystll,25870236,4
+137555231,25870236,2
+134519666,25870236,4
+zhoujingzhen,25870236,3
+yangyang711,25870236,5
+4200336,25870236,3
+bonnieWZ,25870236,4
+38603350,25870236,5
+48763260,25870236,4
+130445057,25870236,3
+53823312,25870236,4
+51490342,25870236,4
+51571478,25870236,4
+41327989,25870236,5
+39518332,25870236,5
+1626912,25870236,4
+84472857,25870236,4
+luominlala,25870236,3
+98956266,25870236,4
+u_lullaby,25870236,5
+126750722,25870236,2
+allenwangzihan,25870236,4
+115915170,25870236,-1
+jianchen810,25870236,3
+131909298,25870236,4
+66594452,25870236,5
+39937848,25870236,4
+33822786,25870236,3
+ilovemyself,25870236,3
+cccapheedy,25870236,4
+2717983,25870236,2
+hedgehog,25870236,5
+43134221,25870236,5
+3415449,25870236,5
+vincent41,25870236,5
+gnituw1986,25870236,5
+vivianclytze,25870236,3
+4896156,25870236,4
+2858772,25870236,3
+68630108,25870236,1
+pii3you,25870236,4
+68630000,25870236,3
+camia,25870236,5
+L-carrot,25870236,4
+133081838,25870236,4
+shixinyu,25870236,4
+2155287,25870236,5
+53255792,25870236,5
+73658045,25870236,4
+47678137,25870236,5
+65714390,25870236,5
+73870544,25870236,4
+cappuccino-jl,25870236,3
+125630908,25870236,4
+56886085,25870236,2
+MeloTheFisher,25870236,3
+clearhappy7,25870236,4
+62402038,25870236,4
+languheshang,25870236,3
+49052740,25870236,2
+51827196,25870236,4
+98956225,25870236,3
+83119838,25870236,4
+levitating,25870236,3
+115051698,25870236,3
+137503237,25870236,3
+ilovejay79118,25870236,4
+49407288,25870236,4
+sushunai,25870236,4
+dancaiqianlv,25870236,4
+48477485,25870236,4
+Janone,25870236,4
+sisy_xiyun,25870236,4
+54203614,25870236,5
+60230223,25870236,5
+1865714,25870236,4
+79506720,25870236,4
+4643817,25870236,4
+47346958,25870236,4
+132463662,25870236,4
+2135257,25870236,4
+dahdumiedu,25870236,4
+121481681,25870236,4
+1376870,25870236,4
+3033835,25870236,5
+liebeida,25870236,-1
+136409582,25870236,4
+40296009,25870236,5
+129743539,25870236,5
+59021262,25870236,5
+53454251,25870236,4
+windfromthesea,25870236,4
+130540894,25870236,3
+47995839,25870236,3
+Sara-H,25870236,5
+koujianyi,25870236,5
+57844107,25870236,4
+5116652,25870236,3
+tommyyoung,25870236,4
+2403245,25870236,5
+126693961,25870236,3
+2053147,25870236,3
+Makoto614,25870236,4
+34862856,25870236,4
+127080746,25870236,5
+3679808,25870236,5
+HS_yosi,25870236,5
+57491343,25870236,5
+104734535,25870236,5
+ttv5,25870236,5
+lazylauren,25870236,2
+68550655,25870236,4
+47701816,25870236,4
+74580493,25870236,-1
+53982356,25870236,5
+1768522,25870236,3
+20278593,25870236,4
+chenbala,25870236,4
+121572873,25870236,5
+sep0407,25870236,5
+120471779,25870236,5
+124869246,25870236,5
+lanyuanxizhou,25870236,4
+50312843,25870236,5
+52273545,25870236,4
+137206904,25870236,3
+55323906,25870236,5
+54726075,25870236,3
+wendy426,25870236,3
+elaine0801,25870236,5
+everfreeneciel,25870236,4
+129857538,25870236,4
+fairyhui521,25870236,5
+135102331,25870236,3
+wj8198026,25870236,4
+81530706,25870236,3
+86922521,25870236,4
+122966703,25870236,3
+43539479,25870236,4
+69838036,25870236,3
+3798488,25870236,4
+nancy425,25870236,3
+70809185,25870236,3
+64515129,25870236,4
+sinkingzxl,25870236,4
+ayannagai,25870236,4
+121475864,25870236,4
+59821556,25870236,4
+cca2222223,25870236,4
+132701112,25870236,3
+tanggg,25870236,-1
+53030747,25870236,5
+89399541,25870236,3
+61024723,25870236,4
+61681574,25870236,3
+50438516,25870236,4
+Cindyew,25870236,3
+12177460,25870236,3
+51290521,25870236,4
+127131340,25870236,2
+84854172,25870236,2
+122889599,25870236,3
+44450679,25870236,4
+81685996,25870236,3
+xclc,25870236,4
+47212439,25870236,4
+4115756,25870236,4
+137074402,25870236,5
+137071415,25870236,5
+130599782,25870236,4
+1953044,25870236,2
+smilewsy,25870236,3
+shui_sf,25870236,3
+129633404,25870236,5
+43590001,25870236,4
+61997003,25870236,4
+61351340,25870236,4
+just07,25870236,4
+96149276,25870236,5
+104427856,25870236,5
+34348516,25870236,4
+129611474,25870236,4
+49472827,25870236,4
+81736176,25870236,5
+28467614,25870236,4
+vikii,25870236,4
+72389977,25870236,5
+16960582,25870236,3
+16960582,25870236,3
+49180179,25870236,3
+135312907,25870236,5
+leave614,25870236,4
+linyiqing,25870236,4
+48976619,25870236,4
+43910154,25870236,5
+134625303,25870236,3
+CSO-Botasky,25870236,4
+rivian,25870236,3
+daisyhyj,25870236,4
+52926147,25870236,4
+3852753,25870236,4
+underware,25870236,5
+2891944,25870236,4
+55820585,25870236,4
+54291341,25870236,5
+LeeAnson,25870236,4
+1686305,25870236,4
+9596432,25870236,3
+30925388,25870236,3
+35514248,25870236,3
+ayuehunzi,25870236,3
+44483182,25870236,4
+jian.ai,25870236,4
+54351295,25870236,5
+2136999,25870236,4
+68506147,25870236,4
+1198621,25870236,3
+102108363,25870236,5
+jaens,25870236,4
+walinee,25870236,5
+alexliuxirong,25870236,5
+tmc,25870236,4
+46943216,25870236,4
+46355021,25870236,3
+babybluebb,25870236,3
+56628364,25870236,4
+78786637,25870236,4
+4570145,25870236,5
+cuacfxx,25870236,4
+rocksun,25870236,4
+mojian,25870236,4
+44887964,25870236,4
+jinliping,25870236,5
+32853386,25870236,4
+52808156,25870236,5
+xunjie,25870236,4
+magicnuan,25870236,5
+4683518,25870236,3
+oranicge,25870236,5
+70238336,25870236,4
+yimoyoulan916,25870236,5
+37226632,25870236,5
+81351219,25870236,3
+49148779,25870236,5
+xiaoameng,25870236,5
+wnhello,25870236,5
+babysd,25870236,5
+alphy,25870236,5
+pekoisagirl,25870236,5
+ainaonao,25870236,4
+134191128,25870236,4
+istrings,25870236,4
+koalalalalala,25870236,3
+51836771,25870236,3
+litian19890502,25870236,-1
+imoviemaker,25870236,3
+55847546,25870236,5
+fengzisb,25870236,3
+57471416,25870236,5
+136768505,25870236,3
+missleo,25870236,5
+121780577,25870236,4
+16799908,25870236,-1
+3906584,25870236,5
+amatou,25870236,2
+2229889,25870236,3
+1079578,25870236,4
+135112639,25870236,5
+54066175,25870236,3
+wt1112,25870236,-1
+80517374,25870236,5
+5409779,25870236,4
+marioii,25870236,5
+46952185,25870236,4
+77449073,25870236,4
+shanyier,25870236,5
+10750432,25870236,4
+hanlu219,25870236,5
+36100413,25870236,5
+135084358,25870236,5
+65976416,25870236,4
+shepherded,25870236,4
+50529526,25870236,3
+62952005,25870236,5
+1570915,25870236,5
+74520684,25870236,5
+90543489,25870236,4
+25503918,25870236,4
+44392983,25870236,3
+69698013,25870236,5
+134417369,25870236,4
+3012688,25870236,4
+46329545,25870236,5
+MOPOV,25870236,3
+clairegyy,25870236,4
+64263776,25870236,5
+2824404,25870236,4
+121806653,25870236,3
+hm512,25870236,4
+99457788,25870236,5
+108282995,25870236,4
+3049354,25870236,4
+gothickid,25870236,3
+dfay,25870236,5
+92722037,25870236,5
+62877748,25870236,3
+vaneheejun,25870236,4
+1160337,25870236,4
+71541185,25870236,4
+103415530,25870236,4
+2268277,25870236,3
+kat.is.kathy,25870236,5
+66796563,25870236,5
+minnierai,25870236,3
+40551404,25870236,5
+shushushu,25870236,5
+thymedy,25870236,4
+39946480,25870236,5
+marysays,25870236,-1
+48604788,25870236,2
+48417342,25870236,5
+3192663,25870236,3
+guoqichepiao,25870236,-1
+74471598,25870236,4
+52992190,25870236,3
+FMDHae1015,25870236,4
+wanghui1979,25870236,4
+milkcolor,25870236,4
+valiantina,25870236,4
+60263818,25870236,4
+68757762,25870236,4
+69750232,25870236,3
+4840565,25870236,5
+airily,25870236,4
+Qyaoyao,25870236,-1
+87641518,25870236,4
+2376689,25870236,-1
+3442648,25870236,5
+54074845,25870236,4
+42826387,25870236,3
+se7en-se7en,25870236,2
+interskh,25870236,4
+108481476,25870236,5
+GZ,25870236,3
+doa,25870236,4
+soldier1719,25870236,5
+47771448,25870236,5
+46153361,25870236,4
+52368554,25870236,4
+50880780,25870236,4
+1498768,25870236,3
+K.chan,25870236,3
+61472693,25870236,4
+babymuah,25870236,3
+66921135,25870236,4
+nemo2man,25870236,5
+58094874,25870236,1
+jetamit,25870236,2
+62993339,25870236,3
+Biglog,25870236,5
+shirichen,25870236,3
+jinjidexiong,25870236,2
+79561237,25870236,4
+2672610,25870236,4
+milanmao,25870236,3
+1226511,25870236,3
+56349029,25870236,4
+58206852,25870236,5
+GLSQ,25870236,4
+2417785,25870236,4
+1951463,25870236,3
+jennyseath,25870236,3
+AuZeonFung,25870236,3
+44451771,25870236,5
+6990422,25870236,4
+44418908,25870236,4
+qjp0h,25870236,5
+52054076,25870236,3
+3938353,25870236,-1
+a83848400,25870236,3
+72640748,25870236,5
+70614930,25870236,4
+59032148,25870236,3
+don_C,25870236,3
+4528157,25870236,5
+49968401,25870236,5
+yinmushroom,25870236,2
+114513399,25870236,3
+58347915,25870236,4
+118036743,25870236,3
+120015265,25870236,3
+135795752,25870236,4
+bing_07,25870236,5
+36617215,25870236,4
+48476618,25870236,3
+66178513,25870236,3
+79666507,25870236,4
+muz,25870236,5
+4271475,25870236,5
+16670816,25870236,4
+71298339,25870236,4
+39946752,25870236,5
+3473845,25870236,1
+pinkmemory,25870236,5
+56260072,25870236,4
+78303309,25870236,-1
+43135103,25870236,4
+60905842,25870236,4
+yoyoinlove,25870236,4
+70687104,25870236,5
+58094163,25870236,4
+4158908,25870236,3
+asvra,25870236,4
+miamiami,25870236,4
+43333979,25870236,4
+xiaoxi1252,25870236,4
+52169768,25870236,4
+yokaji1012,25870236,3
+96383885,25870236,4
+18628004,25870236,3
+66771297,25870236,3
+8549482,25870236,5
+monlll,25870236,3
+3455527,25870236,5
+56076845,25870236,5
+76943413,25870236,2
+123624827,25870236,5
+adamwzw,25870236,4
+antime,25870236,3
+GeSMD,25870236,4
+namik_ercan,25870236,4
+64492617,25870236,5
+130459038,25870236,4
+Xinmai,25870236,3
+Yulia,25870236,4
+poeee,25870236,-1
+77042003,25870236,2
+92943106,25870236,2
+55423942,25870236,5
+4720672,25870236,4
+135941801,25870236,4
+1150696,25870236,4
+67688993,25870236,5
+fan0423,25870236,5
+34343005,25870236,3
+49465683,25870236,4
+sherry-fmj,25870236,5
+41471411,25870236,4
+133758631,25870236,5
+77288841,25870236,5
+bof,25870236,3
+43005070,25870236,3
+1326010,25870236,4
+35445911,25870236,5
+51226041,25870236,5
+samnice,25870236,4
+42781171,25870236,3
+2658903,25870236,3
+57944279,25870236,5
+apple1,25870236,5
+4623641,25870236,5
+wusuhui,25870236,3
+kidify,25870236,3
+dj0823,25870236,5
+ccppeyre,25870236,4
+41440625,25870236,3
+lilithyi,25870236,5
+79522404,25870236,4
+52045614,25870236,3
+121920760,25870236,4
+cyansugar,25870236,3
+DUOSI,25870236,4
+lh12123,25870236,5
+120674319,25870236,5
+114285934,25870236,4
+75322643,25870236,5
+advender,25870236,4
+51445817,25870236,3
+136175260,25870236,4
+solavre,25870236,-1
+3079947,25870236,4
+mikesu,25870236,3
+68293344,25870236,5
+VampirX,25870236,5
+80425908,25870236,4
+pressKevin,25870236,4
+46091317,25870236,3
+63521004,25870236,5
+71615690,25870236,4
+4044609,25870236,5
+duoduotiamo,25870236,5
+ssjnxzzjny,25870236,5
+136261292,25870236,4
+haimingbu,25870236,4
+52992806,25870236,5
+94556012,25870236,3
+foreversleepy,25870236,3
+48932419,25870236,3
+52925465,25870236,4
+44311860,25870236,4
+53774748,25870236,4
+43632851,25870236,3
+4195216,25870236,5
+smallxuxu,25870236,4
+81602049,25870236,3
+75569999,25870236,4
+58770434,25870236,3
+70812373,25870236,5
+46993407,25870236,5
+127701993,25870236,4
+qijiejieblue,25870236,4
+68710909,25870236,3
+28748505,25870236,4
+52903037,25870236,3
+crystalgirl,25870236,1
+little_stone,25870236,4
+firstpro,25870236,4
+70314512,25870236,4
+134193379,25870236,5
+126220956,25870236,5
+darrrrrknov,25870236,5
+80792973,25870236,4
+maimai251,25870236,4
+97277841,25870236,4
+131534495,25870236,5
+jiuzao,25870236,5
+53143088,25870236,3
+75375352,25870236,3
+103182067,25870236,3
+81832502,25870236,4
+zhouqianyun,25870236,4
+duanziyu,25870236,3
+huapiqiu,25870236,4
+80912012,25870236,5
+2972260,25870236,4
+75180137,25870236,4
+89406990,25870236,5
+134738255,25870236,4
+2123968,25870236,4
+Isa.bella,25870236,5
+54141112,25870236,4
+134009962,25870236,5
+eason0210,25870236,2
+130954450,25870236,4
+seasing1992,25870236,3
+40544936,25870236,4
+62773794,25870236,4
+43540050,25870236,5
+57980704,25870236,3
+2374450,25870236,5
+47779713,25870236,4
+51153180,25870236,4
+yixiujie,25870236,3
+70519545,25870236,5
+51921251,25870236,5
+84015091,25870236,4
+135575731,25870236,3
+48781941,25870236,5
+67968935,25870236,3
+119405586,25870236,5
+84698699,25870236,4
+44470643,25870236,3
+fantianru,25870236,4
+laoshububen,25870236,3
+76999762,25870236,4
+3305632,25870236,4
+wenqibei,25870236,4
+mick3,25870236,5
+Popdai,25870236,5
+27085704,25870236,4
+kisscat890505,25870236,3
+jiulingweiji,25870236,5
+stefrain,25870236,5
+4169385,25870236,-1
+smile369,25870236,4
+90812716,25870236,4
+39378921,25870236,4
+yeats1865,25870236,4
+134537950,25870236,5
+1545133,25870236,5
+bulijite,25870236,2
+dianboxibinv,25870236,5
+26715515,25870236,4
+ntjht2013,25870236,4
+flower_N,25870236,4
+85830142,25870236,4
+yangxiansheng,25870236,3
+haidiaozyx,25870236,5
+haidiaozyx,25870236,5
+61702958,25870236,2
+Young.forU,25870236,2
+61448696,25870236,4
+56677102,25870236,5
+rabbitzhuyin,25870236,5
+54415980,25870236,3
+133820326,25870236,5
+stevecarell,25870236,4
+everynothing,25870236,-1
+91752037,25870236,4
+55916506,25870236,4
+122734851,25870236,5
+80044603,25870236,3
+122897295,25870236,5
+103024649,25870236,4
+43898145,25870236,-1
+44020426,25870236,3
+35224934,25870236,4
+65948183,25870236,4
+liuningba,25870236,3
+songka,25870236,5
+qingchunyy,25870236,4
+lucyhuang21,25870236,4
+kuler,25870236,4
+59110325,25870236,4
+jcstar,25870236,-1
+44763359,25870236,3
+134495648,25870236,3
+41517741,25870236,2
+shiro26,25870236,5
+2669000,25870236,5
+3081577,25870236,-1
+1606791,25870236,2
+18571046,25870236,4
+2305085,25870236,4
+shine-wang,25870236,4
+3857210,25870236,3
+58197963,25870236,3
+68991888,25870236,5
+48687824,25870236,4
+81591121,25870236,5
+3214678,25870236,5
+25676059,25870236,3
+yeslie,25870236,-1
+kane-chen,25870236,3
+89270889,25870236,5
+39520405,25870236,3
+27571749,25870236,3
+120645527,25870236,4
+1042464,25870236,3
+3039896,25870236,4
+ameliefei,25870236,5
+57804928,25870236,5
+38590154,25870236,5
+4588595,25870236,5
+dabyrowe,25870236,3
+1797470,25870236,-1
+130599177,25870236,4
+37720840,25870236,3
+zhzh_0831,25870236,4
+61888159,25870236,3
+80607844,25870236,5
+shenshanlaoma,25870236,5
+57063106,25870236,4
+45953948,25870236,4
+134156029,25870236,4
+chrissie619108,25870236,5
+134074497,25870236,5
+75361513,25870236,5
+62051375,25870236,4
+heyheymail,25870236,5
+vicness,25870236,4
+watersnow,25870236,2
+3693991,25870236,4
+madridzp007,25870236,4
+FeiDiQiuShengWu,25870236,4
+yixi7,25870236,3
+69529988,25870236,3
+77799876,25870236,3
+130988431,25870236,4
+2437511,25870236,5
+benjune,25870236,3
+124573261,25870236,5
+Iamyouxiaoyou,25870236,4
+Exaiy,25870236,4
+44105688,25870236,3
+2750193,25870236,3
+1698143,25870236,3
+42469777,25870236,4
+4231664,25870236,3
+bluegirl814,25870236,4
+Josephine.R,25870236,5
+57143181,25870236,4
+foreverjc,25870236,4
+121243676,25870236,1
+2193797,25870236,4
+49594661,25870236,4
+68886724,25870236,5
+1033629,25870236,3
+deardeer92,25870236,5
+lomanfan,25870236,5
+52079002,25870236,3
+canace_wang,25870236,4
+riceseedling,25870236,3
+119683375,25870236,3
+125760534,25870236,4
+babyflower1990,25870236,4
+69008426,25870236,3
+56039933,25870236,-1
+2110060,25870236,5
+14093841,25870236,5
+zhangcj1224,25870236,3
+51925393,25870236,4
+Angle_Angle,25870236,4
+52823989,25870236,5
+45743155,25870236,5
+3843442,25870236,4
+samomos,25870236,4
+TIAMORIVAYAT,25870236,4
+envy1001,25870236,3
+126980247,25870236,4
+51020341,25870236,3
+101516177,25870236,4
+78681976,25870236,3
+14441996,25870236,3
+100682612,25870236,4
+joyyoyo,25870236,4
+62122665,25870236,4
+51312401,25870236,4
+120229442,25870236,5
+1291946,25870236,4
+wtforz,25870236,3
+128410748,25870236,4
+1174148,25870236,4
+70534967,25870236,4
+56608210,25870236,3
+69244531,25870236,-1
+59413586,25870236,-1
+63824068,25870236,4
+63824068,25870236,4
+Adrift_eternity,25870236,-1
+57537354,25870236,4
+126935432,25870236,5
+48369193,25870236,4
+40931837,25870236,4
+monkeycupl,25870236,5
+131749198,25870236,3
+44045443,25870236,3
+62842608,25870236,4
+joechu,25870236,4
+124640229,25870236,4
+3403796,25870236,1
+49319979,25870236,3
+50549209,25870236,-1
+37382236,25870236,4
+andyham,25870236,5
+34737598,25870236,5
+puhonglei,25870236,4
+60134596,25870236,5
+85035991,25870236,4
+134310076,25870236,4
+33709408,25870236,5
+44587158,25870236,3
+flyingbean,25870236,3
+50153257,25870236,5
+45828294,25870236,3
+linchuzhuang,25870236,5
+59015118,25870236,3
+46375036,25870236,4
+46184375,25870236,3
+85164976,25870236,4
+45242330,25870236,2
+twofatttttttt,25870236,4
+62450111,25870236,4
+39104472,25870236,4
+73958470,25870236,4
+52409439,25870236,4
+Shiely,25870236,4
+81628425,25870236,4
+raecc,25870236,5
+56953846,25870236,5
+3363716,25870236,-1
+67330888,25870236,5
+34482289,25870236,5
+1828898,25870236,3
+132505229,25870236,5
+52355582,25870236,4
+53541312,25870236,5
+szk13731584239,25870236,4
+46404416,25870236,5
+88386627,25870236,3
+wandawang,25870236,4
+48143172,25870236,3
+84194737,25870236,3
+2560107,25870236,5
+121042228,25870236,-1
+135077478,25870236,4
+71946766,25870236,-1
+heyheygun,25870236,3
+45312368,25870236,3
+dltmw,25870236,5
+1766764,25870236,3
+123634795,25870236,5
+66686811,25870236,4
+63869528,25870236,4
+xiayichuan,25870236,4
+yanbigflower,25870236,-1
+57179724,25870236,3
+1663187,25870236,3
+68578162,25870236,5
+vnoonv,25870236,-1
+Dallowave,25870236,5
+zhangzhangzhang,25870236,4
+67727072,25870236,4
+80011707,25870236,3
+43713017,25870236,4
+45927442,25870236,3
+59272149,25870236,5
+58101535,25870236,3
+106594383,25870236,4
+30219531,25870236,3
+134501526,25870236,2
+77089569,25870236,4
+4242859,25870236,4
+3247558,25870236,4
+coka1999,25870236,4
+97977278,25870236,3
+66227708,25870236,4
+HowardChan0612,25870236,4
+gongzitian,25870236,3
+danielwan,25870236,4
+63781183,25870236,3
+1391137,25870236,3
+lavendercmt,25870236,4
+77357487,25870236,1
+65301310,25870236,5
+fivero,25870236,3
+44116299,25870236,5
+65590168,25870236,4
+46920813,25870236,3
+1659068,25870236,5
+2713839,25870236,3
+re-poko,25870236,5
+4417183,25870236,4
+Queenie,25870236,4
+46493467,25870236,4
+4469892,25870236,4
+86955055,25870236,4
+47725759,25870236,4
+2595920,25870236,4
+55325388,25870236,5
+43572287,25870236,4
+77567155,25870236,-1
+20259608,25870236,4
+39003448,25870236,5
+39088889,25870236,5
+kidultlilith,25870236,5
+smallcolor,25870236,4
+48521109,25870236,5
+maplepu,25870236,3
+zenki,25870236,5
+72040927,25870236,3
+kalla,25870236,3
+83411107,25870236,4
+littlezhisandra,25870236,2
+42991994,25870236,4
+QINGFENGDIEWU,25870236,4
+Decembermay,25870236,4
+xuyinaxxxxxxx,25870236,5
+3923035,25870236,5
+49356152,25870236,5
+57248096,25870236,5
+115902289,25870236,3
+2318837,25870236,4
+123346219,25870236,5
+42087177,25870236,5
+33806313,25870236,-1
+72219224,25870236,5
+66676801,25870236,4
+83781615,25870236,4
+114350326,25870236,3
+49034223,25870236,4
+folamen,25870236,4
+56712686,25870236,4
+17839542,25870236,2
+45833897,25870236,5
+68209797,25870236,-1
+115593440,25870236,5
+jiangjiang1214,25870236,3
+leoglory,25870236,5
+46438093,25870236,1
+helloldq,25870236,5
+63950350,25870236,4
+tuniu1,25870236,3
+56099441,25870236,5
+miucather,25870236,4
+131514121,25870236,3
+wpy114,25870236,4
+134473693,25870236,4
+daystar22,25870236,4
+43159348,25870236,4
+35197924,25870236,5
+47088428,25870236,5
+wangmian0729,25870236,4
+wendychou,25870236,3
+awhere,25870236,2
+monworld,25870236,4
+33830687,25870236,3
+48271739,25870236,3
+54614709,25870236,3
+53534566,25870236,5
+junlin0121,25870236,4
+127905303,25870236,-1
+justMog,25870236,3
+2738066,25870236,5
+59995660,25870236,5
+134176594,25870236,4
+kkidult,25870236,5
+53662568,25870236,4
+66646375,25870236,4
+75961277,25870236,4
+134532187,25870236,4
+chanbc,25870236,4
+FennyFu,25870236,4
+52471406,25870236,3
+miko23,25870236,4
+58121019,25870236,3
+55563536,25870236,3
+renshaoqun,25870236,3
+47427697,25870236,4
+aihepin,25870236,4
+3031691,25870236,5
+xoki,25870236,5
+52905046,25870236,3
+119063618,25870236,4
+52088860,25870236,3
+70619574,25870236,4
+129618880,25870236,4
+133914507,25870236,5
+133914507,25870236,5
+50797119,25870236,4
+39381148,25870236,5
+chuleiwu,25870236,3
+46989842,25870236,2
+szdd,25870236,3
+2955357,25870236,4
+62664539,25870236,4
+3863936,25870236,5
+babywineer,25870236,4
+133691924,25870236,4
+arthurlee,25870236,5
+65434074,25870236,5
+apexcyril,25870236,4
+72691746,25870236,5
+50058727,25870236,4
+79027376,25870236,3
+2432104,25870236,3
+65724655,25870236,5
+coolfax,25870236,5
+coolfax,25870236,5
+fero7,25870236,4
+59649901,25870236,3
+BaBaBaL,25870236,4
+3753878,25870236,3
+lovers-fahion,25870236,5
+49668109,25870236,2
+4292817,25870236,3
+48885291,25870236,3
+90217144,25870236,4
+63912359,25870236,4
+2370392,25870236,4
+4145647,25870236,4
+Shimpear,25870236,4
+lee_way,25870236,5
+62703414,25870236,3
+sherrychen,25870236,4
+61823164,25870236,4
+69360655,25870236,5
+yumiaowater,25870236,3
+yumiaowater,25870236,3
+miku,25870236,4
+zpavel,25870236,4
+Inupiat,25870236,4
+71861591,25870236,2
+72738301,25870236,5
+59955851,25870236,4
+40003537,25870236,5
+dustblue,25870236,3
+mengaxin,25870236,4
+39484939,25870236,5
+wensentedegushi,25870236,3
+61802597,25870236,3
+72725890,25870236,5
+79852634,25870236,3
+69030272,25870236,5
+48200475,25870236,5
+zhuobiaini,25870236,5
+k5k,25870236,4
+Malivoni,25870236,3
+54784556,25870236,5
+lantianxin,25870236,5
+1909194,25870236,4
+Me5016,25870236,5
+fengmangbilu,25870236,5
+36307732,25870236,4
+wakin1707,25870236,4
+54083120,25870236,5
+73714750,25870236,3
+58951524,25870236,4
+21606016,25870236,4
+44852938,25870236,3
+Rebecca_618,25870236,3
+qrange,25870236,3
+4156454,25870236,4
+66857880,25870236,4
+1205451,25870236,5
+63927330,25870236,4
+65518234,25870236,5
+37615847,25870236,3
+85174401,25870236,5
+3101572,25870236,5
+132811341,25870236,3
+28312683,25870236,5
+80163980,25870236,4
+zita1021,25870236,5
+53504947,25870236,-1
+51606142,25870236,3
+zfq10,25870236,4
+61624243,25870236,4
+59282588,25870236,4
+FilmYan,25870236,4
+scolo,25870236,3
+dingding1113,25870236,4
+80775122,25870236,4
+134047731,25870236,4
+48503456,25870236,4
+119987907,25870236,5
+xjksama,25870236,4
+124959172,25870236,2
+79151265,25870236,3
+foreverlovewuxm,25870236,4
+48676614,25870236,3
+cocainehcl,25870236,4
+spark0601,25870236,4
+Junexoxo,25870236,5
+66810723,25870236,5
+JC_Panda,25870236,4
+fengliguantou26,25870236,4
+69998780,25870236,4
+LasciatemiMorir,25870236,3
+g.z.y,25870236,5
+56143102,25870236,5
+4047603,25870236,5
+piencers,25870236,3
+kkjoy2617,25870236,4
+50467988,25870236,2
+83491146,25870236,5
+52099107,25870236,5
+62531945,25870236,5
+iswh,25870236,4
+70588269,25870236,4
+118834654,25870236,3
+56072639,25870236,4
+134271581,25870236,5
+49306729,25870236,4
+lephemera,25870236,3
+3410802,25870236,2
+8523675,25870236,3
+57561513,25870236,4
+53997125,25870236,4
+morvin,25870236,4
+njtintin,25870236,5
+71479420,25870236,5
+3235133,25870236,5
+JaceJing,25870236,3
+56451790,25870236,4
+tsebb,25870236,3
+dearFreundin,25870236,2
+yiren-sun,25870236,4
+26757948,25870236,4
+63397034,25870236,4
+45354414,25870236,3
+59664988,25870236,5
+46345500,25870236,5
+51909458,25870236,4
+41823915,25870236,4
+60591590,25870236,5
+99773030,25870236,4
+54653189,25870236,1
+73600166,25870236,4
+80245550,25870236,4
+jsjtsecret,25870236,4
+rachelpp,25870236,4
+122532383,25870236,2
+34188325,25870236,5
+67072789,25870236,5
+4247303,25870236,4
+69295551,25870236,3
+106548711,25870236,3
+106548711,25870236,3
+129369858,25870236,3
+122587004,25870236,4
+47317039,25870236,3
+yueyuedad1972,25870236,4
+43297403,25870236,3
+76549379,25870236,4
+2169690,25870236,3
+4918742,25870236,4
+50563198,25870236,5
+37364562,25870236,-1
+zmore,25870236,4
+131206597,25870236,5
+51874201,25870236,5
+58338006,25870236,4
+52099869,25870236,3
+130828030,25870236,4
+43375121,25870236,4
+EugeneWong,25870236,4
+56602222,25870236,4
+43026697,25870236,5
+56524460,25870236,4
+nackey,25870236,4
+ivy_lmj,25870236,3
+129829181,25870236,5
+33693061,25870236,3
+43002843,25870236,4
+3523839,25870236,4
+68657829,25870236,5
+48511248,25870236,4
+132082727,25870236,4
+121523895,25870236,4
+56441549,25870236,5
+4497664,25870236,4
+urielwang,25870236,3
+yqz23,25870236,4
+37590923,25870236,5
+132192126,25870236,4
+2668037,25870236,5
+echomilk,25870236,4
+33880591,25870236,3
+88292094,25870236,4
+50318763,25870236,3
+56498451,25870236,4
+41871846,25870236,5
+sethyoung,25870236,3
+happysadop,25870236,3
+52145577,25870236,4
+73856461,25870236,3
+echozhan,25870236,3
+63011235,25870236,3
+67875277,25870236,4
+46572945,25870236,5
+57511259,25870236,3
+honey10151106,25870236,3
+cbpqag,25870236,4
+65014224,25870236,4
+rockynira,25870236,5
+2322719,25870236,5
+3170513,25870236,5
+133589292,25870236,4
+18046588,25870236,4
+3346776,25870236,3
+58935942,25870236,4
+4040560,25870236,4
+8073151,25870236,4
+neilxy,25870236,4
+xiaoshan0201,25870236,5
+15666274,25870236,-1
+61062275,25870236,4
+41462868,25870236,5
+50663434,25870236,5
+80346808,25870236,4
+masterobert,25870236,5
+133895653,25870236,4
+54371596,25870236,5
+51777015,25870236,3
+21064111,25870236,5
+47114271,25870236,4
+61052669,25870236,5
+67334552,25870236,-1
+46988261,25870236,4
+65087582,25870236,3
+46436075,25870236,5
+127426227,25870236,4
+54578280,25870236,5
+3435038,25870236,4
+121583636,25870236,5
+dahuilang15656,25870236,3
+sjch,25870236,4
+95402541,25870236,4
+77092352,25870236,2
+bfm843104158,25870236,5
+120964759,25870236,5
+88378303,25870236,5
+121925432,25870236,3
+DavyNight,25870236,4
+3722910,25870236,5
+58774315,25870236,5
+52167289,25870236,2
+cuc_scm,25870236,4
+weini0410,25870236,4
+caocaoa,25870236,4
+33663407,25870236,3
+41466205,25870236,4
+liarb,25870236,3
+64585406,25870236,3
+45439094,25870236,3
+133499151,25870236,-1
+84949449,25870236,4
+76964275,25870236,1
+41685508,25870236,5
+57040976,25870236,4
+59408878,25870236,4
+103503223,25870236,3
+80425280,25870236,4
+59684689,25870236,4
+itisadamas,25870236,3
+53235124,25870236,4
+72563139,25870236,5
+73204677,25870236,5
+61363004,25870236,5
+puddingwyq,25870236,5
+121057597,25870236,5
+mrbaibaibai,25870236,5
+61406882,25870236,5
+79330359,25870236,3
+haixiaoyang,25870236,5
+51605377,25870236,-1
+xiaziwu,25870236,4
+75413985,25870236,5
+74775273,25870236,5
+41586641,25870236,4
+49255582,25870236,3
+48132735,25870236,4
+Sixteensteps,25870236,3
+3397806,25870236,5
+60049868,25870236,5
+47924060,25870236,3
+69773402,25870236,3
+onless,25870236,5
+40659159,25870236,4
+za7ck,25870236,4
+3092747,25870236,5
+122943812,25870236,3
+2079162,25870236,5
+65595562,25870236,4
+wood008,25870236,3
+53022387,25870236,5
+34411968,25870236,4
+hhhhhhn,25870236,5
+54813786,25870236,4
+5580906,25870236,-1
+53485894,25870236,4
+yushan33,25870236,2
+99598599,25870236,3
+70466601,25870236,5
+soonylei,25870236,5
+59820675,25870236,3
+53926309,25870236,4
+danielyangli,25870236,2
+2858394,25870236,4
+whosemazi,25870236,5
+xiaozhubaobao,25870236,4
+ca3as2caco3,25870236,5
+81407936,25870236,4
+91872215,25870236,5
+lemonsummer420,25870236,4
+9614176,25870236,3
+lldedouban,25870236,5
+79058129,25870236,5
+erobin,25870236,4
+46088982,25870236,5
+3281685,25870236,4
+108693709,25870236,3
+yu830,25870236,4
+59537499,25870236,4
+62663500,25870236,3
+free4537,25870236,3
+43783099,25870236,5
+63798643,25870236,3
+49298107,25870236,3
+1211087,25870236,4
+78347009,25870236,4
+jicheng1993,25870236,4
+65404776,25870236,5
+122016263,25870236,4
+40394317,25870236,4
+vivienvb,25870236,5
+66980915,25870236,3
+30974329,25870236,3
+63941479,25870236,4
+anoukhood,25870236,4
+1050262,25870236,-1
+62601567,25870236,4
+126019502,25870236,5
+78760255,25870236,4
+banyinxie,25870236,3
+2298833,25870236,4
+58064521,25870236,3
+19598735,25870236,4
+75007342,25870236,3
+ydouban,25870236,-1
+54228014,25870236,3
+2603031,25870236,4
+93607054,25870236,5
+mimiminna,25870236,2
+119078211,25870236,4
+56365731,25870236,5
+27432217,25870236,4
+2616668,25870236,4
+70754107,25870236,5
+65367917,25870236,3
+34990334,25870236,4
+1523711,25870236,5
+1840162,25870236,4
+48036288,25870236,5
+58371560,25870236,4
+133083146,25870236,3
+echo1693,25870236,4
+65832475,25870236,4
+72348593,25870236,4
+4711630,25870236,4
+67449498,25870236,3
+40093986,25870236,4
+Heliotrop,25870236,4
+33808805,25870236,5
+3275817,25870236,4
+56566421,25870236,4
+48317610,25870236,3
+2771396,25870236,3
+RongFuYiTai6,25870236,4
+108496496,25870236,4
+52273132,25870236,5
+Showga,25870236,5
+49382503,25870236,5
+downbeats,25870236,-1
+80437815,25870236,4
+48089294,25870236,5
+95166626,25870236,5
+64132743,25870236,3
+57697286,25870236,5
+102747303,25870236,2
+1442801,25870236,4
+1220427,25870236,4
+79535386,25870236,4
+52992118,25870236,5
+baleyang,25870236,4
+3735285,25870236,4
+60386467,25870236,5
+28271170,25870236,3
+120973908,25870236,3
+yuc200,25870236,4
+60338101,25870236,4
+btwo,25870236,5
+72114556,25870236,5
+54211342,25870236,4
+17871243,25870236,3
+30084869,25870236,4
+bLue.C,25870236,5
+bluebamboo,25870236,3
+44398603,25870236,5
+47089666,25870236,4
+kingkongofkhan,25870236,3
+53362229,25870236,4
+56141860,25870236,5
+113037019,25870236,2
+48214032,25870236,3
+17436432,25870236,5
+2054495,25870236,3
+jiajiayoyo,25870236,4
+Leslie_ontheway,25870236,4
+65138658,25870236,5
+83409753,25870236,5
+3722662,25870236,4
+eugne,25870236,4
+74217249,25870236,4
+dreamgmh,25870236,5
+huangrui1016,25870236,4
+48048904,25870236,5
+44777109,25870236,4
+83513831,25870236,4
+4596560,25870236,4
+65321007,25870236,4
+59217273,25870236,4
+45197584,25870236,3
+40591271,25870236,4
+55480729,25870236,4
+silent_island,25870236,2
+Helianthustree,25870236,4
+42171117,25870236,4
+lingerer,25870236,4
+81325605,25870236,3
+51941649,25870236,5
+54129779,25870236,3
+129620267,25870236,5
+68699271,25870236,3
+133788229,25870236,4
+48510325,25870236,5
+M.N.,25870236,5
+67246411,25870236,4
+79915546,25870236,4
+37160658,25870236,4
+ajun-zjup,25870236,4
+37402473,25870236,4
+huangtoufa,25870236,4
+69808734,25870236,3
+32551454,25870236,5
+34800143,25870236,5
+1383301,25870236,4
+imoviekobe,25870236,3
+49761291,25870236,3
+smile_smile1988,25870236,5
+55324515,25870236,3
+48874966,25870236,4
+xiaoyizhuo,25870236,2
+jzhsu,25870236,5
+26803264,25870236,5
+tobewith0216,25870236,4
+120222665,25870236,3
+yqy701,25870236,4
+34727533,25870236,4
+36821087,25870236,4
+133067591,25870236,5
+BALENO,25870236,3
+59760298,25870236,4
+1455801,25870236,4
+49539687,25870236,4
+1110575,25870236,3
+54086694,25870236,3
+87083592,25870236,5
+joelipam,25870236,4
+plkio,25870236,4
+jad1s,25870236,4
+61506971,25870236,3
+47258009,25870236,4
+3534571,25870236,4
+12966940,25870236,4
+71416831,25870236,4
+128991169,25870236,5
+quanquan0817,25870236,5
+45910532,25870236,4
+101464428,25870236,4
+1895030,25870236,4
+55571747,25870236,3
+85156145,25870236,4
+monique77,25870236,-1
+46746652,25870236,3
+58258651,25870236,3
+4453892,25870236,-1
+bearblindman,25870236,5
+64854726,25870236,4
+hljmsfy,25870236,3
+4431856,25870236,1
+78161554,25870236,4
+nangle,25870236,-1
+selfishJin,25870236,4
+ijunojiang,25870236,4
+30267706,25870236,4
+Walt_W,25870236,4
+41680917,25870236,4
+60935478,25870236,3
+62122609,25870236,5
+87866521,25870236,4
+54721365,25870236,3
+iamsbp,25870236,5
+95817419,25870236,4
+66103478,25870236,3
+95442218,25870236,4
+85811535,25870236,3
+70545879,25870236,4
+evil1008,25870236,4
+2106137,25870236,-1
+125603245,25870236,4
+83639322,25870236,5
+58071274,25870236,4
+caicai1005,25870236,4
+133712926,25870236,-1
+53644977,25870236,3
+62482710,25870236,5
+88335508,25870236,5
+vanie,25870236,4
+4597338,25870236,3
+tobekalorce,25870236,2
+sylvanio,25870236,5
+119883443,25870236,5
+103214078,25870236,3
+39245426,25870236,5
+2468143,25870236,4
+xiaojiongxia,25870236,4
+movelay,25870236,4
+68701440,25870236,3
+37228673,25870236,5
+4370087,25870236,4
+leechambo,25870236,5
+64021534,25870236,5
+43237057,25870236,5
+2730322,25870236,3
+64872065,25870236,3
+104445642,25870236,4
+42585852,25870236,4
+75468293,25870236,5
+69125005,25870236,4
+justsay,25870236,4
+cicihappy,25870236,4
+106570148,25870236,4
+62996673,25870236,4
+linyilan,25870236,3
+4545627,25870236,4
+3598072,25870236,4
+yip_lam365,25870236,5
+65187145,25870236,3
+78757579,25870236,5
+55888632,25870236,3
+2109718,25870236,3
+yaomiaomiao,25870236,5
+3354810,25870236,5
+46151281,25870236,3
+57298061,25870236,4
+54825583,25870236,2
+125116558,25870236,5
+68951432,25870236,5
+4297674,25870236,4
+nigelallan,25870236,5
+stetehe,25870236,3
+bobolu,25870236,4
+fenglimuren,25870236,3
+34404618,25870236,5
+cajiln,25870236,4
+kona,25870236,5
+alonggauss,25870236,5
+3504680,25870236,5
+conwaykang,25870236,4
+ninosun,25870236,4
+59220835,25870236,3
+55590894,25870236,4
+yestar,25870236,5
+55454823,25870236,4
+48744343,25870236,5
+58446953,25870236,3
+123588158,25870236,5
+50820231,25870236,5
+31102423,25870236,3
+panthea,25870236,4
+happyhealthy,25870236,4
+47305840,25870236,3
+133644469,25870236,5
+51590061,25870236,5
+lyych,25870236,4
+56198749,25870236,3
+129611962,25870236,5
+74629156,25870236,5
+3678344,25870236,4
+ikaka,25870236,4
+flowertide,25870236,3
+41216171,25870236,5
+28514348,25870236,4
+eddychaw,25870236,3
+2092765,25870236,4
+guppyfish,25870236,4
+sgzjhw,25870236,3
+alwaysaway,25870236,4
+104823216,25870236,4
+52160935,25870236,4
+61504169,25870236,4
+115669572,25870236,4
+127904211,25870236,5
+43782586,25870236,4
+57661642,25870236,2
+YamaHao,25870236,-1
+60396815,25870236,4
+2401259,25870236,4
+48156038,25870236,4
+77577203,25870236,5
+evelyne_hsu,25870236,4
+2187326,25870236,3
+73766908,25870236,4
+darchang,25870236,4
+holy-fishman,25870236,4
+xdcheung,25870236,5
+48772570,25870236,4
+71225504,25870236,4
+36268247,25870236,4
+79734997,25870236,4
+59370247,25870236,5
+rachel1216,25870236,3
+73163829,25870236,4
+47193126,25870236,3
+133602848,25870236,5
+50393568,25870236,5
+51915169,25870236,3
+87962296,25870236,5
+47650145,25870236,3
+78277110,25870236,5
+60656963,25870236,2
+2918978,25870236,5
+92921429,25870236,-1
+Lreckle,25870236,3
+83044349,25870236,4
+133598281,25870236,4
+55849765,25870236,4
+cherryonsale,25870236,3
+thomsonkoo,25870236,2
+2896376,25870236,4
+44054410,25870236,4
+6615487,25870236,5
+92165422,25870236,4
+4010903,25870236,4
+51227412,25870236,4
+AILUHAN123,25870236,4
+42724768,25870236,3
+63531003,25870236,4
+moyujushi,25870236,3
+79841047,25870236,3
+liujunhe123,25870236,4
+124517309,25870236,5
+1818595,25870236,3
+61726589,25870236,4
+133586070,25870236,3
+42202741,25870236,3
+67489382,25870236,5
+rabbitfjj,25870236,4
+1203839,25870236,4
+uni714,25870236,5
+68776992,25870236,4
+55850316,25870236,5
+longnel,25870236,4
+133582409,25870236,5
+102732514,25870236,5
+41842523,25870236,5
+60270558,25870236,5
+chenbi,25870236,5
+50481255,25870236,5
+102594722,25870236,3
+113796885,25870236,5
+36485989,25870236,5
+kakasissi,25870236,4
+133575194,25870236,3
+133471355,25870236,3
+MrKny,25870236,3
+tqzzq,25870236,5
+36794017,25870236,3
+66537927,25870236,5
+59378291,25870236,4
+raising_dawn,25870236,3
+50342310,25870236,4
+52668487,25870236,4
+82049060,25870236,4
+64770864,25870236,5
+65408583,25870236,3
+133564346,25870236,4
+joyceiveryin,25870236,4
+hottgb,25870236,5
+58706786,25870236,3
+zuoshoudezuo,25870236,3
+skiny_orange,25870236,4
+bfa1950,25870236,4
+31973700,25870236,4
+44103636,25870236,5
+51401098,25870236,3
+51401098,25870236,3
+71993757,25870236,4
+yihuiw,25870236,4
+47243761,25870236,4
+stickman,25870236,4
+ashinkangkang,25870236,3
+58085348,25870236,3
+67245376,25870236,5
+35183435,25870236,5
+71561935,25870236,3
+68102477,25870236,4
+moryfor,25870236,3
+60038262,25870236,4
+jimmylin1117,25870236,4
+PorPortishead,25870236,5
+119867722,25870236,2
+42137156,25870236,5
+81619869,25870236,3
+kiki204629,25870236,4
+1151029,25870236,-1
+64880714,25870236,2
+58151132,25870236,3
+qiangqiangzhang,25870236,4
+tuka0710,25870236,5
+60474639,25870236,5
+1929074,25870236,5
+3501606,25870236,3
+4123019,25870236,3
+130044129,25870236,4
+48008465,25870236,5
+50959488,25870236,5
+montcalgary,25870236,5
+55942870,25870236,3
+yoory,25870236,4
+69422415,25870236,4
+13293190,25870236,3
+60819733,25870236,4
+2498446,25870236,3
+1043912,25870236,4
+64124840,25870236,2
+87651171,25870236,1
+afste99,25870236,-1
+amanjj,25870236,-1
+66234722,25870236,4
+47241007,25870236,3
+josephgyal,25870236,2
+tianranzijiegou,25870236,3
+aokam,25870236,5
+yujiuwei,25870236,3
+66494720,25870236,4
+114441069,25870236,5
+68327060,25870236,4
+44006704,25870236,3
+chrisqi310,25870236,4
+88262225,25870236,5
+yeeeeeee,25870236,4
+119796299,25870236,4
+119027967,25870236,4
+57633355,25870236,3
+btone0808,25870236,4
+75288450,25870236,4
+80813290,25870236,5
+70354931,25870236,4
+45484348,25870236,5
+50906731,25870236,3
+45362948,25870236,4
+xuehaotian,25870236,4
+54332107,25870236,4
+23853027,25870236,3
+4129696,25870236,4
+44504599,25870236,3
+45804814,25870236,4
+37424688,25870236,3
+seafans,25870236,4
+jay220,25870236,3
+summerose,25870236,5
+64110948,25870236,3
+60649443,25870236,5
+101479182,25870236,5
+Simon_Wu,25870236,4
+77058316,25870236,5
+IRIDESCENT.ONE,25870236,5
+1625957,25870236,5
+75704681,25870236,5
+58630530,25870236,5
+64623484,25870236,5
+1493686,25870236,3
+48889968,25870236,4
+111461811,25870236,5
+annie-bean,25870236,3
+jisixue0111,25870236,3
+103735356,25870236,4
+sofans,25870236,4
+cuion,25870236,4
+82096379,25870236,2
+leeshiuan,25870236,5
+2808574,25870236,3
+65167858,25870236,5
+63923308,25870236,5
+124823143,25870236,4
+chesterchoi,25870236,4
+64618863,25870236,3
+CatPrince,25870236,4
+VC39,25870236,4
+60701551,25870236,4
+fumihiko1985,25870236,4
+3592617,25870236,4
+3555189,25870236,4
+121080553,25870236,5
+50930270,25870236,4
+3880844,25870236,3
+81757410,25870236,3
+Acheng05,25870236,5
+xu77,25870236,3
+79542238,25870236,5
+53554219,25870236,4
+45540942,25870236,5
+lp12,25870236,3
+minquan,25870236,4
+48288703,25870236,5
+63559969,25870236,3
+120929768,25870236,4
+immmmm,25870236,5
+1821069,25870236,2
+29822208,25870236,4
+2005598,25870236,5
+lishidai93,25870236,4
+62457534,25870236,5
+sheldonkao,25870236,3
+76086734,25870236,4
+63124174,25870236,4
+jsw9155,25870236,5
+81576955,25870236,5
+1831746,25870236,4
+127781489,25870236,5
+anonymousor,25870236,4
+51126355,25870236,3
+lok0702,25870236,3
+methuselah,25870236,-1
+52705405,25870236,4
+83455232,25870236,5
+104843183,25870236,5
+4057118,25870236,3
+ys1013,25870236,3
+80876714,25870236,3
+46368829,25870236,4
+65108877,25870236,3
+sherry-he,25870236,3
+abin520918,25870236,3
+57617460,25870236,2
+120076379,25870236,4
+littlemarss,25870236,4
+1886385,25870236,4
+71383486,25870236,4
+cl20lc,25870236,3
+121895079,25870236,5
+zasuny,25870236,5
+48712788,25870236,4
+70924398,25870236,3
+7609988,25870236,3
+87949968,25870236,5
+89852120,25870236,4
+132342909,25870236,4
+104144015,25870236,4
+2862311,25870236,4
+isabel0924,25870236,3
+132770225,25870236,4
+43663289,25870236,1
+81118349,25870236,4
+102581208,25870236,5
+mythmok,25870236,3
+1653790,25870236,3
+54377727,25870236,5
+88122336,25870236,3
+orzotlorzotl,25870236,3
+131118954,25870236,5
+2221354,25870236,4
+126183742,25870236,4
+74823280,25870236,4
+74866100,25870236,5
+53833067,25870236,5
+64243971,25870236,4
+52259960,25870236,4
+4239908,25870236,4
+127680038,25870236,4
+1717972,25870236,3
+2404315,25870236,4
+126125294,25870236,3
+115276282,25870236,4
+lensliao,25870236,4
+bbbonniechan,25870236,5
+w_weixing,25870236,4
+64243172,25870236,4
+56431276,25870236,3
+xurao,25870236,4
+45982463,25870236,3
+55414544,25870236,4
+3921724,25870236,5
+3262787,25870236,4
+superman-cici,25870236,5
+68878726,25870236,5
+4357790,25870236,4
+115029613,25870236,4
+125655857,25870236,2
+77350146,25870236,5
+ailuert,25870236,5
+60808695,25870236,4
+37335417,25870236,3
+2671857,25870236,4
+mr-carrot,25870236,4
+50579554,25870236,2
+goalps,25870236,5
+3319103,25870236,4
+fansz,25870236,4
+50319429,25870236,3
+39299123,25870236,3
+leechee,25870236,3
+jellyfishyo,25870236,3
+65045632,25870236,5
+xiaodi561,25870236,4
+129582003,25870236,4
+83192314,25870236,4
+1271019,25870236,4
+bbzbilly,25870236,5
+106130226,25870236,4
+119951362,25870236,4
+90904421,25870236,4
+yayuezi,25870236,5
+qingxi52vv,25870236,4
+124136324,25870236,4
+francisoloist,25870236,5
+sunjunhuang,25870236,3
+50066816,25870236,4
+blachkitty,25870236,4
+rainy214,25870236,4
+49684901,25870236,3
+mangomengl,25870236,3
+shiyanshigou,25870236,4
+48814752,25870236,3
+kaka-inzaghi,25870236,4
+zhuobielin,25870236,3
+47707485,25870236,4
+78640879,25870236,4
+shirley9292,25870236,4
+victorn,25870236,3
+76819505,25870236,5
+53317019,25870236,5
+48523065,25870236,4
+38682661,25870236,4
+summertime727,25870236,-1
+99543696,25870236,4
+121456273,25870236,5
+60671950,25870236,4
+70453072,25870236,5
+66617948,25870236,2
+1419591,25870236,4
+ruoku,25870236,3
+69033061,25870236,5
+50595621,25870236,5
+4684527,25870236,4
+49520952,25870236,4
+zpzs,25870236,4
+55559550,25870236,5
+57826492,25870236,4
+47193539,25870236,4
+102337536,25870236,4
+3761919,25870236,-1
+chauyeelee,25870236,5
+km_mutt,25870236,4
+46560322,25870236,5
+Levora,25870236,2
+3007182,25870236,4
+59245915,25870236,4
+MOVIE--KO,25870236,4
+47692286,25870236,4
+Nata1ie,25870236,3
+5964944,25870236,4
+50721819,25870236,4
+65784611,25870236,4
+4329184,25870236,5
+sevenready,25870236,4
+12232981,25870236,4
+4228422,25870236,3
+zyx321,25870236,4
+53866213,25870236,3
+Lethe.Lee,25870236,5
+125773849,25870236,4
+alice0124,25870236,3
+73081012,25870236,4
+68339254,25870236,5
+how-precious,25870236,3
+58847621,25870236,5
+54592717,25870236,4
+ILWTFT,25870236,3
+2938666,25870236,-1
+65283286,25870236,5
+love-jetoy,25870236,3
+loveloki913,25870236,5
+34785877,25870236,3
+vitasharry,25870236,3
+vitasharry,25870236,3
+87799350,25870236,4
+anjingledanle,25870236,5
+edward1988,25870236,3
+8872886,25870236,3
+60997769,25870236,4
+libinhan,25870236,3
+D-bao,25870236,3
+43211886,25870236,3
+cyan_xi,25870236,4
+fandashu,25870236,3
+61569380,25870236,3
+46438040,25870236,5
+ARREN,25870236,3
+63310083,25870236,4
+2341945,25870236,3
+48153158,25870236,4
+6332449,25870236,3
+cyblocker,25870236,4
+tjmelody,25870236,4
+beautyxyw,25870236,4
+peterdyf,25870236,3
+53300676,25870236,5
+kroraina,25870236,-1
+62369741,25870236,4
+pondy,25870236,3
+51333899,25870236,5
+28835602,25870236,5
+jijiyuluo,25870236,4
+38156960,25870236,4
+hualuowushengsi,25870236,3
+48859024,25870236,4
+73121332,25870236,5
+44951032,25870236,3
+68011709,25870236,5
+3561547,25870236,4
+60469455,25870236,5
+jianghan1217,25870236,4
+26321723,25870236,-1
+snh,25870236,4
+sif7,25870236,5
+49812729,25870236,4
+3509692,25870236,4
+99215743,25870236,5
+53997661,25870236,1
+49404152,25870236,2
+2948151,25870236,4
+xzhyqq866,25870236,5
+59575429,25870236,-1
+4482556,25870236,5
+54551463,25870236,4
+115555325,25870236,4
+lucaa,25870236,-1
+106911506,25870236,5
+32117558,25870236,-1
+askey,25870236,4
+48854353,25870236,3
+69475039,25870236,4
+tangjiaqi,25870236,3
+oceanyue,25870236,4
+oceanyue,25870236,4
+47598205,25870236,4
+67763944,25870236,4
+62778442,25870236,4
+2784323,25870236,4
+minmingan,25870236,4
+bunny622,25870236,5
+2125588,25870236,3
+66475895,25870236,3
+joyceamigo,25870236,4
+violinink,25870236,4
+mourirank,25870236,5
+75058618,25870236,3
+39941847,25870236,5
+45137335,25870236,5
+59412896,25870236,3
+withmydog,25870236,4
+89451365,25870236,4
+58848925,25870236,3
+124650707,25870236,4
+73012023,25870236,5
+ding0807,25870236,4
+Sophia_1989,25870236,5
+Gorjess3,25870236,2
+50798559,25870236,4
+akanishitsuki,25870236,4
+wdt,25870236,3
+flora1201,25870236,-1
+4251957,25870236,-1
+69254172,25870236,2
+landcrosser,25870236,5
+28275829,25870236,5
+D0932,25870236,3
+30836790,25870236,3
+83505394,25870236,3
+mo2mo,25870236,4
+qjquu,25870236,5
+lizhiyiling,25870236,4
+muqiushuang,25870236,4
+muxiaoxu,25870236,3
+3317072,25870236,4
+OuTalK,25870236,3
+Lis_Z,25870236,4
+83129118,25870236,3
+46499475,25870236,4
+62318523,25870236,2
+4652178,25870236,3
+m.edulla,25870236,4
+Lucas_T,25870236,4
+likechuck,25870236,3
+63773386,25870236,4
+1393472,25870236,4
+54930854,25870236,4
+khunfeng,25870236,5
+60227001,25870236,5
+68459309,25870236,5
+90793123,25870236,3
+115220596,25870236,5
+45575642,25870236,3
+ppwdp,25870236,4
+121191945,25870236,3
+duotian,25870236,3
+46845668,25870236,-1
+kiyashizhimao,25870236,4
+51061132,25870236,3
+88542586,25870236,4
+tydyyz,25870236,5
+62275045,25870236,5
+119451467,25870236,2
+74168799,25870236,5
+72854729,25870236,5
+4792198,25870236,5
+99550697,25870236,3
+46616832,25870236,4
+123270343,25870236,4
+undeadmonster,25870236,5
+82320533,25870236,3
+lady_xiaxia,25870236,4
+40447897,25870236,4
+2295492,25870236,3
+realeva,25870236,1
+68608061,25870236,5
+52868454,25870236,4
+AspireY,25870236,3
+68089671,25870236,4
+momonian,25870236,5
+chacha.0301.,25870236,4
+yzone,25870236,4
+48777727,25870236,3
+lovemayday,25870236,4
+3602334,25870236,5
+wongbur,25870236,4
+hasugay,25870236,4
+50079736,25870236,4
+66224224,25870236,5
+ibenchenhk,25870236,5
+37495463,25870236,5
+60801673,25870236,2
+46338692,25870236,5
+57278859,25870236,4
+zouyingying1993,25870236,4
+64245948,25870236,3
+Bocahontas,25870236,4
+2230826,25870236,3
+2561340,25870236,3
+a.lay,25870236,5
+38231953,25870236,5
+59783365,25870236,3
+2798198,25870236,5
+61937428,25870236,5
+inout,25870236,4
+himarkcn,25870236,4
+38222446,25870236,4
+petterzhang,25870236,3
+72171780,25870236,2
+54265487,25870236,3
+xiaojidunmoguxi,25870236,4
+1523332,25870236,4
+48541726,25870236,4
+71216009,25870236,5
+71216009,25870236,5
+36599298,25870236,5
+zhouyanganfen,25870236,4
+hmhbaby,25870236,5
+51210709,25870236,5
+3978018,25870236,4
+erbuzi,25870236,4
+nielu,25870236,5
+55868951,25870236,3
+wondermlq,25870236,5
+67851427,25870236,3
+irochan,25870236,4
+45368819,25870236,3
+54938342,25870236,4
+lingyun93,25870236,3
+2857621,25870236,3
+68712202,25870236,4
+lovelyangel1987,25870236,5
+4498680,25870236,1
+xiaoan7EF,25870236,-1
+53431261,25870236,3
+luvis1499,25870236,4
+smileja,25870236,4
+89815307,25870236,2
+44961319,25870236,4
+49270804,25870236,1
+39695667,25870236,3
+66136937,25870236,4
+59210685,25870236,3
+46510728,25870236,4
+Scorpio0203,25870236,3
+36739027,25870236,4
+52951268,25870236,4
+71985811,25870236,4
+45101640,25870236,3
+alicenana,25870236,5
+74855673,25870236,4
+71127427,25870236,5
+8882421,25870236,3
+46091221,25870236,3
+46061693,25870236,4
+74418627,25870236,4
+97431474,25870236,3
+2177082,25870236,4
+59215571,25870236,3
+102626192,25870236,5
+mississluu,25870236,4
+wbhvivian,25870236,4
+16959294,25870236,3
+usix,25870236,5
+76356142,25870236,5
+57947558,25870236,4
+yoursna,25870236,2
+liuchuanzi,25870236,3
+58141531,25870236,4
+yishuibeige,25870236,4
+charo,25870236,4
+93417333,25870236,4
+4589772,25870236,4
+K-majorniannian,25870236,5
+xizi90,25870236,4
+84704746,25870236,5
+sandlee1986,25870236,5
+42709375,25870236,3
+sasa522,25870236,5
+49766673,25870236,4
+79914360,25870236,3
+Yoyo_Yvette,25870236,4
+51338490,25870236,5
+yuanoren,25870236,5
+94863622,25870236,4
+3403979,25870236,3
+future119,25870236,5
+wsgjr,25870236,5
+43556775,25870236,4
+chequel7880,25870236,4
+80618341,25870236,3
+40342099,25870236,4
+2707760,25870236,3
+45508468,25870236,4
+winnerlei,25870236,5
+64020906,25870236,2
+69830654,25870236,5
+Amor_ar,25870236,3
+smileuna,25870236,3
+xeniacheung,25870236,5
+3780954,25870236,4
+cao_mq1989.,25870236,5
+youcheng321,25870236,5
+weixiaol,25870236,4
+Jsophia,25870236,5
+56402767,25870236,3
+momoko-rabbit,25870236,4
+57881682,25870236,4
+64104549,25870236,4
+wsszmq,25870236,5
+chengyue888,25870236,5
+Lavavetro,25870236,4
+37470705,25870236,5
+leskwan,25870236,5
+49228948,25870236,5
+62263569,25870236,5
+47588699,25870236,4
+35688642,25870236,4
+79560195,25870236,3
+32502933,25870236,4
+33020931,25870236,4
+3671533,25870236,2
+2274906,25870236,4
+auvauva,25870236,5
+59083879,25870236,4
+14157576,25870236,3
+59968133,25870236,3
+donotfuckme,25870236,1
+50619629,25870236,3
+gigiego,25870236,5
+wincy_5c,25870236,3
+shuzai97,25870236,4
+rach0609,25870236,4
+rachel-cho08,25870236,5
+allentear,25870236,5
+27993797,25870236,5
+bunnie0330,25870236,3
+43431310,25870236,4
+59149801,25870236,5
+3637216,25870236,3
+44865012,25870236,4
+39515803,25870236,3
+angelkalen,25870236,4
+71427030,25870236,4
+59058228,25870236,5
+13729482,25870236,4
+4163899,25870236,5
+JoyDog,25870236,4
+38971714,25870236,4
+DuoThree,25870236,5
+icequin,25870236,4
+53070283,25870236,5
+SUPERYES,25870236,1
+43529469,25870236,3
+missdarcy,25870236,4
+111015166,25870236,3
+73470763,25870236,3
+36121445,25870236,5
+everlastingEGO,25870236,5
+46992157,25870236,4
+fionasocool,25870236,3
+EllieIsland,25870236,5
+49064665,25870236,3
+47603027,25870236,1
+fwtzzl,25870236,2
+59384236,25870236,5
+moutainboy,25870236,2
+68724030,25870236,3
+57225483,25870236,3
+2387348,25870236,4
+33411098,25870236,4
+1424236,25870236,3
+tracytraztse,25870236,4
+turtlezheng,25870236,4
+liwei1806,25870236,4
+totozhang,25870236,3
+luckytwo,25870236,4
+48942164,25870236,5
+48548955,25870236,4
+VAR_nowhere,25870236,5
+49002817,25870236,5
+wukailun,25870236,4
+33195651,25870236,2
+tanxi920,25870236,4
+58783502,25870236,5
+62155313,25870236,4
+5550651,25870236,3
+53411965,25870236,5
+93151927,25870236,5
+37029015,25870236,5
+61951210,25870236,5
+64328101,25870236,3
+52064761,25870236,3
+sonyaya,25870236,5
+3581900,25870236,3
+ikmisje,25870236,3
+50212998,25870236,4
+qd724945697,25870236,4
+flora0013,25870236,4
+57367476,25870236,5
+dasyure,25870236,3
+liu_uil,25870236,3
+115211833,25870236,5
+45522216,25870236,5
+4587526,25870236,4
+allen_wong,25870236,4
+52842297,25870236,1
+hugowai,25870236,4
+74448596,25870236,4
+62129724,25870236,4
+110315543,25870236,4
+tomhu,25870236,4
+57418562,25870236,4
+51457792,25870236,4
+Ptah,25870236,3
+isabell520,25870236,3
+84007571,25870236,3
+yokiiii,25870236,4
+65004102,25870236,5
+58036033,25870236,5
+61973775,25870236,4
+45623979,25870236,4
+72128236,25870236,5
+64357742,25870236,4
+Dora_bamboo,25870236,4
+71821400,25870236,3
+nuannuan827,25870236,5
+2696668,25870236,5
+28142648,25870236,-1
+1786605,25870236,2
+33597419,25870236,3
+9823994,25870236,4
+davige,25870236,4
+93823415,25870236,5
+38928867,25870236,1
+treelulu,25870236,3
+56265221,25870236,3
+3906902,25870236,2
+loveabuforever,25870236,5
+45838830,25870236,5
+dizen,25870236,3
+45616361,25870236,3
+45727227,25870236,3
+55799483,25870236,5
+53492986,25870236,3
+kittiewong,25870236,4
+zqdqzx,25870236,3
+68470868,25870236,3
+lesleylui,25870236,4
+53919558,25870236,5
+41198660,25870236,5
+losite,25870236,4
+38785285,25870236,3
+flyawayxuan,25870236,4
+freedomyan,25870236,5
+57749181,25870236,3
+70359207,25870236,4
+122764683,25870236,1
+120245591,25870236,3
+hipowendy,25870236,5
+54173979,25870236,5
+58138519,25870236,5
+longzainali,25870236,3
+93617074,25870236,3
+4905325,25870236,4
+43641776,25870236,4
+loveedward,25870236,3
+aryancc,25870236,5
+1489279,25870236,-1
+65717792,25870236,3
+goonerhuwenbo,25870236,3
+xiaojian0717,25870236,-1
+75096112,25870236,4
+raintingfan,25870236,3
+83115663,25870236,3
+Abbey_sick,25870236,3
+irisjieyi,25870236,4
+63699116,25870236,5
+shanghai11,25870236,4
+ningning9164,25870236,-1
+jasminekiki,25870236,4
+71143154,25870236,4
+43127897,25870236,4
+Qian_Feng,25870236,5
+azuremoon0118,25870236,-1
+steveliux,25870236,3
+3974458,25870236,4
+mangggggg,25870236,-1
+77420474,25870236,4
+59677707,25870236,4
+66975499,25870236,4
+bulubululololo,25870236,2
+49565536,25870236,5
+tenaciousdragon,25870236,3
+sueyer,25870236,5
+kaka_elsie,25870236,3
+onlyYH,25870236,3
+tianyue,25870236,4
+athena0888,25870236,3
+debbydyh,25870236,5
+32995807,25870236,4
+hlym,25870236,3
+kook23,25870236,5
+yangjianmeiyang,25870236,4
+alisa_lea,25870236,4
+44272314,25870236,4
+61128841,25870236,4
+skyjadebear,25870236,3
+zero01,25870236,4
+zhoudenglu,25870236,4
+123036590,25870236,4
+wangyice,25870236,5
+45224713,25870236,4
+jingjingmao,25870236,3
+binbinmath,25870236,1
+sunnymary,25870236,5
+49854579,25870236,3
+71741571,25870236,-1
+wabi_sabi,25870236,3
+48194650,25870236,3
+62489520,25870236,5
+79648024,25870236,5
+liuguilin,25870236,1
+91994560,25870236,3
+flowerann,25870236,4
+83155529,25870236,2
+margaret-lor,25870236,5
+49199928,25870236,3
+suh5213,25870236,4
+64790470,25870236,5
+63822026,25870236,4
+39986664,25870236,5
+65322598,25870236,5
+tristasmile,25870236,4
+xly7788,25870236,5
+wplee,25870236,5
+50466544,25870236,5
+58040832,25870236,3
+59785914,25870236,5
+pau,25870236,3
+nihaozaijian,25870236,5
+30515688,25870236,3
+54793335,25870236,5
+59945441,25870236,4
+43288697,25870236,3
+1335533,25870236,4
+babyumanyee,25870236,5
+piggy007,25870236,3
+56226480,25870236,4
+4283192,25870236,5
+Microka,25870236,4
+momojq,25870236,5
+woodwool,25870236,4
+96044338,25870236,4
+42096779,25870236,4
+35438123,25870236,2
+sukyhuang,25870236,3
+starry_liu,25870236,4
+44335994,25870236,4
+60208186,25870236,2
+52699321,25870236,4
+29076066,25870236,5
+49041999,25870236,3
+qingchushuang,25870236,3
+noisH,25870236,2
+78667857,25870236,4
+kekeguo,25870236,4
+60874752,25870236,4
+39979081,25870236,5
+3173862,25870236,2
+daonian_1990,25870236,4
+53817584,25870236,4
+chrisyx,25870236,4
+lalalalalala777,25870236,3
+simple545,25870236,3
+s_sc1,25870236,4
+53721830,25870236,3
+3821009,25870236,4
+weixiaobaobao,25870236,3
+3671744,25870236,1
+47618742,25870236,4
+57319381,25870236,4
+ILSYY,25870236,3
+51959718,25870236,2
+lullaby_ly,25870236,5
+fanny_lingf,25870236,4
+74719967,25870236,4
+56633527,25870236,5
+barcaren,25870236,5
+mikeylau,25870236,5
+star027,25870236,3
+61038011,25870236,4
+59450940,25870236,4
+39454615,25870236,5
+never-land-bird,25870236,3
+66562471,25870236,4
+49139242,25870236,5
+rmemberlove,25870236,3
+1437985,25870236,3
+46888824,25870236,5
+xd880820,25870236,5
+30332673,25870236,4
+wuye2011,25870236,5
+48339246,25870236,4
+53010578,25870236,-1
+55606165,25870236,4
+80307859,25870236,4
+anoTherTeezy,25870236,3
+83817130,25870236,4
+john280859170,25870236,5
+76881504,25870236,1
+92681971,25870236,3
+76529709,25870236,3
+63485325,25870236,3
+miss_dian,25870236,4
+little9,25870236,4
+17407986,25870236,5
+49963574,25870236,4
+lamjean,25870236,5
+noodle,25870236,4
+fushengqiang,25870236,3
+60283154,25870236,5
+RRspace,25870236,3
+1790060,25870236,4
+53405330,25870236,1
+60956192,25870236,5
+52889197,25870236,4
+45318563,25870236,4
+41428170,25870236,5
+troublebreaker,25870236,5
+jamie1835,25870236,5
+little-dog,25870236,5
+45590222,25870236,4
+yanlovelife,25870236,5
+wusequanwei,25870236,4
+qianricao,25870236,5
+2380878,25870236,3
+liaojiafen,25870236,4
+oakhui,25870236,2
+ccior,25870236,5
+tcff,25870236,5
+shanguicheng,25870236,1
+65119653,25870236,4
+helenzhao0512,25870236,4
+64755839,25870236,3
+xiaotao,25870236,3
+2649968,25870236,2
+65002726,25870236,5
+14069864,25870236,3
+62566677,25870236,3
+vikinglu,25870236,4
+52028198,25870236,5
+43086399,25870236,5
+56007865,25870236,2
+lick647,25870236,4
+2433908,25870236,3
+49866554,25870236,4
+yueyan23,25870236,4
+dadangou,25870236,4
+2506122,25870236,3
+42280664,25870236,4
+4766836,25870236,4
+53539013,25870236,3
+48315386,25870236,4
+chenhuayang,25870236,4
+i_am_sunday,25870236,5
+zhchtcm,25870236,3
+mavisivam,25870236,3
+53317988,25870236,2
+55289792,25870236,3
+momisa,25870236,3
+xiaobai2046,25870236,4
+4283595,25870236,4
+78473653,25870236,5
+41421812,25870236,5
+GreenySoul,25870236,3
+coldface,25870236,3
+rita-star,25870236,3
+96992534,25870236,5
+miaowl,25870236,2
+1188181,25870236,-1
+41040273,25870236,5
+july880722,25870236,4
+loveBJuncle,25870236,4
+67641940,25870236,5
+64978016,25870236,4
+90564869,25870236,3
+72420983,25870236,5
+4069363,25870236,3
+ivy26,25870236,2
+tjg325,25870236,5
+charleschan,25870236,5
+markhung,25870236,5
+guey4,25870236,2
+83932735,25870236,3
+30314693,25870236,5
+yuewei091227,25870236,3
+lukemdk,25870236,4
+67681966,25870236,4
+48168328,25870236,4
+Eayo,25870236,4
+120990499,25870236,4
+thecrespo,25870236,5
+maomao19901108,25870236,4
+hersjun,25870236,5
+57286143,25870236,-1
+70081984,25870236,4
+caijiazhan,25870236,3
+littlesuperman,25870236,4
+waka7,25870236,3
+4618089,25870236,3
+38821369,25870236,4
+69000560,25870236,4
+June-.,25870236,-1
+lalalin,25870236,2
+51765112,25870236,4
+60761601,25870236,5
+57753980,25870236,3
+tagore_tsai,25870236,5
+65398660,25870236,5
+sidneylumet,25870236,2
+60432635,25870236,4
+jxncm,25870236,5
+shuxue,25870236,2
+41806618,25870236,5
+76192912,25870236,4
+coffeebear,25870236,3
+missair,25870236,4
+26116734,25870236,4
+59342280,25870236,4
+64121528,25870236,5
+53082027,25870236,4
+52979491,25870236,5
+34801955,25870236,5
+34801955,25870236,5
+waawaa,25870236,5
+bennyrice,25870236,4
+44512796,25870236,3
+lynnvalley,25870236,5
+34438242,25870236,4
+47601578,25870236,5
+HAVIAL13WEI,25870236,5
+1849977,25870236,5
+ypppp,25870236,4
+45211738,25870236,4
+83020463,25870236,3
+3853432,25870236,4
+43046100,25870236,4
+63063678,25870236,4
+islandcoast,25870236,4
+money_1,25870236,4
+64168650,25870236,5
+49855743,25870236,4
+105736560,25870236,3
+44129385,25870236,4
+FK621,25870236,5
+119834273,25870236,2
+45245216,25870236,3
+kk_22,25870236,4
+ecane,25870236,5
+62322646,25870236,4
+46206535,25870236,5
+56591384,25870236,4
+44510563,25870236,-1
+lulu123,25870236,2
+69275711,25870236,5
+63875980,25870236,5
+63823426,25870236,4
+17004593,25870236,3
+laneddy,25870236,3
+cardilia,25870236,3
+48795327,25870236,3
+27225086,25870236,5
+redrabbit,25870236,4
+celia550,25870236,5
+1878284,25870236,5
+82387095,25870236,4
+61468698,25870236,4
+53893192,25870236,4
+57640790,25870236,4
+61571897,25870236,4
+50945725,25870236,3
+64213876,25870236,5
+19566657,25870236,-1
+4168284,25870236,3
+3457326,25870236,5
+61616788,25870236,3
+44316758,25870236,3
+weixiaolengmo,25870236,2
+43882997,25870236,3
+iyuka,25870236,5
+fengwuyaoye,25870236,4
+107554806,25870236,5
+42144339,25870236,4
+1219663,25870236,4
+2595427,25870236,2
+asqbtcupid,25870236,5
+58114577,25870236,5
+64415826,25870236,5
+49945629,25870236,4
+caojay0813,25870236,4
+geminige,25870236,4
+2219533,25870236,4
+4446747,25870236,4
+82342424,25870236,4
+ceciliayiyi,25870236,4
+64186233,25870236,5
+60841325,25870236,5
+baozha,25870236,4
+4655887,25870236,4
+xiaobenma,25870236,4
+40843838,25870236,3
+19481906,25870236,4
+2610640,25870236,4
+li_han,25870236,5
+53759633,25870236,4
+50112537,25870236,3
+4425705,25870236,3
+39097410,25870236,4
+jiamianhu,25870236,3
+34841595,25870236,4
+fecal,25870236,3
+42663693,25870236,4
+littleric3,25870236,5
+36409948,25870236,4
+2113603,25870236,3
+49703716,25870236,4
+66620661,25870236,5
+YUE0825,25870236,4
+yanlee17,25870236,4
+C.YEll,25870236,3
+makimin,25870236,5
+xll_xqzhang,25870236,3
+z1901111,25870236,5
+dairytea,25870236,4
+hlsdy,25870236,5
+1926472,25870236,5
+FOOL624,25870236,4
+pamela516,25870236,4
+65021635,25870236,5
+imsuper,25870236,5
+62726986,25870236,5
+49338392,25870236,-1
+123474113,25870236,5
+50149228,25870236,5
+81449324,25870236,2
+54880316,25870236,5
+dayandnights,25870236,4
+3595293,25870236,5
+123024272,25870236,1
+45071682,25870236,5
+78617741,25870236,2
+68539735,25870236,3
+zcsyzdln,25870236,3
+51339375,25870236,5
+64273193,25870236,5
+thekooks,25870236,3
+jiangyuhang,25870236,3
+2469119,25870236,4
+cgy0330,25870236,4
+94254044,25870236,5
+57597596,25870236,4
+86055475,25870236,3
+46799623,25870236,-1
+long.distance,25870236,5
+reubehind,25870236,4
+35736307,25870236,3
+49135954,25870236,4
+xiaoqiansimida,25870236,4
+actionaction,25870236,5
+vickybao,25870236,4
+tildali1214,25870236,5
+49422565,25870236,4
+24263050,25870236,4
+reave,25870236,3
+cannixi,25870236,3
+Chaos13,25870236,5
+66613325,25870236,4
+meidongxiao,25870236,5
+74947871,25870236,5
+48531338,25870236,2
+48348990,25870236,5
+75749621,25870236,4
+dintxer,25870236,5
+52788947,25870236,5
+47324107,25870236,5
+50501078,25870236,3
+4342341,25870236,5
+yunge1991,25870236,5
+65523166,25870236,5
+58343870,25870236,4
+40104674,25870236,4
+75174601,25870236,4
+52455925,25870236,5
+kristy0527,25870236,3
+84563751,25870236,4
+nanacancer,25870236,5
+88338755,25870236,3
+52350621,25870236,4
+34081979,25870236,4
+songyafeng,25870236,5
+87069723,25870236,4
+61084832,25870236,4
+BB1313,25870236,3
+leileisunshine,25870236,3
+atomd,25870236,4
+61569566,25870236,4
+heathlon,25870236,5
+42926256,25870236,4
+nilaoye,25870236,4
+1631648,25870236,5
+pimichang,25870236,3
+81317162,25870236,4
+scorpion.miumiu,25870236,5
+58063644,25870236,4
+59012758,25870236,3
+3042446,25870236,3
+zpanshuai,25870236,2
+ly227,25870236,4
+54871934,25870236,5
+51257639,25870236,1
+70341874,25870236,4
+lammm,25870236,5
+1723651,25870236,-1
+43978557,25870236,5
+67438001,25870236,-1
+37264633,25870236,3
+105023809,25870236,3
+myveil,25870236,5
+shonior,25870236,4
+46601029,25870236,4
+44868728,25870236,4
+76818492,25870236,4
+40588949,25870236,5
+38335040,25870236,5
+82575834,25870236,5
+49487093,25870236,3
+22105037,25870236,4
+83621605,25870236,5
+gaoxiaofei,25870236,4
+54096060,25870236,4
+53265759,25870236,3
+irenelgrandma,25870236,4
+summercharon,25870236,5
+43844879,25870236,5
+59979732,25870236,2
+alexgao,25870236,5
+dan1108,25870236,5
+sunxujjack,25870236,4
+4255750,25870236,3
+luckia1991,25870236,5
+piggasol,25870236,4
+39104893,25870236,4
+56526640,25870236,5
+120998712,25870236,5
+gaoweipo,25870236,5
+4876430,25870236,4
+wentnorth,25870236,4
+cqlavender,25870236,4
+38606077,25870236,5
+Lunatic_Z,25870236,4
+62003160,25870236,5
+50048603,25870236,5
+yaya_lduck,25870236,4
+passed,25870236,4
+48480567,25870236,3
+57439615,25870236,4
+q2lee,25870236,5
+guoyichun,25870236,5
+1001195,25870236,3
+SummerDuan,25870236,5
+41258503,25870236,4
+53176461,25870236,3
+49382185,25870236,3
+65227583,25870236,5
+73997383,25870236,5
+hexuanpomon,25870236,4
+NG,25870236,4
+kkguagangqin,25870236,3
+78977506,25870236,2
+34728183,25870236,3
+64996012,25870236,5
+40912138,25870236,4
+58007515,25870236,2
+54770734,25870236,5
+skyhorsebook,25870236,4
+buqianjiu,25870236,5
+inkbearcan,25870236,4
+xiaoyuhen,25870236,4
+108077404,25870236,4
+miracle1025,25870236,3
+79247542,25870236,4
+guqiuqiu,25870236,5
+luoxupei,25870236,5
+luoxupei,25870236,5
+4664685,25870236,5
+63229273,25870236,4
+1974706,25870236,2
+50662959,25870236,4
+silencehuang,25870236,4
+56393508,25870236,2
+4318013,25870236,4
+momodeshang,25870236,5
+26237008,25870236,4
+55484274,25870236,5
+care198475,25870236,5
+spaceli,25870236,4
+Sisyphus.,25870236,3
+tuliqin,25870236,4
+54490550,25870236,4
+114957826,25870236,4
+atangxiong,25870236,4
+saosaoxy,25870236,4
+27940300,25870236,5
+63977456,25870236,5
+mr.slow,25870236,4
+51568494,25870236,4
+timliutianxiang,25870236,3
+57476405,25870236,4
+colin1802,25870236,5
+64626755,25870236,2
+kingkongbarbie,25870236,3
+airan712,25870236,3
+110911507,25870236,3
+49474001,25870236,4
+swordtip,25870236,5
+34600215,25870236,5
+meskelil,25870236,3
+67800807,25870236,4
+22850702,25870236,4
+90546553,25870236,4
+105196709,25870236,5
+B-B-B-Side,25870236,4
+41874215,25870236,4
+nunei,25870236,4
+twelveoak,25870236,-1
+83047723,25870236,5
+finalrisk,25870236,5
+Michelle_ZYT,25870236,4
+j5281,25870236,4
+45608534,25870236,4
+seail,25870236,3
+2411825,25870236,5
+joanna_L,25870236,5
+Dreaming1989712,25870236,4
+52160511,25870236,4
+78955356,25870236,4
+Xiaojieli,25870236,4
+76486123,25870236,3
+121398393,25870236,5
+61824176,25870236,5
+15381019,25870236,5
+94687176,25870236,2
+34548940,25870236,4
+snakesarah,25870236,5
+4249235,25870236,5
+67890074,25870236,4
+MOXIASTUDIO,25870236,5
+bikibiki,25870236,4
+48420105,25870236,5
+44312238,25870236,3
+phoebejh,25870236,-1
+uiuu,25870236,5
+kiwi22,25870236,-1
+60742023,25870236,5
+73866765,25870236,3
+54817318,25870236,2
+3653774,25870236,5
+42416651,25870236,4
+4795118,25870236,5
+58929848,25870236,4
+52356727,25870236,4
+39890237,25870236,5
+11020421,25870236,4
+particles,25870236,3
+116543609,25870236,5
+xianzong,25870236,4
+2291572,25870236,4
+Isabella_Meow,25870236,4
+29101914,25870236,4
+1492293,25870236,4
+51598719,25870236,4
+linyer,25870236,4
+mantouniu,25870236,3
+71760114,25870236,4
+55362027,25870236,3
+jjloverene,25870236,5
+msslin,25870236,4
+cutebunny,25870236,4
+SusuwANjr,25870236,-1
+31715763,25870236,1
+detective,25870236,3
+2679311,25870236,5
+sfroompp,25870236,5
+2228864,25870236,5
+y1ngbb,25870236,2
+superpanv,25870236,4
+echo219,25870236,4
+Cheshier,25870236,2
+jielade08,25870236,5
+83187671,25870236,5
+61461484,25870236,4
+amandaccforever,25870236,4
+63643182,25870236,4
+4427457,25870236,3
+4287701,25870236,3
+72978026,25870236,-1
+greenyiruo,25870236,-1
+2049714,25870236,4
+58913556,25870236,4
+shadowen,25870236,-1
+jjcarolyn0609,25870236,4
+zhouxuan,25870236,5
+4239191,25870236,4
+67348705,25870236,4
+49242582,25870236,4
+shuimudeyu1990,25870236,3
+91397625,25870236,4
+sxy921026,25870236,4
+39933708,25870236,5
+76790888,25870236,3
+nangongmocheng,25870236,4
+34108808,25870236,3
+ahmu,25870236,4
+Charmaine,25870236,4
+46793847,25870236,5
+34278746,25870236,5
+SABTINA,25870236,4
+le-zen,25870236,4
+55859412,25870236,5
+63627403,25870236,3
+81916004,25870236,5
+52632528,25870236,4
+linxisml,25870236,5
+TOMayANAGASE,25870236,3
+Lioka,25870236,4
+73355457,25870236,4
+terrysteven,25870236,3
+32541723,25870236,5
+anxel,25870236,-1
+jiqiuqiu,25870236,4
+37509431,25870236,5
+izaijin,25870236,4
+4534729,25870236,4
+qingmuwu,25870236,3
+essy,25870236,2
+54504590,25870236,3
+64933961,25870236,4
+2150724,25870236,4
+3513677,25870236,4
+40125031,25870236,3
+44842743,25870236,5
+36612113,25870236,3
+47504020,25870236,5
+51313270,25870236,5
+vivifyvivi,25870236,4
+orangeumoon,25870236,5
+lukeyu,25870236,3
+102456258,25870236,5
+4656823,25870236,4
+tsubasatjy,25870236,4
+ayake,25870236,4
+81532007,25870236,1
+53654434,25870236,4
+78263023,25870236,4
+kazuha,25870236,5
+122944258,25870236,2
+53845135,25870236,3
+smallove816,25870236,-1
+64694528,25870236,4
+71937924,25870236,4
+75531469,25870236,4
+zhangchenzheng,25870236,5
+feesle,25870236,5
+daniskong,25870236,5
+4432467,25870236,3
+imvesper,25870236,3
+1441718,25870236,4
+59361957,25870236,4
+45551165,25870236,4
+grinch,25870236,3
+jeremy25,25870236,3
+hexiaoqin,25870236,3
+stillfyou,25870236,5
+123307685,25870236,5
+ximenjun,25870236,5
+colorwind,25870236,4
+62304049,25870236,4
+36580993,25870236,5
+fefe,25870236,3
+40876510,25870236,5
+Gordoncoco,25870236,2
+shinysun,25870236,4
+lalalatz,25870236,3
+freezingdream,25870236,5
+70043510,25870236,5
+53103898,25870236,4
+43214194,25870236,4
+57439323,25870236,4
+63412313,25870236,4
+4521703,25870236,5
+54934785,25870236,5
+52951856,25870236,4
+53917309,25870236,4
+Sophieless,25870236,4
+3541486,25870236,4
+50030842,25870236,5
+pkunlz,25870236,5
+foxqueen,25870236,2
+65032980,25870236,3
+68318078,25870236,3
+65266454,25870236,3
+castle.lymon,25870236,2
+KeithMoon,25870236,3
+63704631,25870236,4
+lilysld,25870236,5
+mercury0302,25870236,4
+44571988,25870236,4
+issac_poon,25870236,4
+67870530,25870236,4
+Jillian,25870236,-1
+ting_shark,25870236,-1
+zhangxiaogou77,25870236,3
+3677550,25870236,4
+3074237,25870236,5
+102732743,25870236,5
+44492341,25870236,4
+43671696,25870236,3
+aiJC,25870236,4
+123304030,25870236,5
+82970525,25870236,5
+121194618,25870236,2
+june.q,25870236,4
+122052846,25870236,4
+50586889,25870236,4
+55943262,25870236,4
+71630153,25870236,3
+37025309,25870236,5
+shiralees,25870236,5
+36627775,25870236,-1
+Lena-Ho,25870236,4
+45574013,25870236,3
+zoedark,25870236,4
+58288224,25870236,3
+57696717,25870236,4
+60385100,25870236,4
+50451911,25870236,4
+enroad,25870236,1
+80076911,25870236,5
+dodo729,25870236,4
+48228248,25870236,3
+LL0923,25870236,5
+53654985,25870236,4
+gong_ken,25870236,5
+taxi,25870236,2
+shelstar,25870236,3
+78132106,25870236,5
+82522784,25870236,5
+72661721,25870236,4
+2663705,25870236,3
+92809978,25870236,3
+1021243,25870236,3
+63486364,25870236,5
+57411563,25870236,5
+49891610,25870236,4
+twopersons,25870236,3
+SoyQueenaTse,25870236,4
+4075540,25870236,3
+x1Ao_y,25870236,4
+97645479,25870236,3
+liyixuanzaizai,25870236,5
+chanel0214,25870236,5
+85100591,25870236,-1
+67667928,25870236,4
+12794807,25870236,3
+68264319,25870236,4
+kejinlong,25870236,3
+neverland1210,25870236,4
+48193748,25870236,5
+62080213,25870236,1
+iSaw11021,25870236,-1
+58924080,25870236,3
+3609679,25870236,4
+47019925,25870236,5
+42669381,25870236,4
+light0817,25870236,5
+31421017,25870236,5
+48976051,25870236,4
+caojing,25870236,4
+53257768,25870236,2
+heavycoldteahou,25870236,3
+63352248,25870236,4
+72111363,25870236,5
+rex-hu,25870236,5
+huster-lion,25870236,5
+62268815,25870236,3
+57589585,25870236,4
+104056990,25870236,4
+41778329,25870236,4
+56167544,25870236,5
+65063242,25870236,5
+catpear,25870236,5
+56196085,25870236,4
+yiis,25870236,4
+48042943,25870236,4
+littlepip,25870236,5
+92340097,25870236,-1
+57583046,25870236,4
+yuxingshu,25870236,4
+104265782,25870236,4
+59774628,25870236,4
+imarlboro,25870236,5
+dudunvmotou,25870236,3
+serah,25870236,4
+crystal_nice,25870236,5
+k1ss,25870236,4
+44564870,25870236,5
+80634044,25870236,5
+ziler,25870236,5
+55563514,25870236,5
+48167750,25870236,3
+57542378,25870236,4
+kyleul,25870236,5
+xiaowangzi1984,25870236,5
+4454692,25870236,3
+81249317,25870236,4
+hooichueng,25870236,5
+57734564,25870236,3
+56500125,25870236,5
+47218241,25870236,3
+69223309,25870236,5
+50269050,25870236,5
+46815070,25870236,2
+81430185,25870236,5
+shuizhujidan,25870236,3
+51328750,25870236,3
+jeffchuwei,25870236,4
+36273852,25870236,2
+61528078,25870236,4
+91469568,25870236,5
+Draculala,25870236,4
+84171597,25870236,3
+mingming84,25870236,2
+steammoonsnow,25870236,-1
+seabisuit,25870236,2
+cyrus_wong,25870236,3
+45108609,25870236,3
+Sheeplady,25870236,5
+Obtson,25870236,2
+richer725,25870236,2
+amhuming,25870236,3
+1121093,25870236,4
+Creep_v,25870236,4
+IamtheDevil,25870236,4
+ilifeimop,25870236,2
+2572927,25870236,4
+lychee_2007,25870236,3
+Summer-isKing,25870236,3
+maqingyun,25870236,5
+62997495,25870236,4
+yprenkouer,25870236,3
+gu_yan,25870236,3
+82559466,25870236,4
+33309594,25870236,-1
+99569717,25870236,4
+70862123,25870236,5
+flxjp,25870236,3
+66057217,25870236,4
+xxhappy,25870236,5
+pigeye,25870236,2
+niguize,25870236,3
+44514155,25870236,5
+2504247,25870236,3
+57299628,25870236,4
+90662596,25870236,5
+79302633,25870236,4
+1386369,25870236,4
+bjmiss,25870236,1
+62484889,25870236,4
+doraeman,25870236,4
+dulllennon,25870236,3
+yeyuda,25870236,4
+4398857,25870236,4
+52146626,25870236,4
+1775965,25870236,4
+35578527,25870236,5
+stupidoor2floor,25870236,4
+30273027,25870236,5
+51270526,25870236,5
+hezelee,25870236,5
+XIAOTUTONG,25870236,3
+suma,25870236,3
+secretcat,25870236,4
+jiujiang9,25870236,2
+antifast,25870236,2
+lae,25870236,5
+67454532,25870236,4
+SiMinLi,25870236,4
+91649977,25870236,5
+ledreamaker,25870236,4
+kimu97,25870236,5
+42292941,25870236,5
+56686931,25870236,3
+4307343,25870236,4
+69031028,25870236,3
+Yindaxian,25870236,3
+novembery,25870236,4
+67711452,25870236,5
+47792256,25870236,4
+lve12,25870236,5
+2542573,25870236,5
+leslietongdc339,25870236,4
+JOCK,25870236,5
+yalindongdong,25870236,3
+43358203,25870236,3
+willdawn,25870236,2
+TERRYBEAR,25870236,4
+4666209,25870236,4
+64855352,25870236,2
+70603009,25870236,5
+54424447,25870236,4
+baizi886,25870236,4
+Austin-Ai,25870236,4
+plummy,25870236,5
+3308006,25870236,4
+xiaoyunamoureux,25870236,4
+danso,25870236,5
+39095423,25870236,4
+57372938,25870236,4
+50384647,25870236,4
+2144956,25870236,3
+49818947,25870236,4
+Chohin,25870236,2
+jingerjingjing,25870236,5
+yyingz,25870236,3
+48423742,25870236,5
+13148640,25870236,3
+57578844,25870236,4
+15874122,25870236,-1
+qinxinzhu,25870236,4
+54986489,25870236,4
+56024205,25870236,3
+cheri0505,25870236,5
+40012228,25870236,4
+lutaozi,25870236,1
+96948133,25870236,3
+69127375,25870236,5
+AJIONG119,25870236,5
+84303160,25870236,4
+Savor,25870236,5
+shine1219,25870236,4
+59370142,25870236,3
+78487311,25870236,3
+1404901,25870236,5
+susie1991,25870236,4
+59677538,25870236,4
+Aspirin129,25870236,3
+46066560,25870236,5
+fungmj,25870236,5
+45319686,25870236,3
+82022775,25870236,5
+62370156,25870236,-1
+xiaosefengning,25870236,3
+4401259,25870236,5
+42025689,25870236,3
+33346980,25870236,-1
+windyli,25870236,4
+wangxiaoyeer,25870236,4
+McBee,25870236,5
+128042537,25870236,4
+sansan28,25870236,4
+56136018,25870236,-1
+bianbianbbyz,25870236,3
+126979113,25870236,4
+14311494,25870236,5
+onlymengya,25870236,4
+xudifang13,25870236,5
+aids,25870236,4
+65159840,25870236,4
+58954301,25870236,4
+69439267,25870236,3
+2848557,25870236,4
+honeynaga,25870236,4
+46066822,25870236,5
+vala1994,25870236,4
+anitalover,25870236,3
+132322460,25870236,5
+40156361,25870236,4
+Grape0126,25870236,4
+64335429,25870236,4
+shajiu,25870236,-1
+108821133,25870236,4
+Ruty1985,25870236,4
+homebody,25870236,-1
+shensven,24751764,-1
+47165746,24751764,2
+Yulia,24751764,2
+frankxiafan,24751764,3
+76818492,24751764,3
+73204677,24751764,2
+56022694,24751764,1
+129051371,24751764,2
+NicoleDong90,24751764,3
+70794815,24751764,2
+66178513,24751764,4
+131496500,24751764,3
+117301439,24751764,3
+1486195,24751764,4
+1315276,24751764,4
+46289707,24751764,2
+130530674,24751764,4
+73530411,24751764,3
+108821133,24751764,3
+51862225,24751764,4
+53679658,24751764,2
+68141214,24751764,2
+Popdai,24751764,1
+81294077,24751764,3
+64335429,24751764,3
+loafingnick,24751764,3
+NotReally,24751764,-1
+58539257,24751764,2
+138126015,24751764,4
+50516869,24751764,4
+4547388,24751764,4
+137612153,24751764,4
+XIAOTUTONG,24751764,3
+102569563,24751764,3
+chenxiaodong,24751764,3
+72781855,24751764,2
+2818823,24751764,3
+Ruty1985,24751764,3
+wyfsmd,24751764,3
+80276904,24751764,3
+kikoliu999,24751764,5
+66825713,24751764,1
+73536867,24751764,3
+43290072,24751764,5
+3091315,24751764,3
+27402449,24751764,3
+maimai251,24751764,2
+A-M49,24751764,3
+41842523,24751764,2
+95017002,24751764,3
+48079918,24751764,3
+79784284,24751764,-1
+gjr,24751764,3
+3729384,24751764,1
+wendong262,24751764,4
+zhangcj1224,24751764,4
+action552200,24751764,3
+52084703,24751764,3
+55767927,24751764,4
+54910721,24751764,3
+54910721,24751764,3
+Y1990,24751764,-1
+3923065,24751764,3
+92688942,24751764,5
+liyashun,24751764,2
+70238336,24751764,4
+blb,24751764,4
+avrilyian,24751764,2
+suxiaoqian007,24751764,2
+68014143,24751764,2
+Lunarogier,24751764,3
+43958959,24751764,3
+miamiami,24751764,4
+52269289,24751764,2
+YvetteYvette,24751764,4
+32502933,24751764,3
+130599620,24751764,3
+134519666,24751764,3
+137824298,24751764,3
+57598902,24751764,3
+119372898,24751764,3
+duoxingxing,24751764,2
+9614176,24751764,2
+79330359,24751764,2
+45864291,24751764,3
+hapysmile,24751764,4
+20916982,24751764,4
+2254775,24751764,3
+13026676,24751764,3
+gray_dust,24751764,2
+ChenM,24751764,2
+kusch,24751764,4
+mi-hang,24751764,4
+chenhuayang,24751764,3
+kkbear,24751764,3
+50312553,24751764,4
+yangfengdouban,24751764,2
+1929074,24751764,3
+holy-fishman,24751764,3
+44852938,24751764,2
+amytsai,24751764,4
+csaver,24751764,3
+5116652,24751764,3
+elinli00,24751764,3
+42375246,24751764,3
+127080746,24751764,3
+64996012,24751764,3
+108693709,24751764,3
+75919955,24751764,4
+vanie,24751764,3
+131117570,24751764,3
+64284331,24751764,4
+108816754,24751764,3
+132236300,24751764,3
+85109921,24751764,3
+1084703,24751764,2
+136669389,24751764,2
+45080512,24751764,3
+97570215,24751764,3
+69273736,24751764,3
+52766247,24751764,4
+sym1001,24751764,5
+nicoleyanxi,24751764,4
+1845398,24751764,2
+102112873,24751764,4
+136727796,24751764,3
+136804658,24751764,3
+96758494,24751764,5
+RosemaryYU,24751764,3
+68551392,24751764,2
+98956225,24751764,4
+Ken,24751764,2
+114357928,24751764,5
+1493686,24751764,4
+61246784,24751764,2
+71383486,24751764,3
+134580402,24751764,4
+45402904,24751764,2
+61369928,24751764,3
+120566787,24751764,2
+10277954,24751764,2
+H897120417,24751764,4
+56858678,24751764,3
+132463662,24751764,3
+54203614,24751764,4
+48247472,24751764,3
+1545133,24751764,3
+2014095,24751764,3
+131749314,24751764,2
+54838499,24751764,4
+58338006,24751764,3
+54805627,24751764,2
+119282583,24751764,3
+70314512,24751764,4
+mogu-biu,24751764,3
+jisixue0111,24751764,2
+51416132,24751764,3
+53454251,24751764,2
+leidianboy,24751764,3
+ifuseekayu,24751764,-1
+135247004,24751764,3
+46467028,24751764,3
+134630891,24751764,3
+67350499,24751764,1
+79803791,24751764,3
+Vitaminsong,24751764,-1
+57583046,24751764,4
+45508468,24751764,1
+46148106,24751764,3
+vincentjones,24751764,3
+83119838,24751764,3
+37619405,24751764,3
+4116226,24751764,3
+4561356,24751764,2
+4228422,24751764,3
+57091115,24751764,5
+45573643,24751764,2
+mitocad,24751764,-1
+83183535,24751764,3
+51851072,24751764,3
+126579331,24751764,3
+133771695,24751764,4
+13871057,24751764,3
+49961036,24751764,4
+eciah,24751764,2
+59835894,24751764,3
+myhappy1992,24751764,4
+71985328,24751764,3
+59912109,24751764,4
+125755382,24751764,3
+126248170,24751764,3
+121243676,24751764,2
+youngmars,24751764,2
+duffei,24751764,3
+shutu,24751764,3
+52140378,24751764,4
+126140067,24751764,4
+136409582,24751764,3
+110392919,24751764,4
+72430905,24751764,2
+130369122,24751764,3
+131909298,24751764,3
+zhuzhenning,24751764,2
+sylin,24751764,2
+137206904,24751764,3
+luotang,24751764,3
+129857538,24751764,3
+132348134,24751764,3
+126128083,24751764,4
+77182257,24751764,3
+82550997,24751764,2
+53916327,24751764,3
+73651442,24751764,4
+131704221,24751764,2
+chaud,24751764,3
+45268716,24751764,3
+125827809,24751764,2
+41734674,24751764,2
+137046543,24751764,4
+54719032,24751764,2
+3709827,24751764,3
+56743856,24751764,1
+70313784,24751764,3
+cocokidman,24751764,4
+130419426,24751764,3
+reveur07,24751764,3
+62169990,24751764,3
+61675448,24751764,4
+81311883,24751764,3
+68737314,24751764,3
+chriscold,24751764,2
+79452838,24751764,3
+4083554,24751764,2
+137046507,24751764,3
+45037324,24751764,2
+64757557,24751764,1
+22531064,24751764,2
+69439267,24751764,2
+42006560,24751764,2
+48094617,24751764,2
+52688878,24751764,4
+aids,24751764,3
+75804317,24751764,2
+1840162,24751764,4
+benbenmuxi,24751764,2
+130647398,24751764,3
+115097585,24751764,2
+136910570,24751764,4
+34544680,24751764,3
+129472402,24751764,3
+69068097,24751764,3
+YangZhen1227,24751764,3
+66126154,24751764,-1
+83217907,24751764,3
+130445057,24751764,2
+47810404,24751764,2
+dukeduan,24751764,3
+13902448,24751764,2
+ChenSuXuan,24751764,4
+136826257,24751764,2
+64195446,24751764,4
+lynchor,24751764,3
+133067591,24751764,2
+leechambo,24751764,2
+imtutu,24751764,3
+xiamodegema,24751764,4
+yutang,24751764,3
+134509898,24751764,3
+83214911,24751764,-1
+cqingteng,24751764,4
+3852753,24751764,3
+gegewu92,24751764,3
+56911400,24751764,4
+50140281,24751764,4
+summerisabel,24751764,3
+2923786,24751764,4
+3450694,24751764,2
+missliyu,24751764,4
+75117298,24751764,4
+129783136,24751764,2
+56330466,24751764,2
+4918742,24751764,4
+59695133,24751764,3
+37189268,24751764,4
+40966244,24751764,4
+58934229,24751764,3
+59556078,24751764,2
+66575578,24751764,3
+61619787,24751764,3
+2564439,24751764,3
+gongzitian,24751764,2
+136849738,24751764,4
+K-Child,24751764,3
+58278943,24751764,2
+36013177,24751764,4
+80980884,24751764,4
+44976171,24751764,3
+49108399,24751764,4
+cocoatee,24751764,3
+1326010,24751764,3
+107835849,24751764,3
+61127973,24751764,3
+alei7774,24751764,2
+136517754,24751764,2
+echo520f1,24751764,2
+jelly-8,24751764,2
+131206597,24751764,4
+45925638,24751764,-1
+xuliking,24751764,3
+32853386,24751764,2
+55769420,24751764,4
+cherub235,24751764,2
+monk,24751764,2
+luoshen,24751764,3
+Gorjess3,24751764,3
+40185288,24751764,3
+92335297,24751764,3
+108282995,24751764,4
+54813786,24751764,1
+3275817,24751764,3
+artlin,24751764,3
+55561510,24751764,3
+83747600,24751764,3
+135112639,24751764,1
+50945725,24751764,2
+lolipig,24751764,3
+linshang,24751764,3
+smilybaby,24751764,3
+cyhappy36507,24751764,4
+lola721,24751764,3
+Ruby-0917,24751764,3
+2517086,24751764,3
+ioiohaha,24751764,3
+roseforu,24751764,3
+70989661,24751764,3
+65424625,24751764,4
+SoyQueenaTse,24751764,4
+lillylu,24751764,2
+47624847,24751764,3
+49298107,24751764,2
+66698052,24751764,3
+wanglinzi0214,24751764,3
+luteng1990,24751764,4
+77163742,24751764,1
+48096896,24751764,3
+syh622,24751764,3
+31630076,24751764,2
+9095449,24751764,3
+46355021,24751764,4
+shanghai827,24751764,3
+2340389,24751764,3
+103271136,24751764,3
+mwangym,24751764,2
+musicide,24751764,3
+74230231,24751764,4
+nancywon,24751764,2
+lovedtomma,24751764,1
+42803233,24751764,3
+136648119,24751764,-1
+2922610,24751764,3
+2922610,24751764,3
+3742479,24751764,3
+103415530,24751764,3
+mrqiyue,24751764,-1
+aissi,24751764,3
+demondeng,24751764,3
+55021237,24751764,3
+122912528,24751764,4
+43176716,24751764,2
+53364319,24751764,4
+2781564,24751764,4
+OnlyCoffee,24751764,3
+50313990,24751764,3
+jolllllly,24751764,3
+78169762,24751764,3
+33847605,24751764,3
+McBee,24751764,4
+2544720,24751764,2
+laolu1992,24751764,3
+49910264,24751764,2
+gesanghuakai,24751764,3
+2622237,24751764,3
+58051077,24751764,4
+unbounder,24751764,2
+cherrywasthere,24751764,3
+44451771,24751764,4
+4856255,24751764,5
+goodull,24751764,4
+maydayyqy,24751764,4
+59354164,24751764,3
+mengqingjiao,24751764,2
+guitarain,24751764,3
+jetamit,24751764,-1
+2544330,24751764,3
+bestsecretlife,24751764,2
+lensliao,24751764,2
+lijunxian0225,24751764,2
+81336001,24751764,4
+chl199093,24751764,3
+59408878,24751764,2
+44449851,24751764,4
+57876189,24751764,3
+chloevdw,24751764,2
+44162461,24751764,3
+55822408,24751764,2
+54158411,24751764,3
+59101445,24751764,3
+co1orful,24751764,3
+lovenpeaces,24751764,5
+65976416,24751764,3
+70491139,24751764,4
+3161517,24751764,4
+120538141,24751764,3
+Rex0729,24751764,2
+45382410,24751764,5
+60822788,24751764,3
+32551454,24751764,3
+2008667,24751764,3
+121064013,24751764,4
+green198641,24751764,-1
+2206901,24751764,4
+72257329,24751764,2
+2955357,24751764,3
+68692876,24751764,4
+yujingying,24751764,3
+Quester,24751764,2
+89301190,24751764,3
+57156729,24751764,4
+93151927,24751764,3
+56281076,24751764,3
+65763988,24751764,3
+122857735,24751764,2
+grandmoon,24751764,3
+61775961,24751764,3
+81034512,24751764,-1
+RUPIG,24751764,2
+treelover,24751764,3
+51606142,24751764,2
+64830849,24751764,1
+48080831,24751764,3
+48080831,24751764,3
+yimoyoulan916,24751764,3
+69856173,24751764,3
+40687803,24751764,2
+136182892,24751764,3
+3679450,24751764,4
+kingpeace,24751764,3
+antony007007,24751764,3
+papermoon_niky,24751764,1
+49854579,24751764,2
+53081187,24751764,3
+48817278,24751764,2
+nyssa712,24751764,3
+4271937,24751764,3
+4033467,24751764,-1
+lantianxin,24751764,4
+1768522,24751764,3
+80822437,24751764,5
+17407986,24751764,2
+63044059,24751764,1
+lazzaro,24751764,3
+honestydudu,24751764,2
+Mrkeke,24751764,4
+57235976,24751764,2
+135694361,24751764,3
+58001500,24751764,2
+ice41322,24751764,2
+126682168,24751764,4
+62600930,24751764,5
+125971465,24751764,3
+halfyoyo,24751764,3
+Video-game,24751764,3
+128103281,24751764,3
+133988097,24751764,3
+JaceJing,24751764,2
+123503132,24751764,2
+119644008,24751764,3
+v_xunyicao_v,24751764,3
+28467614,24751764,3
+leokong,24751764,2
+sky0615,24751764,2
+70453072,24751764,2
+yuedawei,24751764,2
+36621771,24751764,3
+63859433,24751764,2
+38753520,24751764,2
+qd724945697,24751764,3
+bons,24751764,-1
+avenq,24751764,5
+Joie,24751764,2
+2483011,24751764,2
+80724336,24751764,2
+128637977,24751764,3
+39877849,24751764,3
+Yuimokin,24751764,3
+50481255,24751764,3
+4195216,24751764,4
+56260072,24751764,2
+29873877,24751764,3
+124825941,24751764,3
+sallylu415,24751764,4
+88132855,24751764,3
+133499151,24751764,3
+adamwzw,24751764,4
+3633901,24751764,5
+1333031,24751764,-1
+antchouet,24751764,3
+veronicawolf,24751764,2
+54228014,24751764,3
+53245934,24751764,3
+gagaGu,24751764,3
+132433248,24751764,3
+dz8135,24751764,4
+120499052,24751764,3
+126937145,24751764,3
+2845192,24751764,3
+2507107,24751764,3
+51226041,24751764,5
+Stephen2046,24751764,3
+shaynexue,24751764,3
+39890237,24751764,2
+18080670,24751764,3
+63361765,24751764,5
+1067485,24751764,3
+127386685,24751764,3
+emilialinlin,24751764,2
+62699217,24751764,2
+59027708,24751764,2
+114441069,24751764,4
+dodo729,24751764,2
+skiny_orange,24751764,3
+58513319,24751764,1
+59629692,24751764,2
+lubinfan,24751764,3
+67120573,24751764,5
+47172452,24751764,2
+4511323,24751764,2
+74329329,24751764,4
+lostef,24751764,3
+wplee,24751764,2
+44428652,24751764,4
+59610543,24751764,3
+ucyuicy,24751764,2
+109868590,24751764,3
+67988925,24751764,3
+doubandengjian,24751764,2
+shoegirl,24751764,2
+121943500,24751764,3
+123645823,24751764,3
+43785559,24751764,3
+minnierai,24751764,2
+57818340,24751764,3
+yaolinlu,24751764,3
+sweetsfloral,24751764,2
+urk717,24751764,3
+tulipwings,24751764,2
+130459038,24751764,4
+shmilyyan,24751764,4
+45278098,24751764,4
+zzhh33,24751764,3
+40140527,24751764,3
+127454611,24751764,4
+134417369,24751764,3
+46722646,24751764,3
+sid005,24751764,3
+listenmumu,24751764,3
+135981815,24751764,3
+83842649,24751764,3
+1028043,24751764,4
+8729690,24751764,-1
+50307120,24751764,2
+4002268,24751764,3
+119908830,24751764,4
+96241491,24751764,2
+y328675858,24751764,2
+84989711,24751764,2
+121137821,24751764,2
+ivygreen06,24751764,2
+pbc0615,24751764,2
+15378913,24751764,2
+66980915,24751764,2
+120627904,24751764,3
+89406990,24751764,5
+btone0808,24751764,3
+59524621,24751764,3
+68209797,24751764,3
+cca2222223,24751764,3
+ejw,24751764,3
+34701908,24751764,3
+45069650,24751764,3
+graciesy,24751764,3
+64309170,24751764,2
+73346410,24751764,2
+125117170,24751764,2
+thethirteenth,24751764,-1
+yelucaizi,24751764,3
+119900869,24751764,2
+ruokongzhi,24751764,3
+amibubai,24751764,3
+twoest,24751764,5
+90812716,24751764,3
+60119095,24751764,4
+68869274,24751764,3
+127785608,24751764,2
+yeats1865,24751764,4
+136025185,24751764,4
+gakkitse,24751764,2
+syrahshiraz,24751764,2
+132388146,24751764,2
+78742345,24751764,4
+120431333,24751764,2
+122352396,24751764,2
+56566421,24751764,3
+daisywj,24751764,5
+w_weixing,24751764,4
+chendaying,24751764,2
+96042555,24751764,3
+3218379,24751764,4
+81998298,24751764,2
+Su33er,24751764,3
+vivien0212,24751764,3
+beamanly,24751764,5
+71654816,24751764,3
+104726474,24751764,3
+56621713,24751764,3
+xiaomujunjun,24751764,2
+17871243,24751764,3
+carinawang,24751764,3
+57058120,24751764,3
+43842293,24751764,3
+90055044,24751764,3
+3656028,24751764,3
+48227184,24751764,4
+42562073,24751764,3
+1865210,24751764,3
+53631000,24751764,-1
+jean-cancan,24751764,2
+qiangqiangzhang,24751764,3
+131329189,24751764,-1
+32288408,24751764,4
+69475039,24751764,3
+vicky_talk,24751764,3
+67923437,24751764,3
+duokuluo,24751764,3
+joyzhai,24751764,2
+129857824,24751764,5
+vivianlovesun,24751764,3
+63730928,24751764,2
+134937890,24751764,2
+nnnnore391,24751764,4
+leeyone,24751764,2
+35577629,24751764,3
+summerose,24751764,3
+honeyQQ,24751764,3
+yoyoyoyoyoyoyo,24751764,1
+71741571,24751764,-1
+69621584,24751764,4
+114350326,24751764,3
+your_j,24751764,2
+aprilsunshine,24751764,3
+70897199,24751764,3
+47853230,24751764,3
+134171382,24751764,1
+nealwzn,24751764,3
+mysky,24751764,2
+1373290,24751764,3
+93861419,24751764,4
+yanyanzhou110,24751764,5
+67823084,24751764,3
+4218094,24751764,3
+114328506,24751764,2
+getanvil,24751764,2
+3735449,24751764,-1
+35996089,24751764,4
+14840393,24751764,3
+63314716,24751764,2
+68835916,24751764,3
+133241079,24751764,4
+baleyang,24751764,3
+leeshiuan,24751764,3
+zyv1224,24751764,3
+103274308,24751764,3
+119457443,24751764,5
+68077940,24751764,4
+2187326,24751764,3
+wheatkittymew,24751764,4
+49848172,24751764,3
+73084756,24751764,2
+49365587,24751764,4
+58301131,24751764,4
+50002097,24751764,5
+62945273,24751764,2
+61497577,24751764,3
+67016989,24751764,3
+mountaindew,24751764,4
+81316047,24751764,2
+anillusion,24751764,2
+50663434,24751764,4
+FilmYan,24751764,3
+131499272,24751764,3
+melody.wong,24751764,3
+3690549,24751764,-1
+1818595,24751764,3
+kuxingseng80,24751764,3
+48288703,24751764,4
+allentear,24751764,4
+1369113,24751764,1
+3053008,24751764,3
+42106999,24751764,4
+84582504,24751764,4
+110834897,24751764,4
+33747314,24751764,2
+83354741,24751764,4
+45484348,24751764,3
+queenchelsea,24751764,2
+46128217,24751764,3
+48643744,24751764,4
+fangyuan1mi,24751764,3
+75489500,24751764,5
+90217144,24751764,3
+46781917,24751764,-1
+52142248,24751764,4
+124887489,24751764,3
+41263739,24751764,3
+119845422,24751764,4
+4605484,24751764,3
+130988431,24751764,4
+76861168,24751764,2
+74835284,24751764,3
+54215342,24751764,2
+64123749,24751764,3
+mi.even.live,24751764,4
+44061499,24751764,2
+46970893,24751764,4
+47367894,24751764,3
+122384431,24751764,3
+lucarolinelu,24751764,3
+44275592,24751764,3
+Faychang,24751764,3
+pilinono,24751764,3
+miaoyan,24751764,2
+sequel,24751764,3
+134532187,24751764,3
+46427715,24751764,3
+3549577,24751764,3
+54159008,24751764,5
+130132099,24751764,3
+50667944,24751764,3
+133758631,24751764,5
+67481922,24751764,3
+55310143,24751764,4
+46436075,24751764,4
+52464033,24751764,4
+foufou,24751764,3
+84235049,24751764,3
+68238165,24751764,2
+fifa10,24751764,3
+anthon,24751764,5
+47786775,24751764,3
+sherrygirl,24751764,4
+zhanghr,24751764,4
+40931837,24751764,3
+yekarey,24751764,3
+28202020,24751764,2
+57766346,24751764,3
+motou0328,24751764,2
+106663926,24751764,4
+63997678,24751764,3
+60963394,24751764,2
+65948183,24751764,3
+134562390,24751764,4
+kongchanzhimeng,24751764,3
+67740587,24751764,3
+56693883,24751764,4
+kayaliang,24751764,3
+72361227,24751764,3
+51126355,24751764,3
+135762628,24751764,4
+47413356,24751764,3
+53920626,24751764,3
+53920626,24751764,3
+33693061,24751764,1
+103026141,24751764,3
+lucifermi,24751764,3
+133094793,24751764,3
+73381574,24751764,3
+44494618,24751764,1
+122281583,24751764,4
+47151726,24751764,3
+84681267,24751764,1
+momoko11510,24751764,3
+75698770,24751764,3
+54041008,24751764,-1
+54721365,24751764,2
+49702943,24751764,3
+64872065,24751764,3
+devilnue,24751764,5
+59220835,24751764,4
+32111208,24751764,3
+87792526,24751764,2
+chonger,24751764,3
+40093986,24751764,4
+51008523,24751764,4
+vivienne1117,24751764,3
+norker,24751764,2
+4090922,24751764,3
+2330272,24751764,2
+1056656,24751764,3
+kloccd,24751764,3
+66519377,24751764,3
+4109036,24751764,4
+88355194,24751764,3
+justsay,24751764,2
+104310668,24751764,3
+62958649,24751764,3
+down_0,24751764,4
+sasky,24751764,3
+MayaDey,24751764,2
+79840484,24751764,5
+6537233,24751764,3
+DrinkD,24751764,3
+51860822,24751764,5
+43910063,24751764,3
+67125371,24751764,3
+46712687,24751764,1
+62945794,24751764,3
+mingwang,24751764,4
+4155347,24751764,3
+54415980,24751764,3
+35962191,24751764,3
+127598543,24751764,2
+Emperor1996107,24751764,2
+2600498,24751764,-1
+115547734,24751764,3
+64110948,24751764,3
+tongnixcv,24751764,2
+102705579,24751764,3
+44412475,24751764,2
+36630443,24751764,4
+qianmo86,24751764,3
+1876785,24751764,3
+wood0913,24751764,3
+102220097,24751764,3
+lonelysin,24751764,3
+64874710,24751764,4
+rainycats,24751764,3
+129164828,24751764,5
+77604144,24751764,-1
+79542238,24751764,4
+binglanxier,24751764,3
+41927716,24751764,4
+97293420,24751764,3
+77042003,24751764,2
+50590088,24751764,3
+82357316,24751764,3
+108636262,24751764,3
+39542881,24751764,3
+duoduoshuwu,24751764,-1
+creamo,24751764,2
+yuting,24751764,2
+yuting,24751764,2
+54209095,24751764,3
+131141632,24751764,2
+13293190,24751764,2
+61555779,24751764,3
+73909736,24751764,2
+53680946,24751764,2
+3214678,24751764,5
+52093119,24751764,5
+hu36,24751764,5
+4173732,24751764,3
+4364181,24751764,2
+59259544,24751764,2
+70588269,24751764,-1
+47081944,24751764,2
+4412176,24751764,2
+127688878,24751764,3
+51020341,24751764,3
+37166315,24751764,4
+60655749,24751764,3
+67425224,24751764,3
+17471764,24751764,-1
+miexiaoyang422,24751764,3
+vinciwang,24751764,3
+124640229,24751764,4
+cyygigig,24751764,3
+janice5680,24751764,3
+Juju.Fox,24751764,4
+annieaiannie,24751764,1
+119619987,24751764,3
+Nicccklee,24751764,3
+4618089,24751764,3
+49325422,24751764,3
+55321548,24751764,2
+127585242,24751764,3
+82483979,24751764,3
+60388728,24751764,3
+roseandwater,24751764,3
+91428973,24751764,3
+helianthus249,24751764,5
+29725427,24751764,3
+omg-_-,24751764,3
+Fedsay,24751764,3
+chinazhuoer,24751764,-1
+loveLizhenyu,24751764,3
+89382029,24751764,5
+3487458,24751764,5
+xiaoxintu,24751764,3
+aaaaaaaaaaa,24751764,2
+cudicini,24751764,3
+fenshoudashi,24751764,3
+43699111,24751764,2
+yoonjae_,24751764,3
+izumi999,24751764,4
+132076381,24751764,3
+beibeiyu,24751764,4
+37064545,24751764,2
+98605942,24751764,3
+kaixing123,24751764,3
+51480816,24751764,-1
+134738255,24751764,2
+44875082,24751764,-1
+dzone,24751764,2
+55939788,24751764,4
+33880591,24751764,2
+10582878,24751764,2
+angelclaudia,24751764,3
+2178430,24751764,3
+125878339,24751764,4
+89062167,24751764,3
+34507670,24751764,2
+3213840,24751764,2
+50212998,24751764,2
+1102153,24751764,2
+47226412,24751764,3
+2972260,24751764,4
+92129486,24751764,3
+desmodus,24751764,3
+ydyie,24751764,3
+4069534,24751764,4
+4069534,24751764,4
+pgydw,24751764,1
+89635048,24751764,1
+126980247,24751764,3
+vinjun,24751764,2
+3560661,24751764,3
+88099677,24751764,5
+q296579068,24751764,4
+Andrew.S,24751764,4
+41839384,24751764,3
+50226054,24751764,3
+vivienvb,24751764,3
+130496328,24751764,2
+80729816,24751764,2
+fenglao,24751764,3
+48467281,24751764,3
+68441395,24751764,4
+rockynira,24751764,4
+130956052,24751764,5
+50351028,24751764,2
+44006704,24751764,2
+chenlulu,24751764,2
+44661693,24751764,3
+lovejidi,24751764,3
+nvwu_sophia,24751764,2
+109169757,24751764,3
+93374803,24751764,3
+103420044,24751764,2
+1458725,24751764,3
+117149225,24751764,4
+onecloud,24751764,3
+48625025,24751764,2
+102662130,24751764,5
+62769189,24751764,2
+1011562,24751764,3
+1198621,24751764,3
+auvauva,24751764,1
+63927330,24751764,3
+100328938,24751764,2
+vivian855055,24751764,5
+133839811,24751764,3
+pinger87,24751764,3
+54727803,24751764,3
+Houngmeeya,24751764,3
+54945552,24751764,3
+qfy,24751764,3
+NEUN1975,24751764,3
+4415376,24751764,4
+133867857,24751764,5
+2730322,24751764,3
+2187951,24751764,2
+kingkongofkhan,24751764,3
+119495221,24751764,3
+84342168,24751764,3
+jokylovecr,24751764,1
+temps,24751764,3
+2135609,24751764,2
+43828485,24751764,3
+lhlqzhuge,24751764,2
+thisisdaisy,24751764,2
+socalledaeolus,24405378,4
+nanguat,24405378,-1
+78249968,24405378,4
+49455574,24405378,3
+52596376,24405378,4
+74033673,24405378,3
+71764287,24405378,4
+61261848,24405378,5
+53667782,24405378,4
+47616903,24405378,4
+46359448,24405378,5
+77702347,24405378,4
+60542765,24405378,5
+46924225,24405378,2
+8917967,24405378,4
+90546251,24405378,5
+66333721,24405378,4
+49040678,24405378,4
+136663776,24405378,5
+shane90,24405378,5
+Amour-Xerophyte,24405378,5
+129215683,24405378,2
+52939857,24405378,5
+134507096,24405378,4
+90763642,24405378,5
+69113925,24405378,5
+131380048,24405378,5
+126412740,24405378,3
+hazelchao,24405378,5
+137141140,24405378,3
+2260050,24405378,3
+62498869,24405378,4
+44725365,24405378,3
+10828318,24405378,4
+103247709,24405378,3
+91068373,24405378,4
+2482936,24405378,5
+krisleung,24405378,5
+80607312,24405378,5
+countcrows,24405378,3
+63971578,24405378,4
+51057847,24405378,5
+73925418,24405378,4
+47685950,24405378,4
+137898837,24405378,5
+60614735,24405378,5
+baiwuya,24405378,5
+HabourFront,24405378,5
+kidda,24405378,4
+64242774,24405378,5
+50516869,24405378,5
+51773894,24405378,4
+102069788,24405378,5
+136133409,24405378,5
+w-leaf,24405378,5
+pengzhou,24405378,5
+124596042,24405378,5
+127386249,24405378,3
+g_success,24405378,4
+90983705,24405378,5
+90983705,24405378,5
+2592170,24405378,5
+113088428,24405378,3
+xunqian2222,24405378,4
+65897088,24405378,5
+50433409,24405378,4
+121129598,24405378,5
+134913642,24405378,5
+67209781,24405378,5
+shanyu2015,24405378,4
+30779391,24405378,4
+69857353,24405378,4
+55392716,24405378,5
+62079429,24405378,5
+84937702,24405378,5
+heydon13,24405378,5
+108860224,24405378,5
+2760210,24405378,5
+4470190,24405378,4
+101978260,24405378,5
+yt403,24405378,5
+56125198,24405378,5
+sunsun0222,24405378,5
+2210223,24405378,4
+131233204,24405378,3
+104462145,24405378,-1
+49334857,24405378,4
+loafingnick,24405378,3
+edwardzhou,24405378,4
+L-6206,24405378,3
+35986570,24405378,5
+132252532,24405378,5
+aprilwhu,24405378,4
+62667107,24405378,4
+61527474,24405378,5
+102400331,24405378,5
+110519343,24405378,4
+2333505,24405378,5
+135970181,24405378,5
+125175368,24405378,4
+134000915,24405378,5
+39360207,24405378,4
+62352557,24405378,5
+34010148,24405378,5
+4172986,24405378,4
+60845528,24405378,4
+103381846,24405378,5
+3740351,24405378,5
+28104351,24405378,5
+superlawind,24405378,3
+MRMavis,24405378,2
+85359126,24405378,5
+121414792,24405378,5
+48847970,24405378,5
+137541196,24405378,4
+55717894,24405378,4
+91713449,24405378,4
+1388185,24405378,5
+65137092,24405378,4
+sooooosweet,24405378,4
+45580337,24405378,4
+yichu1222,24405378,5
+58136729,24405378,4
+55421906,24405378,3
+56519940,24405378,5
+58650972,24405378,5
+81870070,24405378,5
+64248782,24405378,4
+61085061,24405378,3
+xixistone,24405378,3
+wuyunoy,24405378,4
+102778571,24405378,4
+134399469,24405378,4
+3582364,24405378,3
+83743539,24405378,4
+130426138,24405378,5
+134525766,24405378,4
+134256964,24405378,4
+82643605,24405378,3
+jin_yu,24405378,5
+sanrio1992,24405378,4
+xiaosummer,24405378,5
+lelexiaomifeng,24405378,5
+ttoohh,24405378,5
+35087242,24405378,3
+3719246,24405378,4
+58762831,24405378,4
+1191648,24405378,2
+errrlilly,24405378,4
+136947773,24405378,4
+48484446,24405378,5
+myl1fe,24405378,3
+konnomakoto,24405378,4
+99710074,24405378,4
+fanclrice,24405378,3
+menyingqi,24405378,5
+3341865,24405378,4
+119489543,24405378,4
+aguanwansui,24405378,5
+25694661,24405378,4
+21338461,3592854,4
+socalledaeolus,3592854,5
+BluePudge,3592854,5
+43059614,3592854,4
+on1yys,3592854,2
+35499398,3592854,3
+readonlyfile,3592854,5
+57401579,3592854,5
+54129779,3592854,4
+javaor,3592854,5
+119731928,3592854,4
+103032395,3592854,3
+52147875,3592854,4
+90161175,3592854,4
+131913208,3592854,4
+Ashez,3592854,5
+cuiqing1989,3592854,5
+136663776,3592854,3
+caroline107,3592854,5
+3723513,3592854,4
+64300426,3592854,4
+73530411,3592854,3
+49879733,3592854,5
+sinan,3592854,3
+woshimasi,3592854,5
+kunkunxiansheng,3592854,4
+71702160,3592854,3
+65260404,3592854,5
+lhpwjj,3592854,5
+4313043,3592854,5
+jtothen,3592854,5
+keven_COTC,3592854,4
+131752746,3592854,5
+eefee,3592854,3
+bloodcore,3592854,5
+4657884,3592854,4
+132460751,3592854,5
+60177945,3592854,5
+1077635,3592854,-1
+lmoung,3592854,4
+2224595,3592854,-1
+4610304,3592854,5
+127225715,3592854,3
+137141140,3592854,4
+54272849,3592854,4
+hejuefei,3592854,3
+61149122,3592854,2
+jimuwawa,3592854,3
+80140628,3592854,4
+59038856,3592854,4
+lostinyou123,3592854,4
+63744273,3592854,5
+87956787,3592854,3
+shirley863,3592854,5
+alwaysraining,3592854,4
+64335429,3592854,4
+moushenglingyu,3592854,3
+elf_09,3592854,5
+137898837,3592854,5
+pandawitnU,3592854,3
+121389412,3592854,4
+1751335,3592854,4
+54983933,3592854,3
+57258853,3592854,4
+45150324,3592854,3
+ting_1987,3592854,5
+42210937,3592854,4
+zhangyangdouban,3592854,5
+115143793,3592854,4
+xiangkaiad,3592854,5
+90983705,3592854,5
+2592170,3592854,5
+furada,3592854,5
+131254424,3592854,3
+byeprincess,3592854,3
+137555231,3592854,2
+67209781,3592854,3
+3943144,3592854,4
+48206747,3592854,5
+sevenplus,3592854,5
+136523942,3592854,5
+69805658,3592854,4
+tony.tao,3592854,5
+96428900,3592854,5
+buttblur,3592854,5
+4774837,3592854,5
+101978260,3592854,5
+119105590,3592854,5
+wzdqq,3592854,4
+127313933,3592854,5
+PEIzhong,3592854,4
+122705630,3592854,2
+iammonna,3592854,4
+3244009,3592854,4
+3890315,3592854,4
+104462145,3592854,-1
+sijizhp,3592854,4
+68094109,3592854,4
+63633595,3592854,4
+loafingnick,3592854,5
+lampin,3592854,4
+yao-monster,3592854,4
+50932552,3592854,4
+105019332,3592854,3
+ulysseus-2,3592854,4
+2597465,3592854,4
+sachi227,3592854,4
+52811363,3592854,5
+47935255,3592854,4
+nekonia,3592854,5
+Amulet_Gu,3592854,4
+jiangxv7,3592854,5
+136095129,3592854,4
+69776901,3592854,4
+psynonder,3592854,4
+121362164,3592854,3
+YummiG.,3592854,3
+34010148,3592854,4
+6270415,3592854,4
+2449818,3592854,3
+shengshengqqpp,3592854,4
+76623488,3592854,4
+4412861,3592854,5
+44096316,3592854,5
+50376597,3592854,4
+Daruke,3592854,4
+43130115,3592854,5
+i80hou,3592854,5
+61868440,3592854,5
+cairongjia,3592854,5
+lmxiaojian,3592854,5
+jilltomato,3592854,5
+137541196,3592854,2
+63347675,3592854,4
+133522204,3592854,3
+91713449,3592854,5
+24936156,3592854,4
+137350189,3592854,4
+1388185,3592854,5
+50921483,3592854,5
+4204545,3592854,5
+50992070,3592854,4
+120632957,3592854,4
+49229485,3592854,4
+51499922,3592854,5
+48689530,3592854,5
+61045255,3592854,4
+53777590,3592854,5
+aiwosuoai55,3592854,5
+61951829,3592854,4
+67266475,3592854,5
+64816700,3592854,4
+61085061,3592854,4
+127161571,3592854,4
+85135780,3592854,4
+xixistone,3592854,5
+maiya95,3592854,4
+71217329,3592854,4
+wuyunoy,3592854,5
+4582130,3592854,5
+83743539,3592854,4
+80290185,3592854,4
+57054699,3592854,4
+43290072,3592854,5
+53275472,3592854,3
+4470190,3592854,3
+12528508,3592854,4
+62080615,3592854,5
+errrlilly,3592854,4
+1608362,3592854,4
+52317818,3592854,5
+137580781,3592854,4
+1668414,3592854,4
+arrowkey,3592854,4
+69414833,3592854,5
+ankenlee,3592854,5
+123073450,3592854,5
+fanclrice,3592854,3
+4906424,3592854,5
+32536351,3592854,4
+127131340,3592854,3
+oounpan,3592854,5
+49396445,3592854,3
+jelly89124,3592854,4
+131208902,3592854,4
+67609353,3592854,5
+mougeyutian,3592854,5
+122932689,3592854,4
+3591515,3592854,4
+53998992,3592854,5
+luxe,3592854,5
+amberaway,3592854,5
+houyuankai,3592854,4
+sssssstutter,3592854,4
+80353107,3592854,2
+53316539,3592854,5
+4590914,3592854,3
+41441007,3592854,5
+62236355,3592854,4
+133483951,3592854,5
+130397104,3592854,5
+76858812,3592854,4
+134793150,3592854,2
+25597206,3592854,4
+4411863,3592854,5
+67803392,3592854,4
+65181695,3592854,3
+82243523,3592854,5
+99853652,3592854,5
+doremicowcow,3592854,5
+futurebaymax,3592854,5
+79349178,3592854,5
+38310528,3592854,2
+117007812,3592854,5
+136133409,3592854,5
+nimenime,3592854,5
+taibeike,3592854,5
+corina0717,3592854,3
+135937998,3592854,2
+124529831,3592854,5
+69420876,3592854,5
+88863939,3592854,5
+62553340,3592854,3
+3852702,3592854,5
+44011714,3592854,4
+47595964,3592854,4
+48191805,3592854,3
+ivylan,3592854,3
+79087170,3592854,4
+PasS__bY,3592854,5
+118899954,3592854,5
+1075678,3592854,4
+3467164,3592854,4
+64852339,3592854,4
+44232292,3592854,5
+136486316,3592854,5
+129670010,3592854,5
+1520223,3592854,5
+36499688,3592854,4
+28509267,3592854,5
+120018713,3592854,5
+3854446,3592854,4
+90985192,3592854,5
+53323494,3592854,4
+125102922,3592854,5
+81417004,3592854,3
+76964275,3592854,-1
+53890570,3592854,4
+72870072,3592854,5
+seventhworkshop,3592854,4
+Corleone89,3592854,5
+50925149,3592854,4
+Pinnsvin,3592854,4
+55821264,3592854,5
+91488797,3592854,5
+janejanechan,3592854,4
+99119028,3592854,-1
+2543390,3592854,4
+86922703,3592854,4
+120975732,3592854,3
+badmal,3592854,5
+66556064,3592854,4
+kiwikiwifruit,3592854,4
+70273921,3592854,4
+lsbreeze,3592854,4
+94816242,3592854,5
+zhuyaoyao,3592854,3
+1272067,3592854,3
+lanhouzi,3592854,3
+raffale,3592854,5
+126944723,3592854,3
+mickjoust,3592854,5
+gulukaowen,3592854,5
+74601834,3592854,5
+2946036,3592854,5
+88731900,3592854,5
+shuaishuaia,3592854,3
+2708666,3592854,5
+60970032,3592854,2
+103247709,3592854,3
+82088870,3592854,5
+61420594,3592854,5
+79400267,3592854,5
+yctouch,3592854,4
+78667352,3592854,5
+113752134,3592854,4
+1942681,3592854,4
+89892294,3592854,4
+76047428,3592854,4
+isnico,3592854,4
+92838568,3592854,5
+geminehoo,3592854,3
+1712187,3592854,5
+bmrlb,3592854,5
+4500361,3592854,1
+woaijing7,3592854,3
+32008707,3592854,3
+jin_yu,3592854,5
+56125198,3592854,4
+133533083,3592854,3
+133533083,3592854,3
+137138614,3592854,5
+zhangshmo,3592854,5
+1515187,3592854,4
+30074350,3592854,4
+ViviaChen,3592854,4
+91268300,3592854,3
+66332693,3592854,5
+125675802,3592854,5
+115560708,3592854,4
+64203842,3592854,5
+39890190,3592854,4
+119247583,3592854,4
+one-spitle,3592854,3
+31788712,3592854,4
+49760036,3592854,5
+84263388,3592854,5
+43061716,3592854,3
+qingzai,3592854,5
+cindy5134,3592854,5
+cindy5134,3592854,5
+adi,3592854,3
+3314831,3592854,5
+131187465,3592854,4
+kalviny,3592854,4
+93484113,3592854,3
+69753886,3592854,4
+51206699,3592854,4
+quriola,3592854,4
+126706264,3592854,3
+62414047,3592854,4
+60119754,3592854,4
+53052178,3592854,4
+by-rain,3592854,5
+asswecan,3592854,2
+67479654,3592854,4
+3475708,3592854,5
+eunicexu,3592854,5
+98014856,3592854,3
+45528332,3592854,5
+62917977,3592854,5
+madgirldoris,3592854,4
+robin90,3592854,3
+48973247,3592854,5
+66620851,3592854,5
+51417733,3592854,4
+63418813,3592854,4
+Time4meal,3592854,4
+68286241,3592854,5
+46605450,3592854,5
+75727476,3592854,4
+114321835,3592854,5
+43298120,3592854,4
+45355348,3592854,3
+55286128,3592854,-1
+31817174,3592854,5
+3021351,3592854,5
+130078321,3592854,1
+32383822,3592854,4
+39944237,3592854,5
+33150323,3592854,5
+KIRINZAN,3592854,5
+73997999,3592854,4
+kiiwii,3592854,5
+128867670,3592854,5
+elastico,3592854,5
+98857291,3592854,3
+tankzhang007,3592854,4
+4587143,3592854,5
+77050173,3592854,4
+43602056,3592854,5
+shouyuanwai,3592854,5
+131166222,3592854,5
+yfxiang,3592854,4
+137671530,3592854,2
+echo_jingjing,3592854,5
+slippercc,3592854,4
+46164914,3592854,5
+54044288,3592854,3
+gunjoubiyori,3592854,4
+91371841,3592854,5
+83112957,3592854,5
+88535863,3592854,4
+X-fei,3592854,5
+137640498,3592854,5
+70030353,3592854,-1
+60662901,3592854,4
+6642488,3592854,5
+70972968,3592854,2
+58456907,3592854,4
+jayscorpio,3592854,3
+92318310,3592854,4
+cenyan_74,3592854,3
+47894136,3592854,2
+129106127,3592854,3
+59757081,3592854,5
+44552200,3592854,3
+52187160,3592854,5
+46882450,3592854,5
+131979732,3592854,5
+lele4027,3592854,3
+3605341,3592854,4
+vcihp,3592854,3
+83769444,3592854,5
+65045419,3592854,5
+135794187,3592854,3
+82872387,3592854,3
+76635599,3592854,3
+3923245,3592854,5
+63403641,3592854,5
+4737971,3592854,4
+52398058,3592854,5
+136942011,3592854,2
+84710876,3592854,4
+3803973,3592854,5
+1461619,3592854,4
+Jason_kiss,3592854,5
+76725764,3592854,5
+girlsinging,3592854,4
+66543333,3592854,4
+2296984,3592854,2
+candy_law,3592854,1
+4200804,3592854,4
+1583477,3592854,4
+27933062,3592854,4
+liarb,3592854,4
+kiethope,3592854,5
+clearhappy7,3592854,5
+ice-Zhou,3592854,-1
+hrhy1976,3592854,5
+3765207,3592854,4
+94299562,3592854,3
+asshole1987,3592854,4
+135302519,3592854,3
+10277954,3592854,4
+81685996,3592854,4
+64713560,3592854,3
+98956225,3592854,3
+41746669,3592854,3
+lopstin,3592854,3
+76428013,3592854,4
+2423100,3592854,4
+2652338,3592854,4
+49885324,3592854,5
+51836053,3592854,5
+114179686,3592854,4
+133854839,3592854,5
+h1805331722,3592854,5
+49977139,3592854,4
+being,3592854,3
+48907408,3592854,5
+43083123,3592854,3
+65367917,3592854,2
+68730794,3592854,4
+79532758,3592854,4
+55494665,3592854,5
+46724815,3592854,3
+58602175,3592854,5
+2262505,3592854,5
+lt-2988,3592854,3
+64751584,3592854,4
+59367397,3592854,4
+1653421,3592854,2
+keithw,3592854,3
+52969609,3592854,-1
+58048467,3592854,5
+11658942,3592854,4
+WildMeteor,3592854,3
+52636646,3592854,5
+55815059,3592854,5
+54546849,3592854,5
+132328783,3592854,5
+46168874,3592854,5
+hyperhypo,3592854,3
+71070026,3592854,5
+yaya25,3592854,4
+63142024,3592854,4
+70024677,3592854,4
+46467695,3592854,5
+36304941,3592854,5
+56147728,3592854,4
+1943661,3592854,5
+hupple,3592854,5
+55835825,3592854,5
+136150464,3592854,4
+adisonw,3592854,1
+74766860,3592854,5
+75532370,3592854,4
+44109040,3592854,5
+134407811,3592854,5
+52012798,3592854,5
+4486102,3592854,3
+62315188,3592854,1
+130304436,3592854,5
+1223733,3592854,4
+58596015,3592854,4
+bougainvillea,3592854,-1
+2703314,3592854,4
+2295894,3592854,4
+82264890,3592854,3
+66919507,3592854,4
+127457458,3592854,3
+137129598,3592854,4
+66817705,3592854,5
+49979829,3592854,3
+athulla,3592854,4
+wusiyunfeng,3592854,4
+82075343,3592854,4
+122192387,3592854,5
+65635790,3592854,5
+seasonkiddo,3592854,3
+57001880,3592854,4
+2427747,3592854,5
+69255956,3592854,5
+2626046,3592854,5
+Alice915,3592854,5
+goontatata,3592854,-1
+3390494,3592854,5
+gooxx,3592854,5
+1851702,3592854,5
+48653168,3592854,3
+jaward,3592854,4
+3239093,3592854,5
+61021408,3592854,5
+liangerle,3592854,4
+43982125,3592854,5
+72596766,3592854,4
+44134959,3592854,5
+49252599,3592854,5
+wangxc90721,3592854,4
+58004418,3592854,5
+66045294,3592854,5
+116271293,3592854,5
+120652679,3592854,3
+88658178,3592854,5
+Doctory,3592854,4
+2106428,3592854,5
+84632476,3592854,5
+56933647,3592854,5
+Drottningholms,3592854,4
+46068341,3592854,4
+73319989,3592854,5
+75961277,3592854,4
+87559278,3592854,4
+127675582,3592854,5
+3391373,3592854,5
+79145213,3592854,4
+syyofficer,3592854,5
+126959230,3592854,2
+87298117,3592854,5
+62843075,3592854,4
+58857663,3592854,5
+47037959,3592854,4
+83994709,3592854,5
+eumenes,3592854,4
+69291950,3592854,5
+48388719,3592854,5
+gangkuili,3592854,2
+Silencege,3592854,4
+77646030,3592854,5
+kunp,3592854,3
+50222808,3592854,3
+ChocoRum,3592854,5
+136929136,3592854,5
+41559583,3592854,5
+zo3c,3592854,4
+65563696,3592854,5
+42213473,3592854,3
+69372552,3592854,4
+58179366,3592854,5
+136404582,3592854,4
+26202856,3592854,5
+49469225,3592854,5
+1427744,3592854,4
+70007681,3592854,5
+68655104,3592854,5
+tracywu0326,3592854,4
+71814035,3592854,5
+77317619,3592854,4
+70996426,3592854,4
+70996426,3592854,4
+31922968,3592854,4
+sallow,3592854,5
+3817447,3592854,3
+101334259,3592854,-1
+taxidriver1976,3592854,5
+namedemperor,3592854,2
+137122181,3592854,-1
+15587013,3592854,5
+Amanda-Z,3592854,5
+83082382,3592854,5
+135207841,3592854,4
+61606160,3592854,5
+137206904,3592854,4
+91296160,3592854,5
+69649993,3592854,4
+76998089,3592854,1
+124548457,3592854,5
+131020888,3592854,2
+U__happiness,3592854,4
+longmao_83,3592854,5
+66484066,3592854,3
+71328162,3592854,2
+76295495,3592854,3
+yonita_yang,3592854,5
+Bran,3592854,5
+131909298,3592854,2
+84596331,3592854,3
+122944258,3592854,4
+80758621,3592854,4
+liuzisen,3592854,5
+69095785,3592854,4
+39648072,3592854,5
+PATCHPAN,3592854,3
+62859629,3592854,5
+123112465,3592854,3
+79675751,3592854,4
+57411563,3592854,5
+43274381,3592854,3
+47734584,3592854,5
+71191709,3592854,2
+windson120,3592854,5
+101827918,3592854,5
+59545635,3592854,5
+123630666,3592854,5
+menethil,3592854,5
+66147865,3592854,3
+119343632,3592854,5
+76187986,3592854,5
+63227671,3592854,4
+pmq0806,3592854,5
+xianxiansushou,3592854,4
+mijibaby,3592854,4
+anteruna,3592854,3
+60923783,3592854,-1
+astrogirl1028,3592854,5
+135709850,3592854,4
+131987227,3592854,5
+3142312,3592854,5
+4561197,3592854,-1
+63744362,3592854,5
+134258996,3592854,5
+137058479,3592854,3
+46003260,3592854,5
+Momo-at1615,3592854,3
+130563496,3592854,5
+61296926,3592854,5
+137058497,3592854,3
+50706220,3592854,5
+61024723,3592854,2
+123404476,3592854,2
+72381227,3592854,3
+70746284,3592854,5
+pandejian250,3592854,4
+48090771,3592854,4
+33981553,3592854,3
+130441658,3592854,4
+wangxiaomiao,3592854,3
+visita,3592854,5
+1105862,3592854,4
+4118910,3592854,4
+131025711,3592854,4
+lee.ann,3592854,4
+122025364,3592854,4
+3865776,3592854,5
+3918507,3592854,5
+108198970,3592854,5
+4816652,3592854,5
+77648930,3592854,5
+134417369,3592854,5
+evich,3592854,4
+51035360,3592854,-1
+68630108,3592854,3
+137076197,3592854,4
+o201308220028,3592854,-1
+52634231,3592854,5
+137073841,3592854,4
+46017359,3592854,5
+tengjinshu,3592854,4
+53404103,3592854,5
+37697520,3592854,-1
+phinn,3592854,5
+littlezita,3592854,3
+122871112,3592854,5
+131064812,3592854,5
+45177549,3592854,5
+82305042,3592854,5
+waterloozy,3592854,5
+137070324,3592854,5
+60440382,3592854,4
+123370298,3592854,3
+revaoo,3592854,4
+63176364,3592854,5
+2657253,3592854,5
+67641076,3592854,4
+6646673,3592854,5
+129633404,3592854,5
+g_success,3592854,5
+berserker,3592854,3
+135779480,3592854,4
+135779480,3592854,4
+48093431,3592854,5
+129577798,3592854,-1
+quebanmei,3592854,5
+3003736,3592854,5
+y19940504,3592854,5
+51688901,3592854,5
+70531525,3592854,-1
+1689067,3592854,5
+102938445,3592854,4
+68190120,3592854,4
+115611401,3592854,5
+Ghost.Melody,3592854,5
+122868077,3592854,5
+135888657,3592854,5
+133065964,3592854,5
+85423911,3592854,5
+61310551,3592854,5
+lyraann,3592854,2
+120563119,3592854,4
+63985739,3592854,5
+64881520,3592854,5
+lizardxy,3592854,4
+69323349,3592854,5
+78634802,3592854,3
+136818882,3592854,5
+4113112,3592854,5
+136409582,3592854,5
+1724293,3592854,5
+Ujara,3592854,4
+4668252,3592854,5
+123092442,3592854,3
+80409026,3592854,5
+45025869,3592854,2
+1976568,3592854,5
+arruleo,3592854,5
+rena0115,3592854,4
+renyuan46,3592854,4
+48646659,3592854,4
+124076510,3592854,4
+yoyotong,3592854,5
+Simply08,3592854,5
+75915241,3592854,4
+45846589,3592854,3
+49135437,3592854,5
+58981620,3592854,5
+mmissfreak,3592854,4
+leoleodouban,3592854,5
+73706352,3592854,4
+134026402,3592854,3
+acouchpotato,3592854,5
+130184512,3592854,5
+44129385,3592854,5
+106292310,3592854,5
+Huxinghang510,3592854,5
+Riverwatcher,3592854,3
+daisyhyj,3592854,4
+66304294,3592854,4
+ameko5053,3592854,4
+47792951,3592854,5
+47792951,3592854,5
+77001369,3592854,5
+127524766,3592854,5
+33707224,3592854,4
+74662933,3592854,5
+2787344,3592854,3
+41167494,3592854,5
+104167946,3592854,4
+59226823,3592854,5
+69458682,3592854,4
+91117590,3592854,5
+120992631,3592854,1
+62608961,3592854,5
+54453173,3592854,5
+3456645,3592854,5
+56873909,3592854,4
+hanalyy,3592854,4
+90543489,3592854,4
+6839823,3592854,4
+132324063,3592854,5
+54481663,3592854,4
+50939073,3592854,4
+hekahuiqu,3592854,3
+silverlee,3592854,-1
+wch2020,3592854,3
+1099721,3592854,4
+60385357,3592854,3
+fuloli,3592854,3
+forlulu,3592854,4
+81693071,3592854,5
+1260390,3592854,3
+72405316,3592854,3
+lei7891,3592854,4
+justdust,3592854,2
+60650660,3592854,3
+liaofei,3592854,5
+57587177,3592854,5
+120233886,3592854,4
+4158579,3592854,4
+monkeydshinki,3592854,5
+41717444,3592854,5
+spicysummer,3592854,4
+119702744,3592854,4
+yoyodesmile,3592854,4
+128902296,3592854,5
+136591988,3592854,3
+84932574,3592854,4
+vincen1208,3592854,3
+58277912,3592854,3
+61145820,3592854,5
+52829342,3592854,5
+73037354,3592854,5
+120556473,3592854,5
+83391483,3592854,4
+38170514,3592854,4
+solokimi,3592854,5
+2999319,3592854,4
+124944516,3592854,5
+1122936,3592854,5
+55457108,3592854,4
+candyberg,3592854,2
+78583872,3592854,2
+71143587,3592854,5
+128063403,3592854,4
+95212775,3592854,4
+121318701,3592854,4
+59348702,3592854,5
+41833593,3592854,5
+136837238,3592854,5
+2038340,3592854,4
+JohnnyJiong,3592854,5
+66633074,3592854,5
+133159113,3592854,5
+106154963,3592854,3
+129577459,3592854,3
+chris027,3592854,1
+124285330,3592854,5
+107835849,3592854,4
+120792651,3592854,4
+119484436,3592854,4
+66388171,3592854,4
+yixiaoyan_,3592854,5
+Immafrady,3592854,5
+134981076,3592854,5
+1220412,3592854,4
+92203860,3592854,2
+135687100,3592854,3
+51187736,3592854,5
+istrings,3592854,4
+2977227,3592854,3
+53718083,3592854,5
+136797650,3592854,3
+119249396,3592854,3
+134527565,3592854,4
+113560444,3592854,3
+1285158,3592854,5
+71266039,3592854,5
+61294202,3592854,5
+tutudance,3592854,4
+fafnir5251,3592854,5
+124640229,3592854,5
+imoviemaker,3592854,4
+82516584,3592854,5
+thexxcat,3592854,4
+99104494,3592854,5
+Wrenallen,3592854,4
+63886728,3592854,4
+54074211,3592854,3
+mengnamuwolegeq,3592854,5
+50585223,3592854,4
+52523730,3592854,5
+68578532,3592854,5
+131535153,3592854,4
+64825748,3592854,4
+67616315,3592854,5
+spiritvision,3592854,4
+4380901,3592854,4
+70111134,3592854,-1
+3439248,3592854,4
+81251411,3592854,3
+59714517,3592854,4
+54350913,3592854,4
+2788446,3592854,4
+50024064,3592854,4
+91069316,3592854,5
+45681861,3592854,4
+heroan,3592854,4
+55950775,3592854,4
+croove,3592854,5
+alyssadu,3592854,4
+xianyu719,3592854,5
+hellovito,3592854,5
+136736172,3592854,5
+38494359,3592854,-1
+54076009,3592854,-1
+132700431,3592854,4
+joe0317,3592854,4
+3137688,3592854,4
+50935414,3592854,1
+rabbit_forest,3592854,1
+rabbit_forest,3592854,1
+48988746,3592854,5
+85035991,3592854,5
+maomaoshell,3592854,5
+yangruozheng,3592854,5
+48694579,3592854,-1
+134511914,3592854,2
+62699217,3592854,4
+1250982,3592854,3
+yvoria,3592854,3
+RabitAmen,3592854,5
+yoyo5411,3592854,5
+91333149,3592854,4
+87756018,3592854,5
+we_are_Smug,3592854,5
+79445761,3592854,5
+63411382,3592854,4
+87578866,3592854,4
+136693733,3592854,2
+57848317,3592854,5
+52851525,3592854,5
+50941682,3592854,5
+74883045,3592854,4
+50242405,3592854,5
+2463889,3592854,5
+41363805,3592854,1
+41247402,3592854,5
+3012688,3592854,5
+39771066,3592854,4
+2437069,3592854,4
+3642691,3592854,4
+27515686,3592854,3
+128165523,3592854,5
+58115368,3592854,5
+50300777,3592854,5
+3629598,3592854,4
+andrpirl,3592854,5
+59929388,3592854,4
+42859437,3592854,5
+2328333,3592854,3
+53347373,3592854,5
+35754265,3592854,-1
+Corrinne,3592854,5
+120889281,3592854,5
+duoduo0410,3592854,4
+49367011,3592854,3
+136653803,3592854,4
+3655220,3592854,5
+erbility,3592854,3
+80466104,3592854,5
+125003275,3592854,4
+48213873,3592854,5
+82304724,3592854,5
+59197305,3592854,4
+119871607,3592854,5
+136594390,3592854,3
+rainwatcher,3592854,4
+4423376,3592854,5
+130049487,3592854,5
+76193646,3592854,4
+87704099,3592854,-1
+85768877,3592854,5
+starry88,3592854,5
+79739756,3592854,5
+31316457,3592854,5
+102437430,3592854,3
+22562500,3592854,5
+2954995,3592854,5
+37026248,3592854,3
+136460394,3592854,4
+Musgo,3592854,5
+1782489,3592854,5
+hanlisen,3592854,5
+daangel,3592854,5
+2820068,3592854,5
+68193326,3592854,2
+My_Little_World,3592854,4
+LWamo,3592854,5
+122980156,3592854,4
+28392711,3592854,5
+74471598,3592854,5
+134574897,3592854,4
+64037870,3592854,5
+49308867,3592854,4
+57577352,3592854,5
+119426305,3592854,4
+54512951,3592854,4
+yamaaibani,3592854,4
+atlaswang,3592854,5
+48377628,3592854,2
+mario6688,3592854,5
+126140067,3592854,5
+baiyuanbao,3592854,4
+134269871,3592854,5
+20170135,3592854,5
+68564015,3592854,5
+98543997,3592854,5
+64728959,3592854,3
+74589582,3592854,5
+wangxiaowei,3592854,4
+sibylwang,3592854,5
+60892465,3592854,4
+135882446,3592854,5
+Zizou_Vam,3592854,5
+47745204,3592854,3
+1625807,3592854,4
+billkaulitz89,3592854,3
+1366592,3592854,5
+59390060,3592854,4
+xlei130,3592854,1
+9549001,3592854,4
+31613621,3592854,4
+shiker,3592854,1
+116738796,3592854,1
+51728436,3592854,5
+109445265,3592854,5
+81480517,3592854,4
+60862220,3592854,3
+45784770,3592854,5
+4070623,3592854,3
+49787420,3592854,3
+33619574,3592854,4
+4590334,3592854,5
+33817743,3592854,-1
+56580275,3592854,5
+37380657,3592854,2
+131901854,3592854,3
+53980581,3592854,5
+imjoyang,3592854,5
+132341755,3592854,4
+63391208,3592854,4
+71429906,3592854,5
+hauy,3592854,4
+132021080,3592854,5
+28944657,3592854,1
+coryzh,3592854,3
+Jessica_Nangong,3592854,3
+62874039,3592854,5
+a83848400,3592854,3
+1319405,3592854,4
+zm08996,3592854,2
+7510013,3592854,4
+62633913,3592854,4
+soul21g,3592854,5
+muz,3592854,3
+5894610,3592854,3
+3772715,3592854,4
+73222054,3592854,4
+71993909,3592854,2
+evertoooo,3592854,5
+73040867,3592854,5
+94033941,3592854,3
+49351576,3592854,4
+57032941,3592854,5
+73552244,3592854,5
+136454222,3592854,5
+lotusworld,3592854,3
+81222178,3592854,4
+59397449,3592854,3
+98480325,3592854,4
+136010030,3592854,4
+42346736,3592854,2
+hushaohan,3592854,4
+33357810,3592854,4
+105436862,3592854,4
+44160866,3592854,5
+134584881,3592854,5
+131925695,3592854,5
+78582029,3592854,5
+3424126,3592854,4
+lipiaopiao,3592854,5
+51561268,3592854,4
+wantu,3592854,5
+136421859,3592854,5
+121146638,3592854,4
+kenheart_ccxuan,3592854,2
+BenGlen,3592854,3
+MCzjy,3592854,3
+121920760,3592854,3
+cat23love,3592854,5
+keviton,3592854,4
+105530942,3592854,5
+92721405,3592854,4
+55643221,3592854,4
+yny23,3592854,4
+1142853,3592854,3
+130540529,3592854,4
+119739519,3592854,5
+129979276,3592854,4
+v3a10i,3592854,5
+81247992,3592854,3
+1575087,3592854,4
+36939317,3592854,3
+fastkill,3592854,4
+135703346,3592854,5
+69152346,3592854,4
+135416417,3592854,3
+85008065,3592854,4
+63317727,3592854,3
+63170647,3592854,5
+44057273,3592854,4
+50235107,3592854,5
+128248701,3592854,4
+loveyouwuwang,3592854,5
+43625639,3592854,4
+49159853,3592854,4
+87082148,3592854,4
+56752723,3592854,4
+130610060,3592854,5
+Chiunotfortoday,3592854,4
+93486979,3592854,3
+134417330,3592854,5
+52063890,3592854,5
+50394173,3592854,4
+50972547,3592854,4
+Kios,3592854,4
+BryanZ,3592854,2
+54669063,3592854,5
+67531205,3592854,4
+neclogueyang,3592854,5
+133713933,3592854,4
+48071372,3592854,3
+bikibiki,3592854,4
+guey4,3592854,5
+acomplexman,3592854,2
+96146816,3592854,4
+nanmon,3592854,4
+34966723,3592854,3
+60822788,3592854,4
+129224814,3592854,3
+princess921129,3592854,4
+72230656,3592854,4
+iamzhanggui,3592854,5
+1480836,3592854,-1
+xixiwai,3592854,5
+1319464,3592854,3
+magehot,3592854,5
+59237676,3592854,4
+115138237,3592854,4
+timerseer,3592854,-1
+ImpossibleII,3592854,5
+Artystayshungry,3592854,4
+70470821,3592854,4
+seattle_on,3592854,5
+71093640,3592854,4
+62422201,3592854,5
+jeskovampire,3592854,5
+XTian0806,3592854,3
+samy0868,3592854,4
+corbelle,3592854,4
+sunyangchina,3592854,2
+56730835,3592854,5
+1454087,3592854,5
+91277792,3592854,5
+67153884,3592854,5
+44284522,3592854,4
+131465151,3592854,5
+135185270,3592854,4
+vicyao,3592854,3
+79236287,3592854,4
+62930321,3592854,4
+49531398,3592854,3
+47630086,3592854,-1
+48269477,3592854,5
+97308887,3592854,4
+ccw051746,3592854,4
+summertime727,3592854,-1
+vseca,3592854,5
+81061741,3592854,3
+46865330,3592854,5
+42252873,3592854,4
+chara4,3592854,4
+laputaw,3592854,3
+chanelKing,3592854,5
+qijiuzhiyue,3592854,4
+83881122,3592854,4
+3612146,3592854,-1
+minamihayashi,3592854,4
+134189178,3592854,4
+50351476,3592854,5
+50167115,3592854,5
+1989077,3592854,4
+12913964,3592854,5
+103492790,3592854,5
+2364299,3592854,5
+73354968,3592854,4
+liuzhenhuadedou,3592854,4
+zhizilu,3592854,5
+66152773,3592854,5
+cbeam,3592854,3
+WildandWarm,3592854,-1
+135756688,3592854,5
+65084443,3592854,4
+apple4520,3592854,5
+48720584,3592854,5
+87127743,3592854,4
+79515371,3592854,5
+SaxaTamija,3592854,4
+pengyuwa,3592854,4
+KInCwen,3592854,4
+69989183,3592854,5
+alonebeauty,3592854,3
+50541233,3592854,4
+vipdayu,3592854,5
+shanshanshanqin,3592854,4
+dobbie1516,3592854,5
+kingtin,3592854,3
+64280895,3592854,5
+beryl_dai,3592854,4
+102977717,3592854,4
+48806335,3592854,5
+120099108,3592854,5
+93147817,3592854,5
+cappuccino-jl,3592854,3
+48619599,3592854,1
+llefan,3592854,3
+74940071,3592854,5
+5467957,3592854,5
+135324547,3592854,4
+44596229,3592854,4
+kawazoeyang,3592854,5
+54092067,3592854,5
+124847125,3592854,2
+peoplelovexxx,3592854,5
+45134770,3592854,5
+boxxx,3592854,4
+SH51244,3592854,5
+60544607,3592854,5
+132183694,3592854,4
+45767220,3592854,4
+135470899,3592854,4
+Shayla_Jia,3592854,5
+2872981,3592854,2
+toodles,3592854,4
+tiaotiaotang,3592854,3
+109868590,3592854,4
+52862784,3592854,4
+elroscb,3592854,5
+biguniverse,3592854,4
+78728738,3592854,4
+119879862,3592854,5
+49712766,3592854,5
+greenbeast,3592854,5
+hongn,3592854,5
+62869942,3592854,4
+vinjun,3592854,4
+62877748,3592854,4
+122697552,3592854,1
+82335684,3592854,4
+68089232,3592854,5
+2180956,3592854,2
+63136253,3592854,-1
+heizhou,3592854,5
+135211181,3592854,4
+mengxixi,3592854,4
+66456284,3592854,5
+laiquziyouIris,3592854,5
+76818492,3592854,4
+48898979,3592854,4
+52758880,3592854,5
+115974574,3592854,4
+5634841,3592854,5
+134433329,3592854,5
+tenkappa,3592854,-1
+47186001,3592854,3
+88386627,3592854,3
+71950308,3592854,5
+39262943,3592854,3
+48509446,3592854,5
+psyence-1,3592854,5
+97348317,3592854,4
+32937654,3592854,5
+46911994,3592854,4
+3547963,3592854,5
+Caroline.H,3592854,5
+2673058,3592854,4
+82404312,3592854,4
+82802978,3592854,3
+jiangnanmgf,3592854,4
+52098224,3592854,3
+1888866,3592854,5
+corrinneh,3592854,4
+57949283,3592854,5
+73241430,3592854,4
+2172404,3592854,3
+december.L,3592854,4
+55349603,3592854,5
+56493761,3592854,5
+98880412,3592854,5
+2110961,3592854,5
+46590028,3592854,4
+56988288,3592854,5
+54955217,3592854,5
+samove,3592854,4
+dssunshineer,3592854,4
+133308484,3592854,5
+62374245,3592854,5
+52395760,3592854,4
+135868666,3592854,4
+iumbrella,3592854,4
+134434591,3592854,5
+63167875,3592854,3
+55317138,3592854,4
+noncampgen,3592854,5
+1401672,3592854,5
+51598086,3592854,5
+44676319,3592854,3
+127799934,3592854,4
+58601599,3592854,5
+107899706,3592854,2
+103412976,3592854,5
+122974709,3592854,3
+56159025,3592854,4
+69010983,3592854,5
+121289283,3592854,4
+57481597,3592854,5
+91756102,3592854,3
+laowaizi,3592854,3
+45761055,3592854,3
+120274247,3592854,4
+erjan03,3592854,2
+52539806,3592854,5
+51722209,3592854,5
+134495648,3592854,3
+blusia4,3592854,5
+Jessie_liao,3592854,4
+28939207,3592854,5
+47492864,3592854,5
+Echo199101,3592854,5
+45890616,3592854,4
+20886546,3592854,5
+andichou,3592854,1
+52157877,3592854,3
+52206432,3592854,5
+qiutiandeyu,3592854,3
+87756432,3592854,5
+sunniva,3592854,5
+5895489,3592854,4
+1486195,3592854,-1
+Ann-e,3592854,4
+135931536,3592854,5
+yuanyuanfeng,3592854,5
+yangxiansheng,3592854,5
+sarahyangs,3592854,4
+evabianyiwei,3592854,5
+103028552,3592854,4
+82437320,3592854,5
+62347978,3592854,5
+121352443,3592854,5
+51651483,3592854,3
+3284948,3592854,5
+yukileung,3592854,4
+sinky1022,3592854,-1
+GoldenCompass,3592854,5
+49848172,3592854,5
+78214422,3592854,4
+112920430,3592854,5
+69024870,3592854,4
+1101526,3592854,5
+90097591,3592854,1
+yuyu-money,3592854,3
+60173971,3592854,5
+70694295,3592854,5
+127688878,3592854,4
+jcw214,3592854,5
+67035142,3592854,5
+40081609,3592854,4
+20960530,3592854,4
+61071467,3592854,5
+134266415,3592854,3
+45820206,3592854,5
+62906991,3592854,3
+3299770,3592854,3
+1437723,3592854,3
+64860045,3592854,4
+jtaiyang,3592854,4
+Toxic_Tears,3592854,5
+76881504,3592854,5
+52640230,3592854,4
+58067735,3592854,5
+50775734,3592854,3
+biby9475,3592854,3
+89164143,3592854,4
+3622994,3592854,2
+53794132,3592854,3
+87357482,3592854,5
+chloenen,3592854,-1
+47159230,3592854,-1
+huntorbehunted,3592854,3
+37349595,3592854,4
+46863893,3592854,5
+pureair,3592854,4
+37110649,3592854,4
+peachgardn,3592854,4
+135850604,3592854,4
+byjch,3592854,2
+3759351,3592854,2
+65105312,3592854,3
+79352949,3592854,5
+zhzhandqyy,3592854,5
+135844833,3592854,5
+44317071,3592854,5
+91480587,3592854,4
+132192126,3592854,5
+guoxiangjiu,3592854,4
+134515949,3592854,5
+59902712,3592854,4
+82911674,3592854,4
+62918774,3592854,3
+130320878,3592854,4
+48899980,3592854,4
+kiss_lavender,3592854,3
+55282581,3592854,4
+12198403,3592854,3
+kobekb,3592854,5
+74701610,3592854,5
+vidia,3592854,5
+myo,3592854,4
+132081175,3592854,4
+133350413,3592854,5
+2033181,3592854,5
+61492092,3592854,5
+67582454,3592854,5
+2666919,3592854,5
+131380413,3592854,3
+rokushi,3592854,3
+73901440,3592854,4
+113418380,3592854,5
+sunshinexuu,3592854,4
+10129762,3592854,5
+81010616,3592854,4
+richardjay,3592854,5
+67387013,3592854,3
+apriltata,3592854,5
+93267509,3592854,4
+129379900,3592854,4
+52507418,3592854,4
+74426863,3592854,5
+47886279,3592854,5
+51010843,3592854,5
+61702958,3592854,5
+70526937,3592854,4
+leteen,3592854,3
+83282039,3592854,5
+66871580,3592854,4
+AAAhua,3592854,3
+bellamanson,3592854,3
+58895339,3592854,4
+66768802,3592854,4
+55639026,3592854,4
+97869711,3592854,5
+orangeandpaopao,3592854,4
+34305909,3592854,4
+Centhouting,3592854,5
+47413356,3592854,5
+52190451,3592854,5
+cnnkidd,3592854,1
+Cgangs,3592854,3
+howhappy,3592854,4
+135746994,3592854,4
+79708662,3592854,3
+Jimmyuy,3592854,4
+135762513,3592854,5
+53869972,3592854,5
+69475039,3592854,5
+vanjuta,3592854,4
+54757562,3592854,5
+55668412,3592854,4
+55368577,3592854,5
+3972045,3592854,5
+54690757,3592854,4
+93955295,3592854,4
+102214206,3592854,4
+zhenzhenyui,3592854,5
+40808886,3592854,5
+101956762,3592854,5
+hsiangchao,3592854,5
+35595002,3592854,5
+beloved72,3592854,5
+65136878,3592854,4
+fantasymika,3592854,5
+104397819,3592854,5
+1609951,3592854,4
+jujufan,3592854,4
+120623565,3592854,5
+47098539,3592854,4
+4750660,3592854,5
+4849573,3592854,5
+3806312,3592854,2
+leguide,3592854,5
+47184172,3592854,4
+steven_lee,3592854,3
+104696310,3592854,5
+44012231,3592854,5
+91037754,3592854,4
+41711436,3592854,4
+80658200,3592854,5
+Mr.Park,3592854,4
+xinyu1890,3592854,5
+46996433,3592854,5
+saobing,3592854,4
+3957439,3592854,3
+chenyizhong,3592854,4
+29667351,3592854,4
+ansen1026,3592854,5
+54881703,3592854,4
+plants,3592854,5
+catwizard,3592854,3
+LynS,3592854,4
+53353034,3592854,4
+46965914,3592854,5
+duguguiyu,3592854,5
+104433254,3592854,4
+yocrazy,3592854,5
+61693521,3592854,4
+ryogon,3592854,4
+anastasiya,3592854,3
+44011336,3592854,1
+50711443,3592854,5
+45220416,3592854,4
+122858309,3592854,5
+24139618,3592854,4
+97011076,3592854,5
+1444111,3592854,5
+47465732,3592854,5
+4639325,3592854,3
+133439975,3592854,3
+61555779,3592854,3
+50443007,3592854,4
+bala_bala,3592854,5
+41214898,3592854,4
+86689043,3592854,5
+3281685,3592854,3
+cecilia.eve,3592854,4
+1256885,3592854,4
+49684268,3592854,3
+46167382,3592854,5
+56914134,3592854,4
+58051077,3592854,4
+1371348,3592854,3
+1354561,3592854,2
+35986570,3592854,5
+kiyamoto,3592854,5
+leslieilee,3592854,5
+134047738,3592854,4
+32330973,3592854,5
+3039896,3592854,5
+111273600,3592854,4
+4213331,3592854,-1
+134146156,3592854,5
+133582771,3592854,4
+tujianting,3592854,5
+60974953,3592854,4
+34017621,3592854,4
+8895439,3592854,4
+48879366,3592854,4
+59249650,3592854,5
+125145528,3592854,4
+55939788,3592854,2
+129338201,3592854,3
+108367905,3592854,5
+att2046,3592854,4
+zxmalhf,3592854,1
+133913550,3592854,3
+120285831,3592854,5
+2171101,3592854,5
+zugarholic,3592854,5
+37869628,3592854,2
+128587734,3592854,5
+dongboqi,3592854,4
+95460891,3592854,4
+64193755,3592854,4
+56218882,3592854,3
+64949305,3592854,5
+41464821,3592854,1
+38246464,3592854,5
+135617631,3592854,4
+zhudasu,3592854,5
+yukchor,3592854,5
+130167593,3592854,4
+63942768,3592854,5
+66173191,3592854,3
+ufofay,3592854,3
+leonardodicapri,3592854,5
+48190133,3592854,4
+42900235,3592854,1
+50574309,3592854,5
+Tu0304,3592854,5
+119090951,3592854,3
+78500828,3592854,3
+20885358,3592854,5
+kiyosi,3592854,5
+15810065,3592854,4
+Tale,3592854,4
+5485569,3592854,5
+28490375,3592854,5
+3393179,3592854,5
+fantasykx,3592854,4
+3732379,3592854,5
+babyroll,3592854,5
+monichan,3592854,1
+85398631,3592854,5
+62381598,3592854,5
+103462406,3592854,5
+100582359,3592854,5
+46175747,3592854,4
+MICROCHIP,3592854,4
+thesouthking,3592854,5
+nbyidao,3592854,5
+Finos,3592854,2
+jiangjem,3592854,5
+hhred,3592854,4
+98905078,3592854,4
+HBHelena,3592854,4
+2226875,3592854,3
+89876565,3592854,5
+135574930,3592854,5
+65551720,3592854,4
+jasonshao525,3592854,3
+3805082,3592854,3
+4114969,3592854,5
+72145346,3592854,5
+2028913,3592854,3
+48685895,3592854,3
+123968684,3592854,2
+121820822,3592854,4
+73562210,3592854,4
+2576043,3592854,4
+sugar-man,3592854,5
+135466412,3592854,4
+53953725,3592854,5
+64858112,3592854,4
+48510715,3592854,5
+115499943,3592854,4
+2745029,3592854,4
+71062374,3592854,5
+47465726,3592854,4
+linglongwunv,3592854,4
+59564048,3592854,2
+58145044,3592854,4
+27141365,3592854,4
+nangdaocc,3592854,5
+2700013,3592854,5
+2135609,3592854,4
+58603280,3592854,5
+132844308,3592854,5
+chanchan215,3592854,4
+4646921,3592854,4
+51224776,3592854,4
+Hennessy_,3592854,5
+urannus,3592854,4
+momobearbear,3592854,-1
+54794779,3592854,4
+74115491,3592854,5
+93553397,3592854,4
+131426803,3592854,5
+27624982,3592854,4
+4074165,3592854,4
+126657464,3592854,4
+130496328,3592854,5
+130496328,3592854,5
+100365623,3592854,4
+53879411,3592854,1
+12244253,3592854,4
+3066956,3592854,4
+84247287,3592854,4
+waynehume,3592854,5
+57616259,3592854,4
+chelsenmao,3592854,4
+53155339,3592854,5
+Black_Star,3592854,5
+71513680,3592854,5
+88230298,3592854,5
+nightkid0728,3592854,5
+73308278,3592854,2
+43795391,3592854,1
+Sinatanis,3592854,5
+55871596,3592854,5
+58959538,3592854,2
+44561459,3592854,4
+yushuuk,3592854,2
+fallinrnb,3592854,4
+porquetevas,3592854,3
+lovemimidog,3592854,5
+41823915,3592854,3
+47368327,3592854,5
+43948244,3592854,5
+firelifespy,3592854,5
+memoricry,3592854,4
+61197524,3592854,3
+124568524,3592854,5
+laycher,3592854,3
+bbbiabb,3592854,5
+imarco,3592854,5
+Aries-in-douban,3592854,4
+60863980,3592854,4
+cheesechee,3592854,4
+68608061,3592854,4
+katichang,3592854,3
+39704745,3592854,4
+46402600,3592854,5
+49307986,3592854,4
+luluforever,3592854,4
+127978116,3592854,3
+49198911,3592854,5
+cyeon,3592854,2
+kakawoka,3592854,4
+primaballerina,3592854,-1
+rabeix,3592854,-1
+fatfay,3592854,5
+veapon,3592854,5
+queeniwy,3592854,5
+3979432,3592854,3
+54742628,3592854,3
+mymike,3592854,4
+49148767,3592854,5
+109026469,3592854,2
+54715465,3592854,5
+78140524,3592854,4
+53168940,3592854,4
+55893045,3592854,5
+44992090,3592854,4
+architectlc,3592854,3
+bennyjoon,3592854,5
+Rihaulin,3592854,3
+59555735,3592854,4
+looktwice,3592854,3
+77844710,3592854,1
+131823411,3592854,5
+64089629,3592854,2
+XRD-0125,3592854,3
+94017410,3592854,4
+58134949,3592854,5
+34857522,3592854,5
+missufinally,3592854,3
+56571196,3592854,3
+39365124,3592854,-1
+xiangcaozhizi,3592854,5
+davidxuzhao,3592854,4
+68817200,3592854,3
+79179595,3592854,1
+92878802,3592854,3
+30148733,3592854,4
+128086623,3592854,5
+32569158,3592854,5
+ice41322,3592854,5
+2330272,3592854,5
+62073129,3592854,5
+43384645,3592854,5
+zilongu,3592854,4
+superabigail,3592854,-1
+80236417,3592854,5
+45795420,3592854,5
+1003623,3592854,3
+aquariusyoyo,3592854,4
+yuzhaobin,3592854,5
+35609833,3592854,5
+3979390,3592854,5
+85223779,3592854,5
+queenaj,3592854,4
+queenaj,3592854,4
+46011437,3592854,5
+2574869,3592854,4
+soberldly,3592854,3
+4758300,3592854,3
+59307217,3592854,5
+62011920,3592854,4
+vivavera,3592854,2
+solarshr,3592854,5
+2003211,3592854,4
+massachy,3592854,5
+66336980,3592854,4
+82656562,3592854,3
+135092660,3592854,5
+135396561,3592854,5
+buxiaoqingcheng,3592854,5
+ligil,3592854,4
+L_islander,3592854,4
+61386431,3592854,5
+135387220,3592854,4
+55340250,3592854,5
+62766244,3592854,5
+A.Plus,3592854,4
+71895219,3592854,5
+48092800,3592854,5
+50745774,3592854,5
+133922681,3592854,5
+21110490,3592854,5
+101067288,3592854,5
+weremanutd123,3592854,5
+13545156,3592854,3
+119300539,3592854,3
+66277108,3592854,4
+burclover,3592854,4
+121460001,3592854,5
+jiudoucairen,3592854,5
+51636486,3592854,5
+skingqian,3592854,5
+apple-timeless,3592854,4
+adamwzw,3592854,3
+ywyjennifer,3592854,4
+134907073,3592854,4
+jozenky,3592854,5
+2891105,3592854,4
+66103395,3592854,3
+100179635,3592854,5
+119123866,3592854,5
+asfhl,3592854,5
+38589654,3592854,3
+60615521,3592854,5
+summerfly,3592854,3
+2970713,3592854,4
+130072029,3592854,2
+kangqing,3592854,5
+spsara,3592854,4
+37567847,3592854,4
+74188273,3592854,4
+paprika,3592854,4
+131281340,3592854,-1
+49588596,3592854,5
+57729353,3592854,2
+2322224,3592854,4
+62918601,3592854,4
+39953503,3592854,4
+127366745,3592854,4
+1538371,3592854,-1
+vesyinz,3592854,4
+yang_fan_,3592854,5
+47653561,3592854,5
+77306159,3592854,5
+72440349,3592854,2
+134171030,3592854,5
+3285194,3592854,4
+arriettyT,3592854,4
+58578065,3592854,4
+Likferd,3592854,4
+hejingyi0803,3592854,5
+xiaolanzzz,3592854,4
+49796835,3592854,5
+3843744,3592854,3
+peggyduan,3592854,5
+90512502,3592854,5
+133564346,3592854,5
+38830657,3592854,4
+101306532,3592854,5
+annsome,3592854,5
+58015342,3592854,5
+48636603,3592854,3
+92619228,3592854,3
+42373741,3592854,5
+113220356,3592854,5
+LoveB4ever,3592854,5
+pandajo,3592854,4
+53377652,3592854,4
+49947635,3592854,5
+130408683,3592854,5
+60437819,3592854,4
+134901053,3592854,4
+2428269,3592854,4
+51092958,3592854,4
+57140596,3592854,4
+40853957,3592854,5
+57205524,3592854,3
+59536980,3592854,4
+mitangcandy,3592854,3
+fishsu,3592854,-1
+85831631,3592854,-1
+anviliu,3592854,3
+liufuyou,3592854,-1
+85634562,3592854,2
+4178837,3592854,-1
+48926566,3592854,3
+61536847,3592854,-1
+leftone,3592854,4
+130180880,3592854,5
+124825941,3592854,3
+3427639,3592854,-1
+4709296,3592854,4
+77391757,3592854,-1
+fish6058,3592854,3
+45950734,3592854,5
+52468126,3592854,5
+104402849,3592854,5
+4520580,3592854,3
+31820753,3592854,4
+56111522,3592854,5
+50930824,3592854,5
+116539336,3592854,5
+45768110,3592854,-1
+louis15yao,3592854,5
+tanmingdong,3592854,4
+star0607,3592854,4
+62354607,3592854,5
+45076514,3592854,5
+59572576,3592854,5
+Floopy.S,3592854,1
+63287141,3592854,5
+47032431,3592854,5
+tidey,3592854,4
+3153380,3592854,5
+9857556,3592854,2
+49574790,3592854,5
+firepr,3592854,5
+SPIRITUA,3592854,4
+85345440,3592854,5
+2212972,3592854,5
+Ronnie816,3592854,4
+mimizang,3592854,3
+addff,3592854,5
+andycarpenter,3592854,5
+82603813,3592854,4
+42111921,3592854,5
+121205980,3592854,5
+Qsays,3592854,5
+kefeng1988,3592854,4
+marage,3592854,4
+120541509,3592854,4
+31286837,3592854,3
+54711146,3592854,2
+67665508,3592854,4
+67665508,3592854,4
+86253847,3592854,4
+2476759,3592854,4
+67801477,3592854,-1
+123030076,3592854,5
+34842183,3592854,-1
+1849697,3592854,3
+34516353,3592854,4
+2917503,3592854,4
+45161007,3592854,2
+127221083,3592854,4
+41471411,3592854,5
+84418105,3592854,-1
+54025015,3592854,5
+135067568,3592854,4
+12180035,3592854,5
+47299395,3592854,5
+89758966,3592854,5
+134040475,3592854,3
+71979032,3592854,3
+tin0101,3592854,4
+spiritual,3592854,-1
+4442564,3592854,4
+97057870,3592854,4
+74856830,3592854,-1
+3310872,3592854,5
+cn37927,3592854,5
+tengyuanmeihong,3592854,2
+neverbutterfly,3592854,5
+vipphd,3592854,3
+jein,3592854,-1
+JCJC,3592854,4
+4438117,3592854,5
+1860668,3592854,5
+firewingwong,3592854,4
+rainielo,3592854,4
+wong_orz,3592854,4
+luot,3592854,4
+64884896,3592854,5
+3818190,3592854,5
+3818190,3592854,5
+55020304,3592854,4
+56823011,3592854,3
+32586647,3592854,4
+134772912,3592854,5
+stone-ron,3592854,4
+ch4gas,3592854,5
+48633478,3592854,4
+40542536,3592854,5
+32767730,3592854,4
+kiyono9,3592854,4
+45496938,3592854,5
+wakeng,3592854,5
+52260644,3592854,5
+67514961,3592854,4
+spirit.seraph,3592854,4
+hellomybluelife,3592854,4
+131615477,3592854,4
+68539816,3592854,3
+22997328,3592854,5
+134770977,3592854,3
+134334897,3592854,4
+4553271,3592854,5
+132331115,3592854,3
+80246281,3592854,3
+70672684,3592854,3
+dillyk,3592854,5
+soleilratemma,3592854,3
+fakeyouout,3592854,5
+1411518,3592854,5
+kelvin7mj,3592854,4
+yiuloeng,3592854,4
+59403033,3592854,5
+122812221,3592854,5
+shengdoushiba,3592854,-1
+2488466,3592854,4
+Cricketsong,3592854,4
+54682027,3592854,3
+66088686,3592854,5
+jiezimao,3592854,4
+57965497,3592854,5
+120932160,3592854,2
+69710712,3592854,-1
+115507760,3592854,4
+61315252,3592854,5
+imashley,3592854,4
+57701070,3592854,4
+83244806,3592854,1
+qiaomuxl,3592854,2
+32314297,3592854,4
+135118827,3592854,4
+65663758,3592854,5
+65672467,3592854,2
+87010317,3592854,4
+53541312,3592854,3
+watchboy,3592854,5
+shynic89,3592854,3
+57982516,3592854,4
+4392505,3592854,3
+terranw,3592854,4
+38567114,3592854,4
+amay1023,3592854,5
+89716765,3592854,5
+134463020,3592854,4
+54449997,3592854,5
+34881096,3592854,4
+mareivo,3592854,2
+2617601,3592854,5
+DennisZz9,3592854,5
+98014979,3592854,5
+59609548,3592854,4
+121641170,3592854,4
+58656660,3592854,4
+45650276,3592854,5
+56260072,3592854,5
+72788853,3592854,3
+Katherinexiaoya,3592854,5
+tanguohong,3592854,5
+78399919,3592854,5
+57135077,3592854,4
+1074069,3592854,5
+87821672,3592854,4
+134161390,3592854,3
+62136582,3592854,4
+131068311,3592854,5
+kiteshady,3592854,4
+41388468,3592854,5
+55602793,3592854,3
+68952401,3592854,5
+68966546,3592854,5
+121837508,3592854,3
+iloveudear,3592854,4
+57810859,3592854,5
+Lava_R,3592854,5
+on1ooker,3592854,4
+Irisyin058,3592854,5
+libo16,3592854,4
+58267868,3592854,4
+59906784,3592854,4
+1169676,3592854,5
+59906784,3592854,4
+1169676,3592854,5
+76872047,3592854,4
+115551507,3592854,5
+59593088,3592854,5
+134586182,3592854,5
+whisper,3592854,4
+76335173,3592854,4
+49945467,3592854,5
+ggx29225692,3592854,5
+1643126,3592854,5
+90205716,3592854,4
+xutianxi,3592854,4
+51263731,3592854,5
+44150702,3592854,5
+58056951,3592854,4
+37101036,3592854,4
+48905575,3592854,4
+101820045,3592854,3
+St.Lone,3592854,5
+114057522,3592854,3
+101462888,3592854,4
+sid005,3592854,3
+49567226,3592854,3
+66985301,3592854,5
+134916252,3592854,4
+35029280,3592854,5
+56858333,3592854,5
+35509234,3592854,4
+houjingmeng,3592854,3
+57509274,3592854,5
+47817775,3592854,5
+2254747,3592854,5
+66296467,3592854,5
+69785577,3592854,4
+3187951,3592854,5
+92796739,3592854,4
+103208436,3592854,5
+133651758,3592854,5
+91304159,3592854,4
+shyue0268,3592854,5
+61449445,3592854,4
+119938228,3592854,5
+87558213,3592854,4
+57424312,3592854,4
+68163321,3592854,2
+4105472,3592854,-1
+88961089,3592854,5
+dzl15,3592854,4
+unicorn1018,3592854,2
+FXXX,3592854,-1
+sherry_zeng,3592854,5
+hjhhappy,3592854,4
+Unknown_One,3592854,3
+2755164,3592854,3
+132640037,3592854,5
+3801925,3592854,4
+51592058,3592854,4
+45870400,3592854,5
+rollin,3592854,4
+73156181,3592854,5
+reneeeee,3592854,3
+56306700,3592854,5
+66672618,3592854,5
+medusa707,3592854,4
+52575294,3592854,5
+moshou,3592854,5
+51821114,3592854,-1
+120287193,3592854,5
+ioncx,3592854,4
+119288592,3592854,5
+szhiji,3592854,5
+80393914,3592854,5
+67680906,3592854,5
+47996412,3592854,5
+76388576,3592854,3
+4889336,3592854,5
+jekyll,3592854,4
+2144157,3592854,2
+49273310,3592854,5
+4563516,3592854,3
+131479104,3592854,5
+77459141,3592854,5
+57826704,3592854,5
+longislandiced,3592854,4
+105270130,3592854,5
+vvvvv,3592854,4
+64552967,3592854,4
+134021149,3592854,4
+4646953,3592854,3
+122285833,3592854,5
+49785601,3592854,4
+55276262,3592854,5
+120447606,3592854,3
+46828936,3592854,3
+21761006,3592854,5
+suliu,3592854,5
+dejavu88,3592854,4
+honey-catherine,3592854,5
+71715342,3592854,5
+1691509,3592854,4
+130823206,3592854,5
+46656865,3592854,5
+3977734,3592854,2
+33580503,3592854,3
+56446674,3592854,5
+hao_qoo,3592854,3
+57438024,3592854,4
+gougou_lass,3592854,5
+77162594,3592854,5
+mr12,3592854,4
+30924600,3592854,5
+59867809,3592854,4
+3114580,3592854,5
+48097979,3592854,3
+60768165,3592854,3
+dd770523,3592854,4
+Elsa-Young,3592854,4
+53610739,3592854,4
+46670789,3592854,5
+milerano,3592854,4
+85422196,3592854,5
+109166654,3592854,4
+3722976,3592854,4
+54057163,3592854,4
+47232282,3592854,5
+whyrrita,3592854,3
+eloc,3592854,4
+47273031,3592854,2
+vividc,3592854,4
+51236023,3592854,1
+121340954,3592854,4
+a_lying_eight,3592854,5
+graygem,3592854,5
+q258523454,3592854,5
+36986059,3592854,4
+2654074,3592854,4
+1764284,3592854,4
+64247507,3592854,5
+51734671,3592854,4
+30251701,3592854,5
+125521901,3592854,5
+4161339,3592854,4
+mmdxy,3592854,-1
+Green-fly,3592854,5
+41431118,3592854,5
+48877064,3592854,5
+Ivy_bramble,3592854,5
+69432714,3592854,4
+feliciaLt,3592854,-1
+70289597,3592854,4
+96514775,3592854,4
+misspj,3592854,5
+zc1229,3592854,4
+tola95,3592854,3
+luxuriant,3592854,3
+iamaguillotine,3592854,3
+50190840,3592854,5
+qiujianxiang,3592854,5
+snowdrop14,3592854,4
+57824542,3592854,4
+shaclo,3592854,4
+57744415,3592854,3
+duklyon1983,3592854,4
+47147713,3592854,3
+73542254,3592854,5
+akiralovedark,3592854,4
+101768539,3592854,3
+65913469,3592854,4
+46646449,3592854,4
+133968412,3592854,4
+132229126,3592854,5
+125775996,3592854,5
+126221036,3592854,5
+120598683,3592854,5
+yu_sogood,3592854,5
+53892817,3592854,4
+51887534,3592854,5
+daly0520,3592854,5
+renymartin,3592854,5
+10458948,25830802,4
+77281680,25830802,2
+127701993,25830802,5
+124822800,25830802,1
+82038252,25830802,2
+Angle_Angle,25830802,4
+136658274,25830802,2
+122261501,25830802,4
+2565165,25830802,4
+130445057,25830802,2
+46346813,25830802,2
+57412283,25830802,3
+62761298,25830802,4
+62635960,25830802,2
+52282792,25830802,4
+108282995,25830802,3
+28631660,25830802,3
+39168682,25830802,3
+55311188,25830802,2
+xihongshi103,25830802,4
+zhanghuaxin,25830802,3
+50307120,25830802,2
+xicunmeihua,25830802,4
+54833515,25830802,-1
+69006454,25830802,4
+1943610,25830802,3
+dream_for3,25830802,4
+97396333,25830802,2
+48010306,25830802,4
+6270415,25830802,2
+50461431,25830802,5
+114487129,25830802,3
+130540894,25830802,3
+102938310,25830802,1
+sacpoh,25830802,5
+frena7,25830802,3
+wangbin891217,25830802,4
+3612146,25830802,5
+yzzlovezj,25830802,3
+121327603,25830802,2
+5116652,25830802,3
+fisherman,25830802,4
+cristalfish,25830802,3
+137909903,25830802,5
+43129996,25830802,5
+xubeisi,25830802,3
+47573982,25830802,2
+67462088,25830802,4
+4106534,25830802,4
+57432766,25830802,3
+millylyu,25830802,1
+47598205,25830802,3
+zangtianfly,25830802,3
+45139557,25830802,4
+sinzer.,25830802,4
+134497633,25830802,2
+54688426,25830802,1
+RainingOutside,25830802,3
+62679117,25830802,2
+66340559,25830802,2
+79100751,25830802,5
+xiaokuisunshine,25830802,3
+55332677,25830802,3
+122858309,25830802,4
+elevenfang11,25830802,4
+48674547,25830802,2
+Supertrampjules,25830802,4
+136556777,25830802,4
+52918200,25830802,3
+HuoLoveQ,25830802,3
+61163437,25830802,2
+61078362,25830802,3
+47034969,25830802,3
+63874494,25830802,2
+59788241,25830802,4
+125001023,25830802,1
+80674994,25830802,2
+qj0824,25830802,4
+78423138,25830802,4
+135991740,25830802,5
+lulu521621,25830802,4
+ilvhsq,25830802,5
+43831246,25830802,3
+3791437,25830802,2
+75330539,25830802,2
+4507417,25830802,5
+darlinfish,25830802,-1
+77042003,25830802,1
+31757533,25830802,5
+78380925,25830802,4
+104710659,25830802,3
+124075898,25830802,3
+41158884,25830802,3
+65087582,25830802,2
+51551516,25830802,5
+waisel,25830802,3
+55891007,25830802,4
+98956225,25830802,3
+i_Soda,25830802,4
+lxngzen,25830802,2
+50312549,25830802,5
+papasoft,25830802,4
+80319833,25830802,4
+83746589,25830802,3
+135084358,25830802,4
+79531248,25830802,1
+132773025,25830802,4
+4002268,25830802,4
+137793944,25830802,5
+53094431,25830802,3
+69750232,25830802,3
+60661944,25830802,4
+42939045,25830802,4
+60620851,25830802,-1
+92567735,25830802,3
+zookeeper,25830802,5
+58624199,25830802,2
+puyi,25830802,-1
+129595269,25830802,3
+jidecengjing,25830802,2
+67229743,25830802,3
+4056994,25830802,5
+zy47,25830802,-1
+huapiqiu,25830802,3
+82075343,25830802,3
+125770398,25830802,3
+124640229,25830802,4
+80425280,25830802,2
+shutu,25830802,3
+130647398,25830802,4
+barcabookworm,25830802,3
+37552777,25830802,2
+49180179,25830802,4
+49532301,25830802,4
+58776311,25830802,3
+xclc,25830802,3
+57924290,25830802,3
+3312608,25830802,3
+60696883,25830802,3
+83507458,25830802,3
+30486993,25830802,1
+43814043,25830802,5
+litian19890502,25830802,2
+46493467,25830802,3
+81933554,25830802,4
+2376689,25830802,-1
+2720290,25830802,2
+77334635,25830802,4
+62773794,25830802,3
+43120723,25830802,4
+130224931,25830802,4
+2717983,25830802,5
+kingiknow,25830802,2
+meimei881007,25830802,5
+78199146,25830802,-1
+hawords,25830802,4
+2468102,25830802,4
+XTian0806,25830802,5
+68871897,25830802,4
+71907688,25830802,3
+andrew628,25830802,3
+4412176,25830802,4
+3192663,25830802,4
+134318408,25830802,1
+44852938,25830802,2
+54721365,25830802,3
+135575731,25830802,3
+58301131,25830802,3
+114743620,25830802,3
+43126900,25830802,2
+74980339,25830802,3
+130988431,25830802,1
+103020260,25830802,4
+84433387,25830802,2
+59323757,25830802,3
+38741483,25830802,3
+ganster,25830802,2
+45508468,25830802,3
+3223179,25830802,-1
+88216466,25830802,4
+QINGFENGDIEWU,25830802,3
+q455,25830802,4
+45529743,25830802,3
+35224934,25830802,4
+4123613,25830802,4
+Makoto614,25830802,3
+90972400,25830802,3
+73427598,25830802,3
+2580551,25830802,3
+34343005,25830802,4
+102705579,25830802,5
+47212439,25830802,4
+2280761,25830802,4
+niaoyunfeidouba,25830802,4
+48523065,25830802,2
+49532139,25830802,4
+134523911,25830802,3
+46078786,25830802,2
+130530674,25830802,5
+lotusmomo,25830802,5
+104658411,25830802,4
+AdorableMe,25830802,4
+134161390,25830802,2
+mikaLynn,25830802,2
+kiwilo,25830802,3
+q296579068,25830802,4
+65187145,25830802,3
+63920180,25830802,3
+108229829,25830802,-1
+104310668,25830802,3
+52411930,25830802,4
+131551681,25830802,3
+49273310,25830802,4
+131849470,25830802,2
+60867302,25830802,3
+88072113,25830802,3
+78251252,25830802,3
+1498768,25830802,3
+2182855,25830802,4
+1724293,25830802,4
+44209376,25830802,3
+72040927,25830802,3
+62339561,25830802,2
+75555636,25830802,4
+121767619,25830802,3
+64092197,25830802,1
+46061693,25830802,3
+4222944,25830802,-1
+yx_,25830802,5
+qjy,25830802,3
+60935478,25830802,3
+1905433,25830802,2
+48444997,25830802,4
+baizi886,25830802,2
+4134812,25830802,3
+64465114,25830802,4
+134532187,25830802,2
+4253230,25830802,3
+134120106,25830802,2
+106137917,25830802,4
+106137917,25830802,4
+75131529,25830802,4
+119472529,25830802,4
+133691924,25830802,3
+61656459,25830802,2
+dabaibai,25830802,4
+62062477,25830802,2
+82911001,25830802,3
+2106137,25830802,-1
+52080305,25830802,4
+zhangcj1224,25830802,3
+65814505,25830802,3
+nicijinn,25830802,3
+54983933,25830802,2
+suh5213,25830802,3
+51095675,25830802,4
+1909194,25830802,3
+2756792,25830802,4
+93299177,25830802,3
+69156553,25830802,2
+81257481,25830802,4
+52636646,25830802,3
+1642177,25830802,1
+dogeli,25830802,2
+58338006,25830802,3
+66896726,25830802,5
+huodijin,25830802,2
+68679029,25830802,2
+52708584,25830802,4
+79748311,25830802,4
+amychen124,25830802,5
+82387095,25830802,4
+64038033,25830802,3
+4712483,25830802,5
+83116335,25830802,2
+104265782,25830802,4
+1211087,25830802,4
+69121779,25830802,3
+47243761,25830802,4
+64796769,25830802,4
+wuhuijing,25830802,3
+jingrong,25830802,5
+hp222666,25830802,4
+guoqichepiao,25830802,-1
+townlet,25830802,-1
+73496560,25830802,3
+31698933,25830802,2
+1281739,25830802,3
+wakaka1986,25830802,2
+mufanxuanji,25830802,2
+joyjay,25830802,5
+zhjulia123,25830802,4
+haixiaoyang,25830802,4
+119683375,25830802,4
+70310265,25830802,3
+7402565,25830802,4
+57616406,25830802,5
+129369858,25830802,2
+AILUHAN123,25830802,3
+133486624,25830802,3
+76995484,25830802,2
+4357598,25830802,4
+113986971,25830802,5
+vicky83,25830802,3
+61681406,25830802,4
+asvra,25830802,3
+flowermumu,25830802,3
+76804621,25830802,3
+50351028,25830802,2
+55978838,25830802,3
+52160935,25830802,3
+49234073,25830802,4
+jiangying,25830802,2
+128220209,25830802,-1
+2596903,25830802,2
+lcghere,25830802,2
+39168659,25830802,4
+47048376,25830802,2
+44483182,25830802,3
+72590868,25830802,4
+72590868,25830802,4
+51806817,25830802,3
+pinping,25830802,-1
+2348406,25830802,3
+78578309,25830802,-1
+63462794,25830802,4
+jelly-8,25830802,2
+8872886,25830802,3
+96914881,25830802,4
+48048904,25830802,3
+Anoni,25830802,4
+71984544,25830802,3
+31562126,25830802,5
+kuensun,25830802,3
+133820323,25830802,5
+Optimus-Prime,25830802,3
+34846798,25830802,1
+45937767,25830802,3
+59998164,25830802,3
+vivienne1117,25830802,5
+53245934,25830802,4
+66698052,25830802,3
+62602235,25830802,-1
+shiningsnow,25830802,4
+106109346,25830802,4
+jojodin,25830802,5
+79506720,25830802,5
+1369113,25830802,2
+52708083,25830802,3
+linshang,25830802,3
+g-six,25830802,2
+41250740,25830802,3
+sinsist,25830802,5
+37162922,25830802,3
+128368198,25830802,5
+47362295,25830802,3
+hcaelb,25830802,3
+40616987,25830802,3
+javeerchu,25830802,4
+53656219,25830802,3
+cheryqiao,25830802,-1
+brant,25830802,4
+ningning9164,25830802,-1
+33907993,25830802,3
+129015324,25830802,2
+50663434,25830802,2
+3522119,25830802,4
+133696090,25830802,3
+52668487,25830802,3
+66353129,25830802,5
+34487824,25830802,3
+tibet412,25830802,4
+wangyou0720,25830802,4
+51149079,25830802,4
+46588781,25830802,2
+iear,25830802,3
+Decembermay,25830802,3
+96503660,25830802,5
+80202849,25830802,2
+74234828,25830802,4
+49369831,25830802,4
+17871243,25830802,2
+120867848,25830802,3
+52470011,25830802,2
+Popdai,25830802,5
+132799926,25830802,4
+49537151,25830802,3
+80980884,25830802,5
+36667983,25830802,3
+133625367,25830802,4
+132115433,25830802,4
+56684398,25830802,2
+13376220,25830802,3
+youyousina,25830802,4
+Edward_Elric,25830802,1
+133600881,25830802,-1
+92921429,25830802,-1
+60802128,25830802,4
+maimai251,25830802,2
+133499151,25830802,4
+76331020,25830802,2
+43258987,25830802,4
+60442939,25830802,4
+4239908,25830802,5
+sszwe,25830802,5
+sunwukong.326,25830802,2
+3541486,25830802,3
+74202953,25830802,3
+redcookie,25830802,5
+2239499,25830802,3
+yimoyoulan916,25830802,3
+81693756,25830802,4
+dingding1113,25830802,4
+108693709,25830802,3
+64996012,25830802,4
+3598072,25830802,1
+4421474,25830802,3
+63892737,25830802,5
+angelababy_,25830802,3
+106597439,25830802,4
+otherdream,25830802,4
+kiki204629,25830802,3
+76077212,25830802,5
+110172016,25830802,3
+40931837,25830802,3
+shimiao,25830802,3
+47521894,25830802,5
+Sunnyshine,25830802,3
+shanghai11,25830802,4
+68878726,25830802,4
+lostef,25830802,3
+46935861,25830802,3
+57377370,25830802,3
+58051077,25830802,3
+2401259,25830802,4
+shaoyi,25830802,3
+33122876,25830802,1
+kuangk,25830802,1
+53198188,25830802,2
+jisixue0111,25830802,3
+37840696,25830802,3
+minquan,25830802,2
+gongzitian,25830802,2
+50193644,25830802,5
+littlezhisandra,25830802,4
+Uvo,25830802,4
+1831746,25830802,3
+77058316,25830802,4
+diana961108,25830802,-1
+67659493,25830802,3
+63003958,25830802,5
+2114161,25830802,4
+6859929,25830802,5
+26985231,25830802,4
+sayucinq,25830802,4
+4297674,25830802,2
+capricornslythe,25830802,3
+degaslea,25830802,4
+1801545,25830802,-1
+56039933,25830802,-1
+lishidai93,25830802,3
+64412561,25830802,2
+1198621,25830802,3
+coco921,25830802,4
+126427829,25830802,3
+16693810,25830802,4
+mian823,25830802,-1
+132331115,25830802,3
+WeekendLY,25830802,3
+50054594,25830802,2
+52259960,25830802,3
+sanroda,25830802,4
+64755839,25830802,3
+bruce_liu1123,25830802,3
+3177593,25830802,3
+2824404,25830802,4
+auvauva,25830802,1
+jennystar,25830802,3
+81576955,25830802,5
+abudula,25830802,3
+43474668,25830802,2
+60347813,25830802,2
+61093612,25830802,4
+21089246,25830802,4
+LameSaintSusenF,25830802,3
+2808574,25830802,3
+53362350,25830802,2
+78902065,25830802,2
+90000787,25830802,3
+80687112,25830802,4
+29514445,25830802,4
+52201060,25830802,3
+131141632,25830802,1
+AstridL411,25830802,4
+63110579,25830802,5
+1773126,25830802,3
+2896602,25830802,4
+65369148,25830802,2
+youyongyu,25830802,2
+127933526,25830802,4
+36337091,25830802,5
+47193126,25830802,3
+2562941,25830802,3
+71383486,25830802,3
+116169238,25830802,1
+derivatives,25830802,3
+68399606,25830802,3
+70453072,25830802,3
+yoyofun,25830802,-1
+63075072,25830802,4
+1459659,25830802,4
+1240037,25830802,5
+ruilixiurui,25830802,3
+1375246,25830802,3
+wood0913,25830802,4
+66513814,25830802,3
+55432679,25830802,4
+67870530,25830802,1
+abuxu,25830802,3
+janetbubble,25830802,4
+antime,25830802,2
+43719217,25830802,4
+xu77,25830802,2
+74475236,25830802,4
+yalindongdong,25830802,2
+faiel,25830802,2
+132855429,25830802,5
+4129696,25830802,3
+goalps,25830802,4
+47388873,25830802,2
+tianranzijiegou,25830802,3
+53485894,25830802,3
+88047435,25830802,3
+foreversuer,25830802,4
+abaqiao,25830802,3
+leeshiuan,25830802,4
+51729072,25830802,5
+YH222,25830802,4
+119362745,25830802,3
+lovingsister,25830802,3
+45484348,25830802,4
+63175477,25830802,3
+erobin,25830802,3
+66234722,25830802,4
+61219748,25830802,2
+tangjiaqi,25830802,2
+53650868,25830802,2
+57527976,25830802,3
+2498446,25830802,3
+herfilm,25830802,1
+61324818,25830802,3
+samsyu,25830802,3
+weijingyi,25830802,4
+74600340,25830802,3
+hanax4,25830802,3
+angle223,25830802,2
+1550135,25830802,2
+59820675,25830802,2
+i840152811,25830802,1
+51810692,25830802,5
+yangliening,25830802,4
+62873920,25830802,3
+printa,25830802,4
+79240212,25830802,4
+50174936,25830802,4
+76086734,25830802,3
+22105037,25830802,3
+59934042,25830802,3
+61967626,25830802,3
+sczz_tang,25830802,4
+60856294,25830802,3
+xilouchen,25830802,3
+120353268,25830802,3
+chan18,25830802,1
+seafans,25830802,3
+57405167,25830802,4
+79542238,25830802,3
+cl20lc,25830802,3
+59307428,25830802,3
+51126355,25830802,3
+65723913,25830802,3
+nuan950707,25830802,4
+caocaoa,25830802,2
+81848652,25830802,1
+77577203,25830802,5
+lovezhuangjia,25830802,3
+jjq_wuyi,25830802,3
+52235121,25830802,4
+76931391,25830802,4
+wrdeam,25830802,3
+124887489,25830802,3
+yukizakura,25830802,2
+120196443,25830802,2
+63359487,25830802,3
+122016263,25830802,4
+btone0808,25830802,3
+yvonne9254,25830802,2
+1062820,25830802,4
+jody_zhang,25830802,4
+nss1w1,25830802,3
+jody_zhang,25830802,4
+nss1w1,25830802,3
+89491653,25830802,3
+wh396011051,25830802,3
+131714464,25830802,4
+4165611,25830802,3
+47070736,25830802,4
+2853604,25830802,2
+4431102,25830802,5
+poneebyponee,25830802,-1
+48763298,25830802,4
+65438415,25830802,4
+128781644,25830802,5
+reader-shuo,25830802,4
+1747483,25830802,3
+56959224,25830802,2
+59771378,25830802,2
+Mango99101185,25830802,3
+linkice,25830802,4
+119806823,25830802,3
+2049714,25830802,4
+duduxiongzhifu,25830802,2
+qien,25830802,-1
+2265138,25830802,5
+37975199,25830802,4
+7069657,25830802,5
+delicioussalad,25830802,4
+cangshucl,25830802,4
+46754080,25830802,5
+lokio,25830802,2
+Iamfull,25830802,3
+52068926,25830802,3
+xiaodazi,25830802,4
+47531635,25830802,5
+49922437,25830802,4
+36814878,25830802,2
+22625157,25830802,3
+129582003,25830802,3
+83811612,25830802,3
+2239714,25830802,4
+126693961,25830802,2
+75538096,25830802,3
+waWa.tomato,25830802,3
+69223309,25830802,5
+83855853,25830802,2
+50023585,25830802,3
+61424734,25830802,3
+101982187,25830802,2
+73854717,25830802,3
+geranium6002,25830802,4
+115895497,25830802,2
+45097114,25830802,3
+17004593,25830802,4
+50821658,25830802,3
+55746264,25830802,3
+Holly810,25830802,3
+43134221,25830802,4
+80808248,25830802,3
+qbdog,25830802,5
+amanda3513,25830802,4
+64242792,25830802,3
+mojian,25830802,2
+126980247,25830802,3
+4154813,25830802,2
+12511197,25830802,5
+changefiona,25830802,2
+126115470,25830802,-1
+kejinlong,25830802,3
+wcao,25830802,1
+43794269,25830802,3
+128391075,25830802,4
+101196248,25830802,4
+130496028,25830802,4
+21186049,25830802,3
+21354916,25830802,3
+1296052,25830802,4
+livethepeace,25830802,5
+NG,25830802,2
+65266454,25830802,2
+3121598,25830802,3
+64069487,25830802,3
+71348074,25830802,2
+56244631,25830802,2
+nilice,25830802,3
+89901413,25830802,2
+hugowai,25830802,4
+laperseus,25830802,2
+ydyie,25830802,3
+1929758,25830802,4
+123350627,25830802,3
+Isipatana,25830802,3
+94227961,25830802,2
+86093744,25830802,3
+61184340,25830802,5
+Jillian,25830802,3
+90715533,25830802,3
+jose-,25830802,4
+2599607,25830802,3
+evooone,25830802,3
+morning.garden,25830802,3
+beefeaters,25830802,3
+zhileide,25830802,-1
+dreamersjcat,25830802,3
+Microka,25830802,3
+title,25830802,2
+24265115,25830802,4
+xslidian,25830802,1
+shunong,25830802,2
+45255137,25830802,3
+xiaotuo,25830802,3
+1403754,25830802,3
+lsmichelle007,25830802,3
+bullshitforever,25830802,4
+felinoshuffle,25830802,4
+91024874,25830802,1
+41848345,25830802,3
+120990499,25830802,5
+99343024,25830802,4
+51944238,25830802,2
+yan6,25830802,3
+yan6,25830802,3
+34342600,25830802,1
+dayandnights,25830802,4
+129255326,25830802,4
+sevee,25830802,2
+71985811,25830802,3
+tjz230,25830802,2
+shmiau,25830802,3
+33601672,25830802,3
+71118924,25830802,5
+wen_Schwartz,25830802,2
+ricchhard,25830802,3
+52028198,25830802,5
+49868635,25830802,4
+60541880,25830802,3
+76266670,25830802,4
+chenhuayang,25830802,3
+51909458,25830802,2
+twtw_twtw,25830802,2
+FrankWasabi,25830802,1
+ask4more,25830802,3
+yuebing123,25830802,3
+47845902,25830802,3
+46532377,25830802,-1
+zpzs,25830802,5
+58013933,25830802,4
+Eleesi,25830802,3
+60223940,25830802,4
+coco475511,25830802,5
+4370686,25830802,2
+60372310,25830802,4
+5355133,25830802,3
+guobingyao728,25830802,3
+79381149,25830802,2
+102477875,25830802,4
+66057217,25830802,3
+kyleul,25830802,5
+48043534,25830802,3
+53862196,25830802,4
+123413024,25830802,2
+aprilwind_shi,25830802,2
+lovetsubasa,25830802,5
+3529966,25830802,4
+Alvin0414,25830802,3
+21767774,25830802,3
+heathlon,25830802,4
+bjmiss,25830802,2
+122052846,25830802,3
+110616141,25830802,5
+64473872,25830802,2
+126497518,25830802,3
+1402275,25830802,2
+Victor_D,25830802,2
+zhusiyang,25830802,4
+32402352,25830802,4
+cherry0908,25830802,2
+szk13731584239,25830802,4
+49272831,25830802,3
+csj0824,25830802,3
+MovieL,25830802,2
+52523559,25830802,3
+ruiye,25830802,3
+1022788,25830802,3
+shuixia1825,25830802,3
+june.q,25830802,3
+48773692,25830802,5
+aaaaaaaaaaa,25830802,-1
+49595588,25830802,2
+2461588,25830802,4
+67404244,25830802,2
+frankie_sy,25830802,3
+121614690,25830802,1
+dian38,25830802,3
+fuxiu,25830802,3
+124136324,25830802,3
+56837215,25830802,4
+45155872,25830802,3
+1127610,25830802,2
+58691394,25830802,3
+48822574,25830802,5
+33399271,25830802,3
+Miss.Hyacinth,25830802,4
+53942101,25830802,2
+blinglu,25830802,4
+87726379,25830802,4
+57486776,25830802,3
+sid005,25830802,4
+grinch,25830802,2
+71496445,25830802,4
+qianricao,25830802,4
+jicheng1993,25830802,4
+mr.slow,25830802,3
+65042194,25830802,3
+wusequanwei,25830802,-1
+2694487,25830802,2
+hajiwon,25830802,4
+49991288,25830802,-1
+levitating,25830802,3
+duanzizai,25830802,3
+ilovejay79118,25830802,3
+43296422,25830802,3
+ruo1996,25830802,3
+augusttt,25830802,4
+swatow-ink,25830802,3
+lyych,25830802,3
+jywpl,25830802,3
+53001964,25830802,4
+2076258,25830802,2
+67906921,25830802,2
+hhhhhhn,25830802,5
+cheeringo,25830802,4
+103353695,25830802,1
+132084801,25830802,5
+54515552,25830802,4
+124352001,25830802,4
+73520348,25830802,5
+shixideshechi,25830802,3
+wxiaobai,25830802,4
+snoopyxx,25830802,4
+lvdazhao,25830802,5
+10458948,25830802,4
+77281680,25830802,2
+127701993,25830802,5
+124822800,25830802,1
+82038252,25830802,2
+Angle_Angle,25830802,4
+136658274,25830802,2
+122261501,25830802,4
+2565165,25830802,4
+130445057,25830802,2
+46346813,25830802,2
+57412283,25830802,3
+62761298,25830802,4
+62635960,25830802,2
+52282792,25830802,4
+108282995,25830802,3
+28631660,25830802,3
+39168682,25830802,3
+55311188,25830802,2
+xihongshi103,25830802,4
+57550343,24879839,3
+35961674,24879839,2
+Side,24879839,5
+48990139,24879839,1
+sharkup,24879839,3
+40300209,24879839,2
+hanxiaonuan,24879839,2
+Aquarius_Girl,24879839,3
+50540787,24879839,2
+38485317,24879839,3
+3262258,24879839,3
+83646619,24879839,2
+102024318,24879839,4
+134520468,24879839,2
+53655242,24879839,3
+cherrygeisha,24879839,4
+61316939,24879839,2
+kekeyuxi,24879839,2
+omg-_-,24879839,3
+55487752,24879839,3
+3895425,24879839,3
+2489066,24879839,3
+t1ana1,24879839,4
+45181987,24879839,3
+37959469,24879839,3
+79330002,24879839,4
+71220393,24879839,1
+nulland,24879839,-1
+136957139,24879839,2
+59467703,24879839,-1
+72220959,24879839,3
+64554108,24879839,1
+56493761,24879839,1
+littleD,24879839,3
+131752746,24879839,4
+51297703,24879839,2
+134507096,24879839,3
+132411090,24879839,3
+2725722,24879839,2
+91236974,24879839,2
+53558435,24879839,1
+amadeus747,24879839,4
+37815732,24879839,4
+stoneshen,24879839,3
+67464117,24879839,3
+Stephen2046,24879839,1
+58930883,24879839,3
+guanwang,24879839,3
+75633753,24879839,2
+4565520,24879839,4
+37824700,24879839,3
+Ada_Liu,24879839,2
+2142898,24879839,2
+xxxloser,24879839,4
+122258109,24879839,3
+58976890,24879839,2
+mareivo,24879839,3
+48898327,24879839,3
+3470100,24879839,3
+stephaniezl91,24879839,2
+stephaniezl91,24879839,2
+63528738,24879839,4
+GeSMD,24879839,3
+123137228,24879839,3
+104708147,24879839,3
+51387843,24879839,1
+120793878,24879839,3
+kobeeason,24879839,2
+49174412,24879839,1
+5851064,24879839,3
+76798161,24879839,1
+papa12,24879839,3
+53002120,24879839,2
+129772148,24879839,1
+57258853,24879839,1
+nushuizhongfei.,24879839,-1
+3779967,24879839,3
+bluesken,24879839,4
+101666673,24879839,3
+131254424,24879839,2
+68979031,24879839,3
+65786526,24879839,2
+72739016,24879839,2
+89479516,24879839,1
+7900399,24879839,3
+darkcolorstar,24879839,3
+2409306,24879839,3
+Sekmat,24879839,3
+51593963,24879839,1
+63899300,24879839,3
+2022213,24879839,3
+basicmiumiu,24879839,-1
+49576050,24879839,2
+51613971,24879839,1
+48615363,24879839,3
+Marilyn.dd,24879839,2
+101978260,24879839,2
+Cliaoliao,24879839,3
+127313933,24879839,3
+63867022,24879839,1
+zylovenic,24879839,3
+56666764,24879839,3
+104462145,24879839,-1
+57093382,24879839,2
+50307120,24879839,3
+137790319,24879839,2
+135968711,24879839,3
+newtypejacky,24879839,4
+44103412,24879839,2
+lampin,24879839,3
+2728631,24879839,2
+34952183,24879839,-1
+Miu,24879839,3
+135953489,24879839,1
+ttnspike,24879839,3
+65721652,24879839,3
+56978469,24879839,3
+88331189,24879839,3
+66462551,24879839,2
+121700028,24879839,2
+ulysseus-2,24879839,1
+gogomi,24879839,3
+3352510,24879839,2
+51420490,24879839,3
+56223706,24879839,3
+52907345,24879839,3
+rext,24879839,2
+62496308,24879839,-1
+33834953,24879839,3
+122394659,24879839,3
+68277125,24879839,3
+xia_mo_1996,24879839,4
+43290072,24879839,4
+zhonghualin,24879839,4
+8195087,24879839,2
+88926842,24879839,2
+gj_1987,24879839,2
+119416612,24879839,3
+ichigogogo,24879839,3
+61101184,24879839,4
+zuiyufengzhong,24879839,3
+53693712,24879839,-1
+afatar,24879839,2
+137555231,24879839,3
+gonglingsu,24879839,4
+56742109,24879839,3
+jimmy_8785,24879839,1
+Pissenlits,24879839,4
+DJCosmic,24879839,3
+35380385,24879839,4
+90692446,24879839,1
+4113112,24879839,4
+3125244,24879839,4
+lovely_love,24879839,5
+a5045402,24879839,3
+dongkuichen,24879839,4
+76395595,24879839,2
+101419547,24879839,2
+4054351,24879839,2
+85398631,24879839,2
+46065421,24879839,3
+39278293,24879839,4
+61797915,24879839,3
+63089726,24879839,4
+partipris,24879839,3
+136053168,24879839,1
+49056942,24879839,3
+50759873,24879839,-1
+137479208,24879839,3
+42128136,24879839,2
+66763319,24879839,3
+Ruty1985,24879839,2
+colinFTW,24879839,5
+quelheart,24879839,1
+46258070,24879839,2
+106584887,24879839,4
+wuyunoy,24879839,3
+44699537,24879839,3
+134399469,24879839,2
+cnfox23,24879839,2
+90595685,24879839,3
+31449811,24879839,3
+4171499,24879839,3
+zizaitianqi,24879839,1
+stormcenter,24879839,4
+vivichris,24879839,1
+xubeisi,24879839,3
+85085943,24879839,3
+sunshineonlyme,24879839,3
+twwfbbr,24879839,1
+129473035,24879839,5
+sabisi,24879839,2
+46975060,24879839,4
+38494486,24879839,3
+3918619,24879839,1
+56843528,24879839,4
+hwh,24879839,-1
+yangtao0810,24879839,3
+58176321,24879839,-1
+136675201,24879839,1
+136988175,24879839,2
+X,24879839,2
+2661625,24879839,3
+69204623,24879839,1
+66172023,24879839,4
+kamoku,24879839,-1
+52147875,24879839,2
+4310321,24879839,1
+fancybear,24879839,1
+65692300,24879839,1
+115474394,24879839,4
+abunda,24879839,2
+depressheart,24879839,3
+3341865,24879839,2
+95147125,24879839,1
+76858812,24879839,4
+35384928,24879839,4
+137898837,24879839,-1
+ever4ever,24879839,3
+62540914,24879839,3
+50386980,24879839,3
+JUNREYOO,24879839,3
+134475269,24879839,1
+3496829,24879839,2
+lemon19xx,24879839,3
+61053106,24879839,2
+ben_nsr,24879839,2
+39646385,24879839,2
+131208902,24879839,2
+136942011,24879839,3
+34702944,24879839,3
+V.c,24879839,1
+superman-cici,24879839,4
+RainingOutside,24879839,1
+tanabata,24879839,3
+137503237,24879839,2
+51638198,24879839,3
+27323715,24879839,3
+8342264,24879839,2
+cecaazhang,24879839,2
+onlyxhnibendan,24879839,1
+anlinamagic,24879839,3
+amis110,24879839,4
+31555036,24879839,2
+1542914,24879839,2
+78458638,24879839,2
+shuibingyuetama,24879839,4
+27060036,24879839,3
+58202321,24879839,3
+nwpu642,24879839,3
+5760403,24879839,3
+Alejandro0929,24879839,3
+56128547,24879839,2
+53357096,24879839,2
+55454916,24879839,2
+47867887,24879839,3
+SummerRyanShu,24879839,4
+45385281,24879839,4
+10022185,24879839,1
+DiamondRion,24879839,1
+zhda,24879839,-1
+50817761,24879839,1
+69255956,24879839,5
+122819794,24879839,1
+a.muriel,24879839,2
+134643922,24879839,3
+colarxu,24879839,3
+36151365,24879839,3
+134958534,24879839,1
+59205597,24879839,3
+58959340,24879839,4
+114503696,24879839,2
+zl_2121,24879839,3
+78413432,24879839,4
+63931200,24879839,2
+54273279,24879839,3
+113345841,24879839,3
+Rapunzel_y,24879839,3
+2710241,24879839,2
+39294617,24879839,2
+rongyan1223,24879839,2
+74777579,24879839,1
+summercold,24879839,4
+51060168,24879839,2
+niushansuan313,24879839,2
+Mianmian.,24879839,1
+57218441,24879839,3
+68630098,24879839,2
+beautifulsmile,24879839,1
+133239175,24879839,2
+100547017,24879839,3
+59188148,24879839,-1
+waiting.u,24879839,3
+88588672,24879839,-1
+35288599,24879839,2
+50169799,24879839,2
+4841319,24879839,5
+2078067,24879839,3
+130538833,24879839,4
+47624847,24879839,3
+wangys82,24879839,2
+62157854,24879839,3
+128885646,24879839,2
+lspansies914,24879839,1
+solitarypeak,24879839,3
+3933863,24879839,3
+60674505,24879839,2
+62296063,24879839,3
+23403898,24879839,1
+59336433,24879839,3
+marthachan,24879839,3
+33990008,24879839,3
+miaoxie1997,24879839,4
+29800208,24879839,-1
+65808735,24879839,1
+79648769,24879839,4
+88171131,24879839,2
+44367163,24879839,4
+46346813,24879839,3
+4079793,24879839,4
+130273030,24879839,3
+hexin199012,24879839,-1
+45864291,24879839,4
+suxiaoqian007,24879839,3
+49052740,24879839,3
+97010885,24879839,3
+JAVAAU,24879839,1
+54432513,24879839,5
+120832541,24879839,3
+janejanechan,24879839,5
+yustone,24879839,4
+8026660,24879839,2
+46496783,24879839,1
+weiluxiandexue,24879839,1
+2738931,24879839,3
+nemooO,24879839,2
+bettersnail,24879839,-1
+39362601,24879839,2
+32033776,24879839,2
+135330943,24879839,2
+nidada,24879839,1
+123111535,24879839,2
+liuzihao6211,24879839,1
+1250982,24879839,3
+63993568,24879839,4
+panz,24879839,1
+2563642,24879839,1
+27403984,24879839,3
+2851110,24879839,3
+summerjie,24879839,2
+73993174,24879839,3
+44900783,24879839,2
+59734865,24879839,1
+NaDreaming,24879839,2
+xuzhezhen,24879839,4
+2720030,24879839,3
+chaikuan,24879839,3
+127062843,24879839,3
+jijeelau,24879839,2
+ihelan,24879839,4
+61558891,24879839,1
+102610917,24879839,5
+67823605,24879839,2
+superdavinic,24879839,-1
+waiwai323,24879839,1
+13191648,24879839,2
+124246405,24879839,3
+keinshen,24879839,2
+mickjoust,24879839,2
+blueant,24879839,3
+lynnwhite,24879839,3
+ouiexilepoppy,24879839,3
+shanliang-,24879839,4
+49174242,24879839,3
+2341012,24879839,4
+vivacto,24879839,2
+61315630,24879839,4
+miaoshu922,24879839,2
+79141941,24879839,3
+123036643,24879839,2
+60220254,24879839,3
+134140438,24879839,3
+47740453,24879839,2
+megumi2046,24879839,2
+67464328,24879839,2
+136796951,24879839,4
+41805226,24879839,1
+1103922,24879839,2
+52639695,24879839,2
+Tz0202,24879839,2
+14583847,24879839,3
+1555603,24879839,5
+128759511,24879839,3
+4552437,24879839,4
+evangeline1101,24879839,1
+54162773,24879839,4
+85770162,24879839,4
+73536867,24879839,3
+96638998,24879839,3
+ssdgts,24879839,2
+51663220,24879839,2
+89892294,24879839,4
+61315672,24879839,2
+dq512,24879839,3
+58497726,24879839,3
+56076158,24879839,1
+68635736,24879839,1
+88595142,24879839,4
+74936247,24879839,4
+51053103,24879839,3
+liux5520,24879839,3
+zapoper,24879839,2
+62932403,24879839,3
+136438728,24879839,3
+15752330,24879839,3
+x.xiong,24879839,2
+YHC08300604,24879839,2
+60925481,24879839,3
+42910842,24879839,3
+77182257,24879839,3
+77182257,24879839,3
+134519666,24879839,2
+Razzmatazz,24879839,2
+princesssyn,24879839,1
+58707423,24879839,3
+59992323,24879839,2
+134413229,24879839,1
+waynekong,24879839,1
+siren1219,24879839,3
+137325687,24879839,2
+38741483,24879839,2
+dujianpeng,24879839,3
+3203530,24879839,2
+55412522,24879839,4
+64382868,24879839,3
+61128841,24879839,2
+34061777,24879839,1
+80028681,24879839,3
+42555541,24879839,-1
+67842305,24879839,3
+58935563,24879839,1
+59587066,24879839,2
+125675802,24879839,3
+baby4inlove,24879839,4
+22203596,24879839,4
+qinghong,24879839,1
+65404776,24879839,4
+56897513,24879839,3
+ii53231323,24879839,1
+71183607,24879839,1
+136810122,24879839,2
+fluffycat,24879839,2
+135510742,24879839,4
+iamdzn,24879839,1
+46949718,24879839,1
+3818843,24879839,2
+13165561,24879839,1
+79272694,24879839,1
+bmxq3739,24879839,3
+50275832,24879839,5
+129236107,24879839,1
+137178370,24879839,2
+vivi_80s,24879839,3
+5518860,24879839,2
+72941253,24879839,2
+98357097,24879839,3
+slpsnoopy,24879839,5
+47752656,24879839,5
+73530411,24879839,4
+40558804,24879839,3
+135197318,24879839,2
+G-myloxg,24879839,3
+58906924,24879839,3
+frankie0927,24879839,5
+24793003,24879839,2
+55793019,24879839,3
+mi-hang,24879839,4
+RoveSoul,24879839,4
+95980532,24879839,2
+79990790,24879839,3
+JOOOO,24879839,2
+49162215,24879839,3
+shbuddy,24879839,1
+84698699,24879839,2
+53983091,24879839,2
+122860615,24879839,2
+xianxiansushou,24879839,2
+54991499,24879839,1
+61619787,24879839,1
+cloverwhite,24879839,2
+68024590,24879839,2
+50238914,24879839,3
+137735733,24879839,4
+suzhaoyang,24879839,2
+douban_ownjson,24879839,3
+69618920,24879839,4
+suzichong,24879839,2
+73661535,24879839,2
+24365141,24879839,2
+stelia,24879839,4
+81369268,24879839,3
+keesh,24879839,1
+33998969,24879839,2
+meadow0618,24879839,2
+53094431,24879839,1
+littleric3,24879839,3
+46506835,24879839,1
+50454330,24879839,2
+1327393,24879839,4
+122476573,24879839,4
+18184820,24879839,2
+2628458,24879839,3
+cindy_m,24879839,3
+rainysue,24879839,2
+alks,24879839,4
+60145877,24879839,3
+11017625,24879839,1
+70057422,24879839,3
+68457984,24879839,4
+70138570,24879839,1
+70138570,24879839,1
+135225419,24879839,4
+54946553,24879839,-1
+75727476,24879839,2
+122079973,24879839,5
+1254067,24879839,3
+92962162,24879839,3
+NINEYR,24879839,2
+61541011,24879839,3
+88539374,24879839,3
+132444837,24879839,3
+chenjubo,24879839,3
+119456438,24879839,2
+tmas,24879839,1
+66707094,24879839,5
+23741906,24879839,3
+47471992,24879839,2
+saccharinTang,24879839,3
+80701511,24879839,3
+105345021,24879839,5
+ciri,24879839,2
+silousilingsi,24879839,4
+126435431,24879839,2
+1251804,24879839,3
+50838758,24879839,4
+o0xffff,24879839,3
+2337990,24879839,1
+3008889,24879839,3
+48156216,24879839,3
+c2h4cn,24879839,2
+2257166,24879839,2
+80674994,24879839,1
+127480277,24879839,3
+70950231,24879839,3
+77434550,24879839,2
+50192585,24879839,2
+menzeld,24879839,2
+1965573,24879839,1
+55815059,24879839,2
+65369660,24879839,2
+65369660,24879839,2
+125827809,24879839,3
+90987820,24879839,1
+melody1971,24879839,3
+48085407,24879839,3
+130370376,24879839,2
+1399115,24879839,3
+74139940,24879839,4
+caomeivivian,24879839,-1
+76659910,24879839,5
+119454086,24879839,2
+is_xiaoshu,24879839,4
+simmychow,24879839,4
+57249769,24879839,2
+136891005,24879839,3
+98730295,24879839,2
+63044289,24879839,1
+3682912,24879839,5
+73470763,24879839,4
+stigie,24879839,3
+122218547,24879839,2
+53647318,24879839,5
+81591006,24879839,3
+3346776,24879839,2
+121740137,24879839,1
+Valn,24879839,1
+79500477,24879839,3
+scorpio922,24879839,4
+26358360,24879839,1
+52634329,24879839,3
+79053164,24879839,2
+126007802,24879839,2
+44112284,24879839,3
+2392193,24879839,3
+notheme,24879839,2
+8499887,24879839,2
+MayaDey,24879839,1
+68572378,24879839,4
+37862989,24879839,4
+tmz1127,24879839,3
+luohuazhu,24879839,2
+kongkong7,24879839,4
+mdccyoga,24879839,3
+46040640,24879839,3
+heidyxu,24879839,2
+57815451,24879839,3
+fadge,24879839,2
+xiaobob03,24879839,3
+youzhiqiang,24879839,3
+70379849,24879839,2
+52536002,24879839,3
+38863376,24879839,4
+60119754,24879839,3
+missliuyuan,24879839,2
+67801477,24879839,-1
+4448227,24879839,3
+sevenamo,24879839,2
+51491347,24879839,4
+75923053,24879839,3
+106730683,24879839,2
+67899775,24879839,5
+chriseva,24879839,3
+RaphaelDeng,24879839,2
+68123525,24879839,2
+71917067,24879839,3
+36472111,24879839,2
+121146535,24879839,2
+42387352,24879839,4
+47378966,24879839,2
+24910421,24879839,2
+1841757,24879839,5
+119081444,24879839,3
+53791114,24879839,3
+ayi2012,24879839,4
+wudongmian,24879839,4
+88679885,24879839,3
+48792138,24879839,2
+65931842,24879839,3
+1437339,24879839,1
+46823718,24879839,4
+42204428,24879839,1
+mashasha,24879839,2
+2812420,24879839,3
+125784671,24879839,2
+64968690,24879839,1
+104645021,24879839,2
+45549330,24879839,3
+4534607,24879839,4
+64799751,24879839,2
+127951371,24879839,2
+61348061,24879839,3
+2190743,24879839,5
+funnyface,24879839,3
+26812348,24879839,5
+84609158,24879839,2
+123927119,24879839,2
+losta,24879839,4
+123298914,24879839,3
+69704401,24879839,2
+58392670,24879839,4
+kanagawa,24879839,1
+43511337,24879839,1
+74341534,24879839,3
+68977947,24879839,3
+wch2020,24879839,3
+corner1225,24879839,1
+81445026,24879839,1
+134584881,24879839,1
+HimutaQ,24879839,1
+33890560,24879839,3
+4426162,24879839,1
+122039396,24879839,2
+131845152,24879839,4
+fish0813,24879839,2
+2243610,24879839,1
+Jessicatime,24879839,-1
+135074228,24879839,2
+96758494,24879839,3
+135530165,24879839,3
+2211361,24879839,2
+2211361,24879839,2
+49886917,24879839,3
+61392823,24879839,2
+65027660,24879839,2
+132799759,24879839,3
+50552660,24879839,5
+1560279,24879839,4
+zhixiaoxia,24879839,3
+84975793,24879839,4
+56948968,24879839,3
+1360475,24879839,3
+casuallife,24879839,3
+2248994,24879839,2
+42955910,24879839,5
+60141694,24879839,3
+MaclovenZD,24879839,3
+48690655,24879839,2
+136971594,24879839,3
+132065592,24879839,2
+76147632,24879839,5
+131187465,24879839,2
+37312382,24879839,-1
+77318747,24879839,4
+48090448,24879839,3
+fanqu,24879839,2
+Aurora707,24879839,1
+LY-wap,24879839,3
+2317327,24879839,1
+98956225,24879839,2
+100445422,24879839,3
+2544734,24879839,1
+Eraechoin,24879839,2
+1359854,24879839,5
+43958959,24879839,3
+ysj,24879839,1
+73655533,24879839,2
+48623920,24879839,3
+kgao,24879839,2
+132706095,24879839,1
+90727698,24879839,3
+134258996,24879839,5
+apalingenesis,24879839,-1
+34464499,24879839,2
+48872434,24879839,2
+60803592,24879839,2
+82422832,24879839,2
+nanjing_10000,24879839,2
+4311033,24879839,2
+75360409,24879839,3
+2855594,24879839,3
+137340242,24879839,3
+130727790,24879839,3
+lllusion,24879839,-1
+barcelonazhou,24879839,-1
+xeniaxenia,24879839,4
+liandilove,24879839,2
+99022280,24879839,3
+116420053,24879839,3
+emmalty,24879839,2
+62544588,24879839,1
+emmalty,24879839,2
+62544588,24879839,1
+ihaving,24879839,1
+134022408,24879839,3
+120795158,24879839,3
+119801631,24879839,2
+xiongmaotang,24879839,1
+Hyke,24879839,2
+60389912,24879839,2
+136663776,24879839,3
+LSD-330mg,24879839,3
+83082382,24879839,3
+52769100,24879839,1
+sunflower37,24879839,2
+jiuyang,24879839,3
+63937204,24879839,2
+83242010,24879839,5
+4223711,24879839,3
+46636970,24879839,2
+57572100,24879839,2
+himimi,24879839,3
+44236825,24879839,2
+74652601,24879839,1
+luanwuCAT,24879839,1
+xer931024lx,24879839,2
+78684815,24879839,2
+101722992,24879839,1
+13319192,24879839,-1
+71117694,24879839,2
+douban0805,24879839,4
+lorry316,24879839,2
+echosanmao,24879839,2
+64429820,24879839,2
+81962971,24879839,4
+135979923,24879839,3
+Haiyinlisi,24879839,1
+imfroggie,24879839,3
+82099941,24879839,3
+jiushitime,24879839,1
+132790620,24879839,2
+132790620,24879839,2
+nx188,24879839,-1
+62021604,24879839,5
+58290750,24879839,2
+115645045,24879839,1
+64881520,24879839,3
+82058844,24879839,3
+fan0208,24879839,1
+119903956,24879839,2
+79399194,24879839,2
+3154743,24879839,1
+ideal.yue,24879839,4
+41354434,24879839,2
+aimeelu,24879839,3
+68564015,24879839,2
+108210723,24879839,5
+88425662,24879839,3
+linxlee,24879839,1
+35931052,24879839,3
+65086127,24879839,4
+130499897,24879839,3
+32019435,24879839,2
+baiyang36172417,24879839,-1
+2279647,24879839,2
+4071809,24879839,2
+130779091,24879839,1
+2487635,24879839,-1
+83668746,24879839,3
+48823817,24879839,3
+130773923,24879839,3
+jinmenmaomao,24879839,4
+Vason_li,24879839,2
+saintcyr,24879839,1
+130445057,24879839,3
+90338227,24879839,2
+45726467,24879839,2
+H897120417,24879839,3
+bhbst,24879839,2
+3215335,24879839,1
+60367888,24879839,3
+53939822,24879839,3
+67646824,24879839,3
+35442751,24879839,4
+123981599,24879839,2
+119030495,24879839,1
+45577906,24879839,2
+53782984,24879839,3
+65240470,24879839,1
+130557749,24879839,2
+yuefulun,24879839,3
+40596238,24879839,3
+48247472,24879839,4
+archisong,24879839,1
+horadric,24879839,2
+127637898,24879839,-1
+46734513,24879839,2
+55688426,24879839,1
+33737693,24879839,3
+ambehr,24879839,3
+RainbowRen,24879839,3
+52985426,24879839,1
+violet412,24879839,4
+45856827,24879839,3
+53317019,24879839,2
+62686730,24879839,3
+1772338,24879839,5
+58504822,24879839,3
+93823911,24879839,3
+2186544,24879839,2
+mikesun,24879839,2
+6299349,24879839,1
+veroniques,24879839,3
+47099049,24879839,1
+colormoon,24879839,3
+65755701,24879839,3
+102460739,24879839,4
+puseman,24879839,4
+butina,24879839,1
+52360941,24879839,2
+77266126,24879839,2
+30569827,24879839,4
+wsyue,24879839,3
+105804171,24879839,5
+49724572,24879839,3
+65087315,24879839,3
+57294981,24879839,3
+Wkw1129BZBHS,24879839,4
+120287193,24879839,3
+93665278,24879839,4
+yxmj1982,24879839,3
+l726,24879839,4
+1495064,24879839,2
+133319658,24879839,2
+134288385,24879839,4
+bamboo4768,24879839,2
+2625768,24879839,2
+antivirus,24879839,2
+84866154,24879839,2
+46579498,24879839,-1
+136251378,24879839,4
+72184876,24879839,3
+mengaxin,24879839,2
+82456949,24879839,3
+FanTastic-Y,24879839,1
+57938634,24879839,2
+50797390,24879839,2
+121739485,24879839,2
+120969873,24879839,4
+130566544,24879839,4
+103486960,24879839,3
+137108959,24879839,3
+leryang,24879839,2
+48807966,24879839,3
+82891330,24879839,3
+84097118,24879839,1
+36302109,24879839,1
+84109478,24879839,3
+40822709,24879839,3
+catakata,24879839,2
+ricohjing,24879839,1
+3027228,24879839,-1
+migesha,24879839,3
+fish1984,24879839,4
+46729768,24879839,1
+79803791,24879839,3
+66794531,24879839,1
+36292110,24879839,1
+131909298,24879839,3
+53212036,24879839,3
+136026655,24879839,1
+1877273,24879839,5
+3606643,24879839,1
+annabelle98,24879839,3
+showlin.love,24879839,2
+1188869,24879839,1
+lichade,24879839,2
+127120252,24879839,2
+ariellau,24879839,2
+49642517,24879839,2
+eiris,24879839,2
+1329230,24879839,2
+loveisnothing,24879839,4
+diaobao11,24879839,4
+1990106,24879839,1
+4736842,24879839,5
+duoxingxing,24879839,3
+luvingGY,24879839,3
+124647379,24879839,2
+73319989,24879839,3
+46963738,24879839,2
+Metal.GY,24879839,1
+foxhao1899,24879839,5
+116271293,24879839,2
+50282944,24879839,1
+78900467,24879839,3
+2805894,24879839,2
+45752455,24879839,5
+65565072,24879839,1
+88658178,24879839,2
+132074437,24879839,2
+fanshall,24879839,3
+splu5,24879839,4
+2226886,24879839,2
+33963536,24879839,5
+1485351,24879839,2
+joy.6,24879839,1
+134505006,24879839,2
+103230972,24879839,1
+67943333,24879839,3
+77279962,24879839,4
+116651714,24879839,3
+58762937,24879839,3
+64636534,24879839,3
+57577352,24879839,2
+88322769,24879839,4
+14696091,24879839,1
+jueyouqing,24879839,1
+NoddyHouse,24879839,2
+79822624,24879839,2
+42170299,24879839,1
+grey_gallery,24879839,3
+2890003,24879839,3
+58165403,24879839,4
+3799054,24879839,3
+4735214,24879839,2
+Bridget327,24879839,2
+90617915,24879839,-1
+61752391,24879839,2
+61569587,24879839,3
+59893880,24879839,4
+Y_juana,24879839,1
+severson,24879839,-1
+51503469,24879839,3
+57884956,24879839,4
+45087772,24879839,5
+2469434,24879839,2
+fanink,24879839,1
+yini100,24879839,3
+1433766,24879839,-1
+mayliyife,24879839,2
+1576826,24879839,2
+133539499,24879839,1
+133711771,24879839,4
+61181084,24879839,3
+55953438,24879839,4
+QWind,24879839,3
+aegeanguo,24879839,4
+56260092,24879839,3
+yangjiao0407,24879839,2
+i5567,24879839,4
+136988227,24879839,2
+3512976,24879839,2
+42359539,24879839,2
+deeplychan,24879839,1
+mengmaozi,24879839,3
+4338735,24879839,3
+smallfish.xy,24879839,-1
+wluming,24879839,3
+128304317,24879839,4
+4749427,24879839,5
+70085940,24879839,4
+60849208,24879839,3
+xrw,24879839,3
+53008518,24879839,4
+43395025,24879839,3
+74667148,24879839,1
+60208379,24879839,3
+dorothealu,24879839,2
+luymalliz,24879839,2
+89722994,24879839,2
+36109432,24879839,3
+53086147,24879839,-1
+1973642,24879839,1
+65678306,24879839,1
+1386398,24879839,5
+toucHero,24879839,2
+Max-66,24879839,1
+uhuruqingcheng,24879839,3
+48140497,24879839,1
+luvkhalil,24879839,1
+luvkhalil,24879839,1
+48355918,24879839,2
+66644724,24879839,2
+52982078,24879839,3
+qfkx,24879839,4
+asdf710667,24879839,2
+107827183,24879839,1
+60275352,24879839,4
+25885626,24879839,4
+3860913,24879839,3
+kinkin77,24879839,-1
+41963538,24879839,3
+73498656,24879839,2
+79403908,24879839,1
+135403434,24879839,2
+4361353,24879839,2
+77621365,24879839,4
+134483683,24879839,3
+3610817,24879839,1
+IrisChueng,24879839,3
+35453500,24879839,3
+64332341,24879839,3
+53477033,24879839,2
+91948912,24879839,1
+56751035,24879839,3
+66461922,24879839,1
+72934606,24879839,2
+kirahome,24879839,3
+silence0117,24879839,3
+4141993,24879839,2
+4195216,24879839,2
+18071732,24879839,3
+domber,24879839,4
+1370532,24879839,2
+14533413,24879839,1
+125200763,24879839,-1
+68864457,24879839,2
+124618760,24879839,3
+kissorli,24879839,3
+weixiaobao,24879839,4
+pgdjx,24879839,1
+spaceage,24879839,-1
+38850585,24879839,1
+26743316,24879839,3
+61953501,24879839,2
+3302374,24879839,3
+janiiic,24879839,3
+jech,24879839,3
+113582401,24879839,2
+3624250,24879839,3
+1307328,24879839,2
+66371515,24879839,1
+Skybehindme,24879839,2
+2614455,24879839,1
+13631484,24879839,2
+136765411,24879839,3
+52755966,24879839,2
+Harbin2012,24879839,1
+63874494,24879839,2
+desperadocow,24879839,2
+2178430,24879839,1
+39587317,24879839,3
+libin1012,24879839,1
+4239821,24879839,2
+50815704,24879839,3
+74520364,24879839,2
+1631812,24879839,3
+3956873,24879839,2
+37190150,24879839,4
+137206904,24879839,2
+68390155,24879839,2
+46159581,24879839,-1
+54833515,24879839,-1
+1793602,24879839,2
+wyxwyx1993,24879839,2
+1556970,24879839,2
+2084798,24879839,2
+3611128,24879839,2
+edie.dandelion,24879839,2
+42175180,24879839,3
+109315298,24879839,4
+omyhao,24879839,2
+55296973,24879839,-1
+xingguanmeng,24879839,1
+45012026,24879839,3
+sogstad,24879839,3
+60736257,24879839,2
+74719967,24879839,3
+56682623,24879839,5
+77884894,24879839,3
+haizeihuahua,24879839,3
+2250895,24879839,2
+51980999,24879839,-1
+fanbucloud,24879839,1
+tadada,24879839,2
+47054399,24879839,2
+65851504,24879839,2
+alexontheway,24879839,1
+urwill,24879839,3
+flcl,24879839,3
+9551191,24879839,3
+39879452,24879839,4
+127619617,24879839,3
+41932958,24879839,4
+68771576,24879839,2
+sugarjune,24879839,3
+136898278,24879839,3
+121763910,24879839,3
+56271883,24879839,2
+70325724,24879839,1
+55770448,24879839,2
+136409582,24879839,2
+57238055,24879839,3
+120683474,24879839,-1
+128167486,24879839,2
+119698382,24879839,3
+134499894,24879839,2
+120448486,24879839,2
+chch1420,24879839,-1
+47444356,24879839,2
+39315197,24879839,3
+3026099,24879839,2
+SnowChou,24879839,2
+54098901,24879839,1
+lmyqdsssslw,24879839,3
+ge383203180xin,24879839,4
+41417844,24879839,3
+mxmfly,24879839,1
+53777272,24879839,4
+Gamza,24879839,3
+69141036,24879839,4
+liuanan0606,24879839,2
+70487695,24879839,3
+xiaoyufan569801,24879839,5
+79675751,24879839,2
+56930842,24879839,2
+68550514,24879839,2
+68551392,24879839,2
+120567507,24879839,3
+123112465,24879839,3
+49227735,24879839,2
+3097912,24879839,2
+55352807,24879839,2
+40783225,24879839,2
+Yang0531,24879839,-1
+shavivi525,24879839,3
+54976256,24879839,2
+67148889,24879839,3
+missinlove,24879839,2
+47754651,24879839,2
+curlyfox,24879839,2
+49241136,24879839,4
+132242601,24879839,1
+tumin,24879839,2
+136295452,24879839,3
+57886275,24879839,2
+55646304,24879839,2
+wsyzoscar,24879839,2
+C443658,24879839,2
+68759348,24879839,4
+50859088,24879839,3
+tsnz,24879839,-1
+46020433,24879839,1
+26527485,24879839,4
+49770977,24879839,1
+i.m.yours,24879839,3
+50726933,24879839,1
+DKfeixiang,24879839,1
+128113494,24879839,2
+48998348,24879839,3
+sonet,24879839,4
+JackHChan,24879839,1
+here-for-you,24879839,3
+semee,24879839,2
+66991215,24879839,3
+davetw,24879839,2
+91958420,24879839,4
+122048396,24879839,2
+48791024,24879839,3
+anthonywu,24879839,1
+2411733,24879839,1
+130709102,24879839,1
+135482587,24879839,2
+136570090,24879839,2
+120696771,24879839,3
+63722838,24879839,2
+134631211,24879839,2
+136464222,24879839,3
+130733036,24879839,2
+2565702,24879839,2
+64309170,24879839,2
+62202735,24879839,3
+50285743,24879839,5
+aooi8901,24879839,4
+ispep,24879839,2
+OYPP1987,24879839,3
+64884887,24879839,2
+57836753,24879839,5
+jean4you,24879839,1
+zhenziren,24879839,3
+53916327,24879839,3
+yixing365,24879839,4
+34250438,24879839,-1
+77350146,24879839,1
+1626349,24879839,3
+changtengteng,24879839,4
+49994320,24879839,3
+Yangtze_Ann,24879839,-1
+44032953,24879839,3
+58549515,24879839,3
+115051698,24879839,4
+daisy702,24879839,3
+sungh7a,24879839,1
+34002570,24879839,3
+50392258,24879839,1
+wayneyuwu,24879839,2
+yanyang210,24879839,-1
+46119744,24879839,5
+4118910,24879839,3
+58369888,24879839,2
+1408253,24879839,3
+darkhaze,24879839,1
+6972638,24879839,3
+42839505,24879839,5
+88638997,24879839,3
+101393970,24879839,3
+122373357,24879839,1
+127080746,24879839,2
+brallow,24879839,1
+49218812,24879839,-1
+52629724,24879839,3
+53526844,24879839,3
+76872047,24879839,1
+3142312,24879839,1
+68715109,24879839,2
+18635744,24879839,4
+43639134,24879839,2
+78286354,24879839,2
+130729175,24879839,3
+2857621,24879839,-1
+68630108,24879839,2
+64568355,24879839,3
+ferkmavie,24879839,1
+CCLOVEFF,24879839,3
+85123915,24879839,2
+letmesay,24879839,4
+3363353,24879839,1
+130419426,24879839,3
+43129996,24879839,3
+fangyuanshili,24879839,1
+canace_wang,24879839,2
+46210947,24879839,4
+67652760,24879839,2
+62705311,24879839,2
+56872635,24879839,3
+daysofyouth,24879839,4
+48090771,24879839,2
+68666799,24879839,3
+anluos,24879839,2
+134574897,24879839,2
+36664394,24879839,2
+137061387,24879839,4
+suiffeng0504,24879839,2
+131205877,24879839,4
+xclc,24879839,-1
+92320890,24879839,4
+136978639,24879839,4
+13424583,24879839,2
+58131163,24879839,1
+132701112,24879839,3
+Niro-Zeng,24879839,4
+66303211,24879839,1
+wgutou,24879839,2
+69439267,24879839,3
+lolipig,24879839,4
+46574450,24879839,2
+58826642,24879839,1
+53920626,24879839,3
+revaoo,24879839,2
+72030816,24879839,4
+136810733,24879839,2
+137061376,24879839,1
+122889599,24879839,1
+83195313,24879839,3
+zuozuoqing,24879839,3
+135102331,24879839,5
+57615935,24879839,2
+wklappt,24879839,2
+3074747,24879839,2
+63090885,24879839,-1
+Cherie.,24879839,2
+dqlead,24879839,5
+cassandra73,24879839,1
+plstudio,24879839,1
+48956654,24879839,3
+79914885,24879839,4
+35910958,24879839,1
+4337215,24879839,4
+scarllet1984,24879839,1
+50960697,24879839,3
+48170406,24879839,3
+58697350,24879839,3
+120947006,24879839,1
+charleneqq,24879839,5
+61883535,24879839,4
+114149260,24879839,1
+81685996,24879839,1
+wowcecilia,24879839,2
+fiona_yst,24879839,-1
+4668252,24879839,3
+84003177,24879839,3
+51212428,24879839,4
+103277074,24879839,4
+33021828,24879839,3
+quanlong35,24879839,4
+2089491,24879839,-1
+59270375,24879839,3
+aiyawocaonima,24879839,3
+4538460,24879839,2
+lampslovesterry,24879839,1
+136096165,24879839,4
+jay2645,24879839,2
+104489015,24879839,3
+65740339,24879839,4
+81736176,24879839,5
+46370564,24879839,1
+14601311,24879839,4
+xiaolian818,24879839,3
+50925315,24879839,3
+CT19950923,24879839,3
+xiaoluohao,24879839,3
+80905831,24879839,3
+51863917,24879839,2
+nothingbird,24879839,4
+cqingteng,24879839,2
+baiguopi,24879839,3
+104985254,24879839,2
+sa-01,24879839,5
+yi11days,24879839,2
+127725949,24879839,2
+gray_dust,24879839,2
+133590394,24879839,3
+104167946,24879839,2
+63117182,24879839,1
+ivory_wang,24879839,2
+tree1900,24879839,3
+sooora,24879839,5
+63579771,24879839,2
+46936304,24879839,1
+clockwork-fish,24879839,1
+82307280,24879839,1
+3388401,24879839,3
+allenwangzihan,24879839,3
+70855502,24879839,-1
+yangjing113,24879839,2
+63386824,24879839,3
+co_cobalt,24879839,3
+50730385,24879839,3
+46847092,24879839,2
+biptwjw,24879839,3
+huanomgying,24879839,5
+jennykings,24879839,3
+61489786,24879839,4
+126248170,24879839,2
+gravity-sjc,24879839,3
+60696883,24879839,2
+44691353,24879839,1
+115375109,24879839,3
+59914430,24879839,2
+48066975,24879839,1
+slevin1983,24879839,4
+131921881,24879839,3
+136298735,24879839,1
+125655628,24879839,2
+17578809,24879839,1
+50516869,24879839,1
+Coldon,24879839,3
+133296826,24879839,-1
+63568126,24879839,3
+135906739,24879839,4
+135906739,24879839,4
+49366314,24879839,3
+76995701,24879839,3
+ypppp,24879839,4
+57335774,24879839,2
+80810506,24879839,2
+134531645,24879839,2
+27704994,24879839,4
+46493353,24879839,4
+59172571,24879839,3
+lu...lu,24879839,2
+h1057015905,24879839,1
+58009329,24879839,1
+51391216,24879839,2
+65317550,24879839,3
+101866753,24879839,1
+47605458,24879839,3
+64954125,24879839,3
+ran3233,24879839,3
+2858772,24879839,4
+45925638,24879839,-1
+67826155,24879839,3
+68636133,24879839,3
+33973051,24879839,1
+65854158,24879839,3
+adelestarry,24879839,4
+rozing,24879839,2
+63707938,24879839,1
+tutudance,24879839,2
+28919297,24879839,2
+79143222,24879839,2
+1365076,24879839,2
+58954301,24879839,2
+4010095,24879839,1
+68578532,24879839,-1
+59862121,24879839,2
+phlunhai,24879839,3
+zx8713,24879839,2
+1487998,24879839,3
+okayone,24879839,2
+lovemetaphor,24879839,3
+53381748,24879839,2
+77244535,24879839,3
+weihao,24879839,-1
+3771475,24879839,2
+sisyphos,24879839,3
+topxpp,24879839,1
+55950775,24879839,-1
+55021112,24879839,3
+85003945,24879839,1
+40269834,24879839,2
+4507715,24879839,2
+mengzhuxiongmao,24879839,2
+46630645,24879839,4
+134620766,24879839,2
+69968371,24879839,2
+55609637,24879839,3
+twoest,24879839,5
+we_are_Smug,24879839,4
+1324079,24879839,3
+4315200,24879839,3
+56288464,24879839,3
+45545379,24879839,4
+iv99,24879839,3
+zhanglehu,24879839,2
+9095449,24879839,5
+82338100,24879839,3
+130941733,24879839,2
+jennyseath,24879839,1
+134512790,24879839,1
+50536010,24879839,2
+133839811,24879839,2
+orange38,24879839,1
+72640748,24879839,1
+53635906,24879839,1
+flydolphin,24879839,3
+123001004,24879839,3
+joythm-aspirin,24879839,1
+39855725,24879839,2
+53347373,24879839,3
+64165880,24879839,1
+dalizi,24879839,4
+136653803,24879839,2
+dyjtony,24879839,3
+sniperchris,24879839,1
+120470819,24879839,3
+40587202,24879839,4
+2096526,24879839,3
+79566994,24879839,1
+4170547,24879839,3
+think_think,24879839,3
+TOXIMUS,24879839,2
+60854908,24879839,3
+87704099,24879839,3
+thesillyone,24879839,3
+60079529,24879839,3
+3171576,24879839,2
+58051524,24879839,3
+57785589,24879839,3
+53723666,24879839,2
+zoe9x,24879839,3
+kashandela,24879839,4
+46717784,24879839,3
+58079311,24879839,4
+53734105,24879839,2
+92081445,24879839,3
+64515288,24879839,2
+lisacat611,24879839,3
+3306699,24879839,1
+1606950,24879839,-1
+58927688,24879839,3
+70453279,24879839,4
+74471598,24879839,2
+xmf1227,24879839,4
+antony_bai,24879839,2
+formosa12,24879839,2
+66575578,24879839,3
+nautycat,24879839,2
+50259221,24879839,2
+eedc,24879839,3
+91140276,24879839,3
+50240966,24879839,4
+63697271,24879839,2
+Zoe-MU,24879839,3
+ooolinda,24879839,4
+46839345,24879839,3
+59226823,24879839,2
+60393651,24879839,3
+87853134,24879839,1
+huanye,24879839,2
+3508160,24879839,1
+101956762,24879839,3
+freekami,24879839,3
+120443579,24879839,4
+67561107,24879839,3
+3080716,24879839,2
+justlinling,24879839,3
+80782547,24879839,4
+14465196,24879839,1
+3296176,24879839,2
+xlei130,24879839,1
+95871505,24879839,2
+anygned,24879839,-1
+Smile_Z,24879839,3
+lemed,24879839,2
+136416982,24879839,-1
+129274650,24879839,2
+58157272,24879839,4
+BritpopStarFeel,24879839,3
+1864569,24879839,3
+zfhouse,24879839,3
+42298202,24879839,2
+135949040,24879839,1
+1444747,24879839,1
+clarify,24879839,2
+2705756,24879839,4
+47803403,24879839,5
+spino,24879839,1
+53561667,24879839,3
+bukeyibuyaoyumi,24879839,4
+42321100,24879839,3
+chougan,24879839,5
+16348172,24879839,1
+68220793,24879839,3
+choulaoya,24879839,3
+136127858,24879839,4
+i1256,24879839,1
+pvo,24879839,3
+136486316,24879839,3
+62717924,24879839,2
+MUTTER,24879839,2
+55354703,24879839,4
+58057227,24879839,3
+5894610,24879839,2
+zhangzongzheng,24879839,2
+50204167,24879839,3
+yardbirds,24879839,3
+118036743,24879839,2
+52187394,24879839,2
+121916264,24879839,3
+55287270,24879839,2
+41841624,24879839,2
+93580918,24879839,4
+aidiren,24879839,2
+136400608,24879839,3
+48686812,24879839,1
+82705487,24879839,4
+Dependon,24879839,3
+128409852,24879839,2
+57565686,24879839,2
+11509694,24879839,4
+47931156,24879839,4
+92900392,24879839,2
+134532187,24879839,3
+donglinbrazil,24879839,4
+3638314,24879839,2
+51206699,24879839,3
+51561268,24879839,3
+yihengxi,24879839,2
+102323615,24879839,2
+102323615,24879839,2
+minishine,24879839,4
+50070864,24879839,3
+cyg,24879839,3
+kiethope,24879839,4
+wshaobo,24879839,2
+4251044,24879839,2
+zoe162534,24879839,4
+83604307,24879839,3
+2161067,24879839,5
+120556407,24879839,2
+44057273,24879839,3
+52316433,24879839,2
+127803773,24879839,4
+43348247,24879839,3
+49159853,24879839,3
+reliefman,24879839,4
+67644854,24879839,2
+hulunaikou,24879839,2
+35149263,24879839,2
+35149263,24879839,2
+62208354,24879839,3
+zhdong,24879839,1
+50738921,24879839,3
+Eriseddddd,24879839,2
+50067985,24879839,2
+elinli00,24879839,3
+135251560,24879839,3
+132954430,24879839,3
+125528314,24879839,3
+45607134,24879839,5
+63014642,24879839,1
+55961282,24879839,1
+133349897,24879839,3
+51525177,24879839,4
+60488216,24879839,3
+kevinwong0723,24879839,1
+81895989,24879839,1
+93866634,24879839,2
+piggy_zq,24879839,2
+43326844,24879839,2
+77380461,24879839,3
+theone26916,24879839,-1
+2464015,24879839,3
+zuohengheng,24879839,3
+47002742,24879839,4
+Video-game,24879839,2
+122103175,24879839,2
+133125055,24879839,2
+32835447,24879839,-1
+lovelyJ,24879839,4
+4141698,24879839,2
+teresa1678,24879839,2
+53353034,24879839,1
+58640081,24879839,2
+3433447,24879839,1
+joesmine,24879839,1
+zeal_she,24879839,1
+pangjiansheng,24879839,3
+carerina,24879839,2
+41572239,24879839,2
+3726200,24879839,2
+52063890,24879839,2
+2338448,24879839,2
+37584215,24879839,2
+1239706,24879839,3
+134540692,24879839,1
+sixiaokong,24879839,2
+38397417,24879839,1
+skysunny,24879839,3
+40185288,24879839,2
+facetosky,24879839,3
+4191277,24879839,3
+78484894,24879839,3
+45753040,24879839,-1
+57370977,24879839,3
+65107816,24879839,5
+cStar,24879839,3
+71667852,24879839,1
+136059490,24879839,4
+114422491,24879839,4
+shizhier,24879839,4
+59514938,24879839,2
+125386476,24879839,2
+61329392,24879839,5
+carrotlalala,24879839,3
+rbowen,24879839,2
+HBtemptation,24879839,1
+132061377,24879839,4
+82892265,24879839,3
+yuanyuhan,24879839,2
+66152773,24879839,4
+xflunlove,24879839,-1
+1010302,24879839,2
+mianmaimai,24879839,3
+53714604,24879839,4
+103551700,24879839,1
+2273247,24879839,3
+2297877,24879839,2
+sinux,24879839,4
+sinux,24879839,4
+89050593,24879839,3
+6649345,24879839,-1
+michiyojun,24879839,2
+56582885,24879839,2
+63361765,24879839,3
+52593168,24879839,-1
+66290632,24879839,3
+54838539,24879839,3
+135090308,24879839,3
+72806494,24879839,3
+dobbie1516,24879839,2
+realweijia,24879839,3
+62699217,24879839,3
+133755694,24879839,2
+4689904,24879839,3
+2291010,24879839,4
+124905970,24879839,2
+51503621,24879839,2
+sloth715,24879839,3
+74567166,24879839,3
+131451534,24879839,2
+56771343,24879839,2
+dahuihuizi,24879839,2
+domiencore,24879839,-1
+50063811,24879839,3
+48304899,24879839,1
+52893055,24879839,3
+134160760,24879839,5
+cy-sunny,24879839,1
+47165746,24879839,3
+eldard,24879839,2
+46169817,24879839,3
+46712687,24879839,1
+fanyiduo,24879839,3
+joieau,24879839,4
+106519480,24879839,3
+2957464,24879839,4
+76573898,24879839,1
+122874127,24879839,4
+131328172,24879839,3
+127375314,24879839,3
+127569899,24879839,2
+49712766,24879839,5
+sunforwhat,24879839,3
+3277665,24879839,3
+ohmymicky,24879839,1
+jinbing,24879839,3
+129863569,24879839,2
+1233601,24879839,4
+131364833,24879839,1
+3929718,24879839,-1
+65079823,24879839,2
+40370688,24879839,5
+135762628,24879839,4
+foxswily,24879839,2
+61944980,24879839,4
+51673183,24879839,2
+72936086,24879839,2
+56856986,24879839,3
+66456284,24879839,3
+32505687,24879839,4
+vva_,24879839,3
+1417703,24879839,1
+45299688,24879839,2
+64882453,24879839,1
+136054482,24879839,5
+q937891120,24879839,2
+2923156,24879839,1
+37567286,24879839,3
+69272743,24879839,2
+62147836,24879839,2
+2168659,24879839,2
+2225215,24879839,2
+2134658,24879839,2
+106345656,24879839,4
+35742329,24879839,4
+75487301,24879839,1
+135812328,24879839,2
+15167698,24879839,1
+LCmoon,24879839,2
+chaud,24879839,3
+3769878,24879839,2
+135145248,24879839,2
+4577694,24879839,3
+47375462,24879839,4
+18965054,24879839,3
+ysatis.wan,24879839,-1
+december.L,24879839,3
+46188471,24879839,4
+44525790,24879839,2
+yeats1865,24879839,2
+czy940903,24879839,3
+77239049,24879839,3
+46914347,24879839,3
+1532705,24879839,4
+sarlthuz,24879839,2
+waterclouder,24879839,4
+inf.,24879839,1
+118269905,24879839,5
+50865043,24879839,2
+1242185,24879839,4
+135995286,24879839,2
+60667221,24879839,1
+70962929,24879839,2
+83192314,24879839,4
+121834295,24879839,3
+22176088,24879839,2
+60041907,24879839,4
+82358961,24879839,5
+adeus_ng,24879839,1
+85170982,24879839,3
+loyanymve,24879839,3
+134630891,24879839,-1
+134640892,24879839,2
+hacker_yi,24879839,3
+3618040,24879839,2
+102956805,24879839,1
+126857138,24879839,3
+51525396,24879839,2
+40582598,24879839,3
+92375932,24879839,3
+51990836,24879839,3
+135975588,24879839,3
+34438026,24879839,3
+snowyhowe,24879839,2
+55621900,24879839,4
+69010983,24879839,2
+63352926,24879839,1
+81767433,24879839,3
+ningyaogezhi,24879839,3
+61726612,24879839,3
+2087622,24879839,3
+damonsheldon,24879839,2
+133564346,24879839,3
+58801917,24879839,3
+71918561,24879839,1
+120409027,24879839,3
+68191014,24879839,1
+58293092,24879839,2
+107702772,24879839,1
+blablablalala,24879839,4
+134537950,24879839,3
+helloivan,24879839,3
+theshow,24879839,1
+127141779,24879839,2
+4457568,24879839,5
+123370298,24879839,3
+bixia,24879839,2
+32418336,24879839,4
+una423,24879839,3
+58013933,24879839,5
+48707650,24879839,3
+54116882,24879839,1
+83086333,24879839,1
+wxcn843,24879839,2
+92945557,24879839,1
+2262469,24879839,1
+64450294,24879839,2
+43864644,24879839,3
+7778058,24879839,4
+37938879,24879839,4
+49892936,24879839,5
+131597292,24879839,4
+48877659,24879839,2
+71316982,24879839,3
+68175783,24879839,3
+116253863,24879839,2
+king-kong,24879839,4
+1780764,24879839,1
+scheny,24879839,1
+134171382,24879839,3
+80209748,24879839,2
+4406180,24879839,3
+53828574,24879839,3
+49798956,24879839,3
+sarahyangs,24879839,3
+milkcandy,24879839,2
+PatriciaChou,24879839,3
+2769218,24879839,3
+sodayui,24879839,2
+olenaooo,24879839,3
+48709802,24879839,3
+72544407,24879839,-1
+121932752,24879839,3
+60963678,24879839,3
+40138522,24879839,1
+49137650,24879839,3
+yuanyuanfeng,24879839,3
+91222138,24879839,4
+41383796,24879839,3
+135801112,24879839,3
+44709496,24879839,3
+64163444,24879839,2
+90582258,24879839,3
+54633919,24879839,3
+58098918,24879839,2
+123280530,24879839,4
+avrilyian,24879839,2
+kinas04,24879839,4
+jiscat,24879839,2
+helgaxu,24879839,2
+42337387,24879839,4
+63228539,24879839,2
+40081609,24879839,4
+62717349,24879839,1
+135277018,24879839,3
+melody.wong,24879839,3
+1708377,24879839,4
+timenull,24879839,2
+rieu,24879839,4
+43780153,24879839,2
+rongmenkezhan,24879839,2
+76552950,24879839,4
+hpcsoar,24879839,1
+yongzou,24879839,5
+sulianhong123,24879839,3
+129235712,24879839,-1
+63579179,24879839,2
+109273896,24879839,4
+lxgend,24879839,2
+119275185,24879839,1
+vanessadali,24879839,1
+adamyoung1518,24879839,1
+47026915,24879839,4
+jimmyusher,24879839,4
+49996599,24879839,3
+49928772,24879839,5
+43332807,24879839,3
+shuizhimuhua,24879839,3
+2510758,24879839,2
+wjlwin,24879839,2
+128111484,24879839,-1
+61229226,24879839,2
+Perhaps_Green,24879839,3
+zhaohanyue,24879839,4
+54885275,24879839,3
+28643180,24879839,3
+samnice,24879839,4
+58179366,24879839,2
+50942013,24879839,2
+51811150,24879839,3
+50643015,24879839,1
+vidia,24879839,4
+81770301,24879839,3
+42636555,24879839,1
+44513386,24879839,5
+133890183,24879839,3
+1581275,24879839,1
+60232354,24879839,1
+floraforever21,24879839,3
+127192204,24879839,2
+64875949,24879839,2
+1796714,24879839,3
+joybang,24879839,3
+63214250,24879839,4
+50771967,24879839,3
+bela,24879839,3
+laura2zero,24879839,4
+koiwai0908,24879839,3
+mohui,24879839,4
+3696011,24879839,4
+weiweiguoer,24879839,3
+28678505,24879839,4
+40401643,24879839,2
+1390707,24879839,2
+stknight,24879839,2
+49840171,24879839,2
+8402557,24879839,3
+70526937,24879839,3
+GKTThh,24879839,3
+laurawang,24879839,-1
+46516486,24879839,2
+69688835,24879839,2
+131489743,24879839,4
+DrinkD,24879839,4
+89694835,24879839,4
+chenghu,24879839,2
+61721303,24879839,3
+46456200,24879839,2
+97869711,24879839,2
+51226041,24879839,3
+4563859,24879839,1
+49702943,24879839,3
+7940742,24879839,4
+124025043,24879839,3
+imdiaosi,24879839,2
+47448238,24879839,5
+4054446,24879839,3
+132190479,24879839,2
+1956404,24879839,3
+3972045,24879839,1
+114850618,24879839,3
+chloe6668,24879839,4
+58913635,24879839,2
+48023115,24879839,2
+60913555,24879839,2
+3189855,24879839,3
+53451776,24879839,1
+2736291,24879839,2
+mihuaka,24879839,3
+57951864,24879839,5
+wf1127,24879839,3
+2744514,24879839,3
+hh55555,24879839,2
+TheBeBe,24879839,3
+119171673,24879839,5
+eileen08,24879839,2
+qiqiemily,24879839,2
+CamilleChang,24879839,1
+sunianjinshired,24879839,3
+Mandychai,24879839,4
+131887197,24879839,4
+4750660,24879839,4
+83034260,24879839,2
+129109098,24879839,5
+104696310,24879839,4
+2003990,24879839,2
+56693883,24879839,3
+2425388,24879839,1
+103708027,24879839,2
+80290185,24879839,3
+kaya_flowers,24879839,-1
+60943988,24879839,3
+3986630,24879839,1
+80482289,24879839,5
+61054715,24879839,1
+9662580,24879839,3
+62877748,24879839,2
+3588825,24879839,5
+63650151,24879839,5
+54543228,24879839,2
+53547561,24879839,3
+78922084,24879839,1
+1215303,24879839,5
+32288408,24879839,4
+79745413,24879839,3
+badgercapture,24879839,4
+F-X-MAN,24879839,2
+3259583,24879839,1
+ryogon,24879839,2
+133574442,24879839,1
+saibei,24879839,4
+river-ff,24879839,-1
+neilfushi,24879839,2
+65948183,24879839,3
+38238164,24879839,4
+yandazhou,24879839,5
+58630944,24879839,3
+28633682,24879839,3
+126435484,24879839,3
+56711504,24879839,2
+1280213,24879839,3
+1300248,24879839,2
+huminyan910801,24879839,4
+72128165,24879839,3
+69862656,24879839,-1
+135671467,24879839,1
+51586984,24879839,3
+mingchaoyan,24879839,3
+121959506,24879839,3
+1751335,24879839,3
+51605005,24879839,3
+41316861,24879839,3
+julia0214,24879839,3
+3178620,24879839,1
+zxman386,24879839,2
+chenshituzhu,24879839,4
+92177885,24879839,3
+135664793,24879839,1
+43966741,24879839,3
+64550355,24879839,2
+95074857,24879839,3
+biguniverse,24879839,3
+120551719,24879839,1
+125074196,24879839,2
+122365182,24879839,2
+shmilyyan,24879839,4
+efscpig,24879839,3
+Mango99101185,24879839,2
+Mango99101185,24879839,2
+40151578,24879839,-1
+zod798,24879839,2
+83030951,24879839,3
+42524624,24879839,5
+120187474,24879839,1
+xisochakaihuale,24879839,2
+55512369,24879839,-1
+52926147,24879839,3
+nicolegong,24879839,1
+52819229,24879839,1
+48052176,24879839,4
+53547991,24879839,1
+43985107,24879839,2
+45875943,24879839,3
+65458998,24879839,3
+129015324,24879839,3
+127083816,24879839,4
+55328950,24879839,3
+rainycats,24879839,3
+Paradox_Q,24879839,2
+95460891,24879839,5
+69776335,24879839,2
+secretxu,24879839,4
+82322843,24879839,2
+63509644,24879839,1
+hehuan1994126,24879839,4
+54024954,24879839,3
+57163926,24879839,1
+126260186,24879839,1
+4109036,24879839,3
+2999725,24879839,2
+60302045,24879839,1
+45034880,24879839,5
+52454145,24879839,3
+cwalet,24879839,1
+135101148,24879839,3
+56626695,24879839,3
+pp3288,24879839,2
+64730225,24879839,3
+mymx,24879839,3
+unrealzhizhi,24879839,1
+47464761,24879839,3
+130692811,24879839,2
+131838919,24879839,1
+xiaoye780621,24879839,3
+louing,24879839,2
+79352949,24879839,3
+119183809,24879839,1
+benbenwinter,24879839,1
+120095166,24879839,3
+54016560,24879839,3
+banana1030,24879839,4
+48604559,24879839,4
+123480642,24879839,2
+quizas63,24879839,3
+66831844,24879839,5
+sabbath_7266,24879839,1
+2671857,24879839,3
+38293223,24879839,4
+3322526,24879839,5
+48697353,24879839,2
+zbpp1986,24879839,1
+134586200,24879839,3
+53749303,24879839,3
+shinizzay,24879839,2
+64797594,24879839,2
+bluegluegun,24879839,2
+2298998,24879839,5
+goodbyesolo,24879839,5
+fotox,24879839,1
+135570170,24879839,3
+50908241,24879839,2
+66104038,24879839,4
+59078172,24879839,1
+134542917,24879839,2
+tacshif,24879839,4
+yorihisa,24879839,2
+54979348,24879839,3
+wu-x,24879839,2
+diewu,24879839,4
+63295082,24879839,3
+39545267,24879839,2
+68421851,24879839,2
+zhoujiewu,24879839,3
+50469026,24879839,3
+woochang,24879839,3
+gaokai3091354,24879839,2
+47855949,24879839,3
+gs21cn,24879839,3
+3433935,24879839,2
+14290269,24879839,5
+121073792,24879839,3
+35907070,24879839,3
+69178327,24879839,2
+89837931,24879839,2
+66103478,24879839,4
+laceless,24879839,-1
+18628004,24879839,2
+Erishia,24879839,1
+51956501,24879839,1
+78202877,24879839,3
+80987413,24879839,2
+bawan01,24879839,4
+ziqian,24879839,2
+wandersu,24879839,3
+zc_726,24879839,3
+63046201,24879839,2
+2519278,24879839,1
+134318408,24879839,1
+nealwzn,24879839,4
+sunchuan,24879839,4
+54034056,24879839,1
+29107256,24879839,3
+1672417,24879839,1
+42919935,24879839,2
+45435595,24879839,2
+135372483,24879839,4
+52753936,24879839,4
+33325682,24879839,3
+2234320,24879839,3
+8729690,24879839,1
+jc119,24879839,4
+DZTL,24879839,4
+100365623,24879839,4
+SEEINGLAU,24879839,3
+48586435,24879839,3
+2063546,24879839,-1
+roor1118,24879839,-1
+Tomatochaoegg,24879839,-1
+yue17years,24879839,3
+4464824,24879839,3
+luziyujiang,24879839,3
+130978369,24879839,1
+81944836,24879839,2
+xiaotianqing,24879839,2
+Ray_Liao,24879839,3
+yushuuk,24879839,3
+78139997,24879839,1
+margaret_yong,24879839,1
+porquetevas,24879839,5
+1967409,24879839,1
+122008582,24879839,4
+44877103,24879839,3
+63323084,24879839,3
+51020341,24879839,2
+53888176,24879839,3
+62535636,24879839,4
+1643126,24879839,1
+123004132,24879839,4
+genial,24879839,1
+49246188,24879839,2
+39947856,24879839,2
+50166201,24879839,2
+mantouniu,24879839,2
+84247711,24879839,3
+Maxy-Shuai,24879839,2
+81542585,24879839,3
+121933047,24879839,3
+samomos,24879839,4
+64683048,24879839,4
+67851025,24879839,4
+120002421,24879839,4
+wangxhtt,24879839,3
+delricardo,24879839,3
+53638972,24879839,2
+46801772,24879839,4
+4280909,24879839,4
+zhongxiaojun,24879839,3
+aureole.x,24879839,-1
+73505807,24879839,5
+49712271,24879839,-1
+sherrytu,24879839,2
+hibi,24879839,3
+kuimouren,24879839,5
+121568598,24879839,2
+89792510,24879839,2
+57589094,24879839,2
+99380462,24879839,2
+sfhuizhang,24879839,3
+sfhuizhang,24879839,3
+2122328,24879839,3
+75723338,24879839,4
+53062232,24879839,2
+lynnofair,24879839,2
+40401113,24879839,2
+shuaziwang,24879839,2
+61209060,24879839,3
+45786589,24879839,2
+fickKPCh,24879839,2
+wjiang,24879839,3
+lihanbin,24879839,3
+ocov,24879839,5
+he0214,24879839,1
+57517262,24879839,2
+47460482,24879839,3
+66714330,24879839,1
+emisyse,24879839,4
+130459392,24879839,2
+lick647,24879839,3
+Rihaulin,24879839,3
+41808846,24879839,4
+34087859,24879839,2
+moxugang,24879839,1
+84064538,24879839,4
+vvvvv5,24879839,1
+80752202,24879839,5
+zhahaibo,24879839,-1
+30148733,24879839,3
+liuyida,24879839,4
+48910590,24879839,2
+60551662,24879839,2
+57771053,24879839,2
+ok-0991,24879839,3
+Nanzwey,24879839,1
+28481892,24879839,2
+pjwrain,24879839,3
+79372078,24879839,3
+135072611,24879839,1
+131527494,24879839,2
+3590324,24879839,3
+releasej,24879839,1
+fatcathead,24879839,4
+60525575,24879839,3
+cayron,24879839,1
+Clytze1023,24879839,3
+dd770523,24879839,4
+102934174,24879839,2
+62737807,24879839,2
+48164798,24879839,3
+41884767,24879839,4
+fanxingcom,24879839,5
+82231172,24879839,4
+zoerose,24879839,3
+3223179,24879839,-1
+47306356,24879839,4
+127148800,24879839,2
+4476641,24879839,3
+wangshaono1,24879839,3
+42991994,24879839,2
+solarshr,24879839,4
+52141922,24879839,3
+elleeagle,24879839,2
+43790255,24879839,2
+2580551,24879839,2
+g.z.y,24879839,2
+2154717,24879839,1
+75851842,24879839,4
+2624503,24879839,4
+43169329,24879839,3
+pandaleilei,24879839,3
+lin2jie,24879839,2
+78908924,24879839,2
+66767418,24879839,5
+135387220,24879839,3
+132025536,24879839,4
+75053222,24879839,3
+53240525,24879839,4
+49663642,24879839,3
+jaly2015,24879839,2
+immensee,24879839,4
+Z-nana,24879839,4
+fendandan,24879839,4
+rocksun,24879839,1
+125367351,24879839,3
+76998008,24879839,2
+56083884,24879839,4
+PlutoLeo,24879839,4
+68913582,24879839,3
+iml5,24879839,2
+2819219,24879839,3
+72312471,24879839,3
+kabuqinuomima,24879839,1
+yuetianxian,24879839,1
+124210070,24879839,1
+43061716,24879839,3
+2513938,24879839,4
+57853531,24879839,5
+133689217,24879839,2
+67767725,24879839,4
+JamesPound,24879839,1
+tanxiaomai,24879839,2
+jiangwenjing,24879839,4
+47801703,24879839,1
+46797478,24879839,4
+135366540,24879839,1
+38412910,24879839,1
+127482987,24879839,3
+liruochong,24879839,-1
+26959254,24879839,3
+75704833,24879839,3
+Paranoid7,24879839,3
+8527993,24879839,1
+95443736,24879839,2
+94257080,24879839,3
+49269010,24879839,3
+2846709,24879839,1
+7609988,24879839,2
+63485325,24879839,3
+53289993,24879839,2
+60142596,24879839,3
+53879339,24879839,3
+100682612,24879839,3
+72864360,24879839,3
+54798234,24879839,3
+60855188,24879839,2
+74117962,24879839,3
+miaodiaoni,24879839,5
+4358473,24879839,2
+26906705,24879839,2
+84001065,24879839,3
+2318605,24879839,1
+120305816,24879839,2
+linaboxiannv,24879839,1
+HappyFQ,24879839,1
+imay5,24879839,3
+97463781,24879839,3
+66099623,24879839,3
+47768193,24879839,3
+rainstopgoodbye,24879839,3
+121945022,24879839,3
+62347978,24879839,2
+58804645,24879839,4
+onlymok,24879839,-1
+60437819,24879839,2
+EdgarII,24879839,3
+45805618,24879839,3
+96414359,24879839,4
+50891455,24879839,3
+49155542,24879839,1
+34343005,24879839,4
+44601973,24879839,4
+54881703,24879839,1
+66081323,24879839,2
+QuincyLiang,24879839,4
+boringsly,24879839,2
+134907491,24879839,2
+20807282,24879839,3
+48079918,24879839,1
+71020216,24879839,2
+58611624,24879839,1
+76236179,24879839,4
+61536847,24879839,-1
+40786451,24879839,-1
+16413081,24879839,2
+97057870,24879839,2
+looma,24879839,-1
+72472704,24879839,-1
+69244531,24879839,2
+132323816,24879839,3
+60628654,24879839,-1
+4315193,24879839,-1
+44716146,24879839,3
+paggyxu,24879839,3
+23766862,24879839,3
+64574403,24879839,3
+Plumed__Serpent,24879839,2
+amandine.chu,24879839,3
+64252611,24879839,3
+69349654,24879839,-1
+xiaofushen,24879839,1
+3613680,24879839,1
+104792995,24879839,3
+davidmoer,24879839,2
+medeHOW,24879839,3
+jack77gyq,24879839,5
+2794328,24879839,3
+32111208,24879839,-1
+79104110,24879839,-1
+aids,24879839,3
+52580766,24879839,-1
+88452602,24879839,3
+tanmingdong,24879839,2
+52299764,24879839,-1
+bLack.N.bLue,24879839,3
+47239413,24879839,3
+66770908,24879839,2
+129730100,24879839,3
+131950889,24879839,2
+122273764,24879839,3
+133738862,24879839,3
+68799111,24879839,2
+11886721,24879839,3
+134488722,24879839,3
+71273423,24879839,2
+1071198,24879839,2
+124640229,24879839,2
+60506014,24879839,3
+60983227,24879839,1
+minglemingle,24879839,-1
+4013382,24879839,3
+68409461,24879839,-1
+64529774,24879839,2
+69168057,24879839,3
+80175824,24879839,3
+Vincent-xx,24879839,3
+3573130,24879839,5
+121205980,24879839,1
+131771988,24879839,2
+53616337,24879839,2
+84307265,24879839,1
+37675452,24879839,3
+3914860,24879839,2
+donchen,24879839,3
+erentuo,24879839,5
+46126259,24879839,1
+63805238,24879839,3
+46654093,24879839,3
+53199629,24879839,3
+lamovrevx,24879839,2
+59901694,24879839,2
+4108272,24879839,2
+75322883,24879839,1
+universe_7,24879839,-1
+bloodrate,24879839,3
+jiezhou22,24879839,1
+zi.yin,24879839,4
+laoT,24879839,1
+80104119,24879839,1
+86253847,24879839,2
+86253847,24879839,2
+63903749,24879839,4
+2752525,24879839,4
+yaoszoo,24879839,3
+9104603,24879839,2
+3412404,24879839,4
+80607312,24879839,3
+2679276,24879839,3
+41088876,24879839,1
+113285477,24879839,1
+39817838,24879839,3
+102108363,24879839,3
+49046809,24879839,4
+57091115,24879839,4
+56694430,24879839,2
+46346298,24879839,3
+16446452,24879839,2
+134523911,24879839,1
+38752361,24879839,2
+3758190,24879839,3
+suoyuyin,24879839,3
+52839041,24879839,3
+69376612,24879839,4
+121337200,24879839,3
+47925086,24879839,5
+65135573,24879839,3
+knightvine,24879839,2
+leoshitenough,24879839,-1
+miss_xiaoxiao,24879839,3
+chowyinpak,24879839,3
+64949305,24879839,2
+48312397,24879839,1
+AllenHarris,24879839,1
+49190092,24879839,2
+keny,24879839,4
+38184816,24879839,3
+3254418,24879839,4
+Charlotte-e,24879839,3
+nxam,24879839,3
+freddie,24879839,2
+64709555,24879839,3
+45828294,24879839,3
+sunyangchina,24879839,2
+29212130,24879839,1
+79520585,24879839,3
+71741395,24879839,2
+chariey,24879839,2
+callalilies,24879839,3
+alikeila,24879839,3
+formydream,24879839,1
+88652488,24879839,2
+53411317,24879839,1
+135164512,24879839,3
+85422025,24879839,3
+51706956,24879839,4
+67422944,24879839,3
+36806157,24879839,4
+72980376,24879839,3
+Lynx-GAGA,24879839,3
+126185385,24879839,4
+119831217,24879839,2
+67331748,24879839,2
+christear,24879839,1
+49445106,24879839,1
+scorndefeat,24879839,4
+burclover,24879839,3
+vince717,24879839,3
+39684320,24879839,2
+64902103,24879839,4
+48311498,24879839,3
+29574917,24879839,3
+33300586,24879839,4
+130954450,24879839,2
+132197794,24879839,2
+51772148,24879839,1
+Kristy0224,24879839,2
+dukeadele,24879839,4
+26897119,24879839,5
+Nanamii,24879839,2
+supernuo,24879839,2
+33510302,24879839,1
+62323478,24879839,3
+114435379,24879839,2
+yzy16,24879839,4
+60650660,24879839,2
+44892859,24879839,2
+retardedlee,24879839,2
+53768301,24879839,3
+121182825,24879839,4
+77419999,24879839,1
+55833673,24879839,2
+3752454,24879839,3
+kongyijiu,24879839,3
+dongchenxing,24879839,3
+yumaomao123,24879839,-1
+85487157,24879839,3
+3510245,24879839,4
+macie-w,24879839,-1
+49870315,24879839,1
+fenjianchen,24879839,3
+119448621,24879839,4
+Zazai,24879839,2
+2030775,24879839,3
+41644891,24879839,4
+36478733,24879839,5
+rockerthunder,24879839,4
+79798477,24879839,1
+53541312,24879839,4
+59609548,24879839,1
+41017931,24879839,3
+109884640,24879839,1
+1595012,24879839,4
+shhhhhhh,24879839,4
+45396935,24879839,2
+2280761,24879839,3
+80506084,24879839,3
+94420378,24879839,3
+deardeer92,24879839,3
+yingcao,24879839,3
+2179932,24879839,2
+58140841,24879839,3
+naturelei,24879839,4
+sheilamisu,24879839,1
+chaosi,24879839,1
+49513730,24879839,4
+boshuzhang,24879839,3
+61118991,24879839,4
+52142248,24879839,2
+47877779,24879839,4
+hellolittlestar,24879839,3
+97354586,24879839,2
+48121857,24879839,1
+121633982,24879839,1
+56608210,24879839,3
+fuuter,24879839,1
+qianjinlai,24879839,1
+121715773,24879839,-1
+dongdayou,24879839,2
+Jovial_,24879839,3
+32835356,24879839,2
+skysnow5201314,24879839,3
+sunxiaomeisun,24879839,2
+61192140,24879839,3
+78885050,24879839,-1
+feellings,24879839,-1
+on1ooker,24879839,2
+xinlinguer,24879839,-1
+9962400,24879839,2
+60356718,24879839,2
+61823164,24879839,2
+55447276,24879839,2
+1172562,24879839,4
+55686150,24879839,3
+47941534,24879839,4
+3301961,24879839,3
+ArwenZhang,24879839,3
+68547609,24879839,1
+68971338,24879839,3
+80314628,24879839,3
+h7766,24879839,4
+mooreweicheng,24879839,4
+3489938,24879839,3
+93828886,24879839,4
+134694723,24879839,3
+133332673,24879839,5
+46359852,24879839,3
+ala310,24879839,3
+53740988,24879839,2
+70557882,24879839,1
+zeroqq,24879839,-1
+131771729,24879839,2
+44914778,24879839,3
+Alienzhao,24879839,4
+131749198,24879839,2
+xukunbing,24879839,4
+heybuwawa,24879839,4
+83847642,24879839,2
+56146971,24879839,1
+49384394,24879839,2
+jimmikowk,24879839,5
+120977764,24879839,1
+jacy_huihui,24879839,3
+51067587,24879839,3
+49034223,24879839,3
+nbyidao,24879839,2
+LoserM,24879839,1
+fennudeerdaye,24879839,2
+4283665,24879839,-1
+35509234,24879839,2
+doraemon63,24879839,3
+robertjuve,24879839,2
+65466493,24879839,3
+kenheart_ccxuan,24879839,1
+bbznj,24879839,3
+59944601,24879839,1
+69822507,24879839,1
+73624765,24879839,2
+69679169,24879839,2
+fannier,24879839,3
+4390470,24879839,4
+2033349,24879839,3
+mwkang,24879839,4
+133651758,24879839,4
+2339752,24879839,2
+67649121,24879839,3
+58134028,24879839,2
+44535286,24879839,2
+130598996,24879839,3
+yiaimi,24879839,4
+77089569,24879839,2
+45205132,24879839,3
+varshaJ,24879839,2
+57026267,24879839,3
+3255312,24879839,2
+88961089,24879839,3
+xiaoqingniu,24879839,4
+dzl15,24879839,3
+59413586,24879839,2
+79840078,24879839,5
+46361626,24879839,1
+130461977,24879839,4
+56111292,24879839,3
+Jaune.G,24879839,3
+48971514,24879839,5
+99961378,24879839,3
+69383984,24879839,4
+hellowind,24879839,1
+3987116,24879839,3
+idahoriver,24879839,2
+daodi,24879839,1
+64819804,24879839,5
+36399495,24879839,3
+cangjie1900,24879839,1
+81611618,24879839,5
+3913762,24879839,4
+53897556,24879839,3
+2726151,24879839,3
+phoenixlalunar,24879839,2
+qxp1015beauty,24879839,4
+54152146,24879839,2
+54152146,24879839,2
+54160566,24879839,3
+59545685,24879839,2
+Katharine,24879839,-1
+50331162,24879839,-1
+134519801,24879839,2
+67439008,24879839,2
+71093640,24879839,2
+1515476,24879839,5
+134911944,24879839,3
+showgyc,24879839,3
+Jenn__ifer,24879839,4
+69371431,24879839,1
+29725427,24879839,2
+szhiji,24879839,1
+aideu,24879839,5
+47978101,24879839,2
+isabel_cui,24879839,1
+airinsky,24879839,1
+78683791,24879839,1
+90812716,24879839,3
+43510259,24879839,1
+75874962,24879839,3
+103380368,24879839,4
+puggles,24879839,1
+4407883,24879839,2
+49729605,24879839,3
+affewen,24879839,2
+79158419,24879839,4
+56890247,24879839,1
+42907481,24879839,2
+134839210,24879839,4
+55006908,24879839,5
+53897092,24879839,3
+64857634,24879839,5
+4104001,24879839,1
+waiwaixiaohei,24879839,2
+echo_pong,24879839,1
+heartbreakerkid,24879839,1
+christine1006,24879839,4
+2891944,24879839,3
+50455323,24879839,4
+emilycou,24879839,2
+130084772,24879839,2
+1178759,24879839,3
+younglucn,24879839,3
+3400522,24879839,3
+4417183,24879839,2
+Dondako,24879839,5
+sliverfox,24879839,3
+3469662,24879839,5
+44678301,24879839,5
+79409218,24879839,3
+133070891,24879839,1
+52451378,24879839,3
+51628420,24879839,5
+edwardpanda,24879839,1
+sure1101,24879839,2
+50699357,24879839,3
+63506712,24879839,1
+2727802,24879839,3
+130479445,24879839,4
+coryzh,24879839,2
+63527789,24879839,2
+cherub235,24879839,2
+87353564,24879839,2
+52085176,24879839,1
+2327893,24879839,3
+clozeshaw,24879839,-1
+47542838,24879839,3
+52697786,24879839,4
+theyangyang,24879839,2
+81616503,24879839,2
+2770648,24879839,1
+sb36560,24879839,1
+kmet,24879839,5
+1354561,24879839,1
+himandy,24879839,3
+lhnlyons,24879839,2
+119883443,24879839,2
+8878488,24879839,5
+han_sy,24879839,3
+97682532,24879839,4
+56692728,24879839,2
+Ray_W,24879839,3
+6842341,24879839,3
+106537727,24879839,2
+peterwolf,24879839,4
+78664563,24879839,3
+71719673,24879839,4
+64974509,24879839,5
+kim5257,24879839,1
+81225129,24879839,3
+122179121,24879839,3
+59495705,24879839,4
+leftrighthands,24879839,1
+69750232,24879839,3
+dowers,24879839,1
+2192608,24879839,1
+100727683,24879839,1
+34984227,24879839,3
+s_plus,24879839,3
+jackieatdnv,24879839,3
+48608212,24879839,2
+60764117,24879839,2
+losite,24879839,2
+63805846,24879839,3
+56291360,24879839,1
+tinysean,24879839,1
+130701225,24879839,4
+29789072,24879839,3
+1738937,24879839,1
+45005125,24879839,2
+4271475,24879839,4
+134589409,24879839,2
+Queenie.Emika,24879839,2
+zeisiphe,24879839,3
+movie-liang,24879839,2
+43516388,24879839,2
+4829013,24879839,3
+lovekym,24879839,2
+51542054,24879839,2
+124396719,24879839,3
+57209981,24879839,1
+130890583,24879839,4
+69151612,24879839,3
+61963433,24879839,4
+47593786,24879839,5
+39795294,24879839,3
+90814793,24879839,-1
+33439516,24879839,1
+58043118,24879839,5
+76334881,24879839,1
+90231600,24879839,4
+a632157547,24879839,3
+2374657,24879839,2
+tkjune,24879839,2
+48247604,24879839,4
+61845707,24879839,3
+70255130,24879839,4
+130599589,24879839,2
+48812858,24879839,2
+dashdot,24879839,3
+93582909,24879839,3
+3947293,24879839,4
+40059497,24879839,5
+48743724,24879839,2
+clijsterssophia,24879839,3
+4445294,24879839,2
+14341331,24879839,3
+131106137,24879839,3
+54897737,24879839,2
+102402027,24879839,2
+97951018,24879839,5
+Collins1995,24879839,3
+yanzi_ziyue,24879839,1
+jjunfan,24879839,3
+88094868,24879839,4
+sayawangdao,24879839,2
+wuyanziyixiuzhu,24879839,4
+63470664,24879839,4
+2235528,24879839,3
+131487816,24879839,1
+54529930,24879839,2
+52209428,24879839,2
+64748860,24879839,1
+alvie,24879839,2
+ericyxh,24879839,4
+smile0826,24879839,2
+45681506,24879839,3
+zisic,24879839,3
+39953503,24879839,3
+66676801,24879839,3
+TIM-ED,24879839,1
+53935985,24879839,4
+cherryfeng,24879839,2
+libowen,24879839,2
+1149126,24879839,2
+60413211,24879839,3
+2838141,24879839,3
+6990422,24879839,4
+maples611627,24879839,2
+72256181,24879839,3
+vujacicsun,24879839,1
+AcousticPerfume,24879839,2
+54345196,24879839,2
+64167230,24879839,2
+72632667,24879839,4
+46616178,24879839,4
+42810636,24879839,4
+48751444,24879839,1
+liljett,24879839,2
+77318318,24879839,4
+daisy_0629,24879839,1
+43767898,24879839,3
+deasil,24879839,3
+3031709,24879839,1
+55854831,24879839,2
+53143088,24879839,2
+49815094,24879839,2
+49815094,24879839,2
+82525753,24879839,2
+134158647,24879839,2
+xifengl,24879839,2
+100279661,24879839,3
+70308764,24879839,4
+lollypop777,24879839,3
+35063229,24879839,1
+63889015,24879839,3
+67838185,24879839,3
+65181987,24879839,2
+baojq0482,24879839,3
+35902122,24879839,2
+4668511,24879839,2
+jizunluosang,24879839,4
+l1086905132,24879839,3
+51883716,24879839,2
+54300451,24879839,2
+5191781,24879839,1
+125655857,24879839,3
+125655857,24879839,3
+49207665,24879839,2
+Xionz,24879839,2
+zhuyi,24879839,4
+36765167,24879839,2
+78731933,24879839,2
+ccushuaia1220,24879839,-1
+3212763,24879839,3
+133946532,24879839,2
+corachain,24879839,3
+57305886,24879839,2
+41109416,24879839,4
+joker619,24879839,3
+baiyoubai0629,24879839,-1
+fsbym,24879839,3
+10200994,24879839,2
+1498656,24879839,2
+54780204,24879839,2
+81237128,24879839,3
+134600773,24879839,3
+seizeup,24879839,2
+45160919,24879839,2
+FuckoffJinMu,24879839,1
+cxjlly,24879839,3
+84303160,24879839,4
+4549623,24879839,3
+41465171,24879839,4
+69614184,24879839,5
+110981703,24879839,4
+45560390,24879839,2
+notworry,24879839,2
+nangdaocc,24879839,3
+huapiqiu,24879839,3
+58634950,24879839,2
+97623200,24879839,2
+soonist,24879839,2
+34568224,24879839,3
+71648483,24879839,5
+9614176,24879839,2
+Free-Mason,24879839,1
+57445637,24879839,1
+78447440,24879839,3
+dounageban,24879839,4
+C61497775,24879839,3
+jinqianmei,24879839,5
+1052133,24879839,3
+74478890,24879839,2
+58015342,24879839,3
+32451662,24879839,-1
+10208605,24879839,3
+63684409,24879839,2
+flytomilan,24879839,3
+4623641,24879839,3
+134617663,24879839,1
+103375945,24879839,5
+50057454,24879839,2
+70497038,24879839,3
+52801695,24879839,3
+53072558,24879839,-1
+lionlsh,24879839,4
+125836653,24879839,-1
+brilliantze,24879839,2
+44476398,24879839,3
+61457577,24879839,4
+baizi886,24879839,2
+2598849,24879839,4
+49063054,24879839,3
+holeofstone,24879839,3
+130391371,24879839,3
+momoandmiracle,24879839,5
+7900264,24879839,2
+88489615,24879839,1
+51936769,24879839,2
+38396842,24879839,2
+114504281,24879839,5
+99601239,24879839,1
+kulapika,24879839,3
+50647319,24879839,3
+103151877,24879839,2
+1731139,24879839,3
+79898473,24879839,3
+ponie325,24879839,3
+16472633,24879839,2
+findeva,24879839,3
+ashleystella,24879839,4
+64622433,24879839,2
+54456001,24879839,3
+80202849,24879839,1
+fortblk,24879839,2
+42787791,24879839,3
+61640481,24879839,3
+zbbsbjs,24879839,3
+wendyblueberry,24879839,4
+3598334,24879839,3
+4806563,24879839,1
+43089605,24879839,3
+incognito_hsc,24879839,2
+52343678,24879839,2
+89816383,24879839,5
+101167339,24879839,1
+3501453,24879839,3
+zhenglei1919,24879839,3
+58418894,24879839,3
+uuul,24879839,4
+66031948,24879839,3
+70132869,24879839,4
+qulinzhang,24879839,1
+92067101,24879839,4
+134563704,24879839,3
+49636760,24879839,4
+105901752,24879839,2
+47296635,24879839,3
+119991897,24879839,3
+47163316,24879839,5
+61439975,24879839,3
+tamiwang,24879839,4
+honeyyy,24879839,4
+85559516,24879839,1
+51635015,24879839,3
+126658027,24879839,1
+xingxiaozhu,24879839,3
+vermouthsama,24879839,3
+48114475,24879839,2
+libihui,24879839,3
+dongdong0729,24879839,1
+88719109,24879839,3
+64821035,24879839,4
+88345379,24879839,3
+120069048,24879839,3
+63211106,24879839,2
+onlymengya,24879839,1
+4643817,24879839,2
+55351150,24879839,3
+128017227,24879839,5
+86234038,24879839,1
+echomei999,24879839,-1
+ygweric,24879839,1
+50003038,24879839,2
+iamliving,24879839,3
+1514019,24879839,2
+big-fish,24879839,5
+christinacyy,24879839,2
+127934825,24879839,3
+v_xunyicao_v,24879839,2
+66599289,24879839,2
+hecaba,24879839,3
+L82yua,24879839,-1
+2194001,24879839,1
+4326663,24879839,1
+72757269,24879839,3
+53276543,24879839,1
+Ouidah,24879839,1
+misora331,24879839,5
+48807888,24879839,2
+loveyixiao,24879839,4
+3314389,24879839,3
+sergiu,24879839,4
+46170275,24879839,2
+39525517,24879839,2
+50875593,24879839,3
+57650145,24879839,4
+89421913,24879839,2
+3484897,24879839,2
+49228948,24879839,4
+3091170,24879839,4
+53937396,24879839,3
+weiliang86,24879839,4
+38407388,24879839,2
+91446742,24879839,1
+45966706,24879839,1
+66250308,24879839,2
+34017621,24879839,3
+97515933,24879839,2
+xiongkaihang,24879839,2
+huogebushuai,24879839,1
+chronoce,24879839,2
+49157213,24879839,2
+yekui,24879839,3
+dennie2011,24879839,3
+121997896,24879839,2
+1498768,24879839,3
+aaa33444,24879839,1
+wjww2128,24879839,4
+35436010,24879839,1
+125594306,24879839,2
+earthchild,24879839,2
+mylover.Fan,24879839,1
+oceanlike,24879839,3
+126731716,24879839,1
+9411741,24879839,3
+suhong,24879839,2
+58618853,24879839,2
+2632979,24879839,-1
+80820907,24879839,4
+fortanxu,24879839,2
+zhegxha,24879839,1
+guchu,24879839,4
+2919381,24879839,3
+xxxholic99,24879839,4
+53024139,24879839,2
+53024139,24879839,2
+62436528,24879839,2
+124895801,24879839,1
+51268987,24879839,5
+3109810,24879839,3
+54783406,24879839,2
+122863289,24879839,1
+14597191,24879839,1
+aarcher,24879839,1
+34097491,24879839,1
+59881458,24879839,4
+52066992,24879839,4
+51087297,24879839,3
+33921766,24879839,3
+50785660,24879839,3
+65086870,24879839,1
+17365238,24879839,2
+61873687,24879839,3
+62876165,24879839,2
+4193022,24879839,2
+thismortalcoil,24879839,2
+93226079,24879839,4
+2213454,24879839,3
+63912359,24879839,3
+46037154,24879839,2
+43531755,24879839,3
+72188571,24879839,2
+46237216,24879839,3
+52248618,24879839,3
+58106632,24879839,3
+mrcandy,24879839,4
+1401397,24879839,2
+14328894,24879839,3
+tiazhihen290,24879839,3
+3182137,24879839,4
+Yulia,24879839,3
+55892298,24879839,2
+mjh5920,24879839,4
+3687958,24879839,3
+78755479,24879839,2
+81051190,24879839,3
+imMurphy,24879839,3
+49435286,24879839,4
+hu82667775,24879839,3
+44914758,24879839,1
+prep,24879839,4
+huazhuang,24879839,2
+3505477,24879839,3
+Chikomoumao,24879839,4
+60041342,24879839,3
+2989826,24879839,3
+52517168,24879839,3
+128103281,24879839,1
+2527582,24879839,3
+HERE,24879839,1
+132011879,24879839,1
+lvyuanzi,24879839,2
+131183374,24879839,4
+48723605,24879839,3
+kuku_yang,24879839,1
+57811727,24879839,2
+71732006,24879839,2
+56123189,24879839,2
+64494087,24879839,4
+68230715,24879839,5
+dizhujiadehuaiz,24879839,1
+CityOfShadows,24879839,1
+fjy5663,24879839,3
+joysu,24879839,3
+42375419,24879839,2
+49282329,24879839,3
+70614930,24879839,2
+emily0016,24879839,-1
+Gabriel_Mars,24879839,2
+58588294,24879839,4
+weiaiJaychou,24879839,1
+xiguadaxia,24879839,-1
+leexumeng,24879839,3
+83601248,24879839,2
+133672618,24879839,2
+25721985,24879839,3
+58889054,24879839,3
+aftertea,24879839,1
+kiekyo,24879839,4
+79861493,24879839,2
+Elsie_7,24879839,1
+bLue.C,24879839,1
+xy9102,24879839,3
+musicphoto,24879839,3
+huiyiyang,24879839,2
+97181253,24879839,2
+nlai,24879839,2
+36688471,24879839,3
+2390259,24879839,-1
+77534408,24879839,2
+miracleq0614,24879839,2
+Z.Chris,24879839,4
+22531064,24879839,3
+65664176,24879839,2
+Joan_J,24879839,1
+larkabove,24879839,1
+90747535,24879839,4
+49145783,24879839,1
+49529307,24879839,4
+tsywy,24879839,2
+17480239,24879839,3
+Shutyouout0715,24879839,1
+72555837,24879839,3
+qrange,24879839,3
+amour,24879839,2
+25725176,24879839,2
+nishijimaming,24879839,2
+pengyn,24879839,2
+48183944,24879839,2
+130580816,24879839,2
+66857880,24879839,3
+xxberny,24879839,3
+64162059,24879839,2
+82319086,24879839,3
+47964908,24879839,2
+millerwong,24879839,4
+38863592,24879839,5
+35410518,24879839,1
+71616521,24879839,4
+Coka-Less,24879839,2
+gmrxfx,24879839,3
+75832750,24879839,1
+131470546,24879839,3
+2402594,24879839,1
+51865746,24879839,3
+2514634,24879839,3
+churao,24879839,3
+57135077,24879839,2
+HAVIAL13WEI,24879839,3
+50151786,24879839,2
+27253308,24879839,3
+1014511,24879839,2
+29630477,24879839,-1
+65186418,24879839,4
+52353213,24879839,3
+97816774,24879839,4
+2746484,24879839,1
+richardsun1234,24879839,2
+80934175,24879839,3
+50421481,24879839,4
+82854048,24879839,4
+57079811,24879839,4
+joybozo,24879839,2
+4214141,24879839,1
+ztl-poppy,24879839,2
+43335889,24879839,2
+71467734,24879839,3
+celua,24879839,2
+79453297,24879839,3
+120741265,24879839,5
+66967732,24879839,2
+ai-you,24879839,4
+k5k,24879839,1
+39236379,24879839,3
+55289567,24879839,3
+50514638,24879839,2
+51255478,24879839,3
+84342168,24879839,4
+130533154,24879839,3
+Jasmine_hapi,24879839,5
+49621782,24879839,4
+61050884,24879839,3
+82484416,24879839,1
+74053506,24879839,2
+62491933,24879839,3
+47411377,24879839,2
+55435121,24879839,2
+66643938,24879839,3
+starlife,24879839,3
+39412698,24879839,3
+65683142,24879839,1
+40021345,24879839,3
+48421988,24879839,2
+lwl8823,24879839,3
+2663629,24879839,-1
+travelanddream,24879839,2
+52982507,24879839,4
+51836771,24879839,2
+84938785,24879839,2
+54801845,24879839,3
+94886676,24879839,3
+65182417,24879839,3
+appleillusion,24879839,3
+4083554,24879839,3
+37318198,24879839,3
+62648117,24879839,2
+63380361,24879839,1
+78216114,24879839,3
+70588269,24879839,3
+93868672,24879839,2
+coldcall,24879839,3
+timliutianxiang,24879839,2
+50112537,24879839,4
+81744133,24879839,4
+126022263,24879839,2
+baomu,24879839,3
+63687502,24879839,4
+xiaozhujsy,24879839,4
+sethqi,24879839,2
+130787973,24879839,5
+boalee5211,24879839,2
+50560977,24879839,3
+58065750,24879839,3
+54429158,24879839,1
+qjy,24879839,3
+44182102,24879839,2
+134148719,24879839,1
+1174148,24879839,3
+49502863,24879839,2
+48589119,24879839,1
+chelseyzuo,24879839,1
+119428504,24879839,2
+cpxxpc,24879839,3
+91842843,24879839,2
+ilkay,24879839,2
+ilkay,24879839,2
+miyo5,24879839,2
+tsebb,24879839,2
+wjferic,24879839,3
+3845576,24879839,3
+54704732,24879839,3
+59253640,24879839,2
+47768622,24879839,3
+jiangjiang1214,24879839,2
+zjhztjj,24879839,3
+shatterjiggl,24879839,5
+127089919,24879839,3
+133190465,24879839,2
+82580428,24879839,-1
+XIAOTUTONG,24879839,-1
+67061542,24879839,1
+banerzhuan,24879839,3
+mahuahualai,24879839,1
+95264069,24879839,3
+Levora,24879839,4
+43766202,24879839,2
+50313990,24879839,2
+101405544,24879839,2
+42905617,24879839,3
+28968809,24879839,3
+baotatangtang,24879839,2
+132945472,24879839,2
+monlina,24879839,2
+hsupurr,24879839,1
+levylll,24879839,2
+124810728,24879839,3
+65187145,24879839,2
+dandan0451,24879839,2
+103570822,24879839,5
+1914004,24879839,3
+fengwanjing,24879839,3
+54544210,24879839,5
+64882161,24879839,4
+53103861,24879839,4
+freshyyblue,24879839,1
+vivianlovesun,24879839,2
+2584631,24879839,2
+57824687,24879839,3
+4589325,24879839,2
+119392686,24879839,2
+lubinfan,24879839,3
+49767497,24879839,2
+58338006,24879839,3
+Bupt_Doc,24879839,3
+59749461,24879839,2
+29113494,24879839,3
+4083854,24879839,2
+38445269,24879839,3
+Ginatea,24879839,3
+blue-Petit,24879839,3
+zlpEcho,24879839,2
+52446857,24879839,-1
+76654767,24879839,4
+50233060,24879839,3
+woshixiaomi,24879839,2
+shaoqiongyu,24879839,2
+28307995,24879839,3
+han962464,24879839,2
+fumeng7,24879839,3
+44618020,24879839,4
+38371308,24879839,3
+83059994,24879839,1
+54391531,24879839,2
+bdlcS,24879839,3
+41634233,24879839,5
+48857710,24879839,3
+qqyy402,24879839,2
+124869246,24879839,2
+kuxiafeng,24879839,3
+42209448,24879839,3
+2108403,24879839,2
+53728053,24879839,4
+55479715,24879839,3
+chrissie619108,24879839,3
+linco23,24879839,4
+46038354,24879839,3
+2593614,24879839,3
+124971974,24879839,1
+57466918,24879839,1
+Shadow..,24879839,2
+lucy55681118,24879839,3
+81132475,24879839,1
+2346529,24879839,2
+61534352,24879839,3
+4646103,24879839,3
+81384030,24879839,4
+kyo85,24879839,2
+73132324,24879839,2
+4320285,24879839,4
+weiyuhousheng,24879839,-1
+120541509,24879839,3
+44778788,24879839,3
+rashell,24879839,1
+54119335,24879839,2
+51299697,24879839,1
+39077146,24879839,3
+Kios,24879839,4
+63642213,24879839,2
+4267240,24879839,3
+piratecaptain,24879839,3
+cillin,24879839,5
+64812581,24879839,2
+wangholic,24879839,3
+49602953,24879839,2
+enigmairis,24879839,3
+131255183,24879839,2
+lazzaro,24879839,2
+67178659,24879839,4
+58658233,24879839,2
+logai,24879839,4
+lesong,24879839,1
+134161390,24879839,1
+59189424,24879839,-1
+EvelynSalt,24879839,3
+48034227,24879839,3
+50093699,24879839,4
+4279038,24879839,3
+65760465,24879839,1
+feifeiyouxia,24879839,3
+52508494,24879839,3
+luke89,24879839,3
+78712624,24879839,2
+48492174,24879839,2
+3446414,24879839,4
+freemanhu,24879839,2
+nxxnl,24879839,3
+little_MOMO,24879839,1
+mychloe,24879839,4
+4132596,24879839,2
+mashangjian5,24879839,2
+crystal_nice,24879839,2
+kissofdead,24879839,1
+71940900,24879839,3
+45522216,24879839,3
+vincent41,24879839,3
+71488560,24879839,3
+105808556,24879839,4
+52128416,24879839,2
+44071407,24879839,5
+52139637,24879839,2
+1141798,24879839,3
+Uroboros,24879839,3
+shallshall,24879839,2
+57442384,24879839,1
+tomatobear,24879839,3
+3419853,24879839,1
+gshine,24879839,3
+50051485,24879839,3
+45592291,24879839,3
+52535672,24879839,3
+Elizabeth1989,24879839,2
+62597862,24879839,2
+121931250,24879839,4
+moviegoer,24879839,3
+70548189,24879839,2
+87558584,24879839,4
+yuer520,24879839,2
+49369904,24879839,4
+130754309,24879839,3
+plutoto,24879839,4
+45332811,24879839,3
+90465571,24879839,3
+blueberrie,24879839,2
+dorothy.C,24879839,4
+lunaa,24879839,3
+65263102,24879839,2
+firelifespy,24879839,3
+63108147,24879839,3
+manmancaiba,24879839,4
+37106430,24879839,1
+59685430,24879839,3
+liyue8848,24879839,3
+4663105,24879839,1
+19872766,24879839,2
+37220457,24879839,2
+kuangsao,24879839,3
+53004765,24879839,2
+hayleyzhang,24879839,2
+yangziqiang,24879839,1
+128453737,24879839,2
+shadowoflight,24879839,3
+71025729,24879839,3
+70521338,24879839,2
+babywu2888,24879839,1
+54266422,24879839,3
+3596722,24879839,3
+50402288,24879839,3
+dingbat,24879839,2
+58591778,24879839,3
+vvingl,24879839,3
+43775933,24879839,3
+76613301,24879839,1
+guyi87,24879839,1
+15303107,24879839,1
+anmian,24879839,3
+anmian,24879839,3
+imxiaobei,24879839,3
+61229030,24879839,4
+62087328,24879839,2
+57838355,24879839,3
+119163796,24879839,1
+61355644,24879839,3
+3009629,24879839,3
+98887006,24879839,2
+1686617,24879839,2
+59810047,24879839,4
+JewJia,24879839,1
+2274546,24879839,5
+aolu,24879839,1
+nupta,24879839,4
+CTHCTH84476338,24879839,5
+128593702,24879839,2
+you-jian,24879839,2
+57756222,24879839,2
+grephy,24879839,3
+grephy,24879839,3
+54174425,24879839,2
+45010437,24879839,1
+49086631,24879839,2
+echolee314,24879839,2
+shuijian1,24879839,3
+1954477,24879839,-1
+67468845,24879839,2
+Ken,24879839,2
+45846589,24879839,2
+4294774,24879839,2
+yang_fan_,24879839,3
+2947191,24879839,3
+57580969,24879839,2
+wn9279,24879839,3
+48641750,24879839,4
+133418414,24879839,2
+95768578,24879839,3
+76693595,24879839,1
+summerxiao,24879839,1
+4647630,24879839,3
+rianna,24879839,3
+93662055,24879839,1
+74133741,24879839,1
+132678322,24879839,1
+XTY29,24879839,1
+64780259,24879839,3
+64976230,24879839,3
+127722758,24879839,2
+41404317,24879839,1
+51950348,24879839,3
+91263790,24879839,3
+3122624,24879839,1
+lidejun,24879839,3
+115482550,24879839,3
+fuyunyajie,24879839,2
+128736430,24879839,3
+127225715,24879839,2
+76578830,24879839,3
+kcinzz,24879839,-1
+manni,24879839,4
+guoqichepiao,24879839,-1
+zhenglele,24879839,2
+yayashiny,24879839,2
+67334552,24879839,-1
+valentian,24879839,2
+1391757,24879839,3
+53403490,24879839,1
+38632566,24879839,2
+wrj_mm,24879839,3
+lindanda,24879839,3
+45553945,24879839,1
+53906378,24879839,1
+1847429,24879839,4
+39730216,24879839,3
+60708720,24879839,5
+81791879,24879839,-1
+Cruk,24879839,-1
+44324751,24879839,1
+Latefordrama,24879839,-1
+60999844,24879839,4
+64953919,24879839,4
+1556251,24879839,4
+62977553,24879839,2
+taojiuzi,24879839,4
+7798390,24879839,3
+1783337,24879839,2
+3242895,24879839,2
+43120723,24879839,3
+junjemmm,24879839,2
+iamliz,24879839,2
+4340874,24879839,4
+130605614,24879839,2
+56001919,24879839,5
+benita0124,24879839,4
+132218253,24879839,1
+102876006,24879839,2
+79812878,24879839,4
+40587550,24879839,4
+elliry,24879839,3
+yoonjae_,24879839,1
+2144907,24879839,1
+60592477,24879839,4
+57398318,24879839,1
+mr121,24879839,3
+floraalma,24879839,3
+130870435,24879839,4
+73033279,24879839,1
+i13nocry,24879839,2
+119026102,24879839,2
+sunlinght,24879839,1
+63892608,24879839,1
+KennySiliver,24879839,2
+66991726,24879839,4
+127653425,24879839,2
+yaogaosheng,24879839,1
+91428973,24879839,-1
+3654230,24879839,4
+ellenjaw,24879839,3
+58323332,24879839,3
+67811189,24879839,3
+50318763,24879839,2
+61328607,24879839,5
+54889228,24879839,1
+jslslouis,24879839,1
+1113683,24879839,2
+3716766,24879839,1
+38973316,24879839,3
+taralee,24879839,3
+Lynnehe,24879839,-1
+55006462,24879839,3
+134040475,24879839,4
+yuki_kaze,24879839,1
+50290697,24879839,2
+45743439,24879839,2
+songka,24879839,1
+6235005,24879839,4
+39531527,24879839,4
+zuoshoubian,24879839,1
+dannarice,24879839,1
+59274367,24879839,2
+119922273,24879839,3
+83697978,24879839,1
+architectmike,24879839,1
+82222960,24879839,2
+62425658,24879839,2
+133937348,24879839,5
+30219531,24879839,1
+49255582,24879839,2
+62210177,24879839,4
+70990506,24879839,3
+40617140,24879839,1
+lesonbobo,24879839,2
+gjy.patricia,24879839,4
+131135417,24879839,1
+2526442,24879839,3
+84047449,24879839,4
+viva2011,24879839,2
+74943239,24879839,3
+4438015,24879839,2
+4438015,24879839,2
+3838722,24879839,2
+46225547,24879839,3
+78358394,24879839,3
+70895488,24879839,2
+53847386,24879839,3
+cherybeckham,24879839,4
+63689594,24879839,3
+chanrumao,24879839,3
+126842438,24879839,1
+74190362,24879839,2
+67200749,24879839,1
+4543622,24879839,3
+weilianglalala,24879839,2
+87962296,24879839,4
+1192497,24879839,1
+66889471,24879839,2
+Dongfengpoyifu,24879839,3
+42859187,24879839,2
+48206799,24879839,4
+49813578,24879839,1
+4270273,24879839,2
+46075656,24879839,2
+67728245,24879839,3
+2137481,24879839,2
+5691697,24879839,1
+3801925,24879839,3
+hupoeve,24879839,3
+bugucuichun,24879839,3
+tinker828,24879839,3
+49148779,24879839,2
+61837547,24879839,1
+jamesmoriartied,24879839,3
+47495374,24879839,3
+birdieeos,24879839,3
+light_in_fog,24879839,4
+3887848,24879839,4
+124833218,24879839,-1
+130466660,24879839,2
+53374291,24879839,2
+53374291,24879839,2
+63626568,24879839,2
+cay_gene,24879839,1
+84739561,24879839,3
+46175274,24879839,1
+83460153,24879839,3
+3015416,24879839,2
+imscaty,24879839,2
+44763359,24879839,3
+133987415,24879839,1
+48066058,24879839,1
+85233162,24879839,2
+117359316,24879839,2
+67957454,24879839,3
+op5411,24879839,3
+snow-in-coffee,24879839,1
+44173188,24879839,2
+alal_clcl,24879839,4
+tongbaojia,24879839,1
+cindol,24879839,-1
+akirasama,24879839,4
+siovard,24879839,1
+54790827,24879839,3
+23943098,24879839,4
+duanhong169,24879839,2
+74392239,24879839,2
+50183635,24879839,3
+1406185,24879839,4
+1208857,24879839,4
+adejavu,24879839,2
+85126913,24879839,5
+116977972,24879839,2
+57596518,24879839,3
+68427539,24879839,2
+60825742,24879839,3
+4774837,24879839,4
+120764157,24879839,2
+59274268,24879839,5
+84139416,24879839,4
+83193363,24879839,3
+geminifreak,24879839,4
+1048791,24879839,1
+tammysky,24879839,2
+longlanglang,24879839,3
+lee9026,24879839,3
+xiaoyememories,24879839,3
+zest,24879839,2
+42401128,24879839,1
+45228199,24879839,2
+72642943,24879839,2
+Unique_Sumi,24879839,3
+43333979,24879839,2
+60963394,24879839,3
+47452659,24879839,4
+MS_bobo,24879839,5
+AhLang,24879839,3
+tapirtomb,24879839,4
+75969066,24879839,2
+37617516,24879839,2
+cxs168,24879839,2
+61640995,24879839,3
+92926718,24879839,5
+22083605,24879839,1
+lintao,24879839,2
+55986370,24879839,4
+61626156,24879839,4
+50579879,24879839,4
+dongyaohui,24879839,1
+82305871,24879839,3
+46656559,24879839,2
+suichunjie,24879839,2
+hzgirl0001,24879839,3
+41437422,24879839,1
+63230793,24879839,1
+104823204,24879839,1
+Hero14,24879839,1
+87556424,24879839,4
+56752723,24879839,3
+64898125,24879839,2
+anoukhood,24879839,3
+4412176,24879839,2
+3629598,24879839,2
+127567280,24879839,3
+2162954,24879839,3
+riusmary,24879839,3
+47047008,24879839,3
+67111398,24879839,5
+Xunna,24879839,3
+sabina0116,24879839,2
+zc378810767,24879839,3
+wanzi1024,24879839,3
+47717016,24879839,2
+rabbiton,24879839,1
+1795787,24879839,-1
+sunshine606,24879839,3
+44587302,24879839,3
+94578244,24879839,2
+13713821,24879839,3
+GoHya,24879839,3
+4080656,24879839,4
+spzmoon,24879839,3
+mjxlyc,24879839,2
+zhubuwai,24879839,3
+1110332,24879839,3
+chengchen0121,24879839,2
+y19940504,24879839,4
+48445532,24879839,3
+kuramochi,24879839,5
+92423237,24879839,2
+microogle,24879839,3
+34006126,24879839,2
+3592617,24879839,3
+1968389,24879839,2
+53744550,24879839,3
+133923776,24879839,1
+19124466,24879839,2
+oyxp,24879839,3
+guoyunya,24879839,2
+maggieleaf,24879839,4
+amuer,24879839,4
+55550016,24879839,3
+neverjames,24879839,-1
+1759173,24879839,3
+47971865,24879839,2
+49585616,24879839,3
+67918844,24879839,2
+blairyang,24879839,1
+abu584447182,24879839,2
+31292570,24879839,1
+90581117,24879839,2
+4064966,24879839,4
+122604724,24879839,2
+69683493,24879839,3
+1400556,24879839,2
+3013645,24879839,-1
+yekarey,24879839,3
+natiezhishi,24879839,1
+der_Baum,24879839,3
+2544330,24879839,3
+ccj0212,24879839,2
+JUST820,24879839,3
+123433306,24879839,3
+61011471,24879839,3
+64487390,24879839,3
+ava_liu,24879839,1
+57591346,24879839,3
+49531398,24879839,3
+herecome,24879839,3
+3299770,24879839,3
+63981195,24879839,1
+darkray,24879839,3
+126809142,24879839,1
+easycyan,24879839,2
+59834267,24879839,2
+51578243,24879839,3
+56281039,24879839,1
+52003906,24879839,3
+57303482,24879839,2
+zhtqqi,24879839,3
+51435361,24879839,3
+45454876,24879839,1
+shuimuyin,24879839,4
+74575002,24879839,2
+Draco-w,24879839,1
+132772142,24879839,2
+107033684,24879839,3
+73421177,24879839,3
+68920399,24879839,3
+52726464,24879839,4
+83576151,24879839,2
+71213483,24879839,1
+46364812,24879839,4
+40994633,24879839,1
+63214398,24879839,3
+youngriver,24879839,2
+122941400,24879839,3
+57540468,24879839,3
+lhx,24879839,3
+64010291,24879839,3
+133493079,24879839,3
+44662015,24879839,3
+msallsunday,24879839,-1
+Lee_Will,24879839,3
+alwaysforyou,24879839,2
+128468373,24879839,3
+133886978,24879839,3
+106663926,24879839,5
+32212881,24879839,2
+4411166,24879839,3
+51306418,24879839,-1
+129789789,24879839,2
+84973514,24879839,3
+46525176,24879839,3
+graceoklove,24879839,3
+88313940,24879839,2
+51467979,24879839,2
+1553532,24879839,4
+67609434,24879839,1
+1297922,24879839,2
+lae,24879839,3
+30562566,24879839,3
+wallaceLee,24879839,1
+rinalee,24879839,2
+manchesite,24879839,3
+1211087,24879839,2
+3126800,24879839,1
+viola210,24879839,3
+61532678,24879839,2
+102657573,24879839,4
+102265071,24879839,2
+64131217,24879839,2
+5754772,24879839,-1
+89163665,24879839,2
+124822296,24879839,3
+37450029,24879839,3
+lanyangyangdecc,24879839,3
+2229038,24879839,3
+2449818,24879839,3
+133785442,24879839,-1
+85258559,24879839,1
+tingrice,24879839,4
+peggy1031,24879839,3
+zzzt29,24879839,3
+60729691,24879839,3
+53377652,24879839,4
+jonenow,24879839,3
+2536847,24879839,3
+66129611,24879839,4
+2416285,24879839,2
+walinee,24879839,3
+datongtong,24879839,3
+51951271,24879839,3
+13527027,24879839,2
+82339358,24879839,3
+goddyzhao,24879839,3
+62766244,24879839,1
+50744751,24879839,2
+48125005,24879839,3
+hanacolor,24879839,2
+skycity,24879839,2
+90813983,24879839,4
+64028775,24879839,4
+127615137,24879839,5
+58474530,24879839,3
+51483335,24879839,3
+ff7758521,24879839,3
+41240808,24879839,4
+absinthejt,24879839,3
+bunnie3344,24879839,3
+59982291,24879839,3
+godmako,24879839,1
+1328560,24879839,3
+44451771,24879839,3
+83214911,24879839,-1
+68255432,24879839,1
+zajiaao,24879839,3
+TrendAnalysis,24879839,1
+85356465,24879839,3
+77677293,24879839,3
+viviwanghoho,24879839,1
+79342289,24879839,3
+54826965,24879839,4
+3442024,24879839,3
+50278899,24879839,4
+3922685,24879839,1
+102727851,24879839,3
+54467711,24879839,4
+2455887,24879839,3
+49587231,24879839,3
+cicichild,24879839,2
+118195190,24879839,3
+122609595,24879839,4
+101746624,24879839,2
+109446676,24879839,2
+13873761,24879839,3
+erichalfrchuck,24879839,3
+4592782,24879839,2
+133733832,24879839,-1
+133847224,24879839,3
+52444506,24879839,3
+biglazy,24879839,2
+51605730,24879839,1
+63716852,24879839,2
+67004565,24879839,3
+50191097,24879839,3
+73856461,24879839,1
+pinkcity,24879839,2
+62781897,24879839,3
+7402565,24879839,3
+50438516,24879839,2
+77218169,24879839,3
+iris_714,24879839,1
+3349482,24879839,3
+YianpngY,24879839,2
+ainaonao,24879839,1
+65628515,24879839,2
+4635566,24879839,4
+1655485,24879839,2
+1220427,24879839,4
+tangyilun,24879839,3
+48502563,24879839,1
+chihee,24879839,1
+ethanw,24879839,2
+1728191,24879839,3
+63300955,24879839,4
+4405260,24879839,1
+52873640,24879839,2
+70232169,24879839,2
+131329189,24879839,-1
+71502534,24879839,3
+daping,24879839,2
+56450349,24879839,2
+2238631,24879839,3
+56824817,24879839,1
+M-50,24879839,-1
+1263662,24879839,3
+lantianxin,24879839,2
+47650327,24879839,2
+46916417,24879839,2
+56143102,24879839,1
+55457012,24879839,1
+EdmondYan,24879839,3
+50443007,24879839,2
+54422865,24879839,1
+xuhongruc,24879839,3
+Roohuan,24879839,3
+1353381,24879839,1
+65937350,24879839,4
+65197917,24879839,3
+4575532,24879839,1
+52468126,24879839,2
+3622487,24879839,4
+71814035,24879839,1
+34592808,24879839,1
+54676136,24879839,1
+57968960,24879839,2
+9319366,24879839,3
+cynthiacheng715,24879839,4
+3651353,24879839,2
+34859400,24879839,3
+49045557,24879839,4
+4333016,24879839,4
+shf993,24879839,2
+45701279,24879839,2
+63673590,24879839,3
+ondin12,24879839,3
+1437680,24879839,3
+foufou,24879839,3
+53734471,24879839,3
+94034456,24879839,4
+merryliang,24879839,3
+zhangjiwei,24879839,5
+31786510,24879839,4
+79119121,24879839,3
+121084172,24879839,2
+53983414,24879839,2
+82083115,24879839,2
+50382831,24879839,3
+CleanCoder,24879839,4
+yodswork,24879839,2
+53237936,24879839,3
+61772051,24879839,2
+anxiao,24879839,3
+55434870,24879839,2
+chunqiushangui,24879839,2
+philhan524,24879839,3
+lilmi13,24879839,1
+uselesswlei,24879839,3
+2248619,24879839,3
+rfxrwq,24879839,3
+hexuanpomon,24879839,2
+45819377,24879839,2
+62602235,24879839,-1
+bestfeiyong,24879839,2
+51737601,24879839,1
+49338392,24879839,-1
+42725289,24879839,2
+2750410,24879839,3
+2274605,24879839,2
+133540268,24879839,3
+133540268,24879839,3
+34065248,24879839,2
+wlj13626,24879839,2
+34800143,24879839,4
+maydays81,24879839,3
+131617800,24879839,-1
+zhouxin95,24879839,3
+121925373,24879839,1
+yyhhf,24879839,-1
+ROMAN10,24879839,1
+47536514,24879839,2
+110052722,24879839,2
+2333505,24879839,4
+54455119,24879839,1
+126818106,24879839,5
+133794602,24879839,3
+2610769,24879839,1
+zhangweiwebsite,24879839,3
+48874966,24879839,3
+92140787,24879839,1
+92140787,24879839,1
+96241491,24879839,2
+liuyongchina,24879839,2
+87996808,24879839,3
+50158938,24879839,3
+119000514,24879839,-1
+perrysun,24879839,4
+4340710,24879839,2
+56299828,24879839,3
+bill86101,24879839,1
+50906697,24879839,4
+halk,24879839,3
+rena0115,24879839,3
+xuanxuan1209,24879839,3
+29544236,24879839,2
+polars,24879839,1
+29472366,24879839,1
+85043308,24879839,-1
+62587889,24879839,2
+vincentmi,24879839,2
+vincentmi,24879839,2
+57392362,24879839,1
+73834387,24879839,1
+68700662,24879839,3
+80398742,24879839,2
+47445565,24879839,4
+63645115,24879839,1
+damnfatass,24879839,1
+4509681,24879839,1
+57715527,24879839,4
+85054306,24879839,4
+flstar,24879839,3
+52750268,24879839,4
+63725111,24879839,3
+71416831,24879839,1
+47825132,24879839,1
+60038854,24879839,2
+4501544,24879839,3
+suixi,24879839,4
+jiangmingji,24879839,2
+34601221,24879839,3
+no_voice,24879839,2
+2883444,24879839,5
+38858410,24879839,2
+lch_amo,24879839,2
+wangyou0720,24879839,4
+wizbull,24879839,4
+68869656,24879839,1
+133497592,24879839,3
+e0305,24879839,4
+3818284,24879839,4
+52241685,24879839,4
+syrz,24879839,3
+32853386,24879839,3
+78582029,24879839,3
+50404313,24879839,2
+43136651,24879839,2
+snowhawkyrf,24879839,4
+neko707,24879839,3
+66576261,24879839,3
+4463635,24879839,-1
+67011551,24879839,3
+sunhaoxiang,24879839,4
+waasabi,24879839,-1
+76943413,24879839,2
+98524765,24879839,2
+ccccissy,24879839,1
+42541391,24879839,3
+jhourui,24879839,3
+76392317,24879839,1
+MELEM,24879839,2
+2906107,24879839,1
+p2prmb,24879839,3
+44486202,24879839,2
+nancy425,24879839,2
+21331611,24879839,-1
+119288749,24879839,3
+52671677,24879839,1
+readcpc,24879839,2
+42144253,24879839,3
+3093793,24879839,2
+57753980,24879839,2
+moyu,24879839,2
+33542230,24879839,2
+59235428,24879839,3
+39504280,24879839,2
+1436131,24879839,2
+2258556,24879839,1
+45982463,24879839,4
+62489919,24879839,4
+hyx688bjdx,24879839,3
+52894891,24879839,5
+spx,24879839,3
+4057118,24879839,3
+csy0o0,24879839,2
+51881334,24879839,-1
+41734009,24879839,5
+49338966,24879839,5
+40967366,24879839,3
+64149038,24879839,2
+yamigogo,24879839,5
+rheastar,24879839,3
+48136541,24879839,3
+62498869,24879839,3
+2119698,24879839,2
+yellow1010,24879839,4
+whisper,24879839,2
+lecsi,24879839,3
+roseaxl,24879839,2
+70862123,24879839,3
+OopsJr,24879839,3
+66087282,24879839,2
+deepblue21,24879839,-1
+Elbey.,24879839,-1
+sltrherinFY,24879839,2
+48911306,24879839,3
+36731496,24879839,3
+AhDor,24879839,4
+pkt1993,24879839,4
+3547112,24879839,1
+133144543,24879839,1
+48903248,24879839,1
+74329329,24879839,4
+LinuxCandy,24879839,1
+lubolin,24879839,2
+54983933,24879839,2
+133705972,24879839,5
+41555500,24879839,2
+48369193,24879839,2
+78394698,24879839,2
+folaris,24879839,3
+61134295,24879839,4
+4528157,24879839,1
+103533703,24879839,2
+85333070,24879839,2
+43979908,24879839,3
+54622320,24879839,-1
+85090463,24879839,2
+eyeshouse,24879839,3
+115853778,24879839,5
+firstcause,24879839,3
+neofree,24879839,3
+41758984,24879839,3
+131168132,24879839,5
+jedicat,24879839,1
+48414231,24879839,3
+16983671,24879839,2
+MudDog,24879839,4
+vanon,24879839,1
+76012813,24879839,3
+calypso29,24879839,2
+your_j,24879839,2
+mokliving,24879839,2
+67557903,24879839,4
+kugooer,24879839,3
+56928605,24879839,3
+72920178,24879839,4
+nd4spd,24879839,1
+suannaimao,24879839,3
+bigredapple,24879839,4
+57915415,24879839,5
+2679788,24879839,3
+53864329,24879839,3
+20967601,24879839,2
+Oooop,24879839,4
+4311253,24879839,5
+121305318,24879839,-1
+fnsoxt,24879839,1
+51328750,24879839,3
+50337203,24879839,3
+48111333,24879839,3
+2190556,24879839,2
+3585677,24879839,3
+regalo,24879839,2
+vmeixiaoguliang,24879839,1
+51149079,24879839,3
+vivienp,24879839,1
+2373395,24879839,4
+1916756,24879839,5
+18274942,24879839,3
+swatow-ink,24879839,2
+gtxyxyz,24879839,3
+CatRococo,24879839,5
+53656123,24879839,2
+133660517,24879839,2
+AriesSusan,24879839,4
+44641491,24879839,4
+61235459,24879839,4
+CANCER75,24879839,3
+53550866,24879839,2
+34487824,24879839,4
+133654531,24879839,-1
+122779208,24879839,3
+84343760,24879839,3
+Tyin,24879839,4
+57707856,24879839,2
+dolphin-eliza,24879839,-1
+130510825,24879839,1
+42568988,24879839,5
+79504633,24879839,3
+47325319,24879839,3
+hahatedan,24879839,2
+58963446,24879839,2
+48713476,24879839,3
+51068415,24879839,2
+31306878,24879839,2
+elsove812,24879839,3
+ButteredCat,24879839,2
+133649160,24879839,1
+48786722,24879839,4
+129764944,24879839,2
+121976150,24879839,2
+52311613,24879839,4
+43628615,24879839,2
+SingingYouth,24879839,4
+73931385,24879839,2
+1505431,24879839,2
+49335696,24879839,2
+smart-ass,24879839,3
+122433778,24879839,4
+28271170,24879839,2
+37630136,24879839,4
+37523518,24879839,1
+ustyle,24879839,3
+lidongyu,24879839,4
+4147338,24879839,1
+133642483,24879839,1
+2307180,24879839,2
+30926546,24879839,1
+tinaq,24879839,2
+91584041,24879839,3
+1658796,24879839,2
+yanlee17,24879839,2
+HJS_L,24879839,4
+79614881,24879839,-1
+flowerwithalice,24879839,2
+SweetyAndMe,24879839,3
+steven_lee,24879839,2
+goofy,24879839,3
+xiaoshuogege,24879839,2
+132730973,24879839,3
+icefruit,24879839,4
+masterv,24879839,4
+41409099,24879839,3
+133241079,24879839,5
+ala7lee,24879839,3
+lyl116065921,24879839,3
+2916349,24879839,-1
+50679453,24879839,3
+119356090,24879839,4
+Yuenyuan,24879839,3
+45080512,24879839,2
+69355415,24879839,1
+74449872,24879839,3
+trnrf,24879839,4
+Gordoncoco,24879839,3
+52134648,24879839,3
+imhechang,24879839,2
+amigojr,24879839,2
+dingDX,24879839,2
+dingDX,24879839,2
+30499670,24879839,3
+65098968,24879839,3
+48588923,24879839,5
+132730918,24879839,3
+54340462,24879839,3
+60704424,24879839,3
+4217513,24879839,3
+3427595,24879839,3
+vera-cyw,24879839,3
+WOBUSHINI,24879839,3
+doubana,24879839,2
+Summer-0316,24879839,-1
+58095567,24879839,2
+67400745,24879839,1
+59778828,24879839,4
+49285687,24879839,3
+hjhhappy,24879839,3
+3786256,24879839,1
+50814168,24879839,4
+2420665,24879839,2
+lizhenhao,24879839,4
+MOTHERKILLER,24879839,4
+3111680,24879839,2
+133607210,24879839,1
+maoxiaolvzi1,24879839,3
+chengwq,24879839,3
+oranjeruud,24879839,4
+48623076,24879839,3
+2354239,24879839,3
+1479148,24879839,2
+133604186,24879839,3
+51711778,24879839,3
+89980809,24879839,2
+42604000,24879839,2
+2168902,24879839,2
+2673019,24879839,3
+73848826,24879839,4
+dbj1011,24879839,4
+130514270,24879839,2
+mihidess,24879839,4
+74744417,24879839,3
+81832502,24879839,5
+133597594,24879839,4
+65136878,24879839,2
+48675954,24879839,2
+Wanetta,24879839,3
+2014341,24879839,2
+133595959,24879839,4
+104823188,24879839,3
+65438730,24879839,3
+4930666,24879839,4
+emilyang428,24879839,2
+envyandecho,24879839,1
+46267341,24879839,2
+3270210,24879839,2
+64636436,24879839,3
+A_R_C_rops,24879839,2
+bbfary,24879839,3
+46781081,24879839,3
+37575099,24879839,2
+2424521,24879839,1
+46587558,24879839,2
+55616185,24879839,1
+133591959,24879839,1
+59376885,24879839,2
+59495337,24879839,2
+mingren2588,24879839,3
+72044584,24879839,4
+99804851,24879839,3
+65542762,24879839,4
+83881122,24879839,4
+131850381,24879839,1
+101793601,24879839,2
+47401601,24879839,2
+45909488,24879839,3
+4509280,24879839,1
+NysUn,24879839,3
+Jackandfoureyes,24879839,1
+mobao0731,24879839,1
+steal-someone,24879839,1
+qichengshiwo,24879839,3
+64476746,24879839,1
+14944907,24879839,2
+daiyuanvian,24879839,2
+67759623,24879839,-1
+o844,24879839,3
+godblesswho,24879839,1
+103415530,24879839,3
+4509464,24879839,4
+23675714,24879839,3
+123002309,24879839,3
+133578116,24879839,2
+2453639,24879839,3
+54570781,24879839,3
+56780370,24879839,2
+3777111,24879839,1
+133575194,24879839,2
+1767400,24879839,2
+65263892,24879839,3
+SINhuang,24879839,3
+132115433,24879839,5
+monkey1721,24879839,1
+68404885,24879839,2
+hegeng2015,24879839,-1
+52389655,24879839,3
+70294480,24879839,2
+Dushanbe,24879839,2
+66307947,24879839,4
+69856173,24879839,2
+46341304,24879839,4
+1074143,24879839,-1
+Soso-L,24879839,2
+sweetlemon,24879839,2
+chaunceyjohn,24879839,2
+133564730,24879839,3
+wehx2,24879839,3
+Gemini_Pipi,24879839,3
+72765235,24879839,2
+songchunxue,24879839,3
+54449997,24879839,1
+62828011,24879839,2
+liuzhejimmy,24879839,2
+1279239,24879839,4
+12999731,24879839,3
+1815827,24879839,-1
+45295722,24879839,3
+YakiraKw,24879839,4
+129214543,24879839,3
+wannafat,24879839,3
+78284260,24879839,2
+droiz,24879839,1
+44875082,24879839,-1
+jroclee,24879839,3
+87513783,24879839,2
+woruili,24879839,3
+120092472,24879839,3
+54814677,24879839,2
+49041524,24879839,3
+41431459,24879839,1
+81941728,24879839,4
+61394930,24879839,3
+73204677,24879839,3
+cathy_59,24879839,1
+49181189,24879839,4
+70634565,24879839,2
+65055816,24879839,3
+38918736,24879839,2
+121585200,24879839,-1
+xunjie,24879839,2
+scarlywoo,24879839,1
+67569927,24879839,3
+gps730,24879839,2
+woshicaicai,24879839,-1
+2045584,24879839,3
+vtea,24879839,3
+caixinkong,24879839,1
+black-h,24879839,4
+60860847,24879839,2
+54907096,24879839,3
+2717983,24879839,2
+2129789,24879839,3
+57243281,24879839,1
+44643515,24879839,2
+129637185,24879839,3
+63892737,24879839,4
+alessiagu,24879839,4
+niki-miao,24879839,-1
+56597679,24879839,1
+56238441,24879839,2
+65588690,24879839,2
+longliving,24879839,4
+69463567,24879839,4
+65081339,24879839,4
+moxu,24879839,3
+48866539,24879839,1
+daisydann,24879839,3
+64274695,24879839,3
+131383669,24879839,2
+89155855,24879839,2
+easonsuu,24879839,3
+127386685,24879839,3
+53206296,24879839,4
+55561510,24879839,3
+48126534,24879839,3
+51803315,24879839,3
+49329563,24879839,3
+LITTLEWYY,24879839,2
+63027604,24879839,1
+81418362,24879839,2
+buliyuanqu,24879839,2
+1096571,24879839,3
+92230154,24879839,2
+didi27,24879839,3
+92637851,24879839,2
+82841699,24879839,4
+3913741,24879839,3
+2330272,24879839,1
+milkQueen,24879839,2
+80585311,24879839,3
+114441069,24879839,3
+41897938,24879839,3
+29685065,24879839,3
+Smooth0727,24879839,3
+58135379,24879839,3
+rabbit0407,24879839,3
+129171726,24879839,3
+madache,24879839,2
+63777033,24879839,3
+BenGlen,24879839,1
+68525002,24879839,3
+42186843,24879839,3
+kevin222,24879839,1
+83747600,24879839,3
+driftaway,24879839,2
+48876123,24879839,1
+59782208,24879839,2
+Yam0915,24879839,1
+3667934,24879839,2
+36803758,24879839,-1
+y328675858,24879839,2
+133305407,24879839,3
+8073151,24879839,3
+carrot8587,24879839,3
+2839721,24879839,3
+zooooooj,24879839,2
+yh9708,24879839,2
+60118052,24879839,2
+Seeos,24879839,4
+42247977,24879839,5
+music-sun,24879839,1
+3924002,24879839,2
+64127845,24879839,2
+65465409,24879839,3
+56506887,24879839,2
+46935861,24879839,3
+98975242,24879839,2
+4449813,24879839,4
+funnypunny,24879839,1
+missufinally,24879839,2
+slowfood,24879839,3
+102688832,24879839,1
+64455771,24879839,1
+freedomtravell,24879839,2
+movielove,24879839,1
+tonyzhao,24879839,2
+44839165,24879839,1
+65266454,24879839,2
+MoQin,24879839,2
+62895879,24879839,5
+48940214,24879839,5
+sicker546,24879839,4
+69137072,24879839,2
+willese,24879839,2
+132844308,24879839,3
+56282257,24879839,5
+4534557,24879839,4
+4550816,24879839,3
+69371165,24879839,1
+kayomii,24879839,3
+zhuyuejun,24879839,3
+50865768,24879839,3
+nowaysis,24879839,2
+72409759,24879839,4
+52160935,24879839,3
+1768350,24879839,1
+yohoho0,24879839,3
+TUNA,24879839,2
+84461169,24879839,3
+70851991,24879839,1
+3358010,24879839,2
+48477485,24879839,4
+kingplum,24879839,3
+44852938,24879839,2
+4196011,24879839,2
+97645479,24879839,3
+114665991,24879839,1
+64083865,24879839,1
+venusvictorwong,24879839,1
+37382236,24879839,3
+37382236,24879839,3
+3632065,24879839,5
+120338818,24879839,1
+lewis_zzc,24879839,2
+76755993,24879839,2
+56411461,24879839,2
+64745936,24879839,3
+43849260,24879839,3
+iamfoot,24879839,3
+brushless,24879839,3
+2370392,24879839,1
+40853957,24879839,2
+133496258,24879839,3
+85429996,24879839,4
+80978535,24879839,1
+60317466,24879839,1
+46761795,24879839,4
+3053971,24879839,4
+122048990,24879839,4
+69682298,24879839,2
+47586387,24879839,3
+2922610,24879839,2
+56976495,24879839,2
+49653767,24879839,1
+63209981,24879839,3
+57750976,24879839,3
+1370702,24879839,2
+2414100,24879839,-1
+46240361,24879839,1
+84425856,24879839,3
+NotReally,24879839,-1
+katiezhou,24879839,-1
+QingZhao2012,24879839,1
+4291199,24879839,4
+specialxx,24879839,2
+francisoloist,24879839,4
+46173555,24879839,1
+43762131,24879839,5
+62062477,24879839,4
+86152553,24879839,1
+edward2wong,24879839,3
+59083968,24879839,3
+Daniel-Cheung,24879839,3
+74376371,24879839,3
+1563945,24879839,2
+50667944,24879839,2
+xxxxxxdee,24879839,1
+52079002,24879839,3
+83469606,24879839,3
+xfile99,24879839,3
+51067589,24879839,2
+45506080,24879839,2
+2488091,24879839,1
+yuyue1849,24879839,1
+wawa66,24879839,4
+72233130,24879839,2
+132881581,24879839,3
+53968834,24879839,4
+95592443,24879839,3
+126719955,24879839,4
+fannie7,24879839,3
+wwwwwwh,24879839,3
+Fdiori,24879839,4
+49772248,24879839,2
+71938369,24879839,2
+4283238,24879839,2
+43026697,24879839,3
+sunjiahui,24879839,2
+gemma-y,24879839,-1
+36834058,24879839,1
+49394474,24879839,2
+Twing,24879839,3
+49308867,24879839,3
+sky_lee4yy,24879839,2
+39132623,24879839,2
+3865672,24879839,3
+S-Daisy,24879839,4
+xiao33,24879839,1
+74266497,24879839,-1
+54258386,24879839,2
+46718918,24879839,1
+freakyoyo,24879839,4
+58956740,24879839,5
+57278963,24879839,1
+56141860,24879839,3
+64872065,24879839,4
+Hibernation,24879839,2
+42661364,24879839,3
+shenaringo,24879839,2
+91083170,24879839,4
+tristanfree,24879839,2
+48841040,24879839,3
+74905751,24879839,4
+71259453,24879839,1
+zzlcslg,24879839,-1
+94832319,24879839,1
+Lisa.L,24879839,3
+67436408,24879839,2
+51199402,24879839,1
+66237715,24879839,4
+56394061,24879839,3
+2305028,24879839,3
+2196209,24879839,2
+48094958,24879839,2
+131511603,24879839,2
+rucool,24879839,2
+47899427,24879839,4
+1734232,24879839,3
+qigenhuochai,24879839,2
+2086864,24879839,2
+109433835,24879839,4
+70720802,24879839,2
+54199069,24879839,3
+44373773,24879839,3
+70627079,24879839,3
+atu,24879839,4
+120826576,24879839,4
+68687737,24879839,2
+cuican,24879839,1
+wanglizhi2014,24879839,3
+79502356,24879839,4
+123962549,24879839,4
+Alone-2,24879839,3
+104825430,24879839,1
+victor.Z,24879839,2
+Opensky,24879839,3
+12573860,24879839,2
+4409440,24879839,1
+luoxuan2379,24879839,1
+76452322,24879839,4
+tionphoenix,24879839,3
+60762947,24879839,3
+59705593,24879839,3
+39811397,24879839,1
+sjtugxl,24879839,2
+64858326,24879839,1
+Coeur_De_Lion,24879839,5
+freakg,24879839,3
+78488765,24879839,5
+loveeightthree,24879839,1
+74479513,24879839,2
+3723538,24879839,4
+51254605,24879839,3
+y.u,24879839,3
+52422798,24879839,5
+lrq92livecn,24879839,3
+wangyeye,24879839,3
+RockyZou,24879839,1
+Arc_tao,24879839,1
+36345692,24879839,1
+3997989,24879839,4
+sunshinezz1991,24879839,3
+79856999,24879839,3
+52597615,24879839,1
+B.angus,24879839,3
+chancius,24879839,3
+133188364,24879839,3
+33751339,24879839,4
+nishibaichi,24879839,2
+kangecho,24879839,2
+yampak,24879839,1
+3993067,24879839,2
+l-memory,24879839,3
+kittydxd,24879839,2
+91145752,24879839,4
+goldjinzi,24879839,1
+Watermonster,24879839,3
+jingeng,24879839,2
+61807648,24879839,2
+haoxue119,24879839,4
+133234518,24879839,3
+3658150,24879839,4
+48995689,24879839,1
+21951726,24879839,2
+lxp,24879839,3
+Alice_,24879839,3
+103735356,24879839,3
+42675078,24879839,4
+momoaixiaolv,24879839,3
+57148360,24879839,3
+xiaoyatoufengzi,24879839,3
+muyitangtang,24879839,2
+zgw890425,24879839,5
+RincosLion,24879839,1
+3693808,24879839,2
+49187652,24879839,2
+56039933,24879839,-1
+52596729,24879839,2
+76594256,24879839,1
+june4u,24879839,2
+mangoboi,24879839,4
+88661415,24879839,3
+76428013,24879839,1
+119614924,24879839,2
+peppper,24879839,3
+52543100,24879839,-1
+shirleyrenoyuto,24879839,3
+mimi...,24879839,3
+60781440,24879839,1
+zhouloveyun,24879839,5
+54936166,24879839,1
+wraithhero,24879839,3
+65190799,24879839,1
+42011324,24879839,3
+2191624,24879839,1
+willfd,24879839,3
+59802835,24879839,3
+yuyouting,24879839,3
+lizhiqiang127,24879839,3
+50256135,24879839,1
+51048652,24879839,2
+ShakingYang,24879839,1
+58993842,24879839,4
+72016479,24879839,3
+65741899,24879839,4
+xinouxo,24879839,1
+127602291,24879839,3
+1058728,24879839,1
+4286666,24879839,4
+115665667,24879839,-1
+59393765,24879839,4
+50620883,24879839,2
+45504808,24879839,3
+57986340,24879839,4
+Heiyoo,24879839,3
+LegendZX,24879839,1
+67154069,24879839,4
+doralikesemon,24879839,3
+53815748,24879839,3
+jshippo,24879839,3
+1828898,24879839,3
+4497560,24879839,1
+42461012,24879839,1
+130132099,24879839,3
+41872275,24879839,1
+101139541,24879839,4
+9703364,24879839,3
+45549076,24879839,2
+philette,24879839,3
+50058727,24879839,3
+60662764,24879839,3
+77896835,24879839,3
+rooftop,24879839,2
+32556824,24879839,2
+8402329,24879839,1
+6646673,24879839,1
+3017985,24879839,3
+nyx0115,24879839,2
+rauzhulei,24879839,-1
+Edward_Elric,24879839,3
+72731242,24879839,4
+70794815,24879839,1
+kevinfilm,24879839,-1
+103758610,24879839,2
+Anybody002,24879839,1
+HR2007,24879839,2
+21333781,24879839,1
+121002785,24879839,5
+Deepoxygen,24879839,3
+97537742,24879839,2
+befreelancer,24879839,4
+130986286,24879839,3
+124914342,24879839,5
+whisperstone,24879839,3
+4298839,24879839,2
+69441215,24879839,3
+yexuanyulinxi,24879839,1
+luckyone,24879839,2
+59783688,24879839,2
+hollydoyle,24879839,3
+4092102,24879839,3
+fang0079,24879839,3
+41680643,24879839,3
+65346430,24879839,4
+yiboobaby,24879839,2
+71812808,24879839,4
+44690899,24879839,3
+35904276,24879839,2
+aiwengfan,24879839,3
+2152546,24879839,1
+57658984,24879839,3
+94380374,24879839,2
+50351476,24879839,1
+73378499,24879839,3
+59065986,24879839,2
+41785476,24879839,2
+youzhi,24879839,3
+39877849,24879839,2
+51990488,24879839,3
+3476283,24879839,5
+79400267,24879839,2
+52274350,24879839,3
+68238165,24879839,3
+rin993,24879839,4
+lewinman,24879839,1
+tshane,24879839,3
+61504169,24879839,4
+66721010,24879839,4
+4137814,24879839,4
+joesvita,24879839,3
+59220835,24879839,1
+52236886,24879839,3
+61753661,24879839,1
+96408818,24879839,1
+63170647,24879839,3
+2548575,24879839,1
+63000903,24879839,5
+doubandengjian,24879839,1
+1723553,24879839,1
+57340718,24879839,3
+49961036,24879839,4
+60095742,24879839,-1
+topgun444,24879839,3
+29360462,24879839,1
+sijizhp,24879839,3
+97544009,24879839,2
+Kidew,24879839,4
+56260072,24879839,1
+124959172,24879839,2
+46665080,24879839,3
+59580012,24879839,3
+53307722,24879839,4
+robinjrt,24879839,5
+35087113,24879839,2
+xiyaxiya,24879839,-1
+blackbana,24879839,4
+97062397,24879839,3
+lijingwu,24879839,2
+68559686,24879839,2
+42731759,24879839,1
+79359506,24879839,5
+48314806,24879839,1
+3722910,24879839,2
+Frank_cx,24879839,3
+74060146,24879839,3
+ptlemoon,24879839,3
+mogu_,24879839,3
+yizhiyu577,24879839,2
+131068311,24879839,2
+69939429,24879839,2
+2560827,24879839,1
+zhangzhangzhang,24879839,5
+58235612,24879839,2
+50672411,24879839,1
+51276928,24879839,2
+yiyedu,24879839,1
+121925320,24879839,3
+k33425,24879839,3
+38448078,24879839,2
+121805540,24879839,3
+77430587,24879839,3
+81179835,24879839,3
+36268247,24879839,2
+5594345,24879839,1
+34105589,24879839,3
+84704746,24879839,2
+nancyperfect,24879839,4
+52662813,24879839,1
+67897888,24879839,5
+46696173,24879839,3
+moschino,24879839,-1
+4509525,24879839,2
+127785608,24879839,2
+lanlanyouknow,24879839,4
+ava_hippo,24879839,2
+49859720,24879839,1
+ytstyan,24879839,3
+tianyuanty,24879839,1
+89281052,24879839,3
+122493396,24879839,4
+LasciatemiMorir,24879839,3
+78056349,24879839,4
+ilo0ok,24879839,1
+58193839,24879839,3
+46167248,24879839,3
+elika_su,24879839,5
+62035813,24879839,3
+sterr,24879839,1
+2104332,24879839,3
+doreen333,24879839,2
+juanjuanxy,24879839,2
+dandange,24879839,1
+68286104,24879839,3
+62314671,24879839,5
+2239303,24879839,2
+121162406,24879839,4
+43400315,24879839,5
+yaominzhu,24879839,2
+wennan_z,24879839,4
+62513276,24879839,1
+allenjtchen,24879839,4
+31932913,24879839,3
+trekker0,24879839,1
+xjrwjh,24879839,3
+sihuo521,24879839,5
+bjus,24879839,3
+62237283,24879839,2
+1450181,24879839,3
+handouxiansheng,24879839,1
+121937876,24879839,3
+linjinghai,24879839,2
+viviancien,24879839,3
+58317623,24879839,2
+2200873,24879839,1
+26696495,24879839,2
+73939740,24879839,2
+Cat_at,24879839,4
+18324848,24879839,4
+sheraho,24879839,3
+73861736,24879839,2
+132967809,24879839,4
+102642675,24879839,2
+GQY,24879839,3
+crystal1812,24879839,1
+54827600,24879839,1
+63334497,24879839,3
+robinbird,24879839,2
+Ericfei,24879839,3
+47193750,24879839,1
+50207070,24879839,2
+103796743,24879839,1
+52087392,24879839,3
+42984901,24879839,3
+62200135,24879839,3
+131970446,24879839,4
+resurrection,24879839,3
+52636646,24879839,2
+65239673,24879839,2
+chenqi2011,24879839,3
+2304340,24879839,3
+55481958,24879839,4
+siyao1019,24879839,2
+1642177,24879839,1
+45505495,24879839,-1
+2227178,24879839,1
+1093436,24879839,1
+sissyyyy,24879839,2
+51909458,24879839,3
+2720691,24879839,3
+47048376,24879839,2
+56486543,24879839,1
+3290225,24879839,2
+liuruojin,24879839,3
+62132064,24879839,2
+Vivien9,24879839,1
+drypm,24879839,1
+91656862,24879839,2
+nightbox,24879839,1
+cocowool,24879839,3
+52481316,24879839,2
+71467211,24879839,5
+46148106,24879839,3
+97982238,24879839,4
+63434723,24879839,2
+73331483,24879839,5
+36232092,24879839,2
+79952880,24879839,3
+vincent_kwok,24879839,3
+72444217,24879839,4
+54633342,24879839,-1
+54633342,24879839,-1
+68324587,24879839,5
+bodd,24879839,4
+54527658,24879839,3
+54231536,24879839,3
+rockred,24879839,3
+29433181,24879839,1
+zhixizyx,24879839,2
+58494684,24879839,1
+Bening,24879839,3
+119166720,24879839,2
+1412545,24879839,2
+redsmile,24879839,3
+yaoyamin,24879839,3
+liye1984,24879839,3
+49084251,24879839,2
+2095236,24879839,1
+Breathe_away,24879839,2
+heizhugan,24879839,3
+41926358,24879839,3
+35911285,24879839,1
+58466766,24879839,4
+xunuo828,24879839,3
+28498205,24879839,3
+47601578,24879839,2
+73859207,24879839,5
+yangqianbao,24879839,2
+aeris511,24879839,3
+35331418,24879839,2
+3981138,24879839,4
+70809185,24879839,2
+summer_yuyu,24879839,-1
+1371874,24879839,2
+58085968,24879839,1
+59374884,24879839,-1
+A-Marvin-T,24879839,2
+80516818,24879839,4
+angelhyacinth,24879839,1
+48419959,24879839,3
+4421474,24879839,2
+59554628,24879839,1
+momo7170,24879839,4
+102978456,24879839,2
+53728627,24879839,5
+1545634,24879839,2
+fivero,24879839,3
+stefanieray,24879839,2
+tanxiaole,24879839,2
+Ellllllli,24879839,2
+donkeyzhang,24879839,3
+wangleku0310,24879839,3
+3850532,24879839,1
+125741123,24879839,1
+2107398,24879839,-1
+64172361,24879839,3
+78634490,24879839,4
+62973843,24879839,3
+xiaoshiliushu,24879839,2
+34691129,24879839,2
+kkbpopsy,24879839,2
+83994671,24879839,1
+jiongcaicai,24879839,2
+49825242,24879839,3
+1520223,24879839,2
+LCF999,24879839,3
+ecstasybird,24879839,-1
+yy541272862,24879839,3
+1897616,24879839,2
+65576717,24879839,2
+tyjklldx,24879839,5
+66723801,24879839,1
+68467794,24879839,3
+56689572,24879839,3
+51362438,24879839,2
+65532408,24879839,3
+alphatown,24879839,1
+56301809,24879839,3
+44091847,24879839,2
+54090082,24879839,3
+46721841,24879839,1
+126334650,24879839,2
+88917796,24879839,3
+4525396,24879839,2
+39708814,24879839,2
+100338185,24879839,3
+57770614,24879839,4
+toowildtotouch,24879839,3
+57714176,24879839,2
+jideknight,24879839,2
+46091860,24879839,3
+55295766,24879839,2
+subway18,24879839,-1
+1630232,24879839,3
+kiara1988,24879839,1
+momoko1024,24879839,3
+131604537,24879839,4
+listenmumu,24879839,2
+90551968,24879839,2
+127029651,24879839,3
+65632936,24879839,1
+oooooi,24879839,4
+46195556,24879839,4
+70520946,24879839,4
+65321007,24879839,2
+44253593,24879839,3
+51086058,24879839,4
+49247233,24879839,3
+72703239,24879839,1
+hey.nanzhuang,24879839,3
+5116652,24879839,3
+wangdeuqna,24879839,3
+lynnetcn,24879839,4
+4196987,24879839,3
+crazydoctor,24879839,1
+mubin,24879839,3
+52219048,24879839,4
+carmen8212,24879839,3
+ajang,24879839,2
+46927488,24879839,3
+52530638,24879839,1
+chenaibeiang,24879839,4
+54419821,24879839,2
+KaRiCh,24879839,4
+131595243,24879839,1
+56235082,24879839,3
+65704794,24879839,1
+82243464,24879839,1
+60054131,24879839,3
+chezidaobai,24879839,2
+71911811,24879839,2
+44146595,24879839,4
+3921724,24879839,1
+74449417,24879839,4
+53466542,24879839,3
+3638186,24879839,3
+29099881,24879839,4
+59206130,24879839,2
+127771292,24879839,4
+Gin45,24879839,3
+zonovo,24879839,2
+Zukunft,24879839,1
+77111727,24879839,3
+81315778,24879839,2
+52377372,24879839,2
+chaliwang3,24879839,3
+1151347,24879839,4
+w317988945,24879839,3
+mufengqin,24879839,2
+Rain77,24879839,3
+bailuweishuang,24879839,4
+gigalo,24879839,3
+frances-6,24879839,-1
+54251790,24879839,2
+66035004,24879839,2
+klot,24879839,2
+ceerqingting,24879839,2
+49147828,24879839,1
+83040147,24879839,3
+4146586,24879839,2
+71583788,24879839,3
+ZettonToHana,24879839,1
+51216712,24879839,3
+53135086,24879839,2
+55022065,24879839,2
+kgbbeer,24879839,3
+lovinest,24879839,3
+47142528,24879839,3
+40237768,24879839,1
+99836975,24879839,3
+41250740,24879839,1
+lanyuhan,24879839,2
+61622729,24879839,3
+3522119,24879839,4
+50198552,24879839,3
+2713167,24879839,3
+78002916,24879839,1
+94380874,24879839,3
+74654745,24879839,3
+48007551,24879839,4
+91304159,24879839,3
+120929768,24879839,2
+3590184,24879839,3
+114381106,24879839,2
+43222334,24879839,2
+46722209,24879839,3
+46139461,24879839,3
+metaljacket,24879839,2
+4040333,24879839,3
+64095116,24879839,3
+40870953,24879839,2
+5012885,24879839,4
+cyhappy36507,24879839,2
+45252963,24879839,2
+59618340,24879839,4
+46476890,24879839,-1
+53945299,24879839,-1
+noelmumu,24879839,3
+48973247,24879839,3
+50797453,24879839,3
+65720947,24879839,2
+35744087,24879839,1
+reyo,24879839,2
+laijiojio,24879839,5
+81286886,24879839,3
+3052607,24879839,2
+shaochen,24879839,2
+26660078,24879839,3
+81257481,24879839,1
+48225270,24879839,2
+w849917387,24879839,3
+119611672,24879839,3
+127704028,24879839,2
+surgeonch,24879839,2
+gov,24879839,4
+wngkae,24879839,4
+103605185,24879839,3
+molilala,24879839,5
+58903343,24879839,4
+19698586,24879839,3
+riverbird,24879839,3
+Devil.Q,24879839,-1
+houx,24879839,3
+chenboada,24879839,2
+yjybibby,24879839,2
+65540792,24879839,4
+49198106,24879839,4
+34845334,24879839,1
+vivi112,24879839,4
+Belater_Waitman,24879839,5
+zhefengtalk,24879839,1
+119362745,24879839,3
+49655643,24879839,2
+48533366,24879839,1
+45513879,24879839,3
+60208169,24879839,1
+60282929,24879839,2
+jaswang,24879839,4
+133040027,24879839,1
+121511870,24879839,4
+52283291,24879839,2
+52283291,24879839,2
+130083039,24879839,2
+60956966,24879839,4
+80163980,24879839,3
+63465175,24879839,2
+fuckyoua,24879839,2
+65442164,24879839,1
+idorothy,24879839,4
+Achool,24879839,2
+69265405,24879839,1
+36477514,24879839,2
+14407702,24879839,2
+53925176,24879839,2
+8895439,24879839,3
+11503015,24879839,4
+28087184,24879839,3
+125040121,24879839,1
+1364278,24879839,2
+131500618,24879839,4
+45925572,24879839,3
+2221143,24879839,1
+62666104,24879839,2
+119806823,24879839,3
+63086956,24879839,2
+MK_ijal,24879839,2
+51636486,24879839,2
+fancywind,24879839,3
+14247291,24879839,3
+inzaghi0301,24879839,1
+54285585,24879839,3
+weiwei1020,24879839,3
+51276014,24879839,1
+beiheqingdeng,24879839,4
+3116029,24879839,3
+wangxiaobei89,24879839,1
+69273736,24879839,4
+cockerel,24879839,1
+laipixiaoxiuxiu,24879839,1
+83262608,24879839,2
+76032805,24879839,4
+56755911,24879839,3
+130442588,24879839,2
+68141214,24879839,3
+66161843,24879839,4
+of_sinner,24879839,-1
+46175747,24879839,2
+2499876,24879839,4
+qijianxiatian,24879839,1
+hhao108,24879839,1
+75251256,24879839,4
+heidiholic,24879839,3
+moneyfish,24879839,3
+joyceshen3,24879839,2
+teddy77,24879839,3
+2059620,24879839,3
+72549209,24879839,4
+133185272,24879839,2
+121914493,24879839,3
+45716088,24879839,3
+71339550,24879839,2
+3408360,24879839,3
+83749765,24879839,3
+xueyugaoyuan,24879839,2
+131807022,24879839,3
+55824890,24879839,1
+58141531,24879839,3
+130464213,24879839,3
+gengmaomao,24879839,4
+4429841,24879839,3
+lanhl,24879839,3
+someonebeaut1fu,24879839,4
+palala,24879839,-1
+104019378,24879839,1
+L-muyan,24879839,3
+48819084,24879839,2
+56360817,24879839,4
+66945260,24879839,1
+46415829,24879839,3
+81080319,24879839,4
+68739479,24879839,1
+37641563,24879839,3
+132181165,24879839,1
+Jungly,24879839,3
+MaxxaM,24879839,3
+4110327,24879839,3
+sinkpad,24879839,3
+78174924,24879839,2
+isone,24879839,2
+Yunsta,24879839,2
+92451240,24879839,4
+2783176,24879839,3
+2045360,24879839,5
+65284749,24879839,3
+lazelanka,24879839,2
+xiaozhangshi,24879839,3
+eloisepqy,24879839,2
+halucinogeny,24879839,2
+3305024,24879839,2
+xqer,24879839,3
+61422043,24879839,2
+hdkoo,24879839,3
+pkelly,24879839,1
+60890395,24879839,3
+93505964,24879839,3
+1271021,24879839,5
+dukeduan,24879839,1
+60437937,24879839,2
+zi34lang,24879839,1
+43551030,24879839,2
+91528271,24879839,3
+benimaru97,24879839,1
+azurewrathphase,24879839,2
+4620614,24879839,3
+1599911,24879839,3
+andy87819,24879839,3
+88433908,24879839,2
+wxhafs,24879839,2
+56059408,24879839,-1
+131841419,24879839,2
+89742637,24879839,-1
+haibinliu,24879839,3
+86019559,24879839,3
+52838594,24879839,1
+hairu,24879839,3
+changgu4290,24879839,2
+wilsonliu,24879839,2
+53343599,24879839,3
+52341297,24879839,3
+cheeseflower,24879839,2
+crazymurmur,24879839,3
+gong1341,24879839,1
+78377702,24879839,1
+14347413,24879839,1
+65924681,24879839,2
+105796566,24879839,5
+MOVA,24879839,-1
+litlfaiv,24879839,4
+4727036,24879839,4
+28810973,24879839,2
+1965425,24879839,1
+69578055,24879839,4
+77046292,24879839,2
+hyasmaww,24879839,3
+49170790,24879839,2
+4889336,24879839,2
+79128463,24879839,3
+junior0chen,24879839,-1
+solarwater,24879839,3
+78447533,24879839,2
+79044284,24879839,4
+sudalufei,24879839,3
+wjx8023,24879839,2
+48078107,24879839,4
+UncleTS,24879839,2
+42531507,24879839,3
+51475785,24879839,4
+1333089,24879839,2
+4695734,24879839,3
+2401259,24879839,3
+killian9999,24879839,3
+fzh2wj,24879839,3
+old-playboy,24879839,2
+kalla,24879839,1
+55418442,24879839,2
+55321548,24879839,3
+42471589,24879839,3
+Sparta233,24879839,1
+tmh9390,24879839,4
+47063315,24879839,4
+102432384,24879839,4
+68354862,24879839,3
+87212152,24879839,-1
+47434041,24879839,2
+80145424,24879839,3
+45978726,24879839,4
+jintiandeng,24879839,3
+106190306,24879839,-1
+45231724,24879839,2
+3966093,24879839,2
+leidianboy,24879839,3
+54578280,24879839,4
+60854544,24879839,2
+132707156,24879839,2
+70998603,24879839,3
+1452888,24879839,2
+2426180,24879839,1
+123123131,24879839,3
+4445926,24879839,1
+81034512,24879839,-1
+34205981,24879839,2
+liero,24879839,3
+62482710,24879839,3
+122561726,24879839,3
+121154422,24879839,3
+1617824,24879839,1
+121628266,24879839,2
+59537499,24879839,3
+3877002,24879839,4
+Mifanr,24879839,5
+2761282,24879839,1
+2761282,24879839,1
+30836444,24879839,2
+58624199,24879839,4
+119099264,24879839,4
+f_qq,24879839,4
+62340407,24879839,2
+67449498,24879839,4
+84158576,24879839,4
+harlanlee,24879839,2
+zhz586,24879839,1
+kittysweet,24879839,3
+3506346,24879839,2
+47305840,24879839,2
+128569083,24879839,3
+48467281,24879839,3
+jiong4,24879839,3
+56904860,24879839,2
+65233662,24879839,3
+meyuki,24879839,3
+53815086,24879839,4
+53815086,24879839,4
+79535386,24879839,2
+115722304,24879839,1
+49946146,24879839,4
+zhqjuice,24879839,2
+kingiknow,24879839,2
+chenhuayang,24879839,2
+ABQK,24879839,2
+54193081,24879839,3
+kid1412zn,24879839,2
+58977127,24879839,3
+46892616,24879839,4
+57819875,24879839,-1
+63641303,24879839,2
+82917732,24879839,4
+kuizhizhu,24879839,3
+mio620,24879839,3
+xx_jmlx,24879839,2
+ca3as2caco3,24879839,1
+Aidaner,24879839,2
+54041697,24879839,3
+86136547,24879839,3
+50975959,24879839,2
+24068635,24879839,3
+verakid,24879839,3
+34367914,24879839,2
+124739803,24879839,2
+61686862,24879839,1
+71756751,24879839,2
+50268324,24879839,5
+Biglog,24879839,3
+rainyye,24879839,3
+soundless245223,24879839,3
+lifedraft,24879839,3
+64329337,24879839,4
+longlystone,24879839,3
+realeunhae,24879839,2
+115838732,24879839,3
+youdianhuanjue,24879839,1
+xiaoism,24879839,4
+iRayc,24879839,3
+vivienne1117,24879839,3
+67606836,24879839,3
+agiha,24879839,1
+xiaozilu,24879839,-1
+2067857,24879839,2
+54212418,24879839,2
+58885519,24879839,4
+57630254,24879839,3
+101857892,24879839,-1
+90618963,24879839,1
+vembear,24879839,4
+68532789,24879839,3
+BeingSweetSweet,24879839,3
+50201051,24879839,1
+41343112,24879839,2
+121432850,24879839,2
+1579221,24879839,3
+dizen,24879839,5
+57818440,24879839,4
+102166139,24879839,1
+neverland_qq,24879839,4
+chenxiaoke,24879839,1
+43485946,24879839,2
+62817881,24879839,4
+lilishi,24879839,3
+69102270,24879839,2
+52542019,24879839,2
+52832781,24879839,2
+ThreeMonkey,24879839,2
+68166546,24879839,3
+30821968,24879839,1
+34864713,24879839,3
+qi7745723,24879839,2
+64024738,24879839,2
+133136590,24879839,-1
+2579342,24879839,3
+57848317,24879839,1
+42912384,24879839,2
+faycheung,24879839,3
+58158290,24879839,1
+3821718,24879839,3
+3603638,24879839,2
+jiwenhe,24879839,1
+2491978,24879839,2
+yuyucara,24879839,3
+3502602,24879839,2
+66665362,24879839,3
+63672355,24879839,1
+62504399,24879839,2
+91136103,24879839,2
+43258987,24879839,3
+4617488,24879839,3
+127972732,24879839,3
+shixiaoli,24879839,3
+annnnnn,24879839,2
+3923065,24879839,4
+yanranaduo,24879839,3
+momokosusu,24879839,3
+liangzishuixing,24879839,4
+67921320,24879839,-1
+2920373,24879839,2
+Zaia,24879839,3
+67375101,24879839,1
+76893393,24879839,3
+60867302,24879839,2
+43269770,24879839,3
+ilovehongkou,24879839,2
+sadjack,24879839,3
+93748665,24879839,3
+64723431,24879839,2
+fairys,24879839,5
+110969952,24879839,3
+43377923,24879839,2
+12325127,24879839,3
+saky,24879839,4
+hellomilky,24879839,4
+1294273,24879839,2
+38310657,24879839,3
+suobang11,24879839,2
+nimonnwang,24879839,4
+42310478,24879839,3
+65373191,24879839,4
+yingsuisiyuan,24879839,3
+47805986,24879839,4
+2874749,24879839,1
+rainoxu,24879839,2
+lolitayan,24879839,3
+kobeliuhao,24879839,1
+4596072,24879839,2
+Dev1antKoMi,24879839,2
+4784880,24879839,2
+jiangssica,24879839,3
+4115756,24879839,3
+58168997,24879839,-1
+42292458,24879839,4
+1781887,24879839,1
+ycg1997,24879839,2
+45354123,24879839,3
+1615580,24879839,3
+laviwoo,24879839,3
+agwhy,24879839,1
+biocult,24879839,3
+3579800,24879839,3
+vmbai,24879839,3
+2731473,24879839,4
+quarter,24879839,4
+132912697,24879839,5
+AbuseyourDNA,24879839,3
+48205456,24879839,2
+kuensun,24879839,2
+DaTouSama,24879839,1
+robo2046,24879839,2
+75188314,24879839,4
+daily815,24879839,-1
+caizangcaizang,24879839,2
+minqi,24879839,3
+TVBVSBON,24879839,1
+90146858,24879839,5
+41523122,24879839,1
+52689721,24879839,3
+63274793,24879839,2
+124887489,24879839,3
+3086120,24879839,3
+jeffchuwei,24879839,2
+46827374,24879839,2
+diana961108,24879839,-1
+frosteeeee,24879839,2
+2869548,24879839,1
+meihuasannong,24879839,1
+marxpayne,24879839,2
+agentying,24879839,2
+53795201,24879839,3
+46961814,24879839,4
+124813408,24879839,2
+84652846,24879839,3
+xiannver,24879839,2
+xqyamour,24879839,3
+100750697,24879839,2
+52766247,24879839,3
+cwill,24879839,3
+26322881,24879839,4
+3054506,24879839,2
+46483875,24879839,3
+74008197,24879839,3
+yangchyoung,24879839,3
+author,24879839,3
+VampirX,24879839,2
+2202605,24879839,1
+59537632,24879839,2
+22595281,24879839,3
+60193663,24879839,1
+4096669,24879839,1
+60517368,24879839,2
+2681017,24879839,3
+34145664,24879839,2
+63027921,24879839,3
+xhris,24879839,1
+63075072,24879839,2
+67758880,24879839,3
+54644881,24879839,4
+61280633,24879839,2
+mne-xe,24879839,5
+3845975,24879839,3
+UFO-75,24879839,3
+lovegloria,24879839,1
+xiaotun,24879839,2
+bluefrog,24879839,-1
+22074065,24879839,4
+68964549,24879839,1
+62158106,24879839,3
+130400247,24879839,-1
+61660180,24879839,3
+132436359,24879839,4
+66178513,24879839,3
+47274200,24879839,3
+zpavel,24879839,5
+60304820,24879839,2
+Singfukua,24879839,3
+61419060,24879839,1
+102582882,24879839,3
+heihuawu,24879839,1
+laiziming,24879839,4
+zyy23,24879839,3
+37929446,24879839,2
+63923908,24879839,2
+115713999,24879839,1
+42749212,24879839,2
+willsofshatter,24879839,3
+128609599,24879839,2
+81740674,24879839,3
+82656562,24879839,1
+doudou0322,24879839,2
+sophie1007,24879839,3
+disloyalworld,24879839,4
+42221963,24879839,2
+43785855,24879839,2
+50890852,24879839,2
+poppy1982,24879839,4
+62314385,24879839,1
+hill__,24879839,2
+zooyam,24879839,1
+44096316,24879839,2
+frankxiafan,24879839,2
+kiki924,24879839,2
+xiao8888,24879839,2
+64931899,24879839,3
+58208476,24879839,5
+yaluhou,24879839,3
+28178228,24879839,1
+crow.,24879839,2
+70362034,24879839,4
+lianjin,24879839,3
+43779094,24879839,1
+80462824,24879839,3
+xiaojiongxia,24879839,3
+77758955,24879839,3
+xiashu-,24879839,3
+120303134,24879839,1
+37226632,24879839,4
+115786111,24879839,1
+52638193,24879839,2
+beefeaters,24879839,4
+106599848,24879839,1
+3921459,24879839,1
+dearlayla,24879839,3
+guitarain,24879839,4
+mourirank,24879839,2
+68399606,24879839,2
+115853836,24879839,3
+123666802,24879839,3
+1847063,24879839,1
+yhbx,24879839,3
+buobo,24879839,2
+9245426,24879839,3
+53772865,24879839,3
+31613621,24879839,3
+1222025,24879839,3
+74572703,24879839,3
+14745838,24879839,1
+50833916,24879839,3
+80227900,24879839,2
+imluming,24879839,4
+65032980,24879839,1
+kong_bai_ge,24879839,2
+116537123,24879839,4
+zhangcj1224,24879839,2
+123127945,24879839,1
+Kenji0,24879839,5
+yvottetangtang,24879839,1
+seren,24879839,3
+46792617,24879839,2
+32911362,24879839,2
+3076248,24879839,2
+9352143,24879839,2
+3864518,24879839,2
+63892447,24879839,1
+yway1101,24879839,2
+36253770,24879839,3
+101820045,24879839,3
+72691746,24879839,3
+alexandrawoo,24879839,2
+37480927,24879839,3
+54433394,24879839,-1
+76299602,24879839,3
+41464821,24879839,1
+63894811,24879839,4
+edwinx,24879839,2
+xixijide,24879839,1
+48444997,24879839,3
+125878339,24879839,4
+s_3,24879839,5
+52336873,24879839,3
+diyidouya,24879839,2
+s1219snow,24879839,2
+46866923,24879839,3
+50892549,24879839,2
+82981100,24879839,3
+imtutu,24879839,3
+129227883,24879839,3
+127777711,24879839,-1
+Raining421,24879839,3
+48276926,24879839,1
+44345468,24879839,1
+49742235,24879839,2
+licakm,24879839,3
+leafsong,24879839,2
+EmmaQiu,24879839,3
+37153252,24879839,2
+viavia1991,24879839,1
+threeday,24879839,3
+yuanchanggeng,24879839,2
+51589899,24879839,3
+4241910,24879839,3
+120112831,24879839,3
+30395338,24879839,3
+kangkangarea,24879839,4
+66336980,24879839,5
+69631083,24879839,3
+52033116,24879839,2
+QINGFENGDIEWU,24879839,3
+2760210,24879839,3
+yoyopig,24879839,3
+Alice915,24879839,2
+38897108,24879839,2
+49763880,24879839,3
+nangongmocheng,24879839,3
+2444430,24879839,3
+chendaxiao,24879839,4
+73125867,24879839,4
+46131972,24879839,1
+Lommy,24879839,1
+variation1229,24879839,3
+49273885,24879839,1
+44311860,24879839,3
+66512641,24879839,1
+gilyun,24879839,3
+paper169,24879839,4
+76781369,24879839,2
+Windbroken,24879839,1
+74648071,24879839,1
+65646732,24879839,1
+52621026,24879839,3
+zzi,24879839,1
+monilen,24879839,2
+50487533,24879839,2
+zc1997,24879839,3
+zzh807336404,24879839,3
+silviaxy816,24879839,2
+59968700,24879839,3
+107546917,24879839,3
+nvmotou,24879839,1
+chimtinker,24879839,5
+67680996,24879839,3
+SoCrazyNemo,24879839,3
+56434329,24879839,2
+119390684,24879839,1
+57876228,24879839,2
+1205451,24879839,2
+joyego,24879839,3
+55338407,24879839,2
+43563511,24879839,2
+shihaotianna,24879839,2
+AmeliaZhu,24879839,4
+1094092,24879839,2
+3511715,24879839,1
+88266067,24879839,2
+3832888,24879839,3
+jjq_wuyi,24879839,1
+ylzhangyao,24879839,1
+47732360,24879839,2
+132773025,24879839,4
+27059622,24879839,2
+64720844,24879839,2
+lzyue,24879839,1
+bloorstreetnara,24879839,-1
+scohj,24879839,3
+2622120,24879839,2
+2155432,24879839,2
+flymanbenz,24879839,5
+2107434,24879839,2
+13871057,24879839,2
+125346626,24879839,3
+50023640,24879839,3
+wutianxiang,24879839,2
+3204422,24879839,2
+37488201,24879839,-1
+jiangziwen,24879839,1
+75048470,24879839,2
+120854379,24879839,5
+130162828,24879839,1
+130623061,24879839,1
+61361499,24879839,2
+etroussat,24879839,1
+eaufavor,24879839,2
+11511616,24879839,-1
+4713496,24879839,3
+70453072,24879839,2
+38560086,24879839,4
+47436584,24879839,1
+ranfei,24879839,1
+71622967,24879839,4
+leonardzhu,24879839,3
+2701907,24879839,3
+chenyanluli,24879839,3
+3919435,24879839,2
+38246464,24879839,4
+3797391,24879839,2
+25673026,24879839,3
+60246956,24879839,2
+69459353,24879839,-1
+denisy,24879839,2
+3419902,24879839,3
+paneyi,24879839,1
+44834038,24879839,3
+fecal,24879839,4
+47610839,24879839,5
+35001545,24879839,2
+hoomjac,24879839,1
+83538603,24879839,3
+58819021,24879839,1
+sayucinq,24879839,2
+64865993,24879839,3
+45872414,24879839,2
+32711539,24879839,4
+49506058,24879839,2
+124463639,24879839,2
+hyukcat,24879839,2
+41431313,24879839,4
+templar,24879839,3
+104881508,24879839,1
+joyanlie,24879839,-1
+47415890,24879839,3
+132813456,24879839,3
+79507258,24879839,3
+silenttsea,24879839,1
+45939025,24879839,1
+honglanqishi,24879839,-1
+methodolody,24879839,2
+2294404,24879839,2
+36360632,24879839,1
+2776951,24879839,2
+58775524,24879839,-1
+62864634,24879839,3
+48120700,24879839,3
+echo-jian,24879839,3
+80227476,24879839,4
+103610487,24879839,1
+16816823,24879839,2
+lnzyn,24879839,3
+59233109,24879839,2
+60804047,24879839,1
+uniooo,24879839,3
+mtwitter,24879839,3
+NEUN1975,24879839,3
+46656643,24879839,2
+44412475,24879839,2
+70967069,24879839,2
+yueqingge,24879839,3
+mymimu,24879839,2
+127345355,24879839,3
+47924060,24879839,3
+jiangjixiang,24879839,1
+2328781,24879839,3
+47589972,24879839,2
+zhouxiaoou,24879839,3
+4245980,24879839,5
+30719959,24879839,5
+28767206,24879839,2
+next99,24879839,1
+1457101,24879839,1
+120748067,24879839,4
+7510013,24879839,2
+122696442,24879839,3
+28202020,24879839,4
+101549160,24879839,2
+shellycxl,24879839,3
+3781023,24879839,1
+58863205,24879839,1
+lingdonging,24879839,2
+mlgg,24879839,2
+4134812,24879839,3
+47786256,24879839,3
+light0829,24879839,4
+frankzhang,24879839,3
+52345284,24879839,2
+taochengxiaowu,24879839,2
+67843912,24879839,1
+justMog,24879839,2
+jiatianyu1,24879839,4
+90332226,24879839,3
+powerddt,24879839,3
+dreamt_A,24879839,3
+Eayo,24879839,2
+46338692,24879839,3
+icephoenixone,24879839,3
+89021640,24879839,3
+nonobean,24879839,2
+moredarkwhite,24879839,2
+heyflower,24879839,3
+63768650,24879839,3
+1502044,24879839,1
+yuxingshu,24879839,2
+vipdayu,24879839,3
+124877440,24879839,3
+29723983,24879839,3
+3440574,24879839,3
+123543090,24879839,3
+NeverLate,24879839,1
+superpanv,24879839,1
+dcliuxu,24879839,2
+58818600,24879839,4
+44361116,24879839,3
+memor,24879839,3
+nathan_R,24879839,2
+goldendali,24879839,3
+70861303,24879839,2
+121757659,24879839,2
+71848127,24879839,2
+mjtang,24879839,4
+arale180,24879839,4
+59625394,24879839,3
+polyboot,24879839,3
+50765649,24879839,2
+59375457,24879839,2
+41285106,24879839,2
+F1vese7enone,24879839,3
+1699930,24879839,2
+zhanghanha,24879839,2
+cannabimos,24879839,2
+languheshang,24879839,2
+132869648,24879839,3
+zhengxianmin,24879839,3
+55887072,24879839,3
+maryshirley,24879839,4
+87719224,24879839,3
+wangdazhong,24879839,2
+calmlygod,24879839,5
+liliasmile,24879839,3
+54895743,24879839,4
+44904163,24879839,3
+121986674,24879839,4
+4657028,24879839,3
+50137334,24879839,3
+10085322,24879839,3
+57411065,24879839,-1
+answerwxf,24879839,3
+3722662,24879839,3
+wacky02,24879839,2
+38744199,24879839,3
+42816825,24879839,3
+78902065,24879839,3
+xianjianonly,24879839,3
+35224934,24879839,1
+tracychui,24879839,3
+67184394,24879839,2
+6014374,24879839,3
+63646179,24879839,3
+Rebecca_618,24879839,2
+isade,24879839,2
+isade,24879839,2
+49345225,24879839,3
+nnnn3,24879839,2
+90847508,24879839,4
+Knight9,24879839,2
+10839393,24879839,2
+103271136,24879839,2
+littlezhisandra,24879839,1
+91397317,24879839,2
+ivygreen06,24879839,3
+JanC,24879839,2
+34894274,24879839,2
+snakeofwinter,24879839,2
+80920192,24879839,5
+61808642,24879839,1
+xbcy,24879839,5
+119863705,24879839,1
+48165098,24879839,3
+yinmouren,24879839,2
+shadow-walker,24879839,3
+jiapp,24879839,3
+69345836,24879839,4
+26256447,24879839,1
+57477748,24879839,1
+127450235,24879839,2
+103264608,24879839,3
+38866851,24879839,5
+vinjun,24879839,2
+75912541,24879839,3
+53925227,24879839,3
+melodysmelody,24879839,3
+83795048,24879839,2
+3308221,24879839,3
+94422178,24879839,2
+leskwan,24879839,5
+70534967,24879839,3
+48986399,24879839,3
+XenFOne,24879839,3
+xiaoqianquan,24879839,3
+FOOL624,24879839,3
+3575164,24879839,2
+sithskywalker,24879839,3
+19708790,24879839,3
+74827424,24879839,2
+heathlon,24879839,3
+1592554,24879839,-1
+1857885,24879839,3
+65365565,24879839,1
+46186768,24879839,1
+64817099,24879839,-1
+53414319,24879839,1
+nianyike,24879839,1
+49789173,24879839,1
+raymondyoung,24879839,1
+Q9,24879839,2
+78166876,24879839,1
+footstepmsn,24879839,1
+90638184,24879839,3
+mulin_111,24879839,1
+44811751,24879839,2
+92165422,24879839,3
+45395995,24879839,-1
+51356225,24879839,2
+GZ,24879839,2
+57587098,24879839,4
+119406391,24879839,3
+53248531,24879839,1
+31012523,24879839,2
+4110050,24879839,3
+laneddy,24879839,1
+78588214,24879839,3
+82989035,24879839,1
+HAYATE-RIN,24879839,2
+85314786,24879839,3
+57871688,24879839,4
+katherine0620,24879839,2
+1823227,24879839,4
+3326293,24879839,3
+hinyon,24879839,3
+woniu0125,24879839,2
+woniu0125,24879839,2
+47095353,24879839,3
+4558796,24879839,-1
+3956290,24879839,2
+73411594,24879839,2
+Tony1168,24879839,3
+MiHS,24879839,3
+119276408,24879839,1
+lzh625,24879839,-1
+BennyB,24879839,2
+jet92,24879839,2
+2855227,24879839,-1
+guoguo07,24879839,-1
+67333061,24879839,3
+3000265,24879839,2
+54054785,24879839,3
+28104351,24879839,3
+101694101,24879839,3
+wangxin76ers,24879839,3
+toomao,24879839,4
+tataqing,24879839,2
+3301137,24879839,3
+43305695,24879839,3
+48083771,24879839,2
+sysop,24879839,3
+52649059,24879839,4
+67653468,24879839,3
+14479133,24879839,3
+fasy,24879839,3
+38626642,24879839,2
+52372412,24879839,2
+iceboland,24879839,3
+arylu,24879839,1
+79858645,24879839,2
+l92599,24879839,2
+62769778,24879839,5
+yyue,24879839,-1
+42619160,24879839,3
+50766549,24879839,4
+53565685,24879839,2
+77570203,24879839,1
+133005879,24879839,1
+58833110,24879839,3
+33629882,24879839,3
+1921806,24879839,1
+signal,24879839,5
+antimercydou,24879839,3
+2421625,24879839,2
+4646541,24879839,3
+jouevemau,24879839,3
+aidingyi,24879839,3
+sui2,24879839,3
+31583131,24879839,1
+131730060,24879839,2
+132737417,24879839,3
+liyuchen,24879839,3
+67048173,24879839,2
+62554570,24879839,3
+levone,24879839,1
+4531236,24879839,3
+46722646,24879839,4
+16084893,24879839,2
+52765018,24879839,1
+58604332,24879839,2
+66094043,24879839,1
+4283326,24879839,1
+sweetxyy,24879839,2
+87387635,24879839,3
+68725414,24879839,4
+66699032,24879839,2
+floragrx,24879839,3
+2762219,24879839,4
+nenyalee,24879839,5
+oldwolfnwf,24879839,-1
+qqb143,24879839,1
+hasu,24879839,3
+3671533,24879839,2
+summertreevbme,24879839,2
+yifei1110,24879839,3
+61186332,24879839,2
+yifei1110,24879839,3
+61186332,24879839,2
+53667913,24879839,3
+xiongweilin,24879839,2
+37229624,24879839,1
+Prot,24879839,1
+1975037,24879839,2
+12470657,24879839,2
+zebaoa,24879839,4
+61542735,24879839,3
+wasasw,24879839,3
+Magicians,24879839,1
+11882042,24879839,3
+48508088,24879839,3
+102184386,24879839,1
+applesan,24879839,1
+65549405,24879839,3
+54020507,24879839,4
+60795488,24879839,3
+sunrain10,24879839,4
+130245543,24879839,3
+72258844,24879839,4
+DONGXIAOYANG,24879839,3
+80011707,24879839,3
+william_fung,24879839,3
+bukuwanzi,24879839,3
+51226667,24879839,1
+14441996,24879839,1
+119301457,24879839,3
+yuanzedong,24879839,3
+1115389,24879839,4
+50075764,24879839,1
+63363577,24879839,3
+66106670,24879839,1
+51773782,24879839,1
+kwg18168,24879839,1
+93300402,24879839,1
+2391373,24879839,4
+42295837,24879839,3
+cs314765478,24879839,2
+cs314765478,24879839,2
+ChristiaLi,24879839,3
+122765987,24879839,2
+62767717,24879839,2
+69986931,24879839,2
+hj1998,24879839,4
+59504522,24879839,1
+67584807,24879839,3
+78335963,24879839,1
+huabu3house,24879839,2
+65239097,24879839,3
+45286644,24879839,1
+1345345,24879839,3
+81639579,24879839,2
+3573308,24879839,4
+Lieutenant_Lu,24879839,1
+2894358,24879839,2
+46497691,24879839,2
+62588625,24879839,1
+whosoever,24879839,2
+46899693,24879839,1
+binnnn,24879839,2
+lilylee1023,24879839,2
+lflit,24879839,1
+l321,24879839,3
+Jewelyxy,24879839,3
+83621117,24879839,2
+54913780,24879839,4
+66768802,24879839,4
+56216343,24879839,1
+4413125,24879839,3
+tiffanyangel,24879839,3
+lyzw,24879839,2
+57790852,24879839,1
+4140499,24879839,3
+129977566,24879839,1
+46034257,24879839,3
+81171116,24879839,1
+31849844,24879839,3
+71673399,24879839,3
+72337142,24879839,5
+mengqingjiao,24879839,3
+40559472,24879839,2
+xiaoxinjessica,24879839,4
+53595265,24879839,1
+Laboboo,24879839,3
+43989001,24879839,3
+36464568,24879839,4
+63304223,24879839,2
+sev7n777,24879839,3
+huster-lion,24879839,4
+83263798,24879839,-1
+52277168,24879839,2
+44537605,24879839,2
+piubiu,24879839,4
+45833709,24879839,2
+56228022,24879839,2
+39673614,24879839,4
+60631421,24879839,2
+2162550,24879839,2
+84398440,24879839,3
+60722327,24879839,4
+1958578,24879839,2
+janice5680,24879839,2
+last_year_waltz,24879839,3
+dafenqi,24879839,5
+kongchanzhimeng,24879839,1
+61123670,24879839,2
+44684496,24879839,3
+WoSeaN_Vincent,24879839,3
+56478943,24879839,3
+59330201,24879839,1
+4305622,24879839,3
+53233343,24879839,1
+75937419,24879839,3
+oneofus,24879839,1
+4079659,24879839,3
+58016445,24879839,2
+Artillerys,24879839,3
+132342909,24879839,2
+39961322,24879839,1
+Cecil.,24879839,2
+WhoRU,24879839,1
+atooom,24879839,4
+3897637,24879839,2
+heydzi,24879839,2
+baierye,24879839,1
+2722902,24879839,3
+1727088,24879839,3
+50997906,24879839,2
+57714945,24879839,2
+65520925,24879839,1
+4247179,24879839,4
+constantmartin,24879839,3
+calfen,24879839,3
+26173061,24879839,1
+nineboy,24879839,5
+38597414,24879839,3
+64947764,24879839,3
+36591697,24879839,3
+4271937,24879839,3
+64741757,24879839,3
+53227132,24879839,2
+66959983,24879839,2
+65323285,24879839,1
+HAPPYFFF,24879839,3
+54211589,24879839,4
+bonnieWZ,24879839,1
+50995944,24879839,3
+5800448,24879839,5
+52739164,24879839,2
+youyousina,24879839,3
+50002640,24879839,3
+youngspring,24879839,3
+57387221,24879839,2
+121829507,24879839,2
+73294226,24879839,3
+wakakawakakawak,24879839,4
+46897570,24879839,2
+malinda2199,24879839,5
+83240354,24879839,2
+hahagoushinan,24879839,3
+hmily0316,24879839,1
+80049248,24879839,3
+45478417,24879839,4
+39937848,24879839,2
+51888216,24879839,2
+lilibuth,24879839,-1
+64128291,24879839,1
+55852131,24879839,4
+50144933,24879839,3
+41374892,24879839,3
+bavayang,24879839,5
+51950822,24879839,2
+68424830,24879839,-1
+xuyq,24879839,1
+Chickenfly,24879839,2
+36885364,24879839,-1
+Che-Kang,24879839,4
+zxyang,24879839,1
+laoshiteng,24879839,-1
+hawkingur,24879839,2
+tonarinototoro,24879839,3
+61612027,24879839,3
+Finnegans,24879839,1
+1062820,24879839,3
+xweiway,24879839,2
+helloldq,24879839,3
+3581900,24879839,2
+132295243,24879839,3
+64887412,24879839,3
+26462981,24879839,2
+aimaox,24879839,1
+1865210,24879839,2
+83170366,24879839,4
+lotus47,24879839,-1
+40077606,24879839,2
+6537400,24879839,4
+49784742,24879839,2
+lcghere,24879839,3
+gagging,24879839,3
+45379692,24879839,1
+echo920905,24879839,2
+2697421,24879839,3
+suguorui,24879839,4
+69152346,24879839,3
+132075693,24879839,4
+50017356,24879839,3
+57149098,24879839,3
+44406151,24879839,2
+louis15yao,24879839,4
+Reborn-Lee,24879839,4
+gracezt,24879839,3
+yadiel,24879839,2
+Murphymolly,24879839,3
+fanshousiwen,24879839,4
+juliesa,24879839,3
+54654369,24879839,3
+zdm,24879839,3
+60303704,24879839,3
+60019067,24879839,3
+3501606,24879839,1
+huangzhirong,24879839,2
+52567562,24879839,-1
+50125049,24879839,2
+130520801,24879839,5
+4692009,24879839,4
+54977018,24879839,2
+47265467,24879839,3
+2438025,24879839,2
+3251070,24879839,3
+36238973,24879839,1
+22043363,24879839,1
+57160018,24879839,2
+92335297,24879839,3
+lixiaobinger,24879839,1
+51904815,24879839,5
+62213399,24879839,3
+97830721,24879839,1
+132686664,24879839,1
+132686664,24879839,1
+31437760,24879839,2
+55505847,24879839,4
+mufanxuanji,24879839,2
+78389639,24879839,4
+82520014,24879839,1
+83876707,24879839,2
+44937867,24879839,2
+dahuilang15656,24879839,2
+vyeah,24879839,2
+59468829,24879839,1
+74621511,24879839,3
+68397442,24879839,2
+67852175,24879839,3
+36741017,24879839,3
+101395285,24879839,4
+1248650,24879839,1
+90904421,24879839,2
+3863337,24879839,1
+irishere2,24879839,1
+66414935,24879839,3
+113234997,24879839,1
+64375697,24879839,4
+organum,24879839,1
+25276115,24879839,1
+33872862,24879839,1
+65897168,24879839,2
+loveirina,24879839,2
+60928291,24879839,3
+49836928,24879839,2
+18966639,24879839,3
+46781917,24879839,-1
+foryoungheart,24879839,3
+NicoleDR,24879839,2
+74373859,24879839,2
+43832986,24879839,5
+dangdangddd,24879839,1
+122352396,24879839,2
+48944601,24879839,4
+57006078,24879839,3
+nidiedenimade,24879839,5
+yirenhefang,24879839,2
+er19386,24879839,-1
+tt1426,24879839,2
+freddy_xu,24879839,1
+lifest,24879839,1
+anxel,24879839,-1
+92930894,24879839,2
+52706970,24879839,4
+42368147,24879839,2
+55496858,24879839,3
+liyixuanorz,24879839,1
+KUBRICK2OO1,24879839,1
+4074985,24879839,2
+39363264,24879839,1
+ccbadger,24879839,2
+chen1776,24879839,1
+47587289,24879839,3
+zweikun,24879839,2
+3770677,24879839,-1
+zhaotianjiao,24879839,3
+koklite,24879839,2
+41546060,24879839,3
+35861398,24879839,3
+90461578,24879839,3
+duanyixuan,24879839,2
+83983151,24879839,3
+lovenapp,24879839,1
+chloecin,24879839,2
+130956052,24879839,3
+maggiore,24879839,4
+ZEIN.SY,24879839,3
+woshishunv,24879839,2
+57296551,24879839,1
+1653790,24879839,3
+51861126,24879839,3
+130562665,24879839,5
+1117300,24879839,2
+yueyarom,24879839,2
+55924051,24879839,2
+132939618,24879839,1
+erismeng,24879839,2
+132938766,24879839,4
+lucine_chen,24879839,3
+74029688,24879839,1
+43372236,24879839,3
+littleisle,24879839,2
+132937512,24879839,2
+alexiusplusplus,24879839,-1
+llms,24879839,3
+121729041,24879839,1
+80663628,24879839,2
+Jessicalulu,24879839,3
+132882887,24879839,3
+36863032,24879839,1
+suec,24879839,1
+102653753,24879839,3
+QQ3BlueRose,24879839,3
+105407857,24879839,1
+48759553,24879839,3
+76232566,24879839,2
+79959123,24879839,1
+50505515,24879839,2
+formyself,24879839,2
+cviva,24879839,1
+shenshenlanf,24879839,3
+1326010,24879839,2
+61527970,24879839,3
+Bolocoche,24879839,1
+bearhulala,24879839,3
+59129484,24879839,2
+2432383,24879839,2
+127423350,24879839,3
+S1990,24879839,3
+59781288,24879839,2
+eyes1991,24879839,2
+62489520,24879839,3
+Cyder,24879839,2
+48014314,24879839,2
+spacerwith,24879839,4
+xujibo1988,24879839,1
+BennyTian,24879839,1
+praguenight,24879839,2
+2319342,24879839,4
+65162469,24879839,1
+42725072,24879839,3
+jd6949,24879839,5
+4404145,24879839,3
+56676061,24879839,2
+103672023,24879839,3
+47338909,24879839,2
+132928516,24879839,5
+ecolin,24879839,4
+40112480,24879839,2
+55418943,24879839,2
+danielpaolod,24879839,2
+shahua,24879839,3
+37574527,24879839,4
+85621966,24879839,3
+xingli722,24879839,1
+xingli722,24879839,1
+56268259,24879839,1
+qjunny,24879839,3
+MeloTheFisher,24879839,2
+moesolo,24879839,2
+88367720,24879839,5
+willdawn,24879839,4
+flowerdance99,24879839,3
+summas,24879839,3
+65502815,24879839,2
+132925046,24879839,-1
+36627836,24879839,2
+panda_xx,24879839,3
+59535372,24879839,3
+wcwc,24879839,3
+106126456,24879839,3
+53395539,24879839,2
+53879443,24879839,3
+Mrfuck_u,24879839,1
+77186305,24879839,3
+2163570,24879839,2
+82169084,24879839,3
+62873920,24879839,3
+hihi_king,24879839,4
+3275817,24879839,3
+3505129,24879839,3
+1719492,24879839,1
+43176716,24879839,1
+48817278,24879839,4
+48264121,24879839,1
+132923187,24879839,3
+132923150,24879839,1
+25864933,24879839,4
+51623534,24879839,3
+121562470,24879839,2
+132922234,24879839,2
+cxxcxx89,24879839,4
+8523675,24879839,2
+41125061,24879839,2
+26265440,24879839,2
+26265440,24879839,2
+ak430,24879839,3
+53387777,24879839,5
+mkxiang,24879839,2
+62436425,24879839,3
+132919564,24879839,5
+48498923,24879839,2
+MatinetHP,24879839,-1
+f-xiao,24879839,4
+132918061,24879839,2
+62425505,24879839,4
+zx3no1,24879839,3
+51795855,24879839,3
+JIANGXUE,24879839,1
+zero0913,24879839,1
+wangzhaojun,24879839,2
+46931648,24879839,2
+121925432,24879839,2
+13974066,24879839,4
+gui2160,24879839,1
+meskelil,24879839,3
+48032170,24879839,1
+78146463,24879839,2
+40913424,24879839,3
+41470882,24879839,4
+127009248,24879839,2
+63332200,24879839,3
+115052984,24879839,4
+engineman,24879839,2
+mwr23929,24879839,3
+greeneyesgirl,24879839,3
+foreveryoung09,24879839,2
+132206224,24879839,1
+xxxdorisxxx,24879839,3
+68014946,24879839,2
+geontn,24879839,1
+40790830,24879839,1
+thinromeo,24879839,1
+96410540,24879839,1
+39388801,24879839,2
+everpassenger,24879839,4
+princewayne,24879839,2
+130384556,24879839,4
+Leostella,24879839,2
+70421764,24879839,2
+abigale13,24879839,3
+45315390,24879839,4
+ksw2024,24879839,4
+1626912,24879839,3
+51806728,24879839,1
+ouyangshiye0102,24879839,2
+59156667,24879839,2
+jaciewho,24879839,2
+44675503,24879839,2
+34526603,24879839,-1
+maggie.wxy,24879839,4
+loveyu3317,24879839,5
+63927330,24879839,3
+89187056,24879839,3
+58539257,24879839,2
+58539257,24879839,2
+pyan,24879839,1
+againpro,24879839,2
+51491569,24879839,2
+99812463,24879839,4
+Makamaka,24879839,2
+3041529,24879839,1
+aiziyuer,24879839,4
+cajiln,24879839,3
+1512451,24879839,2
+idiotxu,24879839,2
+juech171,24879839,2
+niuxiaohei,24879839,5
+59221485,24879839,4
+sidneylevi,24879839,1
+1414083,24879839,3
+64092595,24879839,2
+71133496,24879839,2
+1434867,24879839,3
+50220043,24879839,3
+lovenpeaces,24879839,5
+jersey0821,24879839,2
+yinleo,24879839,2
+flycolorice,24879839,-1
+32105474,24879839,3
+59620866,24879839,4
+baimaheizong,24879839,2
+71539240,24879839,3
+100193335,24879839,1
+50527578,24879839,-1
+shazicaibeiai,24879839,2
+126964786,24879839,5
+55831492,24879839,3
+53214078,24879839,1
+69162097,24879839,-1
+1334269,24879839,3
+janie225,24879839,2
+qinlingdage,24879839,1
+53724452,24879839,3
+120043439,24879839,3
+120043439,24879839,3
+DuXinZeLizzie,24879839,1
+69164754,24879839,3
+58462261,24879839,3
+53014985,24879839,2
+102878087,24879839,3
+34544680,24879839,3
+109071347,24879839,3
+128666486,24879839,5
+3160247,24879839,3
+62730894,24879839,3
+huantong,24879839,3
+Tryortry,24879839,3
+131274312,24879839,3
+42835041,24879839,2
+127287577,24879839,4
+39714393,24879839,1
+maojinzhu,24879839,1
+57774434,24879839,2
+liulull,24879839,3
+50405721,24879839,3
+130817915,24879839,3
+88174577,24879839,2
+ozell,24879839,3
+4527328,24879839,2
+73077223,24879839,4
+68167328,24879839,3
+50663434,24879839,4
+49442913,24879839,4
+54122143,24879839,2
+119487629,24879839,3
+50158586,24879839,2
+2822340,24879839,1
+hudieyy89,24879839,1
+57104969,24879839,2
+75096112,24879839,1
+4841197,24879839,3
+58321643,24879839,-1
+tomatoonedonkey,24879839,2
+2963025,24879839,2
+2428631,24879839,1
+13902448,24879839,3
+12785458,24879839,3
+3442979,24879839,5
+bdch,24879839,3
+80850838,24879839,2
+73131343,24879839,2
+45941293,24879839,4
+94260024,24879839,4
+13774743,24879839,1
+69068097,24879839,3
+1531565,24879839,5
+3783693,24879839,1
+I_am_Nineteen,24879839,4
+yaoyan,24879839,3
+55619638,24879839,3
+60956192,24879839,3
+talralsha,24879839,2
+68014143,24879839,1
+71412117,24879839,3
+37102807,24879839,2
+little-J,24879839,4
+Sali.S,24879839,4
+53401970,24879839,4
+jjzzjoyce,24879839,4
+zhouxiaotong,24879839,-1
+49326502,24879839,3
+61627108,24879839,4
+4249661,24879839,3
+63354598,24879839,3
+Tony_Home,24879839,3
+32419824,24879839,2
+50405560,24879839,3
+a13019,24879839,3
+45610141,24879839,2
+amor_fati,24879839,3
+leelx,24879839,3
+34990334,24879839,3
+66256165,24879839,1
+kerry_chen,24879839,2
+angiangeng,24879839,-1
+linglongwunv,24879839,3
+58123651,24879839,2
+73011629,24879839,3
+53653977,24879839,2
+3082551,24879839,2
+alpha,24879839,1
+jeremy-won,24879839,4
+102356757,24879839,3
+quanquan0817,24879839,3
+64543096,24879839,2
+62119610,24879839,5
+34740477,24879839,3
+131427089,24879839,2
+yuanchao-op,24879839,2
+mh_2015,24879839,1
+huotian,24879839,3
+43628275,24879839,3
+25938023,24879839,5
+66098214,24879839,-1
+cupittang,24879839,2
+Pengjianjun,24879839,3
+58995431,24879839,2
+37402473,24879839,3
+74056494,24879839,3
+62798977,24879839,2
+3116575,24879839,3
+nianmin,24879839,2
+Smallpigpiger,24879839,2
+52371871,24879839,1
+45800534,24879839,5
+93892762,24879839,2
+Erotica,24879839,1
+91224743,24879839,2
+107514210,24879839,2
+50584837,24879839,3
+56378824,24879839,3
+68226125,24879839,3
+81893231,24879839,1
+AlexYJ,24879839,2
+swordflying,24879839,3
+FK621,24879839,3
+JonathanX,24879839,1
+62721708,24879839,4
+59911247,24879839,2
+61389962,24879839,3
+2854749,24879839,5
+1678258,24879839,3
+49968268,24879839,2
+3456156,24879839,3
+casoon,24879839,5
+55355100,24879839,-1
+1717681,24879839,2
+46206481,24879839,1
+55855348,24879839,3
+leecoco,24879839,2
+39735164,24879839,2
+81992484,24879839,2
+67240733,24879839,1
+53723449,24879839,4
+35241807,24879839,-1
+13409728,24879839,2
+49163642,24879839,2
+53061128,24879839,1
+53378505,24879839,2
+2280087,24879839,2
+25963248,24879839,3
+flyingbean,24879839,3
+3468180,24879839,3
+62920331,24879839,2
+65125281,24879839,2
+63314941,24879839,2
+58816486,24879839,2
+81918696,24879839,1
+2344931,24879839,2
+77214430,24879839,2
+gaolongtian,24879839,2
+63044059,24879839,1
+80017178,24879839,2
+52931532,24879839,2
+75344428,24879839,2
+29220326,24879839,2
+46333920,24879839,5
+52146553,24879839,1
+61323163,24879839,3
+3659754,24879839,2
+91545842,24879839,2
+46680586,24879839,3
+49668109,24879839,4
+miffychen0,24879839,3
+2217349,24879839,2
+71267265,24879839,4
+52189151,24879839,1
+50543598,24879839,2
+33149603,24879839,1
+42293953,24879839,2
+46341793,24879839,2
+xuhan8518,24879839,4
+37542259,24879839,5
+cplcs,24879839,3
+34507670,24879839,2
+xiaojirou007,24879839,2
+76086734,24879839,3
+VANTO,24879839,3
+63989347,24879839,2
+120605718,24879839,2
+45620369,24879839,2
+50636732,24879839,2
+darlinfish,24879839,-1
+69111679,24879839,3
+110961210,24879839,3
+niangniang007,24879839,1
+53596500,24879839,3
+60222551,24879839,3
+yueyuebetty,24879839,-1
+58689768,24879839,1
+43279532,24879839,4
+60095133,24879839,2
+rachelpp,24879839,2
+ysl,24879839,1
+130424337,24879839,2
+lukesky,24879839,3
+57210872,24879839,1
+92542327,24879839,1
+48581609,24879839,2
+68860568,24879839,1
+75322643,24879839,3
+48409104,24879839,5
+3471074,24879839,1
+103981840,24879839,2
+1289488,24879839,-1
+madbilly,24879839,3
+65357548,24879839,3
+41115422,24879839,1
+lese7en,24879839,2
+53988209,24879839,3
+Broderick,24879839,2
+57286930,24879839,3
+58107870,24879839,1
+130141750,24879839,3
+52390173,24879839,1
+47771556,24879839,4
+littleshy,24879839,1
+laoA,24879839,2
+60486561,24879839,-1
+3742479,24879839,3
+41502689,24879839,2
+37341494,24879839,2
+37803671,24879839,4
+linnnnnc,24879839,3
+onederful,24879839,3
+45660564,24879839,3
+101787533,24879839,4
+jes77,24879839,4
+ksmyass,24879839,1
+56863298,24879839,3
+penchen,24879839,3
+88174189,24879839,4
+85316838,24879839,1
+keithw,24879839,2
+chih,24879839,1
+1020764,24879839,2
+joemayxu,24879839,2
+zealuck,24879839,3
+4607006,24879839,-1
+77389336,24879839,1
+66057217,24879839,2
+25533674,24879839,4
+4629060,24879839,2
+zillyromantic,24879839,2
+60349370,24879839,3
+47480428,24879839,4
+EMOROAM,24879839,3
+4229818,24879839,2
+59669866,24879839,5
+wintercoldrain,24879839,2
+53500115,24879839,3
+misaai,24879839,2
+scottxiao,24879839,1
+diorsunrise,24879839,1
+65663691,24879839,1
+52770535,24879839,3
+43941069,24879839,-1
+15412999,24879839,4
+49388908,24879839,1
+AmoH,24879839,4
+81288051,24879839,3
+3998813,24879839,3
+rexarski,24879839,2
+moosee,24879839,5
+70310265,24879839,2
+113997112,24879839,3
+42747328,24879839,5
+sanzihui,24879839,4
+1805575,24879839,3
+JOKERGREY,24879839,2
+33300959,24879839,4
+2411985,24879839,3
+69847160,24879839,4
+lxf1988,24879839,4
+63894934,24879839,4
+hdjjys,24879839,2
+47729298,24879839,2
+71002924,24879839,1
+67411402,24879839,3
+62333494,24879839,4
+69569100,24879839,4
+EstherMichael,24879839,4
+62710966,24879839,1
+23853027,24879839,2
+40859229,24879839,3
+58029072,24879839,2
+justsay,24879839,2
+2620783,24879839,2
+vinciwang,24879839,4
+45833897,24879839,3
+48990593,24879839,3
+85573224,24879839,-1
+32850622,24879839,1
+57383677,24879839,4
+93484113,24879839,2
+61573582,24879839,3
+18080670,24879839,3
+53264755,24879839,3
+53927357,24879839,2
+121822479,24879839,3
+70924398,24879839,2
+48604788,24879839,4
+68075321,24879839,1
+51865230,24879839,1
+120223686,24879839,4
+janeaier,24879839,4
+4563516,24879839,1
+zhangdayun,24879839,-1
+70355865,24879839,2
+39285669,24879839,3
+86183175,24879839,2
+121779298,24879839,4
+59757081,24879839,1
+1061388,24879839,2
+38308503,24879839,1
+49143221,24879839,3
+62564512,24879839,-1
+misskaka214,24879839,3
+102961718,24879839,2
+51924447,24879839,5
+Yichun_D,24879839,3
+bakuman,24879839,3
+70880759,24879839,3
+wangrujing,24879839,4
+52649596,24879839,3
+74913423,24879839,2
+78497021,24879839,2
+maybeland,24879839,2
+48269766,24879839,2
+121402491,24879839,4
+57767148,24879839,3
+detoxification,24879839,3
+1308850,24879839,3
+46180402,24879839,5
+xiazhizhou,24879839,1
+maomaoye,24879839,3
+lincolnhong,24879839,2
+104365227,24879839,2
+50629676,24879839,2
+127377114,24879839,1
+DominatingCHW,24879839,2
+2266030,24879839,1
+65948631,24879839,5
+F_monkey,24879839,3
+58901835,24879839,3
+jokerli,24879839,5
+41375652,24879839,2
+4196701,24879839,3
+dingxingxing,24879839,5
+70162864,24879839,3
+2428818,24879839,4
+12794807,24879839,3
+zuozichu,24879839,3
+55309646,24879839,3
+4364181,24879839,3
+stomach,24879839,5
+nirvanayl,24879839,3
+q455,24879839,3
+1291946,24879839,1
+babycandy,24879839,2
+4498921,24879839,4
+120867848,24879839,2
+67330888,24879839,3
+2038568,24879839,2
+63403641,24879839,3
+caceywd,24879839,3
+nowood,24879839,3
+25555778,24879839,1
+shen3yang,24879839,1
+Wasted,24879839,2
+59232789,24879839,2
+47288142,24879839,2
+64110948,24879839,4
+zhangrenran,24879839,3
+mansusu,24879839,-1
+tt2792654,24879839,2
+39351443,24879839,3
+51119059,24879839,1
+36805272,24879839,2
+47172452,24879839,1
+redsandalwood,24879839,2
+muzhezj,24879839,4
+62956939,24879839,3
+34469098,24879839,1
+130161230,24879839,1
+2283860,24879839,2
+48582853,24879839,4
+tracciyu,24879839,2
+52727052,24879839,4
+52702832,24879839,3
+127180672,24879839,3
+58071540,24879839,4
+A_wenyi,24879839,4
+wangfendou1,24879839,2
+sona302,24879839,3
+RivenZhong,24879839,1
+maxarm,24879839,1
+pixiezhezhe,24879839,3
+liduguang,24879839,1
+80679783,24879839,2
+wood0913,24879839,2
+2616668,24879839,2
+play0829,24879839,2
+75459742,24879839,4
+58135817,24879839,1
+36993897,24879839,3
+gtl,24879839,-1
+minroro,24879839,3
+82849854,24879839,4
+48610227,24879839,-1
+1107251,24879839,1
+69125005,24879839,2
+119802529,24879839,1
+skyofhaley,24879839,3
+57756642,24879839,1
+54215342,24879839,3
+fengzisb,24879839,3
+18586571,24879839,3
+guanhuo,24879839,1
+lasto2,24879839,2
+65313383,24879839,3
+63406200,24879839,2
+85410630,24879839,3
+neotoma,24879839,1
+ifiwere,24879839,2
+35450002,24879839,3
+43952815,24879839,3
+49077788,24879839,1
+59307847,24879839,2
+FORGET...,24879839,1
+gbluki,24879839,1
+36337857,24879839,1
+91957409,24879839,3
+54806925,24879839,2
+melynda,24879839,2
+50192575,24879839,-1
+100625194,24879839,5
+47932760,24879839,2
+1307381,24879839,3
+dkjm,24879839,3
+39108497,24879839,4
+Aianita,24879839,2
+37034778,24879839,2
+4307519,24879839,3
+65181695,24879839,3
+3254520,24879839,3
+101683975,24879839,2
+frank1234,24879839,2
+2219911,24879839,2
+nuderain,24879839,3
+125115743,24879839,2
+xiaoguang1005,24879839,5
+3633800,24879839,1
+69594701,24879839,4
+92377799,24879839,4
+31755732,24879839,3
+115128718,24879839,1
+2458389,24879839,4
+livia112,24879839,3
+edwintang,24879839,1
+fishhome40,24879839,4
+54984584,24879839,1
+senlintu,24879839,3
+silentmini,24879839,2
+awtaxh,24879839,2
+22379059,24879839,2
+132433995,24879839,1
+67851427,24879839,1
+2162982,24879839,5
+66827780,24879839,2
+88072113,24879839,3
+hikirres,24879839,1
+ironpanda,24879839,3
+55421041,24879839,-1
+63405876,24879839,4
+44629760,24879839,3
+linduoduo,24879839,1
+luciferls,24879839,3
+84235049,24879839,2
+55571747,24879839,4
+57842655,24879839,2
+63253187,24879839,2
+49017017,24879839,3
+kidea,24879839,3
+1160337,24879839,2
+38563748,24879839,1
+2235112,24879839,3
+62161898,24879839,1
+xi_1483,24879839,3
+62971762,24879839,3
+sssuryy,24879839,4
+ally7,24879839,3
+109878041,24879839,5
+119852340,24879839,2
+119852340,24879839,2
+49830114,24879839,2
+88074921,24879839,2
+50444681,24879839,3
+zouxq1993,24879839,2
+youyouhanxiao,24879839,3
+ninerock,24879839,2
+119145690,24879839,2
+kelvinshaw,24879839,2
+62932402,24879839,4
+48252418,24879839,5
+onlysunkk,24879839,4
+haloyt,24879839,1
+Artiewatchmovie,24879839,2
+4158664,24879839,1
+44436573,24879839,3
+hai2hai,24879839,3
+paranoida,24879839,-1
+61790133,24879839,4
+iwake,24879839,3
+65935393,24879839,5
+66141079,24879839,3
+jijitata,24879839,1
+83895101,24879839,2
+91365822,24879839,3
+73593582,24879839,3
+25314137,24879839,1
+47195868,24879839,1
+subject,24879839,4
+zuiaituotuo,24879839,2
+2649213,24879839,2
+40110852,24879839,1
+7852373,24879839,3
+Mgreenbean,24879839,3
+125987838,24879839,2
+60156688,24879839,4
+77222475,24879839,1
+120884692,24879839,2
+cuidafa,24879839,1
+59280897,24879839,1
+89951799,24879839,3
+71962377,24879839,1
+felt,24879839,2
+59155687,24879839,3
+67353177,24879839,3
+cookies4ever,24879839,2
+128237011,24879839,3
+3538758,24879839,3
+trappedbeaster,24879839,4
+Juzzia,24879839,3
+jeensk,24879839,3
+62288515,24879839,4
+70241548,24879839,3
+44482337,24879839,4
+72774742,24879839,1
+kobe_steak,24879839,3
+55281532,24879839,4
+62205222,24879839,3
+56466690,24879839,4
+41636718,24879839,3
+phl745,24879839,1
+132820826,24879839,3
+Architects,24879839,4
+54701567,24879839,2
+87517858,24879839,3
+38863456,24879839,2
+demondeng,24879839,1
+43235070,24879839,4
+rchuwei,24879839,1
+74261201,24879839,3
+42029452,24879839,1
+54825583,24879839,2
+xiaochengsuiyue,24879839,3
+79875260,24879839,1
+70464788,24879839,2
+linsleyzhou,24879839,3
+50410160,24879839,2
+roger589,24879839,4
+bobolu,24879839,3
+55912143,24879839,2
+35499398,24879839,3
+51909421,24879839,1
+88428355,24879839,2
+zjf02991,24879839,2
+94786667,24879839,2
+47297505,24879839,2
+blue828,24879839,1
+42827837,24879839,3
+82230910,24879839,-1
+81296522,24879839,4
+61739872,24879839,3
+1073807,24879839,4
+120518441,24879839,3
+mickamy,24879839,3
+runawayinsane,24879839,3
+92697402,24879839,4
+48981986,24879839,2
+83815775,24879839,2
+1361853,24879839,1
+4199486,24879839,4
+TeLligent,24879839,5
+59227708,24879839,3
+68139737,24879839,3
+geffen,24879839,1
+32960410,24879839,3
+73217273,24879839,2
+sinpor,24879839,5
+46271874,24879839,3
+Sandal,24879839,1
+rominakata,24879839,1
+69906697,24879839,-1
+weicong999,24879839,2
+2700292,24879839,1
+buliang12,24879839,5
+65073470,24879839,3
+53518992,24879839,3
+toutouxiaoxin,24879839,1
+55774300,24879839,3
+farewell2286492,24879839,3
+55883652,24879839,1
+78906900,24879839,2
+47412712,24879839,1
+73901440,24879839,3
+paopaotang1990,24879839,3
+12360363,24879839,3
+Kkumako,24879839,2
+14068242,24879839,3
+125314923,24879839,3
+130078634,24879839,2
+63134305,24879839,3
+55977195,24879839,1
+alessioliu,24879839,2
+randomlee,24879839,2
+56249828,24879839,5
+2393231,24879839,1
+128739482,24879839,2
+47097255,24879839,3
+123695732,24879839,1
+59214974,24879839,5
+45313223,24879839,3
+63955564,24879839,3
+dongxuanlan,24879839,1
+42535832,24879839,2
+42543329,24879839,5
+EntinG,24879839,1
+44274218,24879839,2
+45556766,24879839,2
+sarabilau2,24879839,2
+131680405,24879839,3
+42897156,24879839,2
+61130128,24879839,4
+68912465,24879839,4
+131703172,24879839,-1
+powerjob,24879839,4
+neoway,24879839,3
+Lan.die,24879839,3
+aiyos,24879839,2
+56673725,24879839,1
+35905722,24879839,3
+70124708,24879839,4
+1201240,24879839,1
+74337540,24879839,3
+101306122,24879839,3
+wutongtree,24879839,3
+3979432,24879839,3
+121270636,24879839,3
+46168128,24879839,2
+80359698,24879839,1
+vivian870629,24879839,3
+1226646,24879839,2
+72086660,24879839,2
+43599155,24879839,3
+1892627,24879839,2
+onethree,24879839,3
+manbujx,24879839,3
+AndyYue,24879839,3
+daidai1346,24879839,4
+apjuice,24879839,1
+2702861,24879839,1
+48286372,24879839,4
+qq1132119891,24879839,1
+ltec,24879839,3
+luoqingyou,24879839,2
+83532433,24879839,2
+4043337,24879839,-1
+yoory,24879839,-1
+dhlp,24879839,3
+babybluebb,24879839,2
+yigedaguangtou,24879839,1
+72094979,24879839,4
+69236111,24879839,3
+summersuy,24879839,5
+26394259,24879839,2
+6529519,24879839,3
+Simplelove_,24879839,1
+116036519,24879839,2
+47708632,24879839,2
+64007978,24879839,1
+70214079,24879839,1
+rachelff,24879839,2
+59721741,24879839,2
+1664578,24879839,3
+49715964,24879839,2
+58094531,24879839,1
+4755388,24879839,1
+88393319,24879839,2
+lbeer,24879839,2
+56369223,24879839,3
+Kkarimaa,24879839,4
+76216989,24879839,4
+levid,24879839,3
+121150737,24879839,2
+58464738,24879839,3
+34155630,24879839,2
+36355818,24879839,3
+teeeeeeeea,24879839,4
+vincenthanze,24879839,3
+47188401,24879839,1
+63997974,24879839,2
+27884235,24879839,1
+2423336,24879839,2
+48322735,24879839,4
+74234828,24879839,4
+17876941,24879839,2
+irenemi,24879839,3
+3503742,24879839,1
+79611892,24879839,3
+34015028,24879839,3
+68031960,24879839,3
+2369225,24879839,3
+49012837,24879839,3
+89528523,24879839,2
+18984732,24879839,2
+49248736,24879839,3
+33538142,24879839,3
+80687112,24879839,3
+62237138,24879839,3
+60948643,24879839,3
+jaromu,24879839,3
+48474852,24879839,2
+48474852,24879839,2
+2376689,24879839,-1
+129051371,24879839,1
+av,24879839,-1
+JunKun,24879839,-1
+58504858,24879839,2
+76362720,24879839,1
+65545100,24879839,1
+60015294,24879839,3
+82793308,24879839,1
+yeyongqing,24879839,3
+127526905,24879839,4
+2108805,24879839,2
+60168447,24879839,4
+49537151,24879839,4
+63754374,24879839,2
+57474326,24879839,3
+53830411,24879839,-1
+ingrida,24879839,3
+127165928,24879839,2
+121484000,24879839,2
+3198764,24879839,1
+58000412,24879839,2
+vicong,24879839,1
+sifangfengdong,24879839,4
+wkwkaka,24879839,3
+xiangjianlaoyu,24879839,-1
+64456556,24879839,2
+75210149,24879839,1
+69052283,24879839,2
+50738842,24879839,1
+66777029,24879839,4
+icycherry,24879839,1
+52350621,24879839,3
+58950261,24879839,1
+48313221,24879839,3
+qq1294689526,24879839,4
+laespoirao,24879839,5
+49145683,24879839,4
+46528514,24879839,2
+44573720,24879839,2
+62501092,24879839,3
+hnlszyp,24879839,3
+mujin1217,24879839,3
+67238808,24879839,3
+37635655,24879839,1
+susandancing,24879839,2
+92318310,24879839,4
+89928823,24879839,1
+1457201,24879839,4
+Greenwindblows,24879839,4
+MrAveiro,24879839,2
+45818907,24879839,1
+103458789,24879839,2
+2450715,24879839,1
+79080942,24879839,2
+81336001,24879839,5
+46825522,24879839,1
+80075959,24879839,3
+49282353,24879839,3
+1565154,24879839,2
+58228097,24879839,2
+kally_allen,24879839,3
+55916803,24879839,2
+53094126,24879839,5
+brook_li,24879839,1
+59940868,24879839,3
+80283092,24879839,2
+46906871,24879839,1
+2539331,24879839,3
+78786637,24879839,3
+3319829,24879839,3
+suyuhang,24879839,2
+gw150080,24879839,3
+69105282,24879839,2
+zxy3612542,24879839,1
+coka1999,24879839,2
+82292667,24879839,1
+seasea,24879839,1
+supremeJ,24879839,1
+2114417,24879839,2
+Sinept,24879839,2
+wangzhibin,24879839,3
+43693739,24879839,3
+45641492,24879839,4
+46960591,24879839,1
+JoeydreamOn,24879839,4
+hydrating,24879839,3
+67617927,24879839,1
+115578301,24879839,4
+xue0302,24879839,3
+47200046,24879839,2
+47548599,24879839,2
+57452457,24879839,2
+78214422,24879839,3
+56430530,24879839,4
+47396849,24879839,3
+zxdfgyiop,24879839,4
+Boomer,24879839,3
+codetco,24879839,2
+44217355,24879839,4
+3446335,24879839,1
+57660319,24879839,2
+dabyrowe,24879839,4
+ev3ve,24879839,1
+baigao,24879839,2
+70805035,24879839,1
+84665982,24879839,2
+55906244,24879839,2
+83141101,24879839,4
+64082591,24879839,3
+51743352,24879839,4
+78491782,24879839,2
+76556131,24879839,4
+48078859,24879839,1
+43993359,24879839,2
+70742333,24879839,5
+26473546,24879839,2
+Hfun33,24879839,3
+nshen121,24879839,2
+q164511490,24879839,2
+120128695,24879839,2
+mdec,24879839,-1
+2510900,24879839,3
+mualifeo0,24879839,1
+jeansgarden,24879839,2
+50242355,24879839,1
+56361433,24879839,-1
+59993083,24879839,1
+41618389,24879839,3
+61705105,24879839,3
+77293945,24879839,2
+73836108,24879839,2
+81641934,24879839,2
+lingdanger,24879839,4
+mayoke,24879839,2
+yaoez,24879839,3
+ekineyoung80,24879839,5
+guosong0804,24879839,5
+60597045,24879839,2
+OldYuan,24879839,3
+59632577,24879839,1
+doublev1,24879839,4
+tianpangzi,24879839,-1
+40931837,24879839,3
+79111761,24879839,1
+51198327,24879839,1
+3595015,24879839,3
+3287454,24879839,1
+51258253,24879839,2
+lenciel,24879839,2
+wunie,24879839,1
+dreamgo_demo,24879839,3
+jite,24879839,2
+3322909,24879839,2
+63737437,24879839,-1
+thagomizer,24879839,-1
+Alice-Mu,24879839,4
+48384713,24879839,2
+HelloBunny,24879839,3
+grantqian,24879839,3
+51098156,24879839,2
+laotang,24879839,2
+Jane.W,24879839,3
+4920879,24879839,4
+zp090915,24879839,2
+shodoco,24879839,2
+63277654,24879839,3
+pupuleaf,24879839,3
+1713591,24879839,-1
+2106137,24879839,2
+72656224,24879839,5
+yinhengeternal,24879839,3
+sunrisesmile,24879839,2
+86731065,24879839,4
+47707866,24879839,-1
+81491962,24879839,3
+moszz,24879839,4
+Gioz,24879839,4
+waking,24879839,3
+simplycomplex,24879839,2
+9082007,24879839,2
+30181678,24879839,2
+doubanvv,24879839,2
+52623943,24879839,2
+jinzhiqiang,24879839,2
+45988631,24879839,1
+uleh,24879839,3
+58886429,24879839,3
+xuesongtian,24879839,2
+48590382,24879839,2
+44022921,24879839,1
+129381529,24879839,3
+tvod,24879839,5
+yfbs,24879839,2
+topgunly,24879839,-1
+103971408,24879839,2
+tchaikov,24879839,2
+37019836,24879839,3
+32545847,24879839,4
+3288269,24879839,4
+48146318,24879839,3
+59638606,24879839,2
+123630666,24879839,3
+61977007,24879839,3
+44549010,24879839,2
+17407986,24879839,-1
+52048045,24879839,4
+2350156,24879839,1
+48267278,24879839,3
+dd54,24879839,3
+50520329,24879839,2
+53784791,24879839,3
+summerme,24879839,3
+61726072,24879839,4
+darchang,24879839,3
+71989717,24879839,5
+islandindouban,24879839,1
+vacuo,24879839,3
+2394327,24879839,3
+48489134,24879839,-1
+rousongsong,24879839,2
+doubanlinlin,24879839,2
+13501036,24879839,4
+4388899,24879839,3
+lightwing86,24879839,1
+yukileung,24879839,3
+60051428,24879839,2
+71498553,24879839,1
+madiwu,24879839,5
+huanhua,24879839,2
+2122075,24879839,3
+48907408,24879839,2
+61551663,24879839,2
+3489632,24879839,2
+angelliujiayun,24879839,3
+65264358,24879839,2
+63571575,24879839,3
+iamartist,24879839,3
+61080459,24879839,2
+61080459,24879839,2
+4217792,24879839,2
+wgd0525,24879839,3
+66603486,24879839,2
+33880591,24879839,3
+44848574,24879839,3
+55446081,24879839,2
+61963967,24879839,3
+43921829,24879839,3
+maorui,24879839,-1
+71065754,24879839,4
+FTY364002361,24879839,2
+113608312,24879839,4
+Nortrom,24879839,1
+10041078,24879839,3
+60752975,24879839,3
+62915355,24879839,1
+linxiaoleng,24879839,2
+lp12,24879839,3
+gcd0318,24879839,2
+43991440,24879839,2
+1828232,24879839,1
+3907593,24879839,4
+sickrain,24879839,1
+92032476,24879839,5
+71836089,24879839,3
+32001555,24879839,1
+berylbb,24879839,2
+48471043,24879839,2
+anicetime,24879839,3
+33439278,24879839,3
+cxlpanda,24879839,3
+hualideweisuo,24879839,1
+csp,24879839,2
+58344309,24879839,2
+40681498,24879839,1
+49576668,24879839,1
+47671749,24879839,5
+63282326,24879839,4
+jiuzao,24879839,3
+donfer,24879839,4
+67115672,24879839,1
+100140664,24879839,1
+xiao__F,24879839,3
+49112902,24879839,-1
+104373100,24879839,3
+sakurawei,24879839,2
+InStead,24879839,1
+3173882,24879839,4
+45518170,24879839,1
+43096733,24879839,3
+3436443,24879839,2
+43677701,24879839,3
+63463850,24879839,1
+eleventhsnow,24879839,1
+vivipico,24879839,2
+Polo79,24879839,3
+49496474,24879839,3
+64535817,24879839,2
+14504992,24879839,3
+81813165,24879839,2
+57302028,24879839,2
+3852753,24879839,3
+49090392,24879839,3
+127688948,24879839,3
+9386655,24879839,2
+tblxben,24879839,2
+60998346,24879839,2
+linshang,24879839,3
+80066409,24879839,3
+vincentfuyu,24879839,1
+BoyZ,24879839,3
+4563034,24879839,4
+2610986,24879839,3
+alcudish,24879839,2
+memorylesscat,24879839,1
+2248138,24879839,1
+92249126,24879839,1
+ido_idoing,24879839,3
+4164528,24879839,1
+4164528,24879839,1
+love05o50evol,24879839,4
+maxililyn,24879839,1
+70432798,24879839,4
+48919879,24879839,1
+wangyiping,24879839,4
+38850701,24879839,3
+iamlowe,24879839,3
+41420695,24879839,2
+hjt8844,24879839,3
+39873897,24879839,2
+123813137,24879839,5
+54333058,24879839,4
+xiyaohong,24879839,2
+merry928,24879839,2
+61084341,24879839,1
+nklyj2004,24879839,1
+eleveniris,24879839,2
+36869911,24879839,3
+62169194,24879839,3
+119804486,24879839,1
+2071906,24879839,4
+37502649,24879839,2
+41220048,24879839,1
+rickydna,24879839,3
+62369006,24879839,2
+niol,24879839,3
+2959420,24879839,3
+vikingvv,24879839,3
+dudunvmotou,24879839,2
+bxynf4,24879839,3
+116551398,24879839,3
+50474016,24879839,5
+Josieeeeee,24879839,3
+73570868,24879839,2
+49126637,24879839,3
+sussylee,24879839,5
+ZouzheFoudouzhe,24879839,2
+69236980,24879839,1
+xuesong0009,24879839,5
+58897478,24879839,2
+96420759,24879839,4
+liuliuagnes,24879839,3
+1364563,24879839,3
+metaphyp,24879839,1
+40611753,24879839,4
+shadowlee156,24879839,-1
+49912172,24879839,3
+1870447,24879839,3
+74418627,24879839,2
+shuaishui,24879839,2
+jimmylin1117,24879839,3
+120299687,24879839,3
+montcalgary,24879839,2
+45109217,24879839,3
+bigmiao,24879839,3
+3806326,24879839,2
+122844148,24879839,3
+cody555,24879839,2
+2030447,24879839,-1
+34151620,24879839,3
+73199533,24879839,1
+maloma1721x,24879839,1
+Solo-n,24879839,2
+SunnyLuo,24879839,3
+lonelydancer,24879839,1
+54444978,24879839,5
+45517061,24879839,3
+luluwhite,24879839,3
+shaynexue,24879839,2
+anqiao0706,24879839,3
+1962344,24879839,2
+81680542,24879839,3
+solitudefreedom,24879839,3
+49422565,24879839,3
+jerven,24879839,1
+52903037,24879839,3
+78235434,24879839,1
+62862324,24879839,4
+mrbuzhidao,24879839,1
+61579146,24879839,1
+4858370,24879839,3
+82862073,24879839,2
+aikki27,24879839,-1
+6400247,24879839,2
+61012226,24879839,2
+97114662,24879839,4
+65145767,24879839,3
+1469018,24879839,2
+90751149,24879839,4
+49951799,24879839,4
+39663881,24879839,2
+3516270,24879839,1
+fengwanlu,24879839,1
+summerguagua,24879839,3
+29407909,24879839,4
+king_lijin,24879839,1
+65430008,24879839,1
+hu36,24879839,2
+Joseph_Su,24879839,2
+48400839,24879839,2
+46491711,24879839,2
+ludj_007,24879839,3
+47802404,24879839,3
+7605327,24879839,2
+71740215,24879839,3
+3969292,24879839,2
+victorhuming,24879839,1
+colleena333,24879839,3
+michaelfun,24879839,-1
+Your-Aries,24879839,5
+CheeZcn,24879839,3
+kthinker,24879839,1
+feeldesign,24879839,2
+Jan,24879839,2
+47618742,24879839,2
+68204055,24879839,3
+62762880,24879839,3
+sharkspeare,24879839,2
+88212348,24879839,3
+88212348,24879839,3
+China.He,24879839,3
+2892895,24879839,5
+bzfdu,24879839,4
+1728859,24879839,2
+zlkent,24879839,1
+58197963,24879839,1
+56392055,24879839,2
+115821342,24879839,4
+wen1028,24879839,-1
+1986183,24879839,3
+pengkaidi,24879839,5
+DUOSI,24879839,4
+dairytea,24879839,2
+venryterna,24879839,4
+117240526,24879839,2
+66771297,24879839,2
+windirt,24879839,2
+46067078,24879839,5
+48686431,24879839,4
+1198621,24879839,3
+loveiscolder,24879839,3
+ludwiger,24879839,2
+54519295,24879839,2
+xieyuhan1988,24879839,2
+48370510,24879839,3
+mieskai,24879839,2
+zhchtcm,24879839,3
+3832671,24879839,-1
+27432217,24879839,3
+yoyomie,24879839,1
+liuc0804,24879839,3
+Faychang,24879839,3
+44834403,24879839,2
+82620092,24879839,3
+1486502,24879839,2
+58617905,24879839,3
+62453612,24879839,4
+Elmusi,24879839,5
+46999271,24879839,2
+128615153,24879839,2
+4263127,24879839,4
+lindadarling,24879839,1
+fenglao,24879839,2
+35697125,24879839,4
+hsihsia,24879839,3
+yutang,24879839,1
+51601161,24879839,2
+56988998,24879839,2
+48836738,24879839,4
+47662271,24879839,1
+4605484,24879839,2
+45312368,24879839,1
+bulbosa,24879839,3
+58802831,24879839,3
+77890563,24879839,3
+tianxianglouzhu,24879839,1
+58854842,24879839,3
+danqing825,24879839,1
+65164486,24879839,2
+yunta,24879839,2
+Zicher,24879839,4
+kidwayne,24879839,4
+1291925,24879839,3
+2980085,24879839,2
+8920653,24879839,1
+singend,24879839,3
+40643745,24879839,4
+58808535,24879839,3
+42756036,24879839,2
+smilepoppy,24879839,3
+biquan,24879839,1
+60570203,24879839,4
+79375737,24879839,3
+3693991,24879839,3
+83694704,24879839,2
+46799195,24879839,3
+48539431,24879839,2
+62999529,24879839,-1
+35578162,24879839,3
+sebasverm,24879839,4
+50351028,24879839,2
+54838318,24879839,5
+74010175,24879839,4
+jialezone,24879839,3
+49678827,24879839,3
+64626178,24879839,3
+2735517,24879839,3
+41010757,24879839,3
+65974526,24879839,2
+perperperper,24879839,3
+42853687,24879839,-1
+1468930,24879839,3
+besom,24879839,4
+Angel.Tracy,24879839,4
+95166626,24879839,2
+Peregrine,24879839,2
+12039408,24879839,1
+yin5,24879839,4
+chennuo823,24879839,3
+58247510,24879839,3
+viyawym,24879839,5
+zhiwen.wong,24879839,3
+1683063,24879839,5
+58137202,24879839,-1
+XX210,24879839,5
+Mint1031,24879839,4
+59735063,24879839,2
+24492467,24879839,3
+62926087,24879839,1
+Lushlife,24879839,4
+62559082,24879839,3
+Emma_Tseng,24879839,2
+40308487,24879839,3
+99598599,24879839,1
+6911787,24879839,1
+tiancaimu,24879839,2
+43632851,24879839,2
+37442929,24879839,4
+riceseedling,24879839,1
+3829919,24879839,-1
+Dina_xi,24879839,1
+26237008,24879839,4
+feiranny,24879839,3
+60349266,24879839,3
+62209386,24879839,1
+52484368,24879839,2
+49339227,24879839,2
+2465698,24879839,3
+3507806,24879839,5
+69586800,24879839,3
+61313201,24879839,3
+gaoshuang1226,24879839,4
+huisekongjian,24879839,2
+Lafei,24879839,2
+song1,24879839,2
+zhulvzheng,24879839,3
+63547117,24879839,3
+52279001,24879839,1
+sugarjojo,24879839,3
+fengyeada,24879839,2
+allwordswrong,24879839,2
+47590897,24879839,3
+51180631,24879839,3
+49415283,24879839,2
+phunny,24879839,2
+58891954,24879839,2
+xulu_films,24879839,3
+Ramoser,24879839,4
+50171020,24879839,4
+icetyle,24879839,3
+102304031,24879839,2
+92576305,24879839,2
+autumnalequinox,24879839,3
+44288028,24879839,1
+crystalpansong,24879839,3
+candy_littrell,24879839,1
+77126470,24879839,2
+61695490,24879839,4
+demoncat,24879839,3
+kevinsy,24879839,3
+foreveryoung01,24879839,2
+Vicky_Jiang,24879839,2
+52000938,24879839,3
+2821183,24879839,4
+52148050,24879839,1
+fangsandan,24879839,5
+10128811,24879839,2
+jsh0915,24879839,2
+57661642,24879839,4
+qiongdong,24879839,2
+48281244,24879839,2
+46642787,24879839,3
+6232149,24879839,3
+4491014,24879839,1
+53671536,24879839,3
+46646867,24879839,-1
+jian.ai,24879839,3
+chen841494729,24879839,2
+71879067,24879839,3
+50689193,24879839,2
+2050459,24879839,1
+mikesu,24879839,3
+2539543,24879839,-1
+51008902,24879839,2
+46365473,24879839,3
+pumeiling,24879839,4
+64931517,24879839,2
+44184384,24879839,-1
+131117684,24879839,4
+51469631,24879839,2
+51410491,24879839,4
+2096902,24879839,2
+27207021,24879839,3
+3603579,24879839,3
+sambo,24879839,3
+1289650,24879839,2
+58001500,24879839,2
+yanghaorui,24879839,-1
+Oliver_Lu,24879839,4
+50280165,24879839,1
+mihion,24879839,2
+53460171,24879839,1
+panshurst,24879839,2
+2210399,24879839,1
+maplepu,24879839,1
+92490871,24879839,3
+umbrella722,24879839,1
+83177067,24879839,4
+66053525,24879839,1
+1625957,24879839,4
+3495848,24879839,3
+Obtson,24879839,2
+75255232,24879839,1
+shukong,24879839,2
+35646795,24879839,-1
+nangle,24879839,2
+45147016,24879839,4
+74073772,24879839,3
+goodays,24879839,2
+1849697,24879839,3
+43375121,24879839,3
+Dennisguan,24879839,1
+suxudong,24879839,2
+68596231,24879839,3
+1511879,24879839,-1
+nick1989s,24879839,3
+lapand,24879839,2
+128381248,24879839,2
+HTT110,24879839,5
+wuchild,24879839,2
+40836230,24879839,1
+thymedy,24879839,2
+78906906,24879839,3
+tuantuandoudou,24879839,1
+tianjianshuo,24879839,3
+xianyunfei,24879839,2
+44268763,24879839,2
+camellowang,24879839,2
+engamichelle,24879839,2
+66777363,24879839,2
+leebins,24879839,1
+47835044,24879839,3
+57305104,24879839,-1
+dongqingli,24879839,1
+cutebbluckygirl,24879839,3
+hayeke2325156,24879839,2
+76225555,24879839,2
+66800718,24879839,1
+56199113,24879839,4
+64585406,24879839,2
+67126761,24879839,3
+1521427,24879839,-1
+2278436,24879839,4
+31066447,24879839,2
+annerabbit1127,24879839,3
+fifiqshoho,24879839,3
+51378582,24879839,5
+64153022,24879839,3
+65976416,24879839,3
+3105123,24879839,3
+2224595,24879839,-1
+56684398,24879839,2
+mystory0310,24879839,2
+S-hushubao,24879839,1
+vivian443600819,24879839,3
+drsoul,24879839,1
+51856482,24879839,3
+yuedawei,24879839,2
+43264297,24879839,1
+lovesunny,24879839,4
+2780974,24879839,3
+3783012,24879839,3
+jinliping,24879839,4
+121682845,24879839,3
+58081877,24879839,3
+candy_mo,24879839,3
+Connie540511,24879839,1
+87888275,24879839,3
+nodummy,24879839,3
+doriszhangye,24879839,1
+adidasisallin,24879839,3
+2672461,24879839,2
+Mrcly,24879839,3
+benlau,24879839,3
+ToughWorker,24879839,1
+1496058,24879839,2
+yrranyi,24879839,3
+DEMO9266,24879839,3
+79080709,24879839,3
+keningisgod,24879839,1
+mabeysomeday,24879839,5
+manybirds,24879839,2
+arthurlee,24879839,3
+2900760,24879839,4
+2003213,24879839,1
+notmmao,24879839,1
+laputanyoung,24879839,2
+helan00,24879839,3
+YAH1003,24879839,3
+dstingting,24879839,2
+39015968,24879839,4
+45640486,24879839,1
+59290556,24879839,2
+49991488,24879839,4
+61661455,24879839,1
+luxifero,24879839,2
+77371780,24879839,3
+64926044,24879839,3
+no1907,24879839,3
+yumoxin,24879839,1
+48259269,24879839,3
+56776280,24879839,1
+51490342,24879839,3
+4051028,24879839,2
+47815647,24879839,1
+jacoxu,24879839,3
+39121054,24879839,2
+101504179,24879839,3
+45792472,24879839,2
+ginokot,24879839,2
+qingmmmmm,24879839,1
+2646418,24879839,3
+woshuoshuoshuo,24879839,4
+gruel_,24879839,2
+cmyooxx,24879839,1
+dancealone,24879839,1
+lloopkw,24879839,2
+93372123,24879839,4
+120564093,24879839,4
+27068945,24879839,3
+122749528,24879839,2
+68239286,24879839,3
+JosonChan,24879839,3
+53559369,24879839,3
+horsejump,24879839,4
+hnnyzxh,24879839,3
+4159746,24879839,1
+57991654,24879839,2
+labifenelm,24879839,2
+Finux_you,24879839,1
+theLastQuijote,24879839,1
+3173862,24879839,-1
+xiaolan1993,24879839,1
+120070814,24879839,4
+qiyuanlongyue,24879839,3
+qingdaofu,24879839,2
+missmonkey,24879839,2
+45951993,24879839,2
+dazzzhhh,24879839,4
+kongyue,24879839,1
+marioshuairen,24879839,1
+60352980,24879839,3
+louisegarden,24879839,2
+kevin-se7en-key,24879839,1
+kimmyhu,24879839,3
+whatiswhat,24879839,2
+xx1102,24879839,2
+guangbudu,24879839,3
+49032670,24879839,3
+jervis1012,24879839,3
+hippypopo,24879839,2
+rabbitfish,24879839,4
+65551720,24879839,3
+3733528,24879839,3
+65133684,24879839,2
+59709728,24879839,3
+Orchid,24879839,2
+2142279,24879839,4
+jason000021,24879839,1
+30872500,24879839,1
+129305098,24879839,3
+nighteye1123,24879839,1
+48544549,24879839,2
+53910304,24879839,-1
+93368517,24879839,2
+2415644,24879839,3
+74983532,24879839,1
+MoriartyL,24879839,3
+46670616,24879839,2
+2658066,24879839,2
+21606016,24879839,2
+fmloveme,24879839,2
+47465732,24879839,2
+124238568,24879839,1
+oozhu,24879839,1
+108693709,24879839,3
+11658942,24879839,3
+1482191,24879839,3
+2305521,24879839,2
+104368003,24879839,3
+limoli,24879839,1
+59943344,24879839,3
+1789314,24879839,4
+63015769,24879839,3
+1599051,24879839,5
+91947197,24879839,2
+98522536,24879839,1
+dooom,24879839,1
+47367894,24879839,1
+48844036,24879839,1
+eater,24879839,3
+yue_cp,24879839,3
+3173654,24879839,1
+114689592,24879839,4
+dgzy1644,24879839,3
+peterufo,24879839,2
+82522748,24879839,1
+lutina,24879839,2
+4711947,24879839,3
+2537864,24879839,2
+60904027,24879839,3
+mc_fate,24879839,3
+64996012,24879839,2
+ieachen,24879839,3
+79547614,24879839,3
+89947418,24879839,4
+58243506,24879839,1
+78199590,24879839,3
+4725146,24879839,3
+2715259,24879839,1
+zheming,24879839,1
+volantisff,24879839,3
+54222336,24879839,3
+58258651,24879839,2
+2435674,24879839,2
+32486325,24879839,2
+wawanghuan,24879839,2
+2488466,24879839,3
+gogowa,24879839,1
+55916506,24879839,2
+69621584,24879839,4
+Wade619,24879839,2
+51966080,24879839,3
+fuckyeahdelia,24879839,1
+dusk.xiyang,24879839,2
+tinytiny,24879839,1
+74948787,24879839,3
+tuzimomomo,24879839,4
+yvonnezcl,24879839,3
+70182542,24879839,3
+52081589,24879839,3
+56484149,24879839,3
+52399393,24879839,2
+77827736,24879839,4
+74516598,24879839,3
+54066175,24879839,4
+37660069,24879839,2
+loukedeguo,24879839,3
+leechambo,24879839,4
+45509766,24879839,5
+66427696,24879839,3
+6118493,24879839,-1
+68640061,24879839,2
+52279416,24879839,-1
+1448119,24879839,2
+49004640,24879839,2
+70676468,24879839,3
+70862713,24879839,2
+1491079,24879839,3
+sincerelysophia,24879839,3
+hhhmy,24879839,2
+52747900,24879839,4
+2426372,24879839,2
+lishiyangmayo,24879839,1
+56392220,24879839,3
+75179640,24879839,4
+51810249,24879839,5
+Evilblood,24879839,3
+59406381,24879839,2
+2993640,24879839,3
+lemonj,24879839,3
+1316648,24879839,3
+4095434,24879839,2
+6091665,24879839,1
+gdhdun,24879839,3
+2458122,24879839,2
+73617721,24879839,-1
+50243433,24879839,1
+81316047,24879839,2
+41922022,24879839,1
+13964762,24879839,2
+48002747,24879839,3
+52041002,24879839,2
+wuh,24879839,1
+38606077,24879839,2
+50413289,24879839,2
+robin83,24879839,2
+yellow5egg,24879839,3
+130086532,24879839,1
+50532923,24879839,3
+53316387,24879839,3
+lirongrong,24879839,4
+zjbzsf,24879839,4
+52201060,24879839,3
+61845850,24879839,1
+46590871,24879839,1
+48591645,24879839,3
+69404620,24879839,5
+Magic_L,24879839,3
+ayii,24879839,4
+37189268,24879839,2
+33663407,24879839,2
+ymli,24879839,3
+yangfan0628,24879839,1
+3682917,24879839,2
+40354955,24879839,5
+kuangjieyu,24879839,2
+Ryan-Z,24879839,2
+4881261,24879839,2
+13293190,24879839,3
+InvisibleViper,24879839,4
+petterzhang,24879839,3
+yangbei0131,24879839,2
+72738301,24879839,2
+3228005,24879839,4
+68227139,24879839,3
+yeyizhimei,24879839,2
+96873313,24879839,4
+41036146,24879839,1
+wangleku,24879839,3
+42765442,24879839,4
+132530411,24879839,2
+54588630,24879839,3
+echonb,24879839,1
+2323600,24879839,5
+33919188,24879839,5
+55629358,24879839,4
+xiaomanxiaoxi,24879839,1
+leftfm,24879839,3
+76075796,24879839,-1
+57175016,24879839,4
+hahjhahj,24879839,4
+46436075,24879839,3
+70929695,24879839,2
+heiehi,24879839,3
+82579116,24879839,1
+83383536,24879839,3
+31622009,24879839,2
+anlrj,24879839,4
+queenchelsea,24879839,3
+26740977,24879839,3
+114250104,24879839,3
+57883614,24879839,1
+58051077,24879839,2
+fishsunset,24879839,1
+kasajq,24879839,2
+aquaman,24879839,1
+2637083,24879839,4
+34230958,24879839,3
+87495306,24879839,3
+5485569,24879839,3
+yanzibaobao,24879839,3
+yyh,24879839,2
+oracle_home,24879839,4
+nebgnahz,24879839,3
+3328450,24879839,3
+ruoren,24879839,3
+54754236,24879839,2
+58720878,24879839,4
+Rosier,24879839,2
+bigseaurchin,24879839,2
+120353268,24879839,3
+laomo,24879839,2
+66088686,24879839,1
+studyzy,24879839,4
+lxr1019,24879839,2
+122336700,24879839,1
+RickyBeOnTheWay,24879839,1
+52022745,24879839,3
+ice33,24879839,-1
+85562867,24879839,1
+44527198,24879839,2
+octodon,24879839,4
+64455785,24879839,3
+Chiniac_Cubic,24879839,2
+104445642,24879839,2
+xxxali,24879839,1
+130883394,24879839,4
+29202128,24879839,1
+63961458,24879839,3
+25370754,24879839,5
+cinder1,24879839,4
+75007342,24879839,3
+annastasiax,24879839,4
+48919833,24879839,3
+1588264,24879839,4
+princewk1008,24879839,3
+60521399,24879839,1
+zzsycfx57,24879839,1
+goofy-G,24879839,3
+33960706,24879839,4
+122184294,24879839,3
+34404618,24879839,4
+46514448,24879839,2
+62148442,24879839,3
+zlq54321,24879839,1
+3279908,24879839,4
+heyidi,24879839,1
+62651443,24879839,3
+83411107,24879839,3
+131525060,24879839,4
+36819020,24879839,1
+4643138,24879839,1
+58904341,24879839,4
+52428606,24879839,2
+2937093,24879839,1
+ooohhh,24879839,1
+44499391,24879839,2
+zazahuang,24879839,1
+lemoncan,24879839,2
+52114041,24879839,3
+19509960,24879839,1
+misteror,24879839,2
+91746178,24879839,3
+shenshenaini,24879839,3
+52633468,24879839,1
+Sophieless,24879839,3
+sinceweloved,24879839,-1
+39760597,24879839,2
+122655141,24879839,3
+59380375,24879839,2
+43228715,24879839,2
+80235268,24879839,3
+jx0517,24879839,3
+44809136,24879839,3
+avon0801,24879839,5
+1206373,24879839,2
+2856696,24879839,3
+jore1102,24879839,4
+55626744,24879839,3
+1020913,24879839,-1
+gozn,24879839,1
+40572936,24879839,2
+xiaohe5210,24879839,2
+1600165,24879839,4
+rainsun0607,24879839,2
+danielhu,24879839,3
+2997234,24879839,-1
+orpzrpv,24879839,3
+68284953,24879839,2
+45789849,24879839,4
+57931932,24879839,2
+68988270,24879839,4
+aiouliya,24879839,2
+urannus,24879839,2
+hljmsfy,24879839,2
+csbx,24879839,1
+2174123,24879839,4
+lixin123dongli,24879839,3
+51467153,24879839,1
+winter-h,24879839,3
+125474588,24879839,1
+3083714,24879839,4
+sanjingshu,24879839,2
+5926337,24879839,1
+57274544,24879839,1
+yesvvu,24879839,2
+chopnizi,24879839,2
+1528379,24879839,1
+enimo,24879839,2
+44483182,24879839,1
+119296699,24879839,3
+59623092,24879839,2
+2582296,24879839,1
+micwaa,24879839,-1
+61466500,24879839,2
+50670787,24879839,2
+64490201,24879839,2
+83507458,24879839,4
+1952965,24879839,2
+Eleven_Park,24879839,3
+undertree,24879839,3
+90681900,24879839,2
+3991087,24879839,2
+61327587,24879839,2
+4252143,24879839,3
+oneself1314,24879839,-1
+48978684,24879839,2
+51915169,24879839,3
+13144476,24879839,2
+funnyxucheng,24879839,2
+65009709,24879839,2
+1035596,24879839,1
+traylor,24879839,4
+2491769,24879839,2
+59077643,24879839,4
+63171651,24879839,3
+2310421,24879839,3
+68555480,24879839,4
+punk90,24879839,2
+db924519251,24879839,2
+125267371,24879839,3
+Desmondj,24879839,4
+fairyhui521,24879839,2
+clairegyy,24879839,1
+2325631,24879839,3
+3353584,24879839,1
+128760790,24879839,2
+49341014,24879839,4
+40547313,24879839,2
+nanjournal,24879839,3
+67659493,24879839,3
+132505229,24879839,3
+125673009,24879839,4
+47564941,24879839,1
+1397901,24879839,2
+judeyoung,24879839,1
+38272558,24879839,3
+7223165,24879839,2
+8752115,24879839,3
+45037814,24879839,1
+65025544,24879839,1
+47005130,24879839,-1
+53129472,24879839,3
+62605597,24879839,3
+OOXXWJW,24879839,5
+formers,24879839,2
+dh28105,24879839,2
+yixuan2,24879839,2
+kangmeng,24879839,3
+green198641,24879839,3
+foundlll,24879839,1
+72050060,24879839,3
+52048699,24879839,3
+gogosummer,24879839,2
+78925849,24879839,2
+ferrari_4cats,24879839,-1
+77557122,24879839,3
+cuterice,24879839,1
+63920441,24879839,3
+ruoxilingshan,24879839,2
+128181161,24879839,3
+yumiaowater,24879839,1
+cuixin,24879839,1
+neochao,24879839,3
+beck0729,24879839,3
+yushuliuy,24879839,3
+Twdrop,24879839,4
+tucuman,24879839,1
+riflee1,24879839,4
+wuyinhe,24879839,1
+50564631,24879839,3
+3328964,24879839,2
+beibeiyu,24879839,2
+49735626,24879839,2
+45485577,24879839,4
+68597292,24879839,5
+84564093,24879839,1
+zyv1224,24879839,4
+realien,24879839,3
+4580722,24879839,2
+120793472,24879839,2
+52202142,24879839,3
+92377518,24879839,3
+41842523,24879839,3
+4246182,24879839,3
+84152502,24879839,3
+62333707,24879839,1
+48253364,24879839,3
+1187053,24879839,3
+homepackage,24879839,-1
+64013773,24879839,3
+69434990,24879839,3
+65769663,24879839,3
+rollin,24879839,2
+75070231,24879839,4
+xever,24879839,2
+115985324,24879839,2
+34160744,24879839,2
+gongzitian,24879839,2
+70519062,24879839,1
+43130115,24879839,1
+69152007,24879839,5
+79420441,24879839,3
+92432764,24879839,2
+2922692,24879839,1
+AldrickBanks,24879839,3
+30332673,24879839,2
+84207817,24879839,2
+84207817,24879839,2
+75606541,24879839,2
+61110036,24879839,2
+40447897,24879839,3
+dolphinfu,24879839,4
+64465114,24879839,1
+36849431,24879839,3
+wj8198026,24879839,3
+jisixue0111,24879839,2
+64880714,24879839,2
+damobao,24879839,3
+61497577,24879839,3
+42004414,24879839,1
+58908894,24879839,1
+57259895,24879839,2
+53972660,24879839,1
+39220654,24879839,3
+vivian1165,24879839,2
+21092947,24879839,1
+79066810,24879839,1
+zipaiwang,24879839,1
+longwandaren,24879839,4
+49751665,24879839,4
+kimyeol,24879839,2
+64796008,24879839,2
+50451911,24879839,2
+108151781,24879839,2
+53283594,24879839,2
+65832475,24879839,3
+54251461,24879839,3
+donggaohe,24879839,1
+nidongnimei,24879839,3
+32505572,24879839,5
+beckham7,24879839,2
+66783329,24879839,3
+bjnova,24879839,4
+61524550,24879839,2
+3421868,24879839,1
+verstand,24879839,4
+127688878,24879839,3
+98500983,24879839,1
+60311898,24879839,2
+53222149,24879839,2
+80398385,24879839,2
+36060435,24879839,2
+48715746,24879839,3
+wxy2307,24879839,1
+2498446,24879839,5
+130531529,24879839,1
+lionelwait,24879839,4
+xiaohuaxiaoyu,24879839,1
+58276184,24879839,3
+62637324,24879839,4
+59998164,24879839,3
+43297511,24879839,4
+42781171,24879839,3
+57608084,24879839,3
+74775337,24879839,3
+ZHFan,24879839,-1
+37121767,24879839,3
+65529304,24879839,2
+withsurui,24879839,2
+65900502,24879839,3
+66423107,24879839,2
+zoewen1984,24879839,2
+4095313,24879839,3
+100574320,24879839,4
+56694897,24879839,2
+68145483,24879839,1
+68776992,24879839,2
+50655031,24879839,4
+126842883,24879839,2
+copy6,24879839,5
+hoterran,24879839,1
+3119427,24879839,4
+1281739,24879839,2
+53049553,24879839,3
+120383320,24879839,1
+60090173,24879839,2
+sweetmisscat,24879839,2
+frankie_sy,24879839,3
+haojii,24879839,4
+33363647,24879839,2
+qymt1257,24879839,3
+timeispassing,24879839,1
+74495148,24879839,2
+SpriteCat,24879839,3
+124047686,24879839,1
+36743264,24879839,1
+lcpeng,24879839,1
+49331136,24879839,1
+Xiaoyue,24879839,3
+49145944,24879839,3
+61600429,24879839,4
+23235822,24879839,4
+coolorita,24879839,-1
+80671615,24879839,5
+2268277,24879839,1
+54239245,24879839,2
+58658426,24879839,3
+54158519,24879839,2
+45000967,24879839,3
+stompbabe,24879839,2
+2845192,24879839,1
+nofer,24879839,3
+shuixin7,24879839,2
+40670212,24879839,2
+3598072,24879839,4
+patio,24879839,4
+chl199093,24879839,3
+121195542,24879839,5
+89539634,24879839,2
+72700363,24879839,3
+85324202,24879839,3
+36681127,24879839,3
+123011203,24879839,3
+honeynaga,24879839,2
+waldo0121,24879839,1
+106351670,24879839,4
+samzhuang,24879839,4
+56602222,24879839,5
+80536863,24879839,4
+zhaozehan,24879839,3
+43617068,24879839,2
+bluegrid,24879839,2
+102598019,24879839,4
+78776565,24879839,2
+66192057,24879839,2
+zichuanxiao,24879839,3
+51398532,24879839,3
+79127642,24879839,3
+45291333,24879839,3
+34321151,24879839,2
+xianyugan,24879839,3
+73600368,24879839,3
+sunxiaozhao,24879839,2
+46968893,24879839,2
+joyyyy,24879839,2
+Zouzoutingting,24879839,2
+zoezhangs,24879839,3
+3565406,24879839,3
+2014779,24879839,2
+2475141,24879839,3
+1527797,24879839,1
+gzbl8497,24879839,1
+62308831,24879839,4
+guildwars2,24879839,3
+56010108,24879839,3
+3103013,24879839,2
+asd87511633,24879839,1
+1225334,24879839,5
+57479988,24879839,3
+4605744,24879839,3
+49585596,24879839,1
+Cycneverstop,24879839,2
+xisahala,24879839,3
+9747508,24879839,2
+75325529,24879839,3
+aivnce,24879839,3
+yibaiwushitian,24879839,1
+onlystella,24879839,2
+45008619,24879839,4
+kknightnight,24879839,5
+2389157,24879839,3
+kingkongofkhan,24879839,2
+gravi,24879839,2
+evanye,24879839,3
+atengbrilliance,24879839,1
+argorn,24879839,4
+4034905,24879839,5
+inlong,24879839,3
+49072774,24879839,4
+fish_in_desert,24879839,3
+42680639,24879839,2
+57157420,24879839,2
+16943300,24879839,1
+2356657,24879839,4
+an_blue,24879839,3
+2162545,24879839,1
+58094716,24879839,3
+50000718,24879839,4
+yamina_won,24879839,3
+samsaran,24879839,1
+87069686,24879839,4
+cindydragon,24879839,1
+1805712,24879839,-1
+louisayu,24879839,3
+8459513,24879839,3
+31335200,24879839,1
+63576554,24879839,3
+youyongyu,24879839,3
+badblueeyes,24879839,3
+74073932,24879839,3
+fightim,24879839,1
+luciane,24879839,2
+4469131,24879839,2
+92627460,24879839,2
+42667891,24879839,4
+115547734,24879839,2
+49416713,24879839,3
+79161906,24879839,2
+53303336,24879839,2
+l-kida,24879839,-1
+sinky1022,24879839,-1
+kane-chen,24879839,2
+67936960,24879839,2
+ymwtime,24879839,3
+vanvin,24879839,3
+52392787,24879839,4
+2831524,24879839,2
+107341379,24879839,3
+1486195,24879839,3
+shijinxue,24879839,2
+1042464,24879839,3
+114991272,24879839,2
+77550069,24879839,4
+huachunyan,24879839,1
+60256766,24879839,3
+2742057,24879839,1
+bluestone17,24879839,5
+4636941,24879839,-1
+81342650,24879839,2
+ganx,24879839,1
+63234207,24879839,3
+XinwenCheng,24879839,3
+81938409,24879839,-1
+79132036,24879839,2
+68189930,24879839,3
+qingchuanchuan,24879839,1
+65763988,24879839,4
+20047139,24879839,3
+49711943,24879839,3
+47551399,24879839,3
+49736336,24879839,2
+54064610,24879839,3
+68336768,24879839,5
+YM220,24879839,-1
+lihouyuan,24879839,4
+46640524,24879839,4
+47300313,24879839,2
+47300313,24879839,2
+2430432,24879839,3
+sczz_tang,24879839,4
+25110019,24879839,2
+zhangtingrui,24879839,1
+80466570,24879839,3
+lihuashi,24879839,3
+diaosicheng,24879839,1
+musesmelpomene,24879839,3
+70055114,24879839,3
+1942157,24879839,4
+54597801,24879839,4
+georgelouis,24879839,1
+53105432,24879839,3
+71062611,24879839,3
+liltwo,24879839,2
+towndone,24879839,2
+kimimomo520,24879839,2
+57617460,24879839,2
+vipyuchao,24879839,4
+susanbear,24879839,3
+59281167,24879839,2
+xiaheng0820,24879839,3
+4474468,24879839,2
+49850552,24879839,4
+fameloo,24879839,3
+Yaoguaishushu,24879839,2
+81004514,24879839,5
+33822786,24879839,3
+69679017,24879839,3
+110172016,24879839,3
+hearingmoon,24879839,4
+40626862,24879839,3
+4404193,24879839,3
+pearllina,24879839,-1
+zsyzljj,24879839,2
+3546704,24879839,3
+83415261,24879839,2
+zyicestar,24879839,2
+77288933,24879839,3
+1240037,24879839,3
+zink,24879839,1
+49684834,24879839,3
+132636435,24879839,4
+4617162,24879839,3
+waisel,24879839,3
+59310806,24879839,2
+longnel,24879839,2
+Sherry0ai88,24879839,2
+sliu,24879839,2
+solange,24879839,2
+52832866,24879839,1
+47839333,24879839,2
+76722357,24879839,3
+4285342,24879839,2
+ajwang1031,24879839,4
+104164266,24879839,2
+just_yeat,24879839,1
+75192516,24879839,3
+qixiaole,24879839,3
+55593947,24879839,1
+hrj21,24879839,-1
+infinitezzq,24879839,4
+32907397,24879839,4
+40093986,24879839,2
+juwujian,24879839,3
+CSO-Botasky,24879839,3
+carrieme,24879839,2
+tzkeer,24879839,2
+skyline1227,24879839,1
+mrbaibaibai,24879839,3
+43682942,24879839,2
+57489348,24879839,1
+36382798,24879839,1
+2828074,24879839,3
+68528163,24879839,2
+62206199,24879839,-1
+47368827,24879839,1
+57383545,24879839,2
+thunderous,24879839,2
+49342454,24879839,2
+1818595,24879839,2
+Qzhengzheng,24879839,1
+1338530,24879839,2
+111461811,24879839,4
+48924562,24879839,3
+misayxt,24879839,1
+50720023,24879839,1
+4545627,24879839,1
+52956534,24879839,2
+1894196,24879839,-1
+doubling,24879839,1
+57964940,24879839,4
+67029502,24879839,3
+64841580,24879839,-1
+kevinyu1101,24879839,3
+68588112,24879839,3
+57880300,24879839,1
+88730455,24879839,2
+50467988,24879839,4
+59865394,24879839,-1
+57080555,24879839,2
+furore,24879839,1
+61702958,24879839,2
+64163569,24879839,3
+yao120,24879839,2
+danche84,24879839,3
+4115987,24879839,2
+when31,24879839,3
+43775375,24879839,5
+Kraatui,24879839,3
+moonlightshit,24879839,2
+kikoliu999,24879839,1
+63152435,24879839,3
+49927345,24879839,4
+48564928,24879839,3
+rechyo,24879839,3
+U_michan,24879839,4
+landaishuyihao,24879839,4
+57268674,24879839,1
+36794017,24879839,3
+2114161,24879839,1
+amy221525,24879839,3
+wodeshudong,24879839,4
+47329757,24879839,1
+lzh321,24879839,1
+cgy,24879839,1
+57053750,24879839,3
+zhuzhenning,24879839,5
+oathkeeper,24879839,1
+27083454,24879839,2
+37563200,24879839,1
+zyd0527,24879839,1
+120048792,24879839,2
+77879092,24879839,1
+83268589,24879839,3
+koaladdin,24879839,3
+78322451,24879839,2
+52992190,24879839,1
+1244120,24879839,3
+69646030,24879839,3
+56161437,24879839,4
+adamneverland,24879839,2
+sensenv,24879839,-1
+wangjingjuan,24879839,2
+60102186,24879839,-1
+60590150,24879839,2
+fandongzhuantou,24879839,3
+126529625,24879839,3
+2756044,24879839,-1
+1512865,24879839,2
+46603577,24879839,1
+54285836,24879839,3
+59366761,24879839,-1
+xxqxz,24879839,3
+48066537,24879839,1
+kylechiang,24879839,2
+59621398,24879839,4
+92361571,24879839,3
+88237732,24879839,2
+83421613,24879839,5
+love_sam,24879839,2
+132076381,24879839,4
+11189422,24879839,3
+50153257,24879839,-1
+ningchang,24879839,1
+49116416,24879839,3
+59378291,24879839,2
+happy_cici,24879839,3
+43874690,24879839,3
+55872205,24879839,2
+50410530,24879839,2
+1773126,24879839,2
+cicivivi,24879839,3
+zzfznp,24879839,2
+izzyxiaobai,24879839,2
+junenmajunen,24879839,2
+100367444,24879839,3
+haruka87,24879839,3
+59032148,24879839,2
+48821799,24879839,3
+12582671,24879839,2
+airzx,24879839,4
+ai-leslie,24879839,3
+1929074,24879839,2
+88690250,24879839,2
+klzj,24879839,1
+teresasky,24879839,-1
+ydyie,24879839,1
+3855619,24879839,2
+10503526,24879839,2
+49697519,24879839,2
+66968677,24879839,5
+57585752,24879839,3
+45569084,24879839,2
+boboaibaobao,24879839,2
+fyyksyh,24879839,1
+susan-no-home,24879839,1
+2578978,24879839,1
+71561935,24879839,2
+52282089,24879839,2
+netsurfe,24879839,3
+61657305,24879839,4
+jluy,24879839,2
+47317154,24879839,3
+3736224,24879839,3
+67795929,24879839,4
+42522085,24879839,2
+84707523,24879839,3
+9628483,24879839,2
+44975625,24879839,4
+ganster,24879839,4
+42093443,24879839,2
+42623950,24879839,3
+1295297,24879839,2
+chuqihua,24879839,4
+70954003,24879839,2
+41482074,24879839,3
+Zenodotus,24879839,2
+78478366,24879839,5
+86941493,24879839,3
+anonymousor,24879839,2
+surebesure,24879839,2
+54461906,24879839,4
+129503817,24879839,2
+78757579,24879839,2
+45464563,24879839,4
+63444910,24879839,3
+38558253,24879839,-1
+80442320,24879839,3
+kamiyamaki,24879839,3
+samnew,24879839,3
+49271038,24879839,2
+sophia_wws,24879839,3
+shaoraul,24879839,3
+40090492,24879839,2
+rabbit_woman,24879839,4
+47424669,24879839,2
+58434981,24879839,3
+2172840,24879839,3
+akiisajunk,24879839,2
+linsio,24879839,3
+40537905,24879839,3
+49123249,24879839,3
+limenghua,24879839,1
+100840008,24879839,3
+67742444,24879839,2
+47619462,24879839,2
+55852519,24879839,2
+83900345,24879839,3
+2155168,24879839,4
+83344631,24879839,2
+68719898,24879839,2
+lijiefu007,24879839,2
+31689638,24879839,4
+58706786,24879839,-1
+lbq023,24879839,1
+feizhuangzhuang,24879839,1
+1797671,24879839,2
+57001792,24879839,2
+61907684,24879839,2
+mmmy,24879839,4
+58929132,24879839,3
+68433941,24879839,2
+54721365,24879839,2
+lesile,24879839,4
+50081676,24879839,1
+61907651,24879839,3
+3979311,24879839,1
+49322971,24879839,1
+31673634,24879839,1
+48965747,24879839,4
+1828101,24879839,3
+24321795,24879839,4
+29905943,24879839,3
+61703383,24879839,2
+57017199,24879839,4
+human4lav,24879839,2
+wzjzxgj,24879839,-1
+1769693,24879839,2
+YAMAHA_GO,24879839,4
+jeremydu777,24879839,2
+71365804,24879839,1
+93519955,24879839,1
+zyasmileshadow,24879839,2
+penny_penny,24879839,4
+ahao25,24879839,3
+roxanneshiong,24879839,3
+jeanne68240109,24879839,3
+51381670,24879839,4
+63450618,24879839,3
+snokin,24879839,1
+zouhuzm,24879839,3
+mintbear,24879839,1
+56866137,24879839,3
+xiguaguagua,24879839,3
+73600166,24879839,3
+67796922,24879839,4
+onionear,24879839,1
+dodo6060,24879839,1
+48509446,24879839,2
+ceciliachen,24879839,4
+36621771,24879839,3
+67292226,24879839,2
+ElephantBoy,24879839,-1
+62635497,24879839,2
+52129512,24879839,3
+40495510,24879839,3
+81212174,24879839,1
+violin0714,24879839,1
+48034586,24879839,2
+62903932,24879839,2
+49456596,24879839,3
+acmerfight,24879839,4
+67880800,24879839,2
+lijie,24879839,2
+68238343,24879839,2
+1711434,24879839,1
+130665937,24879839,2
+122879836,24879839,3
+122879836,24879839,3
+62141852,24879839,2
+3867480,24879839,3
+1282175,24879839,2
+maxmartin,24879839,4
+kidkid,24879839,1
+1484739,24879839,3
+50273494,24879839,2
+twiple,24879839,1
+3735449,24879839,1
+45147306,24879839,4
+1792027,24879839,2
+xsky1988,24879839,1
+96161152,24879839,2
+48097464,24879839,4
+1118044,24879839,2
+namik_ercan,24879839,3
+51248464,24879839,3
+65199752,24879839,4
+35294199,24879839,2
+75795997,24879839,5
+janice1124,24879839,2
+81530706,24879839,2
+47732306,24879839,3
+luoweixy,24879839,2
+Suumer007,24879839,3
+redenter,24879839,-1
+43868706,24879839,-1
+SailorSinbade,24879839,1
+78065496,24879839,2
+yzone,24879839,5
+qingmuwu,24879839,3
+65721466,24879839,1
+48163368,24879839,5
+whereshallwego,24879839,4
+lkk900518,24879839,5
+slothbug,24879839,3
+simpledeer,24879839,3
+lipengfeng2007,24879839,2
+ancg,24879839,4
+just-emma,24879839,-1
+zhaosq,24879839,2
+42759061,24879839,2
+66458815,24879839,2
+132444570,24879839,3
+114615831,24879839,1
+127144455,24879839,1
+96204394,24879839,3
+jsc528,24879839,3
+fenglingcp,24879839,2
+54810722,24879839,2
+89491653,24879839,3
+yihannangua,24879839,3
+3962683,24879839,5
+42196106,24879839,2
+83723594,24879839,3
+xmasx,24879839,2
+miaoxiao123,24879839,2
+61606236,24879839,3
+2316813,24879839,1
+2064671,24879839,3
+103579343,24879839,3
+52798749,24879839,3
+59216621,24879839,1
+Outman-LV,24879839,2
+tianamber,24879839,3
+40017309,24879839,3
+longvacation,24879839,3
+35892009,24879839,2
+virlee,24879839,-1
+atlasxm,24879839,4
+EVz,24879839,1
+99078833,24879839,2
+75740344,24879839,1
+53265759,24879839,4
+helloBek,24879839,3
+twobman,24879839,1
+1411336,24879839,4
+63241916,24879839,2
+muyu125,24879839,1
+25282878,24879839,1
+hyyyy,24879839,5
+43327545,24879839,4
+100503233,24879839,3
+21946696,24879839,2
+87673742,24879839,3
+zoophysical,24879839,1
+yuc200,24879839,1
+lucisferre,24879839,2
+stoneqr,24879839,5
+56788441,24879839,2
+43934047,24879839,2
+47026147,24879839,4
+jackiesbackbone,24879839,3
+49788567,24879839,2
+moonjourney,24879839,2
+sosxisang,24879839,2
+umikin,24879839,3
+Joie,24879839,2
+61895046,24879839,1
+WSSWHL,24879839,2
+1424681,24879839,4
+hudingwen0912,24879839,3
+tsoo416,24879839,3
+57367354,24879839,3
+LareinaGao,24879839,3
+58049381,24879839,4
+36619821,24879839,5
+46981462,24879839,1
+2890229,24879839,3
+advender,24879839,4
+asoloman,24879839,5
+34070573,24879839,3
+42724768,24879839,2
+100767439,24879839,3
+yunerrun,24879839,1
+film101,24879839,2
+49937057,24879839,1
+90587256,24879839,2
+60586093,24879839,4
+raecc,24879839,2
+62788121,24879839,1
+chxying,24879839,2
+2803600,24879839,1
+80857906,24879839,1
+48496460,24879839,2
+wymanqin,24879839,1
+gjx189,24879839,3
+68401918,24879839,5
+95416047,24879839,3
+gstone1723,24879839,3
+47361455,24879839,2
+Magic-L,24879839,2
+82765955,24879839,2
+51911319,24879839,1
+chenyi-erica,24879839,3
+76379695,24879839,1
+60822788,24879839,3
+84050999,24879839,5
+aunsen,24879839,3
+82357316,24879839,2
+59702078,24879839,1
+65776800,24879839,5
+4480813,24879839,2
+jakartaxie,24879839,2
+44783920,24879839,2
+37017024,24879839,3
+2970649,24879839,1
+fragilelove,24879839,1
+62400100,24879839,4
+49324662,24879839,3
+62871612,24879839,4
+39935657,24879839,1
+76667923,24879839,2
+61500590,24879839,3
+tata419,24879839,2
+27339155,24879839,3
+55942870,24879839,3
+FujiwaraSai,24879839,2
+87381547,24879839,2
+58069124,24879839,3
+sleepingdesun,24879839,-1
+48644057,24879839,2
+14840393,24879839,3
+46061693,24879839,2
+fishel,24879839,-1
+4505708,24879839,2
+56826913,24879839,3
+67398488,24879839,3
+yiyufan84,24879839,1
+nagi_echo-king,24879839,4
+aimyu,24879839,1
+88951785,24879839,1
+54591552,24879839,3
+ikezhao,24879839,3
+49593703,24879839,3
+34063715,24879839,4
+116718171,24879839,3
+1273166,24879839,4
+51274391,24879839,1
+50353681,24879839,3
+69851260,24879839,1
+43487474,24879839,2
+42022756,24879839,3
+zhhongbo,24879839,3
+45666084,24879839,5
+57985657,24879839,3
+ECHO0707,24879839,2
+15986782,24879839,2
+renchang,24879839,3
+65649890,24879839,2
+Henry-Maugham,24879839,3
+icefishe,24879839,3
+3160576,24879839,1
+spottedowl,24879839,2
+DKJessica,24879839,3
+55598262,24879839,5
+48067046,24879839,1
+bocaidaxigua,24879839,3
+xingshi1106,24879839,4
+jiangye,24879839,3
+54653189,24879839,2
+cherryonsale,24879839,2
+42006560,24879839,3
+woshimumu,24879839,3
+saraxia33,24879839,3
+14889069,24879839,4
+46026110,24879839,2
+66440574,24879839,2
+60302594,24879839,3
+54224355,24879839,1
+dreamofduoduo,24879839,3
+hyykkb,24879839,3
+51001959,24879839,2
+125148047,24879839,3
+luo1949283,24879839,4
+56857308,24879839,1
+102170416,24879839,1
+31536326,24879839,3
+29858793,24879839,-1
+kimi-1119,24879839,2
+sunchao1989,24879839,2
+lazydesigner,24879839,1
+crystal555,24879839,4
+62964103,24879839,2
+nicolas0606,24879839,3
+92129486,24879839,3
+80628102,24879839,2
+2590915,24879839,2
+58192275,24879839,4
+lachie,24879839,2
+93900680,24879839,2
+14669619,24879839,3
+homemiami,24879839,-1
+bbfaith,24879839,2
+132092156,24879839,2
+remenbercc,24879839,2
+57313770,24879839,4
+87885475,24879839,2
+49926534,24879839,3
+4084421,24879839,1
+43359124,24879839,2
+59648249,24879839,3
+DracoMa,24879839,4
+115593440,24879839,4
+121270653,24879839,2
+23450183,24879839,2
+82760754,24879839,4
+skyearthone,24879839,3
+3712644,24879839,3
+summer19,24879839,3
+75210772,24879839,4
+72682584,24879839,1
+99181086,24879839,1
+sunnyday-u,24879839,2
+leeyone,24879839,2
+69103765,24879839,3
+49094152,24879839,4
+ruoyu1,24879839,1
+43069028,24879839,3
+arthurwen,24879839,5
+45646209,24879839,3
+61041885,24879839,3
+saga837399913,24879839,-1
+fyp34756,24879839,3
+60042513,24879839,3
+64276762,24879839,4
+mia8910,24879839,-1
+72829312,24879839,2
+xiaoshizhan,24879839,3
+jindadong,24879839,2
+128477614,24879839,2
+MissWangnana,24879839,2
+48126905,24879839,1
+eonian,24879839,3
+2504247,24879839,1
+68647796,24879839,1
+nss1w1,24879839,2
+66336438,24879839,2
+50532980,24879839,3
+caocaoa,24879839,1
+64454454,24879839,-1
+poison1988,24879839,-1
+63113646,24879839,1
+thisisdaisy,24879839,2
+55999972,24879839,-1
+67918829,24879839,-1
+58179619,24879839,1
+burnlock,24879839,5
+76595310,24879839,2
+45290589,24879839,2
+bfa1950,24879839,2
+50219833,24879839,2
+2750778,24879839,5
+71419171,24879839,2
+80517374,24879839,3
+liuyahuavv,24879839,3
+josephgyal,24879839,3
+87208531,24879839,2
+56263010,24879839,1
+yvone1220,24879839,2
+wtforz,24879839,2
+aivae,24879839,3
+guppyfish,24879839,2
+70749635,24879839,4
+2603031,24879839,2
+9399365,24879839,4
+eva01,24879839,3
+34179195,24879839,3
+54735125,24879839,3
+49273916,24879839,1
+78902350,24879839,1
+danshine,24879839,1
+30626996,24879839,1
+athule,24879839,-1
+32647118,24879839,3
+65366516,24879839,2
+93438147,24879839,3
+116614076,24879839,2
+maomao0504,24879839,3
+105196709,24879839,2
+66173191,24879839,2
+42409288,24879839,2
+58088926,24879839,5
+4002268,24879839,3
+54533341,24879839,3
+pxladx,24879839,1
+love_my_dog,24879839,2
+hezhoutingyu,24879839,4
+87602683,24879839,1
+wubudingyang,24879839,3
+JakeNow,24879839,2
+3831169,24879839,3
+49362198,24879839,3
+2186089,24879839,4
+53682563,24879839,3
+aballking,24879839,2
+58408943,24879839,1
+44706755,24879839,2
+gloria1102,24879839,2
+gloria1102,24879839,2
+2394527,24879839,2
+46225008,24879839,1
+3120137,24879839,3
+zhurou,24879839,3
+jahwey,24879839,3
+raincoat1115,24879839,-1
+60450818,24879839,1
+davve,24879839,3
+guisuishou,24879839,3
+81335043,24879839,3
+53751295,24879839,2
+72257329,24879839,2
+59969817,24879839,4
+LindsayFisher,24879839,1
+36753404,24879839,4
+45825912,24879839,1
+43703010,24879839,2
+liangluo,24879839,-1
+38105854,24879839,3
+58894699,24879839,4
+69970746,24879839,4
+missliyu,24879839,3
+56598720,24879839,-1
+46220008,24879839,4
+41587383,24879839,-1
+23784832,24879839,3
+sou1l,24879839,3
+76153086,24879839,2
+antchouet,24879839,2
+80664333,24879839,3
+2376365,24879839,-1
+tibetkids,24879839,4
+3133701,24879839,1
+59426898,24879839,3
+minimao,24879839,3
+Haguedon,24879839,2
+kingflower,24879839,3
+Sunnyshine,24879839,3
+3014394,24879839,1
+4719654,24879839,3
+wbx,24879839,2
+69438436,24879839,3
+79062945,24879839,-1
+pengpengyue,24879839,3
+121429600,24879839,2
+Bill_zz,24879839,2
+37694449,24879839,1
+ztzy,24879839,1
+58564617,24879839,4
+zhengriqiang,24879839,3
+2024774,24879839,3
+62995680,24879839,1
+kokoar,24879839,1
+3890918,24879839,2
+2844320,24879839,4
+36792326,24879839,4
+steph6luna,24879839,2
+59604055,24879839,2
+3689742,24879839,2
+chenghan1990,24879839,1
+73421795,24879839,3
+1271134,24879839,1
+58698487,24879839,2
+4021496,24879839,2
+doralupin,24879839,2
+goodbyemyprince,24879839,2
+xygoing,24879839,2
+16739191,24879839,4
+46006075,24879839,2
+41573731,24879839,2
+menmener,24879839,1
+120995671,24879839,2
+56841344,24879839,1
+wanprince,24879839,3
+39792754,24879839,2
+qchcg,24879839,2
+cindyhello,24879839,-1
+3442648,24879839,4
+97042878,24879839,3
+5580906,24879839,3
+Giraffe830,24879839,2
+43486122,24879839,2
+95910591,24879839,3
+75981147,24879839,5
+valiantina,24879839,3
+leoleehome,24879839,4
+100146208,24879839,4
+48122322,24879839,2
+muxueqz,24879839,3
+CashCheng,24879839,3
+75757535,24879839,3
+61535522,24879839,2
+justbella,24879839,3
+86026697,24879839,4
+49364601,24879839,3
+xuyinaxxxxxxx,24879839,5
+ketrina,24879839,3
+47376302,24879839,2
+86093744,24879839,2
+48920893,24879839,3
+14508573,24879839,4
+stella0720,24879839,3
+y_p,24879839,3
+lalarain,24879839,4
+71250285,24879839,3
+honestydudu,24879839,3
+60061240,24879839,1
+53307065,24879839,3
+beijusenlin,24879839,1
+k_He,24879839,-1
+pengpeng,24879839,2
+63343294,24879839,-1
+3397745,24879839,1
+1988523,24879839,2
+listensunshine,24879839,4
+lovingmomo,24879839,3
+everdream,24879839,3
+lizandliz,24879839,3
+sonatina,24879839,4
+44728054,24879839,2
+tianranzijiegou,24879839,3
+xiaopang2671,24879839,1
+68968517,24879839,1
+91940704,24879839,2
+63531003,24879839,3
+cloudy20011128,24879839,1
+62842608,24879839,2
+77792341,24879839,3
+liulenju,24879839,3
+130227721,24879839,3
+54780669,24879839,1
+momo077,24879839,2
+2747510,24879839,4
+1077003,24879839,3
+129556271,24879839,2
+60303712,24879839,5
+52149218,24879839,2
+akilaa,24879839,4
+54162190,24879839,-1
+lhlqzhuge,24879839,2
+73118410,24879839,2
+49181653,24879839,4
+xunlaoxia,24879839,1
+132463662,24879839,2
+46564377,24879839,3
+amyda,24879839,-1
+49623604,24879839,3
+1653942,24879839,4
+1456706,24879839,3
+82096475,24879839,4
+1663187,24879839,2
+97945976,24879839,1
+81173543,24879839,2
+62794136,24879839,2
+49813166,24879839,2
+hichai,24879839,3
+56524460,24879839,1
+26786112,24879839,2
+1477352,24879839,3
+33042240,24879839,3
+flyingCaptian,24879839,3
+as_shmily,24879839,3
+3575930,24879839,2
+rulaishenzhang,24879839,5
+3747792,24879839,3
+59927608,24879839,4
+3123758,24879839,1
+1074486,24879839,2
+vendoi,24879839,3
+gaoxiaopang,24879839,3
+Yolo77,24879839,3
+dawn_me,24879839,1
+26612648,24879839,2
+47360340,24879839,2
+2414691,24879839,2
+29411187,24879839,2
+46812658,24879839,4
+4441887,24879839,1
+notblueanymore,24879839,1
+2180108,24879839,3
+skeeter007,24879839,1
+78695888,24879839,3
+120375835,24879839,2
+55838246,24879839,4
+64035077,24879839,4
+casusu,24879839,4
+3220986,24879839,-1
+maydayyqy,24879839,3
+122831589,24879839,1
+35518301,24879839,2
+64113646,24879839,4
+sheg,24879839,3
+57932784,24879839,3
+62674251,24879839,3
+72205183,24879839,2
+StevenW,24879839,1
+88317701,24879839,3
+zhangbohun,24879839,2
+jyw56,24879839,4
+57584718,24879839,2
+70459367,24879839,2
+3066956,24879839,2
+xl8690,24879839,4
+43786893,24879839,3
+hrm880716,24879839,2
+41236349,24879839,1
+sajmira,24879839,3
+32634435,24879839,3
+52012798,24879839,1
+qinchongayo,24879839,3
+wangsc,24879839,1
+47785072,24879839,3
+68332314,24879839,2
+42939968,24879839,5
+sing1227,24879839,3
+97674151,24879839,2
+1137384,24879839,3
+jiangyin1992,24879839,4
+didiaosummer,24879839,5
+woshzd,24879839,3
+anisezww,24879839,1
+ohsherrysherry,24879839,-1
+stella930,24879839,2
+businiao198x,24879839,1
+shenmadoumeiyou,24879839,1
+fangyuan1987,24879839,1
+TenkyAn,24879839,3
+6120725,24879839,4
+thethirteenth,24879839,1
+slevwh,24879839,3
+nianimamabie,24879839,4
+tiemflies,24879839,3
+38161901,24879839,3
+s1975,24879839,3
+littlenest,24879839,3
+9065405,24879839,4
+42062370,24879839,2
+2788057,24879839,2
+32251971,24879839,4
+83195523,24879839,4
+130111969,24879839,1
+1319299,24879839,4
+78314737,24879839,3
+lolitazly,24879839,3
+31102423,24879839,1
+58402728,24879839,2
+leeson,24879839,5
+michaelmine,24879839,1
+77208813,24879839,4
+Davidcyclone,24879839,-1
+azthwh,24879839,3
+59739922,24879839,3
+dunhaoxiansheng,24879839,1
+guxueni,24879839,3
+78607701,24879839,5
+dancing_flower,24879839,1
+77771177,24879839,4
+84296521,24879839,3
+lidesheng,24879839,-1
+53833067,24879839,3
+76621126,24879839,2
+43153098,24879839,4
+44183342,24879839,1
+53485894,24879839,1
+Jodiezhang,24879839,3
+plawyer,24879839,2
+41462868,24879839,4
+ice_pudding,24879839,3
+79734997,24879839,3
+MrVincent,24879839,3
+sowangyang,24879839,1
+83989831,24879839,3
+39541745,24879839,2
+48437677,24879839,3
+garbovisa,24879839,4
+xcarol,24879839,1
+imqxq,24879839,-1
+1167641,24879839,3
+zeonwon,24879839,2
+49318064,24879839,3
+38611027,24879839,1
+people_friend,24879839,1
+81985285,24879839,3
+clay,24879839,2
+85488464,24879839,3
+72924510,24879839,4
+43459920,24879839,4
+122452433,24879839,2
+hui_112233,24879839,4
+bobo32,24879839,2
+vanuan,24879839,2
+46586058,24879839,3
+104474314,24879839,1
+2428233,24879839,2
+57437837,24879839,3
+47415286,24879839,3
+mayukijuju,24879839,4
+3039172,24879839,1
+2434887,24879839,3
+xpilot,24879839,5
+1951463,24879839,3
+orangesee,24879839,3
+G0773,24879839,4
+45241922,24879839,2
+gaoguangguang,24879839,4
+85245609,24879839,3
+45088041,24879839,4
+43121658,24879839,2
+74150636,24879839,3
+4123613,24879839,3
+61855461,24879839,3
+44992130,24879839,3
+fedorajiang,24879839,3
+4227690,24879839,1
+2322719,24879839,2
+57088195,24879839,1
+114734252,24879839,1
+24534365,24879839,5
+abpeter,24879839,3
+77796925,24879839,1
+nancysmile,24879839,4
+43788388,24879839,3
+benbenmuxi,24879839,4
+dyh1991,24879839,3
+44758132,24879839,5
+land1314,24879839,3
+nicolastong,24879839,4
+74942804,24879839,3
+vantan,24879839,4
+1095652,24879839,1
+64692199,24879839,4
+51825237,24879839,4
+72061303,24879839,3
+52736219,24879839,3
+78277110,24879839,5
+49573662,24879839,5
+startswang,24879839,3
+47630541,24879839,2
+64286220,24879839,2
+62443824,24879839,4
+chichao,24879839,4
+Lovestation,24879839,1
+danielyan1991,24879839,4
+lanodg,24879839,1
+107413834,24879839,2
+yu1we1,24879839,3
+DivaTequila,24879839,3
+leon_howe,24879839,2
+4760755,24879839,2
+37218350,24879839,1
+15576748,24879839,2
+83250285,24879839,3
+14357343,24879839,1
+linkefeixue,24879839,2
+67125371,24879839,4
+55870223,24879839,1
+44713959,24879839,2
+114167599,24879839,2
+pastbai,24879839,1
+cutlife,24879839,4
+80382193,24879839,3
+dyinggg,24879839,3
+61346202,24879839,4
+f91_82,24879839,2
+87448827,24879839,1
+4384010,24879839,2
+ooxx00xx,24879839,1
+47959291,24879839,1
+1322402,24879839,3
+54217393,24879839,1
+52290276,24879839,2
+44276090,24879839,2
+60347813,24879839,1
+39148019,24879839,3
+maxbbn,24879839,1
+piaoyull,24879839,3
+42291376,24879839,2
+66267433,24879839,3
+80074512,24879839,1
+102402145,24879839,3
+33754763,24879839,3
+Le5in,24879839,2
+63849510,24879839,2
+59101445,24879839,3
+63724956,24879839,2
+35008425,24879839,2
+yinzaixi,24879839,3
+1069725,24879839,1
+81560578,24879839,1
+52758719,24879839,1
+longya,24879839,3
+64038033,24879839,3
+108821632,24879839,1
+47258009,24879839,2
+48519318,24879839,2
+bearkill,24879839,1
+xiaosongqu,24879839,2
+5475581,24879839,3
+1315733,24879839,2
+11942254,24879839,2
+3846089,24879839,3
+youngfuck,24879839,5
+120445293,24879839,2
+2622237,24879839,1
+121434858,24879839,3
+kewanni,24879839,2
+lijinxing,24879839,1
+iamlulu713,24879839,2
+akhexiaobai,24879839,2
+implicitallure,24879839,5
+69232163,24879839,3
+43240998,24879839,3
+lovedtomma,24879839,2
+4228422,24879839,2
+91545129,24879839,2
+16166133,24879839,1
+nanacancer,24879839,2
+lovefilms,24879839,2
+larrylazy,24879839,1
+larrylazy,24879839,1
+67742715,24879839,2
+popopo,24879839,3
+36789209,24879839,3
+106260389,24879839,3
+76534851,24879839,3
+46461287,24879839,4
+vegetamin,24879839,2
+CaptLimbo,24879839,2
+ihaveafreeheart,24879839,2
+92105387,24879839,3
+zzz.aoe,24879839,4
+ask4more,24879839,-1
+56578863,24879839,2
+35285718,24879839,4
+126716117,24879839,3
+47212439,24879839,2
+64075825,24879839,2
+41403646,24879839,4
+zhangxiaori,24879839,1
+zhangxiaori,24879839,1
+55004423,24879839,2
+26638056,24879839,2
+127321478,24879839,2
+5407237,24879839,3
+4083280,24879839,4
+71181418,24879839,3
+leedany,24879839,3
+3474392,24879839,1
+72547163,24879839,3
+52238680,24879839,3
+lijianxiuer,24879839,3
+132078130,24879839,1
+AuRevoir7,24879839,3
+55842990,24879839,3
+iiawu,24879839,2
+102717310,24879839,3
+endlishock,24879839,2
+saai,24879839,3
+67441659,24879839,2
+43625639,24879839,2
+renyouy,24879839,2
+50094689,24879839,2
+102618812,24879839,3
+changzheng,24879839,3
+zhixiayufei,24879839,3
+94546976,24879839,2
+3934610,24879839,2
+chaseradio,24879839,2
+hellojulian,24879839,-1
+28955759,24879839,4
+62804242,24879839,2
+70435217,24879839,2
+28785708,24879839,2
+48540705,24879839,2
+word999,24879839,1
+130121771,24879839,1
+justsoso80s,24879839,3
+38257497,24879839,4
+52294863,24879839,3
+65129515,24879839,1
+99529737,24879839,5
+triumph,24879839,1
+littlemmbaby,24879839,3
+3857210,24879839,2
+muyefeifei,24879839,4
+duhuitang,24879839,3
+Decwind,24879839,3
+liuyichao,24879839,1
+58723728,24879839,1
+53873443,24879839,1
+115707608,24879839,1
+87778989,24879839,4
+55737203,24879839,2
+3927394,24879839,2
+71383486,24879839,2
+127370400,24879839,1
+51620794,24879839,2
+78585839,24879839,3
+kerorocao,24879839,2
+54908779,24879839,2
+81509803,24879839,2
+digdug,24879839,4
+wjn,24879839,1
+ferriwheels,24879839,2
+jolllllly,24879839,2
+76611723,24879839,2
+2705335,24879839,3
+heloisehexiao,24879839,-1
+rsdch,24879839,2
+81845294,24879839,2
+88097347,24879839,3
+CanDee430,24879839,3
+57275922,24879839,2
+53991249,24879839,5
+69259241,24879839,4
+131838639,24879839,3
+81106813,24879839,1
+kandyball,24879839,1
+58484410,24879839,4
+53265029,24879839,1
+69586177,24879839,2
+68991888,24879839,3
+102816814,24879839,3
+3191640,24879839,3
+laojiaoshou,24879839,3
+E-lover,24879839,1
+guyu2711,24879839,1
+84522058,24879839,3
+113614354,24879839,1
+78623858,24879839,3
+71741571,24879839,-1
+zhr19951204,24879839,1
+121346117,24879839,2
+28494028,24879839,2
+67346668,24879839,2
+moyujushi,24879839,1
+91582621,24879839,4
+49809768,24879839,3
+58646468,24879839,3
+58255459,24879839,2
+yihaizhou,24879839,4
+51157503,24879839,5
+1958346,24879839,3
+80826623,24879839,3
+55617091,24879839,3
+53824348,24879839,2
+58039910,24879839,2
+55348878,24879839,4
+80962238,24879839,3
+SA69,24879839,2
+NaamTsui,24879839,3
+Lynn_WLY,24879839,4
+42202741,24879839,2
+46119201,24879839,5
+Jacky_L,24879839,3
+54584618,24879839,-1
+iamrighthere,24879839,3
+66598242,24879839,3
+31790213,24879839,2
+121880026,24879839,5
+71861591,24879839,2
+dudumozart,24879839,3
+atomziyu,24879839,3
+1115324,24879839,3
+132462267,24879839,5
+100324519,24879839,1
+zhaoshiyi,24879839,3
+52530490,24879839,2
+scarlet_,24879839,3
+45686083,24879839,3
+92072768,24879839,3
+4693560,24879839,1
+49420713,24879839,2
+119415852,24879839,2
+59782397,24879839,2
+53601527,24879839,3
+2092765,24879839,3
+50083278,24879839,3
+54410090,24879839,1
+68770847,24879839,1
+tushanxiao,24879839,5
+3078958,24879839,-1
+kati,24879839,3
+2858394,24879839,-1
+51426372,24879839,-1
+50979998,24879839,2
+57139809,24879839,3
+forevereva,24879839,3
+89852120,24879839,3
+54531313,24879839,3
+34800119,24879839,3
+raen,24879839,4
+49056997,24879839,2
+130532413,24879839,4
+eason0210,24879839,2
+guanxin898,24879839,2
+2187670,24879839,4
+COCOTTE,24879839,2
+30909217,24879839,2
+wanhoo,24879839,4
+82823263,24879839,2
+yqsophia,24879839,2
+49644244,24879839,3
+76551061,24879839,3
+127066563,24879839,3
+blew,24879839,2
+methuselah,24879839,2
+63431252,24879839,4
+72643649,24879839,1
+56350063,24879839,1
+liangzhuzaoshu,24879839,-1
+xydudu,24879839,4
+65111838,24879839,3
+73702156,24879839,2
+abv,24879839,2
+63223538,24879839,3
+so-it-is,24879839,3
+115874709,24879839,2
+46685940,24879839,4
+45108609,24879839,1
+74701610,24879839,1
+ice41322,24879839,1
+61088148,24879839,2
+45852274,24879839,3
+lovefay,24879839,4
+68878726,24879839,4
+4158652,24879839,5
+oweuuu,24879839,-1
+xzach,24879839,2
+21388170,24879839,1
+yny23,24879839,1
+M_Caesar,24879839,3
+67387298,24879839,2
+57566252,24879839,3
+115686371,24879839,2
+33522893,24879839,3
+78606894,24879839,2
+57172053,24879839,3
+55851508,24879839,3
+47941009,24879839,3
+doubanjoy,24879839,4
+85382563,24879839,3
+yihaifei,24879839,2
+64818273,24879839,1
+68738740,24879839,2
+R.Samsara,24879839,-1
+fantasy778899,24879839,4
+41294131,24879839,2
+34016067,24879839,2
+62151514,24879839,4
+taoyue,24879839,1
+82844631,24879839,2
+76443964,24879839,2
+le-lucermair,24879839,1
+56435930,24879839,3
+york_wu,24879839,3
+2041666,24879839,2
+90831537,24879839,3
+leokokko,24879839,2
+4005811,24879839,1
+midautumnsong,24879839,1
+Mr_Sunday,24879839,2
+3514261,24879839,1
+123470905,24879839,1
+ys1013,24879839,3
+2608219,24879839,5
+125232872,24879839,2
+36667983,24879839,-1
+baby861708,24879839,3
+58786397,24879839,4
+auld.lang.syne,24879839,1
+onetime,24879839,1
+Amanda-Z,24879839,3
+65283141,24879839,2
+58653283,24879839,3
+couniter,24879839,3
+stream_wang,24879839,3
+rosemarrywu,24879839,3
+berain404,24879839,2
+52938321,24879839,4
+1688906,24879839,2
+124514675,24879839,3
+einru,24879839,2
+kayla1016,24879839,5
+53470202,24879839,3
+robins1979,24879839,3
+39047335,24879839,2
+47340751,24879839,2
+rainze,24879839,4
+litianye,24879839,3
+64700587,24879839,2
+silent_island,24879839,2
+madsereins,24879839,3
+xping,24879839,1
+bajiao8,24879839,1
+104409838,24879839,3
+tianchuan,24879839,3
+2309033,24879839,5
+2911268,24879839,3
+62877248,24879839,2
+76467871,24879839,2
+ganqianru,24879839,2
+2924921,24879839,3
+earache1,24879839,4
+2174160,24879839,-1
+114493058,24879839,5
+confuzzle,24879839,2
+yoyopao,24879839,5
+48783250,24879839,1
+60240368,24879839,2
+yumianfeilong,24879839,3
+84217681,24879839,4
+122161339,24879839,1
+chieng,24879839,2
+hellopunk,24879839,-1
+122021533,24879839,3
+130872044,24879839,3
+CodeName.A,24879839,5
+71235824,24879839,1
+jingnian,24879839,2
+78659240,24879839,1
+3816150,24879839,1
+62118747,24879839,3
+44392983,24879839,3
+1303295,24879839,4
+1265651,24879839,1
+120427530,24879839,3
+67630487,24879839,3
+107982589,24879839,1
+43703653,24879839,2
+58399849,24879839,2
+76970827,24879839,3
+erobin,24879839,4
+foxvi,24879839,3
+37967188,24879839,2
+68223048,24879839,3
+2348623,24879839,-1
+guigui291,24879839,3
+4564181,24879839,5
+4564181,24879839,5
+Arrebato,24879839,2
+62943460,24879839,2
+50316590,24879839,1
+125426070,24879839,3
+58625765,24879839,3
+BlossomBlue,24879839,3
+120654562,24879839,4
+65234535,24879839,2
+72629481,24879839,4
+fukediguo,24879839,4
+lovin12,24879839,3
+54204621,24879839,3
+68747518,24879839,2
+1109141,24879839,2
+xdcheung,24879839,2
+57001880,24879839,1
+50926664,24879839,1
+64718772,24879839,4
+63802533,24879839,4
+131141632,24879839,1
+2789302,24879839,3
+kongben,24879839,2
+depressioncat,24879839,5
+45530358,24879839,3
+3534571,24879839,2
+shishuyue,24879839,2
+1364035,24879839,2
+tenspace,24879839,2
+49490666,24879839,1
+pixdream,24879839,3
+natejumper,24879839,5
+d.t.,24879839,4
+121816269,24879839,1
+vcandverve,24879839,3
+3938353,24879839,-1
+hxb30,24879839,1
+pink_water,24879839,3
+64158522,24879839,2
+zhuangdikun,24879839,2
+46783923,24879839,3
+K-Child,24879839,2
+34033819,24879839,2
+48443053,24879839,3
+106349539,24879839,1
+luckyliu,24879839,2
+magicnuan,24879839,5
+69311501,24879839,3
+84430794,24879839,2
+foreversleepy,24879839,3
+69270211,24879839,1
+forevermy,24879839,5
+3978018,24879839,2
+81215873,24879839,2
+2674621,24879839,1
+89635048,24879839,1
+jingrong,24879839,2
+74807963,24879839,4
+70386523,24879839,2
+13938339,24879839,5
+74818677,24879839,3
+46988073,24879839,2
+68776201,24879839,3
+64892414,24879839,4
+62012748,24879839,3
+46333522,24879839,3
+sunbox,24879839,3
+48924579,24879839,3
+zyjj141,24879839,3
+3371471,24879839,3
+54672231,24879839,2
+foxbaby_1104,24879839,3
+58500807,24879839,2
+Quester,24879839,4
+60834286,24879839,3
+48905575,24879839,1
+tongkong,24879839,3
+LOVEyuduoduo,24879839,4
+CherryChI,24879839,2
+when3memory7,24879839,2
+when3memory7,24879839,2
+36497653,24879839,4
+53062972,24879839,1
+65448112,24879839,3
+55849765,24879839,3
+131618502,24879839,3
+kiss_xiaobei,24879839,4
+127354177,24879839,3
+offers,24879839,1
+catlover33,24879839,2
+43623325,24879839,3
+53657118,24879839,3
+53653767,24879839,2
+4246981,24879839,1
+1171612,24879839,5
+55325388,24879839,3
+37371725,24879839,2
+50747236,24879839,2
+4010903,24879839,2
+57235976,24879839,2
+55985856,24879839,1
+Obsessed,24879839,4
+4331772,24879839,4
+119868910,24879839,4
+132388146,24879839,2
+fcinter,24879839,1
+131210032,24879839,-1
+Jane1424335445,24879839,4
+95158239,24879839,1
+25350324,24879839,1
+46585910,24879839,2
+baoziyudigua,24879839,-1
+71378283,24879839,3
+SilentLookYou,24879839,-1
+73770188,24879839,1
+3100517,24879839,-1
+51887604,24879839,3
+120216633,24879839,2
+1453101,24879839,3
+36206856,24879839,3
+xieyixi,24879839,3
+51693234,24879839,-1
+1685637,24879839,2
+little-aileen,24879839,3
+51202382,24879839,4
+52241788,24879839,2
+magicwind,24879839,2
+60818460,24879839,2
+48748738,24879839,2
+81061741,24879839,-1
+45484348,24879839,2
+3238270,24879839,4
+Abbyssuly,24879839,5
+55466404,24879839,2
+58222063,24879839,3
+17298456,24879839,1
+1633394,24879839,1
+63718274,24879839,5
+41931684,24879839,3
+65388515,24879839,2
+65388515,24879839,2
+47347613,24879839,2
+4243064,24879839,1
+66921135,24879839,2
+4373936,24879839,2
+43562072,24879839,1
+51312252,24879839,3
+51736421,24879839,-1
+129545836,24879839,5
+2640253,24879839,2
+NeilGuo521,24879839,2
+1550135,24879839,2
+simu19,24879839,3
+126186349,24879839,1
+2014117,24879839,1
+eruohui,24879839,3
+128448813,24879839,2
+121432553,24879839,3
+imsatan,24879839,2
+14234896,24879839,1
+51679757,24879839,3
+116050457,24879839,2
+132182223,24879839,3
+48089294,24879839,5
+31276053,24879839,2
+ssjj,24879839,4
+92809510,24879839,-1
+vivienvb,24879839,3
+65809377,24879839,4
+53884441,24879839,2
+73855725,24879839,4
+43833654,24879839,2
+3633901,24879839,2
+3458545,24879839,3
+twooneseven,24879839,2
+55785418,24879839,4
+JustCallMeCJ,24879839,2
+4774491,24879839,4
+67987733,24879839,2
+4657339,24879839,3
+52352034,24879839,1
+117027234,24879839,1
+124253773,24879839,3
+65578714,24879839,2
+darlingpea,24879839,1
+cc789,24879839,2
+1017956,24879839,3
+49282018,24879839,2
+zjw881224,24879839,4
+ymm,24879839,1
+67737299,24879839,3
+54231509,24879839,3
+asanisimasa,24879839,2
+61809588,24879839,5
+84131231,24879839,1
+waka729,24879839,3
+gloriabrigida,24879839,1
+128231576,24879839,3
+Alex.Qiu,24879839,1
+keyrss,24879839,1
+xu779147197,24879839,4
+black201,24879839,3
+56952438,24879839,3
+73801372,24879839,1
+69975277,24879839,5
+harechan,24879839,3
+35962191,24879839,3
+42749222,24879839,3
+little_stone,24879839,3
+130004425,24879839,2
+chencheng2046,24879839,3
+47193126,24879839,2
+yingzicao4869,24879839,2
+119432670,24879839,1
+seasing1992,24879839,2
+132247158,24879839,2
+42084433,24879839,3
+1380828,24879839,3
+59005110,24879839,3
+28524791,24879839,2
+81404706,24879839,2
+honeyQQ,24879839,5
+31195431,24879839,3
+120654245,24879839,3
+40447527,24879839,2
+63910609,24879839,4
+52074740,24879839,2
+xxxiyybabe,24879839,2
+sheldonkao,24879839,1
+bladerunner2,24879839,1
+71374005,24879839,1
+50904365,24879839,2
+125101066,24879839,4
+1700673,24879839,-1
+129297576,24879839,2
+unvarying,24879839,3
+65301310,24879839,1
+chaocai,24879839,2
+xiuxiutiancai,24879839,2
+38527141,24879839,2
+2127060,24879839,4
+62375845,24879839,4
+tianxiaweigong,24879839,2
+IcbM,24879839,2
+lucifermi,24879839,3
+Irene.Rui,24879839,2
+128136989,24879839,3
+made-by-stan,24879839,1
+104310668,24879839,3
+119702092,24879839,3
+81916130,24879839,2
+dangdangbaba,24879839,2
+38698372,24879839,1
+huliwang,24879839,5
+76913320,24879839,1
+putin36,24879839,2
+42940595,24879839,1
+soberldly,24879839,1
+39054352,24879839,2
+121888064,24879839,2
+jeffersontang,24879839,3
+victo,24879839,1
+3487458,24879839,1
+3963405,24879839,2
+94949490,24879839,3
+xuqs,24879839,1
+64233455,24879839,2
+83681028,24879839,2
+izaozao,24879839,2
+33330415,24879839,1
+43988235,24879839,3
+feifeixiaodudu,24879839,-1
+lichuman,24879839,3
+yuanweiru,24879839,3
+67226794,24879839,-1
+57886651,24879839,3
+75118396,24879839,2
+LNCYZM,24879839,3
+c2c3,24879839,3
+54211342,24879839,1
+1795295,24879839,1
+56377011,24879839,2
+3762146,24879839,1
+anillusion,24879839,2
+47733868,24879839,2
+amiciao,24879839,4
+27675083,24879839,2
+75332568,24879839,4
+54133944,24879839,3
+53793553,24879839,3
+kloccd,24879839,3
+5910762,24879839,2
+tangmm,24879839,-1
+kjp,24879839,4
+1159296,24879839,3
+MaxineLau,24879839,4
+33064145,24879839,2
+69773745,24879839,3
+32502933,24879839,3
+28760394,24879839,3
+64931076,24879839,5
+OliceDai,24879839,5
+rhoninng,24879839,3
+47650145,24879839,3
+79464839,24879839,3
+65647086,24879839,3
+60653503,24879839,3
+70323086,24879839,2
+twjdts,24879839,4
+130765330,24879839,3
+60107866,24879839,2
+49351576,24879839,2
+53060911,24879839,3
+54998759,24879839,4
+39306601,24879839,2
+ixiaotong,24879839,2
+120604736,24879839,4
+68390549,24879839,5
+1558354,24879839,2
+effyNeffy,24879839,1
+effyNeffy,24879839,1
+ICollection,24879839,2
+4268724,24879839,1
+seekingant,24879839,-1
+40292622,24879839,-1
+32314974,24879839,4
+102911668,24879839,5
+81301720,24879839,4
+51243076,24879839,3
+4265133,24879839,1
+dodov,24879839,4
+122337608,24879839,3
+123469142,24879839,2
+3678344,24879839,2
+izzie,24879839,4
+29898737,24879839,2
+weinitadaya,24879839,3
+66035182,24879839,2
+81089052,24879839,3
+fwtzzl,24879839,2
+49378755,24879839,4
+59007642,24879839,4
+64096688,24879839,5
+130743803,24879839,1
+44501154,24879839,2
+1623664,24879839,3
+131860652,24879839,3
+2334850,24879839,3
+tuotuodetuo,24879839,4
+52240587,24879839,-1
+61920644,24879839,2
+52579703,24879839,3
+52332750,24879839,1
+annho,24879839,3
+smilewsy,24879839,4
+6440487,24879839,3
+44628811,24879839,2
+lizhongju,24879839,4
+xuqingkuang,24879839,1
+4172477,24879839,2
+4172477,24879839,2
+44725365,24879839,3
+BlueMoonshine,24879839,1
+doulaodou,24879839,3
+Tooooooo0,24879839,4
+54766031,24879839,4
+59210685,24879839,2
+103510820,24879839,3
+zhaochangtong,24879839,3
+chellc,24879839,1
+caicaihuang,24879839,3
+2280245,24879839,5
+liquor,24879839,3
+57671565,24879839,3
+68742620,24879839,2
+71869905,24879839,4
+sethyoung,24879839,3
+10406977,24879839,1
+10078281,24879839,5
+71107908,24879839,3
+12922859,24879839,3
+3807164,24879839,2
+heshouwu555,24879839,1
+4481063,24879839,2
+xiaozuo1,24879839,2
+67800883,24879839,2
+67216908,24879839,3
+65547043,24879839,3
+mrchengz,24879839,2
+vicky_talk,24879839,2
+procxu,24879839,1
+81659044,24879839,2
+74573393,24879839,2
+79794029,24879839,3
+hanachloe,24879839,2
+juliantt,24879839,4
+bulijite,24879839,3
+91464573,24879839,4
+Ran_Zhuang,24879839,4
+24557674,24879839,2
+59340620,24879839,-1
+57257487,24879839,2
+63721073,24879839,1
+132175237,24879839,1
+4357598,24879839,3
+47563354,24879839,2
+3466234,24879839,2
+74329790,24879839,4
+131482779,24879839,2
+27510926,24879839,3
+33679145,24879839,2
+nuriazsy,24879839,3
+42049486,24879839,1
+rainbow0815,24879839,3
+70134199,24879839,1
+binglanxier,24879839,2
+58190238,24879839,3
+1978347,24879839,3
+2508893,24879839,3
+azure0130,24879839,2
+getto1234,24879839,1
+73787373,24879839,-1
+wayman_lin,24879839,3
+11228750,24879839,2
+108247778,24879839,3
+82550997,24879839,2
+50419226,24879839,3
+3978591,24879839,-1
+34174788,24879839,-1
+46256452,24879839,4
+49929451,24879839,2
+75589867,24879839,3
+48965557,24879839,1
+131117180,24879839,3
+60105839,24879839,2
+81645668,24879839,3
+68192173,24879839,2
+49882814,24879839,1
+41325269,24879839,2
+4295298,24879839,1
+57608765,24879839,1
+66810723,24879839,2
+bingoyy,24879839,2
+131488271,24879839,3
+sosophisticated,24879839,1
+shunb,24879839,2
+detectivemmhy,24879839,2
+132196057,24879839,3
+58457804,24879839,1
+131884478,24879839,3
+132194541,24879839,2
+69997802,24879839,4
+60419885,24879839,4
+2139321,24879839,5
+69273127,24879839,3
+60709257,24879839,4
+2630094,24879839,2
+sunnyniumei,24879839,1
+81016745,24879839,1
+51095150,24879839,5
+60944387,24879839,2
+13022391,24879839,3
+Sammiezhang,24879839,3
+51192527,24879839,4
+54953231,24879839,3
+33133224,24879839,3
+yiduomonica,24879839,1
+64201117,24879839,3
+79698189,24879839,4
+103593211,24879839,4
+Petrick628,24879839,4
+lifetraveller,24879839,5
+123452910,24879839,4
+am-gemini,24879839,3
+cyaround,24879839,3
+bonny1111,24879839,2
+66326170,24879839,3
+33326569,24879839,2
+35474492,24879839,3
+1635161,24879839,1
+cavenli2008,24879839,2
+48666035,24879839,5
+47637154,24879839,3
+57893510,24879839,1
+53252879,24879839,4
+1383301,24879839,4
+aolantuo7,24879839,5
+daijialu1992,24879839,2
+flyingluna,24879839,2
+Yin_and_Yang,24879839,3
+muzhizhanglang,24879839,3
+54807886,24879839,5
+66236529,24879839,1
+60732201,24879839,4
+92393333,24879839,2
+old2brother,24879839,2
+121525520,24879839,3
+nancynancygu,24879839,2
+64724845,24879839,-1
+75328137,24879839,2
+xyshen,24879839,4
+4614210,24879839,2
+59572879,24879839,4
+wheatkittymew,24879839,3
+49452942,24879839,3
+muweiliang,24879839,2
+119734974,24879839,1
+82547964,24879839,5
+wisepeng,24879839,1
+61198366,24879839,-1
+47810404,24879839,3
+61782618,24879839,5
+xiaochi2,24879839,4
+38404027,24879839,5
+64056143,24879839,1
+52609527,24879839,1
+trueboy,24879839,3
+yuchimo,24879839,2
+1282890,24879839,3
+94865318,24879839,1
+Eason_guyishen,24879839,4
+91512389,24879839,3
+3308358,24879839,3
+bankeed,24879839,3
+53396972,24879839,2
+abe_y,24879839,3
+59342050,24879839,2
+smiduo,24879839,-1
+mpower007,24879839,3
+113591698,24879839,3
+73909736,24879839,3
+78381806,24879839,2
+48126061,24879839,4
+41487778,24879839,3
+24556429,24879839,3
+26534687,24879839,3
+80289474,24879839,4
+46119325,24879839,2
+53675537,24879839,1
+37266138,24879839,2
+10036809,24879839,4
+4712419,24879839,2
+90793123,24879839,1
+55279052,24879839,3
+fxzeng,24879839,3
+petitespot,24879839,2
+4380133,24879839,3
+58641999,24879839,2
+2853059,24879839,2
+zhaifei-movie,24879839,2
+65151326,24879839,1
+caoyuan851104,24879839,2
+3564670,24879839,2
+97494931,24879839,5
+48889692,24879839,2
+bainennen,24879839,3
+77048663,24879839,2
+hqwxyz,24879839,1
+lovejason87,24879839,5
+103214078,24879839,3
+103214078,24879839,3
+37322815,24879839,3
+51685686,24879839,1
+52414284,24879839,-1
+79915546,24879839,4
+67613066,24879839,2
+119695950,24879839,5
+xuanranoklove,24879839,5
+41430205,24879839,2
+46491695,24879839,3
+TomiOh,24879839,2
+2903172,24879839,4
+andynihan,24879839,5
+113251096,24879839,2
+42275944,24879839,3
+25598118,24879839,4
+laurina,24879839,3
+1693893,24879839,4
+suheloo,24879839,-1
+YuTianTian,24879839,3
+65744500,24879839,2
+rolemodel,24879839,1
+96392036,24879839,2
+70900638,24879839,3
+60645894,24879839,3
+124536699,24879839,4
+15854310,24879839,2
+hekahuiqu,24879839,3
+45479646,24879839,2
+77921909,24879839,2
+43814222,24879839,1
+Jellyfish-37,24879839,1
+80602343,24879839,3
+81802080,24879839,3
+2703230,24879839,3
+88739433,24879839,2
+6170863,24879839,2
+dante8977,24879839,4
+44463308,24879839,-1
+52668487,24879839,3
+quidenham,24879839,4
+darkofday,24879839,4
+2121794,24879839,2
+pangmailang,24879839,1
+33538870,24879839,4
+70237520,24879839,-1
+49186665,24879839,3
+maurice_wb,24879839,3
+1592520,24879839,2
+IvyGiggs,24879839,2
+jszh,24879839,2
+kyuly,24879839,2
+cherl,24879839,3
+3475951,24879839,2
+zhangreeki,24879839,3
+xiaodou52,24879839,2
+birdpolly,24879839,1
+54916993,24879839,2
+44162461,24879839,3
+113037019,24879839,3
+zzxin,24879839,2
+130539706,24879839,2
+49939547,24879839,2
+1885662,24879839,3
+naizhengtan,24879839,1
+1412024,24879839,4
+Paranoid.,24879839,2
+73641671,24879839,3
+zsj628,24879839,3
+strike1up,24879839,2
+woruo,24879839,3
+3232162,24879839,2
+mikapanda,24879839,3
+70272999,24879839,4
+aralebox,24879839,2
+mvpp,24879839,2
+119805662,24879839,3
+49369831,24879839,2
+65190092,24879839,5
+77576075,24879839,2
+47469915,24879839,4
+juaner32,24879839,2
+58976778,24879839,4
+hidanny,24879839,2
+44265925,24879839,2
+61981540,24879839,5
+29844884,24879839,2
+25685225,24879839,3
+koktebel,24879839,1
+freud849,24879839,1
+shanghetoo,24879839,2
+62048217,24879839,2
+shuikanshuizhid,24879839,3
+58352034,24879839,2
+37050297,24879839,1
+124951495,24879839,4
+79108534,24879839,1
+72279477,24879839,2
+sade1996,24879839,2
+63320922,24879839,4
+51141512,24879839,2
+126808827,24879839,3
+Gally,24879839,2
+46223404,24879839,4
+1700254,24879839,2
+46205600,24879839,5
+kaixian,24879839,3
+aniya320,24879839,2
+momouk,24879839,3
+83267893,24879839,3
+68437634,24879839,1
+ssxl,24879839,1
+32798278,24879839,3
+less...,24879839,1
+16364788,24879839,2
+50682359,24879839,2
+xyl412,24879839,2
+hutianyi,24879839,2
+niaoyunfeidouba,24879839,3
+53532955,24879839,1
+49902714,24879839,3
+jolyne,24879839,3
+wangsc1102,24879839,4
+71394820,24879839,3
+54057163,24879839,3
+122874925,24879839,5
+ximeir,24879839,3
+63877531,24879839,1
+57420118,24879839,3
+gengxiang2012,24879839,2
+sp43125,24879839,-1
+2438152,24879839,1
+54059498,24879839,3
+132063463,24879839,3
+120508779,24879839,3
+131761912,24879839,1
+lips,24879839,1
+Linfadi,24879839,3
+90201276,24879839,5
+59856519,24879839,2
+52543603,24879839,2
+60865900,24879839,4
+41956646,24879839,4
+47996444,24879839,2
+27632752,24879839,3
+39147896,24879839,3
+131863386,24879839,1
+130154428,24879839,2
+65094219,24879839,1
+48808520,24879839,1
+58773339,24879839,2
+qszone,24879839,2
+51195238,24879839,3
+41397677,24879839,4
+below17,24879839,3
+103724210,24879839,3
+MeyouYu,24879839,1
+53362350,24879839,2
+cokering,24879839,3
+Candiceme,24879839,3
+66106952,24879839,2
+lishunli,24879839,2
+79085491,24879839,2
+83853096,24879839,2
+58484976,24879839,2
+65058502,24879839,2
+88002306,24879839,3
+ai3cl1988323,24879839,1
+30894678,24879839,1
+deralkohol,24879839,3
+xiaoxiaodeyuanz,24879839,2
+102986186,24879839,3
+44150563,24879839,3
+Valen-Valen,24879839,4
+43866584,24879839,2
+ananmaomi,24879839,4
+devil_JunN,24879839,2
+oopsvanessa,24879839,-1
+zbar1234,24879839,2
+zhuqingxi,24879839,1
+1743223,24879839,5
+duan2,24879839,3
+11080929,24879839,3
+1832918,24879839,2
+2556700,24879839,1
+myselflin,24879839,1
+34600308,24879839,2
+60919975,24879839,1
+67681966,24879839,1
+129778224,24879839,2
+q5240689,24879839,3
+65417437,24879839,2
+72626479,24879839,2
+116273034,24879839,4
+2374847,24879839,3
+2466949,24879839,3
+abaobao,24879839,3
+shorechain,24879839,4
+xyc1987,24879839,2
+44750610,24879839,3
+66178639,24879839,1
+50163391,24879839,5
+4599993,24879839,3
+1762190,24879839,4
+Chiunotfortoday,24879839,5
+75556607,24879839,3
+1714845,24879839,1
+onlyperfectlove,24879839,4
+privateoo,24879839,3
+wd,24879839,3
+1793879,24879839,3
+lonelykevin,24879839,-1
+1698143,24879839,2
+3020469,24879839,4
+75178022,24879839,3
+70840404,24879839,5
+51883431,24879839,1
+Nenya,24879839,2
+3971878,24879839,4
+jasonwzz,24879839,3
+42767093,24879839,2
+26512977,24879839,1
+rhythmfish,24879839,5
+40105202,24879839,3
+rityou,24879839,-1
+acesniper,24879839,1
+124497874,24879839,2
+91034167,24879839,1
+aluol,24879839,3
+56884321,24879839,3
+zhazhicheng,24879839,4
+mrtall,24879839,1
+123250951,24879839,2
+129577459,24879839,1
+121306825,24879839,3
+yingyuan,24879839,3
+hytro,24879839,1
+16960582,24879839,1
+sofaspeak,24879839,2
+52522813,24879839,4
+ququjiyi,24879839,4
+77790120,24879839,2
+jiman10000tucao,24879839,1
+56575972,24879839,4
+2790262,24879839,4
+60853797,24879839,4
+Even_star,24879839,1
+55385860,24879839,2
+53217914,24879839,4
+68113042,24879839,2
+ylooong,24879839,5
+kongong,24879839,3
+40670291,24879839,4
+80922094,24879839,4
+nighthanwei,24879839,3
+2471208,24879839,1
+vera-cheng,24879839,2
+eveshi,24879839,4
+59837189,24879839,3
+71593445,24879839,4
+43200549,24879839,4
+52346290,24879839,1
+49833007,24879839,2
+44404487,24879839,2
+62340238,24879839,4
+duphy,24879839,2
+3605624,24879839,2
+65513926,24879839,2
+17871243,24879839,3
+yf611x,24879839,3
+81958013,24879839,3
+46260385,24879839,3
+kellyouka,24879839,1
+57834233,24879839,2
+67514961,24879839,2
+81384765,24879839,2
+29393676,24879839,1
+66341284,24879839,2
+59797746,24879839,3
+60390276,24879839,1
+4359732,24879839,-1
+46054766,24879839,5
+annieer,24879839,3
+Q15953247,24879839,3
+youlaiyijiu,24879839,3
+wusiyi,24879839,1
+88425798,24879839,3
+103550111,24879839,2
+55708618,24879839,1
+75490431,24879839,4
+donghualcx,24879839,1
+lzy_tc,24879839,3
+3503308,24879839,1
+sd1217445,24879839,3
+96230743,24879839,2
+44971294,24879839,3
+58924080,24879839,1
+huangtoufa,24879839,3
+48845332,24879839,3
+128099070,24879839,5
+buya,24879839,4
+53817733,24879839,-1
+yedakuan,24879839,1
+67981371,24879839,2
+92688516,24879839,1
+nicoyan,24879839,3
+66994202,24879839,1
+123274551,24879839,3
+39799775,24879839,4
+34542650,24879839,2
+50025895,24879839,2
+39568888,24879839,2
+meilixiaoyao,24879839,3
+71881349,24879839,4
+59390060,24879839,2
+65957374,24879839,-1
+oakhui,24879839,1
+mirrorland,24879839,2
+luoyanbella,24879839,3
+4596560,24879839,3
+42785964,24879839,1
+46559043,24879839,1
+tujimaimeng,24879839,2
+xiaozhibin,24879839,4
+56194866,24879839,1
+2786125,24879839,2
+yige1993,24879839,3
+3420891,24879839,2
+55915062,24879839,3
+7053065,24879839,2
+fancynotgrow,24879839,2
+118843817,24879839,4
+sodom,24879839,2
+51440227,24879839,3
+stylecapsule,24879839,-1
+wanqiuzhixu,24879839,3
+96161847,24879839,3
+3606264,24879839,3
+smallove816,24879839,-1
+2160015,24879839,2
+2160015,24879839,2
+JonLu,24879839,2
+burningwater,24879839,3
+4116226,24879839,2
+4002589,24879839,2
+62358227,24879839,5
+VVIVXIV,24879839,3
+1747318,24879839,2
+anpho,24879839,2
+70297480,24879839,2
+2056025,24879839,1
+80075859,24879839,2
+Mr.Jian,24879839,2
+57291251,24879839,3
+40759213,24879839,3
+59141834,24879839,3
+44411218,24879839,3
+62370868,24879839,3
+65089550,24879839,4
+67244165,24879839,2
+toysfactory,24879839,2
+lph12168,24879839,3
+52598210,24879839,4
+missdonglian,24879839,2
+miyaorion,24879839,3
+124087231,24879839,1
+happytogethim,24879839,3
+54738477,24879839,1
+flowermoi,24879839,4
+39696481,24879839,1
+aliceshi,24879839,1
+jch1989,24879839,2
+Segame,24879839,2
+69047251,24879839,3
+33150290,24879839,5
+36185277,24879839,4
+CNM-Records,24879839,3
+61453526,24879839,2
+gl56770978,24879839,3
+2221536,24879839,3
+4380586,24879839,2
+63036142,24879839,-1
+47574034,24879839,2
+easternmoon,24879839,4
+46146087,24879839,4
+sloway,24879839,-1
+103208454,24879839,5
+36294908,24879839,2
+104630057,24879839,4
+46946692,24879839,3
+65746706,24879839,3
+81939398,24879839,3
+128743826,24879839,2
+cuichaogeccg,24879839,3
+122907346,24879839,4
+47684343,24879839,1
+65125200,24879839,2
+oracle218,24879839,4
+68968781,24879839,1
+qbits,24879839,2
+qbits,24879839,2
+23621516,24879839,3
+lanmai,24879839,4
+nianmianbujue,24879839,1
+lyx906,24879839,2
+81804877,24879839,3
+Cappe,24879839,2
+121299325,24879839,2
+holy-fishman,24879839,4
+4253230,24879839,4
+46037677,24879839,-1
+48744381,24879839,1
+vtmonkey,24879839,2
+amao1993,24879839,2
+88911934,24879839,2
+83016162,24879839,2
+49306729,24879839,3
+liutengzhi,24879839,3
+gaoyunfeng,24879839,1
+35116065,24879839,-1
+44457357,24879839,2
+kiteshady,24879839,3
+hRy,24879839,3
+arashilee,24879839,1
+62837833,24879839,3
+suddenlyending,24879839,-1
+49361787,24879839,3
+81344183,24879839,1
+Decembermay,24879839,3
+68100167,24879839,4
+fairyx,24879839,4
+47971196,24879839,2
+78634802,24879839,2
+pussycat100,24879839,2
+filmman,24879839,-1
+68437479,24879839,2
+129123357,24879839,2
+61986707,24879839,1
+71984544,24879839,2
+62540867,24879839,4
+2883330,24879839,5
+sasa522,24879839,-1
+55618931,24879839,3
+3045195,24879839,2
+51353897,24879839,3
+65043761,24879839,5
+35766375,24879839,1
+zying,24879839,3
+65670261,24879839,4
+standby-,24879839,2
+75805907,24879839,2
+TiAmoGuaibaobao,24879839,1
+1980904,24879839,1
+43618172,24879839,2
+sentimento-rose,24879839,2
+73704277,24879839,2
+128514178,24879839,3
+38651346,24879839,3
+roy325,24879839,2
+49767479,24879839,3
+Solv,24879839,3
+Swangshu,24879839,3
+82846844,24879839,2
+30359114,24879839,-1
+Nietzschesun,24879839,-1
+78941508,24879839,3
+37061900,24879839,1
+49411879,24879839,4
+4618089,24879839,4
+78966790,24879839,1
+53751991,24879839,3
+xiaoxiaomogu,24879839,1
+53617231,24879839,3
+yuluoxiashang,24879839,3
+3554657,24879839,3
+stillm,24879839,3
+piccl,24879839,3
+71455965,24879839,2
+1227418,24879839,2
+59927333,24879839,2
+65687089,24879839,3
+chankawai,24879839,2
+50945725,24879839,1
+jiuzhi7,24879839,4
+3517979,24879839,4
+linden13,24879839,3
+3032535,24879839,2
+33808805,24879839,1
+promise1993,24879839,3
+mozart1900,24879839,3
+Mxmshamrock,24879839,-1
+69128879,24879839,1
+myxixiaoxi,24879839,2
+48246448,24879839,1
+cat23love,24879839,3
+yuemengjiji,24879839,2
+51303183,24879839,3
+76489826,24879839,3
+35595002,24879839,3
+xiaodaxiaonao,24879839,3
+pearlcorner,24879839,4
+57012377,24879839,1
+101677278,24879839,5
+evita_lj,24879839,3
+74286225,24879839,4
+80854961,24879839,4
+94266589,24879839,2
+notesjuly,24879839,4
+124257806,24879839,1
+77122322,24879839,4
+69875076,24879839,2
+reficul,24879839,-1
+zoeyhe,24879839,2
+2171255,24879839,2
+119394560,24879839,2
+Jerusalem,24879839,2
+1457979,24879839,2
+namu,24879839,2
+104517766,24879839,2
+ivywell,24879839,2
+wangchao0_,24879839,5
+130417677,24879839,4
+49977374,24879839,4
+42743291,24879839,5
+2175508,24879839,3
+fangmingeva,24879839,3
+61485977,24879839,3
+76859421,24879839,3
+68537326,24879839,3
+64545161,24879839,1
+lianlian1988,24879839,3
+74569675,24879839,3
+40566015,24879839,1
+45129270,24879839,4
+119804879,24879839,3
+91882469,24879839,3
+109331482,24879839,-1
+42313754,24879839,4
+applecs,24879839,3
+53851680,24879839,4
+kasogg,24879839,1
+sa-ok,24879839,2
+127448556,24879839,4
+angusfox,24879839,2
+62014355,24879839,4
+jijiyuluo,24879839,3
+51052456,24879839,-1
+83842502,24879839,-1
+popyanglihao,24879839,3
+penjing1026,24879839,2
+c_jianqi,24879839,4
+127860852,24879839,3
+1091900,24879839,3
+yukino,24879839,1
+wxhsolo,24879839,2
+3772330,24879839,1
+35612172,24879839,4
+2242413,24879839,1
+fenxinyu,24879839,1
+SoDoMi,24879839,2
+stormsuck,24879839,1
+3305775,24879839,2
+80729816,24879839,4
+3276325,24879839,2
+96535250,24879839,1
+49277470,24879839,2
+63818892,24879839,3
+3003138,24879839,3
+3793771,24879839,5
+63252402,24879839,3
+secretmi,24879839,3
+pandejian250,24879839,1
+60346777,24879839,3
+3800102,24879839,2
+51255691,24879839,2
+3423661,24879839,4
+42113590,24879839,1
+73307715,24879839,2
+49228448,24879839,1
+lighttraveller,24879839,2
+53644623,24879839,3
+81104607,24879839,1
+58618323,24879839,2
+guandao--,24879839,3
+32462724,24879839,2
+2864099,24879839,2
+sofasay,24879839,3
+131849470,24879839,1
+88047435,24879839,3
+frankchi,24879839,4
+72783015,24879839,2
+kindxie,24879839,2
+circle920,24879839,3
+53001259,24879839,-1
+85104639,24879839,2
+43558241,24879839,2
+58409742,24879839,1
+tianzaifeibaba,24879839,2
+Makoto614,24879839,2
+119476678,24879839,4
+66904097,24879839,3
+svnzong,24879839,2
+30067864,24879839,3
+seeme,24879839,2
+seychelles,24879839,4
+monster1000,24879839,2
+4351653,24879839,3
+37417625,24879839,3
+52524178,24879839,2
+90594894,24879839,4
+66073374,24879839,5
+taowj,24879839,1
+63866031,24879839,3
+fuxinisgood,24879839,3
+stgrave,24879839,2
+jianghucrab,24879839,1
+psyche213,24879839,2
+63023335,24879839,1
+yrvincy0622yang,24879839,3
+55867399,24879839,2
+2163010,24879839,4
+sunny199112,24879839,3
+caltha,24879839,3
+54989820,24879839,2
+56121173,24879839,3
+sherrygirl,24879839,2
+withAMY,24879839,5
+onlyforny,24879839,3
+sonicxs,24879839,4
+22510137,24879839,2
+53919558,24879839,2
+34702812,24879839,-1
+122458396,24879839,2
+121490085,24879839,4
+131802134,24879839,3
+1483423,24879839,1
+yuanfg,24879839,2
+77195192,24879839,2
+1138243,24879839,2
+40249960,24879839,3
+dancelatoto,24879839,3
+momo_722,24879839,2
+anteruna,24879839,3
+128594244,24879839,3
+jayist,24879839,1
+qt1022,24879839,1
+62995857,24879839,2
+wrdeam,24879839,3
+hualaojun,24879839,2
+67452375,24879839,2
+meixinmeifei,24879839,3
+79627181,24879839,3
+48676614,24879839,1
+52479067,24879839,3
+29755688,24879839,3
+yo35,24879839,-1
+36886500,24879839,3
+ohahahu,24879839,3
+duducool,24879839,3
+arango,24879839,1
+arango,24879839,1
+45224713,24879839,2
+40693174,24879839,3
+61608869,24879839,2
+maocier,24879839,2
+rabbit_roxas,24879839,3
+joyveela,24879839,2
+48649262,24879839,3
+Bondguy,24879839,2
+lsg_lsg,24879839,3
+12198403,24879839,2
+chachaa,24879839,5
+joyceiveryin,24879839,2
+61313545,24879839,1
+122370677,24879839,-1
+64412561,24879839,4
+4506904,24879839,3
+volcano-z,24879839,4
+131832794,24879839,2
+59880621,24879839,1
+49135954,24879839,4
+arthur1990,24879839,2
+changkxs,24879839,1
+cocokidman,24879839,3
+121744754,24879839,3
+62103137,24879839,2
+48047032,24879839,2
+CKyan,24879839,1
+mrstarry,24879839,3
+owenwoo,24879839,4
+39786572,24879839,2
+37662798,24879839,2
+AndiChiao,24879839,3
+59170228,24879839,2
+55886618,24879839,2
+66168101,24879839,1
+128940036,24879839,4
+131628245,24879839,3
+baidream,24879839,1
+69973465,24879839,1
+64727020,24879839,3
+76120058,24879839,5
+107491078,24879839,2
+67629743,24879839,3
+Lancezhao,24879839,2
+veverlee,24879839,1
+chenru_liu,24879839,2
+Rouwell,24879839,2
+127578674,24879839,1
+57115166,24879839,3
+Monica__Wang,24879839,2
+fourisfour,24879839,3
+nanzang,24879839,3
+Vantt,24879839,1
+40116451,24879839,2
+73631597,24879839,1
+arabela7,24879839,4
+53195975,24879839,1
+130017833,24879839,1
+85178249,24879839,-1
+89525142,24879839,3
+www_199002,24879839,1
+93113085,24879839,3
+71244104,24879839,2
+98094232,24879839,1
+96513847,24879839,2
+yan599083337,24879839,2
+yanism,24879839,1
+3826970,24879839,-1
+49605949,24879839,3
+47090670,24879839,3
+45910532,24879839,3
+xinxinlyx,24879839,4
+laohao,24879839,2
+64249051,24879839,1
+13301536,24879839,3
+33366667,24879839,3
+45785887,24879839,1
+1896089,24879839,2
+Sk.Young,24879839,3
+talinnablue,24879839,1
+51623717,24879839,4
+3904912,24879839,3
+46944965,24879839,2
+fuzyu,24879839,2
+54435494,24879839,4
+34256368,24879839,2
+39734306,24879839,2
+69284264,24879839,3
+SSC,24879839,2
+35506270,24879839,1
+59370551,24879839,3
+68160177,24879839,1
+48542981,24879839,1
+51729072,24879839,4
+yjjtdcq200,24879839,3
+69008426,24879839,1
+48252437,24879839,1
+Popdai,24879839,1
+49495217,24879839,3
+83100870,24879839,3
+59859119,24879839,1
+46731608,24879839,2
+39699263,24879839,5
+36760873,24879839,4
+53311132,24879839,2
+yukiyoung,24879839,2
+56903875,24879839,3
+34033898,24879839,1
+63295110,24879839,2
+108226055,24879839,1
+83495567,24879839,1
+sophiaqing,24879839,4
+olovc,24879839,3
+er3456qi,24879839,3
+xieao123,24879839,3
+ranljron,24879839,3
+7069657,24879839,1
+48257256,24879839,3
+77452739,24879839,4
+wangyiyue,24879839,3
+cecilia9624,24879839,3
+yc987,24879839,3
+53908862,24879839,4
+71134249,24879839,4
+1696965,24879839,5
+79401994,24879839,4
+47929973,24879839,3
+66594578,24879839,1
+Francois_Tsing,24879839,1
+42886985,24879839,2
+Slovekame,24879839,3
+92867704,24879839,2
+60163157,24879839,2
+49937909,24879839,2
+thinkbai,24879839,5
+buwubuhui,24879839,4
+peae,24879839,5
+88464043,24879839,1
+76155478,24879839,1
+44057299,24879839,2
+80759115,24879839,4
+YuSu,24879839,2
+66837917,24879839,1
+oldyu,24879839,2
+49959307,24879839,2
+76484810,24879839,2
+53287015,24879839,3
+zly117,24879839,2
+101584135,24879839,4
+LimAdi,24879839,4
+47331387,24879839,3
+122796891,24879839,2
+dai0927,24879839,2
+savvy12,24879839,3
+7877539,24879839,5
+1140414,24879839,3
+yousuosi77,24879839,2
+1275109,24879839,3
+38514261,24879839,1
+38924619,24879839,2
+52307083,24879839,2
+serafina0,24879839,-1
+62735975,24879839,2
+56464886,24879839,3
+46234987,24879839,2
+dallzy,24879839,2
+54415106,24879839,2
+for_love,24879839,1
+57805307,24879839,1
+2432104,24879839,1
+78365942,24879839,3
+eyrecat,24879839,2
+127092818,24879839,2
+59964725,24879839,4
+2623718,24879839,2
+54499489,24879839,2
+color-17,24879839,2
+chuyu2014,24879839,2
+57765448,24879839,1
+weiweiweiwei,24879839,3
+129468631,24879839,3
+129124175,24879839,2
+lancer04,24879839,4
+2404315,24879839,3
+52259543,24879839,2
+CWQ1030,24879839,4
+52255600,24879839,3
+50042577,24879839,1
+58774315,24879839,3
+3923035,24879839,3
+toiki,24879839,4
+54106628,24879839,5
+liuxinyuxiao,24879839,3
+marsradiance,24879839,3
+45626339,24879839,2
+96048469,24879839,-1
+jetcui,24879839,-1
+56201857,24879839,4
+3934959,24879839,3
+3934959,24879839,3
+74684254,24879839,4
+40568821,24879839,3
+70212980,24879839,4
+iappler,24879839,1
+Erdbeeren,24879839,5
+2966287,24879839,3
+yjhaok5,24879839,2
+80170891,24879839,1
+Qiuuuuuu,24879839,1
+79168578,24879839,2
+xin1105,24879839,2
+126341666,24879839,2
+131759679,24879839,4
+47764209,24879839,1
+72297338,24879839,3
+122943812,24879839,3
+vista1990,24879839,2
+aaadzy,24879839,1
+yangfengxc,24879839,4
+52588994,24879839,3
+liminality,24879839,3
+3475246,24879839,3
+40684892,24879839,2
+81666997,24879839,2
+50648419,24879839,3
+87903865,24879839,2
+tomochang,24879839,2
+131406948,24879839,3
+1503790,24879839,1
+rolenter,24879839,2
+monkeyfish,24879839,2
+msbering,24879839,4
+76276452,24879839,5
+60700009,24879839,2
+73478400,24879839,1
+131751998,24879839,3
+61490793,24879839,1
+magiczyy,24879839,3
+pariseros,24879839,5
+68034921,24879839,3
+3510569,24879839,1
+kiki204629,24879839,3
+DDouble,24879839,3
+42046990,24879839,1
+ouroborosdu,24879839,3
+78934649,24879839,3
+4488756,24879839,2
+48217590,24879839,2
+79450598,24879839,3
+4140009,24879839,1
+kh-xxxa,24879839,2
+suganning,24879839,3
+53716051,24879839,2
+2741464,24879839,4
+17280012,24879839,2
+75188038,24879839,1
+46499372,24879839,1
+3344824,24879839,3
+syliachan,24879839,1
+64047158,24879839,1
+Yoshimang,24879839,4
+123945021,24879839,4
+2413967,24879839,3
+srada,24879839,1
+75149708,24879839,3
+akwei,24879839,3
+68875085,24879839,1
+72667921,24879839,2
+127506237,24879839,3
+renzhifilm,24879839,3
+ps716,24879839,2
+63461605,24879839,3
+absolutelytff,24879839,2
+nianshaozi,24879839,4
+3836616,24879839,1
+37424688,24879839,3
+87910708,24879839,1
+43961399,24879839,1
+56699761,24879839,1
+44587158,24879839,3
+jetload,24879839,4
+62793517,24879839,2
+92062002,24879839,2
+67913939,24879839,1
+51040724,24879839,3
+chevalier7,24879839,3
+miki_ai,24879839,2
+69479460,24879839,3
+DUSTY_S,24879839,1
+41462661,24879839,3
+47755264,24879839,-1
+3458270,24879839,5
+just2006,24879839,1
+2626566,24879839,3
+leeshiuan,24879839,3
+98760682,24879839,1
+58232999,24879839,3
+49354246,24879839,3
+3366974,24879839,1
+jasmine-zhu,24879839,2
+elvish,24879839,3
+qinqi5277,24879839,2
+74951548,24879839,2
+68825265,24879839,3
+83659881,24879839,2
+52128308,24879839,3
+119396712,24879839,4
+xiaodiutan,24879839,3
+silentjava,24879839,3
+65531183,24879839,3
+79262344,24879839,3
+lindoublelan,24879839,1
+102930164,24879839,2
+51490972,24879839,2
+98452549,24879839,2
+efeimaomao,24879839,2
+49541222,24879839,5
+55585638,24879839,3
+35805626,24879839,2
+liangazalea,24879839,3
+34591792,24879839,1
+56876627,24879839,2
+84092728,24879839,2
+sowoko,24879839,1
+jodiexie,24879839,2
+92674357,24879839,3
+lovebkd,24879839,-1
+126859970,24879839,-1
+58630530,24879839,5
+60963541,24879839,3
+yanjin,24879839,1
+69085024,24879839,3
+chenxu110,24879839,3
+lindada,24879839,4
+52850914,24879839,2
+49266863,24879839,1
+96744890,24879839,3
+52117256,24879839,2
+44908870,24879839,3
+48317610,24879839,3
+59104815,24879839,3
+iyuge,24879839,2
+1401672,24879839,1
+76477435,24879839,4
+yihuiw,24879839,3
+60203929,24879839,1
+44029751,24879839,4
+40488240,24879839,1
+42889609,24879839,2
+51981918,24879839,3
+happyxiaobin,24879839,2
+52183493,24879839,3
+12832281,24879839,3
+50206708,24879839,1
+30852407,24879839,3
+69006454,24879839,3
+4247606,24879839,1
+jimmyandpa,24879839,4
+56314850,24879839,3
+cleoner,24879839,1
+chenmai,24879839,2
+21995013,24879839,1
+122314066,24879839,2
+70586246,24879839,2
+56348956,24879839,3
+65292706,24879839,4
+2955357,24879839,3
+ciila,24879839,-1
+jiajunzhi,24879839,4
+jingmeng_xiahti,24879839,1
+48256404,24879839,5
+77268410,24879839,3
+122443546,24879839,5
+62139918,24879839,1
+50624143,24879839,2
+63983339,24879839,3
+wangveggieg,24879839,3
+58754902,24879839,-1
+131198769,24879839,4
+81304385,24879839,1
+manjiu,24879839,3
+55860333,24879839,4
+nigelallan,24879839,3
+60861914,24879839,3
+30857670,24879839,3
+59990067,24879839,4
+58840542,24879839,2
+53219323,24879839,2
+129611962,24879839,3
+62708720,24879839,1
+openMiss,24879839,5
+rujiayang,24879839,3
+62379540,24879839,3
+2155287,24879839,2
+mrpomo,24879839,4
+1189560,24879839,-1
+37051935,24879839,2
+77427875,24879839,2
+SEVEN.ELEVEN,24879839,2
+SEVEN.ELEVEN,24879839,2
+hymyg,24879839,2
+65980975,24879839,4
+83513831,24879839,3
+66594452,24879839,5
+lidao1127,24879839,2
+43595713,24879839,3
+59027708,24879839,2
+70294430,24879839,3
+cyl1937,24879839,3
+41127888,24879839,3
+131004171,24879839,4
+49551257,24879839,4
+45754533,24879839,3
+ak-007,24879839,3
+57421635,24879839,3
+43258154,24879839,4
+9420191,24879839,3
+bldhdh,24879839,2
+3616413,24879839,2
+53245934,24879839,4
+63368043,24879839,2
+88322526,24879839,4
+74835284,24879839,5
+131284180,24879839,5
+hwxsnake,24879839,1
+70790963,24879839,3
+46455848,24879839,3
+37340433,24879839,4
+47722392,24879839,4
+end1ess-love,24879839,1
+halflittlefox,24879839,5
+42630569,24879839,4
+121097385,24879839,5
+58897808,24879839,3
+73300586,24879839,1
+Yolandaaa_,24879839,3
+13283104,24879839,2
+62704211,24879839,3
+kiyosi,24879839,4
+bonhan,24879839,3
+124981596,24879839,3
+114234923,24879839,-1
+78713846,24879839,3
+58788486,24879839,2
+80055631,24879839,1
+130583862,24879839,3
+130706971,24879839,2
+4842718,24879839,4
+kevinfee,24879839,3
+2008327,24879839,3
+57491810,24879839,3
+62979514,24879839,2
+dualpersonality,24879839,3
+1333942,24879839,1
+maskman0917,24879839,2
+53914537,24879839,4
+57841233,24879839,1
+mian11,24879839,3
+Mr.Zeng,24879839,1
+sapphirehuang,24879839,2
+75215757,24879839,2
+70488224,24879839,3
+67285922,24879839,2
+linpcha,24879839,2
+yangziyoko,24879839,3
+83017283,24879839,1
+gethin,24879839,3
+zhangsimon,24879839,4
+lygirl989193,24879839,3
+73339051,24879839,2
+89761052,24879839,3
+82095351,24879839,3
+47038202,24879839,5
+54538975,24879839,2
+3774521,24879839,-1
+51426516,24879839,1
+44143724,24879839,3
+52905536,24879839,3
+lastunicorn,24879839,3
+72818218,24879839,1
+60164183,24879839,2
+42139446,24879839,4
+3742281,24879839,2
+56070920,24879839,2
+79364792,24879839,3
+JoyDog,24879839,4
+ryanhsueh,24879839,3
+69632176,24879839,1
+46828936,24879839,2
+Cuckookuo,24879839,2
+12074004,24879839,3
+131633707,24879839,-1
+84715301,24879839,4
+fangyuan1mi,24879839,1
+49340336,24879839,3
+dlgcy,24879839,5
+97155575,24879839,3
+xiaole91,24879839,1
+roseandwater,24879839,2
+action552200,24879839,3
+123222453,24879839,2
+41341856,24879839,3
+69873927,24879839,2
+3703670,24879839,4
+61025925,24879839,2
+taxidriver1976,24879839,3
+130682161,24879839,4
+46616811,24879839,2
+65137167,24879839,2
+35860055,24879839,-1
+koutiao,24879839,3
+Stwphanie,24879839,1
+43612310,24879839,3
+94579843,24879839,1
+128549976,24879839,2
+DemiZhang1218,24879839,3
+janeyur,24879839,3
+tucaomalisu,24879839,4
+50573714,24879839,2
+48180324,24879839,3
+63703573,24879839,3
+54069398,24879839,3
+kewensmile,24879839,3
+69277440,24879839,2
+zhaoda,24879839,1
+115800968,24879839,2
+83440468,24879839,3
+103016546,24879839,2
+51421184,24879839,1
+20657820,24879839,4
+noah5606528839,24879839,4
+131380413,24879839,2
+130044129,24879839,3
+63923308,24879839,1
+59147323,24879839,4
+41039408,24879839,3
+doon7,24879839,4
+yoyodesmile,24879839,3
+qinaideliji,24879839,4
+25676059,24879839,3
+fivestone,24879839,2
+58462881,24879839,3
+2227016,24879839,1
+64780091,24879839,1
+athenacrystal,24879839,2
+2133993,24879839,3
+echo-shuang,24879839,1
+1886385,24879839,3
+pdleo,24879839,1
+72782852,24879839,4
+fufufufuxk,24879839,4
+52033080,24879839,4
+luoqiuyue,24879839,3
+67651421,24879839,2
+60201729,24879839,2
+49578212,24879839,3
+gougoude,24879839,3
+zene,24879839,3
+57571083,24879839,1
+67805018,24879839,4
+44730715,24879839,3
+120579850,24879839,5
+39224869,24879839,2
+64800814,24879839,1
+3459240,24879839,4
+71172794,24879839,3
+66177481,24879839,4
+62776173,24879839,2
+55573490,24879839,1
+2058011,24879839,2
+68703625,24879839,2
+57905620,24879839,1
+130571706,24879839,3
+47973653,24879839,3
+63409040,24879839,4
+amberbo,24879839,-1
+91350742,24879839,2
+131610219,24879839,1
+cabrite,24879839,1
+88078787,24879839,2
+64782744,24879839,2
+yaopi,24879839,3
+44470776,24879839,3
+62198966,24879839,2
+49810367,24879839,3
+2694506,24879839,2
+68675820,24879839,4
+fht121,24879839,-1
+61779592,24879839,2
+22176192,24879839,2
+3607278,24879839,3
+rodericksu,24879839,2
+84215008,24879839,3
+1234338,24879839,3
+Ronicalee,24879839,5
+85254473,24879839,3
+42036980,24879839,2
+83815188,24879839,2
+gunsky,24879839,1
+57563598,24879839,4
+1884591,24879839,1
+82229229,24879839,3
+1508507,24879839,3
+guhe0525,24879839,3
+53707161,24879839,2
+mosquitoli,24879839,2
+AngelaDayday,24879839,2
+xulu2011,24879839,1
+acrown,24879839,4
+henei,24879839,3
+he0_0yan,24879839,4
+yoyofun,24879839,4
+59412896,24879839,3
+123961251,24879839,4
+81895663,24879839,1
+1754548,24879839,3
+1690690,24879839,2
+cyc_1124,24879839,1
+59243752,24879839,2
+50805210,24879839,-1
+dear.still,24879839,2
+50568364,24879839,2
+bbbonniechan,24879839,1
+2240680,24879839,1
+ungue,24879839,1
+hugoshen,24879839,-1
+duoduoshuwu,24879839,3
+74590863,24879839,5
+43310692,24879839,3
+50325991,24879839,3
+decemfirst,24879839,-1
+88043437,24879839,1
+54366340,24879839,1
+61841169,24879839,1
+greatabel,24879839,1
+windowsosok,24879839,5
+sunruistone,24879839,4
+53301589,24879839,2
+57077807,24879839,2
+75001572,24879839,3
+80257088,24879839,2
+47504020,24879839,2
+60337804,24879839,1
+cxiaoguang,24879839,4
+mecoco999,24879839,1
+keiraS,24879839,4
+76929963,24879839,-1
+flcyc,24879839,4
+57842249,24879839,2
+67416002,24879839,1
+49936891,24879839,2
+30396866,24879839,3
+40725251,24879839,3
+67856848,24879839,-1
+37969517,24879839,1
+66269844,24879839,2
+38625392,24879839,4
+zhonghanqing,24879839,2
+42567950,24879839,3
+42567950,24879839,3
+124732876,24879839,3
+chiyouchiyou,24879839,3
+66904861,24879839,3
+iwangke,24879839,1
+80589673,24879839,2
+53999019,24879839,4
+3640687,24879839,2
+sevenbeans,24879839,1
+1274922,24879839,2
+73466506,24879839,2
+54843497,24879839,2
+2985824,24879839,3
+yujianxiaoben,24879839,1
+107854143,24879839,1
+45868354,24879839,3
+Superfuck,24879839,2
+crazy2000,24879839,3
+lb-fighting,24879839,5
+saobing,24879839,2
+70850538,24879839,4
+ying823624,24879839,2
+40932022,24879839,3
+35270225,24879839,3
+49703981,24879839,1
+33245540,24879839,1
+sah1015,24879839,2
+4320170,24879839,2
+45382410,24879839,3
+1369113,24879839,2
+lifeisastake,24879839,4
+126039569,24879839,2
+48929842,24879839,2
+126804729,24879839,3
+4042513,24879839,3
+65312708,24879839,2
+40706768,24879839,4
+wildyak,24879839,3
+46534834,24879839,2
+85293907,24879839,2
+127299263,24879839,3
+71547837,24879839,4
+stefanie1112,24879839,2
+51787772,24879839,1
+BeiFengFei,24879839,2
+JustStayReal,24879839,2
+69857353,24879839,2
+42468760,24879839,2
+1522607,24879839,3
+60826813,24879839,3
+illumineheart,24879839,2
+redcookie,24879839,1
+2280920,24879839,3
+howdoyouknow,24879839,-1
+wilshere19,24879839,2
+130983822,24879839,3
+4059598,24879839,5
+2802044,24879839,3
+3265610,24879839,5
+36601807,24879839,3
+mahanxue,24879839,2
+summerlissy,24879839,1
+53241571,24879839,2
+2792721,24879839,2
+42630229,24879839,3
+dongdansh,24879839,2
+71887540,24879839,4
+ajianshushu,24879839,4
+48558886,24879839,3
+mrbg,24879839,5
+59044334,24879839,2
+124789721,24879839,1
+daisy5555,24879839,1
+spf,24879839,2
+50752972,24879839,3
+53639016,24879839,4
+54947602,24879839,3
+khuntracie,24879839,2
+122857735,24879839,3
+37519011,24879839,1
+62209116,24879839,2
+82052257,24879839,3
+69927561,24879839,1
+121523895,24879839,1
+4758428,24879839,-1
+49319979,24879839,3
+62803697,24879839,1
+64259939,24879839,1
+58168481,24879839,3
+66919459,24879839,2
+68893935,24879839,4
+42539278,24879839,3
+UltraCat,24879839,4
+69236289,24879839,2
+53204374,24879839,2
+40003537,24879839,4
+2124043,24879839,2
+Auc,24879839,4
+qfy,24879839,3
+50028019,24879839,1
+51087231,24879839,1
+53254750,24879839,3
+uranustan,24879839,3
+xiaomujunjun,24879839,2
+104230982,24879839,1
+62049572,24879839,4
+74826577,24879839,1
+26751853,24879839,3
+43094798,24879839,2
+35652268,24879839,1
+1291875,24879839,2
+52997821,24879839,5
+2693705,24879839,1
+2783589,24879839,1
+124956698,24879839,1
+dgawon,24879839,2
+63372238,24879839,3
+sallyvivi,24879839,2
+39491647,24879839,3
+zebra168,24879839,3
+Tipsy666,24879839,3
+64827462,24879839,4
+4258349,24879839,3
+43777566,24879839,3
+62263229,24879839,3
+lianghongyu,24879839,2
+47601450,24879839,2
+51836964,24879839,1
+97341954,24879839,2
+63124269,24879839,2
+jiangdongqi,24879839,3
+hennessy,24879839,3
+79265559,24879839,2
+68004061,24879839,5
+47755926,24879839,3
+2393425,24879839,3
+36055864,24879839,3
+120151650,24879839,3
+122070292,24879839,3
+insideme,24879839,2
+130266803,24879839,3
+2860030,24879839,3
+vivien0212,24879839,3
+65609013,24879839,4
+papermoon_niky,24879839,3
+xcser,24879839,3
+3896074,24879839,2
+veragao,24879839,4
+jianglalala,24879839,2
+simonzhang,24879839,3
+45279594,24879839,3
+wxxxx,24879839,4
+minuan,24879839,2
+Iayours,24879839,3
+87646803,24879839,3
+58223460,24879839,2
+amaranth_i,24879839,2
+salus,24879839,5
+48659289,24879839,4
+psychokiller,24879839,2
+wwyihuayishijie,24879839,1
+115914533,24879839,4
+45957568,24879839,5
+sujin6041,24879839,3
+wxquan,24879839,3
+51591909,24879839,2
+darkiller,24879839,2
+backlenz,24879839,1
+15528507,24879839,3
+xiangmocheng,24879839,4
+102201068,24879839,2
+ashestime,24879839,1
+53644977,24879839,2
+13857069,24879839,3
+worldword,24879839,3
+19266682,24879839,3
+jxtx520,24879839,3
+kingofjungleo,24879839,2
+1688865,24879839,3
+63513602,24879839,1
+beercos,24879839,2
+mascotchen,24879839,3
+matthew1984,24879839,1
+75445619,24879839,2
+4804072,24879839,2
+96944284,24879839,2
+vikissss,24879839,3
+2298833,24879839,3
+rrlol,24879839,3
+49807065,24879839,3
+zhuqingchen,24879839,1
+117348494,24879839,3
+63042390,24879839,1
+71962172,24879839,3
+53891666,24879839,3
+114144115,24879839,3
+77169093,24879839,3
+nagle,24879839,3
+tanya_yan,24879839,4
+94247612,24879839,3
+84593268,24879839,2
+snakefly,24879839,3
+48707797,24879839,2
+4044749,24879839,2
+117804515,24879839,3
+57769518,24879839,4
+63161358,24879839,2
+tzy608,24879839,3
+41594789,24879839,3
+69280582,24879839,1
+benzangzang,24879839,4
+114641969,24879839,2
+65956364,24879839,2
+67863373,24879839,2
+123268413,24879839,4
+88288973,24879839,4
+zking1,24879839,3
+yaochunpeng,24879839,4
+57293029,24879839,3
+a3615,24879839,1
+44963286,24879839,1
+55286128,24879839,2
+Mr..k.ing,24879839,4
+48089905,24879839,4
+43756646,24879839,3
+128683384,24879839,1
+yangshiner,24879839,-1
+sooooosweet,24879839,3
+hao_qoo,24879839,3
+9033618,24879839,2
+57396693,24879839,3
+dahuanghxm,24879839,2
+74936551,24879839,2
+difeijing,24879839,1
+35264985,24879839,5
+dvddvd,24879839,2
+lwoo,24879839,2
+101464428,24879839,3
+47781280,24879839,3
+49327418,24879839,3
+juve_vidal23,24879839,2
+74008803,24879839,2
+renee_bai,24879839,2
+58542527,24879839,4
+58533733,24879839,2
+52642295,24879839,1
+130939292,24879839,3
+xuaoling,24879839,4
+73751576,24879839,2
+sunwim,24879839,2
+Hughle1993723,24879839,4
+67640264,24879839,3
+wyjlazy,24879839,3
+sunset0814,24879839,3
+65294158,24879839,2
+nearlloveyou,24879839,4
+iloveudear,24879839,3
+75790133,24879839,3
+56922790,24879839,1
+81836984,24879839,4
+xiangjuming,24879839,3
+robotstar,24879839,3
+96290717,24879839,2
+50686538,24879839,3
+47199948,24879839,2
+55433701,24879839,3
+93606686,24879839,4
+mirror11,24879839,3
+57716203,24879839,2
+119644008,24879839,2
+50411291,24879839,1
+keno,24879839,3
+db00goal,24879839,1
+131494962,24879839,1
+randidianying,24879839,4
+60234742,24879839,4
+10724888,24879839,4
+62017090,24879839,5
+57214502,24879839,3
+52365541,24879839,2
+Southern_,24879839,-1
+37931842,24879839,1
+1731976,24879839,-1
+68607460,24879839,1
+young_123,24879839,2
+wangchenroc,24879839,3
+63621382,24879839,2
+44866431,24879839,3
+twopages,24879839,3
+exploremore,24879839,2
+wangzhy,24879839,3
+3099180,24879839,2
+znyzjhwl,24879839,2
+51480816,24879839,1
+72774523,24879839,4
+101112458,24879839,5
+44949504,24879839,4
+61966427,24879839,-1
+73571891,24879839,3
+119353813,24879839,1
+pinkdaemon,24879839,2
+130274229,24879839,2
+9274036,24879839,3
+39104472,24879839,2
+Alined,24879839,3
+92081945,24879839,1
+littlegaga,24879839,2
+61890434,24879839,3
+130953760,24879839,2
+43866021,24879839,2
+tinyazh,24879839,2
+jessica1127,24879839,1
+59967875,24879839,3
+58576025,24879839,1
+100841051,24879839,3
+47243705,24879839,2
+81003605,24879839,2
+87401407,24879839,4
+61682333,24879839,1
+berryme,24879839,4
+42502379,24879839,4
+52517145,24879839,4
+1091787,24879839,-1
+49356246,24879839,3
+67039563,24879839,2
+62581194,24879839,3
+55623765,24879839,-1
+2516776,24879839,-1
+102654383,24879839,1
+75351528,24879839,3
+84011819,24879839,5
+58909606,24879839,3
+eternalwaiting,24879839,1
+130920695,24879839,2
+luyazhang,24879839,1
+Youoen,24879839,2
+36643443,24879839,4
+sep17,24879839,4
+88039142,24879839,3
+44473202,24879839,2
+memorymare,24879839,4
+47660842,24879839,2
+kriscrazy,24879839,4
+faiel,24879839,3
+flowerann,24879839,3
+50212998,24879839,1
+danshishi,24879839,4
+wangyilin220,24879839,4
+cherry_pie,24879839,3
+48269477,24879839,2
+pretender123,24879839,3
+90446896,24879839,3
+72585486,24879839,3
+54270194,24879839,3
+2279554,24879839,-1
+84753230,24879839,3
+67528548,24879839,4
+64865562,24879839,3
+76689420,24879839,2
+60082922,24879839,2
+weakest,24879839,3
+w-leaf,24879839,3
+92386300,24879839,2
+timerbird,24879839,4
+61661593,24879839,2
+85043050,24879839,4
+Vladimir,24879839,1
+75173878,24879839,3
+maomaomaoyl,24879839,3
+memorysongs,24879839,2
+50590335,24879839,2
+huix,24879839,3
+50179203,24879839,2
+44149910,24879839,2
+100043163,24879839,1
+28312683,24879839,2
+61142417,24879839,2
+40929874,24879839,3
+58386149,24879839,3
+52335106,24879839,-1
+57583046,24879839,3
+29271779,24879839,1
+shouJUer,24879839,2
+johnqz874,24879839,3
+yuuka0765,24879839,3
+4036761,24879839,3
+wyb372709042,24879839,2
+10236919,24879839,2
+stillXmang,24879839,2
+68115096,24879839,3
+51270451,24879839,1
+xpen95,24879839,4
+53789124,24879839,3
+78907182,24879839,3
+54813786,24879839,3
+115710110,24879839,3
+carlo_,24879839,3
+Charlie.Lee,24879839,2
+tytyty,24879839,3
+gaomeir,24879839,-1
+43259429,24879839,2
+45160963,24879839,2
+54260206,24879839,3
+3488671,24879839,1
+84259340,24879839,2
+wangdy,24879839,5
+51404354,24879839,3
+49117698,24879839,2
+gong_ken,24879839,3
+za7ck,24879839,2
+maxlvw,24879839,3
+3529035,24879839,3
+firoXfiro,24879839,5
+74768790,24879839,3
+jach-huang,24879839,2
+smallcraft,24879839,-1
+58587564,24879839,3
+45490337,24879839,1
+71624097,24879839,1
+73869921,24879839,5
+wangtaocyy,24879839,2
+annshuran,24879839,2
+73561647,24879839,-1
+77191740,24879839,2
+yoyo621725,24879839,2
+62677477,24879839,2
+candyhorse,24879839,5
+129973215,24879839,3
+circleontheway,24879839,2
+77419257,24879839,3
+mycage,24879839,2
+52178772,24879839,1
+88262225,24879839,1
+littlebao,24879839,3
+91392339,24879839,4
+61420594,24879839,1
+miumiuleyan,24879839,3
+kelira,24879839,3
+8448739,24879839,1
+3607786,24879839,3
+4213331,24879839,-1
+59405094,24879839,1
+4156087,24879839,3
+39095297,24879839,2
+55717894,24879839,2
+52207027,24879839,3
+lvjunshu,24879839,1
+nailaandpusky,24879839,3
+hairgirl,24879839,3
+43856464,24879839,3
+66193180,24879839,3
+JerryGin,24879839,2
+1306838,24879839,2
+dandan0720,24879839,3
+houtz,24879839,4
+matonggaizi,24879839,2
+90925457,24879839,2
+51136126,24879839,2
+capricornslythe,24879839,3
+cl20lc,24879839,2
+84124597,24879839,3
+55310272,24879839,3
+1002192,24879839,5
+moryfor,24879839,2
+2648592,24879839,-1
+1495292,24879839,3
+126671524,24879839,-1
+zhong13211,24879839,4
+3540441,24879839,1
+43225247,24879839,4
+anjingyigeren,24879839,3
+59949751,24879839,2
+antilo,24879839,3
+25982397,24879839,3
+48042943,24879839,2
+72839034,24879839,4
+122760000,24879839,1
+36598674,24879839,3
+bangbang2033,24879839,2
+51761822,24879839,4
+45454544,24879839,3
+4583100,24879839,4
+peegod,24879839,4
+81850559,24879839,2
+yujiuwei,24879839,2
+4624041,24879839,3
+tender_night,24879839,3
+1177906,24879839,4
+68429541,24879839,3
+ikeike,24879839,2
+52384106,24879839,2
+126125294,24879839,2
+dangdang1027,24879839,1
+mmdandan,24879839,2
+2164129,24879839,3
+ziranjuaner,24879839,3
+73649626,24879839,5
+2232953,24879839,3
+couple1314,24879839,3
+124155888,24879839,1
+48980797,24879839,1
+53134670,24879839,1
+61724445,24879839,1
+65538014,24879839,4
+63635904,24879839,3
+EthanChu,24879839,2
+hedmgh,24879839,4
+73059881,24879839,3
+1752821,24879839,2
+72727625,24879839,1
+129582003,24879839,3
+57831440,24879839,1
+8136180,24879839,2
+3647228,24879839,1
+48495597,24879839,-1
+aasian,24879839,3
+lovezhuangjia,24879839,5
+talyscream,24879839,3
+perfectdemon,24879839,4
+wcfdh,24879839,2
+tong0803,24879839,4
+61116917,24879839,2
+49134258,24879839,3
+62084147,24879839,5
+83811612,24879839,3
+alwd,24879839,5
+2842222,24879839,3
+1297671,24879839,1
+sylin,24879839,2
+78551525,24879839,4
+37510315,24879839,3
+yehewanshixing,24879839,1
+manxiaoyue,24879839,2
+crystal_zhao,24879839,3
+charlie910226,24879839,3
+jgfhhxxo,24879839,3
+lingxishuyu,24879839,2
+64538431,24879839,1
+68491765,24879839,2
+49517689,24879839,4
+bleudodo,24879839,4
+songyao,24879839,-1
+maoxiaotao,24879839,4
+50927542,24879839,3
+65570354,24879839,3
+46518389,24879839,3
+geminehoo,24879839,4
+shirley863,24879839,3
+1580985,24879839,3
+46853382,24879839,3
+41955961,24879839,3
+47238636,24879839,-1
+56526840,24879839,1
+pqzzar,24879839,4
+rika19860217,24879839,3
+122880568,24879839,3
+fengqingyuexia,24879839,3
+Veronicam,24879839,3
+lulu_p.p,24879839,-1
+64787437,24879839,4
+55707159,24879839,3
+35782847,24879839,2
+120099108,24879839,4
+mrcoolchina,24879839,3
+46654545,24879839,2
+chuleiwu,24879839,3
+2906253,24879839,2
+annastyle,24879839,2
+131387611,24879839,3
+67671170,24879839,3
+monkeyshuai,24879839,4
+131385202,24879839,1
+IrishRouge,24879839,2
+80559391,24879839,2
+gandi2,24879839,4
+46082749,24879839,3
+ppa007hot,24879839,2
+55638909,24879839,3
+49330526,24879839,3
+chongzilalala,24879839,3
+4349980,24879839,4
+57850108,24879839,1
+1584109,24879839,2
+87971449,24879839,2
+kaye-mi,24879839,3
+30061604,24879839,1
+tuxki,24879839,3
+internalecho,24879839,2
+11769509,24879839,4
+35818666,24879839,3
+3559769,24879839,4
+Exaiy,24879839,3
+51031885,24879839,2
+84609016,24879839,3
+51277324,24879839,3
+greymz,24879839,4
+56142020,24879839,-1
+grammarbai,24879839,2
+zeroooccc,24879839,1
+WCY983,24879839,3
+1413100,24879839,5
+63950350,24879839,2
+56387979,24879839,4
+96513948,24879839,3
+zhuxiaoqi,24879839,4
+mr-carrot,24879839,3
+63514865,24879839,4
+52165017,24879839,2
+27438021,24879839,3
+73838544,24879839,2
+fsikuzo,24879839,3
+33624596,24879839,2
+renmeng,24879839,4
+lucky-eka,24879839,3
+52767062,24879839,3
+csee1121,24879839,4
+131367658,24879839,2
+liangyong,24879839,2
+moyouer,24879839,4
+49110008,24879839,2
+therockyy,24879839,1
+84538241,24879839,4
+44892566,24879839,5
+13126261,24879839,4
+37747347,24879839,3
+Smeagol,24879839,3
+klrobsten,24879839,4
+lewuleyi,24879839,-1
+50282986,24879839,1
+53656219,24879839,3
+87891193,24879839,4
+mcgregor,24879839,4
+54802370,24879839,3
+4221659,24879839,2
+49713626,24879839,3
+65662824,24879839,3
+96662969,24879839,5
+3602762,24879839,3
+airkiko,24879839,4
+sym15008250465,24879839,3
+MsDuoli,24879839,3
+1799807,24879839,2
+cheerychang,24879839,3
+87952406,24879839,1
+never-be-loser,24879839,2
+61861239,24879839,2
+nevershuo,24879839,3
+rou3lives,24879839,3
+52478596,24879839,4
+alayasss,24879839,3
+47899778,24879839,2
+never-land-bird,24879839,3
+zhecx,24879839,1
+3715314,24879839,1
+gustavo_wwd,24879839,4
+lansewuwangwo,24879839,4
+45245216,24879839,2
+3425802,24879839,3
+lynnstefanie,24879839,2
+56044350,24879839,3
+12694657,24879839,3
+yf19931112,24879839,3
+claudexin,24879839,1
+lalack1987,24879839,3
+65141663,24879839,2
+46660998,24879839,3
+100314397,24879839,3
+47662832,24879839,4
+121431901,24879839,5
+66044059,24879839,1
+xiaojuer,24879839,4
+45630921,24879839,2
+xiongaitu,24879839,3
+72683607,24879839,2
+51886121,24879839,2
+65345152,24879839,2
+59997067,24879839,5
+3471096,24879839,3
+pbc0615,24879839,3
+meet44,24879839,-1
+dujie0320,24879839,2
+3352159,24879839,1
+102902029,24879839,5
+Uni_zz,24879839,3
+50118082,24879839,1
+26630005,24879839,3
+64740791,24879839,2
+51594094,24879839,4
+sentexiaohu,24879839,2
+17004593,24879839,2
+58913556,24879839,3
+47391200,24879839,2
+62591229,24879839,2
+110953624,24879839,4
+53978584,24879839,4
+42600622,24879839,-1
+tomop,24879839,3
+smileuna,24879839,3
+kokki,24879839,3
+85452483,24879839,3
+59986635,24879839,4
+elevenfang11,24879839,4
+78518168,24879839,3
+shwxiang,24879839,2
+54490331,24879839,4
+90496794,24879839,3
+81076916,24879839,2
+vanilla666,24879839,1
+123419758,24879839,3
+13295115,24879839,4
+83836566,24879839,2
+68655237,24879839,4
+xiajixiangnan,24879839,3
+domp,24879839,3
+4288348,24879839,-1
+TCTF,24879839,3
+36403450,24879839,3
+82037487,24879839,2
+48410349,24879839,3
+49214280,24879839,2
+lilyfee,24879839,2
+JohnnyZac,24879839,2
+2754902,24879839,2
+My_deary,24879839,3
+46256999,24879839,1
+3892506,24879839,1
+hgbcqz,24879839,2
+59119591,24879839,3
+90205716,24879839,1
+83359033,24879839,3
+49868352,24879839,2
+timonin,24879839,3
+51987671,24879839,4
+xiaxiaoqiang,24879839,2
+bluedolphinly,24879839,2
+16803779,24879839,-1
+cerberus1006,24879839,1
+54209528,24879839,2
+47161223,24879839,2
+65363266,24879839,4
+62726844,24879839,4
+lisa153153,24879839,4
+102900567,24879839,2
+57978536,24879839,3
+oiono,24879839,3
+DBernd,24879839,1
+3481635,24879839,2
+carolsy22,24879839,3
+43335184,24879839,3
+47256072,24879839,2
+1170261,24879839,2
+94068216,24879839,3
+ssyppq,24879839,1
+57260239,24879839,2
+njtintin,24879839,3
+120334590,24879839,1
+mingwang,24879839,2
+45991925,24879839,3
+68679029,24879839,1
+49489777,24879839,1
+44555225,24879839,3
+52456095,24879839,2
+1102841,24879839,2
+57371958,24879839,3
+kenzo11,24879839,2
+3706500,24879839,2
+ivy_lmj,24879839,2
+107493773,24879839,4
+62735268,24879839,3
+3266809,24879839,3
+44458442,24879839,1
+127557625,24879839,2
+63606511,24879839,2
+1617432,24879839,2
+60894533,24879839,1
+46447137,24879839,4
+kazuki_,24879839,3
+2834857,24879839,-1
+126031305,24879839,5
+62693990,24879839,2
+putaonat,24879839,5
+34454459,24879839,4
+26044083,24879839,3
+54090244,24879839,2
+yogurt2202,24879839,-1
+71497179,24879839,2
+63925991,24879839,4
+82336545,24879839,1
+67800807,24879839,4
+121336166,24879839,4
+119683375,24879839,3
+chelingli,24879839,4
+16313664,24879839,3
+soyimmen,24879839,3
+84761906,24879839,3
+wizwood,24879839,1
+2426432,24879839,2
+46898679,24879839,3
+toool,24879839,3
+67040528,24879839,1
+simon3911,24879839,5
+yyycaleen,24879839,2
+itux,24879839,2
+76018084,24879839,1
+weizi1977,24879839,3
+1499388,24879839,1
+guanghui,24879839,2
+59013721,24879839,2
+flymelody,24879839,4
+47216469,24879839,3
+102647493,24879839,3
+moer,24879839,2
+agnes223,24879839,1
+yoyoinlove,24879839,3
+78282320,24879839,4
+amber11,24879839,1
+43573446,24879839,2
+q168,24879839,3
+1437985,24879839,4
+Sunny_Sunny,24879839,3
+41051783,24879839,4
+56557982,24879839,1
+2683471,24879839,3
+4672889,24879839,2
+52666405,24879839,3
+51416132,24879839,2
+sujutotheme,24879839,3
+51054485,24879839,1
+youyou110205,24879839,4
+42085123,24879839,1
+47325736,24879839,5
+65588926,24879839,-1
+66840319,24879839,2
+39132532,24879839,1
+azizi,24879839,4
+66670492,24879839,3
+71083043,24879839,2
+96648379,24879839,4
+50519888,24879839,2
+53859769,24879839,3
+58760048,24879839,5
+57084684,24879839,2
+114333708,24879839,2
+janaldlam,24879839,3
+61988364,24879839,5
+zhangqiyuan,24879839,3
+62124340,24879839,5
+36961026,24879839,3
+wangzhumei,24879839,3
+fish_peanut,24879839,4
+108651557,24879839,2
+43882997,24879839,2
+TiAmoWangQiXin,24879839,2
+67672494,24879839,4
+3570948,24879839,1
+bryantarecool,24879839,2
+3414519,24879839,3
+44862479,24879839,2
+micu,24879839,5
+3198636,24879839,3
+128930943,24879839,3
+hoboland,24879839,2
+68523574,24879839,3
+tonganda,24879839,3
+3719378,24879839,-1
+taylor_ts,24879839,2
+67072789,24879839,5
+30740980,24879839,4
+63462230,24879839,1
+80314108,24879839,3
+131276453,24879839,1
+bluep,24879839,2
+80226411,24879839,2
+53281150,24879839,2
+47280771,24879839,4
+yellowjanet,24879839,3
+52733782,24879839,3
+62446851,24879839,3
+63555508,24879839,2
+Lemonsir,24879839,2
+Lemonsir,24879839,2
+yugg7,24879839,2
+53720863,24879839,5
+terry459179439,24879839,3
+49955610,24879839,2
+50028709,24879839,1
+summershuiugo,24879839,2
+smilinglynn,24879839,3
+80592821,24879839,2
+lzxsophia,24879839,3
+77626905,24879839,3
+3990311,24879839,3
+53455572,24879839,2
+57546427,24879839,3
+Zx12,24879839,4
+88033258,24879839,1
+onetwothrees,24879839,3
+47618855,24879839,-1
+amily,24879839,-1
+slwilliam,24879839,3
+78263023,24879839,2
+J7N,24879839,2
+50366929,24879839,3
+nina8489,24879839,4
+artofloving,24879839,3
+movieview,24879839,2
+55391513,24879839,3
+37975199,24879839,3
+51271339,24879839,2
+35639294,24879839,2
+gillx,24879839,2
+RulyLee,24879839,1
+54631466,24879839,2
+54356096,24879839,2
+Yyang-Dg,24879839,3
+phoebe0225,24879839,1
+75149022,24879839,2
+42714668,24879839,2
+just_yoki,24879839,5
+53431261,24879839,2
+62129234,24879839,3
+78847989,24879839,1
+hamletvsRomeo,24879839,3
+2248064,24879839,2
+venn,24879839,3
+38045752,24879839,4
+58615356,24879839,2
+66126598,24879839,3
+74145154,24879839,2
+104147841,24879839,2
+RockDai,24879839,3
+CNToria617,24879839,4
+freezinggl,24879839,2
+10888686,24879839,4
+aoceanstarz,24879839,3
+125096081,24879839,2
+flower_hui,24879839,3
+3966971,24879839,3
+liusoso,24879839,3
+62664539,24879839,3
+woyee,24879839,3
+yukuai,24879839,-1
+39061280,24879839,-1
+58034308,24879839,2
+arzoo,24879839,5
+125838595,24879839,4
+Annandan,24879839,1
+dtmql,24879839,2
+28798513,24879839,4
+82639384,24879839,3
+CarveforLive,24879839,3
+46605450,24879839,3
+45637706,24879839,4
+131248519,24879839,1
+51416899,24879839,2
+46251007,24879839,3
+l5song,24879839,4
+WN-ninja,24879839,4
+CLavinia,24879839,2
+39744248,24879839,4
+doudou8798,24879839,4
+1449311,24879839,3
+44736646,24879839,4
+missyuleyouyou,24879839,5
+3890866,24879839,4
+4482032,24879839,1
+34893825,24879839,4
+52539188,24879839,3
+2676527,24879839,4
+43760678,24879839,3
+47652999,24879839,4
+BuerZhou,24879839,2
+23381370,24879839,3
+3617279,24879839,3
+iceboy874,24879839,3
+evooone,24879839,3
+36601365,24879839,4
+3053086,24879839,3
+hsyh1989,24879839,3
+130998619,24879839,3
+jzhshow,24879839,4
+xujiujiu,24879839,4
+68416685,24879839,3
+57180055,24879839,2
+Never_mind,24879839,3
+13570007,24879839,-1
+fengmengdi,24879839,4
+yuenlong,24879839,3
+57158732,24879839,2
+northbt,24879839,2
+103031887,24879839,3
+ning_781205,24879839,3
+EstoyInMisTrece,24879839,3
+90697037,24879839,3
+qingxuan0706,24879839,-1
+43740988,24879839,3
+AurelianoZ,24879839,1
+1927375,24879839,4
+loftywain,24879839,2
+helenaaranya,24879839,1
+road006,24879839,4
+4019279,24879839,4
+50884067,24879839,-1
+30532043,24879839,2
+xiaomose,24879839,3
+41690522,24879839,4
+WyBaby,24879839,-1
+kaka_elsie,24879839,3
+crazylazz,24879839,3
+40094782,24879839,1
+wolvestime,24879839,3
+12913964,24879839,4
+69746458,24879839,2
+48941373,24879839,3
+66851184,24879839,2
+88561659,24879839,5
+61518424,24879839,3
+lovetaisukelove,24879839,3
+isabella_tk,24879839,2
+58701318,24879839,3
+ginnyisbest,24879839,3
+58934612,24879839,3
+52823989,24879839,3
+38146297,24879839,2
+72163139,24879839,4
+sbnan,24879839,3
+honey-honey,24879839,3
+41196257,24879839,4
+6745246,24879839,4
+54421856,24879839,3
+121131242,24879839,3
+42585256,24879839,4
+84681267,24879839,4
+baibo108,24879839,4
+58028702,24879839,1
+Lul.z,24879839,4
+68786034,24879839,4
+jiao2er,24879839,2
+3452519,24879839,1
+71841542,24879839,2
+76380392,24879839,5
+57620266,24879839,3
+flying_firefly,24879839,3
+74562280,24879839,2
+61459253,24879839,3
+juyi214,24879839,4
+48524640,24879839,4
+51354667,24879839,4
+70928299,24879839,5
+56026351,24879839,2
+60133071,24879839,1
+charles479,24879839,3
+36234545,24879839,3
+78493096,24879839,2
+65113614,24879839,2
+chaiochang,24879839,3
+73562210,24879839,3
+2030773,24879839,2
+119972350,24879839,1
+46276862,24879839,4
+moshien,24879839,2
+20719866,24879839,2
+49441451,24879839,3
+cult.bee,24879839,5
+orange511,24879839,5
+120437262,24879839,1
+49911238,24879839,2
+3703475,24879839,4
+dreamrunner,24879839,3
+xq87,24879839,3
+Milkandy,24879839,2
+70333737,24879839,3
+tearmap,24879839,3
+lxu,24879839,3
+121049653,24879839,1
+65396178,24879839,3
+nianhuaapple,24879839,2
+46605189,24879839,5
+50040754,24879839,3
+zhuxiansheng,24879839,2
+wqmeoe,24879839,3
+51188157,24879839,4
+MOON_CHUNG,24879839,4
+atsatyr,24879839,3
+80886643,24879839,4
+55480147,24879839,2
+52446109,24879839,3
+3106185,24879839,2
+mikeodj,24879839,3
+issalou,24879839,2
+62825069,24879839,1
+xuxiailing,24879839,3
+Monica007,24879839,5
+3651535,24879839,2
+yuqingcao,24879839,4
+fanclrice,24879839,3
+10218271,24879839,3
+zhoujinqiang,24879839,3
+81370561,24879839,2
+mtz,24879839,4
+aprilini,24879839,4
+1383722,24879839,4
+becky7,24879839,3
+citizencala,24879839,2
+50095107,24879839,3
+despina,24879839,3
+jianrenjianzhi,24879839,-1
+kayxuan,24879839,5
+43719217,24879839,3
+buzzsunny,24879839,1
+lrxsamantha,24879839,4
+1313358,24879839,4
+23835324,24879839,5
+55897385,24879839,5
+60405772,24879839,1
+1985034,24879839,4
+88031590,24879839,2
+yeallingmay,24879839,3
+1887825,24879839,1
+55542795,24879839,4
+geoff2011,24879839,1
+mozixia,24879839,2
+84970608,24879839,3
+104575422,24879839,4
+cos2xhps,24879839,4
+64892439,24879839,3
+feblee,24879839,3
+waynedhr,24879839,1
+121371779,24879839,2
+28840841,24879839,3
+vitamin27,24879839,1
+31814184,24879839,2
+rachelife930,24879839,3
+mississluu,24879839,3
+77445165,24879839,3
+68578741,24879839,1
+48316381,24879839,2
+95836023,24879839,4
+91785401,24879839,3
+50557990,24879839,5
+50557990,24879839,5
+crazygrave,24879839,1
+xiaoyu111,24879839,3
+110060551,24879839,3
+meganmoon,24879839,4
+34226675,24879839,2
+119225016,24879839,2
+2635787,24879839,3
+61352676,24879839,1
+raytao,24879839,3
+90884547,24879839,3
+83264508,24879839,4
+jonnson,24879839,4
+46375776,24879839,3
+63165563,24879839,3
+dodolovesy,24879839,4
+57945054,24879839,4
+mcwarren,24879839,1
+34028338,24879839,5
+43898605,24879839,2
+63219086,24879839,3
+70081984,24879839,3
+93158337,24879839,3
+99341305,24879839,3
+yingluncheng,24879839,1
+49788014,24879839,-1
+122586428,24879839,3
+juxi,24879839,2
+70956657,24879839,3
+Danilov,24879839,2
+stardust1900,24879839,3
+127345510,24879839,1
+44973722,24879839,3
+37633761,24879839,3
+83074556,24879839,3
+93240060,24879839,5
+2231635,24879839,2
+ur.little.girl.,24879839,3
+49249135,24879839,2
+BDX,24879839,-1
+Hennessy_,24879839,3
+128099844,24879839,4
+18349242,24879839,1
+61076584,24879839,2
+57501453,24879839,3
+48072909,24879839,3
+100934769,24879839,1
+63236184,24879839,3
+38315732,24879839,4
+131004317,24879839,4
+76021519,24879839,-1
+bryna,24879839,5
+2310583,24879839,3
+iconsume,24879839,2
+72536335,24879839,4
+56173485,24879839,3
+57779611,24879839,1
+41940074,24879839,5
+greenbeast,24879839,1
+threesun,24879839,3
+snowdrop14,24879839,3
+vjjdwn,24879839,3
+94227961,24879839,3
+MK,24879839,3
+38648875,24879839,3
+75116477,24879839,2
+davidjzhang,24879839,2
+78128273,24879839,5
+nian-an,24879839,3
+yzk2237084,24879839,2
+yangxiaofeliz,24879839,1
+frnong,24879839,3
+128641812,24879839,2
+sara.helen,24879839,3
+1459659,24879839,3
+2266117,24879839,-1
+LesleyAloxxx,24879839,2
+63599099,24879839,2
+4582518,24879839,3
+61268131,24879839,4
+zypq,24879839,2
+MOGMOGUU,24879839,4
+72484230,24879839,3
+130370822,24879839,3
+109284403,24879839,3
+lynchor,24879839,3
+urania1102,24879839,4
+124568537,24879839,4
+41533558,24879839,1
+mariewyssa,24879839,4
+zliangs,24879839,5
+lovehg20090428,24879839,2
+58550778,24879839,4
+49308722,24879839,4
+46160767,24879839,2
+52838837,24879839,2
+2429093,24879839,5
+33475174,24879839,1
+60050271,24879839,2
+64239392,24879839,1
+15560740,24879839,4
+body_electric,24879839,2
+74062182,24879839,1
+sskllt,24879839,3
+56206322,24879839,5
+37232762,24879839,2
+43978176,24879839,4
+2411800,24879839,2
+qinsining,24879839,3
+ninidistory,24879839,2
+69213542,24879839,2
+ihsun,24879839,2
+34948612,24879839,3
+15254240,24879839,5
+81697516,24879839,4
+weenn,24879839,1
+zilongu,24879839,2
+mona220,24879839,4
+79389019,24879839,3
+2233963,24879839,4
+yiduanhu,24879839,2
+jeanstee,24879839,2
+46373841,24879839,1
+madlab,24879839,3
+stonyshiny,24879839,2
+kring,24879839,2
+kakaso,24879839,4
+3611990,24879839,2
+49864789,24879839,2
+zling--HE,24879839,3
+130604471,24879839,2
+64297751,24879839,4
+Pogs,24879839,-1
+87237465,24879839,3
+liuliang85,24879839,5
+67125264,24879839,3
+45543897,24879839,4
+46939628,24879839,3
+120043182,24879839,2
+yanyanwu,24879839,3
+69753373,24879839,5
+47114271,24879839,3
+40299888,24879839,4
+sincekz,24879839,4
+dxq1216,24879839,2
+56053205,24879839,3
+maynardleung,24879839,2
+daisysja,24879839,2
+73194110,24879839,3
+alittlewater,24879839,4
+48829724,24879839,3
+59592825,24879839,3
+79560195,24879839,2
+108821133,24879839,4
+58137395,24879839,4
+enxiaoci,24879839,3
+119559372,24879839,3
+75850197,24879839,-1
+73841576,24879839,4
+kiiwi,24879839,3
+hianan,24879839,-1
+zwq2u,24879839,3
+rainynut,24879839,5
+1381497,24879839,1
+75605625,24879839,3
+dashan1928,24879839,4
+67962053,24879839,1
+sep1221,24879839,3
+41158884,24879839,4
+4153835,24879839,2
+foofights,24879839,1
+26818314,24879839,2
+92906741,24879839,3
+35229125,24879839,4
+Mrssin,24879839,3
+57713345,24879839,3
+sunnycawb,24879839,3
+71877767,24879839,3
+Guchunxi,24879839,2
+69973045,24879839,3
+42346736,24879839,3
+47853230,24879839,3
+adafirst,24879839,2
+maertaren,24879839,3
+61468605,24879839,4
+62919199,24879839,2
+92268475,24879839,3
+4429031,24879839,3
+3939279,24879839,3
+54938987,24879839,5
+43236941,24879839,3
+38808960,24879839,3
+68553917,24879839,1
+43486975,24879839,1
+43214194,24879839,3
+2394490,24879839,4
+63024954,24879839,2
+1223733,24879839,1
+bjooooooork,24879839,3
+1911959,24879839,3
+122198216,24879839,5
+jrdingbei,24879839,1
+3427459,24879839,2
+122060054,24879839,2
+59699452,24879839,4
+49184177,24879839,1
+m2529,24879839,1
+55414544,24879839,3
+ozawa,24879839,2
+superseahell,24879839,2
+71270529,24879839,1
+6734075,24879839,5
+pineappletu,24879839,4
+DCENL,24879839,2
+72945702,24879839,3
+62000440,24879839,2
+itstillvivi,24879839,4
+2504153,24879839,3
+8491923,24879839,2
+thesue,24879839,2
+3895533,24879839,1
+fengfishjoe,24879839,3
+teasung,24879839,3
+128124324,24879839,3
+33611960,24879839,2
+minniedai,24879839,3
+3582172,24879839,2
+40302528,24879839,1
+47533724,24879839,4
+75115896,24879839,3
+87691265,24879839,2
+55635407,24879839,3
+stash,24879839,5
+57741724,24879839,2
+2180309,24879839,4
+36576530,24879839,2
+49521685,24879839,4
+48216088,24879839,5
+18041356,24879839,3
+laurelni,24879839,4
+131018330,24879839,3
+sundevilyang,24879839,4
+45269064,24879839,3
+lotusmomo,24879839,3
+131147823,24879839,3
+53789977,24879839,2
+3891395,24879839,4
+88874062,24879839,5
+4856461,24879839,4
+52167289,24879839,3
+alphes,24879839,4
+amadecasa,24879839,2
+62993339,24879839,1
+49903431,24879839,2
+conniejjq,24879839,3
+78419012,24879839,2
+51061132,24879839,3
+huadian,24879839,1
+49467804,24879839,5
+leslied41,24879839,1
+54671889,24879839,3
+38255409,24879839,4
+18318076,24879839,1
+55906760,24879839,3
+50347133,24879839,3
+mudingcatshere,24879839,-1
+104559183,24879839,3
+56347749,24879839,3
+122414138,24879839,2
+61955733,24879839,3
+37937404,24879839,5
+qianlizi,24879839,3
+125427272,24879839,2
+52236468,24879839,4
+M4A1,24879839,2
+1351842,24879839,1
+3535327,24879839,1
+97348317,24879839,3
+zzllxiaoxiao,24879839,3
+4148066,24879839,2
+4148066,24879839,2
+hollyxiyi,24879839,3
+xiaoyedeguo,24879839,3
+131144782,24879839,4
+48273445,24879839,1
+69248327,24879839,-1
+50181869,24879839,2
+48278787,24879839,-1
+64069487,24879839,3
+RLanffy,24879839,1
+61506215,24879839,1
+lovevision,24879839,3
+Jellabah,24879839,5
+48618162,24879839,5
+56539741,24879839,3
+3623955,24879839,2
+57614519,24879839,3
+67811520,24879839,1
+83962986,24879839,3
+35272301,24879839,3
+peovsple,24879839,3
+xiaomo1,24879839,2
+spicymilk,24879839,2
+51472613,24879839,1
+62656357,24879839,4
+2829825,24879839,4
+ilovekyoko,24879839,3
+ChrisNoth,24879839,2
+unluckystrike,24879839,5
+84167567,24879839,4
+Chinawhu,24879839,5
+queen-tiffany,24879839,3
+ddumplling,24879839,4
+41547797,24879839,2
+59617849,24879839,3
+gloomying,24879839,1
+57538254,24879839,2
+79037298,24879839,3
+68185079,24879839,2
+46177546,24879839,2
+78097943,24879839,3
+shinysky,24879839,3
+inrelief,24879839,1
+4619034,24879839,3
+station123,24879839,2
+qianqian0929,24879839,3
+3401236,24879839,3
+45274666,24879839,3
+2719590,24879839,5
+65800533,24879839,3
+chinimei,24879839,4
+121583266,24879839,3
+OnlyCoffee,24879839,3
+48793243,24879839,2
+53577462,24879839,3
+129591602,24879839,5
+46510728,24879839,4
+kid177,24879839,1
+56035155,24879839,4
+2657246,24879839,2
+3670738,24879839,3
+114733320,24879839,2
+95817419,24879839,3
+oasis_b,24879839,4
+62739963,24879839,4
+53106493,24879839,3
+47224732,24879839,4
+81001577,24879839,3
+JianLei93,24879839,1
+64631694,24879839,3
+46458564,24879839,1
+littlefey,24879839,1
+XXXXXmian,24879839,3
+2219194,24879839,1
+hesson,24879839,4
+dodo729,24879839,4
+51790573,24879839,2
+49379125,24879839,3
+35692307,24879839,3
+78714838,24879839,1
+lisayang,24879839,2
+62691710,24879839,3
+45749483,24879839,3
+bbqdfc,24879839,5
+julia_qi,24879839,4
+3681326,24879839,5
+62437828,24879839,3
+izune,24879839,2
+krabs,24879839,3
+46507534,24879839,2
+1303267,24879839,4
+4447788,24879839,3
+44765104,24879839,2
+48738008,24879839,2
+27570114,24879839,1
+63538083,24879839,2
+2588629,24879839,2
+27017814,24879839,3
+lvmeng214,24879839,3
+8711485,24879839,4
+52011624,24879839,4
+thevampire1908,24879839,-1
+Lotus_Hoo,24879839,4
+49329383,24879839,3
+56684518,24879839,3
+yaoyu1013,24879839,3
+LuuuuC,24879839,3
+flora2011,24879839,3
+69489690,24879839,3
+SK1d125,24879839,3
+63325317,24879839,1
+jackie1211,24879839,4
+4802096,24879839,2
+2584549,24879839,1
+loveLizhenyu,24879839,4
+50219893,24879839,1
+26539835,24879839,3
+imarilyn,24879839,3
+2290969,24879839,4
+45595430,24879839,-1
+taylorman,24879839,4
+sqxmy,24879839,3
+coconutZii,24879839,2
+SuzyMao,24879839,4
+serenalovetony,24879839,3
+bbttdtz,24879839,2
+carol2sea,24879839,3
+2328333,24879839,2
+51417733,24879839,2
+48475262,24879839,-1
+litsunny,24879839,3
+LUCKYPAN9,24879839,3
+gongzishuo,24879839,4
+49138712,24879839,3
+122039784,24879839,2
+Fomy,24879839,2
+131131042,24879839,3
+51817711,24879839,3
+72091054,24879839,2
+51126355,24879839,5
+moontooth,24879839,3
+61944030,24879839,4
+68917720,24879839,4
+surgdy1008,24879839,4
+2995401,24879839,3
+127406348,24879839,3
+tetcato,24879839,1
+caier919,24879839,3
+c19971119,24879839,2
+fishend,24879839,3
+78376995,24879839,4
+1831746,24879839,3
+feituer,24879839,-1
+47385143,24879839,4
+1380204,24879839,2
+52246984,24879839,3
+2260384,24879839,3
+81430185,24879839,2
+gingatomeiro,24879839,2
+62345841,24879839,3
+4749363,24879839,2
+kbs---ak,24879839,2
+zishi121,24879839,3
+53715801,24879839,1
+swxs,24879839,4
+131126079,24879839,2
+yirenyijianyima,24879839,3
+42293936,24879839,3
+33980065,24879839,2
+40625984,24879839,3
+xuliaoliao,24879839,2
+cainroziel,24879839,4
+efoman,24879839,3
+zhxm,24879839,3
+3786135,24879839,1
+45408474,24879839,1
+78882744,24879839,2
+ervie0nirvana,24879839,5
+boovie,24879839,3
+55793060,24879839,3
+79463544,24879839,3
+129678455,24879839,3
+64352987,24879839,2
+58163781,24879839,2
+hewuyou,24879839,3
+4531640,24879839,1
+74142166,24879839,3
+2327781,24879839,3
+wonderful_days,24879839,3
+ailuwan,24879839,4
+80317889,24879839,2
+akanetx,24879839,3
+64240656,24879839,1
+63278789,24879839,3
+67742018,24879839,2
+30769156,24879839,2
+64154441,24879839,3
+54811800,24879839,3
+47495254,24879839,1
+Forrester,24879839,3
+44093787,24879839,5
+44618769,24879839,5
+131120554,24879839,1
+59443178,24879839,5
+pansin,24879839,5
+CharlotteKo,24879839,4
+48815744,24879839,3
+66540464,24879839,1
+87867332,24879839,2
+72438301,24879839,3
+95788004,24879839,2
+88038496,24879839,4
+51266085,24879839,-1
+56977637,24879839,2
+56711007,24879839,4
+126825775,24879839,2
+jiulexiong,24879839,4
+11842501,24879839,2
+53179631,24879839,5
+69669218,24879839,2
+discoveration,24879839,2
+60885492,24879839,4
+yanoooo,24879839,3
+46754080,24879839,1
+2138700,24879839,2
+3650818,24879839,4
+57847628,24879839,-1
+3209634,24879839,3
+3555038,24879839,5
+77165635,24879839,3
+1949693,24879839,2
+49446093,24879839,4
+120828432,24879839,1
+dylanicious,24879839,1
+56871206,24879839,2
+65985132,24879839,3
+48601475,24879839,3
+130362078,24879839,2
+48651586,24879839,3
+josiahpotato,24879839,1
+53692727,24879839,3
+76208210,24879839,3
+47820304,24879839,-1
+41837371,24879839,1
+sacowiw,24879839,3
+49426583,24879839,2
+84593823,24879839,2
+kate101,24879839,4
+21771687,24879839,2
+3893251,24879839,2
+alicemeng,24879839,3
+128616856,24879839,2
+40005323,24879839,2
+wang19871125,24879839,3
+68988809,24879839,4
+63022254,24879839,3
+kkirere,24879839,-1
+50023999,24879839,1
+doooob,24879839,3
+50476857,24879839,2
+1750236,24879839,3
+6537133,24879839,2
+129901852,24879839,3
+charleslee707,24879839,2
+tlbb008,24879839,3
+115552732,24879839,3
+33484698,24879839,2
+shirleycapri,24879839,3
+26860515,24879839,3
+guangdao,24879839,4
+yumofu,24879839,1
+41047138,24879839,2
+72970549,24879839,2
+zhangshilianchu,24879839,5
+57942822,24879839,2
+75706202,24879839,4
+cb1030,24879839,4
+4455749,24879839,4
+snowchong1984,24879839,3
+xiaoxiao1219,24879839,1
+131100899,24879839,3
+50396291,24879839,4
+57695924,24879839,4
+58805762,24879839,2
+43409918,24879839,2
+virus11,24879839,1
+55656968,24879839,1
+31043480,24879839,3
+dusansan,24879839,2
+41482833,24879839,3
+Elsa-Young,24879839,2
+November1990,24879839,2
+Tavico,24879839,3
+1557678,24879839,1
+willi0307,24879839,5
+78622680,24879839,3
+56586044,24879839,2
+44182814,24879839,2
+44265296,24879839,5
+qiqixin,24879839,4
+cleanht,24879839,1
+jingshuixian,24879839,4
+wuxiaominghan,24879839,4
+6397544,24879839,2
+62659371,24879839,4
+misscoke,24879839,1
+anoTherTeezy,24879839,2
+4323603,24879839,2
+abbeyssss,24879839,4
+yslove312,24879839,2
+13211401,24879839,1
+75171075,24879839,2
+roxy_1212,24879839,2
+50957317,24879839,2
+52259960,24879839,3
+missweekend,24879839,2
+imhjl412,24879839,3
+58556474,24879839,2
+117347877,24879839,2
+63068430,24879839,3
+122596452,24879839,4
+58410021,24879839,5
+28559275,24879839,2
+48010973,24879839,5
+3605330,24879839,2
+81317162,24879839,2
+45799570,24879839,3
+rie-,24879839,1
+shennessy,24879839,2
+junqli86,24879839,3
+68144937,24879839,-1
+54751571,24879839,3
+58431994,24879839,3
+121545000,24879839,5
+ixiaxiaoqi,24879839,2
+psychosun,24879839,3
+45524142,24879839,4
+42093808,24879839,-1
+66717642,24879839,5
+33512281,24879839,2
+leeredevil,24879839,3
+Amberine,24879839,1
+57749924,24879839,4
+12796470,24879839,1
+iamyouareme,24879839,2
+ClaudiaS571,24879839,2
+fanfankuaipao,24879839,1
+67481946,24879839,3
+83082309,24879839,1
+ChicWeirdo,24879839,3
+Karilyn,24879839,1
+40970313,24879839,2
+70130998,24879839,1
+ouyeouye,24879839,4
+73247451,24879839,2
+41492377,24879839,3
+58065839,24879839,1
+fengvicky0528,24879839,4
+71121278,24879839,1
+64978409,24879839,2
+64978409,24879839,2
+taffybaby,24879839,4
+129167693,24879839,5
+2911617,24879839,3
+44738448,24879839,3
+75273723,24879839,5
+66954402,24879839,4
+TenMinutesOld,24879839,2
+120563382,24879839,2
+e-island,24879839,3
+zuoxiaoer,24879839,3
+69030272,24879839,3
+leteen,24879839,2
+53632201,24879839,3
+78465383,24879839,3
+60518554,24879839,5
+69569015,24879839,5
+lilyshen,24879839,2
+jinglee,24879839,2
+yoky,24879839,3
+69202815,24879839,3
+1609757,24879839,3
+72454425,24879839,3
+xin.,24879839,3
+43671403,24879839,3
+75228348,24879839,5
+49469222,24879839,2
+58956952,24879839,3
+3951138,24879839,3
+TonyLeungNCFan,24879839,2
+renmq,24879839,5
+74613147,24879839,1
+47846363,24879839,3
+81161875,24879839,3
+isfloyd,24879839,3
+69221955,24879839,4
+DAINYONG,24879839,1
+32454073,24879839,3
+small_matty,24879839,2
+wuxi4945,24879839,-1
+2314537,24879839,3
+hwf254,24879839,2
+jessepenguin,24879839,-1
+fkgh,24879839,4
+47508082,24879839,3
+119095420,24879839,2
+AYMA,24879839,1
+yanlifan,24879839,1
+vincentjones,24879839,4
+spankercat,24879839,3
+39068910,24879839,3
+Astice,24879839,1
+59820927,24879839,3
+a5811548,24879839,3
+76676760,24879839,-1
+3369417,24879839,3
+59378260,24879839,5
+fxss1978,24879839,3
+ceccion,24879839,3
+4547052,24879839,2
+122993134,24879839,2
+noheeyeon,24879839,-1
+80706483,24879839,3
+3681389,24879839,3
+1056656,24879839,4
+tusling,24879839,2
+daisysuo,24879839,4
+gigiloveblue,24879839,2
+69665050,24879839,1
+67720268,24879839,2
+60981917,24879839,4
+4336395,24879839,1
+kxy12567,24879839,4
+renzrxly,24879839,2
+67831727,24879839,3
+60624243,24879839,1
+127812113,24879839,1
+47920799,24879839,4
+Lifer,24879839,-1
+cutieo_o,24879839,3
+4350779,24879839,3
+ganju,24879839,1
+50848466,24879839,3
+wendell003,24879839,2
+33944850,24879839,-1
+chenpei0318521,24879839,3
+6154888,24879839,2
+115164997,24879839,-1
+yfqc24pippo,24879839,3
+mason0128,24879839,1
+music1645,24879839,-1
+huanxiaohengkg,24879839,5
+31207408,24879839,3
+rainhill,24879839,-1
+Avila_Yin,24879839,3
+56105601,24879839,-1
+69857662,24879839,1
+6382099,24879839,3
+69844852,24879839,4
+1193234,24879839,2
+53135584,24879839,2
+45498889,24879839,4
+hifrank,24879839,5
+127184799,24879839,4
+64238881,24879839,4
+113205287,24879839,4
+40260436,24879839,3
+yishiyiwu,24879839,4
+4320074,24879839,1
+ggysc1018,24879839,4
+kite2002,24879839,-1
+48699954,24879839,2
+summer_ending,24879839,2
+41743713,24879839,3
+93898892,24879839,5
+46307716,24879839,-1
+89301982,24879839,4
+79502375,24879839,-1
+60246775,24879839,2
+zhouand5923,24879839,2
+wait2000,24879839,4
+63174808,24879839,3
+45305916,24879839,2
+42936334,24879839,3
+1284659,24879839,3
+yingyujiaoshi,24879839,2
+92850508,24879839,4
+50353845,24879839,3
+72946203,24879839,3
+101930897,24879839,4
+46598833,24879839,5
+youngeryet,24879839,2
+53323022,24879839,3
+37031390,24879839,4
+36686250,24879839,5
+55858054,24879839,4
+51476263,24879839,5
+amwindy,24879839,5
+45837126,24879839,1
+Choc,24879839,1
+55404773,24879839,2
+45473045,24879839,1
+67575567,24879839,4
+linfact,24879839,2
+anjoyjoan,24879839,4
+chouchou35,24879839,3
+130223322,24879839,1
+viliyo,24879839,2
+woxingmi,24879839,2
+83215549,24879839,4
+48937128,24879839,3
+50269699,24879839,2
+48007426,24879839,2
+30714456,24879839,4
+lightreus,24879839,3
+shoonior,24879839,3
+54828478,24879839,1
+131048374,24879839,4
+23620876,24879839,3
+87313440,24879839,3
+44089294,24879839,-1
+53412927,24879839,2
+50341926,24879839,3
+75785153,24879839,4
+10613344,24879839,2
+Bonacci,24879839,3
+131048232,24879839,4
+46483444,24879839,2
+82719526,24879839,4
+63264576,24879839,4
+4777379,24879839,4
+25259616,24879839,1
+60411717,24879839,4
+quanetta,24879839,2
+41377524,24879839,1
+Lolita1881,24879839,3
+130642973,24879839,1
+57569538,24879839,3
+zhenzhenyui,24879839,3
+4079951,24879839,3
+93871758,24879839,3
+70819219,24879839,3
+colorwind,24879839,4
+54382305,24879839,3
+40698585,24879839,3
+68963474,24879839,3
+caoxiaoying,24879839,2
+62196307,24879839,2
+55962178,24879839,4
+wawaing,24879839,3
+3273386,24879839,2
+84056811,24879839,1
+114284723,24879839,3
+54153618,24879839,4
+43468449,24879839,2
+65237736,24879839,3
+susu1211,24879839,4
+4714516,24879839,1
+TimonPeng,24879839,1
+65672790,24879839,5
+shuaishuaia,24879839,3
+froggrandpa,24879839,3
+60771932,24879839,2
+liwenjieswust,24879839,2
+ohmyfriends,24879839,1
+53828979,24879839,3
+49650583,24879839,2
+Ann-e,24879839,3
+96480565,24879839,2
+zinedine22,24879839,2
+blue-shadow,24879839,2
+61703830,24879839,4
+thesong,24879839,1
+yan7478,24879839,3
+43421295,24879839,1
+64132891,24879839,4
+50727167,24879839,-1
+57930365,24879839,3
+sugertk,24879839,2
+lzt,24879839,2
+lzt,24879839,2
+candysunflower,24879839,4
+65400706,24879839,3
+55804173,24879839,3
+61304869,24879839,4
+63815973,24879839,4
+49232664,24879839,5
+49526632,24879839,3
+4090722,24879839,-1
+43906490,24879839,3
+67833038,24879839,4
+87865296,24879839,1
+dovely1sh,24879839,2
+zynhello,24879839,5
+119922121,24879839,1
+1295718,24879839,3
+63834472,24879839,4
+45459664,24879839,3
+56246021,24879839,1
+wsyu13,24879839,3
+47170402,24879839,3
+1873995,24879839,3
+78311255,24879839,2
+69125337,24879839,3
+3451324,24879839,1
+102426428,24879839,1
+36678476,24879839,1
+wettime,24879839,3
+samleq,24879839,3
+zydaydream,24879839,4
+elena-ye,24879839,-1
+75792815,24879839,4
+hydeshine,24879839,5
+84697082,24879839,5
+M475522,24879839,4
+OneiLulu,24879839,1
+54099440,24879839,2
+58289345,24879839,2
+dangogo,24879839,3
+104230597,24879839,3
+57725779,24879839,2
+76315009,24879839,4
+olive621,24879839,3
+Iamfull,24879839,4
+69615181,24879839,2
+anq,24879839,3
+qitian2013,24879839,1
+11913371,24879839,3
+1782024,24879839,4
+131023271,24879839,2
+68143727,24879839,3
+58505404,24879839,4
+HollyPhoenix,24879839,2
+84616878,24879839,2
+61336044,24879839,5
+2309738,24879839,1
+59113427,24879839,3
+116031531,24879839,3
+cijunbutileng,24879839,3
+bigsun5,24879839,3
+46289707,24879839,1
+kailuoge,24879839,4
+huhhot0471,24879839,2
+51126064,24879839,2
+84540844,24879839,3
+48646694,24879839,4
+1089017,24879839,-1
+wangxiang333,24879839,3
+63884258,24879839,2
+69274709,24879839,5
+51898920,24879839,3
+miqiucherry,24879839,5
+2340389,24879839,1
+53785455,24879839,5
+75156006,24879839,2
+lucifer-.,24879839,3
+aiyaxiaomeng,24879839,5
+50369256,24879839,1
+1539726,24879839,3
+17991181,24879839,4
+35079473,24879839,4
+supertouch,24879839,4
+56438841,24879839,3
+jw92113,24879839,4
+lichen_sun,24879839,3
+72542417,24879839,4
+taylordao,24879839,5
+59302581,24879839,3
+65895122,24879839,3
+can1st,24879839,4
+postr,24879839,3
+shrekD,24879839,1
+mamamiya226,24879839,5
+82489624,24879839,4
+120312874,24879839,3
+BALENO,24879839,2
+74948535,24879839,2
+Armande,24879839,3
+57445447,24879839,2
+pacinos,24879839,5
+zod,24879839,1
+91555657,24879839,2
+66535004,24879839,4
+42137156,24879839,3
+41295906,24879839,1
+oukani,24879839,4
+spaceli,24879839,3
+79381189,24879839,1
+IcePickJones,24879839,1
+hongshui,24879839,3
+67502392,24879839,4
+97431657,24879839,3
+130418392,24879839,3
+47108326,24879839,1
+Soft91,24879839,3
+roy_box,24879839,2
+74585346,24879839,1
+116703350,24879839,3
+64324702,24879839,3
+hzfortravel,24879839,-1
+63396418,24879839,3
+4338717,24879839,4
+1057780,24879839,3
+aaaaaaaaaaa,24879839,3
+medieval,24879839,5
+xiaoxiaoshuo,24879839,1
+46002739,24879839,3
+76824704,24879839,3
+binarytree,24879839,5
+54718050,24879839,4
+81607262,24879839,4
+51807331,24879839,3
+89488457,24879839,2
+chimianbaodemao,24879839,3
+alwayslo7e,24879839,4
+60946203,24879839,3
+82805385,24879839,4
+81504159,24879839,5
+9096101,24879839,1
+130474636,24879839,4
+64898172,24879839,4
+thiragun,24879839,5
+cup-whent,24879839,4
+fawaixiaoyao,24879839,5
+63413340,24879839,3
+lvqihuahua,24879839,1
+lovetatum,24879839,3
+72684898,24879839,2
+meijiangshi,24879839,1
+69261405,24879839,4
+zimu1990,24879839,3
+121410902,24879839,4
+1414370,24879839,1
+65364463,24879839,3
+yiwaishunji,24879839,3
+82245250,24879839,2
+chen1987,24879839,2
+120035398,24879839,3
+3280387,24879839,3
+55618939,24879839,5
+50213406,24879839,-1
+54358731,24879839,1
+zhaimozi,24879839,3
+94162680,24879839,4
+49543670,24879839,3
+125913784,24879839,4
+45903649,24879839,1
+44121315,24879839,2
+3561748,24879839,2
+94135529,24879839,3
+yangxiuhong,24879839,1
+64981286,24879839,3
+90846254,24879839,4
+ruguoshiyi,24879839,3
+38815134,24879839,2
+60733651,24879839,5
+3219666,24879839,3
+taken-tee,24879839,3
+54015533,24879839,1
+35597373,24879839,3
+3623903,24879839,3
+3005065,24879839,3
+yuyangaiyang,24879839,3
+ABoyIsUgly,24879839,5
+allenyao,24879839,2
+54374544,24879839,4
+59384775,24879839,5
+11396494,24879839,2
+65592563,24879839,2
+chen2011,24879839,4
+37366802,24879839,3
+3396223,24879839,3
+28313985,24879839,3
+runcastor,24879839,-1
+3845094,24879839,4
+51793957,24879839,2
+jaltahiti,24879839,-1
+viola-x,24879839,2
+xiaosuii,24879839,1
+feelzyl,24879839,4
+4508860,24879839,1
+graygem,24879839,3
+ADmoviemtime,24879839,3
+dodocancer,24879839,3
+zeng199072,24879839,1
+darling99,24879839,1
+87222005,24879839,4
+50139670,24879839,2
+49547973,24879839,3
+44709243,24879839,1
+116607290,24879839,1
+40541584,24879839,-1
+1855594,24879839,1
+76548979,24879839,2
+ziyu0802,24879839,5
+junyao29,24879839,1
+Anesthesiawd,24879839,3
+2849092,24879839,3
+59731496,24879839,3
+55637961,24879839,4
+45511772,24879839,3
+3629982,24879839,3
+wesing,24879839,5
+claireGuoDH,24879839,4
+sunaiyue,24879839,3
+yllovefish,24879839,5
+lyn.nb,24879839,5
+68496579,24879839,3
+37736612,24879839,2
+26116734,24879839,4
+3182538,24879839,2
+2029357,24879839,1
+46867363,24879839,4
+115835795,24879839,2
+73958470,24879839,3
+yangfengdouban,24879839,2
+xiaodoufu,24879839,3
+129838356,24879839,2
+1391193,24879839,2
+aboutz,24879839,4
+littlebomb,24879839,3
+57691329,24879839,2
+tobekalorce,24879839,3
+51399526,24879839,2
+tetrisjenny,24879839,3
+78954151,24879839,1
+47503404,24879839,1
+ohstephanie,24879839,-1
+tzizajuly,24879839,3
+4905173,24879839,3
+63083756,24879839,2
+82980188,24879839,4
+3782552,24879839,1
+semenov,24879839,4
+49514824,24879839,-1
+45508468,24879839,3
+34347136,24879839,3
+67050786,24879839,1
+3656028,24879839,5
+12388561,24879839,4
+summerbs,24879839,2
+annieaiannie,24879839,3
+graceanbaby,24879839,4
+37793108,24879839,4
+66580409,24879839,3
+49687721,24879839,2
+3627066,24879839,3
+northyluvhkbad,24879839,3
+97739031,24879839,-1
+81380591,24879839,1
+52587148,24879839,2
+128580925,24879839,2
+39950361,24879839,1
+himiya,24879839,3
+l00000000,24879839,3
+103551705,24879839,2
+Elizabeth-Lee,24879839,2
+flavia-huqing,24879839,2
+89997882,24879839,3
+deirdra,24879839,3
+78321047,24879839,1
+61042086,24879839,3
+73655682,24879839,5
+35051324,24879839,2
+kekexilijiu,24879839,2
+13148961,24879839,5
+ziyoushijiasuo,24879839,3
+3820776,24879839,3
+56646295,24879839,3
+130526552,24879839,3
+54961193,24879839,3
+44030490,24879839,1
+47273453,24879839,2
+luococo,24879839,4
+119583854,24879839,4
+83462778,24879839,4
+122901063,24879839,2
+yogi198791,24879839,1
+teabag,24879839,1
+49727842,24879839,3
+sunnual825,24879839,4
+54293276,24879839,5
+76102851,24879839,2
+4392147,24879839,1
+74162453,24879839,3
+65688183,24879839,3
+59991352,24879839,2
+Jennybaby,24879839,2
+alyosha-alyosha,24879839,2
+54116667,24879839,1
+wanzizhy,24879839,4
+su_mao,24879839,4
+66711883,24879839,4
+hellowdou,24879839,2
+55332677,24879839,3
+smartsz,24879839,4
+solo_jane,24879839,5
+summerji,24879839,4
+108942456,24879839,2
+59967519,24879839,-1
+44123388,24879839,-1
+45521984,24879839,3
+chichaofan,24879839,3
+55890752,24879839,2
+51586612,24879839,3
+huahetao,24879839,1
+vip888888888,24879839,3
+2528826,24879839,3
+Cheney_cy,24879839,4
+2632584,24879839,2
+levitating,24879839,3
+53560863,24879839,3
+90413201,24879839,4
+52918154,24879839,3
+wangtianchang,24879839,3
+dayu0001,24879839,1
+79669043,24879839,1
+7834323,24879839,2
+Aiyouyouyouyou,24879839,5
+youlala,24879839,3
+justlovezhuzhu,24879839,3
+ineedAV,24879839,1
+71856260,24879839,3
+37615847,24879839,4
+88603301,24879839,2
+chekee,24879839,4
+52902931,24879839,1
+51225776,24879839,3
+xfjzoe,24879839,3
+33854264,24879839,3
+starrynightforu,24879839,2
+vimpiric,24879839,1
+nobodyhome,24879839,2
+ly_yun811,24879839,2
+28978843,24879839,3
+62974718,24879839,3
+4279976,24879839,2
+yidakefacaishu,24879839,4
+35684219,24879839,4
+Dasiycat,24879839,3
+Dasiycat,24879839,3
+129708517,24879839,1
+zhuamax,24879839,2
+qinlang1900,24879839,2
+sullivan_lee,24879839,3
+houze,24879839,3
+Song1183,24879839,2
+jhy007,24879839,3
+EBEMASH,24879839,2
+yuannyin,24879839,2
+3606660,24879839,2
+61661148,24879839,5
+48884816,24879839,2
+75067428,24879839,4
+47904697,24879839,5
+29469143,24879839,4
+junejoe,24879839,4
+shaonvc,24879839,2
+2777892,24879839,4
+ranzhi,24879839,3
+ranzhi,24879839,3
+78910092,24879839,2
+Ayuland,24879839,3
+80786128,24879839,2
+88661228,24879839,3
+angieangie,24879839,3
+cathrineeyes,24879839,3
+ashes-and-snow,24879839,4
+tofuchico,24879839,3
+Leslie_ontheway,24879839,4
+hibaruna,24879839,4
+lugeast,24879839,4
+91252045,24879839,3
+49418955,24879839,3
+Rainbowww,24879839,2
+ILIVEBOOKS,24879839,3
+sunshinewang,24879839,2
+44716464,24879839,2
+danta,24879839,3
+fayfayhao,24879839,3
+xuyuny252,24879839,3
+byhimself,24879839,5
+94941294,24879839,4
+44835567,24879839,2
+pinksep,24879839,4
+sissistar,24879839,3
+49866554,24879839,3
+60129247,24879839,3
+17709759,24879839,1
+loverebel,24879839,2
+MomoHorin,24879839,3
+Maggie_kk,24879839,1
+50081796,24879839,1
+mushimushi,24879839,4
+oxolin,24879839,2
+67836204,24879839,2
+79883216,24879839,4
+bianmengso,24879839,2
+fangxiaotang,24879839,1
+lovesea,24879839,3
+Kissjiner,24879839,5
+ruxiaoguo,24879839,4
+121180696,24879839,1
+suzhilingyu,24879839,1
+2856840,24879839,4
+48194135,24879839,2
+dandan.g,24879839,1
+hcaelb,24879839,2
+56916670,24879839,2
+51235598,24879839,3
+73687210,24879839,2
+alwaysgrace,24879839,5
+CRA1G,24879839,2
+45385294,24879839,2
+62444402,24879839,2
+128233501,24879839,4
+128799799,24879839,2
+51402436,24879839,3
+renlon,24879839,3
+84948272,24879839,3
+126687571,24879839,3
+49893614,24879839,1
+vision-sv,24879839,2
+53251569,24879839,3
+3848544,24879839,4
+42069458,24879839,3
+34620481,24879839,5
+3954052,24879839,4
+yoyoyoyou,24879839,4
+57400243,24879839,-1
+meco,24879839,4
+52930112,24879839,2
+Apache1993,24879839,4
+bina,24879839,3
+130937387,24879839,3
+121754243,24879839,5
+51936728,24879839,1
+51582662,24879839,2
+L0711,24879839,4
+15463902,24879839,2
+dongkeyuan,24879839,4
+50433074,24879839,5
+61938788,24879839,3
+2209447,24879839,2
+130174822,24879839,-1
+47845845,24879839,2
+2696668,24879839,5
+liuxunsimida,24879839,1
+59062761,24879839,1
+56687999,24879839,1
+chenshuting0919,24879839,2
+Mzhi,24879839,-1
+60408856,24879839,3
+philipcui,24879839,1
+55389424,24879839,3
+daizhongjie,24879839,2
+13731883,24879839,-1
+wangliuwei,24879839,3
+93667570,24879839,3
+89759439,24879839,3
+ke__ke,24879839,3
+126145633,24879839,5
+84393372,24879839,4
+4542511,24879839,2
+99655397,24879839,4
+63871072,24879839,3
+SM0916,24879839,3
+93197518,24879839,2
+75546836,24879839,4
+84627333,24879839,2
+48883608,24879839,3
+70193767,24879839,3
+woshitantan,24879839,-1
+126688884,24879839,3
+53385321,24879839,3
+ouan,24879839,1
+4113291,24879839,-1
+52847252,24879839,2
+woyaomoney,24879839,2
+82399262,24879839,1
+GracieG,24879839,-1
+crazies,24879839,-1
+46942165,24879839,2
+25217510,24879839,2
+qcystudio,24879839,3
+59995629,24879839,3
+121481602,24879839,3
+45937767,24879839,4
+ken_zhou,24879839,2
+danni,24879839,3
+72100657,24879839,3
+dearFreundin,24879839,2
+tmj3,24879839,3
+67644601,24879839,4
+63079253,24879839,4
+130965448,24879839,1
+74343211,24879839,4
+56255980,24879839,4
+50236723,24879839,1
+2946021,24879839,3
+iliahuy,24879839,1
+pizipang,24879839,2
+villus,24879839,3
+64091286,24879839,2
+40254460,24879839,2
+spgsw,24879839,2
+SH51244,24879839,3
+51338478,24879839,4
+130963853,24879839,4
+DVforever,24879839,4
+125373422,24879839,-1
+3856901,24879839,3
+105736560,24879839,2
+echoliuxiao,24879839,4
+124670596,24879839,4
+60307625,24879839,3
+34623045,24879839,3
+55640247,24879839,4
+2999319,24879839,1
+cmart,24879839,1
+4560084,24879839,1
+3774349,24879839,3
+130190354,24879839,4
+sodiumy,24879839,3
+suev,24879839,2
+43397816,24879839,3
+vvish,24879839,4
+84563751,24879839,2
+129548995,24879839,1
+121618912,24879839,3
+121805751,24879839,5
+4847438,24879839,3
+56444785,24879839,4
+sylar_chan,24879839,2
+shizong,24879839,-1
+61803841,24879839,2
+10208465,24879839,3
+3554958,24879839,4
+catfood,24879839,2
+3908149,24879839,3
+zeg,24879839,-1
+Joycejingtong,24879839,2
+56008038,24879839,3
+nuan950707,24879839,1
+Tree4,24879839,4
+Arenas4.-_-Hreo,24879839,2
+69248680,24879839,5
+moonlit4,24879839,4
+cloverllx,24879839,2
+45741256,24879839,-1
+36452184,24879839,1
+QuincyCaz,24879839,-1
+1974273,24879839,3
+49298107,24879839,3
+49155241,24879839,5
+wangyiqiu,24879839,3
+50563105,24879839,2
+heartmas,24879839,3
+79833310,24879839,1
+sevseven,24879839,3
+5664792,24879839,-1
+120179899,24879839,3
+cathrynlv,24879839,1
+104402849,24879839,2
+63691279,24879839,5
+43409515,24879839,5
+23543610,24879839,5
+13441174,24879839,2
+nearlygod,24879839,4
+shanhuaer,24879839,3
+3534002,24879839,2
+67262547,24879839,2
+63769741,24879839,4
+17471764,24879839,-1
+s-a-d,24879839,3
+tianshumao,24879839,4
+vicW,24879839,3
+79926360,24879839,5
+nil4,24879839,3
+51800781,24879839,2
+sunnydollzx,24879839,3
+fragile_guoguo,24879839,3
+35782756,24879839,3
+ruilixiurui,24879839,4
+21147092,24879839,5
+23194406,24879839,3
+3522938,24879839,4
+46505445,24879839,4
+52910862,24879839,5
+niubility1258,24879839,5
+wu_jingwen,24879839,5
+67348705,24879839,1
+gaogao0507,24879839,4
+52870411,24879839,3
+2422304,24879839,3
+SunnyHRZ,24879839,3
+45657672,24879839,3
+75377218,24879839,2
+47810945,24879839,3
+50873714,24879839,2
+50873714,24879839,2
+karenchen,24879839,3
+51611294,24879839,3
+archtrust,24879839,2
+90031915,24879839,5
+54772042,24879839,2
+60358393,24879839,4
+89734111,24879839,4
+rainzee,24879839,1
+51763445,24879839,3
+46207489,24879839,3
+68698952,24879839,2
+1263839,24879839,4
+1200829,24879839,3
+87907452,24879839,3
+52449324,24879839,3
+69556914,24879839,3
+126514473,24879839,3
+51947959,24879839,4
+107347652,24879839,4
+79301017,24879839,3
+126949865,24879839,4
+tttuan,24879839,2
+44753719,24879839,3
+gua.,24879839,2
+Mangocc,24879839,3
+jocelyn1213,24879839,3
+53385600,24879839,4
+50414498,24879839,2
+2094664,24879839,-1
+laughat,24879839,4
+49705536,24879839,4
+55969472,24879839,3
+yuruo,24879839,3
+2556660,24879839,2
+52599155,24879839,4
+1450381,24879839,3
+gudushamo,24879839,1
+120070082,24879839,3
+everlastingEGO,24879839,2
+yelisi,24879839,3
+emilyrubbish,24879839,4
+102747303,24879839,1
+31739750,24879839,2
+2111882,24879839,3
+73189108,24879839,2
+cuixuelei,24879839,3
+54571422,24879839,3
+50745514,24879839,3
+72316189,24879839,2
+104813629,24879839,3
+81109161,24879839,3
+wxsw,24879839,2
+xk13,24879839,2
+126344543,24879839,3
+ravinenoravine,24879839,2
+supervigor,24879839,3
+91515979,24879839,2
+67677954,24879839,3
+changemelwy,24879839,4
+75169318,24879839,3
+erlica,24879839,3
+45855864,24879839,3
+4531781,24879839,1
+115534736,24879839,4
+28737066,24879839,1
+1565710,24879839,3
+guanchen76,24879839,2
+zzjjk5,24879839,1
+Y-Lillian,24879839,5
+Minus-M,24879839,3
+121567803,24879839,2
+61024868,24879839,4
+1200610,24879839,3
+treeman,24879839,4
+57588789,24879839,2
+125738022,24879839,2
+1786605,24879839,2
+Anne1003,24879839,1
+50111985,24879839,2
+43023380,24879839,5
+52198048,24879839,1
+doubledou,24879839,2
+120692860,24879839,3
+59120246,24879839,3
+maxiangyang,24879839,5
+124307188,24879839,3
+61719158,24879839,4
+125806599,24879839,1
+41430865,24879839,2
+46180905,24879839,3
+68918230,24879839,2
+zhouyuan0124,24879839,4
+chuck0jessie,24879839,2
+lidanhua,24879839,1
+2382500,24879839,1
+76529709,24879839,2
+58325786,24879839,2
+62257792,24879839,5
+mikiaries,24879839,3
+lavende,24879839,3
+52796894,24879839,3
+57391761,24879839,3
+55978332,24879839,3
+scarlett_yang,24879839,4
+68186986,24879839,2
+45064993,24879839,1
+79499233,24879839,2
+4153454,24879839,1
+racheal0711,24879839,3
+huolaogun,24879839,1
+zhl19741130520,24879839,4
+74551171,24879839,2
+indd,24879839,3
+77316354,24879839,2
+72259654,24879839,4
+54757063,24879839,4
+bluejessica,24879839,3
+43105295,24879839,1
+16902359,24879839,5
+61209876,24879839,3
+56326446,24879839,2
+64768670,24879839,3
+73647644,24879839,3
+mouqingyang,24879839,2
+115826046,24879839,-1
+Ekhome,24879839,3
+58636228,24879839,3
+59386777,24879839,5
+46058827,24879839,2
+51445012,24879839,4
+3365504,24879839,5
+down_0,24879839,4
+1482901,24879839,2
+taojingyu1996,24879839,3
+66783280,24879839,3
+44263640,24879839,2
+insomnia,24879839,3
+AprilWannaBe,24879839,3
+53505227,24879839,3
+81138274,24879839,1
+96233508,24879839,2
+56604899,24879839,3
+65520405,24879839,3
+yoyoyoyoyoyoyo,24879839,1
+emotion7,24879839,2
+57674944,24879839,3
+kuyishi,24879839,1
+68510057,24879839,-1
+joyceatobe,24879839,3
+102238622,24879839,2
+73016853,24879839,3
+62587199,24879839,2
+carboot,24879839,1
+3595293,24879839,4
+YYDEE,24879839,3
+Rocky_neverland,24879839,-1
+wjscxx,24879839,1
+bonjourlouise,24879839,3
+42152311,24879839,2
+mouseRachel,24879839,2
+STILLWATERRUNS,24879839,2
+roseforu,24879839,3
+waltertao,24879839,3
+13903375,24879839,3
+113943553,24879839,5
+41242185,24879839,2
+wxiaotan,24879839,3
+kingkid,24879839,4
+3791437,24879839,2
+48062463,24879839,3
+64245784,24879839,3
+4342819,24879839,2
+17337672,24879839,4
+83745562,24879839,3
+BassMad,24879839,1
+125208149,24879839,3
+tantmieux,24879839,1
+3977217,24879839,-1
+hellotina,24879839,3
+104062670,24879839,3
+skeleton4125,24879839,3
+87603831,24879839,3
+64000366,24879839,1
+1717187,24879839,4
+50144553,24879839,2
+81030268,24879839,4
+62628758,24879839,2
+larry2012,24879839,2
+66784871,24879839,1
+32728165,24879839,5
+ock,24879839,3
+4119152,24879839,4
+55312255,24879839,3
+2560330,24879839,2
+lucasyuliu,24879839,1
+75739395,24879839,2
+miu-Wolf,24879839,3
+dogtile_vicky,24879839,1
+45406205,24879839,2
+45406205,24879839,2
+73051410,24879839,2
+alianhei,24879839,4
+37335288,24879839,3
+80102890,24879839,1
+nianse,24879839,1
+Light_L,24879839,-1
+WXbmouth,24879839,3
+Tracy.Wan,24879839,1
+sodasue,24879839,4
+53256326,24879839,3
+akert,24879839,2
+1424866,24879839,1
+smalldandelion,24879839,3
+111711289,24879839,3
+lonaliu,24879839,1
+2804944,24879839,3
+1335533,24879839,4
+3581002,24879839,4
+cucyues,24879839,3
+lovest500,24879839,3
+31613597,24879839,3
+SELVEN,24879839,4
+83313626,24879839,1
+shaochaowen,24879839,4
+sylcp,24879839,3
+MollyMollyMolly,24879839,4
+49545627,24879839,2
+62369741,24879839,3
+129759858,24879839,5
+49161074,24879839,3
+sue04,24879839,2
+meathill,24879839,1
+crazydj,24879839,4
+46752636,24879839,2
+sweetestdreams,24879839,5
+47893556,24879839,4
+74628004,24879839,2
+mayooop,24879839,2
+Xiaodalang,24879839,3
+57467059,24879839,1
+47722518,24879839,2
+66240833,24879839,1
+65573986,24879839,4
+69475039,24879839,2
+50214296,24879839,3
+51606142,24879839,2
+79699046,24879839,3
+51138955,24879839,3
+nascent,24879839,4
+2725757,24879839,4
+3160589,24879839,3
+1756962,24879839,5
+zmx123,24879839,3
+iammyself,24879839,3
+boffin,24879839,2
+guoyeh,24879839,1
+ggrise,24879839,1
+hamixiong0926,24879839,3
+82237419,24879839,2
+82237419,24879839,2
+63052384,24879839,4
+25637248,24879839,4
+Mdoudou,24879839,4
+51058884,24879839,4
+36877826,24879839,1
+shengworld,24879839,4
+55295040,24879839,1
+65361184,24879839,1
+34664148,24879839,4
+47599296,24879839,3
+Se7en_n,24879839,4
+grayguy,24879839,3
+4284000,24879839,4
+33696350,24879839,1
+63617713,24879839,2
+ljojingle,24879839,4
+67011634,24879839,1
+72712114,24879839,3
+129389032,24879839,4
+81118604,24879839,3
+bluaxe,24879839,1
+44157753,24879839,4
+45319686,24879839,2
+65717651,24879839,3
+119399510,24879839,5
+67145023,24879839,1
+MrChristy,24879839,3
+64136119,24879839,3
+juvenility,24879839,3
+64244763,24879839,3
+heechulholic,24879839,3
+76193646,24879839,2
+120902753,24879839,5
+2173034,24879839,-1
+130896700,24879839,5
+79947629,24879839,1
+97060953,24879839,-1
+84575691,24879839,1
+zzxxzz,24879839,1
+95883894,24879839,3
+61992166,24879839,1
+dreamcatcher17,24879839,3
+69706653,24879839,2
+andy-channel,24879839,5
+4340100,24879839,1
+8238892,24879839,2
+120418587,24879839,3
+128767774,24879839,4
+pumpkin0,24879839,5
+61733254,24879839,2
+62775210,24879839,3
+53831944,24879839,2
+75810755,24879839,3
+Haididelan,24879839,4
+50540249,24879839,3
+38876439,24879839,3
+xdx88,24879839,5
+xiaobenma,24879839,4
+syvialee23,24879839,5
+ntz521,24879839,4
+maharaga,24879839,3
+64695712,24879839,2
+catfacegirl,24879839,3
+49084381,24879839,3
+uumay,24879839,2
+whz1990911,24879839,1
+129811376,24879839,1
+45238478,24879839,2
+dhgx,24879839,3
+41649419,24879839,4
+45099103,24879839,2
+crueldy,24879839,4
+3859112,24879839,4
+cerop,24879839,3
+41089133,24879839,2
+82549470,24879839,4
+102456258,24879839,5
+89371386,24879839,3
+44150163,24879839,2
+58924121,24879839,2
+60662074,24879839,-1
+7989655,24879839,1
+45416494,24879839,3
+64858112,24879839,3
+47346400,24879839,3
+jywpl,24879839,2
+2113603,24879839,2
+vane918,24879839,3
+eightails,24879839,2
+mlzizi,24879839,2
+Huxuan0522,24879839,3
+JTimberlake,24879839,4
+salome69,24879839,-1
+130888061,24879839,5
+120315786,24879839,3
+aqweji,24879839,5
+2699313,24879839,4
+115613463,24879839,4
+ccccccIty,24879839,1
+114533607,24879839,5
+48502234,24879839,1
+104082016,24879839,1
+navijethro,24879839,2
+duduxiongzhifu,24879839,1
+53835290,24879839,1
+wall..,24879839,1
+Aggie221,24879839,-1
+mustafay,24879839,2
+80703672,24879839,3
+50136165,24879839,3
+67514988,24879839,3
+67605510,24879839,3
+51965075,24879839,4
+45394278,24879839,3
+51592058,24879839,3
+75015059,24879839,-1
+2485084,24879839,3
+zhuxinyi,24879839,2
+zhouqiao,24879839,1
+71288655,24879839,1
+3880595,24879839,2
+122281583,24879839,4
+3061850,24879839,4
+loli_ta_,24879839,3
+55491979,24879839,3
+39833999,24879839,2
+renrumao,24879839,3
+xierui1841,24879839,2
+39577574,24879839,2
+46266851,24879839,4
+54991842,24879839,1
+vantasy,24879839,1
+77099096,24879839,2
+94367983,24879839,4
+bluerider,24879839,3
+1605000,24879839,2
+66604481,24879839,3
+49127496,24879839,1
+momo0724,24879839,3
+58454071,24879839,3
+119254265,24879839,2
+52499863,24879839,4
+57775883,24879839,3
+VAR_nowhere,24879839,5
+59347517,24879839,5
+2596903,24879839,2
+maryoasis,24879839,2
+52437795,24879839,5
+71862680,24879839,2
+58297666,24879839,3
+princessvivian,24879839,2
+51778813,24879839,2
+22839446,24879839,3
+61171378,24879839,2
+Jyr_112358,24879839,1
+66040410,24879839,2
+69420649,24879839,1
+48149471,24879839,-1
+54345487,24879839,5
+hachien,24879839,3
+51361935,24879839,3
+1278470,24879839,3
+Georgewen,24879839,3
+124778162,24879839,5
+99508404,24879839,4
+fengdemengxiang,24879839,1
+susidai,24879839,4
+qswoomsb,24879839,3
+3732379,24879839,5
+48036288,24879839,1
+Chlujy,24879839,2
+54947463,24879839,2
+123294731,24879839,3
+Erica1011,24879839,3
+sana321,24879839,5
+63101856,24879839,3
+39228377,24879839,4
+2927344,24879839,2
+38487515,24879839,3
+47288802,24879839,2
+76931391,24879839,2
+44976171,24879839,3
+64495212,24879839,2
+67163006,24879839,3
+Rinascita,24879839,1
+whc4956,24879839,3
+3573467,24879839,3
+52383327,24879839,2
+FeeSouler,24879839,4
+mymydemon,24879839,3
+pannnnnnnda,24879839,3
+forjinger,24879839,3
+birdynaomi,24879839,5
+2343743,24879839,2
+heechen,24879839,4
+78690911,24879839,2
+81084741,24879839,2
+35477330,24879839,1
+huahuadaisy,24879839,2
+zoethree,24879839,3
+130880509,24879839,3
+maxiaobei,24879839,-1
+z2377087573,24879839,3
+2049714,24879839,3
+jinasong,24879839,3
+zhanghutou1215,24879839,5
+99433073,24879839,2
+Kamelia-Jia,24879839,3
+iamdengdeng,24879839,4
+buguameng,24879839,4
+58642636,24879839,2
+56164157,24879839,1
+47656481,24879839,1
+dywinlo,24879839,3
+coffee-tree,24879839,4
+114657880,24879839,4
+43378287,24879839,4
+47665941,24879839,2
+grani_air,24879839,3
+vienna76,24879839,4
+83778628,24879839,4
+1574050,24879839,5
+qimaoyu,24879839,5
+66657271,24879839,3
+66981665,24879839,3
+1815039,24879839,2
+81589227,24879839,3
+bellaG,24879839,3
+tanlin8711,24879839,2
+63068612,24879839,3
+kona,24879839,1
+taoerduo,24879839,4
+64752331,24879839,3
+46735351,24879839,5
+25968212,24879839,3
+129851260,24879839,3
+vinnywang,24879839,3
+NatalieD,24879839,2
+fm4714,24879839,2
+fm4714,24879839,2
+fifadcl,24879839,5
+yangqihang,24879839,3
+129501673,24879839,2
+kartso,24879839,4
+mutangdan,24879839,2
+54088954,24879839,3
+dujinpeng226,24879839,1
+45556826,24879839,4
+3246025,24879839,1
+blbb1230,24879839,4
+vincente,24879839,4
+98436048,24879839,1
+greatdung,24879839,3
+84548876,24879839,1
+gezixiong,24879839,1
+maoyaoeryi,24879839,3
+85482709,24879839,2
+61721612,24879839,-1
+48764091,24879839,2
+ihana,24879839,3
+122484981,24879839,2
+87892417,24879839,5
+122578622,24879839,1
+51828562,24879839,3
+sweetmiracle,24879839,3
+80979709,24879839,4
+101613680,24879839,3
+vanjohnbob,24879839,-1
+47679672,24879839,3
+79309643,24879839,5
+122548201,24879839,5
+SoIwannago,24879839,4
+61926406,24879839,3
+71720681,24879839,4
+77844767,24879839,3
+36110840,24879839,5
+echolbecho,24879839,4
+doratora,24879839,3
+jara,24879839,3
+52699321,24879839,3
+60210500,24879839,4
+graciezc,24879839,2
+3083490,24879839,4
+joycew0318,24879839,3
+47881810,24879839,4
+zuoshoudezuo,24879839,3
+61514355,24879839,3
+Ryanzeng,24879839,-1
+3014371,24879839,1
+51945136,24879839,2
+bodysun,24879839,3
+QQXLH,24879839,1
+54172092,24879839,5
+zjcgame,24879839,2
+113050393,24879839,3
+56797287,24879839,5
+alisonxxxx,24879839,4
+2718336,24879839,3
+missfei0928,24879839,3
+thekk,24879839,3
+91178835,24879839,3
+64946528,24879839,4
+47846708,24879839,2
+Shannon0616,24879839,1
+3039964,24879839,1
+no_thx,24879839,2
+orangeT,24879839,2
+goodgoodtamashi,24879839,1
+blemoguy,24879839,4
+62281464,24879839,1
+yelano,24879839,4
+SAOSAOMA,24879839,-1
+flyaumner,24879839,3
+130492420,24879839,4
+119992317,24879839,3
+40518476,24879839,3
+27658050,24879839,4
+64784968,24879839,-1
+StellaLiu0331,24879839,2
+lordsun666,24879839,2
+32801142,24879839,4
+L_Y_7,24879839,3
+116600876,24879839,4
+102289527,24879839,3
+superharryfan7,24879839,-1
+linbingjing,24879839,4
+76818566,24879839,2
+xiaobus,24879839,1
+finger_c,24879839,-1
+51629650,24879839,2
+75678243,24879839,3
+supertrf,24879839,4
+wssunny,24879839,5
+44847589,24879839,5
+36840213,24879839,2
+86193477,24879839,2
+lynn_for,24879839,2
+91036793,24879839,2
+77905956,24879839,3
+brith,24879839,-1
+dodorene,24879839,-1
+69686191,24879839,2
+aorta,24879839,3
+57048842,24879839,5
+53669377,24879839,2
+77774632,24879839,2
+songdajia,24879839,4
+haluway,24879839,3
+71502466,24879839,1
+41541704,24879839,3
+1122936,24879839,1
+Miss_whale,24879839,3
+devil-grin,24879839,1
+mwangym,24879839,2
+126594883,24879839,2
+130225502,24879839,2
+127719238,24879839,1
+60800603,24879839,5
+zhangpengtao,24879839,4
+35403176,24879839,5
+cellurc,24879839,3
+47849312,24879839,4
+blueshadow30,24879839,2
+ciseibian,24879839,1
+3413987,24879839,3
+76081150,24879839,1
+seaskyLK,24879839,4
+weixiaol,24879839,3
+shengxiacanlan,24879839,5
+94872079,24879839,1
+jack13,24879839,1
+2146274,24879839,2
+caprice_vvn,24879839,2
+51517839,24879839,3
+2393516,24879839,2
+52030611,24879839,4
+AlexandraC,24879839,2
+yt1215,24879839,3
+47071735,24879839,2
+Perry_Chan,24879839,3
+ScarlettCheung,24879839,3
+Illiteracyyy,24879839,2
+34558131,24879839,3
+63048659,24879839,1
+xibeigua,24879839,4
+2238966,24879839,3
+fishsiu,24879839,2
+DarkSinger,24879839,2
+53441689,24879839,4
+laidiya,24879839,4
+46168276,24879839,2
+67529255,24879839,4
+28904947,24879839,3
+44539777,24879839,1
+3369909,24879839,5
+v_i_v_i,24879839,3
+59590971,24879839,3
+72997899,24879839,4
+71528633,24879839,2
+qi-shao-shang,24879839,3
+84310892,24879839,3
+natalias,24879839,-1
+55740203,24879839,5
+46660321,24879839,2
+five3,24879839,2
+wangzhiyu,24879839,5
+doloresel,24879839,4
+13837978,24879839,4
+asparku,24879839,2
+74307949,24879839,5
+80060056,24879839,2
+57407045,24879839,1
+Str,24879839,1
+21944459,24879839,2
+blueriver007,24879839,2
+Yugu,24879839,3
+50226054,24879839,3
+63887891,24879839,3
+zingxx,24879839,3
+52034458,24879839,3
+53936236,24879839,-1
+2778486,24879839,2
+nightink,24879839,2
+43549056,24879839,2
+55982157,24879839,3
+ljsmile,24879839,2
+58400700,24879839,4
+moon1129,24879839,3
+4203960,24879839,2
+65053075,24879839,2
+65483395,24879839,1
+4811269,24879839,3
+lls17,24879839,4
+54646150,24879839,5
+qinlou,24879839,4
+69967091,24879839,5
+3157228,24879839,3
+quiettree,24879839,1
+130556036,24879839,2
+queenmaria,24879839,3
+anna012,24879839,3
+orangexc621,24879839,3
+WarmLight,24879839,-1
+48508592,24879839,1
+2480615,24879839,5
+2766865,24879839,3
+lazypussy,24879839,3
+faye1023,24879839,1
+He.Loves.QKL,24879839,2
+4861512,24879839,4
+45941539,24879839,4
+2876965,24879839,5
+bue,24879839,3
+acapellaminuet,24879839,4
+54537877,24879839,2
+56186734,24879839,1
+1521152,24879839,3
+1458725,24879839,3
+whatmike,24879839,2
+2474699,24879839,1
+31299128,24879839,3
+43842293,24879839,4
+1569342,24879839,2
+xiaoxiaopaomo,24879839,1
+3522199,24879839,3
+116273864,24879839,2
+48007103,24879839,4
+49316177,24879839,1
+43955073,24879839,1
+monicachan,24879839,3
+53997125,24879839,2
+74759775,24879839,-1
+3398961,24879839,3
+42621901,24879839,2
+67388458,24879839,1
+60715343,24879839,3
+64506068,24879839,3
+71210783,24879839,2
+51215014,24879839,2
+1448932,24879839,1
+33446855,24879839,4
+104745481,24879839,2
+fionasu,24879839,4
+54233711,24879839,2
+timemachine5,24879839,4
+44381485,24879839,3
+28687313,24879839,2
+88585490,24879839,2
+49020270,24879839,3
+47779638,24879839,2
+48333089,24879839,2
+54985336,24879839,3
+Wenqian,24879839,2
+58907756,24879839,-1
+75117769,24879839,3
+46243415,24879839,4
+xiaojidunmoguxi,24879839,3
+21147913,24879839,3
+54731797,24879839,3
+100337753,24879839,2
+127975111,24879839,3
+1709511,24879839,1
+monstersimon,24879839,2
+2754284,24879839,2
+54588486,24879839,3
+chkx,24879839,1
+28864309,24879839,4
+34440415,24879839,-1
+mushroom16,24879839,4
+white817,24879839,2
+103756653,24879839,1
+36757046,24879839,5
+elephantjun,24879839,3
+31497247,24879839,1
+kidrabbit,24879839,3
+nightly,24879839,2
+Alicescat,24879839,2
+33526716,24879839,3
+Roseate,24879839,1
+xinxinyu,24879839,3
+candaes,24879839,2
+58764574,24879839,3
+90512502,24879839,3
+52025578,24879839,2
+50629690,24879839,4
+3610411,24879839,3
+vivihiblog,24879839,5
+84171597,24879839,4
+iamwonderful,24879839,1
+84745488,24879839,3
+57244499,24879839,-1
+68918623,24879839,4
+jessica106,24879839,1
+73496560,24879839,4
+yamap0jin,24879839,4
+huoshuyinhua,24879839,3
+35858823,24879839,4
+51316179,24879839,3
+2216751,24879839,3
+raphaeldye,24879839,2
+64787275,24879839,5
+viki396,24879839,1
+62398359,24879839,1
+64345409,24879839,3
+77095525,24879839,3
+61472693,24879839,4
+40482611,24879839,2
+zhangxuncc,24879839,3
+2056209,24879839,3
+mitushutong,24879839,-1
+aprilliusiyue,24879839,5
+dodofish,24879839,1
+daleyguo,24879839,3
+1460018,24879839,3
+Aimovie,24879839,2
+78667857,24879839,3
+34939485,24879839,2
+46266479,24879839,-1
+101992598,24879839,3
+108253828,24879839,3
+114115243,24879839,1
+sunlightrobbery,24879839,1
+alv1023,24879839,2
+hou_yuting,24879839,-1
+Celethy,24879839,2
+44072171,24879839,3
+67547776,24879839,2
+damao7923,24879839,2
+jlpie,24879839,2
+petit-poisson,24879839,2
+74448596,24879839,5
+91670876,24879839,4
+67632250,24879839,4
+126349945,24879839,1
+4219670,24879839,4
+Hrypenlyandroid,24879839,5
+101249753,24879839,3
+4712441,24879839,3
+wujiuri,24879839,5
+66880325,24879839,4
+57972366,24879839,2
+clairez,24879839,2
+65145861,24879839,3
+55764121,24879839,2
+80822437,24879839,1
+wen_Schwartz,24879839,2
+sysysysy,24879839,2
+shoushouan,24879839,-1
+40710285,24879839,3
+doubansi,24879839,2
+2325349,24879839,3
+47071616,24879839,3
+liushu1987,24879839,4
+36116565,24879839,1
+warmestwinter,24879839,2
+70214405,24879839,3
+evanie2046,24879839,2
+38564804,24879839,1
+puppyyyyyyyyyyy,24879839,4
+Miaodeling,24879839,3
+52233629,24879839,2
+70950521,24879839,4
+71655061,24879839,3
+46738101,24879839,2
+66831677,24879839,3
+3880012,24879839,4
+36883436,24879839,2
+2459227,24879839,-1
+48193970,24879839,1
+3372957,24879839,2
+54500977,24879839,5
+53982181,24879839,3
+lj-family,24879839,2
+cadyxuan,24879839,3
+51476835,24879839,1
+35076658,24879839,-1
+twinslt,24879839,3
+66023684,24879839,3
+65521542,24879839,2
+44351082,24879839,4
+65080268,24879839,2
+iano,24879839,-1
+2275412,24879839,1
+38989368,24879839,5
+59103700,24879839,5
+16048346,24879839,3
+ivvvvvvvvy,24879839,1
+hansey1994,24879839,3
+sihaoyi816,24879839,4
+xr-single,24879839,4
+ClaireL,24879839,2
+63306444,24879839,1
+fufu28,24879839,3
+120883145,24879839,1
+mamoshang,24879839,1
+70914686,24879839,3
+66759944,24879839,2
+feibaobei,24879839,3
+105325845,24879839,3
+marzbilly,24879839,5
+Stopcasting,24879839,4
+42267736,24879839,3
+1590605,24879839,4
+1582961,24879839,4
+bianziwaiwai,24879839,2
+43312634,24879839,5
+Isabella0712,24879839,1
+42400179,24879839,5
+kiray226,24879839,5
+70029183,24879839,3
+58521972,24879839,3
+Little-Shaily,24879839,-1
+66809666,24879839,2
+bettylwx,24879839,2
+87956504,24879839,3
+59752258,24879839,5
+laputaw,24879839,2
+xiaowangzi1984,24879839,5
+Serena201314,24879839,4
+76165337,24879839,2
+hechenxi,24879839,-1
+zjxcxm,24879839,1
+superwhs,24879839,1
+longway771,24879839,1
+62976329,24879839,4
+62709413,24879839,4
+121215156,24879839,2
+31679098,24879839,4
+ochy,24879839,4
+ooooooo61,24879839,2
+43275344,24879839,4
+7876056,24879839,1
+1022788,24879839,4
+tigermian,24879839,2
+53479679,24879839,3
+2563465,24879839,5
+25572888,24879839,2
+Summer-isKing,24879839,3
+35914058,24879839,3
+sukixiaojie,24879839,5
+More-ZZ,24879839,1
+63677986,24879839,1
+55952218,24879839,3
+27582675,24879839,4
+63818023,24879839,-1
+60243350,24879839,5
+wubaiwu,24879839,3
+aiJC,24879839,4
+1525048,24879839,2
+3590500,24879839,3
+ningjuntao,24879839,1
+50068905,24879839,3
+xyxyxyxyxy1995,24879839,4
+56838215,24879839,4
+14480826,24879839,2
+5520945,24879839,2
+130082458,24879839,3
+34479006,24879839,2
+Monte.L,24879839,1
+77042003,24879839,1
+anthony1123,24879839,2
+pumpkinwu,24879839,3
+wmywbyt,24879839,2
+48532833,24879839,2
+49213521,24879839,3
+124349489,24879839,3
+odin_chen,24879839,3
+eill,24879839,2
+36545488,24879839,2
+71389371,24879839,3
+63957240,24879839,1
+sweetforest,24879839,4
+49553203,24879839,-1
+92569261,24879839,2
+sockbabyclaire,24879839,3
+79329873,24879839,3
+68260452,24879839,1
+yotony,24879839,3
+122552717,24879839,1
+lanebuxia,24879839,4
+44329176,24879839,3
+ihee1995,24879839,4
+ladyC1016,24879839,3
+june29,24879839,2
+giliani,24879839,4
+56364233,24879839,2
+PMsxl,24879839,1
+69814261,24879839,3
+2243854,24879839,4
+70820221,24879839,4
+amaokk,24879839,5
+42078963,24879839,3
+56161116,24879839,2
+kumita,24879839,3
+wumingzaish,24879839,2
+41765725,24879839,2
+chenyingluo,24879839,3
+69993436,24879839,2
+53908274,24879839,3
+101484444,24879839,3
+rosemaryii,24879839,4
+91809497,24879839,4
+127399419,24879839,2
+12928087,24879839,5
+heiziyefengkuan,24879839,3
+74771985,24879839,4
+60830251,24879839,2
+52441493,24879839,2
+1433006,24879839,2
+fishpill,24879839,1
+2121850,24879839,3
+Catherine_ne,24879839,3
+Joan7600,24879839,1
+122411500,24879839,3
+48746387,24879839,3
+123288101,24879839,4
+41220701,24879839,3
+45962163,24879839,2
+48523065,24879839,1
+forzainzaghi,24879839,5
+47398025,24879839,-1
+63175365,24879839,1
+luckytan,24879839,4
+67987874,24879839,3
+128719565,24879839,3
+dreamss,24879839,3
+ShuangXiaodan,24879839,3
+2657344,24879839,3
+autumnflower,24879839,2
+Gladysxie,24879839,2
+69381377,24879839,2
+cor7tal,24879839,1
+68490960,24879839,3
+Raphael_cc,24879839,4
+122061263,24879839,2
+xiaomaowaxika,24879839,2
+76921354,24879839,5
+101462415,24879839,3
+SldneyZhang,24879839,1
+114606951,24879839,2
+75984184,24879839,2
+43771540,24879839,2
+dadadongdada,24879839,1
+75475788,24879839,5
+11973232,24879839,4
+casper2fly,24879839,4
+46394662,24879839,2
+Yaai4204,24879839,3
+41351821,24879839,2
+122640507,24879839,4
+free1888,24879839,2
+luokuibumeng,24879839,3
+58983814,24879839,4
+77461037,24879839,3
+62919700,24879839,5
+su_karen,24879839,4
+62498352,24879839,3
+sylvielanlan,24879839,4
+49082695,24879839,2
+22077242,24879839,3
+48688516,24879839,3
+alex.tseng,24879839,3
+izhouxy,24879839,4
+83119611,24879839,3
+121900406,24879839,3
+91140332,24879839,5
+Pennyui,24879839,1
+63857129,24879839,4
+4912751,24879839,3
+85447334,24879839,1
+35780501,24879839,3
+49872790,24879839,3
+127351426,24879839,5
+richer725,24879839,3
+voderment,24879839,1
+53159302,24879839,2
+58411324,24879839,3
+3963917,24879839,4
+69106635,24879839,2
+73187224,24879839,2
+53234077,24879839,2
+xsy0923,24879839,3
+81968574,24879839,3
+48542740,24879839,1
+128616912,24879839,1
+101174609,24879839,2
+53794132,24879839,4
+74337683,24879839,5
+64995298,24879839,2
+121217339,24879839,4
+54893820,24879839,3
+65029025,24879839,3
+75437667,24879839,3
+lecleosal,24879839,2
+81968571,24879839,3
+97188703,24879839,2
+oisa,24879839,1
+23692831,24879839,4
+4315821,24879839,4
+72381588,24879839,4
+baniujun,24879839,3
+40024021,24879839,1
+101795214,24879839,1
+39547942,24879839,3
+71863067,24879839,3
+93326085,24879839,4
+46043790,24879839,2
+tyfevan,24879839,3
+46263284,24879839,1
+16159011,24879839,1
+53585510,24879839,4
+enjoyleelife,24879839,2
+mc23i3,24879839,2
+ppmy,24879839,3
+50373897,24879839,1
+44714353,24879839,2
+54287635,24879839,4
+davidtian,24879839,1
+61263678,24879839,4
+mooeric,24879839,3
+100639145,24879839,2
+58114577,24879839,-1
+caopier,24879839,3
+61514882,24879839,4
+61679778,24879839,4
+46326400,24879839,4
+58473082,24879839,4
+liruixian,24879839,4
+40823380,24879839,2
+44357083,24879839,4
+50418082,24879839,1
+52071601,24879839,2
+1487718,24879839,3
+daangel,24879839,3
+55700551,24879839,1
+44896206,24879839,3
+av13,24879839,3
+63272219,24879839,4
+42148511,24879839,4
+rando,24879839,3
+72441940,24879839,4
+46070875,24879839,2
+50218950,24879839,1
+Young.forU,24879839,1
+leoleodouban,24879839,4
+ohsimoncool,24879839,3
+yimoyoulan916,24879839,2
+magilee0608,24879839,3
+57311033,24879839,3
+79666954,24879839,1
+52476848,24879839,3
+amanjj,24879839,-1
+2896376,24879839,1
+61729619,24879839,2
+126201751,24879839,1
+74249669,24879839,3
+xiaopang1106,24879839,3
+53027731,24879839,2
+warden_cauc,24879839,2
+warden_cauc,24879839,2
+TabulaRasa,24879839,2
+74703584,24879839,2
+3428014,24879839,2
+chesterchoi,24879839,4
+1162046,24879839,1
+yvonnecui,24879839,4
+47583585,24879839,2
+6692926,24879839,2
+63770150,24879839,3
+llllls,24879839,2
+78788466,24879839,3
+hugme,24879839,2
+66612496,24879839,3
+3030330,24879839,3
+62298176,24879839,1
+71281519,24879839,4
+detective,24879839,3
+72723513,24879839,2
+48283426,24879839,4
+119226117,24879839,1
+55755674,24879839,2
+newdelete,24879839,3
+48743013,24879839,2
+60653434,24879839,5
+103601580,24879839,5
+63435651,24879839,4
+48679133,24879839,4
+yvonne9254,24879839,3
+1929758,24879839,2
+116652565,24879839,2
+105306474,24879839,4
+shisisi,24879839,2
+48400077,24879839,3
+andytonian,24879839,2
+37521902,24879839,1
+AeolusAriel,24879839,2
+50880590,24879839,3
+ninety-one,24879839,2
+82990219,24879839,1
+58704227,24879839,2
+givebest,24879839,4
+87069723,24879839,2
+78435170,24879839,3
+2376121,24879839,3
+Linkin-p,24879839,2
+79780547,24879839,2
+wanna-fly,24879839,-1
+14260814,24879839,1
+zoecaffrey,24879839,3
+yizhi520,24879839,2
+45838830,24879839,2
+62786686,24879839,2
+66816646,24879839,2
+83401102,24879839,3
+41918653,24879839,3
+momoliu,24879839,-1
+54252667,24879839,1
+92567735,24879839,4
+A-CHA,24879839,2
+60178062,24879839,3
+mihudexiaojing,24879839,3
+58963539,24879839,3
+ianan,24879839,3
+51571084,24879839,3
+53418938,24879839,3
+2899297,24879839,4
+sevendream129,24879839,2
+27194011,24879839,4
+ALWAYSP2Q,24879839,4
+4209485,24879839,3
+1354619,24879839,1
+53510559,24879839,2
+52245563,24879839,2
+36612235,24879839,3
+41936951,24879839,3
+qingshanzheshan,24879839,2
+51219877,24879839,3
+1118054,24879839,3
+65361448,24879839,1
+51412736,24879839,5
+kim899,24879839,5
+109238530,24879839,3
+58331600,24879839,2
+JouJouEcho,24879839,2
+49855743,24879839,3
+2353548,24879839,2
+90225659,24879839,2
+chenquuu,24879839,1
+duckdan,24879839,3
+cherrytiaotiao,24879839,2
+79499016,24879839,1
+50043116,24879839,2
+jokylovecr,24879839,1
+65948274,24879839,5
+53873820,24879839,3
+sho2mon4e4y,24879839,1
+65268125,24879839,4
+88201815,24879839,4
+84261396,24879839,2
+3755981,24879839,1
+69611074,24879839,1
+49146355,24879839,3
+59404195,24879839,3
+Hdodo,24879839,4
+micho,24879839,4
+115050795,24879839,4
+uniquemanman,24879839,4
+tarylin,24879839,2
+120764662,24879839,3
+sail308,24879839,-1
+70522766,24879839,2
+brant,24879839,3
+9275262,24879839,3
+55858444,24879839,4
+91305249,24879839,3
+bebabay,24879839,2
+lummyboyla,24879839,3
+32340145,24879839,3
+55406228,24879839,3
+yuhsi,24879839,4
+81930052,24879839,1
+smallxuxu,24879839,3
+43664862,24879839,3
+71633312,24879839,3
+2174790,24879839,1
+46637594,24879839,4
+49662959,24879839,2
+50213452,24879839,3
+4918767,24879839,4
+60873226,24879839,1
+92468807,24879839,1
+61576058,24879839,2
+phoenixfannie,24879839,4
+71994355,24879839,2
+77592151,24879839,2
+xigua2015,24879839,-1
+33902664,24879839,1
+duanzizai,24879839,2
+soboo,24879839,4
+89726078,24879839,4
+61747184,24879839,3
+4200326,24879839,2
+49079570,24879839,2
+108364914,24879839,1
+44067661,24879839,4
+52292805,24879839,-1
+downbeats,24879839,-1
+62684666,24879839,3
+65539612,24879839,-1
+tofuture,24879839,2
+63659067,24879839,3
+70514763,24879839,4
+122680968,24879839,5
+121362164,24879839,3
+3032877,24879839,3
+qingjuesikong,24879839,2
+103193931,24879839,2
+wh396011051,24879839,2
+demi1949,24879839,4
+xiaoahman,24879839,3
+4070863,24879839,4
+yeung123,24879839,3
+68469790,24879839,3
+1750737,24879839,1
+3035586,24879839,-1
+61874896,24879839,5
+3749724,24879839,1
+65214168,24879839,4
+emma0326,24879839,4
+56966704,24879839,2
+37114259,24879839,5
+2481956,24879839,3
+120743049,24879839,1
+84419481,24879839,3
+46827867,24879839,3
+91298554,24879839,2
+sophiaforfree,24879839,4
+48267440,24879839,1
+cymkibum,24879839,4
+viennall,24879839,2
+62275261,24879839,5
+zpzs,24879839,1
+104797754,24879839,3
+sherry_mj,24879839,3
+48180631,24879839,5
+tabris,24879839,3
+13445346,24879839,4
+83502519,24879839,4
+sumoxin,24879839,1
+nirvanainfire,24879839,1
+happyend,24879839,-1
+63090119,24879839,1
+mrgun,24879839,3
+51774232,24879839,5
+linxi,24879839,4
+61114728,24879839,2
+67619742,24879839,2
+92507209,24879839,1
+44249721,24879839,3
+51840690,24879839,4
+dokuso,24879839,5
+3501623,24879839,2
+49842201,24879839,2
+40531790,24879839,4
+nanan_ai,24879839,2
+ColinRebirth,24879839,2
+MuFish,24879839,3
+Chaos.Luo,24879839,4
+faille1991,24879839,3
+andrpirl,24879839,5
+fallinlovexu,24879839,3
+66750190,24879839,1
+58792305,24879839,3
+50298838,24879839,2
+93561411,24879839,1
+56994326,24879839,4
+79465232,24879839,3
+1653522,24879839,4
+Ice-Rhine,24879839,4
+gexiaomeng,24879839,3
+130359713,24879839,3
+uranus_taotao,24879839,2
+73057663,24879839,3
+36379679,24879839,3
+teselaaaaaaa,24879839,3
+YDHouer,24879839,1
+121989246,24879839,2
+4261138,24879839,3
+buduobuduo,24879839,5
+64757557,24879839,4
+ending-bye,24879839,4
+ilvhate,24879839,3
+18747582,24879839,2
+1748846,24879839,4
+51395518,24879839,3
+74582706,24879839,1
+124720796,24879839,4
+75190732,24879839,3
+2386074,24879839,2
+64673199,24879839,3
+26740097,24879839,4
+52075291,24879839,3
+cherryking,24879839,3
+tomsnakewang,24879839,3
+58004240,24879839,3
+ruiye,24879839,2
+60199828,24879839,1
+bigeyedog,24879839,4
+75706045,24879839,3
+40298274,24879839,2
+53394663,24879839,2
+lilies.tou,24879839,4
+gooo111,24879839,2
+share_Abu,24879839,3
+cindy..wu,24879839,3
+102946037,24879839,3
+57896614,24879839,2
+myal,24879839,2
+zhuobielin,24879839,3
+sorachimimi,24879839,3
+39288960,24879839,1
+63820353,24879839,2
+74851101,24879839,1
+75569999,24879839,3
+79105910,24879839,2
+2599607,24879839,4
+85310751,24879839,3
+myxiguachong,24879839,3
+47807328,24879839,2
+nkkun,24879839,3
+1177703,24879839,4
+2423100,24879839,1
+cozumakemesmile,24879839,2
+77869883,24879839,1
+jopees,24879839,1
+lizhenghome,24879839,3
+65526333,24879839,5
+41585917,24879839,3
+46671305,24879839,3
+fayina8975,24879839,-1
+99846035,24879839,3
+50880876,24879839,3
+79741169,24879839,4
+doddlegone,24879839,4
+qiusheng,24879839,2
+3922816,24879839,2
+zidary,24879839,3
+leexieyun,24879839,2
+59684425,24879839,3
+y245217598,24879839,-1
+49666316,24879839,2
+47471768,24879839,3
+44615389,24879839,3
+wuwei1107,24879839,2
+67325492,24879839,-1
+1956749,24879839,4
+Jenny_Hsin,24879839,3
+56132891,24879839,3
+83188680,24879839,3
+28631660,24879839,2
+2561289,24879839,2
+59992596,24879839,5
+1092101,24879839,2
+39933533,24879839,3
+50228316,24879839,4
+2179284,24879839,1
+48462375,24879839,4
+Uvo,24879839,2
+chrisairfly,24879839,5
+46711138,24879839,1
+4184169,24879839,2
+2646633,24879839,2
+79908264,24879839,3
+64763104,24879839,4
+Matthew2937,24879839,2
+2763828,24879839,2
+shuang331,24879839,3
+qiao-un,24879839,3
+48112826,24879839,1
+nicoleeg,24879839,2
+luobo687,24879839,-1
+1514586,24879839,1
+115631382,24879839,3
+76616285,24879839,2
+85174401,24879839,3
+dial911,24879839,1
+dorothylee0406,24879839,2
+DamonCoxon,24879839,1
+80757887,24879839,3
+58332166,24879839,2
+43116901,24879839,3
+windy.lin,24879839,3
+ericyijun,24879839,3
+wuyezi,24879839,4
+jisan,24879839,1
+49689556,24879839,3
+G-sco,24879839,3
+blessedme,24879839,2
+1970480,24879839,1
+jiejueliaoyi,24879839,4
+111584714,24879839,2
+bxg555,24879839,-1
+35736307,24879839,2
+lesones,24879839,3
+sha30,24879839,5
+luluforever,24879839,3
+49922956,24879839,3
+malu,24879839,3
+39992525,24879839,3
+31033833,24879839,5
+lixiaguniang,24879839,4
+teng.,24879839,2
+christy17,24879839,5
+jewelalways,24879839,5
+35661060,24879839,1
+wangshaoda,24879839,2
+dear.sunny,24879839,2
+chuansha,24879839,4
+31711681,24879839,2
+51170609,24879839,5
+48635228,24879839,4
+35986570,24879839,3
+rockf1,24879839,3
+vitolau,24879839,4
+83755005,24879839,2
+48001287,24879839,1
+liarelaw,24879839,1
+zakcc,24879839,1
+bearhao1976,24879839,3
+46114325,24879839,1
+pgydw,24879839,3
+breadforest,24879839,4
+43019419,24879839,2
+Yiemao,24879839,5
+leafwaiting,24879839,2
+129743539,24879839,5
+tangqy,24879839,4
+4551579,24879839,3
+popoxee,24879839,2
+53383783,24879839,5
+ninfea1127,24879839,3
+55676383,24879839,1
+41956289,24879839,2
+80805108,24879839,2
+pengxiaoyu,24879839,2
+nicolening,24879839,2
+1300300,24879839,1
+4715775,24879839,2
+57633355,24879839,3
+47732275,24879839,3
+kawawa,24879839,3
+jofanie,24879839,3
+58412725,24879839,4
+54463600,24879839,4
+icewoodlau,24879839,3
+78444666,24879839,2
+lcrgreen,24879839,3
+demiinzhang,24879839,4
+renminling,24879839,2
+2427508,24879839,1
+43566375,24879839,1
+2242910,24879839,3
+elsading,24879839,2
+yeanyun,24879839,-1
+liancheng,24879839,3
+50703649,24879839,3
+76425478,24879839,2
+65308671,24879839,2
+fuckfucker,24879839,2
+gaojingjing,24879839,3
+65040109,24879839,2
+81376972,24879839,2
+43321410,24879839,-1
+4195649,24879839,1
+38813044,24879839,5
+4056427,24879839,1
+59925796,24879839,2
+42849016,24879839,1
+avrilflower,24879839,1
+56559303,24879839,2
+81873289,24879839,4
+53603990,24879839,3
+3803805,24879839,4
+jhqmelody,24879839,2
+70775632,24879839,2
+55439689,24879839,-1
+mmff,24879839,2
+xu2kang,24879839,2
+oounpan,24879839,3
+sonicyang,24879839,3
+4056538,24879839,5
+miaomiaomiaomad,24879839,4
+xishuaicn,24879839,3
+4279698,24879839,2
+cl1235,24879839,3
+46161175,24879839,3
+summercaimin,24879839,3
+XXXOXXX,24879839,3
+55692656,24879839,2
+heapsnow,24879839,4
+4684950,24879839,2
+53068845,24879839,2
+Alan-H,24879839,3
+3133331,24879839,-1
+fucka,24879839,3
+51828462,24879839,1
+103046050,24879839,-1
+67828663,24879839,5
+84177108,24879839,5
+nanguang1126,24879839,1
+2380878,24879839,3
+catherinex217,24879839,3
+65295255,24879839,3
+kaiserwang,24879839,1
+laoli227,24879839,3
+weibrave,24879839,1
+60767599,24879839,2
+staved,24879839,2
+41801093,24879839,4
+zibizheng,24879839,5
+littlewings,24879839,2
+4132580,24879839,2
+62600930,24879839,4
+xiaohejianjian,24879839,4
+32560246,24879839,3
+129324066,24879839,3
+makamoz,24879839,-1
+ppxihuanni,24879839,3
+63156283,24879839,2
+30811180,24879839,3
+sallyd679,24879839,3
+july0007,24879839,4
+Dailaosan,24879839,3
+vivien007,24879839,4
+130746302,24879839,4
+62426044,24879839,5
+2845886,24879839,3
+90817930,24879839,2
+shrinkhj,24879839,-1
+46766109,24879839,1
+tatianachen,24879839,3
+infofox,24879839,3
+44705986,24879839,3
+60733451,24879839,4
+57385512,24879839,1
+41140716,24879839,1
+62791544,24879839,3
+39983648,24879839,2
+skyjadebear,24879839,4
+windflower18,24879839,5
+72425203,24879839,3
+67305392,24879839,3
+73034014,24879839,5
+62575619,24879839,1
+45944952,24879839,4
+45697598,24879839,1
+maple_zt,24879839,4
+laperseus,24879839,1
+64137590,24879839,2
+pianxiye0926,24879839,4
+53790865,24879839,3
+53867969,24879839,4
+61399236,24879839,3
+57285886,24879839,3
+29458018,24879839,3
+yuanqing630,24879839,3
+62277411,24879839,3
+103554299,24879839,3
+qibai,24879839,4
+129860559,24879839,4
+8238166,24879839,2
+yaya57262373,24879839,3
+26601106,24879839,2
+3640414,24879839,1
+64471026,24879839,3
+46914079,24879839,2
+allissky,24879839,2
+zjstheking,24879839,1
+lmishere,24879839,2
+aiyucheng,24879839,1
+post-rocker,24879839,3
+LinXion,24879839,2
+58468618,24879839,3
+121501627,24879839,4
+xlmai235,24879839,1
+115981829,24879839,1
+yldo,24879839,3
+3899858,24879839,2
+leftone,24879839,4
+lolixiwyweiwei,24879839,-1
+wangjun1900,24879839,3
+2073098,24879839,2
+huihuiai1314,24879839,4
+korialeaf,24879839,3
+56504132,24879839,1
+beibei5558,24879839,1
+119109089,24879839,2
+ulawang0614,24879839,4
+chenxinsang,24879839,3
+vyajana,24879839,3
+54758477,24879839,3
+30884176,24879839,3
+104348290,24879839,3
+misssummer27,24879839,3
+21042861,24879839,2
+18774341,24879839,-1
+33749828,24879839,4
+foolhan,24879839,3
+73478164,24879839,2
+46110666,24879839,1
+63230779,24879839,2
+maximilian0522,24879839,4
+125227684,24879839,2
+62396502,24879839,4
+48117354,24879839,1
+windyzhu3949,24879839,4
+1189538,24879839,4
+63476270,24879839,3
+57918756,24879839,-1
+3150096,24879839,1
+44981584,24879839,4
+ribby2530032,24879839,3
+2265138,24879839,3
+4333851,24879839,5
+29870807,24879839,2
+58955045,24879839,4
+54277282,24879839,3
+63782135,24879839,4
+zcsyzdln,24879839,2
+58503937,24879839,3
+JGuo,24879839,2
+73317824,24879839,2
+49658554,24879839,3
+air1104,24879839,-1
+47020813,24879839,2
+90051465,24879839,3
+Nicccklee,24879839,2
+37376533,24879839,3
+wusailing,24879839,5
+LolitaBerry,24879839,3
+53731567,24879839,3
+54003028,24879839,3
+72098592,24879839,2
+bester214,24879839,1
+75994627,24879839,4
+63565906,24879839,3
+33886622,24879839,3
+52856501,24879839,4
+61211793,24879839,2
+130232094,24879839,3
+yechi,24879839,2
+41142807,24879839,2
+djy_joy,24879839,3
+81390600,24879839,1
+35323082,24879839,5
+81842759,24879839,2
+noitu,24879839,4
+130688319,24879839,3
+luvndisaster,24879839,4
+46605824,24879839,2
+4202712,24879839,5
+94773780,24879839,2
+yoshida,24879839,3
+75944921,24879839,3
+77606289,24879839,4
+1945446,24879839,4
+4408867,24879839,2
+88446161,24879839,3
+102369185,24879839,3
+35179121,24879839,2
+80282251,24879839,3
+tanggg,24879839,3
+LeeMar,24879839,5
+58855650,24879839,3
+45037324,24879839,4
+jxzq007,24879839,4
+130772715,24879839,4
+107408120,24879839,3
+111974961,24879839,5
+34548412,24879839,1
+4876430,24879839,2
+goodoll,24879839,5
+129956212,24879839,2
+24863827,24879839,4
+17908241,24879839,3
+stacey0507,24879839,3
+39095645,24879839,2
+Azraelchen,24879839,4
+54660916,24879839,3
+92301681,24879839,3
+qiuqiongxu,24879839,4
+55822752,24879839,3
+my_landscape,24879839,2
+Fay59,24879839,3
+musofan,24879839,3
+28852948,24879839,4
+3420387,24879839,5
+12764291,24879839,3
+4227484,24879839,4
+shitmonster,24879839,5
+2324250,24879839,5
+74520684,24879839,2
+wangabao,24879839,4
+ChelseaDawson,24879839,4
+64828664,24879839,-1
+59032627,24879839,1
+beastzhao,24879839,5
+amay1023,24879839,2
+53621715,24879839,3
+A_nnie__1973,24879839,2
+xuci,24879839,2
+45660957,24879839,3
+Diwin,24879839,1
+ayed,24879839,4
+darkdio,24879839,3
+xiaoyaozizai,24879839,2
+50938017,24879839,1
+nancy-chan,24879839,4
+45273631,24879839,3
+djwayye,24879839,2
+81325605,24879839,3
+fylingy,24879839,2
+121813488,24879839,1
+64612843,24879839,3
+endless_dreamle,24879839,-1
+72738389,24879839,2
+14360918,24879839,2
+54306037,24879839,3
+79450664,24879839,3
+66720945,24879839,4
+41116335,24879839,2
+yiouob,24879839,1
+89660387,24879839,4
+72309214,24879839,3
+klose_y,24879839,2
+63644261,24879839,1
+73828343,24879839,4
+silentsilas,24879839,3
+easysmile,24879839,3
+67679868,24879839,2
+37968335,24879839,1
+50115900,24879839,3
+L.B.Q,24879839,1
+54309403,24879839,3
+55554354,24879839,3
+67182363,24879839,5
+dimola,24879839,-1
+36109086,24879839,1
+2206615,24879839,2
+chihuoo,24879839,4
+54445423,24879839,3
+88680197,24879839,3
+30357149,24879839,1
+lvyejusy,24879839,1
+meng326598,24879839,4
+siman,24879839,4
+51321663,24879839,1
+52933716,24879839,5
+45927824,24879839,3
+iris1031,24879839,1
+49855278,24879839,3
+78182286,24879839,2
+115305871,24879839,1
+Fan-evil,24879839,3
+42006855,24879839,1
+43616371,24879839,3
+52576194,24879839,1
+zongjiang,24879839,2
+c20010122,24879839,1
+3585501,24879839,-1
+Amy-QQ,24879839,3
+52728964,24879839,3
+6591920,24879839,2
+cinne1,24879839,2
+singing4u,24879839,3
+ayal,24879839,3
+40659159,24879839,3
+3110983,24879839,5
+119999952,24879839,2
+sunjialin1989,24879839,2
+whitney0417,24879839,2
+128613579,24879839,1
+48950115,24879839,4
+zeph1462,24879839,1
+1527363,24879839,3
+jutem,24879839,5
+FFFine,24879839,2
+csprite,24879839,3
+A317,24879839,4
+36664214,24879839,2
+iae,24879839,3
+aliasr,24879839,4
+56567872,24879839,3
+122833353,24879839,3
+warmgun7,24879839,4
+ImEm,24879839,4
+52168475,24879839,4
+4676196,24879839,4
+61688299,24879839,4
+68630900,24879839,-1
+wrdouban,24879839,1
+AppleLu,24879839,-1
+chendianduo,24879839,5
+2837649,24879839,2
+130526976,24879839,1
+3165431,24879839,2
+98446613,24879839,3
+starnicky,24879839,2
+50164012,24879839,1
+Leenur_gln,24879839,3
+58988123,24879839,2
+56990306,24879839,3
+56431276,24879839,2
+mysteryfan,24879839,2
+49196106,24879839,3
+HSMMG,24879839,5
+54741378,24879839,5
+52649042,24879839,2
+40096654,24879839,4
+53113039,24879839,2
+crystaltvxq,24879839,4
+45197623,24879839,5
+monkeywen,24879839,3
+52123243,24879839,3
+xiaoranbao,24879839,2
+52924055,24879839,1
+1867292,24879839,2
+onlysmile,24879839,3
+zhangrui39,24879839,2
+46383446,24879839,2
+2858055,24879839,1
+51024843,24879839,5
+gogogoyao,24879839,4
+3043901,24879839,4
+zjy1222,24879839,3
+tagore_tsai,24879839,2
+4655853,24879839,2
+2385520,24879839,1
+64326764,24879839,1
+2206235,24879839,3
+zacklee,24879839,2
+57262521,24879839,3
+61930897,24879839,4
+60038262,24879839,3
+61049464,24879839,3
+tiantian1987nic,24879839,4
+RebeccaRabbit,24879839,3
+smnclumsy,24879839,4
+luckia1991,24879839,3
+LincolnSixEcho,24879839,1
+kaki812,24879839,2
+70306814,24879839,4
+countyc,24879839,2
+44796686,24879839,3
+2639021,24879839,3
+51603808,24879839,1
+yancm,24879839,4
+dovm,24879839,1
+firstpro,24879839,2
+selavyzhou,24879839,2
+36641683,24879839,3
+72068828,24879839,2
+NickyS,24879839,3
+hehuimin,24879839,-1
+48668830,24879839,-1
+121922821,24879839,1
+Candy_Can,24879839,3
+jumpper,24879839,4
+logiko,24879839,3
+3583303,24879839,2
+LuMin-Chieh,24879839,4
+fallune,24879839,3
+47860622,24879839,5
+52489469,24879839,5
+1338229,24879839,1
+55540609,24879839,3
+4214564,24879839,1
+pajamania,24879839,4
+aeb2366,24879839,3
+pajamania,24879839,4
+aeb2366,24879839,3
+50195035,24879839,3
+81005688,24879839,4
+lumingtao,24879839,3
+ghoul132,24879839,2
+123875477,24879839,2
+40848168,24879839,4
+Vincentlife,24879839,4
+1403754,24879839,3
+gooddie29,24879839,3
+47670080,24879839,2
+mathias,24879839,1
+2405008,24879839,4
+81224431,24879839,4
+29374473,24879839,3
+35516440,24879839,3
+70300302,24879839,2
+14008920,24879839,3
+48264510,24879839,2
+39491713,24879839,2
+56085825,24879839,4
+16040985,24879839,4
+57837592,24879839,2
+71947752,24879839,1
+bingo113,24879839,3
+hellruby,24879839,4
+85319467,24879839,3
+dundun85,24879839,-1
+65277383,24879839,4
+TigerDuan,24879839,4
+54654398,24879839,3
+4190834,24879839,2
+sonfeo,24879839,2
+43303672,24879839,3
+44021418,24879839,5
+61219748,24879839,3
+82083975,24879839,2
+wocaonidaye,24879839,3
+54209095,24879839,3
+throughsmoke,24879839,4
+fengzhiyao,24879839,1
+4337367,24879839,3
+angelmagazine,24879839,2
+48369698,24879839,2
+36740289,24879839,3
+36300587,24879839,2
+80275782,24879839,5
+flyemirate,24879839,2
+58042507,24879839,3
+74202388,24879839,3
+69365887,24879839,2
+51995720,24879839,3
+4773109,24879839,2
+Cheergoing,24879839,2
+yulingshenyue,24879839,2
+3948628,24879839,3
+40011155,24879839,4
+eokmiamia,24879839,1
+73410392,24879839,5
+67769112,24879839,1
+albeedesert,24879839,-1
+GFW,24879839,4
+ashixinru,24879839,3
+88334836,24879839,3
+1887182,24879839,1
+34096463,24879839,3
+3142293,24879839,3
+68555167,24879839,3
+68900038,24879839,3
+obliviosage,24879839,3
+lhx1013,24879839,2
+57562636,24879839,2
+36988039,24879839,2
+58273860,24879839,4
+79720313,24879839,4
+47368646,24879839,2
+65021672,24879839,1
+79294364,24879839,1
+cioilo,24879839,3
+71865681,24879839,2
+103886246,24879839,1
+52452287,24879839,2
+68366606,24879839,4
+66612367,24879839,3
+slowerlearner,24879839,1
+52584056,24879839,3
+wanru904,24879839,3
+59319272,24879839,3
+missqso,24879839,1
+65020118,24879839,1
+45899232,24879839,5
+51781734,24879839,2
+sunsetbutterfly,24879839,3
+2081187,24879839,3
+sunwukong.326,24879839,3
+87937161,24879839,3
+55458833,24879839,3
+129254788,24879839,3
+53434934,24879839,1
+3119464,24879839,-1
+3484320,24879839,2
+61453800,24879839,1
+38903710,24879839,1
+46881440,24879839,5
+48553188,24879839,4
+sheenshuay,24879839,5
+vradica,24879839,3
+76430480,24879839,2
+hiu,24879839,4
+89451365,24879839,3
+zhangtiexun,24879839,4
+changxia,24879839,2
+30441221,24879839,3
+cynthiays,24879839,4
+54450585,24879839,5
+30935515,24879839,3
+54098615,24879839,1
+4182606,24879839,2
+35260694,24879839,3
+52470011,24879839,3
+48639175,24879839,3
+43475184,24879839,3
+49702141,24879839,4
+tudounvjue,24879839,3
+76790888,24879839,3
+jiushifubi,24879839,5
+102677023,24879839,2
+3185309,24879839,1
+siton,24879839,2
+2123248,24879839,2
+53665891,24879839,2
+4599465,24879839,1
+40664192,24879839,3
+3248874,24879839,5
+80285873,24879839,4
+95670618,24879839,1
+78208494,24879839,1
+oldnikki,24879839,3
+50750089,24879839,2
+takemetohell,24879839,1
+flowerfrommars,24879839,3
+tarorez,24879839,4
+3683540,24879839,1
+69563005,24879839,2
+60262421,24879839,1
+14264766,24879839,4
+47396894,24879839,2
+43819642,24879839,4
+57469413,24879839,2
+57693778,24879839,3
+fianglee,24879839,5
+catheringli,24879839,3
+1649674,24879839,3
+51113680,24879839,3
+52666643,24879839,3
+49833432,24879839,-1
+braveshengchun,24879839,5
+130271779,24879839,2
+jjsunia,24879839,5
+49905771,24879839,2
+markhoo,24879839,5
+fenglimuren,24879839,1
+angle223,24879839,3
+67181847,24879839,-1
+losteden,24879839,1
+121807969,24879839,3
+xiaotan,24879839,3
+Jovial.s,24879839,4
+39850116,24879839,1
+53899164,24879839,2
+103565477,24879839,1
+111342880,24879839,1
+62498380,24879839,2
+39421864,24879839,3
+58066167,24879839,5
+poria,24879839,2
+2073755,24879839,3
+pepereina,24879839,2
+1133756,24879839,4
+daheiluozi,24879839,2
+4054463,24879839,4
+StandOnLifE,24879839,3
+79168159,24879839,2
+mjmsxjj,24879839,1
+bbjx,24879839,4
+xianran,24879839,2
+57896289,24879839,3
+69129266,24879839,2
+xianyuxiaojie,24879839,1
+63980092,24879839,4
+seventhworkshop,24879839,3
+love221B,24879839,4
+ivychan,24879839,3
+57486658,24879839,1
+81303050,24879839,2
+39298188,24879839,2
+xly7788,24879839,2
+Shuohai,24879839,4
+joohyemin,24879839,4
+catbet,24879839,3
+ruoxudeng,24879839,2
+66178804,24879839,3
+78234449,24879839,1
+45828320,24879839,5
+jumpys,24879839,1
+shirleyma,24879839,3
+51565712,24879839,1
+30569646,24879839,3
+trista-smily,24879839,4
+willen007,24879839,2
+zhoudaxia,24879839,4
+91487437,24879839,2
+73586590,24879839,3
+paishao,24879839,2
+1835309,24879839,2
+1110575,24879839,3
+31789873,24879839,4
+BerryYeh,24879839,4
+momoko6969,24879839,4
+45349650,24879839,1
+71882861,24879839,2
+liuine,24879839,2
+yangmiu,24879839,1
+64254979,24879839,-1
+64435961,24879839,1
+121640361,24879839,2
+miaomiaoariel,24879839,5
+kilts,24879839,-1
+120490702,24879839,3
+51598057,24879839,5
+73766860,24879839,3
+1520313,24879839,2
+huaxianzi198986,24879839,3
+yaoguai120,24879839,2
+72279635,24879839,2
+qingfengpushang,24879839,2
+69099872,24879839,3
+80945094,24879839,3
+47181851,24879839,2
+lifecycle,24879839,1
+42849001,24879839,5
+121055562,24879839,3
+91613205,24879839,2
+xiaogezi159357,24879839,2
+51531512,24879839,4
+15923288,24879839,2
+69015878,24879839,3
+lawkid,24879839,3
+94514917,24879839,3
+52922906,24879839,2
+79767073,24879839,4
+31573360,24879839,3
+62677139,24879839,5
+91073792,24879839,1
+4192759,24879839,3
+43508209,24879839,1
+75266929,24879839,3
+71108776,24879839,5
+49948211,24879839,1
+56046715,24879839,3
+Her_Mione,24879839,2
+myplsky,24879839,1
+46497404,24879839,3
+64563247,24879839,1
+wolfseasy,24879839,2
+53058832,24879839,3
+lyxuntang,24879839,5
+wyjlwyy,24879839,3
+1173354,24879839,2
+37485617,24879839,3
+64939636,24879839,2
+9552246,24879839,2
+coto,24879839,4
+myweekend,24879839,1
+im61,24879839,2
+74959611,24879839,3
+4658557,24879839,3
+70948915,24879839,1
+solitaryreaper,24879839,1
+maruko_marublog,24879839,3
+zuoanqinsheng,24879839,3
+61805838,24879839,1
+4691374,24879839,1
+bigfish0625,24879839,2
+127802556,24879839,1
+little_Jia,24879839,-1
+55024956,24879839,4
+lening,24879839,2
+44155260,24879839,1
+54423797,24879839,2
+91239382,24879839,3
+36800921,24879839,3
+goodbobo,24879839,3
+15497319,24879839,2
+13972691,24879839,2
+luckyzx,24879839,3
+1452141,24879839,2
+80126415,24879839,2
+80657169,24879839,4
+Iamapoem,24879839,3
+linbinchi,24879839,3
+daisyparadise,24879839,1
+changle0605,24879839,3
+32019059,24879839,1
+dr_floyd,24879839,4
+ananne,24879839,3
+52412911,24879839,1
+4685842,24879839,5
+gnlee,24879839,3
+daisydoo,24879839,5
+75058618,24879839,2
+46226605,24879839,2
+2619892,24879839,2
+46712820,24879839,4
+81896008,24879839,2
+leixiaotian,24879839,2
+33327300,24879839,3
+42007662,24879839,2
+superfatrich,24879839,4
+cheerxl,24879839,-1
+Easy_i,24879839,3
+rubychen0611,24879839,3
+sjdjayjj,24879839,3
+40140527,24879839,3
+hejianjian,24879839,5
+latml,24879839,1
+astar5,24879839,1
+126748700,24879839,1
+Monster.,24879839,4
+licanghai,24879839,5
+59111075,24879839,3
+dreamagainagain,24879839,1
+3439150,24879839,4
+2010576,24879839,1
+Pius,24879839,2
+15965977,24879839,3
+50867566,24879839,1
+betty5230,24879839,4
+61449510,24879839,2
+rikyo,24879839,3
+fengxiaohelaoli,24879839,4
+5198781,24879839,2
+79696651,24879839,4
+123141060,24879839,3
+130756811,24879839,5
+m2cky,24879839,3
+85084961,24879839,2
+hewitt121,24879839,2
+125614681,24879839,1
+126924969,24879839,2
+TolyaD,24879839,1
+61951451,24879839,2
+40071327,24879839,1
+22725672,24879839,2
+Corpsegrinder,24879839,1
+37102095,24879839,-1
+wjhz,24879839,-1
+122603381,24879839,1
+42306867,24879839,2
+51590101,24879839,3
+37785613,24879839,4
+65297790,24879839,3
+fu-tao,24879839,2
+sharkzifan,24879839,1
+BigDumplingMan,24879839,1
+73759224,24879839,5
+62535973,24879839,3
+46015306,24879839,2
+zaimily,24879839,3
+4629619,24879839,2
+Dolive,24879839,3
+4733166,24879839,2
+65145842,24879839,3
+rocara,24879839,1
+82763339,24879839,4
+51369535,24879839,1
+54096060,24879839,2
+haozhe,24879839,2
+79302633,24879839,3
+69517071,24879839,3
+43093475,24879839,1
+renlei,24879839,3
+78763010,24879839,3
+zhuziqing,24879839,3
+cca2222223,24879839,4
+70872377,24879839,3
+danihu,24879839,1
+58453368,24879839,3
+109169757,24879839,3
+cchenga,24879839,2
+WANDORA,24879839,1
+50916243,24879839,3
+124776011,24879839,5
+1594503,24879839,5
+59904576,24879839,2
+3796003,24879839,3
+Lucifer4219,24879839,2
+maggiemars,24879839,3
+44436266,24879839,5
+58523081,24879839,5
+seangao,24879839,2
+4051797,24879839,2
+60411524,24879839,2
+57879982,24879839,3
+Sephirophilia,24879839,4
+61722322,24879839,2
+4214748,24879839,2
+broempty,24879839,1
+37019644,24879839,-1
+91732362,24879839,1
+ed-sky,24879839,4
+29683146,24879839,1
+3639221,24879839,2
+alwaysbestrong,24879839,2
+85671654,24879839,2
+27891967,24879839,-1
+62194800,24879839,1
+48230019,24879839,1
+jie2u,24879839,4
+53583275,24879839,3
+amigo4978,24879839,3
+90785580,24879839,3
+lemon_period,24879839,3
+2123968,24879839,3
+61039882,24879839,1
+97331424,24879839,2
+4051279,24879839,4
+shicongying2008,24879839,1
+44498197,24879839,1
+122921919,24879839,1
+43080143,24879839,-1
+37153310,24879839,1
+117360867,24879839,2
+56164426,24879839,2
+xmy327,24879839,1
+115847373,24879839,2
+babyplume,24879839,3
+shijiabeini0701,24879839,2
+85113803,24879839,2
+119238411,24879839,4
+DeWatson,24879839,4
+summerchocolate,24879839,3
+sophie-wang,24879839,3
+sovee,24879839,1
+dearbox,24879839,2
+90489337,24879839,2
+oximi,24879839,1
+williamwindy,24879839,2
+Alice-in-Bed,24879839,2
+zhuoyang,24879839,1
+79823709,24879839,3
+53953725,24879839,2
+10387628,24879839,3
+tengjinshu,24879839,2
+bdone,24879839,1
+mxl1988,24879839,5
+11593393,24879839,3
+zw1872,24879839,3
+56972307,24879839,3
+her10ve,24879839,3
+hongdoushanuomi,24879839,2
+82317907,24879839,3
+124123020,24879839,3
+4679905,24879839,1
+55925233,24879839,3
+59403033,24879839,3
+116030466,24879839,5
+4307886,24879839,3
+Sillygril,24879839,1
+ginger.up,24879839,4
+58040832,24879839,3
+weiliangcanvas,24879839,3
+lost-kaine,24879839,4
+58672259,24879839,3
+4791622,24879839,3
+uncleradar,24879839,2
+ylEalon,24879839,4
+23154088,24879839,2
+jxsryz,24879839,2
+47552661,24879839,4
+58581987,24879839,4
+47692471,24879839,3
+45540102,24879839,2
+40819468,24879839,3
+grandmama,24879839,3
+crystalmy1027,24879839,3
+54706735,24879839,2
+zerosaberz,24879839,2
+Son47,24879839,2
+hujian9,24879839,2
+46590503,24879839,-1
+1959924,24879839,1
+zoply6227,24879839,2
+4640702,24879839,5
+lisui,24879839,1
+mxlzyd,24879839,3
+76863989,24879839,5
+4393121,24879839,2
+yunyunk,24879839,2
+38811434,24879839,2
+73463861,24879839,5
+28808683,24879839,1
+84949613,24879839,3
+Innocence-1,24879839,2
+47916116,24879839,3
+4058668,24879839,2
+47445354,24879839,2
+74335296,24879839,3
+not_fb,24879839,2
+hdx1991,24879839,2
+42961895,24879839,3
+mmmenstruation,24879839,1
+3565376,24879839,2
+51310444,24879839,1
+cactiii,24879839,1
+50963591,24879839,4
+102446060,24879839,4
+130034747,24879839,2
+yiyangdexiatian,24879839,2
+fmstone,24879839,3
+78242005,24879839,3
+smcc911,24879839,2
+43215155,24879839,3
+61967626,24879839,2
+58200229,24879839,2
+55416887,24879839,4
+3783132,24879839,3
+ElyseLee,24879839,3
+47252401,24879839,1
+57815610,24879839,1
+cheeseberry,24879839,2
+lovewallace1130,24879839,5
+60046536,24879839,4
+2716038,24879839,3
+vegyness,24879839,2
+124384968,24879839,2
+49308797,24879839,4
+69971206,24879839,5
+3468574,24879839,1
+43304462,24879839,2
+55813175,24879839,2
+44707255,24879839,2
+41918769,24879839,3
+52665629,24879839,2
+70892372,24879839,4
+jessica_21,24879839,2
+39370570,24879839,3
+44121177,24879839,2
+y1ngbb,24879839,1
+c1rcle,24879839,-1
+95408092,24879839,4
+52871578,24879839,3
+130747467,24879839,2
+tylermonster,24879839,1
+dyalan,24879839,3
+123796715,24879839,1
+94768716,24879839,1
+121228834,24879839,4
+boveywong,24879839,3
+2411726,24879839,1
+97489665,24879839,4
+46901299,24879839,2
+eitarou,24879839,1
+57824448,24879839,3
+38973688,24879839,3
+cecilelover,24879839,3
+veasonpang,24879839,3
+vvhs,24879839,3
+kusohusky2,24879839,2
+liumeiyulygg,24879839,2
+65628781,24879839,5
+49854579,24879839,2
+61503519,24879839,5
+woaiheyi,24879839,4
+120244834,24879839,1
+103348980,24879839,4
+31957811,24879839,1
+linxiayidu0,24879839,2
+hejinsomething,24879839,1
+113217591,24879839,4
+yi1116206,24879839,4
+47662368,24879839,4
+46932541,24879839,3
+sid005,24879839,2
+69616363,24879839,3
+1315896,24879839,3
+1407147,24879839,4
+2122669,24879839,3
+ruru8,24879839,-1
+46146450,24879839,1
+joanna_L,24879839,4
+57058120,24879839,2
+reMadeInChina,24879839,1
+mystonesmy,24879839,-1
+47488547,24879839,1
+kicker10,24879839,4
+wfay,24879839,2
+56580928,24879839,3
+50142885,24879839,3
+brokenL,24879839,3
+QQSXXXR,24879839,3
+EveNotended,24879839,1
+zjl234,24879839,1
+esme123,24879839,3
+4157643,24879839,2
+84166452,24879839,3
+46810295,24879839,3
+liusuer,24879839,3
+66792785,24879839,2
+120253050,24879839,1
+48058066,24879839,1
+4874699,24879839,2
+92840931,24879839,4
+ml0684727,24879839,4
+52769977,24879839,5
+66902350,24879839,2
+mzmuxin,24879839,3
+peach_fly,24879839,4
+51287343,24879839,4
+kiasma,24879839,2
+54986489,24879839,2
+44491264,24879839,4
+geeoff,24879839,1
+47984188,24879839,4
+leftorright002,24879839,4
+57844859,24879839,4
+caseyqian,24879839,3
+90941910,24879839,3
+lf54,24879839,3
+aeon4ever,24879839,5
+ankui,24879839,2
+aquapura,24879839,1
+79434594,24879839,2
+89716765,24879839,5
+32875200,24879839,3
+53568631,24879839,4
+43868247,24879839,4
+claudiaqq,24879839,1
+48469325,24879839,2
+zoocool,24879839,2
+46273303,24879839,5
+shangdixiaole,24879839,1
+cs.aksa,24879839,3
+35085450,24879839,1
+twinkle1437,24879839,2
+luxy,24879839,2
+14914580,24879839,2
+a-Joel,24879839,4
+57577112,24879839,3
+2096774,24879839,-1
+91498001,24879839,4
+irisyours,24879839,2
+83143182,24879839,3
+2604555,24879839,2
+103287410,24879839,4
+64092197,24879839,1
+yuzhaobin,24879839,3
+89542438,24879839,3
+62560476,24879839,4
+87344337,24879839,1
+65723913,24879839,2
+watson_1990,24879839,3
+68559810,24879839,2
+3602431,24879839,3
+jojoqiao,24879839,3
+1071770,24879839,4
+47390120,24879839,3
+104050982,24879839,2
+Alice.P,24879839,3
+33944750,24879839,3
+outstandinger,24879839,4
+63949906,24879839,2
+45662792,24879839,2
+2674873,24879839,2
+lolitahanhan,24879839,3
+guozixiang,24879839,5
+69492907,24879839,5
+Xmini,24879839,3
+1641684,24879839,3
+MooNsuN,24879839,1
+pupu19891230,24879839,2
+59201849,24879839,2
+67781678,24879839,3
+53694495,24879839,3
+felinoshuffle,24879839,3
+4150144,24879839,2
+4294244,24879839,3
+90733617,24879839,4
+suarron,24879839,4
+zhangxiaolei,24879839,2
+delicioussalad,24879839,3
+1162708,24879839,4
+Shnei,24879839,3
+wishwishwish,24879839,2
+75797638,24879839,2
+120090897,24879839,2
+83307271,24879839,3
+van2,24879839,3
+4546565,24879839,3
+4783264,24879839,-1
+irongroup,24879839,2
+52784441,24879839,3
+bonbonju,24879839,3
+45055967,24879839,4
+51350191,24879839,1
+48005899,24879839,2
+75381849,24879839,4
+spancercheng,24879839,1
+lanmichelle,24879839,3
+78478149,24879839,4
+FTDxiaowukong,24879839,2
+52451276,24879839,1
+CalvinAzure,24879839,2
+4162677,24879839,2
+42128740,24879839,-1
+zhangjiyang,24879839,3
+35668073,24879839,2
+44066493,24879839,3
+huanghongyang,24879839,3
+52408842,24879839,3
+34990836,24879839,4
+kimxixi,24879839,1
+Dogma90,24879839,2
+csh329,24879839,3
+imcaoli,24879839,1
+45776079,24879839,4
+anddna,24879839,1
+74422661,24879839,4
+122789808,24879839,4
+clandia,24879839,2
+62368815,24879839,-1
+66595239,24879839,1
+sheltonyou,24879839,1
+40498676,24879839,2
+Mayumi720,24879839,3
+40193618,24879839,3
+57567019,24879839,4
+3640850,24879839,1
+44471889,24879839,2
+71411793,24879839,2
+diwenda,24879839,1
+2202810,24879839,-1
+coolmilk,24879839,2
+crisess,24879839,3
+58014328,24879839,-1
+wooya,24879839,2
+white_day,24879839,4
+4452107,24879839,4
+amang99,24879839,3
+77192536,24879839,3
+60208186,24879839,1
+79904841,24879839,2
+120352953,24879839,3
+43995367,24879839,1
+tassadar,24879839,1
+anqier1,24879839,1
+74567017,24879839,5
+85269486,24879839,3
+niaoyuting,24879839,3
+niaoyuting,24879839,3
+wuxiaocao,24879839,4
+82915767,24879839,3
+letyoufindme,24879839,3
+76999762,24879839,3
+chuanhua1989,24879839,4
+elbe,24879839,1
+119557936,24879839,1
+nuoweibai11,24879839,3
+57352656,24879839,2
+60011840,24879839,1
+basementkids,24879839,4
+abc1985,24879839,1
+48500939,24879839,3
+43959014,24879839,3
+xingjian,24879839,4
+50492403,24879839,1
+berrysweery,24879839,2
+114306583,24879839,4
+94220530,24879839,2
+50375106,24879839,1
+qweerew,24879839,3
+cheungjoe,24879839,2
+antibiotics,24879839,3
+Rocwong,24879839,2
+cozy421,24879839,3
+sysonchen,24879839,2
+SimpleLife97,24879839,1
+44502343,24879839,-1
+73383984,24879839,2
+elvinyoung,24879839,2
+126980247,24879839,3
+54478886,24879839,2
+stillmuchtolose,24879839,2
+zhao_bryant,24879839,3
+83691770,24879839,4
+Apanggg,24879839,2
+soonwin,24879839,-1
+61726273,24879839,4
+53743018,24879839,1
+Abandoned_Sundy,24879839,2
+9811104,24879839,5
+42431997,24879839,1
+cherrykuo,24879839,3
+2078085,24879839,4
+glowindark,24879839,3
+120554245,24879839,4
+palemoon,24879839,4
+57416285,24879839,1
+49730580,24879839,3
+122385818,24879839,2
+melody_so,24879839,5
+107805569,24879839,3
+82765378,24879839,1
+zhangdanyang,24879839,1
+2617310,24879839,2
+53969276,24879839,1
+48348990,24879839,5
+winterppt,24879839,2
+xulewyw,24879839,-1
+71127427,24879839,3
+47314582,24879839,3
+hsuhoffe,24879839,3
+kingzone,24879839,2
+116976315,24879839,4
+52455422,24879839,3
+67745013,24879839,3
+summer_waiting,24879839,3
+65495710,24879839,1
+130531955,24879839,3
+71985328,24879839,3
+wddEileen,24879839,1
+bloodmary,24879839,3
+24918393,24879839,1
+64056125,24879839,3
+Shiou1,24879839,3
+29345040,24879839,1
+whoab,24879839,3
+49433012,24879839,4
+87790169,24879839,2
+1304071,24879839,3
+63868010,24879839,2
+TitlisGushishan,24879839,3
+38971508,24879839,2
+60963061,24879839,3
+30125129,24879839,2
+67946884,24879839,3
+71185130,24879839,1
+122009529,24879839,5
+UFO007,24879839,1
+4507555,24879839,2
+sq320530,24879839,3
+53058122,24879839,1
+2097598,24879839,3
+astimegoby,24879839,2
+47799758,24879839,3
+ding7,24879839,4
+lovelyee,24879839,2
+1479136,24879839,3
+calvingaga,24879839,4
+phine07,24879839,3
+alexkh,24879839,4
+71143154,24879839,2
+chinabamboo,24879839,-1
+8469986,24879839,3
+huayeah,24879839,3
+4627411,24879839,2
+withsusy,24879839,1
+74995985,24879839,2
+lmoung,24879839,1
+42166979,24879839,1
+42171704,24879839,2
+35890249,24879839,1
+wenyijiji,24879839,2
+46423055,24879839,1
+Daniel.W,24879839,5
+nangongdoudou,24879839,3
+gloria1206,24879839,5
+103468401,24879839,3
+graylucky,24879839,4
+2208862,24879839,4
+jetme,24879839,3
+55516627,24879839,1
+soulmate_z,24879839,2
+idiotmike,24879839,2
+52679814,24879839,-1
+2646782,24879839,1
+haisong95,24879839,1
+47631082,24879839,1
+liuyanti,24879839,5
+witley,24879839,4
+45436450,24879839,3
+54943644,24879839,2
+48941780,24879839,1
+10007777,24879839,3
+47003719,24879839,3
+10345879,24879839,3
+syhhh,24879839,1
+missZ.,24879839,3
+68631195,24879839,2
+mavishebelsie,24879839,2
+chesbasten,24879839,1
+qjwcc,24879839,2
+ningning9164,24879839,-1
+66631031,24879839,2
+2480830,24879839,1
+shinemodarel,24879839,3
+4224712,24879839,1
+fortis,24879839,-1
+73769279,24879839,5
+emofuh,24879839,-1
+63601043,24879839,1
+bobogua,24879839,1
+68675325,24879839,2
+47077151,24879839,3
+36115089,24879839,3
+shingle,24879839,3
+66339819,24879839,3
+61011795,24879839,3
+1553963,24879839,3
+maoamao,24879839,3
+69033332,24879839,3
+kubrick311,24879839,4
+62710614,24879839,1
+adrian0807,24879839,2
+13265830,24879839,5
+mosquitoBoA,24879839,3
+124707703,24879839,4
+79877763,24879839,5
+1246909,24879839,4
+1191806,24879839,4
+68015443,24879839,3
+zizzyzizz,24879839,3
+128020172,24879839,3
+82250645,24879839,1
+60263723,24879839,3
+3638194,24879839,2
+Paranoid.L,24879839,1
+superdupp,24879839,-1
+58946652,24879839,4
+56609049,24879839,4
+52375179,24879839,3
+yahgyl,24879839,4
+HR-vivi,24879839,3
+vincent0007,24879839,3
+tyfeng1220,24879839,3
+59530325,24879839,3
+48160969,24879839,1
+67334410,24879839,3
+94269146,24879839,3
+1011562,24879839,3
+huanyoushijiema,24879839,5
+53608629,24879839,1
+tequi1a,24879839,1
+43646111,24879839,-1
+ZHeng2H,24879839,2
+52331633,24879839,2
+44345461,24879839,3
+130348084,24879839,1
+130663859,24879839,2
+2794980,24879839,1
+bigbei,24879839,2
+1631122,24879839,2
+lalunabonita,24879839,3
+mashifu,24879839,1
+laurellake,24879839,5
+58256520,24879839,3
+51890935,24879839,2
+3586520,24879839,1
+haal,24879839,5
+oooweirooo,24879839,2
+47476786,24879839,2
+129719594,24879839,3
+41376663,24879839,4
+51246703,24879839,4
+4652610,24879839,3
+seodler,24879839,2
+47351813,24879839,3
+49498918,24879839,3
+tonyzzp,24879839,2
+79773701,24879839,3
+misspomelo21,24879839,4
+lotusjunepp,24879839,4
+77367736,24879839,1
+84696017,24879839,1
+2457791,24879839,2
+71341774,24879839,1
+55874640,24879839,3
+bay2fun,24879839,3
+cissy_cissy,24879839,2
+leoyoontsaw,24879839,3
+dellama,24879839,1
+55754517,24879839,2
+48116369,24879839,2
+32867787,24879839,2
+newbear,24879839,3
+steveliux,24879839,3
+53159039,24879839,3
+romanbaby,24879839,4
+ifuya,24879839,2
+ifuya,24879839,2
+airkong,24879839,-1
+39789528,24879839,4
+coolwd,24879839,3
+LLILYAN,24879839,1
+1406370,24879839,3
+70039420,24879839,1
+17683946,24879839,2
+elise16,24879839,3
+56636319,24879839,4
+sidneylumet,24879839,2
+knightingale,24879839,4
+46729513,24879839,3
+mtl,24879839,2
+3922372,24879839,3
+70781004,24879839,4
+38356699,24879839,3
+zhangchipapa,24879839,3
+48892199,24879839,3
+B-B-B-Side,24879839,3
+yixi7,24879839,2
+47105797,24879839,3
+96784473,24879839,4
+29749454,24879839,3
+3906584,24879839,4
+47494668,24879839,2
+ivydehouse,24879839,4
+53498133,24879839,3
+12506720,24879839,3
+46935296,24879839,4
+4056710,24879839,3
+color4,24879839,3
+ctotoro,24879839,3
+3730375,24879839,5
+89944772,24879839,4
+115951679,24879839,4
+44868532,24879839,2
+cassiewang,24879839,2
+jasonisajoker,24879839,3
+princesssea,24879839,3
+xiexiaobaoai,24879839,5
+forff,24879839,2
+126596532,24879839,5
+57862595,24879839,2
+130717277,24879839,3
+130717293,24879839,1
+lanselo,24879839,3
+64729781,24879839,5
+120630724,24879839,1
+60785020,24879839,4
+timetells,24879839,4
+3211969,24879839,4
+84835681,24879839,1
+67486282,24879839,2
+xieetuzi,24879839,3
+snowbusy,24879839,1
+46508928,24879839,2
+goldzi,24879839,4
+casablanca0912,24879839,2
+55410872,24879839,2
+43808911,24879839,2
+hesterisafish,24879839,-1
+wrx1203,24879839,5
+130716895,24879839,5
+75812054,24879839,3
+73784914,24879839,2
+dengleite,24879839,1
+ParadiseJaxn,24879839,4
+3936900,24879839,3
+lalalalalala777,24879839,2
+duanxiaoyunlyy,24879839,2
+jiachangting,24879839,3
+vipphd,24879839,4
+129158063,24879839,4
+papa_guo,24879839,2
+2978891,24879839,3
+cultaste,24879839,3
+25973603,24879839,5
+lovecimi,24879839,2
+1456080,24879839,3
+41651378,24879839,3
+94401458,24879839,4
+67211890,24879839,2
+4337944,24879839,1
+62261367,24879839,4
+47894027,24879839,2
+42691855,24879839,4
+kisskarma,24879839,2
+5659406,24879839,4
+70394248,24879839,3
+54055888,24879839,-1
+60270558,24879839,2
+tzhou730,24879839,2
+2465989,24879839,3
+4592364,24879839,1
+mademoiselleM,24879839,3
+34459327,24879839,2
+2917148,24879839,1
+stand314,24879839,3
+1970183,24879839,2
+uzimakinaruto,24879839,5
+moncherieni,24879839,3
+jashia,24879839,5
+myhoneyzjy,24879839,4
+laura13,24879839,2
+7960364,24879839,2
+127319320,24879839,1
+duanziyu,24879839,1
+43609061,24879839,2
+69565888,24879839,1
+48229136,24879839,1
+83443118,24879839,3
+missdarcy,24879839,3
+82911674,24879839,2
+57831051,24879839,3
+48562105,24879839,1
+10954467,24879839,1
+14365982,24879839,1
+2014095,24879839,3
+60855466,24879839,3
+naivekook,24879839,4
+34728183,24879839,3
+meworld,24879839,1
+130399797,24879839,3
+43891940,24879839,2
+45736454,24879839,5
+zishi,24879839,3
+phoebekwam,24879839,4
+54473419,24879839,2
+tanglc,24879839,1
+83989454,24879839,5
+62742693,24879839,1
+litaile,24879839,2
+45421682,24879839,2
+73538837,24879839,1
+51840152,24879839,5
+bear1943,24879839,4
+64887087,24879839,5
+dOdO621,24879839,3
+59615085,24879839,3
+58269124,24879839,5
+2914496,24879839,-1
+leo1983,24879839,1
+atom1984,24879839,5
+coradevil,24879839,4
+34005309,24879839,3
+47190086,24879839,4
+seven-y,24879839,3
+49983823,24879839,2
+anboli,24879839,4
+55669081,24879839,4
+68963965,24879839,5
+40591271,24879839,4
+shine-L,24879839,2
+67297999,24879839,4
+jesmine114,24879839,3
+74601834,24879839,5
+37448778,24879839,3
+21113322,24879839,1
+newshit,24879839,1
+57073619,24879839,4
+maoxiaoluo,24879839,4
+KeerDee,24879839,3
+4437785,24879839,4
+jingxijun,24879839,1
+121570556,24879839,3
+95403251,24879839,4
+34979549,24879839,3
+ticket_june,24879839,1
+qingwuhuiwang,24879839,4
+reave,24879839,4
+2720430,24879839,2
+45570859,24879839,1
+ronniedream,24879839,4
+endlesssisyphus,24879839,3
+l175662142,24879839,1
+68653967,24879839,3
+81586403,24879839,5
+44837247,24879839,4
+36120326,24879839,2
+36120326,24879839,2
+GReyN,24879839,3
+liandlisa,24879839,2
+RosannaRosanna,24879839,3
+66257147,24879839,3
+47419034,24879839,2
+82481486,24879839,3
+44951032,24879839,1
+Fumiaki,24879839,3
+93026596,24879839,1
+Yeah.Owl.G,24879839,3
+3701499,24879839,3
+45478618,24879839,2
+49754258,24879839,2
+116689898,24879839,2
+75763564,24879839,2
+4343972,24879839,1
+chuxuemu,24879839,4
+75347251,24879839,2
+4799139,24879839,5
+4799139,24879839,5
+45794996,24879839,3
+101247152,24879839,3
+58073329,24879839,3
+52256109,24879839,1
+jakexiong,24879839,1
+bigpig93,24879839,2
+yuyuhui,24879839,1
+12822970,24879839,2
+qianqianfei,24879839,3
+zhangtianbo,24879839,2
+yuanyuanjiang,24879839,1
+owldreamer,24879839,3
+cdqingchen,24879839,-1
+xiaotuo,24879839,3
+36499503,24879839,3
+xuanyexixi,24879839,1
+1393524,24879839,-1
+43652499,24879839,1
+4199523,24879839,3
+cutecatblack,24879839,1
+48854947,24879839,2
+jessedong,24879839,2
+46319235,24879839,3
+83360787,24879839,1
+75025238,24879839,3
+2187326,24879839,3
+xiaolouyinyue,24879839,5
+jennycmj,24879839,2
+marcoli,24879839,1
+90623764,24879839,4
+gyd,24879839,2
+70251090,24879839,3
+35740199,24879839,3
+2983314,24879839,3
+severus,24879839,3
+1218211,24879839,3
+3465717,24879839,3
+36342492,24879839,2
+liusongandy,24879839,4
+lukaka,24879839,3
+Muba,24879839,2
+49498940,24879839,1
+ZZH1264473877,24879839,4
+44140767,24879839,3
+57193722,24879839,3
+2154396,24879839,2
+atatat,24879839,4
+124254697,24879839,3
+115605628,24879839,5
+neverfm,24879839,3
+foxsu,24879839,5
+51141449,24879839,5
+lolitaj,24879839,4
+dayandnights,24879839,2
+61237797,24879839,5
+65496075,24879839,4
+2189525,24879839,3
+57955732,24879839,3
+81412709,24879839,3
+viviattic,24879839,-1
+sxanyone,24879839,3
+abbgyy,24879839,5
+valorie28,24879839,2
+4287705,24879839,1
+ghostlite,24879839,4
+Ra1nbow,24879839,3
+86714653,24879839,4
+96142455,24879839,1
+68201979,24879839,5
+kimitsexq,24879839,1
+97269963,24879839,2
+vitta_endless,24879839,2
+yugewoaini,24879839,5
+52468739,24879839,4
+47717699,24879839,-1
+zyw19870917,24879839,2
+28077686,24879839,3
+nakaa,24879839,1
+84796061,24879839,2
+56166933,24879839,4
+yokoyamamomoko,24879839,5
+54782824,24879839,3
+72277659,24879839,4
+55978536,24879839,3
+fyl00,24879839,1
+summerwoods,24879839,3
+3524514,24879839,3
+48441113,24879839,1
+45463396,24879839,2
+2525633,24879839,1
+41942106,24879839,3
+62670059,24879839,5
+amelie329,24879839,2
+ability2010,24879839,3
+wanee,24879839,3
+46423702,24879839,1
+48361122,24879839,5
+130531885,24879839,3
+3064435,24879839,1
+98916827,24879839,3
+45384664,24879839,2
+Earrame,24879839,1
+ksky,24879839,3
+57436067,24879839,2
+waitthesun,24879839,3
+easyten,24879839,4
+4696506,24879839,2
+52841596,24879839,3
+shrimpxi,24879839,3
+keasyer,24879839,3
+104313584,24879839,2
+120815285,24879839,2
+mhkm,24879839,2
+129149711,24879839,2
+superise,24879839,3
+eddie18,24879839,3
+56076845,24879839,3
+67972636,24879839,4
+65562790,24879839,3
+65562790,24879839,3
+coco921,24879839,5
+yinya2,24879839,1
+1027000,24879839,4
+lalavae,24879839,5
+31317836,24879839,3
+Joyce1031,24879839,3
+1263695,24879839,2
+45425062,24879839,3
+windjasmine,24879839,1
+leafxiaoying,24879839,2
+zs278777745,24879839,1
+3626358,24879839,3
+38984888,24879839,3
+87703217,24879839,2
+77904577,24879839,4
+hear_me,24879839,2
+44271862,24879839,1
+Pillow_Lee,24879839,3
+72436619,24879839,1
+aoaoaoaoaoaoao,24879839,2
+pupuxiang,24879839,1
+49272831,24879839,3
+domire,24879839,2
+40683858,24879839,3
+56211777,24879839,2
+2154153,24879839,3
+58323913,24879839,1
+44534193,24879839,1
+53962149,24879839,4
+walkrain,24879839,1
+seekis,24879839,4
+snakeeye,24879839,2
+4579831,24879839,2
+ci_lovecandy,24879839,3
+Sapporo,24879839,2
+2365948,24879839,3
+liwujiu,24879839,2
+53239037,24879839,4
+63945238,24879839,1
+ricardoHE,24879839,2
+127899402,24879839,3
+36121445,24879839,3
+3432048,24879839,3
+mvapple,24879839,2
+91475573,24879839,1
+77654603,24879839,2
+16959294,24879839,2
+121666593,24879839,4
+ckafka,24879839,1
+braquentin,24879839,2
+linyanyanyan,24879839,2
+78651458,24879839,3
+wsyanzcz,24879839,3
+Bobbie13,24879839,2
+jaycee103,24879839,3
+53002549,24879839,2
+71996038,24879839,3
+pawear,24879839,2
+27636746,24879839,3
+ElleJ,24879839,4
+limbomiss,24879839,3
+50402097,24879839,1
+4244492,24879839,1
+80876301,24879839,3
+zhanzhan1819,24879839,1
+4657541,24879839,2
+wonder_u,24879839,3
+Total-recall,24879839,1
+119333551,24879839,2
+60123894,24879839,2
+intochaos,24879839,1
+lhacs,24879839,4
+129106127,24879839,2
+wang_haodong,24879839,3
+30341071,24879839,1
+mylittlefour,24879839,3
+38971714,24879839,2
+oooooxxxxx,24879839,2
+41629334,24879839,1
+55914846,24879839,3
+2326685,24879839,2
+ninewords,24879839,3
+91504508,24879839,3
+littlevila,24879839,3
+tintingo,24879839,2
+69998360,24879839,3
+37835484,24879839,4
+mxmxmxxx,24879839,3
+lazylauren,24879839,4
+43172393,24879839,3
+xiaoyu86,24879839,4
+3951214,24879839,3
+nia_chen,24879839,2
+sabishi,24879839,3
+2422505,24879839,2
+64161276,24879839,3
+minijoan,24879839,3
+82152426,24879839,-1
+enberry,24879839,3
+skag,24879839,2
+FreezeJenny,24879839,2
+aojiaogong,24879839,3
+nuomi0217,24879839,3
+kaka-inzaghi,24879839,3
+78343150,24879839,3
+wanwanwan,24879839,2
+naonaosite,24879839,3
+2224281,24879839,2
+54258101,24879839,2
+tianlin87,24879839,4
+88648524,24879839,4
+71028567,24879839,3
+juno_wang,24879839,2
+70449020,24879839,3
+41636624,24879839,-1
+53477720,24879839,3
+29593812,24879839,3
+sophiayou,24879839,1
+L-sheep,24879839,3
+70202233,24879839,3
+47025092,24879839,4
+blachkitty,24879839,5
+77429282,24879839,2
+muchacha,24879839,1
+vampire1010,24879839,2
+71516012,24879839,5
+2056853,24879839,2
+46658511,24879839,3
+lucifer7th,24879839,1
+vivimiaoer,24879839,4
+53379708,24879839,2
+ameliefei,24879839,4
+shuchee,24879839,3
+82211263,24879839,3
+61648064,24879839,4
+50284946,24879839,3
+26414546,24879839,1
+2903830,24879839,3
+3107975,24879839,3
+di.dao..,24879839,1
+114433240,24879839,1
+sable_in_red,24879839,2
+73805161,24879839,2
+75271278,24879839,3
+26650310,24879839,3
+4584624,24879839,4
+sanzanglx,24879839,3
+undeadmonster,24879839,3
+mansondou,24879839,3
+augusttt,24879839,2
+66707798,24879839,2
+4579924,24879839,2
+1411968,24879839,2
+sewer-d,24879839,4
+92581964,24879839,2
+youyang1991,24879839,2
+xiaoluluu,24879839,3
+mickeyvivid,24879839,3
+Osolemio,24879839,3
+29662178,24879839,2
+62370860,24879839,3
+3717792,24879839,2
+4421085,24879839,2
+leexiaoxiao,24879839,1
+45079689,24879839,3
+liligin,24879839,3
+lothron,24879839,1
+85112816,24879839,1
+neflower,24879839,2
+55324515,24879839,3
+ynian2011,24879839,2
+yzjoanne,24879839,2
+102529126,24879839,4
+56758013,24879839,1
+51422628,24879839,-1
+48659455,24879839,3
+novoul,24879839,3
+3500331,24879839,1
+54397830,24879839,-1
+selene.,24879839,4
+20924678,24879839,2
+61745611,24879839,1
+48949608,24879839,3
+incoolway,24879839,1
+66519184,24879839,3
+watever_lan,24879839,2
+2538567,24879839,2
+102256758,24879839,5
+4712544,24879839,1
+107835849,24879839,3
+61476572,24879839,1
+46983520,24879839,2
+ednnaLan,24879839,3
+54910657,24879839,3
+2422833,24879839,1
+5435286,24879839,5
+56631465,24879839,3
+51669831,24879839,3
+glass--house,24879839,-1
+43572287,24879839,-1
+63900378,24879839,3
+3040793,24879839,1
+51882704,24879839,3
+43574449,24879839,2
+bluescup,24879839,2
+59012176,24879839,2
+2910992,24879839,3
+125694010,24879839,4
+101751000,24879839,3
+54365638,24879839,3
+47856322,24879839,2
+3841030,24879839,4
+xiongxiong1994,24879839,2
+48049450,24879839,3
+Apao,24879839,1
+marshluca,24879839,4
+51179594,24879839,5
+2768954,24879839,3
+28556542,24879839,3
+1724013,24879839,1
+alexander1224,24879839,1
+puccatry,24879839,1
+sunlinlin,24879839,2
+arriey,24879839,4
+foleyfan,24879839,2
+3610893,24879839,3
+3192663,24879839,2
+81159938,24879839,3
+119101467,24879839,1
+yukiyuan,24879839,3
+69724064,24879839,1
+yuehyuk,24879839,3
+59979647,24879839,2
+47798709,24879839,2
+zhangdahua,24879839,-1
+lidouble,24879839,3
+127524905,24879839,4
+49489445,24879839,-1
+mirroror,24879839,4
+raye.b,24879839,4
+lenglen,24879839,4
+51075752,24879839,3
+xiaodi27,24879839,4
+TwentytwoEra,24879839,4
+2028913,24879839,3
+isYoko,24879839,3
+49382185,24879839,3
+62117967,24879839,-1
+apollodream,24879839,3
+crlazy_,24879839,3
+sunny11fish,24879839,3
+blacktime189,24879839,2
+vivianenjoying,24879839,2
+60954463,24879839,1
+74365776,24879839,2
+77436258,24879839,4
+LXH88888888,24879839,2
+i7_11,24879839,2
+hey00,24879839,4
+s1269304716,24879839,3
+ruohu3094,24879839,2
+elvina,24879839,1
+2658903,24879839,3
+qj0824,24879839,3
+4065062,24879839,3
+kuangk,24879839,1
+2239773,24879839,3
+24674051,24879839,1
+58010436,24879839,1
+65607463,24879839,3
+53101721,24879839,4
+geyao1994,24879839,2
+55319017,24879839,1
+2548459,24879839,2
+41853036,24879839,4
+zhangleyuan,24879839,3
+luhome,24879839,3
+shengnian,24879839,4
+kouok,24879839,3
+121398687,24879839,3
+52695229,24879839,3
+fanyichao,24879839,3
+xiamudemao,24879839,2
+67862373,24879839,1
+88439681,24879839,2
+75260597,24879839,2
+72209316,24879839,3
+ileonwii,24879839,3
+uniconx,24879839,3
+love-99,24879839,3
+37777566,24879839,2
+yuqianmei,24879839,2
+4022323,24879839,4
+55767306,24879839,1
+ikaka,24879839,3
+57927830,24879839,3
+56792528,24879839,2
+40328347,24879839,3
+noixkyd,24879839,3
+87689465,24879839,3
+48917866,24879839,2
+91653104,24879839,5
+dreamsun,24879839,3
+2950945,24879839,3
+16333554,24879839,3
+showerfly,24879839,3
+4571269,24879839,3
+playgirl-boy,24879839,4
+eeeeeee,24879839,-1
+34956783,24879839,-1
+75740065,24879839,5
+43181209,24879839,2
+xiongjie,24879839,3
+San_king,24879839,4
+dahlie,24879839,1
+72580043,24879839,1
+2374899,24879839,1
+yishenmanli,24879839,3
+winmaxangle,24879839,1
+40616987,24879839,2
+didoe,24879839,2
+Ching-s,24879839,4
+59992554,24879839,2
+1886453,24879839,3
+2118507,24879839,3
+46534906,24879839,3
+74341937,24879839,3
+coco475511,24879839,3
+JJwanted,24879839,3
+79414778,24879839,3
+lizmurray,24879839,2
+tristansays,24879839,1
+wantwaye,24879839,3
+vincent_77,24879839,2
+quickerrun,24879839,1
+97000059,24879839,2
+78314147,24879839,4
+toasthouse,24879839,2
+effy-s,24879839,3
+60810849,24879839,2
+88779522,24879839,2
+hana19,24879839,2
+79306162,24879839,1
+52767128,24879839,2
+helene9933,24879839,2
+bronze27,24879839,5
+taronie,24879839,1
+2623544,24879839,1
+38960112,24879839,2
+44145594,24879839,1
+kadai929,24879839,2
+44173062,24879839,3
+120876817,24879839,4
+muzidingyi,24879839,4
+51964381,24879839,3
+ILWTFT,24879839,-1
+lswawabao,24879839,2
+69930229,24879839,3
+124492261,24879839,4
+52396951,24879839,4
+maimufei,24879839,3
+53677228,24879839,3
+62093986,24879839,3
+12227939,24879839,3
+xmyhart,24879839,2
+46009658,24879839,-1
+91457550,24879839,3
+heyliumj,24879839,3
+117795392,24879839,3
+li12,24879839,4
+80483587,24879839,1
+55603094,24879839,3
+hi_blue,24879839,3
+kensoya,24879839,5
+39012867,24879839,4
+zhadee,24879839,4
+littlemansay,24879839,5
+ccinder,24879839,-1
+60715104,24879839,4
+77244526,24879839,4
+53182864,24879839,4
+Sueli,24879839,3
+70119935,24879839,3
+tykm,24879839,3
+more1npc,24879839,3
+d1senchanted,24879839,-1
+zhaootong,24879839,2
+36664715,24879839,3
+rosacia,24879839,3
+junobao,24879839,1
+81206881,24879839,2
+88215297,24879839,2
+28074817,24879839,3
+1633061,24879839,4
+61366288,24879839,3
+2175454,24879839,2
+75092486,24879839,1
+3321575,24879839,2
+64314238,24879839,-1
+28628487,24879839,3
+65555884,24879839,3
+79180943,24879839,2
+76831491,24879839,1
+68289528,24879839,2
+2218252,24879839,5
+115772568,24879839,2
+misswatermelon,24879839,4
+82522249,24879839,1
+jozenky,24879839,-1
+sob,24879839,5
+50618999,24879839,4
+52917026,24879839,2
+109142318,24879839,3
+Alex-boil,24879839,2
+3259792,24879839,4
+65981408,24879839,2
+45197835,24879839,3
+34438242,24879839,3
+74946696,24879839,-1
+2846758,24879839,4
+85285625,24879839,3
+50477939,24879839,3
+2621323,24879839,2
+yanchong,24879839,1
+46630513,24879839,1
+62272008,24879839,3
+callmemrcoolman,24879839,3
+JudahXIII,24879839,3
+52574726,24879839,3
+1781585,24879839,5
+Arieskitty,24879839,3
+59471293,24879839,2
+jiangyiwen,24879839,3
+55511378,24879839,2
+39781506,24879839,5
+maimaibupang,24879839,2
+buxiebujie,24879839,1
+59909492,24879839,1
+50450547,24879839,4
+Dielin,24879839,3
+92806168,24879839,4
+super112211,24879839,3
+43708089,24879839,4
+milanmao,24879839,1
+53278902,24879839,2
+4664344,24879839,3
+znnet7,24879839,1
+45074177,24879839,4
+gdragon-ily,24879839,3
+dinge,24879839,-1
+fantasy2019,24879839,1
+102433139,24879839,4
+Anitavivi,24879839,3
+71881441,24879839,3
+aki1124,24879839,4
+125969593,24879839,2
+4108835,24879839,2
+43300305,24879839,1
+hidemyhead,24879839,4
+woshixuxude,24879839,3
+36100413,24879839,3
+amandaccforever,24879839,4
+2424435,24879839,1
+77288583,24879839,3
+itzhaoxiangyu,24879839,2
+62402215,24879839,2
+58280362,24879839,4
+36873614,24879839,4
+36633049,24879839,2
+1805693,24879839,4
+1171026,24879839,3
+32541723,24879839,5
+63167875,24879839,3
+66382241,24879839,2
+46849978,24879839,1
+113550327,24879839,4
+107554806,24879839,2
+42781520,24879839,3
+51250064,24879839,3
+mzcat,24879839,2
+FuTeng,24879839,2
+ilovemyylc,24879839,2
+40119554,24879839,3
+kankan329,24879839,3
+earthquakes,24879839,2
+45799454,24879839,2
+oceancloud,24879839,3
+suoailiangren,24879839,2
+73057111,24879839,3
+41874215,24879839,3
+45454364,24879839,3
+130069675,24879839,3
+4576801,24879839,2
+iear,24879839,3
+27504663,24879839,2
+Iacocca,24879839,4
+wangying2325,24879839,3
+64173512,24879839,2
+longlastingfad,24879839,2
+freshwater,24879839,4
+68188758,24879839,3
+DomEw,24879839,2
+2725739,24879839,3
+104003575,24879839,3
+nanonino,24879839,2
+88865433,24879839,4
+119343363,24879839,3
+Jake52592,24879839,3
+62102534,24879839,2
+3757765,24879839,3
+esony121,24879839,4
+mm66806196,24879839,3
+88081334,24879839,1
+120471779,24879839,3
+45311427,24879839,2
+aiyafengle,24879839,4
+44191956,24879839,3
+5652081,24879839,1
+83974267,24879839,2
+54116930,24879839,4
+46596043,24879839,2
+63145913,24879839,2
+58583348,24879839,3
+Jiang_jss,24879839,2
+81107474,24879839,2
+rollingpika,24879839,1
+69257246,24879839,2
+61279122,24879839,3
+46891725,24879839,3
+benzliang,24879839,4
+52529736,24879839,2
+3502559,24879839,2
+49980514,24879839,1
+39652558,24879839,3
+songxiaozao,24879839,4
+johndoex,24879839,3
+qzl,24879839,2
+TalkChan,24879839,2
+Justinboyland,24879839,2
+43887086,24879839,4
+nan1208,24879839,3
+65193778,24879839,2
+nanaccnaanacc,24879839,2
+fireworks0213,24879839,2
+mywarmness,24879839,3
+2582746,24879839,2
+45183610,24879839,3
+83180908,24879839,5
+44649844,24879839,5
+DIRENGREY,24879839,4
+lavicong,24879839,1
+55970012,24879839,3
+57976050,24879839,2
+99329704,24879839,3
+64377598,24879839,1
+65907866,24879839,2
+54224903,24879839,4
+nbclare,24879839,2
+3516582,24879839,-1
+73894299,24879839,4
+63621846,24879839,3
+airpot,24879839,2
+49918615,24879839,3
+debrah,24879839,3
+52382273,24879839,3
+114670150,24879839,1
+bananacm,24879839,4
+caojian120,24879839,4
+47096545,24879839,1
+67944780,24879839,4
+53156692,24879839,4
+4640701,24879839,2
+83185002,24879839,3
+southdrift,24879839,4
+49397482,24879839,2
+SummerChen,24879839,3
+BaiDamao,24879839,4
+122657372,24879839,4
+blurblur1234,24879839,2
+74139024,24879839,3
+56810813,24879839,2
+90612297,24879839,3
+18049794,24879839,4
+81853101,24879839,5
+yishu.,24879839,2
+dengbanqiao,24879839,4
+paobecky,24879839,2
+49439864,24879839,4
+130692591,24879839,3
+mcdon,24879839,1
+61388352,24879839,3
+93672760,24879839,2
+2780529,24879839,2
+DavidTao27109,24879839,4
+64252545,24879839,3
+ashuimmer,24879839,4
+125801421,24879839,2
+3765207,24879839,2
+zizon,24879839,4
+freedom_sky,24879839,3
+discon,24879839,4
+eastease,24879839,5
+2423256,24879839,2
+yuanpy,24879839,5
+paradis1230,24879839,3
+wanglei962845,24879839,5
+114483839,24879839,3
+53905253,24879839,3
+1898022,24879839,4
+bayernwin,24879839,1
+24888847,24879839,5
+basu,24879839,5
+61573146,24879839,4
+76509928,24879839,4
+40671381,24879839,2
+54443004,24879839,1
+49374393,24879839,2
+ceh19930603,24879839,3
+Lius,24879839,2
+Lius,24879839,2
+100420969,24879839,4
+55930699,24879839,5
+superfei,24879839,4
+MiracleQ,24879839,4
+83472025,24879839,4
+ashinkangkang,24879839,4
+aylia,24879839,3
+130332408,24879839,3
+kkguagangqin,24879839,4
+yinghu,24879839,1
+88292094,24879839,3
+81152894,24879839,1
+4313535,24879839,1
+68576426,24879839,1
+61647279,24879839,3
+c-bode,24879839,4
+aQuabLus,24879839,3
+100179635,24879839,1
+78779234,24879839,2
+56357426,24879839,5
+93294169,24879839,3
+gaojfz,24879839,2
+c-h-i,24879839,4
+xphone,24879839,3
+rernse,24879839,1
+90751686,24879839,5
+49093725,24879839,4
+onlyann,24879839,1
+kylefun,24879839,1
+sangkaduola,24879839,3
+invierno,24879839,3
+46190519,24879839,3
+11789715,24879839,3
+56670282,24879839,2
+yesnov,24879839,5
+59769479,24879839,3
+letu,24879839,4
+suicidee,24879839,3
+20543493,24879839,3
+1515497,24879839,3
+61319449,24879839,3
+60903715,24879839,5
+49335372,24879839,4
+62456540,24879839,-1
+53704124,24879839,3
+hlsdy,24879839,5
+70008347,24879839,5
+62440182,24879839,4
+88149801,24879839,2
+59860008,24879839,1
+iamqingqing,24879839,3
+37630904,24879839,4
+48287617,24879839,3
+hanxiao257,24879839,5
+littlecar,24879839,1
+122052846,24879839,1
+73219049,24879839,3
+103102665,24879839,2
+austinzk,24879839,1
+74848025,24879839,1
+xhlaxhla,24879839,2
+ciciaa,24879839,4
+57077284,24879839,3
+giacintaxx,24879839,4
+43777183,24879839,3
+allen_wang0567,24879839,2
+63612050,24879839,2
+125281406,24879839,2
+hellohuman,24879839,5
+71809535,24879839,3
+99080642,24879839,3
+3661252,24879839,3
+58025436,24879839,1
+4750967,24879839,2
+haidiaozyx,24879839,3
+Amour1827,24879839,3
+moonc,24879839,4
+31920828,24879839,2
+huhu1999,24879839,1
+62966764,24879839,3
+2598511,24879839,-1
+46039273,24879839,1
+ioyellow,24879839,4
+39698078,24879839,2
+107719993,24879839,2
+83089976,24879839,1
+zith,24879839,3
+81424914,24879839,4
+DorisM,24879839,3
+73648035,24879839,3
+42131009,24879839,1
+poped,24879839,3
+2862311,24879839,2
+91936277,24879839,3
+67294761,24879839,2
+stefanieren,24879839,1
+41924523,24879839,2
+48950860,24879839,2
+59556078,24879839,3
+54534194,24879839,1
+114088175,24879839,3
+3581917,24879839,3
+72159980,24879839,2
+52097068,24879839,4
+bayuquandi,24879839,2
+90257264,24879839,3
+4291484,24879839,2
+9664364,24879839,1
+42535358,24879839,4
+76818492,24879839,3
+46996397,24879839,3
+jinhoo,24879839,3
+ymxdd326,24879839,3
+xiaodingge,24879839,5
+deatheart,24879839,2
+63890745,24879839,3
+60344319,24879839,2
+greenljy,24879839,3
+104011490,24879839,4
+margie_margie,24879839,2
+money_Sybil,24879839,3
+4698536,24879839,5
+61719930,24879839,3
+125182895,24879839,1
+61302654,24879839,2
+125773849,24879839,3
+helloway,24879839,3
+Serena17,24879839,3
+83317166,24879839,4
+tnyao,24879839,3
+3370009,24879839,1
+72781461,24879839,5
+weizheren,24879839,2
+47900077,24879839,1
+colour3367,24879839,2
+dewar,24879839,2
+63093856,24879839,1
+73849770,24879839,5
+rain711,24879839,3
+66829235,24879839,3
+60730735,24879839,1
+62402779,24879839,4
+57863054,24879839,5
+1079266,24879839,1
+ben11,24879839,5
+49233803,24879839,1
+sandie21,24879839,2
+yue-er,24879839,2
+130681212,24879839,1
+llliilliilll,24879839,3
+50217926,24879839,2
+48991320,24879839,4
+43495757,24879839,3
+70152793,24879839,3
+68735389,24879839,2
+46368829,24879839,3
+frontboy,24879839,2
+deepe,24879839,2
+80040060,24879839,1
+5747784,24879839,4
+54436071,24879839,4
+66743693,24879839,5
+57758773,24879839,4
+autumnday916,24879839,1
+nakamoz,24879839,2
+michaelYeb,24879839,4
+careen,24879839,1
+115590593,24879839,1
+53941925,24879839,4
+69467775,24879839,3
+4797649,24879839,2
+60015867,24879839,2
+38480101,24879839,2
+35459636,24879839,1
+68795124,24879839,3
+44741261,24879839,4
+54230070,24879839,1
+56102431,24879839,2
+47853825,24879839,2
+jacobzhai,24879839,3
+50688073,24879839,4
+49635484,24879839,3
+luhua,24879839,3
+81213276,24879839,3
+56104621,24879839,3
+carol1990,24879839,1
+4272538,24879839,2
+69161245,24879839,3
+42291314,24879839,5
+dongdashan,24879839,1
+quan1989cheng,24879839,2
+59549540,24879839,3
+after-aiko,24879839,3
+75683760,24879839,2
+oceanboo,24879839,2
+suzane,24879839,2
+100746508,24879839,4
+CYU1520,24879839,1
+1599200,24879839,4
+80681000,24879839,3
+37673800,24879839,-1
+57724049,24879839,4
+43182055,24879839,1
+46522785,24879839,3
+vacancy_v,24879839,2
+2745029,24879839,3
+yagami-light,24879839,5
+Utopia.YY,24879839,3
+4267389,24879839,2
+kongyan15,24879839,3
+nwl1991,24879839,5
+51175137,24879839,4
+59236586,24879839,2
+milan0703,24879839,1
+stillove,24879839,3
+44574545,24879839,5
+130411629,24879839,2
+fanqimcgrady,24879839,1
+39488134,24879839,5
+31180148,24879839,3
+119683691,24879839,4
+48505214,24879839,2
+somewhere,24879839,2
+47946644,24879839,4
+48907425,24879839,1
+OrangeWeiei,24879839,3
+4132864,24879839,3
+yuyanlin,24879839,3
+57454818,24879839,1
+4216686,24879839,2
+Stammer,24879839,3
+Goshawk-,24879839,4
+1330480,24879839,3
+taode,24879839,3
+53262397,24879839,1
+41250945,24879839,5
+53033730,24879839,5
+wendy0210,24879839,2
+41526136,24879839,3
+narcolepsie,24879839,5
+3572516,24879839,-1
+4538616,24879839,3
+jasonliu0315,24879839,2
+homecaty,24879839,-1
+4608890,24879839,2
+70427822,24879839,1
+2909826,24879839,3
+3044501,24879839,1
+2217105,24879839,1
+61966356,24879839,3
+sixfingers,24879839,2
+PP_wei,24879839,3
+kiwiiiii,24879839,1
+73361998,24879839,3
+tianshen1944,24879839,4
+82463994,24879839,3
+51618632,24879839,5
+hongxian0918,24879839,-1
+88564672,24879839,2
+41582940,24879839,3
+62353616,24879839,-1
+summer-v,24879839,3
+ngwillya,24879839,5
+dingdaiwei,24879839,5
+31789782,24879839,2
+3583142,24879839,4
+duanxuan718,24879839,3
+willyjiang,24879839,2
+tomiesky,24879839,4
+stonelcc,24879839,4
+eileen_cheung,24879839,3
+2859857,24879839,2
+55833869,24879839,1
+55874346,24879839,3
+87976850,24879839,2
+52792433,24879839,1
+Schiller,24879839,3
+69009221,24879839,1
+48822574,24879839,3
+32135185,24879839,1
+60223940,24879839,4
+jovanni,24879839,2
+4147673,24879839,1
+huangrui1993,24879839,2
+akin11,24879839,3
+51812849,24879839,3
+BIN_CHANG,24879839,-1
+1731256,24879839,2
+81985882,24879839,3
+nekojiru,24879839,3
+title,24879839,2
+hysunao,24879839,2
+BunnyBaby89757,24879839,4
+77194286,24879839,3
+standyvan,24879839,3
+64039684,24879839,3
+seamouse,24879839,3
+78850217,24879839,2
+3949776,24879839,1
+82144608,24879839,3
+63483846,24879839,3
+lulu7,24879839,3
+89208950,24879839,3
+larisamo,24879839,1
+107556145,24879839,2
+kenvol,24879839,5
+xsbbbb,24879839,4
+50026577,24879839,3
+114255827,24879839,1
+58908611,24879839,1
+haxut,24879839,1
+47745204,24879839,3
+nekozamurai,24879839,2
+68156660,24879839,3
+sakay,24879839,1
+57132937,24879839,4
+fare-pussy,24879839,3
+croyn,24879839,-1
+unbounder,24879839,3
+hereyy,24879839,2
+82624141,24879839,2
+62772373,24879839,3
+kid1121,24879839,4
+49890786,24879839,4
+41480013,24879839,2
+2986990,24879839,3
+shouhuwodemao,24879839,1
+lovexuanzhi,24879839,3
+52484586,24879839,3
+ViviaChen,24879839,4
+xbrandy,24879839,2
+yunjixiong,24879839,3
+49935216,24879839,3
+115376627,24879839,2
+Vol.de.nuit,24879839,2
+4017228,24879839,1
+chutian_8986,24879839,5
+chuxiaozhu,24879839,3
+99291502,24879839,4
+42549162,24879839,2
+45261585,24879839,4
+WEWE7UP,24879839,2
+67288880,24879839,3
+48181580,24879839,-1
+83704374,24879839,2
+57266286,24879839,-1
+49356152,24879839,1
+89534065,24879839,3
+74535406,24879839,4
+S__S.,24879839,3
+3798351,24879839,5
+meetlittlepanda,24879839,3
+63194711,24879839,3
+81281958,24879839,1
+69267028,24879839,2
+SILENT7,24879839,3
+EmilyLin,24879839,4
+33855845,24879839,3
+12594639,24879839,4
+72655091,24879839,5
+35801306,24879839,1
+44318435,24879839,3
+fx--hanshu,24879839,4
+38612095,24879839,3
+Melody-Moon,24879839,2
+Cecilia1990,24879839,4
+4409109,24879839,3
+74869296,24879839,4
+36208276,24879839,1
+pangzimiao,24879839,4
+66813486,24879839,3
+59037804,24879839,4
+70654982,24879839,3
+zqj1992,24879839,-1
+76380301,24879839,2
+2210574,24879839,2
+70830810,24879839,2
+41786270,24879839,1
+50588044,24879839,3
+ilovemary,24879839,4
+5273513,24879839,1
+42471335,24879839,2
+sakuraberry,24879839,1
+55925373,24879839,3
+3863781,24879839,5
+31313042,24879839,4
+52959427,24879839,4
+maqingyun,24879839,1
+2234005,24879839,2
+athenahyphen,24879839,3
+4498928,24879839,4
+122886150,24879839,3
+115228406,24879839,2
+janxin,24879839,2
+Arielcong,24879839,2
+51730167,24879839,3
+silortea,24879839,4
+torreslee,24879839,2
+2724287,24879839,5
+joanna-T,24879839,4
+124205329,24879839,2
+87842256,24879839,2
+3407522,24879839,3
+58016622,24879839,2
+Bianco717,24879839,2
+candyberg,24879839,1
+vespalee,24879839,1
+45795420,24879839,-1
+singer1008,24879839,3
+Vanessa.,24879839,2
+64359754,24879839,5
+Basten,24879839,3
+luoluo_731,24879839,2
+71269844,24879839,4
+Fishon,24879839,2
+29923159,24879839,3
+dennisqiang,24879839,5
+58980000,24879839,1
+ke-ke,24879839,3
+76975100,24879839,3
+52396662,24879839,3
+65160676,24879839,1
+endlessroadray,24879839,3
+105802310,24879839,2
+121425550,24879839,-1
+130667705,24879839,5
+50169026,24879839,2
+kiyoka,24879839,3
+8242631,24879839,4
+bannaibanjiu,24879839,4
+soloinjune,24879839,3
+57951942,24879839,3
+DrRay,24879839,2
+44350440,24879839,5
+58096445,24879839,4
+88994787,24879839,1
+4250730,24879839,3
+xianqiejiao,24879839,1
+56783238,24879839,3
+foxvia,24879839,1
+124573500,24879839,4
+83927943,24879839,2
+lnayg1221,24879839,3
+47358013,24879839,4
+NullPointer,24879839,3
+48650510,24879839,3
+62487894,24879839,1
+75514930,24879839,2
+68804843,24879839,3
+82721964,24879839,1
+mewsays,24879839,1
+130667305,24879839,5
+2194719,24879839,3
+55696853,24879839,1
+3055987,24879839,1
+31854340,24879839,3
+liuh886,24879839,4
+101980774,24879839,4
+Hermetic,24879839,2
+114361347,24879839,4
+61920947,24879839,3
+34513979,24879839,2
+3780519,24879839,1
+3308637,24879839,3
+celiazzz,24879839,2
+50060410,24879839,3
+xijiayang,24879839,3
+dianbou,24879839,1
+34268718,24879839,1
+55999220,24879839,2
+morekai,24879839,5
+diecuo,24879839,2
+radiooo,24879839,2
+tobewith0216,24879839,4
+5800637,24879839,2
+aaaaasun,24879839,4
+56628925,24879839,2
+102581208,24879839,5
+kingevin_cho,24879839,4
+daxiwanzi,24879839,1
+zzzyao19960706,24879839,1
+MoAnnie,24879839,4
+40731628,24879839,4
+2885356,24879839,4
+115137309,24879839,2
+taylor_fu,24879839,3
+3003103,24879839,1
+43300747,24879839,4
+38138346,24879839,2
+59421721,24879839,3
+70976003,24879839,5
+2529003,24879839,4
+57719173,24879839,4
+57716551,24879839,2
+3724441,24879839,4
+16719881,24879839,5
+53857648,24879839,3
+35791083,24879839,1
+55622314,24879839,2
+63647766,24879839,2
+52585646,24879839,3
+120774094,24879839,1
+50405543,24879839,3
+kurobox,24879839,4
+IBlues,24879839,2
+57844107,24879839,5
+108496496,24879839,5
+52864878,24879839,2
+55646335,24879839,1
+Dutchgirl,24879839,-1
+purple2046,24879839,-1
+85308049,24879839,3
+62438264,24879839,1
+59353616,24879839,1
+46742218,24879839,1
+zijing201,24879839,3
+45307903,24879839,1
+39093072,24879839,3
+51133078,24879839,3
+52478819,24879839,3
+53485211,24879839,4
+55663940,24879839,-1
+53481903,24879839,3
+4306218,24879839,3
+101778299,24879839,4
+63043429,24879839,1
+52365486,24879839,5
+chunjuantaihou,24879839,3
+lingojj,24879839,2
+yerrick,24879839,3
+lovingecho,24879839,-1
+41385681,24879839,3
+79381149,24879839,2
+82299258,24879839,1
+Renascen,24879839,1
+80808595,24879839,2
+puttingpooh,24879839,4
+79677319,24879839,3
+CyberKnight,24879839,3
+mangojoan,24879839,2
+88871523,24879839,2
+kingszar,24879839,1
+60585068,24879839,3
+m9280,24879839,5
+vincyli,24879839,2
+lovelovecat,24879839,4
+claireqq,24879839,2
+11255442,24879839,1
+xiahkim,24879839,3
+129732129,24879839,4
+Draculala,24879839,2
+68953339,24879839,1
+4370686,24879839,3
+yingxxxxx,24879839,4
+89997290,24879839,3
+baokuo,24879839,3
+Lingeomor,24879839,3
+119838841,24879839,5
+62562773,24879839,4
+40581527,24879839,3
+xiejinni,24879839,4
+68741968,24879839,2
+45834679,24879839,2
+fatia0,24879839,3
+65808040,24879839,4
+annie-bean,24879839,1
+125505200,24879839,2
+MovieL,24879839,1
+wildale,24879839,1
+58285641,24879839,3
+40241549,24879839,1
+58043566,24879839,2
+59930888,24879839,2
+41939078,24879839,2
+15005083,24879839,5
+amber_august,24879839,3
+49064899,24879839,3
+abelleba,24879839,1
+sevee,24879839,5
+we.zero,24879839,1
+60823917,24879839,-1
+snowbaby217,24879839,4
+karide,24879839,2
+d_minor,24879839,3
+qian1014,24879839,4
+121352269,24879839,3
+53092429,24879839,1
+70336535,24879839,3
+imoioi,24879839,1
+alangalang,24879839,2
+53073700,24879839,1
+120555899,24879839,1
+phoebe211,24879839,4
+76933799,24879839,3
+lydialuo,24879839,2
+raychau,24879839,4
+66277108,24879839,2
+32471543,24879839,1
+tzxule,24879839,3
+Semele,24879839,3
+43488242,24879839,3
+68809894,24879839,3
+89036799,24879839,5
+verastar,24879839,4
+3725907,24879839,3
+78326716,24879839,2
+Yuimokin,24879839,5
+zy911,24879839,1
+103173057,24879839,3
+88537945,24879839,3
+65027033,24879839,3
+93504074,24879839,3
+53506476,24879839,4
+79359310,24879839,1
+43585255,24879839,4
+41295711,24879839,4
+61100412,24879839,3
+46416150,24879839,4
+3695883,24879839,3
+121627285,24879839,3
+maoxiaomao,24879839,4
+87095553,24879839,2
+53915476,24879839,4
+formeswong,24879839,1
+58596058,24879839,3
+chenxiaochan123,24879839,4
+64064632,24879839,-1
+46938490,24879839,4
+81757410,24879839,3
+gzgaoyuan,24879839,5
+13833588,24879839,3
+osopaso,24879839,2
+ming_203344,24879839,3
+44239369,24879839,3
+57807205,24879839,2
+77625620,24879839,2
+125010883,24879839,5
+3975532,24879839,2
+68465754,24879839,4
+rachelyi23,24879839,2
+54033630,24879839,4
+2715466,24879839,-1
+3773993,24879839,1
+58263716,24879839,-1
+49175464,24879839,1
+76426376,24879839,2
+63159258,24879839,2
+57459956,24879839,2
+24602898,24879839,3
+Fly123,24879839,3
+43550713,24879839,5
+50900048,24879839,2
+xiaoxiao0718,24879839,5
+54035267,24879839,3
+siciyuan,24879839,4
+110616918,24879839,2
+sand_mao,24879839,5
+48292061,24879839,2
+momojasper,24879839,3
+91171431,24879839,2
+Ymmy,24879839,4
+violain,24879839,3
+42149787,24879839,3
+57754572,24879839,4
+35904729,24879839,2
+78473653,24879839,4
+80035284,24879839,3
+killit,24879839,2
+79559178,24879839,3
+alicemiffy,24879839,4
+49589714,24879839,4
+25664582,24879839,4
+eyefy,24879839,3
+50204008,24879839,4
+gujunhao50,24879839,4
+forever-me,24879839,-1
+71961235,24879839,1
+luckywatersky,24879839,1
+clh7,24879839,2
+clh7,24879839,2
+dawnlight-joe,24879839,2
+zou663,24879839,2
+47243761,24879839,4
+halfrice1984,24879839,1
+36359450,24879839,3
+songweimao,24879839,1
+39518332,24879839,3
+51441257,24879839,2
+62089597,24879839,2
+67263163,24879839,3
+Lyabing,24879839,3
+kylingu,24879839,3
+68568891,24879839,3
+4648701,24879839,3
+34835512,24879839,2
+1442801,24879839,2
+57964854,24879839,4
+GGGGGly,24879839,3
+woniumm,24879839,4
+IKEAUO,24879839,5
+solotaocx,24879839,1
+55608502,24879839,3
+73892674,24879839,3
+51454938,24879839,4
+1697947,24879839,2
+3640079,24879839,4
+plidezus,24879839,1
+46914781,24879839,5
+46121551,24879839,1
+70183715,24879839,1
+26298804,24879839,2
+35763849,24879839,4
+1478036,24879839,2
+Tiotoy,24879839,2
+70315903,24879839,4
+46493467,24879839,2
+48394515,24879839,5
+4556108,24879839,3
+48175935,24879839,5
+im-zhuang,24879839,-1
+68269356,24879839,3
+37975494,24879839,3
+42689691,24879839,2
+Deeper.Dark,24879839,2
+68936887,24879839,4
+57542378,24879839,1
+47448203,24879839,1
+37570641,24879839,3
+83461403,24879839,-1
+1864313,24879839,1
+sanyoumu,24879839,2
+2014851,24879839,1
+99196855,24879839,5
+55805974,24879839,1
+62187339,24879839,3
+qingfengweilan,24879839,4
+4674447,24879839,1
+65528579,24879839,2
+3236458,24879839,4
+Monster-Liu1994,24879839,5
+81948940,24879839,2
+112314303,24879839,2
+3625223,24879839,2
+Nicolelingji,24879839,3
+milkbook,24879839,2
+rajorAn,24879839,3
+46607313,24879839,3
+3619981,24879839,-1
+24263050,24879839,4
+Kei-ko,24879839,4
+47479797,24879839,1
+thejl,24879839,1
+50880028,24879839,2
+bearlost,24879839,1
+50561733,24879839,3
+dou.,24879839,2
+60788836,24879839,2
+14407324,24879839,1
+130146016,24879839,3
+wanglingting,24879839,3
+27459048,24879839,3
+6901137,24879839,3
+toyomana,24879839,1
+Ambersfool,24879839,2
+ideyes,24879839,2
+80743649,24879839,1
+4349165,24879839,1
+53715655,24879839,2
+130265745,24879839,4
+48240288,24879839,2
+appleweiwei,24879839,3
+80430212,24879839,4
+43076738,24879839,4
+wuwumao,24879839,1
+119484113,24879839,4
+1693766,24879839,5
+34901213,24879839,2
+78914788,24879839,2
+anqixue,24879839,2
+31465488,24879839,3
+54823137,24879839,2
+Milk_Solo,24879839,4
+throughyoursoul,24879839,2
+sproblvem,24879839,3
+superpandaba,24879839,5
+vampireUK,24879839,3
+48662310,24879839,2
+56416276,24879839,2
+celia550,24879839,3
+mhyigeren,24879839,1
+52313283,24879839,4
+69680398,24879839,1
+HXYu,24879839,3
+leiweiyu,24879839,2
+vivizhao,24879839,5
+cescape,24879839,5
+83925397,24879839,-1
+zhenghuipeng,24879839,1
+108799577,24879839,3
+51777015,24879839,3
+73144387,24879839,2
+39106859,24879839,5
+xxxxpp,24879839,3
+31717663,24879839,3
+maryjane,24879839,3
+84884580,24879839,4
+41895346,24879839,4
+QPF,24879839,-1
+xiaodaoshengren,24879839,2
+flowertide,24879839,3
+alloveme,24879839,4
+128956176,24879839,2
+59760298,24879839,3
+43986034,24879839,3
+45567800,24879839,-1
+83665749,24879839,2
+sallylu415,24879839,4
+36341358,24879839,-1
+47100944,24879839,1
+63849240,24879839,3
+leekay0830,24879839,4
+60541218,24879839,2
+yanyandedouban,24879839,3
+mihoutuan,24879839,3
+chongchenglove,24879839,4
+about_ear,24879839,1
+52111153,24879839,4
+92041734,24879839,2
+monetsun,24879839,5
+6345441,24879839,2
+88174425,24879839,1
+77762504,24879839,5
+4126419,24879839,1
+4555430,24879839,3
+16330214,24879839,2
+57389316,24879839,3
+bluehtt,24879839,5
+66966914,24879839,4
+suki1003,24879839,3
+suki1003,24879839,3
+chris_star,24879839,4
+85826337,24879839,3
+49404152,24879839,4
+56003950,24879839,1
+64338174,24879839,4
+56582926,24879839,4
+minervayy,24879839,-1
+62880402,24879839,1
+57998285,24879839,2
+85142259,24879839,2
+59749392,24879839,3
+104680634,24879839,2
+121738119,24879839,3
+movie8,24879839,3
+eternal,24879839,1
+45566980,24879839,3
+chenronggang,24879839,3
+42144339,24879839,1
+89723194,24879839,3
+77531616,24879839,3
+43784582,24879839,3
+2424181,24879839,1
+129298730,24879839,2
+55536274,24879839,2
+116277755,24879839,1
+62671989,24879839,2
+ada7603,24879839,5
+RonaldZheng,24879839,1
+hedan122,24879839,5
+60848115,24879839,3
+panpanpenny,24879839,3
+Joki_X,24879839,1
+2275185,24879839,3
+78414144,24879839,2
+79668765,24879839,3
+eddychaw,24879839,3
+alohaceci,24879839,2
+PringlesLinB,24879839,2
+zoujian-999,24879839,2
+Sataaaaaan,24879839,3
+2625374,24879839,5
+douaisha,24879839,4
+62126174,24879839,3
+90193278,24879839,2
+dahuanhuan,24879839,3
+126087578,24879839,2
+3311124,24879839,1
+71933903,24879839,1
+76414184,24879839,3
+36786452,24879839,2
+54783483,24879839,2
+4404541,24879839,2
+8627977,24879839,5
+89406416,24879839,2
+cchestnut,24879839,1
+echoningning,24879839,3
+1379137,24879839,5
+pandatou,24879839,3
+40331088,24879839,3
+Exiaofei,24879839,1
+mcdull11,24879839,2
+mario6688,24879839,3
+lukelueng,24879839,1
+50570726,24879839,3
+4136765,24879839,4
+xuchijun,24879839,1
+83855853,24879839,3
+102960018,24879839,2
+cht,24879839,5
+64040953,24879839,2
+onshuway,24879839,3
+2570265,24879839,4
+chanrayee,24879839,1
+Lydia_Zhu,24879839,4
+xiaoyu_,24879839,4
+kangking,24879839,-1
+47937098,24879839,4
+xilouchen,24879839,4
+58371683,24879839,2
+44685216,24879839,2
+xiguatang,24879839,-1
+93956744,24879839,4
+62613227,24879839,2
+65970423,24879839,3
+gougougougou,24879839,4
+81250941,24879839,3
+tiamat,24879839,3
+85360851,24879839,2
+4341727,24879839,5
+90974773,24879839,3
+Danny-Green,24879839,3
+misummer08,24879839,3
+75650896,24879839,3
+Lara_Bear,24879839,3
+76339815,24879839,-1
+53854833,24879839,2
+36964868,24879839,3
+yexiaoji,24879839,3
+StoneColdFox,24879839,4
+45627400,24879839,4
+sandysea,24879839,3
+47754884,24879839,1
+thinkerwork,24879839,2
+MsLulu,24879839,3
+60074125,24879839,3
+71270602,24879839,5
+3282397,24879839,3
+aizhengyang,24879839,2
+37897776,24879839,2
+jiaosally,24879839,3
+71546629,24879839,2
+130658738,24879839,3
+106497872,24879839,3
+steve647,24879839,3
+3551583,24879839,1
+43828485,24879839,2
+3398230,24879839,1
+116695354,24879839,5
+cuppa,24879839,2
+66321564,24879839,1
+dogbus,24879839,5
+hal-end,24879839,1
+youyui,24879839,5
+74237278,24879839,3
+Antiair,24879839,1
+75402054,24879839,3
+78634966,24879839,-1
+shaonianxin,24879839,3
+yeslie,24879839,3
+77670734,24879839,3
+sam112895,24879839,4
+baguabagua,24879839,5
+2950551,24879839,3
+zaishijie,24879839,5
+4194244,24879839,4
+Hannover96,24879839,1
+yangzixi,24879839,1
+130296477,24879839,5
+ttyingyuan,24879839,3
+49922437,24879839,3
+peiaxi,24879839,1
+49258293,24879839,1
+57803774,24879839,1
+53057559,24879839,3
+dehhan,24879839,3
+sfroompp,24879839,3
+122110316,24879839,3
+4396218,24879839,3
+51103261,24879839,2
+reiko77877,24879839,3
+129255326,24879839,3
+3772235,24879839,4
+129051527,24879839,3
+J-Tax,24879839,4
+61282289,24879839,3
+80319590,24879839,3
+32023588,24879839,1
+59820675,24879839,2
+Heyimwalker,24879839,4
+2298632,24879839,3
+93213227,24879839,3
+aaate,24879839,4
+Kallita,24879839,4
+goldenknob,24879839,3
+3632790,24879839,1
+85356798,24879839,1
+50118479,24879839,4
+57947466,24879839,5
+Ran9o,24879839,1
+53462734,24879839,2
+78364683,24879839,3
+58064521,24879839,3
+muzimisneil,24879839,2
+3478406,24879839,3
+lane1031,24879839,1
+79899831,24879839,4
+121478447,24879839,4
+redme,24879839,4
+shishiamz,24879839,4
+26752279,24879839,2
+yededi8821,24879839,2
+61207902,24879839,5
+126800148,24879839,1
+1083350,24879839,1
+teliduxingdegou,24879839,3
+Miralte,24879839,1
+Chopen,24879839,1
+hajimeyoung,24879839,2
+4446231,24879839,1
+lzannie823,24879839,3
+65372479,24879839,3
+lucifer1029,24879839,1
+4869541,24879839,3
+62477319,24879839,3
+64218724,24879839,3
+dingpu,24879839,2
+oatgnik,24879839,2
+chrissiemeng,24879839,5
+64540248,24879839,2
+66155020,24879839,3
+28183442,24879839,3
+122199610,24879839,4
+83389859,24879839,3
+60740508,24879839,4
+73555713,24879839,1
+4457708,24879839,4
+sjk,24879839,3
+36463636,24879839,3
+57620565,24879839,2
+40241805,24879839,3
+4360069,24879839,1
+ClusterOn,24879839,1
+deepurple,24879839,2
+14965275,24879839,2
+maidangdang,24879839,3
+yvett,24879839,4
+54560246,24879839,3
+54999425,24879839,2
+fifa10,24879839,3
+103646211,24879839,2
+Rina_Huruku,24879839,1
+61438233,24879839,5
+66521605,24879839,1
+2087096,24879839,3
+kevincaiduo,24879839,1
+dario,24879839,2
+122107409,24879839,1
+4445748,24879839,3
+127728111,24879839,3
+x_zr525,24879839,1
+130111884,24879839,3
+83162641,24879839,2
+ruokongzhi,24879839,4
+43495791,24879839,3
+silverhawk,24879839,1
+poline,24879839,3
+1820379,24879839,5
+52926206,24879839,1
+102718430,24879839,4
+62681207,24879839,2
+57370195,24879839,3
+121874548,24879839,4
+129451784,24879839,4
+54612022,24879839,3
+flowermumu,24879839,2
+leonyounger,24879839,2
+127260769,24879839,1
+77492957,24879839,5
+48613697,24879839,3
+sunshinetoo,24879839,1
+62917415,24879839,4
+29774277,24879839,1
+53932937,24879839,2
+124146712,24879839,2
+yanzi_db,24879839,-1
+midbones,24879839,-1
+Raye052,24879839,2
+105493936,24879839,1
+48921388,24879839,2
+56224870,24879839,5
+121874327,24879839,4
+izaijin,24879839,5
+78540104,24879839,3
+qunxiachen,24879839,1
+7409012,24879839,3
+Tracy.J,24879839,4
+53094976,24879839,1
+57545593,24879839,3
+48345636,24879839,2
+67641940,24879839,3
+129914748,24879839,2
+2016454,24879839,2
+103370606,24879839,3
+60935485,24879839,5
+josephine2able,24879839,2
+1781929,24879839,3
+baizhaoran,24879839,3
+104373003,24879839,1
+little_cupid,24879839,2
+lzzzzzfbee,24879839,2
+60710488,24879839,4
+onceomega,24879839,-1
+51815760,24879839,4
+jannekui,24879839,-1
+kamekazuya,24879839,1
+3639629,24879839,-1
+129283684,24879839,3
+2740051,24879839,2
+106597439,24879839,1
+guominhua,24879839,3
+55834735,24879839,2
+56627146,24879839,3
+49199928,24879839,5
+46408785,24879839,2
+lingci,24879839,2
+46735023,24879839,4
+aless13,24879839,2
+Annietta8393,24879839,2
+73768064,24879839,3
+51053989,24879839,2
+113235859,24879839,1
+107274649,24879839,5
+hanyinbo,24879839,3
+62028090,24879839,3
+2246027,24879839,2
+90014162,24879839,4
+54686869,24879839,4
+113752134,24879839,-1
+60051093,24879839,1
+47317180,24879839,2
+kissnianan,24879839,4
+iklong,24879839,4
+honahlee,24879839,3
+4015136,24879839,3
+baby-giG,24879839,3
+119464315,24879839,2
+Casiopea_yh,24879839,4
+58643220,24879839,2
+canghairen,24879839,2
+119325889,24879839,1
+90014790,24879839,4
+35336788,24879839,3
+84253559,24879839,5
+elvfor,24879839,2
+jy89110,24879839,2
+83044349,24879839,4
+59367965,24879839,2
+qinzibonheur,24879839,3
+lovelyle,24879839,3
+68480782,24879839,5
+58050003,24879839,4
+65589834,24879839,1
+51747532,24879839,4
+alivinlondonl,24879839,2
+76851962,24879839,2
+50446919,24879839,3
+52806556,24879839,3
+47165433,24879839,1
+tiffanyji,24879839,3
+tiffanyji,24879839,3
+128192780,24879839,-1
+50281819,24879839,2
+18360610,24879839,2
+silverlee,24879839,-1
+82663579,24879839,3
+clever528,24879839,3
+46056561,24879839,4
+eveche,24879839,2
+40436346,24879839,3
+mr.Marlboro,24879839,2
+56543067,24879839,1
+63875799,24879839,5
+2191361,24879839,3
+120787443,24879839,2
+66880855,24879839,3
+3126510,24879839,5
+confidants,24879839,3
+amzyangyk,24879839,1
+fansz,24879839,4
+76883888,24879839,4
+36937458,24879839,3
+93394632,24879839,1
+seafans,24879839,3
+wangxixi,24879839,4
+128061195,24879839,3
+hhy2013,24879839,4
+115982359,24879839,4
+55606165,24879839,4
+123345313,24879839,1
+65214570,24879839,3
+45812383,24879839,1
+59038571,24879839,3
+Lastdeadlyjoke,24879839,-1
+neverland-13,24879839,3
+nothingicare,24879839,4
+48842529,24879839,4
+MilkyWayH,24879839,4
+75117264,24879839,3
+76789828,24879839,2
+45060323,24879839,2
+kele5240,24879839,3
+52286623,24879839,3
+rn86,24879839,2
+KFdaxiong,24879839,3
+1341261,24879839,1
+53212541,24879839,1
+52562383,24879839,4
+73535943,24879839,1
+54619955,24879839,2
+66352565,24879839,1
+84279039,24879839,3
+72023919,24879839,2
+74286517,24879839,2
+67402791,24879839,4
+genevieve_xie,24879839,2
+readman,24879839,2
+120886080,24879839,1
+76394670,24879839,3
+72004354,24879839,3
+65883549,24879839,3
+allenzn125,24879839,3
+isheldon,24879839,1
+56328149,24879839,3
+rucylx,24879839,3
+11508993,24879839,3
+47716640,24879839,2
+easonlau,24879839,3
+88412821,24879839,2
+40953628,24879839,4
+72134309,24879839,2
+sai27,24879839,1
+blue1997,24879839,2
+99954105,24879839,2
+66698052,24879839,3
+1357759,24879839,2
+i3song,24879839,3
+Nigrum,24879839,2
+52702022,24879839,4
+sannqi,24879839,1
+127358334,24879839,1
+76630020,24879839,4
+41932394,24879839,4
+64747830,24879839,3
+72147052,24879839,3
+67785528,24879839,5
+adamhu,24879839,2
+vvtutu,24879839,3
+52383930,24879839,1
+51378440,24879839,1
+xiang_ge,24879839,2
+ilovemeizu,24879839,3
+107716696,24879839,4
+4324772,24879839,4
+Isipatana,24879839,3
+91537188,24879839,3
+diylove,24879839,3
+69148089,24879839,3
+86246804,24879839,2
+76231825,24879839,1
+Lotosschnee,24879839,4
+qijiuzhiyue,24879839,2
+44903919,24879839,1
+42722420,24879839,3
+j23ju,24879839,3
+59131562,24879839,2
+zayaza,24879839,2
+qiansu2015,24879839,1
+upyougo,24879839,3
+47428153,24879839,3
+xiaoduo247,24879839,3
+77452056,24879839,1
+gaishixiaogui,24879839,4
+49055254,24879839,2
+54396122,24879839,2
+kjslove,24879839,2
+124285500,24879839,1
+46909734,24879839,1
+69120461,24879839,2
+77005225,24879839,3
+35904639,24879839,3
+1468570,24879839,2
+huan19494114,24879839,1
+Alvin0414,24879839,2
+114741657,24879839,2
+130646245,24879839,5
+amosteng,24879839,3
+45473571,24879839,1
+chenhaoyuan,24879839,3
+121516783,24879839,1
+46815070,24879839,1
+MENG-331,24879839,3
+51682077,24879839,1
+55764073,24879839,3
+54809544,24879839,5
+54938342,24879839,1
+2600693,24879839,4
+1970231,24879839,4
+46479619,24879839,3
+57441290,24879839,4
+Kaylana,24879839,1
+lxmoe0617,24879839,4
+barsten213,24879839,3
+myboo,24879839,3
+3793037,24879839,3
+idiot.child,24879839,1
+123499587,24879839,-1
+45513375,24879839,1
+127278998,24879839,3
+70854495,24879839,4
+shinysun,24879839,2
+67746910,24879839,4
+windcar,24879839,1
+xxe,24879839,2
+56923561,24879839,4
+gaoxingyeah,24879839,5
+51313019,24879839,4
+urslee,24879839,5
+oiseauww,24879839,1
+tjz230,24879839,2
+foxmuldery,24879839,3
+1864146,24879839,3
+imoviekobe,24879839,2
+40778058,24879839,1
+turtlepear,24879839,2
+2089606,24879839,5
+51478034,24879839,3
+70253982,24879839,1
+74572525,24879839,5
+gloryofnt,24879839,3
+wangxiaoyeer,24879839,3
+qingnianluoke,24879839,2
+53283492,24879839,1
+7633150,24879839,4
+88428362,24879839,4
+31548307,24879839,4
+kinged14,24879839,3
+marysays,24879839,-1
+57970851,24879839,2
+75555636,24879839,5
+85986688,24879839,4
+fengjiansun,24879839,1
+jakeman,24879839,3
+65075320,24879839,5
+3562216,24879839,1
+kuangren79,24879839,2
+51384913,24879839,2
+thogiac,24879839,-1
+1447706,24879839,1
+53694721,24879839,2
+39567934,24879839,2
+89382029,24879839,1
+phoebechin,24879839,5
+72692620,24879839,3
+70588513,24879839,4
+60690133,24879839,1
+115775879,24879839,3
+30198706,24879839,3
+59741934,24879839,4
+babieblue,24879839,3
+70302658,24879839,3
+57553454,24879839,3
+68434505,24879839,1
+kp81ndlf,24879839,2
+2429069,24879839,1
+37873012,24879839,-1
+129040380,24879839,1
+56914134,24879839,2
+68669440,24879839,2
+68873577,24879839,4
+74608799,24879839,3
+senhai,24879839,3
+48823348,24879839,2
+12686265,24879839,2
+48787128,24879839,3
+55990410,24879839,1
+2486868,24879839,1
+113919614,24879839,1
+79664837,24879839,5
+42015731,24879839,2
+atom012,24879839,2
+kakasissi,24879839,3
+130471449,24879839,5
+17342003,24879839,1
+52926805,24879839,-1
+stwang,24879839,4
+33071569,24879839,2
+41985002,24879839,5
+caesarzx,24879839,2
+64105461,24879839,2
+40615073,24879839,1
+104777463,24879839,4
+126587949,24879839,2
+107146215,24879839,5
+55972806,24879839,2
+lesc,24879839,3
+41409049,24879839,4
+115118627,24879839,4
+storyof,24879839,4
+agupetc,24879839,3
+agupetc,24879839,3
+hongzhouche,24879839,3
+tiananan,24879839,3
+41844551,24879839,3
+76146294,24879839,3
+49249960,24879839,2
+51712880,24879839,4
+56981599,24879839,3
+47088428,24879839,3
+sunyanzhen,24879839,2
+74737675,24879839,1
+Amor_ar,24879839,4
+38359787,24879839,3
+4582224,24879839,4
+52121042,24879839,1
+67602122,24879839,2
+25179166,24879839,4
+panggou,24879839,1
+41961223,24879839,1
+wakemeupp,24879839,4
+wakemeupp,24879839,4
+66620661,24879839,3
+Rick_Film,24879839,1
+Jane88126,24879839,4
+yushu25,24879839,2
+3113220,24879839,2
+45476449,24879839,2
+4573696,24879839,3
+34187825,24879839,3
+victor618000,24879839,3
+nanmomo,24879839,1
+msuper,24879839,3
+72677574,24879839,3
+60348245,24879839,2
+juanjuan1121,24879839,3
+dilara,24879839,4
+68813789,24879839,3
+thesadyesterday,24879839,3
+m19900714,24879839,2
+55592315,24879839,2
+3465533,24879839,5
+66953540,24879839,5
+zhangyan1736,24879839,3
+57879215,24879839,2
+moika,24879839,2
+xy22,24879839,-1
+hooichueng,24879839,3
+103442310,24879839,2
+4747276,24879839,4
+sourirefish,24879839,4
+76077313,24879839,1
+66457415,24879839,3
+76893699,24879839,4
+3295210,24879839,3
+qixiaosheng,24879839,4
+jaredspecter,24879839,2
+hakueibaby,24879839,-1
+zql9527,24879839,2
+66331142,24879839,2
+weixiaolengmo,24879839,2
+greenblues,24879839,2
+88844052,24879839,3
+60885863,24879839,5
+6972276,24879839,1
+just_shamrock,24879839,1
+calvinlv,24879839,3
+2726762,24879839,3
+76852341,24879839,3
+mmcv,24879839,2
+64823287,24879839,3
+67654909,24879839,3
+abey1949,24879839,5
+xylitol,24879839,3
+54479962,24879839,3
+coolsin,24879839,3
+ycy19870313,24879839,3
+JayChenCC,24879839,1
+beckcy,24879839,5
+47187620,24879839,3
+51736868,24879839,2
+davyjones,24879839,2
+59936599,24879839,1
+xiangrong52,24879839,4
+4518731,24879839,4
+5466368,24879839,4
+66258749,24879839,1
+48542605,24879839,3
+65309880,24879839,1
+3346015,24879839,2
+65658077,24879839,1
+99483183,24879839,3
+xianfengyana,24879839,-1
+wxq1012,24879839,2
+null12345,24879839,2
+vhuangdao,24879839,3
+77303569,24879839,3
+60283154,24879839,5
+bloodleopard,24879839,3
+lingzhoujiu,24879839,5
+74258577,24879839,2
+49575577,24879839,3
+Edvar,24879839,1
+57104894,24879839,3
+115658788,24879839,4
+102578826,24879839,1
+3111681,24879839,2
+chanel0214,24879839,3
+lele8,24879839,1
+vanfangjie,24879839,4
+momogoogoo,24879839,1
+chyxqwl,24879839,2
+58596965,24879839,4
+65907091,24879839,3
+3800028,24879839,3
+iaubry,24879839,1
+vile,24879839,1
+57193473,24879839,2
+jieyi429,24879839,1
+42619066,24879839,3
+Hsummer,24879839,3
+Hsummer,24879839,3
+46765428,24879839,3
+130295773,24879839,4
+97279852,24879839,1
+55767927,24879839,2
+dazhuang1990,24879839,1
+lulu_sheep,24879839,2
+4406925,24879839,2
+49706252,24879839,5
+63822026,24879839,3
+a1234567,24879839,3
+buyimuchen,24879839,3
+2677448,24879839,2
+115751800,24879839,2
+gemouwu,24879839,3
+1928418,24879839,3
+56810055,24879839,5
+heize196,24879839,2
+mengpiapia,24879839,5
+kfc2005,24879839,1
+55511225,24879839,2
+128402632,24879839,5
+119418827,24879839,3
+48508615,24879839,4
+1400970,24879839,1
+xuansushine,24879839,4
+kitata,24879839,1
+71953415,24879839,2
+52801650,24879839,2
+jason1991,24879839,3
+63550302,24879839,1
+60566825,24879839,2
+3319322,24879839,4
+mo_eric,24879839,1
+36505752,24879839,2
+tyna,24879839,4
+dd622462,24879839,1
+amandals,24879839,5
+quite-yacca,24879839,2
+82152923,24879839,2
+sherry0330,24879839,3
+47127791,24879839,4
+Mannialanck,24879839,3
+colatea,24879839,3
+4010201,24879839,3
+44203780,24879839,3
+50587917,24879839,3
+90930462,24879839,1
+72296514,24879839,2
+3608735,24879839,5
+Darevivion,24879839,2
+24571201,24879839,3
+3958061,24879839,1
+3731229,24879839,3
+35342547,24879839,4
+60020985,24879839,2
+83193212,24879839,1
+78237245,24879839,4
+Monster_004,24879839,3
+44335994,24879839,3
+daytoday,24879839,4
+Reneelovely,24879839,3
+montee_D,24879839,2
+92398159,24879839,3
+50573314,24879839,4
+61847060,24879839,1
+ffei593,24879839,4
+15729953,24879839,2
+3796746,24879839,3
+renjiananhuo,24879839,2
+60310155,24879839,1
+intofilm,24879839,1
+1302842,24879839,1
+karmairis,24879839,2
+xxfx,24879839,3
+52772020,24879839,2
+1544023,24879839,3
+100240812,24879839,3
+jingshensushi,24879839,-1
+22040154,24879839,3
+77914968,24879839,2
+ritalu,24879839,1
+56058118,24879839,1
+icemayi,24879839,1
+29280145,24879839,5
+AiryLam,24879839,4
+127559466,24879839,1
+jhlcw,24879839,5
+82581264,24879839,1
+47792227,24879839,1
+ulricazz,24879839,4
+45242330,24879839,2
+83095277,24879839,3
+90485552,24879839,4
+greatgiggs,24879839,1
+127071890,24879839,3
+73866765,24879839,3
+101982187,24879839,1
+49914687,24879839,4
+50353449,24879839,1
+kennyeffect,24879839,2
+48768531,24879839,5
+Hana_H,24879839,2
+clovergreen,24879839,1
+126693961,24879839,1
+115381052,24879839,4
+1644460,24879839,1
+62892603,24879839,5
+45633111,24879839,2
+74659221,24879839,3
+twitodd,24879839,2
+mockingway,24879839,2
+94910367,24879839,4
+3978258,24879839,3
+Cicipo44,24879839,1
+58178750,24879839,4
+62690517,24879839,3
+dongcongcong,24879839,4
+104365614,24879839,3
+48355482,24879839,3
+1569518,24879839,3
+Nicrophorusy,24879839,1
+yum0808,24879839,3
+61723144,24879839,3
+37552777,24879839,3
+Nibia,24879839,3
+59025385,24879839,1
+61935443,24879839,3
+125012409,24879839,2
+77792440,24879839,3
+45473293,24879839,3
+130122570,24879839,2
+45340915,24879839,3
+qiaonanaiASa,24879839,2
+45749749,24879839,3
+55783231,24879839,2
+wenliangno1,24879839,4
+beings,24879839,1
+yimuhanxi,24879839,4
+47359205,24879839,3
+47359205,24879839,3
+alicenana,24879839,3
+59848257,24879839,3
+2434766,24879839,1
+VaneTao,24879839,2
+4005034,24879839,3
+39996045,24879839,2
+waWa.tomato,24879839,1
+pigeye,24879839,-1
+77307938,24879839,3
+82294222,24879839,5
+34753066,24879839,2
+Jodyyyy,24879839,4
+Chauvetina,24879839,3
+51759957,24879839,3
+lynn0128,24879839,-1
+58337655,24879839,3
+64157304,24879839,2
+3079755,24879839,3
+xiaodrean,24879839,3
+huajun20,24879839,1
+louix,24879839,3
+48056623,24879839,5
+3195957,24879839,2
+50638011,24879839,4
+115672843,24879839,2
+LiuF,24879839,3
+62269460,24879839,3
+64039605,24879839,2
+istheyear,24879839,3
+Psychoknocker,24879839,3
+datouma,24879839,-1
+33399271,24879839,3
+52399993,24879839,1
+p2165,24879839,1
+39351378,24879839,2
+virginiaboat,24879839,1
+btjd,24879839,3
+79026958,24879839,1
+mr.slow,24879839,4
+mr.slow,24879839,4
+tintintsang,24879839,2
+cunyuren,24879839,3
+57867054,24879839,1
+cielbubble,24879839,3
+45960880,24879839,2
+xmcog,24879839,1
+51183805,24879839,3
+57954501,24879839,2
+74287403,24879839,3
+127950412,24879839,3
+65741833,24879839,4
+lizzyteddy,24879839,3
+41896368,24879839,2
+Dumbledore,24879839,1
+tildali1214,24879839,3
+56846668,24879839,3
+56055715,24879839,5
+29092385,24879839,2
+danielx,24879839,5
+1895030,24879839,3
+68167260,24879839,3
+49500956,24879839,2
+mohoko,24879839,2
+71420798,24879839,2
+hxfsc,24879839,1
+WendiMurdoch,24879839,3
+shituo,24879839,1
+kidadida,24879839,2
+88542586,24879839,2
+52758132,24879839,4
+punsiny,24879839,3
+cyrus_wong,24879839,2
+70377329,24879839,4
+40104674,24879839,3
+71073423,24879839,2
+taysxiao,24879839,2
+44400280,24879839,3
+44349376,24879839,3
+cn1027,24879839,3
+alft-huahua,24879839,2
+47029323,24879839,4
+cageyz,24879839,4
+89913056,24879839,4
+64996139,24879839,1
+48687968,24879839,2
+53464840,24879839,4
+mariaaa,24879839,1
+41370734,24879839,3
+48198812,24879839,1
+64009647,24879839,4
+masaikejun,24879839,3
+ollymurs,24879839,3
+xu_jie,24879839,1
+1759266,24879839,3
+60448203,24879839,2
+lefter,24879839,1
+lilygoy,24879839,1
+qqs,24879839,1
+niguize,24879839,2
+65692742,24879839,1
+sentimen,24879839,4
+70687104,24879839,2
+67006833,24879839,5
+edwinho,24879839,3
+2152487,24879839,3
+briancheung,24879839,-1
+pandoragbn,24879839,2
+QuarterOcean,24879839,3
+96764185,24879839,1
+dongjiayue,24879839,5
+xzfd,24879839,2
+niceutopia,24879839,4
+Lilap,24879839,2
+120978925,24879839,2
+65720816,24879839,3
+79334007,24879839,3
+121908520,24879839,5
+gambler801,24879839,1
+jolinxian,24879839,3
+jaywooh,24879839,4
+1921518,24879839,3
+AbracadabraFree,24879839,3
+61260966,24879839,2
+naschris,24879839,3
+67692174,24879839,4
+47681702,24879839,1
+Mr_juanmao,24879839,1
+69223309,24879839,2
+suxun,24879839,1
+7861077,24879839,1
+69000560,24879839,4
+daisylau,24879839,1
+81439273,24879839,2
+71837063,24879839,1
+Janr,24879839,4
+64109735,24879839,-1
+119248717,24879839,5
+popzoe,24879839,2
+rememberjuly,24879839,2
+zhaoqingyue,24879839,4
+shyspring,24879839,4
+83135902,24879839,3
+40861362,24879839,4
+anthonywoo.,24879839,2
+renth,24879839,2
+fromlipton,24879839,-1
+29640209,24879839,4
+sand_x,24879839,2
+8792564,24879839,2
+myserendipity,24879839,4
+52607696,24879839,3
+46138752,24879839,3
+flxjp,24879839,3
+liaojinzi,24879839,4
+8930152,24879839,1
+iLRainyday,24879839,1
+62949401,24879839,3
+73709425,24879839,3
+48163421,24879839,3
+toddzhou,24879839,3
+zhang-X26049,24879839,3
+nbyuan,24879839,3
+44615298,24879839,3
+64626755,24879839,3
+z_red,24879839,1
+130618617,24879839,1
+4026585,24879839,3
+chuntianzhiniao,24879839,1
+62517955,24879839,-1
+47526830,24879839,1
+movie007wn,24879839,3
+55383250,24879839,2
+130618832,24879839,1
+38928867,24879839,3
+47240557,24879839,3
+2889364,24879839,4
+91448391,24879839,3
+giantguo,24879839,3
+happymie,24879839,3
+88335699,24879839,4
+59458875,24879839,4
+121763704,24879839,5
+52230213,24879839,1
+79457713,24879839,1
+fyyxf,24879839,4
+130618558,24879839,1
+moooote,24879839,4
+92983760,24879839,2
+80612149,24879839,5
+Iris1989,24879839,2
+42360628,24879839,3
+benzj,24879839,4
+julyme,24879839,4
+64859517,24879839,3
+ween339,24879839,3
+61782892,24879839,1
+56521568,24879839,5
+52573676,24879839,1
+47512664,24879839,2
+82774403,24879839,3
+51189031,24879839,2
+104098433,24879839,4
+49128296,24879839,3
+125671392,24879839,3
+Han-Lyn,24879839,4
+27433108,24879839,4
+3742702,24879839,4
+43185799,24879839,3
+ShiSugar,24879839,4
+lltl,24879839,1
+121351165,24879839,5
+sydliao,24879839,5
+caesarphoenix,24879839,-1
+feqinfan,24879839,2
+40811083,24879839,4
+54036954,24879839,1
+75691592,24879839,5
+43188757,24879839,5
+loucinda,24879839,-1
+biiiignose,24879839,1
+MichaelChou,24879839,5
+48159341,24879839,1
+cybenny,24879839,2
+66700226,24879839,2
+Dan_Sue,24879839,1
+ximao1985,24879839,1
+Yi-Ya,24879839,4
+89737553,24879839,5
+1340751,24879839,2
+56413551,24879839,3
+59429603,24879839,1
+60461731,24879839,3
+renxiaoheng,24879839,1
+130613741,24879839,2
+123612122,24879839,-1
+59955092,24879839,3
+swdnpal,24879839,3
+QQ222111,24879839,1
+Mapotatoes,24879839,3
+41470834,24879839,4
+67727072,24879839,2
+gayles,24879839,3
+59249237,24879839,2
+49854531,24879839,2
+Leerunbo,24879839,3
+3597938,24879839,3
+68732725,24879839,3
+laox,24879839,1
+gaomj,24879839,4
+65838179,24879839,5
+dreamersjcat,24879839,3
+duanxiaomaomi,24879839,3
+119348980,24879839,1
+layuechuyi,24879839,3
+JaceJing,24879839,4
+jessie962464,24879839,3
+52456948,24879839,3
+anvirdo,24879839,1
+lutosdan,24879839,2
+59238229,24879839,3
+52222982,24879839,3
+69164185,24879839,4
+kharkov,24879839,3
+119731331,24879839,-1
+xiaodaohuifei,24879839,4
+liuyisha,24879839,1
+103608514,24879839,5
+127983556,24879839,2
+4142157,24879839,2
+63343874,24879839,2
+bennyjoon,24879839,1
+weijianjian,24879839,3
+adamhsieh,24879839,1
+3045450,24879839,3
+lpoihy,24879839,3
+130115210,24879839,2
+48127275,24879839,2
+68951998,24879839,3
+europeanbanana,24879839,1
+28467614,24879839,3
+49595588,24879839,2
+69961851,24879839,1
+42006889,24879839,1
+50023585,24879839,4
+60783143,24879839,4
+bordever,24879839,3
+2918978,24879839,2
+58433028,24879839,3
+taoyaomomo,24879839,3
+46890082,24879839,3
+jiaoao1212,24879839,2
+somebodyisme,24879839,2
+littlefrogD,24879839,1
+wuliu,24879839,2
+mangomangotree,24879839,3
+52442754,24879839,4
+73667276,24879839,1
+112340058,24879839,2
+62453081,24879839,3
+1548712,24879839,3
+lingrui1995,24879839,2
+wu.,24879839,2
+61599523,24879839,1
+121191945,24879839,3
+72101661,24879839,1
+magicsoda712,24879839,2
+hunanhunan,24879839,2
+G-shuo,24879839,2
+2196494,24879839,3
+mirandaseven,24879839,3
+75538960,24879839,2
+1190890,24879839,3
+MR.YAO,24879839,4
+2868760,24879839,3
+w3j1y5,24879839,4
+30804612,24879839,1
+24274750,24879839,3
+CharlieXiaoxiao,24879839,3
+72985710,24879839,3
+63377727,24879839,3
+59657924,24879839,4
+4138330,24879839,3
+qiangqiangzhang,24879839,4
+29100911,24879839,3
+qixian1125,24879839,1
+58038108,24879839,2
+28296293,24879839,5
+49543241,24879839,4
+102648565,24879839,4
+maizisuixiang,24879839,3
+94352576,24879839,4
+79847046,24879839,3
+76239452,24879839,3
+60835831,24879839,5
+71985811,24879839,2
+54090532,24879839,1
+52889197,24879839,3
+60406508,24879839,1
+wangmian0729,24879839,4
+baicaitai,24879839,3
+60098304,24879839,3
+seewhywhy,24879839,3
+82582719,24879839,3
+63391208,24879839,2
+stomach_ache,24879839,4
+zooinmyroom,24879839,3
+apple_jody,24879839,3
+Betty_king,24879839,2
+87673698,24879839,3
+3109142,24879839,1
+62386166,24879839,2
+chrisloveleslie,24879839,2
+tomerlaw,24879839,2
+silenrocker,24879839,1
+joanna726,24879839,3
+43504927,24879839,2
+32020588,24879839,2
+lingmo7seven,24879839,2
+rx7801,24879839,4
+128416506,24879839,4
+53433843,24879839,3
+48728550,24879839,1
+64885985,24879839,1
+wangmuse,24879839,2
+122931540,24879839,3
+50712430,24879839,3
+38000940,24879839,2
+I_love_night,24879839,3
+37969274,24879839,4
+44149657,24879839,2
+fanrky,24879839,3
+devillzhang,24879839,1
+104056990,24879839,-1
+65251962,24879839,1
+slynsign,24879839,2
+60979573,24879839,2
+1240620,24879839,3
+3768964,24879839,3
+75285531,24879839,3
+steinyxu,24879839,3
+63359487,24879839,2
+50001281,24879839,3
+62968482,24879839,5
+yyyyyrl,24879839,4
+42875331,24879839,4
+darlingtudai,24879839,2
+3226920,24879839,4
+4194901,24879839,3
+53833037,24879839,3
+2062966,24879839,4
+76550501,24879839,2
+waterloo,24879839,3
+4224058,24879839,3
+46144341,24879839,4
+35300407,24879839,3
+scut_linxia,24879839,2
+54667060,24879839,5
+55997145,24879839,-1
+47250941,24879839,2
+76636095,24879839,3
+56370323,24879839,1
+echosmilefor,24879839,5
+55641594,24879839,2
+Emily723,24879839,1
+ximutudan,24879839,1
+XCG1989,24879839,5
+52148095,24879839,3
+62571454,24879839,3
+102701143,24879839,2
+42620728,24879839,3
+61919375,24879839,3
+44191445,24879839,1
+65021113,24879839,1
+78994143,24879839,3
+88635181,24879839,4
+61901471,24879839,3
+32995807,24879839,2
+80307859,24879839,3
+cloverpipo,24879839,3
+Novin,24879839,2
+quanzhouren,24879839,2
+51699859,24879839,3
+41307413,24879839,2
+xinlingsenlin,24879839,5
+shakariva,24879839,3
+33740785,24879839,2
+Zhang.Sonic,24879839,1
+zhongcaideyuanz,24879839,1
+48215491,24879839,3
+3022833,24879839,4
+wwei89,24879839,4
+ruiqigreen,24879839,3
+26950131,24879839,4
+54770734,24879839,2
+hashayaqi,24879839,3
+4895427,24879839,2
+80115244,24879839,3
+hanqiu1995,24879839,2
+49195863,24879839,4
+50425824,24879839,2
+kexiaoxuan_,24879839,4
+longxiaosi,24879839,1
+outsider_9122,24879839,3
+32433633,24879839,2
+evcololo,24879839,2
+65763828,24879839,4
+Vivian8911,24879839,3
+52524732,24879839,1
+82321138,24879839,2
+56957329,24879839,2
+61075428,24879839,1
+amyzane,24879839,3
+73958247,24879839,3
+estellejoshua,24879839,2
+58921825,24879839,3
+115119279,24879839,2
+luchenran,24879839,5
+65166974,24879839,4
+slow-down,24879839,4
+63399051,24879839,3
+91139241,24879839,1
+apple_pie,24879839,1
+87719942,24879839,4
+4909767,24879839,3
+izhou,24879839,1
+79346510,24879839,3
+45608534,24879839,2
+130613342,24879839,4
+3509288,24879839,5
+41806618,24879839,3
+3966394,24879839,4
+yao_qiqi,24879839,2
+88669937,24879839,2
+llahx,24879839,3
+longislandiced,24879839,4
+49586478,24879839,2
+69255850,24879839,2
+41690409,24879839,-1
+3988346,24879839,2
+Ronnie816,24879839,2
+liuziyu0426,24879839,2
+speedking,24879839,2
+l-vicky,24879839,1
+45047336,24879839,3
+nianfangshiba,24879839,2
+41976205,24879839,3
+shaonvjige,24879839,4
+42900224,24879839,2
+bluebell332,24879839,1
+123095182,24879839,3
+jeonwoo,24879839,3
+48688847,24879839,3
+addonn,24879839,3
+maoamaoa,24879839,3
+47297112,24879839,3
+64947156,24879839,3
+54954502,24879839,4
+yvette820,24879839,3
+57643998,24879839,3
+122232090,24879839,2
+55563605,24879839,2
+mangolu,24879839,3
+istas,24879839,-1
+78352623,24879839,3
+12380774,24879839,1
+49262197,24879839,1
+56273353,24879839,3
+1001195,24879839,2
+mujuanshu,24879839,3
+70238336,24879839,3
+2050679,24879839,3
+63102965,24879839,3
+2848425,24879839,3
+4108038,24879839,3
+4347889,24879839,2
+64630266,24879839,3
+129828454,24879839,2
+2340314,24879839,4
+114391382,24879839,3
+72710226,24879839,4
+luxifilm,24879839,3
+huoxiaoliang,24879839,2
+43602933,24879839,4
+3514906,24879839,1
+123473233,24879839,3
+43756834,24879839,4
+kejinlong,24879839,1
+photov,24879839,2
+130472096,24879839,1
+DERRICK_ROSE,24879839,2
+121221805,24879839,3
+120990499,24879839,3
+31806975,24879839,3
+64288371,24879839,3
+3672200,24879839,1
+echowithu,24879839,2
+36429054,24879839,3
+116649672,24879839,2
+4563736,24879839,5
+dexter.c,24879839,2
+62932733,24879839,2
+62857803,24879839,3
+62970247,24879839,1
+49311424,24879839,2
+3486553,24879839,4
+loretta_lee,24879839,1
+Night_shadow,24879839,2
+36324750,24879839,3
+KIKOE,24879839,4
+48506304,24879839,3
+dengxian123,24879839,2
+she-is-momo,24879839,2
+88012352,24879839,4
+2953117,24879839,1
+13589138,24879839,1
+56766312,24879839,4
+62030418,24879839,5
+24900499,24879839,3
+114282416,24879839,1
+47539926,24879839,2
+shamaomao,24879839,1
+123504720,24879839,3
+65111920,24879839,-1
+summeralice,24879839,3
+vividjoy,24879839,3
+shoooooock,24879839,3
+tonyleung2046,24879839,1
+52799019,24879839,3
+75043360,24879839,2
+2286926,24879839,3
+septembersummer,24879839,3
+121440685,24879839,1
+94721124,24879839,5
+13452174,24879839,1
+23612143,24879839,3
+54202498,24879839,4
+1514163,24879839,2
+chenxiaobei,24879839,2
+deardearcat,24879839,5
+80768830,24879839,1
+48364404,24879839,3
+2694159,24879839,-1
+kyleul,24879839,5
+2705479,24879839,4
+55817697,24879839,3
+moshangsunrise,24879839,2
+82642076,24879839,3
+3446929,24879839,3
+jolinalbert,24879839,2
+17672710,24879839,3
+102167381,24879839,3
+3089552,24879839,3
+52068926,24879839,2
+58928167,24879839,4
+68327761,24879839,1
+Yxiaoming,24879839,3
+51812903,24879839,3
+127066549,24879839,5
+126876610,24879839,3
+64169214,24879839,4
+aprilwind_shi,24879839,3
+80372690,24879839,5
+103794263,24879839,4
+41249153,24879839,3
+50282296,24879839,1
+53719859,24879839,5
+62403197,24879839,3
+tangjiaqi,24879839,4
+Hochy,24879839,2
+90986347,24879839,5
+74844430,24879839,5
+zsh112,24879839,2
+48848721,24879839,1
+youziyiyang,24879839,3
+62843301,24879839,3
+43727478,24879839,1
+feisongshu,24879839,2
+Dnegel,24879839,1
+38609942,24879839,3
+swan93,24879839,3
+14406311,24879839,1
+baipang,24879839,3
+shuoying,24879839,3
+56900730,24879839,-1
+snoopynirvana,24879839,3
+113560444,24879839,2
+64693133,24879839,3
+103222605,24879839,2
+56470585,24879839,1
+linyu2012,24879839,3
+aixiatian,24879839,1
+chagrinbleu,24879839,3
+2324863,24879839,5
+2592466,24879839,3
+wwnoah,24879839,5
+LucFrance,24879839,2
+130489697,24879839,5
+jijillwang,24879839,3
+53023463,24879839,3
+judy0420,24879839,1
+wushiyi1122,24879839,3
+shunong,24879839,1
+81616133,24879839,4
+54665084,24879839,3
+4026331,24879839,5
+84885684,24879839,3
+62053641,24879839,1
+46179117,24879839,2
+56157388,24879839,2
+wangxiaomiao,24879839,3
+48307162,24879839,2
+dekaixu,24879839,3
+1415356,24879839,3
+nicole24,24879839,3
+58434565,24879839,1
+68561607,24879839,2
+46482640,24879839,4
+4281606,24879839,3
+70341874,24879839,2
+123642318,24879839,4
+59341894,24879839,1
+xiaolic,24879839,3
+mrsrost,24879839,3
+120913111,24879839,1
+54998992,24879839,3
+qianlizheng,24879839,1
+58929848,24879839,4
+67074283,24879839,1
+mushroom198812,24879839,4
+74541142,24879839,2
+66792674,24879839,2
+60419092,24879839,3
+67025495,24879839,4
+qitianxiaoshe,24879839,1
+1386311,24879839,3
+68260259,24879839,2
+79372510,24879839,1
+60162656,24879839,1
+47838456,24879839,4
+76393487,24879839,3
+1175096,24879839,3
+47309007,24879839,2
+tedan,24879839,3
+2476748,24879839,2
+71867993,24879839,3
+67232116,24879839,2
+52199185,24879839,1
+jiyuanwai,24879839,2
+sinkerone,24879839,3
+euro,24879839,2
+37216617,24879839,2
+beini125,24879839,3
+48579838,24879839,4
+100814233,24879839,2
+1795919,24879839,4
+H-Akane,24879839,2
+74510100,24879839,3
+71574131,24879839,3
+wzshere,24879839,2
+SanShing,24879839,3
+34056300,24879839,3
+39888693,24879839,1
+36617899,24879839,1
+54764887,24879839,3
+27214658,24879839,2
+58003578,24879839,4
+46737345,24879839,1
+68133220,24879839,2
+kuanaqf,24879839,-1
+54943721,24879839,3
+44474526,24879839,1
+62069415,24879839,4
+43534263,24879839,2
+92177922,24879839,3
+1388699,24879839,3
+duzhouchi,24879839,4
+3539790,24879839,3
+grinch,24879839,2
+koreadream,24879839,-1
+107200905,24879839,1
+52608895,24879839,1
+66404994,24879839,4
+lf89,24879839,4
+3846319,24879839,3
+81042721,24879839,3
+harukimlee,24879839,1
+55637851,24879839,3
+55770977,24879839,3
+june.q,24879839,2
+60096895,24879839,1
+christopherlin,24879839,3
+33415614,24879839,2
+lucyn,24879839,2
+56838680,24879839,5
+62658973,24879839,4
+giggity_noo,24879839,3
+48773692,24879839,3
+1259677,24879839,2
+62932025,24879839,5
+myshowfan,24879839,3
+2221354,24879839,3
+84659461,24879839,5
+73567483,24879839,2
+55476804,24879839,1
+81773475,24879839,1
+81591404,24879839,3
+127529044,24879839,5
+CanaanYoung,24879839,1
+tx515,24879839,3
+evilQin,24879839,4
+wownow,24879839,3
+YvetteYvette,24879839,2
+norlesamourai,24879839,1
+71806570,24879839,3
+vvglico,24879839,2
+47993104,24879839,5
+66703126,24879839,-1
+77084938,24879839,2
+79239570,24879839,1
+33691715,24879839,2
+80611644,24879839,3
+cm1011,24879839,4
+adaylanie,24879839,1
+filmbululiu,24879839,2
+zrocky,24879839,3
+se7xn,24879839,4
+lotusworld,24879839,2
+48558495,24879839,4
+68490361,24879839,2
+wind_field,24879839,2
+64152940,24879839,1
+120925225,24879839,3
+53382630,24879839,5
+54586500,24879839,2
+2119730,24879839,5
+miyliu,24879839,5
+viviling,24879839,3
+64639628,24879839,1
+kibabukisatoshi,24879839,4
+kibabukisatoshi,24879839,4
+73150320,24879839,3
+2260580,24879839,1
+51479811,24879839,1
+62177860,24879839,1
+baisiliu,24879839,2
+mrroyal,24879839,4
+fxoc,24879839,1
+3181832,24879839,2
+huskie,24879839,1
+kailunf,24879839,3
+lengleng,24879839,1
+77232684,24879839,3
+chinriya,24879839,3
+29211262,24879839,3
+roseunicorn,24879839,5
+121370922,24879839,4
+120392055,24879839,3
+tangstar27,24879839,2
+turnhs,24879839,-1
+lux1119,24879839,2
+whypretty,24879839,4
+1389513,24879839,4
+80634778,24879839,2
+59852035,24879839,-1
+128454807,24879839,5
+47692361,24879839,2
+chenhuangchao,24879839,3
+antoniotlp,24879839,4
+summer712,24879839,3
+56129753,24879839,1
+zengt,24879839,3
+74641801,24879839,1
+1454015,24879839,3
+snotman,24879839,2
+woxiaoting,24879839,3
+43289772,24879839,3
+64713080,24879839,3
+shenshenet,24879839,4
+52519025,24879839,4
+61069242,24879839,3
+Eileke,24879839,2
+ntrer,24879839,1
+SaltyAlmonds,24879839,1
+in-mill0712,24879839,3
+68707073,24879839,5
+doubleuhy,24879839,3
+46861838,24879839,4
+62457534,24879839,3
+chenxiliu,24879839,4
+75940485,24879839,3
+laoguai,24879839,4
+63525530,24879839,4
+mingming84,24879839,-1
+27167785,24879839,1
+bjmiss,24879839,2
+yummy1710,24879839,3
+chenzhuoqing,24879839,3
+39544426,24879839,3
+giguemgigue,24879839,3
+65274866,24879839,2
+haofany,24879839,1
+62960950,24879839,3
+2289723,24879839,3
+ffddc,24879839,5
+77207004,24879839,2
+54049800,24879839,3
+45573643,24879839,3
+chenftao,24879839,3
+icelfen,24879839,5
+39640339,24879839,2
+50947870,24879839,3
+57787729,24879839,3
+97302377,24879839,2
+wudafa,24879839,3
+75001261,24879839,2
+35315925,24879839,3
+littlekidzouzou,24879839,3
+hayako8059,24879839,3
+sasky,24879839,3
+KOBENYF,24879839,4
+zhaimao,24879839,3
+48593728,24879839,4
+4165611,24879839,5
+69465231,24879839,3
+bea-u,24879839,3
+102264205,24879839,1
+haozi20,24879839,3
+1493686,24879839,2
+53853520,24879839,3
+53533608,24879839,2
+79846802,24879839,-1
+rainydayo0,24879839,-1
+chuangwaiyouxin,24879839,2
+41095490,24879839,5
+66036408,24879839,3
+42217758,24879839,1
+mitusheng,24879839,1
+2242668,24879839,3
+62659146,24879839,3
+lingjunxin,24879839,4
+39125511,24879839,3
+1609951,24879839,2
+85143816,24879839,4
+39566719,24879839,4
+127329113,24879839,4
+64211454,24879839,-1
+42112015,24879839,2
+4454692,24879839,3
+1730018,24879839,1
+65714390,24879839,4
+59260039,24879839,4
+48525620,24879839,3
+46090800,24879839,3
+yeyinger,24879839,4
+73084756,24879839,3
+76020934,24879839,2
+isUna,24879839,1
+58950825,24879839,3
+42576821,24879839,4
+wyh413,24879839,1
+29741430,24879839,4
+60338101,24879839,3
+71030752,24879839,2
+Sophie.,24879839,1
+130496028,24879839,1
+15142274,24879839,1
+Talushen,24879839,3
+2052146,24879839,-1
+yangjianmeiyang,24879839,3
+34035451,24879839,2
+54616480,24879839,4
+nashinashi,24879839,2
+73847256,24879839,3
+strange_kid,24879839,1
+84076381,24879839,3
+48822984,24879839,1
+jiang_feng_xiu,24879839,2
+53672963,24879839,2
+jutaomomo,24879839,-1
+42689506,24879839,3
+cloudlandlord,24879839,4
+nebulamax,24879839,4
+sisiliya,24879839,3
+68302537,24879839,4
+43122175,24879839,2
+35991194,24879839,2
+115125689,24879839,2
+76552850,24879839,5
+dklovesmovie,24879839,2
+59984229,24879839,4
+udandan,24879839,3
+115782738,24879839,3
+69785918,24879839,2
+foxzy5,24879839,1
+3586869,24879839,3
+88033603,24879839,2
+126092428,24879839,1
+PKUTeaParty,24879839,1
+50234828,24879839,3
+weichengluanma,24879839,2
+55663909,24879839,1
+40141522,24879839,2
+40063567,24879839,3
+52582928,24879839,3
+mia777,24879839,2
+qwer3485,24879839,3
+huadouyeying,24879839,4
+1253397,24879839,2
+84216766,24879839,5
+58349730,24879839,1
+36923461,24879839,2
+122329830,24879839,2
+61542149,24879839,3
+wsgjr,24879839,1
+ngels,24879839,1
+28315646,24879839,4
+58619991,24879839,1
+122833017,24879839,4
+61509749,24879839,3
+46469157,24879839,1
+115307467,24879839,3
+91511148,24879839,5
+zhuzx,24879839,2
+tsuji,24879839,3
+yrftx,24879839,1
+OOORRR,24879839,2
+madovado,24879839,2
+65297808,24879839,1
+GeiaoGeiao,24879839,3
+72573288,24879839,4
+123105162,24879839,5
+70072870,24879839,3
+77531727,24879839,4
+punaisilvia,24879839,2
+diane07,24879839,4
+49108140,24879839,2
+72169675,24879839,4
+108146760,24879839,3
+43603952,24879839,5
+76743848,24879839,1
+liyashun,24879839,2
+babajiang,24879839,1
+56397458,24879839,3
+sapphirecg,24879839,1
+55387806,24879839,4
+66330480,24879839,4
+1465852,24879839,3
+1496396,24879839,3
+59742770,24879839,4
+2391581,24879839,2
+68742880,24879839,4
+73335242,24879839,1
+21354916,24879839,3
+119516358,24879839,5
+108077404,24879839,4
+1539524,24879839,4
+junojuno,24879839,4
+xichenfreeze,24879839,2
+86807524,24879839,3
+80570322,24879839,2
+losslilies,24879839,2
+55462319,24879839,-1
+61292565,24879839,4
+48092758,24879839,1
+4239908,24879839,2
+64473872,24879839,2
+56862396,24879839,3
+61531110,24879839,3
+3290196,24879839,5
+ding1yi,24879839,2
+37731471,24879839,2
+sharonbao,24879839,2
+mathilda_le,24879839,4
+58249010,24879839,3
+sanotes,24879839,3
+50112293,24879839,3
+54764633,24879839,3
+122493414,24879839,1
+52366157,24879839,3
+jiangshanmary,24879839,3
+100169550,24879839,3
+40424921,24879839,3
+48480567,24879839,2
+27560437,24879839,2
+mmj626,24879839,3
+41440460,24879839,2
+70294038,24879839,3
+43232986,24879839,1
+79750101,24879839,2
+79151265,24879839,3
+45725575,24879839,5
+lxq19930708,24879839,3
+101433184,24879839,2
+34764800,24879839,3
+108637207,24879839,5
+48603851,24879839,1
+yinchuanfu,24879839,3
+fenglai,24879839,4
+63458360,24879839,1
+42535612,24879839,2
+79240212,24879839,3
+60119202,24879839,3
+62566677,24879839,3
+47728571,24879839,5
+15230288,24879839,1
+bway,24879839,1
+CeciliaQueen,24879839,1
+12511197,24879839,2
+cmisland,24879839,3
+losacos,24879839,4
+76169652,24879839,2
+conniechan,24879839,2
+58890200,24879839,4
+53513481,24879839,3
+1078136,24879839,1
+1373363,24879839,2
+52035650,24879839,4
+49812729,24879839,-1
+78582579,24879839,1
+16026833,24879839,3
+bennilam,24879839,2
+48137780,24879839,3
+78387852,24879839,2
+97503255,24879839,3
+peggyguan,24879839,2
+Mrs_Dalloway,24879839,3
+ganglow,24879839,4
+caojiang,24879839,2
+41065952,24879839,5
+53914126,24879839,3
+vc2046,24879839,2
+59237362,24879839,2
+60760442,24879839,2
+48976619,24879839,2
+52356046,24879839,3
+27261422,24879839,3
+3296630,24879839,2
+48997081,24879839,1
+chenrongrong28,24879839,2
+52729351,24879839,4
+59408878,24879839,3
+33177895,24879839,2
+ramsestwo,24879839,2
+58021214,24879839,2
+66758358,24879839,4
+yinyuehome,24879839,2
+54308994,24879839,2
+yz501,24879839,3
+103047573,24879839,2
+61127541,24879839,2
+wndhaor,24879839,3
+FUTU,24879839,5
+vosr,24879839,1
+fukumm,24879839,2
+46388878,24879839,4
+baihama,24879839,3
+44890622,24879839,4
+5566664,24879839,1
+MihoKomatsu,24879839,2
+55484274,24879839,4
+3374340,24879839,1
+shoufy,24879839,3
+46163023,24879839,-1
+lightu,24879839,4
+27008930,24879839,5
+56300991,24879839,-1
+2705006,24879839,1
+1095807,24879839,3
+sweetcamel,24879839,3
+2787271,24879839,2
+yaya_lduck,24879839,2
+4583473,24879839,4
+moguduola,24879839,1
+wangyujia520,24879839,3
+lizzyar,24879839,3
+123342021,24879839,2
+raising_dawn,24879839,1
+vinvinky,24879839,3
+yanzonda,24879839,3
+50980258,24879839,4
+87648315,24879839,4
+seagull_shen,24879839,5
+60409037,24879839,3
+77162594,24879839,3
+meront,24879839,4
+47556778,24879839,2
+MorningGloryyy,24879839,1
+yolle,24879839,4
+zhupeng1115,24879839,3
+1686305,24879839,2
+121614690,24879839,1
+heixiuheixiu250,24879839,1
+snowmeg,24879839,5
+83017477,24879839,4
+cat_rs,24879839,2
+57425005,24879839,2
+cidishenhao,24879839,5
+2756490,24879839,2
+75416666,24879839,1
+idealtemple,24879839,3
+40225013,24879839,2
+91649977,24879839,5
+babyana,24879839,3
+62649334,24879839,2
+ycho1203,24879839,1
+missgn,24879839,4
+70454973,24879839,-1
+86466214,24879839,-1
+4101286,24879839,3
+youyeyi,24879839,4
+50720441,24879839,3
+44901258,24879839,-1
+33907274,24879839,3
+wincywincy,24879839,1
+3529919,24879839,1
+erwa,24879839,4
+besim6ple,24879839,3
+35743711,24879839,5
+47243412,24879839,2
+79407609,24879839,5
+3870395,24879839,1
+chancechance,24879839,4
+47183487,24879839,1
+fhdone,24879839,2
+bfm843104158,24879839,3
+68297463,24879839,1
+lorrainelsy,24879839,1
+MaxinAn,24879839,4
+88048268,24879839,3
+83240850,24879839,3
+53794054,24879839,3
+50782420,24879839,3
+126959567,24879839,3
+qinxinzhu,24879839,2
+lilithyi,24879839,4
+47707485,24879839,2
+chuan1989,24879839,3
+52461129,24879839,2
+sunny_i,24879839,5
+57882288,24879839,1
+Miss.NoLonging,24879839,-1
+52046247,24879839,5
+musichellsing,24879839,4
+stare,24879839,3
+12571373,24879839,2
+51495008,24879839,4
+73523863,24879839,5
+yihuai,24879839,5
+38897761,24879839,3
+milovejt_,24879839,3
+fanzling,24879839,2
+82399498,24879839,3
+huasajun,24879839,2
+79254578,24879839,3
+35827809,24879839,2
+57583143,24879839,2
+frozone,24879839,1
+2842038,24879839,4
+62822588,24879839,-1
+lpxxd,24879839,-1
+2196303,24879839,1
+suanjianke,24879839,4
+52194537,24879839,1
+4401259,24879839,4
+61921759,24879839,3
+58313990,24879839,3
+luka90123,24879839,2
+4549541,24879839,2
+lyndonneu,24879839,3
+85196880,24879839,3
+40018241,24879839,4
+121482185,24879839,3
+1167276,24879839,2
+68983294,24879839,4
+MOVIE--KO,24879839,3
+54626990,24879839,2
+47557018,24879839,-1
+54409197,24879839,3
+yusanqi,24879839,5
+53942242,24879839,1
+4635921,24879839,2
+123004306,24879839,4
+bikki,24879839,2
+joshlee815,24879839,1
+NT8,24879839,4
+3681089,24879839,3
+empfan,24879839,3
+qunimagebi,24879839,1
+parala,24879839,3
+60731838,24879839,2
+20968477,24879839,4
+snail0402,24879839,2
+4413248,24879839,2
+119626499,24879839,5
+goodull,24879839,4
+3541486,24879839,2
+sunalsorise,24879839,-1
+58725999,24879839,4
+lensliao,24879839,3
+zhangliantao,24879839,4
+tuxiaochao,24879839,3
+StoneandFlower,24879839,3
+leecheng0208,24879839,2
+aliefall77,24879839,3
+76653168,24879839,3
+60515729,24879839,3
+muxiaoxu,24879839,2
+57128387,24879839,4
+60088640,24879839,2
+momoicy,24879839,3
+shuimudeyu1990,24879839,2
+yangisyang,24879839,2
+50563925,24879839,4
+74233494,24879839,4
+122725527,24879839,1
+dukuo,24879839,2
+pjcs,24879839,4
+53011245,24879839,1
+60660353,24879839,2
+46210114,24879839,3
+63454673,24879839,2
+Aspirin129,24879839,1
+2349644,24879839,3
+chjack,24879839,5
+50029958,24879839,-1
+66535614,24879839,4
+S.Leon,24879839,3
+59822585,24879839,2
+49136042,24879839,2
+betterme124,24879839,4
+JustusChou,24879839,3
+tanronghong,24879839,3
+61145862,24879839,2
+zztvxq_soulmate,24879839,3
+imzyfimzyf,24879839,4
+Eve2005,24879839,-1
+78636509,24879839,3
+58149680,24879839,4
+sky428,24879839,5
+sky428,24879839,5
+xuhaihua,24879839,4
+75006194,24879839,3
+3966164,24879839,3
+lonelywood,24879839,4
+SwimGood,24879839,4
+62413713,24879839,-1
+46813038,24879839,2
+60203877,24879839,5
+82238487,24879839,3
+7709401,24879839,3
+2910620,24879839,3
+70001745,24879839,2
+41279117,24879839,2
+97535971,24879839,2
+54762005,24879839,1
+uncledark,24879839,1
+jiakon,24879839,2
+79418685,24879839,1
+ilovefashion,24879839,2
+123129041,24879839,5
+36250262,24879839,2
+36617215,24879839,2
+42272105,24879839,-1
+2476564,24879839,4
+2092985,24879839,1
+HYGUY,24879839,3
+79808254,24879839,-1
+3355859,24879839,1
+odinushuaia,24879839,3
+starandstar,24879839,3
+49141402,24879839,4
+lemon1121,24879839,1
+freedominheart,24879839,4
+dianascb,24879839,-1
+1452797,24879839,3
+53602254,24879839,2
+qq469463678,24879839,4
+nakassuse,24879839,2
+who_knows,24879839,3
+2229618,24879839,2
+59202833,24879839,4
+jun22,24879839,3
+64011512,24879839,3
+wheattime,24879839,3
+48763298,24879839,2
+45446265,24879839,-1
+lovedeeper,24879839,4
+119456550,24879839,3
+37956992,24879839,2
+93332466,24879839,2
+99910728,24879839,2
+punkyml,24879839,3
+btone0808,24879839,3
+JabbaWk,24879839,-1
+yuexiaokan,24879839,3
+52622213,24879839,2
+65383160,24879839,3
+48158308,24879839,3
+emma9011,24879839,3
+STT810,24879839,2
+hyy714,24879839,5
+45390521,24879839,3
+allblue,24879839,1
+4329184,24879839,3
+xiexiaomao,24879839,3
+8802832,24879839,2
+miuccia,24879839,3
+47959890,24879839,2
+4341264,24879839,1
+54512951,24879839,3
+45634421,24879839,2
+124454581,24879839,3
+3649170,24879839,1
+56769973,24879839,2
+Lreckle,24879839,2
+ctube,24879839,3
+81619869,24879839,3
+45573967,24879839,2
+47737663,24879839,-1
+cly23,24879839,4
+BruceBack,24879839,3
+brad_tsye,24879839,3
+2012057,24879839,2
+3686271,24879839,1
+yueyue718,24879839,4
+50210818,24879839,-1
+41014500,24879839,5
+53844672,24879839,1
+ltp19950208,24879839,3
+71026194,24879839,2
+99550697,24879839,4
+79731276,24879839,5
+45570007,24879839,5
+bindiry,24879839,3
+4430267,24879839,3
+3672180,24879839,4
+3191023,24879839,1
+DJ-day,24879839,2
+GMDY,24879839,3
+psycheeee,24879839,2
+60871322,24879839,1
+81476241,24879839,2
+3418984,24879839,4
+sususlsz,24879839,4
+lgyssg,24879839,2
+unicornlarry,24879839,2
+98415041,24879839,4
+aginny,24879839,2
+70359207,24879839,5
+124136324,24879839,3
+jzj1013,24879839,5
+zuogy,24879839,5
+70043510,24879839,2
+evisu.wu,24879839,4
+61511872,24879839,1
+summerlete,24879839,3
+45482570,24879839,2
+52870461,24879839,3
+66803513,24879839,3
+iamamortal,24879839,3
+71654816,24879839,4
+shadow1,24879839,2
+villa27,24879839,3
+xu77,24879839,2
+4129696,24879839,2
+2295262,24879839,3
+94766000,24879839,3
+zhaoyao0919,24879839,1
+46360796,24879839,2
+lollypain,24879839,3
+2472187,24879839,2
+49267542,24879839,3
+96044338,24879839,2
+46321014,24879839,4
+84077935,24879839,2
+1055848,24879839,4
+2842505,24879839,3
+constancef,24879839,3
+54261734,24879839,2
+pamelayang,24879839,1
+shinnodoo,24879839,2
+36945830,24879839,-1
+inv,24879839,2
+behindlies,24879839,2
+48722381,24879839,3
+kuruto,24879839,4
+96967794,24879839,2
+65685834,24879839,4
+aprilsunshine,24879839,3
+1987337,24879839,3
+2840304,24879839,3
+fuck_time,24879839,-1
+41317103,24879839,3
+judybubu,24879839,2
+hyperphysic,24879839,3
+currant,24879839,2
+59568163,24879839,3
+dancingsue,24879839,5
+58918703,24879839,3
+Ferloco,24879839,1
+67976109,24879839,5
+56837635,24879839,3
+82689458,24879839,4
+68089671,24879839,2
+58916453,24879839,2
+2124952,24879839,2
+37908354,24879839,4
+87834515,24879839,5
+82571715,24879839,3
+liulilotus,24879839,3
+SnakeTail,24879839,5
+zzhh33,24879839,2
+63631634,24879839,4
+jinkelajiu,24879839,4
+Jonhanna,24879839,4
+46187403,24879839,3
+41314892,24879839,3
+yifeng829,24879839,2
+116288111,24879839,4
+SHSMJ-Z,24879839,3
+49419366,24879839,1
+28113921,24879839,3
+52272245,24879839,3
+69000298,24879839,1
+shixiaoxuan,24879839,3
+fanxiaxiafan,24879839,3
+84142287,24879839,4
+69387510,24879839,-1
+Huan29,24879839,2
+60803331,24879839,2
+43846305,24879839,5
+androidboy00,24879839,2
+83201955,24879839,-1
+40662513,24879839,1
+44359808,24879839,5
+xiaosefengning,24879839,1
+41606282,24879839,2
+Deirdre95,24879839,3
+4210892,24879839,1
+inyuanpei,24879839,1
+70741441,24879839,4
+60085546,24879839,5
+4154813,24879839,3
+rivasunzhuoling,24879839,2
+65369148,24879839,2
+chopinfisher,24879839,2
+3874094,24879839,2
+lynnesay,24879839,3
+93443951,24879839,2
+51504915,24879839,2
+SPIRITUA,24879839,2
+87974035,24879839,1
+59945441,24879839,5
+33020931,24879839,3
+XuKyle,24879839,2
+14113539,24879839,4
+57581825,24879839,3
+52538749,24879839,2
+67977292,24879839,2
+34600682,24879839,1
+phoenixjanezhai,24879839,3
+33708910,24879839,3
+74106981,24879839,3
+h.faye,24879839,3
+81652871,24879839,2
+92155502,24879839,2
+alexs,24879839,3
+3407887,24879839,3
+yukison,24879839,5
+allahking,24879839,3
+52909500,24879839,1
+61542214,24879839,3
+49761291,24879839,3
+MlovesB,24879839,-1
+bingfengchidao,24879839,3
+xuemengfei,24879839,2
+40876510,24879839,5
+43134221,24879839,3
+idreammrs,24879839,1
+55280839,24879839,2
+howhappy,24879839,1
+58364140,24879839,2
+68984410,24879839,3
+dancylon,24879839,3
+41403989,24879839,5
+54113299,24879839,3
+layne33,24879839,3
+63127179,24879839,3
+44178660,24879839,2
+2801179,24879839,3
+zxjtmac,24879839,3
+48057080,24879839,2
+30603875,24879839,-1
+xiangshuoshenme,24879839,-1
+thisisgap,24879839,3
+3177593,24879839,2
+40395397,24879839,4
+58336596,24879839,3
+qilichafang,24879839,3
+lqpubic,24879839,2
+Hylas,24879839,3
+guoerer,24879839,3
+mrlinxiaotian,24879839,-1
+Nem0,24879839,3
+4099282,24879839,1
+LY_0,24879839,3
+39675870,24879839,5
+83636996,24879839,2
+100396637,24879839,2
+2948682,24879839,3
+asato,24879839,3
+stetehe,24879839,4
+mysupers,24879839,4
+56735183,24879839,3
+1997939,24879839,-1
+eugenewilber,24879839,4
+easytodo,24879839,3
+45097114,24879839,3
+heikichi,24879839,3
+27883054,24879839,3
+74091825,24879839,2
+victor0503,24879839,1
+49424384,24879839,3
+MansonBao,24879839,2
+4520667,24879839,3
+ihustar,24879839,-1
+sgr,24879839,4
+54404280,24879839,2
+56002676,24879839,3
+subjective,24879839,3
+dbhungry,24879839,2
+xiaoyuhen,24879839,3
+batongyang,24879839,3
+41761191,24879839,4
+nancydrew,24879839,4
+47873866,24879839,2
+blinglu,24879839,2
+limingquan,24879839,3
+Migpam,24879839,2
+delma,24879839,2
+cxyecho,24879839,4
+doraeman,24879839,3
+gabriella108,24879839,3
+57965497,24879839,4
+3808156,24879839,2
+seven-day,24879839,-1
+shiori,24879839,1
+47393559,24879839,4
+afa1021,24879839,2
+61602134,24879839,3
+46692098,24879839,-1
+48710899,24879839,3
+84250645,24879839,3
+Nagini,24879839,3
+bhg,24879839,3
+52811117,24879839,4
+67407695,24879839,3
+shichaocaesar,24879839,4
+SUNSAD,24879839,3
+deardearvan,24879839,3
+proband,24879839,4
+2495913,24879839,2
+2571757,24879839,1
+soleilratemma,24879839,2
+2394056,24879839,-1
+66836438,24879839,2
+mcgeemonkey,24879839,3
+49783661,24879839,2
+kindofbullshit,24879839,4
+lmlmll,24879839,1
+eyesfetish,24879839,4
+zero0756,24879839,2
+youjinane,24879839,4
+riverheai,24879839,-1
+abin520918,24879839,2
+74579907,24879839,4
+49326623,24879839,2
+Onion_sis,24879839,3
+wandawang,24879839,1
+76496998,24879839,2
+baodai,24879839,-1
+huangzhenhao,24879839,1
+michellejnj,24879839,4
+3011986,24879839,2
+stories7,24879839,3
+68427316,24879839,4
+45496268,24879839,2
+lingyoushenme,24879839,-1
+WangWei1995,24879839,2
+54907599,24879839,-1
+69028094,24879839,4
+3450694,24879839,1
+neverland1210,24879839,3
+58792200,24879839,2
+48474156,24879839,3
+64199614,24879839,2
+JIUSHU87,24879839,2
+75001615,24879839,5
+1462888,24879839,4
+82431278,24879839,3
+zyzyzythl,24879839,-1
+38856279,24879839,1
+ivancry,24879839,4
+21766290,24879839,4
+ruo1996,24879839,3
+eamontoday,24879839,2
+61633382,24879839,2
+yangyihu,24879839,1
+hzwang95,24879839,3
+znnancy,24879839,3
+Ranfeg,24879839,-1
+51152524,24879839,3
+kokomi13,24879839,3
+43596686,24879839,2
+75531460,24879839,1
+mizzro,24879839,3
+zajm,24879839,3
+timorrowmain,24879839,3
+65400188,24879839,1
+35703098,24879839,2
+Fight4Life,24879839,2
+gomelove,24879839,3
+85245250,24879839,3
+songzi,24879839,3
+51991305,24879839,4
+zhangxiaolu,24879839,4
+xuekesheng,24879839,2
+chuhaidong,24879839,2
+47026501,24879839,3
+3063479,24879839,4
+la-fin,24879839,5
+76287331,24879839,3
+leLJ,24879839,2
+61448989,24879839,3
+jamesjiang27,24879839,4
+ltsingle,24879839,3
+50821469,24879839,2
+lingyun93,24879839,2
+christina_0603,24879839,3
+125630908,25774126,3
+mattni,25774126,4
+1781929,25774126,5
+orange450046,25774126,-1
+87637608,25774126,5
+fuloli,25774126,5
+67903984,25774126,5
+swell1019,25774126,4
+4522191,25774126,4
+54087603,25774126,5
+47065864,25774126,3
+hou_yuting,25774126,4
+121807969,25774126,4
+52852194,25774126,3
+56917736,25774126,3
+lingdongling,25774126,3
+2592170,25774126,3
+2056209,25774126,3
+liujinguang,25774126,3
+66632216,25774126,4
+1827987,25774126,5
+46484046,25774126,5
+54306631,25774126,4
+49298107,25774126,4
+77151897,25774126,4
+koujill,25774126,-1
+55965923,25774126,3
+76460934,25774126,4
+afatar,25774126,3
+137951486,25774126,4
+59367965,25774126,4
+38774242,25774126,4
+127487566,25774126,5
+blackbanana3Y,25774126,3
+62151151,25774126,4
+csaver,25774126,5
+50921483,25774126,4
+doreen7s,25774126,4
+Midoriccc,25774126,4
+51296784,25774126,4
+wuyunoy,25774126,3
+60760225,25774126,3
+5957736,25774126,4
+KeryChou,25774126,4
+catbuild,25774126,5
+57997238,25774126,5
+39382448,25774126,3
+Irma26,25774126,4
+Likferd,25774126,3
+yanerqian,25774126,5
+mayring,25774126,3
+Hans_Du,25774126,3
+130166144,25774126,4
+79349178,25774126,4
+104651595,25774126,4
+127025028,25774126,5
+122868077,25774126,4
+Ikino,25774126,5
+60908358,25774126,3
+sw530278585,25774126,3
+4423579,25774126,-1
+sirk,25774126,2
+Lenamet,25774126,2
+130445057,25774126,3
+2543390,25774126,-1
+136101337,25774126,3
+55828960,25774126,3
+q296579068,25774126,2
+52478383,25774126,4
+62608491,25774126,3
+108693709,25774126,3
+80722428,25774126,3
+37653990,25774126,3
+bmrlb,25774126,5
+3631042,25774126,4
+57179724,25774126,-1
+127169144,25774126,3
+58456907,25774126,4
+31622009,25774126,3
+pm-skin,25774126,4
+pm-skin,25774126,4
+xyhold,25774126,5
+kp81ndlf,25774126,4
+61506971,25774126,3
+121841318,25774126,3
+2192099,25774126,4
+xiaojiongxia,25774126,4
+46068231,25774126,3
+51387244,25774126,4
+1981762,25774126,4
+jianchen810,25774126,3
+127378341,25774126,3
+68869311,25774126,4
+shaonvc,25774126,4
+1758433,25774126,4
+emilyyoung,25774126,4
+Sunny851020,25774126,3
+Faraway_Isle,25774126,5
+36160342,25774126,2
+niubinuo,25774126,5
+41111572,25774126,4
+wjww2128,25774126,4
+3914295,25774126,3
+49433742,25774126,4
+Sherryprince,25774126,4
+72871706,25774126,4
+2679870,25774126,4
+57996084,25774126,4
+43662887,25774126,3
+iScandinavia,25774126,5
+2334495,25774126,-1
+53455992,25774126,5
+zillyromantic,25774126,5
+luckyanc,25774126,5
+63547117,25774126,4
+31640382,25774126,3
+89187056,25774126,4
+bigmiao,25774126,5
+janice5680,25774126,4
+58901835,25774126,3
+120567194,25774126,4
+gj_1987,25774126,4
+59472697,25774126,3
+3182137,25774126,5
+Laoyuelife,25774126,5
+135451199,25774126,4
+137437939,25774126,4
+49632542,25774126,4
+zxpjs,25774126,4
+129408166,25774126,4
+45782661,25774126,4
+44589835,25774126,1
+82674531,25774126,5
+8523675,25774126,4
+98956225,25774126,3
+134792608,25774126,3
+120287477,25774126,4
+131102708,25774126,4
+67077915,25774126,4
+55494665,25774126,3
+zhangrihe,25774126,3
+58414355,25774126,5
+sisje,25774126,4
+SCC,25774126,4
+33320870,25774126,5
+gu_yan,25774126,4
+50225425,25774126,4
+lonelykevin,25774126,-1
+80704682,25774126,3
+54161411,25774126,4
+duduxiongzhifu,25774126,3
+4266952,25774126,4
+dieonTV,25774126,5
+ddsto,25774126,5
+71016890,25774126,5
+xiamudemao,25774126,4
+1770378,25774126,3
+crazysheepmoon,25774126,3
+87546829,25774126,4
+55326164,25774126,4
+shinnodoo,25774126,3
+2352053,25774126,-1
+78667857,25774126,4
+50063811,25774126,-1
+dudumozart,25774126,3
+48090771,25774126,4
+lynnmoon,25774126,4
+13833588,25774126,4
+125694010,25774126,4
+55910656,25774126,5
+133190465,25774126,5
+sxy921026,25774126,3
+103277074,25774126,4
+67072789,25774126,3
+1174148,25774126,3
+eededfcd,25774126,3
+48756490,25774126,3
+131909298,25774126,3
+50728438,25774126,4
+barzin,25774126,4
+67561364,25774126,5
+clynch,25774126,3
+47445974,25774126,4
+52823077,25774126,5
+65121646,25774126,3
+64426025,25774126,5
+marvin42,25774126,4
+compauline1010,25774126,2
+87839326,25774126,5
+66179555,25774126,4
+60961304,25774126,4
+53030860,25774126,5
+Faust_Tsai,25774126,4
+127080746,25774126,5
+2154904,25774126,3
+67004506,25774126,4
+oojooo,25774126,4
+seize--the--day,25774126,4
+fuckinghate,25774126,4
+weini0410,25774126,4
+meskelil,25774126,3
+hdx1991,25774126,4
+khailll,25774126,5
+50939073,25774126,4
+59556482,25774126,3
+3529035,25774126,4
+1373968,25774126,4
+50429481,25774126,5
+1845398,25774126,3
+Paradox_Q,25774126,4
+63142694,25774126,3
+84943776,25774126,3
+137206904,25774126,4
+sangdafa,25774126,5
+jolinxian,25774126,3
+48836214,25774126,4
+91252045,25774126,4
+44141060,25774126,4
+chenkefeng,25774126,3
+59620866,25774126,4
+vivisnbb,25774126,4
+13717066,25774126,3
+123264996,25774126,4
+79895962,25774126,3
+2761343,25774126,-1
+2148283,25774126,-1
+73958470,25774126,4
+l601512254,25774126,4
+81594429,25774126,4
+2607965,25774126,4
+chichiro,25774126,4
+61681574,25774126,3
+136268447,25774126,4
+108296832,25774126,3
+122889599,25774126,3
+81685996,25774126,4
+134625303,25774126,3
+38146297,25774126,3
+67769734,25774126,3
+96660784,25774126,3
+131088732,25774126,4
+47905598,25774126,4
+lostinfire,25774126,4
+14068242,25774126,3
+43944824,25774126,4
+49499844,25774126,4
+puhonglei,25774126,3
+2562419,25774126,4
+57777888,25774126,4
+131186363,25774126,3
+67883683,25774126,3
+39068910,25774126,3
+116138651,25774126,3
+3003736,25774126,3
+nagi_echo-king,25774126,4
+3123758,25774126,4
+64821728,25774126,4
+52636646,25774126,4
+43942858,25774126,4
+hunxiyi,25774126,2
+81998298,25774126,4
+135878088,25774126,4
+1482191,25774126,3
+39890190,25774126,3
+2374724,25774126,3
+121536434,25774126,5
+84093369,25774126,4
+oviedoprince,25774126,4
+loulou-mae,25774126,5
+36342437,25774126,4
+slshukui,25774126,-1
+mcis,25774126,4
+cyy9828,25774126,3
+133067591,25774126,3
+xilouchen,25774126,4
+awesomz,25774126,5
+color-17,25774126,5
+znnancy,25774126,5
+evey42,25774126,4
+kcxhr,25774126,4
+amibubai,25774126,3
+heechen,25774126,5
+mmmmmya,25774126,4
+3517727,25774126,5
+3578261,25774126,4
+ilovelusi,25774126,3
+3151445,25774126,2
+47692361,25774126,4
+sakimay,25774126,4
+xiaoyutoufengla,25774126,5
+65646732,25774126,4
+34936131,25774126,4
+7221416,25774126,5
+hypochondria,25774126,4
+45981981,25774126,3
+weis,25774126,4
+64585974,25774126,3
+adonis,25774126,5
+103039257,25774126,3
+36118700,25774126,4
+102643839,25774126,4
+2036072,25774126,2
+65477496,25774126,4
+75499196,25774126,4
+69189478,25774126,4
+74799167,25774126,5
+salahdou,25774126,3
+wch2020,25774126,3
+53392734,25774126,4
+110165674,25774126,4
+callmemrcoolman,25774126,3
+75337172,25774126,-1
+karenasong,25774126,4
+windirt,25774126,3
+52399993,25774126,4
+magicxiaobi,25774126,3
+53475502,25774126,5
+64159384,25774126,4
+cicely521,25774126,4
+jiangli1988,25774126,3
+ricy-rice,25774126,5
+haman,25774126,5
+96316359,25774126,4
+yinyet,25774126,4
+64978016,25774126,4
+90213289,25774126,4
+4190834,25774126,4
+wangjia0702,25774126,4
+15535572,25774126,3
+99833662,25774126,4
+44939590,25774126,4
+sd0225,25774126,4
+qiushengtang,25774126,4
+reneryu,25774126,3
+ellie911,25774126,4
+130365524,25774126,5
+80873754,25774126,3
+83130339,25774126,3
+silenceyt,25774126,3
+4643817,25774126,4
+donna12355,25774126,3
+MihaelKeehl,25774126,4
+tinyno7,25774126,4
+cory1990,25774126,3
+46899693,25774126,3
+40970313,25774126,4
+91126211,25774126,4
+55772953,25774126,3
+58267808,25774126,4
+47513785,25774126,5
+foamwhisper,25774126,4
+moxmo,25774126,4
+37398408,25774126,3
+samsyu,25774126,3
+121780577,25774126,3
+qiqihhappy,25774126,5
+74599483,25774126,4
+131207194,25774126,5
+dy110428,25774126,4
+58697566,25774126,3
+CWQ1030,25774126,3
+55950775,25774126,4
+Ryan-Z,25774126,4
+45042581,25774126,3
+wonderfultimes,25774126,5
+88535863,25774126,5
+81319731,25774126,4
+124861242,25774126,3
+3144882,25774126,4
+49772004,25774126,3
+36250262,25774126,4
+46766450,25774126,3
+33799142,25774126,3
+song1,25774126,4
+adelebleu,25774126,4
+12681117,25774126,4
+3471791,25774126,4
+83415261,25774126,4
+kikilili006,25774126,5
+43153098,25774126,5
+wangleku0310,25774126,4
+3471664,25774126,5
+51974103,25774126,2
+jes77,25774126,4
+gooo111,25774126,4
+4345264,25774126,5
+59760298,25774126,4
+102901525,25774126,-1
+84250012,25774126,5
+songzer,25774126,5
+fuyulovehyde,25774126,4
+le_er,25774126,4
+lumins,25774126,3
+49620873,25774126,3
+58408279,25774126,5
+Charlie.Lee,25774126,3
+51342796,25774126,4
+76187986,25774126,4
+79882566,25774126,-1
+ditto223,25774126,4
+Strangefamiliar,25774126,4
+3130809,25774126,3
+takuyayueyue,25774126,4
+37495463,25774126,4
+goodbyetn,25774126,-1
+AokiEmi,25774126,5
+eyefy,25774126,3
+lidashu1210,25774126,3
+effyneversleeps,25774126,-1
+56886085,25774126,4
+54437272,25774126,4
+2498717,25774126,4
+3555547,25774126,4
+25635000,25774126,4
+2803619,25774126,5
+63542179,25774126,4
+54701983,25774126,4
+SMC,25774126,4
+47515047,25774126,4
+77281081,25774126,5
+smiledfish,25774126,4
+Hunjianxia,25774126,4
+evelyn_only,25774126,4
+58064281,25774126,3
+7255952,25774126,4
+14753496,25774126,5
+47833189,25774126,4
+cay_gene,25774126,5
+123680755,25774126,4
+kingiknow,25774126,3
+sonnet1983,25774126,5
+teukie,25774126,5
+35285718,25774126,4
+67731496,25774126,5
+45332811,25774126,4
+50537811,25774126,4
+125495885,25774126,3
+onlyqinping,25774126,4
+35322417,25774126,4
+tmrai,25774126,4
+66696808,25774126,3
+50739519,25774126,2
+81586403,25774126,5
+Zaytun,25774126,3
+71806570,25774126,3
+podolski,25774126,4
+43303328,25774126,5
+59867809,25774126,3
+76999762,25774126,4
+DavyNight,25774126,5
+79090756,25774126,3
+Chenallen,25774126,4
+15912473,25774126,4
+50919323,25774126,3
+16547415,25774126,4
+129577459,25774126,3
+4453892,25774126,-1
+75215757,25774126,4
+61706956,25774126,4
+38547386,25774126,5
+evollozer,25774126,5
+elliry,25774126,4
+Aurora707,25774126,5
+Bebefore,25774126,4
+guitarain,25774126,4
+49266863,25774126,2
+liezao,25774126,5
+2144242,25774126,4
+peterpanty,25774126,2
+58485268,25774126,5
+4200336,25774126,4
+136261663,25774126,4
+26149046,25774126,4
+47193126,25774126,3
+56396911,25774126,5
+twinklingm,25774126,4
+tvfxq4ever,25774126,4
+26461987,25774126,3
+suozaizai,25774126,5
+52413397,25774126,5
+Stanleyhai,25774126,4
+ilaolao,25774126,5
+55922564,25774126,4
+Psychoknocker,25774126,4
+RATATKAIQI,25774126,4
+vienna76,25774126,4
+70296365,25774126,4
+stompbabe,25774126,4
+4896156,25774126,4
+Darmian,25774126,5
+rock0323,25774126,3
+on1ooker,25774126,4
+73869586,25774126,5
+52864776,25774126,4
+whisperstone,25774126,5
+Kelsey.,25774126,5
+iisakura,25774126,2
+29710703,25774126,4
+48566494,25774126,4
+48826276,25774126,3
+48826276,25774126,3
+anniexie95,25774126,4
+68784188,25774126,5
+59964725,25774126,4
+61134223,25774126,4
+Grace_Xuliang,25774126,4
+sunagao,25774126,4
+58952579,25774126,4
+1138773,25774126,4
+Andred,25774126,4
+53067576,25774126,-1
+73770976,25774126,4
+8319224,25774126,5
+52596870,25774126,5
+53559432,25774126,3
+4409109,25774126,3
+fengbao945,25774126,5
+119181217,25774126,4
+1496227,25774126,4
+2775463,25774126,4
+42512212,25774126,3
+3634776,25774126,4
+55914733,25774126,4
+37412671,25774126,4
+Georgewen,25774126,4
+Pius,25774126,5
+68922074,25774126,5
+124040620,25774126,5
+sunnysunnysunny,25774126,4
+mrbig,25774126,4
+Son47,25774126,4
+tzyytail,25774126,4
+48480567,25774126,4
+46932541,25774126,3
+emmalove1314,25774126,2
+childecc,25774126,4
+55334348,25774126,3
+121064013,25774126,3
+115524075,25774126,4
+83343003,25774126,4
+18360610,25774126,3
+reneeeee,25774126,4
+counting_crows,25774126,4
+56475433,25774126,4
+qinyouxuan,25774126,4
+59290556,25774126,3
+wuhuihong1992,25774126,4
+93151927,25774126,4
+tongziyam,25774126,3
+66785665,25774126,4
+63672355,25774126,1
+59164249,25774126,4
+131596492,25774126,5
+121806653,25774126,5
+41506911,25774126,4
+dearsnow,25774126,2
+46065523,25774126,5
+kyo_21,25774126,4
+boonie,25774126,4
+JustStayReal,25774126,4
+35677147,25774126,4
+136377234,25774126,4
+jiayu0923,25774126,4
+Betty_king,25774126,4
+3417035,25774126,5
+yvone1220,25774126,3
+35546848,25774126,4
+74418129,25774126,4
+sun-sun-emma,25774126,4
+melancia,25774126,4
+2341945,25774126,3
+59383084,25774126,4
+68366606,25774126,3
+me2shy,25774126,5
+reave,25774126,4
+annia0216,25774126,3
+valkao,25774126,3
+Leo_Pan,25774126,4
+49054831,25774126,4
+54904155,25774126,4
+huapiqiu,25774126,4
+73312122,25774126,4
+45238478,25774126,3
+65280514,25774126,3
+65565016,25774126,5
+qian_natsu,25774126,3
+yumofu,25774126,2
+66224726,25774126,3
+zhousophia,25774126,3
+1115920,25774126,4
+samantha129,25774126,3
+2888984,25774126,5
+wenteng1988,25774126,2
+isheldon,25774126,4
+lynn0128,25774126,-1
+65458998,25774126,3
+68626256,25774126,5
+47747849,25774126,2
+128005787,25774126,3
+cucaoxu,25774126,5
+cucaoxu,25774126,5
+f91_82,25774126,4
+43469568,25774126,4
+53605408,25774126,4
+vanexu,25774126,4
+27891262,25774126,4
+Ghost.Melody,25774126,4
+13294183,25774126,4
+37306803,25774126,4
+46920813,25774126,3
+130599620,25774126,3
+arthurwen,25774126,2
+2600693,25774126,4
+41555500,25774126,3
+53204374,25774126,4
+1860994,25774126,5
+48269477,25774126,3
+135928273,25774126,5
+44398603,25774126,4
+53055726,25774126,4
+Sh1neYuan,25774126,3
+2106137,25774126,3
+67388709,25774126,4
+9775754,25774126,2
+2543451,25774126,5
+Carmeliano,25774126,4
+campocampo,25774126,3
+36936880,25774126,3
+dnarna_vicky,25774126,-1
+46363434,25774126,4
+5854721,25774126,3
+liveland,25774126,4
+53396330,25774126,3
+consheep,25774126,3
+74744187,25774126,4
+110227894,25774126,5
+daphneleaf,25774126,4
+76482774,25774126,4
+2184495,25774126,3
+6004495,25774126,4
+6004495,25774126,4
+2174443,25774126,4
+78617576,25774126,-1
+97277841,25774126,4
+seodler,25774126,3
+110810799,25774126,4
+wangmingtianya,25774126,5
+30299786,25774126,4
+jyt0203,25774126,4
+81916004,25774126,4
+54337249,25774126,5
+emhm,25774126,4
+PrinceLu,25774126,4
+gogo_wangwang,25774126,5
+120194903,25774126,4
+1751058,25774126,3
+82566797,25774126,5
+yolanda9421,25774126,3
+pangwaer,25774126,3
+68647916,25774126,5
+81834646,25774126,-1
+67727072,25774126,4
+11658942,25774126,4
+77911523,25774126,4
+79895496,25774126,3
+37242209,25774126,4
+sophycc,25774126,3
+133179065,25774126,4
+49051541,25774126,4
+89185666,25774126,5
+38465519,25774126,3
+helloajun,25774126,4
+KUBRICK2OO1,25774126,4
+Gaspard,25774126,4
+2485313,25774126,4
+124640229,25774126,5
+76290755,25774126,4
+Maoplace021,25774126,4
+Yvonne_G,25774126,5
+72225985,25774126,4
+52975959,25774126,4
+jefffeihead,25774126,3
+68542833,25774126,2
+50098080,25774126,4
+51098652,25774126,3
+hahahaha38,25774126,5
+SiuSIE,25774126,5
+49712766,25774126,4
+102618249,25774126,-1
+66488510,25774126,4
+134417369,25774126,3
+iRayc,25774126,3
+3160681,25774126,4
+67981371,25774126,5
+GracieG,25774126,4
+48205267,25774126,4
+l97183025,25774126,3
+136097338,25774126,2
+45446401,25774126,3
+32941683,25774126,4
+54536885,25774126,4
+40081321,25774126,5
+50451911,25774126,3
+66707798,25774126,4
+78977506,25774126,4
+48850482,25774126,4
+4242859,25774126,4
+64894018,25774126,5
+2180501,25774126,4
+4405668,25774126,3
+57892875,25774126,-1
+nyssa712,25774126,4
+man_to_patient,25774126,3
+35380385,25774126,2
+louing,25774126,3
+83295870,25774126,1
+135012811,25774126,4
+spoon20110424,25774126,4
+2441545,25774126,-1
+1343384,25774126,3
+71217329,25774126,4
+106126456,25774126,3
+59035824,25774126,3
+3234538,25774126,3
+baladong123,25774126,4
+christopherlin,25774126,3
+2756490,25774126,4
+63788372,25774126,4
+lisa-l,25774126,5
+vivianlovesun,25774126,4
+119327333,25774126,3
+AriesSusan,25774126,5
+59301158,25774126,5
+91688422,25774126,4
+psyence-1,25774126,-1
+47974584,25774126,5
+baichihaigui,25774126,4
+YuSu,25774126,3
+telfair,25774126,3
+135570170,25774126,5
+47876521,25774126,4
+58783819,25774126,4
+53656219,25774126,4
+17672710,25774126,3
+47602699,25774126,4
+MissUnderwater,25774126,4
+62504399,25774126,4
+68325010,25774126,4
+susimai,25774126,3
+47814886,25774126,3
+38179371,25774126,3
+sinceiloveu,25774126,3
+60808695,25774126,4
+interskh,25774126,3
+UNVS,25774126,5
+4141310,25774126,4
+yfqc24pippo,25774126,3
+102974670,25774126,4
+2769574,25774126,5
+3317072,25774126,3
+53430352,25774126,4
+4412885,25774126,4
+2642171,25774126,3
+43535885,25774126,4
+ccushuaia1220,25774126,-1
+84406810,25774126,3
+38626371,25774126,4
+62079429,25774126,4
+wuyuemua,25774126,5
+1082144,25774126,3
+hhy890809,25774126,3
+135502800,25774126,4
+2240036,25774126,5
+48232992,25774126,4
+68058633,25774126,4
+71625816,25774126,4
+47747519,25774126,4
+48180333,25774126,3
+laura13,25774126,4
+39569779,25774126,4
+62542631,25774126,3
+gumi,25774126,3
+74758139,25774126,3
+9167697,25774126,-1
+127118502,25774126,4
+34727533,25774126,3
+jiaoxiansheng,25774126,5
+shirleybin,25774126,5
+selenelovesyiu,25774126,4
+135731311,25774126,5
+12949814,25774126,3
+134693673,25774126,4
+120480108,25774126,4
+xiuwusay,25774126,5
+halfhalf,25774126,4
+joy9527joy,25774126,4
+3783012,25774126,4
+2244671,25774126,4
+49408765,25774126,-1
+58059498,25774126,3
+shunong,25774126,3
+mollukax3,25774126,4
+silvia2011,25774126,3
+46009385,25774126,3
+126758242,25774126,4
+2618890,25774126,3
+67916387,25774126,4
+85002998,25774126,3
+56652624,25774126,4
+sally_kowk,25774126,5
+lucydeer,25774126,4
+wangbingyu,25774126,4
+mrbrooks,25774126,4
+65442139,25774126,4
+78928035,25774126,4
+61403829,25774126,4
+Gmosquito,25774126,3
+61935443,25774126,3
+zhaoyu1222,25774126,5
+59418223,25774126,5
+4024346,25774126,4
+huzisusu,25774126,5
+49061947,25774126,4
+40310299,25774126,3
+57100027,25774126,5
+71420864,25774126,4
+lindadarling,25774126,4
+yanyanzhou110,25774126,4
+72657219,25774126,3
+70214878,25774126,4
+1861366,25774126,5
+L2X12221120,25774126,5
+cherryoung,25774126,3
+19469713,25774126,-1
+69674172,25774126,3
+12699479,25774126,-1
+50144933,25774126,4
+2553281,25774126,4
+76553742,25774126,5
+53398087,25774126,4
+64748860,25774126,5
+drsoul,25774126,5
+64181731,25774126,3
+135886452,25774126,5
+59649901,25774126,4
+sunkyeast,25774126,4
+luyazhou,25774126,5
+60664918,25774126,4
+encore7,25774126,3
+69930229,25774126,4
+kimi-1119,25774126,4
+hudodo0314,25774126,-1
+busixiaohai,25774126,3
+76148620,25774126,5
+67278421,25774126,4
+PC_Mancola,25774126,4
+4509449,25774126,3
+53724452,25774126,3
+Ice.Nefar,25774126,2
+54676136,25774126,4
+jadexyz,25774126,4
+carefree-wanzi,25774126,4
+sheshoumeizhi,25774126,4
+cynthia3922,25774126,3
+Mobius.wang,25774126,4
+103503223,25774126,3
+yan599083337,25774126,3
+3555189,25774126,3
+65869124,25774126,5
+mkfinch,25774126,5
+zhibiaoshi,25774126,4
+54069821,25774126,3
+57642444,25774126,5
+ginthemorning,25774126,4
+lidesheng,25774126,5
+67323158,25774126,4
+echozhan,25774126,3
+Illbeamyouup,25774126,5
+emilyforever,25774126,4
+61069242,25774126,5
+61069242,25774126,5
+49469457,25774126,5
+zz_lucy,25774126,4
+flytomilan,25774126,4
+dearsu,25774126,4
+gardyourass,25774126,5
+67574388,25774126,4
+41680643,25774126,4
+43618172,25774126,4
+36641683,25774126,5
+3894772,25774126,4
+93476152,25774126,5
+134195975,25774126,5
+134192641,25774126,5
+76960780,25774126,4
+pilgrim_soul,25774126,3
+the7th_bloom,25774126,3
+83520823,25774126,4
+53909669,25774126,4
+62460327,25774126,4
+66057217,25774126,4
+gangrel96,25774126,4
+4320404,25774126,3
+82995055,25774126,3
+52543419,25774126,5
+mingbaianna,25774126,5
+littletraveler,25774126,4
+wallaceLee,25774126,4
+67030468,25774126,5
+shumeiying,25774126,4
+46818877,25774126,3
+7085324,25774126,5
+cheerychang,25774126,4
+90056142,25774126,4
+63194138,25774126,3
+giveareason,25774126,5
+56906475,25774126,1
+sora203,25774126,4
+60392839,25774126,3
+35224934,25774126,4
+86202635,25774126,2
+jiaxintuanzi,25774126,5
+janeao,25774126,5
+froggie,25774126,3
+49273541,25774126,4
+zhxyl,25774126,5
+schauer,25774126,4
+51734671,25774126,3
+92300859,25774126,2
+kissofdead,25774126,4
+flowermoi,25774126,3
+50875593,25774126,3
+solavre,25774126,-1
+60302594,25774126,3
+kokia233,25774126,5
+72792251,25774126,3
+60011676,25774126,3
+134855500,25774126,5
+D-cherry,25774126,5
+42284034,25774126,-1
+44436573,25774126,4
+birdgirl,25774126,3
+45529514,25774126,3
+110447556,25774126,4
+119544222,25774126,5
+54551463,25774126,5
+wxiaobo,25774126,3
+gufengbyluoluo,25774126,3
+tinyxx,25774126,5
+4024641,25774126,3
+39961322,25774126,4
+50769743,25774126,4
+56416143,25774126,4
+90688581,25774126,3
+lexi1018,25774126,4
+33831593,25774126,4
+53946728,25774126,4
+joybang,25774126,5
+jolie14,25774126,4
+woohly,25774126,4
+64969016,25774126,4
+71887351,25774126,4
+Amour-Xerophyte,25774126,4
+122031722,25774126,4
+six211,25774126,3
+74193285,25774126,4
+59316669,25774126,5
+11080929,25774126,2
+121795248,25774126,-1
+58847621,25774126,3
+60507902,25774126,5
+109084248,25774126,4
+55534067,25774126,5
+2099122,25774126,3
+68379103,25774126,3
+monorin,25774126,4
+53485894,25774126,4
+59764593,25774126,4
+3797778,25774126,1
+135445350,25774126,5
+54734027,25774126,4
+AuRevoir7,25774126,3
+63646179,25774126,5
+60275352,25774126,5
+XDXJ,25774126,4
+CityOfShadows,25774126,3
+longislandiced,25774126,3
+1401672,25774126,3
+80925523,25774126,4
+suh5213,25774126,4
+AAAhua,25774126,3
+3229037,25774126,4
+48238044,25774126,5
+1319544,25774126,3
+surfire1206,25774126,4
+Coreasshole,25774126,4
+65301397,25774126,3
+mrsfed,25774126,4
+LolitaBerry,25774126,5
+36090011,25774126,3
+YvonneGQ,25774126,3
+70034039,25774126,3
+104409838,25774126,4
+RitaXuQ,25774126,4
+97940125,25774126,3
+commondou,25774126,-1
+naniso,25774126,5
+50805673,25774126,5
+103235796,25774126,4
+58188727,25774126,3
+theMicky,25774126,3
+49384394,25774126,3
+3202437,25774126,3
+neverellan,25774126,5
+viviensong,25774126,3
+2210308,25774126,4
+79181644,25774126,5
+1503417,25774126,4
+53576749,25774126,3
+52965302,25774126,5
+77048663,25774126,4
+embee,25774126,4
+61276700,25774126,3
+127688878,25774126,4
+134171030,25774126,3
+40643841,25774126,5
+135746612,25774126,4
+75801738,25774126,3
+lanxi9107,25774126,5
+82219188,25774126,4
+3078221,25774126,4
+piiiiii,25774126,5
+120542127,25774126,4
+62736630,25774126,2
+ursyoyo,25774126,4
+datouduoduo,25774126,3
+1391193,25774126,5
+53874586,25774126,4
+1815039,25774126,3
+hey.nanzhuang,25774126,3
+2121850,25774126,3
+134898713,25774126,3
+lovebenedict,25774126,4
+71741571,25774126,-1
+yunfeiyang2046,25774126,4
+50840996,25774126,4
+4667673,25774126,5
+48532127,25774126,4
+41606354,25774126,3
+41207080,25774126,3
+61992166,25774126,4
+65131336,25774126,4
+Shadow..,25774126,4
+79875260,25774126,4
+50180510,25774126,4
+xsy0923,25774126,4
+2803203,25774126,-1
+63941479,25774126,4
+54432679,25774126,4
+62330413,25774126,4
+4345520,25774126,4
+65720842,25774126,5
+terrann,25774126,3
+lyj19951024,25774126,4
+duoduoshuwu,25774126,4
+64511208,25774126,5
+4489482,25774126,4
+zhongdoudou,25774126,3
+67466712,25774126,5
+fucktbag,25774126,3
+126183742,25774126,4
+51571478,25774126,4
+iamgriffin,25774126,4
+44535286,25774126,3
+1762955,25774126,4
+1635123,25774126,4
+yingchen221e,25774126,3
+sea-lucky,25774126,5
+71457288,25774126,4
+sophia_423,25774126,3
+yancaotian,25774126,3
+77316354,25774126,3
+91222743,25774126,4
+89640678,25774126,4
+79551282,25774126,4
+53932937,25774126,5
+53491052,25774126,4
+lancy27,25774126,4
+61654063,25774126,4
+goodbyelenin,25774126,4
+63732204,25774126,3
+91243092,25774126,4
+yoory,25774126,-1
+47709338,25774126,4
+lephemera,25774126,3
+3873893,25774126,4
+montcalgary,25774126,3
+yelier.,25774126,4
+76414184,25774126,3
+80121770,25774126,3
+72606790,25774126,4
+11794252,25774126,4
+50210563,25774126,3
+hughll,25774126,3
+3309771,25774126,5
+1068125,25774126,4
+46965914,25774126,4
+xiaoyuhen,25774126,3
+elwingt,25774126,4
+58492547,25774126,3
+6450241,25774126,4
+90807462,25774126,4
+54000993,25774126,5
+48396212,25774126,3
+120727284,25774126,4
+sho2mon4e4y,25774126,4
+Oliver_Lu,25774126,3
+kimmko,25774126,4
+4321081,25774126,3
+101467920,25774126,4
+37402473,25774126,3
+48687824,25774126,4
+38736772,25774126,2
+48102561,25774126,4
+107808793,25774126,4
+xiaopin19,25774126,3
+vanunited,25774126,4
+48164798,25774126,4
+65723626,25774126,3
+followmydreams,25774126,5
+3764307,25774126,4
+1684931,25774126,4
+Bonjour-Bee,25774126,2
+sylvielanlan,25774126,4
+80537833,25774126,3
+tintintsang,25774126,3
+1496062,25774126,4
+rin993,25774126,4
+24274750,25774126,3
+addonn,25774126,4
+1733175,25774126,4
+mikeodj,25774126,3
+120929768,25774126,3
+prince-bei,25774126,3
+sunzeya,25774126,4
+miantiao123,25774126,4
+1704805,25774126,4
+cheapchic,25774126,3
+63617713,25774126,4
+lovingmomo,25774126,3
+66168101,25774126,3
+ivyet25,25774126,3
+49807352,25774126,4
+boredblooming,25774126,5
+flowernim,25774126,3
+13441174,25774126,4
+50014844,25774126,4
+88026587,25774126,5
+83513831,25774126,4
+cyansugar,25774126,3
+4518731,25774126,3
+darkstars,25774126,4
+60832172,25774126,3
+philllin,25774126,3
+80418355,25774126,-1
+cheshire,25774126,3
+limabixiaojie,25774126,3
+31072510,25774126,4
+79171936,25774126,4
+61725062,25774126,4
+2834857,25774126,-1
+68023776,25774126,5
+60756197,25774126,3
+4462311,25774126,3
+127426227,25774126,4
+102838934,25774126,3
+lilianna,25774126,4
+46590871,25774126,3
+39649962,25774126,4
+95968737,25774126,5
+vincentjones,25774126,3
+momo_pan,25774126,5
+luoyawei,25774126,4
+1591677,25774126,4
+61021408,25774126,5
+simuvchen,25774126,4
+inmessy,25774126,3
+alphard0615,25774126,4
+114540983,25774126,4
+1437680,25774126,4
+sevpridra,25774126,5
+sweetxyy,25774126,5
+56796153,25774126,5
+42182497,25774126,5
+medeHOW,25774126,4
+cherryziyi,25774126,4
+36103812,25774126,4
+80769810,25774126,3
+120497845,25774126,5
+53896477,25774126,5
+50066730,25774126,4
+36694478,25774126,4
+JoooNE,25774126,5
+117307392,25774126,5
+Veronicachai,25774126,4
+laxiaomian,25774126,4
+49808652,25774126,4
+RF181920,25774126,5
+dearbeibei,25774126,3
+57491810,25774126,2
+F7LOWER,25774126,3
+45267287,25774126,3
+hijikataT,25774126,4
+85397972,25774126,5
+74084881,25774126,5
+99414276,25774126,4
+50629676,25774126,4
+34219306,25774126,-1
+60650660,25774126,3
+91252299,25774126,4
+3752454,25774126,3
+114102247,25774126,5
+14455478,25774126,4
+3688516,25774126,5
+128993428,25774126,4
+76022781,25774126,5
+47799893,25774126,5
+131068311,25774126,4
+70970974,25774126,3
+61570428,25774126,5
+79452257,25774126,3
+52046624,25774126,4
+78926576,25774126,4
+58759380,25774126,5
+65117604,25774126,3
+yogaeven,25774126,4
+52588994,25774126,5
+mcbird3017,25774126,3
+loveanimals,25774126,4
+beloved-seven,25774126,4
+48062280,25774126,4
+72984075,25774126,4
+ohterri,25774126,4
+petitejoie21,25774126,3
+57982827,25774126,4
+fish6058,25774126,4
+gunguning,25774126,5
+xuekesheng,25774126,4
+49356086,25774126,3
+naonaohexiaobai,25774126,4
+49597047,25774126,3
+42775906,25774126,3
+lukaka,25774126,3
+49415166,25774126,4
+74224240,25774126,4
+44761018,25774126,4
+4352057,25774126,4
+43732585,25774126,4
+tur,25774126,-1
+nvwu_sophia,25774126,4
+zhanghanha,25774126,3
+49077360,25774126,5
+4146399,25774126,4
+fernweh,25774126,4
+39937848,25774126,4
+65079476,25774126,3
+52961960,25774126,4
+50527578,25774126,4
+49441067,25774126,5
+deathlegend,25774126,5
+3494073,25774126,3
+53024139,25774126,4
+3429384,25774126,4
+1399555,25774126,4
+3066956,25774126,4
+69162144,25774126,4
+63774339,25774126,3
+2310497,25774126,3
+cyan_xi,25774126,4
+62120599,25774126,5
+44006704,25774126,3
+53183648,25774126,4
+Elaine_citi,25774126,2
+131259091,25774126,5
+am_I,25774126,4
+lolitahanhan,25774126,3
+imoviekobe,25774126,4
+envelopeyy,25774126,3
+51227412,25774126,4
+69036663,25774126,3
+apple01,25774126,5
+59217273,25774126,4
+73763567,25774126,5
+LadyA,25774126,4
+babyblue715,25774126,4
+63205590,25774126,3
+96044338,25774126,3
+46287060,25774126,-1
+2971209,25774126,5
+74013127,25774126,5
+2971209,25774126,5
+74013127,25774126,5
+124801894,25774126,3
+mlgbpirate,25774126,4
+septembersummer,25774126,3
+bluegluegun,25774126,1
+45291333,25774126,3
+87769477,25774126,4
+chyidan,25774126,3
+sweeroty,25774126,3
+77882008,25774126,4
+for_love,25774126,4
+54454841,25774126,4
+112941907,25774126,3
+84480272,25774126,5
+JuanBuJuanJuan,25774126,5
+ququjiyi,25774126,4
+78690191,25774126,5
+psychodying,25774126,3
+58901654,25774126,5
+xinzhengs,25774126,4
+132541787,25774126,5
+120331217,25774126,5
+3513677,25774126,4
+60080171,25774126,3
+60650202,25774126,4
+69736847,25774126,4
+53007116,25774126,5
+xiaoweiwang,25774126,3
+43326904,25774126,5
+88078787,25774126,3
+3522119,25774126,4
+1793748,25774126,4
+3161588,25774126,5
+TeLligent,25774126,5
+57293187,25774126,5
+65369148,25774126,3
+49870510,25774126,4
+61081025,25774126,4
+90553636,25774126,5
+46453072,25774126,4
+Dasiycat,25774126,4
+81441568,25774126,3
+tiramisu-katy,25774126,4
+yukiloh,25774126,4
+aprilray,25774126,4
+zhongguobaoan,25774126,5
+49316302,25774126,4
+yoteamomucho,25774126,4
+60836654,25774126,5
+foxv1,25774126,-1
+huyouyou,25774126,4
+2429292,25774126,3
+67211309,25774126,3
+62929277,25774126,5
+40223789,25774126,3
+silentlion,25774126,4
+45858265,25774126,3
+78473890,25774126,4
+65901691,25774126,3
+Leibnio,25774126,4
+nonob,25774126,3
+mensoso,25774126,5
+foun,25774126,2
+60380024,25774126,4
+yuntun,25774126,4
+54952662,25774126,5
+InMisery,25774126,4
+augusttt,25774126,3
+xuliking,25774126,4
+60155135,25774126,3
+Blureen,25774126,5
+56686931,25774126,4
+130808289,25774126,4
+Jensen4ever,25774126,3
+chelsenmao,25774126,4
+chamori,25774126,3
+58117045,25774126,3
+43648335,25774126,3
+62189600,25774126,-1
+53941627,25774126,3
+76618509,25774126,5
+59370142,25774126,4
+65930256,25774126,4
+2415153,25774126,3
+63594336,25774126,5
+46572945,25774126,5
+3322308,25774126,4
+79560195,25774126,3
+50246855,25774126,4
+leeang,25774126,-1
+53908274,25774126,4
+Charlotte.Q,25774126,4
+50653498,25774126,4
+3488715,25774126,5
+zasuny,25774126,4
+2338145,25774126,3
+evanais,25774126,3
+drea_d,25774126,5
+54822077,25774126,4
+95832299,25774126,2
+48823383,25774126,5
+35364683,25774126,4
+mayday497,25774126,5
+117359316,25774126,5
+121385842,25774126,5
+1978997,25774126,2
+applejune,25774126,4
+4106036,25774126,5
+39818753,25774126,5
+q962265267,25774126,4
+cxxloveavril,25774126,5
+w112233,25774126,3
+51073562,25774126,3
+120551581,25774126,4
+115499943,25774126,5
+qiao517,25774126,3
+chrisyx,25774126,4
+95592443,25774126,4
+xunyuxin,25774126,4
+49164002,25774126,4
+51206699,25774126,4
+46065114,25774126,4
+xundan0708,25774126,4
+lizandliz,25774126,3
+130752822,25774126,5
+62184889,25774126,5
+3614212,25774126,5
+wangmian0729,25774126,3
+49115709,25774126,5
+1077003,25774126,3
+Sophieless,25774126,3
+51020341,25774126,5
+106570148,25774126,4
+summertime727,25774126,-1
+93651159,25774126,3
+55364280,25774126,4
+jiong7,25774126,3
+ksjaewon,25774126,4
+49232801,25774126,4
+joyjay,25774126,-1
+hayney,25774126,4
+56270845,25774126,5
+56812940,25774126,5
+49063056,25774126,5
+77602373,25774126,5
+43966741,25774126,4
+54026491,25774126,5
+supernic,25774126,4
+Ston3s,25774126,3
+3846319,25774126,3
+115560708,25774126,4
+67146028,25774126,3
+16910877,25774126,5
+whatsuplaura,25774126,3
+nodane,25774126,3
+76909039,25774126,4
+128366588,25774126,5
+50740835,25774126,4
+92118420,25774126,4
+58259597,25774126,5
+11566740,25774126,4
+besupposedto,25774126,5
+42279146,25774126,4
+proband,25774126,2
+115366212,25774126,4
+36568075,25774126,3
+67967186,25774126,4
+drydrysun,25774126,4
+3142312,25774126,3
+51606142,25774126,3
+oooweirooo,25774126,4
+88174425,25774126,5
+fatia0,25774126,4
+3323980,25774126,3
+39012867,25774126,2
+ivril,25774126,4
+115501579,25774126,4
+musair,25774126,4
+46058827,25774126,4
+catfacegirl,25774126,3
+25924528,25774126,3
+3588917,25774126,3
+74508061,25774126,5
+57127166,25774126,4
+78902065,25774126,5
+135019667,25774126,3
+carriewxy,25774126,5
+liyuantown,25774126,4
+114079849,25774126,3
+41254349,25774126,4
+southdrift,25774126,4
+96370254,25774126,4
+3936900,25774126,4
+2323154,25774126,3
+4470750,25774126,3
+61316156,25774126,5
+81373304,25774126,3
+annie-bean,25774126,-1
+25740506,25774126,3
+danaest,25774126,3
+fafashit,25774126,4
+shelleyhsu,25774126,3
+66077019,25774126,3
+2944300,25774126,5
+132580596,25774126,4
+1887889,25774126,4
+69045210,25774126,-1
+wanglei0326,25774126,4
+73133920,25774126,4
+119583854,25774126,5
+43596686,25774126,3
+25560643,25774126,4
+bzslovely,25774126,5
+la_ficine,25774126,2
+septimals,25774126,4
+64110948,25774126,4
+62978653,25774126,4
+antivirus,25774126,4
+61037567,25774126,-1
+61037567,25774126,-1
+FreezeJenny,25774126,4
+48941504,25774126,3
+132505637,25774126,3
+minimongol,25774126,4
+36502417,25774126,4
+wish430,25774126,4
+135443656,25774126,5
+kitajimajunko,25774126,4
+54277204,25774126,4
+EmeraldIsle,25774126,4
+3532653,25774126,3
+fevermania,25774126,5
+bibiily,25774126,5
+53971929,25774126,4
+48472407,25774126,4
+64276652,25774126,5
+72167998,25774126,4
+RivenZhong,25774126,3
+89768114,25774126,4
+57818309,25774126,4
+shiteng,25774126,5
+36226280,25774126,2
+43808911,25774126,4
+79179595,25774126,5
+edward1988,25774126,3
+mian11,25774126,3
+83192627,25774126,3
+summerguagua,25774126,4
+yaoayao1988,25774126,4
+kyuning1,25774126,4
+85055779,25774126,4
+mouqingyang,25774126,3
+124573261,25774126,5
+mistiness,25774126,4
+45586124,25774126,3
+73368654,25774126,3
+76053597,25774126,4
+clytzesmile,25774126,4
+ovanisho,25774126,4
+4826633,25774126,4
+hukuikui,25774126,4
+rokushi,25774126,4
+78763010,25774126,3
+lu19,25774126,3
+57931932,25774126,5
+suxiaoxia,25774126,3
+irrisawu,25774126,3
+55287270,25774126,3
+57758091,25774126,4
+122933889,25774126,3
+47445900,25774126,5
+2748006,25774126,4
+61280115,25774126,5
+47041593,25774126,2
+wwl924,25774126,4
+63403641,25774126,5
+kooooh,25774126,3
+92468807,25774126,3
+61572428,25774126,3
+62471533,25774126,4
+90037986,25774126,4
+lynn24,25774126,3
+lanxinwu,25774126,4
+35407270,25774126,3
+1183940,25774126,-1
+Alien_shin,25774126,4
+78710041,25774126,3
+zeroqq,25774126,4
+80860113,25774126,3
+18586571,25774126,4
+68730794,25774126,5
+2332162,25774126,5
+67447555,25774126,4
+39945204,25774126,4
+xyg1103,25774126,3
+99074736,25774126,2
+3105123,25774126,4
+36942754,25774126,5
+64725454,25774126,3
+2574869,25774126,3
+56524561,25774126,4
+zk_0707,25774126,5
+78166009,25774126,3
+63614573,25774126,4
+64130189,25774126,5
+113124571,25774126,5
+xiaosongqu,25774126,3
+75919955,25774126,3
+36806157,25774126,3
+detruire,25774126,4
+45935605,25774126,3
+49083776,25774126,4
+63793789,25774126,4
+zumbooruk,25774126,5
+mirror-y,25774126,5
+52076370,25774126,4
+2963229,25774126,3
+errena,25774126,4
+adoskk,25774126,5
+magic.rhythm,25774126,5
+sunww,25774126,4
+127632434,25774126,4
+65593493,25774126,5
+deepsnow,25774126,4
+3873448,25774126,4
+mousethe8,25774126,4
+83899962,25774126,5
+exquisitecathy,25774126,4
+1550135,25774126,3
+113169570,25774126,4
+72365575,25774126,3
+44387904,25774126,3
+54034056,25774126,3
+1591728,25774126,3
+75903225,25774126,5
+83480928,25774126,5
+3924135,25774126,4
+LadySandra,25774126,5
+35200825,25774126,4
+66388538,25774126,3
+37751161,25774126,5
+52925540,25774126,4
+50930270,25774126,4
+lynnesay,25774126,4
+lyy19,25774126,5
+yystudyinusa,25774126,4
+gongqiong,25774126,3
+64244965,25774126,3
+ciaoxu,25774126,4
+fio3,25774126,-1
+ganlu58,25774126,5
+75007342,25774126,3
+79113610,25774126,5
+cumming,25774126,4
+4533857,25774126,5
+64024465,25774126,4
+58836557,25774126,5
+49938011,25774126,3
+75859524,25774126,4
+84741817,25774126,4
+soyore,25774126,4
+xiaohundaban,25774126,4
+53339781,25774126,3
+2444385,25774126,5
+niute,25774126,5
+sirluoji,25774126,3
+35363595,25774126,5
+71416831,25774126,-1
+TiramisuPig,25774126,3
+kissyoutonight,25774126,4
+85811535,25774126,3
+113327866,25774126,4
+84374264,25774126,4
+checy,25774126,4
+88323753,25774126,4
+63622302,25774126,3
+fusyel,25774126,3
+55324515,25774126,4
+ivy_xu1992,25774126,5
+Ada_quan,25774126,-1
+73983729,25774126,4
+87821672,25774126,4
+72902533,25774126,4
+49443898,25774126,4
+DODOwoo,25774126,4
+65550387,25774126,5
+48849197,25774126,5
+MaxxaM,25774126,5
+pershingsay,25774126,4
+73467942,25774126,4
+67624149,25774126,4
+135279955,25774126,4
+54606258,25774126,-1
+42368147,25774126,3
+51437308,25774126,5
+56103306,25774126,2
+47594544,25774126,5
+4590078,25774126,3
+4161339,25774126,4
+jiroleng,25774126,4
+59038571,25774126,4
+45080512,25774126,4
+60743609,25774126,5
+1274732,25774126,4
+3030378,25774126,4
+22056950,25774126,3
+83143884,25774126,3
+yuianna,25774126,3
+caoyingqian,25774126,5
+jingmeng_xiahti,25774126,3
+zita07,25774126,4
+62798977,25774126,4
+chav.H,25774126,4
+2472202,25774126,4
+44326808,25774126,5
+duzhouchi,25774126,3
+absinthejt,25774126,4
+xulu_films,25774126,5
+dreamingday,25774126,5
+51901085,25774126,-1
+72391986,25774126,3
+yiritang,25774126,5
+mystory0310,25774126,4
+62942210,25774126,5
+61023044,25774126,3
+unicornm,25774126,4
+60002715,25774126,3
+strawman81,25774126,3
+wen1028,25774126,-1
+s5ven,25774126,4
+80619112,25774126,4
+75723338,25774126,1
+dustblue,25774126,4
+42927229,25774126,5
+52117580,25774126,5
+62880445,25774126,3
+yellowjanet,25774126,5
+125760534,25774126,4
+gf199220,25774126,4
+Scullyzfq,25774126,4
+Davidcyclone,25774126,-1
+56399267,25774126,3
+36872538,25774126,4
+S.lakeheart,25774126,5
+60088640,25774126,3
+51572438,25774126,3
+Sheeplady,25774126,5
+52372728,25774126,4
+2858394,25774126,5
+72302391,25774126,4
+126980247,25774126,4
+53441725,25774126,4
+80430212,25774126,4
+60817087,25774126,5
+KristenL,25774126,4
+luweiyan2012,25774126,4
+120322125,25774126,4
+dulllennon,25774126,5
+29469362,25774126,4
+54516667,25774126,4
+imcybill,25774126,4
+48875745,25774126,3
+Aki.loves.rock,25774126,4
+littleumbrella,25774126,4
+EddieCurre,25774126,4
+58886429,25774126,4
+42303791,25774126,4
+72993383,25774126,5
+49893438,25774126,4
+53826965,25774126,5
+folkasqueer,25774126,3
+xuanyushuo,25774126,3
+auvauva,25774126,1
+qsb1985,25774126,5
+123061684,25774126,3
+miraclegd,25774126,4
+66595969,25774126,4
+69350997,25774126,4
+80634044,25774126,5
+91469568,25774126,5
+67387298,25774126,4
+31634567,25774126,5
+37546445,25774126,5
+43627922,25774126,4
+63658067,25774126,4
+41351821,25774126,4
+51467868,25774126,4
+51261323,25774126,5
+nevertry,25774126,4
+81411880,25774126,5
+bell-wind,25774126,5
+32433633,25774126,3
+2231082,25774126,-1
+3498872,25774126,4
+45404676,25774126,5
+rodinian,25774126,4
+54593455,25774126,5
+bainiqiu,25774126,-1
+3370692,25774126,3
+74346817,25774126,3
+anniebridge,25774126,5
+shane_sha,25774126,4
+dujiachen,25774126,4
+kimling,25774126,5
+63850885,25774126,5
+79855798,25774126,1
+pal1,25774126,5
+am2.5,25774126,3
+45008619,25774126,3
+85454895,25774126,4
+41839110,25774126,3
+4353001,25774126,4
+xdcheung,25774126,4
+129270644,25774126,4
+95621225,25774126,4
+102983230,25774126,5
+59149801,25774126,3
+waynegong43,25774126,5
+78602944,25774126,4
+49269799,25774126,5
+121033172,25774126,4
+aimee.mo,25774126,4
+81404706,25774126,3
+49662983,25774126,3
+Mszombie,25774126,5
+83571302,25774126,5
+dinosaw,25774126,5
+justwildchild,25774126,4
+earlyzaozao,25774126,4
+Minimalis,25774126,3
+evanye,25774126,4
+59078607,25774126,5
+49848992,25774126,4
+cookiesun0420,25774126,4
+queen70,25774126,4
+103793768,25774126,4
+dr_new,25774126,4
+62715368,25774126,5
+stanza,25774126,5
+56198749,25774126,4
+43176264,25774126,5
+41765725,25774126,4
+71224941,25774126,4
+89399541,25774126,4
+49322971,25774126,5
+farewel,25774126,4
+134434591,25774126,3
+20657820,25774126,5
+41991102,25774126,5
+127606527,25774126,4
+35323082,25774126,5
+aTeeksI,25774126,4
+45370906,25774126,4
+120008046,25774126,3
+55641594,25774126,3
+cloverllx,25774126,2
+Kishimoto,25774126,3
+78638741,25774126,4
+55506429,25774126,-1
+magere,25774126,4
+sunny_i,25774126,5
+81850559,25774126,3
+sharonsama,25774126,3
+116856151,25774126,4
+von71224,25774126,5
+sangou,25774126,3
+newbear,25774126,4
+shanelean,25774126,4
+yeeeeeee,25774126,4
+ji3206,25774126,3
+inearlysummer,25774126,4
+1786605,25774126,3
+phonexu,25774126,4
+czj950615,25774126,4
+44542197,25774126,2
+36128756,25774126,-1
+parala,25774126,4
+cicihappy,25774126,3
+57754572,25774126,5
+shadowfoxxuan,25774126,3
+62478487,25774126,3
+3571623,25774126,5
+75235038,25774126,3
+1282175,25774126,-1
+44542969,25774126,5
+bluepride,25774126,4
+40272500,25774126,4
+62644947,25774126,4
+26503826,25774126,4
+amphy,25774126,-1
+6303192,25774126,2
+63349480,25774126,5
+evergreenxxx,25774126,-1
+zhangyired,25774126,4
+49122242,25774126,4
+2538567,25774126,4
+QQQN,25774126,4
+49636760,25774126,-1
+77267201,25774126,-1
+MissBao,25774126,4
+liansiqi0047,25774126,2
+bter,25774126,5
+45804814,25774126,3
+Neverever.D,25774126,4
+52032404,25774126,4
+62455742,25774126,4
+92348000,25774126,3
+37488201,25774126,-1
+51197070,25774126,4
+132171936,25774126,4
+KinoEric,25774126,5
+60038380,25774126,4
+89045639,25774126,4
+13569936,25774126,4
+42360628,25774126,3
+62532021,25774126,4
+36617894,25774126,3
+46497522,25774126,5
+65590168,25774126,3
+67763944,25774126,2
+49141262,25774126,4
+67712807,25774126,5
+ZotterElaine,25774126,4
+59704797,25774126,3
+58810915,25774126,-1
+HeyAriel,25774126,4
+31755732,25774126,5
+34597621,25774126,-1
+49156187,25774126,-1
+iwei,25774126,3
+oathkeeper,25774126,5
+41083928,25774126,4
+34411968,25774126,3
+70627079,25774126,3
+59556078,25774126,4
+yangqiaohe,25774126,4
+3089529,25774126,4
+37160658,25774126,4
+83974267,25774126,4
+61058075,25774126,3
+fuzyu,25774126,4
+kuangfang,25774126,5
+61624373,25774126,5
+57259895,25774126,3
+47297203,25774126,-1
+65269166,25774126,2
+2030100,25774126,4
+46038574,25774126,4
+vitus,25774126,-1
+134203219,25774126,4
+4841197,25774126,-1
+1898022,25774126,4
+maryshirley,25774126,-1
+2036063,25774126,-1
+103214078,25774126,4
+61497577,25774126,4
+57195945,25774126,5
+foleyfan,25774126,3
+17483782,25774126,3
+snowmeg,25774126,4
+bamboonie,25774126,5
+63506712,25774126,3
+33977432,25774126,3
+76467871,25774126,3
+87909103,25774126,4
+40853957,25774126,3
+26545118,25774126,4
+57910521,25774126,4
+66716197,25774126,3
+pariseros,25774126,5
+50566408,25774126,3
+96514775,25774126,4
+47897617,25774126,3
+49748838,25774126,4
+athenasaga,25774126,4
+2978891,25774126,4
+52098312,25774126,4
+51061132,25774126,5
+ruo1996,25774126,4
+48808520,25774126,3
+yalindongdong,25774126,2
+63874245,25774126,5
+shouwang-,25774126,4
+2890229,25774126,5
+48046895,25774126,4
+58070874,25774126,4
+3648785,25774126,4
+miucather,25774126,5
+63080276,25774126,4
+moneylatem,25774126,3
+97057870,25774126,4
+VelvetInWater,25774126,4
+3712644,25774126,5
+yededi8821,25774126,4
+39220692,25774126,4
+sherayang,25774126,4
+mojianbo,25774126,4
+53132648,25774126,3
+deppdeep,25774126,5
+ofish0,25774126,2
+sissistar,25774126,3
+raising_dawn,25774126,3
+82993767,25774126,5
+55575289,25774126,3
+catvoldemort,25774126,4
+13766549,25774126,5
+xinxinbaby,25774126,3
+117235320,25774126,3
+51329457,25774126,5
+52775910,25774126,3
+pillbug,25774126,3
+2187326,25774126,3
+u-know17,25774126,4
+blan,25774126,-1
+60140602,25774126,4
+BlueMoonshine,25774126,3
+103452314,25774126,3
+yomaybe,25774126,4
+3126509,25774126,4
+53791984,25774126,2
+51472613,25774126,3
+84722461,25774126,5
+49711912,25774126,3
+52910504,25774126,4
+45536018,25774126,3
+lmx1220,25774126,5
+74959611,25774126,4
+62905553,25774126,5
+xiaomao,25774126,3
+45344133,25774126,5
+mrsrost,25774126,4
+4808362,25774126,4
+26441091,25774126,5
+65132102,25774126,4
+59621398,25774126,5
+qiQ,25774126,3
+37897776,25774126,4
+53637766,25774126,4
+fumihiko1985,25774126,3
+37216410,25774126,3
+43001468,25774126,4
+52951268,25774126,4
+49048693,25774126,4
+4325552,25774126,4
+132592664,25774126,4
+35409946,25774126,4
+43554408,25774126,5
+56242403,25774126,5
+xiaoranlee,25774126,4
+36458457,25774126,3
+jessisy,25774126,4
+youwanttobe,25774126,3
+4324772,25774126,4
+78728562,25774126,5
+F1vese7enone,25774126,3
+kiki204629,25774126,4
+53894863,25774126,4
+49891610,25774126,2
+oakhui,25774126,4
+59742158,25774126,4
+57936671,25774126,5
+54342307,25774126,3
+Sigrid_Lu,25774126,4
+79841047,25774126,3
+45784298,25774126,4
+gransong,25774126,5
+131108295,25774126,4
+4481826,25774126,4
+houicetint,25774126,4
+43532322,25774126,4
+57611209,25774126,5
+2829825,25774126,4
+chuleiwu,25774126,4
+62999603,25774126,5
+52445513,25774126,4
+jimmikowk,25774126,5
+59129484,25774126,4
+52345284,25774126,3
+36008103,25774126,5
+122605310,25774126,3
+55833200,25774126,4
+nvmotou,25774126,4
+3535148,25774126,5
+61375666,25774126,1
+90338227,25774126,5
+saosaoxy,25774126,4
+93180377,25774126,2
+gossipygirl,25774126,4
+justsoso80s,25774126,4
+serein27,25774126,4
+29562487,25774126,3
+Nenya,25774126,4
+40069561,25774126,5
+rosiness,25774126,3
+parkxiahky,25774126,4
+70124708,25774126,4
+Ice-Rhine,25774126,5
+matt33,25774126,4
+57036451,25774126,5
+yyuan9372,25774126,3
+LeePuiyee,25774126,5
+63659583,25774126,5
+2126869,25774126,4
+YuRAY,25774126,4
+aihepin,25774126,4
+2189984,25774126,4
+Pincent,25774126,4
+ffantuan,25774126,4
+135200076,25774126,3
+daheiluozi,25774126,4
+karita,25774126,5
+jewelshao,25774126,4
+88080225,25774126,4
+60027417,25774126,3
+aquapanda,25774126,3
+bearwang,25774126,3
+yubaozilee,25774126,4
+farawayfromhome,25774126,3
+cappuccino-jl,25774126,3
+56136845,25774126,3
+65813989,25774126,3
+34245713,25774126,4
+CookieCrumbler,25774126,3
+64506925,25774126,5
+63734545,25774126,5
+AmadHatter,25774126,4
+53592125,25774126,3
+130954450,25774126,4
+shenliyang,25774126,4
+winnie0212,25774126,5
+68160177,25774126,4
+71278523,25774126,5
+therecomy,25774126,4
+2092765,25774126,3
+linchuzhuang,25774126,3
+Yanna_z,25774126,5
+88263300,25774126,4
+piecelost,25774126,5
+62877248,25774126,3
+adelineadele,25774126,4
+woxiaoting,25774126,4
+48770075,25774126,4
+72745150,25774126,4
+62139918,25774126,4
+73112329,25774126,4
+HL0919,25774126,4
+xiaoqianquan,25774126,4
+51777314,25774126,4
+74753192,25774126,4
+iSaw11021,25774126,5
+3988346,25774126,4
+114306739,25774126,-1
+y_solo,25774126,4
+Schwarzwaelder,25774126,3
+46968893,25774126,4
+119829181,25774126,4
+Seeos,25774126,4
+1736671,25774126,4
+51638198,25774126,3
+49364738,25774126,3
+41017931,25774126,5
+ejw,25774126,3
+82629572,25774126,4
+75756405,25774126,4
+lolypop,25774126,5
+49870932,25774126,4
+jamfever,25774126,4
+1920062,25774126,4
+36654308,25774126,3
+1344334,25774126,4
+modrikie,25774126,-1
+astroangel,25774126,3
+georgebobochina,25774126,5
+49060712,25774126,4
+44486984,25774126,3
+2374657,25774126,3
+72980376,25774126,3
+68760385,25774126,5
+candyrice,25774126,4
+candyrice,25774126,4
+49806360,25774126,4
+36189380,25774126,4
+timeassassin,25774126,-1
+4099053,25774126,5
+lidickaka,25774126,4
+3772330,25774126,4
+joephie,25774126,-1
+51833254,25774126,4
+pii3you,25774126,5
+43500933,25774126,4
+dakotazheng,25774126,4
+46692098,25774126,4
+54049800,25774126,4
+26713841,25774126,4
+59623092,25774126,4
+yabatoo,25774126,5
+EmayI,25774126,4
+47319771,25774126,4
+clipclap7,25774126,4
+53602254,25774126,4
+42540527,25774126,4
+zhaoxiaoya,25774126,5
+80598638,25774126,3
+sheldonkao,25774126,2
+49228448,25774126,4
+ALTNATIONAL,25774126,5
+106663926,25774126,4
+50256249,25774126,4
+jinweishen,25774126,5
+fansherlocked,25774126,4
+88385461,25774126,4
+1151029,25774126,-1
+130270800,25774126,3
+xc-cindy,25774126,4
+lannan,25774126,5
+1073807,25774126,3
+foxzy5,25774126,-1
+79284978,25774126,4
+wlgq,25774126,4
+89082243,25774126,5
+Heyimwalker,25774126,4
+dawn1n,25774126,5
+32911120,25774126,4
+PCvarment,25774126,4
+amber0517,25774126,5
+52214552,25774126,3
+126828053,25774126,4
+63523258,25774126,5
+annie_0414,25774126,5
+celestetang,25774126,4
+jelly12,25774126,5
+alicewithoutyou,25774126,4
+78529584,25774126,5
+xita,25774126,5
+126804729,25774126,3
+zolene,25774126,5
+lotusz23,25774126,4
+134797075,25774126,4
+alan_fanfan,25774126,4
+brainlesscong,25774126,5
+RemyAnderson,25774126,3
+riceseedling,25774126,3
+2822373,25774126,-1
+131005970,25774126,4
+54107765,25774126,4
+43440527,25774126,5
+89852120,25774126,3
+1548405,25774126,4
+44398126,25774126,4
+silent_island,25774126,4
+33354158,25774126,4
+63676625,25774126,3
+32791958,25774126,5
+temmmpmm,25774126,5
+55850316,25774126,5
+zwbhappy,25774126,5
+3826169,25774126,4
+45650024,25774126,4
+jluy,25774126,3
+tessss,25774126,5
+3053426,25774126,4
+43662496,25774126,4
+35288599,25774126,5
+jiajunzhi,25774126,4
+alei7774,25774126,4
+23826317,25774126,4
+58369836,25774126,5
+65274866,25774126,4
+3674593,25774126,5
+liong,25774126,4
+fallenshaman,25774126,4
+81244293,25774126,4
+cuikunjia,25774126,-1
+30218761,25774126,4
+58701318,25774126,4
+84231515,25774126,5
+102885531,25774126,3
+aaaaaaalice,25774126,4
+syuee,25774126,3
+48118281,25774126,4
+btone0808,25774126,4
+merengue,25774126,4
+withtea,25774126,5
+xianxianchen,25774126,5
+C443658,25774126,5
+70284743,25774126,4
+xuqianxun,25774126,4
+64051414,25774126,4
+49269031,25774126,4
+68420280,25774126,4
+autumndream,25774126,4
+abin520918,25774126,4
+jessieron,25774126,5
+50900048,25774126,3
+65366516,25774126,5
+BethBubbly,25774126,3
+1381065,25774126,3
+visualhyde,25774126,3
+freddy_xu,25774126,4
+Curry_Egg,25774126,4
+theaxell,25774126,3
+50648101,25774126,5
+87651171,25774126,3
+raquelycidas,25774126,4
+81249317,25774126,3
+futurama,25774126,4
+emome,25774126,4
+l_panda,25774126,4
+4340710,25774126,4
+44191956,25774126,3
+51564570,25774126,4
+44844360,25774126,5
+63422177,25774126,4
+lifehere,25774126,3
+48787128,25774126,5
+liujing214,25774126,5
+superlawind,25774126,4
+ann-in-april,25774126,4
+69209559,25774126,4
+45617960,25774126,3
+3607173,25774126,3
+6023961,25774126,3
+greensylviaq,25774126,4
+kekeximi,25774126,-1
+48798073,25774126,4
+xxzy93,25774126,4
+lareida,25774126,4
+rebecca_ala,25774126,5
+sunflowerqi,25774126,3
+35066546,25774126,4
+28608533,25774126,4
+65086870,25774126,1
+agenta,25774126,4
+60382121,25774126,-1
+lea_x,25774126,3
+62708823,25774126,3
+48198502,25774126,4
+8312118,25774126,4
+will_u,25774126,3
+53696796,25774126,5
+43602749,25774126,-1
+babylon14,25774126,5
+skye1110,25774126,-1
+sinbone,25774126,3
+msjoyce,25774126,3
+bigbigrain,25774126,5
+liuanan0606,25774126,4
+moyayi,25774126,5
+dadou417,25774126,3
+75405959,25774126,4
+48763298,25774126,3
+yaquapril,25774126,-1
+hasuki523,25774126,5
+brew,25774126,4
+Hanndiex_,25774126,5
+cherryhj,25774126,4
+4118306,25774126,5
+Zoey423,25774126,4
+shadow_morie,25774126,4
+cici115,25774126,5
+51004773,25774126,4
+ohghost,25774126,4
+moneybear,25774126,5
+thehours,25774126,3
+35336788,25774126,5
+an_girl,25774126,4
+2248658,25774126,2
+46718731,25774126,5
+didijia,25774126,5
+some_Ji,25774126,4
+3741660,25774126,4
+xinziai,25774126,4
+54994533,25774126,4
+hansongtao,25774126,4
+raindawn,25774126,5
+59774628,25774126,5
+brandnewstart,25774126,4
+Nathancai,25774126,5
+letu,25774126,3
+JoshLee525,25774126,4
+64972660,25774126,4
+3540441,25774126,4
+52705401,25774126,4
+ele30tin,25774126,3
+64110534,25774126,4
+32267845,25774126,4
+whowho2008,25774126,5
+siemielu,25774126,3
+47537834,25774126,4
+alvie,25774126,5
+60237257,25774126,5
+MOVIE--KO,25774126,3
+narcissus_iris,25774126,4
+64182878,25774126,4
+xiubei,25774126,4
+hanxiao3580,25774126,5
+136130151,25774126,4
+wdouble,25774126,3
+sumiki,25774126,3
+125630908,25774126,3
+mattni,25774126,4
+1781929,25774126,5
+orange450046,25774126,-1
+87637608,25774126,5
+fuloli,25774126,5
+67903984,25774126,5
+swell1019,25774126,4
+4522191,25774126,4
+54087603,25774126,5
+47065864,25774126,3
+hou_yuting,25774126,4
+121807969,25774126,4
+52852194,25774126,3
+56917736,25774126,3
+lingdongling,25774126,3
+2592170,25774126,3
+2056209,25774126,3
+liujinguang,25774126,3
+66632216,25774126,4
+82881790,26304167,5
+56435930,26304167,4
+77848216,26304167,4
+caspiandc,26304167,3
+73530411,26304167,4
+135450878,26304167,5
+1943610,26304167,5
+60760225,26304167,3
+tequila7,26304167,5
+134516953,26304167,3
+135141557,26304167,4
+yagamigenko,26304167,4
+wangzhy,26304167,4
+dropofmilk,26304167,3
+53426437,26304167,4
+69683080,26304167,5
+chenhuayang,26304167,4
+troublemakerjoy,26304167,4
+73958470,26304167,4
+49229485,26304167,4
+vivichris,26304167,4
+50363542,26304167,5
+4458767,26304167,4
+123000223,26304167,5
+killastrawberry,26304167,4
+137244496,26304167,4
+119699596,26304167,5
+95968737,26304167,4
+83152126,26304167,5
+kezhenxing,26304167,4
+suxiaoqian007,26304167,5
+36092326,26304167,3
+45278107,26304167,4
+41990953,26304167,-1
+Alistair910629,26304167,4
+aki0726,26304167,3
+98665982,26304167,5
+69733513,26304167,2
+78795036,26304167,4
+princess921129,26304167,4
+98524765,26304167,5
+47037959,26304167,4
+asoloman,26304167,4
+37853313,26304167,4
+49322971,26304167,5
+redjar,26304167,5
+42794283,26304167,-1
+134581502,26304167,4
+edward2wong,26304167,4
+137522268,26304167,2
+Swing105,26304167,4
+83639322,26304167,4
+54983933,26304167,2
+2171370,26304167,5
+nicos,26304167,4
+mayliyife,26304167,4
+50831360,26304167,5
+nolike,26304167,5
+48090771,26304167,3
+121925373,26304167,4
+16460262,26304167,4
+100083138,26304167,4
+134648175,26304167,4
+62504399,26304167,4
+bearhao1976,26304167,5
+98956225,26304167,3
+36854196,26304167,4
+nyteen,26304167,4
+anliye,26304167,3
+69439267,26304167,4
+50599005,26304167,4
+60925165,26304167,-1
+huangxiaoxie,26304167,3
+81962971,26304167,5
+68521104,26304167,4
+122932689,26304167,4
+123111535,26304167,4
+princessfrog,26304167,5
+125827809,26304167,3
+poisonbengbeng,26304167,5
+47874303,26304167,4
+66904285,26304167,4
+59127988,26304167,5
+cherubickid,26304167,5
+137129598,26304167,5
+6972638,26304167,4
+133533083,26304167,3
+96388706,26304167,3
+fanyiwen,26304167,4
+bearvivienne,26304167,4
+jolyne,26304167,4
+50882578,26304167,2
+magnihew,26304167,-1
+35360651,26304167,4
+58106727,26304167,4
+95686183,26304167,4
+yushu25,26304167,4
+79559178,26304167,4
+74103020,26304167,3
+suiffeng0504,26304167,3
+33528664,26304167,4
+38146297,26304167,4
+lithiumworld,26304167,4
+137305184,26304167,4
+johndoex,26304167,4
+60002715,26304167,3
+78656769,26304167,5
+55660651,26304167,4
+67590523,26304167,5
+122933129,26304167,4
+69232328,26304167,5
+4918742,26304167,5
+54618575,26304167,-1
+129964938,26304167,4
+122944258,26304167,4
+130445057,26304167,4
+qianqian0504,26304167,4
+90097591,26304167,1
+57431057,26304167,4
+L5.P4,26304167,5
+62705311,26304167,3
+61496311,26304167,3
+post-rocker,26304167,5
+130944083,26304167,3
+17906829,26304167,3
+131020888,26304167,3
+137058497,26304167,3
+137058479,26304167,3
+103584497,26304167,4
+134625303,26304167,4
+58888075,26304167,5
+67936265,26304167,-1
+44183342,26304167,4
+97693514,26304167,3
+131987227,26304167,5
+on1ooker,26304167,3
+130952703,26304167,4
+114435379,26304167,3
+lingdongling,26304167,3
+130563496,26304167,4
+123404476,26304167,3
+75812054,26304167,4
+3845314,26304167,4
+77350146,26304167,4
+55287270,26304167,5
+49384394,26304167,4
+55379993,26304167,4
+137073841,26304167,4
+137076197,26304167,4
+134417369,26304167,4
+68630108,26304167,3
+81152446,26304167,4
+dalychau,26304167,4
+Jasmine7,26304167,5
+y19940504,26304167,5
+122868077,26304167,4
+55934911,26304167,4
+65178670,26304167,4
+80923059,26304167,3
+eznf,26304167,5
+LeeMar,26304167,3
+69807491,26304167,4
+xiaohundaban,26304167,1
+72405316,26304167,4
+lazzaro,26304167,4
+teaudio,26304167,5
+WSSWHL,26304167,3
+4453892,26304167,-1
+128063403,26304167,3
+61712114,26304167,4
+131921881,26304167,4
+32650866,26304167,5
+89313005,26304167,4
+108285360,26304167,4
+Zazai,26304167,-1
+1285158,26304167,5
+83255201,26304167,4
+48062280,26304167,4
+2913672,26304167,4
+Suixinsin,26304167,5
+81102769,26304167,4
+xiaoshuogege,26304167,4
+3478406,26304167,5
+53301589,26304167,4
+antee,26304167,4
+52810889,26304167,5
+1478783,26304167,4
+59993815,26304167,5
+1233038,26304167,4
+77607736,26304167,4
+67727072,26304167,5
+120480108,26304167,5
+84652846,26304167,5
+zooyam,26304167,4
+41532813,26304167,3
+HYGUY,26304167,4
+135694361,26304167,4
+moca87,26304167,5
+dusk.xiyang,26304167,5
+42832142,26304167,5
+83932735,26304167,4
+1386491,26304167,5
+110350879,26304167,5
+70586246,26304167,3
+73627812,26304167,4
+92377736,26304167,4
+idontcarebitch,26304167,4
+40138524,26304167,4
+sebie,26304167,4
+74123608,26304167,-1
+czj950615,26304167,3
+66361908,26304167,4
+117808839,26304167,4
+64783002,26304167,5
+106347535,26304167,4
+1068125,26304167,3
+72122656,26304167,4
+7510013,26304167,3
+78681976,26304167,3
+chiyouchiyou,26304167,4
+53477033,26304167,3
+4534037,26304167,4
+yeyidao,26304167,5
+41289155,26304167,4
+119584946,26304167,5
+72086305,26304167,4
+122838666,26304167,5
+62382255,26304167,4
+cchocolate,26304167,5
+51073562,26304167,5
+50028709,26304167,4
+68366606,26304167,4
+73160841,26304167,5
+4345264,26304167,4
+xianxianren,26304167,2
+58290785,26304167,5
+51976149,26304167,5
+67388709,26304167,4
+121920760,26304167,4
+69386924,26304167,5
+69386924,26304167,5
+miaotuanzi,26304167,4
+115819915,26304167,5
+65590938,26304167,4
+69144642,26304167,4
+2872117,26304167,4
+flxjp,26304167,3
+94392595,26304167,5
+jiangxv7,26304167,5
+135128946,26304167,4
+1840916,26304167,4
+83975163,26304167,3
+happyxiaozhu,26304167,5
+dyq930211,26304167,4
+65309880,26304167,-1
+49319979,26304167,2
+87821425,26304167,4
+48972391,26304167,4
+65800533,26304167,5
+iammushroomyy,26304167,4
+15098138,26304167,3
+36664361,26304167,4
+susimai,26304167,3
+1114835,26304167,2
+66552525,26304167,4
+61351953,26304167,4
+64740791,26304167,5
+3799579,26304167,4
+antoniochen,26304167,5
+58708135,26304167,3
+3439248,26304167,4
+ritaisdead,26304167,4
+94394247,26304167,3
+49983823,26304167,4
+50887745,26304167,5
+79855798,26304167,3
+45890616,26304167,4
+2791045,26304167,2
+59556482,26304167,4
+SpringCai,26304167,4
+58414355,26304167,4
+59901599,26304167,4
+45291333,26304167,3
+52344759,26304167,3
+papaduty,26304167,3
+48119351,26304167,5
+83387941,26304167,4
+yscysc803,26304167,4
+CharlesChou,26304167,5
+yanshengjie,26304167,5
+Ston3s,26304167,4
+41130036,26304167,3
+66993627,26304167,4
+49272886,26304167,3
+129577459,26304167,3
+1363336,26304167,4
+lingrui1995,26304167,3
+91504508,26304167,4
+suck-man,26304167,4
+lampard,26304167,5
+lampard,26304167,5
+23961800,26304167,4
+yunknap,26304167,3
+sannqi,26304167,4
+53485894,26304167,5
+134519801,26304167,3
+51622953,26304167,4
+wtyaak,26304167,5
+vexit,26304167,-1
+2265138,26304167,5
+45242330,26304167,4
+ys1013,26304167,3
+53162024,26304167,3
+53624567,26304167,4
+40027917,26304167,3
+COCOCOQUEEN,26304167,3
+131749198,26304167,4
+formeswong,26304167,5
+66805335,26304167,4
+63730928,26304167,3
+63730928,26304167,3
+79284978,26304167,4
+51833331,26304167,3
+3529035,26304167,-1
+80797429,26304167,4
+mnp,26304167,3
+79551282,26304167,5
+2309490,26304167,2
+87208531,26304167,4
+wxmxy,26304167,5
+wanpunleo,26304167,5
+leeyo,26304167,4
+AuRevoir7,26304167,4
+53396330,26304167,4
+51100692,26304167,5
+67456366,26304167,4
+lokaven,26304167,5
+n1ev,26304167,4
+lefrais,26304167,3
+43886305,26304167,4
+meowarrier,26304167,5
+1401916,26304167,5
+doorsmg,26304167,4
+51496241,26304167,5
+62279024,26304167,5
+magic1029,26304167,4
+2228009,26304167,3
+feelingowen,26304167,3
+60650660,26304167,5
+59217273,26304167,4
+lukaka,26304167,3
+70409335,26304167,4
+51606142,26304167,3
+lamber,26304167,2
+73064038,26304167,4
+63531003,26304167,2
+67967186,26304167,5
+besupposedto,26304167,1
+103441649,26304167,4
+xiongkaihang,26304167,3
+toboany,26304167,4
+50769743,26304167,3
+51297351,26304167,3
+1557359,26304167,2
+4242859,26304167,3
+54814792,26304167,4
+89723194,26304167,5
+superlionisme,26304167,4
+47096545,26304167,4
+4590078,26304167,4
+73959584,26304167,4
+67689487,26304167,3
+moyayi,26304167,5
+58774315,26304167,3
+70781768,26304167,-1
+59141141,26304167,5
+ciaoxu,26304167,5
+53329015,26304167,4
+95929567,26304167,3
+63969160,26304167,-1
+63969160,26304167,-1
+loidi,26304167,4
+4070774,26304167,5
+61260966,26304167,4
+35421582,26304167,3
+53512949,26304167,4
+91604108,26304167,4
+77092352,26304167,4
+49595588,26304167,2
+chieng,26304167,4
+65011068,26304167,1
+65369148,26304167,4
+85055779,26304167,3
+4247034,26304167,5
+81628425,26304167,3
+realin2,26304167,3
+fansherlocked,26304167,3
+xuyinaxxxxxxx,26304167,4
+37751161,26304167,5
+72156503,26304167,4
+luyang21,26304167,5
+61014893,26304167,3
+125569953,26304167,4
+65366516,26304167,4
+51767448,26304167,5
+clockrabbit,26304167,3
+1945427,26304167,5
+aspir1n13,26304167,5
+46754344,26304167,5
+lexhappy,26304167,5
+nanhualyq,26304167,5
+69095425,26304167,4
+linyoung,26304167,4
+126183742,26304167,4
+braxin2007,26304167,2
+25740506,26304167,4
+ayuyz,26304167,5
+4882025,26304167,4
+67952037,26304167,3
+cyrus_wong,26304167,5
+4555430,26304167,4
+saosaoxy,26304167,3
+hegelian,26304167,5
+13129748,26304167,5
+xzyzsk7,26304167,4
+Aimovie,26304167,-1
+haji,26304167,4
+dyalan,26304167,4
+winglet,26304167,3
+44486984,26304167,3
+54522492,26304167,4
+wangjia0702,26304167,4
+sxy921026,26304167,4
+66720016,26304167,5
+49026093,26304167,5
+50835991,26304167,3
+41629334,26304167,4
+59228070,26304167,3
+syncop,26304167,4
+3547067,26304167,2
+3588917,26304167,4
+60854968,26304167,5
+61679358,26304167,4
+89451365,26304167,4
+l592864429,26304167,4
+YTlieb,26304167,4
+46712687,26304167,5
+bobo32,26304167,5
+62414180,26304167,5
+78925849,26304167,3
+54201191,26304167,5
+yeslie,26304167,4
+102077432,26304167,4
+45840642,26304167,3
+120194903,26304167,5
+72391986,26304167,5
+akward,26304167,5
+68490361,26304167,5
+idreammrs,26304167,4
+71929336,26304167,5
+47193126,26304167,4
+2822373,26304167,-1
+47336684,26304167,3
+shiyuedeshishe,26304167,4
+lzzzzzfbee,26304167,4
+83140683,26304167,4
+70034039,26304167,3
+63093559,26304167,5
+46256555,26304167,4
+53269895,26304167,4
+3513677,26304167,4
+lephemera,26304167,4
+chabaochabao,26304167,3
+1159296,26304167,4
+48542981,26304167,3
+doexist,26304167,4
+52033080,26304167,4
+maohei,26304167,3
+39945204,26304167,4
+sooooosweet,26304167,5
+sooooosweet,26304167,5
+YH222,26304167,4
+2598729,26304167,5
+zuoshoudezuo,26304167,5
+74942804,26304167,5
+119487629,26304167,5
+86253613,26304167,4
+kiki204629,26304167,4
+132483862,26304167,4
+123688744,26304167,5
+carrieluo,26304167,5
+78529584,26304167,4
+84093369,26304167,5
+60343252,26304167,4
+59714184,26304167,4
+60752874,26304167,4
+3534752,26304167,5
+zhuzi_33,26304167,5
+3657702,26304167,4
+127128928,26304167,5
+2049622,26304167,3
+61845850,26304167,4
+ballteda,26304167,3
+3741660,26304167,4
+54756616,26304167,5
+fanfouxiong,26304167,4
+70487817,26304167,3
+60818367,26304167,4
+veverlee,26304167,4
+46920813,26304167,4
+40737758,26304167,3
+44709496,26304167,5
+Vantt,26304167,4
+67681966,26304167,3
+planoto,26304167,3
+2174443,26304167,5
+83411204,26304167,4
+6332449,26304167,3
+59556078,26304167,4
+kejinlong,26304167,3
+2429292,26304167,5
+MrMia,26304167,4
+47508310,26304167,4
+3006805,26304167,4
+71561935,26304167,4
+48037281,26304167,-1
+71961235,26304167,3
+woobaby,26304167,3
+1892627,26304167,4
+80193020,26304167,5
+64880714,26304167,3
+2238966,26304167,4
+1357759,26304167,4
+68261410,26304167,4
+57466918,26304167,-1
+eason0210,26304167,4
+56755911,26304167,4
+133728824,26304167,4
+75756405,26304167,4
+55677796,26304167,3
+79221846,26304167,4
+55842990,26304167,4
+51658550,26304167,4
+77361040,26304167,5
+3977584,26304167,4
+2125195,26304167,4
+99316153,26304167,4
+71108776,26304167,4
+yulingshenyue,26304167,4
+slimseven,26304167,5
+43285924,26304167,4
+44436573,26304167,3
+littleshy,26304167,3
+zl99,26304167,3
+rudygiraffe,26304167,3
+loyjve,26304167,4
+89852120,26304167,4
+53935985,26304167,4
+eiji218837,26304167,4
+49073345,26304167,3
+2040298,26304167,4
+81752466,26304167,4
+58520151,26304167,3
+juwujian,26304167,4
+cimuhu,26304167,-1
+susan-no-home,26304167,4
+62036853,26304167,4
+Heyimwalker,26304167,4
+standbyyou,26304167,5
+houlizhao,26304167,5
+vivifyvivi,26304167,3
+97917605,26304167,4
+73690610,26304167,5
+67843912,26304167,4
+joyworld,26304167,5
+L2X12221120,26304167,5
+64076320,26304167,4
+woshiex,26304167,4
+1806463,26304167,3
+lingkong911,26304167,3
+67297999,26304167,5
+yol0321,26304167,5
+122605310,26304167,3
+tsoo416,26304167,4
+81385890,26304167,5
+nangle,26304167,3
+57580969,26304167,4
+lv_shuang,26304167,3
+49662983,26304167,5
+43239303,26304167,5
+44391272,26304167,5
+snowlydouban,26304167,5
+2975459,26304167,4
+49417223,26304167,4
+127905303,26304167,4
+xiamudemao,26304167,4
+83202177,26304167,3
+mml3774,26304167,5
+50403801,26304167,4
+68855550,26304167,4
+fastkill,26304167,4
+56602541,26304167,4
+sandorsansa,26304167,5
+baoshumin,26304167,4
+luobozhazi,26304167,4
+63160721,26304167,5
+69610449,26304167,4
+NullPointer,26304167,5
+4597338,26304167,3
+3177593,26304167,4
+Jillian,26304167,-1
+75015059,26304167,-1
+youlala,26304167,5
+67679868,26304167,4
+58930883,26304167,3
+fumihiko1985,26304167,4
+47285151,26304167,3
+choushabi,26304167,4
+difeijing,26304167,3
+ruilixiurui,26304167,4
+54807057,26304167,5
+34685994,26304167,5
+helene9933,26304167,5
+AllenHarris,26304167,4
+134523911,26304167,4
+PulpPaprika,26304167,4
+67770308,26304167,4
+1165091,26304167,4
+readwang,26304167,-1
+summermayfly,26304167,4
+65907866,26304167,4
+95571541,26304167,4
+50293215,26304167,5
+duduxiongzhifu,26304167,3
+june.q,26304167,4
+134173332,26304167,5
+twoherb,26304167,-1
+58059498,26304167,4
+l00000000,26304167,5
+88652488,26304167,4
+LincolnSixEcho,26304167,3
+Colin_Wang,26304167,5
+lensmo,26304167,5
+53156692,26304167,4
+75323893,26304167,4
+82687720,26304167,4
+63774339,26304167,4
+88439681,26304167,4
+classical622,26304167,4
+littlebleach,26304167,-1
+4838811,26304167,4
+60223940,26304167,5
+42368147,26304167,4
+zicheng05,26304167,3
+87095553,26304167,5
+51476835,26304167,3
+coldmountain_,26304167,4
+50174936,26304167,5
+zcjzcjzcj,26304167,-1
+mackalex,26304167,3
+61492149,26304167,4
+imgsy,26304167,5
+94136704,26304167,5
+arsenalfc,26304167,5
+47845902,26304167,4
+74499406,26304167,4
+76554749,26304167,5
+100637778,26304167,4
+75007342,26304167,3
+muxiaoxu,26304167,3
+46882541,26304167,4
+grandmoon,26304167,4
+HaLoveTeHoMe,26304167,4
+7609988,26304167,4
+92154012,26304167,4
+64725454,26304167,2
+yeeeeeee,26304167,4
+borbo,26304167,4
+1316648,26304167,4
+109381843,26304167,4
+46815070,26304167,3
+kp81ndlf,26304167,4
+alphard0615,26304167,4
+50900048,26304167,3
+yuruky,26304167,3
+47755926,26304167,4
+96044338,26304167,4
+103653753,26304167,5
+vivicky320,26304167,5
+43662887,26304167,4
+65269166,26304167,5
+3202437,26304167,3
+42003350,26304167,4
+57869776,26304167,5
+p2165,26304167,4
+7542909,26304167,4
+81509803,26304167,4
+44457357,26304167,4
+31301735,26304167,4
+1473769,26304167,5
+longxiaosi,26304167,5
+chenchangxing,26304167,4
+tauren,26304167,5
+ILWTFT,26304167,5
+34727533,26304167,4
+55688796,26304167,-1
+mizzro,26304167,4
+113050393,26304167,5
+58721432,26304167,3
+2009122,26304167,3
+problemchildren,26304167,4
+59771378,26304167,4
+fakeyouout,26304167,3
+yangyihu,26304167,4
+syoyin,26304167,5
+83617900,26304167,5
+skydao,26304167,2
+pisacane,26304167,4
+1902646,26304167,4
+dawenxi,26304167,4
+everlastingEGO,26304167,4
+thegrudge,26304167,4
+51061132,26304167,5
+xulu_films,26304167,3
+130464213,26304167,4
+johnmcclane,26304167,4
+movielover126,26304167,5
+terry_f,26304167,4
+vincylee,26304167,4
+mongly,26304167,4
+plagueangel,26304167,5
+ameko_mago,26304167,5
+3540441,26304167,4
+Nokia95,26304167,4
+57340180,26304167,5
+kydwang,26304167,3
+babeblue,26304167,5
+enderstar,26304167,2
+qinxiaoyiqu,26304167,4
+dingxx,26304167,3
+cowbie,26304167,3
+14523458,26304167,4
+124136324,26304167,4
+iamnian,26304167,4
+whereiszoe,26304167,-1
+nocturnelee,26304167,2
+wongbur,26304167,4
+43213326,26304167,5
+dawdle,26304167,4
+lucaa,26304167,4
+2388812,26304167,4
+alonso_frame,26304167,4
+woshuoshuoshuo,26304167,3
+ame1ie,26304167,4
+XIAOTUTONG,26304167,4
+jessie_wong,26304167,4
+78500828,26304167,4
+52823989,26304167,5
+58906132,26304167,4
+1535538,26304167,2
+yeekykwoang,26304167,4
+1509670,26304167,-1
+lingjue,26304167,4
+45536018,26304167,3
+126980247,26304167,5
+fennihoo,26304167,5
+47782519,26304167,4
+120008046,26304167,4
+54002863,26304167,4
+cageyz,26304167,5
+laperseus,26304167,4
+92399399,26304167,4
+libinhan,26304167,4
+68014946,26304167,4
+fenglimuren,26304167,4
+43002828,26304167,4
+seancheung,26304167,4
+3440740,26304167,4
+kidaliu,26304167,4
+trebleang,26304167,4
+synther,26304167,-1
+suma,26304167,3
+doa,26304167,4
+piggyjane,26304167,2
+1325646,26304167,4
+moredarkwhite,26304167,3
+56571660,26304167,4
+cpcharitypan,26304167,4
+mp4_20,26304167,5
+willingnotto,26304167,4
+47941742,26304167,4
+cfengbme,26304167,1
+Strangefamiliar,26304167,4
+idorothy,26304167,3
+64199013,26304167,4
+47542853,26304167,3
+56818506,26304167,4
+vkinoko,26304167,4
+34949120,26304167,5
+moneylatem,26304167,2
+1034524,26304167,4
+queeenababy,26304167,5
+hudodo0314,26304167,-1
+34550540,26304167,4
+reeboir,26304167,4
+49730004,26304167,4
+Moretoless,26304167,4
+iamface,26304167,4
+46845668,26304167,3
+54864472,26304167,-1
+wusequanwei,26304167,4
+4320404,26304167,3
+piafei,26304167,3
+izume,26304167,5
+youngtoo,26304167,3
+chen1988,26304167,4
+hexiaoqin,26304167,4
+Brad_King,26304167,4
+nanka,26304167,4
+56523090,26304167,4
+64331326,26304167,5
+yihuiw,26304167,4
+1428652,26304167,2
+amiaaso,26304167,4
+2692827,26304167,4
+78164697,26304167,4
+Pabalee,26304167,4
+margueritey,26304167,4
+vermouth,26304167,5
+Alphard,26304167,3
+earthroom,26304167,5
+zei,26304167,4
+boiling-silence,26304167,4
+yaoooayaoooay,26304167,5
+fxvivian,26304167,4
+3545567,26304167,5
+sylviecx,26304167,5
+compauline1010,26304167,3
+aoihai,26304167,5
+14991491,26304167,4
+corbelle,26304167,-1
+123222453,26304167,5
+mrbrightside,26304167,5
+loveirina,26304167,4
+erickyee,26304167,5
+et2o,26304167,3
+67452182,26304167,5
+shelleyhsu,26304167,4
+oursonkuma,26304167,3
+morpheezh,26304167,5
+plastictreeman,26304167,5
+ticketdealer,26304167,3
+xiaoxiaonong,26304167,4
+2208063,26304167,4
+Obtson,26304167,4
+89931172,26304167,4
+champignon_lou,26304167,4
+emmalty,26304167,5
+woodring,26304167,-1
+Tacitos,26304167,4
+46911720,26304167,5
+btr,26304167,5
+iravari,26304167,-1
+58787837,26304167,5
+52363002,26304167,5
+74248985,26304167,5
+SamsonOu,26304167,4
+99093340,26304167,4
+4251957,26304167,-1
+LotteMars,26304167,4
+45303965,26304167,5
+edward1988,26304167,4
+3139594,26304167,4
+1393472,26304167,5
+arko,26304167,4
+janice5680,26304167,4
+hinnie_addict,26304167,4
+1485397,26304167,4
+47974911,26304167,4
+xinziai,26304167,4
+2784323,26304167,5
+guyewuzhe,26304167,4
+89984750,26304167,5
+fendandan,26304167,4
+59334722,26304167,3
+120392055,26304167,4
+75182939,26304167,4
+boomXXboomXX,26304167,4
+53381423,26304167,3
+78724440,26304167,4
+sugarman638,26304167,5
+61992166,26304167,4
+2594481,26304167,4
+GoldFish,26304167,4
+abuxu,26304167,5
+63422177,26304167,4
+78914788,26304167,5
+49294840,26304167,2
+diorsunrise,26304167,5
+3938745,26304167,5
+43840561,26304167,4
+soha011,26304167,4
+aixiaoni,26304167,5
+69875076,26304167,4
+duckysophie,26304167,-1
+74855673,26304167,5
+2227016,26304167,4
+willd,26304167,-1
+elyarias,26304167,5
+71953415,26304167,4
+8868446,26304167,5
+42232123,26304167,-1
+nofer,26304167,4
+timliutianxiang,26304167,4
+64780091,26304167,4
+46394662,26304167,4
+52143519,26304167,4
+4554090,26304167,4
+huoxiaoliang,26304167,4
+53559432,26304167,4
+53559432,26304167,4
+lea_x,26304167,5
+sylin,26304167,4
+xlee,26304167,5
+rockyblur,26304167,4
+26237008,26304167,5
+yoshimi,26304167,3
+samsyu,26304167,4
+rajorAn,26304167,4
+hou7,26304167,5
+shezaizuyi,26304167,5
+catandflea,26304167,4
+92468807,26304167,5
+shallwinyee,26304167,3
+59281167,26304167,4
+unlucky_strike,26304167,5
+terenceyibo,26304167,4
+Glaciar,26304167,-1
+65046941,26304167,4
+petercat,26304167,4
+82881790,26304167,5
+56435930,26304167,4
+77848216,26304167,4
+caspiandc,26304167,3
+73530411,26304167,4
+135450878,26304167,5
+1943610,26304167,5
+60760225,26304167,3
+tequila7,26304167,5
+134516953,26304167,3
+135141557,26304167,4
+yagamigenko,26304167,4
+wangzhy,26304167,4
+dropofmilk,26304167,3
+53426437,26304167,4
+69683080,26304167,5
+chenhuayang,26304167,4
+troublemakerjoy,26304167,4
+73958470,26304167,4
+49229485,26304167,4
+ccalifo,25718082,5
+61299787,25718082,3
+AliceTang27,25718082,3
+100532395,25718082,3
+66081108,25718082,4
+59249537,25718082,2
+46567996,25718082,2
+51194285,25718082,4
+lilian0724,25718082,3
+131343395,25718082,3
+masoeur,25718082,3
+Cheung93,25718082,4
+kimyeol,25718082,-1
+41040671,25718082,2
+130680480,25718082,5
+27814266,25718082,4
+1752075,25718082,-1
+93884806,25718082,3
+barcaren,25718082,3
+79489792,25718082,5
+41813819,25718082,5
+60211609,25718082,3
+pyan,25718082,3
+32727331,25718082,5
+30346697,25718082,3
+6767613,25718082,5
+sansanyang526,25718082,3
+80452774,25718082,5
+newbear,25718082,3
+lixiangchao,25718082,4
+98629034,25718082,4
+49538698,25718082,4
+groupies.,25718082,3
+Ceeport,25718082,3
+54126939,25718082,4
+65590168,25718082,3
+50758783,25718082,3
+131025711,25718082,4
+70006917,25718082,3
+shengyang,25718082,1
+130445057,25718082,2
+88331189,25718082,4
+61497443,25718082,2
+30909217,25718082,5
+55596037,25718082,3
+52344987,25718082,4
+39360207,25718082,3
+lovelflwd,25718082,4
+Chusy,25718082,5
+58466235,25718082,4
+5467957,25718082,3
+63325124,25718082,4
+anliye,25718082,4
+42622045,25718082,5
+135393696,25718082,4
+dadadarling,25718082,4
+64248782,25718082,3
+137702339,25718082,3
+4224058,25718082,2
+xu_,25718082,5
+winnie0212,25718082,2
+66888888,25718082,3
+babytara,25718082,4
+38000900,25718082,5
+82911001,25718082,3
+130608078,25718082,3
+eskimonino,25718082,3
+91277792,25718082,4
+26482170,25718082,3
+57541099,25718082,4
+119019899,25718082,4
+imkt,25718082,1
+44121250,25718082,3
+45969996,25718082,3
+69428110,25718082,2
+qhyh,25718082,5
+1751335,25718082,4
+87496570,25718082,5
+80991459,25718082,2
+dearjan,25718082,2
+35499398,25718082,5
+48082988,25718082,2
+54462920,25718082,3
+risingup,25718082,-1
+46736455,25718082,3
+65413413,25718082,3
+122932689,25718082,3
+121383587,25718082,4
+isabellanagging,25718082,5
+1985034,25718082,4
+137941433,25718082,-1
+43462039,25718082,4
+68951432,25718082,2
+ECHO0707,25718082,2
+abalone91,25718082,1
+65213268,25718082,3
+108816754,25718082,4
+Joe1994,25718082,4
+127131340,25718082,2
+122868077,25718082,3
+45925638,25718082,-1
+81268447,25718082,3
+92366440,25718082,3
+graceinjune,25718082,3
+123274527,25718082,2
+59974913,25718082,-1
+121920760,25718082,3
+44450679,25718082,3
+68621390,25718082,4
+77195543,25718082,4
+32359738,25718082,2
+76887347,25718082,3
+126994808,25718082,2
+62253613,25718082,2
+134497633,25718082,4
+130599620,25718082,3
+130940590,25718082,4
+61223246,25718082,4
+viyawym,25718082,3
+104584281,25718082,4
+104584281,25718082,4
+princessing,25718082,4
+62044722,25718082,4
+68404885,25718082,4
+47444356,25718082,1
+133499151,25718082,4
+125827809,25718082,3
+3120137,25718082,4
+54946553,25718082,-1
+db00goal,25718082,2
+xumuzhi,25718082,-1
+51617452,25718082,4
+4343056,25718082,4
+70950231,25718082,3
+57759869,25718082,3
+52883078,25718082,3
+137671530,25718082,4
+121243676,25718082,2
+heheyuanmengyiu,25718082,4
+42817015,25718082,3
+57387149,25718082,3
+2277001,25718082,3
+phcat,25718082,4
+villus,25718082,4
+68630000,25718082,3
+wsdqz,25718082,4
+68630098,25718082,3
+61714365,25718082,3
+68550063,25718082,3
+58096305,25718082,5
+silentwarm,25718082,4
+58487973,25718082,4
+3273282,25718082,4
+90727698,25718082,4
+104658411,25718082,4
+127526905,25718082,5
+45321512,25718082,3
+56095656,25718082,3
+126500017,25718082,3
+98956225,25718082,3
+72711765,25718082,2
+133816635,25718082,3
+rednoodles,25718082,5
+91524755,25718082,4
+52653708,25718082,4
+3716043,25718082,5
+88638997,25718082,2
+44142019,25718082,5
+48252359,25718082,3
+58667207,25718082,4
+yeeeeeee,25718082,3
+131909298,25718082,3
+132463662,25718082,3
+62664201,25718082,3
+yulebecky,25718082,4
+78925849,25718082,3
+87546829,25718082,-1
+64352765,25718082,2
+137061442,25718082,4
+127081607,25718082,2
+76025225,25718082,1
+gushuwen7568,25718082,4
+54278180,25718082,-1
+131535153,25718082,4
+134630891,25718082,3
+zhanglfy,25718082,4
+80578018,25718082,4
+qingnianluoke,25718082,3
+21064111,25718082,4
+88658178,25718082,3
+freakyoyo,25718082,2
+han_sy,25718082,3
+27675083,25718082,2
+126959230,25718082,3
+misamore,25718082,1
+137273110,25718082,3
+2304159,25718082,3
+mmmxyo,25718082,5
+52074015,25718082,5
+52629192,25718082,4
+134545730,25718082,3
+17471764,25718082,-1
+bunny_Shen,25718082,4
+126579331,25718082,4
+snowinter1896,25718082,5
+57927830,25718082,4
+yaolan1986,25718082,4
+littlewish,25718082,5
+137206904,25718082,3
+126248170,25718082,3
+60736257,25718082,3
+yunlner,25718082,4
+71083043,25718082,3
+66495218,25718082,4
+30322114,25718082,3
+130369122,25718082,3
+55543301,25718082,1
+69649428,25718082,4
+ladyboo,25718082,5
+134516953,25718082,4
+85035571,25718082,3
+78939531,25718082,-1
+136662162,25718082,5
+68550655,25718082,4
+newrainy,25718082,-1
+53916327,25718082,3
+1626349,25718082,3
+swallowling,25718082,3
+88345829,25718082,4
+59788445,25718082,4
+45268716,25718082,4
+70313784,25718082,4
+38449214,25718082,4
+gs21cn,25718082,4
+43129996,25718082,2
+yihengxi,25718082,3
+lovingxiong,25718082,2
+76618581,25718082,4
+130362078,25718082,4
+69365887,25718082,3
+viteless,25718082,3
+mysalvation,25718082,3
+61675448,25718082,4
+62601567,25718082,4
+80784693,25718082,4
+40067937,25718082,3
+70522766,25718082,3
+1631812,25718082,2
+tina1210,25718082,3
+103580957,25718082,4
+44449851,25718082,4
+131408932,25718082,3
+115877336,25718082,5
+lalalin,25718082,3
+89814463,25718082,4
+3601446,25718082,3
+mayka,25718082,3
+73943510,25718082,4
+leechambo,25718082,2
+56413610,25718082,4
+narcisusss,25718082,3
+44923935,25718082,4
+119852340,25718082,4
+119702744,25718082,3
+68771576,25718082,3
+xclc,25718082,3
+Beta-Juliet,25718082,5
+3467669,25718082,3
+57658984,25718082,4
+snow-in-coffee,25718082,3
+1539693,25718082,4
+60258701,25718082,3
+67330713,25718082,4
+83883222,25718082,4
+54783858,25718082,3
+65070154,25718082,3
+51698835,25718082,-1
+Idealistting,25718082,3
+kulapika,25718082,3
+55674191,25718082,4
+lagrandeillusio,25718082,3
+67943333,25718082,3
+3018493,25718082,5
+49382503,25718082,2
+134634750,25718082,2
+imcaitou,25718082,4
+63900618,25718082,3
+iris714,25718082,3
+50669136,25718082,5
+75356324,25718082,3
+122000864,25718082,3
+68429494,25718082,4
+80093062,25718082,4
+82046546,25718082,3
+17866767,25718082,5
+134176594,25718082,3
+topxpp,25718082,3
+78771431,25718082,3
+131987227,25718082,5
+115622817,25718082,5
+69275908,25718082,3
+64876627,25718082,3
+urmyv1,25718082,-1
+xingsan,25718082,5
+78681976,25718082,3
+xsy0923,25718082,3
+PIERO1208,25718082,3
+50579879,25718082,3
+136182829,25718082,3
+90543489,25718082,3
+54833515,25718082,-1
+81316047,25718082,3
+54443287,25718082,3
+SunandShadow,25718082,2
+52217133,25718082,4
+127688948,25718082,4
+119013202,25718082,5
+geggnancy,25718082,5
+53364319,25718082,3
+wentrue,25718082,-1
+wentrue,25718082,-1
+sarayixin,25718082,4
+wangyuezuiai,25718082,4
+71843483,25718082,3
+41899297,25718082,3
+65908611,25718082,4
+55419617,25718082,2
+1582144,25718082,2
+Gmosquito,25718082,3
+60661944,25718082,4
+66141079,25718082,4
+136418521,25718082,4
+verdeherz,25718082,5
+ling-ling,25718082,5
+2870958,25718082,-1
+49719620,25718082,3
+59354164,25718082,5
+26788914,25718082,3
+47635352,25718082,4
+Notali64,25718082,4
+40663225,25718082,2
+81765589,25718082,4
+1319405,25718082,1
+59005110,25718082,3
+48034531,25718082,2
+73853063,25718082,5
+10884104,25718082,3
+58588294,25718082,3
+135192939,25718082,5
+11324121,25718082,-1
+65660136,25718082,4
+121042228,25718082,-1
+132882419,25718082,-1
+119416612,25718082,3
+40572113,25718082,3
+136337190,25718082,5
+maoamao,25718082,4
+lsz0719,25718082,2
+68231040,25718082,3
+82880099,25718082,3
+121943500,25718082,3
+60418082,25718082,3
+54119533,25718082,3
+68469162,25718082,4
+36302109,25718082,3
+vegenious,25718082,5
+IamAsh,25718082,4
+130353620,25718082,4
+anjingyigeren,25718082,-1
+122498244,25718082,2
+buan420,25718082,5
+133125055,25718082,3
+2089051,25718082,5
+70275022,25718082,4
+heibaiyaoyao,25718082,4
+130221209,25718082,4
+hegelian,25718082,4
+52344759,25718082,2
+63143603,25718082,4
+71907688,25718082,4
+avrilzxy,25718082,3
+50886730,25718082,3
+35162201,25718082,4
+sunny1363,25718082,4
+vivi827,25718082,3
+130978369,25718082,3
+46269002,25718082,3
+102108363,25718082,4
+53080753,25718082,4
+60488216,25718082,3
+flycolorice,25718082,-1
+5890764,25718082,5
+119157867,25718082,3
+89050593,25718082,4
+sunnykisskins,25718082,4
+sugar-man,25718082,2
+58854842,25718082,3
+3880595,25718082,4
+sosofly,25718082,4
+74931346,25718082,4
+125264394,25718082,3
+87599429,25718082,3
+86946149,25718082,3
+134620766,25718082,2
+66897985,25718082,3
+2291010,25718082,4
+72394611,25718082,3
+33475174,25718082,4
+1390707,25718082,2
+2635823,25718082,1
+71135421,25718082,4
+lymh,25718082,3
+122874127,25718082,-1
+84917101,25718082,3
+3202710,25718082,3
+53599357,25718082,3
+7900399,25718082,4
+19271403,25718082,3
+130030005,25718082,4
+43120723,25718082,3
+1322402,25718082,2
+135762628,25718082,4
+49513730,25718082,4
+38980912,25718082,4
+61176733,25718082,3
+78902065,25718082,4
+43653734,25718082,3
+128412701,25718082,4
+56682623,25718082,4
+4279381,25718082,4
+47790392,25718082,3
+135874162,25718082,3
+quelheart,25718082,4
+84655356,25718082,3
+70671279,25718082,3
+3337739,25718082,3
+61815962,25718082,4
+60388561,25718082,5
+134537950,25718082,4
+131284271,25718082,4
+130604473,25718082,3
+26757948,25718082,4
+4750660,25718082,3
+wendyblueberry,25718082,4
+bulijite,25718082,1
+42984901,25718082,4
+onlystefanie,25718082,2
+54801845,25718082,3
+piyuhui,25718082,4
+tongtongabc,25718082,-1
+zest,25718082,3
+joy9527joy,25718082,3
+4457568,25718082,3
+yrpkkxx,25718082,4
+9173752,25718082,3
+chonger,25718082,2
+120558525,25718082,5
+1486195,25718082,-1
+60870044,25718082,4
+57924290,25718082,1
+fanyichao,25718082,3
+57407135,25718082,3
+schumibati,25718082,4
+pbc0615,25718082,2
+51096154,25718082,4
+93861419,25718082,3
+missstacy,25718082,2
+promise_717,25718082,3
+102830764,25718082,5
+58141531,25718082,4
+ola_,25718082,4
+63699116,25718082,3
+49945467,25718082,4
+Yaya325,25718082,3
+53662568,25718082,-1
+39696481,25718082,3
+Echo2Echo,25718082,4
+60593481,25718082,4
+glax,25718082,3
+79880444,25718082,4
+79880444,25718082,4
+doraemon63,25718082,3
+80766328,25718082,4
+shexinqian,25718082,4
+107067858,25718082,4
+cheryl84,25718082,2
+43300068,25718082,4
+49124222,25718082,4
+39545267,25718082,2
+vidia,25718082,4
+shiningkiss85,25718082,4
+47754235,25718082,3
+1378503,25718082,3
+53922518,25718082,4
+63820149,25718082,3
+66715908,25718082,-1
+lolitazly,25718082,3
+85230814,25718082,2
+55305499,25718082,4
+88908343,25718082,4
+119374507,25718082,2
+alicexiangfei,25718082,5
+116073490,25718082,3
+jackieatdnv,25718082,4
+60979872,25718082,4
+120886080,25718082,3
+59593088,25718082,3
+45517061,25718082,4
+60015294,25718082,1
+58794497,25718082,4
+134495648,25718082,2
+yemanyuan,25718082,3
+56693883,25718082,3
+130496028,25718082,-1
+73836336,25718082,3
+48542803,25718082,3
+18628004,25718082,2
+66086973,25718082,3
+cicisj,25718082,3
+104093552,25718082,4
+2707201,25718082,4
+47021785,25718082,2
+70511298,25718082,3
+121180722,25718082,4
+miexiaoyang422,25718082,3
+126746574,25718082,4
+zhouzilan,25718082,-1
+zyqwendy,25718082,3
+119064944,25718082,-1
+mr-kill,25718082,2
+xqmz,25718082,3
+2407538,25718082,4
+62825756,25718082,4
+63905629,25718082,3
+1344429,25718082,4
+123850973,25718082,4
+42116561,25718082,3
+52373049,25718082,2
+81416402,25718082,4
+102112873,25718082,3
+50405161,25718082,3
+6711612,25718082,2
+Chem.Indigo,25718082,4
+mustafay,25718082,3
+32653058,25718082,3
+Aqva,25718082,5
+Charmaine,25718082,2
+135499933,25718082,3
+Decembermay,25718082,3
+56330466,25718082,4
+49334880,25718082,4
+Arma-Ni,25718082,3
+69968379,25718082,3
+101306532,25718082,4
+13889436,25718082,4
+55887072,25718082,3
+allen_y,25718082,4
+74654745,25718082,4
+yifeng2013,25718082,5
+69836665,25718082,4
+126785151,25718082,4
+yangfengdouban,25718082,3
+70287236,25718082,4
+cheohsu,25718082,3
+Love.Story,25718082,3
+44457357,25718082,1
+ecukhxt,25718082,4
+miemiemind,25718082,3
+53487447,25718082,4
+punkvv31,25718082,4
+luot,25718082,3
+66776645,25718082,4
+1118054,25718082,3
+2007742,25718082,3
+carolzjw,25718082,3
+48789683,25718082,3
+azo_pan,25718082,4
+4518695,25718082,3
+90812716,25718082,4
+soul92114,25718082,5
+jozenky,25718082,3
+4132596,25718082,2
+62664539,25718082,3
+59936803,25718082,3
+2019155,25718082,2
+Rockworld,25718082,3
+3536775,25718082,4
+binkicee,25718082,2
+78447533,25718082,3
+47307716,25718082,4
+2713839,25718082,-1
+ddkkh,25718082,3
+53240525,25718082,3
+51513944,25718082,4
+mint29,25718082,4
+glacepirouette,25718082,3
+breadlife,25718082,4
+27270546,25718082,3
+52238680,25718082,4
+counting_crows,25718082,3
+jiangdaya0206,25718082,5
+maoxiaomao,25718082,3
+122060054,25718082,2
+72598751,25718082,-1
+72120967,25718082,4
+12300787,25718082,3
+63174808,25718082,1
+47375068,25718082,2
+135436520,25718082,3
+75683081,25718082,3
+47493797,25718082,-1
+68441766,25718082,4
+53932616,25718082,2
+62637324,25718082,4
+44761564,25718082,5
+luckyinvoke,25718082,3
+99615375,25718082,2
+pandajo,25718082,3
+62979513,25718082,4
+shiro26,25718082,4
+53604938,25718082,3
+orangeone1,25718082,3
+81266175,25718082,4
+Rachel23,25718082,2
+roczhong,25718082,3
+108229912,25718082,4
+40024021,25718082,2
+66570603,25718082,4
+65488479,25718082,3
+xuanyushuo,25718082,3
+cherishcrystal,25718082,5
+76173205,25718082,4
+64666704,25718082,4
+49155452,25718082,4
+2970713,25718082,4
+53953725,25718082,3
+adamwzw,25718082,4
+43621378,25718082,4
+missBlack1027,25718082,5
+2834898,25718082,4
+47417777,25718082,2
+cappuccino-jl,25718082,2
+50619020,25718082,4
+54977613,25718082,4
+133398715,25718082,4
+xiaoconggo,25718082,4
+134532071,25718082,4
+37567847,25718082,3
+103271136,25718082,3
+49090392,25718082,2
+yourlilith,25718082,3
+yanzi_db,25718082,-1
+72585899,25718082,4
+133564346,25718082,3
+BjsXe,25718082,3
+2810818,25718082,3
+115376627,25718082,3
+34990836,25718082,3
+65292306,25718082,3
+66107296,25718082,3
+47287046,25718082,3
+114855757,25718082,3
+anko2626,25718082,3
+51720308,25718082,1
+1643495,25718082,3
+ciell,25718082,4
+1866289,25718082,5
+lh12123,25718082,3
+xiaojidunmoguxi,25718082,4
+chenjingLU,25718082,-1
+cupandrabbit,25718082,4
+tingdreamer,25718082,5
+Ronnie816,25718082,3
+69307403,25718082,3
+82980188,25718082,2
+mhkm,25718082,2
+65563453,25718082,4
+84901060,25718082,4
+100230675,25718082,4
+60315313,25718082,3
+wazis,25718082,4
+133864365,25718082,3
+124640229,25718082,3
+63074108,25718082,3
+ajoe.zone,25718082,2
+2825367,25718082,4
+59022581,25718082,3
+58786397,25718082,3
+yanxiaoan,25718082,5
+3629247,25718082,4
+44695569,25718082,4
+90646242,25718082,4
+52944541,25718082,3
+33699422,25718082,4
+86253847,25718082,3
+91473851,25718082,3
+muxu413,25718082,3
+97719880,25718082,-1
+sunvee,25718082,3
+3470100,25718082,4
+ss20,25718082,4
+46712687,25718082,2
+2262505,25718082,5
+15887996,25718082,5
+121742515,25718082,5
+68229631,25718082,3
+91140332,25718082,3
+42043423,25718082,4
+4708937,25718082,3
+36643405,25718082,4
+122341750,25718082,3
+5344004,25718082,4
+67988925,25718082,4
+Clarssia,25718082,4
+60410320,25718082,4
+82564566,25718082,2
+62605597,25718082,3
+84797100,25718082,3
+40017309,25718082,3
+64410588,25718082,5
+46781917,25718082,-1
+121213939,25718082,5
+imgsy,25718082,5
+97416328,25718082,3
+juicysongy,25718082,-1
+48183944,25718082,1
+1198621,25718082,2
+48320059,25718082,4
+64465114,25718082,1
+rika19860217,25718082,3
+4379081,25718082,4
+73995196,25718082,4
+80503633,25718082,4
+60777007,25718082,5
+36076705,25718082,4
+wxenia9189,25718082,4
+icreamer,25718082,-1
+61721303,25718082,3
+81697410,25718082,3
+Sophieee_sophie,25718082,3
+xiangcai_,25718082,3
+yelano,25718082,2
+81193574,25718082,3
+35552430,25718082,4
+120594858,25718082,3
+1074069,25718082,5
+134738255,25718082,3
+53665936,25718082,4
+49968268,25718082,2
+snowwjq,25718082,3
+48121857,25718082,4
+kareny25,25718082,5
+candy-huhu,25718082,3
+103366315,25718082,-1
+88130267,25718082,4
+66388538,25718082,3
+68505371,25718082,5
+57756746,25718082,4
+78614678,25718082,4
+piaoyi,25718082,2
+3254418,25718082,4
+72191576,25718082,5
+135012811,25718082,4
+59102121,25718082,2
+linlinhuangcc,25718082,1
+75268479,25718082,2
+134312788,25718082,4
+jing1,25718082,-1
+122022839,25718082,4
+73339142,25718082,1
+3571623,25718082,3
+122232791,25718082,3
+81250715,25718082,4
+96632957,25718082,3
+65944325,25718082,3
+80370645,25718082,3
+90973850,25718082,3
+53245934,25718082,4
+82232966,25718082,4
+122745799,25718082,3
+chesterchoi,25718082,4
+xxxiyybabe,25718082,3
+84342168,25718082,4
+athenasaga,25718082,3
+46765120,25718082,5
+jaromu,25718082,3
+62662822,25718082,1
+52492021,25718082,5
+59025385,25718082,4
+134040475,25718082,2
+nina1104,25718082,3
+crazy-girl,25718082,4
+70310265,25718082,3
+26221602,25718082,4
+Mint.R,25718082,4
+72398543,25718082,1
+50058727,25718082,3
+3768837,25718082,2
+26743316,25718082,4
+33679145,25718082,3
+54152146,25718082,3
+2280761,25718082,4
+52853980,25718082,2
+66552525,25718082,2
+strangerBETTY,25718082,3
+4749427,25718082,5
+130274229,25718082,3
+49704716,25718082,4
+51834403,25718082,4
+60613732,25718082,-1
+51297703,25718082,3
+61506971,25718082,3
+40864785,25718082,3
+87988157,25718082,2
+floragarfield,25718082,3
+Shulamit,25718082,4
+3465389,25718082,-1
+60818564,25718082,4
+St-M,25718082,2
+49282329,25718082,3
+48808520,25718082,2
+51618406,25718082,2
+62314563,25718082,3
+53731567,25718082,2
+66074861,25718082,4
+3754912,25718082,3
+2761282,25718082,3
+50609677,25718082,-1
+verse,25718082,3
+50971465,25718082,3
+68307753,25718082,3
+ann817,25718082,4
+78251252,25718082,2
+59323949,25718082,4
+41940074,25718082,4
+clairegyy,25718082,3
+ZJ1231,25718082,4
+echy,25718082,5
+76784952,25718082,4
+moyezi,25718082,3
+56690905,25718082,3
+131136009,25718082,3
+1353634,25718082,3
+4195216,25718082,3
+Jamie.Wen,25718082,5
+49898736,25718082,4
+ganewael,25718082,3
+88789846,25718082,3
+56004220,25718082,3
+83604307,25718082,2
+51901036,25718082,4
+b4152070,25718082,3
+73135208,25718082,3
+132855989,25718082,4
+78616610,25718082,4
+58197963,25718082,5
+3177593,25718082,3
+58234284,25718082,4
+missufinally,25718082,3
+78448364,25718082,3
+59012176,25718082,3
+44587158,25718082,3
+76551061,25718082,5
+60620851,25718082,-1
+58035376,25718082,3
+xshhhm,25718082,5
+60053622,25718082,3
+moranyushi,25718082,4
+jinniunvzuo,25718082,5
+goyankeesgo,25718082,2
+martindar,25718082,3
+104230732,25718082,4
+chrisyx,25718082,4
+donna12355,25718082,3
+58505404,25718082,4
+78926576,25718082,4
+rosekiss,25718082,5
+jenniferxue,25718082,4
+4271475,25718082,4
+evil-lizard,25718082,-1
+66676801,25718082,4
+30332673,25718082,3
+peyman,25718082,3
+134054475,25718082,3
+62284085,25718082,3
+37779092,25718082,4
+73787415,25718082,4
+57294981,25718082,4
+49346657,25718082,3
+cjc1021,25718082,1
+15858416,25718082,4
+68636133,25718082,4
+101738421,25718082,3
+waitintheseason,25718082,4
+48763260,25718082,4
+karen_pan,25718082,3
+134735981,25718082,-1
+46138752,25718082,3
+41825202,25718082,3
+57695371,25718082,4
+kinnarasueho,25718082,5
+luanma1977,25718082,3
+Diviv,25718082,5
+34459327,25718082,3
+Annandan,25718082,3
+Kamelia-Jia,25718082,4
+89163665,25718082,4
+127932658,25718082,2
+dashdot,25718082,3
+61429044,25718082,3
+73795161,25718082,2
+homebody,25718082,-1
+100279661,25718082,4
+VerNadette,25718082,3
+62600930,25718082,5
+87795487,25718082,4
+52282792,25718082,4
+Exaiy,25718082,3
+130988431,25718082,3
+Aiyouyouyouyou,25718082,4
+73111916,25718082,4
+52992118,25718082,4
+63645835,25718082,5
+124801894,25718082,3
+55273592,25718082,3
+81812882,25718082,4
+72934606,25718082,2
+xX_,25718082,5
+1688557,25718082,2
+29872538,25718082,5
+28865787,25718082,2
+90595685,25718082,3
+121724202,25718082,4
+133967176,25718082,3
+imdrday,25718082,-1
+43574449,25718082,3
+76244481,25718082,3
+50620044,25718082,3
+65721837,25718082,2
+48669577,25718082,4
+wslhul,25718082,4
+3520200,25718082,2
+52801695,25718082,2
+65232993,25718082,4
+3322909,25718082,4
+84851693,25718082,4
+Angle_Angle,25718082,4
+3543054,25718082,-1
+sunnyxiner,25718082,4
+Max-66,25718082,2
+40883451,25718082,4
+134023092,25718082,5
+shiningsnow,25718082,4
+69531104,25718082,4
+38603350,25718082,4
+4415376,25718082,4
+52774723,25718082,4
+64881520,25718082,2
+33235150,25718082,4
+4123214,25718082,5
+61175135,25718082,2
+3137358,25718082,4
+62330714,25718082,5
+Aurora707,25718082,3
+72075276,25718082,5
+65635790,25718082,4
+WatanabeSumire,25718082,3
+alessiagu,25718082,3
+68887346,25718082,3
+115786111,25718082,3
+Monkey8929,25718082,-1
+RapeMe,25718082,3
+120287477,25718082,2
+97397613,25718082,5
+57048638,25718082,4
+wongbur,25718082,4
+cianshijie,25718082,4
+68148628,25718082,4
+Voldedogear,25718082,-1
+108253828,25718082,3
+108253828,25718082,3
+122039396,25718082,4
+25460734,25718082,3
+SSismon,25718082,5
+1326010,25718082,3
+62915199,25718082,3
+3220756,25718082,4
+songjia0227,25718082,3
+yitull,25718082,3
+46542025,25718082,4
+zizaitianqi,25718082,4
+103375945,25718082,4
+133375008,25718082,4
+jackie1211,25718082,4
+3240228,25718082,3
+monicahc,25718082,5
+61516922,25718082,4
+133988097,25718082,5
+49128378,25718082,4
+45397702,25718082,4
+47557018,25718082,-1
+sysop,25718082,3
+54881083,25718082,5
+62987657,25718082,3
+129936841,25718082,3
+misschim,25718082,4
+46161171,25718082,5
+85262730,25718082,3
+57289722,25718082,5
+xinagsi,25718082,4
+61613181,25718082,3
+yiranhyy,25718082,5
+57779598,25718082,4
+frnong,25718082,5
+64466203,25718082,4
+1909194,25718082,4
+55006462,25718082,4
+yoyomei,25718082,4
+68111345,25718082,5
+64309170,25718082,2
+5845424,25718082,4
+50590088,25718082,3
+128422006,25718082,3
+50471715,25718082,3
+65340387,25718082,3
+eileenxx,25718082,5
+46222986,25718082,5
+DY9174,25718082,4
+4680837,25718082,2
+50519301,25718082,4
+xiao33,25718082,2
+41883531,25718082,5
+38947433,25718082,4
+looktwice,25718082,3
+70616207,25718082,3
+64326137,25718082,4
+Yulia,25718082,3
+55952229,25718082,3
+3907089,25718082,3
+44537137,25718082,3
+72119709,25718082,-1
+58259896,25718082,5
+4338964,25718082,-1
+2595920,25718082,4
+58055759,25718082,4
+34015028,25718082,3
+kirsty417,25718082,3
+1295507,25718082,3
+46496098,25718082,-1
+124640216,25718082,3
+yangjing113,25718082,4
+52775444,25718082,4
+51249415,25718082,4
+antimido,25718082,5
+3169210,25718082,-1
+2919381,25718082,2
+pisacane,25718082,3
+monmeilleur,25718082,5
+chenspoon,25718082,4
+xiaoxi1252,25718082,2
+4607926,25718082,3
+67416002,25718082,3
+73217273,25718082,2
+chaud,25718082,4
+88026587,25718082,5
+liuyayao619,25718082,2
+3223179,25718082,-1
+36664394,25718082,4
+56389431,25718082,4
+67652760,25718082,4
+73125815,25718082,-1
+33921766,25718082,2
+68572378,25718082,3
+3625223,25718082,3
+imbpw,25718082,2
+132676591,25718082,3
+40793892,25718082,4
+lanchong03,25718082,3
+127524905,25718082,5
+90829076,25718082,4
+waitingsong,25718082,4
+khloris,25718082,3
+1673897,25718082,3
+89912837,25718082,3
+13293190,25718082,1
+42062809,25718082,3
+23400839,25718082,5
+FEILAMIDU,25718082,4
+vincentjones,25718082,3
+102747303,25718082,3
+72642943,25718082,2
+53144700,25718082,5
+126027447,25718082,2
+spancercheng,25718082,4
+fedorajiang,25718082,2
+57951426,25718082,5
+Chikomoumao,25718082,5
+xihahaha,25718082,5
+112276419,25718082,5
+cskywalker,25718082,3
+133440857,25718082,3
+jiangjiang1214,25718082,3
+51105174,25718082,3
+58709788,25718082,4
+jialululu,25718082,-1
+54340462,25718082,3
+fanyiduo,25718082,2
+cynthianewmoon,25718082,3
+2206901,25718082,2
+xiaoyubaobao,25718082,3
+Jerusalem,25718082,2
+40237768,25718082,3
+131849470,25718082,2
+lazymule,25718082,3
+61329392,25718082,4
+14840393,25718082,3
+51170340,25718082,2
+3609952,25718082,4
+63626568,25718082,3
+1960285,25718082,3
+gmrxfx,25718082,2
+77200977,25718082,5
+3818284,25718082,4
+sslclz,25718082,3
+47182696,25718082,3
+lingyun93,25718082,3
+62597862,25718082,3
+1897422,25718082,2
+never_zj,25718082,4
+37466270,25718082,3
+54752949,25718082,-1
+63047551,25718082,3
+61510588,25718082,4
+1523711,25718082,3
+28968809,25718082,3
+fish0813,25718082,4
+37364562,25718082,-1
+79555608,25718082,3
+3128287,25718082,5
+29756393,25718082,4
+53820803,25718082,3
+2126183,25718082,3
+85296243,25718082,4
+70506259,25718082,3
+126964786,25718082,5
+62412162,25718082,4
+133861190,25718082,3
+2687910,25718082,-1
+grace0621,25718082,4
+shine-wang,25718082,4
+jianghucrab,25718082,2
+1548712,25718082,3
+lattechen,25718082,4
+106086865,25718082,4
+64881542,25718082,4
+tuochacha,25718082,4
+Sophiashen,25718082,4
+48496460,25718082,3
+chickensoup,25718082,3
+133418414,25718082,5
+ran4027,25718082,-1
+76413878,25718082,4
+lotusweety,25718082,1
+133895653,25718082,3
+132690366,25718082,4
+67334552,25718082,-1
+45875943,25718082,3
+1666532,25718082,3
+1240037,25718082,2
+4200336,25718082,4
+34151620,25718082,5
+122075064,25718082,3
+98605942,25718082,4
+tammysky,25718082,3
+39122069,25718082,3
+72700363,25718082,3
+songcaidong,25718082,1
+130743803,25718082,3
+Brad_King,25718082,4
+jolinalbert,25718082,4
+131765694,25718082,4
+zzy19880911,25718082,5
+monkeyjung,25718082,4
+buwubuhui,25718082,1
+zhuye5201314,25718082,3
+48938261,25718082,5
+46827374,25718082,4
+norababy,25718082,3
+cajiln,25718082,-1
+80687112,25718082,3
+darchang,25718082,2
+oakhui,25718082,1
+sheenasneveland,25718082,5
+62641042,25718082,3
+131194167,25718082,4
+55561510,25718082,3
+56906106,25718082,4
+46038354,25718082,3
+dinosaw,25718082,2
+86768814,25718082,4
+85621966,25718082,5
+14836914,25718082,4
+yuimi5,25718082,3
+102859940,25718082,4
+VELVETGANSTER,25718082,4
+1299948,25718082,3
+83885196,25718082,2
+39504280,25718082,3
+97474180,25718082,4
+104440766,25718082,5
+69037881,25718082,2
+sick-cat,25718082,3
+53170578,25718082,3
+joyjay,25718082,3
+57758855,25718082,2
+unmask_sage,25718082,4
+christinayeah,25718082,4
+4345045,25718082,3
+79316763,25718082,5
+47231110,25718082,3
+84569301,25718082,3
+49910558,25718082,-1
+60733451,25718082,3
+128641812,25718082,1
+IssacLS,25718082,3
+57957731,25718082,4
+68770847,25718082,4
+T1994116,25718082,3
+46545185,25718082,4
+evil1008,25718082,2
+4547259,25718082,3
+34601221,25718082,3
+xzw1407,25718082,3
+89183182,25718082,5
+hubery19930301,25718082,4
+49316302,25718082,3
+busixiaohai,25718082,3
+3169215,25718082,4
+133550449,25718082,4
+65469860,25718082,3
+tarostaro,25718082,3
+somovie,25718082,4
+115870534,25718082,-1
+59235428,25718082,4
+104823231,25718082,3
+58181516,25718082,3
+130132099,25718082,4
+qibacha,25718082,3
+liarb,25718082,3
+53372714,25718082,4
+suffering0,25718082,2
+lyshan,25718082,4
+xingtiant,25718082,1
+13266477,25718082,3
+yoory,25718082,-1
+Cccc4_,25718082,4
+boblin,25718082,3
+31220552,25718082,4
+DaRin6,25718082,-1
+stevense,25718082,3
+2785417,25718082,2
+104823188,25718082,4
+2997087,25718082,1
+cassiecici,25718082,3
+48470366,25718082,4
+51429861,25718082,3
+iamfine3q,25718082,1
+2376689,25718082,-1
+xisochakaihuale,25718082,3
+98921786,25718082,3
+yiqiu8932,25718082,3
+65763988,25718082,5
+108693709,25718082,3
+yimoyoulan916,25718082,2
+47481448,25718082,4
+64473872,25718082,5
+68584442,25718082,4
+65239097,25718082,5
+1095652,25718082,2
+64996012,25718082,3
+48214032,25718082,3
+63292246,25718082,3
+66341284,25718082,4
+126183742,25718082,4
+eddychao,25718082,3
+4509464,25718082,5
+75807285,25718082,3
+2440348,25718082,4
+jijiayu,25718082,2
+yemengying,25718082,4
+1055848,25718082,-1
+vivienvb,25718082,3
+35076658,25718082,3
+107338684,25718082,4
+131508476,25718082,5
+yningc,25718082,-1
+36583542,25718082,5
+41431459,25718082,4
+65055816,25718082,3
+xcorange,25718082,4
+xcorange,25718082,4
+nowaysis,25718082,4
+caiduo7,25718082,3
+66338674,25718082,2
+66905422,25718082,3
+yangshu1991,25718082,3
+52160935,25718082,2
+80816818,25718082,5
+3843442,25718082,3
+54082963,25718082,4
+54531196,25718082,5
+likecake,25718082,2
+47525843,25718082,3
+49560060,25718082,3
+2114161,25718082,3
+58001500,25718082,4
+zhangcj1224,25718082,3
+50689721,25718082,3
+61123191,25718082,5
+71778727,25718082,2
+71778727,25718082,2
+haoxue119,25718082,4
+vtea,25718082,5
+wh396011051,25718082,4
+a_nicething,25718082,4
+unbounder,25718082,3
+3598198,25718082,-1
+30607200,25718082,4
+cody555,25718082,2
+1642177,25718082,2
+86327597,25718082,4
+68523574,25718082,3
+80661192,25718082,-1
+jshippo,25718082,2
+83795048,25718082,3
+74089465,25718082,3
+4377233,25718082,4
+62666104,25718082,3
+1479138,25718082,4
+124322812,25718082,-1
+124322812,25718082,-1
+66513814,25718082,2
+nnight,25718082,5
+36621771,25718082,3
+45910532,25718082,4
+4605484,25718082,3
+yingcao,25718082,5
+120952542,25718082,3
+zouy1216,25718082,4
+59556078,25718082,3
+85143816,25718082,2
+OuTalK,25718082,2
+62035813,25718082,3
+KeryChou,25718082,3
+lingweiran_0305,25718082,4
+thomsonkoo,25718082,3
+2254775,25718082,4
+cusimple,25718082,1
+3797778,25718082,3
+59323757,25718082,3
+59323757,25718082,3
+50739381,25718082,3
+68725414,25718082,5
+redsmile,25718082,3
+zhhsbkl,25718082,5
+56396657,25718082,3
+3344118,25718082,3
+atti0,25718082,3
+65483078,25718082,3
+4390856,25718082,-1
+3981138,25718082,4
+52022745,25718082,3
+48440999,25718082,5
+58897478,25718082,2
+47026147,25718082,2
+angle-cc,25718082,4
+75667669,25718082,2
+45141451,25718082,3
+1371368,25718082,3
+73958470,25718082,4
+73958470,25718082,4
+sueyer,25718082,4
+53401970,25718082,4
+34727533,25718082,3
+1457201,25718082,2
+2393425,25718082,3
+67489382,25718082,4
+marmotgo,25718082,4
+124661750,25718082,2
+65720947,25718082,2
+yphjj,25718082,4
+39809598,25718082,3
+49363697,25718082,-1
+dolphin-eliza,25718082,3
+xulu_films,25718082,4
+72694777,25718082,5
+106594383,25718082,4
+60049868,25718082,3
+132075693,25718082,2
+nirvana73,25718082,-1
+35224934,25718082,4
+51818837,25718082,3
+81051670,25718082,3
+70212980,25718082,3
+seafans,25718082,1
+55925373,25718082,2
+35111006,25718082,-1
+33955163,25718082,5
+60390276,25718082,4
+1766764,25718082,3
+59475205,25718082,4
+nick066,25718082,4
+ljyhe001,25718082,3
+62498869,25718082,4
+4691398,25718082,5
+69102270,25718082,3
+50892549,25718082,3
+3603638,25718082,3
+jasperss,25718082,3
+pii3you,25718082,3
+43258987,25718082,3
+qswoomsb,25718082,3
+17435111,25718082,4
+63084070,25718082,2
+solycoco,25718082,4
+45250315,25718082,5
+aishangyudehai,25718082,4
+59718747,25718082,4
+zhousophia,25718082,3
+62742351,25718082,4
+4431856,25718082,3
+18080670,25718082,3
+2842937,25718082,4
+fatia0,25718082,4
+57727310,25718082,3
+wangxiaolei,25718082,4
+moki_anchoret,25718082,3
+75131339,25718082,2
+unseen129,25718082,4
+78668658,25718082,3
+43996429,25718082,4
+54215602,25718082,5
+60347813,25718082,2
+aralebox,25718082,4
+56685137,25718082,5
+104441897,25718082,4
+JIUSHU87,25718082,4
+chumeijincai,25718082,4
+65357700,25718082,4
+siluyuese,25718082,4
+4021719,25718082,3
+shekinah,25718082,3
+motou0328,25718082,1
+2897878,25718082,4
+z88888z,25718082,5
+fdshanqun,25718082,3
+bluegirl814,25718082,4
+55859694,25718082,4
+69968814,25718082,3
+64092197,25718082,3
+63578418,25718082,4
+65366516,25718082,3
+1202671,25718082,2
+thoughts,25718082,5
+22818127,25718082,3
+Oliver_Lu,25718082,5
+2822340,25718082,-1
+cocojamboo,25718082,4
+65108877,25718082,4
+shisan107,25718082,1
+49150561,25718082,4
+46055019,25718082,5
+jadexyy,25718082,4
+commonDaisy_,25718082,5
+benbenmuxi,25718082,1
+42835041,25718082,4
+pulemon,25718082,4
+30492787,25718082,3
+91882596,25718082,2
+132917520,25718082,3
+36480811,25718082,3
+izhou,25718082,3
+ninety-one,25718082,3
+54817318,25718082,2
+wangleku0310,25718082,3
+57815489,25718082,3
+66568951,25718082,5
+4333370,25718082,4
+walkingtime,25718082,4
+32144547,25718082,2
+smileuna,25718082,4
+63675567,25718082,4
+55916506,25718082,2
+47932760,25718082,4
+69594701,25718082,5
+84885070,25718082,3
+gzunknow,25718082,3
+Ann,25718082,2
+lilimin5161,25718082,3
+amytsai,25718082,4
+91018361,25718082,3
+132770225,25718082,4
+69455218,25718082,4
+43215145,25718082,4
+51271683,25718082,5
+Sophieless,25718082,3
+orangenicole,25718082,4
+3766785,25718082,2
+32545847,25718082,3
+movieview,25718082,1
+kedoumili,25718082,4
+61053478,25718082,3
+53559432,25718082,3
+67425224,25718082,2
+92764567,25718082,3
+44549599,25718082,4
+81420973,25718082,1
+sentimento-rose,25718082,3
+sanhao_love,25718082,4
+114086034,25718082,3
+101646420,25718082,2
+55496858,25718082,4
+8342264,25718082,4
+78757579,25718082,3
+57235976,25718082,5
+36038385,25718082,2
+wangmian0729,25718082,2
+3249318,25718082,4
+132368658,25718082,5
+43748947,25718082,3
+41734674,25718082,3
+70654607,25718082,5
+48122099,25718082,-1
+4841319,25718082,3
+yiduanhu,25718082,3
+130496328,25718082,3
+31555036,25718082,4
+85318757,25718082,4
+50219991,25718082,3
+smilewsy,25718082,3
+smilewsy,25718082,3
+70152793,25718082,4
+veady,25718082,4
+46951502,25718082,4
+sunliangyousu,25718082,2
+antonzi13,25718082,3
+clcjim,25718082,4
+132210201,25718082,5
+72792251,25718082,4
+123688744,25718082,4
+58015786,25718082,3
+68543528,25718082,3
+urannus,25718082,3
+mycio,25718082,3
+54701567,25718082,2
+ILWTFT,25718082,4
+61775961,25718082,3
+18349242,25718082,2
+saywhataaaaaa,25718082,4
+61468698,25718082,3
+61468698,25718082,3
+31790213,25718082,4
+4158579,25718082,4
+S-hushubao,25718082,3
+54721365,25718082,4
+52738182,25718082,4
+51255478,25718082,4
+132331115,25718082,4
+45194450,25718082,4
+80796822,25718082,5
+51606142,25718082,3
+sunnysunnysunny,25718082,2
+71254966,25718082,3
+88292094,25718082,3
+jinweishen,25718082,2
+2179932,25718082,2
+58494684,25718082,1
+stower,25718082,3
+banboozhao,25718082,-1
+53624567,25718082,4
+ameliefei,25718082,3
+54865791,25718082,4
+chenhehechen,25718082,3
+126465508,25718082,5
+65302462,25718082,3
+aaaadong,25718082,5
+48781224,25718082,4
+3718804,25718082,3
+black201,25718082,4
+45484348,25718082,4
+119619987,25718082,4
+48894602,25718082,3
+leidianboy,25718082,2
+64209305,25718082,4
+88174425,25718082,3
+yge007,25718082,4
+justinwu0129,25718082,3
+43650596,25718082,2
+72490563,25718082,4
+61985462,25718082,4
+84039577,25718082,3
+56109881,25718082,-1
+47835316,25718082,4
+rengzai1893,25718082,2
+Ansheng_vivi,25718082,4
+loukedeguo,25718082,4
+110396643,25718082,4
+baibi,25718082,-1
+130817915,25718082,3
+2536177,25718082,5
+1207766,25718082,5
+X-Vin,25718082,4
+63767330,25718082,4
+9172847,25718082,4
+3814643,25718082,3
+43096733,25718082,4
+72277659,25718082,4
+60804345,25718082,3
+63110579,25718082,2
+47745204,25718082,4
+88132855,25718082,3
+57998285,25718082,3
+45415867,25718082,4
+45852274,25718082,4
+55914846,25718082,4
+yirenyijianyima,25718082,5
+3130809,25718082,2
+yaodan8819,25718082,3
+jackshining,25718082,4
+73258869,25718082,4
+49670470,25718082,2
+wwnoah,25718082,4
+33649081,25718082,2
+prana27,25718082,3
+97682532,25718082,4
+57662070,25718082,4
+Qrainbow,25718082,3
+40105087,25718082,3
+16743975,25718082,3
+69807491,25718082,4
+61376673,25718082,3
+119838841,25718082,4
+41283150,25718082,4
+65537837,25718082,5
+62971840,25718082,4
+53025259,25718082,3
+73936235,25718082,3
+46495423,25718082,5
+2596903,25718082,3
+58035552,25718082,3
+63234056,25718082,4
+Su33er,25718082,4
+132067724,25718082,3
+66782031,25718082,3
+64136119,25718082,4
+zyx321,25718082,3
+120003632,25718082,4
+Lisa.L,25718082,3
+52350621,25718082,3
+yaerli,25718082,4
+49269786,25718082,-1
+45242330,25718082,3
+130067485,25718082,4
+65038141,25718082,3
+ranyueqing,25718082,4
+122161339,25718082,1
+49848634,25718082,3
+64024738,25718082,4
+Babyohh,25718082,3
+yuyourongyan,25718082,-1
+mengqu520,25718082,4
+39060227,25718082,3
+3487458,25718082,4
+57633355,25718082,4
+33951055,25718082,3
+fushushuailuoli,25718082,4
+MOGUANTHONY,25718082,3
+89997290,25718082,4
+jxncm,25718082,4
+59797746,25718082,3
+59797746,25718082,3
+1637711,25718082,4
+35566168,25718082,3
+2391373,25718082,4
+13294183,25718082,3
+oishare,25718082,-1
+DEMO9266,25718082,3
+1876785,25718082,3
+2181257,25718082,4
+jeensk,25718082,3
+58180866,25718082,4
+weichengluanma,25718082,2
+33541985,25718082,4
+jessica_21,25718082,4
+51909421,25718082,3
+4603620,25718082,2
+43730319,25718082,3
+60178836,25718082,3
+42724768,25718082,1
+64834796,25718082,1
+64834796,25718082,1
+40474222,25718082,4
+momojenny,25718082,3
+132010641,25718082,5
+ET-Jac,25718082,3
+smsmsmj,25718082,3
+66168101,25718082,3
+84207817,25718082,3
+42762301,25718082,4
+30894678,25718082,4
+1844983,25718082,3
+kefeng1988,25718082,3
+81378317,25718082,3
+Hola_Nana,25718082,3
+48990593,25718082,2
+88998260,25718082,4
+49109939,25718082,4
+76737589,25718082,4
+MaiC,25718082,5
+44852938,25718082,3
+imalright,25718082,4
+51304588,25718082,5
+35578162,25718082,4
+127746270,25718082,3
+tracy4125,25718082,4
+3598072,25718082,2
+51589899,25718082,4
+51239127,25718082,5
+lucky0520,25718082,4
+76769321,25718082,3
+76206641,25718082,5
+7385201,25718082,4
+guppyfish,25718082,2
+53682563,25718082,3
+god13child,25718082,2
+61415736,25718082,4
+hRy,25718082,4
+oueidw,25718082,3
+mecerdes,25718082,3
+69959974,25718082,-1
+54874002,25718082,3
+vivienne1117,25718082,3
+puhonglei,25718082,3
+48599915,25718082,3
+56571222,25718082,5
+1364563,25718082,3
+kudosusie,25718082,3
+61602922,25718082,-1
+49488588,25718082,3
+50785660,25718082,4
+foleyfan,25718082,3
+74230231,25718082,4
+94858425,25718082,3
+97189453,25718082,4
+59679372,25718082,2
+1767400,25718082,4
+88985406,25718082,4
+49693719,25718082,-1
+tsebb,25718082,3
+66686811,25718082,4
+130271779,25718082,2
+douban7douban8,25718082,5
+87997485,25718082,3
+45066931,25718082,3
+3408833,25718082,3
+frankchi,25718082,5
+yuxingshu,25718082,4
+54027649,25718082,5
+60774527,25718082,-1
+44768876,25718082,3
+65560821,25718082,4
+62141852,25718082,4
+zjnsas,25718082,4
+114462057,25718082,4
+3850532,25718082,4
+69503565,25718082,4
+zero520,25718082,4
+stephaniezl91,25718082,5
+29839010,25718082,5
+99601239,25718082,5
+45529743,25718082,3
+fengjiansun,25718082,5
+xml1112,25718082,2
+80592508,25718082,4
+we17,25718082,4
+48723518,25718082,3
+summer2lin,25718082,2
+7069657,25718082,4
+51640688,25718082,-1
+27627449,25718082,2
+43910063,25718082,4
+123028634,25718082,3
+58140285,25718082,5
+42227890,25718082,4
+120029951,25718082,4
+paopaotang1990,25718082,3
+1505838,25718082,3
+85174401,25718082,4
+131537938,25718082,5
+arcluo,25718082,2
+evalinezhou,25718082,4
+3411545,25718082,3
+76002759,25718082,4
+marinesj,25718082,2
+zhxyl,25718082,4
+43057375,25718082,3
+127680038,25718082,4
+46483875,25718082,3
+54761161,25718082,5
+3005578,25718082,4
+38044848,25718082,4
+14345802,25718082,4
+120605718,25718082,2
+microblue,25718082,3
+justcrazy,25718082,2
+cs314765478,25718082,4
+21283445,25718082,4
+fashitiandian,25718082,4
+caonannan,25718082,4
+bjooooooork,25718082,3
+47440795,25718082,5
+42576821,25718082,3
+122394659,25718082,3
+42785040,25718082,3
+63374903,25718082,3
+57725754,25718082,5
+jeffchuwei,25718082,3
+3537703,25718082,3
+31948446,25718082,4
+45439094,25718082,3
+14293164,25718082,3
+1011562,25718082,4
+74060146,25718082,3
+4347444,25718082,5
+103071122,25718082,5
+51803315,25718082,4
+poemorning0326,25718082,4
+4917183,25718082,4
+99414276,25718082,3
+mooreweicheng,25718082,-1
+125212431,25718082,3
+41050537,25718082,4
+124028516,25718082,3
+90941910,25718082,3
+49260594,25718082,4
+yuyanlin,25718082,5
+65181695,25718082,4
+2596637,25718082,5
+Giraffe830,25718082,4
+hawords,25718082,4
+49967601,25718082,-1
+loveirina,25718082,3
+imguigui,25718082,-1
+124378307,25718082,-1
+poochai,25718082,5
+fashioncai,25718082,4
+41680917,25718082,4
+95166626,25718082,4
+54265487,25718082,3
+leebins,25718082,4
+sagtree,25718082,4
+43930540,25718082,4
+67310186,25718082,5
+114144115,25718082,4
+57640790,25718082,3
+sbandsthfrjelly,25718082,3
+SeanEleven,25718082,4
+45737583,25718082,-1
+85395736,25718082,4
+98585435,25718082,3
+53631000,25718082,3
+49332508,25718082,-1
+2107434,25718082,4
+46936953,25718082,3
+blueskyfly,25718082,3
+EMOROAM,25718082,4
+never-land-bird,25718082,3
+58605674,25718082,3
+79970005,25718082,4
+67551894,25718082,4
+48921552,25718082,4
+Unique....,25718082,3
+67523189,25718082,5
+51281256,25718082,3
+lixixi1995,25718082,4
+99270815,25718082,2
+55705224,25718082,2
+67763131,25718082,5
+3617454,25718082,3
+hairgirl,25718082,3
+chenhaifang,25718082,4
+63923908,25718082,2
+bluegatecrossin,25718082,4
+2977822,25718082,2
+darlingm,25718082,2
+zooyam,25718082,4
+53854833,25718082,5
+52261245,25718082,5
+ycy19870313,25718082,4
+popgustudio,25718082,3
+27780120,25718082,-1
+V.c,25718082,4
+MightyAtom,25718082,4
+kamekazuya,25718082,2
+Mianmian.,25718082,3
+debussy,25718082,3
+NYKR,25718082,-1
+4912264,25718082,3
+14594315,25718082,4
+Ertu,25718082,4
+xiaojiongxia,25718082,5
+3513714,25718082,4
+1793602,25718082,3
+judymclennon,25718082,5
+18360610,25718082,3
+50625254,25718082,3
+61351953,25718082,5
+49177179,25718082,-1
+58338006,25718082,2
+120418587,25718082,3
+120418587,25718082,3
+81870071,25718082,4
+54983933,25718082,3
+29519193,25718082,5
+99669308,25718082,4
+44845598,25718082,5
+50400133,25718082,3
+37731857,25718082,3
+35937463,25718082,4
+53223737,25718082,5
+49553203,25718082,-1
+55976298,25718082,3
+54672845,25718082,-1
+47193126,25718082,3
+41758984,25718082,3
+qianlongwu,25718082,4
+83269650,25718082,2
+misssmart,25718082,4
+78987156,25718082,3
+2179284,25718082,-1
+39003448,25718082,4
+noh55iw,25718082,1
+bearhao1976,25718082,4
+47651632,25718082,5
+46588781,25718082,4
+1767731,25718082,3
+Cliaoliao,25718082,-1
+avrilyian,25718082,3
+dingding1113,25718082,4
+qjy,25718082,3
+68238165,25718082,2
+74766860,25718082,3
+91785401,25718082,3
+Popdai,25718082,5
+AlessiaHey,25718082,4
+2353761,25718082,4
+venus3255,25718082,4
+lylayh,25718082,3
+2842455,25718082,4
+91728467,25718082,5
+91728467,25718082,5
+iappler,25718082,1
+nicy119,25718082,3
+46866923,25718082,4
+53430385,25718082,4
+70587570,25718082,3
+xx218,25718082,3
+4342329,25718082,5
+qqkidz,25718082,3
+hdx1991,25718082,2
+zhangrihe,25718082,3
+126039569,25718082,2
+66650863,25718082,3
+31449811,25718082,4
+14341331,25718082,3
+freelancy,25718082,-1
+samy0868,25718082,4
+dale0421,25718082,3
+104409838,25718082,3
+50342310,25718082,3
+61927827,25718082,3
+wanru904,25718082,5
+4183957,25718082,4
+49362263,25718082,4
+2383316,25718082,3
+4269560,25718082,3
+4160312,25718082,4
+80894285,25718082,3
+68968517,25718082,3
+bluebelieve9,25718082,2
+graceoklove,25718082,3
+46435584,25718082,4
+1998903,25718082,2
+32911362,25718082,4
+94111504,25718082,5
+yumiaowater,25718082,1
+luoqiuyue,25718082,3
+vivislove,25718082,2
+92673816,25718082,4
+3028605,25718082,4
+zuozuoqing,25718082,3
+ruoren,25718082,3
+63689594,25718082,4
+50712363,25718082,3
+91515979,25718082,1
+cccclay,25718082,3
+48932297,25718082,4
+1482191,25718082,3
+75987958,25718082,4
+ilovekyoko,25718082,3
+56352355,25718082,4
+45473293,25718082,3
+2646782,25718082,5
+pussy...,25718082,3
+76018725,25718082,3
+2187326,25718082,3
+42907481,25718082,4
+Elvis-lx3,25718082,2
+sade1996,25718082,-1
+1823227,25718082,4
+130930909,25718082,-1
+45982566,25718082,3
+1828898,25718082,4
+sofafish,25718082,2
+82706451,25718082,5
+130944160,25718082,4
+6529519,25718082,5
+47605443,25718082,3
+44473457,25718082,3
+4585217,25718082,3
+130787417,25718082,4
+sarabilau2,25718082,4
+alei7774,25718082,3
+winterppt,25718082,4
+41922022,25718082,1
+haimingbu,25718082,3
+52572544,25718082,4
+adonis72,25718082,3
+lostef,25718082,2
+52125579,25718082,2
+49924796,25718082,4
+60588744,25718082,3
+danshuyl,25718082,5
+beibeiyu,25718082,3
+who_a_hana,25718082,3
+71755062,25718082,2
+61409117,25718082,3
+echorus-walker,25718082,-1
+3051416,25718082,-1
+vinciwang,25718082,3
+64004899,25718082,5
+up35294900,25718082,3
+110901020,25718082,1
+64122386,25718082,3
+27432217,25718082,3
+4592394,25718082,3
+65805429,25718082,3
+jieup,25718082,5
+shingle,25718082,3
+Duxiaochong,25718082,4
+48525161,25718082,2
+idiot.child,25718082,5
+130164378,25718082,4
+81351219,25718082,3
+46749955,25718082,4
+51007787,25718082,3
+greenforest,25718082,-1
+75161318,25718082,4
+64304447,25718082,4
+4107805,25718082,5
+yuxiaodi1988,25718082,3
+yoyoloveyou,25718082,4
+sunalsorise,25718082,4
+a632157547,25718082,2
+48547507,25718082,4
+35736307,25718082,3
+15440906,25718082,3
+monkey007,25718082,3
+52352034,25718082,3
+3758190,25718082,3
+94862134,25718082,4
+49986348,25718082,-1
+72645709,25718082,3
+toysfactory,25718082,-1
+81795033,25718082,3
+77427319,25718082,4
+57834295,25718082,3
+43210840,25718082,3
+50032886,25718082,5
+46368829,25718082,3
+sona302,25718082,-1
+MandyChiang,25718082,4
+51257639,25718082,4
+23543377,25718082,4
+59914726,25718082,2
+47473114,25718082,2
+28130069,25718082,3
+freenest,25718082,3
+130880509,25718082,3
+57931932,25718082,4
+happybeibei,25718082,4
+60729691,25718082,4
+2830944,25718082,5
+48042943,25718082,3
+78667857,25718082,2
+freedomtravell,25718082,3
+xiaodaohuifei,25718082,4
+76584740,25718082,4
+samsyu,25718082,2
+raincatlee,25718082,4
+lanebuxia,25718082,3
+40140527,25718082,4
+100267332,25718082,4
+he_wei,25718082,4
+77557534,25718082,3
+mydream0819,25718082,4
+27218781,25718082,3
+SummerRyanShu,25718082,4
+SA69,25718082,3
+44736605,25718082,4
+69028420,25718082,4
+69209559,25718082,4
+63672355,25718082,3
+46968893,25718082,4
+59822585,25718082,4
+2320052,25718082,4
+LWODE,25718082,3
+2790567,25718082,3
+99806468,25718082,4
+61198366,25718082,-1
+shineone,25718082,3
+25350324,25718082,3
+21606016,25718082,3
+101915583,25718082,3
+gongzitian,25718082,4
+61171869,25718082,1
+77581060,25718082,3
+36379679,25718082,3
+43801354,25718082,2
+woaini-0945,25718082,3
+3174755,25718082,4
+itachi-j,25718082,4
+3318915,25718082,3
+1091787,25718082,3
+119489543,25718082,4
+59285776,25718082,3
+71193524,25718082,3
+50642846,25718082,4
+36816402,25718082,4
+totorawu,25718082,4
+wuhuihong1992,25718082,-1
+leelala,25718082,4
+dreamingkitty,25718082,-1
+40436346,25718082,4
+stella890720,25718082,2
+56582885,25718082,4
+4622525,25718082,2
+83183535,25718082,5
+weakness,25718082,3
+guyuejiayu,25718082,4
+59379634,25718082,5
+abc1985,25718082,1
+jiatianyu1,25718082,3
+yumoxin,25718082,4
+50472438,25718082,2
+63469864,25718082,4
+43487279,25718082,4
+onshuway,25718082,2
+45184440,25718082,4
+itsdesire,25718082,2
+49854579,25718082,4
+mjtang,25718082,3
+howlongthenamei,25718082,4
+wtz20021108,25718082,3
+52211403,25718082,5
+30836790,25718082,3
+61669464,25718082,3
+jiangchongzhi,25718082,4
+guangnianji90,25718082,5
+64359754,25718082,4
+xs2019,25718082,3
+summerose,25718082,4
+lanl,25718082,3
+50478757,25718082,4
+10724888,25718082,5
+1456080,25718082,4
+2290969,25718082,4
+54188610,25718082,3
+123634795,25718082,4
+72607148,25718082,4
+50174936,25718082,4
+74762630,25718082,4
+wangxiaoqing,25718082,4
+114353499,25718082,4
+omega333,25718082,1
+38138346,25718082,3
+huangjungeng,25718082,3
+zoelee915010,25718082,4
+1261337,25718082,3
+63781325,25718082,2
+43682942,25718082,3
+49180179,25718082,3
+rmj89,25718082,1
+GL-LOLI,25718082,5
+tangshundgar,25718082,3
+kinolin,25718082,3
+48132735,25718082,4
+longlanglang,25718082,4
+51921097,25718082,3
+50732750,25718082,3
+4096669,25718082,2
+103343276,25718082,4
+82264890,25718082,4
+102015485,25718082,3
+snowdrop14,25718082,3
+62501092,25718082,4
+65137092,25718082,4
+2189292,25718082,3
+crpily,25718082,3
+11294260,25718082,5
+2187951,25718082,3
+90795414,25718082,4
+40110852,25718082,4
+91821624,25718082,4
+58457804,25718082,2
+130658738,25718082,2
+75798141,25718082,4
+joysu,25718082,3
+63572086,25718082,4
+kayefan,25718082,-1
+sennia,25718082,3
+49182005,25718082,3
+YH222,25718082,4
+53804710,25718082,4
+54631324,25718082,5
+108821133,25718082,3
+Daisy777777777,25718082,-1
+tina.19891029,25718082,3
+58626683,25718082,5
+janejanegulu,25718082,2
+3656467,25718082,3
+47430266,25718082,4
+62379540,25718082,4
+54010420,25718082,4
+ruo,25718082,3
+64318494,25718082,4
+28104542,25718082,5
+60201729,25718082,4
+39093072,25718082,4
+yamiko,25718082,3
+39727226,25718082,-1
+caixiaofeng1992,25718082,4
+52226835,25718082,4
+mhg,25718082,-1
+bqx0888,25718082,3
+48400640,25718082,3
+47705439,25718082,4
+68539735,25718082,3
+62291927,25718082,4
+124887489,25718082,4
+84499627,25718082,2
+51053310,25718082,3
+unclelongneck,25718082,3
+51836771,25718082,3
+48163178,25718082,-1
+moesolo,25718082,4
+TOJ1992,25718082,3
+61382720,25718082,3
+58405499,25718082,4
+93607054,25718082,4
+5012885,25718082,4
+47171466,25718082,3
+heysoulsister,25718082,3
+59378072,25718082,3
+61289986,25718082,3
+yuedawei,25718082,4
+1454027,25718082,-1
+levone,25718082,3
+sweetiantian,25718082,3
+wj8198026,25718082,3
+4150144,25718082,3
+66427798,25718082,4
+53477607,25718082,1
+1370640,25718082,2
+43241733,25718082,3
+60663519,25718082,-1
+2054495,25718082,3
+56921126,25718082,-1
+artofloving,25718082,4
+butten,25718082,3
+47409126,25718082,3
+53393312,25718082,3
+56351830,25718082,2
+66991726,25718082,4
+21331611,25718082,-1
+76509928,25718082,3
+louis15yao,25718082,4
+58257487,25718082,3
+3880844,25718082,3
+erwa,25718082,3
+74073772,25718082,4
+60415526,25718082,-1
+129685348,25718082,4
+79846802,25718082,5
+39299123,25718082,4
+nancy8787,25718082,3
+roseandwater,25718082,4
+109067501,25718082,4
+joajoazzz,25718082,4
+46061693,25718082,4
+65683142,25718082,3
+34219043,25718082,3
+jessica731,25718082,4
+56930842,25718082,-1
+2249187,25718082,4
+zoe_su,25718082,3
+50328721,25718082,4
+lalalatz,25718082,2
+57974735,25718082,1
+echoat1995,25718082,1
+18984732,25718082,2
+53880625,25718082,5
+elephant723,25718082,5
+97010885,25718082,3
+yvonne9254,25718082,3
+50444681,25718082,4
+74624861,25718082,3
+wytwumin,25718082,4
+103632230,25718082,2
+58930883,25718082,1
+frankie_sy,25718082,3
+51549441,25718082,3
+55669660,25718082,4
+67529255,25718082,4
+130418392,25718082,4
+27571749,25718082,3
+119404798,25718082,3
+rurucat,25718082,1
+kiwoo,25718082,3
+midautumnsong,25718082,1
+41089258,25718082,4
+Joacy19900902,25718082,4
+ddj814,25718082,3
+34507488,25718082,3
+59524621,25718082,2
+58078285,25718082,4
+94701248,25718082,4
+irockbunny,25718082,4
+68040274,25718082,4
+ilovemyself,25718082,1
+4654940,25718082,3
+babytuoxier,25718082,5
+esther11yiyi,25718082,-1
+zhouxiaotong,25718082,3
+40506185,25718082,4
+129369858,25718082,4
+63142359,25718082,2
+70005321,25718082,1
+livecho,25718082,2
+69448551,25718082,5
+69448551,25718082,5
+phibby,25718082,1
+bobolu,25718082,3
+4389676,25718082,3
+34140064,25718082,4
+54090244,25718082,4
+cristinaburke,25718082,4
+41206383,25718082,-1
+p_summer,25718082,-1
+127322008,25718082,3
+1405117,25718082,-1
+xiaobai_zw,25718082,3
+43302206,25718082,4
+53307313,25718082,3
+119547725,25718082,3
+67529935,25718082,1
+46168276,25718082,2
+67080689,25718082,3
+60614169,25718082,4
+78786637,25718082,3
+3410802,25718082,3
+mangodream,25718082,2
+124741216,25718082,4
+43388977,25718082,4
+56325753,25718082,3
+summer4_ever,25718082,2
+1555181,25718082,2
+25795086,25718082,3
+10557307,25718082,4
+77048663,25718082,5
+79190002,25718082,3
+wfxs,25718082,3
+74234828,25718082,3
+78233888,25718082,5
+14523458,25718082,4
+61219547,25718082,4
+sred0727,25718082,4
+123129041,25718082,4
+sizuka3n,25718082,2
+39618439,25718082,4
+melody.wong,25718082,3
+chusijie,25718082,4
+everlastingEGO,25718082,4
+wcwc,25718082,5
+114391382,25718082,5
+Eudemonia-moon,25718082,2
+resurgam92dawn,25718082,3
+48713379,25718082,4
+kimomo,25718082,2
+51497873,25718082,3
+75243231,25718082,5
+cathyclan,25718082,3
+fish6058,25718082,4
+53617950,25718082,4
+atishoosnap,25718082,-1
+58189702,25718082,-1
+92930894,25718082,5
+50367533,25718082,4
+1128775,25718082,5
+shuixieqingtai,25718082,4
+Miss.Z.,25718082,1
+62048217,25718082,3
+46340259,25718082,-1
+48119983,25718082,4
+50620373,25718082,4
+50222666,25718082,-1
+3579800,25718082,3
+67153884,25718082,5
+casa_nova,25718082,2
+87561633,25718082,3
+ghostsean,25718082,4
+dianekeke,25718082,4
+61907684,25718082,3
+57341642,25718082,4
+83371005,25718082,4
+maxdoreen,25718082,-1
+4196011,25718082,2
+43623394,25718082,1
+summer0607,25718082,3
+54471063,25718082,3
+kgbbeer,25718082,4
+sleepwalk,25718082,3
+81660493,25718082,3
+miss90,25718082,3
+mwangym,25718082,4
+guandao--,25718082,3
+chongandseven,25718082,4
+architectmike,25718082,2
+37382236,25718082,3
+siriusa,25718082,3
+83214911,25718082,-1
+garyzhang,25718082,2
+60799185,25718082,4
+yanshe,25718082,4
+4560593,25718082,4
+38699051,25718082,-1
+80453139,25718082,4
+77216634,25718082,3
+avro,25718082,3
+carol1990,25718082,3
+tianranzijiegou,25718082,-1
+crowd,25718082,3
+79915546,25718082,2
+68982698,25718082,3
+yuanyuanfang,25718082,4
+4093973,25718082,4
+55969190,25718082,4
+danny1105,25718082,3
+yangyixiu1218,25718082,3
+56035155,25718082,4
+59524525,25718082,4
+52676673,25718082,3
+53705852,25718082,4
+57262819,25718082,3
+belovedeyes,25718082,4
+3602431,25718082,2
+75043360,25718082,3
+119167003,25718082,5
+42889609,25718082,3
+122943812,25718082,3
+laurelwitch,25718082,4
+59945441,25718082,3
+4043337,25718082,2
+52470011,25718082,2
+115827848,25718082,4
+103353631,25718082,4
+89944772,25718082,5
+liyixuanorz,25718082,3
+57818340,25718082,3
+82097038,25718082,5
+athena_Tang,25718082,4
+jieyaren,25718082,2
+cilar,25718082,3
+40591271,25718082,4
+98887006,25718082,4
+120358782,25718082,4
+53161271,25718082,5
+52476794,25718082,5
+76996269,25718082,-1
+58110324,25718082,5
+59554628,25718082,3
+44164811,25718082,3
+miemie-cpu,25718082,5
+Dear_Corny,25718082,3
+35569894,25718082,2
+51920001,25718082,3
+hekahuiqu,25718082,3
+49736559,25718082,-1
+eleven1989,25718082,4
+Pikachu1127,25718082,3
+47219966,25718082,-1
+60310544,25718082,5
+46680355,25718082,3
+67436408,25718082,4
+79550224,25718082,3
+62773931,25718082,-1
+jhm279697317,25718082,3
+Rainbowww,25718082,3
+qiqiyinyu,25718082,4
+76187931,25718082,3
+66427696,25718082,4
+43590001,25718082,3
+92544403,25718082,2
+62754758,25718082,2
+120117514,25718082,4
+2805171,25718082,3
+72257329,25718082,3
+a-zhu,25718082,3
+curlooo,25718082,3
+36043913,25718082,2
+54283413,25718082,4
+61294688,25718082,4
+67162659,25718082,2
+97674151,25718082,2
+dallzy,25718082,-1
+wanglinlin,25718082,4
+idida,25718082,3
+tonyzhao,25718082,3
+56739185,25718082,4
+renrumao,25718082,2
+2184129,25718082,2
+88583473,25718082,5
+1081613,25718082,3
+48480567,25718082,4
+woniu0125,25718082,3
+36399495,25718082,-1
+81692824,25718082,1
+54162881,25718082,4
+50512449,25718082,4
+89928823,25718082,3
+128760790,25718082,4
+hyy_lili,25718082,4
+angalny,25718082,3
+luciusku,25718082,3
+barcelonazhou,25718082,3
+63559969,25718082,2
+69273736,25718082,4
+57350477,25718082,4
+44574545,25718082,4
+15614454,25718082,3
+50095107,25718082,3
+cloverllx,25718082,2
+64872065,25718082,3
+32022704,25718082,2
+72146557,25718082,3
+45791033,25718082,-1
+albeedesert,25718082,3
+56871714,25718082,3
+Qoer,25718082,4
+58977732,25718082,3
+coka1999,25718082,4
+2135609,25718082,4
+127728111,25718082,3
+flamingbrisk,25718082,4
+ilovesusan,25718082,3
+silentlynini,25718082,3
+Fanyahoo,25718082,1
+mpower007,25718082,3
+39378921,25718082,3
+48112765,25718082,3
+2730322,25718082,3
+3765272,25718082,3
+26374508,25718082,3
+2106137,25718082,-1
+liszt_pp,25718082,3
+yu830,25718082,5
+tanosimi,25718082,5
+34006126,25718082,2
+76374701,25718082,4
+isismay,25718082,5
+48859024,25718082,4
+58596965,25718082,4
+irenemi,25718082,4
+65321007,25718082,2
+1433006,25718082,3
+70421764,25718082,2
+Gos_mirror,25718082,2
+44020426,25718082,3
+61295594,25718082,4
+62562108,25718082,5
+greenmoon55,25718082,3
+69529988,25718082,3
+59859213,25718082,4
+87772667,25718082,-1
+59217273,25718082,4
+84195404,25718082,-1
+42421580,25718082,5
+zp090915,25718082,3
+1665848,25718082,2
+10898449,25718082,4
+54770373,25718082,4
+summerx7,25718082,-1
+51865230,25718082,4
+WWW920225,25718082,4
+57856212,25718082,3
+blueskyky,25718082,3
+hearingmoon,25718082,3
+56840457,25718082,5
+50293134,25718082,3
+115702103,25718082,2
+66333721,25718082,3
+72815235,25718082,4
+53485894,25718082,3
+65184093,25718082,4
+2340389,25718082,2
+yaoszoo,25718082,3
+aNeEr,25718082,4
+81095299,25718082,4
+3560661,25718082,4
+55942870,25718082,4
+flowertide,25718082,2
+jurgenzn,25718082,4
+83722941,25718082,3
+50836289,25718082,3
+13570007,25718082,4
+RY,25718082,2
+55850316,25718082,2
+ydyie,25718082,3
+ather,25718082,3
+Lou-yingying,25718082,4
+79343051,25718082,3
+xunjie,25718082,2
+51255691,25718082,4
+46914079,25718082,3
+kiki204629,25718082,4
+64880714,25718082,2
+60808695,25718082,4
+50278650,25718082,4
+1997569,25718082,4
+ccppeyre,25718082,4
+62340238,25718082,3
+64010291,25718082,3
+lvtibet,25718082,-1
+33538142,25718082,4
+metaboo,25718082,2
+54324041,25718082,4
+87903865,25718082,4
+63949906,25718082,4
+124959172,25718082,3
+elinli00,25718082,4
+vivianchance,25718082,4
+71374005,25718082,3
+65885890,25718082,3
+48683487,25718082,4
+yifei1110,25718082,2
+49174954,25718082,4
+2675546,25718082,3
+48440561,25718082,-1
+qiao851220,25718082,4
+Song1183,25718082,3
+52772399,25718082,4
+121602100,25718082,2
+72692029,25718082,3
+hugoshen,25718082,3
+madiwu,25718082,1
+zhzh_0831,25718082,1
+67027216,25718082,3
+54810722,25718082,2
+cheer313,25718082,2
+zxjtmac,25718082,3
+zxjtmac,25718082,3
+24829405,25718082,4
+43044093,25718082,3
+2889153,25718082,1
+26438724,25718082,3
+59618340,25718082,4
+coocoo,25718082,4
+amberVan,25718082,5
+xiaojiaoluo1990,25718082,4
+53996515,25718082,-1
+sofarpluto,25718082,3
+57583046,25718082,3
+3639221,25718082,3
+59853298,25718082,3
+zhangmz,25718082,1
+3958061,25718082,-1
+3502602,25718082,3
+pkt1993,25718082,3
+32767171,25718082,3
+48072166,25718082,2
+50109915,25718082,3
+83507458,25718082,3
+51250904,25718082,3
+kring,25718082,3
+4768947,25718082,2
+64786067,25718082,4
+45241922,25718082,4
+heavenmo,25718082,4
+55325388,25718082,4
+markpen,25718082,4
+4630938,25718082,3
+daixiaobao,25718082,2
+carissafromhz,25718082,4
+73649367,25718082,4
+57102566,25718082,-1
+1507059,25718082,4
+cloudydream,25718082,3
+ZHFan,25718082,3
+QINGFENGDIEWU,25718082,3
+120299687,25718082,3
+120299687,25718082,3
+yonugyouyou,25718082,4
+4042513,25718082,3
+59174716,25718082,3
+4203877,25718082,3
+49290705,25718082,4
+70961097,25718082,4
+53497780,25718082,2
+45980116,25718082,4
+4239908,25718082,3
+40281080,25718082,4
+nnyyamm,25718082,-1
+48917226,25718082,4
+61967626,25718082,3
+M_iao,25718082,4
+Vicky0507,25718082,3
+daodaowhut,25718082,4
+3899575,25718082,3
+35703098,25718082,3
+kefishfish,25718082,4
+4165611,25718082,3
+iris77yaxo,25718082,4
+laudee,25718082,4
+kimi-1119,25718082,3
+53665197,25718082,3
+CXX90622,25718082,4
+SundraLee,25718082,3
+1289650,25718082,3
+mattni,25718082,3
+3032632,25718082,2
+81586403,25718082,5
+64241350,25718082,2
+violep12,25718082,4
+lynn_1210,25718082,4
+58267808,25718082,4
+Ss_33,25718082,5
+pupuxiang,25718082,2
+66627790,25718082,4
+43648335,25718082,3
+alenhe,25718082,3
+cindypark,25718082,4
+45375152,25718082,3
+78977506,25718082,4
+87338273,25718082,1
+1528379,25718082,3
+dali92,25718082,5
+54613827,25718082,-1
+11542932,25718082,3
+s1219snow,25718082,2
+122777327,25718082,4
+cyansugar,25718082,3
+33663407,25718082,2
+53906378,25718082,3
+88378303,25718082,4
+s_3,25718082,4
+65532408,25718082,4
+51092958,25718082,4
+liyukun518,25718082,4
+63583816,25718082,2
+joemayxu,25718082,3
+62745830,25718082,5
+yesifei,25718082,5
+sahikaru,25718082,4
+ajwang1031,25718082,4
+49809768,25718082,3
+1042464,25718082,2
+clarattttt,25718082,2
+IAMVILLIAN,25718082,3
+112822542,25718082,3
+oceanmumu,25718082,4
+musichellsing,25718082,3
+45944952,25718082,4
+53476786,25718082,4
+91955429,25718082,3
+57086582,25718082,5
+12670510,25718082,3
+NeverLate,25718082,2
+zi,25718082,5
+ranfei,25718082,2
+methuselah,25718082,2
+49520759,25718082,3
+31971792,25718082,5
+28633682,25718082,3
+60484236,25718082,4
+wait2000,25718082,3
+iyyhua,25718082,2
+46394662,25718082,2
+lilixu89,25718082,4
+chelsea_baker,25718082,3
+13053957,25718082,4
+54726075,25718082,2
+yuyangaiyang,25718082,5
+themostyu,25718082,3
+moseli,25718082,4
+79852634,25718082,4
+74418627,25718082,3
+yayain,25718082,5
+3473473,25718082,2
+65283141,25718082,3
+121511870,25718082,4
+loveless002,25718082,4
+125655857,25718082,3
+59718247,25718082,5
+mistdance,25718082,5
+45088175,25718082,3
+cucnmql,25718082,4
+vinjun,25718082,2
+3287454,25718082,2
+77832595,25718082,3
+125371262,25718082,3
+73856461,25718082,3
+122604724,25718082,4
+80098161,25718082,5
+63726628,25718082,5
+Elsa_MLion,25718082,4
+68710427,25718082,4
+JourLouis,25718082,4
+120973908,25718082,4
+nangongmocheng,25718082,-1
+maychendaxu,25718082,4
+67209913,25718082,3
+eternitylove,25718082,4
+68376395,25718082,5
+67240379,25718082,3
+marilyn9l,25718082,3
+72783015,25718082,2
+dancyhan,25718082,3
+27713698,25718082,5
+121490085,25718082,4
+chara,25718082,3
+35877941,25718082,4
+121950217,25718082,2
+127926003,25718082,2
+2438025,25718082,5
+57674944,25718082,4
+67387298,25718082,4
+37640485,25718082,2
+Fan-evil,25718082,4
+ki-jlp,25718082,-1
+57762260,25718082,2
+65077960,25718082,4
+50597852,25718082,5
+2942819,25718082,2
+katie00,25718082,5
+50441655,25718082,4
+leeshiuan,25718082,3
+102122606,25718082,5
+2298833,25718082,4
+suntina,25718082,3
+41680643,25718082,3
+mystory0310,25718082,3
+cindydragon,25718082,3
+summerboom,25718082,4
+Fuermofan,25718082,4
+84607154,25718082,4
+46706719,25718082,1
+3690549,25718082,-1
+somnus0319,25718082,2
+allblue,25718082,3
+ilkay,25718082,3
+erobin,25718082,3
+119163796,25718082,3
+doreen333,25718082,5
+huhuijiao,25718082,5
+50566408,25718082,5
+10175471,25718082,4
+dingxiang_4537,25718082,3
+echo-jian,25718082,3
+2724287,25718082,2
+tmh9390,25718082,5
+yvone1220,25718082,3
+xiaoan7EF,25718082,-1
+1335533,25718082,4
+littlepussy_wf,25718082,-1
+2734376,25718082,2
+48965557,25718082,1
+songofmomo,25718082,3
+cos2xhps,25718082,3
+1773126,25718082,3
+solavre,25718082,-1
+daizy_10,25718082,5
+wymanqin,25718082,2
+4599993,25718082,4
+coco921,25718082,4
+atian0613,25718082,5
+hiolivia,25718082,5
+huangtoufa,25718082,4
+83853096,25718082,4
+44207067,25718082,2
+96290717,25718082,4
+douxing,25718082,5
+qusibaxu,25718082,2
+myxue,25718082,5
+65907866,25718082,2
+126980247,25718082,3
+MaymySumOn,25718082,4
+5580906,25718082,3
+62600527,25718082,3
+93205302,25718082,4
+baisechengai,25718082,3
+baisechengai,25718082,3
+33065317,25718082,5
+121295715,25718082,4
+69679800,25718082,2
+hexiumin,25718082,4
+72791312,25718082,4
+121344527,25718082,4
+1726234,25718082,4
+60701395,25718082,3
+60886329,25718082,4
+64852339,25718082,3
+kid131,25718082,3
+57819875,25718082,-1
+shooqun,25718082,3
+Carmeliano,25718082,4
+78966790,25718082,3
+45509005,25718082,3
+celiaxiaowu,25718082,3
+51882960,25718082,3
+3988346,25718082,3
+antime,25718082,2
+3140834,25718082,3
+106538681,25718082,2
+45223077,25718082,2
+2367248,25718082,4
+zoujian-999,25718082,4
+56765472,25718082,3
+58739148,25718082,2
+hukuikui,25718082,4
+121162406,25718082,2
+3336467,25718082,4
+44436573,25718082,3
+wcwyj,25718082,4
+81982639,25718082,4
+44284522,25718082,3
+3080619,25718082,5
+55769420,25718082,5
+66458815,25718082,3
+42144339,25718082,4
+Isabella_baby,25718082,2
+2169690,25718082,4
+chenolivia,25718082,3
+wenroubuzhu,25718082,3
+63063218,25718082,4
+melancia,25718082,4
+60156464,25718082,5
+58451504,25718082,4
+lleiou,25718082,3
+justinliang,25718082,4
+zgd0914,25718082,4
+eokmiamia,25718082,3
+j23ju,25718082,3
+kaixian,25718082,3
+shan0102,25718082,3
+81784514,25718082,-1
+emmazq,25718082,3
+65441793,25718082,-1
+59770777,25718082,4
+3833311,25718082,4
+veroniquey,25718082,4
+55272945,25718082,-1
+summermaoyi,25718082,4
+sucila,25718082,4
+butterfly123,25718082,3
+62719535,25718082,4
+jiamianren258,25718082,4
+56998996,25718082,2
+121270653,25718082,3
+87035372,25718082,3
+74920289,25718082,3
+sanshuicaosuwen,25718082,3
+1133756,25718082,3
+41283752,25718082,3
+douban8020,25718082,3
+scorpionnie,25718082,5
+48877659,25718082,4
+64218065,25718082,4
+80820907,25718082,4
+51617541,25718082,3
+4357598,25718082,4
+44335994,25718082,3
+bankeed,25718082,4
+55886505,25718082,3
+64025963,25718082,3
+teng.,25718082,5
+1437812,25718082,3
+1828101,25718082,3
+coffeejikou,25718082,3
+StephanieHsu,25718082,5
+61855461,25718082,3
+56049092,25718082,3
+52838594,25718082,3
+43782586,25718082,3
+49382689,25718082,2
+74573393,25718082,3
+4513908,25718082,3
+jiduohuanle,25718082,4
+88081047,25718082,2
+56759438,25718082,3
+44483182,25718082,3
+2901407,25718082,3
+itty,25718082,3
+117301439,25718082,5
+61823621,25718082,4
+hdjjys,25718082,3
+cherrylr,25718082,5
+55649933,25718082,-1
+giacintaxx,25718082,4
+57139809,25718082,4
+43374462,25718082,4
+61474383,25718082,4
+120094445,25718082,4
+Nur,25718082,4
+60406508,25718082,2
+8872886,25718082,3
+17871243,25718082,3
+72133543,25718082,4
+97453118,25718082,4
+60743609,25718082,3
+85644072,25718082,4
+56314850,25718082,2
+59604055,25718082,3
+66179494,25718082,3
+45382410,25718082,3
+53056312,25718082,2
+56922790,25718082,3
+41586641,25718082,3
+yousuosi77,25718082,3
+79861164,25718082,4
+115898172,25718082,2
+75555636,25718082,5
+47519520,25718082,4
+64576009,25718082,5
+68004061,25718082,3
+16234584,25718082,4
+2664898,25718082,4
+53353893,25718082,3
+49064751,25718082,3
+51483335,25718082,3
+59901599,25718082,4
+50063528,25718082,4
+50497978,25718082,5
+2365251,25718082,4
+122981054,25718082,3
+54585048,25718082,3
+53368926,25718082,3
+OneiLulu,25718082,3
+YuSu,25718082,4
+luokuibumeng,25718082,5
+lingqingchun,25718082,-1
+115828470,25718082,3
+75538960,25718082,4
+58457160,25718082,3
+48364387,25718082,3
+ifIdieyoung,25718082,4
+41967985,25718082,4
+hehaiyan,25718082,3
+59307428,25718082,4
+69726519,25718082,3
+66754337,25718082,3
+52259960,25718082,3
+57880322,25718082,4
+71984544,25718082,4
+bela,25718082,3
+45954041,25718082,3
+44226147,25718082,3
+33293514,25718082,3
+57479148,25718082,4
+Xuanita,25718082,3
+68657829,25718082,4
+57090877,25718082,4
+ningning9164,25718082,-1
+activecherry,25718082,4
+Esine,25718082,4
+xcyangel111,25718082,4
+99291502,25718082,5
+45267369,25718082,-1
+1768350,25718082,5
+eastrose,25718082,3
+90967085,25718082,5
+1821069,25718082,3
+28481892,25718082,4
+Clara_liu,25718082,5
+42830550,25718082,4
+47081544,25718082,4
+126185385,25718082,2
+qfy,25718082,3
+93678725,25718082,3
+3520940,25718082,3
+47835086,25718082,-1
+2364679,25718082,4
+skyline1227,25718082,3
+3092747,25718082,4
+65142225,25718082,2
+62663500,25718082,3
+huoxingrice,25718082,3
+huayeah,25718082,2
+lichuman,25718082,1
+Slyviaaa,25718082,5
+42991062,25718082,-1
+78277110,25718082,4
+42761507,25718082,3
+lhberber,25718082,3
+Gilberte,25718082,4
+9455174,25718082,3
+85354359,25718082,3
+icefishe,25718082,3
+sjch,25718082,4
+120828757,25718082,4
+cherrytiaotiao,25718082,3
+Believes7,25718082,4
+benjune,25718082,3
+60486923,25718082,2
+44006704,25718082,3
+99812463,25718082,4
+46992157,25718082,3
+chuyichuyi,25718082,4
+71188390,25718082,5
+70931617,25718082,4
+freeup157,25718082,4
+75077274,25718082,3
+leexiaoxiao,25718082,2
+3360731,25718082,3
+yoyoyoyoyoyoyo,25718082,4
+guoguog,25718082,3
+bloodleopard,25718082,4
+115634040,25718082,3
+63531003,25718082,4
+76366076,25718082,4
+70258470,25718082,3
+50519870,25718082,3
+57331100,25718082,3
+46436848,25718082,2
+70728758,25718082,2
+47239413,25718082,3
+63715607,25718082,3
+JaceJing,25718082,3
+79420252,25718082,3
+42826387,25718082,3
+34317519,25718082,4
+chuleiwu,25718082,3
+47717774,25718082,4
+xiaotao,25718082,4
+choy,25718082,3
+skiny_orange,25718082,3
+2394327,25718082,3
+4359622,25718082,5
+124833218,25718082,4
+115534736,25718082,3
+zhangzhangzhang,25718082,4
+122968558,25718082,4
+79470377,25718082,4
+horsefly,25718082,3
+2476564,25718082,4
+61134040,25718082,4
+58290785,25718082,4
+18747582,25718082,3
+36433281,25718082,4
+39644972,25718082,3
+47924060,25718082,3
+36847599,25718082,3
+sunflowerqi,25718082,4
+73907495,25718082,4
+evahsu,25718082,4
+3643871,25718082,3
+49714893,25718082,2
+49402699,25718082,3
+59553409,25718082,5
+moveqiu,25718082,4
+35929918,25718082,4
+55348613,25718082,5
+green198641,25718082,-1
+122640507,25718082,3
+1731655,25718082,5
+80017178,25718082,3
+68511299,25718082,5
+ivydehouse,25718082,4
+70300693,25718082,4
+orchidesign,25718082,4
+nina,25718082,3
+laomo,25718082,3
+ramonachan,25718082,3
+57847628,25718082,-1
+39518332,25718082,4
+69439988,25718082,4
+87909103,25718082,3
+76698487,25718082,3
+1478036,25718082,3
+60609410,25718082,3
+wakaka1986,25718082,3
+49232664,25718082,5
+MENG-ARCHI,25718082,5
+129843147,25718082,2
+skyjadebear,25718082,4
+30560755,25718082,5
+yaoyaofhy,25718082,5
+47066736,25718082,4
+1535340,25718082,2
+Makoto614,25718082,3
+80537833,25718082,4
+lwchenlin,25718082,2
+zhangrenran,25718082,3
+64978016,25718082,3
+KOBENYF,25718082,4
+li_1314,25718082,1
+41594789,25718082,3
+2650205,25718082,4
+59535372,25718082,3
+69067944,25718082,3
+25968212,25718082,-1
+78399714,25718082,4
+yekarey,25718082,4
+2498446,25718082,5
+65981408,25718082,2
+75718452,25718082,2
+120358201,25718082,5
+80729816,25718082,5
+53214522,25718082,5
+inb612,25718082,5
+76320004,25718082,4
+55617091,25718082,3
+62497997,25718082,3
+52721473,25718082,3
+soul922,25718082,3
+69806466,25718082,3
+123413024,25718082,2
+s1975,25718082,3
+99668636,25718082,3
+45383029,25718082,4
+Joie,25718082,2
+sophie1990,25718082,4
+1114835,25718082,-1
+119980398,25718082,4
+guanxiaoxing,25718082,5
+1419453,25718082,4
+bastonma,25718082,5
+47725759,25718082,4
+difeijing,25718082,3
+42535612,25718082,2
+55861124,25718082,3
+2092765,25718082,4
+104445642,25718082,2
+53602953,25718082,4
+34056300,25718082,4
+37509431,25718082,3
+lunaya,25718082,3
+MeloTheFisher,25718082,3
+50420298,25718082,2
+43856464,25718082,1
+64205318,25718082,3
+64187113,25718082,4
+4654119,25718082,3
+63846338,25718082,5
+67125371,25718082,4
+phoebe_wo,25718082,4
+wyfar,25718082,4
+2773459,25718082,3
+clever_trick,25718082,2
+iamcaojie,25718082,4
+3978876,25718082,3
+lotus47,25718082,4
+49603120,25718082,5
+LynLau,25718082,4
+shanghai11,25718082,3
+120298623,25718082,4
+62194691,25718082,3
+abaocheng,25718082,3
+42137156,25718082,4
+xxxdorisxxx,25718082,2
+soulmate_z,25718082,2
+66547713,25718082,4
+62739350,25718082,5
+amer94,25718082,4
+43713017,25718082,4
+90049354,25718082,4
+104709607,25718082,4
+jisixue0111,25718082,3
+xiaojia86,25718082,2
+4340874,25718082,4
+91498001,25718082,3
+caocaoa,25718082,3
+xiaoyaozizai,25718082,3
+biskup,25718082,2
+sufie,25718082,3
+49168685,25718082,4
+4478283,25718082,4
+thecrespo,25718082,4
+yzzlovezj,25718082,3
+46935861,25718082,4
+3322566,25718082,3
+l726,25718082,3
+53501877,25718082,5
+chenxihouse,25718082,4
+3638194,25718082,4
+92177885,25718082,4
+63171651,25718082,3
+yukizakura,25718082,1
+48503456,25718082,3
+mick3,25718082,5
+xiguatang,25718082,4
+1725877,25718082,4
+airstreet,25718082,5
+44057299,25718082,3
+raising_dawn,25718082,3
+Wasted,25718082,3
+5525460,25718082,3
+54597801,25718082,2
+48472429,25718082,3
+nbyidao,25718082,2
+83751198,25718082,1
+anniex,25718082,4
+67613065,25718082,4
+64009647,25718082,3
+meowchang,25718082,3
+16693810,25718082,-1
+livepoo,25718082,4
+DezZZZ,25718082,4
+64591940,25718082,4
+parkson,25718082,4
+51332232,25718082,4
+HugoVince,25718082,4
+NIcE_,25718082,4
+52992190,25718082,3
+55454799,25718082,3
+96893761,25718082,4
+pockettea,25718082,2
+88502851,25718082,3
+chieu,25718082,-1
+41564076,25718082,5
+crystaldrr,25718082,4
+71561935,25718082,2
+ys1013,25718082,2
+QueryLee,25718082,3
+2415644,25718082,4
+41517741,25718082,2
+cicia_lee,25718082,4
+btone0808,25718082,2
+serah,25718082,3
+115052984,25718082,4
+117701550,25718082,3
+2422182,25718082,3
+77794190,25718082,5
+kanghao413,25718082,3
+qiongyi,25718082,4
+linshang,25718082,4
+cocokidman,25718082,4
+26387979,25718082,4
+2539543,25718082,4
+amoaymo,25718082,3
+fall1114,25718082,2
+freedos,25718082,3
+81933554,25718082,4
+life2x,25718082,3
+quanzhouren,25718082,2
+WSSWHL,25718082,4
+xuyuny252,25718082,3
+icheney,25718082,4
+65197917,25718082,4
+40835496,25718082,-1
+128513143,25718082,4
+49467804,25718082,5
+87026553,25718082,4
+1653790,25718082,4
+Ranfeg,25718082,-1
+109169757,25718082,4
+1831746,25718082,3
+3980916,25718082,4
+xiaotianqing,25718082,3
+37551097,25718082,3
+51126355,25718082,5
+4834226,25718082,4
+62873685,25718082,3
+2776195,25718082,3
+119883443,25718082,3
+66888940,25718082,4
+3858083,25718082,3
+46375776,25718082,4
+sunshine-spring,25718082,4
+pluto81,25718082,4
+65417028,25718082,3
+yprenkouer,25718082,4
+50805210,25718082,4
+victorgcy1121,25718082,4
+106597439,25718082,5
+1151029,25718082,-1
+62196307,25718082,3
+67870530,25718082,3
+68912728,25718082,4
+backy-913,25718082,4
+tanya_tian,25718082,3
+chena,25718082,4
+47519598,25718082,4
+springup,25718082,5
+79322383,25718082,-1
+82387187,25718082,1
+a_cal,25718082,2
+LionManKinG,25718082,3
+109071347,25718082,1
+119280865,25718082,3
+68782306,25718082,4
+26107963,25718082,3
+73033279,25718082,2
+thereexistslove,25718082,3
+68588112,25718082,3
+108352341,25718082,3
+37160658,25718082,3
+51424042,25718082,3
+lightgreensunfl,25718082,5
+vicid,25718082,2
+babysd,25718082,4
+66771297,25718082,4
+Niann,25718082,3
+123104584,25718082,3
+just_nomadic,25718082,5
+wmymt,25718082,1
+57337773,25718082,5
+52461129,25718082,4
+chusu,25718082,3
+62186575,25718082,5
+3981445,25718082,3
+eyes1991,25718082,4
+60506014,25718082,4
+kubrick311,25718082,4
+64716010,25718082,5
+31978586,25718082,5
+knightbay,25718082,4
+51997514,25718082,4
+missaloveme,25718082,2
+61863577,25718082,4
+78776025,25718082,4
+wowanyu,25718082,4
+69608520,25718082,4
+53744128,25718082,2
+papermoon_niky,25718082,3
+yeslie,25718082,3
+92867704,25718082,5
+M.iya,25718082,4
+3685431,25718082,4
+62568293,25718082,5
+63612050,25718082,3
+tiffany0211,25718082,3
+kelly_syl,25718082,4
+2028239,25718082,3
+41457741,25718082,5
+50427973,25718082,4
+bobo.jm,25718082,5
+47387393,25718082,5
+CharleneNg,25718082,5
+baleyang,25718082,4
+1285360,25718082,4
+dogbus,25718082,4
+earthquakes,25718082,3
+69714540,25718082,4
+4290135,25718082,4
+53362350,25718082,2
+63770150,25718082,3
+3427459,25718082,3
+54542902,25718082,5
+54331010,25718082,4
+44592602,25718082,-1
+50386420,25718082,4
+52954426,25718082,5
+56557982,25718082,3
+48071996,25718082,3
+Young.forU,25718082,4
+2353617,25718082,-1
+sweetxy,25718082,3
+46425429,25718082,4
+68681180,25718082,4
+anonymousor,25718082,3
+LX22,25718082,5
+37229684,25718082,2
+yy249308405,25718082,2
+SJzzy314,25718082,4
+partybird,25718082,4
+auvauva,25718082,3
+lucy188,25718082,-1
+45937767,25718082,2
+fatiaoxiongmao,25718082,4
+62055619,25718082,3
+54578280,25718082,4
+51018099,25718082,4
+104008588,25718082,5
+juno_wang,25718082,3
+Goshawk-,25718082,4
+73722429,25718082,5
+49996599,25718082,3
+kate101,25718082,3
+stupidcat7652,25718082,-1
+81930957,25718082,4
+1369129,25718082,4
+X-able,25718082,5
+43332807,25718082,4
+41106056,25718082,4
+36518843,25718082,-1
+88648442,25718082,5
+91196196,25718082,4
+49034223,25718082,4
+46494515,25718082,5
+supremedie,25718082,3
+merengue,25718082,2
+47126133,25718082,3
+hypertxt,25718082,3
+67235309,25718082,4
+jessie223,25718082,-1
+summer4525,25718082,4
+61809588,25718082,5
+evanlee2018,25718082,3
+immmmm,25718082,3
+44866431,25718082,4
+yido312,25718082,3
+54843650,25718082,4
+51884253,25718082,3
+JakeNow,25718082,3
+59820675,25718082,3
+36342492,25718082,2
+3229284,25718082,4
+lilysld,25718082,4
+66394593,25718082,3
+48236459,25718082,-1
+amandaccforever,25718082,4
+yY.,25718082,5
+shirleyale,25718082,3
+87648315,25718082,4
+85297344,25718082,4
+46128451,25718082,3
+69755851,25718082,3
+1892627,25718082,2
+85504784,25718082,5
+55536274,25718082,4
+bluesky1314,25718082,1
+62157255,25718082,4
+58504858,25718082,4
+66615365,25718082,4
+49836065,25718082,2
+3089552,25718082,4
+55842990,25718082,3
+yihuiw,25718082,4
+OLT,25718082,5
+84681267,25718082,4
+2590915,25718082,3
+67072789,25718082,1
+2955357,25718082,3
+angle223,25718082,3
+54277204,25718082,3
+2170177,25718082,3
+lulupink,25718082,2
+ClaireL,25718082,3
+70119569,25718082,3
+xilouchen,25718082,2
+59739922,25718082,5
+lijingyu1027,25718082,3
+29900185,25718082,4
+liaojiafen,25718082,3
+37303643,25718082,5
+129582003,25718082,4
+2825518,25718082,4
+60222114,25718082,4
+imtutu,25718082,4
+13654986,25718082,3
+4749363,25718082,4
+71455047,25718082,4
+53726011,25718082,4
+redshoes1989,25718082,5
+53735942,25718082,4
+49761291,25718082,3
+xiaochi.,25718082,-1
+poly0330,25718082,4
+myTrista,25718082,3
+53010578,25718082,-1
+1495292,25718082,3
+72258844,25718082,5
+57367354,25718082,3
+53920626,25718082,3
+kikobury,25718082,3
+25982397,25718082,3
+63409040,25718082,3
+rasimya,25718082,4
+NNNNNian-,25718082,3
+55828960,25718082,4
+ibanyan,25718082,3
+26601106,25718082,4
+cancerlee,25718082,4
+xiaoye780621,25718082,-1
+64284331,25718082,4
+3442648,25718082,4
+jeffersontang,25718082,3
+103214078,25718082,3
+onedotdot,25718082,2
+71516012,25718082,3
+58695086,25718082,4
+71929336,25718082,5
+66338909,25718082,3
+79437046,25718082,-1
+2065861,25718082,-1
+77092352,25718082,3
+vera-cyw,25718082,3
+34792301,25718082,5
+66783156,25718082,4
+momo_pan,25718082,-1
+40887848,25718082,4
+2904199,25718082,3
+rankor,25718082,2
+45661291,25718082,4
+63395542,25718082,4
+60077803,25718082,3
+Osolemio,25718082,4
+irene_kirakira,25718082,4
+chengchen0121,25718082,3
+37424688,25718082,2
+rocklife_rf,25718082,5
+sheenshuay,25718082,4
+woainilyb,25718082,5
+87867332,25718082,4
+talentygw,25718082,3
+chonger3507,25718082,4
+43126900,25718082,4
+1951463,25718082,3
+2742057,25718082,4
+54724200,25718082,3
+49470710,25718082,4
+43152603,25718082,3
+45890616,25718082,4
+shaynexue,25718082,3
+3708708,25718082,4
+baqian,25718082,1
+8549482,25718082,5
+1683948,25718082,3
+1450381,25718082,4
+66514228,25718082,4
+2588629,25718082,1
+15815014,25718082,4
+xixi-0303,25718082,3
+60981917,25718082,4
+2529749,25718082,5
+42006560,25718082,5
+55843955,25718082,4
+forlang,25718082,-1
+3541486,25718082,4
+throughyoursoul,25718082,4
+kelvinshaw,25718082,3
+78169762,25718082,5
+78289516,25718082,3
+linzheng1115,25718082,3
+129101053,25718082,3
+nidazhuang,25718082,4
+64273735,25718082,2
+107556145,25718082,4
+78304786,25718082,4
+vero1012,25718082,3
+2471325,25718082,3
+74942804,25718082,4
+4083751,25718082,4
+qiqihhappy,25718082,2
+76120058,25718082,3
+72316189,25718082,2
+121942823,25718082,4
+vivianqizai,25718082,3
+more-aries,25718082,5
+119248099,25718082,3
+guanmu,25718082,5
+Outman-LV,25718082,-1
+59555735,25718082,3
+9915911,25718082,4
+44390874,25718082,4
+yuruky,25718082,1
+56413716,25718082,2
+52278915,25718082,4
+75007342,25718082,3
+yujiuwei,25718082,-1
+2771799,25718082,4
+9285913,25718082,3
+75174389,25718082,4
+yuxiangyun,25718082,5
+7402565,25718082,5
+zangtianfly,25718082,5
+hexinchen,25718082,-1
+jingrong,25718082,2
+129490479,25718082,5
+1283425,25718082,4
+82562323,25718082,4
+59779751,25718082,3
+baikey,25718082,-1
+vivi0829,25718082,3
+37679562,25718082,3
+93072236,25718082,4
+hqlan,25718082,-1
+59079436,25718082,5
+66120313,25718082,4
+51328750,25718082,4
+2984167,25718082,3
+83769093,25718082,5
+shelyin,25718082,4
+21771687,25718082,2
+livingfly,25718082,4
+alfiestudio,25718082,3
+36877826,25718082,3
+60046753,25718082,4
+Andy9,25718082,3
+58077411,25718082,4
+liuyang3728,25718082,3
+42380844,25718082,-1
+maylee530,25718082,4
+ohahahu,25718082,4
+rhonaxu,25718082,3
+1423262,25718082,4
+42738493,25718082,3
+adrianna,25718082,4
+Chenjingwang92,25718082,4
+ariadne,25718082,-1
+dier523,25718082,4
+59380890,25718082,3
+54805629,25718082,4
+lanyangyangdecc,25718082,3
+62224425,25718082,4
+62368657,25718082,5
+79862222,25718082,3
+103499118,25718082,-1
+43631308,25718082,5
+Mrs_Dalloway,25718082,3
+45324744,25718082,2
+76964275,25718082,3
+103500875,25718082,3
+boonup,25718082,4
+48168328,25718082,2
+49821466,25718082,5
+59005410,25718082,3
+58281873,25718082,5
+xuyuhong,25718082,2
+60997769,25718082,5
+4478851,25718082,4
+125147178,25718082,5
+pandaball,25718082,3
+synther,25718082,-1
+52143886,25718082,4
+102623663,25718082,4
+jerryxiao1988,25718082,3
+47485602,25718082,3
+50895629,25718082,3
+molecule,25718082,4
+lovesuki,25718082,3
+83046859,25718082,1
+1156918,25718082,4
+lydiaknight,25718082,2
+1791688,25718082,2
+luvuyec,25718082,4
+pamela516,25718082,2
+vliangfrank,25718082,3
+128200499,25718082,5
+Zesz,25718082,2
+34177291,25718082,4
+67988686,25718082,5
+76307011,25718082,4
+employee,25718082,3
+wbhwho,25718082,-1
+48079918,25718082,4
+miss_xiaoxiao,25718082,3
+liyanyi,25718082,3
+106289465,25718082,4
+53907956,25718082,4
+62799720,25718082,4
+47679672,25718082,4
+sophianexu,25718082,4
+58480998,25718082,5
+ars-joe,25718082,4
+2265138,25718082,4
+helennalove,25718082,4
+eastge,25718082,4
+x7summer,25718082,3
+Erinalin,25718082,5
+124421219,25718082,4
+lij1ani,25718082,4
+1614995,25718082,3
+35876351,25718082,4
+nianshaozi,25718082,3
+44705986,25718082,3
+1097236,25718082,4
+47488888,25718082,2
+arrowkey,25718082,3
+xuxinleo,25718082,5
+xuxinleo,25718082,5
+41786402,25718082,4
+45673649,25718082,4
+47240557,25718082,5
+3119825,25718082,3
+smallbai406,25718082,4
+115662288,25718082,4
+54893820,25718082,3
+115560708,25718082,4
+51967154,25718082,1
+VOLETASOS,25718082,4
+3371479,25718082,2
+yrvincy0622yang,25718082,3
+46885412,25718082,5
+jianguogogo,25718082,4
+babaria,25718082,3
+mokochen,25718082,3
+55764264,25718082,5
+44329176,25718082,3
+62558401,25718082,4
+68014946,25718082,3
+63277654,25718082,4
+Shutyouout0715,25718082,3
+zncu,25718082,3
+126136101,25718082,3
+49430506,25718082,4
+shgy,25718082,4
+58363019,25718082,4
+Zoekor,25718082,4
+76396808,25718082,3
+93142720,25718082,4
+4685842,25718082,4
+63189132,25718082,3
+74111114,25718082,4
+ShuangXiaodan,25718082,4
+ssz,25718082,3
+redjar,25718082,3
+FFrainbow,25718082,3
+41804187,25718082,4
+jiujiuprincess,25718082,3
+2152487,25718082,3
+75569669,25718082,3
+beefeaters,25718082,4
+hakuna927,25718082,3
+49893629,25718082,3
+34631714,25718082,4
+colacici67,25718082,4
+YiTang8941,25718082,2
+73060809,25718082,3
+jogy,25718082,3
+maoxiaofeng,25718082,4
+74376371,25718082,4
+43367544,25718082,-1
+jill426,25718082,3
+80048090,25718082,-1
+linayan,25718082,4
+kathyFU,25718082,5
+inthemelody,25718082,3
+47783311,25718082,5
+32985154,25718082,4
+4119152,25718082,4
+xxrachel,25718082,2
+38272326,25718082,3
+51192966,25718082,3
+kiwi.h,25718082,3
+31271550,25718082,4
+59721428,25718082,4
+69003402,25718082,3
+whisper75,25718082,3
+linanian,25718082,4
+tuturen,25718082,4
+phoenix722,25718082,4
+34558131,25718082,3
+lunaa,25718082,2
+Singyi,25718082,4
+qfsstj,25718082,4
+wcyn,25718082,2
+88483778,25718082,3
+52866397,25718082,3
+1950080,25718082,4
+1950080,25718082,4
+laperseus,25718082,1
+29374473,25718082,5
+45445855,25718082,2
+Vesula,25718082,4
+54635444,25718082,3
+yuebing123,25718082,1
+36060435,25718082,3
+4800840,25718082,4
+YuiAraGaki615,25718082,3
+soncurn,25718082,5
+doubandayima,25718082,3
+yangjing2011,25718082,3
+122493414,25718082,-1
+feesle,25718082,3
+4320476,25718082,5
+babywu2888,25718082,3
+sbbisabel,25718082,-1
+selinna730,25718082,4
+4720825,25718082,3
+manchukhan,25718082,4
+doa,25718082,4
+49117698,25718082,4
+vchan625,25718082,4
+princesophia,25718082,5
+starry_liu,25718082,3
+59274367,25718082,2
+2183176,25718082,3
+68878726,25718082,3
+104348290,25718082,4
+31129076,25718082,4
+anotheronexia,25718082,2
+yuxuancoslilith,25718082,3
+knight1303,25718082,3
+62097977,25718082,4
+xiawu1130,25718082,3
+61030391,25718082,4
+44919145,25718082,3
+70530619,25718082,3
+50703946,25718082,3
+kyouichigo,25718082,4
+42691855,25718082,4
+Hlrtu,25718082,4
+51363896,25718082,-1
+90127295,25718082,3
+michelleluo,25718082,2
+115204143,25718082,3
+73647644,25718082,4
+silortea,25718082,3
+42600622,25718082,-1
+103503223,25718082,4
+jieshiyu,25718082,4
+chen125,25718082,3
+2597684,25718082,3
+3238367,25718082,4
+meskelil,25718082,3
+toxichoco,25718082,3
+panpanpenny,25718082,4
+40005323,25718082,3
+bancy,25718082,2
+43606653,25718082,4
+aoihai,25718082,3
+3590759,25718082,3
+63190998,25718082,1
+21749153,25718082,3
+Iamfull,25718082,2
+50655031,25718082,2
+karly1943,25718082,3
+yutingamy,25718082,3
+43536991,25718082,3
+46714118,25718082,4
+merrychan,25718082,3
+54938751,25718082,4
+withzzc,25718082,3
+sodaorchid,25718082,3
+TiM2012start,25718082,5
+yaoye,25718082,3
+5853547,25718082,4
+jashia,25718082,3
+2123968,25718082,5
+Dawnocean,25718082,4
+yushan33,25718082,3
+y-3y17,25718082,4
+xykiss,25718082,2
+66431238,25718082,4
+shasha9022,25718082,4
+WHF_Jabel,25718082,3
+90836826,25718082,4
+126911678,25718082,5
+lovemayday,25718082,4
+abelardmus,25718082,3
+i.cheerful,25718082,4
+zhtianyu,25718082,4
+52441493,25718082,3
+fallistuzi,25718082,5
+muxiaoxu,25718082,3
+4627071,25718082,5
+58697087,25718082,2
+sulian6415,25718082,3
+laowinglok,25718082,4
+laowinglok,25718082,4
+74062182,25718082,4
+guoniaodao,25718082,4
+yishuibeige,25718082,4
+4154813,25718082,4
+phoebehsu,25718082,3
+2312238,25718082,4
+79677319,25718082,4
+101903314,25718082,4
+Alice.c.c,25718082,3
+1608288,25718082,3
+83855853,25718082,4
+62125190,25718082,5
+haliyar,25718082,4
+42394968,25718082,4
+jianinglee,25718082,4
+2206615,25718082,3
+70494982,25718082,3
+delmar,25718082,3
+52015863,25718082,-1
+canlone,25718082,5
+58279594,25718082,3
+zpoo2009,25718082,3
+hyasmaww,25718082,4
+47336635,25718082,3
+nobodyhome,25718082,2
+3170513,25718082,5
+45594284,25718082,2
+shenqingli,25718082,4
+1463503,25718082,2
+25485850,25718082,5
+y_y316,25718082,3
+tytony890115,25718082,4
+luckyanc,25718082,5
+SKIN69-L,25718082,3
+rato,25718082,4
+52702022,25718082,4
+61191191,25718082,4
+cherryswing,25718082,4
+92943106,25718082,5
+71386826,25718082,3
+angiangeng,25718082,3
+nicolastong,25718082,5
+55810022,25718082,4
+maggiemars,25718082,4
+13856427,25718082,3
+shibiebie,25718082,4
+65074680,25718082,5
+cissy223,25718082,4
+46037661,25718082,4
+53512949,25718082,4
+42280233,25718082,4
+anlan1990,25718082,4
+29149296,25718082,4
+danail,25718082,3
+81882321,25718082,4
+eeagle,25718082,3
+65930236,25718082,3
+eddychaw,25718082,2
+49843481,25718082,4
+49277470,25718082,3
+3430040,25718082,-1
+80740979,25718082,4
+ayake,25718082,4
+48666776,25718082,3
+missmushroom,25718082,4
+ddqr,25718082,3
+gerdy,25718082,3
+50880780,25718082,5
+longislandiced,25718082,4
+Curry_Egg,25718082,3
+dingruitaba,25718082,3
+zqdqzx,25718082,4
+59159384,25718082,3
+59367458,25718082,4
+53814825,25718082,-1
+3249521,25718082,4
+3532237,25718082,3
+44678301,25718082,4
+chervun,25718082,3
+2921449,25718082,-1
+76566444,25718082,3
+48817278,25718082,4
+57381947,25718082,4
+50882279,25718082,1
+yiboinsisu,25718082,4
+imarilyn,25718082,4
+53291817,25718082,4
+30714456,25718082,3
+loverebel,25718082,1
+67733438,25718082,3
+48072909,25718082,3
+particle_uv,25718082,4
+piccl,25718082,3
+50459588,25718082,5
+71214465,25718082,4
+47951837,25718082,4
+90465571,25718082,4
+jeans522,25718082,2
+60752975,25718082,4
+48470895,25718082,2
+fushengqiang,25718082,4
+6095146,25718082,2
+49852947,25718082,3
+70662345,25718082,4
+2116515,25718082,4
+alleni,25718082,3
+62935767,25718082,5
+55390798,25718082,3
+27232697,25718082,3
+KILLERCAN,25718082,3
+3539441,25718082,4
+waisel,25718082,3
+suetong,25718082,3
+Chiunotfortoday,25718082,4
+jumpjumpgogogo,25718082,4
+53808953,25718082,4
+ccccoffee,25718082,3
+lady_xiaxia,25718082,4
+maggieou,25718082,4
+radishcindy,25718082,4
+andrewcx,25718082,3
+1395865,25718082,3
+minmin0801ahoah,25718082,4
+66969255,25718082,4
+xiaolistay,25718082,3
+1910214,25718082,-1
+coffeebear,25718082,4
+1230558,25718082,4
+maikatse,25718082,3
+58068856,25718082,5
+50335651,25718082,4
+76595945,25718082,3
+narcissus_iris,25718082,3
+107140803,25718082,4
+joearde,25718082,4
+suzhaoyang,25718082,2
+meteor,25718082,5
+likechuck,25718082,5
+dawdle,25718082,4
+2256093,25718082,4
+125671757,25718082,3
+morningsu,25718082,4
+stellawah,25718082,4
+Amberfrom,25718082,3
+52320359,25718082,3
+48873358,25718082,-1
+60341308,25718082,4
+missaaa,25718082,-1
+47471992,25718082,3
+65572708,25718082,1
+34040685,25718082,4
+52529736,25718082,4
+51204884,25718082,3
+l00000000,25718082,3
+antonia422,25718082,3
+liqiyao8931,25718082,3
+85245609,25718082,4
+68738752,25718082,4
+jnhero,25718082,4
+3478294,25718082,4
+59018880,25718082,3
+isbai,25718082,3
+lonelyalex,25718082,4
+69000560,25718082,3
+55015343,25718082,4
+jmn_white,25718082,3
+3703647,25718082,3
+nining,25718082,4
+53176363,25718082,3
+63099220,25718082,3
+deirdra,25718082,2
+chenrr1106,25718082,4
+amani2015,25718082,5
+celestetang,25718082,3
+57052656,25718082,4
+121578175,25718082,3
+Hagy,25718082,4
+92399399,25718082,4
+jafkxc,25718082,4
+67763944,25718082,3
+variation1229,25718082,2
+44094753,25718082,4
+dearFreundin,25718082,4
+2324863,25718082,4
+50112537,25718082,5
+just-one-way,25718082,3
+56919674,25718082,2
+1169348,25718082,3
+69028639,25718082,3
+shiguagji,25718082,-1
+126241024,25718082,3
+67958148,25718082,4
+freedominheart,25718082,3
+2982439,25718082,-1
+55486023,25718082,4
+zhangryan8,25718082,5
+littlexixi,25718082,2
+3689113,25718082,-1
+Oil,25718082,3
+39941847,25718082,4
+shane90,25718082,3
+s12s,25718082,3
+80511125,25718082,4
+119625461,25718082,3
+49087400,25718082,3
+umaymaymay,25718082,3
+124720796,25718082,1
+kateniceday,25718082,3
+34990141,25718082,2
+71764835,25718082,5
+81998222,25718082,3
+loisli,25718082,3
+holly_cerise,25718082,3
+58670353,25718082,3
+47368196,25718082,-1
+37958817,25718082,5
+breakawaycs,25718082,3
+bugz,25718082,4
+tydaan,25718082,4
+tydaan,25718082,4
+54432679,25718082,4
+bostonivy,25718082,4
+76887517,25718082,4
+41352480,25718082,3
+91239382,25718082,3
+flydolphin,25718082,4
+68542833,25718082,2
+61600430,25718082,5
+edwardtroy,25718082,3
+yiwenxu,25718082,3
+dangogo,25718082,4
+bigmiao,25718082,3
+wanwangemini,25718082,2
+93651159,25718082,3
+mrint,25718082,4
+Dorothycheer,25718082,3
+67388709,25718082,4
+crystalnian,25718082,5
+cfengbme,25718082,2
+3491773,25718082,4
+4237224,25718082,3
+69328232,25718082,2
+haianlong,25718082,3
+idoris,25718082,3
+79590865,25718082,4
+hypochondria,25718082,4
+64162048,25718082,4
+66627403,25718082,3
+69477344,25718082,3
+65507275,25718082,5
+55846038,25718082,5
+68756511,25718082,3
+mrschan,25718082,2
+58794531,25718082,4
+89036799,25718082,5
+utasty,25718082,3
+ngwillya,25718082,5
+muuuma,25718082,3
+49733499,25718082,4
+67894475,25718082,5
+57425005,25718082,4
+renmeng,25718082,3
+70491004,25718082,1
+7881838,25718082,5
+l---j,25718082,4
+47523220,25718082,4
+126644059,25718082,3
+85081559,25718082,3
+yes.it_is_you,25718082,4
+augustinochen,25718082,5
+ziyu0802,25718082,4
+caojian120,25718082,5
+60127912,25718082,4
+xqyamour,25718082,5
+65224037,25718082,5
+41370734,25718082,3
+52228251,25718082,3
+4608800,25718082,2
+46341101,25718082,3
+irislxxx,25718082,3
+25879300,25718082,4
+60993054,25718082,4
+74818677,25718082,3
+1605000,25718082,4
+3262787,25718082,3
+53486650,25718082,3
+79891135,25718082,3
+nanra,25718082,4
+cellursoda,25718082,4
+85142259,25718082,3
+raizzt,25718082,4
+neverdeathjia,25718082,3
+87655848,25718082,4
+4039330,25718082,3
+1407652,25718082,2
+49245081,25718082,4
+1039253,25718082,3
+leehomstyle,25718082,4
+45855864,25718082,3
+dawnlight-joe,25718082,4
+zcsyzdln,25718082,3
+64528159,25718082,4
+59803743,25718082,4
+52710389,25718082,4
+70534967,25718082,4
+46346813,25718082,3
+liuchuanzi,25718082,3
+fishyuyue,25718082,4
+45511772,25718082,3
+55437370,25718082,3
+nonob,25718082,2
+heechen,25718082,4
+57542378,25718082,3
+34310004,25718082,3
+88930627,25718082,5
+4015959,25718082,3
+39950361,25718082,2
+52331633,25718082,4
+44245497,25718082,4
+43948755,25718082,4
+65110370,25718082,2
+ayouyoucats,25718082,4
+82431278,25718082,3
+bugucuichun,25718082,4
+SC1SSORHANDS,25718082,4
+49269010,25718082,4
+34558419,25718082,3
+xdy1990,25718082,4
+1441718,25718082,3
+55321453,25718082,2
+103458429,25718082,4
+48252437,25718082,3
+4884094,25718082,-1
+4145881,25718082,3
+2218252,25718082,3
+120956047,25718082,3
+ivy_713,25718082,3
+48313436,25718082,4
+splu5,25718082,4
+s13,25718082,5
+chagall.,25718082,3
+Ray_u,25718082,4
+loischoi,25718082,3
+59370551,25718082,4
+syanns,25718082,-1
+12232981,25718082,4
+1464431,25718082,4
+sukijuri,25718082,3
+51451813,25718082,4
+90446896,25718082,4
+88273371,25718082,3
+48778935,25718082,4
+smileshine,25718082,4
+kkyellow,25718082,3
+fecal,25718082,4
+fluency1314,25718082,4
+flower-ye,25718082,-1
+aawenping,25718082,4
+43199831,25718082,3
+43199831,25718082,3
+Howen,25718082,4
+48074092,25718082,2
+FK621,25718082,4
+54757018,25718082,3
+muxieyes,25718082,3
+vishalee,25718082,2
+shouhulantian,25718082,4
+2610640,25718082,3
+47596825,25718082,4
+43909634,25718082,2
+84601671,25718082,3
+1762545,25718082,3
+41610301,25718082,4
+junmuxi0413,25718082,3
+55875465,25718082,4
+lpxxd,25718082,-1
+Kristy_Cheung,25718082,3
+darthvader,25718082,4
+37862989,25718082,4
+Zazai,25718082,4
+YangBao,25718082,4
+79217059,25718082,4
+49159648,25718082,3
+61193045,25718082,3
+82406719,25718082,1
+124186253,25718082,-1
+59880831,25718082,3
+Saryn,25718082,3
+dusansan,25718082,2
+47971012,25718082,-1
+3974458,25718082,3
+HarryBabel,25718082,2
+zhayefei,25718082,4
+cheer_90,25718082,4
+48253761,25718082,2
+m.Blacky,25718082,3
+1513326,25718082,4
+84250645,25718082,4
+qi-shao-shang,25718082,2
+CZ1011,25718082,4
+raehide,25718082,3
+changefiona,25718082,3
+42217417,25718082,4
+31673779,25718082,4
+youzipi870,25718082,4
+36177683,25718082,4
+songzer,25718082,4
+wandawang,25718082,4
+pure_115,25718082,2
+jeansolove,25718082,3
+49589714,25718082,4
+81757410,25718082,3
+margie_margie,25718082,4
+Arenas4.-_-Hreo,25718082,4
+61093612,25718082,3
+73016113,25718082,1
+RizMi,25718082,5
+rollingpika,25718082,4
+66475895,25718082,3
+ivy722,25718082,-1
+anjiu,25718082,3
+feelzyl,25718082,4
+50754510,25718082,3
+48506304,25718082,4
+114255827,25718082,2
+A411,25718082,4
+66234722,25718082,4
+125155630,25718082,1
+yishiqing,25718082,2
+liangwor,25718082,4
+Lumiere5200,25718082,4
+ice41322,25718082,4
+68776201,25718082,2
+64981286,25718082,3
+2667938,25718082,4
+zhappiness,25718082,3
+sugartingshuo,25718082,4
+54227413,25718082,3
+viennall,25718082,3
+4002268,25718082,4
+weekie,25718082,4
+69429649,25718082,3
+119189447,25718082,3
+82890119,25718082,5
+JudyItalia,25718082,3
+1371141,25718082,3
+64664851,25718082,3
+limemint12,25718082,3
+54864472,25718082,-1
+52185430,25718082,3
+101228990,25718082,5
+114339975,25718082,3
+3469841,25718082,4
+4324022,25718082,3
+47521894,25718082,3
+61933640,25718082,4
+1109113,25718082,4
+sheep0228,25718082,4
+93030763,25718082,4
+44735067,25718082,5
+tammyj_11,25718082,5
+cyan_xi,25718082,4
+vitatha_613,25718082,3
+thisisdaisy,25718082,2
+6765143,25718082,2
+iamdengdeng,25718082,3
+springl31120,25718082,3
+depol,25718082,5
+yicuocha,25718082,5
+39294617,25718082,3
+83781629,25718082,5
+shoonior,25718082,5
+49036730,25718082,4
+41956646,25718082,3
+59677538,25718082,4
+37213088,25718082,4
+58959538,25718082,4
+63887891,25718082,3
+66966914,25718082,4
+dixueyaxiaojie,25718082,1
+52705130,25718082,5
+62234104,25718082,4
+imqxq,25718082,-1
+sky325,25718082,1
+mathilda_le,25718082,5
+Cheeranita,25718082,4
+yahgyl,25718082,3
+laihiukei,25718082,4
+vanjohnbob,25718082,4
+choryyu,25718082,4
+die1021,25718082,4
+cowbie,25718082,4
+yueningxin,25718082,3
+nalusea,25718082,4
+4531781,25718082,4
+timliutianxiang,25718082,2
+4010903,25718082,4
+58792200,25718082,3
+69379174,25718082,3
+grammarbai,25718082,3
+fay_.,25718082,-1
+reeboir,25718082,2
+44738188,25718082,5
+45391459,25718082,5
+109142318,25718082,3
+tinywine,25718082,4
+pandatou,25718082,4
+4656823,25718082,4
+83601520,25718082,5
+97501403,25718082,4
+96659861,25718082,4
+64020906,25718082,1
+88537945,25718082,4
+1189560,25718082,3
+54753933,25718082,3
+duduxiongzhifu,25718082,2
+104575422,25718082,3
+44966819,25718082,4
+eertdik,25718082,4
+wander-fly,25718082,3
+33962271,25718082,-1
+redrabbit,25718082,4
+3573467,25718082,3
+35883564,25718082,5
+46523085,25718082,4
+54251461,25718082,3
+52030611,25718082,5
+yonghengyanggua,25718082,2
+41806618,25718082,4
+88327648,25718082,4
+50060410,25718082,2
+viling,25718082,3
+wywapple,25718082,4
+sacwr,25718082,5
+43983045,25718082,-1
+60246775,25718082,3
+64252726,25718082,4
+69363848,25718082,3
+53307722,25718082,3
+63367486,25718082,5
+83020463,25718082,3
+121817489,25718082,3
+63391208,25718082,4
+54660916,25718082,3
+vinnsy,25718082,2
+67182363,25718082,5
+maoyi0249,25718082,3
+52235121,25718082,5
+16645869,25718082,3
+53952389,25718082,3
+leLJ,25718082,4
+2370135,25718082,2
+74551006,25718082,4
+bbl45,25718082,3
+lmlmll,25718082,5
+memphisss,25718082,2
+4228422,25718082,3
+119644008,25718082,3
+ADX-,25718082,4
+ADX-,25718082,4
+79151265,25718082,4
+103409828,25718082,3
+dokodemodoa,25718082,3
+51289323,25718082,3
+77890563,25718082,4
+3288343,25718082,3
+68936887,25718082,5
+65424378,25718082,3
+metkee,25718082,3
+colleen,25718082,4
+3922229,25718082,5
+bessiej,25718082,3
+1717660,25718082,4
+1493686,25718082,3
+51030434,25718082,3
+71223601,25718082,3
+37402421,25718082,3
+pgdzhua,25718082,3
+mamuzuke,25718082,3
+mamuzuke,25718082,3
+4406540,25718082,-1
+79750101,25718082,5
+121933130,25718082,3
+27449866,25718082,5
+40125031,25718082,2
+cici3,25718082,4
+9664364,25718082,5
+sesameking,25718082,3
+77186305,25718082,4
+mumuximilik,25718082,3
+annsey,25718082,-1
+3852778,25718082,3
+geminige,25718082,4
+Providenci,25718082,-1
+daolidewoniu,25718082,4
+52790131,25718082,4
+IronPillarWong,25718082,5
+YYDEE,25718082,4
+55758742,25718082,5
+55758742,25718082,5
+92134932,25718082,4
+NG,25718082,4
+Obtson,25718082,4
+54988503,25718082,4
+63011374,25718082,2
+L_kid,25718082,2
+45730721,25718082,3
+june_jane,25718082,4
+42146070,25718082,3
+xmausp,25718082,3
+1290657,25718082,4
+2318830,25718082,4
+92110044,25718082,4
+2246096,25718082,4
+andorra,25718082,4
+larrylazy,25718082,4
+1428499,25718082,2
+ze_lan,25718082,5
+53147371,25718082,4
+SANDMANECW,25718082,5
+didadidi,25718082,4
+fuxiaopang,25718082,3
+ravinenoravine,25718082,3
+4530799,25718082,4
+48821319,25718082,3
+2259657,25718082,4
+60979573,25718082,3
+2382122,25718082,4
+stonelcc,25718082,5
+cherryziyi,25718082,5
+sevilla77,25718082,3
+50094357,25718082,3
+abelleba,25718082,3
+79734997,25718082,3
+89421885,25718082,4
+suzane,25718082,2
+53259018,25718082,4
+53605408,25718082,3
+honey-vivian,25718082,1
+55641991,25718082,4
+69247286,25718082,4
+120605598,25718082,4
+easonkoko,25718082,2
+89341086,25718082,2
+luerdelphic,25718082,5
+skycrystal,25718082,4
+124385874,25718082,3
+36412946,25718082,4
+RRspace,25718082,4
+CarefreeWind,25718082,5
+36086236,25718082,4
+fealty93314,25718082,3
+DavidRover,25718082,4
+maerta,25718082,4
+24263050,25718082,4
+113775615,25718082,4
+16048346,25718082,4
+yabatoo,25718082,4
+46013743,25718082,3
+levitating,25718082,3
+39104472,25718082,3
+sakurasunny,25718082,3
+49854531,25718082,3
+36041688,25718082,4
+44402484,25718082,2
+thesp,25718082,3
+kellywhite,25718082,3
+jinping-peng,25718082,4
+xuyimeng,25718082,4
+qiedeyongtandia,25718082,-1
+55444348,25718082,5
+liuningba,25718082,3
+kejinlong,25718082,3
+35176558,25718082,4
+32433633,25718082,4
+swan93,25718082,4
+8880037,25718082,5
+56990342,25718082,-1
+80743649,25718082,1
+ziyanxue,25718082,3
+Realgirl,25718082,4
+59992554,25718082,4
+tonganda,25718082,3
+25870327,25718082,5
+yalindongdong,25718082,3
+32019059,25718082,5
+nianse,25718082,5
+72260700,25718082,3
+4610303,25718082,-1
+34081979,25718082,-1
+67641940,25718082,5
+48486408,25718082,4
+Jiang_jss,25718082,4
+68024590,25718082,2
+52605231,25718082,3
+qinwenrene,25718082,4
+secretcat,25718082,3
+Mun.,25718082,3
+Lesliedream,25718082,3
+whyrrita,25718082,2
+tomevivid,25718082,3
+kicker10,25718082,3
+heysummer,25718082,3
+46007359,25718082,4
+64600221,25718082,-1
+49146355,25718082,3
+63730928,25718082,3
+misuna,25718082,3
+37694449,25718082,2
+8708200,25718082,3
+ttwn,25718082,4
+63912442,25718082,4
+69125005,25718082,3
+sunA1n711,25718082,4
+124467661,25718082,4
+99075022,25718082,5
+67968935,25718082,4
+4158908,25718082,4
+82550997,25718082,3
+sh.qing,25718082,4
+veggicc,25718082,4
+34255820,25718082,4
+92032476,25718082,5
+creepNIBA,25718082,3
+zhaozhaoyu,25718082,5
+87842256,25718082,3
+60339642,25718082,-1
+43955073,25718082,4
+4230709,25718082,5
+Sitachiin,25718082,5
+58950457,25718082,-1
+52777499,25718082,3
+63823426,25718082,4
+misamisa0220,25718082,4
+2405008,25718082,5
+azuremoon0118,25718082,-1
+103106457,25718082,5
+4881993,25718082,4
+1915109,25718082,3
+yaoguai120,25718082,5
+28631660,25718082,3
+2348326,25718082,5
+68490361,25718082,5
+58825123,25718082,1
+CHeeRshU,25718082,4
+67644601,25718082,4
+sylvielanlan,25718082,4
+74603714,25718082,5
+49364179,25718082,4
+82041810,25718082,2
+cheryl.12,25718082,2
+56682506,25718082,4
+lotusworld,25718082,4
+43517175,25718082,5
+52371666,25718082,3
+kristenxin,25718082,4
+80171035,25718082,4
+47662666,25718082,4
+discoboy,25718082,1
+36187020,25718082,4
+83189203,25718082,4
+47213119,25718082,5
+40104674,25718082,2
+readmovie,25718082,4
+54286864,25718082,4
+3494073,25718082,4
+48677389,25718082,4
+sentexiaohu,25718082,4
+52169196,25718082,-1
+35858270,25718082,4
+3574648,25718082,3
+53205723,25718082,4
+57566252,25718082,5
+67737299,25718082,4
+mayfeeling,25718082,3
+MrJJS,25718082,-1
+jiangying,25718082,4
+dec96,25718082,3
+fallenisland,25718082,3
+2012350,25718082,4
+jicheng1993,25718082,4
+50979668,25718082,5
+42654369,25718082,4
+49945629,25718082,2
+ananqi,25718082,-1
+44203780,25718082,3
+26226238,25718082,-1
+51401098,25718082,4
+47094437,25718082,3
+sincerity615,25718082,2
+aquapanda,25718082,3
+55852519,25718082,5
+63881946,25718082,3
+qcher,25718082,3
+Swangshu,25718082,2
+wangzinuo891015,25718082,3
+Dora_bamboo,25718082,4
+amidede,25718082,2
+magilee0608,25718082,4
+peggydai,25718082,4
+52247156,25718082,4
+17004593,25718082,2
+2849436,25718082,4
+lingnie,25718082,4
+greencircle,25718082,4
+105804171,25718082,3
+stomach_ache,25718082,4
+queenieblind,25718082,4
+sillyho,25718082,4
+childream,25718082,4
+117347877,25718082,4
+69192646,25718082,4
+61626156,25718082,2
+5914212,25718082,4
+15874122,25718082,4
+47289236,25718082,3
+48603851,25718082,1
+82150919,25718082,4
+sourirefish,25718082,2
+sourirefish,25718082,2
+52762831,25718082,3
+neverland-z,25718082,5
+41236968,25718082,3
+dekaixu,25718082,3
+silenrocker,25718082,5
+lulilu,25718082,4
+suaguai7,25718082,3
+Binnie_Allen,25718082,4
+45640219,25718082,4
+1437680,25718082,5
+56138640,25718082,4
+37552777,25718082,4
+51610369,25718082,5
+126201751,25718082,4
+wangyiqiu,25718082,4
+57807205,25718082,3
+Redfingertip,25718082,4
+lianshengruci,25718082,3
+53235502,25718082,5
+34785877,25718082,3
+62426044,25718082,5
+icyci,25718082,4
+cjannie,25718082,5
+theguodan,25718082,4
+39993769,25718082,4
+45345873,25718082,4
+47873595,25718082,3
+57969665,25718082,3
+83264508,25718082,4
+40413421,25718082,2
+1097811,25718082,4
+lingxishuyu,25718082,3
+104293967,25718082,4
+34197387,25718082,4
+13808919,25718082,4
+63647766,25718082,5
+80015349,25718082,3
+81294077,25718082,4
+sidneylumet,25718082,3
+sidneylumet,25718082,3
+zhouruopei,25718082,3
+istas,25718082,-1
+64124840,25718082,2
+62660611,25718082,4
+ladybird,25718082,4
+summerbeautiful,25718082,3
+alisa_lea,25718082,3
+48579871,25718082,4
+aprilpear,25718082,4
+3849151,25718082,1
+48801010,25718082,4
+80554477,25718082,5
+78731933,25718082,3
+dc_ckhab,25718082,3
+kinthehouse,25718082,4
+2641925,25718082,3
+spicymilk,25718082,4
+1635650,25718082,2
+Rosazhang,25718082,2
+weilianglalala,25718082,4
+67936485,25718082,4
+dogeli,25718082,3
+49140427,25718082,2
+llittlexu,25718082,5
+54704732,25718082,3
+kp81ndlf,25718082,3
+46430023,25718082,4
+3061850,25718082,3
+53492986,25718082,4
+ifiwere,25718082,4
+L-sheep,25718082,3
+52116951,25718082,2
+vanshaw,25718082,-1
+49422565,25718082,4
+63823500,25718082,4
+fadefeng,25718082,4
+kalendar,25718082,3
+LittleS.,25718082,5
+1279239,25718082,3
+zihuihui,25718082,4
+kongxincaicai,25718082,3
+1410515,25718082,-1
+79270695,25718082,4
+chrisairfly,25718082,1
+3688402,25718082,-1
+chenhuayang,25718082,4
+1337670,25718082,-1
+58625918,25718082,3
+3831630,25718082,5
+CherryChyi,25718082,5
+masaike,25718082,2
+samadhi,25718082,5
+34948612,25718082,4
+101393970,25718082,4
+1511195,25718082,3
+berylho,25718082,4
+70933657,25718082,4
+3807164,25718082,4
+luxixi429,25718082,4
+72692620,25718082,3
+56024205,25718082,4
+57285744,25718082,3
+81667410,25718082,4
+dayandnights,25718082,3
+68980281,25718082,4
+ayamassia,25718082,4
+cydandelion,25718082,3
+oopsisme,25718082,4
+zhujuejin,25718082,3
+3146294,25718082,5
+121824373,25718082,4
+30486993,25718082,3
+3450694,25718082,3
+39491713,25718082,3
+ritalu,25718082,5
+jmj12267,25718082,5
+83811612,25718082,3
+3642569,25718082,4
+42349679,25718082,2
+2258556,25718082,4
+mcfeemiki,25718082,4
+ola0705,25718082,4
+52934082,25718082,4
+42049184,25718082,2
+38045752,25718082,4
+67245376,25718082,4
+63825498,25718082,4
+119190302,25718082,5
+1109340,25718082,4
+89063619,25718082,2
+54805627,25718082,3
+kuangren79,25718082,3
+dragonnette,25718082,4
+lilicoming,25718082,5
+Candy_Can,25718082,3
+103629586,25718082,4
+sodeepbules,25718082,4
+42096779,25718082,3
+3627066,25718082,3
+47034241,25718082,4
+suanshaw,25718082,5
+4469892,25718082,4
+olala,25718082,5
+astrology11,25718082,4
+2515913,25718082,3
+51635179,25718082,3
+tsdphilia,25718082,3
+1683063,25718082,2
+60570203,25718082,5
+42663693,25718082,1
+82152426,25718082,-1
+48624008,25718082,5
+duckdan,25718082,4
+lokio,25718082,3
+17424606,25718082,3
+loyalso,25718082,3
+69609271,25718082,1
+Winstonmedia,25718082,5
+SZH19920707,25718082,3
+6074220,25718082,5
+17210436,25718082,4
+44417638,25718082,2
+Demo21,25718082,3
+susux,25718082,4
+yeungkaren,25718082,3
+milanxt,25718082,2
+27703240,25718082,-1
+chinabamboo,25718082,3
+1280055,25718082,4
+3800028,25718082,3
+deafbear,25718082,3
+duanmengzhen,25718082,4
+114171348,25718082,4
+60420315,25718082,4
+purplewhale,25718082,4
+sunvforever,25718082,-1
+dvddvd,25718082,3
+52605532,25718082,5
+47381919,25718082,3
+54381638,25718082,4
+amyhsuan,25718082,3
+a1234567,25718082,4
+88661415,25718082,3
+freelyclouding,25718082,4
+jun_ny3,25718082,1
+30125129,25718082,5
+3531814,25718082,3
+zpzs,25718082,3
+pussyyy,25718082,4
+wizkeigo,25718082,3
+warmwanderer,25718082,3
+56282257,25718082,5
+28185222,25718082,3
+58207796,25718082,4
+122633809,25718082,2
+mmmmmavis,25718082,4
+47542853,25718082,3
+4242728,25718082,3
+57377127,25718082,3
+xiangyuliu,25718082,5
+3939279,25718082,3
+B-B-B-Side,25718082,4
+34173621,25718082,3
+aipa,25718082,4
+81853101,25718082,3
+amyui,25718082,5
+ohoff,25718082,3
+93455705,25718082,4
+athousand,25718082,3
+zoe-1988,25718082,3
+104265782,25718082,4
+61260966,25718082,5
+47552661,25718082,4
+96233634,25718082,4
+47824291,25718082,5
+68608640,25718082,3
+sharethegay,25718082,5
+1895030,25718082,4
+BigLuLu,25718082,4
+54424570,25718082,4
+4190834,25718082,4
+xly7788,25718082,4
+lucas90hou,25718082,5
+49539416,25718082,4
+ValeMC,25718082,4
+1496396,25718082,4
+67806839,25718082,4
+touch1986summer,25718082,4
+taozi2ch,25718082,3
+57314886,25718082,4
+pseudoyu,25718082,5
+75614170,25718082,3
+wangweivenus,25718082,5
+Leadership,25718082,3
+4668252,25718082,4
+47764024,25718082,1
+Abandoned_Sundy,25718082,3
+chaimengjie,25718082,5
+imoviekobe,25718082,4
+Mint1031,25718082,3
+53082027,25718082,4
+126049558,25718082,5
+120990499,25718082,5
+78592646,25718082,5
+56052356,25718082,2
+pianzhikuangyy,25718082,3
+91816564,25718082,3
+JustKZ,25718082,4
+zhangyangan,25718082,2
+59466056,25718082,3
+Microka,25718082,4
+mississluu,25718082,4
+fefe,25718082,3
+67298685,25718082,3
+49187859,25718082,4
+47105797,25718082,3
+ananpsc,25718082,4
+76225555,25718082,1
+felinoshuffle,25718082,3
+greenkingdom777,25718082,3
+56898978,25718082,5
+elliebaby1101,25718082,3
+emma0729,25718082,3
+67570635,25718082,4
+54952662,25718082,3
+50896714,25718082,5
+59140109,25718082,5
+76711010,25718082,3
+hellomilky,25718082,4
+sou,25718082,3
+1790060,25718082,3
+41080653,25718082,4
+122508583,25718082,4
+yoky,25718082,3
+elvandjane,25718082,4
+75058618,25718082,3
+51851072,25718082,4
+77267743,25718082,4
+38595648,25718082,4
+C.YEll,25718082,4
+chris7soul,25718082,3
+3126850,25718082,3
+73866765,25718082,4
+3219043,25718082,4
+sjk,25718082,4
+49905941,25718082,3
+6838272,25718082,4
+48614300,25718082,2
+Verbomania,25718082,5
+63954883,25718082,-1
+abel-tree,25718082,4
+huahetao,25718082,4
+53475571,25718082,4
+3515794,25718082,4
+candyxiting,25718082,4
+65121901,25718082,2
+47679128,25718082,4
+airan712,25718082,3
+83429427,25718082,4
+MonteVita,25718082,5
+crystal1124,25718082,4
+tender_night,25718082,3
+kongyan15,25718082,3
+umbrae,25718082,5
+25427570,25718082,3
+58094723,25718082,4
+renjiananhuo,25718082,4
+aimiludemao,25718082,5
+62762350,25718082,5
+huyiwei,25718082,3
+37775182,25718082,3
+yamilove,25718082,4
+119293185,25718082,5
+60155135,25718082,4
+1864313,25718082,4
+54842242,25718082,5
+fancynotgrow,25718082,4
+41162988,25718082,4
+roxyash,25718082,4
+roxyash,25718082,4
+71467734,25718082,4
+31508323,25718082,4
+38790253,25718082,2
+sentimental-T,25718082,5
+39507649,25718082,4
+daangel,25718082,3
+irisyours,25718082,4
+btcatsun,25718082,3
+58107870,25718082,3
+124123020,25718082,4
+lonebook,25718082,4
+68174370,25718082,5
+wensentedegushi,25718082,1
+56684398,25718082,3
+SILENT7,25718082,1
+Lillianzyl,25718082,-1
+67539308,25718082,4
+44866153,25718082,5
+31573360,25718082,3
+52718701,25718082,4
+zhb555,25718082,-1
+56223706,25718082,4
+51732837,25718082,4
+82571715,25718082,4
+neverthink,25718082,4
+suzon_deedee,25718082,3
+cheerful,25718082,4
+7110679,25718082,5
+3450482,25718082,5
+50116920,25718082,4
+Minimalis,25718082,4
+picnicskins,25718082,3
+lucyhuang21,25718082,4
+75881434,25718082,3
+1867292,25718082,3
+44057225,25718082,4
+cishengchuanqi,25718082,4
+50041267,25718082,4
+littleRED222,25718082,3
+78857918,25718082,4
+59593870,25718082,5
+4294147,25718082,5
+57893946,25718082,4
+Crystal_Dcy,25718082,4
+41638531,25718082,4
+17672710,25718082,3
+2428631,25718082,4
+nemo2man,25718082,4
+122456206,25718082,5
+dingchunxhao,25718082,3
+lotus_yc,25718082,3
+4251957,25718082,-1
+3576952,25718082,4
+99441700,25718082,4
+Wendyx2015,25718082,4
+FTDxiaowukong,25718082,4
+4652178,25718082,3
+DawnGreen,25718082,4
+47959588,25718082,2
+BigLo,25718082,4
+junepotty,25718082,4
+asukayoshioka,25718082,4
+shuyina,25718082,3
+Ruolinleng,25718082,4
+vicky83,25718082,4
+zhonshengli,25718082,3
+mccgirl,25718082,4
+jasonchueng,25718082,2
+2340408,25718082,4
+evilhyde,25718082,4
+80275782,25718082,4
+69089048,25718082,-1
+52460447,25718082,4
+121371779,25718082,3
+4493051,25718082,4
+ISABELLA88123,25718082,4
+35667000,25718082,4
+74912183,25718082,4
+chankawai,25718082,4
+left_behind,25718082,-1
+wildkidpk,25718082,5
+fan_tuan,25718082,3
+61405029,25718082,4
+lily..le,25718082,4
+as_shmily,25718082,2
+tomsnakewang,25718082,3
+84171597,25718082,4
+51534915,25718082,3
+4015242,25718082,4
+73421771,25718082,3
+yuyaozac,25718082,3
+43842293,25718082,5
+Summerhoda,25718082,4
+48976051,25718082,4
+51749125,25718082,4
+leecyril,25718082,4
+2151925,25718082,5
+120245591,25718082,2
+52333341,25718082,3
+85120995,25718082,3
+lazyyufeng,25718082,4
+paes,25718082,2
+jasmine_1992,25718082,4
+caizixuan,25718082,4
+44486984,25718082,4
+chishu,25718082,5
+3513677,25718082,3
+66409658,25718082,3
+fanxiaxiafan,25718082,3
+izaijin,25718082,4
+45347825,25718082,4
+43473708,25718082,3
+yontyz,25718082,5
+sherry-he,25718082,3
+2950551,25718082,3
+58859893,25718082,4
+hebesbaby,25718082,5
+AndiChiao,25718082,3
+1357146,25718082,3
+zoezoezoe,25718082,4
+68526356,25718082,4
+57880330,25718082,3
+54884554,25718082,4
+68647999,25718082,3
+yizhao,25718082,3
+3241817,25718082,3
+SamuelYan,25718082,3
+1782017,25718082,1
+57731057,25718082,2
+2109472,25718082,-1
+72096774,25718082,4
+42563034,25718082,4
+60133071,25718082,1
+philllin,25718082,3
+119263777,25718082,3
+43693739,25718082,5
+40354499,25718082,4
+tmrai,25718082,4
+52286623,25718082,3
+34033819,25718082,3
+79856999,25718082,5
+81809910,25718082,4
+kadai929,25718082,4
+wondertree,25718082,4
+1666027,25718082,3
+62591475,25718082,3
+kisscululala,25718082,3
+Iayours,25718082,3
+50815067,25718082,4
+48892053,25718082,3
+foolhan,25718082,4
+83251437,25718082,5
+64044115,25718082,4
+yaogaosheng,25718082,3
+m19900714,25718082,3
+yuan0243109,25718082,4
+yingxxxxx,25718082,2
+52003906,25718082,3
+34575902,25718082,3
+newton,25718082,1
+desertsann,25718082,5
+1467734,25718082,4
+41049815,25718082,4
+laoziiii,25718082,3
+2759965,25718082,3
+60654735,25718082,2
+mujun_liu,25718082,3
+riojiang,25718082,4
+lillylu,25718082,4
+62778909,25718082,3
+74178201,25718082,3
+espresso_,25718082,4
+38156960,25718082,4
+hideer,25718082,1
+xxs127,25718082,1
+renwei,25718082,5
+84142287,25718082,4
+46935032,25718082,4
+1223666,25718082,4
+huzhenting,25718082,4
+relyon,25718082,5
+52473810,25718082,2
+Eveh,25718082,4
+1630648,25718082,-1
+92480023,25718082,4
+graciesy,25718082,3
+Alpinist,25718082,4
+4616681,25718082,2
+huangzhen,25718082,5
+51133265,25718082,4
+89726078,25718082,3
+120328976,25718082,4
+69867431,25718082,4
+1747148,25718082,2
+52618831,25718082,3
+75809533,25718082,3
+eightsbar,25718082,1
+zacklee,25718082,3
+brew,25718082,1
+walktolive,25718082,4
+70484549,25718082,5
+59465108,25718082,5
+dove109,25718082,2
+45276669,25718082,1
+43409515,25718082,5
+64069487,25718082,4
+119330866,25718082,4
+DERRICK_ROSE,25718082,2
+lemishere,25718082,5
+4059273,25718082,5
+49449139,25718082,4
+AspireY,25718082,4
+karen-wh.y,25718082,3
+83187671,25718082,4
+50983248,25718082,4
+Mayday_Casa,25718082,4
+injune,25718082,5
+blackishgreen,25718082,-1
+43789785,25718082,3
+blackishgreen,25718082,-1
+43789785,25718082,3
+7255952,25718082,4
+68569079,25718082,4
+70188782,25718082,5
+11020421,25718082,4
+Nanamii,25718082,4
+lianhuaroad,25718082,-1
+66803034,25718082,5
+51186771,25718082,4
+sigurros,25718082,4
+Deardeer_Cherry,25718082,3
+57996035,25718082,3
+54096060,25718082,3
+SummerDuan,25718082,5
+amueshe,25718082,4
+99815698,25718082,5
+64184937,25718082,3
+alwayswrong,25718082,4
+Sheeplady,25718082,5
+huhu1999,25718082,2
+51829870,25718082,5
+kevinhoo1214,25718082,4
+particles,25718082,3
+60223940,25718082,4
+50835687,25718082,5
+demiii,25718082,4
+vipan,25718082,4
+sueazaya,25718082,4
+xfting007,25718082,5
+60385100,25718082,4
+60255934,25718082,4
+bigeyedog,25718082,3
+52021571,25718082,4
+am-gemini,25718082,4
+2875550,25718082,5
+65065186,25718082,3
+zzzxy,25718082,2
+58335145,25718082,5
+4370686,25718082,3
+52190565,25718082,5
+1496249,25718082,-1
+kathytop,25718082,3
+96691261,25718082,3
+MovieL,25718082,2
+29024580,25718082,3
+stillfyou,25718082,3
+ValJester,25718082,4
+dawn.limpid,25718082,4
+57064349,25718082,4
+57824110,25718082,2
+itzhaoxiangyu,25718082,4
+69395247,25718082,4
+henry929,25718082,3
+63119655,25718082,4
+1089017,25718082,-1
+2476748,25718082,3
+1166232,25718082,3
+6987390,25718082,4
+33177895,25718082,4
+4674424,25718082,3
+5955160,25718082,4
+chenbing,25718082,3
+73757749,25718082,5
+coronis,25718082,5
+122788862,25718082,5
+62875817,25718082,5
+49846009,25718082,4
+MYtachikoma,25718082,3
+2940531,25718082,4
+yexiaohong,25718082,3
+purestar,25718082,4
+45062725,25718082,4
+114743754,25718082,-1
+45534837,25718082,3
+blackpanther,25718082,3
+11889754,25718082,4
+102275947,25718082,4
+ashengr,25718082,1
+78208494,25718082,4
+78208494,25718082,4
+102912620,25718082,2
+44534679,25718082,5
+59544418,25718082,2
+35000188,25718082,5
+56835432,25718082,4
+112845230,25718082,5
+jennyseath,25718082,2
+74564790,25718082,3
+84039736,25718082,4
+66545279,25718082,4
+39399066,25718082,4
+evooone,25718082,2
+duzhouchi,25718082,3
+4589617,25718082,3
+66584707,25718082,4
+84944079,25718082,3
+28420643,25718082,4
+50187661,25718082,2
+47373898,25718082,4
+shuizhixing,25718082,3
+szk13731584239,25718082,3
+51786434,25718082,4
+51247618,25718082,3
+luyuda2007,25718082,3
+52952437,25718082,4
+JOCK,25718082,5
+62413537,25718082,3
+54119781,25718082,4
+47056518,25718082,2
+46439800,25718082,4
+46305822,25718082,3
+56744079,25718082,4
+tintingo,25718082,3
+adaylanie,25718082,3
+hujiarui,25718082,3
+icewent,25718082,4
+qyzz,25718082,5
+Uni_zz,25718082,4
+soda520,25718082,4
+68146250,25718082,3
+azure107229,25718082,3
+75638886,25718082,2
+36184244,25718082,4
+wangholic,25718082,3
+Onion_sis,25718082,3
+dreamersjcat,25718082,4
+52907195,25718082,4
+125134010,25718082,5
+90690104,25718082,4
+53611798,25718082,4
+115219688,25718082,4
+121790553,25718082,4
+4313535,25718082,4
+65937993,25718082,-1
+55653104,25718082,3
+82624141,25718082,4
+cen1126,25718082,3
+56453886,25718082,5
+gexiarong,25718082,2
+23865191,25718082,3
+Jillian,25718082,1
+4666285,25718082,5
+90751149,25718082,4
+57896289,25718082,5
+83550377,25718082,5
+WEWE7UP,25718082,4
+joyceamigo,25718082,3
+53830314,25718082,4
+2602172,25718082,-1
+marcamoy,25718082,4
+80657884,25718082,4
+68687737,25718082,4
+91327203,25718082,-1
+guanhuo,25718082,3
+43888841,25718082,3
+54782400,25718082,5
+36265929,25718082,3
+dulovesbabamama,25718082,4
+kellyelbe,25718082,4
+50589575,25718082,4
+Antidream,25718082,4
+76418910,25718082,3
+bearboo,25718082,3
+44969749,25718082,4
+Kristenhay,25718082,4
+2049622,25718082,1
+Lotuscutey,25718082,5
+45777141,25718082,4
+54345487,25718082,5
+88219277,25718082,4
+62253827,25718082,3
+62404317,25718082,4
+billiebo,25718082,4
+yoshimi,25718082,3
+53434182,25718082,4
+64335483,25718082,4
+eddy_charlie,25718082,4
+annatom,25718082,4
+youyougo,25718082,4
+49760217,25718082,3
+pussyman,25718082,3
+33907993,25718082,4
+ALee301302,25718082,-1
+62995857,25718082,4
+2830829,25718082,-1
+51439846,25718082,5
+ljjchn,25718082,4
+AbiesMill,25718082,4
+why20061108,25718082,2
+48310124,25718082,4
+50365027,25718082,4
+72324170,25718082,3
+zhuqingdaren,25718082,4
+53396330,25718082,4
+xiaoczhang,25718082,4
+montee_D,25718082,3
+50005551,25718082,4
+2855599,25718082,4
+64978865,25718082,5
+candysunflower,25718082,3
+52970455,25718082,4
+aiJC,25718082,3
+RockyZou,25718082,3
+GracieG,25718082,3
+cqlavender,25718082,3
+sukidacss,25718082,4
+39953503,25718082,3
+Eyyyyyy,25718082,5
+mymok,25718082,1
+23853027,25718082,3
+2404315,25718082,3
+2831834,25718082,5
+41030554,25718082,4
+52964714,25718082,4
+nuannuancyl,25718082,4
+SPIRITUA,25718082,3
+47993943,25718082,4
+119321352,25718082,5
+jaredspecter,25718082,4
+12629797,25718082,3
+3709991,25718082,4
+28421779,25718082,4
+landway,25718082,3
+78474826,25718082,3
+fish.in.bottle,25718082,4
+wsqsue,25718082,4
+49116825,25718082,3
+ChicWeirdo,25718082,3
+48411235,25718082,3
+claireGuoDH,25718082,4
+103484667,25718082,4
+46126944,25718082,4
+evgeni1955,25718082,3
+VZ---LZW,25718082,4
+3957451,25718082,4
+liujinlin,25718082,3
+yan6,25718082,3
+65153834,25718082,4
+66780341,25718082,4
+anwhale,25718082,3
+50627941,25718082,3
+114657880,25718082,5
+rangxiao,25718082,-1
+57597596,25718082,4
+46797309,25718082,3
+nicokey,25718082,3
+mrfish,25718082,4
+65677283,25718082,2
+40258007,25718082,4
+winonaliang,25718082,5
+49302309,25718082,4
+126758239,25718082,4
+3831169,25718082,3
+nanzhao,25718082,4
+3581002,25718082,5
+SunLiLiSun,25718082,3
+75735130,25718082,5
+jc25,25718082,-1
+Joy4Daisuki,25718082,3
+1582961,25718082,3
+mr.slow,25718082,4
+59149801,25718082,2
+57134566,25718082,5
+bloodysherry,25718082,3
+39666216,25718082,3
+lianxin-,25718082,4
+dounaivivi,25718082,4
+83704374,25718082,4
+xiaoyuan_0310,25718082,3
+yamin1004,25718082,3
+45319686,25718082,3
+51853424,25718082,5
+2480830,25718082,3
+tangjiaqi,25718082,3
+52925540,25718082,5
+52889197,25718082,4
+xinde01,25718082,3
+antoniochen,25718082,2
+1864146,25718082,4
+1864146,25718082,4
+48863720,25718082,4
+50555792,25718082,3
+92468807,25718082,3
+FRENTE13,25718082,3
+TakeItEasyTed,25718082,4
+41660790,25718082,-1
+3978577,25718082,3
+70081984,25718082,4
+jszh,25718082,3
+52447788,25718082,3
+58133063,25718082,4
+50651316,25718082,5
+twopersons,25718082,3
+74013716,25718082,2
+fumihiko1985,25718082,3
+SYIEBGISDNG,25718082,3
+vinniezhao,25718082,4
+72905704,25718082,5
+53823521,25718082,4
+tayloverms,25718082,3
+44708171,25718082,2
+61754132,25718082,5
+ecane,25718082,4
+rainynut,25718082,4
+sev7n777,25718082,3
+2174198,25718082,3
+63006274,25718082,4
+58603704,25718082,3
+57580969,25718082,3
+smeles,25718082,3
+46476266,25718082,4
+corgi,25718082,-1
+36638272,25718082,5
+sorrySomnus,25718082,2
+joecycc,25718082,4
+92945557,25718082,3
+3762024,25718082,4
+5612926,25718082,4
+59788241,25718082,4
+60411524,25718082,4
+hydeyouyou,25718082,4
+55280839,25718082,3
+65069009,25718082,5
+sarah59,25718082,4
+nangle,25718082,3
+53577645,25718082,-1
+ruoyingwang,25718082,4
+45789022,25718082,5
+xiaocibayberry,25718082,3
+anqixue,25718082,4
+archil,25718082,4
+122224219,25718082,3
+62594842,25718082,3
+43059614,25718082,5
+126748700,25718082,3
+Risabella,25718082,3
+xyhen,25718082,4
+38258402,25718082,3
+xiaoxiaodengai,25718082,4
+49075297,25718082,-1
+119226386,25718082,4
+bukuweidouban,25718082,5
+39064902,25718082,4
+lizhenghome,25718082,5
+40912138,25718082,3
+fanclrice,25718082,4
+yueyan23,25718082,3
+julywaits,25718082,3
+44398603,25718082,5
+shenxueying,25718082,4
+58956740,25718082,5
+88516599,25718082,3
+64105461,25718082,4
+45224713,25718082,4
+cgaga,25718082,4
+58231376,25718082,4
+mickkey,25718082,-1
+45795420,25718082,3
+missdessy,25718082,4
+61937935,25718082,3
+71867993,25718082,4
+cherrysoda1993,25718082,4
+80197452,25718082,4
+4244492,25718082,3
+yxjeremy,25718082,5
+leisurelee,25718082,4
+65448112,25718082,3
+dehuaer,25718082,4
+hazelhao,25718082,3
+Ryanzeng,25718082,1
+julycythia,25718082,3
+ccsisy,25718082,4
+johndoex,25718082,4
+45097114,25718082,3
+51162865,25718082,5
+vivisnbb,25718082,4
+jingyu0704,25718082,5
+79148662,25718082,-1
+50141332,25718082,4
+49586478,25718082,3
+31084130,25718082,2
+bearyumi,25718082,4
+3700581,25718082,4
+leenia,25718082,5
+75678243,25718082,2
+56843033,25718082,4
+fuyunyajie,25718082,5
+36148411,25718082,4
+59993815,25718082,5
+sandorsansa,25718082,3
+56526640,25718082,3
+99864478,25718082,4
+komos,25718082,3
+65723913,25718082,4
+65913822,25718082,3
+liunisn,25718082,5
+68504200,25718082,2
+op5411,25718082,2
+edizoo,25718082,4
+63178340,25718082,5
+ydlxiaolong,25718082,4
+46266851,25718082,3
+8251226,25718082,4
+121481602,25718082,3
+huxiaotian,25718082,3
+123174311,25718082,2
+92230776,25718082,4
+waWa.tomato,25718082,1
+hx2,25718082,3
+geniuswan,25718082,3
+3609679,25718082,3
+39944237,25718082,4
+32541723,25718082,4
+48051436,25718082,5
+minoindemo,25718082,4
+2224035,25718082,1
+Jarashi,25718082,4
+RivenZhong,25718082,2
+2271745,25718082,4
+110313218,25718082,4
+guguDoris,25718082,3
+84158526,25718082,3
+zhangtuo,25718082,4
+48843786,25718082,-1
+96475500,25718082,4
+princessvivian,25718082,4
+84294056,25718082,4
+57286143,25718082,4
+44028431,25718082,4
+zyydads,25718082,3
+jopees,25718082,5
+45541746,25718082,4
+48369193,25718082,3
+67104840,25718082,2
+brightwsx,25718082,5
+2570265,25718082,4
+xiaojirou007,25718082,4
+63481883,25718082,4
+rosecookie,25718082,5
+52366157,25718082,4
+ligedi,25718082,1
+58741014,25718082,-1
+63503398,25718082,4
+baradyw,25718082,3
+54673185,25718082,5
+83951114,25718082,4
+59458875,25718082,4
+83658918,25718082,-1
+XXXXXmian,25718082,4
+2338228,25718082,4
+Esther.,25718082,4
+58934229,25718082,4
+soulchang,25718082,3
+120160659,25718082,5
+simpleseason,25718082,3
+funyifan,25718082,5
+48793240,25718082,4
+fifa10,25718082,4
+happybiran,25718082,4
+lamslee,25718082,4
+61982601,25718082,4
+52553005,25718082,4
+47569637,25718082,4
+JCJC,25718082,3
+65580805,25718082,5
+4381444,25718082,4
+31407826,25718082,5
+119774543,25718082,4
+youyui,25718082,4
+43142843,25718082,2
+maertaren,25718082,5
+44335923,25718082,5
+hippiecar,25718082,4
+wen_Schwartz,25718082,3
+61327300,25718082,5
+1219663,25718082,1
+43211886,25718082,4
+68865519,25718082,3
+119319069,25718082,4
+119319069,25718082,4
+57964906,25718082,-1
+Dreaming1989712,25718082,1
+lf_wei,25718082,4
+qianchanchan,25718082,4
+shushizhenliu,25718082,4
+78508432,25718082,4
+61726273,25718082,4
+zhouyou0807,25718082,3
+2571757,25718082,3
+52859781,25718082,5
+47203558,25718082,4
+52822669,25718082,2
+49325422,25718082,2
+soberldly,25718082,3
+125699910,25718082,3
+46920683,25718082,4
+2754204,25718082,-1
+mossmoss,25718082,3
+45207350,25718082,4
+48206848,25718082,5
+51907715,25718082,3
+46755320,25718082,4
+madbamboo,25718082,4
+46321619,25718082,4
+41874215,25718082,4
+3131452,25718082,-1
+fey219,25718082,3
+Anatomy,25718082,2
+68102977,25718082,4
+viavia1991,25718082,3
+4408577,25718082,1
+57244499,25718082,-1
+65876388,25718082,5
+92315963,25718082,5
+hikarichin,25718082,2
+47685023,25718082,4
+amanuel,25718082,4
+vedaland,25718082,4
+SH1202,25718082,1
+jjloverene,25718082,4
+78949729,25718082,4
+sophielikeit,25718082,3
+umbrella722,25718082,4
+33506983,25718082,5
+49266034,25718082,-1
+50837476,25718082,5
+46907907,25718082,1
+42858385,25718082,5
+confuzzle,25718082,5
+58863431,25718082,2
+VioletChong,25718082,3
+benzliang,25718082,3
+50924789,25718082,4
+loli1900,25718082,3
+langsusu,25718082,2
+53789124,25718082,4
+schilthorn,25718082,2
+37943825,25718082,3
+gohoneyBqinzhu,25718082,3
+69342531,25718082,4
+56687999,25718082,3
+36627775,25718082,-1
+82988604,25718082,4
+lulynn,25718082,4
+flowerish,25718082,4
+52190465,25718082,4
+45467284,25718082,4
+46506277,25718082,5
+44137619,25718082,5
+hide29,25718082,-1
+33399271,25718082,3
+cindyhello,25718082,-1
+52339063,25718082,4
+28365656,25718082,3
+ask4more,25718082,-1
+blase_pp,25718082,4
+applefloral,25718082,4
+milanmao,25718082,4
+2756995,25718082,4
+46993692,25718082,4
+31685113,25718082,5
+guojie,25718082,3
+70757944,25718082,5
+ak31,25718082,2
+chuhaoshan,25718082,4
+yo_yowen,25718082,4
+37320102,25718082,3
+99329704,25718082,3
+hougirl,25718082,4
+61953901,25718082,3
+renshendou,25718082,3
+50443148,25718082,5
+C_Perk,25718082,4
+yaopi,25718082,3
+47220302,25718082,4
+AIRs,25718082,-1
+fontain,25718082,3
+nevershuo,25718082,4
+2352053,25718082,-1
+KeithMoon,25718082,3
+87651683,25718082,5
+60280163,25718082,5
+119101467,25718082,4
+youcheng321,25718082,4
+64694528,25718082,4
+62433347,25718082,-1
+12511197,25718082,3
+fin07,25718082,-1
+34823102,25718082,4
+42932797,25718082,5
+liangluo,25718082,5
+43595713,25718082,3
+48484195,25718082,3
+air1104,25718082,4
+yixi7,25718082,3
+117360867,25718082,4
+59570666,25718082,4
+8523675,25718082,4
+rbit,25718082,3
+rbit,25718082,3
+56076845,25718082,5
+87652324,25718082,4
+33749828,25718082,5
+50269699,25718082,3
+57365117,25718082,3
+58903847,25718082,3
+50923233,25718082,4
+62708720,25718082,5
+1815039,25718082,3
+IloveyouDanica,25718082,3
+53867160,25718082,4
+59361957,25718082,4
+2195518,25718082,4
+qiuqiu_hai,25718082,4
+justinlam109,25718082,5
+1786605,25718082,3
+50707806,25718082,1
+64227759,25718082,4
+75444584,25718082,2
+66572038,25718082,5
+KingWong,25718082,4
+3981692,25718082,-1
+87209971,25718082,4
+lzzzzzfbee,25718082,3
+55379993,25718082,3
+39977631,25718082,2
+46912263,25718082,5
+iampearl,25718082,4
+nothing-lasts,25718082,4
+45344907,25718082,4
+52831118,25718082,5
+48961470,25718082,3
+39271216,25718082,4
+42124709,25718082,4
+1153615,25718082,5
+2461016,25718082,4
+89768114,25718082,3
+88371415,25718082,5
+45258731,25718082,4
+2116998,25718082,2
+64397699,25718082,4
+43517308,25718082,4
+72271099,25718082,5
+mercury0302,25718082,3
+115547734,25718082,4
+Flora1119,25718082,4
+6219493,25718082,4
+115807401,25718082,4
+57274544,25718082,5
+41204451,25718082,4
+66711883,25718082,3
+Huangyun716,25718082,4
+87636985,25718082,4
+sunchao1989,25718082,3
+2910620,25718082,4
+1830056,25718082,4
+43764031,25718082,4
+57425264,25718082,3
+3657934,25718082,3
+2118507,25718082,4
+john280859170,25718082,5
+15428287,25718082,5
+dreamer629,25718082,3
+zisic,25718082,3
+88149801,25718082,5
+81106134,25718082,4
+43828485,25718082,3
+48593728,25718082,3
+55962178,25718082,3
+69910134,25718082,3
+8506814,25718082,4
+61688299,25718082,5
+31389307,25718082,4
+69133855,25718082,3
+53656219,25718082,3
+115974574,25718082,5
+53911150,25718082,4
+50709247,25718082,1
+50071267,25718082,3
+43714574,25718082,5
+Joinblue,25718082,-1
+maya,25718082,3
+Hochy,25718082,4
+56975881,25718082,4
+62219119,25718082,2
+lwvsch,25718082,3
+chanel0214,25718082,4
+61580242,25718082,3
+65370065,25718082,3
+78604833,25718082,3
+augusttt,25718082,3
+61661455,25718082,5
+34591792,25718082,-1
+cgy0330,25718082,5
+53677228,25718082,3
+yuval,25718082,3
+49082695,25718082,3
+oldmarychou,25718082,4
+vivifyvivi,25718082,2
+1811043,25718082,5
+2180309,25718082,3
+illllls,25718082,4
+cchestnut,25718082,4
+catheringli,25718082,5
+58288224,25718082,4
+73931877,25718082,4
+78202919,25718082,4
+48167750,25718082,2
+63371877,25718082,4
+Coyotes,25718082,5
+4157643,25718082,4
+114557614,25718082,4
+zison,25718082,2
+63236633,25718082,3
+charlielee,25718082,5
+cherylnim,25718082,4
+34483971,25718082,3
+49220314,25718082,3
+reave,25718082,4
+120611241,25718082,4
+zc1020,25718082,3
+zechs,25718082,4
+allentt1218,25718082,4
+kyleul,25718082,5
+ricechow,25718082,5
+53726625,25718082,4
+mrsrost,25718082,5
+53917247,25718082,4
+daisydann,25718082,4
+dede1994,25718082,4
+63101856,25718082,3
+65358454,25718082,5
+mr_octopus,25718082,5
+mm0220xt,25718082,4
+Creep_,25718082,3
+35272301,25718082,4
+80798230,25718082,4
+fabregas04,25718082,4
+liangnian,25718082,4
+laomi92,25718082,2
+38887912,25718082,2
+85317436,25718082,3
+4576801,25718082,4
+4320404,25718082,3
+66831677,25718082,4
+44705229,25718082,4
+4069189,25718082,4
+90971876,25718082,5
+1615334,25718082,5
+57758462,25718082,5
+73571891,25718082,5
+75117264,25718082,5
+CainChan,25718082,3
+hashayaqi,25718082,4
+ishtarie,25718082,4
+2387348,25718082,3
+72002197,25718082,3
+62093944,25718082,3
+58044452,25718082,4
+sunsetbutterfly,25718082,3
+3045195,25718082,3
+zhxyuh,25718082,3
+78853925,25718082,5
+59412896,25718082,4
+4447378,25718082,4
+vikii,25718082,3
+mrpeas,25718082,3
+evennn55555999,25718082,4
+hongshengc,25718082,5
+2909779,25718082,3
+70611380,25718082,4
+66203352,25718082,3
+53431261,25718082,3
+Chohin,25718082,3
+44143353,25718082,4
+18071732,25718082,3
+40418161,25718082,3
+kingszar,25718082,2
+Feeeeee,25718082,4
+55789619,25718082,-1
+49519192,25718082,-1
+42695400,25718082,4
+62457534,25718082,5
+123258422,25718082,1
+baozha,25718082,3
+107635262,25718082,5
+84250012,25718082,4
+Ashtrayyyyy,25718082,4
+crystalLXT,25718082,5
+122288070,25718082,4
+96044338,25718082,3
+yaeldeyn,25718082,5
+51420490,25718082,5
+efeimaomao,25718082,3
+franklinton,25718082,3
+98165549,25718082,4
+49028296,25718082,4
+NaamTsui,25718082,4
+54095491,25718082,4
+lytmonkey21,25718082,4
+jun22,25718082,4
+Peaches.Wu,25718082,4
+79846975,25718082,4
+edwardjw,25718082,4
+suyinyu,25718082,3
+51763464,25718082,3
+waka7,25718082,2
+51220140,25718082,5
+50117993,25718082,3
+yamlion,25718082,5
+52591024,25718082,3
+AlohaJessica,25718082,4
+fan_1220,25718082,-1
+126400536,25718082,4
+1780152,25718082,4
+84109084,25718082,3
+55774823,25718082,5
+47840871,25718082,2
+6537233,25718082,4
+51603332,25718082,4
+90868187,25718082,-1
+122614702,25718082,5
+71000941,25718082,4
+heyi705,25718082,-1
+56818506,25718082,4
+zhuzx,25718082,4
+Cinderellia,25718082,-1
+66585349,25718082,3
+84231339,25718082,3
+86721520,25718082,5
+Annlee1891,25718082,5
+nuan950707,25718082,5
+Californiaxj,25718082,5
+50269050,25718082,4
+59420263,25718082,4
+ASLawliet,25718082,4
+cathywx,25718082,-1
+63765842,25718082,4
+killa24whut,25718082,5
+52951268,25718082,5
+40044511,25718082,2
+jcsherry,25718082,4
+2671857,25718082,4
+talk2linx,25718082,3
+75813219,25718082,3
+79390200,25718082,-1
+89906593,25718082,3
+lizzy2005,25718082,2
+xuehaotian,25718082,3
+aprilwind_shi,25718082,5
+65369148,25718082,3
+50438516,25718082,5
+55621323,25718082,4
+billrain,25718082,3
+piubiu,25718082,3
+48523065,25718082,3
+53879339,25718082,4
+61547561,25718082,5
+summer-v,25718082,4
+uman,25718082,4
+81430185,25718082,4
+malu,25718082,3
+1702651,25718082,5
+74946696,25718082,4
+2456755,25718082,1
+zwanflying,25718082,4
+119374613,25718082,4
+wondershine,25718082,4
+56102108,25718082,3
+48687824,25718082,3
+52028198,25718082,5
+59210685,25718082,3
+3362566,25718082,4
+prejudice,25718082,3
+zhangziyi,25718082,5
+2272740,25718082,-1
+50068704,25718082,4
+113752134,25718082,4
+66831193,25718082,5
+boeyshow,25718082,5
+zhecx,25718082,1
+50431006,25718082,3
+smilemiaomiao,25718082,4
+48476618,25718082,4
+49232578,25718082,4
+124528754,25718082,5
+jtaiyang,25718082,4
+40744505,25718082,3
+emilysky,25718082,4
+51965431,25718082,3
+zcq741433220,25718082,4
+xixi219mr-az,25718082,-1
+bieren,25718082,-1
+89087643,25718082,2
+3529966,25718082,-1
+79865158,25718082,5
+gdragon-ily,25718082,3
+10218271,25718082,5
+harukimlee,25718082,5
+cruer,25718082,2
+54610354,25718082,3
+rex2xt,25718082,3
+aprilrainer,25718082,3
+45740435,25718082,4
+2561513,25718082,4
+miemiefever,25718082,4
+paopao221,25718082,3
+aibaobaoguai327,25718082,4
+fabulousfan,25718082,4
+goodbyelenin,25718082,3
+67692167,25718082,3
+SalvadorDali,25718082,3
+60940437,25718082,2
+leeeeeeeew,25718082,1
+59533938,25718082,4
+61719890,25718082,4
+zhangcherry,25718082,-1
+50867193,25718082,3
+64695712,25718082,4
+ccrazy,25718082,2
+20916982,25718082,4
+ruanshusheng,25718082,4
+19708790,25718082,4
+llllkkkkkkk,25718082,3
+linruoru,25718082,4
+26822185,25718082,5
+10333467,25718082,4
+Hanndiex_,25718082,5
+platero,25718082,-1
+F1vese7enone,25718082,3
+79384441,25718082,4
+50079736,25718082,-1
+Yven,25718082,5
+55943262,25718082,4
+3863337,25718082,-1
+43391776,25718082,5
+46170417,25718082,5
+2945083,25718082,5
+loulou-mae,25718082,3
+3840813,25718082,4
+maydaylyn,25718082,4
+43834278,25718082,4
+wen1011,25718082,3
+2842505,25718082,3
+vera0902,25718082,3
+53414653,25718082,-1
+89747225,25718082,3
+4686814,25718082,4
+50656699,25718082,3
+lencia,25718082,4
+64365504,25718082,5
+46430549,25718082,3
+54842061,25718082,3
+wunaihuaqi,25718082,4
+roke128,25718082,-1
+49191008,25718082,4
+taone,25718082,3
+97396770,25718082,4
+48205317,25718082,-1
+HAVIAL13WEI,25718082,5
+yanzonda,25718082,5
+leoflower,25718082,5
+58888075,25718082,3
+43912809,25718082,4
+2233142,25718082,3
+51605377,25718082,-1
+50600162,25718082,3
+angelene11,25718082,5
+46815070,25718082,3
+huanhua,25718082,3
+scha-_-,25718082,4
+3693808,25718082,2
+acedamic,25718082,4
+66778523,25718082,4
+48286955,25718082,3
+2242910,25718082,-1
+78782425,25718082,4
+101884264,25718082,3
+80722428,25718082,3
+80722428,25718082,3
+chenche,25718082,4
+mcobeli,25718082,5
+yizesen,25718082,3
+moenning,25718082,3
+lassiedusky,25718082,4
+Lreckle,25718082,2
+53794054,25718082,3
+54252540,25718082,4
+zhuluoo7,25718082,-1
+L_LAWLIET,25718082,4
+40006470,25718082,3
+fare-pussy,25718082,3
+ukiyo823,25718082,-1
+57537354,25718082,3
+51909458,25718082,3
+vitaminJ,25718082,5
+hianan,25718082,3
+48620320,25718082,4
+2025086,25718082,3
+2568264,25718082,4
+44058159,25718082,4
+96898762,25718082,3
+4098661,25718082,3
+51712880,25718082,5
+49147693,25718082,2
+4056994,25718082,3
+64067029,25718082,3
+64136344,25718082,3
+sannqi,25718082,4
+77307938,25718082,3
+54398073,25718082,-1
+dear.still,25718082,4
+116614076,25718082,4
+3478406,25718082,3
+69822780,25718082,3
+122172972,25718082,3
+123972693,25718082,3
+42823496,25718082,3
+81240800,25718082,3
+2464453,25718082,4
+binben,25718082,5
+sevensummer,25718082,4
+67163006,25718082,4
+2572927,25718082,4
+diaobao11,25718082,3
+90715533,25718082,4
+lolixiwyweiwei,25718082,5
+48604788,25718082,1
+64901268,25718082,4
+76127642,25718082,3
+ciel2jia,25718082,5
+Schwarzwaelder,25718082,-1
+85016135,25718082,4
+77775868,25718082,4
+96229888,25718082,4
+66521777,25718082,3
+yumengya,25718082,4
+34513979,25718082,4
+lm12199,25718082,4
+ZZZZF,25718082,4
+103960212,25718082,4
+48397224,25718082,4
+xiaohundexiaoba,25718082,3
+jeremy-won,25718082,4
+vivianya,25718082,3
+44514155,25718082,5
+57920541,25718082,4
+15276874,25718082,5
+cyrus_wong,25718082,3
+110392919,25718082,4
+richer725,25718082,4
+79074513,25718082,3
+62455169,25718082,4
+66636570,25718082,3
+dorothy.C,25718082,5
+cat_water,25718082,4
+58916453,25718082,4
+72532382,25718082,3
+49708644,25718082,4
+49708644,25718082,4
+rachellee94,25718082,4
+beikou,25718082,4
+4402268,25718082,2
+2626046,25718082,4
+37614806,25718082,5
+rudygiraffe,25718082,4
+PurpleLight0323,25718082,5
+bluegrey,25718082,4
+DeWatson,25718082,5
+mouq,25718082,3
+zxyang,25718082,5
+Antonia-17,25718082,3
+aiyung,25718082,4
+peipei0105,25718082,4
+50900048,25718082,2
+Orchid,25718082,3
+caolian,25718082,3
+1001195,25718082,4
+80854961,25718082,3
+47423865,25718082,4
+52278256,25718082,3
+LQ1986125,25718082,5
+43709806,25718082,5
+38690945,25718082,5
+Vincewang_cn,25718082,4
+3321575,25718082,-1
+francesyu9233,25718082,4
+53644977,25718082,5
+65063242,25718082,3
+81249317,25718082,2
+45996774,25718082,4
+32746698,25718082,4
+xinxinniannian,25718082,4
+110969952,25718082,4
+1127610,25718082,4
+xiaosefengning,25718082,3
+33782598,25718082,4
+77472565,25718082,4
+73898025,25718082,4
+28490243,25718082,5
+gxyvonne,25718082,3
+oranicge,25718082,5
+tom80s,25718082,3
+mushroom16,25718082,4
+113251096,25718082,3
+10208605,25718082,3
+mumaer,25718082,5
+viktorhou,25718082,4
+70529423,25718082,4
+michi21,25718082,3
+ukindergarten,25718082,3
+seabisuit,25718082,3
+57311033,25718082,4
+asdf710667,25718082,3
+isabel-rene,25718082,4
+Meting_Chu,25718082,4
+2547310,25718082,3
+gnlee,25718082,4
+liuyajing811025,25718082,2
+saintage,25718082,4
+pajamania,25718082,3
+mouselsb,25718082,3
+S8,25718082,5
+vincen1208,25718082,2
+38404027,25718082,4
+1974706,25718082,4
+mo719125078,25718082,4
+lefrais,25718082,3
+71519036,25718082,4
+119203760,25718082,5
+1887825,25718082,3
+44834403,25718082,3
+64755839,25718082,4
+hengjitu,25718082,4
+52468739,25718082,3
+74145154,25718082,5
+romanbaby,25718082,2
+2132695,25718082,3
+flxjp,25718082,2
+119882836,25718082,2
+2910992,25718082,4
+62871612,25718082,4
+1383301,25718082,3
+66136937,25718082,4
+share329,25718082,4
+52708584,25718082,5
+longxiaosi,25718082,3
+66057217,25718082,3
+baizi886,25718082,4
+51394725,25718082,3
+77351374,25718082,4
+mufanxuanji,25718082,4
+65095857,25718082,4
+60016523,25718082,4
+70849512,25718082,3
+akaluzz,25718082,2
+63959751,25718082,4
+Leeshufeng,25718082,4
+102791213,25718082,2
+baifakongchui,25718082,3
+miaohengla,25718082,2
+constancef,25718082,3
+CraziLaura,25718082,3
+63220712,25718082,3
+tarimusi,25718082,-1
+66513837,25718082,4
+lesc,25718082,4
+3813369,25718082,5
+89661976,25718082,3
+39351378,25718082,3
+43304462,25718082,3
+amylittle,25718082,4
+rf0007,25718082,5
+41042005,25718082,4
+76986698,25718082,4
+luanluanvae,25718082,3
+93455996,25718082,3
+82729346,25718082,3
+vivieneyeung,25718082,4
+sunnyday-u,25718082,4
+13337545,25718082,2
+66384195,25718082,5
+61542149,25718082,4
+Cicipo44,25718082,3
+83678303,25718082,-1
+bigeater,25718082,4
+1502900,25718082,-1
+48923115,25718082,-1
+IcyTaylor,25718082,4
+116531386,25718082,3
+45792391,25718082,4
+55822408,25718082,4
+62748915,25718082,4
+taolim,25718082,2
+Tong323,25718082,4
+60735312,25718082,-1
+unclelonglegs,25718082,3
+judy0420,25718082,4
+doreenleung,25718082,4
+48949608,25718082,3
+47193539,25718082,5
+3867660,25718082,3
+74599483,25718082,4
+65291462,25718082,2
+DavyNight,25718082,3
+70741441,25718082,5
+summeryang,25718082,5
+57557711,25718082,4
+zannalulu,25718082,4
+ruler21san,25718082,-1
+65765391,25718082,4
+32913859,25718082,2
+62484889,25718082,4
+48232992,25718082,3
+A-Bao,25718082,3
+52174423,25718082,4
+76999762,25718082,4
+ivysyi,25718082,4
+hitent,25718082,4
+81815749,25718082,3
+GMDY,25718082,3
+amanda3513,25718082,4
+3678259,25718082,5
+guyewuzhe,25718082,3
+elainehsu,25718082,4
+AILUHAN123,25718082,4
+frym,25718082,4
+51339375,25718082,5
+123555227,25718082,3
+73864051,25718082,2
+btr,25718082,3
+69223309,25718082,2
+54308994,25718082,4
+4848390,25718082,4
+53272974,25718082,4
+putoff,25718082,3
+54327397,25718082,3
+1509670,25718082,-1
+B-162,25718082,4
+78582579,25718082,3
+eden_zong,25718082,3
+2123248,25718082,2
+losacos,25718082,4
+Iamapoem,25718082,2
+48492382,25718082,3
+XYJessie,25718082,4
+alina616,25718082,5
+47786775,25718082,4
+onlycf,25718082,3
+42292941,25718082,4
+3171344,25718082,3
+azurepeach,25718082,4
+bjmiss,25718082,2
+timememo,25718082,4
+1713591,25718082,-1
+xsweetsm_frida,25718082,4
+cccchichi,25718082,5
+Lulu-chips,25718082,3
+isayan,25718082,3
+64917852,25718082,5
+74660977,25718082,4
+45394887,25718082,4
+88392258,25718082,4
+80513106,25718082,4
+gh13singer,25718082,4
+sozheng,25718082,3
+2222172,25718082,4
+lullaby_ly,25718082,4
+53173969,25718082,4
+litian19890502,25718082,3
+nalanxiang,25718082,4
+Erica1011,25718082,4
+46793847,25718082,3
+hugowai,25718082,4
+sept7,25718082,4
+79736990,25718082,4
+52582150,25718082,4
+fangxue1105,25718082,4
+1420038,25718082,4
+lovea_ten,25718082,5
+yuanmavis,25718082,2
+moonillusion,25718082,5
+ding1yi,25718082,3
+clockwork-fish,25718082,4
+lemonomel,25718082,4
+2567860,25718082,5
+97431474,25718082,5
+41786241,25718082,4
+STT810,25718082,3
+envelopeyy,25718082,5
+34316735,25718082,4
+janeyuan,25718082,4
+ernestfang,25718082,4
+3677550,25718082,3
+wendychou,25718082,4
+4904431,25718082,2
+zhouqiweilai,25718082,4
+qinger1999,25718082,-1
+dddhkbj2333,25718082,4
+65283689,25718082,5
+maluguojiang,25718082,4
+21354916,25718082,2
+edward2wong,25718082,5
+qt1022,25718082,3
+michelle890513,25718082,4
+pershingsay,25718082,4
+xiaojiaheng,25718082,4
+3522119,25718082,4
+35252346,25718082,3
+hexybaby,25718082,3
+terrysteven,25718082,4
+shakeneko,25718082,3
+2394056,25718082,-1
+63740935,25718082,3
+12628045,25718082,-1
+jadyx,25718082,2
+venn,25718082,3
+erdansleepy,25718082,4
+2435412,25718082,3
+74705830,25718082,4
+Kevin.,25718082,4
+Nagini,25718082,3
+lingjue,25718082,4
+4856168,25718082,3
+judybubu,25718082,2
+59625353,25718082,4
+47216469,25718082,3
+46413224,25718082,3
+cxh19920714,25718082,4
+48875971,25718082,5
+tiffany33,25718082,4
+54348295,25718082,4
+holy-fishman,25718082,4
+mGreening,25718082,3
+44603618,25718082,3
+2275412,25718082,4
+fatcathead,25718082,3
+17407986,25718082,4
+YovaMonster1027,25718082,4
+yiyen.chow,25718082,2
+31281892,25718082,3
+38258575,25718082,3
+2099122,25718082,3
+100639145,25718082,3
+33732508,25718082,4
+kkguagangqin,25718082,4
+2329944,25718082,4
+huanm,25718082,4
+80634044,25718082,4
+66290511,25718082,3
+evensan,25718082,5
+96948133,25718082,4
+3874094,25718082,5
+60858827,25718082,4
+61309272,25718082,3
+daysofyouth,25718082,4
+jzhsu,25718082,4
+85245250,25718082,3
+51010303,25718082,5
+59235742,25718082,3
+4573556,25718082,4
+justsoso80s,25718082,3
+pandoranavi,25718082,3
+4135777,25718082,3
+7542909,25718082,3
+77774632,25718082,4
+brant,25718082,1
+54365564,25718082,3
+luckia1991,25718082,3
+chiling0824,25718082,-1
+yuebancl,25718082,4
+4361071,25718082,3
+2600083,25718082,3
+SoyQueenaTse,25718082,4
+mamistar,25718082,2
+53778781,25718082,4
+59363812,25718082,4
+62672201,25718082,3
+gaolina,25718082,2
+4401259,25718082,4
+1724293,25718082,4
+67681966,25718082,4
+hanadomoto,25718082,4
+smallove816,25718082,-1
+xlzz,25718082,5
+littlerow,25718082,3
+bunny622,25718082,5
+2320544,25718082,4
+goose721,25718082,5
+59774628,25718082,3
+45155872,25718082,3
+winmaxangle,25718082,3
+lapland,25718082,3
+moniquewang,25718082,4
+rachel-cho08,25718082,5
+tjz230,25718082,3
+2743083,25718082,4
+hexiaoqin,25718082,4
+butterfly10,25718082,2
+79415406,25718082,-1
+AAGban,25718082,4
+annerene,25718082,4
+jiongreborn,25718082,4
+tildali1214,25718082,3
+61679358,25718082,2
+2349644,25718082,4
+2005286,25718082,4
+milan07sheva,25718082,3
+47832961,25718082,3
+chenqi2011,25718082,3
+lukeyu,25718082,4
+day14,25718082,4
+bluegrid,25718082,5
+100146208,25718082,5
+28183442,25718082,3
+amy6663,25718082,4
+idorothy,25718082,3
+94790246,25718082,4
+MyloveXxy,25718082,3
+awang1997,25718082,4
+58902454,25718082,5
+qilapengqi,25718082,4
+moilly,25718082,4
+chouchouMQ1010,25718082,5
+63188914,25718082,4
+1929758,25718082,4
+miyui,25718082,3
+61767555,25718082,3
+89534065,25718082,3
+theninthmonth,25718082,3
+72365575,25718082,4
+52967718,25718082,3
+suh5213,25718082,4
+PlanD,25718082,2
+67454532,25718082,4
+NataliaZhao,25718082,4
+sherrykingna,25718082,4
+gilian,25718082,3
+64926044,25718082,4
+yoho1,25718082,5
+5355133,25718082,5
+59732020,25718082,3
+74641801,25718082,3
+65196323,25718082,4
+45375135,25718082,4
+whereiszoe,25718082,-1
+wxrygbcl,25718082,4
+36548201,25718082,4
+francoise-paris,25718082,5
+58204376,25718082,4
+May_C,25718082,4
+kwan0617,25718082,5
+wanghaoze,25718082,3
+indoors,25718082,-1
+1742073,25718082,4
+Ferloco,25718082,3
+80808248,25718082,4
+44597635,25718082,4
+61520753,25718082,3
+anniehoneys,25718082,4
+pinkbebe,25718082,2
+passed,25718082,3
+ScarlettCheung,25718082,4
+76879186,25718082,4
+yvette820,25718082,5
+v1wanghuang,25718082,3
+p2165,25718082,4
+45179970,25718082,3
+121618912,25718082,3
+sif7,25718082,3
+moguduola,25718082,3
+JonathanGun,25718082,5
+oldclean,25718082,5
+nickyiao,25718082,4
+2219533,25718082,-1
+rajorAn,25718082,4
+50450766,25718082,3
+landcrosser,25718082,3
+mysky,25718082,5
+misteror,25718082,4
+75122925,25718082,5
+luzhiyu,25718082,3
+2228783,25718082,4
+59621398,25718082,4
+iris29,25718082,5
+78500828,25718082,4
+iear,25718082,4
+turbine,25718082,4
+zhuyuejun,25718082,4
+1390221,25718082,3
+candywong,25718082,3
+60396815,25718082,5
+122329830,25718082,5
+samleq,25718082,5
+lihenghui,25718082,3
+hitomiorange,25718082,-1
+willow_0319,25718082,3
+xiaowangzi1984,25718082,4
+64086666,25718082,4
+cense,25718082,3
+52363002,25718082,3
+zwj514235,25718082,2
+Aspirin129,25718082,1
+Mianbulove,25718082,4
+sissichan,25718082,2
+kite2002,25718082,4
+shirleyye,25718082,3
+1485397,25718082,3
+aaaaaaaaaaa,25718082,2
+4828520,25718082,3
+fenglimuren,25718082,2
+52261459,25718082,3
+joanna726,25718082,4
+76340897,25718082,5
+ilt,25718082,3
+cyhappy36507,25718082,4
+giantguo,25718082,3
+akirastar,25718082,4
+mico2009,25718082,4
+82022775,25718082,4
+hmmux,25718082,4
+88117777,25718082,3
+7556467,25718082,4
+2705006,25718082,-1
+51602185,25718082,3
+78414144,25718082,-1
+63080276,25718082,4
+71938369,25718082,3
+36409948,25718082,3
+72693000,25718082,5
+amouraux,25718082,3
+54998105,25718082,3
+84698224,25718082,2
+36226280,25718082,4
+NysUn,25718082,5
+68844083,25718082,3
+50720441,25718082,3
+57418123,25718082,4
+carmengmm,25718082,4
+106489095,25718082,5
+53484226,25718082,2
+Emilily,25718082,4
+63375518,25718082,5
+57111606,25718082,4
+QUEBO,25718082,3
+1775965,25718082,4
+2914721,25718082,3
+55484274,25718082,3
+46763388,25718082,3
+ammiee,25718082,4
+smilestefanie,25718082,4
+zl19960120,25718082,5
+3529646,25718082,3
+54018069,25718082,3
+51152524,25718082,4
+liz90,25718082,5
+54424447,25718082,3
+46780682,25718082,3
+46513410,25718082,1
+lojen,25718082,3
+47020813,25718082,2
+Sylar10,25718082,4
+yodswork,25718082,2
+49118645,25718082,4
+3899360,25718082,5
+yushi,25718082,4
+amour1,25718082,3
+54087603,25718082,5
+susie1991,25718082,4
+zuo218,25718082,-1
+xxflyyh,25718082,3
+girliris,25718082,3
+62455186,25718082,3
+oweuuu,25718082,4
+116543609,25718082,5
+48474156,25718082,5
+unfoldway,25718082,3
+41946258,25718082,4
+x1Ao_y,25718082,3
+58179619,25718082,1
+lubinfan,25718082,4
+58768499,25718082,4
+chenzhuoqing,25718082,4
+tamiwang,25718082,4
+puggy,25718082,3
+babyxy006,25718082,3
+rollarrolland,25718082,5
+currant,25718082,4
+qianricao,25718082,5
+jackchen,25718082,4
+ihustar,25718082,2
+emily2ang,25718082,4
+4075540,25718082,3
+64648218,25718082,4
+yue17years,25718082,4
+58628233,25718082,3
+63454673,25718082,5
+51442573,25718082,4
+4677632,25718082,5
+106134371,25718082,4
+58027867,25718082,5
+60650344,25718082,4
+boomXXboomXX,25718082,5
+89744476,25718082,4
+thisisstar,25718082,4
+csj0824,25718082,5
+Just_vv,25718082,4
+classical622,25718082,2
+2049714,25718082,4
+sable_in_red,25718082,4
+june.q,25718082,3
+55764073,25718082,3
+3319103,25718082,3
+1419591,25718082,4
+LotusJune,25718082,5
+demi1949,25718082,4
+53854187,25718082,5
+claireqq,25718082,2
+leafandmemory,25718082,4
+batongyang,25718082,4
+wplee,25718082,3
+hedgehog,25718082,5
+84028552,25718082,2
+3682917,25718082,3
+Strawberry-U,25718082,3
+janaldlam,25718082,3
+maria.,25718082,4
+orangeumoon,25718082,4
+1758855,25718082,-1
+1897420,25718082,3
+greenyiruo,25718082,-1
+67976109,25718082,4
+miloz0908,25718082,3
+43133361,25718082,4
+xudi,25718082,-1
+V-anilla,25718082,4
+asdddwz,25718082,4
+lovelypocky,25718082,4
+61921759,25718082,4
+61921759,25718082,4
+3529035,25718082,-1
+3548835,25718082,4
+wudi_perfect,25718082,4
+aaronfighting,25718082,4
+TERRYBEAR,25718082,4
+57319762,25718082,3
+tobewith0216,25718082,4
+55645236,25718082,5
+81864809,25718082,3
+78914788,25718082,4
+75448374,25718082,4
+qioling,25718082,4
+67711452,25718082,4
+fuxiu,25718082,4
+68738037,25718082,5
+2237292,25718082,4
+stellainovember,25718082,4
+51572703,25718082,3
+50831227,25718082,4
+41516145,25718082,4
+70253333,25718082,5
+yoli,25718082,2
+46132797,25718082,3
+64166028,25718082,3
+wangzhanhei,25718082,2
+56870980,25718082,3
+27050393,25718082,5
+laneddy,25718082,3
+sw051029,25718082,-1
+CeciliaQueen,25718082,5
+sunrisesunset,25718082,3
+51072567,25718082,4
+hhhhhhn,25718082,5
+eloisepqy,25718082,3
+1121733,25718082,5
+jiansforever,25718082,3
+4758854,25718082,4
+Himno,25718082,5
+Eileke,25718082,3
+amir0320,25718082,3
+watertt,25718082,3
+helene9933,25718082,3
+shoushouan,25718082,-1
+2076258,25718082,3
+57987531,25718082,1
+120008046,25718082,3
+wusequanwei,25718082,4
+guthrun,25718082,2
+61455640,25718082,4
+102902029,25718082,3
+48423017,25718082,5
+50031038,25718082,4
+saosaoxy,25718082,5
+2596592,25718082,5
+jeyhello,25718082,4
+LincolnSixEcho,25718082,3
+sunnyareas,25718082,5
+chinriya,25718082,3
+44622653,25718082,4
+February,25718082,4
+bearblindman,25718082,5
+44500409,25718082,3
+foamwhisper,25718082,3
+double719jiao,25718082,3
+2986990,25718082,4
+blew,25718082,3
+nvq7Gin,25718082,5
+33415384,25718082,3
+tearsslj,25718082,4
+13147316,25718082,3
+Michellekids,25718082,3
+Mo-Cuishle,25718082,3
+CanaanYoung,25718082,4
+ringo_uknow,25718082,3
+105864771,25718082,1
+47127791,25718082,4
+3425802,25718082,3
+59617849,25718082,4
+mayxoxo,25718082,4
+2385120,25718082,5
+pigzi,25718082,4
+34105589,25718082,5
+ruo1996,25718082,2
+mrdalloway,25718082,4
+49893438,25718082,4
+49226753,25718082,4
+swimming7891,25718082,3
+bimbo,25718082,4
+variation,25718082,4
+timbbm,25718082,3
+littleadd,25718082,4
+springhall,25718082,4
+CityOfShadows,25718082,3
+dancelatoto,25718082,2
+91649977,25718082,5
+50451911,25718082,4
+43576982,25718082,5
+cheeringo,25718082,3
+nothingkitsch,25718082,3
+61939090,25718082,4
+phleebear,25718082,4
+43159348,25718082,4
+sfroompp,25718082,4
+59266552,25718082,5
+62876857,25718082,4
+blinglu,25718082,5
+54166163,25718082,2
+3971843,25718082,3
+oiseau_an,25718082,4
+lamchung,25718082,3
+44272396,25718082,4
+46521107,25718082,5
+simondu,25718082,3
+68804603,25718082,4
+55852712,25718082,4
+ailika,25718082,3
+48606499,25718082,4
+75809649,25718082,3
+90645515,25718082,3
+ccalifo,25718082,5
+61299787,25718082,3
+AliceTang27,25718082,3
+100532395,25718082,3
+66081108,25718082,4
+59249537,25718082,2
+46567996,25718082,2
+51194285,25718082,4
+lilian0724,25718082,3
+131343395,25718082,3
+masoeur,25718082,3
+Cheung93,25718082,4
+kimyeol,25718082,-1
+41040671,25718082,2
+130680480,25718082,5
+27814266,25718082,4
+1752075,25718082,-1
+93884806,25718082,3
+barcaren,25718082,3
+79489792,25718082,5
+61619787,23761370,3
+59574331,23761370,5
+138310660,23761370,3
+132621867,23761370,5
+socalledaeolus,23761370,4
+44376075,23761370,5
+135548680,23761370,5
+64713560,23761370,4
+m-XDLY,23761370,4
+46359448,23761370,4
+91719462,23761370,3
+103032395,23761370,5
+77702347,23761370,5
+133210774,23761370,3
+67691438,23761370,4
+71503753,23761370,5
+136663776,23761370,3
+135910631,23761370,3
+114745452,23761370,4
+73530411,23761370,4
+shane90,23761370,5
+xiaoQLu,23761370,5
+71220393,23761370,5
+59625394,23761370,4
+helloldq,23761370,5
+97631858,23761370,5
+45819377,23761370,4
+65293172,23761370,5
+125140417,23761370,4
+87819456,23761370,5
+47857020,23761370,5
+1077635,23761370,3
+NICOOLE,23761370,4
+99372325,23761370,4
+137772876,23761370,5
+131463589,23761370,4
+115360486,23761370,4
+134873920,23761370,5
+hejuefei,23761370,4
+123065633,23761370,5
+123065633,23761370,5
+iris007,23761370,5
+5607891,23761370,5
+chuzhi49,23761370,3
+63744273,23761370,4
+136456460,23761370,5
+41813819,23761370,5
+lostinyou123,23761370,4
+60987007,23761370,5
+135854903,23761370,5
+krisleung,23761370,4
+134489720,23761370,4
+91015182,23761370,4
+123379059,23761370,4
+54377869,23761370,4
+107281512,23761370,5
+50516869,23761370,1
+68630000,23761370,4
+136133409,23761370,5
+laojiaoshou,23761370,3
+laojiaoshou,23761370,3
+102604927,23761370,4
+fourisfour,23761370,3
+1761514,23761370,5
+121129598,23761370,5
+52184277,23761370,3
+136987487,23761370,5
+sevenplus,23761370,4
+43775933,23761370,5
+127691419,23761370,5
+122394659,23761370,5
+CHB,23761370,4
+3641355,23761370,3
+56125198,23761370,4
+64453703,23761370,4
+134417330,23761370,3
+131233204,23761370,4
+104462145,23761370,-1
+69875076,23761370,3
+134340411,23761370,5
+44103412,23761370,4
+lampin,23761370,4
+wll789ly,23761370,3
+64297776,23761370,5
+89758966,23761370,3
+julian_lu,23761370,4
+47714398,23761370,4
+64089189,23761370,3
+136460394,23761370,3
+Navel-DuQiYan,23761370,4
+39360207,23761370,5
+65424287,23761370,5
+4172986,23761370,4
+1133756,23761370,3
+liangjist,23761370,4
+Pissenlits,23761370,5
+53426437,23761370,5
+66141079,23761370,5
+103381846,23761370,2
+61715230,23761370,3
+134506577,23761370,3
+53632529,23761370,5
+137541196,23761370,4
+48335260,23761370,5
+137555231,23761370,3
+40137325,23761370,5
+45580337,23761370,4
+120632957,23761370,4
+58136729,23761370,5
+56519940,23761370,5
+46666599,23761370,3
+50590747,23761370,5
+Ruty1985,23761370,5
+Bran,23761370,3
+131254424,23761370,3
+52596376,23761370,4
+137611375,23761370,4
+wuyunoy,23761370,3
+134399469,23761370,4
+a2290677732,23761370,4
+130426138,23761370,5
+59541018,23761370,4
+65563696,23761370,4
+4500067,23761370,5
+82643605,23761370,5
+119954327,23761370,2
+88534332,23761370,5
+103525640,23761370,5
+82970357,23761370,4
+131525060,23761370,4
+95822092,23761370,3
+errrlilly,23761370,5
+51661693,23761370,4
+myl1fe,23761370,2
+sandie21,23761370,5
+tomelephant,23761370,4
+3341865,23761370,4
+82918946,23761370,3
+61265213,23761370,4
+131025179,23761370,5
+49691015,23761370,5
+65458998,23761370,3
+rain282453,23761370,4
+135928484,23761370,3
+39646385,23761370,3
+imkt,23761370,2
+122932689,23761370,4
+48207954,23761370,5
+luxe,23761370,4
+136578921,23761370,4
+YassiesVillage,23761370,5
+53723225,23761370,4
+118899954,23761370,4
+82361074,23761370,5
+timeregister,23761370,4
+111493695,23761370,5
+2392193,23761370,5
+69006133,23761370,4
+53558087,23761370,3
+131239316,23761370,4
+47415613,23761370,5
+liudifei,23761370,5
+ashlee0810,23761370,5
+60462039,23761370,5
+oiegg,23761370,3
+56238441,23761370,5
+74662202,23761370,5
+135571688,23761370,5
+zhaoray,23761370,5
+137909681,23761370,3
+134916252,23761370,4
+137941433,23761370,-1
+Lkila,23761370,5
+47004452,23761370,3
+87390770,23761370,5
+50573838,23761370,5
+79087170,23761370,2
+80246281,23761370,3
+PasS__bY,23761370,3
+xiaokissoo,23761370,4
+134968905,23761370,5
+46543549,23761370,5
+39789924,23761370,4
+50284567,23761370,-1
+53323494,23761370,3
+125102922,23761370,3
+Heaterh,23761370,3
+72870072,23761370,5
+129580488,23761370,4
+75621887,23761370,5
+69573435,23761370,4
+yustone,23761370,3
+67291761,23761370,4
+54419821,23761370,3
+cherry_why,23761370,4
+63820149,23761370,4
+53890211,23761370,3
+83317526,23761370,4
+kiwikiwifruit,23761370,3
+135613364,23761370,3
+geranium6002,23761370,3
+cc5832354,23761370,3
+131821523,23761370,4
+94420378,23761370,4
+70273921,23761370,4
+wantti,23761370,3
+jaycee103,23761370,4
+zhuyaoyao,23761370,5
+69058007,23761370,4
+81133859,23761370,4
+44326808,23761370,4
+57121022,23761370,5
+131545414,23761370,4
+121621931,23761370,5
+2161369,23761370,4
+Elvaaaaa,23761370,4
+mickjoust,23761370,5
+74427603,23761370,4
+54078126,23761370,3
+55858261,23761370,5
+4703233,23761370,3
+134271856,23761370,3
+134327999,23761370,5
+88386627,23761370,3
+princess921129,23761370,4
+68489915,23761370,5
+31877981,23761370,4
+80725015,23761370,4
+89892294,23761370,5
+55350236,23761370,3
+51053103,23761370,4
+wuuluuu,23761370,4
+66351945,23761370,5
+geminehoo,23761370,4
+133944092,23761370,5
+1712187,23761370,5
+bmrlb,23761370,4
+lasomabra,23761370,5
+kovin8888,23761370,5
+69460431,23761370,4
+69460431,23761370,4
+59041778,23761370,5
+102206182,23761370,5
+126007802,23761370,5
+64995021,23761370,-1
+130541613,23761370,5
+countcrows,23761370,3
+kalinin,23761370,3
+49690364,23761370,3
+laomo,23761370,4
+huangkui198707,23761370,5
+68387367,23761370,4
+88033603,23761370,4
+134585412,23761370,5
+fange1985,23761370,4
+1605031,23761370,5
+136759394,23761370,5
+suttie,23761370,5
+53119283,23761370,4
+45884477,23761370,3
+47191946,23761370,4
+137503237,23761370,4
+47444356,23761370,4
+57878638,23761370,5
+55793019,23761370,3
+mi-hang,23761370,3
+103653753,23761370,3
+60595685,23761370,3
+52317818,23761370,4
+by-rain,23761370,5
+ryanwanghz,23761370,3
+98014856,23761370,4
+45528332,23761370,3
+43329275,23761370,-1
+137505055,23761370,4
+daffodiller,23761370,5
+cometoseesnow,23761370,4
+75727476,23761370,4
+54946553,23761370,-1
+xiamian,23761370,4
+xiamian,23761370,4
+121766750,23761370,4
+4128845,23761370,3
+121878138,23761370,5
+appleueno,23761370,4
+elinli00,23761370,5
+115143793,23761370,4
+31817174,23761370,3
+68550514,23761370,5
+3361340,23761370,4
+insolitude,23761370,5
+130078321,23761370,4
+shiawasen,23761370,5
+33150323,23761370,5
+46346785,23761370,3
+52368554,23761370,4
+3104835,23761370,4
+124210070,23761370,4
+127118502,23761370,3
+137671530,23761370,5
+137671530,23761370,5
+47818066,23761370,3
+48139809,23761370,-1
+willsummer,23761370,4
+46505690,23761370,-1
+71918561,23761370,4
+88535863,23761370,4
+135470815,23761370,5
+1841757,23761370,4
+NakaiMasahiro,23761370,4
+rocker0313,23761370,4
+76825604,23761370,3
+58399849,23761370,4
+135795811,23761370,5
+sebastianv,23761370,5
+137314744,23761370,4
+64578424,23761370,4
+58644104,23761370,5
+33021828,23761370,4
+136745662,23761370,4
+63880097,23761370,2
+65260404,23761370,5
+131006977,23761370,4
+128955983,23761370,5
+Zanda,23761370,4
+81433597,23761370,4
+102254201,23761370,5
+2296984,23761370,5
+135269844,23761370,4
+135074228,23761370,5
+3321331,23761370,4
+2776901,23761370,5
+2839721,23761370,5
+94299562,23761370,3
+63961193,23761370,4
+68551392,23761370,5
+84710876,23761370,5
+28422626,23761370,5
+135794686,23761370,5
+49052740,23761370,5
+49052740,23761370,5
+81412709,23761370,4
+59968700,23761370,5
+49786914,23761370,4
+2423100,23761370,4
+26459598,23761370,5
+48445532,23761370,5
+127457458,23761370,4
+130978369,23761370,3
+myway510,23761370,3
+134631211,23761370,5
+57641425,23761370,4
+70728230,23761370,3
+133854839,23761370,4
+h1805331722,23761370,5
+mine_orange,23761370,5
+59975190,23761370,3
+129419034,23761370,4
+65488479,23761370,5
+apple16,23761370,4
+mayfeeling,23761370,3
+52969609,23761370,-1
+98956225,23761370,5
+1130020,23761370,4
+DrLoop,23761370,5
+36285360,23761370,-1
+134140438,23761370,5
+3934917,23761370,3
+2323695,23761370,-1
+114179686,23761370,5
+55815059,23761370,4
+cedric99,23761370,5
+137483520,23761370,4
+yaya25,23761370,4
+princessfrog,23761370,3
+49271038,23761370,5
+57761188,23761370,4
+71117694,23761370,3
+52949377,23761370,5
+Junekira,23761370,5
+Junekira,23761370,5
+104167946,23761370,3
+125154714,23761370,-1
+136150464,23761370,4
+LoveXXin,23761370,5
+137398525,23761370,5
+122431988,23761370,4
+jane921,23761370,4
+qingtian57,23761370,2
+137365506,23761370,-1
+illusionchen,23761370,5
+16395064,23761370,3
+zxPLAP,23761370,5
+vipermammon,23761370,3
+4090142,23761370,5
+zyzmelo,23761370,4
+137413651,23761370,4
+103531222,23761370,3
+tongna,23761370,3
+88345829,23761370,4
+41540943,23761370,4
+124823100,23761370,5
+wt1112,23761370,4
+126937145,23761370,3
+3318502,23761370,4
+MimiLs,23761370,4
+LibraGod,23761370,5
+128451151,23761370,4
+131187465,23761370,4
+71062352,23761370,5
+gooxx,23761370,3
+131909298,23761370,4
+120652679,23761370,2
+70895488,23761370,4
+65795089,23761370,5
+115375109,23761370,4
+130525600,23761370,5
+43982125,23761370,4
+49252599,23761370,5
+116271293,23761370,5
+116271293,23761370,5
+76976556,23761370,4
+88658178,23761370,3
+Doctory,23761370,4
+fanshall,23761370,5
+4679551,23761370,4
+46068341,23761370,4
+130599620,23761370,4
+65470085,23761370,3
+76976838,23761370,4
+charles479,23761370,4
+84585238,23761370,3
+58061236,23761370,5
+134537950,23761370,5
+65897421,23761370,3
+87010317,23761370,4
+68410719,23761370,3
+87298117,23761370,4
+ilovehouyi,23761370,4
+70053575,23761370,4
+3817447,23761370,4
+136179114,23761370,2
+48033961,23761370,5
+annaanonly,23761370,4
+125971465,23761370,4
+104645021,23761370,4
+50222808,23761370,3
+51504042,23761370,5
+congshuli,23761370,5
+41214898,23761370,4
+137244496,23761370,4
+91561679,23761370,5
+1689067,23761370,5
+guizhouln,23761370,5
+115687997,23761370,4
+70007681,23761370,3
+qhyh,23761370,4
+genger85,23761370,5
+134532132,23761370,5
+101334259,23761370,-1
+63528456,23761370,5
+137122181,23761370,4
+117234787,23761370,4
+101504303,23761370,5
+71266039,23761370,3
+121262498,23761370,3
+44990923,23761370,5
+64790470,23761370,5
+137206904,23761370,5
+65896652,23761370,5
+60689490,23761370,5
+yulebecky,23761370,4
+119313402,23761370,5
+2066553,23761370,5
+59131989,23761370,3
+124548457,23761370,5
+17679147,23761370,3
+122341750,23761370,4
+45097981,23761370,5
+127619617,23761370,4
+134643922,23761370,4
+126356316,23761370,1
+130369122,23761370,5
+1246797,23761370,3
+47037959,23761370,4
+36475631,23761370,4
+67759095,23761370,4
+84137263,23761370,5
+xiaoyufan569801,23761370,4
+50702754,23761370,4
+123112465,23761370,3
+qianqian0504,23761370,4
+54976256,23761370,4
+120778881,23761370,5
+evaah,23761370,3
+94767276,23761370,5
+50995419,23761370,3
+83737381,23761370,5
+qingxiaolin,23761370,4
+122048396,23761370,5
+64165773,23761370,5
+91825059,23761370,4
+65496704,23761370,4
+67225577,23761370,3
+122966703,23761370,4
+134534855,23761370,3
+53916327,23761370,4
+79030834,23761370,4
+127298823,23761370,5
+34250438,23761370,-1
+134258996,23761370,5
+1626349,23761370,4
+35330234,23761370,4
+loturis,23761370,4
+98538969,23761370,4
+68666799,23761370,4
+137061387,23761370,4
+49363911,23761370,2
+85951065,23761370,5
+135888657,23761370,4
+136160725,23761370,5
+45268716,23761370,5
+135237923,23761370,4
+64671145,23761370,5
+137061442,23761370,4
+136810733,23761370,3
+122025364,23761370,4
+60976948,23761370,3
+4561197,23761370,4
+134937890,23761370,5
+70313784,23761370,4
+122971730,23761370,5
+130192486,23761370,4
+hrhy1976,23761370,5
+38780906,23761370,5
+58215137,23761370,3
+hansey619688,23761370,4
+a1991,23761370,4
+130563496,23761370,5
+50706220,23761370,5
+61024723,23761370,3
+127119228,23761370,4
+67943970,23761370,5
+137121432,23761370,3
+68629139,23761370,4
+62705311,23761370,4
+18201171,23761370,3
+68632804,23761370,5
+54719032,23761370,5
+reveur07,23761370,4
+hxdsjh,23761370,4
+61675448,23761370,5
+45969996,23761370,4
+1943610,23761370,3
+1981762,23761370,4
+50275832,23761370,3
+131205877,23761370,4
+130647398,23761370,5
+50307949,23761370,3
+131025711,23761370,5
+echobaby6002,23761370,-1
+42375246,23761370,4
+134625303,23761370,3
+68632898,23761370,4
+137075359,23761370,5
+44642367,23761370,3
+134417369,23761370,3
+68630108,23761370,3
+137076197,23761370,4
+137073841,23761370,4
+6972638,23761370,4
+wangyuwei526,23761370,5
+137073415,23761370,4
+69439267,23761370,4
+133415627,23761370,5
+2246232,23761370,5
+137070872,23761370,4
+137058479,23761370,2
+60440382,23761370,3
+137058497,23761370,2
+suoyuhe,23761370,3
+langweibo,23761370,5
+115051698,23761370,5
+2055701,23761370,3
+131186363,23761370,5
+3519353,23761370,4
+56095656,23761370,4
+suitsue0504,23761370,4
+48090771,23761370,4
+mangobird,23761370,3
+129577798,23761370,4
+selenesun,23761370,3
+yinmilan,23761370,5
+136274462,23761370,4
+125386476,23761370,4
+lr777,23761370,5
+121120342,23761370,4
+131366965,23761370,5
+46030549,23761370,5
+63398971,23761370,5
+127992449,23761370,3
+95455271,23761370,5
+adai112,23761370,4
+80781412,23761370,5
+99940075,23761370,5
+lingdongling,23761370,3
+lovepeople,23761370,4
+63985739,23761370,5
+revaoo,23761370,3
+43529469,23761370,-1
+64750790,23761370,5
+62220357,23761370,4
+130445057,23761370,4
+63017768,23761370,3
+129611474,23761370,4
+xiaowumei,23761370,4
+120566787,23761370,4
+15612441,23761370,4
+136409582,23761370,4
+56103639,23761370,5
+suiffeng0504,23761370,4
+136979043,23761370,2
+52523730,23761370,5
+Lillian-LYL,23761370,3
+136601824,23761370,5
+58797277,23761370,4
+62704030,23761370,5
+81685996,23761370,3
+47659966,23761370,5
+syyofficer,23761370,3
+arruleo,23761370,5
+67531205,23761370,4
+124076510,23761370,5
+131020888,23761370,4
+38644821,23761370,3
+2493346,23761370,5
+43393007,23761370,2
+hanhanq,23761370,3
+47819410,23761370,4
+67030139,23761370,2
+67030139,23761370,2
+Jellabah,23761370,-1
+90847508,23761370,3
+102727851,23761370,4
+62772716,23761370,5
+15520729,23761370,3
+fmxiaofei,23761370,4
+33707224,23761370,4
+ting_1987,23761370,3
+60069001,23761370,4
+85659565,23761370,5
+91117590,23761370,4
+4907820,23761370,-1
+90747910,23761370,5
+50005438,23761370,4
+46937278,23761370,5
+3041980,23761370,4
+54328973,23761370,5
+2193527,23761370,4
+54323000,23761370,5
+31848180,23761370,4
+co_cobalt,23761370,3
+127242444,23761370,4
+91359652,23761370,5
+wch2020,23761370,4
+43781678,23761370,4
+46168266,23761370,4
+90859526,23761370,4
+singsolate,23761370,3
+79237255,23761370,4
+129743539,23761370,5
+aprilM,23761370,5
+51283005,23761370,5
+75610196,23761370,4
+50383138,23761370,4
+58903090,23761370,5
+41717444,23761370,2
+51728436,23761370,4
+65856924,23761370,4
+132332103,23761370,5
+jeff1987,23761370,3
+91736694,23761370,5
+mmmmmmiko,23761370,4
+jojolapin,23761370,4
+47666300,23761370,4
+124549679,23761370,5
+136623062,23761370,5
+puguangwei,23761370,3
+1122936,23761370,4
+sansimo,23761370,3
+84517047,23761370,5
+131126079,23761370,4
+110565024,23761370,2
+48816440,23761370,5
+136695075,23761370,4
+JohnnyJiong,23761370,4
+3290709,23761370,4
+135656191,23761370,5
+136593943,23761370,4
+mda05057,23761370,4
+mda05057,23761370,4
+3115138,23761370,3
+6877388,23761370,3
+81592044,23761370,4
+78462727,23761370,4
+61706956,23761370,3
+50980636,23761370,4
+53381748,23761370,5
+84348427,23761370,5
+80676300,23761370,5
+134863795,23761370,5
+yixiaoyan_,23761370,5
+68429494,23761370,5
+67436408,23761370,4
+tutudance,23761370,4
+65460668,23761370,5
+127526905,23761370,5
+135320959,23761370,3
+48324481,23761370,4
+SophieVV1130,23761370,5
+4010095,23761370,3
+61698998,23761370,5
+64825748,23761370,5
+nullspace,23761370,3
+121780577,23761370,5
+65375233,23761370,4
+73770188,23761370,5
+70328279,23761370,4
+caoyuan851104,23761370,2
+72276993,23761370,5
+135576119,23761370,4
+64480930,23761370,4
+65445656,23761370,5
+lpf1990,23761370,5
+maybe520sunshin,23761370,5
+135808324,23761370,-1
+yunlongshang521,23761370,4
+55950775,23761370,3
+dhlingchi,23761370,3
+ORBR,23761370,5
+ORBR,23761370,5
+114504989,23761370,4
+119731964,23761370,3
+136207464,23761370,4
+122339967,23761370,5
+121602316,23761370,5
+113515120,23761370,4
+133956430,23761370,4
+ziyuyouyou,23761370,4
+48694579,23761370,-1
+30173651,23761370,4
+135746121,23761370,4
+51005136,23761370,4
+136019111,23761370,-1
+loris0110,23761370,4
+136707946,23761370,4
+14466743,23761370,4
+37693810,23761370,4
+63547769,23761370,4
+W18523342562,23761370,5
+hushaohan,23761370,4
+48096896,23761370,4
+136691019,23761370,5
+Lovejingdianyu,23761370,4
+dalone,23761370,5
+82868192,23761370,4
+9095449,23761370,5
+130526552,23761370,4
+candyberg,23761370,4
+27515686,23761370,4
+80658200,23761370,5
+58115368,23761370,4
+61997003,23761370,4
+xyxyxyxyxy1995,23761370,5
+103421398,23761370,5
+136667218,23761370,4
+69465872,23761370,-1
+39855725,23761370,5
+53347373,23761370,4
+demonsara,23761370,3
+136372182,23761370,1
+65950156,23761370,5
+kunkunxiansheng,23761370,4
+134730691,23761370,3
+4319460,23761370,5
+guojiaqi1015,23761370,4
+66036292,23761370,-1
+119330514,23761370,4
+1250982,23761370,4
+2387180,23761370,-1
+49020270,23761370,5
+41568733,23761370,4
+lanyuhhh1,23761370,2
+87704099,23761370,-1
+1340632,23761370,4
+Renee_er_est,23761370,5
+37026248,23761370,3
+68759948,23761370,3
+3024636,23761370,5
+49107061,23761370,4
+58079311,23761370,5
+55015600,23761370,4
+Cecily,23761370,3
+jjwhu,23761370,5
+halk,23761370,4
+52851525,23761370,4
+55606448,23761370,5
+119426305,23761370,5
+luoyunxiang72,23761370,5
+68941392,23761370,3
+59867809,23761370,2
+70144915,23761370,4
+45863582,23761370,5
+boycester,23761370,5
+72608807,23761370,5
+64908960,23761370,5
+51245229,23761370,4
+48717993,23761370,5
+120488555,23761370,5
+Celiac,23761370,5
+Celiac,23761370,5
+15044978,23761370,-1
+83268589,23761370,5
+60760301,23761370,4
+laurayet,23761370,4
+129274650,23761370,3
+ayuandeDB,23761370,5
+74113315,23761370,4
+57612127,23761370,4
+56151191,23761370,5
+81480517,23761370,3
+134691422,23761370,5
+112718946,23761370,1
+122113976,23761370,3
+18201660,23761370,2
+50146689,23761370,5
+133335985,23761370,5
+36248772,23761370,5
+81059128,23761370,2
+gj_1987,23761370,3
+79452838,23761370,3
+91419673,23761370,4
+wosyizhiqq,23761370,2
+136276249,23761370,5
+sula2011,23761370,-1
+yuyueehappy,23761370,5
+bais0630,23761370,5
+58769650,23761370,4
+68033299,23761370,5
+131373760,23761370,3
+132021080,23761370,4
+81285027,23761370,4
+66382503,23761370,1
+136429512,23761370,5
+62717924,23761370,4
+55354703,23761370,4
+34617683,23761370,-1
+a83848400,23761370,4
+136291795,23761370,4
+muz,23761370,4
+130633898,23761370,5
+81911390,23761370,4
+68912083,23761370,3
+73552244,23761370,2
+43776116,23761370,4
+136118939,23761370,4
+32728165,23761370,5
+136416982,23761370,5
+120379485,23761370,5
+48459304,23761370,3
+98480325,23761370,4
+135409103,23761370,5
+135124043,23761370,5
+32113946,23761370,3
+5439991,23761370,4
+120747337,23761370,5
+121146638,23761370,3
+BenGlen,23761370,3
+136414749,23761370,-1
+134588423,23761370,4
+weixiaojia,23761370,4
+47801082,23761370,5
+elainelee1981,23761370,3
+40447527,23761370,4
+136100399,23761370,5
+Mreja,23761370,5
+108069283,23761370,4
+81247992,23761370,3
+41315597,23761370,4
+136335853,23761370,5
+136337190,23761370,5
+81921037,23761370,5
+3843894,23761370,5
+hosisi,23761370,5
+135703346,23761370,3
+134013028,23761370,5
+136194748,23761370,4
+9096101,23761370,4
+63317727,23761370,2
+44543597,23761370,5
+lipengfeng2007,23761370,3
+132386823,23761370,4
+JackingChen,23761370,2
+135761559,23761370,3
+lanyingxiang,23761370,3
+49159853,23761370,3
+Zukunft,23761370,4
+reliefman,23761370,3
+94337182,23761370,4
+57943457,23761370,4
+129906460,23761370,4
+hbmcdull,23761370,3
+45906911,23761370,2
+134580402,23761370,4
+71093640,23761370,5
+135251560,23761370,5
+1456080,23761370,4
+43409918,23761370,4
+136127858,23761370,4
+60668466,23761370,3
+60668466,23761370,3
+50669136,23761370,5
+38768158,23761370,5
+74044673,23761370,4
+76656335,23761370,5
+135702422,23761370,5
+58765705,23761370,4
+59238229,23761370,4
+acomplexman,23761370,4
+jingmowu,23761370,4
+82630245,23761370,5
+51843085,23761370,5
+72230656,23761370,4
+65280514,23761370,4
+sissi0209,23761370,4
+43144589,23761370,5
+4141698,23761370,4
+2467328,23761370,3
+1319464,23761370,5
+53353034,23761370,4
+59252209,23761370,3
+70470821,23761370,2
+green911,23761370,5
+135880399,23761370,1
+amyammy,23761370,3
+136078726,23761370,4
+1303295,23761370,4
+lovesebby,23761370,4
+XTian0806,23761370,5
+85035991,23761370,4
+shihaolou,23761370,2
+67153884,23761370,4
+boncourage3,23761370,4
+wuzhch,23761370,4
+134540692,23761370,5
+131033417,23761370,3
+69093726,23761370,4
+120764499,23761370,4
+2326337,23761370,4
+50780585,23761370,4
+ANN.iE,23761370,5
+136076014,23761370,5
+133648602,23761370,4
+ninetysix,23761370,3
+miyaorion,23761370,3
+114422491,23761370,4
+136223897,23761370,5
+132954430,23761370,4
+84029887,23761370,-1
+35257385,23761370,4
+mouwengdezho,23761370,5
+10723764,23761370,3
+135549137,23761370,5
+122528177,23761370,5
+2364299,23761370,5
+135891681,23761370,5
+134969713,23761370,4
+captain_zhao,23761370,5
+134574897,23761370,4
+120032242,23761370,4
+yuh17,23761370,1
+134161573,23761370,4
+51403238,23761370,5
+s-h-eet,23761370,5
+38753520,23761370,5
+136182829,23761370,3
+taoyuhan,23761370,5
+135239127,23761370,4
+dobbie1516,23761370,3
+62699217,23761370,2
+136009334,23761370,4
+zydmxj,23761370,5
+136161089,23761370,5
+135677641,23761370,-1
+pengyaos,23761370,4
+akiisajunk,23761370,5
+6922527,23761370,5
+135518285,23761370,4
+2291010,23761370,4
+45310450,23761370,4
+58133291,23761370,5
+123002309,23761370,4
+55907713,23761370,3
+4194592,23761370,3
+josiezs,23761370,4
+54092067,23761370,4
+45332561,23761370,5
+61705105,23761370,5
+34966723,23761370,3
+14451354,23761370,4
+122370553,23761370,5
+78971867,23761370,4
+71373551,23761370,4
+tiaotiaotang,23761370,3
+fishting,23761370,3
+68787653,23761370,4
+51054063,23761370,5
+38449214,23761370,4
+49624513,23761370,3
+3801481,23761370,4
+66461284,23761370,5
+66840248,23761370,4
+71166070,23761370,3
+sunshine-lxl,23761370,5
+32737561,23761370,4
+hewenzicandy,23761370,5
+127375314,23761370,5
+coldcall,23761370,4
+58575762,23761370,4
+134847487,23761370,5
+52249991,23761370,4
+78051236,23761370,5
+yberbing,23761370,5
+50189013,23761370,4
+119381415,23761370,5
+121943500,23761370,3
+100782149,23761370,3
+2738683,23761370,3
+51045384,23761370,4
+8410165,23761370,5
+135394418,23761370,3
+73906021,23761370,5
+121763708,23761370,4
+128176597,23761370,5
+130321312,23761370,4
+69133798,23761370,3
+129480991,23761370,4
+39294124,23761370,5
+49784628,23761370,4
+62594160,23761370,5
+61176733,23761370,5
+135756688,23761370,3
+63568101,23761370,4
+laiquziyouIris,23761370,5
+hernansun,23761370,4
+4531748,23761370,4
+68435848,23761370,3
+Wwild-child,23761370,4
+136063439,23761370,3
+caac,23761370,3
+q937891120,23761370,5
+136054482,23761370,5
+xxxmtira,23761370,4
+hehe2day,23761370,5
+57637429,23761370,5
+william_fung,23761370,5
+79951353,23761370,5
+60634803,23761370,3
+neilfushi,23761370,5
+131166222,23761370,5
+39003448,23761370,4
+3366688,23761370,-1
+59675967,23761370,3
+Ciangie,23761370,3
+52725756,23761370,5
+50598576,23761370,2
+133439262,23761370,4
+18965054,23761370,3
+134903918,23761370,3
+chaochao85mao,23761370,-1
+chaochao85mao,23761370,-1
+53437669,23761370,3
+58854842,23761370,4
+43303626,23761370,5
+136012818,23761370,5
+97797591,23761370,4
+83740879,23761370,3
+samove,23761370,4
+37153252,23761370,5
+135868666,23761370,5
+78292650,23761370,4
+96473447,23761370,5
+avro,23761370,3
+75977017,23761370,5
+56159025,23761370,3
+87387635,23761370,4
+39626598,23761370,4
+135975588,23761370,5
+wen1228,23761370,4
+66552525,23761370,5
+69010983,23761370,4
+45549297,23761370,2
+121594259,23761370,1
+mattylam,23761370,5
+63770466,23761370,4
+83994709,23761370,4
+128917867,23761370,4
+134495648,23761370,3
+135705904,23761370,5
+67777087,23761370,5
+81653245,23761370,3
+qiujumper,23761370,5
+83086333,23761370,4
+TZWSWSWWS,23761370,3
+4119794,23761370,4
+Royalcs,23761370,5
+63249490,23761370,5
+65772452,23761370,4
+133201486,23761370,-1
+64175578,23761370,3
+67290417,23761370,5
+134474194,23761370,5
+49085463,23761370,5
+4024346,23761370,4
+47761082,23761370,5
+evabianyiwei,23761370,4
+135838359,23761370,3
+39648072,23761370,5
+72711765,23761370,4
+ZonaLau1997,23761370,4
+2769218,23761370,5
+134374898,23761370,3
+75972068,23761370,5
+128616169,23761370,4
+1830523,23761370,4
+93861419,23761370,4
+133328631,23761370,5
+58511967,23761370,4
+xuyq,23761370,3
+guishou,23761370,3
+guishou,23761370,3
+64748860,23761370,2
+59769203,23761370,5
+48652112,23761370,4
+2723511,23761370,4
+69467986,23761370,3
+46942165,23761370,5
+122627623,23761370,4
+3620484,23761370,4
+40081609,23761370,3
+70932292,23761370,4
+2166426,23761370,4
+134497633,23761370,3
+135882446,23761370,3
+135875095,23761370,4
+64959073,23761370,5
+84961149,23761370,5
+109791603,23761370,4
+135878317,23761370,4
+1708377,23761370,2
+1708377,23761370,2
+50775734,23761370,4
+biby9475,23761370,3
+2922988,23761370,3
+sethyoung,23761370,4
+74566313,23761370,3
+132941950,23761370,4
+129235712,23761370,5
+48909711,23761370,4
+60585416,23761370,3
+SpringLamb,23761370,5
+3398430,23761370,3
+134021149,23761370,5
+peachgardn,23761370,4
+2510758,23761370,-1
+50855325,23761370,4
+134498309,23761370,4
+121755358,23761370,3
+4915899,23761370,4
+97761742,23761370,5
+47481448,23761370,4
+48156216,23761370,4
+130379434,23761370,4
+28643180,23761370,4
+veranannan,23761370,4
+70705310,23761370,3
+45825912,23761370,5
+131426333,23761370,5
+2104181,23761370,2
+liumao,23761370,4
+131671719,23761370,5
+112962493,23761370,5
+84465788,23761370,5
+4260546,23761370,4
+102883079,23761370,5
+122031722,23761370,-1
+132400951,23761370,5
+133350413,23761370,4
+54926735,23761370,4
+forshine5,23761370,1
+95074857,23761370,4
+Daruke,23761370,3
+dankevin,23761370,4
+75708723,23761370,2
+48623920,23761370,4
+92107201,23761370,-1
+80214587,23761370,3
+71736113,23761370,5
+mrcoolchina,23761370,3
+96797723,23761370,4
+mohui,23761370,5
+44164611,23761370,5
+lordsun666,23761370,5
+135799063,23761370,5
+48857786,23761370,4
+lmxhxi,23761370,-1
+DZTL,23761370,4
+113418380,23761370,5
+66871580,23761370,4
+AAAhua,23761370,3
+gallria,23761370,3
+56869847,23761370,4
+Dcynic,23761370,3
+97869711,23761370,4
+xiaomixixi,23761370,4
+47413356,23761370,4
+63495297,23761370,5
+47022062,23761370,3
+1902232,23761370,5
+135714519,23761370,4
+fafnir5251,23761370,3
+47233944,23761370,5
+80452095,23761370,4
+lulushinki,23761370,4
+67569757,23761370,3
+kevinwong0723,23761370,4
+michaelj,23761370,2
+68873403,23761370,5
+102214206,23761370,4
+42984901,23761370,4
+101956762,23761370,4
+87874424,23761370,5
+Halisadreamer,23761370,5
+41706695,23761370,5
+135143930,23761370,4
+fantasymika,23761370,4
+120808597,23761370,5
+52999504,23761370,5
+gdpan,23761370,3
+134784167,23761370,4
+120505140,23761370,5
+47098539,23761370,4
+4013328,23761370,4
+131496404,23761370,4
+iissy,23761370,3
+121916264,23761370,5
+127131340,23761370,5
+104696310,23761370,3
+belmer,23761370,4
+liux5520,23761370,5
+73814355,23761370,4
+llllllazy,23761370,3
+135713881,23761370,-1
+46712687,23761370,3
+60977313,23761370,4
+61743801,23761370,4
+87795487,23761370,4
+73532203,23761370,3
+70724743,23761370,4
+41420170,23761370,4
+misssunshinerr,23761370,4
+60025613,23761370,4
+pinder,23761370,4
+66646375,23761370,4
+yechenchao,23761370,3
+46146711,23761370,-1
+liberal-,23761370,3
+50639085,23761370,3
+84773489,23761370,5
+3210380,23761370,4
+hakuouki,23761370,5
+92527590,23761370,4
+huminyan910801,23761370,5
+44420749,23761370,4
+1444111,23761370,4
+101508207,23761370,5
+47901348,23761370,3
+alice-cat,23761370,5
+129454490,23761370,4
+134451587,23761370,4
+126934677,23761370,5
+52933532,23761370,5
+Cristina.Yang,23761370,3
+96316359,23761370,4
+ParanoidKid,23761370,5
+4848799,23761370,4
+106369831,23761370,5
+92395853,23761370,3
+74117962,23761370,4
+LadyA,23761370,3
+135651900,23761370,4
+coco.chanel,23761370,5
+132056696,23761370,5
+3990864,23761370,5
+83707375,23761370,3
+135645457,23761370,4
+60079529,23761370,5
+135556704,23761370,5
+46007183,23761370,3
+127947570,23761370,5
+51416199,23761370,5
+73969113,23761370,3
+wangshuailong,23761370,5
+63573286,23761370,4
+shaohaifeng,23761370,5
+gloryjohnny,23761370,3
+132137179,23761370,4
+61229226,23761370,4
+61503519,23761370,5
+zhiyaotiankong,23761370,4
+135178254,23761370,3
+134184792,23761370,5
+yukchor,23761370,4
+zhangqidashu,23761370,5
+74796937,23761370,5
+135614717,23761370,5
+leonardodicapri,23761370,5
+57280262,23761370,3
+131375082,23761370,4
+135604714,23761370,5
+58414355,23761370,4
+3855637,23761370,4
+85223779,23761370,5
+17365238,23761370,4
+28490375,23761370,2
+133623955,23761370,5
+53774432,23761370,4
+nanshuo,23761370,4
+seeing...,23761370,5
+47241750,23761370,3
+peyman,23761370,5
+41169381,23761370,2
+4521703,23761370,4
+78255111,23761370,4
+122327681,23761370,5
+66828927,23761370,5
+135231856,23761370,5
+2767001,23761370,5
+134266415,23761370,4
+105530942,23761370,5
+windson120,23761370,4
+3969457,23761370,5
+119997164,23761370,4
+115231190,23761370,4
+jessicawoaini,23761370,4
+47814757,23761370,4
+yuchishangjiu,23761370,4
+63435236,23761370,5
+135570170,23761370,5
+44559195,23761370,5
+130941913,23761370,4
+gongxukai,23761370,3
+sanggolden,23761370,4
+74115491,23761370,4
+122365925,23761370,3
+63793789,23761370,4
+83942238,23761370,4
+70648577,23761370,5
+downcoffee,23761370,5
+42961533,23761370,5
+80005522,23761370,3
+jie6525386,23761370,4
+107812865,23761370,5
+44208904,23761370,5
+51065746,23761370,4
+deathsickle,23761370,3
+fenshoudashi,23761370,3
+aleung,23761370,2
+109026469,23761370,3
+Lynnm,23761370,3
+55916689,23761370,5
+3849133,23761370,5
+129709557,23761370,5
+135518553,23761370,4
+87766014,23761370,3
+109261237,23761370,3
+132257313,23761370,5
+4051028,23761370,4
+58069293,23761370,3
+130636578,23761370,4
+135345443,23761370,5
+liusikuang,23761370,5
+44876908,23761370,5
+4279038,23761370,3
+50362657,23761370,5
+firelifespy,23761370,5
+120253602,23761370,1
+120470819,23761370,5
+133485545,23761370,5
+126076746,23761370,2
+Bonacci,23761370,3
+53707542,23761370,5
+69280582,23761370,5
+ZeryForL,23761370,5
+zjbmengmeng,23761370,3
+134503572,23761370,5
+jiudoucairen,23761370,4
+tflib,23761370,5
+82767121,23761370,3
+diatunifee,23761370,4
+22364570,23761370,4
+49712271,23761370,4
+67172121,23761370,4
+GllGgg,23761370,5
+zcejing,23761370,4
+Ranice,23761370,3
+74060692,23761370,5
+120466803,23761370,4
+hjhmusic,23761370,5
+50139520,23761370,4
+33482278,23761370,3
+antivirus,23761370,4
+61209060,23761370,4
+53548921,23761370,4
+4192096,23761370,4
+92878802,23761370,3
+66642487,23761370,5
+xiiiiiin,23761370,3
+xiaoxiao9492,23761370,5
+65927273,23761370,5
+68307753,23761370,4
+70001053,23761370,5
+57913315,23761370,4
+evilpeach,23761370,4
+65291556,23761370,5
+ok-0991,23761370,4
+46625014,23761370,3
+85398631,23761370,4
+benbenmuxi,23761370,4
+135425885,23761370,5
+135072611,23761370,5
+releasej,23761370,3
+79400267,23761370,4
+75531460,23761370,3
+80236417,23761370,3
+129331938,23761370,5
+elevenyumiko,23761370,4
+62011920,23761370,2
+42168964,23761370,4
+chencheng2046,23761370,4
+yurifuta,23761370,5
+eyesl,23761370,5
+1397180,23761370,4
+69433244,23761370,4
+81378961,23761370,5
+43851100,23761370,3
+qX9n,23761370,5
+solarshr,23761370,3
+120947006,23761370,5
+64551231,23761370,4
+ItoHayachi,23761370,5
+70742254,23761370,3
+135396561,23761370,3
+wukomn,23761370,4
+52298238,23761370,5
+134223194,23761370,4
+125762409,23761370,3
+4668466,23761370,3
+aikioctt,23761370,5
+dorothyzhang,23761370,5
+135382616,23761370,3
+69062991,23761370,4
+88229147,23761370,4
+132011879,23761370,3
+lmx1220,23761370,5
+2481053,23761370,5
+57439511,23761370,5
+45610612,23761370,5
+1514019,23761370,3
+echocapricon,23761370,3
+echocapricon,23761370,3
+134907073,23761370,5
+72706122,23761370,5
+128086623,23761370,5
+134489537,23761370,4
+75701348,23761370,5
+36993897,23761370,1
+63734709,23761370,4
+135366618,23761370,5
+113185050,23761370,4
+2917503,23761370,4
+56975242,23761370,4
+49588596,23761370,5
+61053106,23761370,4
+36995031,23761370,4
+135331170,23761370,4
+43384645,23761370,5
+135357583,23761370,5
+48267432,23761370,5
+Kingmmz,23761370,5
+134171030,23761370,4
+Strangeline,23761370,2
+56771343,23761370,5
+80920192,23761370,4
+wenwenlulu,23761370,4
+135337821,23761370,5
+39754117,23761370,5
+122604790,23761370,5
+43030795,23761370,4
+45805618,23761370,5
+53477398,23761370,4
+rolex16600,23761370,4
+42539119,23761370,5
+dawnef,23761370,5
+48636603,23761370,4
+134994433,23761370,5
+134516953,23761370,4
+42517451,23761370,5
+39068910,23761370,3
+skyFei,23761370,2
+67483108,23761370,3
+129145867,23761370,5
+60437819,23761370,4
+130944929,23761370,5
+129305098,23761370,5
+52371477,23761370,4
+135312907,23761370,5
+jiang66,23761370,4
+yulehe,23761370,4
+koenma,23761370,2
+michaeltyler,23761370,3
+61732554,23761370,4
+57205524,23761370,5
+34343005,23761370,5
+14410964,23761370,4
+103658659,23761370,3
+82913743,23761370,5
+72919341,23761370,-1
+liufuyou,23761370,-1
+134907491,23761370,4
+liufuyou,23761370,-1
+134907491,23761370,4
+62719719,23761370,-1
+72688035,23761370,-1
+lh12123,23761370,4
+135297886,23761370,3
+125488327,23761370,5
+69244531,23761370,5
+MS13,23761370,5
+55407536,23761370,5
+131730899,23761370,2
+135290961,23761370,5
+131408932,23761370,5
+122039396,23761370,4
+rext,23761370,3
+105792969,23761370,4
+66593618,23761370,5
+sesameduck,23761370,4
+47109551,23761370,3
+4709296,23761370,3
+64574403,23761370,4
+134506465,23761370,4
+Danys,23761370,-1
+casanova_11,23761370,-1
+1581275,23761370,5
+71712133,23761370,5
+132582200,23761370,4
+31136598,23761370,-1
+78900467,23761370,5
+62569952,23761370,5
+63383390,23761370,5
+yaquapril,23761370,4
+87308014,23761370,5
+50765649,23761370,5
+buyiding2011,23761370,-1
+130952703,23761370,4
+qimiao0423,23761370,5
+45768110,23761370,-1
+57859400,23761370,5
+60385100,23761370,-1
+54361770,23761370,-1
+63687426,23761370,4
+52580766,23761370,2
+59172571,23761370,3
+Tiara0211,23761370,4
+68946630,23761370,4
+wa1974vv1130,23761370,4
+130946800,23761370,3
+limemint12,23761370,5
+47057852,23761370,-1
+solycoco,23761370,4
+24556429,23761370,4
+124825941,23761370,3
+firepr,23761370,4
+130543666,23761370,3
+73741678,23761370,5
+64123749,23761370,5
+96388706,23761370,5
+135118905,23761370,4
+davidchan,23761370,4
+47186001,23761370,3
+65227882,23761370,5
+53526777,23761370,3
+71273423,23761370,3
+61422378,23761370,5
+68799531,23761370,5
+60563094,23761370,-1
+59901694,23761370,4
+48186858,23761370,5
+130222539,23761370,4
+86253847,23761370,4
+120107044,23761370,5
+135067568,23761370,4
+12180035,23761370,3
+127978116,23761370,3
+2039225,23761370,3
+4568946,23761370,5
+joyce0411,23761370,-1
+97293420,23761370,5
+87837876,23761370,4
+68082604,23761370,4
+65042146,23761370,3
+66650981,23761370,4
+95686183,23761370,5
+27946975,23761370,5
+52883078,23761370,4
+greatcatti,23761370,5
+summitmonet,23761370,4
+104797785,23761370,5
+88428743,23761370,5
+yomaybe,23761370,4
+3882080,23761370,2
+3301961,23761370,4
+alalei214,23761370,3
+oasisercher,23761370,5
+nirvanahui,23761370,3
+40887848,23761370,5
+79345863,23761370,4
+68887346,23761370,5
+55020304,23761370,3
+ywdtc,23761370,3
+89720080,23761370,5
+132135154,23761370,4
+2020855,23761370,4
+49558819,23761370,4
+mousemouse,23761370,4
+97171614,23761370,5
+55295934,23761370,4
+71741395,23761370,5
+oncemultiverse,23761370,1
+alfredd,23761370,4
+52260644,23761370,5
+40616987,23761370,4
+45852274,23761370,4
+22997328,23761370,5
+104743279,23761370,5
+imsugar,23761370,4
+41912398,23761370,4
+80912012,23761370,5
+133729780,23761370,5
+klausking941016,23761370,4
+77089569,23761370,5
+135140521,23761370,5
+103442120,23761370,5
+46785194,23761370,4
+135097592,23761370,4
+fanyamin,23761370,3
+69710712,23761370,-1
+zhl19741130520,23761370,-1
+121340954,23761370,4
+100935420,23761370,5
+132045728,23761370,5
+1658796,23761370,4
+Yulia,23761370,4
+95534679,23761370,5
+99579544,23761370,5
+68527536,23761370,5
+1730271,23761370,4
+134578224,23761370,5
+130583862,23761370,5
+134529720,23761370,3
+53541312,23761370,4
+48565113,23761370,5
+50236552,23761370,3
+46758044,23761370,3
+102842506,23761370,3
+114285934,23761370,4
+53681764,23761370,4
+86912377,23761370,5
+108625513,23761370,4
+55919901,23761370,4
+47025677,23761370,4
+134188017,23761370,5
+51422811,23761370,4
+48121857,23761370,1
+62136582,23761370,5
+121633982,23761370,3
+fay4rukia,23761370,3
+4242859,23761370,4
+Minus-M,23761370,1
+71066434,23761370,5
+63929108,23761370,3
+tkk1997,23761370,5
+115551507,23761370,4
+cathy_59,23761370,5
+40174273,23761370,3
+wusheng45,23761370,5
+77583980,23761370,5
+134847229,23761370,3
+108229820,23761370,4
+1695695,23761370,3
+125795509,23761370,5
+sophiegu,23761370,4
+135012811,23761370,5
+134694723,23761370,5
+linlinhuangcc,23761370,4
+132865344,23761370,5
+xutianxi,23761370,1
+37101036,23761370,3
+3571623,23761370,4
+3571623,23761370,4
+catakata,23761370,3
+59705681,23761370,4
+61313545,23761370,4
+45598200,23761370,3
+84915183,23761370,4
+97354586,23761370,3
+junko,23761370,2
+maoamao,23761370,3
+52718281,23761370,5
+134463446,23761370,5
+134496609,23761370,5
+59944601,23761370,4
+tyy,23761370,3
+osoing,23761370,5
+2254747,23761370,4
+73624765,23761370,5
+1567784,23761370,4
+134973384,23761370,4
+103208436,23761370,5
+133651758,23761370,4
+134040475,23761370,3
+70272999,23761370,4
+z57,23761370,4
+126684897,23761370,3
+87558213,23761370,5
+79840078,23761370,5
+108229912,23761370,5
+9510208,23761370,5
+49567226,23761370,5
+sherry_zeng,23761370,3
+45716667,23761370,3
+44034206,23761370,4
+lyy19,23761370,2
+134909513,23761370,4
+4630769,23761370,5
+1935056,23761370,5
+3913762,23761370,3
+132794710,23761370,4
+luoyinyi,23761370,5
+1736294,23761370,3
+75288520,23761370,4
+34070573,23761370,4
+45862332,23761370,2
+134928026,23761370,4
+47464761,23761370,4
+luoxuerubing,23761370,4
+63236278,23761370,5
+67439008,23761370,5
+134503726,23761370,5
+79875260,23761370,2
+yunlulang,23761370,5
+summerose,23761370,3
+113519445,23761370,4
+48899980,23761370,4
+trianglecat,23761370,3
+antchouet,23761370,3
+66744438,23761370,4
+131055900,23761370,3
+szhiji,23761370,4
+hokuto,23761370,4
+49466976,23761370,5
+79647492,23761370,5
+134862117,23761370,3
+zyxlinda,23761370,5
+134874653,23761370,5
+132463662,23761370,4
+wangholic,23761370,3
+71073087,23761370,4
+49273310,23761370,4
+adremwong,23761370,5
+53897092,23761370,5
+4646953,23761370,3
+64552967,23761370,5
+4333851,23761370,4
+51462538,23761370,5
+2330272,23761370,4
+84718748,23761370,4
+3427535,23761370,2
+87694483,23761370,4
+134563962,23761370,4
+77609153,23761370,4
+48018796,23761370,4
+53329015,23761370,3
+amiaschen,23761370,5
+48000477,23761370,4
+1797813,23761370,5
+18841401,23761370,5
+coryzh,23761370,4
+conyichiya,23761370,4
+libinghe,23761370,5
+zi,23761370,3
+htmxtx,23761370,3
+57890138,23761370,3
+9842852,23761370,5
+55798806,23761370,5
+ZnCore,23761370,4
+EBO,23761370,5
+62932403,23761370,1
+109166654,23761370,4
+shanshan33,23761370,3
+echo-jian,23761370,3
+134501526,23761370,5
+106537727,23761370,3
+79092004,23761370,5
+calafalas,23761370,5
+48368530,23761370,4
+21333781,23761370,4
+68307144,23761370,5
+52244645,23761370,4
+Green-fly,23761370,5
+vagabonder912,23761370,3
+35994067,23761370,5
+87947108,23761370,5
+even,23761370,4
+130452965,23761370,1
+4203646,23761370,3
+56004220,23761370,5
+72040927,23761370,5
+41726005,23761370,4
+6679580,23761370,4
+83604307,23761370,4
+TCTF,23761370,4
+53795201,23761370,3
+134586200,23761370,5
+60762947,23761370,2
+53308855,23761370,4
+axio,23761370,3
+78276267,23761370,5
+53829509,23761370,5
+62147836,23761370,4
+129224814,23761370,5
+YAH1003,23761370,4
+Zizou_Vam,23761370,3
+54224465,23761370,5
+jjunfan,23761370,4
+126579331,23761370,4
+121572873,23761370,5
+89876565,23761370,4
+B.B.King.,23761370,5
+89876565,23761370,4
+B.B.King.,23761370,5
+134161390,23761370,4
+XSizuka,23761370,4
+MISTER.X,23761370,3
+65387299,23761370,4
+65224512,23761370,4
+shmilyyan,23761370,3
+49432192,23761370,4
+2519350,23761370,3
+65811318,23761370,3
+2238297,23761370,5
+43256604,23761370,4
+guagua1992,23761370,3
+29442857,23761370,3
+guyewuzhe,23761370,3
+xiaocuikk,23761370,3
+tionphoenix,23761370,4
+81417004,23761370,4
+75407043,23761370,5
+60413316,23761370,4
+134654328,23761370,1
+tiazhihen290,23761370,5
+34607988,23761370,4
+58188727,23761370,4
+lrbank,23761370,3
+SylvanasDANG,23761370,5
+ycrxiaoyu,23761370,5
+48240826,23761370,4
+juning,23761370,5
+47913948,23761370,4
+mowenxia,23761370,5
+80962006,23761370,4
+78662061,23761370,5
+134226870,23761370,5
+134630891,23761370,4
+133946532,23761370,4
+96152194,23761370,4
+2728631,23761370,-1
+65440718,23761370,3
+57305886,23761370,3
+54780204,23761370,5
+130540529,23761370,3
+49137453,23761370,4
+44944480,23761370,5
+133564346,23761370,5
+37503152,23761370,5
+70150082,23761370,2
+67410434,23761370,4
+121917994,23761370,4
+5894610,23761370,4
+nacchan,23761370,4
+131533540,23761370,4
+134202677,23761370,4
+126936629,23761370,5
+58199520,23761370,5
+47361909,23761370,3
+134545730,23761370,4
+colazjy,23761370,-1
+87344411,23761370,4
+killerzhou,23761370,-1
+xnyjb,23761370,2
+131882002,23761370,5
+61051965,23761370,5
+45449630,23761370,4
+65635790,23761370,4
+2268636,23761370,5
+3943993,23761370,5
+44476398,23761370,4
+73915629,23761370,5
+37445047,23761370,4
+134285579,23761370,3
+ifeelfine,23761370,3
+waiwaixiaohei,23761370,4
+54443064,23761370,-1
+44832442,23761370,4
+134500343,23761370,4
+121959506,23761370,3
+FreeCiti,23761370,4
+131993098,23761370,5
+131993098,23761370,5
+130860796,23761370,5
+134585517,23761370,1
+lovepizza,23761370,5
+134483683,23761370,5
+62112047,23761370,5
+132830115,23761370,4
+134574099,23761370,4
+132000045,23761370,4
+xx0301ll,23761370,4
+133533083,23761370,5
+134563704,23761370,5
+134369817,23761370,2
+2107978,23761370,4
+50297672,23761370,4
+55823692,23761370,4
+dongxie1994,23761370,4
+49592757,23761370,4
+8312779,23761370,5
+gabijiang,23761370,4
+44293336,23761370,4
+134509898,23761370,4
+cathyyzn,23761370,4
+92796739,23761370,4
+134499055,23761370,4
+134508428,23761370,2
+58759205,23761370,4
+58094531,23761370,3
+panggou,23761370,5
+131610704,23761370,3
+134535776,23761370,3
+46829071,23761370,4
+77879092,23761370,3
+131208902,23761370,4
+2169850,23761370,4
+44230402,23761370,4
+134498032,23761370,3
+1371874,23761370,3
+70794539,23761370,4
+57046500,23761370,5
+133691924,23761370,5
+87633268,23761370,5
+vite,23761370,3
+120945947,23761370,4
+133988097,23761370,3
+2330476,23761370,5
+Dante-htj,23761370,4
+fangmuchen1314,23761370,5
+2273276,23761370,3
+lanyangyangdecc,23761370,3
+76870671,23761370,1
+3942998,23761370,4
+Renkomei,23761370,4
+134485174,23761370,5
+120187474,23761370,5
+64202458,23761370,4
+75018779,23761370,5
+treedoctor,23761370,5
+102812066,23761370,4
+49703181,23761370,3
+3287674,23761370,4
+fdid,23761370,3
+132700269,23761370,4
+130114631,23761370,5
+2919381,23761370,3
+66066845,23761370,-1
+128012079,23761370,5
+oyxp,23761370,4
+64904533,23761370,3
+62957717,23761370,5
+104825430,23761370,4
+tanxiaole,23761370,5
+84962977,23761370,4
+134434591,23761370,1
+63768116,23761370,2
+114719567,23761370,3
+90543489,23761370,4
+49421893,23761370,5
+73683661,23761370,3
+125165455,23761370,5
+79022603,23761370,4
+androidboy00,23761370,2
+87599661,23761370,1
+69856173,23761370,4
+61228697,23761370,4
+73859520,23761370,3
+54831320,23761370,5
+48322533,23761370,5
+84406810,23761370,4
+134408913,23761370,5
+23712460,23761370,5
+114732916,23761370,4
+bigmatt80,23761370,5
+fangyuan1mi,23761370,5
+93423717,23761370,3
+68365582,23761370,3
+1620568,23761370,5
+xiqi,23761370,-1
+72607708,23761370,5
+134076765,23761370,5
+imanust,23761370,-1
+51951271,23761370,4
+33651732,23761370,5
+127972732,23761370,5
+64356652,23761370,4
+76509928,23761370,4
+102582165,23761370,4
+115483881,23761370,4
+48067199,23761370,5
+xiguadaxia,23761370,4
+124117539,23761370,3
+133672618,23761370,4
+3422749,23761370,4
+129502057,23761370,5
+119105590,23761370,5
+55349603,23761370,5
+pspld,23761370,3
+chsophie325,23761370,3
+115052984,23761370,4
+54417625,23761370,2
+64117161,23761370,4
+4471547,23761370,4
+57290157,23761370,5
+lyning,23761370,4
+guanyu19920623,23761370,5
+131892019,23761370,5
+82918444,23761370,3
+63302327,23761370,2
+2768954,23761370,3
+cirosie,23761370,4
+45736693,23761370,4
+39205376,23761370,3
+115351851,23761370,5
+59273600,23761370,4
+28582685,23761370,4
+professormars,23761370,3
+12949814,23761370,4
+50624143,23761370,4
+132172419,23761370,4
+52427196,23761370,5
+77644996,23761370,5
+56803436,23761370,4
+115690394,23761370,3
+81304240,23761370,4
+79385318,23761370,4
+115125689,23761370,4
+69037503,23761370,5
+121225563,23761370,5
+blazel,23761370,3
+74053506,23761370,4
+66643938,23761370,5
+35189092,23761370,4
+82339454,23761370,3
+83723800,23761370,5
+tina,23761370,2
+75827650,23761370,1
+56795705,23761370,5
+60822574,23761370,5
+chongchenglove,23761370,4
+yangquan0914,23761370,5
+58630944,23761370,3
+79314239,23761370,5
+76073478,23761370,4
+4412176,23761370,3
+yihengxi,23761370,4
+134148719,23761370,5
+zzsherry,23761370,4
+131603099,23761370,4
+129463229,23761370,5
+63901336,23761370,4
+66622891,23761370,-1
+41639509,23761370,4
+49333079,23761370,5
+66405994,23761370,5
+geniustar,23761370,5
+134041855,23761370,4
+64978865,23761370,5
+66419543,23761370,4
+123626080,23761370,5
+qq120286102030,23761370,3
+tangzhuo,23761370,5
+uwani,23761370,3
+51300216,23761370,5
+bear-fullhouse,23761370,5
+80619112,23761370,4
+69349654,23761370,5
+S.yume,23761370,5
+MaxinAn,23761370,3
+131201240,23761370,4
+89440707,23761370,4
+HY1990919,23761370,3
+114057522,23761370,3
+2064047,23761370,4
+134159627,23761370,4
+134222368,23761370,4
+88262927,23761370,3
+134176594,23761370,4
+78579005,23761370,5
+92576305,23761370,4
+64649677,23761370,4
+79991595,23761370,4
+LrioWong,23761370,3
+kewensmile,23761370,5
+54102792,23761370,3
+120085809,23761370,4
+101820045,23761370,4
+53308366,23761370,4
+129033988,23761370,4
+49116825,23761370,2
+49470522,23761370,4
+45803885,23761370,3
+hudodo0314,23761370,-1
+114584532,23761370,4
+fishial,23761370,5
+134198005,23761370,5
+tian7,23761370,5
+80682088,23761370,5
+62044401,23761370,4
+seizeup,23761370,3
+4733166,23761370,4
+CrystalFung,23761370,5
+52928515,23761370,5
+128276156,23761370,5
+113124571,23761370,5
+83649414,23761370,-1
+90236615,23761370,5
+epwoa,23761370,2
+2798813,23761370,3
+26781077,23761370,5
+133438215,23761370,-1
+tangxg,23761370,4
+33575154,23761370,4
+81384030,23761370,5
+1408169,23761370,5
+54527658,23761370,5
+kidscorpio,23761370,4
+39307449,23761370,4
+96774487,23761370,5
+71882881,23761370,2
+134057557,23761370,5
+53796875,23761370,4
+114321835,23761370,4
+yaggio,23761370,4
+56692780,23761370,5
+1571477,23761370,3
+a1830996698,23761370,4
+jinqianmei,23761370,1
+imtoby,23761370,5
+105808556,23761370,5
+Ke-_-vin,23761370,4
+kuoxh,23761370,5
+tomatobear,23761370,4
+2488466,23761370,3
+57352656,23761370,4
+55488423,23761370,4
+wangyumeng,23761370,4
+qhfls,23761370,2
+121808699,23761370,3
+4835209,23761370,5
+37220457,23761370,5
+40238005,23761370,4
+133744527,23761370,5
+Esine,23761370,4
+71719673,23761370,5
+bestavil,23761370,5
+130061786,23761370,4
+54072764,23761370,4
+89172273,23761370,3
+40066621,23761370,4
+65648547,23761370,4
+134087511,23761370,5
+seraphhoo,23761370,3
+69875903,23761370,4
+peggy_3,23761370,5
+52554877,23761370,4
+1948576,23761370,-1
+44437250,23761370,3
+85430048,23761370,4
+snowallsky,23761370,5
+3798361,23761370,4
+77905447,23761370,5
+iEels,23761370,4
+64560879,23761370,5
+orange38,23761370,4
+130105525,23761370,5
+67015862,23761370,4
+72285462,23761370,4
+fishlittle,23761370,3
+80766879,23761370,1
+67297789,23761370,4
+50312843,23761370,5
+15400541,23761370,5
+47475734,23761370,3
+8284926,23761370,3
+3109255,23761370,3
+67334552,23761370,-1
+114014303,23761370,4
+62662414,23761370,4
+betamin,23761370,1
+42008177,23761370,3
+65935512,23761370,4
+2513938,23761370,4
+2616447,23761370,4
+134076829,23761370,5
+xyc1987,23761370,4
+73910948,23761370,3
+47676083,23761370,4
+vian-masala,23761370,1
+Solitude.F,23761370,4
+38545887,23761370,5
+69336085,23761370,4
+42221963,23761370,4
+127542895,23761370,3
+134063131,23761370,4
+120646154,23761370,5
+43161186,23761370,5
+63934272,23761370,5
+1328765,23761370,3
+awesomearya,23761370,4
+romanbaby,23761370,3
+romanbaby,23761370,3
+60052227,23761370,5
+132361365,23761370,5
+127708051,23761370,4
+34739546,23761370,3
+132065702,23761370,5
+ur.little.girl.,23761370,4
+64087263,23761370,5
+43496249,23761370,3
+48180333,23761370,4
+3680251,23761370,2
+nenyalee,23761370,3
+3858083,23761370,3
+124953430,23761370,5
+49891845,23761370,4
+51977259,23761370,5
+zhanghuaxin,23761370,3
+134047738,23761370,5
+129650376,23761370,5
+133540268,23761370,4
+125645366,23761370,3
+gayuitsang,23761370,3
+56044350,23761370,3
+65398395,23761370,4
+56297454,23761370,2
+2984695,23761370,4
+71814035,23761370,2
+124247886,23761370,3
+2412177,23761370,3
+wxcn843,23761370,3
+Metalheads,23761370,5
+monkito,23761370,-1
+Irivin,23761370,5
+133490475,23761370,5
+56215590,23761370,5
+47002164,23761370,5
+demo_3,23761370,2
+74835284,23761370,3
+41207080,23761370,4
+90610414,23761370,3
+90610414,23761370,3
+1782024,23761370,3
+103539396,23761370,5
+79330359,23761370,4
+willese,23761370,5
+52830779,23761370,4
+66995282,23761370,5
+42216853,23761370,4
+57179724,23761370,4
+91296116,23761370,4
+98497973,23761370,4
+57916639,23761370,5
+11080929,23761370,5
+3618983,23761370,5
+40482611,23761370,4
+122879836,23761370,4
+51569553,23761370,5
+56044387,23761370,4
+81007534,23761370,5
+105188554,23761370,5
+76356022,23761370,3
+59301808,23761370,4
+45703129,23761370,5
+121057597,23761370,5
+miscream,23761370,-1
+duanhong169,23761370,5
+narahana,23761370,4
+sugar-man,23761370,3
+9172847,23761370,1
+38228296,23761370,5
+84028261,23761370,3
+chrisjosef,23761370,3
+92830730,23761370,4
+49182642,23761370,5
+37617516,23761370,4
+53179715,23761370,4
+125047742,23761370,4
+pygmalio,23761370,4
+joyeblog,23761370,4
+44254923,23761370,4
+75744601,23761370,1
+Xunna,23761370,4
+82455844,23761370,5
+101937454,23761370,4
+131198769,23761370,4
+BOBOtree,23761370,4
+zhubuwai,23761370,3
+88632956,23761370,3
+25094954,23761370,-1
+87498473,23761370,5
+66089905,23761370,3
+43930974,23761370,5
+132790620,23761370,5
+121823052,23761370,3
+62049867,23761370,5
+130554735,23761370,4
+81089052,23761370,5
+132117738,23761370,3
+54145451,23761370,4
+Borijgen,23761370,5
+joyzhai,23761370,4
+133909162,23761370,4
+roiroii,23761370,4
+gropher,23761370,4
+57544703,23761370,5
+65898498,23761370,4
+130440910,23761370,4
+60369036,23761370,5
+52098312,23761370,4
+133860777,23761370,3
+sylhit,23761370,3
+83895101,23761370,5
+1559062,23761370,2
+58726340,23761370,3
+shuaiyi,23761370,5
+3690246,23761370,5
+42743291,23761370,4
+bkmf,23761370,5
+3835994,23761370,5
+103477622,23761370,3
+saintcyr,23761370,2
+marsstone,23761370,4
+133785442,23761370,4
+131135417,23761370,4
+90445845,23761370,-1
+54344998,23761370,3
+75990882,23761370,5
+lhs,23761370,4
+99019923,23761370,4
+82339358,23761370,3
+2596903,23761370,3
+foreverworld,23761370,4
+39863972,23761370,4
+95817312,23761370,4
+55536173,23761370,4
+133859876,23761370,2
+Luozixia,23761370,5
+121826501,23761370,4
+64109161,23761370,5
+wong_orz,23761370,5
+34509096,23761370,3
+109446676,23761370,5
+4592782,23761370,4
+133847224,23761370,-1
+nicer,23761370,4
+63050490,23761370,2
+3759585,23761370,4
+104823204,23761370,3
+serein0423,23761370,5
+34739133,23761370,5
+ilovelusi,23761370,3
+88171857,23761370,5
+56085825,23761370,5
+46735684,23761370,3
+88961220,23761370,-1
+133568849,23761370,4
+shixinyu,23761370,5
+122527861,23761370,5
+27840560,23761370,4
+111342880,23761370,3
+111342880,23761370,3
+antony1994,23761370,5
+52648675,23761370,3
+38245498,23761370,4
+la_luna,23761370,3
+69273736,23761370,5
+70027746,23761370,5
+78821422,23761370,4
+76531316,23761370,5
+60908358,23761370,4
+133502255,23761370,5
+50044744,23761370,4
+132099750,23761370,5
+48973674,23761370,2
+60132042,23761370,3
+3078221,23761370,4
+illillill,23761370,5
+pjcs,23761370,3
+56684398,23761370,4
+80517374,23761370,4
+133176732,23761370,5
+41185421,23761370,4
+SaxaTamija,23761370,3
+49041839,23761370,4
+55978838,23761370,5
+58953302,23761370,5
+130446592,23761370,4
+52327549,23761370,4
+mydar,23761370,-1
+yoyomu,23761370,3
+62788376,23761370,4
+87820646,23761370,3
+49756613,23761370,4
+anna012,23761370,5
+63354645,23761370,5
+51528187,23761370,4
+52338823,23761370,4
+lnhzd,23761370,-1
+121181010,23761370,5
+mayukawai,23761370,3
+chenjubo,23761370,4
+ljojingle,23761370,4
+4361353,23761370,4
+Qianlumanman,23761370,5
+Avril_99,23761370,5
+5770486,23761370,3
+sep8box,23761370,1
+currant,23761370,2
+47556732,23761370,5
+cloudnest,23761370,3
+meifyrt,23761370,5
+30492787,23761370,4
+133709620,23761370,5
+sez,23761370,3
+73552921,23761370,4
+notendbutand,23761370,4
+25586254,23761370,5
+131500618,23761370,5
+63241916,23761370,5
+89619051,23761370,5
+132191737,23761370,5
+61166161,23761370,5
+79349800,23761370,5
+133686337,23761370,4
+mib,23761370,3
+64887412,23761370,4
+76098488,23761370,5
+suannaimao,23761370,5
+2135257,23761370,4
+44587806,23761370,3
+kkbear,23761370,4
+92118420,23761370,4
+133546021,23761370,5
+34158839,23761370,5
+84609158,23761370,4
+2196209,23761370,5
+aiolia,23761370,5
+104823188,23761370,3
+yaozhilan,23761370,4
+36669166,23761370,3
+HeartForest,23761370,5
+43628615,23761370,4
+28271170,23761370,4
+4373310,23761370,3
+76668507,23761370,5
+50158938,23761370,5
+36803758,23761370,-1
+59929388,23761370,4
+ricchow,23761370,4
+46313447,23761370,3
+132730973,23761370,4
+54968031,23761370,4
+71347748,23761370,4
+133241079,23761370,5
+49754687,23761370,4
+128100069,23761370,4
+132059664,23761370,4
+2370718,23761370,5
+qichengshiwo,23761370,4
+104823216,23761370,4
+newtypejacky,23761370,4
+1353381,23761370,3
+1820379,23761370,3
+132730918,23761370,4
+4642103,23761370,5
+133493380,23761370,4
+78797281,23761370,5
+kimmyhu,23761370,5
+114577206,23761370,3
+1703105,23761370,5
+54306037,23761370,4
+75667669,23761370,5
+81061045,23761370,3
+65040063,23761370,5
+133358211,23761370,5
+nvxiahxx,23761370,5
+LEEIJ,23761370,-1
+liangshu,23761370,4
+2487521,23761370,4
+evaine,23761370,3
+evaine,23761370,3
+zhuqt,23761370,4
+63567788,23761370,3
+64519164,23761370,4
+loneblog,23761370,3
+46140866,23761370,5
+93372075,23761370,4
+130605587,23761370,4
+103415530,23761370,4
+lifan1980,23761370,4
+132216387,23761370,5
+133578116,23761370,5
+fish_apple_love,23761370,3
+70232772,23761370,3
+64912992,23761370,4
+65303423,23761370,3
+jianyadaodao,23761370,4
+65263892,23761370,4
+131545662,23761370,5
+1596435,23761370,3
+133569553,23761370,4
+65956742,23761370,5
+64515288,23761370,5
+A-Marvin-T,23761370,4
+ScoIvy,23761370,5
+133564730,23761370,4
+65077725,23761370,-1
+60819367,23761370,3
+52782307,23761370,4
+48819084,23761370,3
+133474803,23761370,5
+wishna,23761370,5
+46061693,23761370,4
+129214543,23761370,4
+37102807,23761370,5
+37820008,23761370,4
+54268047,23761370,4
+66177481,23761370,4
+lieds,23761370,5
+28785708,23761370,4
+132323743,23761370,5
+59571520,23761370,5
+77208813,23761370,4
+dongshuang22,23761370,5
+nancyking,23761370,4
+57083738,23761370,5
+KiD-KiM,23761370,4
+122736540,23761370,5
+36547066,23761370,4
+67313637,23761370,4
+130432010,23761370,5
+65372247,23761370,3
+88638997,23761370,4
+48808520,23761370,3
+44096316,23761370,3
+muer1986,23761370,4
+4384375,23761370,5
+120819060,23761370,4
+crowsz,23761370,4
+1960898,23761370,3
+127680038,23761370,4
+62829367,23761370,2
+82663765,23761370,4
+66087282,23761370,4
+133486848,23761370,5
+74162453,23761370,4
+cherryucandoit,23761370,5
+yumicom,23761370,5
+46642787,23761370,1
+60825742,23761370,3
+61272579,23761370,2
+3654230,23761370,4
+1141627,23761370,5
+QingZhao2012,23761370,3
+126427829,23761370,5
+RightFromWrong,23761370,5
+68328293,23761370,4
+43259429,23761370,3
+133490729,23761370,5
+44621306,23761370,5
+90552553,23761370,4
+4913683,23761370,4
+133432265,23761370,4
+jukiloveu,23761370,4
+103430219,23761370,-1
+yu395813542,23761370,-1
+53962357,23761370,-1
+gracegsmile,23761370,5
+1299451,23761370,3
+49988447,23761370,4
+Charloo,23761370,3
+93471236,23761370,5
+75852237,23761370,5
+l-memory,23761370,4
+69253645,23761370,3
+74494058,23761370,4
+54199069,23761370,4
+rosepicker,23761370,4
+72391854,23761370,5
+92619228,23761370,4
+75217622,23761370,5
+69077137,23761370,5
+76243380,23761370,4
+67942462,23761370,4
+59705593,23761370,4
+32798278,23761370,4
+gypsy1993,23761370,3
+xusheng2333,23761370,4
+78623858,23761370,5
+58994354,23761370,4
+vandv,23761370,4
+52079002,23761370,4
+34592808,23761370,4
+76428013,23761370,3
+53836712,23761370,5
+59106036,23761370,4
+zgoliver,23761370,3
+7510013,23761370,3
+2666540,23761370,5
+70509315,23761370,4
+48032763,23761370,4
+a960629,23761370,3
+nununi,23761370,3
+63691279,23761370,5
+132166609,23761370,4
+133386536,23761370,5
+jshippo,23761370,5
+59331947,23761370,4
+1608078,23761370,3
+4115756,23761370,5
+81406768,23761370,1
+54907096,23761370,3
+reshNEO,23761370,3
+130789736,23761370,3
+94380874,23761370,4
+62344979,23761370,4
+50031374,23761370,4
+115713999,23761370,4
+61351436,23761370,4
+god8knows,23761370,4
+god8knows,23761370,4
+128120048,23761370,3
+dsj84,23761370,3
+jroclee,23761370,4
+42679394,23761370,4
+huv,23761370,3
+xxwm,23761370,3
+jbfu,23761370,4
+reeves2014,23761370,4
+leerayv587,23761370,5
+wainwong,23761370,5
+5200427,23761370,4
+50174936,23761370,3
+87860382,23761370,4
+132838052,23761370,5
+67568353,23761370,4
+130118606,23761370,4
+33693061,23761370,2
+56260072,23761370,5
+49445106,23761370,3
+49445106,23761370,3
+fortblk,23761370,2
+68493924,23761370,2
+15182824,23761370,5
+123961251,23761370,5
+65915611,23761370,3
+54041271,23761370,4
+38448078,23761370,4
+3277928,23761370,2
+54572170,23761370,5
+oooooi,23761370,5
+121678673,23761370,4
+57633355,23761370,3
+sssuryy,23761370,4
+50474274,23761370,3
+orangejiang,23761370,5
+67419325,23761370,5
+131281340,23761370,-1
+6260234,23761370,-1
+62035813,23761370,4
+57501453,23761370,4
+62850714,23761370,5
+vanuan,23761370,3
+cherub235,23761370,4
+57587090,23761370,3
+71878737,23761370,4
+54108610,23761370,4
+73818368,23761370,5
+122399571,23761370,5
+61271737,23761370,5
+66241350,23761370,5
+47193750,23761370,5
+Miatang007,23761370,5
+15342214,23761370,3
+beckhong,23761370,5
+2970713,23761370,4
+49697851,23761370,2
+vincent_kwok,23761370,5
+54633342,23761370,-1
+28392711,23761370,3
+28392711,23761370,3
+sliu,23761370,4
+kgbbeer,23761370,3
+51378440,23761370,3
+130347315,23761370,2
+60864856,23761370,5
+huapiqiu,23761370,5
+Kso-go,23761370,4
+fantasykx,23761370,3
+66345470,23761370,4
+Patricia_,23761370,2
+ziyoupaifeizai,23761370,4
+4077370,23761370,4
+59757081,23761370,5
+gaiasmile,23761370,4
+44835738,23761370,5
+ahhbcrane,23761370,4
+71911811,23761370,5
+63597276,23761370,5
+74739991,23761370,5
+131711489,23761370,5
+sheg,23761370,4
+43197819,23761370,4
+46611352,23761370,4
+102966117,23761370,5
+56091106,23761370,1
+45164060,23761370,5
+55572207,23761370,4
+44800768,23761370,4
+realeunhae,23761370,5
+129954450,23761370,4
+towzoo,23761370,4
+26503826,23761370,4
+97620389,23761370,-1
+36100413,23761370,5
+63863771,23761370,4
+dou_chi,23761370,-1
+hhn2015,23761370,5
+gee880130,23761370,3
+43222334,23761370,5
+4040333,23761370,5
+3408360,23761370,4
+sooman,23761370,3
+92934548,23761370,3
+66071713,23761370,4
+129040636,23761370,5
+8902879,23761370,3
+4624601,23761370,3
+Likferd,23761370,4
+52719303,23761370,4
+78851730,23761370,4
+133188364,23761370,4
+47603768,23761370,5
+132541857,23761370,1
+96636177,23761370,3
+bolanboy,23761370,3
+133208122,23761370,4
+76515207,23761370,5
+131717591,23761370,5
+laobai.,23761370,5
+dltmw,23761370,4
+8895439,23761370,4
+85084961,23761370,3
+HYQRZKLS,23761370,5
+133100980,23761370,4
+myidlpl,23761370,4
+47586850,23761370,5
+44973722,23761370,5
+133201663,23761370,5
+52364655,23761370,5
+118848688,23761370,3
+130148960,23761370,4
+130618048,23761370,5
+52454145,23761370,4
+42111697,23761370,4
+L-muyan,23761370,5
+summerwu,23761370,5
+60049868,23761370,4
+78664563,23761370,5
+53801441,23761370,4
+53801441,23761370,4
+64607217,23761370,3
+49053183,23761370,5
+133125055,23761370,4
+jennifershi,23761370,5
+54338548,23761370,4
+133180724,23761370,4
+4431856,23761370,3
+55552346,23761370,4
+121171905,23761370,4
+130496328,23761370,4
+lamber,23761370,3
+linxiaolin_,23761370,3
+42812938,23761370,1
+85417915,23761370,4
+130841314,23761370,3
+115978200,23761370,4
+3919435,23761370,5
+tinmiko,23761370,5
+59537499,23761370,5
+jessedh5,23761370,3
+42977491,23761370,3
+76528296,23761370,5
+qtong,23761370,5
+2073110,23761370,3
+68080331,23761370,4
+buerxiong,23761370,5
+47671749,23761370,5
+64109076,23761370,4
+69484318,23761370,4
+69102270,23761370,4
+febechan,23761370,4
+73944113,23761370,3
+3603638,23761370,5
+52500105,23761370,5
+2346310,23761370,5
+133132614,23761370,5
+ruyi1989,23761370,5
+girlme,23761370,4
+1656874,23761370,5
+46606804,23761370,5
+dodov,23761370,2
+58797753,23761370,3
+88078787,23761370,2
+miaommiki,23761370,5
+45748609,23761370,4
+133078454,23761370,5
+57532043,23761370,4
+guan386,23761370,5
+lemurex,23761370,5
+53004550,23761370,5
+58850320,23761370,5
+colacat_sandy,23761370,3
+54129779,23761370,3
+sosoJean,23761370,4
+45939025,23761370,3
+21407911,23761370,5
+132742952,23761370,5
+2819362,23761370,4
+59987958,23761370,3
+59987958,23761370,3
+pengchengpku,23761370,4
+lisijia,23761370,4
+relentlesscool,23761370,3
+59945441,23761370,3
+73797820,23761370,5
+48864646,23761370,5
+57302103,23761370,4
+38175644,23761370,4
+53857648,23761370,4
+53071214,23761370,5
+37228447,23761370,4
+49205354,23761370,5
+37501692,23761370,3
+laipixiaoxiuxiu,23761370,4
+44506862,23761370,4
+viva_FJH,23761370,5
+miaomiao0408,23761370,3
+45354414,23761370,4
+2373729,23761370,4
+2373729,23761370,4
+67494361,23761370,4
+41211695,23761370,2
+wakusei,23761370,3
+wulei1104,23761370,5
+xiaopang1106,23761370,5
+narcisusss,23761370,2
+50690264,23761370,3
+50776710,23761370,3
+s_plus,23761370,4
+55660651,23761370,2
+liminray,23761370,5
+63997974,23761370,4
+62101398,23761370,4
+55771326,23761370,4
+1341123,23761370,3
+2990791,23761370,3
+Shauro,23761370,5
+lxgend,23761370,4
+9429775,23761370,4
+61622272,23761370,5
+swordflying,23761370,3
+valhalla,23761370,3
+25673026,23761370,4
+xiao33,23761370,5
+3864613,23761370,2
+116138651,23761370,3
+59110325,23761370,4
+may0510,23761370,2
+87673742,23761370,5
+82672636,23761370,-1
+catxiaoai,23761370,4
+133043824,23761370,4
+whyoung,23761370,4
+mythmok,23761370,3
+Queeniezjl,23761370,5
+93465458,23761370,4
+54863567,23761370,5
+48917226,23761370,5
+wzjzxgj,23761370,-1
+wzjzxgj,23761370,-1
+132798985,23761370,4
+70846256,23761370,4
+44587158,23761370,5
+47815647,23761370,5
+xiloxilo,23761370,4
+50367982,23761370,5
+128113494,23761370,5
+8275729,23761370,3
+87658642,23761370,5
+57452229,23761370,4
+100417194,23761370,4
+47216352,23761370,4
+73292250,23761370,4
+64006704,23761370,5
+52176275,23761370,5
+yxmj1982,23761370,3
+131500933,23761370,5
+Sherry-OCDer,23761370,5
+qiaoqq,23761370,5
+qiaoqq,23761370,5
+50344211,23761370,3
+103497855,23761370,4
+2764417,23761370,4
+4210996,23761370,3
+76490710,23761370,3
+msfigaro,23761370,4
+62133220,23761370,5
+107586571,23761370,2
+87902611,23761370,-1
+132201703,23761370,5
+130941733,23761370,5
+132987469,23761370,4
+131987227,23761370,5
+53393312,23761370,4
+gcc220,23761370,4
+132748448,23761370,5
+122787137,23761370,5
+2664514,23761370,3
+57715527,23761370,3
+12470657,23761370,3
+53829796,23761370,4
+72083821,23761370,4
+lovejidi,23761370,4
+59366583,23761370,4
+woooxvi,23761370,4
+56813503,23761370,3
+123196053,23761370,4
+clearsky11,23761370,4
+51920642,23761370,4
+53595265,23761370,4
+lyzw,23761370,5
+122437008,23761370,4
+74818677,23761370,3
+83743070,23761370,4
+132850327,23761370,5
+82620534,23761370,5
+62608491,23761370,5
+nizhenhua1981,23761370,4
+55465032,23761370,2
+40061842,23761370,4
+4290135,23761370,4
+131958766,23761370,5
+65894356,23761370,5
+124921040,23761370,5
+127466089,23761370,3
+49812743,23761370,5
+73849814,23761370,4
+36470321,23761370,5
+apr1lcoo,23761370,4
+34544680,23761370,4
+131187626,23761370,5
+81030268,23761370,5
+babyfairy,23761370,4
+52286419,23761370,5
+121580684,23761370,5
+44402590,23761370,4
+NicoleDR,23761370,5
+1333997,23761370,4
+koklite,23761370,3
+132830988,23761370,5
+64818273,23761370,5
+132934963,23761370,5
+115593440,23761370,5
+75788452,23761370,3
+132698860,23761370,4
+4404145,23761370,5
+90497185,23761370,5
+73299888,23761370,5
+69122945,23761370,3
+ksw2024,23761370,4
+1565154,23761370,4
+Guessy,23761370,5
+72827871,23761370,3
+93381695,23761370,3
+60751952,23761370,5
+alwaysforyou,23761370,3
+hxxhxx,23761370,4
+50025753,23761370,3
+haunting,23761370,5
+13293190,23761370,3
+50394640,23761370,3
+53248531,23761370,5
+losrfuu,23761370,3
+67205440,23761370,4
+58658233,23761370,3
+97313597,23761370,5
+93189279,23761370,4
+132783290,23761370,1
+127782706,23761370,5
+115665667,23761370,5
+57104969,23761370,5
+59594488,23761370,-1
+55561510,23761370,5
+HaoChao,23761370,4
+80901919,23761370,4
+62151041,23761370,1
+60095133,23761370,4
+77136700,23761370,5
+4672934,23761370,5
+4100649,23761370,5
+70200303,23761370,5
+virginia92,23761370,1
+127164338,23761370,3
+58275770,23761370,5
+yuanchao-op,23761370,4
+3116575,23761370,3
+132719459,23761370,3
+BobbySun,23761370,3
+wangleku0310,23761370,5
+62581194,23761370,4
+zhanshenzhy,23761370,4
+58881939,23761370,3
+60649815,23761370,5
+75365783,23761370,4
+STYLE-luxury,23761370,4
+52450726,23761370,5
+aquariankitty,23761370,4
+132164627,23761370,5
+weilisiqin,23761370,4
+125036084,23761370,5
+62687276,23761370,3
+110961210,23761370,5
+51618406,23761370,5
+65415488,23761370,4
+131866254,23761370,4
+stwang,23761370,5
+130045954,23761370,4
+1020764,23761370,5
+56694630,23761370,4
+catchingcold,23761370,3
+34946618,23761370,5
+102783597,23761370,4
+114257816,23761370,5
+124715354,23761370,5
+93339436,23761370,5
+50942732,23761370,3
+132853356,23761370,5
+130129200,23761370,3
+65125200,23761370,5
+100338185,23761370,3
+70595719,23761370,4
+52739316,23761370,5
+99598599,23761370,5
+iloveeuro,23761370,5
+120793472,23761370,3
+2254979,23761370,5
+52083386,23761370,5
+nancyyan,23761370,3
+Jerry-Zeng,23761370,4
+49587231,23761370,5
+92988194,23761370,5
+120852248,23761370,3
+88232438,23761370,5
+YNKM,23761370,4
+youknow810,23761370,4
+63923908,23761370,2
+Liangkui,23761370,4
+63363335,23761370,4
+2219911,23761370,4
+121675172,23761370,5
+45595952,23761370,3
+96784492,23761370,5
+yigocheng,23761370,2
+88428355,23761370,4
+4716984,23761370,4
+88072113,23761370,5
+sogstad,23761370,4
+42293953,23761370,3
+mavis42,23761370,3
+115185293,23761370,2
+45893362,23761370,4
+yimairen,23761370,5
+artlin,23761370,3
+63699161,23761370,-1
+70275739,23761370,4
+ayumiH,23761370,3
+aa415522,23761370,4
+yuchenyuan,23761370,4
+123503761,23761370,4
+132781234,23761370,4
+130562665,23761370,5
+119784775,23761370,5
+61813096,23761370,4
+44448766,23761370,5
+71962630,23761370,4
+122858787,23761370,5
+46886299,23761370,5
+132805966,23761370,5
+nicolaswang,23761370,3
+47701816,23761370,3
+13683871,23761370,5
+61695490,23761370,5
+54877038,23761370,3
+36537385,23761370,4
+summersuy,23761370,5
+72909586,23761370,4
+4464633,23761370,4
+54237570,23761370,5
+3637664,23761370,5
+62984615,23761370,5
+50882624,23761370,4
+55596530,23761370,3
+1183940,23761370,-1
+50267842,23761370,5
+46186100,23761370,4
+83949510,23761370,4
+47691790,23761370,1
+dwf123655,23761370,5
+22031796,23761370,3
+3429384,23761370,4
+100981322,23761370,4
+50242355,23761370,3
+81412165,23761370,4
+24357802,23761370,2
+xunhu,23761370,4
+100532908,23761370,4
+115728568,23761370,5
+2350156,23761370,2
+M-Y-LALALA,23761370,4
+64430270,23761370,3
+59038856,23761370,4
+93469131,23761370,5
+132774097,23761370,4
+33439278,23761370,3
+samnew,23761370,4
+58988950,23761370,5
+45949533,23761370,5
+nobelwhn_ivy,23761370,5
+132770706,23761370,5
+sakurairo,23761370,-1
+momot,23761370,4
+121947452,23761370,3
+otnemem,23761370,5
+Tony1168,23761370,4
+struggle_utopia,23761370,4
+wzq1981,23761370,4
+harechan,23761370,3
+132757484,23761370,-1
+teenybrook,23761370,3
+40161822,23761370,5
+STleo,23761370,3
+43387464,23761370,4
+retall,23761370,4
+sonicxs,23761370,4
+128157735,23761370,5
+AmeliaZhu,23761370,4
+misspj,23761370,4
+doll2,23761370,3
+fuei,23761370,5
+68294915,23761370,3
+84636662,23761370,5
+92318310,23761370,4
+127073783,23761370,5
+94285229,23761370,5
+39541745,23761370,5
+yifengraner,23761370,4
+22427303,23761370,4
+like9225,23761370,4
+122749983,23761370,5
+eddy1025,23761370,5
+71144394,23761370,5
+3495848,23761370,5
+42531507,23761370,4
+99677951,23761370,5
+120935169,23761370,4
+2066944,23761370,4
+lilinhan,23761370,4
+xhris,23761370,4
+alessioliu,23761370,3
+78885563,23761370,3
+Chne,23761370,4
+honeynaga,23761370,4
+idiotyoung,23761370,4
+89842600,23761370,4
+66579204,23761370,-1
+52238680,23761370,5
+gemiyang,23761370,2
+sideline,23761370,3
+42006614,23761370,4
+k2,23761370,-1
+132718277,23761370,4
+130991219,23761370,4
+93372123,23761370,4
+dante8977,23761370,4
+70266716,23761370,3
+53977325,23761370,5
+3296434,23761370,3
+122775909,23761370,4
+132433995,23761370,4
+52305285,23761370,5
+54625287,23761370,4
+emilialinlin,23761370,5
+lovekahn2002,23761370,4
+76075796,23761370,-1
+hahjhahj,23761370,4
+60378678,23761370,3
+Sevensound,23761370,5
+1730837,23761370,3
+wxquan,23761370,5
+justMog,23761370,5
+78689518,23761370,4
+kingcopushu,23761370,3
+nestle103114,23761370,5
+suxuxiang,23761370,5
+yue_cp,23761370,4
+128156137,23761370,5
+imai,23761370,4
+64636534,23761370,5
+44142876,23761370,5
+summerx,23761370,4
+48443053,23761370,5
+yangyiyin,23761370,5
+65976416,23761370,5
+icplasf,23761370,5
+54041697,23761370,4
+68527593,23761370,5
+36621771,23761370,5
+52113603,23761370,5
+fuyu8818,23761370,5
+fuyu8818,23761370,5
+wtsy,23761370,-1
+53750032,23761370,4
+2299452,23761370,5
+ryx0316,23761370,5
+26379453,23761370,4
+liyijuan,23761370,4
+dingbingyong,23761370,4
+84522058,23761370,5
+61492149,23761370,3
+64723431,23761370,3
+6919376,23761370,4
+kimi-qianli,23761370,4
+snailache,23761370,3
+nini1030,23761370,2
+63210071,23761370,4
+42623950,23761370,4
+zhuanzhuderen,23761370,3
+74420414,23761370,5
+98500983,23761370,1
+57387149,23761370,4
+the5fire,23761370,5
+50219991,23761370,4
+56161116,23761370,5
+topgamer,23761370,4
+wangshiqian1024,23761370,3
+pumpkinwang,23761370,5
+132636435,23761370,5
+hakuna927,23761370,4
+2316813,23761370,4
+chuck0jessie,23761370,4
+ivril,23761370,5
+4630944,23761370,2
+64996012,23761370,3
+qigenhuochai,23761370,5
+ccbadger,23761370,3
+132633082,23761370,5
+108227036,23761370,4
+nightkid0728,23761370,4
+51792863,23761370,4
+42522085,23761370,4
+131147823,23761370,4
+60334916,23761370,4
+61889296,23761370,5
+83900259,23761370,5
+Air02,23761370,5
+73040905,23761370,5
+17247772,23761370,5
+50293215,23761370,5
+77595746,23761370,5
+guppyfish,23761370,5
+127292796,23761370,4
+67374295,23761370,4
+cloudy20011128,23761370,2
+43593979,23761370,4
+78752682,23761370,-1
+tianran1215,23761370,5
+maria_wang,23761370,4
+42713356,23761370,3
+zwtelle,23761370,4
+yiibaby,23761370,5
+127464842,23761370,1
+10270277,23761370,5
+132592664,23761370,4
+130396517,23761370,3
+59620866,23761370,5
+60613732,23761370,-1
+46120245,23761370,4
+122493396,23761370,5
+lilylee1023,23761370,5
+68991888,23761370,5
+127063288,23761370,4
+121346117,23761370,4
+lovemimidog,23761370,5
+1998897,23761370,1
+58009303,23761370,5
+91882469,23761370,5
+62973007,23761370,4
+3577665,23761370,5
+59015045,23761370,4
+58927939,23761370,3
+4349980,23761370,4
+72774742,23761370,2
+108693709,23761370,4
+SuzyMao,23761370,3
+55881700,23761370,3
+qianjin,23761370,4
+59480546,23761370,4
+36152069,23761370,3
+colan,23761370,-1
+115657337,23761370,5
+DODOwoo,23761370,4
+47167717,23761370,4
+2747510,23761370,5
+70386523,23761370,5
+68592556,23761370,4
+fenxinyu,23761370,4
+Smeagol,23761370,5
+78854291,23761370,3
+42646716,23761370,4
+42646716,23761370,4
+csy0o0,23761370,4
+39044123,23761370,2
+64805151,23761370,5
+70660322,23761370,5
+shuiqq,23761370,5
+aTeeksI,23761370,4
+48400292,23761370,4
+75937419,23761370,5
+3371471,23761370,4
+71974219,23761370,4
+beyond_champion,23761370,5
+125391105,23761370,4
+desertrain7,23761370,5
+3797778,23761370,3
+syrz,23761370,4
+2012335,23761370,3
+132505335,23761370,3
+72866901,23761370,4
+4538596,23761370,5
+89255924,23761370,5
+mmcv,23761370,3
+uSeeMe,23761370,4
+55545848,23761370,5
+maocier,23761370,5
+120274901,23761370,4
+50620883,23761370,5
+121579661,23761370,3
+xizi77,23761370,5
+65916762,23761370,4
+83749765,23761370,5
+75790133,23761370,2
+68878726,23761370,5
+65178670,23761370,4
+59219110,23761370,4
+66650863,23761370,4
+4453892,23761370,-1
+127844740,23761370,5
+60687232,23761370,5
+31736711,23761370,3
+67992127,23761370,4
+47517431,23761370,3
+labuladuo,23761370,5
+OrangeWeiei,23761370,3
+JabbaWk,23761370,1
+49228505,23761370,2
+131795789,23761370,4
+65688183,23761370,5
+black201,23761370,3
+1412430,23761370,5
+130250492,23761370,5
+82748249,23761370,4
+88815892,23761370,5
+57259759,23761370,4
+2450300,23761370,4
+119653223,23761370,5
+63499246,23761370,4
+travelaway,23761370,4
+36125735,23761370,4
+45492375,23761370,3
+126151029,23761370,5
+58222063,23761370,5
+41088876,23761370,3
+reeboir,23761370,-1
+66295147,23761370,5
+122219958,23761370,5
+54947463,23761370,3
+40572936,23761370,2
+69578055,23761370,5
+64217349,23761370,4
+tianhongkun,23761370,3
+78634802,23761370,3
+80206205,23761370,4
+28554090,23761370,3
+57197807,23761370,5
+1792264,23761370,3
+105012198,23761370,1
+2014117,23761370,3
+68593933,23761370,4
+127225715,23761370,3
+30830742,23761370,4
+cmyooxx,23761370,3
+88775652,23761370,3
+coffee--time,23761370,4
+52631968,23761370,5
+51187736,23761370,5
+123689430,23761370,5
+3489125,23761370,3
+davidyao1993,23761370,3
+74566437,23761370,4
+sanweiyi,23761370,3
+51507280,23761370,3
+68083450,23761370,5
+44725966,23761370,4
+pearl.lu,23761370,4
+53490791,23761370,5
+1960285,23761370,3
+2108133,23761370,4
+84408132,23761370,2
+barcelonazhou,23761370,4
+barcelonazhou,23761370,4
+96009356,23761370,4
+42678497,23761370,3
+49190112,23761370,5
+57824854,23761370,4
+coldyue,23761370,3
+64021058,23761370,4
+2234869,23761370,4
+4605484,23761370,3
+bonny1111,23761370,2
+4501124,23761370,4
+70189709,23761370,2
+64035088,23761370,4
+43372236,23761370,3
+61424106,23761370,4
+2196331,23761370,4
+69072673,23761370,5
+lilac...,23761370,5
+49908736,23761370,5
+49569915,23761370,5
+27277879,23761370,3
+abc1985,23761370,3
+28307995,23761370,4
+76704934,23761370,3
+46574450,23761370,4
+42871982,23761370,3
+Ziya,23761370,4
+120619243,23761370,4
+74654705,23761370,3
+teamonesta,23761370,5
+73498656,23761370,5
+zx8713,23761370,3
+46162383,23761370,4
+61823164,23761370,3
+3596426,23761370,5
+59302218,23761370,5
+49116416,23761370,3
+55619638,23761370,3
+czy940903,23761370,5
+yellow5egg,23761370,4
+69785577,23761370,2
+fengzhongyeer,23761370,5
+81539455,23761370,3
+77195192,23761370,3
+126304635,23761370,4
+132356139,23761370,5
+43342177,23761370,2
+yaliedu,23761370,3
+74962484,23761370,2
+3588521,23761370,3
+3501606,23761370,4
+studyzy,23761370,4
+102856154,23761370,-1
+64301558,23761370,5
+79108534,23761370,2
+120522594,23761370,5
+octopusz,23761370,5
+51279827,23761370,5
+53878676,23761370,4
+29262337,23761370,4
+29262337,23761370,4
+4667776,23761370,3
+39772273,23761370,3
+94594889,23761370,5
+boxxx,23761370,3
+31755732,23761370,4
+a_cal,23761370,5
+boockit,23761370,4
+pzaiqueen,23761370,4
+66691912,23761370,5
+49886917,23761370,5
+39015968,23761370,3
+tofrom,23761370,4
+sevensuns,23761370,3
+yuefulun,23761370,4
+2241108,23761370,5
+68907287,23761370,5
+dreamingsea,23761370,4
+104792995,23761370,5
+33132526,23761370,4
+51676190,23761370,5
+26786112,23761370,5
+4657028,23761370,5
+42458659,23761370,4
+125878339,23761370,3
+109273896,23761370,3
+andezhu,23761370,3
+132326708,23761370,5
+musicide,23761370,2
+87906955,23761370,4
+fuzyu,23761370,3
+25970354,23761370,5
+58771681,23761370,5
+62090248,23761370,5
+4238746,23761370,2
+127683226,23761370,4
+49351576,23761370,5
+zhanghui1988,23761370,4
+48849738,23761370,3
+79453297,23761370,4
+45800687,23761370,5
+84624993,23761370,4
+52401206,23761370,5
+63626568,23761370,3
+100040211,23761370,5
+52114041,23761370,3
+4537053,23761370,2
+2183839,23761370,5
+58229275,23761370,2
+3890315,23761370,4
+50180510,23761370,3
+35763103,23761370,4
+2978416,23761370,5
+132213872,23761370,5
+47509216,23761370,5
+74629156,23761370,5
+v0Id0,23761370,3
+4636941,23761370,-1
+130097686,23761370,4
+zjlester,23761370,4
+35208519,23761370,5
+ronaldojxz,23761370,4
+107911126,23761370,4
+62748028,23761370,5
+80923328,23761370,4
+83139491,23761370,3
+33322981,23761370,5
+52240587,23761370,5
+129742273,23761370,5
+91787788,23761370,3
+yanmingsky,23761370,5
+4209304,23761370,4
+60785049,23761370,5
+62644085,23761370,3
+HughWood,23761370,4
+xinziai,23761370,4
+105931827,23761370,5
+3086120,23761370,4
+3985250,23761370,3
+132191667,23761370,-1
+132043994,23761370,3
+cmmmmmm,23761370,5
+64250387,23761370,3
+35514248,23761370,3
+coolfax,23761370,5
+1773768,23761370,4
+85336139,23761370,5
+68547609,23761370,5
+56390988,23761370,4
+Jack_Yan,23761370,5
+tanz,23761370,3
+87402327,23761370,5
+73637073,23761370,5
+vincehwangcc,23761370,3
+2117969,23761370,3
+56988998,23761370,4
+Alexhas1dream,23761370,5
+68786476,23761370,4
+EthanChu,23761370,4
+125992098,23761370,2
+125992098,23761370,2
+38737800,23761370,2
+2763863,23761370,4
+5800448,23761370,4
+4192759,23761370,3
+91464573,23761370,5
+121247615,23761370,5
+juliantt,23761370,5
+38012408,23761370,1
+81230678,23761370,5
+superlu,23761370,5
+79372078,23761370,5
+49807352,23761370,3
+85079143,23761370,5
+m.911,23761370,4
+74023941,23761370,3
+27510926,23761370,5
+25795086,23761370,4
+54468195,23761370,1
+115987406,23761370,5
+frankcui,23761370,5
+84745831,23761370,3
+43953322,23761370,4
+2647689,23761370,4
+daimaoqi,23761370,2
+50452092,23761370,4
+43864936,23761370,4
+51133141,23761370,3
+foreveryoung01,23761370,3
+121059128,23761370,4
+tianjian6,23761370,5
+60822788,23761370,4
+22406636,23761370,4
+Arsene_,23761370,4
+59181026,23761370,4
+51471724,23761370,5
+132194541,23761370,5
+nirvana0330,23761370,5
+93208688,23761370,5
+1851027,23761370,3
+60587568,23761370,2
+alicialin,23761370,4
+45686083,23761370,4
+3665615,23761370,5
+51095150,23761370,4
+58360474,23761370,4
+75721685,23761370,5
+Zealx,23761370,4
+57985826,23761370,4
+1101928,23761370,3
+38563748,23761370,3
+40547313,23761370,4
+68883959,23761370,3
+74652715,23761370,5
+52012798,23761370,4
+53145042,23761370,5
+57951183,23761370,3
+78277110,23761370,-1
+33042240,23761370,3
+15263432,23761370,4
+oshay,23761370,-1
+85156145,23761370,5
+Carpediemnicole,23761370,4
+16304195,23761370,3
+57562576,23761370,3
+72136277,23761370,4
+2931560,23761370,4
+2333505,23761370,4
+hj_laoxie,23761370,4
+myangel_aj,23761370,5
+biti.vector,23761370,3
+shirleyrise,23761370,-1
+4378595,23761370,3
+harukimlee,23761370,2
+43612310,23761370,3
+65553756,23761370,5
+38850701,23761370,3
+caicai1005,23761370,5
+62475981,23761370,5
+76130452,23761370,5
+64895995,23761370,3
+1284142,23761370,4
+Orchendor,23761370,3
+CorsoChiggiato,23761370,3
+zhouweijuezhe,23761370,5
+76460934,23761370,4
+48101420,23761370,3
+50851768,23761370,5
+2252132,23761370,-1
+132145463,23761370,5
+126168366,23761370,5
+doubaning,23761370,4
+64287254,23761370,4
+Unibong,23761370,3
+96771459,23761370,5
+nintendog,23761370,4
+62837123,23761370,3
+2121794,23761370,5
+antifast,23761370,4
+107788986,23761370,5
+107788986,23761370,5
+joybang,23761370,4
+104003575,23761370,3
+luciferls,23761370,4
+shirleyhu,23761370,3
+69578199,23761370,4
+115097585,23761370,4
+Brown-,23761370,4
+61050530,23761370,4
+seren,23761370,3
+53729115,23761370,4
+lzblack,23761370,3
+44997498,23761370,3
+herrfay,23761370,4
+88273996,23761370,4
+121148510,23761370,3
+53906378,23761370,4
+WSSWHL,23761370,3
+129913027,23761370,1
+Davidcyclone,23761370,-1
+Davidcyclone,23761370,-1
+kolodo,23761370,1
+71464860,23761370,4
+130138879,23761370,5
+81045053,23761370,3
+2441502,23761370,4
+93438147,23761370,4
+1149341,23761370,4
+Coka-Less,23761370,3
+haodan91918,23761370,4
+67003173,23761370,5
+yzy-Amelie,23761370,4
+bananafishdodo,23761370,2
+132086884,23761370,5
+Iris_shu,23761370,4
+83720592,23761370,4
+snowyhowe,23761370,4
+46133817,23761370,4
+68453321,23761370,5
+1371368,23761370,5
+57001973,23761370,3
+worldless,23761370,5
+73568450,23761370,4
+53888176,23761370,5
+58509595,23761370,5
+81802080,23761370,3
+64887189,23761370,3
+2828074,23761370,5
+lovemyselflydia,23761370,2
+xifengying,23761370,5
+69360655,23761370,5
+captaindtshoot,23761370,5
+andyzhanghua,23761370,4
+mufengqin,23761370,4
+129051527,23761370,4
+76077736,23761370,5
+4200336,23761370,2
+43609134,23761370,4
+122394685,23761370,2
+roror,23761370,3
+roror,23761370,3
+74290800,23761370,4
+129135232,23761370,5
+48590382,23761370,3
+2670624,23761370,3
+53879443,23761370,4
+eaufavor,23761370,4
+61535522,23761370,4
+131587002,23761370,5
+3309735,23761370,4
+meteora,23761370,4
+31452599,23761370,5
+2417785,23761370,5
+cryuyu,23761370,4
+79375737,23761370,4
+81336001,23761370,3
+79858645,23761370,3
+122649591,23761370,3
+60222551,23761370,4
+58774315,23761370,4
+3850532,23761370,4
+2632584,23761370,3
+3808156,23761370,4
+57716522,23761370,3
+125282020,23761370,3
+132034967,23761370,3
+zhjwxw,23761370,4
+48492174,23761370,4
+72691746,23761370,5
+yangyucn,23761370,4
+80224563,23761370,5
+bmwwxw,23761370,4
+22595281,23761370,5
+78786637,23761370,4
+1319405,23761370,3
+chinaqiang,23761370,5
+63781325,23761370,5
+C-Jay,23761370,4
+51633930,23761370,2
+68037802,23761370,5
+64636436,23761370,4
+44537605,23761370,5
+91056442,23761370,3
+spoontzc,23761370,4
+4446932,23761370,4
+57103962,23761370,4
+cynthiachang,23761370,4
+56748404,23761370,4
+46832576,23761370,4
+90598022,23761370,5
+johngreed,23761370,5
+132016475,23761370,3
+loveleejin,23761370,3
+34479006,23761370,4
+54402472,23761370,4
+38973316,23761370,5
+67516676,23761370,5
+61879467,23761370,3
+37635655,23761370,3
+115971779,23761370,5
+50438518,23761370,5
+79132036,23761370,4
+49985202,23761370,4
+50066816,23761370,5
+132010641,23761370,5
+namik_ercan,23761370,4
+riverbrother,23761370,4
+realcaptain,23761370,3
+47837056,23761370,5
+4295778,23761370,4
+alan_fanfan,23761370,3
+bereign,23761370,5
+57754572,23761370,5
+49564307,23761370,5
+dorothy6851,23761370,3
+tuscany1234,23761370,2
+81734311,23761370,2
+131932102,23761370,5
+sulianhong123,23761370,4
+kangmeng,23761370,5
+115529221,23761370,3
+shine495_,23761370,5
+hugowai,23761370,3
+cc51,23761370,5
+122587004,23761370,4
+78408036,23761370,5
+69586800,23761370,4
+42912534,23761370,4
+ideyes,23761370,3
+gaokai3091354,23761370,4
+59572879,23761370,4
+5263690,23761370,5
+57673827,23761370,4
+79095415,23761370,5
+125180351,23761370,3
+52470011,23761370,5
+56248710,23761370,4
+DKfeixiang,23761370,4
+58507282,23761370,5
+93138028,23761370,3
+93138028,23761370,3
+90658978,23761370,5
+jeremydu777,23761370,3
+53567005,23761370,3
+oak1890,23761370,5
+46449280,23761370,5
+4156800,23761370,5
+2382982,23761370,3
+2076258,23761370,3
+miaoyan,23761370,3
+2206213,23761370,4
+fying,23761370,3
+yangjianmeiyang,23761370,4
+1593071,23761370,4
+56882245,23761370,5
+51786500,23761370,5
+54806925,23761370,3
+4631001,23761370,4
+57249793,23761370,5
+54107765,23761370,5
+57617460,23761370,3
+zx92800,23761370,1
+40931662,23761370,3
+129255326,23761370,4
+59113728,23761370,4
+absoluttheo,23761370,3
+120986477,23761370,5
+58934229,23761370,4
+5210477,23761370,-1
+59776363,23761370,5
+studentdao,23761370,3
+ScYui,23761370,3
+3923065,23761370,5
+smokey,23761370,4
+130024032,23761370,5
+3873539,23761370,3
+81845294,23761370,5
+51003719,23761370,-1
+74512782,23761370,4
+47491946,23761370,4
+82239252,23761370,2
+103277074,23761370,5
+46142906,23761370,-1
+41051630,23761370,-1
+jhj0918,23761370,4
+84551349,23761370,3
+66512641,23761370,4
+83853096,23761370,5
+yumofu,23761370,2
+42785964,23761370,4
+55439926,23761370,3
+1611100,23761370,4
+87651171,23761370,1
+yaoyamin,23761370,3
+120654245,23761370,4
+54064610,23761370,5
+yichenjian,23761370,4
+3422611,23761370,4
+MudDog,23761370,4
+1381065,23761370,3
+rapheal,23761370,3
+1840162,23761370,3
+48150876,23761370,4
+OpenSpaces,23761370,5
+sharkspeare,23761370,3
+104648504,23761370,5
+goldenday,23761370,4
+83656919,23761370,3
+84781945,23761370,5
+huskie,23761370,4
+59595783,23761370,5
+2612118,23761370,2
+RJ861126,23761370,5
+zhangliyuan91,23761370,5
+53989389,23761370,5
+2475141,23761370,4
+Ken,23761370,4
+63676625,23761370,4
+2010000,23761370,4
+4331359,23761370,2
+59842125,23761370,4
+72709492,23761370,2
+81542616,23761370,4
+jeffersontang,23761370,4
+ichaos,23761370,4
+67296757,23761370,3
+52636646,23761370,4
+1457618,23761370,3
+byjch,23761370,5
+2229995,23761370,4
+81311477,23761370,5
+lizzy56,23761370,3
+26664007,23761370,5
+palahniuk,23761370,4
+43703010,23761370,3
+98905078,23761370,4
+45981981,23761370,4
+62510506,23761370,3
+63550656,23761370,4
+dudumozart,23761370,4
+kimi-1119,23761370,4
+81258030,23761370,3
+74548439,23761370,4
+rrrrrrc,23761370,4
+51850334,23761370,3
+78757579,23761370,4
+moesolo,23761370,4
+G-Dear,23761370,3
+80348100,23761370,5
+xiaomo1,23761370,3
+131860652,23761370,4
+lostinfire,23761370,3
+1385012,23761370,4
+37770696,23761370,5
+99335988,23761370,5
+48225270,23761370,5
+urannus,23761370,5
+glhxanthus,23761370,4
+50503776,23761370,3
+cyaround,23761370,4
+62762880,23761370,4
+75288450,23761370,4
+65108877,23761370,4
+wqmeoe,23761370,4
+93940379,23761370,5
+whz1143243564,23761370,5
+4284029,23761370,5
+46722646,23761370,5
+ruanyijian,23761370,4
+121382823,23761370,5
+spottedowl,23761370,3
+50575752,23761370,3
+121875358,23761370,5
+64110948,23761370,4
+45800541,23761370,5
+1457979,23761370,5
+lightwing86,23761370,4
+adi0319,23761370,3
+55286979,23761370,5
+98200423,23761370,4
+39014074,23761370,4
+71986171,23761370,5
+34727533,23761370,4
+35545218,23761370,3
+70790963,23761370,4
+50821454,23761370,4
+54667109,23761370,5
+85727948,23761370,5
+dsqingdao,23761370,-1
+131882477,23761370,1
+52313883,23761370,2
+83842502,23761370,-1
+cloudyblue,23761370,3
+tianyuanty,23761370,5
+130427491,23761370,4
+38694734,23761370,5
+dongdayou,23761370,5
+56705845,23761370,4
+121554571,23761370,4
+y1991513,23761370,3
+51405192,23761370,1
+superallen,23761370,5
+2582296,23761370,3
+131880274,23761370,5
+50197826,23761370,3
+watersnakeeko,23761370,5
+123469142,23761370,4
+37417625,23761370,5
+119416612,23761370,4
+sishangduwu,23761370,5
+58091237,23761370,4
+1799807,23761370,4
+45661108,23761370,5
+50928026,23761370,-1
+Medusa_fc,23761370,3
+darchang,23761370,2
+40589857,23761370,3
+72311300,23761370,5
+3345648,23761370,5
+92345427,23761370,5
+131844202,23761370,5
+80324551,23761370,4
+60885961,23761370,3
+62639240,23761370,4
+44768876,23761370,5
+65560821,23761370,2
+snail_l,23761370,3
+4139151,23761370,3
+57880300,23761370,4
+THESONOFBITCH,23761370,3
+114462057,23761370,4
+ephraimdw,23761370,4
+82023559,23761370,3
+3453558,23761370,4
+53773877,23761370,5
+withsurui,23761370,4
+57115166,23761370,4
+61855461,23761370,5
+80011707,23761370,5
+insomniamaker,23761370,-1
+102446549,23761370,5
+57953785,23761370,-1
+45383849,23761370,5
+madeleinejiang,23761370,5
+55414544,23761370,3
+131807022,23761370,5
+121895079,23761370,3
+78471663,23761370,4
+57931932,23761370,4
+3719668,23761370,5
+june_jane,23761370,4
+131597292,23761370,4
+62879196,23761370,5
+54326669,23761370,4
+y67y76,23761370,3
+vontall,23761370,4
+aidiao,23761370,4
+124014084,23761370,5
+aminitime,23761370,5
+65947697,23761370,4
+49321330,23761370,4
+49959307,23761370,3
+33544738,23761370,5
+1949693,23761370,-1
+lostgraduate,23761370,5
+57166570,23761370,5
+45803181,23761370,5
+dhlp,23761370,5
+69178821,23761370,3
+4237075,23761370,3
+52120008,23761370,4
+43788388,23761370,3
+3923035,23761370,5
+104171683,23761370,4
+83881122,23761370,4
+kubrick_dy,23761370,3
+95243004,23761370,4
+VAR_nowhere,23761370,1
+OMGZZ,23761370,5
+115499943,23761370,5
+84101689,23761370,5
+102653753,23761370,4
+vivifyvivi,23761370,1
+93825881,23761370,3
+cxlpanda,23761370,5
+102611391,23761370,5
+Levi-Vincent,23761370,4
+42046990,23761370,5
+48999552,23761370,3
+waldo0121,23761370,5
+30836444,23761370,5
+17280012,23761370,4
+58725875,23761370,4
+2563642,23761370,4
+2814849,23761370,4
+48955317,23761370,4
+40733477,23761370,4
+48313280,23761370,2
+7252394,23761370,5
+10862320,23761370,4
+53045068,23761370,3
+2666894,23761370,4
+69749186,23761370,2
+rabbitpu,23761370,4
+56936075,23761370,5
+61489996,23761370,4
+53307065,23761370,4
+131663027,23761370,4
+113234997,23761370,5
+76937893,23761370,4
+53377652,23761370,-1
+62552555,23761370,4
+54721365,23761370,1
+1096571,23761370,3
+69274709,23761370,3
+1070044,23761370,3
+daidongpei,23761370,5
+51304653,23761370,5
+T914344365,23761370,5
+45418355,23761370,5
+45418355,23761370,5
+54742898,23761370,5
+48794742,23761370,-1
+62293051,23761370,4
+88197662,23761370,3
+64228653,23761370,5
+77324004,23761370,3
+xiaoiou,23761370,5
+100039626,23761370,3
+97342015,23761370,4
+43194409,23761370,5
+37969517,23761370,5
+119831217,23761370,5
+guitarain,23761370,3
+melodyland,23761370,4
+63438574,23761370,2
+125880438,23761370,4
+131615477,23761370,4
+52199259,23761370,3
+lokolifestyle,23761370,3
+tianwenhexiaoy,23761370,5
+49576668,23761370,4
+101803011,23761370,5
+43233504,23761370,-1
+4058668,23761370,4
+norababy,23761370,3
+2462888,23761370,5
+83192703,23761370,3
+44030355,23761370,2
+68632515,23761370,4
+31335200,23761370,5
+wyfar,23761370,5
+63338415,23761370,3
+81414062,23761370,5
+zhuge86,23761370,4
+45351288,23761370,4
+18736329,23761370,5
+53796421,23761370,5
+52905536,23761370,5
+49147828,23761370,4
+49147828,23761370,4
+59336433,23761370,4
+Magicians,23761370,4
+iyouyou2011,23761370,5
+1977618,23761370,4
+54404001,23761370,5
+52925465,23761370,5
+XXcolorful930,23761370,5
+2469534,23761370,5
+53049553,23761370,5
+80923059,23761370,3
+4134812,23761370,4
+44584514,23761370,4
+27408013,23761370,5
+zhongxiaojun,23761370,5
+51505583,23761370,5
+122436890,23761370,5
+lastest,23761370,4
+ttanycall,23761370,5
+4598800,23761370,5
+angelichalo,23761370,3
+68023271,23761370,5
+131610219,23761370,5
+57591346,23761370,5
+40725251,23761370,3
+129799566,23761370,5
+131602471,23761370,4
+myqzy,23761370,3
+4044749,23761370,3
+64635860,23761370,5
+73194838,23761370,2
+1884591,23761370,5
+48667076,23761370,3
+119472433,23761370,3
+lovingmomo,23761370,5
+75855875,23761370,5
+127114017,23761370,4
+63277654,23761370,4
+iceak,23761370,-1
+Cynthiasama,23761370,3
+2229618,23761370,3
+47755926,23761370,3
+72365449,23761370,3
+lapand,23761370,3
+120566516,23761370,4
+3487458,23761370,4
+litesoar,23761370,3
+124741341,23761370,4
+67874142,23761370,5
+127299263,23761370,3
+32569158,23761370,3
+130988539,23761370,4
+90299967,23761370,4
+1423481,23761370,4
+liangzhuzaoshu,23761370,4
+53994448,23761370,4
+62228222,23761370,4
+90973230,23761370,5
+dontdee14,23761370,5
+v_vlll,23761370,3
+83739220,23761370,4
+82456210,23761370,3
+103454751,23761370,5
+90638184,23761370,3
+sikongzheyu,23761370,5
+61289986,23761370,5
+43777566,23761370,5
+fighting1669,23761370,4
+lanshitou135,23761370,4
+43930540,23761370,4
+Odera,23761370,5
+56431276,23761370,4
+50588044,23761370,5
+itstillvivi,23761370,4
+131205800,23761370,5
+43916563,23761370,5
+56552029,23761370,3
+huangyue1125,23761370,5
+26512977,23761370,4
+72368775,23761370,4
+life372,23761370,3
+125148047,23761370,4
+42604000,23761370,4
+103595381,23761370,5
+45415998,23761370,5
+shihaotianna,23761370,5
+46339922,23761370,4
+51955688,23761370,4
+33726772,23761370,5
+2975278,23761370,5
+twopages,23761370,5
+92302421,23761370,4
+75651763,23761370,4
+95261659,23761370,5
+17525380,23761370,4
+91521812,23761370,3
+4228484,23761370,4
+2364223,23761370,4
+46355021,23761370,5
+keisa,23761370,4
+127161571,23761370,3
+102666913,23761370,4
+QuentinQiu,23761370,5
+HAPPYFFF,23761370,4
+ReneeS,23761370,3
+wankerdaiz,23761370,4
+tweek,23761370,4
+jazzbon,23761370,5
+128991169,23761370,3
+121152580,23761370,5
+kissvsblue,23761370,5
+47551399,23761370,4
+kuma919,23761370,2
+51491569,23761370,4
+46936953,23761370,3
+69463567,23761370,3
+68634522,23761370,5
+EMOROAM,23761370,5
+70173493,23761370,4
+50179203,23761370,5
+4749312,23761370,5
+stonetiger5211,23761370,5
+daniel,23761370,4
+65491718,23761370,5
+raspberrynice,23761370,5
+37390884,23761370,4
+Lqm107,23761370,4
+64661608,23761370,5
+53833067,23761370,3
+2300914,23761370,-1
+35964817,23761370,5
+62784694,23761370,4
+cn37927,23761370,5
+2050679,23761370,5
+71861591,23761370,2
+48634684,23761370,3
+89919283,23761370,4
+59638708,23761370,4
+122604724,23761370,3
+diamondglimmer,23761370,5
+49141660,23761370,3
+foun,23761370,2
+wendyrain,23761370,4
+hiu,23761370,4
+58433027,23761370,-1
+63509644,23761370,3
+MyloveXxy,23761370,5
+131427089,23761370,5
+mayoke,23761370,4
+y0y0y00,23761370,5
+91851250,23761370,5
+97185474,23761370,4
+51549155,23761370,4
+54754387,23761370,5
+93411433,23761370,5
+26546341,23761370,5
+61834617,23761370,5
+gothic-castle,23761370,4
+yinggege,23761370,3
+47676983,23761370,3
+rakumm,23761370,3
+36260283,23761370,4
+129475990,23761370,3
+131148094,23761370,5
+hellohuman,23761370,5
+StanleyCheung,23761370,4
+127928705,23761370,4
+angelmyy,23761370,1
+80766328,23761370,4
+131216888,23761370,4
+131397039,23761370,4
+48997081,23761370,4
+netsurfe,23761370,4
+lijiefu007,23761370,3
+53744550,23761370,3
+giantchen,23761370,2
+53914537,23761370,2
+4722347,23761370,5
+71569163,23761370,4
+63950350,23761370,4
+71462646,23761370,5
+58088926,23761370,5
+84538241,23761370,5
+littlecathy,23761370,3
+95166626,23761370,4
+dong--dong,23761370,3
+zhongxin987,23761370,5
+rocwang,23761370,5
+99977887,23761370,2
+122066432,23761370,5
+queenie5728,23761370,4
+75199665,23761370,5
+1364576,23761370,5
+84343760,23761370,4
+riqu,23761370,3
+se2o3,23761370,4
+Anian_tuzi,23761370,3
+4038977,23761370,4
+114284723,23761370,3
+jhxxs,23761370,4
+130677816,23761370,1
+83017283,23761370,4
+57150118,23761370,4
+talltale,23761370,4
+88650755,23761370,3
+cloudlandlord,23761370,2
+3547963,23761370,4
+cafeshop,23761370,4
+51833613,23761370,4
+70011209,23761370,5
+45231027,23761370,4
+89784453,23761370,4
+58282966,23761370,4
+49273541,23761370,4
+78311238,23761370,3
+69211517,23761370,4
+40360510,23761370,5
+55631098,23761370,4
+61197777,23761370,5
+tomop,23761370,3
+43996429,23761370,4
+65969519,23761370,3
+43526618,23761370,4
+131333953,23761370,5
+53998675,23761370,4
+75426424,23761370,5
+119587434,23761370,4
+60724447,23761370,5
+wjn,23761370,3
+dribeno,23761370,4
+121666385,23761370,5
+50648101,23761370,5
+43783099,23761370,4
+49367100,23761370,5
+4066025,23761370,5
+fsdgl,23761370,3
+Fadai,23761370,5
+timeoceans,23761370,4
+65672051,23761370,1
+62124340,23761370,5
+85190529,23761370,4
+53168001,23761370,5
+46880896,23761370,5
+summer50,23761370,4
+121354261,23761370,3
+46301717,23761370,3
+3990311,23761370,4
+58036091,23761370,5
+lyxyz1234,23761370,4
+58205318,23761370,4
+73603686,23761370,3
+128616856,23761370,4
+4725146,23761370,4
+67231468,23761370,4
+45266385,23761370,5
+65320288,23761370,-1
+56103306,23761370,3
+sancosmos,23761370,2
+47944961,23761370,5
+22746190,23761370,4
+43096733,23761370,4
+89703895,23761370,3
+SHANGYIMOMO,23761370,4
+127115764,23761370,4
+54169795,23761370,2
+66230509,23761370,3
+54480059,23761370,4
+68436569,23761370,4
+74238143,23761370,-1
+74277295,23761370,2
+2800503,23761370,4
+saonian,23761370,4
+2798381,23761370,4
+50353681,23761370,3
+95154971,23761370,4
+zhangqiuchi,23761370,2
+shuijiao,23761370,4
+32995807,23761370,3
+75247365,23761370,5
+yehqianwen,23761370,1
+66633074,23761370,4
+52304650,23761370,5
+ariel2009,23761370,3
+60096390,23761370,2
+4934279,23761370,5
+73856461,23761370,4
+75325570,23761370,5
+princessring,23761370,4
+47822950,23761370,3
+36029307,23761370,5
+67238808,23761370,4
+3752454,23761370,3
+1464025,23761370,4
+36544535,23761370,4
+59380375,23761370,3
+sinkpad,23761370,4
+49937057,23761370,5
+Baronera,23761370,3
+shinysky,23761370,5
+smallsugar,23761370,5
+55463146,23761370,4
+61783140,23761370,4
+rainy54547,23761370,5
+43359124,23761370,3
+95442218,23761370,4
+2511370,23761370,5
+88266093,23761370,1
+61223246,23761370,5
+77552632,23761370,3
+renshaoqun,23761370,5
+linchuzhuang,23761370,3
+goldendali,23761370,5
+130370822,23761370,5
+48078859,23761370,5
+52484368,23761370,4
+mrjiangzhe,23761370,3
+kouok,23761370,4
+58948104,23761370,3
+neochao,23761370,5
+56162477,23761370,3
+ninidistory,23761370,4
+laycher,23761370,5
+1452416,23761370,5
+41946814,23761370,5
+51938291,23761370,4
+2205975,23761370,4
+angus0107,23761370,4
+1766764,23761370,3
+songrui,23761370,5
+62511729,23761370,5
+leaffly,23761370,3
+129572622,23761370,4
+3703647,23761370,4
+60159493,23761370,4
+wanglinlin,23761370,5
+61497577,23761370,3
+songjinglee,23761370,5
+chinimei,23761370,5
+14840393,23761370,3
+21990858,23761370,5
+3750339,23761370,2
+51302979,23761370,5
+frankyym,23761370,4
+snowcome,23761370,3
+48641750,23761370,5
+machang_119,23761370,4
+59138637,23761370,5
+47308476,23761370,5
+76467352,23761370,5
+36295870,23761370,4
+61235171,23761370,3
+49125983,23761370,3
+48860598,23761370,5
+48591645,23761370,5
+1493686,23761370,3
+67326475,23761370,5
+45008619,23761370,5
+59104810,23761370,3
+128181161,23761370,5
+70043510,23761370,5
+70043510,23761370,5
+boredblooming,23761370,3
+64821035,23761370,5
+twooneseven,23761370,5
+43602945,23761370,4
+zipaiwang,23761370,4
+42626995,23761370,4
+50698115,23761370,5
+52750268,23761370,5
+2260384,23761370,4
+tijuana,23761370,2
+2062909,23761370,4
+130957788,23761370,5
+52732438,23761370,4
+3330219,23761370,5
+hetairan,23761370,4
+lovewaiter,23761370,5
+2869651,23761370,-1
+40226840,23761370,4
+vanon,23761370,3
+80559391,23761370,5
+38477082,23761370,5
+97880501,23761370,5
+72692708,23761370,2
+4677348,23761370,5
+47813563,23761370,4
+52004251,23761370,4
+foxswily,23761370,4
+65454227,23761370,5
+wang95,23761370,5
+flykyle,23761370,4
+41083928,23761370,4
+94276610,23761370,3
+49782852,23761370,4
+121378964,23761370,5
+peytonc,23761370,5
+38784985,23761370,5
+sanchia,23761370,4
+sleeep,23761370,4
+Phlypig,23761370,4
+DiMonkey,23761370,5
+129171726,23761370,4
+4577694,23761370,4
+4409440,23761370,4
+30791290,23761370,5
+69858046,23761370,4
+45385281,23761370,4
+frosteeeee,23761370,4
+45792584,23761370,4
+131117180,23761370,4
+85360851,23761370,3
+12289929,23761370,4
+130846662,23761370,5
+29526345,23761370,4
+103271136,23761370,5
+wpl5978,23761370,5
+116567998,23761370,5
+Hypnus2007,23761370,5
+43414822,23761370,4
+sstbag,23761370,5
+sstbag,23761370,5
+38461766,23761370,4
+crazygrave,23761370,4
+62732837,23761370,4
+3872133,23761370,3
+47556778,23761370,4
+zuotianyou,23761370,4
+45231724,23761370,5
+54041222,23761370,3
+73936611,23761370,5
+3366974,23761370,3
+83146895,23761370,5
+November1990,23761370,2
+85811535,23761370,3
+52598445,23761370,5
+82391492,23761370,4
+AliceTang27,23761370,3
+128416506,23761370,3
+2900760,23761370,4
+55850316,23761370,2
+61483050,23761370,4
+48622975,23761370,5
+84970608,23761370,4
+45158897,23761370,5
+67654909,23761370,5
+Sandal,23761370,2
+lianyiaihong,23761370,5
+43556495,23761370,4
+9352143,23761370,3
+59684689,23761370,4
+35234764,23761370,1
+50607886,23761370,5
+48615515,23761370,4
+58539257,23761370,3
+81161875,23761370,4
+130944160,23761370,3
+94728536,23761370,5
+51378582,23761370,1
+15986782,23761370,5
+69844852,23761370,5
+AhLang,23761370,2
+45059307,23761370,4
+14839506,23761370,-1
+64817099,23761370,4
+119995299,23761370,5
+57998533,23761370,5
+52173503,23761370,4
+91270444,23761370,2
+57097536,23761370,3
+87598516,23761370,4
+56921766,23761370,5
+samuelv,23761370,5
+47492303,23761370,5
+dovely1sh,23761370,5
+4625344,23761370,4
+53661945,23761370,3
+45784585,23761370,3
+121539453,23761370,5
+joyousjoy,23761370,-1
+55323573,23761370,4
+83141101,23761370,5
+68262611,23761370,5
+71624798,23761370,5
+31840730,23761370,4
+107581698,23761370,4
+fatcatfatact,23761370,4
+130937635,23761370,4
+127426227,23761370,3
+64741757,23761370,5
+woshishenxian,23761370,3
+OldYuan,23761370,3
+FreeFan1126,23761370,5
+130998619,23761370,4
+130558480,23761370,5
+2831575,23761370,4
+44602932,23761370,3
+Calin,23761370,3
+130994214,23761370,5
+66403603,23761370,4
+justleeee,23761370,4
+3703464,23761370,4
+69183035,23761370,5
+69857353,23761370,5
+lorenmt,23761370,3
+2943288,23761370,3
+65669464,23761370,5
+81588706,23761370,5
+xiaosongstory,23761370,5
+57150385,23761370,5
+gongzitian,23761370,4
+130581450,23761370,4
+126500017,23761370,4
+120334590,23761370,4
+wwwhilary,23761370,3
+auto-wait,23761370,4
+jiakaishow,23761370,4
+71333688,23761370,5
+April95,23761370,3
+3687958,23761370,5
+129798303,23761370,4
+130749837,23761370,4
+130875640,23761370,3
+130954002,23761370,5
+68698952,23761370,4
+54983933,23761370,4
+misswatermelon,23761370,3
+82346605,23761370,5
+62751729,23761370,5
+wxsw,23761370,5
+48382011,23761370,5
+69021864,23761370,5
+3408473,23761370,2
+32022966,23761370,3
+44263640,23761370,4
+89880536,23761370,4
+severson,23761370,-1
+80589673,23761370,5
+4714516,23761370,3
+115718496,23761370,5
+Evesun,23761370,5
+Evesun,23761370,5
+51295648,23761370,4
+67648782,23761370,4
+91420048,23761370,4
+akert,23761370,5
+125087126,23761370,5
+91958420,23761370,5
+hamixiong0926,23761370,4
+Adnachiel,23761370,5
+81178170,23761370,4
+41878883,23761370,4
+52243303,23761370,5
+77356251,23761370,4
+shirley317,23761370,4
+hear_linda,23761370,-1
+76427504,23761370,5
+Rittle,23761370,3
+113997112,23761370,4
+59367926,23761370,2
+57443212,23761370,5
+49004115,23761370,4
+69349657,23761370,-1
+41732863,23761370,4
+47814118,23761370,5
+48083771,23761370,5
+57831727,23761370,5
+55656004,23761370,4
+peter.dai,23761370,5
+89667488,23761370,5
+seaskky,23761370,5
+130748709,23761370,5
+NLwolf,23761370,4
+zzlcslg,23761370,-1
+85635101,23761370,5
+79193917,23761370,-1
+zoezz,23761370,4
+nightink,23761370,3
+ayumi,23761370,3
+130856040,23761370,5
+130610060,23761370,3
+45425062,23761370,5
+129883967,23761370,-1
+Alicescat,23761370,2
+116416248,23761370,3
+58290702,23761370,4
+Vivid-try,23761370,3
+NicoleAkiko,23761370,3
+130608231,23761370,5
+128255313,23761370,4
+99870614,23761370,2
+84043459,23761370,4
+50890852,23761370,5
+givindream,23761370,5
+70323086,23761370,4
+2790567,23761370,4
+130609359,23761370,-1
+49634368,23761370,4
+yolanda9421,23761370,4
+121664269,23761370,4
+2385262,23761370,4
+2385262,23761370,4
+58927688,23761370,3
+64943136,23761370,4
+34321151,23761370,5
+96619761,23761370,5
+130773666,23761370,4
+73353707,23761370,3
+49879461,23761370,5
+130787417,23761370,4
+31711681,23761370,5
+tuihuo,23761370,5
+130787806,23761370,3
+61866321,23761370,4
+130190354,23761370,4
+kimiyooo,23761370,-1
+12003068,23761370,4
+70926029,23761370,5
+43213326,23761370,4
+91358615,23761370,5
+46555832,23761370,5
+lollipopthen,23761370,4
+97911186,23761370,5
+130770428,23761370,5
+3934477,23761370,5
+vinKate,23761370,3
+129613762,23761370,4
+40848168,23761370,4
+129269489,23761370,5
+78304906,23761370,4
+maydayharuhi,23761370,3
+xianran,23761370,4
+60119202,23761370,2
+4286666,23761370,4
+35536210,23761370,3
+122340180,23761370,4
+58805947,23761370,5
+3362566,23761370,5
+gagging,23761370,3
+124384968,23761370,5
+92589062,23761370,5
+your_j,23761370,3
+yzkk821,23761370,4
+57717411,23761370,5
+44491264,23761370,5
+41742715,23761370,5
+phenix_cxn,23761370,5
+112133874,23761370,3
+78404771,23761370,4
+121734611,23761370,5
+53783506,23761370,5
+37600684,23761370,4
+115601839,23761370,4
+haoaining,23761370,3
+StopKidding,23761370,4
+130734074,23761370,5
+115699194,23761370,5
+12039192,23761370,3
+3747717,23761370,3
+Scarecrow42,23761370,3
+122385818,23761370,5
+50931526,23761370,5
+64090284,23761370,5
+80372330,23761370,5
+yellowhh27,23761370,5
+53134670,23761370,5
+71779079,23761370,3
+Zsuyto_tututree,23761370,5
+45299241,23761370,5
+desmodus,23761370,5
+iCyBLeu,23761370,4
+83782620,23761370,5
+49713178,23761370,5
+32639159,23761370,4
+39255646,23761370,4
+130531885,23761370,4
+130714510,23761370,4
+49587951,23761370,4
+2842937,23761370,3
+Artillerys,23761370,3
+tomatooo,23761370,-1
+smile0826,23761370,3
+lyxonman,23761370,4
+2339752,23761370,3
+northseven,23761370,1
+miracle178,23761370,5
+wayman_lin,23761370,4
+benjaminsmith,23761370,5
+120793425,23761370,5
+clytzesmile,23761370,4
+43006240,23761370,5
+4485911,23761370,3
+32801142,23761370,4
+92673816,23761370,5
+91127139,23761370,3
+2883942,23761370,4
+3541298,23761370,4
+hope62442,23761370,-1
+56622513,23761370,4
+jj404,23761370,3
+tzhuang,23761370,2
+cxykelly,23761370,3
+48509984,23761370,4
+gracepeople,23761370,3
+100315427,23761370,4
+50233060,23761370,4
+58824296,23761370,4
+lefor,23761370,5
+79699046,23761370,5
+arthurch10,23761370,3
+52721879,23761370,3
+36138229,23761370,5
+14594315,23761370,4
+2156064,23761370,5
+120071269,23761370,5
+130119581,23761370,4
+52122749,23761370,-1
+cyx2957,23761370,5
+51605730,23761370,3
+sundevilyang,23761370,3
+lisadeworld,23761370,4
+66880855,23761370,4
+Fil-girl,23761370,5
+115220323,23761370,5
+yunjixiong,23761370,3
+121425550,23761370,5
+71729438,23761370,5
+maysredlive,23761370,5
+65723998,23761370,4
+114845268,23761370,4
+57629601,23761370,4
+80544842,23761370,5
+Tiotoy,23761370,4
+hugoshen,23761370,4
+122302820,23761370,4
+93666846,23761370,5
+72530151,23761370,2
+121793137,23761370,4
+53816003,23761370,5
+124061437,23761370,3
+122371956,23761370,4
+122371956,23761370,4
+yvett,23761370,5
+81742698,23761370,2
+32022842,23761370,3
+127704028,23761370,2
+lesoleil29,23761370,4
+antiquezz,23761370,3
+cqnling,23761370,5
+dana111111,23761370,4
+gloryofnt,23761370,-1
+115128390,23761370,5
+69197662,23761370,5
+diva.by,23761370,5
+121113544,23761370,-1
+48126534,23761370,4
+cheesecakehouse,23761370,5
+SoniaLu-douban,23761370,4
+79542238,23761370,5
+78913284,23761370,5
+Wujojo0325,23761370,4
+48876748,23761370,5
+39491647,23761370,3
+44858798,23761370,5
+49604858,23761370,3
+jaywooh,23761370,3
+xmy327,23761370,4
+121297560,23761370,5
+48246407,23761370,4
+66343251,23761370,3
+65104985,23761370,-1
+94353228,23761370,5
+langsyne0907,23761370,4
+56800653,23761370,4
+2602474,23761370,3
+121980389,23761370,4
+129586433,23761370,4
+53791114,23761370,4
+dasherry,23761370,5
+128086922,23761370,5
+129575965,23761370,5
+40116451,23761370,3
+119447313,23761370,5
+130539706,23761370,-1
+61073035,23761370,4
+130587924,23761370,5
+120445293,23761370,3
+52657272,23761370,5
+boeyshow,23761370,5
+4703013,23761370,5
+3689742,23761370,5
+halfpy,23761370,4
+zhanlusword,23761370,1
+annierainbow,23761370,3
+3192650,23761370,3
+68952917,23761370,5
+56223234,23761370,5
+62272008,23761370,5
+82029220,23761370,5
+29589420,23761370,5
+47780213,23761370,5
+47780213,23761370,5
+51416132,23761370,4
+75286463,23761370,4
+cyjcandychan,23761370,2
+127450235,23761370,3
+Popdai,23761370,5
+126804729,23761370,3
+61415856,23761370,4
+Ann.Lachapelle,23761370,5
+124529831,23761370,5
+49676844,23761370,5
+45808363,23761370,3
+30852407,23761370,3
+roy4321210,23761370,-1
+yexuanyulinxi,23761370,3
+80664333,23761370,4
+104103884,23761370,2
+57483459,23761370,-1
+48053814,23761370,3
+85271571,23761370,5
+ton9cuiyini,23761370,2
+127365822,23761370,5
+yymx1130,23761370,4
+52505892,23761370,-1
+dong_zi,23761370,3
+50328721,23761370,5
+bt4ever,23761370,3
+34936131,23761370,5
+lyh1014,23761370,4
+67752944,23761370,4
+jijitata,23761370,5
+lostlandist,23761370,4
+87155623,23761370,5
+48950860,23761370,3
+EdwardLear,23761370,3
+Nickhsu,23761370,5
+43936347,23761370,3
+3082551,23761370,3
+130504774,23761370,3
+1486195,23761370,-1
+88219909,23761370,2
+FSRMD,23761370,5
+ironpanda,23761370,5
+Batman0447,23761370,4
+47353615,23761370,4
+60649791,23761370,4
+70779185,23761370,5
+122276590,23761370,5
+Rick_Film,23761370,1
+peashooter,23761370,2
+99806468,23761370,4
+gulisitan,23761370,4
+smallpig2008,23761370,4
+58394009,23761370,5
+51766927,23761370,3
+42146456,23761370,4
+82085900,23761370,5
+aurawang95,23761370,5
+wangjin1016,23761370,5
+128614946,23761370,4
+51508263,23761370,5
+58338006,23761370,4
+73719753,23761370,4
+54230070,23761370,3
+61695974,23761370,2
+35724323,23761370,3
+115725912,23761370,4
+kinghaixin,23761370,5
+53935985,23761370,4
+lovenapp,23761370,5
+83346786,23761370,3
+78846471,23761370,4
+57084794,23761370,5
+Yuenyuan,23761370,3
+65376509,23761370,5
+89229247,23761370,4
+46170275,23761370,3
+samanpha,23761370,5
+guinie,23761370,3
+3074747,23761370,4
+61816824,23761370,5
+79891044,23761370,4
+56602222,23761370,4
+25460734,23761370,4
+3618040,23761370,5
+82169084,23761370,5
+53898129,23761370,5
+45748052,23761370,4
+lena0517,23761370,5
+90587640,23761370,5
+49811100,23761370,5
+128939034,23761370,-1
+65045632,23761370,5
+52076778,23761370,3
+miniqian0228,23761370,5
+47913094,23761370,4
+Mu_la,23761370,3
+MIssMao-,23761370,5
+Cynthiaaa,23761370,3
+84429844,23761370,4
+4486712,23761370,3
+2446421,23761370,2
+Cathybebrave,23761370,3
+128739482,23761370,4
+52688114,23761370,5
+IIGHTENYZING,23761370,4
+62692701,23761370,3
+pie0310,23761370,3
+53630241,23761370,5
+39518332,23761370,5
+liuGrey,23761370,3
+3814643,23761370,4
+120461858,23761370,5
+93900680,23761370,3
+46493353,23761370,4
+58044228,23761370,5
+57099597,23761370,4
+moxbear,23761370,4
+wwcg,23761370,5
+51255660,23761370,5
+xiaodou52,23761370,3
+65307685,23761370,5
+18628004,23761370,5
+star_tar1101,23761370,4
+61226324,23761370,5
+3661802,23761370,5
+smallcraft,23761370,5
+57001880,23761370,3
+129297576,23761370,4
+61775961,23761370,5
+44343896,23761370,4
+zz5555,23761370,3
+69295551,23761370,5
+130380286,23761370,5
+122193967,23761370,4
+nansizhuang,23761370,3
+xiaocaomeifay,23761370,5
+61354202,23761370,1
+zglzu,23761370,5
+47826669,23761370,4
+51271379,23761370,4
+63801162,23761370,5
+130344702,23761370,4
+87506677,23761370,5
+2990377,23761370,3
+41385833,23761370,4
+58801917,23761370,2
+23595729,23761370,4
+luoqingyou,23761370,3
+1796581,23761370,3
+lph12168,23761370,3
+3416439,23761370,4
+58504822,23761370,4
+54032574,23761370,4
+119544222,23761370,4
+kp81ndlf,23761370,3
+120989480,23761370,4
+1645946,23761370,5
+130119797,23761370,4
+iamkoptite,23761370,3
+12540459,23761370,-1
+zzzt29,23761370,3
+51102224,23761370,5
+90851276,23761370,1
+85345181,23761370,1
+6842341,23761370,5
+daniel_tu,23761370,5
+128122831,23761370,5
+67615408,23761370,5
+60903582,23761370,3
+44884786,23761370,5
+108836700,23761370,5
+1545634,23761370,3
+123889828,23761370,3
+48568251,23761370,5
+120390983,23761370,5
+41786402,23761370,5
+Spacejunk,23761370,2
+130225502,23761370,4
+128504601,23761370,5
+70954003,23761370,5
+59613869,23761370,5
+X_Tshirt,23761370,3
+68951602,23761370,5
+norlesamourai,23761370,-1
+88262446,23761370,4
+50352361,23761370,1
+girlsophia,23761370,5
+61114728,23761370,4
+sosad,23761370,3
+darlingpea,23761370,4
+60592470,23761370,3
+128470788,23761370,5
+64515609,23761370,4
+1961185,23761370,5
+black39,23761370,2
+47457564,23761370,5
+2839200,23761370,3
+92454572,23761370,4
+Deanlover,23761370,3
+qianlizi,23761370,5
+32716850,23761370,4
+2632722,23761370,4
+127295660,23761370,5
+yaocu,23761370,4
+17074035,23761370,4
+52378403,23761370,3
+33650270,23761370,4
+50990159,23761370,5
+122946337,23761370,4
+58324557,23761370,2
+66754854,23761370,5
+73798977,23761370,-1
+anqier1,23761370,3
+90944162,23761370,1
+59904576,23761370,4
+125655628,23761370,5
+35832788,23761370,3
+luhongchuan,23761370,4
+71840285,23761370,4
+48335787,23761370,4
+69085024,23761370,4
+48192795,23761370,5
+spgsw,23761370,4
+130276654,23761370,3
+130275817,23761370,5
+47876726,23761370,4
+130272759,23761370,3
+wg52722,23761370,3
+1027000,23761370,5
+90045506,23761370,5
+79640756,23761370,3
+119374507,23761370,3
+aciv,23761370,3
+34028726,23761370,3
+2085469,23761370,3
+64620957,23761370,5
+Onlyhl312,23761370,5
+56355450,23761370,3
+114185618,23761370,4
+69656600,23761370,4
+52697254,23761370,5
+fecily,23761370,5
+61937821,23761370,4
+bebikiki,23761370,4
+GAYHOUSE,23761370,3
+happygs,23761370,5
+haidonsun,23761370,4
+85298089,23761370,4
+60486798,23761370,5
+116380975,23761370,4
+mytimemory,23761370,4
+zzddbb,23761370,5
+49813578,23761370,3
+36686250,23761370,4
+47561470,23761370,4
+53353893,23761370,4
+46348139,23761370,3
+3175216,23761370,3
+weapin,23761370,3
+26438724,23761370,3
+tomchil,23761370,4
+48310690,23761370,4
+62314563,23761370,2
+36199638,23761370,4
+Liuchunna,23761370,5
+ghlee,23761370,5
+2051711,23761370,3
+lemonliman,23761370,5
+doris_1994,23761370,5
+61391010,23761370,5
+49091198,23761370,4
+totorawu,23761370,5
+31373997,23761370,5
+66371358,23761370,5
+57343717,23761370,4
+71065282,23761370,5
+eitherland,23761370,5
+3584350,23761370,3
+4431281,23761370,3
+75112059,23761370,5
+muziqingqing,23761370,4
+54396392,23761370,5
+vivie7,23761370,4
+75598962,23761370,4
+52758377,23761370,1
+39069960,23761370,5
+5535900,23761370,5
+96233628,23761370,3
+121739485,23761370,5
+45429961,23761370,5
+croyance1990,23761370,4
+71374005,23761370,5
+1148321,23761370,3
+2194001,23761370,3
+60808695,23761370,3
+3582706,23761370,4
+4340459,23761370,3
+119404798,23761370,4
+63368491,23761370,5
+104257497,23761370,5
+gyan.wh,23761370,4
+102239789,23761370,5
+63875980,23761370,5
+youngriver,23761370,3
+imissed,23761370,5
+Dev1antKoMi,23761370,4
+insomnia,23761370,5
+51862225,23761370,5
+4308388,23761370,5
+2912846,23761370,5
+92918886,23761370,-1
+beanrobbie,23761370,4
+77641783,23761370,3
+55596314,23761370,5
+53283173,23761370,4
+xrw,23761370,4
+1451542,23761370,4
+happyhour007,23761370,5
+115605628,23761370,5
+52418637,23761370,4
+55668403,23761370,4
+73293861,23761370,4
+53868725,23761370,-1
+65948183,23761370,5
+53086946,23761370,4
+52140378,23761370,3
+44821238,23761370,3
+harlanlee,23761370,4
+ImMrLiu,23761370,5
+52647570,23761370,5
+cuixin77,23761370,5
+41704887,23761370,5
+71658842,23761370,4
+58709526,23761370,1
+52898679,23761370,3
+123071160,23761370,3
+47941273,23761370,4
+48132079,23761370,4
+63648787,23761370,5
+100423615,23761370,4
+skyearthone,23761370,3
+70743140,23761370,5
+78318505,23761370,5
+istrings,23761370,5
+127917109,23761370,5
+102598019,23761370,5
+50307645,23761370,4
+zera,23761370,5
+darlingm,23761370,3
+130140684,23761370,4
+2016238,23761370,3
+77656352,23761370,3
+pogongzi,23761370,5
+130136455,23761370,5
+sanchor,23761370,3
+129689166,23761370,3
+46357205,23761370,4
+kaki812,23761370,2
+34587187,23761370,3
+littlepinkbang7,23761370,5
+57762260,23761370,5
+71183607,23761370,4
+50699782,23761370,5
+67523596,23761370,4
+qiubofilm,23761370,4
+109328802,23761370,-1
+3750983,23761370,5
+5851064,23761370,3
+missgemini,23761370,5
+129973215,23761370,5
+LUCKYLYB,23761370,5
+vivian819,23761370,5
+128719565,23761370,4
+4345264,23761370,4
+46538545,23761370,2
+3374486,23761370,5
+COKAINGZ,23761370,4
+40123726,23761370,5
+fero7,23761370,5
+fero7,23761370,5
+RenoTT,23761370,5
+54794779,23761370,5
+61405029,23761370,4
+52226268,23761370,3
+49411986,23761370,5
+54555339,23761370,2
+tola95,23761370,4
+sby37,23761370,5
+Manto,23761370,-1
+69570266,23761370,5
+115853836,23761370,4
+62044398,23761370,4
+alcudish,23761370,3
+62662822,23761370,2
+4439023,23761370,3
+situfang,23761370,4
+for_love,23761370,5
+64446939,23761370,5
+sadawd,23761370,5
+45473293,23761370,4
+81174599,23761370,5
+48560904,23761370,3
+128468373,23761370,-1
+121387575,23761370,3
+waterflowing,23761370,4
+wayephang,23761370,4
+liangovi,23761370,1
+76554051,23761370,5
+89384065,23761370,5
+81491962,23761370,3
+51214182,23761370,4
+1118044,23761370,5
+4589325,23761370,5
+130055833,23761370,5
+enjoyfreedom,23761370,-1
+62976955,23761370,3
+82767053,23761370,5
+60686030,23761370,5
+10040083,23761370,-1
+60458599,23761370,4
+yunknap,23761370,3
+archiechen,23761370,5
+30338513,23761370,4
+fangfang27,23761370,5
+veverlee,23761370,4
+46754344,23761370,3
+48214909,23761370,3
+60977504,23761370,4
+51881608,23761370,5
+126014541,23761370,4
+120099108,23761370,5
+Chiniac_Cubic,23761370,3
+73324370,23761370,5
+59163242,23761370,4
+1296304,23761370,4
+130029231,23761370,5
+130024477,23761370,2
+84853014,23761370,5
+56447434,23761370,4
+51084713,23761370,5
+46505995,23761370,5
+dancyhan,23761370,4
+tudounvjue,23761370,3
+58787934,23761370,5
+evich,23761370,2
+79131466,23761370,4
+42781557,23761370,3
+xiedan51335,23761370,4
+130013448,23761370,5
+bbzbilly,23761370,4
+46714159,23761370,4
+78763010,23761370,3
+100179635,23761370,5
+2580551,23761370,4
+38904635,23761370,4
+37523518,23761370,2
+42540023,23761370,4
+tennystime,23761370,4
+70488224,23761370,5
+70488224,23761370,5
+48715746,23761370,5
+98349514,23761370,4
+129652201,23761370,4
+eworms,23761370,4
+49170151,23761370,4
+NOT-D,23761370,3
+126932580,23761370,2
+76622166,23761370,4
+79168541,23761370,5
+4560780,23761370,1
+120069048,23761370,3
+43679939,23761370,3
+68821057,23761370,2
+freshyyblue,23761370,3
+ondin12,23761370,4
+64075825,23761370,5
+129967050,23761370,3
+teaof1949,23761370,5
+82165536,23761370,5
+82165536,23761370,5
+126401152,23761370,5
+66103478,23761370,5
+3428965,23761370,-1
+64876627,23761370,5
+129977566,23761370,4
+49646073,23761370,5
+63618729,23761370,4
+4818831,23761370,3
+81510691,23761370,5
+kevin_diab,23761370,4
+uikeyzl,23761370,4
+96410540,23761370,5
+116054561,23761370,5
+57025081,23761370,2
+3772330,23761370,3
+44298291,23761370,5
+77619808,23761370,5
+129362218,23761370,5
+72747683,23761370,3
+114855757,23761370,4
+erosbaby,23761370,5
+129956212,23761370,4
+81831971,23761370,5
+teenwolf,23761370,5
+83731266,23761370,4
+y328675858,23761370,3
+83345571,23761370,5
+59136721,23761370,-1
+vincentjones,23761370,3
+2068462,23761370,2
+63068430,23761370,5
+14594914,23761370,-1
+52653708,23761370,5
+47319867,23761370,5
+sygzs,23761370,5
+4730490,23761370,3
+1883840,23761370,5
+63781183,23761370,3
+57609788,23761370,-1
+abuwangzi,23761370,4
+flw890301,23761370,-1
+2424966,23761370,4
+16250243,23761370,4
+38300211,23761370,4
+76905653,23761370,4
+129925624,23761370,4
+78634490,23761370,3
+qiQ,23761370,4
+liumxpeng,23761370,4
+Plus10Percent,23761370,3
+Icxlo,23761370,3
+caroline_lls,23761370,4
+44901258,23761370,5
+89341129,23761370,5
+nick3,23761370,4
+124236435,23761370,4
+zudygg,23761370,2
+79511947,23761370,3
+70728758,23761370,5
+xiao_hui,23761370,4
+80134372,23761370,4
+49220314,23761370,4
+4758300,23761370,5
+bei1004,23761370,3
+tlyanfang,23761370,2
+36215089,23761370,3
+127042716,23761370,4
+115697810,23761370,5
+48672550,23761370,5
+34838664,23761370,5
+9549001,23761370,4
+61414433,23761370,4
+75852429,23761370,3
+78810397,23761370,5
+80786877,23761370,3
+68005444,23761370,5
+lyrdb,23761370,4
+106329980,23761370,3
+zz_lucy,23761370,5
+129853005,23761370,5
+33326474,23761370,5
+yuusuke_riku,23761370,5
+listenmumu,23761370,4
+zzyjane,23761370,-1
+Xjushi,23761370,4
+just0,23761370,5
+49288406,23761370,3
+42637517,23761370,4
+55333647,23761370,4
+amelie_Y,23761370,3
+3811273,23761370,3
+78399714,23761370,4
+zeex,23761370,4
+lili_ice,23761370,3
+50808146,23761370,-1
+53340916,23761370,4
+99251376,23761370,5
+103298508,23761370,5
+73960603,23761370,5
+sebastiaan,23761370,3
+6591920,23761370,3
+70801856,23761370,4
+68288048,23761370,3
+bzfz,23761370,4
+counting,23761370,3
+56362540,23761370,5
+sunhaoxiang,23761370,5
+127251975,23761370,5
+119985851,23761370,4
+73653461,23761370,5
+124347540,23761370,4
+81403645,23761370,4
+missair,23761370,3
+M.Nor.C,23761370,4
+kingchuang1028,23761370,3
+35645925,23761370,5
+jslslouis,23761370,4
+41212756,23761370,3
+129118169,23761370,3
+64142096,23761370,1
+55831547,23761370,5
+66938564,23761370,4
+53632021,23761370,4
+69265405,23761370,4
+52155546,23761370,5
+44775342,23761370,5
+71432525,23761370,4
+87599334,23761370,5
+miaoxiao123,23761370,5
+53255748,23761370,5
+69441215,23761370,-1
+81639579,23761370,4
+mikesun,23761370,3
+xiaopin19,23761370,4
+1434651,23761370,5
+2535359,23761370,3
+4551579,23761370,4
+whb-119,23761370,3
+129124175,23761370,4
+38611027,23761370,3
+43914505,23761370,4
+69142574,23761370,4
+TFay,23761370,5
+fucktbag,23761370,4
+129719594,23761370,5
+92608290,23761370,5
+68724407,23761370,5
+ning77,23761370,5
+48821774,23761370,5
+68647796,23761370,4
+2298998,23761370,3
+53904124,23761370,3
+57459962,23761370,3
+114841876,23761370,2
+Bryan_westtown,23761370,3
+91450287,23761370,5
+freeilove,23761370,4
+roundtuan,23761370,4
+53048690,23761370,3
+michaelkingdom,23761370,4
+3648258,23761370,4
+jolyne,23761370,4
+73724190,23761370,3
+52489810,23761370,4
+3438507,23761370,4
+60968365,23761370,5
+61184292,23761370,2
+128551970,23761370,5
+60772232,23761370,2
+xingbulai1999,23761370,4
+45417298,23761370,5
+64978409,23761370,5
+kasha,23761370,4
+110165674,23761370,4
+mymadworld,23761370,4
+89525445,23761370,3
+59879730,23761370,5
+52895580,23761370,5
+31978586,23761370,5
+52598525,23761370,5
+53458096,23761370,4
+63840526,23761370,5
+3456645,23761370,3
+3005627,23761370,3
+64902546,23761370,1
+50405560,23761370,3
+53534566,23761370,4
+3638314,23761370,5
+verasing,23761370,3
+44021425,23761370,4
+77439567,23761370,3
+129444596,23761370,5
+howlformousai,23761370,3
+29074419,23761370,1
+3006385,23761370,5
+44350691,23761370,4
+azthwh,23761370,5
+125275470,23761370,4
+129563214,23761370,-1
+31479000,23761370,3
+tina220284,23761370,5
+94266589,23761370,4
+56438841,23761370,5
+63594155,23761370,2
+xever,23761370,5
+TiAmoGuaibaobao,23761370,5
+1634482,23761370,4
+48888854,23761370,3
+101513427,23761370,4
+102122606,23761370,5
+61561470,23761370,5
+Rachel.L,23761370,4
+lolo-z,23761370,4
+6821191,23761370,5
+127950481,23761370,4
+19266682,23761370,5
+93866634,23761370,3
+37420534,23761370,4
+57848317,23761370,5
+83183843,23761370,4
+sulian6415,23761370,4
+zhai310,23761370,5
+57716551,23761370,3
+azureINBLUR,23761370,3
+pamelayang,23761370,4
+51221372,23761370,5
+shuiashui,23761370,4
+vivi-felicia,23761370,3
+hewuyou,23761370,2
+dandanyunyan,23761370,4
+129582003,23761370,3
+74511203,23761370,5
+57750976,23761370,4
+35485850,23761370,4
+125154690,23761370,5
+lala..,23761370,5
+1553963,23761370,1
+120787586,23761370,4
+57058870,23761370,4
+bleuet,23761370,4
+86450815,23761370,4
+74258577,23761370,5
+wodeqiuqiu,23761370,4
+14791938,23761370,4
+vincent.77,23761370,4
+46827214,23761370,5
+73849647,23761370,5
+70488973,23761370,3
+1793879,23761370,4
+MrQueen,23761370,4
+90548476,23761370,3
+61722322,23761370,4
+57157420,23761370,4
+play0829,23761370,4
+128541386,23761370,5
+4642464,23761370,5
+126928019,23761370,5
+love4everu,23761370,5
+76863989,23761370,5
+51965075,23761370,3
+67680906,23761370,5
+34975211,23761370,3
+50382831,23761370,3
+74680638,23761370,4
+4083751,23761370,3
+miemie-cpu,23761370,5
+122110316,23761370,3
+39542479,23761370,5
+54985911,23761370,4
+126248170,23761370,5
+48614440,23761370,4
+1600664,23761370,4
+61287224,23761370,5
+79104613,23761370,5
+66798898,23761370,4
+2913201,23761370,5
+hatecamara,23761370,-1
+arcmcgrady,23761370,5
+ponie325,23761370,5
+128233338,23761370,5
+3485469,23761370,3
+86989591,23761370,3
+mekey,23761370,5
+63570492,23761370,5
+mcobeli,23761370,5
+124142229,23761370,5
+52584722,23761370,2
+62375548,23761370,5
+48427684,23761370,4
+109142318,23761370,3
+leiweiyu,23761370,4
+27432217,23761370,4
+69692149,23761370,2
+129369858,23761370,5
+119951362,23761370,3
+46388568,23761370,5
+53951715,23761370,4
+43256737,23761370,5
+70543620,23761370,5
+4152690,23761370,-1
+87770059,23761370,4
+caosen,23761370,3
+69614184,23761370,4
+129448195,23761370,4
+kiteshady,23761370,5
+Pandafish77,23761370,5
+hedyxiaohu,23761370,4
+88912564,23761370,3
+jumpinglove,23761370,5
+79090463,23761370,5
+1385455,23761370,3
+stephanie33,23761370,5
+51077620,23761370,4
+58921414,23761370,5
+129344481,23761370,5
+Da_X,23761370,5
+Octing,23761370,5
+exdream,23761370,3
+62011098,23761370,5
+genppppp,23761370,4
+43558241,23761370,5
+59208146,23761370,4
+sjymike,23761370,4
+46598833,23761370,5
+mdec,23761370,-1
+17913616,23761370,3
+129397746,23761370,3
+Aypnia,23761370,5
+45510485,23761370,2
+56952438,23761370,5
+57584718,23761370,3
+rongmenkezhan,23761370,4
+62507198,23761370,4
+flyerk2,23761370,4
+70864615,23761370,1
+51909668,23761370,5
+81404706,23761370,4
+42114790,23761370,4
+63192405,23761370,5
+1897616,23761370,3
+129379900,23761370,3
+42171117,23761370,5
+50576516,23761370,5
+11476643,23761370,4
+88083851,23761370,5
+makc,23761370,4
+qingxi52vv,23761370,2
+46992157,23761370,5
+48699954,23761370,5
+sweettalk5205,23761370,4
+2625768,23761370,4
+longliving,23761370,4
+lswawabao,23761370,4
+36563636,23761370,3
+59429891,23761370,3
+NaRROW,23761370,4
+53135467,23761370,3
+nimenime,23761370,4
+96660784,23761370,5
+IAMDY,23761370,4
+88585728,23761370,5
+ajwang1031,23761370,3
+burnmeup,23761370,5
+129334482,23761370,5
+57813879,23761370,5
+deina,23761370,3
+58315379,23761370,5
+63107606,23761370,2
+boss1993,23761370,5
+28058521,23761370,5
+84524937,23761370,3
+48218453,23761370,5
+59563476,23761370,4
+lina017890,23761370,3
+127728111,23761370,5
+54388277,23761370,4
+playtoy,23761370,3
+4726672,23761370,5
+63280686,23761370,4
+2754902,23761370,5
+91356257,23761370,4
+37382236,23761370,4
+rabbitcai,23761370,4
+Nicole_Zheng,23761370,5
+81906110,23761370,1
+4669084,23761370,-1
+yuevis,23761370,3
+55785418,23761370,5
+wednesday.coffe,23761370,4
+48592137,23761370,4
+mijibaby,23761370,4
+115224113,23761370,5
+tanguy,23761370,4
+43376224,23761370,3
+cattyiyoungeoon,23761370,5
+2643107,23761370,5
+sdml93,23761370,4
+70471092,23761370,4
+51248598,23761370,2
+51248598,23761370,2
+74773211,23761370,5
+61513949,23761370,3
+72242260,23761370,5
+77337658,23761370,4
+61081025,23761370,4
+blurjp,23761370,3
+Baker-Street,23761370,4
+72758516,23761370,4
+Lafa,23761370,3
+balconynemo,23761370,4
+58628233,23761370,4
+RicoooooO,23761370,4
+50256249,23761370,5
+97187010,23761370,5
+4459976,23761370,4
+129251932,23761370,5
+97313895,23761370,3
+26520263,23761370,4
+51157503,23761370,5
+62034201,23761370,-1
+Jimmy_z,23761370,4
+61035758,23761370,5
+69324801,23761370,5
+73142599,23761370,4
+57990089,23761370,4
+haramiti,23761370,-1
+eilyying,23761370,5
+ShadowClan,23761370,3
+joctor,23761370,3
+51126064,23761370,4
+94442097,23761370,4
+128315720,23761370,5
+honeypapa,23761370,5
+63054214,23761370,4
+41742686,23761370,5
+Rebecca_618,23761370,5
+aimning,23761370,4
+127844486,23761370,4
+40019918,23761370,4
+129220055,23761370,4
+38157316,23761370,4
+68872693,23761370,5
+120983042,23761370,4
+tikchao,23761370,4
+67790084,23761370,5
+byyun,23761370,5
+84238214,23761370,4
+2029655,23761370,4
+101464428,23761370,4
+81793518,23761370,5
+Iris1989,23761370,3
+46444197,23761370,3
+50919850,23761370,4
+2854749,23761370,-1
+lushan2866,23761370,4
+45266214,23761370,4
+kitkat_kk1125,23761370,5
+26612648,23761370,5
+36819020,23761370,3
+4217513,23761370,4
+54443500,23761370,-1
+53378505,23761370,4
+32791891,23761370,2
+52421707,23761370,5
+qiaoqiezi,23761370,5
+51606142,23761370,3
+59479604,23761370,5
+50624204,23761370,4
+9463369,23761370,5
+on1yys,23761370,5
+thissmes,23761370,4
+50443007,23761370,4
+jokker,23761370,4
+pengyn,23761370,4
+bravefish,23761370,3
+linyanyanyan,23761370,3
+cateyeqn,23761370,5
+IamV,23761370,5
+59403033,23761370,4
+99975380,23761370,4
+52428120,23761370,5
+129173591,23761370,5
+2279167,23761370,4
+lovetowns,23761370,5
+7798390,23761370,4
+firecome7,23761370,3
+53387217,23761370,5
+49575753,23761370,3
+kay_oo7,23761370,4
+70507408,23761370,4
+129165319,23761370,4
+101040376,23761370,5
+69655980,23761370,5
+65248445,23761370,5
+104008588,23761370,5
+48227947,23761370,5
+j_chch,23761370,4
+12530761,23761370,3
+yijisama,23761370,4
+alvivi,23761370,5
+49402699,23761370,4
+56684518,23761370,2
+92855943,23761370,4
+mmdrx,23761370,5
+46576835,23761370,5
+53106493,23761370,4
+Mo_Mo_Mo,23761370,4
+83144102,23761370,4
+3519752,23761370,3
+43298845,23761370,5
+54108734,23761370,4
+sihaozi99,23761370,4
+95937050,23761370,5
+4429031,23761370,3
+59477728,23761370,5
+sheilamisu,23761370,5
+97057958,23761370,5
+129137237,23761370,3
+129106127,23761370,4
+3367195,23761370,3
+30982627,23761370,4
+30922286,23761370,4
+101905187,23761370,4
+49034921,23761370,3
+macroideal,23761370,5
+4582130,23761370,5
+44765269,23761370,5
+1934267,23761370,4
+zhangliqi,23761370,4
+35823342,23761370,-1
+weihao,23761370,-1
+99078833,23761370,5
+setsail_z,23761370,3
+JimmyLien,23761370,5
+2793166,23761370,4
+79256798,23761370,5
+85280222,23761370,4
+55990119,23761370,5
+47232282,23761370,4
+47232282,23761370,4
+128522293,23761370,4
+44562127,23761370,5
+stardust1030,23761370,2
+PP-RAIN,23761370,4
+66970039,23761370,5
+19463611,23761370,3
+48613797,23761370,4
+zjj19901227,23761370,5
+InMisery,23761370,5
+46673283,23761370,5
+56669894,23761370,2
+52762735,23761370,4
+34805156,23761370,4
+bnucook,23761370,1
+44965595,23761370,5
+livi_,23761370,3
+73334494,23761370,3
+hikarulea,23761370,3
+122411510,23761370,4
+59076931,23761370,5
+52344254,23761370,3
+51963490,23761370,3
+124663525,23761370,5
+128409852,23761370,4
+piggy726,23761370,3
+76309125,23761370,3
+129082834,23761370,3
+wangxiaoerhehe,23761370,4
+75177651,23761370,4
+111795228,23761370,4
+32619684,23761370,3
+77019079,23761370,5
+92580665,23761370,4
+AAAAFENG,23761370,5
+4211678,23761370,5
+44377776,23761370,5
+paiii,23761370,2
+55480709,23761370,4
+29701649,23761370,3
+39611799,23761370,4
+gilianlee,23761370,4
+46213063,23761370,5
+128381248,23761370,4
+3133789,23761370,4
+donchen,23761370,3
+56142685,23761370,2
+14142152,23761370,3
+127688878,23761370,4
+eshenxian,23761370,-1
+67823980,23761370,5
+Andy9,23761370,4
+55447460,23761370,5
+somenothing,23761370,-1
+127517255,23761370,4
+66133922,23761370,3
+102466588,23761370,4
+48507399,23761370,4
+DPYiSuo,23761370,2
+lianmaomi,23761370,-1
+DPYiSuo,23761370,2
+lianmaomi,23761370,-1
+haiziyaya,23761370,4
+55348613,23761370,5
+45315021,23761370,3
+52541030,23761370,4
+72576153,23761370,4
+51534374,23761370,4
+69193047,23761370,4
+129032695,23761370,5
+4047603,23761370,5
+vinjun,23761370,3
+91325840,23761370,4
+62827026,23761370,4
+37262549,23761370,5
+walkingsinger,23761370,2
+102862890,23761370,5
+92177885,23761370,3
+zqnpz,23761370,3
+71983979,23761370,5
+51882704,23761370,3
+55509009,23761370,4
+iiibuwan,23761370,3
+78116847,23761370,3
+57943867,23761370,4
+1355685,23761370,3
+izzie,23761370,4
+57071643,23761370,5
+bilis,23761370,4
+52334443,23761370,3
+82040101,23761370,5
+120867848,23761370,5
+Feim,23761370,5
+2153477,23761370,3
+47854196,23761370,-1
+3887848,23761370,4
+ymj718,23761370,1
+4478909,23761370,4
+68363242,23761370,4
+68010649,23761370,4
+126874620,23761370,5
+37316854,23761370,1
+47779638,23761370,4
+42725072,23761370,4
+41471449,23761370,3
+85008792,23761370,4
+46506835,23761370,3
+56810105,23761370,5
+50971658,23761370,4
+51404354,23761370,3
+41258242,23761370,5
+50924290,23761370,4
+45238478,23761370,5
+future119,23761370,5
+66473759,23761370,4
+xiao_shuai,23761370,5
+lisa417,23761370,3
+jiangpan1991,23761370,4
+41547797,23761370,4
+nirvanaTaylor,23761370,5
+50014737,23761370,4
+76197558,23761370,5
+48120332,23761370,3
+2247401,23761370,3
+55439146,23761370,5
+128930943,23761370,5
+catyes,23761370,4
+57244185,23761370,-1
+77495232,23761370,4
+127491127,23761370,2
+55418867,23761370,3
+3113748,23761370,2
+128922169,23761370,5
+81206390,23761370,5
+49612513,23761370,4
+orangesuan,23761370,4
+4627678,23761370,4
+66770908,23761370,5
+81675256,23761370,2
+72878510,23761370,5
+128862289,23761370,5
+khxt,23761370,5
+55408154,23761370,4
+arlene4759,23761370,5
+124141059,23761370,5
+56814726,23761370,4
+vampire2046,23761370,4
+102191343,23761370,5
+47365967,23761370,5
+24874842,23761370,3
+79805335,23761370,2
+128867120,23761370,4
+laura2zero,23761370,5
+49935216,23761370,3
+qzwang,23761370,5
+xcj87390521,23761370,5
+balticsea,23761370,5
+xunuo828,23761370,3
+1574402,23761370,3
+4594496,23761370,5
+123270343,23761370,5
+lovelessmay,23761370,5
+125267371,23761370,5
+61302654,23761370,4
+123264996,23761370,4
+69472168,23761370,3
+61777956,23761370,4
+98109919,23761370,4
+tsumigi,23761370,4
+muzixiaoyu,23761370,4
+67918844,23761370,3
+3766371,23761370,3
+13976232,23761370,3
+50820231,23761370,4
+57270519,23761370,5
+75353142,23761370,4
+65383773,23761370,4
+85627210,23761370,4
+yifei1110,23761370,5
+2278880,23761370,-1
+shenggxhz,23761370,4
+SarahCheung,23761370,5
+56962113,23761370,4
+4254257,23761370,4
+6517402,23761370,4
+70246803,23761370,3
+66581998,23761370,4
+siro7,23761370,5
+48457419,23761370,4
+carolsy22,23761370,5
+alex.tseng,23761370,4
+48310124,23761370,4
+juliazhuli,23761370,3
+65301310,23761370,5
+talentzfy,23761370,3
+vexit,23761370,-1
+steven_lee,23761370,4
+53659864,23761370,4
+47253727,23761370,4
+55613939,23761370,5
+53975576,23761370,2
+57648568,23761370,3
+128044974,23761370,3
+75369986,23761370,5
+sueneko,23761370,4
+54150965,23761370,3
+Zenodotus,23761370,4
+xiaohsu,23761370,3
+CSO-Botasky,23761370,3
+cici1127,23761370,5
+bettercharlot,23761370,5
+100898218,23761370,5
+48502906,23761370,4
+30967620,23761370,2
+29453492,23761370,3
+24451966,23761370,3
+50679453,23761370,3
+31849844,23761370,4
+87653122,23761370,4
+xiexian,23761370,3
+53560863,23761370,5
+eugene117,23761370,5
+52790597,23761370,3
+77922789,23761370,4
+61734937,23761370,5
+2464015,23761370,5
+3601607,23761370,3
+97646321,23761370,5
+53888621,23761370,5
+HandsomeBroV,23761370,3
+88598461,23761370,4
+115784778,23761370,4
+70180267,23761370,5
+kenjer,23761370,5
+61229955,23761370,5
+90724665,23761370,3
+4759114,23761370,-1
+46411162,23761370,5
+83947812,23761370,3
+lianmumu,23761370,5
+76633178,23761370,3
+61748227,23761370,2
+3733528,23761370,2
+rockweer,23761370,-1
+70380343,23761370,5
+46728603,23761370,5
+54585048,23761370,4
+susanyezi,23761370,3
+101946500,23761370,5
+74947755,23761370,5
+blachkitty,23761370,-1
+82990300,23761370,3
+reneekan,23761370,5
+pinkhq,23761370,4
+beautysheng,23761370,4
+59617838,23761370,5
+84091392,23761370,3
+3485444,23761370,3
+58428248,23761370,5
+vittek,23761370,4
+87357593,23761370,3
+68459309,23761370,5
+Jenn__ifer,23761370,5
+Ryokutya,23761370,5
+74723978,23761370,3
+faylulu96,23761370,5
+sq845020914,23761370,5
+52606273,23761370,2
+52849543,23761370,3
+85054299,23761370,5
+63718614,23761370,5
+62253613,23761370,5
+106587393,23761370,5
+67865489,23761370,3
+74382315,23761370,5
+61030127,23761370,3
+122232090,23761370,3
+jarodzy,23761370,5
+62860016,23761370,4
+70088790,23761370,4
+57984448,23761370,4
+60118209,23761370,3
+126842883,23761370,3
+huxzhao,23761370,5
+122838885,23761370,4
+47105459,23761370,5
+79820861,23761370,4
+64882896,23761370,4
+31313042,23761370,4
+43666251,23761370,5
+Vichair,23761370,5
+60977609,23761370,5
+127563675,23761370,4
+zxmzoo,23761370,4
+77434968,23761370,5
+alfiestudio,23761370,3
+kongr,23761370,4
+3954147,23761370,5
+10449879,23761370,3
+4203571,23761370,5
+44303018,23761370,5
+suncrying,23761370,5
+sfm,23761370,3
+62874039,23761370,5
+59163778,23761370,5
+darkerthanwhite,23761370,4
+122312971,23761370,1
+47243761,23761370,4
+xuhongruc,23761370,4
+76108955,23761370,3
+sherryvi,23761370,5
+58937014,23761370,4
+90332226,23761370,5
+miss_zoay,23761370,4
+97610756,23761370,3
+kinkin77,23761370,-1
+68230715,23761370,4
+1924786,23761370,4
+1049600,23761370,3
+122010605,23761370,4
+57761905,23761370,4
+4725392,23761370,5
+lonelylucifer,23761370,5
+taizi717,23761370,4
+73707994,23761370,5
+67411402,23761370,5
+laiziming,23761370,1
+mwr23929,23761370,4
+4599254,23761370,4
+115787279,23761370,4
+66290511,23761370,4
+128583824,23761370,5
+pigzi,23761370,5
+66776645,23761370,5
+120097381,23761370,5
+69236111,23761370,2
+4465654,23761370,-1
+62662196,23761370,5
+zihunjun,23761370,5
+48317610,23761370,4
+121888181,23761370,4
+m0920,23761370,2
+52294863,23761370,3
+Alones,23761370,4
+48480563,23761370,4
+128641812,23761370,5
+zhuangjinxv,23761370,5
+weiwei124,23761370,5
+linyilin,23761370,4
+62534861,23761370,3
+89460663,23761370,4
+kingkongofkhan,23761370,3
+120900030,23761370,4
+zc...,23761370,4
+121482185,23761370,4
+40114379,23761370,3
+69320295,23761370,5
+45986784,23761370,5
+83858975,23761370,5
+100342523,23761370,4
+51635015,23761370,5
+hgn2007,23761370,5
+57921834,23761370,3
+128616679,23761370,3
+laoguai,23761370,3
+46866923,23761370,4
+84969413,23761370,-1
+70126804,23761370,-1
+128582254,23761370,3
+trubasa10,23761370,5
+75012456,23761370,-1
+3943144,23761370,3
+CheeZcn,23761370,2
+52995358,23761370,5
+3318463,23761370,4
+Deepoxygen,23761370,5
+121173641,23761370,4
+25444489,23761370,3
+nancy1989511,23761370,5
+Mflower,23761370,-1
+43645083,23761370,5
+122757661,23761370,5
+tuf_J,23761370,5
+65551720,23761370,4
+120729297,23761370,5
+62102159,23761370,5
+69054448,23761370,5
+126753343,23761370,4
+Ethan_,23761370,5
+39351443,23761370,4
+75309704,23761370,3
+nayagj,23761370,3
+62245008,23761370,4
+46914517,23761370,-1
+112920430,23761370,4
+54889228,23761370,1
+82217018,23761370,4
+68241818,23761370,4
+34216133,23761370,4
+idee227,23761370,4
+3851842,23761370,3
+57398318,23761370,3
+3119745,23761370,3
+NinaAobi,23761370,4
+1203148,23761370,5
+blindye,23761370,3
+xiekun,23761370,4
+49891735,23761370,3
+chen.qiu,23761370,5
+67148832,23761370,5
+52401020,23761370,3
+83019906,23761370,5
+53147090,23761370,4
+3592617,23761370,5
+58604332,23761370,5
+53467813,23761370,4
+101450082,23761370,3
+42223934,23761370,3
+83449630,23761370,5
+102542234,23761370,5
+113584703,23761370,4
+128593530,23761370,-1
+3705182,23761370,4
+lastinggg,23761370,5
+82310044,23761370,4
+53477722,23761370,5
+hqy616,23761370,4
+Asylee,23761370,5
+jolllllly,23761370,2
+58123683,23761370,-1
+hoxx,23761370,5
+49125980,23761370,5
+85105550,23761370,4
+64178612,23761370,5
+orangelu,23761370,5
+58482024,23761370,4
+cloudwwb,23761370,4
+55325388,23761370,4
+51237240,23761370,5
+fengeasy,23761370,4
+swwol32,23761370,4
+91312806,23761370,5
+1971105,23761370,5
+53343599,23761370,4
+45869247,23761370,3
+twowang,23761370,3
+gaizadizadi,23761370,4
+55354401,23761370,3
+3331579,23761370,5
+60878801,23761370,3
+mcgregor,23761370,4
+HY13616507306,23761370,3
+69168057,23761370,4
+60135057,23761370,-1
+128561118,23761370,3
+79551281,23761370,5
+VastOpen,23761370,3
+32603348,23761370,5
+51338490,23761370,4
+3601319,23761370,2
+krishino,23761370,4
+ling821,23761370,3
+dbsays,23761370,5
+ouyou1993,23761370,4
+wnhello,23761370,4
+38563443,23761370,3
+61362030,23761370,5
+2448391,23761370,4
+84284785,23761370,4
+71062611,23761370,4
+55926222,23761370,3
+faye-wong,23761370,4
+49798956,23761370,3
+wattan,23761370,5
+74867821,23761370,3
+skyline1227,23761370,2
+126183742,23761370,4
+66228668,23761370,2
+90197957,23761370,4
+q549767971,23761370,4
+54475841,23761370,3
+79867598,23761370,4
+csxxs,23761370,5
+81680542,23761370,5
+97196841,23761370,5
+54045271,23761370,5
+45903082,23761370,4
+2600083,23761370,4
+MOTHERKILLER,23761370,4
+58004310,23761370,5
+ttcucu,23761370,4
+66767418,23761370,4
+chentianle,23761370,4
+3795901,23761370,4
+Doris_Q,23761370,5
+59910375,23761370,3
+happysadop,23761370,4
+zuozichu,23761370,4
+91446742,23761370,3
+huyouyou,23761370,4
+53457477,23761370,4
+50739519,23761370,5
+4439510,23761370,4
+tianhualefei,23761370,5
+summerlinnine,23761370,5
+67577626,23761370,5
+formers,23761370,2
+Draco-w,23761370,5
+49580998,23761370,3
+celinedsam,23761370,5
+declee,23761370,5
+renzhewei,23761370,3
+104554472,23761370,4
+80285088,23761370,4
+39888720,23761370,5
+98782610,23761370,5
+nnight,23761370,4
+biketo,23761370,1
+4446167,23761370,3
+63456592,23761370,5
+34248725,23761370,-1
+2056863,23761370,5
+clovesai,23761370,4
+44622528,23761370,4
+102876006,23761370,4
+vikawang,23761370,3
+43750465,23761370,5
+yuantown,23761370,3
+Chneyu8504,23761370,4
+64495212,23761370,5
+3504257,23761370,4
+96471096,23761370,4
+3377107,23761370,4
+name,23761370,3
+53612795,23761370,4
+58894699,23761370,4
+ragtag,23761370,5
+122655141,23761370,5
+49770636,23761370,4
+125989280,23761370,-1
+65160662,23761370,4
+4295298,23761370,5
+49388908,23761370,2
+31665022,23761370,3
+39745338,23761370,5
+2030775,23761370,3
+50527578,23761370,-1
+gtxyxyz,23761370,5
+66990696,23761370,4
+90490469,23761370,4
+57128387,23761370,5
+53245934,23761370,2
+3085360,23761370,5
+shaozhenoo,23761370,3
+92931965,23761370,4
+heymonica,23761370,5
+47589972,23761370,5
+4568021,23761370,3
+68075321,23761370,3
+hualiaoo,23761370,3
+3014394,23761370,5
+34794492,23761370,1
+msw0123,23761370,1
+120694175,23761370,2
+64866923,23761370,4
+69968862,23761370,4
+yaochunpeng,23761370,2
+WanziGe,23761370,-1
+TheOutsiders,23761370,5
+nanasun,23761370,5
+57932306,23761370,3
+52500313,23761370,5
+120084291,23761370,5
+56469194,23761370,4
+114120755,23761370,4
+1835309,23761370,3
+dakusaido,23761370,3
+4652194,23761370,3
+44020426,23761370,3
+eokmiamia,23761370,3
+78721713,23761370,4
+benyuh,23761370,5
+68532789,23761370,4
+47856542,23761370,5
+42023693,23761370,5
+ventell,23761370,3
+50952518,23761370,3
+wyfsmd,23761370,2
+58022507,23761370,3
+lae,23761370,5
+43612401,23761370,3
+63636223,23761370,4
+54814514,23761370,4
+Devil.Q,23761370,3
+1069770,23761370,4
+changgu4290,23761370,4
+Yaya325,23761370,4
+51909421,23761370,2
+84998703,23761370,3
+SANKIVI,23761370,5
+mouzhi,23761370,4
+iappler,23761370,1
+zxyan,23761370,5
+36805986,23761370,4
+50957198,23761370,4
+66619833,23761370,3
+62387817,23761370,4
+53212036,23761370,5
+2063595,23761370,-1
+3420891,23761370,3
+85184303,23761370,4
+56967069,23761370,4
+musicer03,23761370,4
+100296647,23761370,4
+yuyusuper2,23761370,3
+3544847,23761370,4
+sanjingshu,23761370,4
+vivienne432,23761370,5
+16313678,23761370,4
+65036885,23761370,5
+hezhoutingyu,23761370,4
+62567179,23761370,3
+4390470,23761370,4
+43648772,23761370,4
+50164247,23761370,4
+Prettymask,23761370,4
+54614951,23761370,3
+38967263,23761370,-1
+41787565,23761370,2
+122691745,23761370,5
+60819240,23761370,-1
+A544892028,23761370,3
+71025729,23761370,5
+85452400,23761370,5
+paranoid_0,23761370,5
+68076968,23761370,4
+66932854,23761370,4
+75696994,23761370,4
+58043215,23761370,4
+shadowmo2,23761370,5
+82919098,23761370,1
+l-snow,23761370,5
+zxzzzs,23761370,5
+101818819,23761370,4
+58134028,23761370,5
+66031948,23761370,3
+71132041,23761370,5
+52866523,23761370,1
+no1vinca,23761370,4
+tankdriver,23761370,4
+36680326,23761370,3
+43577072,23761370,1
+69805658,23761370,5
+audreyc,23761370,4
+48970688,23761370,5
+53077082,23761370,3
+idida,23761370,4
+50566306,23761370,4
+1399115,23761370,3
+haze_7mz,23761370,4
+tingsaode,23761370,-1
+54562736,23761370,4
+jerrycan,23761370,4
+53726071,23761370,4
+83975590,23761370,4
+61328119,23761370,4
+66055788,23761370,5
+43939933,23761370,3
+zhanggongzi,23761370,4
+alazybone,23761370,5
+67852175,23761370,3
+27095047,23761370,3
+127216522,23761370,5
+55529089,23761370,4
+4087422,23761370,5
+68871897,23761370,3
+79904841,23761370,4
+tianjiqian,23761370,5
+50926664,23761370,4
+66345679,23761370,3
+2414691,23761370,4
+lucifer330,23761370,5
+83796210,23761370,5
+michaelmine,23761370,2
+128299048,23761370,4
+ukimuknow,23761370,4
+nknemo,23761370,-1
+114234923,23761370,4
+9255264,23761370,4
+youtian815,23761370,4
+53289993,23761370,4
+48206799,23761370,3
+78906906,23761370,3
+yuhui0420,23761370,5
+49212885,23761370,4
+deepwawaya,23761370,4
+58931553,23761370,4
+14547280,23761370,5
+1709511,23761370,4
+55470975,23761370,4
+72368370,23761370,3
+Lylaohyeah,23761370,5
+elynsu,23761370,3
+2386302,23761370,3
+lvterry,23761370,3
+48719901,23761370,4
+121236294,23761370,4
+miniasalani,23761370,1
+59081281,23761370,4
+ayoumi,23761370,5
+86091558,23761370,4
+55320320,23761370,4
+2891944,23761370,5
+53171772,23761370,3
+zoe124,23761370,4
+56668629,23761370,4
+126014934,23761370,4
+85245609,23761370,4
+93665278,23761370,3
+47280771,23761370,4
+Zicher,23761370,4
+sunjunhuang,23761370,4
+128167486,23761370,3
+43447764,23761370,4
+117238758,23761370,5
+rosemaryii,23761370,2
+48604788,23761370,4
+56776280,23761370,4
+lovelyle,23761370,4
+subuuti,23761370,3
+septembre,23761370,3
+45845721,23761370,4
+lianqi,23761370,5
+samleq,23761370,3
+64465647,23761370,4
+aki.sh,23761370,4
+schemer,23761370,4
+violin0714,23761370,5
+badaalle,23761370,3
+2137969,23761370,3
+undeadmonster,23761370,4
+1607209,23761370,4
+77075195,23761370,4
+66997852,23761370,3
+41492895,23761370,5
+cynthiazane,23761370,-1
+soldierlu,23761370,3
+zhizi99,23761370,4
+70248447,23761370,4
+61963666,23761370,4
+ProfThunder,23761370,5
+101603016,23761370,5
+musicgroup,23761370,4
+62798977,23761370,4
+cherrye,23761370,4
+lfz,23761370,4
+porridgelxf,23761370,4
+Devilseer,23761370,5
+44066080,23761370,5
+Einzelkampfer,23761370,3
+64274695,23761370,3
+62945649,23761370,4
+22818829,23761370,4
+liwenlong,23761370,4
+2818464,23761370,5
+36810834,23761370,4
+40237768,23761370,3
+snowempty,23761370,5
+49957530,23761370,4
+38979539,23761370,5
+4442400,23761370,5
+momo7170,23761370,3
+2519631,23761370,4
+44553944,23761370,4
+76155478,23761370,4
+2332826,23761370,5
+125373138,23761370,5
+80850838,23761370,4
+stillsanshan,23761370,4
+47991998,23761370,4
+55646304,23761370,4
+xiaofeng827,23761370,5
+owyoow,23761370,4
+ambertun,23761370,-1
+ericwyj,23761370,3
+4483773,23761370,4
+Seuysiro,23761370,3
+aprilyummy,23761370,5
+63620716,23761370,5
+Jovial_,23761370,5
+erbility,23761370,3
+3337405,23761370,2
+hexuotzo,23761370,4
+49612534,23761370,4
+littleteatea,23761370,5
+65642792,23761370,4
+3981138,23761370,4
+65084503,23761370,4
+lumingtao,23761370,3
+pennate,23761370,4
+pinkee,23761370,3
+32023089,23761370,5
+102293596,23761370,2
+deazrael,23761370,4
+2191893,23761370,3
+52281121,23761370,5
+117348494,23761370,3
+50255025,23761370,3
+58442010,23761370,5
+Xingda,23761370,4
+64039684,23761370,5
+lohn008,23761370,5
+101926210,23761370,5
+xingxin6,23761370,4
+zilongu,23761370,5
+119731025,23761370,5
+anlinweng,23761370,5
+59468829,23761370,3
+54976113,23761370,4
+39791533,23761370,2
+39791533,23761370,2
+46696173,23761370,4
+50155261,23761370,4
+61779592,23761370,4
+74130746,23761370,2
+wylieniu,23761370,5
+lichuanlangjie,23761370,5
+16343359,23761370,5
+54588630,23761370,2
+8184556,23761370,4
+50720023,23761370,4
+pyan,23761370,3
+63385457,23761370,5
+71416831,23761370,4
+90469600,23761370,-1
+13876220,23761370,4
+lazylauren,23761370,2
+kiki567,23761370,3
+52128316,23761370,4
+46479881,23761370,3
+46479881,23761370,3
+128153765,23761370,3
+58840542,23761370,4
+83195523,23761370,4
+doon7,23761370,5
+cc789,23761370,5
+kmsyx,23761370,5
+103970279,23761370,5
+128184667,23761370,5
+119850013,23761370,5
+50346918,23761370,4
+128184931,23761370,5
+128160386,23761370,4
+ivyfly,23761370,5
+yusufchang,23761370,5
+4288348,23761370,5
+44303270,23761370,4
+zchou,23761370,4
+s-andy,23761370,5
+128044465,23761370,5
+58331600,23761370,3
+45436853,23761370,5
+61953349,23761370,5
+dolulu,23761370,5
+120744291,23761370,5
+69794753,23761370,5
+60728287,23761370,3
+68747756,23761370,3
+4798832,23761370,5
+aralebox,23761370,4
+4232735,23761370,-1
+2558232,23761370,3
+tanyue,23761370,4
+82249821,23761370,5
+codetco,23761370,4
+Elinna0525,23761370,4
+128130996,23761370,3
+93469106,23761370,4
+50532923,23761370,4
+58250348,23761370,4
+88324576,23761370,5
+61019255,23761370,5
+2768499,23761370,4
+zhangbohun,23761370,4
+49151192,23761370,2
+80066409,23761370,4
+50647319,23761370,3
+63086840,23761370,5
+64635257,23761370,3
+33300586,23761370,3
+Et_Aiors,23761370,3
+2457455,23761370,4
+58658426,23761370,4
+justinliang,23761370,4
+47800725,23761370,2
+holuu,23761370,3
+nanlu665,23761370,4
+88101207,23761370,3
+65512615,23761370,5
+taxidriver1976,23761370,5
+brepus,23761370,4
+51224012,23761370,4
+pandachain,23761370,4
+51380722,23761370,3
+ellenjj,23761370,5
+44316539,23761370,4
+62604720,23761370,5
+34843395,23761370,4
+victor0503,23761370,4
+1414083,23761370,4
+102407375,23761370,4
+allenchen87,23761370,5
+2494468,23761370,4
+graphicdesigner,23761370,4
+120338818,23761370,2
+juwujian,23761370,3
+lulew0126,23761370,4
+sskllt,23761370,4
+57790852,23761370,3
+Coreasshole,23761370,1
+60157184,23761370,5
+sofreaking,23761370,5
+58335462,23761370,4
+35218785,23761370,5
+53547597,23761370,4
+80667435,23761370,4
+shanhao,23761370,5
+47305283,23761370,4
+52794854,23761370,4
+vivian0312-may,23761370,-1
+sunnybath,23761370,5
+50299714,23761370,4
+henrywhy,23761370,1
+51234375,23761370,4
+omg-_-,23761370,4
+128130563,23761370,5
+fishwyj,23761370,5
+61810219,23761370,4
+9990655,23761370,4
+1149126,23761370,5
+IDEAL_Jason,23761370,5
+orangec,23761370,4
+4233861,23761370,3
+34943389,23761370,3
+YangIvan,23761370,4
+51067589,23761370,4
+101568749,23761370,2
+soude,23761370,4
+mubin,23761370,3
+christinloveu,23761370,5
+59698187,23761370,4
+laoshububen,23761370,3
+buzhidaoaaa,23761370,-1
+53629328,23761370,2
+58993842,23761370,4
+phejohnwang,23761370,4
+102295413,23761370,4
+23896933,23761370,5
+58882897,23761370,2
+tinychen,23761370,4
+1951463,23761370,3
+nickycqf,23761370,4
+65490728,23761370,4
+yuelai15,23761370,-1
+50195035,23761370,5
+99459615,23761370,4
+o0c0o,23761370,4
+FennyFu,23761370,3
+29875571,23761370,4
+51955912,23761370,4
+74089048,23761370,5
+jackguo,23761370,4
+weilijie,23761370,4
+65367917,23761370,4
+124061329,23761370,5
+dcliuxu,23761370,5
+54286749,23761370,5
+wolverine_c,23761370,5
+46480304,23761370,3
+35102296,23761370,4
+81134195,23761370,4
+54373936,23761370,5
+41070205,23761370,5
+75532370,23761370,4
+2524056,23761370,5
+readyliu,23761370,4
+33739068,23761370,5
+46597206,23761370,2
+103971408,23761370,4
+2168659,23761370,3
+4534711,23761370,3
+3597500,23761370,3
+bunny-say,23761370,3
+56241501,23761370,4
+j1angvei,23761370,5
+xiangfo,23761370,4
+51429259,23761370,3
+graceoklove,23761370,5
+3023464,23761370,4
+83053215,23761370,5
+83053215,23761370,5
+57949283,23761370,3
+38265968,23761370,2
+47772398,23761370,5
+128102502,23761370,5
+3921459,23761370,5
+2632979,23761370,-1
+96517681,23761370,5
+45683425,23761370,5
+128094656,23761370,5
+fuckutopia,23761370,4
+13753332,23761370,3
+67398488,23761370,4
+65339931,23761370,5
+122427333,23761370,4
+22815716,23761370,5
+49283691,23761370,-1
+115547734,23761370,3
+45181987,23761370,5
+LeeDouzi,23761370,3
+50102507,23761370,4
+L_islander,23761370,3
+57043451,23761370,3
+10482207,23761370,-1
+57543045,23761370,4
+47041076,23761370,4
+1782474,23761370,4
+anlrj,23761370,5
+126058557,23761370,4
+21133666,23761370,3
+lin19960605,23761370,5
+Sherryprince,23761370,4
+emily7726,23761370,3
+120559160,23761370,5
+51057351,23761370,5
+60251823,23761370,5
+59924617,23761370,5
+lqr,23761370,4
+julyme,23761370,5
+jinjidexiong,23761370,4
+42295841,23761370,5
+hooklt,23761370,3
+Shnei,23761370,4
+huiyu,23761370,5
+Jaytaoo,23761370,4
+8916978,23761370,4
+62530102,23761370,4
+45904259,23761370,3
+flinhong,23761370,4
+50544397,23761370,3
+59638655,23761370,4
+48220394,23761370,3
+36601365,23761370,3
+monkwuwei,23761370,4
+49133001,23761370,5
+57609060,23761370,-1
+54403769,23761370,4
+3159688,23761370,4
+46567747,23761370,4
+88181495,23761370,5
+88181495,23761370,5
+50235608,23761370,4
+64131713,23761370,5
+119456550,23761370,4
+jing-junjie,23761370,5
+52746437,23761370,4
+48995689,23761370,2
+morio,23761370,4
+chenolivia,23761370,4
+oncemygrandpa,23761370,1
+51568619,23761370,2
+63543720,23761370,2
+123617593,23761370,4
+sheenaringo516,23761370,5
+13774743,23761370,4
+65157097,23761370,3
+74701610,23761370,3
+52318221,23761370,4
+63155491,23761370,3
+49643631,23761370,3
+49643631,23761370,3
+iRayc,23761370,3
+87636985,23761370,4
+56971084,23761370,4
+56240182,23761370,5
+34977176,23761370,4
+breezemx,23761370,-1
+54490331,23761370,5
+123042042,23761370,4
+89146290,23761370,5
+vegesong,23761370,3
+TAYA-Tanya,23761370,5
+56397458,23761370,5
+KissAlice,23761370,3
+hwy10,23761370,3
+62055619,23761370,4
+amigojr,23761370,5
+88863939,23761370,5
+56040613,23761370,4
+wuhuyin,23761370,4
+46352446,23761370,4
+55708892,23761370,4
+2817521,23761370,2
+59391449,23761370,4
+41545017,23761370,5
+1973642,23761370,2
+honeyyy,23761370,5
+2555357,23761370,3
+3867934,23761370,4
+cStar,23761370,4
+airusi,23761370,5
+11503015,23761370,4
+48112826,23761370,5
+4471010,23761370,5
+icecream308,23761370,4
+yangqinghe1101,23761370,4
+6394575,23761370,5
+butterfly10,23761370,3
+69134335,23761370,3
+127996669,23761370,5
+caold,23761370,5
+luo_island,23761370,5
+Greta207,23761370,3
+iceba,23761370,3
+cattie,23761370,4
+75328137,23761370,4
+33663407,23761370,3
+busy,23761370,-1
+deandai,23761370,5
+63651252,23761370,4
+46399976,23761370,4
+62369911,23761370,4
+81201807,23761370,5
+devildie4,23761370,3
+79745413,23761370,5
+66088896,23761370,5
+46163023,23761370,-1
+sunshinepig,23761370,2
+bluester,23761370,4
+52718701,23761370,4
+yingruo91,23761370,3
+36152086,23761370,5
+61622729,23761370,4
+8460343,23761370,4
+xiaomingw,23761370,4
+99736785,23761370,5
+milkysusu,23761370,3
+121609825,23761370,4
+aichendouban,23761370,2
+chengnanxuan,23761370,4
+71762013,23761370,5
+linningmeng,23761370,3
+bailuweishuang,23761370,4
+33363647,23761370,-1
+ets,23761370,5
+lovecatsandbear,23761370,4
+61514882,23761370,5
+44864127,23761370,4
+2658066,23761370,3
+52157663,23761370,5
+3239421,23761370,4
+fantianru,23761370,3
+76491056,23761370,3
+84020070,23761370,2
+52463415,23761370,3
+menglixueagll,23761370,5
+zexun,23761370,5
+timleee,23761370,3
+Sexcool,23761370,-1
+49866538,23761370,4
+Mrssin,23761370,5
+fotosong,23761370,5
+CHARLIE-,23761370,4
+34233498,23761370,5
+44595714,23761370,4
+122662265,23761370,5
+49430506,23761370,3
+cicipica,23761370,5
+cory1990,23761370,4
+88877033,23761370,5
+60126286,23761370,4
+57387221,23761370,3
+jianglalala,23761370,5
+47508082,23761370,4
+54085360,23761370,1
+65357988,23761370,5
+73570444,23761370,5
+65137092,23761370,4
+54378428,23761370,4
+61302881,23761370,4
+45820206,23761370,-1
+43085940,23761370,5
+3979432,23761370,5
+1762540,23761370,5
+AkiraTora,23761370,4
+123300727,23761370,5
+54644881,23761370,4
+45372167,23761370,5
+Mor4125,23761370,5
+84907604,23761370,4
+116044095,23761370,5
+3295210,23761370,4
+47182866,23761370,3
+Pigfloyd,23761370,3
+MR.Pain,23761370,4
+moraraho,23761370,5
+74188273,23761370,4
+4107737,23761370,5
+25736895,23761370,4
+ukawashou,23761370,3
+leonardo2,23761370,4
+bdch,23761370,3
+lmylty,23761370,3
+127781489,23761370,5
+1026974,23761370,4
+48559229,23761370,4
+skyaim,23761370,4
+59500634,23761370,4
+4629291,23761370,4
+3428627,23761370,2
+3428627,23761370,2
+48153292,23761370,3
+happyangelaq,23761370,5
+gujunhao50,23761370,5
+chenmai,23761370,4
+hilocus,23761370,4
+47722518,23761370,4
+65004384,23761370,5
+2060601,23761370,5
+49340336,23761370,5
+47601380,23761370,4
+127934069,23761370,4
+84714341,23761370,3
+43201019,23761370,4
+ksmyass,23761370,3
+lanpengyou,23761370,2
+49109505,23761370,4
+52582202,23761370,3
+79897130,23761370,4
+wowcecilia,23761370,2
+52618680,23761370,5
+53369904,23761370,5
+82805868,23761370,5
+81301720,23761370,4
+79169198,23761370,3
+26318604,23761370,4
+fanzling,23761370,4
+66018781,23761370,5
+furore,23761370,4
+46082327,23761370,4
+116718171,23761370,1
+59440967,23761370,3
+58071540,23761370,4
+hxp1989,23761370,3
+67125371,23761370,5
+manhooJohy,23761370,5
+64423254,23761370,5
+14135281,23761370,4
+34568741,23761370,4
+60546821,23761370,5
+59947248,23761370,3
+jokerli,23761370,5
+62121101,23761370,5
+58004418,23761370,4
+luoandqian,23761370,5
+1188503,23761370,3
+52228251,23761370,4
+zebra-33,23761370,3
+vinkott,23761370,4
+ViviaChen,23761370,4
+103228718,23761370,4
+62670827,23761370,4
+46333858,23761370,4
+91748756,23761370,4
+33367016,23761370,5
+58290785,23761370,2
+127912209,23761370,5
+57573920,23761370,3
+oakhui,23761370,5
+slimseven,23761370,1
+HappyTina,23761370,4
+YAMAHA_GO,23761370,3
+59348979,23761370,4
+95438826,23761370,4
+35563914,23761370,4
+64865993,23761370,5
+83186453,23761370,5
+tssil,23761370,5
+desa,23761370,5
+2404986,23761370,3
+36103812,23761370,5
+baiyang36172417,23761370,-1
+mynameisj,23761370,4
+nelson1014,23761370,4
+shilm,23761370,5
+63650448,23761370,4
+87741143,23761370,5
+1414261,23761370,4
+54495452,23761370,3
+118036743,23761370,5
+angalny,23761370,3
+65113075,23761370,5
+64382868,23761370,4
+54811800,23761370,5
+17654843,23761370,4
+58179712,23761370,2
+xxe,23761370,3
+49460058,23761370,-1
+hsupurr,23761370,1
+68192543,23761370,5
+hfguren,23761370,4
+28467614,23761370,4
+sabrinalian,23761370,3
+tianchuan,23761370,3
+46217012,23761370,4
+40371299,23761370,4
+2864670,23761370,3
+62089597,23761370,3
+goodmac,23761370,4
+guanmu,23761370,2
+51303010,23761370,5
+thegarbo,23761370,4
+88603301,23761370,4
+1532624,23761370,4
+Spherenix,23761370,5
+59925796,23761370,4
+69874247,23761370,-1
+66456284,23761370,5
+frankphoenix,23761370,4
+48987151,23761370,4
+50054232,23761370,5
+51160358,23761370,4
+61587775,23761370,3
+89156496,23761370,4
+67220324,23761370,4
+4623641,23761370,4
+74713232,23761370,4
+66489043,23761370,4
+62821858,23761370,5
+damos,23761370,4
+gracie1019,23761370,5
+62504788,23761370,4
+49232664,23761370,5
+Lynnli,23761370,3
+dujiachen,23761370,4
+2693944,23761370,5
+114358788,23761370,3
+2202819,23761370,5
+yansu198584,23761370,4
+Woxinhuashu,23761370,3
+3288195,23761370,4
+64139432,23761370,4
+2896376,23761370,3
+Fly_to_be,23761370,4
+zouhuzm,23761370,4
+1082879,23761370,5
+54871934,23761370,3
+imfar,23761370,4
+jipengshushu,23761370,3
+67687492,23761370,5
+51010843,23761370,5
+55563453,23761370,3
+58224055,23761370,4
+63343294,23761370,-1
+24791739,23761370,5
+cabrite,23761370,5
+102272768,23761370,4
+89436393,23761370,3
+1865228,23761370,3
+84177108,23761370,5
+wsashuiyin,23761370,3
+103328555,23761370,3
+91488797,23761370,4
+xs_212121,23761370,4
+shevjensen,23761370,4
+idoi,23761370,5
+79016211,23761370,5
+115695650,23761370,5
+59393765,23761370,2
+53635906,23761370,5
+59393765,23761370,2
+53635906,23761370,5
+9549498,23761370,5
+52008660,23761370,4
+55296496,23761370,4
+47650327,23761370,5
+stephaniecharli,23761370,4
+iloveuuuuu,23761370,5
+70227170,23761370,5
+buer22,23761370,5
+68121895,23761370,3
+muxu413,23761370,4
+36554662,23761370,4
+13310822,23761370,3
+58584284,23761370,4
+56914134,23761370,3
+127739103,23761370,5
+3663683,23761370,5
+97389604,23761370,4
+applesan,23761370,4
+4183957,23761370,2
+31102423,23761370,4
+91578620,23761370,2
+38484495,23761370,5
+alicetianbule,23761370,5
+86601635,23761370,4
+45786435,23761370,4
+13964762,23761370,3
+62895935,23761370,3
+51828666,23761370,4
+127778865,23761370,5
+zhegxha,23761370,5
+1457101,23761370,5
+willer16,23761370,4
+1304071,23761370,3
+45345873,23761370,3
+73398683,23761370,-1
+30184702,23761370,3
+57174367,23761370,5
+44052755,23761370,4
+107704699,23761370,4
+3766473,23761370,5
+64707906,23761370,5
+28852948,23761370,3
+70148038,23761370,5
+127841087,23761370,4
+annbabyyan,23761370,-1
+1326787,23761370,3
+57846774,23761370,4
+zxl321,23761370,4
+stena,23761370,3
+uhoiuikjhiu,23761370,3
+idiot.child,23761370,4
+rivering,23761370,4
+68708613,23761370,4
+cynthianewmoon,23761370,4
+minschant,23761370,4
+108684193,23761370,5
+69102491,23761370,3
+33960706,23761370,5
+46454402,23761370,3
+127772250,23761370,4
+handsomegay,23761370,4
+2283860,23761370,3
+2921942,23761370,4
+2369790,23761370,3
+67330713,23761370,3
+yujianlch,23761370,4
+83852836,23761370,4
+Yasmin_Tia,23761370,5
+3383245,23761370,1
+107835849,23761370,-1
+51830058,23761370,4
+60760225,23761370,3
+kiley,23761370,4
+48883998,23761370,5
+120661355,23761370,5
+61116917,23761370,4
+hwajinsol,23761370,5
+54034056,23761370,3
+47095353,23761370,5
+romainzhang,23761370,3
+82237299,23761370,-1
+kyo85,23761370,3
+52021826,23761370,5
+ccaarroll,23761370,5
+niabim,23761370,3
+kevinsy,23761370,4
+123543090,23761370,5
+ishenxiang,23761370,4
+127819398,23761370,5
+108636262,23761370,4
+81348694,23761370,5
+89981907,23761370,5
+michaelfun,23761370,4
+55338878,23761370,4
+feiyangboshi,23761370,3
+innnnnni,23761370,4
+63041082,23761370,5
+52530490,23761370,3
+63278789,23761370,4
+127813593,23761370,-1
+126786057,23761370,4
+1110575,23761370,3
+41636718,23761370,4
+83147001,23761370,3
+york_wu,23761370,2
+46479619,23761370,3
+84047449,23761370,3
+57748469,23761370,1
+3786687,23761370,4
+96895648,23761370,4
+82245378,23761370,4
+sharon.jin,23761370,5
+hepan1234,23761370,5
+caotory,23761370,3
+love.jay,23761370,4
+63177559,23761370,3
+bennyzeng14,23761370,4
+Leenur_gln,23761370,4
+Leenur_gln,23761370,4
+49288075,23761370,4
+zi1230,23761370,5
+1521152,23761370,-1
+127803892,23761370,5
+holyhteara,23761370,4
+50563925,23761370,4
+92260949,23761370,3
+97666446,23761370,5
+61012713,23761370,5
+49010352,23761370,5
+2265615,23761370,5
+48146318,23761370,5
+dingwenxing,23761370,5
+samsaran,23761370,4
+127805954,23761370,4
+KKPrincess,23761370,4
+Lennnnnox,23761370,5
+dannysetout,23761370,4
+dorothylee0406,23761370,4
+dorothylee0406,23761370,4
+58482034,23761370,5
+58942501,23761370,3
+126125294,23761370,4
+127804227,23761370,5
+127560384,23761370,5
+49734677,23761370,4
+60068451,23761370,5
+80914640,23761370,5
+53411711,23761370,5
+59310806,23761370,1
+filbetty,23761370,3
+52598698,23761370,5
+cat_rs,23761370,4
+33102791,23761370,5
+58499826,23761370,3
+127144230,23761370,5
+33632946,23761370,1
+prayerinc,23761370,5
+60126428,23761370,4
+76115316,23761370,5
+53376629,23761370,4
+46045638,23761370,5
+126510380,23761370,5
+45965937,23761370,5
+devil_JunN,23761370,4
+70033239,23761370,5
+58457584,23761370,5
+86234038,23761370,3
+36359811,23761370,4
+lingaigai,23761370,4
+49377780,23761370,-1
+lu...lu,23761370,4
+3160247,23761370,3
+120792651,23761370,4
+4391706,23761370,5
+littleGu,23761370,5
+49585348,23761370,4
+3317641,23761370,5
+16372786,23761370,5
+feizhuangzhuang,23761370,3
+54777810,23761370,5
+127458036,23761370,4
+1282175,23761370,3
+kenji0102,23761370,3
+22623086,23761370,4
+longfei39,23761370,2
+favezhihao,23761370,5
+121539553,23761370,5
+mountaindew,23761370,5
+kenzo11,23761370,4
+sinkingjack,23761370,4
+yaozi0426,23761370,3
+Angely_K,23761370,4
+wty22keith,23761370,4
+gaojianchong,23761370,5
+yinsumin128,23761370,5
+JustStayReal,23761370,5
+48981049,23761370,4
+79763326,23761370,3
+2008667,23761370,4
+82971746,23761370,-1
+2415644,23761370,5
+57230680,23761370,4
+62072231,23761370,4
+amelie-h-lin,23761370,4
+2955357,23761370,4
+30225455,23761370,5
+79567670,23761370,5
+40094782,23761370,3
+28761095,23761370,3
+36381360,23761370,3
+49342454,23761370,4
+67552884,23761370,3
+57581825,23761370,5
+127651725,23761370,5
+64579754,23761370,3
+39583969,23761370,4
+sweetxyy,23761370,4
+tiramisulovers,23761370,4
+ymm,23761370,3
+60257340,23761370,4
+globalbitch,23761370,5
+37462874,23761370,4
+taoquanlin,23761370,5
+51056550,23761370,4
+89329574,23761370,4
+zfhstudy,23761370,5
+10038789,23761370,5
+milan_1985,23761370,5
+34571461,23761370,5
+60946092,23761370,4
+tanwenqiang,23761370,4
+127777711,23761370,1
+61294563,23761370,4
+2734376,23761370,5
+48092800,23761370,5
+2382217,23761370,4
+paranoidascetic,23761370,3
+52624380,23761370,3
+llbestmvp,23761370,2
+59623092,23761370,4
+cuixuelei,23761370,4
+Esax,23761370,2
+89021640,23761370,5
+79720313,23761370,4
+70149072,23761370,5
+Sh0uTeR,23761370,4
+lantingdarkeyes,23761370,3
+34154389,23761370,4
+58375755,23761370,1
+64753401,23761370,5
+8079258,23761370,2
+nofer,23761370,4
+127769885,23761370,4
+52866397,23761370,4
+aimeshen,23761370,4
+3138370,23761370,3
+50851821,23761370,3
+37242209,23761370,4
+37242209,23761370,4
+tinytracy,23761370,5
+4108295,23761370,3
+zhangrihe,23761370,4
+58481286,23761370,4
+fangkaka,23761370,3
+62781351,23761370,5
+JOYCE-uu,23761370,4
+119182643,23761370,5
+49755333,23761370,4
+Artouria,23761370,5
+50098699,23761370,3
+face0,23761370,5
+127192204,23761370,4
+65358890,23761370,4
+47448262,23761370,3
+lengziqiu,23761370,5
+36355818,23761370,4
+62736630,23761370,3
+glasstar,23761370,2
+61105833,23761370,3
+71557459,23761370,5
+soyimmen,23761370,4
+3039896,23761370,5
+50564396,23761370,4
+79987693,23761370,1
+margaux,23761370,4
+75186086,23761370,4
+62761738,23761370,4
+55365435,23761370,3
+55405486,23761370,4
+3262644,23761370,3
+35739179,23761370,4
+antzone,23761370,5
+4246182,23761370,5
+53768301,23761370,5
+41618389,23761370,4
+37599552,23761370,3
+76596702,23761370,5
+46525176,23761370,4
+2225894,23761370,4
+1860311,23761370,4
+onedawning,23761370,5
+68027461,23761370,5
+120043439,23761370,4
+xixizxl,23761370,4
+cloudyeast,23761370,4
+Zosen,23761370,5
+shadowfoxxuan,23761370,5
+1070762,23761370,3
+gbying,23761370,3
+100314397,23761370,4
+daemo,23761370,4
+4088278,23761370,3
+fairyluohua,23761370,5
+53534718,23761370,5
+68023776,23761370,4
+37751161,23761370,4
+44578565,23761370,5
+Brainman,23761370,4
+64360291,23761370,1
+Emma_Tseng,23761370,4
+60280015,23761370,5
+41896464,23761370,4
+47747818,23761370,5
+55013431,23761370,4
+26462981,23761370,3
+rjh1994,23761370,2
+64176091,23761370,4
+vividtime,23761370,2
+82522748,23761370,5
+xlxiaolei,23761370,5
+3456041,23761370,4
+bearhulala,23761370,4
+june0927,23761370,5
+59901599,23761370,4
+48792374,23761370,4
+43998123,23761370,5
+emhm,23761370,5
+59914430,23761370,5
+59914430,23761370,5
+52540412,23761370,5
+102581208,23761370,5
+4712188,23761370,2
+65676827,23761370,5
+4514078,23761370,3
+58752983,23761370,4
+67447907,23761370,5
+yeyeyeah,23761370,5
+43195100,23761370,5
+justno,23761370,4
+70950545,23761370,5
+2600549,23761370,4
+biquan,23761370,3
+heyidi,23761370,4
+54497011,23761370,4
+83456365,23761370,4
+1977072,23761370,5
+57998290,23761370,3
+mintymak,23761370,5
+mintymak,23761370,5
+45855864,23761370,4
+59742770,23761370,4
+guanyoyo,23761370,3
+CNzane,23761370,4
+yf611x,23761370,4
+48555364,23761370,4
+zsy980124326,23761370,4
+48304556,23761370,3
+2906107,23761370,3
+81129445,23761370,3
+49380921,23761370,5
+1821069,23761370,4
+57262819,23761370,4
+1411518,23761370,4
+4588595,23761370,5
+mxf0212,23761370,5
+lynntong,23761370,5
+flycomics,23761370,3
+88172434,23761370,5
+92806168,23761370,5
+jbecks,23761370,3
+1333942,23761370,5
+lostear,23761370,2
+sunny_wong,23761370,4
+eciah,23761370,5
+tuliqin,23761370,4
+44311860,23761370,5
+monsoon,23761370,3
+88068570,23761370,4
+52388573,23761370,3
+58518951,23761370,5
+icheney,23761370,5
+DearHuman,23761370,4
+38229551,23761370,-1
+46519818,23761370,3
+37295606,23761370,4
+88674325,23761370,5
+2192692,23761370,4
+childdream,23761370,5
+58847654,23761370,5
+2792721,23761370,4
+C443658,23761370,1
+missfaye,23761370,4
+damonhao-cs,23761370,4
+39108497,23761370,4
+powterhou,23761370,5
+ahua1106,23761370,3
+62498352,23761370,4
+61282710,23761370,3
+marioshuairen,23761370,5
+2829825,23761370,4
+vendoi,23761370,5
+60438273,23761370,4
+arys-mao,23761370,4
+66273636,23761370,5
+84263388,23761370,5
+2994648,23761370,3
+71879999,23761370,3
+44281201,23761370,5
+73660377,23761370,5
+Bening,23761370,4
+haotian_sky,23761370,3
+rockymei,23761370,4
+keningisgod,23761370,3
+fighting-ing,23761370,5
+AbracadabraFree,23761370,4
+83687720,23761370,2
+lifewithbeauty,23761370,5
+63524891,23761370,5
+lovedb,23761370,5
+33328054,23761370,-1
+1781887,23761370,3
+horadric,23761370,4
+126833925,23761370,5
+Rae.Y,23761370,5
+fengxiaoliang,23761370,4
+zhupeng1115,23761370,5
+73666911,23761370,5
+Lucifer1214,23761370,3
+45390521,23761370,5
+23317372,23761370,3
+63406200,23761370,5
+61356073,23761370,4
+39449677,23761370,3
+idmmdi,23761370,3
+60352980,23761370,5
+59508590,23761370,4
+4840472,23761370,5
+56070920,23761370,4
+54253400,23761370,4
+futurama,23761370,3
+Tackie,23761370,4
+46167840,23761370,3
+1813198,23761370,4
+62864634,23761370,5
+39528654,23761370,3
+43832986,23761370,1
+wushiyi1122,23761370,5
+77215273,23761370,5
+jasminesyc,23761370,4
+tianjinwangai,23761370,3
+Rly,23761370,5
+65541182,23761370,5
+kex,23761370,3
+bradpenis,23761370,2
+69968814,23761370,3
+62046047,23761370,5
+84039577,23761370,3
+79894975,23761370,5
+127451032,23761370,3
+49385751,23761370,4
+66202135,23761370,1
+liuboyxl,23761370,4
+1198621,23761370,4
+52390173,23761370,3
+49335664,23761370,3
+56827521,23761370,5
+65776800,23761370,5
+23264500,23761370,5
+25982397,23761370,4
+60701395,23761370,5
+luxilu,23761370,3
+115303146,23761370,5
+74250747,23761370,4
+xiston,23761370,5
+44392983,23761370,3
+pgydw,23761370,4
+55338141,23761370,3
+dywinlo,23761370,4
+65937854,23761370,4
+GayScript,23761370,4
+103579343,23761370,3
+51176962,23761370,4
+54395692,23761370,4
+44470560,23761370,4
+55457046,23761370,5
+barbaraqin,23761370,4
+62654833,23761370,5
+Jack_z,23761370,4
+54726075,23761370,5
+84076511,23761370,5
+liuweifly,23761370,5
+zhaixiaojie,23761370,3
+64061515,23761370,5
+dewar,23761370,5
+kylinandtianzhe,23761370,5
+petit-poisson,23761370,3
+63033488,23761370,5
+Keli_Zhang,23761370,5
+hichai,23761370,4
+Reichsrevolver,23761370,5
+71899949,23761370,5
+66554013,23761370,4
+4909600,23761370,-1
+60385477,23761370,5
+ilestlevraije,23761370,5
+69492907,23761370,5
+pluto0318,23761370,4
+53246779,23761370,4
+32845019,23761370,3
+35731766,23761370,4
+evahsu,23761370,4
+gluttony6,23761370,3
+45631572,23761370,4
+67310334,23761370,4
+bora2547,23761370,3
+babybottle,23761370,5
+54761724,23761370,4
+32920328,23761370,5
+77048663,23761370,5
+53362350,23761370,3
+2457791,23761370,5
+54614709,23761370,2
+3198764,23761370,4
+49456596,23761370,4
+yyumen,23761370,5
+119396712,23761370,5
+AlejandroX,23761370,5
+41109416,23761370,5
+milamila,23761370,5
+49185952,23761370,5
+44304127,23761370,4
+1046736,23761370,3
+66278129,23761370,5
+28967123,23761370,4
+70440738,23761370,5
+79698189,23761370,4
+GUAN,23761370,4
+1274922,23761370,4
+60347813,23761370,3
+63557026,23761370,4
+bilin,23761370,5
+27403051,23761370,3
+aropfw1004,23761370,4
+tianhuixue,23761370,3
+68093301,23761370,4
+49704716,23761370,4
+59222778,23761370,3
+lilcccc,23761370,3
+59556078,23761370,3
+37691812,23761370,3
+43857375,23761370,4
+36789209,23761370,4
+yaoez,23761370,4
+J_Seraph,23761370,3
+guaipojushi,23761370,3
+121404710,23761370,5
+ybc0604,23761370,4
+3198785,23761370,4
+37441252,23761370,5
+53199032,23761370,4
+2875093,23761370,3
+95002456,23761370,4
+lumen,23761370,3
+treeingx,23761370,3
+50210563,23761370,5
+104517766,23761370,3
+55618754,23761370,3
+57136016,23761370,5
+3109335,23761370,4
+cheesung,23761370,3
+ttiamom,23761370,-1
+78663644,23761370,5
+114353086,23761370,5
+118090821,23761370,4
+75231611,23761370,3
+49934262,23761370,4
+1411336,23761370,3
+88083674,23761370,5
+wxhsolo,23761370,2
+49213521,23761370,4
+55661989,23761370,5
+bigeast,23761370,4
+cornelia_su,23761370,3
+53107260,23761370,5
+24974359,23761370,4
+tianranzijiegou,23761370,3
+kkx2222,23761370,3
+57718677,23761370,4
+eden_gao,23761370,5
+84289821,23761370,4
+lisai1020,23761370,5
+56884321,23761370,3
+127141779,23761370,4
+68336768,23761370,1
+45057820,23761370,5
+52838594,23761370,3
+66168101,23761370,5
+Tanbopingan,23761370,5
+52000489,23761370,5
+yuyin518,23761370,3
+faiel,23761370,4
+73600166,23761370,4
+Green_chestnut,23761370,2
+123127945,23761370,4
+baidudotcom,23761370,4
+67851427,23761370,3
+oomG,23761370,3
+65619251,23761370,3
+65619251,23761370,3
+1600136,23761370,5
+lazylazylazy,23761370,2
+eryijiu,23761370,5
+yuelungchun,23761370,5
+127291315,23761370,5
+hakuhaku,23761370,3
+62405602,23761370,5
+66007515,23761370,4
+donotgo,23761370,2
+94068216,23761370,5
+kelvinshaw,23761370,4
+58075149,23761370,3
+sinuo.sinuo,23761370,5
+52745095,23761370,-1
+119670372,23761370,5
+23789136,23761370,5
+65775952,23761370,5
+59055667,23761370,4
+88256583,23761370,4
+87541237,23761370,5
+liuweilian,23761370,3
+66967732,23761370,3
+63479785,23761370,4
+57585752,23761370,2
+74307949,23761370,1
+4030886,23761370,5
+74825137,23761370,5
+zph1987,23761370,4
+hRy,23761370,3
+Byebye-mylove,23761370,5
+xuezhiyuan-,23761370,5
+Cindylam,23761370,2
+tvxqsheep,23761370,5
+49284729,23761370,3
+tongliyu,23761370,4
+68599558,23761370,4
+1832918,23761370,4
+sunyu_5499,23761370,5
+78416389,23761370,5
+acseleon,23761370,4
+122765987,23761370,4
+126435484,23761370,2
+10178782,23761370,5
+83215137,23761370,4
+BruceBack,23761370,3
+3739759,23761370,4
+14327084,23761370,3
+chachaissherry,23761370,3
+2663629,23761370,4
+3645958,23761370,5
+minhuzi,23761370,5
+55609637,23761370,5
+AloneinTheDark,23761370,3
+mrfengge,23761370,3
+56077936,23761370,4
+58995608,23761370,4
+dc11,23761370,5
+47622714,23761370,2
+53526243,23761370,3
+26414546,23761370,1
+15080714,23761370,3
+62964103,23761370,4
+50473158,23761370,3
+Sherlockskyfall,23761370,-1
+50846350,23761370,5
+127593274,23761370,5
+95264069,23761370,4
+2283018,23761370,4
+aunsen,23761370,5
+DUOSI,23761370,5
+1670606,23761370,5
+62778052,23761370,3
+MWHLONG,23761370,4
+63651820,23761370,3
+Jankerli,23761370,5
+2494582,23761370,5
+48191441,23761370,4
+54322151,23761370,5
+16166133,23761370,2
+90787314,23761370,4
+jiajunzhi,23761370,3
+52069371,23761370,3
+48774677,23761370,5
+2362910,23761370,-1
+shiye919,23761370,1
+windirt,23761370,3
+87981727,23761370,5
+casoon,23761370,5
+52270206,23761370,3
+zini8023,23761370,4
+dhtcwd,23761370,5
+125663520,23761370,5
+loidi,23761370,5
+megzzy,23761370,4
+57719799,23761370,4
+48885291,23761370,5
+1538295,23761370,5
+monichan,23761370,5
+54889533,23761370,5
+61128841,23761370,3
+2266030,23761370,4
+122640507,23761370,4
+78403986,23761370,5
+56203117,23761370,3
+solowho,23761370,4
+paul314,23761370,4
+46847805,23761370,3
+Hero14,23761370,5
+imwhisper,23761370,4
+2422304,23761370,4
+lostcat84,23761370,-1
+48787128,23761370,4
+48504589,23761370,3
+115739905,23761370,3
+75347251,23761370,3
+57795255,23761370,4
+42291376,23761370,4
+79074513,23761370,3
+69507945,23761370,3
+3996305,23761370,3
+49176229,23761370,4
+70287604,23761370,4
+2210168,23761370,4
+wangmian0729,23761370,3
+55996414,23761370,5
+4606727,23761370,2
+3306518,23761370,4
+April1st,23761370,3
+yjp235,23761370,5
+dodofish,23761370,3
+28586939,23761370,4
+56344879,23761370,5
+48275146,23761370,4
+55804173,23761370,-1
+79948176,23761370,5
+Sk.Young,23761370,3
+79754122,23761370,3
+cici3,23761370,4
+31922995,23761370,5
+yanyan77,23761370,3
+2985147,23761370,5
+park_summer,23761370,4
+62333889,23761370,4
+64288489,23761370,5
+guoniaodao,23761370,5
+35021632,23761370,3
+47717774,23761370,5
+75723338,23761370,4
+bianmengso,23761370,2
+61606236,23761370,4
+71622967,23761370,3
+58810279,23761370,5
+2106428,23761370,4
+58286860,23761370,5
+c1010123100,23761370,5
+60185615,23761370,5
+59354362,23761370,5
+91773876,23761370,4
+86714653,23761370,3
+66810723,23761370,5
+altmann,23761370,4
+123434945,23761370,4
+57465841,23761370,3
+63132063,23761370,5
+3269129,23761370,4
+48160969,23761370,5
+74746171,23761370,4
+mobikarl,23761370,4
+4271475,23761370,5
+124882009,23761370,3
+yiyislife,23761370,4
+69814261,23761370,4
+kly0710,23761370,5
+46346298,23761370,4
+64575777,23761370,5
+Solo-n,23761370,2
+grannys_bear,23761370,3
+tiz,23761370,5
+Ikergzy,23761370,4
+hanxu521,23761370,4
+onlyfey,23761370,4
+xielemon,23761370,4
+48030221,23761370,3
+thegrudge,23761370,3
+DiLE,23761370,5
+53772865,23761370,5
+54947602,23761370,4
+64429364,23761370,5
+4096953,23761370,3
+beatricehzp,23761370,4
+Fifteen3515,23761370,4
+73135208,23761370,3
+52898119,23761370,4
+3925691,23761370,3
+alonetime,23761370,-1
+47199948,23761370,3
+3170428,23761370,3
+flcoco_yl,23761370,5
+81365410,23761370,5
+84152502,23761370,4
+3325882,23761370,5
+1795787,23761370,-1
+ilovemyself,23761370,3
+7795838,23761370,3
+fengshurui,23761370,-1
+54342307,23761370,3
+1066031,23761370,3
+70675972,23761370,5
+flowermoon,23761370,3
+shenxiaoyu,23761370,3
+76364366,23761370,5
+62022830,23761370,3
+fengyueling,23761370,5
+31466605,23761370,5
+littlebomb,23761370,3
+starlife,23761370,5
+59904891,23761370,3
+62148442,23761370,5
+53582924,23761370,3
+yeyixin,23761370,5
+1558709,23761370,4
+cloverwish,23761370,5
+Livingintherose,23761370,3
+63589080,23761370,5
+43978378,23761370,3
+blossombao,23761370,4
+54461906,23761370,5
+87865912,23761370,5
+he0214,23761370,2
+63837890,23761370,4
+65366516,23761370,3
+48639836,23761370,-1
+2206615,23761370,3
+115721198,23761370,5
+djwayye,23761370,3
+82782207,23761370,4
+seriousplay,23761370,4
+HJS_L,23761370,5
+49109662,23761370,5
+121679857,23761370,5
+1498656,23761370,5
+60249277,23761370,4
+43751318,23761370,5
+67796824,23761370,4
+55621900,23761370,1
+fuckforfun,23761370,1
+AllenXYZ,23761370,4
+simpledeer,23761370,4
+52458935,23761370,3
+83193363,23761370,5
+121215156,23761370,4
+lflit,23761370,5
+67084557,23761370,5
+SwimGood,23761370,-1
+ganlu58,23761370,5
+25553362,23761370,4
+heizelike,23761370,4
+62195893,23761370,3
+64973861,23761370,4
+64973861,23761370,4
+20047139,23761370,4
+42463723,23761370,4
+72759769,23761370,3
+angelkitty,23761370,4
+49348063,23761370,4
+magicdreamin,23761370,4
+ricardosun,23761370,5
+51338179,23761370,4
+81654169,23761370,5
+folkbaba,23761370,4
+yutingamy,23761370,3
+64272451,23761370,5
+53552804,23761370,-1
+banxiamelove,23761370,4
+JakeNow,23761370,4
+sadie_xiong,23761370,4
+33981553,23761370,3
+56111522,23761370,5
+51030434,23761370,4
+76550501,23761370,5
+50430093,23761370,5
+1335654,23761370,3
+28473075,23761370,4
+50410993,23761370,5
+79915124,23761370,5
+oodd,23761370,4
+shenqingli,23761370,4
+qinleiye,23761370,4
+40073195,23761370,5
+2550831,23761370,5
+chiarachan,23761370,-1
+GOEVERYWHERE,23761370,5
+108212384,23761370,5
+49108399,23761370,4
+68918484,23761370,5
+kenzo1983,23761370,3
+jamieyidouban,23761370,3
+50648186,23761370,5
+2664560,23761370,3
+imagefly,23761370,3
+61072952,23761370,5
+malianmiss,23761370,5
+62892603,23761370,1
+56619409,23761370,5
+49651317,23761370,5
+78484143,23761370,4
+60260360,23761370,5
+64163444,23761370,3
+21088928,23761370,5
+67505020,23761370,4
+53771308,23761370,3
+manymany,23761370,3
+vvvvv5,23761370,3
+66955403,23761370,4
+smilesleep,23761370,5
+MagaraC,23761370,1
+kinozhang,23761370,-1
+49795617,23761370,4
+68175783,23761370,4
+68175783,23761370,4
+60752122,23761370,5
+51636486,23761370,3
+62405118,23761370,5
+50153226,23761370,3
+61907651,23761370,5
+3631042,23761370,4
+39319404,23761370,5
+14234896,23761370,2
+2048402,23761370,3
+loveyu3317,23761370,5
+araleindouban,23761370,5
+yz326,23761370,4
+62827558,23761370,3
+mjj5201314,23761370,3
+90807462,23761370,5
+bluelynn,23761370,3
+debussy,23761370,3
+71985328,23761370,4
+81331494,23761370,5
+3173654,23761370,5
+64591940,23761370,5
+51424435,23761370,4
+46436075,23761370,5
+belovedeyes,23761370,4
+53895554,23761370,4
+56151370,23761370,3
+4364181,23761370,5
+42179296,23761370,5
+4571003,23761370,5
+47056157,23761370,3
+62386997,23761370,3
+59567796,23761370,5
+47331387,23761370,4
+Mr.rawness,23761370,2
+6243740,23761370,2
+121754243,23761370,4
+64865001,23761370,3
+74810108,23761370,3
+Jackandfoureyes,23761370,4
+48508881,23761370,5
+mango1992,23761370,5
+38248181,23761370,5
+94392173,23761370,3
+2569325,23761370,-1
+80602343,23761370,3
+hua621321,23761370,4
+papi189,23761370,3
+62498885,23761370,3
+62185146,23761370,3
+loveloneliness,23761370,4
+82269158,23761370,5
+weiying1992,23761370,2
+1319381,23761370,4
+suncup,23761370,4
+52769755,23761370,5
+tzuka,23761370,5
+46440162,23761370,5
+izzn,23761370,2
+92943106,23761370,4
+68531175,23761370,5
+49937482,23761370,-1
+88393319,23761370,4
+1887889,23761370,5
+yycznh0520,23761370,4
+cht,23761370,5
+cndxj1990,23761370,3
+74627451,23761370,5
+91912832,23761370,3
+helenvivi,23761370,5
+48201756,23761370,4
+philipyu,23761370,4
+cherryseventeen,23761370,3
+2597570,23761370,5
+bike24,23761370,3
+120681314,23761370,5
+junefirst,23761370,4
+53211983,23761370,-1
+70484832,23761370,5
+2268488,23761370,4
+miss__pzh,23761370,4
+123945021,23761370,5
+57955511,23761370,3
+78540633,23761370,4
+49470789,23761370,4
+85324202,23761370,3
+38356971,23761370,5
+48936362,23761370,5
+49387929,23761370,5
+smilejocelyn,23761370,2
+50411871,23761370,4
+126467467,23761370,4
+justinprc,23761370,4
+fuxr,23761370,3
+33542230,23761370,5
+itachi-j,23761370,5
+70407415,23761370,4
+3589399,23761370,2
+47588699,23761370,4
+landelanle,23761370,4
+81650047,23761370,3
+49513730,23761370,5
+29710107,23761370,5
+56812957,23761370,4
+violetsnow,23761370,5
+92023130,23761370,4
+49903898,23761370,5
+2130432,23761370,1
+34065248,23761370,3
+49539687,23761370,4
+103295742,23761370,4
+119300833,23761370,4
+FOVERyy,23761370,3
+55626253,23761370,4
+13974066,23761370,3
+datoujun,23761370,4
+Jeamir,23761370,5
+zc378810767,23761370,5
+57693778,23761370,3
+1084703,23761370,3
+46037661,23761370,5
+115553730,23761370,3
+108793879,23761370,5
+bobomio,23761370,5
+oraspirin,23761370,5
+58179366,23761370,3
+48552463,23761370,4
+63612050,23761370,4
+68989098,23761370,4
+sherrybecks,23761370,4
+dangdangbaba,23761370,3
+47399688,23761370,3
+2506122,23761370,4
+4521813,23761370,3
+42012043,23761370,4
+wangchenroc,23761370,2
+wenwenlili,23761370,5
+59967024,23761370,5
+JJ_Jacob,23761370,4
+kittybubu,23761370,4
+JJ_Jacob,23761370,4
+kittybubu,23761370,4
+viruskid,23761370,2
+57079811,23761370,4
+Mr.bomb,23761370,5
+monkeybread,23761370,4
+wudi_perfect,23761370,5
+34095088,23761370,2
+67348705,23761370,4
+29755688,23761370,4
+63083691,23761370,4
+26167687,23761370,4
+57027007,23761370,5
+46976674,23761370,4
+69418890,23761370,4
+rfxrwq,23761370,4
+3355401,23761370,5
+60914731,23761370,4
+49194367,23761370,5
+sunbiyu,23761370,5
+huodijin,23761370,3
+danielleyu,23761370,5
+casusu,23761370,4
+99868779,23761370,5
+losteden,23761370,4
+101126607,23761370,5
+33764788,23761370,2
+119263813,23761370,5
+48394441,23761370,5
+eeagle,23761370,3
+46969586,23761370,4
+zgywade,23761370,5
+CharlieXiaoxiao,23761370,2
+38748585,23761370,2
+127409335,23761370,4
+82689680,23761370,4
+45573643,23761370,5
+75599606,23761370,5
+TonyLeungNCFan,23761370,4
+102029234,23761370,4
+jingrong,23761370,5
+WTYa,23761370,4
+chaochaobro,23761370,2
+april125,23761370,5
+31536326,23761370,3
+LandRanger,23761370,4
+47795407,23761370,3
+127406348,23761370,4
+82323132,23761370,4
+pipi0220,23761370,3
+62988896,23761370,3
+ariellau,23761370,4
+74653394,23761370,4
+58775524,23761370,4
+3246311,23761370,4
+54201628,23761370,5
+45241922,23761370,4
+59114112,23761370,5
+49319454,23761370,4
+123393020,23761370,4
+48789264,23761370,3
+hexane,23761370,5
+zhuangbixia,23761370,4
+61672916,23761370,5
+45661291,23761370,3
+49854531,23761370,3
+57533785,23761370,5
+56072639,23761370,4
+66550666,23761370,3
+1319176,23761370,4
+59065986,23761370,5
+jifashi,23761370,4
+snowchong1984,23761370,3
+69997802,23761370,5
+57088096,23761370,4
+126895342,23761370,4
+11973232,23761370,3
+M-Sapphire,23761370,5
+70060927,23761370,4
+43127616,23761370,4
+43127616,23761370,4
+45975024,23761370,3
+12686265,23761370,5
+113300579,23761370,4
+53726011,23761370,3
+91224743,23761370,4
+1998903,23761370,4
+karenapao,23761370,4
+72970549,23761370,5
+3043359,23761370,3
+stonedarling,23761370,5
+32752627,23761370,5
+21147092,23761370,5
+wunie,23761370,4
+120696785,23761370,4
+46062471,23761370,4
+35545320,23761370,4
+59842104,23761370,2
+62575619,23761370,1
+62151514,23761370,5
+44536040,23761370,4
+dingruitaba,23761370,3
+47688996,23761370,4
+sevenbeans,23761370,4
+z7z,23761370,5
+huazi3A87,23761370,5
+87691265,23761370,5
+captain_beard,23761370,3
+54006234,23761370,4
+66074861,23761370,5
+35836806,23761370,3
+61805853,23761370,4
+65312708,23761370,3
+32711152,23761370,4
+81084741,23761370,4
+queenie830,23761370,4
+81721634,23761370,5
+edward_yzg,23761370,4
+66524813,23761370,5
+84235049,23761370,4
+3610351,23761370,4
+JJessica,23761370,5
+gtl,23761370,2
+79342835,23761370,5
+hakueibaby,23761370,3
+1452888,23761370,4
+80277182,23761370,4
+49308722,23761370,3
+49168685,23761370,5
+47419627,23761370,5
+bygsun,23761370,3
+bailuoliuwei,23761370,2
+cocojamboo,23761370,3
+lintao,23761370,4
+46031483,23761370,4
+58618323,23761370,4
+5187507,23761370,5
+65321007,23761370,4
+27545632,23761370,5
+coolmilk,23761370,5
+7633150,23761370,5
+61927490,23761370,5
+20259608,23761370,5
+56812681,23761370,5
+103622140,23761370,3
+115598915,23761370,5
+25560643,23761370,5
+ah-milala,23761370,3
+51411741,23761370,3
+zhangp,23761370,5
+63857129,23761370,3
+2600693,23761370,2
+Violetleite,23761370,4
+35990503,23761370,5
+50066885,23761370,5
+51239666,23761370,4
+banleft,23761370,2
+49404444,23761370,5
+56223706,23761370,3
+42132865,23761370,4
+122705753,23761370,5
+1509136,23761370,5
+88490596,23761370,5
+54725975,23761370,4
+vchin,23761370,4
+Z-soda,23761370,5
+38452487,23761370,2
+46904772,23761370,1
+43779413,23761370,-1
+65646732,23761370,5
+69848404,23761370,3
+56328149,23761370,4
+yingyan1231,23761370,4
+30714456,23761370,5
+16121075,23761370,3
+3930745,23761370,5
+AbysmalVision,23761370,5
+47997455,23761370,5
+42246037,23761370,5
+yishenmanli,23761370,4
+yishenmanli,23761370,4
+ayi2000,23761370,3
+Freedomautumn,23761370,5
+Song1183,23761370,4
+87659880,23761370,5
+120313404,23761370,4
+1131149,23761370,5
+46644410,23761370,3
+aviva1984,23761370,4
+59501924,23761370,4
+home2work,23761370,4
+3123388,23761370,4
+keita1,23761370,3
+66178639,23761370,3
+59802289,23761370,3
+56313808,23761370,4
+48269058,23761370,5
+50807510,23761370,4
+msallsunday,23761370,-1
+57223341,23761370,4
+anchilhyun27,23761370,4
+rampage_akasha,23761370,5
+102771537,23761370,4
+62877248,23761370,5
+2247685,23761370,4
+48667836,23761370,5
+50191655,23761370,3
+51266657,23761370,3
+1049689,23761370,3
+2828111,23761370,4
+47489065,23761370,5
+7609988,23761370,3
+57730238,23761370,4
+zaid10,23761370,5
+51709712,23761370,5
+122450255,23761370,3
+71048841,23761370,-1
+75851343,23761370,5
+127367403,23761370,4
+35294763,23761370,5
+2518305,23761370,2
+armeng,23761370,3
+53457323,23761370,4
+55801990,23761370,2
+alice_sim,23761370,5
+52068154,23761370,5
+122296517,23761370,2
+62935767,23761370,5
+yuyouting,23761370,5
+69669218,23761370,3
+124872899,23761370,3
+ljfxxx,23761370,3
+ParadiseOfFilm,23761370,4
+Tulipfanfan,23761370,-1
+81870071,23761370,3
+anonymousor,23761370,3
+63322369,23761370,4
+leafwaiting,23761370,4
+rasimya,23761370,4
+88919056,23761370,4
+kikyobei,23761370,3
+45352132,23761370,5
+43863446,23761370,5
+3994603,23761370,4
+43505203,23761370,4
+niuzhi,23761370,4
+yanyu_r,23761370,5
+123011203,23761370,5
+49404152,23761370,4
+vivo,23761370,-1
+58386111,23761370,3
+42952627,23761370,4
+XIUXIUMAIMAI,23761370,5
+91034167,23761370,3
+12125155,23761370,3
+40613162,23761370,5
+47240237,23761370,-1
+63846407,23761370,4
+73346384,23761370,3
+50487533,23761370,5
+50487533,23761370,5
+sonnenshein,23761370,5
+29834677,23761370,4
+65805429,23761370,2
+91515343,23761370,5
+60804345,23761370,3
+64667835,23761370,5
+69371071,23761370,4
+36071359,23761370,4
+Huier0330,23761370,3
+86129189,23761370,4
+57209981,23761370,3
+kingdoucloud,23761370,3
+luoil,23761370,4
+frankkahn,23761370,4
+maggieou,23761370,4
+127354177,23761370,4
+hiclarkson,23761370,4
+55016431,23761370,3
+58773339,23761370,4
+58773339,23761370,4
+andrewcx,23761370,2
+spsara,23761370,4
+2184129,23761370,2
+wanna2be,23761370,5
+57391761,23761370,4
+shineeamber,23761370,-1
+smdt.jay,23761370,3
+faye0112,23761370,5
+aptx1010,23761370,4
+stingo,23761370,5
+chinber,23761370,4
+anera,23761370,4
+TJewelz,23761370,4
+57452177,23761370,4
+61040876,23761370,5
+yy541272862,23761370,4
+45787212,23761370,4
+57558926,23761370,3
+74860067,23761370,4
+56235039,23761370,4
+Daniel-Cheung,23761370,5
+57039483,23761370,5
+127351362,23761370,5
+Ruying1987,23761370,4
+46436848,23761370,4
+66051391,23761370,3
+huaqianshu,23761370,-1
+46916215,23761370,3
+63670399,23761370,5
+49893614,23761370,3
+54605481,23761370,4
+36580993,23761370,2
+allsmiles,23761370,5
+127345355,23761370,4
+97515933,23761370,5
+leechambo,23761370,3
+maikatse,23761370,5
+ailanyiying,23761370,4
+41657334,23761370,-1
+xiaomi90,23761370,4
+62013752,23761370,3
+rey-9,23761370,4
+42477053,23761370,4
+brooke868,23761370,3
+yzk2237084,23761370,5
+44976986,23761370,5
+ameko5053,23761370,5
+yaoyu1013,23761370,4
+41378125,23761370,5
+64543856,23761370,4
+MOVIE--KO,23761370,4
+43555189,23761370,4
+91301704,23761370,4
+52441493,23761370,4
+124809185,23761370,3
+61713856,23761370,4
+hermione_lv,23761370,4
+53317019,23761370,4
+ericleaf,23761370,5
+117339283,23761370,5
+iconsume,23761370,3
+71108776,23761370,5
+64700587,23761370,4
+4352057,23761370,4
+45508066,23761370,4
+81178074,23761370,4
+57416489,23761370,5
+74162962,23761370,-1
+patrickxwong,23761370,3
+85644072,23761370,4
+3760780,23761370,5
+123228313,23761370,5
+freakjimmyxu,23761370,3
+1504114,23761370,5
+4902486,23761370,5
+123174366,23761370,5
+ovspianist,23761370,3
+4007809,23761370,-1
+anniehoneys,23761370,3
+anniehoneys,23761370,3
+42125701,23761370,3
+22176088,23761370,4
+59561773,23761370,4
+112933075,23761370,3
+silencexsky,23761370,4
+gjx189,23761370,5
+4885959,23761370,5
+58386149,23761370,3
+51637615,23761370,-1
+31583131,23761370,3
+itscharism,23761370,3
+catherined,23761370,5
+helljump,23761370,3
+nebgnahz,23761370,5
+42678961,23761370,5
+ophelia1101,23761370,4
+50889039,23761370,4
+49346352,23761370,3
+insomniaintokyo,23761370,-1
+60631421,23761370,3
+gaming2005,23761370,-1
+86922296,23761370,4
+hakkaking,23761370,4
+42877211,23761370,3
+54310251,23761370,5
+47047008,23761370,4
+94034456,23761370,1
+xhykathy,23761370,4
+80042379,23761370,5
+2605893,23761370,2
+whitedove,23761370,4
+59530071,23761370,5
+85205230,23761370,4
+51799882,23761370,3
+115072556,23761370,5
+niol,23761370,4
+121433153,23761370,5
+swqbunnie,23761370,4
+kongsang,23761370,5
+68738752,23761370,3
+54998532,23761370,3
+61551903,23761370,5
+28907680,23761370,5
+4019837,23761370,5
+lovecris,23761370,3
+101369491,23761370,4
+49178208,23761370,5
+81051190,23761370,5
+34694249,23761370,3
+53609841,23761370,4
+scowlknight,23761370,4
+zyw19870917,23761370,3
+lauranancy,23761370,4
+vivianxal,23761370,5
+61689441,23761370,3
+78599391,23761370,4
+85116826,23761370,5
+59995105,23761370,4
+120391642,23761370,5
+63423532,23761370,3
+93028055,23761370,3
+49722374,23761370,5
+shijinqi,23761370,4
+82917840,23761370,4
+68470868,23761370,5
+123655153,23761370,5
+58081324,23761370,3
+92948979,23761370,5
+Peach.T,23761370,4
+GuoLiuxi,23761370,1
+70413922,23761370,4
+jiayuan1613,23761370,4
+45409170,23761370,4
+guangying0211,23761370,5
+gingerlea,23761370,4
+PATCHPAN,23761370,5
+nancyci,23761370,5
+yiyuforyou,23761370,1
+4565520,23761370,4
+meeker24,23761370,4
+nolazhao,23761370,5
+Karry99,23761370,5
+60834753,23761370,3
+75897046,23761370,5
+27518977,23761370,2
+84744874,23761370,4
+48017520,23761370,5
+40067937,23761370,5
+DDDong,23761370,4
+elevenselina,23761370,5
+69975776,23761370,5
+blunting,23761370,2
+aurden,23761370,4
+KGyeer,23761370,5
+alittlebit,23761370,5
+sjqs_ymr,23761370,4
+119248717,23761370,4
+54620678,23761370,5
+dd54,23761370,4
+kaneshivo,23761370,3
+milizi,23761370,-1
+57583462,23761370,5
+53785149,23761370,5
+69061079,23761370,5
+55668809,23761370,4
+82815554,23761370,4
+44892859,23761370,3
+suheloo,23761370,-1
+3615093,23761370,5
+sisiniannian,23761370,5
+44381584,23761370,4
+neverland97,23761370,-1
+83411107,23761370,5
+nomadleaf,23761370,4
+dbqiubo,23761370,4
+57756407,23761370,4
+78455570,23761370,5
+99834805,23761370,5
+z-tianhua,23761370,5
+xiaoguli,23761370,5
+54436614,23761370,2
+1280213,23761370,3
+60550940,23761370,4
+7973423,23761370,3
+52569084,23761370,5
+60840704,23761370,4
+Lane640,23761370,2
+70057949,23761370,4
+pretendor,23761370,4
+rivt,23761370,4
+4457767,23761370,5
+54656864,23761370,3
+sundaedae,23761370,4
+lovejason87,23761370,5
+58079421,23761370,-1
+43583289,23761370,4
+76838312,23761370,4
+lindoublelan,23761370,4
+fuckfucker,23761370,2
+konghanlei,23761370,5
+candy8822,23761370,4
+127316538,23761370,5
+120215971,23761370,2
+78609798,23761370,4
+duax,23761370,5
+lovehebey,23761370,3
+anitanine,23761370,3
+126529625,23761370,4
+3442648,23761370,4
+JudahXIII,23761370,4
+58703518,23761370,-1
+ooxxjjww,23761370,3
+52315536,23761370,5
+127313933,23761370,4
+hxf1919,23761370,4
+127071890,23761370,4
+4391066,23761370,4
+123379733,23761370,5
+KooK-Psycho,23761370,4
+yanbigflower,23761370,-1
+4549163,23761370,5
+4549550,23761370,3
+3006805,23761370,5
+4635921,23761370,3
+liusuer,23761370,2
+Dantdevilmaycry,23761370,5
+26660078,23761370,3
+75861648,23761370,5
+122014268,23761370,5
+iamzyyy,23761370,5
+nianimamabie,23761370,5
+chaitea,23761370,2
+50867602,23761370,4
+47169625,23761370,5
+49222790,23761370,4
+126346633,23761370,4
+47990890,23761370,4
+121622881,23761370,5
+4090221,23761370,4
+momokosusu,23761370,4
+tshimmel,23761370,4
+83361236,23761370,5
+daxiwanzi,23761370,2
+65475762,23761370,5
+56524460,23761370,5
+62659446,23761370,5
+46857287,23761370,-1
+timegood,23761370,5
+73759328,23761370,3
+zhushejia,23761370,4
+36671910,23761370,4
+lili-chou-chou,23761370,5
+46305822,23761370,5
+coannaoc,23761370,5
+87655848,23761370,4
+oguri-sama,23761370,5
+127300120,23761370,5
+53936917,23761370,5
+nealwzn,23761370,5
+TenkyAn,23761370,5
+57691417,23761370,3
+92461755,23761370,5
+48511248,23761370,5
+48006238,23761370,4
+81162851,23761370,3
+farawayfromhome,23761370,1
+121038852,23761370,5
+hyt,23761370,3
+12528508,23761370,5
+60071743,23761370,4
+59344526,23761370,4
+beelover,23761370,4
+joan-li,23761370,4
+32667316,23761370,5
+47959962,23761370,3
+2195107,23761370,5
+potatoxxh,23761370,3
+45957568,23761370,1
+66151732,23761370,3
+56450349,23761370,5
+ichimarumidori,23761370,3
+xuyuhong,23761370,3
+4822975,23761370,5
+3521458,23761370,2
+35245488,23761370,4
+40311779,23761370,5
+65079823,23761370,4
+Harosign,23761370,3
+LunaticPandora,23761370,5
+37404981,23761370,3
+BryanZ,23761370,4
+79215325,23761370,3
+2107509,23761370,4
+57756702,23761370,5
+99991457,23761370,4
+cc320,23761370,5
+58267868,23761370,5
+56840457,23761370,5
+happyaa_cyndi,23761370,5
+65090686,23761370,4
+60518978,23761370,3
+frankxiafan,23761370,5
+58513319,23761370,4
+elizahan,23761370,5
+48024512,23761370,4
+50902049,23761370,5
+63299321,23761370,3
+55300930,23761370,3
+snowton,23761370,2
+58042805,23761370,4
+41238530,23761370,4
+46936355,23761370,3
+box8235,23761370,4
+34552812,23761370,5
+saint753,23761370,4
+ano-boku,23761370,-1
+littlegaga,23761370,5
+1326042,23761370,4
+Lmaomao0352,23761370,5
+Lmaomao0352,23761370,5
+mayday525,23761370,5
+46276705,23761370,5
+47348145,23761370,4
+josephinechan,23761370,4
+58043118,23761370,4
+Lan.die,23761370,4
+53624706,23761370,5
+59554628,23761370,5
+125749179,23761370,4
+91911602,23761370,4
+Graphy,23761370,5
+46282753,23761370,5
+119025704,23761370,4
+whyes,23761370,3
+michellengan,23761370,3
+42221402,23761370,2
+meskelil,23761370,3
+52948312,23761370,4
+68604751,23761370,4
+45014894,23761370,3
+56157459,23761370,5
+Mandychai,23761370,3
+68696926,23761370,2
+43370431,23761370,4
+103193931,23761370,4
+action552200,23761370,5
+127243066,23761370,5
+79465571,23761370,4
+1011858,23761370,5
+treelulu,23761370,4
+2016454,23761370,5
+77676888,23761370,5
+92983760,23761370,5
+43408536,23761370,4
+eatswasabi,23761370,5
+50042577,23761370,5
+alanadams,23761370,5
+yoonki1993,23761370,5
+89333724,23761370,4
+49482538,23761370,-1
+43833261,23761370,1
+124470674,23761370,5
+qianmoch,23761370,-1
+2842455,23761370,3
+mrint,23761370,3
+47658546,23761370,4
+46864316,23761370,5
+43299277,23761370,3
+51172081,23761370,5
+3739907,23761370,5
+70042257,23761370,4
+40967366,23761370,5
+xseac,23761370,5
+ranshengchen,23761370,3
+49523598,23761370,3
+MrsCC,23761370,2
+35804836,23761370,-1
+heidycat,23761370,4
+44520105,23761370,5
+44520105,23761370,5
+2615650,23761370,4
+4237224,23761370,4
+chenxiao79,23761370,4
+122734851,23761370,5
+126511623,23761370,5
+49932769,23761370,5
+4506723,23761370,4
+ximozhe,23761370,4
+undeadcherry,23761370,3
+3166262,23761370,5
+44063969,23761370,4
+chenhaifang,23761370,4
+diysad,23761370,-1
+zaysoso,23761370,5
+3873758,23761370,4
+66211022,23761370,1
+41415414,23761370,4
+58252389,23761370,5
+126816085,23761370,3
+12826985,23761370,3
+56435930,23761370,4
+68907183,23761370,4
+91948472,23761370,4
+2821497,23761370,5
+54804536,23761370,5
+68647999,23761370,4
+vagabond1114,23761370,3
+Zhang.Sonic,23761370,4
+3917363,23761370,4
+48782582,23761370,5
+51977450,23761370,4
+2132695,23761370,2
+59843515,23761370,5
+65507275,23761370,5
+ViamoLee,23761370,3
+44641490,23761370,5
+sure5004,23761370,3
+58992948,23761370,4
+68471660,23761370,2
+56838974,23761370,5
+wonderful_days,23761370,5
+56209503,23761370,5
+44200626,23761370,5
+sand_mao,23761370,3
+69714540,23761370,4
+achen17,23761370,3
+2570888,23761370,4
+echoabc0409,23761370,5
+85219572,23761370,4
+4147353,23761370,4
+heyinxian,23761370,5
+bear_desu,23761370,4
+venusvictorwong,23761370,1
+1469018,23761370,5
+guanghainanhai,23761370,5
+thu1314,23761370,3
+119371106,23761370,3
+82815197,23761370,-1
+imdavis,23761370,3
+76914341,23761370,5
+17471764,23761370,-1
+niuchen0288,23761370,4
+50329989,23761370,5
+DONGXIAOYANG,23761370,4
+61612027,23761370,5
+48155100,23761370,5
+46689282,23761370,5
+50686538,23761370,5
+Foxie717,23761370,3
+115639810,23761370,5
+62860308,23761370,5
+127252296,23761370,5
+Lommy,23761370,4
+35442481,23761370,4
+lailai_tu,23761370,4
+dynsky2011,23761370,5
+monononono,23761370,3
+62788704,23761370,5
+suyizhuxiu,23761370,3
+42088638,23761370,3
+DIRENGREY,23761370,4
+saraconan,23761370,3
+45117838,23761370,3
+56300991,23761370,4
+48046396,23761370,5
+127247903,23761370,4
+107143245,23761370,5
+56039933,23761370,-1
+63011235,23761370,3
+55916506,23761370,3
+ywis,23761370,3
+70071124,23761370,5
+67398102,23761370,5
+micao-onlyhui,23761370,4
+Charlotte-e,23761370,4
+56074823,23761370,4
+sachi227,23761370,4
+49362263,23761370,4
+dongcongcong,23761370,4
+122889599,23761370,5
+56655497,23761370,5
+49873483,23761370,5
+yangyi52,23761370,5
+53547991,23761370,5
+65285618,23761370,4
+sophia_423,23761370,4
+51658025,23761370,3
+126624214,23761370,4
+mypiggycwh,23761370,4
+67520406,23761370,4
+88446161,23761370,3
+58400700,23761370,4
+Baconepi,23761370,4
+120418587,23761370,1
+dizzyluke,23761370,4
+105351276,23761370,3
+bonhan,23761370,1
+fengmaozidejia,23761370,5
+blackout,23761370,3
+blackout,23761370,3
+48769866,23761370,5
+Nicoism,23761370,2
+doggyismine,23761370,4
+64800749,23761370,5
+JEWELzxx,23761370,4
+116269598,23761370,5
+43872050,23761370,4
+126546596,23761370,4
+jidongwei,23761370,4
+58457174,23761370,4
+60274677,23761370,2
+44412475,23761370,3
+vip_chang,23761370,4
+Essyyy,23761370,3
+52579051,23761370,4
+47454028,23761370,5
+strayxiaoxun,23761370,4
+IsenC,23761370,5
+47905598,23761370,4
+82223630,23761370,4
+DukeTc,23761370,4
+36725192,23761370,3
+48138570,23761370,5
+11871887,23761370,4
+120884692,23761370,3
+yancm,23761370,4
+ibsen,23761370,4
+29789085,23761370,5
+68792801,23761370,3
+59098321,23761370,4
+80703672,23761370,5
+Shineeeee,23761370,5
+fencer,23761370,4
+76534851,23761370,2
+2628147,23761370,5
+summer510,23761370,3
+haizhiyue,23761370,4
+39849703,23761370,5
+61520831,23761370,5
+hussi,23761370,4
+Agnesi,23761370,4
+63725459,23761370,2
+84418105,23761370,-1
+dulllennon,23761370,3
+46788119,23761370,5
+67248667,23761370,5
+65937174,23761370,3
+46459557,23761370,4
+62030418,23761370,5
+85285625,23761370,5
+sofaspeak,23761370,4
+ifgladlee,23761370,3
+52274350,23761370,5
+krevy,23761370,5
+raitydove,23761370,1
+52037455,23761370,5
+42785384,23761370,5
+59516835,23761370,5
+50003038,23761370,3
+96488768,23761370,1
+94672080,23761370,3
+pandaxk001,23761370,3
+56071242,23761370,4
+cherry_t,23761370,4
+62452692,23761370,5
+63355113,23761370,5
+45014171,23761370,5
+64739308,23761370,4
+yaoyaocj,23761370,3
+mmmcc,23761370,4
+69515899,23761370,5
+73355457,23761370,5
+34219306,23761370,3
+danaest,23761370,3
+ahzhong1991,23761370,4
+asdasfff,23761370,5
+nalanxiang,23761370,5
+54452935,23761370,4
+15290858,23761370,1
+81296522,23761370,4
+56239021,23761370,5
+69972517,23761370,4
+lili77883,23761370,4
+60289458,23761370,1
+99834497,23761370,4
+52212377,23761370,4
+rabbittmy,23761370,5
+37260591,23761370,3
+takewater,23761370,4
+citizencala,23761370,2
+60055560,23761370,4
+39529333,23761370,4
+105270645,23761370,3
+124102010,23761370,3
+125182358,23761370,5
+yinlook,23761370,4
+44403434,23761370,5
+125406541,23761370,2
+80040060,23761370,4
+52686333,23761370,2
+Desperatio_God,23761370,3
+1741127,23761370,5
+61157800,23761370,5
+32401748,23761370,4
+39504280,23761370,5
+127202222,23761370,5
+14406293,23761370,5
+2540124,23761370,5
+seeme,23761370,4
+53346531,23761370,3
+50971043,23761370,5
+3052607,23761370,5
+1150579,23761370,4
+54795000,23761370,3
+3254734,23761370,5
+124764727,23761370,4
+44284036,23761370,3
+36082839,23761370,3
+37785613,23761370,5
+3768406,23761370,3
+49731648,23761370,4
+three-chu,23761370,4
+2519781,23761370,4
+54551126,23761370,5
+95377922,23761370,5
+127124018,23761370,4
+zeisiphe,23761370,4
+buwubuhui,23761370,2
+127191688,23761370,4
+61235900,23761370,5
+58261951,23761370,4
+47722144,23761370,4
+49210085,23761370,5
+fishnene,23761370,4
+2853028,23761370,5
+78697699,23761370,3
+Dielin,23761370,4
+96375971,23761370,5
+standingalone,23761370,5
+2148283,23761370,-1
+4596072,23761370,3
+nazhadi,23761370,3
+3993595,23761370,3
+Perry_Chan,23761370,5
+62337179,23761370,5
+51331852,23761370,4
+46887400,23761370,5
+82957271,23761370,4
+Leeshufeng,23761370,2
+Talushen,23761370,4
+toyshen,23761370,4
+chancyyoung,23761370,5
+120943212,23761370,4
+58089982,23761370,5
+summertime727,23761370,-1
+3078831,23761370,5
+myloai,23761370,4
+66473872,23761370,5
+yumiaoxiaoyu,23761370,5
+mjxlyc,23761370,5
+100208521,23761370,5
+chenboada,23761370,3
+49520128,23761370,5
+54327397,23761370,5
+58905615,23761370,4
+55385860,23761370,2
+4243064,23761370,3
+bycat,23761370,1
+67880800,23761370,2
+43760818,23761370,4
+1163444,23761370,4
+59262480,23761370,4
+72101237,23761370,5
+22531064,23761370,4
+48514176,23761370,5
+Taurusbeauty,23761370,5
+pepperannn,23761370,4
+64636430,23761370,5
+127170263,23761370,5
+qioling,23761370,4
+67917297,23761370,4
+sunlight115,23761370,4
+68252583,23761370,5
+songgpqg,23761370,3
+ladycocoococ,23761370,5
+ailyfhong9999,23761370,4
+anndao,23761370,4
+yakiwang,23761370,4
+likeonly7,23761370,-1
+23822983,23761370,5
+62614786,23761370,5
+127080135,23761370,4
+36591097,23761370,4
+grownups,23761370,4
+sunyn0910,23761370,3
+33327621,23761370,5
+sodasue,23761370,3
+47971012,23761370,-1
+1281869,23761370,3
+65396178,23761370,3
+28726499,23761370,5
+65871774,23761370,4
+43799515,23761370,5
+1964260,23761370,-1
+dyh1991,23761370,4
+115144480,23761370,5
+3280767,23761370,3
+60770013,23761370,3
+39247767,23761370,3
+suyuqi,23761370,5
+62913401,23761370,3
+42981900,23761370,5
+avrilyu1225,23761370,3
+17871243,23761370,3
+mirccccco,23761370,5
+63406324,23761370,5
+Campion,23761370,-1
+38518725,23761370,4
+78645703,23761370,4
+60648596,23761370,5
+luo_yanling,23761370,5
+duanyixuan,23761370,4
+84482439,23761370,4
+39630115,23761370,3
+toni1203,23761370,5
+66149967,23761370,4
+sliverfox,23761370,5
+graceinjune,23761370,4
+80347003,23761370,4
+wxcQluotuo,23761370,4
+woodlawcn,23761370,3
+SDx74,23761370,5
+127043703,23761370,3
+46533854,23761370,3
+58806180,23761370,5
+54443287,23761370,4
+3515372,23761370,4
+zzsilence,23761370,5
+51737813,23761370,-1
+51737813,23761370,-1
+57054575,23761370,4
+Okina,23761370,3
+49995331,23761370,5
+59904484,23761370,4
+zuara,23761370,4
+y19940504,23761370,4
+lmt0203,23761370,4
+anjiu,23761370,4
+122944258,23761370,2
+1536142,23761370,4
+85090983,23761370,4
+darkness211,23761370,4
+127145817,23761370,5
+fanze,23761370,3
+q258523454,23761370,4
+51779600,23761370,5
+duoduot,23761370,4
+fengchen_douban,23761370,5
+50975959,23761370,3
+50975959,23761370,3
+57448207,23761370,5
+65077960,23761370,5
+88922357,23761370,3
+MollyMollyMolly,23761370,4
+44993232,23761370,3
+vipyuchao,23761370,3
+94165453,23761370,5
+mspengmei,23761370,4
+61236868,23761370,5
+Ark1992,23761370,3
+54190098,23761370,5
+zhuoshang,23761370,4
+52863802,23761370,3
+comewinni,23761370,3
+2670735,23761370,2
+2003213,23761370,4
+36684107,23761370,3
+iear,23761370,3
+Scarlett--YJ,23761370,5
+crystaldrr,23761370,3
+djy_joy,23761370,3
+73062008,23761370,5
+67948455,23761370,4
+shuiduocao,23761370,4
+65853906,23761370,-1
+kamting,23761370,3
+loveyu0725,23761370,5
+zhangrenran,23761370,3
+yoyo_8bble,23761370,5
+kang8,23761370,5
+96370648,23761370,5
+66382241,23761370,4
+kenpusney,23761370,4
+cloverllx,23761370,3
+77223076,23761370,5
+82898495,23761370,4
+75558546,23761370,4
+wu_dbpersonal,23761370,5
+cjc1021,23761370,5
+2977755,23761370,4
+43961228,23761370,4
+46899635,23761370,3
+124770201,23761370,3
+58045060,23761370,4
+116511306,23761370,5
+42018973,23761370,3
+48589119,23761370,3
+47181013,23761370,5
+53953725,23761370,5
+44057299,23761370,3
+4001930,23761370,4
+121334018,23761370,3
+Lee_0618,23761370,5
+3880595,23761370,4
+52010271,23761370,3
+52335309,23761370,4
+minnierai,23761370,4
+61173006,23761370,5
+Voldedogear,23761370,-1
+85062160,23761370,5
+49821138,23761370,5
+61179711,23761370,4
+86139476,23761370,4
+47524007,23761370,4
+47618855,23761370,-1
+naocanmaoer,23761370,-1
+37619017,23761370,5
+125827809,23761370,4
+xiduowawa,23761370,5
+127111031,23761370,4
+3523318,23761370,4
+32539484,23761370,5
+lysagdgl,23761370,4
+EmmafromMercury,23761370,5
+57176881,23761370,4
+54422637,23761370,4
+lshangy,23761370,-1
+easy719,23761370,4
+63820953,23761370,-1
+weizheren,23761370,3
+60460597,23761370,5
+33400757,23761370,5
+63471811,23761370,4
+52482326,23761370,5
+ashincheer,23761370,3
+122828355,23761370,2
+sylviahuang1029,23761370,5
+2672461,23761370,5
+34087859,23761370,3
+junbbccc,23761370,5
+89268814,23761370,3
+62580621,23761370,4
+zhuyuying,23761370,5
+37299647,23761370,2
+44504599,23761370,3
+69345678,23761370,4
+2140751,23761370,4
+xiongyantao,23761370,5
+4889156,23761370,3
+mujinshun,23761370,-1
+67400745,23761370,4
+56008028,23761370,5
+2752525,23761370,4
+wasasw,23761370,5
+jingshuixian,23761370,4
+46603705,23761370,4
+2937386,23761370,5
+lianbin,23761370,5
+hidey,23761370,5
+39212003,23761370,5
+4565301,23761370,4
+61279122,23761370,4
+58277356,23761370,3
+comet92,23761370,5
+SUMOylation,23761370,4
+jiatianyu1,23761370,4
+36342485,23761370,4
+122782956,23761370,4
+little.m,23761370,4
+50821588,23761370,4
+51706608,23761370,4
+12998506,23761370,5
+69379174,23761370,4
+64819943,23761370,4
+x2338x,23761370,4
+jeans522,23761370,1
+3481076,23761370,5
+3856901,23761370,4
+before1998CXH,23761370,3
+60885492,23761370,5
+2922353,23761370,3
+sirluoji,23761370,4
+folkstone,23761370,4
+57639200,23761370,5
+crazy2000,23761370,3
+emoti0n,23761370,4
+62904904,23761370,4
+49036122,23761370,5
+lapland,23761370,4
+D_DAY_OFF,23761370,5
+sasky,23761370,4
+47652381,23761370,5
+49892458,23761370,4
+jinping-peng,23761370,3
+13636336,23761370,5
+69351110,23761370,4
+92571937,23761370,4
+70173659,23761370,4
+62306156,23761370,5
+pangyy,23761370,5
+1427744,23761370,5
+Julyxiaobao,23761370,3
+tanglu,23761370,3
+DTShow,23761370,5
+cuichenpro,23761370,5
+3583797,23761370,5
+sufe,23761370,-1
+camille_seven,23761370,4
+48217590,23761370,4
+124184146,23761370,4
+92312113,23761370,4
+63551449,23761370,5
+65364247,23761370,5
+53579015,23761370,3
+dd1001,23761370,5
+3682912,23761370,3
+jenasy,23761370,4
+shanguicheng,23761370,4
+83489126,23761370,4
+2213401,23761370,2
+haozhaiyihao,23761370,4
+127082553,23761370,3
+97200408,23761370,3
+carambo,23761370,3
+xiaoweiwang,23761370,4
+59830157,23761370,4
+61482345,23761370,4
+48494874,23761370,4
+62109771,23761370,5
+43362846,23761370,5
+AmoH,23761370,4
+wazis,23761370,4
+65214570,23761370,4
+36539973,23761370,5
+49195863,23761370,5
+snowhead,23761370,5
+SK8_frank,23761370,5
+57229828,23761370,5
+1048791,23761370,5
+114353499,23761370,3
+45899910,23761370,4
+62759675,23761370,4
+58094716,23761370,5
+72891921,23761370,3
+79952880,23761370,3
+46456526,23761370,5
+jieyaren,23761370,3
+50371058,23761370,4
+shikeyifeng,23761370,5
+57654704,23761370,4
+yoyo_wu,23761370,4
+45665949,23761370,3
+CaptainGuan,23761370,4
+57590484,23761370,3
+59064601,23761370,5
+83020463,23761370,4
+3853719,23761370,5
+50235516,23761370,3
+bodysun,23761370,4
+51557657,23761370,4
+62453172,23761370,3
+milkteaLayla,23761370,5
+gegeyinkou,23761370,3
+1389557,23761370,3
+olina59,23761370,4
+85054313,23761370,5
+4795748,23761370,3
+yigesong,23761370,3
+daobanjiang,23761370,4
+NAGISHO,23761370,4
+dscmaroon15,23761370,4
+goufanbbs,23761370,5
+ipodmoni,23761370,-1
+71688338,23761370,-1
+104415200,23761370,5
+Alaska621,23761370,4
+97010885,23761370,5
+53908141,23761370,5
+74125897,23761370,5
+shiyaozenyang,23761370,3
+122228928,23761370,5
+64934360,23761370,5
+31698933,23761370,5
+51481104,23761370,3
+2123968,23761370,3
+50344937,23761370,5
+127066563,23761370,5
+65424378,23761370,3
+kui12,23761370,3
+79034042,23761370,2
+91217287,23761370,3
+atashinomono,23761370,4
+fuchajingran,23761370,5
+yinleo,23761370,3
+54119413,23761370,2
+Leoevan,23761370,-1
+npzhd,23761370,5
+57395055,23761370,5
+xylor,23761370,3
+lichengbin,23761370,5
+yumiao2,23761370,3
+74629238,23761370,5
+43948755,23761370,3
+9485080,23761370,5
+60736257,23761370,4
+3340201,23761370,4
+85948759,23761370,5
+2986019,23761370,4
+49230692,23761370,5
+chenkendra,23761370,5
+yijiuqingyang,23761370,4
+107899706,23761370,5
+58116999,23761370,5
+Annandan,23761370,5
+76120521,23761370,5
+July5,23761370,5
+radioyang,23761370,3
+114435379,23761370,5
+Carlisle_,23761370,4
+124104250,23761370,5
+55274013,23761370,4
+53396972,23761370,5
+47916869,23761370,5
+78902065,23761370,4
+72273417,23761370,3
+53726776,23761370,3
+8213200,23761370,4
+64213898,23761370,4
+47391200,23761370,5
+49144077,23761370,3
+49415138,23761370,5
+xfjzoe,23761370,4
+121289460,23761370,5
+45183610,23761370,4
+viviankang1110,23761370,5
+kelsilove531,23761370,4
+120643307,23761370,5
+15393999,23761370,4
+52121192,23761370,4
+57865620,23761370,5
+57638199,23761370,5
+twdpx,23761370,3
+joanne_do,23761370,4
+55824890,23761370,5
+3641185,23761370,-1
+stonelcc,23761370,3
+97188703,23761370,4
+13191648,23761370,4
+74078131,23761370,3
+sedorikku,23761370,4
+91504856,23761370,5
+tuweri,23761370,5
+48452240,23761370,-1
+51602977,23761370,5
+4711630,23761370,4
+mfanson,23761370,5
+alicenicy,23761370,3
+littlemac,23761370,5
+4797649,23761370,2
+41502441,23761370,5
+54344363,23761370,4
+vivxlx,23761370,2
+51467153,23761370,1
+43881905,23761370,3
+61632580,23761370,4
+52834321,23761370,2
+49624809,23761370,4
+84001065,23761370,5
+sofarpluto,23761370,5
+68706440,23761370,4
+yanala,23761370,5
+41915506,23761370,5
+frostshuang1989,23761370,5
+63848305,23761370,4
+57651178,23761370,2
+4171608,23761370,4
+56383208,23761370,4
+61753267,23761370,5
+himarkcn,23761370,3
+52267690,23761370,4
+xizhijun,23761370,4
+17828049,23761370,4
+vain223,23761370,4
+Mirac1e,23761370,4
+uplee,23761370,4
+Teer1991,23761370,3
+76335816,23761370,5
+4474664,23761370,5
+67579686,23761370,4
+46073568,23761370,4
+atengbrilliance,23761370,4
+71319840,23761370,4
+ladybird789,23761370,3
+97802607,23761370,3
+51962854,23761370,4
+76276053,23761370,5
+63155041,23761370,4
+2455887,23761370,3
+Joyce-D,23761370,5
+121382700,23761370,5
+45934338,23761370,2
+58624199,23761370,3
+dianxiao,23761370,3
+lingxiaxia,23761370,5
+yilingyu,23761370,4
+121064983,23761370,1
+100625194,23761370,4
+Kn_,23761370,3
+1251922,23761370,5
+39769069,23761370,4
+aifeld,23761370,5
+52006162,23761370,4
+crinoid,23761370,3
+2872965,23761370,3
+zyzy,23761370,4
+91755433,23761370,5
+conditionerzi,23761370,5
+zhongshanaoli,23761370,4
+53806726,23761370,5
+floatingghost,23761370,3
+48952413,23761370,4
+51995091,23761370,3
+64810675,23761370,4
+zhaoxiaoli1989,23761370,3
+54139210,23761370,4
+33456055,23761370,5
+61477249,23761370,3
+zweikun,23761370,4
+fm532,23761370,5
+33201871,23761370,5
+zhuangshisana,23761370,3
+65940576,23761370,5
+46026833,23761370,4
+79602736,23761370,5
+127028166,23761370,5
+55275612,23761370,4
+62592798,23761370,5
+100420531,23761370,3
+2885204,23761370,5
+48910680,23761370,5
+50566140,23761370,-1
+48002846,23761370,3
+3474242,23761370,4
+4435016,23761370,4
+53769414,23761370,5
+52976585,23761370,3
+62776173,23761370,5
+Ray_u,23761370,5
+78237163,23761370,2
+47978030,23761370,5
+Particle.ma,23761370,3
+marage,23761370,4
+K_Kaito,23761370,3
+junelong,23761370,4
+fre7dom,23761370,5
+16048346,23761370,5
+60882741,23761370,4
+46371780,23761370,5
+zwz.,23761370,3
+2460899,23761370,4
+50567053,23761370,4
+58569504,23761370,5
+5259472,23761370,-1
+43471200,23761370,4
+65288750,23761370,4
+4696967,23761370,4
+52319821,23761370,4
+59310037,23761370,4
+4297964,23761370,3
+4297964,23761370,3
+50335163,23761370,-1
+manualin,23761370,5
+2959349,23761370,4
+80758039,23761370,4
+helloc7c,23761370,4
+poppy7777,23761370,5
+1364563,23761370,4
+jeanvalley,23761370,5
+tiepido,23761370,4
+hatsu803,23761370,5
+monoh,23761370,4
+junyao29,23761370,5
+farewellmyeteen,23761370,5
+M_Caesar,23761370,4
+pp3288,23761370,4
+65240625,23761370,5
+126895739,23761370,5
+twoerer,23761370,4
+97059252,23761370,3
+deargod123,23761370,5
+tree-on-feet,23761370,4
+cfqjw,23761370,5
+54710397,23761370,-1
+18274942,23761370,3
+kongyijiu,23761370,-1
+57442857,23761370,4
+120282120,23761370,5
+sorrySomnus,23761370,5
+56372085,23761370,5
+cathyzcl,23761370,5
+xyzzecho,23761370,4
+83486792,23761370,4
+42636555,23761370,3
+41963538,23761370,5
+muzikjie,23761370,5
+Realgirl,23761370,4
+markyourass,23761370,4
+litikky,23761370,5
+50941682,23761370,5
+50941682,23761370,5
+evensky,23761370,3
+3778613,23761370,3
+Se7enlee,23761370,5
+TomiOh,23761370,3
+seamouse,23761370,4
+2453639,23761370,4
+102549000,23761370,3
+babelotus,23761370,4
+46654545,23761370,4
+102626556,23761370,5
+90813983,23761370,5
+51775024,23761370,4
+51435361,23761370,4
+49251016,23761370,5
+xiyuanyumutou,23761370,-1
+caoxiaohai,23761370,3
+cherryhj,23761370,2
+89838973,23761370,4
+1485397,23761370,3
+1319544,23761370,5
+baijvguoxi,23761370,4
+102203140,23761370,3
+49191528,23761370,3
+47057381,23761370,5
+40383640,23761370,-1
+3497971,23761370,5
+carrie_lo,23761370,3
+ice_rabbit,23761370,3
+praguenight,23761370,3
+94886676,23761370,4
+sin0503,23761370,3
+slwilliam,23761370,4
+48795907,23761370,5
+tincnie,23761370,3
+agoooooo9794xy,23761370,4
+45331642,23761370,3
+4784880,23761370,4
+lavende,23761370,2
+121180696,23761370,5
+sunnyshd,23761370,4
+livyluqin,23761370,5
+79105910,23761370,3
+fantasy_yang,23761370,5
+70855502,23761370,-1
+misstraveller,23761370,4
+37744023,23761370,3
+36945889,23761370,4
+bubblechen,23761370,4
+3556906,23761370,3
+artama,23761370,4
+4685050,23761370,3
+48271739,23761370,5
+40328376,23761370,4
+83460153,23761370,4
+57578844,23761370,5
+XuAn.,23761370,5
+120672729,23761370,4
+62473874,23761370,4
+59818683,23761370,5
+machishow,23761370,5
+spx,23761370,4
+fengqilianyi,23761370,4
+miss_shirley,23761370,1
+2414351,23761370,4
+3481421,23761370,4
+67254469,23761370,5
+65800978,23761370,5
+97105227,23761370,5
+61321953,23761370,5
+3362301,23761370,4
+LesleyHwang,23761370,5
+Jealousy,23761370,3
+2210296,23761370,5
+76017260,23761370,5
+65070649,23761370,4
+cielz,23761370,4
+60339642,23761370,4
+simontien,23761370,4
+60885363,23761370,4
+57093382,23761370,4
+51174120,23761370,5
+126994808,23761370,4
+ruoku,23761370,5
+4916306,23761370,5
+54173979,23761370,5
+11627543,23761370,5
+4420483,23761370,5
+daisyhhh,23761370,5
+1189341,23761370,3
+60725247,23761370,2
+1090307,23761370,4
+52688016,23761370,5
+eason0331,23761370,3
+72750731,23761370,3
+6913975,23761370,3
+huahuo0612,23761370,3
+49319979,23761370,3
+yingyuan,23761370,5
+54740080,23761370,4
+47516693,23761370,3
+jessedong,23761370,4
+47874127,23761370,5
+shunchong,23761370,5
+voler,23761370,3
+sisi0lisky,23761370,4
+66239370,23761370,4
+cxqyy8,23761370,4
+125750519,23761370,2
+ZazzyFelix,23761370,5
+weepbird,23761370,3
+johnnielan,23761370,5
+121389553,23761370,4
+6332449,23761370,4
+Rinnn,23761370,4
+2021350,23761370,4
+csf,23761370,4
+msshallow,23761370,3
+gaxiaomi,23761370,5
+2141380,23761370,4
+yan7478,23761370,3
+126981940,23761370,5
+kia-x,23761370,3
+34000533,23761370,4
+Nocold,23761370,4
+3494073,23761370,5
+zmx447684192,23761370,4
+jiding,23761370,4
+46574492,23761370,5
+60404546,23761370,4
+66995930,23761370,5
+63874255,23761370,4
+79689889,23761370,5
+37051935,23761370,5
+bunny0921,23761370,4
+zuozuo1990,23761370,5
+sentexiaohu,23761370,3
+1113980,23761370,4
+Coanl,23761370,5
+77620484,23761370,5
+5380246,23761370,4
+vikissss,23761370,4
+122273872,23761370,4
+36849431,23761370,5
+56905488,23761370,5
+126826918,23761370,5
+50156760,23761370,4
+78571536,23761370,5
+56267380,23761370,5
+52454819,23761370,4
+piaoxue-79,23761370,4
+126970287,23761370,4
+bing,23761370,3
+buqiuxiaode,23761370,4
+1793618,23761370,2
+heyunlong,23761370,4
+1263662,23761370,4
+Etoilefilante,23761370,4
+feichaiyan,23761370,4
+45582735,23761370,4
+87547812,23761370,4
+52395760,23761370,3
+77313579,23761370,5
+79803791,23761370,4
+78569958,23761370,4
+84004672,23761370,4
+3308515,23761370,5
+63164269,23761370,3
+29509052,23761370,5
+47368646,23761370,2
+xuzhezhen,23761370,5
+126843454,23761370,5
+123710346,23761370,5
+37552777,23761370,4
+57305182,23761370,5
+3143052,23761370,5
+zimingyulin,23761370,4
+yimin99,23761370,5
+73614049,23761370,1
+49842997,23761370,5
+49842997,23761370,5
+43389668,23761370,4
+yashamaru,23761370,3
+peach_lee,23761370,4
+88367720,23761370,4
+4253230,23761370,5
+55507630,23761370,4
+71498553,23761370,2
+Singreen,23761370,4
+moyia,23761370,4
+121073792,23761370,5
+1666594,23761370,4
+51009437,23761370,5
+65252438,23761370,5
+26739863,23761370,5
+73662943,23761370,5
+moe_gor,23761370,3
+51183747,23761370,5
+chococo,23761370,3
+iriszhong,23761370,5
+2833136,23761370,5
+1795295,23761370,5
+58863257,23761370,5
+45122610,23761370,3
+4709838,23761370,4
+NightLikeThis,23761370,4
+cuodou,23761370,3
+50336588,23761370,-1
+60961304,23761370,5
+janeythai,23761370,4
+59174738,23761370,5
+57541099,23761370,4
+33229519,23761370,4
+tuotuodetuo,23761370,3
+48625356,23761370,-1
+baby4inlove,23761370,5
+viviwei.luo,23761370,-1
+68260452,23761370,5
+38622536,23761370,4
+48141235,23761370,5
+50990630,23761370,5
+90115301,23761370,5
+125604846,23761370,5
+3713265,23761370,3
+49647538,23761370,5
+Acrazydddd,23761370,5
+88742586,23761370,-1
+ricochen,23761370,3
+57942822,23761370,4
+elwa.wu,23761370,4
+moguduola,23761370,3
+nic1990,23761370,4
+67240733,23761370,4
+65319841,23761370,3
+2210936,23761370,-1
+47066344,23761370,4
+Jacky_L,23761370,5
+lostef,23761370,5
+Tournesolcc,23761370,4
+72438704,23761370,5
+4429841,23761370,4
+jin811089856,23761370,5
+djinn77,23761370,5
+41130036,23761370,3
+sharp.shooter,23761370,4
+66179555,23761370,5
+36618935,23761370,4
+heyowl,23761370,3
+Dark.Liykas,23761370,5
+92556077,23761370,5
+shimmer825,23761370,4
+ihavamap,23761370,5
+5116652,23761370,3
+122100706,23761370,5
+28009968,23761370,5
+50447840,23761370,5
+lilyigreg,23761370,5
+2660345,23761370,5
+64245784,23761370,5
+skylightking,23761370,5
+TingUndo,23761370,4
+56453885,23761370,2
+126621481,23761370,3
+hustzsc,23761370,3
+jinzimiao,23761370,5
+hwylesley,23761370,4
+Vanessa...,23761370,4
+80729497,23761370,1
+43859610,23761370,5
+57474326,23761370,5
+79932218,23761370,5
+34862856,23761370,4
+45084687,23761370,3
+lu19,23761370,4
+35364683,23761370,5
+46590871,23761370,3
+4337215,23761370,3
+allenken,23761370,4
+71756751,23761370,4
+matcha717,23761370,4
+57166176,23761370,5
+kkkkaylee,23761370,5
+ggrabbit,23761370,3
+56616392,23761370,5
+44176282,23761370,4
+alianhei,23761370,5
+xubaoxin,23761370,3
+3173862,23761370,3
+30084869,23761370,3
+Pathon,23761370,2
+1436467,23761370,4
+Riv-Riv,23761370,4
+90465571,23761370,5
+50059096,23761370,5
+58879384,23761370,5
+43814222,23761370,5
+41002663,23761370,4
+2724011,23761370,5
+emusun,23761370,5
+49115680,23761370,5
+49115680,23761370,5
+maniacmolecules,23761370,4
+51419685,23761370,3
+49541218,23761370,5
+36814878,23761370,5
+showerfly,23761370,4
+mpower007,23761370,4
+62119610,23761370,4
+59430879,23761370,3
+anniecool,23761370,4
+wfay,23761370,4
+91379888,23761370,5
+3745417,23761370,5
+badapple,23761370,4
+shuizailushang,23761370,3
+2857806,23761370,4
+zha-zha-mu,23761370,4
+alvinhui,23761370,4
+3179740,23761370,4
+124789668,23761370,5
+56857349,23761370,5
+laragreen,23761370,5
+xiaoqianquan,23761370,4
+6915068,23761370,3
+3538505,23761370,5
+yikiv,23761370,5
+74671754,23761370,4
+xn52bm,23761370,3
+71961011,23761370,1
+48051585,23761370,3
+man7shuo,23761370,3
+f.i.s.h,23761370,4
+ningning9164,23761370,-1
+3688402,23761370,-1
+119997789,23761370,5
+zhy650218,23761370,2
+yuweeney,23761370,3
+mysheepy,23761370,5
+90825023,23761370,4
+34438026,23761370,-1
+34438026,23761370,-1
+58719132,23761370,4
+51866043,23761370,-1
+43339020,23761370,1
+yueqianjin,23761370,4
+hllgreen,23761370,-1
+65053075,23761370,5
+lulupink,23761370,5
+126931660,23761370,4
+sarah_cat,23761370,3
+zhm656,23761370,1
+moki_anchoret,23761370,4
+thogiac,23761370,-1
+121976459,23761370,4
+32074412,23761370,4
+2474699,23761370,2
+miyuwen,23761370,5
+68370905,23761370,4
+qimengmm,23761370,5
+42527738,23761370,5
+47270763,23761370,4
+81981861,23761370,3
+49215844,23761370,5
+Boomer,23761370,4
+caiwenren,23761370,2
+59594700,23761370,4
+mirroroo,23761370,5
+winnie330,23761370,4
+49295547,23761370,4
+46251702,23761370,3
+61316156,23761370,5
+3807164,23761370,3
+55988027,23761370,4
+57572255,23761370,5
+iamloco,23761370,5
+62760636,23761370,5
+126924969,23761370,5
+61007004,23761370,5
+58090967,23761370,4
+tdpdaisy,23761370,5
+49114799,23761370,5
+29818764,23761370,-1
+amoryqq,23761370,5
+60647437,23761370,5
+2210223,23761370,3
+yinmouren,23761370,3
+32736533,23761370,-1
+59956259,23761370,4
+haemakoto,23761370,4
+LphilosopherL,23761370,3
+aiwangyue,23761370,5
+Snowty,23761370,5
+lvkunpeng,23761370,3
+69529988,23761370,4
+elysestyle,23761370,5
+misslather,23761370,4
+ritawwx,23761370,4
+nuannuan827,23761370,4
+48207203,23761370,5
+1689876,23761370,4
+oHaHa,23761370,4
+shinyhjx,23761370,4
+sss214,23761370,4
+1730018,23761370,3
+2968002,23761370,5
+43664862,23761370,4
+4021722,23761370,5
+7772399,23761370,2
+54084348,23761370,2
+lyzheng,23761370,4
+aviva-2011,23761370,4
+moyu,23761370,3
+68500162,23761370,5
+60016862,23761370,3
+70255132,23761370,4
+56526840,23761370,5
+SaDesheng,23761370,3
+124151543,23761370,4
+xiaohuai533,23761370,4
+wuxiaocao,23761370,4
+2851268,23761370,5
+2710386,23761370,4
+43773651,23761370,3
+121353064,23761370,3
+66384227,23761370,4
+clozeshaw,23761370,3
+86451253,23761370,5
+sabrinaloveyou,23761370,4
+58287820,23761370,4
+4439018,23761370,5
+64947156,23761370,5
+Janiceznl,23761370,5
+47329757,23761370,3
+1465852,23761370,2
+hjing,23761370,3
+smsmsmj,23761370,2
+MsLulu,23761370,3
+luxury_lixi,23761370,5
+57301722,23761370,4
+23498392,23761370,2
+moon.s11_11,23761370,5
+danshishi,23761370,4
+YIN017,23761370,3
+voene,23761370,4
+elvies,23761370,3
+53829970,23761370,4
+70497722,23761370,5
+54090082,23761370,4
+4202267,23761370,5
+xiaqianhui,23761370,5
+41959776,23761370,4
+80283476,23761370,4
+3519059,23761370,3
+92392583,23761370,1
+28631660,23761370,4
+61721612,23761370,5
+56323283,23761370,4
+52396155,23761370,3
+72786209,23761370,5
+Rae8023,23761370,3
+67668770,23761370,3
+66848309,23761370,3
+iceblue1124,23761370,5
+72936086,23761370,4
+BIGAC,23761370,2
+yuyanhello,23761370,5
+36071533,23761370,3
+candy_maoshijia,23761370,4
+candyqgy,23761370,5
+52860390,23761370,3
+istas,23761370,4
+4534729,23761370,4
+mocouhs,23761370,4
+49521395,23761370,4
+3138357,23761370,5
+cello22,23761370,4
+43125642,23761370,3
+40684892,23761370,5
+naizhengtan,23761370,5
+sunxiaozhao,23761370,3
+bluedestiny,23761370,5
+weldon,23761370,3
+1779389,23761370,4
+57061185,23761370,4
+xyl520,23761370,4
+worry,23761370,3
+64450665,23761370,5
+4580047,23761370,5
+34733138,23761370,4
+Polo79,23761370,4
+45745443,23761370,3
+74869653,23761370,3
+sjy78110,23761370,4
+ggrise,23761370,3
+106641965,23761370,5
+58480998,23761370,3
+5960133,23761370,4
+1479136,23761370,5
+moonwater,23761370,4
+ytt1990,23761370,-1
+102824142,23761370,3
+84729695,23761370,-1
+75705790,23761370,5
+redsmile,23761370,5
+3410435,23761370,4
+imlynn7,23761370,3
+ragenee,23761370,4
+3012688,23761370,4
+suwa,23761370,3
+tiffanyqiang,23761370,5
+capricornslythe,23761370,4
+im_miki,23761370,5
+3030378,23761370,3
+53405870,23761370,3
+64383672,23761370,4
+126894330,23761370,4
+62835550,23761370,5
+51542054,23761370,3
+126325087,23761370,5
+82321476,23761370,5
+48517531,23761370,5
+1360943,23761370,4
+evolastaroth,23761370,4
+85262730,23761370,5
+41670015,23761370,3
+57149098,23761370,5
+michaelxu1205,23761370,3
+chahom,23761370,5
+56102108,23761370,5
+39168659,23761370,3
+44217355,23761370,5
+91257255,23761370,4
+101393970,23761370,3
+smalluu,23761370,4
+52334416,23761370,5
+126892283,23761370,5
+echo-wyl,23761370,4
+KeerDee,23761370,5
+62928630,23761370,4
+zyjforever,23761370,5
+moonliushuang,23761370,4
+libin1012,23761370,4
+61654956,23761370,4
+kaiqiangwei,23761370,4
+2789604,23761370,5
+28418028,23761370,3
+80581175,23761370,5
+37747092,23761370,5
+dreamersjcat,23761370,4
+minqi,23761370,4
+Elfiny,23761370,5
+torpedos,23761370,3
+126889777,23761370,5
+63768542,23761370,-1
+52443122,23761370,4
+M19950605,23761370,5
+54829004,23761370,3
+51845720,23761370,4
+gameboy72,23761370,5
+52384106,23761370,4
+52384106,23761370,4
+36853373,23761370,5
+riscky,23761370,3
+42428473,23761370,5
+xinyu1890,23761370,4
+76082574,23761370,3
+AllanBen,23761370,5
+tt3rlx,23761370,5
+3000688,23761370,4
+aptx0922,23761370,5
+shifanghe,23761370,3
+baiwei_ren,23761370,5
+119592715,23761370,2
+partybird,23761370,4
+13262749,23761370,4
+3487006,23761370,5
+maiomiao,23761370,5
+59361957,23761370,5
+asfhl,23761370,5
+68538489,23761370,5
+68538489,23761370,5
+57671679,23761370,5
+54713128,23761370,2
+l547302673,23761370,4
+37958817,23761370,5
+50351028,23761370,4
+49507964,23761370,3
+109027259,23761370,5
+silvergrey,23761370,-1
+tammysky,23761370,3
+21354916,23761370,2
+12832281,23761370,4
+52957567,23761370,4
+93484113,23761370,5
+reginahwang,23761370,4
+thinhunan,23761370,4
+54038897,23761370,5
+ccmaycry,23761370,4
+126884365,23761370,5
+48969108,23761370,5
+emily7,23761370,3
+odin_chen,23761370,3
+chenxiliu,23761370,4
+43332807,23761370,4
+kthinker,23761370,3
+aeon4ever,23761370,5
+43683389,23761370,5
+3845975,23761370,4
+3007031,23761370,-1
+iMmmmandy,23761370,4
+119999952,23761370,3
+62917161,23761370,4
+18046588,23761370,5
+tobezyc,23761370,4
+49902714,23761370,4
+57079509,23761370,5
+59739544,23761370,4
+kenishi,23761370,4
+41037171,23761370,5
+54065884,23761370,5
+rhc,23761370,5
+lishunli,23761370,4
+zpavel,23761370,5
+3461171,23761370,5
+59794841,23761370,5
+jayscorpio,23761370,5
+2448513,23761370,4
+lijinfengo,23761370,5
+syamazing,23761370,4
+serafina0,23761370,-1
+44652353,23761370,3
+73284069,23761370,4
+62471533,23761370,3
+2780974,23761370,5
+49636761,23761370,5
+54671889,23761370,5
+WillZz,23761370,3
+67678482,23761370,3
+48641730,23761370,5
+echorus-walker,23761370,4
+etsukirakira,23761370,3
+64549779,23761370,5
+shmilymichelle,23761370,4
+liqiyao8931,23761370,5
+qishizaixing,23761370,5
+47661267,23761370,4
+2307699,23761370,5
+31316457,23761370,5
+83993012,23761370,5
+56493073,23761370,5
+4302651,23761370,5
+48079918,23761370,3
+1320248,23761370,4
+buaojiao,23761370,5
+dream_lee,23761370,5
+70627079,23761370,4
+xiongxin414,23761370,5
+54342985,23761370,5
+TERRYBEAR,23761370,4
+Jsmonica,23761370,4
+60341308,23761370,4
+43003860,23761370,4
+ecroment,23761370,1
+59776106,23761370,4
+duora11,23761370,4
+52286838,23761370,5
+45870400,23761370,5
+f-xiao,23761370,3
+96536272,23761370,5
+sinclair,23761370,3
+82421653,23761370,5
+74497795,23761370,5
+3790160,23761370,5
+dwj,23761370,4
+jiushifubi,23761370,5
+driftaway,23761370,4
+94254038,23761370,3
+59927608,23761370,4
+sunflowersp,23761370,4
+54931918,23761370,5
+perisezk,23761370,5
+may77501,23761370,5
+41546060,23761370,5
+78529584,23761370,4
+119384253,23761370,4
+53877844,23761370,5
+harashi,23761370,4
+126871090,23761370,2
+54750797,23761370,4
+44146004,23761370,5
+47471768,23761370,3
+philoInSH,23761370,4
+46435584,23761370,3
+44646589,23761370,3
+126874996,23761370,4
+52901753,23761370,5
+41198675,23761370,3
+yiyisilent,23761370,4
+60126055,23761370,5
+xiaohuicherish,23761370,5
+3014386,23761370,3
+82347389,23761370,5
+coco921,23761370,5
+3312294,23761370,3
+sauking,23761370,3
+yoyospace,23761370,4
+4804072,23761370,-1
+115702103,23761370,5
+jackchen,23761370,4
+6811341,23761370,5
+1958578,23761370,4
+sophie1900,23761370,5
+25721762,23761370,5
+44630615,23761370,4
+Halbert-Sun,23761370,5
+casper2fly,23761370,4
+34595308,23761370,5
+bu2zz,23761370,5
+Eileen-Lin,23761370,4
+65189939,23761370,5
+102838934,23761370,5
+shixuejiaa,23761370,4
+19698586,23761370,5
+69470816,23761370,3
+kylema,23761370,4
+64855996,23761370,4
+81176312,23761370,5
+3758998,23761370,4
+Xcher_L,23761370,-1
+4256061,23761370,3
+leokelan,23761370,4
+33973521,23761370,4
+kwg18168,23761370,5
+26487427,23761370,4
+Erinnerung,23761370,5
+logicmd,23761370,3
+63758631,23761370,4
+changle0605,23761370,3
+51362861,23761370,3
+xiangxing98,23761370,5
+55545798,23761370,4
+lullaby_ly,23761370,4
+nirvanadroid,23761370,4
+47378966,23761370,5
+68101692,23761370,5
+johnlane360,23761370,3
+4057118,23761370,4
+evastone,23761370,4
+58004932,23761370,4
+rainyu,23761370,4
+76109816,23761370,5
+49689956,23761370,4
+manchukhan,23761370,5
+3339865,23761370,4
+vaan_konh,23761370,5
+48768145,23761370,4
+Nanally,23761370,1
+54175070,23761370,5
+1743863,23761370,4
+62183875,23761370,4
+lotus_yc,23761370,4
+29723781,23761370,4
+75555636,23761370,5
+55321247,23761370,3
+126865052,23761370,5
+47231110,23761370,3
+roylaw,23761370,4
+50466013,23761370,4
+46030667,23761370,4
+51126355,23761370,3
+40296009,23761370,5
+63629111,23761370,5
+109867334,23761370,5
+51928372,23761370,3
+myclover_luo,23761370,3
+ranrann,23761370,5
+1948340,23761370,3
+91545129,23761370,5
+50240966,23761370,4
+30144740,23761370,4
+mandy-sl,23761370,5
+smallplaice,23761370,5
+dragonlinaping,23761370,5
+macadam004,23761370,4
+lilith1150511,23761370,3
+momohei,23761370,4
+erin-cl,23761370,4
+shsong,23761370,4
+65360201,23761370,5
+65072386,23761370,5
+scaren,23761370,3
+clar,23761370,-1
+32805175,23761370,5
+3468604,23761370,-1
+mimzylala,23761370,4
+80943037,23761370,3
+lyshan,23761370,4
+59782397,23761370,3
+minormirror,23761370,5
+lalalameans,23761370,5
+Total-recall,23761370,1
+57768315,23761370,4
+damaimmm,23761370,-1
+MephistophelesK,23761370,4
+55667519,23761370,4
+55357697,23761370,5
+cidishenhao,23761370,5
+1608731,23761370,3
+52460447,23761370,4
+mjtang,23761370,5
+48525283,23761370,-1
+46902916,23761370,5
+vicness,23761370,5
+timememo,23761370,4
+53566919,23761370,5
+50565369,23761370,5
+ninilovekaikai,23761370,5
+mao87523,23761370,5
+63978060,23761370,4
+119297823,23761370,4
+119743207,23761370,4
+67242863,23761370,4
+59745943,23761370,5
+31704533,23761370,5
+flyingcrabii,23761370,4
+AXIN930823,23761370,4
+91872215,23761370,5
+52519057,23761370,2
+wuqilong,23761370,3
+q168,23761370,4
+zhouqianyun,23761370,5
+82522249,23761370,4
+62017262,23761370,5
+insomnious,23761370,5
+80526243,23761370,3
+greatlollypop,23761370,3
+dailypop,23761370,5
+43354403,23761370,5
+66344319,23761370,4
+lzw5546,23761370,3
+56057081,23761370,3
+2151925,23761370,5
+xssmm,23761370,5
+dormancy,23761370,5
+53621487,23761370,4
+silanruoxi,23761370,4
+60259856,23761370,5
+ludi0511,23761370,4
+124141483,23761370,5
+121985201,23761370,4
+49622516,23761370,4
+xiamudemao,23761370,3
+64239323,23761370,5
+4560771,23761370,5
+bonheursonne,23761370,4
+64873674,23761370,4
+cloudyxiaoxiang,23761370,3
+63746510,23761370,5
+1963480,23761370,2
+63010729,23761370,4
+linq,23761370,5
+9518731,23761370,5
+50092625,23761370,5
+70662258,23761370,5
+simon18735,23761370,4
+seasunflower,23761370,4
+69454424,23761370,5
+115172233,23761370,3
+csy2526,23761370,5
+77001028,23761370,3
+46038574,23761370,3
+61184680,23761370,5
+43132253,23761370,4
+3679385,23761370,4
+54322482,23761370,3
+beini125,23761370,3
+48859024,23761370,5
+49798561,23761370,4
+76156771,23761370,4
+Rockpri,23761370,4
+41162988,23761370,5
+51384913,23761370,2
+68878827,23761370,5
+4260903,23761370,4
+3470039,23761370,3
+58636228,23761370,5
+tuya-,23761370,5
+49493716,23761370,5
+74422661,23761370,4
+45446401,23761370,4
+kidwingfly,23761370,5
+52071708,23761370,5
+15018167,23761370,-1
+46282005,23761370,3
+47748422,23761370,5
+feelnothing,23761370,3
+76138813,23761370,5
+xiejiaxin1209,23761370,4
+chenxiaoran,23761370,4
+my1900,23761370,3
+61474383,23761370,5
+65790299,23761370,5
+75850688,23761370,3
+36282135,23761370,3
+assassinzzh,23761370,5
+54441804,23761370,3
+64376109,23761370,3
+121245426,23761370,3
+53642273,23761370,4
+ginnyisbest,23761370,5
+44206290,23761370,5
+120280467,23761370,4
+mushroomlol,23761370,5
+70741441,23761370,5
+46911720,23761370,4
+zoechou128,23761370,4
+3624026,23761370,1
+72191576,23761370,5
+45198386,23761370,5
+47029331,23761370,4
+ejw,23761370,3
+122316070,23761370,4
+119301627,23761370,4
+3960547,23761370,1
+39315197,23761370,3
+60832172,23761370,3
+57646854,23761370,5
+leanne0405,23761370,5
+48463405,23761370,3
+shoufy,23761370,4
+4307095,23761370,4
+small_matty,23761370,4
+2212972,23761370,4
+sabrinakeh,23761370,5
+17589484,23761370,5
+1252761,23761370,4
+57656194,23761370,5
+momomaria,23761370,3
+MrBlackSwan,23761370,2
+2185742,23761370,4
+45245030,23761370,4
+2610976,23761370,5
+stef23,23761370,4
+1663187,23761370,4
+zhuchenxiapollo,23761370,4
+QPF,23761370,3
+35135916,23761370,5
+58899603,23761370,3
+vivianne43,23761370,4
+57972218,23761370,3
+ccccoffee,23761370,4
+attendrai4909,23761370,3
+41575985,23761370,5
+jefffeng,23761370,5
+36403736,23761370,5
+57572100,23761370,3
+3779908,23761370,5
+64420163,23761370,4
+echo0607,23761370,4
+71321179,23761370,5
+jimmyusher,23761370,3
+115501579,23761370,4
+39177719,23761370,5
+122451528,23761370,5
+1189538,23761370,4
+79614333,23761370,4
+Jenny_Hsin,23761370,5
+37883393,23761370,4
+81860027,23761370,5
+coffeedog,23761370,3
+68374321,23761370,4
+34033819,23761370,3
+qinqinluotuo,23761370,4
+66749335,23761370,4
+18088011,23761370,4
+4159078,23761370,3
+85366942,23761370,4
+60801673,23761370,3
+39580713,23761370,4
+51903311,23761370,5
+44265925,23761370,3
+49583310,23761370,3
+81660493,23761370,4
+54193079,23761370,3
+lauriexue,23761370,5
+40645830,23761370,5
+zuijiawoniu,23761370,4
+39986664,23761370,4
+qingh,23761370,4
+40281229,23761370,3
+qikapu,23761370,-1
+joyjoyjoychan,23761370,4
+52420102,23761370,4
+83337333,23761370,5
+65417437,23761370,4
+66034931,23761370,5
+mayday_paopao,23761370,4
+91787589,23761370,4
+sawakoluo,23761370,3
+indiepop,23761370,4
+37415458,23761370,5
+shanglin2740,23761370,5
+littleshy,23761370,3
+119262490,23761370,3
+52191073,23761370,4
+paobecky,23761370,5
+41692787,23761370,5
+28340419,23761370,4
+80370344,23761370,5
+57017199,23761370,5
+eujenejingww,23761370,5
+1091787,23761370,-1
+magiceyes178084,23761370,5
+laoziiii,23761370,4
+38083634,23761370,3
+turbine,23761370,4
+54764633,23761370,4
+57742250,23761370,4
+3189855,23761370,2
+10033633,23761370,5
+69110012,23761370,4
+wkwjolene,23761370,4
+2462762,23761370,5
+52245563,23761370,3
+49444605,23761370,5
+124971974,23761370,3
+58804593,23761370,2
+52004190,23761370,3
+wangsanjin,23761370,3
+45528596,23761370,-1
+2234320,23761370,4
+shaxiaohai,23761370,5
+4276720,23761370,4
+82876812,23761370,4
+57920541,23761370,4
+61368019,23761370,3
+91832975,23761370,5
+qixiaole,23761370,5
+35653009,23761370,4
+livpaopao,23761370,4
+18349242,23761370,4
+73150320,23761370,4
+51431288,23761370,5
+islands-,23761370,4
+67730949,23761370,5
+119226922,23761370,4
+61797915,23761370,3
+65556710,23761370,5
+wenrouze,23761370,-1
+52618831,23761370,4
+shirak,23761370,3
+myfairytale,23761370,-1
+47672733,23761370,4
+3231704,23761370,-1
+1101526,23761370,3
+Stitchs,23761370,3
+zfer,23761370,5
+Kathy0521,23761370,5
+Violetbaby,23761370,5
+76430480,23761370,5
+16097253,23761370,5
+xeniacheung,23761370,5
+64044115,23761370,4
+janeshowlove,23761370,3
+4148066,23761370,4
+124532840,23761370,5
+46656559,23761370,4
+memmao,23761370,5
+minachou16,23761370,3
+34063715,23761370,3
+77056370,23761370,4
+3059063,23761370,4
+w74,23761370,3
+68403341,23761370,5
+1085901,23761370,3
+47404412,23761370,4
+eyeinhand,23761370,3
+50160691,23761370,4
+lidiot,23761370,3
+myice,23761370,4
+84930768,23761370,4
+2167975,23761370,4
+3280764,23761370,4
+asvra,23761370,3
+curlyfox,23761370,4
+58675512,23761370,2
+nyx0115,23761370,5
+122517698,23761370,3
+randichou,23761370,5
+ak47mig,23761370,4
+46292369,23761370,4
+96380564,23761370,4
+32562476,23761370,3
+zhj_810,23761370,4
+calculus123,23761370,5
+nlxs,23761370,-1
+Not.W.Sad,23761370,4
+suchengmo,23761370,5
+palmasz,23761370,4
+cherry512,23761370,-1
+gemini_zhang,23761370,4
+pandakun,23761370,5
+62440294,23761370,4
+57738437,23761370,5
+Hanry7,23761370,5
+51061898,23761370,2
+81222005,23761370,5
+4637077,23761370,3
+lovemin,23761370,4
+43507289,23761370,5
+95298147,23761370,4
+bicesay,23761370,4
+61551663,23761370,4
+68585121,23761370,3
+carlhan,23761370,5
+13984024,23761370,5
+holic_mao,23761370,3
+52898475,23761370,3
+81002937,23761370,5
+121382290,23761370,4
+63253187,23761370,4
+yamimistykiki,23761370,3
+58229887,23761370,5
+sakana928,23761370,4
+73910323,23761370,4
+wildkidpk,23761370,3
+loveyzj13,23761370,5
+62368815,23761370,5
+2787490,23761370,4
+taotown,23761370,3
+mymx,23761370,4
+zengcheng,23761370,3
+yunta,23761370,4
+81364422,23761370,4
+zongzongzong,23761370,5
+niccal,23761370,4
+xiao-wei,23761370,4
+47924060,23761370,4
+3709827,23761370,3
+2799911,23761370,4
+122413256,23761370,4
+51186771,23761370,3
+57857957,23761370,4
+59800410,23761370,4
+lagloria,23761370,3
+35342792,23761370,4
+45762104,23761370,5
+iamaprilm,23761370,4
+Utopia.YY,23761370,4
+barbarossa1753,23761370,4
+amanda918,23761370,-1
+alden,23761370,5
+34061777,23761370,5
+marioii,23761370,-1
+44222159,23761370,4
+luobaise,23761370,5
+tpppp,23761370,5
+Maze10888119,23761370,5
+wuyongzhishuo,23761370,3
+48583907,23761370,3
+3503331,23761370,3
+67019496,23761370,4
+1014275,23761370,4
+3640052,23761370,4
+39813056,23761370,4
+47226234,23761370,4
+59773743,23761370,4
+62113839,23761370,4
+47230580,23761370,5
+126816369,23761370,3
+53856501,23761370,4
+54551269,23761370,4
+62288515,23761370,5
+skloveshaka,23761370,3
+Vincentwu,23761370,3
+mxq,23761370,5
+therecomy,23761370,3
+26512693,23761370,5
+58204456,23761370,4
+67023517,23761370,4
+67023517,23761370,4
+wsqabc,23761370,5
+EMIIINEM,23761370,5
+126218323,23761370,4
+fishgor,23761370,4
+67117129,23761370,5
+GNM,23761370,3
+su311,23761370,4
+timai,23761370,5
+49084630,23761370,5
+37364562,23761370,-1
+zhangnawind,23761370,5
+4348412,23761370,4
+119364125,23761370,3
+51488168,23761370,5
+122274292,23761370,5
+60188579,23761370,4
+3096173,23761370,4
+manuela,23761370,5
+qrtqet45,23761370,5
+77121351,23761370,4
+hawaiii,23761370,4
+53907163,23761370,5
+55833673,23761370,4
+122710059,23761370,4
+53773450,23761370,5
+36784029,23761370,4
+lovely_Mei,23761370,3
+40544936,23761370,5
+44500339,23761370,4
+1724293,23761370,2
+93355215,23761370,4
+jean_zx,23761370,5
+yousha,23761370,3
+65173707,23761370,4
+apeipeipeipei,23761370,5
+asparkle,23761370,-1
+116050896,23761370,5
+caoxiyue,23761370,4
+58245871,23761370,5
+Oooop,23761370,5
+69395247,23761370,5
+64122386,23761370,4
+snowdrop14,23761370,4
+shuzai97,23761370,5
+15016668,23761370,4
+mrserious,23761370,3
+100750331,23761370,5
+44878815,23761370,5
+55638611,23761370,5
+xiaojidunmoguxi,23761370,4
+33392381,23761370,5
+2486638,23761370,1
+55489432,23761370,4
+62257999,23761370,4
+46058827,23761370,5
+2646418,23761370,3
+ninthcity,23761370,4
+57915460,23761370,5
+qkl330,23761370,5
+4470750,23761370,4
+lanyitong21,23761370,4
+103510667,23761370,-1
+73033279,23761370,4
+79483975,23761370,5
+122290574,23761370,3
+cnxh,23761370,3
+63228083,23761370,3
+46567709,23761370,5
+ccsisy,23761370,5
+zhoujingsi,23761370,3
+50268348,23761370,5
+83099680,23761370,3
+53516691,23761370,4
+koalajiang,23761370,5
+4867856,23761370,4
+64173610,23761370,4
+44556619,23761370,4
+69096076,23761370,5
+58703874,23761370,5
+volnet,23761370,4
+nikiyun,23761370,5
+49711704,23761370,4
+liaojiafen,23761370,4
+rie_fu,23761370,2
+jccat,23761370,-1
+74105180,23761370,5
+55817767,23761370,3
+Csq1994106,23761370,4
+89097837,23761370,4
+CherryChI,23761370,4
+45030783,23761370,4
+rpapa,23761370,5
+98271323,23761370,4
+65915339,23761370,5
+63054099,23761370,2
+59406381,23761370,3
+57615473,23761370,4
+47436910,23761370,5
+3510245,23761370,4
+78824064,23761370,4
+57377419,23761370,4
+84007571,23761370,3
+maxmaybe,23761370,4
+64624018,23761370,5
+69391741,23761370,4
+4051819,23761370,3
+49095874,23761370,4
+KangTeukLove,23761370,5
+53437305,23761370,4
+shuizhixing,23761370,4
+sofahuang,23761370,4
+milesaway,23761370,3
+Bainan,23761370,5
+4587495,23761370,5
+kangjie123,23761370,4
+50971465,23761370,3
+Jiang_jss,23761370,5
+67581850,23761370,4
+26275123,23761370,4
+54342192,23761370,3
+83441602,23761370,4
+49828955,23761370,4
+88074921,23761370,5
+64572749,23761370,5
+46247128,23761370,3
+57445690,23761370,4
+bobobobobo,23761370,-1
+honwhy,23761370,4
+67494152,23761370,4
+shmilabc,23761370,3
+52097875,23761370,2
+roytalent,23761370,3
+vivia7n,23761370,4
+52436913,23761370,4
+dreamcm,23761370,4
+Ginatea,23761370,4
+23922595,23761370,3
+58313086,23761370,5
+dairytea,23761370,2
+lucia_star,23761370,5
+4527907,23761370,3
+62439247,23761370,5
+57467616,23761370,4
+60862702,23761370,4
+1849697,23761370,4
+36184244,23761370,3
+2949604,23761370,5
+qdzd1991,23761370,4
+dwindywen,23761370,5
+124596387,23761370,5
+beyond007,23761370,5
+83244806,23761370,5
+79080709,23761370,4
+ponyoicy,23761370,5
+71837063,23761370,5
+1302842,23761370,4
+T.V.Zoe,23761370,3
+miss_syh,23761370,4
+126509423,23761370,-1
+41148862,23761370,4
+126750212,23761370,3
+79194174,23761370,5
+53840539,23761370,3
+61160709,23761370,3
+masterplan,23761370,3
+47531635,23761370,5
+NeoCui,23761370,2
+iouhuan,23761370,4
+2782723,23761370,3
+35121818,23761370,4
+fufuya,23761370,4
+by-litany,23761370,4
+Sad.chang,23761370,-1
+xmzjjlbc,23761370,5
+1390707,23761370,5
+126437677,23761370,5
+61932917,23761370,4
+57489443,23761370,5
+xuyinaxxxxxxx,23761370,5
+41006128,23761370,4
+dht210124,23761370,5
+idcyou,23761370,4
+62518791,23761370,3
+ceccion,23761370,5
+bailongyizhan,23761370,5
+Chris.Wu,23761370,3
+53561669,23761370,3
+65004495,23761370,5
+Hennessy_,23761370,3
+50341396,23761370,3
+35668888,23761370,5
+rollin,23761370,4
+65150024,23761370,3
+3643871,23761370,3
+mumuchou,23761370,4
+60230905,23761370,3
+zql9527,23761370,5
+yeguanfeng,23761370,3
+74520364,23761370,5
+Tfish,23761370,3
+65369006,23761370,3
+43677701,23761370,4
+84039736,23761370,3
+3231683,23761370,4
+rockxx,23761370,3
+126626416,23761370,5
+1519406,23761370,3
+jbluesun,23761370,3
+RRspace,23761370,3
+53582530,23761370,4
+47853230,23761370,5
+45176243,23761370,5
+43903711,23761370,5
+melodygxl,23761370,4
+61109474,23761370,3
+68166546,23761370,3
+49243292,23761370,4
+kabuqinuomima,23761370,3
+121922821,23761370,5
+90035277,23761370,2
+70933374,23761370,5
+11294260,23761370,5
+cancercell,23761370,3
+70642572,23761370,5
+47308380,23761370,4
+124822800,23761370,5
+49412559,23761370,4
+68876609,23761370,-1
+48486973,23761370,4
+1230019,23761370,3
+55938277,23761370,4
+58291946,23761370,4
+hazechann,23761370,-1
+28667115,23761370,5
+3751886,23761370,3
+51663254,23761370,2
+75473532,23761370,5
+62403200,23761370,4
+1183933,23761370,5
+1183933,23761370,5
+69575176,23761370,2
+62259006,23761370,3
+65040252,23761370,3
+sara39aiba,23761370,4
+jopees,23761370,3
+stefanie1112,23761370,3
+52290799,23761370,4
+Dee198604,23761370,4
+103951444,23761370,5
+56359864,23761370,4
+71336777,23761370,4
+52246320,23761370,4
+98878060,23761370,4
+Nuat,23761370,5
+92005501,23761370,4
+luominbaby,23761370,5
+littlecar,23761370,4
+sofans,23761370,3
+ihelan,23761370,4
+124283433,23761370,4
+53168109,23761370,5
+78701972,23761370,3
+Smooth0727,23761370,4
+69280280,23761370,4
+59005410,23761370,3
+82926620,23761370,4
+60175719,23761370,3
+46820286,23761370,4
+3247871,23761370,3
+sorrow_YMY,23761370,4
+k6unica,23761370,3
+59996686,23761370,5
+tayoto,23761370,5
+mush24,23761370,4
+57439323,23761370,3
+4729206,23761370,-1
+120046148,23761370,3
+95970536,23761370,5
+solo2530,23761370,4
+usay,23761370,4
+2579946,23761370,4
+XLFiona,23761370,4
+xyjoll,23761370,4
+102728705,23761370,4
+sibyl0510,23761370,4
+yumiaowater,23761370,4
+55539336,23761370,5
+42767182,23761370,5
+corday,23761370,3
+3900838,23761370,3
+126769592,23761370,5
+fei-never,23761370,4
+61621650,23761370,4
+3598072,23761370,5
+wanlili520,23761370,2
+47648192,23761370,3
+JackHChan,23761370,4
+morpheezh,23761370,3
+1814322,23761370,5
+lytt,23761370,5
+muyue1112,23761370,5
+33531555,23761370,4
+110752603,23761370,5
+115735544,23761370,1
+45509766,23761370,5
+cat_tracy,23761370,-1
+79695986,23761370,4
+52824756,23761370,4
+80362984,23761370,4
+2980714,23761370,3
+yeon15,23761370,3
+changertebieer,23761370,5
+betterhan,23761370,4
+43536991,23761370,4
+44285242,23761370,3
+4861512,23761370,5
+36716093,23761370,5
+82814595,23761370,3
+3130835,23761370,5
+lostyoung,23761370,5
+60788989,23761370,3
+nango,23761370,4
+qqmx,23761370,5
+panglufei,23761370,5
+2435646,23761370,-1
+65384640,23761370,5
+4609090,23761370,3
+gooooooooooohe,23761370,5
+cuizixi,23761370,5
+apple_jody,23761370,4
+47515498,23761370,4
+27263711,23761370,4
+zkxloveytt,23761370,4
+mvpp,23761370,4
+88738629,23761370,5
+66995858,23761370,5
+baobeijiajia,23761370,3
+66003076,23761370,4
+pifai,23761370,-1
+53672256,23761370,5
+Levilot,23761370,5
+85640797,23761370,3
+akirasama,23761370,4
+57605822,23761370,5
+47115113,23761370,4
+2439936,23761370,5
+1023218,23761370,4
+cloverjiang,23761370,4
+daylightmoon,23761370,4
+whistlestop,23761370,5
+4655853,23761370,3
+polarispeng,23761370,5
+mk007123,23761370,5
+46090573,23761370,5
+64324702,23761370,4
+hingyyq,23761370,3
+62376139,23761370,5
+laurenshmm,23761370,4
+83348646,23761370,4
+ccone,23761370,5
+A-Small,23761370,5
+movie8,23761370,4
+Summer_Xi,23761370,4
+67115672,23761370,4
+54356383,23761370,5
+13856427,23761370,4
+2576970,23761370,5
+63567071,23761370,3
+Yolandaleaf,23761370,5
+8506814,23761370,3
+60706148,23761370,4
+atun,23761370,5
+goflyh,23761370,3
+75266933,23761370,3
+57954109,23761370,3
+43635070,23761370,5
+2911189,23761370,4
+69928262,23761370,5
+nsdmm,23761370,5
+Axisleg,23761370,3
+50817761,23761370,5
+126759621,23761370,5
+twelve1234,23761370,4
+zjuyjy,23761370,5
+34889836,23761370,5
+123295649,23761370,5
+JQishere,23761370,3
+dorisdeng,23761370,4
+62334375,23761370,5
+96096910,23761370,4
+30099819,23761370,4
+3407751,23761370,3
+exzx,23761370,3
+16096033,23761370,5
+woo663,23761370,4
+51840170,23761370,1
+46006075,23761370,4
+71058780,23761370,5
+dearestzane,23761370,-1
+iamcui,23761370,5
+haishou,23761370,3
+66722557,23761370,2
+50913544,23761370,4
+54594576,23761370,4
+Megan119,23761370,4
+49785218,23761370,5
+83816838,23761370,1
+cynb,23761370,3
+77592151,23761370,5
+shencang-blue,23761370,3
+122097294,23761370,3
+4026025,23761370,5
+sugartingshuo,23761370,3
+snowplum,23761370,3
+60538655,23761370,-1
+51909873,23761370,3
+92016654,23761370,4
+91606963,23761370,5
+59961169,23761370,3
+75535549,23761370,5
+4161317,23761370,4
+88048268,23761370,5
+yzj1212,23761370,3
+122552772,23761370,5
+87582209,23761370,2
+3869053,23761370,4
+121484000,23761370,4
+chrissylee57,23761370,4
+88133051,23761370,5
+73287736,23761370,4
+muemiehf,23761370,5
+69794996,23761370,5
+104575311,23761370,4
+30768721,23761370,4
+44724487,23761370,4
+58405160,23761370,5
+71547837,23761370,5
+43600394,23761370,5
+23957168,23761370,3
+49635484,23761370,5
+Ada_Liu,23761370,4
+47079647,23761370,5
+DLZ0724,23761370,4
+cecilylmy,23761370,4
+fanclrice,23761370,4
+keyless,23761370,4
+fishzero,23761370,-1
+49890113,23761370,3
+126051718,23761370,5
+49274936,23761370,5
+93893593,23761370,4
+77630504,23761370,4
+1885098,23761370,5
+79862222,23761370,4
+65507794,23761370,4
+lkytz,23761370,4
+65120841,23761370,5
+53814825,23761370,-1
+aitiaowudemeng,23761370,5
+48695154,23761370,5
+52005717,23761370,5
+52447788,23761370,3
+laura13,23761370,-1
+27728988,23761370,5
+69992541,23761370,3
+83690135,23761370,5
+83401257,23761370,5
+51229534,23761370,4
+70033146,23761370,4
+90344756,23761370,5
+82025931,23761370,4
+69750232,23761370,4
+2174198,23761370,3
+55623628,23761370,3
+59468252,23761370,5
+81611618,23761370,4
+105153848,23761370,5
+KuanmA,23761370,5
+70421764,23761370,4
+70421764,23761370,4
+2801179,23761370,3
+50094357,23761370,4
+87770584,23761370,4
+conanwansui,23761370,-1
+piaolianghaizi,23761370,1
+2374450,23761370,5
+61797911,23761370,4
+Michael.Tao,23761370,5
+62061450,23761370,5
+MYtachikoma,23761370,4
+monstersimon,23761370,3
+11402687,23761370,4
+69230066,23761370,5
+58408051,23761370,5
+2785150,23761370,4
+60297535,23761370,5
+2974873,23761370,4
+IchBinHerrMAO,23761370,3
+46843516,23761370,4
+55536048,23761370,5
+xiaoranbao,23761370,4
+62358486,23761370,5
+susandancing,23761370,3
+Heartahope,23761370,5
+fadefeng,23761370,3
+99169967,23761370,3
+121225056,23761370,5
+59005110,23761370,5
+yangqijane,23761370,4
+26629130,23761370,5
+67672936,23761370,5
+56980157,23761370,5
+102267665,23761370,5
+58488233,23761370,4
+lyishaou,23761370,4
+126748700,23761370,4
+91291247,23761370,5
+freya-chen,23761370,4
+71931742,23761370,3
+59684927,23761370,4
+34175064,23761370,3
+hellowdou,23761370,4
+simon3911,23761370,4
+44966176,23761370,4
+88239380,23761370,5
+moyanzimo,23761370,5
+79884399,23761370,5
+62903092,23761370,4
+dear-echo,23761370,5
+42989054,23761370,4
+49951984,23761370,3
+64350273,23761370,4
+freezinggl,23761370,5
+Tracy.J,23761370,3
+Moo_bye,23761370,5
+37448778,23761370,4
+48170406,23761370,5
+umaoi,23761370,4
+83658918,23761370,-1
+4119315,23761370,4
+mutouqingfeng,23761370,5
+49987495,23761370,3
+monanaka,23761370,5
+Iamoo,23761370,-1
+63618538,23761370,5
+teenagestar,23761370,3
+57350477,23761370,4
+61419341,23761370,3
+67225686,23761370,3
+SOMOMOKO,23761370,5
+30499670,23761370,4
+yangzhiqiao,23761370,4
+VUCHUNG,23761370,5
+4910915,23761370,5
+yoteamomucho,23761370,3
+51733805,23761370,5
+63483600,23761370,4
+63220459,23761370,4
+3005065,23761370,3
+groverlynn,23761370,5
+Neverlandor,23761370,3
+RyanWY,23761370,3
+cccpusahonor,23761370,3
+82322212,23761370,4
+43058496,23761370,3
+1056656,23761370,3
+53896811,23761370,5
+brighttoday,23761370,4
+abbgyy,23761370,5
+48791168,23761370,5
+75198919,23761370,4
+2773656,23761370,3
+54597332,23761370,5
+chongchongwen,23761370,4
+33906135,23761370,3
+tonganda,23761370,3
+70232169,23761370,5
+88605702,23761370,5
+42955100,23761370,5
+63750436,23761370,5
+41901883,23761370,4
+48949607,23761370,4
+singmyself,23761370,5
+3824469,23761370,5
+12981112,23761370,4
+happyjiepp,23761370,5
+93328588,23761370,3
+58926065,23761370,2
+120802499,23761370,5
+81560578,23761370,5
+53436412,23761370,5
+61167052,23761370,5
+80526466,23761370,2
+woshishunv,23761370,5
+88174425,23761370,5
+3673497,23761370,5
+53601357,23761370,5
+47218543,23761370,3
+shabai,23761370,5
+shabai,23761370,5
+51059686,23761370,3
+kisscululala,23761370,4
+123222453,23761370,4
+klrobsten,23761370,5
+72569635,23761370,4
+14059192,23761370,5
+60538868,23761370,4
+Update,23761370,4
+trista-smily,23761370,5
+63054823,23761370,5
+70707218,23761370,5
+29362776,23761370,4
+63049878,23761370,3
+4017423,23761370,5
+adolphe,23761370,5
+lanxinren,23761370,3
+58671992,23761370,5
+zhiwojian,23761370,3
+50628636,23761370,5
+VerNadette,23761370,3
+54471627,23761370,3
+42275944,23761370,3
+56393508,23761370,3
+enoughlove,23761370,5
+46957067,23761370,2
+62877931,23761370,4
+103887775,23761370,4
+2846988,23761370,4
+3348222,23761370,5
+92311797,23761370,4
+73161188,23761370,5
+ustyle,23761370,4
+3701369,23761370,3
+mandy087,23761370,3
+78489673,23761370,4
+58923926,23761370,5
+zc1997,23761370,5
+57969665,23761370,5
+mufasaxu,23761370,5
+115507760,23761370,5
+Yini0211,23761370,3
+94391686,23761370,4
+47187723,23761370,5
+44081301,23761370,4
+barbarianyawp,23761370,-1
+Kainy,23761370,4
+2640194,23761370,3
+socalled,23761370,5
+51769966,23761370,3
+HsmLeePKU,23761370,5
+sincerelysophia,23761370,3
+45894116,23761370,4
+tangnin,23761370,3
+minamy1227,23761370,4
+im22luo,23761370,5
+xuyuhaouriz,23761370,5
+Cao-Wei,23761370,3
+Cindy_Nick,23761370,4
+fangtr,23761370,5
+81201011,23761370,4
+zl19960120,23761370,3
+43001536,23761370,5
+84899568,23761370,3
+62973742,23761370,4
+maowandianxia,23761370,3
+55781649,23761370,4
+93228351,23761370,4
+74111114,23761370,1
+49040678,23761370,5
+92081445,23761370,4
+maomaojay,23761370,4
+mondaya,23761370,5
+61346054,23761370,5
+Sunshine1113,23761370,4
+64029045,23761370,5
+juuump,23761370,2
+98336205,23761370,4
+zhudahui,23761370,4
+55424101,23761370,4
+55424101,23761370,4
+waye131,23761370,2
+93040251,23761370,3
+cheshire,23761370,5
+BLuuuuE,23761370,4
+Hlrtu,23761370,5
+1550868,23761370,4
+87374629,23761370,5
+63635363,23761370,3
+48832813,23761370,4
+68631910,23761370,5
+73305733,23761370,5
+48080986,23761370,5
+1404780,23761370,5
+morningormoenig,23761370,4
+52561499,23761370,3
+daidai324,23761370,5
+47988873,23761370,5
+stuyannnnnnnnnn,23761370,5
+52122495,23761370,3
+66171228,23761370,3
+54694186,23761370,4
+114710465,23761370,5
+saker,23761370,4
+121235168,23761370,5
+elenazhang,23761370,-1
+9596432,23761370,5
+fairyhui521,23761370,5
+purestar,23761370,4
+browngreenblue,23761370,5
+renkamu,23761370,4
+49471801,23761370,4
+109238530,23761370,3
+115795239,23761370,1
+51093878,23761370,3
+57896698,23761370,5
+48971557,23761370,4
+tangshundgar,23761370,4
+Kya,23761370,3
+chrisocean,23761370,4
+53075716,23761370,5
+crystaltoo,23761370,5
+102772820,23761370,4
+3371563,23761370,4
+Ste_corleone,23761370,4
+pimichang,23761370,5
+43303672,23761370,4
+xiaoranfang,23761370,5
+huijinxiang1008,23761370,1
+Luna_apo,23761370,4
+101326117,23761370,5
+75023854,23761370,2
+1919966,23761370,4
+menophenon,23761370,5
+isobel0723,23761370,5
+48919833,23761370,5
+peach99,23761370,2
+63433613,23761370,-1
+hihicd,23761370,4
+25558754,23761370,5
+70711939,23761370,4
+yaqian,23761370,3
+miga_sophia,23761370,3
+3606037,23761370,5
+36937458,23761370,3
+5218300,23761370,5
+82919100,23761370,5
+77137635,23761370,3
+46540844,23761370,5
+48492942,23761370,5
+83082382,23761370,1
+53706093,23761370,3
+121432090,23761370,4
+wangshibanban,23761370,4
+feng-tracy,23761370,4
+43887470,23761370,4
+Gengxiaolele,23761370,5
+115894923,23761370,3
+107799192,23761370,4
+misha777,23761370,1
+126637791,23761370,4
+35369841,23761370,5
+knightfeather,23761370,3
+dndxhs,23761370,4
+102666156,23761370,2
+2380878,23761370,5
+68163321,23761370,3
+54740807,23761370,4
+49380138,23761370,4
+thejl,23761370,4
+126708797,23761370,5
+63459721,23761370,4
+breadlife,23761370,5
+Vielsamkeit,23761370,5
+Yeats77,23761370,3
+msjing1994,23761370,5
+59476755,23761370,2
+haaar,23761370,4
+16697432,23761370,4
+64176350,23761370,5
+48905928,23761370,4
+potentialnoise,23761370,5
+37974657,23761370,5
+xiaozuo1,23761370,3
+53243920,23761370,-1
+40060243,23761370,4
+81798978,23761370,4
+toxy545,23761370,4
+44908756,23761370,5
+wbhvivian,23761370,5
+126638537,23761370,3
+61330896,23761370,5
+43930508,23761370,4
+3234640,23761370,5
+49810367,23761370,5
+69405633,23761370,4
+102644530,23761370,3
+121721694,23761370,4
+84219637,23761370,4
+gyn6biggun,23761370,5
+blueshadow30,23761370,3
+50496406,23761370,5
+121747053,23761370,5
+yinpark,23761370,4
+zero01,23761370,3
+Felix_Db,23761370,5
+Wait_decade,23761370,4
+124465204,23761370,4
+yht31415926,23761370,5
+122921919,23761370,4
+fiona-cin,23761370,4
+yiyimemory,23761370,5
+clairedoudou,23761370,4
+48312862,23761370,5
+1747483,23761370,4
+felili,23761370,4
+57392362,23761370,4
+42831966,23761370,4
+9564546,23761370,4
+53159243,23761370,3
+122377549,23761370,4
+40554943,23761370,4
+55860565,23761370,4
+63325454,23761370,3
+puhuahua,23761370,3
+90562526,23761370,5
+lancercery,23761370,4
+46506277,23761370,3
+to1900,23761370,4
+3768801,23761370,4
+68242891,23761370,5
+allwordswrong,23761370,4
+1370561,23761370,4
+126489180,23761370,5
+dengxian123,23761370,3
+126554409,23761370,5
+39708814,23761370,5
+viva4mer,23761370,4
+sunshinean2000,23761370,3
+awalktoremember,23761370,5
+awalktoremember,23761370,5
+athenahyphen,23761370,5
+Kristy_Cheung,23761370,3
+ghostneng,23761370,4
+58728752,23761370,5
+49168365,23761370,4
+hexi1,23761370,4
+xlaoer,23761370,-1
+89234808,23761370,4
+98014979,23761370,4
+126685684,23761370,5
+1636017,23761370,2
+64563247,23761370,5
+wishes,23761370,5
+wanginin,23761370,5
+121746143,23761370,5
+Jandeaux,23761370,3
+Diasy,23761370,4
+4776566,23761370,5
+39152562,23761370,4
+gdhdun,23761370,4
+FuckoffJinMu,23761370,3
+62951403,23761370,5
+57081977,23761370,5
+houy123456,23761370,4
+121104204,23761370,4
+bukuweidouban,23761370,3
+52758298,23761370,5
+93465827,23761370,2
+71427030,23761370,4
+6079520,23761370,4
+4464843,23761370,3
+dandan130,23761370,3
+120542785,23761370,5
+60882958,23761370,2
+cdz0516,23761370,4
+sylviasun2011,23761370,3
+2404315,23761370,4
+92777514,23761370,5
+41761191,23761370,4
+43535108,23761370,4
+ivresse,23761370,3
+johnwan2007,23761370,3
+38346420,23761370,3
+122060330,23761370,4
+haianlong,23761370,5
+67781674,23761370,5
+nashcaihk,23761370,5
+Snoopeacer,23761370,5
+66973670,23761370,3
+58601381,23761370,4
+godismyye,23761370,4
+49366879,23761370,4
+4310265,23761370,5
+lifest,23761370,3
+li646985949,23761370,4
+maskman0917,23761370,2
+huachichi,23761370,5
+sunsizhe,23761370,3
+68086600,23761370,1
+63859419,23761370,5
+78475246,23761370,5
+81827132,23761370,1
+48086861,23761370,5
+69356353,23761370,5
+aurorashi,23761370,3
+57884984,23761370,4
+3991087,23761370,4
+50065042,23761370,5
+36253770,23761370,5
+121193327,23761370,4
+35929918,23761370,2
+55974456,23761370,4
+50882578,23761370,4
+49749063,23761370,5
+80351198,23761370,3
+74491212,23761370,5
+53328148,23761370,3
+2428631,23761370,3
+48751710,23761370,3
+53721434,23761370,4
+F-Mac,23761370,4
+46119201,23761370,5
+49164430,23761370,4
+3943602,23761370,5
+59385291,23761370,5
+4879557,23761370,5
+33512208,23761370,-1
+wanyuanhus1,23761370,3
+64852790,23761370,3
+Malivoni,23761370,3
+benihi,23761370,1
+RedPino,23761370,3
+yaozhujun,23761370,4
+89181026,23761370,5
+52818611,23761370,5
+littlelamb,23761370,4
+JoyDivisions,23761370,3
+44406151,23761370,4
+126666518,23761370,3
+lourdes,23761370,3
+61265491,23761370,5
+wubingheng,23761370,4
+61573146,23761370,4
+63102892,23761370,4
+77693072,23761370,5
+122381360,23761370,4
+liuchuanzi,23761370,4
+58094874,23761370,5
+99153038,23761370,5
+46222507,23761370,1
+61506654,23761370,5
+shein,23761370,4
+83926148,23761370,5
+55962178,23761370,3
+41236968,23761370,4
+71221227,23761370,5
+66109305,23761370,5
+3259792,23761370,3
+2990835,23761370,4
+2990835,23761370,4
+pearson,23761370,5
+zhuwb517,23761370,5
+74389768,23761370,4
+Seuls_,23761370,3
+51608563,23761370,4
+colorwindeer,23761370,4
+1915708,23761370,4
+124268613,23761370,4
+Stream1115,23761370,5
+B.angus,23761370,4
+DAINYONG,23761370,-1
+66538952,23761370,5
+35285718,23761370,4
+4523082,23761370,3
+103113444,23761370,3
+90587872,23761370,4
+119922502,23761370,4
+79598588,23761370,4
+lsljctx,23761370,5
+tiger.grass,23761370,5
+116617620,23761370,5
+freemancy,23761370,5
+47862106,23761370,4
+2923091,23761370,5
+88730455,23761370,2
+82904575,23761370,3
+centaurus_crux,23761370,4
+Visling,23761370,4
+4235185,23761370,4
+veronicawu1982,23761370,4
+wangxiaowei,23761370,4
+63401608,23761370,4
+119293185,23761370,5
+65167858,23761370,5
+3633224,23761370,4
+68786900,23761370,4
+51429005,23761370,4
+lamp77,23761370,5
+proband,23761370,1
+80850304,23761370,3
+122108670,23761370,5
+43441508,23761370,5
+56898978,23761370,5
+88159379,23761370,5
+53012864,23761370,5
+74684254,23761370,5
+56867192,23761370,4
+hiymy,23761370,3
+63503398,23761370,5
+amanda3513,23761370,4
+92960717,23761370,5
+62875538,23761370,5
+xiaojiongxia,23761370,4
+doubanlinlin,23761370,2
+insomniafish,23761370,1
+27946231,23761370,4
+68406681,23761370,4
+64631694,23761370,5
+body_electric,23761370,2
+54036678,23761370,5
+10343137,23761370,4
+4130050,23761370,4
+iamsongky,23761370,4
+54345196,23761370,3
+68938170,23761370,5
+TiKuanYin,23761370,4
+yeshenghongliji,23761370,4
+coco0609,23761370,4
+53185889,23761370,5
+geminibright,23761370,4
+egeria1225,23761370,5
+franticman,23761370,4
+reizya,23761370,5
+69152267,23761370,5
+love221B,23761370,3
+AMGEnzo,23761370,5
+yinmushroom,23761370,3
+82308347,23761370,4
+50043116,23761370,5
+umich,23761370,4
+49056942,23761370,5
+121299325,23761370,4
+82990219,23761370,5
+48849498,23761370,4
+60437344,23761370,5
+2075014,23761370,4
+4912264,23761370,4
+64522093,23761370,3
+52057602,23761370,5
+aileenhelen,23761370,5
+50347071,23761370,5
+kirara727,23761370,2
+70026542,23761370,5
+3889449,23761370,3
+loveserein,23761370,4
+23766862,23761370,4
+65055212,23761370,2
+56955311,23761370,5
+willmeal,23761370,4
+willmeal,23761370,4
+53366599,23761370,4
+69855883,23761370,4
+61088224,23761370,4
+36247676,23761370,4
+119599865,23761370,5
+serendipity99,23761370,4
+43589380,23761370,5
+77555967,23761370,3
+stonereader,23761370,4
+3172675,23761370,4
+3118092,23761370,2
+Junesue,23761370,4
+64635762,23761370,5
+bbass,23761370,3
+120014075,23761370,5
+76906442,23761370,4
+leon778,23761370,4
+jasminekiki,23761370,3
+4191076,23761370,4
+4191076,23761370,4
+1965820,23761370,1
+52095545,23761370,5
+yushu25,23761370,5
+52368457,23761370,-1
+18081083,23761370,5
+cai1st,23761370,4
+84654420,23761370,4
+Natsu_704,23761370,5
+125305853,23761370,4
+zeal_she,23761370,5
+3476767,23761370,3
+57181234,23761370,5
+82095351,23761370,4
+119787917,23761370,5
+1787295,23761370,5
+1708899,23761370,4
+kirahome,23761370,3
+joyouses,23761370,5
+sxy921026,23761370,3
+chenjz,23761370,4
+suchsu,23761370,3
+like-a-rock,23761370,2
+KUBRICK2OO1,23761370,2
+47220020,23761370,2
+32360693,23761370,4
+55765904,23761370,5
+53257768,23761370,3
+75322883,23761370,4
+26595142,23761370,5
+superkristi,23761370,3
+smiledengni,23761370,5
+78777412,23761370,5
+10200994,23761370,5
+meg_spring,23761370,5
+hezhijie,23761370,5
+taochenchang,23761370,4
+51860476,23761370,3
+ninjamomo,23761370,2
+circleyup,23761370,5
+circleyup,23761370,5
+71573777,23761370,5
+diva423,23761370,4
+63280608,23761370,5
+oracle218,23761370,4
+76085199,23761370,3
+yuxingshu,23761370,5
+96490951,23761370,3
+46256217,23761370,4
+3556941,23761370,4
+verse,23761370,-1
+lilian-gu,23761370,4
+43662887,23761370,3
+49891008,23761370,5
+gxx305,23761370,5
+83883222,23761370,4
+46911355,23761370,5
+70611380,23761370,5
+cense,23761370,5
+arrowkey,23761370,3
+58924121,23761370,4
+6946132,23761370,5
+120002421,23761370,5
+76394670,23761370,4
+ohyeahye,23761370,3
+3371803,23761370,5
+60356718,23761370,3
+StarAnice,23761370,4
+2785610,23761370,5
+46563592,23761370,5
+61131692,23761370,3
+46884476,23761370,5
+laurawang,23761370,3
+41430427,23761370,4
+shuiqi,23761370,4
+26898152,23761370,5
+50608084,23761370,2
+vanea,23761370,4
+16526373,23761370,5
+67943333,23761370,5
+4340710,23761370,3
+48726835,23761370,4
+50065468,23761370,3
+ftxm,23761370,5
+fat_hill,23761370,4
+95213691,23761370,5
+brightwsx,23761370,4
+49224543,23761370,5
+120547743,23761370,4
+84095241,23761370,3
+langlangtalent,23761370,3
+guoguojiang,23761370,5
+40451193,23761370,4
+pansini,23761370,5
+vinko_34,23761370,4
+3101572,23761370,4
+3273111,23761370,3
+79503433,23761370,5
+61829100,23761370,4
+79195615,23761370,4
+79195615,23761370,4
+69475039,23761370,5
+37753392,23761370,3
+coldcloud,23761370,5
+64399358,23761370,5
+4245687,23761370,4
+45279594,23761370,4
+geminigege,23761370,5
+65592563,23761370,5
+Plutoyw,23761370,4
+82007962,23761370,4
+50474968,23761370,4
+60616451,23761370,5
+linxiaoleng,23761370,5
+28312683,23761370,4
+kuma1020,23761370,4
+47653703,23761370,5
+54950596,23761370,5
+97845627,23761370,4
+81903104,23761370,4
+47725023,23761370,4
+79386414,23761370,4
+1438474,23761370,5
+cloverzhe,23761370,5
+crystalLXT,23761370,-1
+33019737,23761370,3
+wjgq0722,23761370,5
+xuove,23761370,5
+61531110,23761370,5
+jrdingbei,23761370,4
+87693385,23761370,3
+54171468,23761370,4
+63932737,23761370,2
+efeimaomao,23761370,4
+baixg,23761370,-1
+54754236,23761370,5
+1935824,23761370,1
+amorphousiren,23761370,5
+43402352,23761370,5
+34590485,23761370,3
+46220008,23761370,5
+verazhi,23761370,4
+2327858,23761370,3
+17407986,23761370,-1
+52338892,23761370,5
+rabbitfish,23761370,4
+kanghao413,23761370,4
+wangliuwei,23761370,3
+princejoseph,23761370,5
+44643351,23761370,5
+54412372,23761370,5
+3526492,23761370,4
+swanwise,23761370,2
+cctan123,23761370,2
+83989454,23761370,3
+43554949,23761370,4
+72756264,23761370,4
+angeon,23761370,3
+bulbosa,23761370,-1
+64417685,23761370,4
+72885322,23761370,4
+ohmygodyaya,23761370,4
+zkaip1,23761370,3
+littlenest,23761370,5
+yangjiemomo,23761370,3
+51004851,23761370,5
+69383984,23761370,4
+54944221,23761370,5
+dartagnan1987,23761370,4
+2287423,23761370,5
+carlebee,23761370,3
+2221077,23761370,5
+52572327,23761370,5
+1582144,23761370,3
+50926172,23761370,3
+46567889,23761370,4
+50269699,23761370,4
+92882189,23761370,5
+lanhouzi,23761370,4
+TravelingZero,23761370,4
+xslug,23761370,4
+sue526,23761370,5
+SUPERKAKA,23761370,-1
+68818342,23761370,3
+44728054,23761370,5
+58954376,23761370,5
+62304049,23761370,5
+xuanxuan1209,23761370,4
+apubit,23761370,5
+3336467,23761370,4
+46420896,23761370,3
+4266454,23761370,-1
+sami244,23761370,5
+maikhan,23761370,3
+84563751,23761370,4
+Sioobhan,23761370,5
+52709919,23761370,5
+74597690,23761370,5
+mujun_liu,23761370,5
+joicyvane,23761370,5
+joicyvane,23761370,5
+17091787,23761370,5
+43659831,23761370,2
+FindingKnightly,23761370,4
+54958824,23761370,3
+70758401,23761370,5
+zhaoyuner,23761370,4
+37571281,23761370,5
+cysbaby,23761370,5
+61539156,23761370,5
+40024021,23761370,4
+62404610,23761370,5
+48532700,23761370,3
+49582119,23761370,5
+echo-shuang,23761370,5
+66580854,23761370,4
+yukalijiang,23761370,5
+82987051,23761370,5
+28119200,23761370,4
+83217907,23761370,4
+32645204,23761370,4
+bmkg,23761370,2
+49175932,23761370,5
+60046251,23761370,5
+49316755,23761370,3
+47212791,23761370,5
+67999286,23761370,4
+57317934,23761370,3
+realyou,23761370,5
+53357746,23761370,5
+zengxiaofei,23761370,5
+homebody,23761370,-1
+31634567,23761370,5
+75952866,23761370,5
+26321564,23761370,5
+Link0406,23761370,5
+bluefish123,23761370,5
+sijiazuo,23761370,4
+ge383203180xin,23761370,4
+91428973,23761370,4
+61676260,23761370,4
+woaichanganmou,23761370,4
+69888587,23761370,3
+13271937,23761370,5
+50794247,23761370,4
+edwardjw,23761370,5
+Jannalu,23761370,4
+skristys,23761370,4
+Lycheest,23761370,4
+46370564,23761370,5
+kui7,23761370,5
+agloriousview,23761370,5
+49023822,23761370,3
+74295382,23761370,4
+66935170,23761370,4
+44309121,23761370,3
+heartbreakerkid,23761370,4
+huxiaoduo,23761370,5
+69723828,23761370,5
+pamuk_,23761370,3
+loveraymond,23761370,4
+66015511,23761370,5
+92944589,23761370,5
+4182606,23761370,4
+46291335,23761370,5
+68014143,23761370,3
+41453172,23761370,4
+flowml,23761370,3
+H_flower,23761370,5
+darlingyinsusu,23761370,4
+50071267,23761370,5
+2005602,23761370,5
+4319679,23761370,5
+SUiTHiNK,23761370,4
+77424839,23761370,4
+xingjian,23761370,4
+55591249,23761370,5
+jessielee1018,23761370,2
+taomomogo,23761370,3
+kat.is.kathy,23761370,5
+cabbager2015,23761370,5
+yyy1240,23761370,3
+sjch,23761370,4
+46002739,23761370,5
+X-forest,23761370,5
+JunoZ,23761370,5
+53246670,23761370,4
+yizhaisansheng,23761370,4
+121622730,23761370,5
+73869586,23761370,5
+35176811,23761370,3
+102556936,23761370,4
+missingfrost,23761370,5
+hhred,23761370,3
+itiko,23761370,5
+kerorocao,23761370,5
+73983729,23761370,4
+67243233,23761370,5
+patio,23761370,4
+83295740,23761370,2
+44361116,23761370,2
+A.Mo,23761370,3
+renyu8896,23761370,4
+moweiliang,23761370,5
+amy0303,23761370,3
+sonofsam,23761370,5
+46454886,23761370,4
+53947757,23761370,4
+37241520,23761370,-1
+57884796,23761370,4
+kellyelbe,23761370,4
+lovepoison,23761370,4
+56066985,23761370,5
+5592925,23761370,5
+70630808,23761370,4
+1338518,23761370,4
+4157361,23761370,4
+79033208,23761370,5
+25588497,23761370,5
+Echo_castle,23761370,5
+42307079,23761370,4
+39132623,23761370,5
+124126152,23761370,5
+120392055,23761370,2
+20880123,23761370,3
+3071518,23761370,4
+huahetao,23761370,5
+elijahh,23761370,3
+48885741,23761370,3
+65789816,23761370,4
+Felicityluo,23761370,1
+54781799,23761370,3
+1479546,23761370,4
+57741485,23761370,3
+116026643,23761370,5
+54753339,23761370,2
+beartt,23761370,5
+jyjyjyjyjyjyjy,23761370,4
+69556914,23761370,3
+58087275,23761370,5
+summonercarl,23761370,5
+64802960,23761370,5
+51376665,23761370,5
+YirenyH,23761370,3
+51503469,23761370,4
+74931346,23761370,5
+MiracleQ,23761370,3
+Seajor74,23761370,3
+1076084,23761370,4
+lowny1616,23761370,4
+3798488,23761370,5
+56843033,23761370,5
+51733566,23761370,4
+53411300,23761370,3
+rainbowSS,23761370,4
+46411309,23761370,3
+47230637,23761370,4
+littletraveler,23761370,4
+nianse,23761370,2
+lienhe,23761370,4
+64255744,23761370,5
+123404476,23761370,3
+47918352,23761370,3
+18988151,23761370,5
+42342405,23761370,3
+58859760,23761370,4
+40420414,23761370,4
+51852760,23761370,4
+41691356,23761370,4
+44643749,23761370,3
+43873778,23761370,4
+49755335,23761370,3
+46527340,23761370,4
+isbairland,23761370,3
+fruitella,23761370,4
+40811083,23761370,3
+56077687,23761370,2
+78473965,23761370,4
+xiangguniang,23761370,4
+73868761,23761370,3
+73868761,23761370,3
+55671161,23761370,5
+35056964,23761370,5
+62497391,23761370,3
+2547602,23761370,4
+Msmint,23761370,5
+51277324,23761370,4
+3535619,23761370,5
+siying541,23761370,5
+50682062,23761370,5
+40577920,23761370,4
+54460727,23761370,4
+25958436,23761370,4
+48628309,23761370,5
+75963174,23761370,5
+3887933,23761370,5
+kissclover,23761370,3
+dongdansh,23761370,5
+1666774,23761370,5
+Dandelion_,23761370,5
+22593878,23761370,5
+62129234,23761370,4
+lanm435,23761370,5
+saya0510,23761370,4
+104429329,23761370,5
+3144827,23761370,3
+40572113,23761370,4
+mollye,23761370,5
+47674697,23761370,4
+49961036,23761370,5
+50028349,23761370,4
+59426800,23761370,5
+122446625,23761370,5
+43062291,23761370,5
+1528339,23761370,3
+61911071,23761370,5
+byjing12,23761370,4
+58887836,23761370,4
+2377434,23761370,4
+51129041,23761370,5
+41631852,23761370,4
+78666237,23761370,5
+53911150,23761370,4
+3178442,23761370,5
+songjiawei525,23761370,5
+jackiex,23761370,4
+80682770,23761370,5
+sy9443,23761370,3
+blackeleven,23761370,5
+2679276,23761370,3
+mangomunky,23761370,4
+2073061,23761370,3
+56207725,23761370,5
+choushabi,23761370,3
+84377150,23761370,5
+33921766,23761370,4
+45129661,23761370,5
+90470774,23761370,4
+61356337,23761370,5
+35528479,23761370,4
+61678712,23761370,4
+55511225,23761370,3
+yuyang0815,23761370,3
+lanchong03,23761370,3
+90868187,23761370,1
+49374663,23761370,4
+5890978,23761370,3
+kokki,23761370,5
+V.J,23761370,3
+su-maimai,23761370,5
+59660757,23761370,4
+74771823,23761370,4
+70251090,23761370,5
+38105854,23761370,5
+ashimyfish,23761370,5
+119693372,23761370,4
+68201628,23761370,4
+Christinezmy,23761370,3
+fallwood,23761370,5
+62811071,23761370,3
+62811071,23761370,3
+mmh007,23761370,5
+assholestellar,23761370,3
+58220612,23761370,5
+51699021,23761370,3
+4294308,23761370,4
+42663693,23761370,5
+hayden001,23761370,4
+zdq108,23761370,5
+2014851,23761370,5
+41660437,23761370,4
+73670022,23761370,3
+4350982,23761370,4
+walinee,23761370,4
+74807963,23761370,4
+downing21,23761370,4
+xiangjiaopian,23761370,4
+Taco_0511,23761370,5
+33663451,23761370,4
+51478709,23761370,4
+51497873,23761370,3
+49311429,23761370,4
+49785601,23761370,4
+58049486,23761370,-1
+61333256,23761370,2
+34678139,23761370,3
+jiujiuprincess,23761370,4
+52106062,23761370,-1
+foreversleepy,23761370,4
+zhouyun19910131,23761370,4
+Mrs.Myself,23761370,4
+44579304,23761370,5
+95224421,23761370,5
+53207085,23761370,3
+121702811,23761370,5
+ddomi,23761370,2
+68466123,23761370,-1
+58028604,23761370,4
+33382680,23761370,-1
+47366540,23761370,5
+xsy2020,23761370,5
+60294544,23761370,2
+52155271,23761370,4
+4840048,23761370,4
+58314626,23761370,4
+73627549,23761370,3
+53715739,23761370,5
+60658925,23761370,3
+19008518,23761370,5
+2853604,23761370,3
+lengyuhong,23761370,5
+freakfreakfreak,23761370,4
+68124786,23761370,5
+Aaaaaarmageddon,23761370,5
+eiris,23761370,4
+93858057,23761370,5
+zhaochangtong,23761370,4
+51914724,23761370,2
+65813423,23761370,5
+VieVie,23761370,4
+Lefien,23761370,5
+57409980,23761370,4
+126514473,23761370,4
+61723144,23761370,3
+45627400,23761370,5
+topbear,23761370,5
+51855182,23761370,5
+msstan,23761370,4
+59446610,23761370,4
+3761919,23761370,-1
+shania0912,23761370,5
+46588781,23761370,4
+61477686,23761370,3
+Redlemare,23761370,5
+69836590,23761370,5
+59319272,23761370,5
+68795343,23761370,5
+79378805,23761370,3
+46470879,23761370,3
+73310508,23761370,4
+castlee,23761370,4
+fionasocool,23761370,4
+30208000,23761370,5
+mylover.Fan,23761370,4
+107702772,23761370,4
+103247038,23761370,3
+kim5257,23761370,5
+lilin2006,23761370,5
+126512280,23761370,5
+27036800,23761370,4
+Thermidor,23761370,1
+Kishimushroom,23761370,5
+asukafai,23761370,4
+icebully521,23761370,5
+obliviosage,23761370,4
+Jessica.clr,23761370,3
+50636469,23761370,5
+4526633,23761370,3
+33062238,23761370,5
+birdgirl,23761370,2
+42484020,23761370,4
+tanktank,23761370,4
+122191146,23761370,3
+29723983,23761370,4
+Greenyni,23761370,5
+73311977,23761370,4
+51068415,23761370,3
+126510659,23761370,4
+2321844,23761370,5
+33525558,23761370,5
+44079178,23761370,5
+65678302,23761370,5
+68349993,23761370,3
+Vikkiii,23761370,5
+46883062,23761370,5
+solavre,23761370,-1
+74926570,23761370,3
+75077274,23761370,4
+coppola,23761370,4
+Phoebe89,23761370,4
+liuliuagnes,23761370,5
+hongboxiang,23761370,5
+80957826,23761370,3
+52954881,23761370,4
+captain21,23761370,5
+liang9527,23761370,4
+66897985,23761370,4
+46277147,23761370,5
+Holidayczz,23761370,4
+nlai,23761370,4
+72256181,23761370,4
+72004354,23761370,4
+atmgnd,23761370,4
+July5yue,23761370,5
+115978846,23761370,4
+kouxping,23761370,5
+pingpingen,23761370,4
+84530034,23761370,4
+32194604,23761370,3
+52101882,23761370,4
+scorpiobai,23761370,5
+4456560,23761370,5
+caomingyu,23761370,5
+98446613,23761370,4
+10277954,23761370,4
+104623422,23761370,4
+78277982,23761370,3
+dearfool,23761370,4
+121398687,23761370,4
+57707856,23761370,5
+xinzhengs,23761370,5
+bbloveff,23761370,3
+50657559,23761370,4
+chen_mingyang,23761370,3
+szdd,23761370,4
+duolamaoxian,23761370,4
+andoze,23761370,4
+51031885,23761370,4
+55331959,23761370,3
+94833341,23761370,3
+10445387,23761370,1
+58356811,23761370,5
+41397677,23761370,3
+liuxingfeiban,23761370,4
+48819486,23761370,5
+56948937,23761370,5
+61025540,23761370,4
+msdoggy,23761370,5
+ankavs,23761370,5
+Iloverocky,23761370,3
+24077522,23761370,5
+honeyfelicity,23761370,4
+50129534,23761370,4
+wangtaocyy,23761370,4
+29685464,23761370,5
+50410126,23761370,4
+4411719,23761370,3
+ldwsky1123,23761370,5
+jeffshiu,23761370,2
+103551700,23761370,3
+103551700,23761370,3
+2527162,23761370,5
+3660472,23761370,3
+59348702,23761370,5
+82569239,23761370,5
+RUIZHE123,23761370,1
+55021237,23761370,5
+4664430,23761370,4
+DavidRover,23761370,3
+chesty,23761370,4
+45265566,23761370,4
+65638659,23761370,2
+cn50344,23761370,5
+helloxiaoyan,23761370,5
+46271053,23761370,5
+feizhouji,23761370,4
+85508803,23761370,4
+78710315,23761370,5
+63044773,23761370,3
+66340934,23761370,3
+1907939,23761370,4
+liquor,23761370,4
+Bille,23761370,5
+120220033,23761370,-1
+ashleysays,23761370,5
+103357406,23761370,5
+58423983,23761370,5
+ddcchenfei,23761370,4
+wndtlkr,23761370,4
+49350559,23761370,3
+59428764,23761370,5
+71863067,23761370,3
+38228503,23761370,4
+64163847,23761370,5
+49547973,23761370,4
+4420513,23761370,4
+45655057,23761370,4
+princekin95,23761370,4
+87950572,23761370,3
+badyueyue,23761370,4
+badyueyue,23761370,4
+allen_y,23761370,5
+ben_nsr,23761370,3
+108394568,23761370,3
+lovesheng,23761370,3
+67852674,23761370,3
+35673954,23761370,5
+jonehot,23761370,2
+62822588,23761370,4
+89535449,23761370,3
+76007210,23761370,4
+raincatlee,23761370,3
+soloHero,23761370,4
+4358400,23761370,4
+66696917,23761370,2
+48181580,23761370,-1
+4083854,23761370,2
+zhilan,23761370,4
+crystalhetian,23761370,5
+57113338,23761370,5
+80074512,23761370,5
+zhangweiwebsite,23761370,4
+44360227,23761370,3
+2096731,23761370,5
+46342196,23761370,4
+61673467,23761370,4
+88369336,23761370,4
+52244189,23761370,4
+mickeyshufe,23761370,4
+46289677,23761370,4
+waitintheseason,23761370,4
+5691697,23761370,3
+63856676,23761370,3
+wsgjr,23761370,5
+chongszekuen,23761370,4
+lovelilysky,23761370,-1
+room1989,23761370,4
+November_nie,23761370,5
+61592799,23761370,3
+gaishixiaogui,23761370,5
+renxiaoheng,23761370,3
+38620939,23761370,3
+126271282,23761370,3
+56252551,23761370,3
+40646128,23761370,5
+aking,23761370,4
+45112780,23761370,4
+chesey,23761370,5
+MEITONG,23761370,5
+83666516,23761370,5
+62754758,23761370,4
+reylen,23761370,5
+45101555,23761370,4
+88868588,23761370,4
+43912809,23761370,4
+103629586,23761370,3
+iangq,23761370,4
+52088070,23761370,3
+ccav1,23761370,4
+73871573,23761370,4
+muse111,23761370,5
+SmileyVicky,23761370,4
+hyuk7,23761370,4
+67616315,23761370,5
+59466056,23761370,3
+69753886,23761370,3
+69672779,23761370,-1
+56164676,23761370,4
+54839416,23761370,4
+54952662,23761370,3
+aiyawocaonima,23761370,4
+HilaryYue,23761370,3
+64272318,23761370,4
+56721641,23761370,1
+43474668,23761370,4
+49282329,23761370,4
+48062280,23761370,2
+3387308,23761370,5
+58959669,23761370,5
+Repulsion,23761370,2
+54002752,23761370,5
+48191805,23761370,5
+darthpanda,23761370,5
+55398795,23761370,5
+2624480,23761370,4
+58891954,23761370,3
+3353584,23761370,4
+4075628,23761370,4
+51111447,23761370,5
+75933903,23761370,1
+tjg325,23761370,5
+26489547,23761370,3
+59465108,23761370,4
+68241844,23761370,-1
+hezhenhua,23761370,5
+yuyan0531,23761370,4
+3794172,23761370,5
+1371141,23761370,4
+46365473,23761370,4
+107854143,23761370,5
+107854143,23761370,5
+June-sunshine,23761370,5
+57855892,23761370,4
+delmar,23761370,2
+52926206,23761370,-1
+75067427,23761370,5
+75625714,23761370,4
+52919144,23761370,5
+85368660,23761370,3
+35331418,23761370,4
+9277293,23761370,3
+awebc,23761370,-1
+66408751,23761370,3
+2986410,23761370,4
+67748950,23761370,4
+46361626,23761370,3
+hou7,23761370,1
+2898681,23761370,3
+annten,23761370,4
+60210500,23761370,4
+yeuxvent,23761370,3
+83439941,23761370,5
+53717740,23761370,-1
+59759359,23761370,4
+52409841,23761370,1
+servive,23761370,4
+58323320,23761370,4
+47818806,23761370,5
+80769810,23761370,5
+yutooooooo,23761370,4
+43885274,23761370,2
+olejue,23761370,4
+52997821,23761370,5
+49802388,23761370,5
+2260050,23761370,4
+36031855,23761370,4
+38352993,23761370,5
+48348990,23761370,3
+farewell2286492,23761370,3
+TongZilou,23761370,3
+2224515,23761370,4
+54375575,23761370,5
+87399139,23761370,5
+loveyixiao,23761370,4
+Godso_So,23761370,1
+darkdio,23761370,3
+3747406,23761370,2
+64726602,23761370,4
+Lucy.Y,23761370,3
+33787878,23761370,3
+helin725,23761370,4
+67237483,23761370,5
+huangnan,23761370,4
+73502134,23761370,4
+34526603,23761370,4
+49596290,23761370,3
+mary2009,23761370,4
+56853288,23761370,5
+41838374,23761370,3
+53616045,23761370,5
+74687875,23761370,4
+ruska_xu,23761370,5
+52450627,23761370,-1
+78606894,23761370,5
+ssdomoto,23761370,4
+3011986,23761370,5
+39006881,23761370,4
+ez2dier,23761370,4
+AngelaDayday,23761370,5
+k-kuai,23761370,3
+8925160,23761370,4
+toobird,23761370,3
+3604537,23761370,3
+91573211,23761370,5
+75574637,23761370,4
+94932551,23761370,5
+liandlisa,23761370,-1
+soul922,23761370,3
+coin1115,23761370,5
+tongtong7,23761370,4
+tongtong7,23761370,4
+jhc1999,23761370,-1
+120359259,23761370,3
+haibara0520,23761370,4
+53326968,23761370,4
+73555713,23761370,4
+mamuzuke,23761370,3
+jjantonia,23761370,5
+15027079,23761370,5
+53253499,23761370,4
+61948429,23761370,4
+59849090,23761370,4
+58286145,23761370,3
+56478530,23761370,5
+wuxiang1203,23761370,4
+120109452,23761370,5
+oscar_huang,23761370,4
+julianhugo,23761370,3
+54943507,23761370,5
+53126915,23761370,4
+47500444,23761370,3
+60295371,23761370,2
+viannlovelife,23761370,4
+58184493,23761370,5
+44428139,23761370,3
+64044518,23761370,4
+66698052,23761370,4
+62837159,23761370,4
+48698083,23761370,5
+4249235,23761370,5
+weijjcd,23761370,3
+29898737,23761370,3
+60912631,23761370,4
+1179798,23761370,4
+Erva,23761370,3
+80748751,23761370,4
+60040456,23761370,5
+58322790,23761370,5
+55942285,23761370,3
+60630554,23761370,5
+aokam,23761370,4
+2987038,23761370,5
+91649977,23761370,5
+gongxi11,23761370,5
+Alinaqueen,23761370,5
+nonoxi,23761370,5
+zixuan198,23761370,4
+44349913,23761370,5
+121434858,23761370,2
+Rainteedm,23761370,5
+4599465,23761370,4
+35568652,23761370,5
+babykissy,23761370,5
+zero459645298,23761370,5
+2644622,23761370,3
+33746698,23761370,3
+4111954,23761370,3
+43948105,23761370,2
+48501430,23761370,5
+alai29,23761370,4
+alai29,23761370,4
+brianne521324,23761370,4
+2623348,23761370,4
+hailongzhangs,23761370,4
+48323653,23761370,5
+memo1013,23761370,4
+61566876,23761370,5
+D1984,23761370,3
+47167494,23761370,4
+126357218,23761370,3
+dober,23761370,4
+1314588,23761370,4
+34162898,23761370,5
+czj950615,23761370,3
+t-ulala,23761370,4
+16038998,23761370,5
+58411324,23761370,4
+drxiaoshi,23761370,5
+2873818,23761370,5
+yeai3,23761370,4
+39681378,23761370,5
+56012225,23761370,5
+swmzzz,23761370,3
+1909194,23761370,4
+63765984,23761370,4
+53419926,23761370,4
+summerbu,23761370,4
+4659732,23761370,4
+25259616,23761370,5
+57976050,23761370,5
+87846335,23761370,5
+76332063,23761370,4
+43632851,23761370,4
+flylinklove,23761370,5
+xiaoshiliushu,23761370,3
+skgn,23761370,4
+42306867,23761370,4
+Valky,23761370,4
+pretender123,23761370,5
+60469455,23761370,5
+60469455,23761370,5
+45724368,23761370,4
+51057847,23761370,4
+45804814,23761370,3
+colinpanda,23761370,3
+88273371,23761370,4
+tomiesky,23761370,5
+47708904,23761370,4
+2384488,23761370,5
+infinitezzq,23761370,3
+Freda_Gezi,23761370,5
+evabre,23761370,3
+63920180,23761370,3
+80766723,23761370,5
+60919975,23761370,5
+47998075,23761370,4
+60421947,23761370,1
+aaaaasun,23761370,4
+70780550,23761370,5
+59993896,23761370,3
+52751396,23761370,4
+54220890,23761370,5
+quaint,23761370,3
+DVforever,23761370,5
+taasd,23761370,4
+Creep_,23761370,3
+50574309,23761370,5
+46162078,23761370,5
+1922653,23761370,5
+70134199,23761370,5
+yellowcroaker,23761370,3
+57004497,23761370,4
+119182382,23761370,2
+57274360,23761370,4
+63454756,23761370,4
+67838046,23761370,5
+mz_canna,23761370,3
+fofnofound,23761370,5
+34174788,23761370,-1
+73470763,23761370,2
+nicole24,23761370,4
+3716766,23761370,4
+38182265,23761370,4
+81250941,23761370,5
+103424753,23761370,3
+little_cupid,23761370,2
+fatfay,23761370,4
+64117690,23761370,5
+61830049,23761370,4
+84410222,23761370,3
+4876430,23761370,5
+69376612,23761370,3
+120092472,23761370,5
+2898955,23761370,4
+42563034,23761370,4
+hotaru,23761370,5
+3420591,23761370,5
+78992884,23761370,5
+happy_fan,23761370,5
+68080863,23761370,5
+68080863,23761370,5
+4665390,23761370,3
+1378705,23761370,5
+41165795,23761370,4
+57955628,23761370,5
+ayint,23761370,5
+78859738,23761370,5
+LSDRauz,23761370,4
+65151326,23761370,5
+qianqian1988,23761370,5
+60703648,23761370,3
+AndyYue,23761370,5
+guozhiqiang,23761370,4
+34820112,23761370,4
+luciusluo,23761370,5
+71121278,23761370,2
+38615886,23761370,5
+57193722,23761370,5
+Nagini,23761370,4
+2229038,23761370,4
+68269356,23761370,5
+53374092,23761370,5
+55596037,23761370,5
+hougirl,23761370,4
+PrinceAlbert,23761370,3
+64122854,23761370,5
+48646504,23761370,5
+BlackRainbow,23761370,3
+57982370,23761370,3
+lizhenhao,23761370,5
+2610986,23761370,5
+topgunly,23761370,5
+63111195,23761370,4
+moazure,23761370,5
+59192273,23761370,3
+yqz23,23761370,4
+120674793,23761370,5
+26419001,23761370,4
+djqq930,23761370,4
+piaofu-bu,23761370,4
+juelianyiji,23761370,4
+49670470,23761370,3
+66865384,23761370,5
+Tong323,23761370,4
+krsnik,23761370,3
+Ailil,23761370,5
+sichunlei,23761370,4
+Gemini_Cain,23761370,5
+mengaxin,23761370,3
+47578741,23761370,5
+aini3851424215,23761370,5
+mo28,23761370,5
+bessie28,23761370,4
+53274197,23761370,5
+fireflyzz,23761370,4
+34740851,23761370,4
+Heyimwalker,23761370,4
+piggy68,23761370,4
+2186089,23761370,3
+bixianger,23761370,3
+madgewang,23761370,3
+67982328,23761370,4
+48516508,23761370,4
+47691409,23761370,5
+2977954,23761370,5
+33969609,23761370,5
+loveabuforever,23761370,5
+92579510,23761370,2
+renlon,23761370,4
+4266811,23761370,2
+41036146,23761370,5
+83782943,23761370,4
+kumasan,23761370,-1
+48435609,23761370,3
+4466839,23761370,5
+103646327,23761370,3
+dong79,23761370,3
+125368859,23761370,5
+47338102,23761370,3
+oooo000000ooo,23761370,-1
+oooo000000ooo,23761370,-1
+49585303,23761370,3
+swablue,23761370,5
+littlegreeeeen,23761370,-1
+ximeir,23761370,5
+1511264,23761370,3
+shuoyin,23761370,5
+2086864,23761370,3
+81721687,23761370,3
+yvettelee,23761370,3
+2202605,23761370,5
+abuuuu,23761370,-1
+57538148,23761370,4
+1623721,23761370,3
+holdingtt,23761370,4
+27927536,23761370,2
+youxiande1993,23761370,4
+3410512,23761370,4
+51224971,23761370,4
+tiamat,23761370,4
+tiamat,23761370,4
+dhhbanana,23761370,4
+bian1007,23761370,-1
+JosonChan,23761370,5
+thymedy,23761370,5
+65369148,23761370,4
+49832504,23761370,4
+hairuo,23761370,5
+102609869,23761370,4
+61878012,23761370,5
+wangjingling,23761370,4
+52454899,23761370,1
+119426507,23761370,4
+achen29,23761370,3
+126039569,23761370,3
+3269399,23761370,4
+46668318,23761370,5
+34483971,23761370,3
+48253364,23761370,3
+53393620,23761370,3
+ameliefei,23761370,3
+10490178,23761370,4
+67667793,23761370,4
+kongyan15,23761370,4
+eternitybalian,23761370,5
+3150256,23761370,5
+46702896,23761370,4
+2942680,23761370,-1
+tianxinsweetie,23761370,4
+43908408,23761370,4
+49133822,23761370,1
+80689279,23761370,3
+48942164,23761370,4
+34737598,23761370,5
+43088933,23761370,3
+50163391,23761370,2
+justineous,23761370,5
+bozzi,23761370,4
+41031427,23761370,5
+halosth,23761370,4
+zhmcyake,23761370,5
+52350621,23761370,5
+80667366,23761370,4
+48163178,23761370,4
+llms,23761370,5
+51943027,23761370,5
+3634287,23761370,-1
+funk,23761370,5
+53083429,23761370,3
+57846858,23761370,4
+qinuqing,23761370,3
+ice-yan,23761370,5
+121900406,23761370,4
+piecelost,23761370,4
+chris310-nan,23761370,4
+49550156,23761370,5
+53274291,23761370,4
+cherrykuo,23761370,5
+guoguo430,23761370,5
+4496644,23761370,3
+4496644,23761370,3
+51857547,23761370,5
+48165045,23761370,5
+46999271,23761370,5
+Just4U_M21,23761370,3
+44750610,23761370,3
+blacksmiles,23761370,5
+zangdb,23761370,4
+Rae.Q,23761370,4
+53855571,23761370,5
+44668432,23761370,5
+tea69,23761370,5
+44005787,23761370,5
+90605938,23761370,5
+shuonidaye,23761370,3
+yuco,23761370,2
+Fight,23761370,4
+KatoInoue,23761370,4
+91252045,23761370,5
+qianbao,23761370,5
+46819662,23761370,4
+47350672,23761370,4
+55846967,23761370,4
+sspp,23761370,4
+90795414,23761370,4
+xcxc519,23761370,5
+luanshishusheng,23761370,5
+88690250,23761370,3
+4272538,23761370,5
+64254075,23761370,5
+47341190,23761370,4
+tour-z,23761370,5
+maomiwang809,23761370,3
+115638914,23761370,5
+60028625,23761370,3
+83495033,23761370,-1
+2776951,23761370,3
+2255951,23761370,4
+4524463,23761370,4
+62817881,23761370,1
+122304933,23761370,5
+Ein7,23761370,3
+63442441,23761370,-1
+48305585,23761370,5
+58706396,23761370,-1
+dingxuefeng0918,23761370,3
+3181832,23761370,5
+yexiaohong,23761370,5
+emilia601,23761370,4
+zitn,23761370,3
+nicocandy,23761370,3
+LoserM,23761370,4
+49685366,23761370,5
+MayNight,23761370,4
+3895215,23761370,3
+guojie,23761370,4
+42040536,23761370,3
+27075066,23761370,3
+chenbigfa,23761370,-1
+57683000,23761370,3
+lepd,23761370,3
+46338692,23761370,4
+novel_zhou,23761370,3
+108016742,23761370,4
+48910067,23761370,5
+allenzn125,23761370,4
+5215498,23761370,5
+sslcfss,23761370,4
+lecay,23761370,4
+zuozuoleilei,23761370,3
+oriclschu,23761370,4
+126395591,23761370,5
+linglongwunv,23761370,3
+raulllllll,23761370,4
+1210621,23761370,4
+2435169,23761370,4
+reira_jxy,23761370,4
+79668765,23761370,4
+cpxxpc,23761370,4
+jiangmuyan,23761370,5
+53441725,23761370,3
+63458407,23761370,5
+YEEtalks,23761370,4
+69641042,23761370,4
+lovewand,23761370,4
+M8023I,23761370,4
+51374117,23761370,4
+bailuqinya,23761370,4
+4668841,23761370,4
+65411207,23761370,5
+78289516,23761370,4
+smilejackiekwok,23761370,5
+38170514,23761370,4
+aqusue,23761370,4
+coffeetea2010,23761370,5
+Justgreen,23761370,5
+shushushu,23761370,3
+85244172,23761370,4
+klaus2015,23761370,4
+46148106,23761370,4
+74133741,23761370,3
+Nur,23761370,4
+34037970,23761370,5
+Moira.J,23761370,2
+70837095,23761370,3
+flamingbrisk,23761370,3
+catsama77,23761370,5
+53663779,23761370,5
+4669955,23761370,3
+Animadagio,23761370,3
+tulipwings,23761370,4
+81343460,23761370,2
+yi.de.ren,23761370,5
+wjiandan,23761370,5
+akirastar,23761370,5
+wangyuan2648,23761370,5
+2625680,23761370,5
+3797693,23761370,5
+50573314,23761370,3
+84457214,23761370,5
+1432267,23761370,-1
+38939469,23761370,4
+48319336,23761370,5
+2226181,23761370,4
+attshuo,23761370,3
+57454818,23761370,5
+iris59,23761370,-1
+4564971,23761370,5
+Tangdiudiu,23761370,5
+cafe-cat,23761370,5
+puddingbear,23761370,4
+caojian120,23761370,4
+81434292,23761370,4
+bluep,23761370,5
+27085704,23761370,3
+40446795,23761370,4
+huangzhangyi,23761370,5
+64717876,23761370,5
+mae626,23761370,4
+moonx,23761370,2
+4575090,23761370,5
+maxineY,23761370,4
+67159032,23761370,5
+119265628,23761370,5
+58082154,23761370,2
+49184944,23761370,5
+4897181,23761370,2
+31970870,23761370,4
+47501890,23761370,4
+kellywhite,23761370,4
+frank1992,23761370,4
+2529003,23761370,-1
+67361991,23761370,5
+108442662,23761370,2
+1337231,23761370,4
+yischumi,23761370,4
+Darkkid,23761370,5
+52898270,23761370,5
+jonygreen,23761370,4
+2126628,23761370,5
+71911193,23761370,5
+erikzm,23761370,4
+valencheng,23761370,4
+81998222,23761370,3
+52640827,23761370,4
+chaobeir1028,23761370,5
+hnicypb,23761370,4
+62651248,23761370,5
+XenFOne,23761370,3
+fanlina,23761370,4
+hhhlulu,23761370,3
+63154481,23761370,4
+63768396,23761370,4
+MoonYu,23761370,4
+49120944,23761370,4
+50566549,23761370,4
+83313626,23761370,5
+54344898,23761370,4
+73967200,23761370,5
+64436185,23761370,4
+64436185,23761370,4
+82222137,23761370,4
+3529966,23761370,-1
+40323402,23761370,3
+49981158,23761370,3
+93238901,23761370,4
+24736304,23761370,4
+Ansheng_vivi,23761370,5
+63751575,23761370,5
+53433843,23761370,4
+patjaaee,23761370,5
+3435112,23761370,4
+starstear4ever,23761370,-1
+cleopatra927,23761370,3
+67808822,23761370,4
+botaowei,23761370,5
+70545879,23761370,4
+83927605,23761370,5
+48518877,23761370,4
+sueprince,23761370,3
+46618200,23761370,5
+38631038,23761370,-1
+businiao198x,23761370,4
+63045815,23761370,5
+1428304,23761370,4
+56054406,23761370,5
+31912011,23761370,5
+4110662,23761370,5
+47882268,23761370,3
+linshuyang,23761370,3
+56687446,23761370,-1
+3171683,23761370,4
+59487860,23761370,5
+46778345,23761370,4
+die1021,23761370,5
+41585917,23761370,5
+63562481,23761370,4
+miss0804,23761370,4
+simple999,23761370,4
+45487500,23761370,5
+edith.wong,23761370,4
+17100864,23761370,5
+wackyan,23761370,5
+lionlsh,23761370,4
+cornel1a,23761370,5
+51299697,23761370,5
+43793736,23761370,4
+vivianya,23761370,4
+4392147,23761370,4
+yukiseventeen,23761370,4
+66521619,23761370,5
+68876325,23761370,5
+42746283,23761370,2
+chauyeelee,23761370,4
+82974233,23761370,2
+2325587,23761370,3
+Annie-gu,23761370,4
+2809081,23761370,3
+Candiceme,23761370,5
+36405630,23761370,5
+36829119,23761370,4
+37580592,23761370,3
+48500939,23761370,4
+fujiaying,23761370,5
+54298534,23761370,4
+fishwyz,23761370,3
+julywazi,23761370,3
+1984029,23761370,-1
+51881703,23761370,5
+fkinh,23761370,-1
+66758358,23761370,5
+4306155,23761370,2
+1168375,23761370,5
+freiya,23761370,5
+cheapchic,23761370,3
+eq4,23761370,3
+itayloriswift,23761370,5
+ava33,23761370,5
+caoxudong818,23761370,3
+51386269,23761370,5
+2346529,23761370,5
+39777193,23761370,5
+yuanzedong,23761370,4
+88481535,23761370,5
+68093189,23761370,3
+56226480,23761370,5
+62562108,23761370,4
+ta5200,23761370,3
+IOMOVIE,23761370,5
+vebo,23761370,1
+fandeqing,23761370,4
+C61497775,23761370,4
+46470873,23761370,5
+luxiaoyan,23761370,3
+57751432,23761370,3
+46064966,23761370,-1
+63201479,23761370,4
+79870862,23761370,4
+48826254,23761370,4
+zoe_su,23761370,5
+zoe_su,23761370,5
+rpp,23761370,3
+jackiewong,23761370,5
+3048314,23761370,3
+3322909,23761370,4
+56752723,23761370,4
+56460053,23761370,5
+3315150,23761370,4
+52758065,23761370,5
+blue828,23761370,4
+119456438,23761370,5
+corgi,23761370,-1
+4614210,23761370,3
+yokotang,23761370,4
+fylq,23761370,3
+69319715,23761370,4
+missying,23761370,5
+61877571,23761370,1
+UnoCici,23761370,2
+1750236,23761370,5
+34238856,23761370,4
+54688842,23761370,5
+33720530,23761370,5
+90446896,23761370,5
+jessie77s,23761370,3
+86203854,23761370,5
+47025092,23761370,2
+49982987,23761370,5
+101792589,23761370,5
+53743018,23761370,5
+1709065,23761370,4
+maimaibupang,23761370,4
+aboutmxy,23761370,5
+orochimaru94264,23761370,5
+41674321,23761370,5
+54785429,23761370,4
+yourlilith,23761370,4
+mxl1988,23761370,2
+eleventhsnow,23761370,2
+4125357,23761370,4
+4624921,23761370,3
+donly,23761370,4
+4182845,23761370,3
+bayer04040404,23761370,4
+Pansycatt-Simy,23761370,4
+34929495,23761370,3
+65943333,23761370,4
+3961697,23761370,4
+63416638,23761370,4
+60304638,23761370,3
+38044008,23761370,3
+4203877,23761370,4
+59979647,23761370,4
+48136951,23761370,3
+3677597,23761370,4
+97331914,23761370,-1
+42952436,23761370,2
+5214442,23761370,5
+Valen-Valen,23761370,5
+2249031,23761370,5
+125643700,23761370,5
+64270457,23761370,5
+51563212,23761370,3
+84044503,23761370,5
+116536294,23761370,3
+57286930,23761370,1
+82037487,23761370,3
+ccmuzi,23761370,4
+wallaceLee,23761370,3
+Toopooh,23761370,3
+pppaige,23761370,4
+szwillaliu,23761370,-1
+Aurore.C,23761370,3
+kirsty417,23761370,4
+rain_stop,23761370,3
+stany,23761370,4
+54405784,23761370,4
+hxtdkz1226,23761370,4
+62848285,23761370,5
+joarieas,23761370,3
+46741687,23761370,4
+humuguo,23761370,3
+anarchy4,23761370,5
+actionaction,23761370,4
+reneeia,23761370,5
+58343189,23761370,4
+cantforgetka,23761370,4
+oloopy,23761370,4
+lu960902,23761370,5
+31286837,23761370,2
+46381380,23761370,3
+4657465,23761370,4
+65402301,23761370,5
+4161339,23761370,5
+re7l,23761370,3
+ai3cl1988323,23761370,4
+52380838,23761370,5
+1887686,23761370,4
+10218271,23761370,4
+63687502,23761370,4
+54069398,23761370,3
+3092474,23761370,4
+princhy,23761370,5
+120010714,23761370,5
+chenning3288,23761370,-1
+xinxinniannian,23761370,3
+3346145,23761370,3
+94563474,23761370,4
+monkeydshinki,23761370,4
+nixin_0711,23761370,2
+10957035,23761370,5
+issalou,23761370,3
+120121483,23761370,4
+yyyye,23761370,4
+cici0621,23761370,4
+52222041,23761370,5
+jumpeak,23761370,3
+wangdeuqna,23761370,5
+rilsilence,23761370,5
+50026577,23761370,4
+longsuiyun,23761370,4
+2597105,23761370,4
+72984075,23761370,3
+zhounian24,23761370,3
+lifeo2,23761370,4
+1436107,23761370,3
+19775012,23761370,4
+58819021,23761370,3
+sproblvem,23761370,4
+58924080,23761370,3
+42898402,23761370,2
+33688715,23761370,4
+hans.tung,23761370,2
+61058075,23761370,3
+3061104,23761370,5
+xmengyao,23761370,4
+57266286,23761370,4
+73825134,23761370,3
+sophie_Han,23761370,4
+126343506,23761370,5
+jennyseath,23761370,3
+xgtmy95,23761370,4
+51387684,23761370,4
+44506499,23761370,3
+70692054,23761370,5
+71888272,23761370,5
+eatbananamoku,23761370,4
+48258273,23761370,5
+imarco,23761370,5
+AndreaM,23761370,4
+hanjinxuan,23761370,4
+48884000,23761370,4
+3838722,23761370,4
+piratevolcano,23761370,5
+zyztonorrow,23761370,3
+3658319,23761370,5
+swanman17,23761370,5
+2273373,23761370,-1
+annieforget,23761370,4
+47739862,23761370,3
+65766101,23761370,5
+55793060,23761370,3
+46242801,23761370,5
+2379858,23761370,4
+44596229,23761370,4
+49181189,23761370,5
+Vivienne0321,23761370,4
+illumineheart,23761370,4
+80962620,23761370,3
+qiaoxiaoman,23761370,5
+44323834,23761370,3
+70500308,23761370,4
+Missy1012,23761370,5
+41039519,23761370,4
+nancyindream,23761370,2
+60810018,23761370,4
+3506866,23761370,3
+2581765,23761370,5
+36664715,23761370,4
+S-Long,23761370,4
+S-Long,23761370,4
+72454425,23761370,4
+71850388,23761370,5
+45311427,23761370,3
+2691100,23761370,3
+wcao,23761370,3
+candyaway,23761370,5
+cynclarac,23761370,4
+shannon_lxj,23761370,4
+66073608,23761370,4
+39024744,23761370,5
+ameleseue,23761370,5
+weiwei1020,23761370,5
+dawnyan,23761370,4
+pipixia1095,23761370,4
+nikkichou,23761370,5
+39680986,23761370,5
+68640061,23761370,2
+86734236,23761370,5
+2116998,23761370,3
+2116998,23761370,3
+122231719,23761370,4
+yin888888,23761370,5
+1530155,23761370,5
+41193009,23761370,4
+StandOnLifE,23761370,3
+53185750,23761370,4
+126335298,23761370,5
+casen_chen,23761370,5
+49993674,23761370,5
+54352313,23761370,3
+70333737,23761370,4
+tinyyuan,23761370,5
+67863828,23761370,4
+67781222,23761370,4
+rockingyukari,23761370,4
+123503132,23761370,5
+raizzt,23761370,5
+95823388,23761370,4
+ankui,23761370,3
+47322994,23761370,4
+2642604,23761370,5
+2846758,23761370,4
+renminling,23761370,4
+1646634,23761370,4
+89065368,23761370,3
+zmayer,23761370,3
+56365731,23761370,5
+2162982,23761370,4
+gujiajie,23761370,4
+koktebel,23761370,4
+2271381,23761370,5
+1964696,23761370,4
+monsterjune,23761370,4
+80250339,23761370,5
+gsherwin,23761370,4
+1558551,23761370,3
+51438766,23761370,3
+66228440,23761370,5
+54467510,23761370,5
+63526709,23761370,5
+2102530,23761370,5
+pennyfc21,23761370,4
+40070359,23761370,5
+85091142,23761370,3
+Lost_Atlantis,23761370,5
+iamxiaoqi,23761370,4
+lefttendency,23761370,5
+71575345,23761370,5
+randomforever,23761370,5
+49893438,23761370,4
+qiaokelijia,23761370,5
+2647676,23761370,3
+leexiaoxiao,23761370,5
+2181749,23761370,3
+choudao,23761370,5
+in551w1,23761370,4
+fangli,23761370,4
+39744589,23761370,4
+lesterlsh,23761370,5
+56199113,23761370,3
+byhimself,23761370,3
+37322815,23761370,5
+3937157,23761370,3
+lesones,23761370,3
+yyqh,23761370,5
+3229629,23761370,3
+68087144,23761370,4
+airstreet,23761370,5
+89667563,23761370,5
+9628483,23761370,4
+28820949,23761370,5
+seabisuit,23761370,3
+valiantina,23761370,4
+37132919,23761370,5
+1947840,23761370,5
+120048612,23761370,4
+ydna,23761370,4
+52597198,23761370,5
+66387369,23761370,2
+44450597,23761370,4
+60786536,23761370,4
+TAn798014,23761370,-1
+emmacqq,23761370,4
+dymauny,23761370,5
+mufanqiushi,23761370,4
+4523981,23761370,2
+lightblue0923,23761370,3
+67002094,23761370,4
+charlie_c,23761370,5
+82690334,23761370,3
+65623043,23761370,5
+zjmmc86,23761370,4
+59352370,23761370,5
+49060371,23761370,5
+2252273,23761370,4
+shallee,23761370,3
+49193773,23761370,4
+zoe0913,23761370,4
+45724061,23761370,5
+45724061,23761370,5
+123030129,23761370,5
+saemahr,23761370,4
+62828901,23761370,5
+57996084,23761370,4
+notoshaz,23761370,3
+Sophia_1989,23761370,4
+3937143,23761370,5
+ionoalareedom,23761370,4
+46779493,23761370,5
+50555804,23761370,4
+2184776,23761370,3
+tlbb008,23761370,5
+50158660,23761370,3
+55993064,23761370,2
+98013800,23761370,5
+47971020,23761370,3
+41442756,23761370,3
+2182012,23761370,3
+2112382,23761370,4
+c81018y,23761370,4
+23665796,23761370,5
+4698494,23761370,3
+chenyuli,23761370,-1
+51222757,23761370,3
+45162443,23761370,3
+15088576,23761370,-1
+wlee21,23761370,5
+tianjianshuo,23761370,4
+49122242,23761370,4
+YUNZIAH4Y,23761370,3
+28074817,23761370,4
+74628004,23761370,5
+wengzhenbang,23761370,5
+48631155,23761370,5
+41125061,23761370,3
+smilemiaomiao,23761370,5
+115476786,23761370,5
+4016863,23761370,5
+3096049,23761370,4
+gaoxiafang,23761370,3
+misshuyunyi,23761370,5
+88943744,23761370,4
+43446241,23761370,5
+lily_gaga,23761370,-1
+onlyonelingling,23761370,5
+81441568,23761370,4
+Nothing_Mew,23761370,4
+3202207,23761370,2
+69414833,23761370,2
+MaSir,23761370,5
+luan7777777,23761370,5
+quelheart,23761370,3
+4509525,23761370,4
+64860045,23761370,5
+75117514,23761370,5
+2994831,23761370,4
+126327911,23761370,5
+85660086,23761370,5
+57540462,23761370,4
+57540462,23761370,4
+87648315,23761370,4
+51297229,23761370,4
+3122796,23761370,5
+71014294,23761370,4
+tinaxuang,23761370,4
+ericaz18,23761370,5
+helo_aBiNg,23761370,5
+fengwuyaoye,23761370,5
+45230623,23761370,5
+jch1989,23761370,5
+2333166,23761370,3
+3915363,23761370,5
+39835043,23761370,3
+64626178,23761370,5
+56173485,23761370,5
+46431893,23761370,4
+dangerousfart,23761370,3
+kouer,23761370,4
+49011902,23761370,4
+48373038,23761370,5
+48850482,23761370,4
+tracycw618,23761370,4
+milk1210,23761370,4
+115849578,23761370,3
+4195216,23761370,4
+5237945,23761370,5
+JTG,23761370,5
+fishfeimi,23761370,3
+60057049,23761370,4
+olenaooo,23761370,5
+50900602,23761370,5
+4251160,23761370,4
+48750685,23761370,5
+4570858,23761370,3
+47022904,23761370,-1
+bydkq,23761370,5
+jingj,23761370,3
+122203111,23761370,5
+summervoilet,23761370,4
+shousolo,23761370,3
+xiaobob03,23761370,4
+61086502,23761370,4
+47650145,23761370,4
+sealyhere,23761370,5
+47984188,23761370,5
+38981287,23761370,5
+YeLLow_qst,23761370,4
+78731933,23761370,4
+54292066,23761370,-1
+45404676,23761370,5
+70301561,23761370,5
+1762190,23761370,5
+56000884,23761370,5
+geminifreak,23761370,4
+cccCORRINEeee,23761370,5
+106596511,23761370,3
+59338554,23761370,5
+lc_galaxy,23761370,4
+4057025,23761370,4
+maiyatang1208,23761370,4
+28079955,23761370,3
+64618863,23761370,4
+Audreywu,23761370,4
+47540564,23761370,4
+towndone,23761370,4
+56350288,23761370,4
+35991194,23761370,3
+94670941,23761370,5
+sunnycuento,23761370,4
+123173320,23761370,4
+risywang,23761370,5
+76681041,23761370,5
+my-cancer,23761370,5
+4765777,23761370,2
+beenyo,23761370,4
+56388550,23761370,2
+46565536,23761370,4
+48921552,23761370,4
+hohosweet,23761370,4
+125138694,23761370,4
+15920466,23761370,4
+filmman,23761370,-1
+4245970,23761370,5
+63396436,23761370,5
+46560322,23761370,5
+2586114,23761370,5
+57927830,23761370,5
+fairyariel,23761370,5
+76279268,23761370,4
+star027,23761370,4
+23953998,23761370,-1
+57798216,23761370,4
+yunwen_2012,23761370,5
+miqu,23761370,3
+44902866,23761370,4
+unclelonglegs,23761370,4
+46171104,23761370,4
+4707398,23761370,4
+Earrame,23761370,4
+52174604,23761370,5
+chankawai,23761370,5
+75874484,23761370,5
+tttif,23761370,4
+91656862,23761370,5
+57650145,23761370,3
+huiyuanai,23761370,3
+1364079,23761370,5
+1552049,23761370,-1
+73754762,23761370,4
+66234722,23761370,5
+Bermuda-RAN,23761370,5
+59524621,23761370,4
+41099035,23761370,5
+water16,23761370,5
+47325156,23761370,5
+76815966,23761370,5
+livingfly,23761370,4
+a158z666,23761370,5
+47289679,23761370,4
+53601891,23761370,3
+48046648,23761370,5
+48504551,23761370,4
+47802404,23761370,5
+efox5,23761370,4
+db_wxl,23761370,5
+47929056,23761370,1
+114011906,23761370,4
+double1991,23761370,3
+76216989,23761370,5
+lunachen,23761370,1
+citytan,23761370,5
+57224984,23761370,4
+80379803,23761370,3
+54374544,23761370,-1
+xhcforever,23761370,4
+artemishappy,23761370,4
+57783391,23761370,5
+53880480,23761370,5
+3976831,23761370,4
+100312973,23761370,4
+zhangying0913,23761370,5
+54867328,23761370,5
+4689314,23761370,3
+Mochaw97,23761370,5
+82520014,23761370,5
+liyang3228082,23761370,5
+121274651,23761370,4
+51016354,23761370,5
+mukucelia,23761370,5
+2586327,23761370,3
+4166635,23761370,3
+nanguat,23761370,-1
+63209376,23761370,4
+zmwtf,23761370,5
+36659366,23761370,5
+50938818,23761370,5
+ylx,23761370,5
+72705973,23761370,5
+grass_tree,23761370,2
+36919486,23761370,4
+dreamdeer,23761370,3
+2980674,23761370,4
+32111208,23761370,4
+84956850,23761370,4
+52558082,23761370,5
+90623764,23761370,4
+iwasbornforthis,23761370,4
+KarenC12,23761370,4
+54214076,23761370,4
+3375524,23761370,-1
+57831440,23761370,4
+heartbreaker,23761370,3
+memoricry,23761370,5
+50403240,23761370,4
+42173846,23761370,4
+52242741,23761370,4
+64003394,23761370,5
+48373291,23761370,5
+48247604,23761370,4
+juan33,23761370,2
+xuanyuanshiyu,23761370,5
+59390060,23761370,3
+81923941,23761370,3
+3310338,23761370,5
+67897888,23761370,5
+morning.garden,23761370,3
+4900763,23761370,5
+dawdle,23761370,4
+amour,23761370,3
+122929763,23761370,5
+laputanyoung,23761370,5
+CBBD,23761370,4
+3731229,23761370,4
+aguan,23761370,5
+100622662,23761370,4
+rockeyfish,23761370,4
+chamou,23761370,4
+x-inter,23761370,4
+53799192,23761370,5
+eien99999,23761370,5
+51192966,23761370,3
+55805756,23761370,-1
+2155273,23761370,4
+81573829,23761370,5
+6086714,23761370,3
+63179901,23761370,5
+51697610,23761370,5
+O0o0O0o0O17,23761370,5
+lyingcream,23761370,5
+53214532,23761370,4
+fansherlocked,23761370,4
+wxq1012,23761370,2
+23978669,23761370,4
+xhide,23761370,3
+jakehkj,23761370,5
+lovening_yao,23761370,5
+104686807,23761370,4
+45626339,23761370,3
+tyxjasmine,23761370,4
+41002816,23761370,4
+33540039,23761370,5
+49599539,23761370,5
+Deeper.Dark,23761370,3
+50197190,23761370,4
+1259506,23761370,3
+70572475,23761370,3
+yhj412,23761370,-1
+jijiayu,23761370,3
+2276440,23761370,3
+50387411,23761370,5
+43435925,23761370,4
+69517071,23761370,4
+65027660,23761370,-1
+124917591,23761370,4
+julianye925,23761370,4
+103196865,23761370,5
+61536056,23761370,5
+53925227,23761370,4
+68979293,23761370,4
+46669786,23761370,4
+wuyue45,23761370,3
+shabaor,23761370,5
+83399651,23761370,3
+mr_peanut80,23761370,3
+119995519,23761370,5
+60261141,23761370,5
+littlezhisandra,23761370,3
+figo341,23761370,5
+42535832,23761370,4
+auvauva,23761370,3
+wxhafs,23761370,3
+10713175,23761370,4
+beckhust,23761370,2
+ashin4ever,23761370,3
+57447240,23761370,4
+52747562,23761370,3
+51481264,23761370,-1
+48865553,23761370,5
+53283594,23761370,3
+49963532,23761370,-1
+Xiao_Qiang,23761370,3
+56749724,23761370,5
+116391652,23761370,4
+36090535,23761370,5
+1698143,23761370,5
+44897343,23761370,4
+mayiok,23761370,5
+cfaye,23761370,3
+4385109,23761370,5
+skyline0623,23761370,4
+2722902,23761370,4
+em_mushroom,23761370,-1
+63583816,23761370,4
+46707495,23761370,4
+scmwangkai,23761370,5
+14277787,23761370,5
+62665352,23761370,5
+juyue13,23761370,5
+114670150,23761370,2
+114670150,23761370,2
+liuyunxuan333,23761370,5
+79791904,23761370,5
+electroniXtar,23761370,4
+3597938,23761370,4
+toubai,23761370,4
+Azules,23761370,1
+onlyzhaojunyi,23761370,4
+46943365,23761370,4
+48956654,23761370,5
+hatsunkeo,23761370,4
+25575565,23761370,4
+4371910,23761370,5
+46801772,23761370,5
+Jeffstyle,23761370,4
+4116430,23761370,4
+29568724,23761370,-1
+53498536,23761370,5
+88135973,23761370,3
+33188939,23761370,5
+34990540,23761370,3
+sidneybig,23761370,4
+paeonia19,23761370,5
+32144547,23761370,4
+4095413,23761370,5
+mogujunmomo,23761370,4
+89982109,23761370,5
+7880093,23761370,-1
+43130115,23761370,4
+35194523,23761370,4
+Yichun_D,23761370,4
+2964464,23761370,1
+57697079,23761370,4
+68446356,23761370,-1
+zhuroushitianai,23761370,5
+58404696,23761370,4
+49077360,23761370,4
+EGOLiar,23761370,4
+creep-way,23761370,5
+64140521,23761370,5
+55309998,23761370,4
+44500358,23761370,4
+53815637,23761370,4
+zhouchenhe,23761370,5
+83016243,23761370,4
+57727542,23761370,5
+47864122,23761370,-1
+60567034,23761370,4
+48781156,23761370,4
+weirdoToC,23761370,4
+72977696,23761370,5
+58087513,23761370,4
+Hunter2046,23761370,5
+75346809,23761370,4
+56396911,23761370,4
+minhom,23761370,5
+mihudawang,23761370,4
+2391373,23761370,5
+1281721,23761370,5
+45167634,23761370,5
+echolulala,23761370,5
+73626355,23761370,4
+jie_x,23761370,5
+70519062,23761370,2
+47331166,23761370,5
+122973556,23761370,4
+54630672,23761370,4
+107399304,23761370,4
+Shoukeirei,23761370,5
+81626835,23761370,5
+2232531,23761370,-1
+36834058,23761370,-1
+69585394,23761370,5
+45107933,23761370,5
+67750760,23761370,4
+41604678,23761370,4
+xslidian,23761370,1
+39105874,23761370,-1
+ask4more,23761370,4
+124494416,23761370,5
+1054914,23761370,5
+csprite,23761370,5
+115822113,23761370,3
+monkeycupl,23761370,5
+124680480,23761370,4
+82836435,23761370,5
+70634565,23761370,4
+78128531,23761370,5
+citylose,23761370,5
+2203673,23761370,-1
+1378503,23761370,4
+itms,23761370,3
+ff_way,23761370,4
+yiranhyy,23761370,5
+52767062,23761370,5
+Precious0113,23761370,5
+Thallo,23761370,5
+Hypatia,23761370,5
+46185273,23761370,5
+83925614,23761370,5
+83925614,23761370,5
+ekodeng,23761370,5
+rovsgonio,23761370,3
+Bleaker,23761370,3
+50198822,23761370,5
+1258506,23761370,5
+83902282,23761370,4
+jiangshilun,23761370,3
+jinguo928,23761370,3
+54257539,23761370,4
+wutongsuliang,23761370,5
+63254823,23761370,-1
+latticetsui,23761370,4
+83233640,23761370,-1
+gonelieaf,23761370,4
+else1104,23761370,5
+121064013,23761370,5
+79192198,23761370,3
+57354893,23761370,3
+74324313,23761370,3
+74324313,23761370,3
+2633400,23761370,4
+1707563,23761370,4
+chatterboc,23761370,5
+2860675,23761370,4
+61591595,23761370,4
+57588718,23761370,5
+conocasun,23761370,3
+29179249,23761370,4
+96750827,23761370,3
+58374037,23761370,4
+62559581,23761370,4
+gutt727,23761370,4
+91583777,23761370,4
+zhangzhai,23761370,5
+47218474,23761370,3
+tlcliu,23761370,4
+cafe9527,23761370,5
+Hijennychou,23761370,3
+126283294,23761370,5
+SD58284343,23761370,4
+45408474,23761370,5
+49365587,23761370,4
+49020333,23761370,5
+Zynismus,23761370,4
+cyansugar,23761370,3
+3419853,23761370,3
+vicky_talk,23761370,5
+65014224,23761370,4
+45585924,23761370,3
+reginax8,23761370,5
+91582621,23761370,5
+48094617,23761370,5
+73011629,23761370,4
+jiayitang,23761370,5
+lucos,23761370,5
+60162796,23761370,4
+69467775,23761370,4
+48849326,23761370,5
+aliceglass,23761370,1
+57058153,23761370,4
+121355707,23761370,2
+48231675,23761370,5
+13104081,23761370,4
+4481826,23761370,5
+2788632,23761370,3
+62309781,23761370,5
+60002920,23761370,5
+lunacake,23761370,3
+2368381,23761370,5
+44595434,23761370,-1
+zhouzihao,23761370,3
+douxiaokou,23761370,4
+57174556,23761370,5
+cxxloveavril,23761370,3
+infante,23761370,3
+53620031,23761370,4
+ddumplling,23761370,3
+43653538,23761370,4
+3112151,23761370,3
+allzero,23761370,5
+Freckles_QQ,23761370,-1
+moon1129,23761370,4
+willcome,23761370,3
+chaozhechitang,23761370,5
+gandalfmellyrn,23761370,4
+76938523,23761370,4
+HYGUY,23761370,3
+WiseUncleWu,23761370,4
+53898523,23761370,3
+2196201,23761370,4
+43300305,23761370,5
+2804944,23761370,5
+77140197,23761370,5
+88427804,23761370,5
+68102977,23761370,3
+crystal19910312,23761370,4
+52814839,23761370,4
+fly_to_heaven,23761370,3
+25621274,23761370,4
+xperia,23761370,4
+lilyzhou2012,23761370,5
+bellamanson,23761370,3
+webulu,23761370,5
+shenyuxi,23761370,5
+66858600,23761370,4
+9267863,23761370,-1
+44070862,23761370,5
+y193,23761370,4
+61613181,23761370,5
+30580516,23761370,4
+lchdonkey,23761370,-1
+62079416,23761370,5
+sjxin,23761370,5
+81832502,23761370,5
+120854619,23761370,5
+126275262,23761370,2
+wesley007,23761370,3
+yuanyan,23761370,4
+yhdxtz94,23761370,3
+46525164,23761370,4
+Coast0to0coast,23761370,3
+63090119,23761370,3
+dreamscapeout,23761370,3
+4640701,23761370,5
+JOKEYFOREVER,23761370,4
+66834030,23761370,5
+49453434,23761370,5
+yeahxcx,23761370,4
+57027418,23761370,5
+115258566,23761370,4
+wangying2325,23761370,4
+61119863,23761370,5
+lncclacs,23761370,3
+lcpeng,23761370,5
+51795148,23761370,4
+1326095,23761370,4
+122683461,23761370,5
+1552160,23761370,3
+ying823624,23761370,4
+53331509,23761370,5
+54091060,23761370,4
+48047254,23761370,4
+60495529,23761370,4
+cheesechee,23761370,4
+TheLichKing,23761370,3
+60907946,23761370,5
+freakymono,23761370,3
+hhriver,23761370,4
+77499472,23761370,5
+Gordoncoco,23761370,5
+raes,23761370,5
+70488942,23761370,5
+lolita822,23761370,5
+beanbag,23761370,3
+yamiyuki,23761370,5
+41520364,23761370,3
+58518290,23761370,5
+55419419,23761370,4
+59629692,23761370,3
+70898983,23761370,5
+120931613,23761370,4
+45385294,23761370,4
+17601838,23761370,-1
+54455379,23761370,5
+49467804,23761370,5
+dreamlee_iris,23761370,3
+46690733,23761370,4
+41288184,23761370,5
+55347894,23761370,4
+3989868,23761370,3
+hustzxf,23761370,3
+4692353,23761370,5
+85064698,23761370,4
+musiclass3,23761370,4
+fiirstday,23761370,4
+57894891,23761370,4
+71972126,23761370,4
+57105566,23761370,3
+Eileke,23761370,4
+walkingtime,23761370,4
+68779054,23761370,4
+72023114,23761370,4
+daidai1346,23761370,5
+lencia,23761370,5
+lonelyroadzy,23761370,4
+61134295,23761370,5
+113440847,23761370,5
+52685413,23761370,2
+kindghost,23761370,5
+xudi,23761370,3
+Loveviola,23761370,5
+29844884,23761370,3
+30343256,23761370,5
+Jeacy,23761370,4
+59141768,23761370,5
+88661228,23761370,4
+BarbieJ,23761370,5
+61238455,23761370,5
+aoikaho,23761370,2
+1491317,23761370,-1
+pigeon-komatsu,23761370,3
+43756834,23761370,3
+1781585,23761370,4
+ada2fill,23761370,4
+jiachangting,23761370,5
+46968893,23761370,5
+13893884,23761370,4
+looknana,23761370,3
+62633913,23761370,5
+sunnyliyuan,23761370,4
+fish_in_desert,23761370,3
+65317550,23761370,5
+52605231,23761370,4
+4448847,23761370,2
+49317914,23761370,5
+47218521,23761370,4
+42263664,23761370,1
+ysheen,23761370,4
+56655394,23761370,4
+ShaRiko,23761370,1
+tmrai,23761370,4
+60046536,23761370,5
+saintaquarius,23761370,5
+lucksam,23761370,3
+xiobai,23761370,5
+sradium,23761370,3
+46267341,23761370,3
+37662608,23761370,4
+61294090,23761370,5
+warmwan,23761370,5
+21618014,23761370,4
+Gabriel_Mars,23761370,4
+2227016,23761370,4
+62393485,23761370,5
+73314721,23761370,3
+Cherly,23761370,5
+52740996,23761370,5
+peakpak,23761370,5
+3283114,23761370,4
+zhaoda,23761370,5
+85826337,23761370,5
+veolxxxx,23761370,4
+58741364,23761370,4
+lairen,23761370,4
+gekisoul,23761370,-1
+61703584,23761370,5
+sofasay,23761370,4
+64368959,23761370,3
+102803398,23761370,5
+96471815,23761370,5
+50616224,23761370,5
+1990474,23761370,4
+62445798,23761370,4
+34006126,23761370,5
+48770048,23761370,5
+52790172,23761370,4
+80005992,23761370,4
+64835633,23761370,4
+chouchouMQ1010,23761370,4
+yimaima,23761370,3
+bear1943,23761370,4
+67043112,23761370,5
+daoluan,23761370,5
+126259116,23761370,5
+45951518,23761370,2
+36884133,23761370,5
+52576282,23761370,4
+40839121,23761370,4
+lvhuimin,23761370,5
+44662399,23761370,5
+49412033,23761370,5
+yybyale,23761370,4
+33954209,23761370,5
+36748230,23761370,5
+dearabbyabby,23761370,4
+3210031,23761370,5
+2602040,23761370,5
+104120710,23761370,4
+2444544,23761370,4
+ipodmelody,23761370,4
+maggieyb,23761370,4
+31692663,23761370,4
+laodao9527,23761370,4
+116671714,23761370,5
+102788325,23761370,5
+1960724,23761370,-1
+mrschan,23761370,5
+cathyM,23761370,5
+ld6688hk,23761370,4
+outstandinger,23761370,5
+siusangmlam,23761370,4
+48174123,23761370,5
+icerabbitbaby,23761370,4
+46678115,23761370,5
+74759325,23761370,5
+29035048,23761370,5
+xchill,23761370,3
+23189422,23761370,4
+villaicr,23761370,4
+vic-huang,23761370,4
+moranyushi,23761370,5
+120939638,23761370,3
+87558584,23761370,2
+61038892,23761370,5
+chonghaitao,23761370,-1
+74601985,23761370,4
+42099390,23761370,-1
+3800028,23761370,-1
+61321704,23761370,3
+badass420,23761370,-1
+Live123,23761370,5
+2512153,23761370,3
+zwq2u,23761370,4
+56236476,23761370,4
+savagesandy,23761370,4
+moonorz,23761370,4
+34059998,23761370,5
+37819182,23761370,5
+85661202,23761370,4
+30919114,23761370,4
+63730928,23761370,4
+84140369,23761370,5
+LindsayFisher,23761370,3
+TOMATE,23761370,5
+42735872,23761370,4
+39748478,23761370,5
+mirageofbless,23761370,4
+vera1988,23761370,5
+chl199093,23761370,5
+rujiayang,23761370,4
+54688343,23761370,3
+1709876,23761370,3
+Shela_fong,23761370,5
+ivypa,23761370,4
+watermemory,23761370,4
+58430173,23761370,4
+crashqueen,23761370,3
+58728195,23761370,5
+122103175,23761370,5
+51578679,23761370,4
+buddhajump,23761370,4
+93724180,23761370,4
+42657355,23761370,3
+manybirds,23761370,4
+54614500,23761370,5
+43538965,23761370,3
+Sm_Qop,23761370,5
+ananmaomi,23761370,3
+48940231,23761370,-1
+120956047,23761370,4
+2913325,23761370,4
+46138752,23761370,3
+Amberine,23761370,2
+freene64,23761370,5
+4603766,23761370,3
+sweetieknight,23761370,5
+rosa9,23761370,4
+46617771,23761370,5
+aegeanguo,23761370,5
+37799176,23761370,4
+55305623,23761370,5
+81217259,23761370,5
+126254755,23761370,3
+josiekiu,23761370,5
+66778972,23761370,5
+121203548,23761370,5
+63589436,23761370,5
+35888113,23761370,5
+49034223,23761370,5
+51700552,23761370,4
+35905722,23761370,5
+98506579,23761370,-1
+31920828,23761370,5
+2228009,23761370,3
+snoopy198471,23761370,3
+31427645,23761370,4
+56943046,23761370,3
+leaflet_teresa,23761370,4
+96149760,23761370,4
+96149760,23761370,4
+3533238,23761370,3
+justlikesue,23761370,3
+2479678,23761370,3
+balltaker,23761370,3
+36627836,23761370,5
+ancol,23761370,5
+2233141,23761370,4
+2354646,23761370,4
+lovevvm,23761370,4
+10724871,23761370,4
+36121445,23761370,3
+66928241,23761370,5
+laurie-yan,23761370,3
+55394418,23761370,5
+29551046,23761370,4
+hxlnelson,23761370,5
+3851255,23761370,4
+cheergao,23761370,4
+zl939835663,23761370,4
+61453800,23761370,3
+126252523,23761370,5
+DreamDeeeer,23761370,5
+silentforce,23761370,4
+59399193,23761370,4
+41482074,23761370,3
+61565344,23761370,5
+43757152,23761370,5
+6681296,23761370,-1
+mymike,23761370,4
+jiongreborn,23761370,3
+2401213,23761370,5
+unrealzhizhi,23761370,5
+2033366,23761370,4
+jimpanda,23761370,4
+62579078,23761370,5
+64359754,23761370,2
+92484747,23761370,5
+75444584,23761370,1
+33370952,23761370,5
+43018283,23761370,5
+60020438,23761370,4
+63234207,23761370,3
+null1991,23761370,3
+89271753,23761370,4
+27562730,23761370,4
+49296258,23761370,5
+47311521,23761370,1
+41991102,23761370,2
+sbdaiyifei,23761370,5
+exsept,23761370,4
+61719919,23761370,4
+graciesy,23761370,3
+124720796,23761370,4
+54651509,23761370,3
+yeyongqing,23761370,5
+57966600,23761370,4
+stacey0507,23761370,4
+13728402,23761370,4
+82820975,23761370,4
+3470100,23761370,5
+1399685,23761370,5
+tshane,23761370,4
+65811043,23761370,5
+kaname,23761370,4
+52774723,23761370,3
+2675546,23761370,4
+60593481,23761370,3
+3613366,23761370,2
+57918094,23761370,3
+caihuadadou,23761370,4
+qingwazuiweida,23761370,5
+dimple_sa,23761370,3
+caisefan,23761370,5
+freak_lee,23761370,4
+kylingu,23761370,5
+56063289,23761370,4
+mumuyaa,23761370,-1
+64169346,23761370,4
+minishine,23761370,4
+51171224,23761370,4
+102395039,23761370,5
+68737314,23761370,-1
+53639016,23761370,5
+shadowshame,23761370,4
+vincent-wen,23761370,5
+chongtouai,23761370,4
+3538758,23761370,3
+bloominglove,23761370,3
+2028755,23761370,4
+41327926,23761370,5
+48850203,23761370,3
+51664645,23761370,5
+Ellenlium01,23761370,4
+most100,23761370,5
+51388058,23761370,4
+66926833,23761370,3
+60027986,23761370,3
+120222665,23761370,4
+jokylovecr,23761370,1
+3850256,23761370,5
+78150719,23761370,5
+55022748,23761370,3
+46682644,23761370,5
+123537172,23761370,5
+50376515,23761370,5
+71386081,23761370,4
+82522666,23761370,4
+1444881,23761370,4
+50199295,23761370,5
+58542880,23761370,5
+84403778,23761370,4
+120927964,23761370,4
+camilleye,23761370,5
+48467281,23761370,4
+kyouichigo,23761370,2
+4211622,23761370,5
+2221354,23761370,3
+41409099,23761370,4
+102082680,23761370,4
+taojingyu1996,23761370,5
+4142157,23761370,5
+1522300,23761370,5
+coldestwind,23761370,3
+59569708,23761370,3
+43464406,23761370,3
+50416947,23761370,3
+evan14,23761370,5
+fangxiaoyi,23761370,4
+68898069,23761370,4
+fzskady,23761370,3
+sungoodluck,23761370,-1
+2662670,23761370,4
+jerry20071012,23761370,3
+68405839,23761370,4
+49902324,23761370,3
+54880168,23761370,4
+103629204,23761370,3
+panda0106,23761370,4
+fengwanjing,23761370,5
+33910042,23761370,2
+53000504,23761370,4
+Jiangxiaolu,23761370,5
+metaphyp,23761370,4
+Faywish,23761370,-1
+2172840,23761370,5
+55788340,23761370,5
+44353069,23761370,4
+66399464,23761370,4
+61278123,23761370,4
+2135609,23761370,3
+114581074,23761370,5
+annnnnn,23761370,4
+SECKY,23761370,4
+tasuka_l,23761370,3
+35003254,23761370,3
+60514515,23761370,4
+atdogdoor,23761370,5
+orfine,23761370,5
+FidoMason,23761370,5
+73667987,23761370,5
+51858742,23761370,1
+106347535,23761370,2
+67143504,23761370,5
+57988123,23761370,3
+53809597,23761370,5
+lovepp499,23761370,4
+linco23,23761370,4
+dreamfantasy,23761370,5
+EI_wei,23761370,4
+LogicLady,23761370,4
+jagpumpkin,23761370,2
+lemonj,23761370,4
+72602686,23761370,3
+3664094,23761370,2
+chidoufuma,23761370,5
+zhuxiaoxuan,23761370,4
+tinyoyo,23761370,5
+kana906,23761370,-1
+yayun920,23761370,5
+51482803,23761370,5
+48126657,23761370,1
+84776215,23761370,5
+ksely,23761370,4
+LizShen,23761370,4
+33139664,23761370,5
+75338620,23761370,4
+3121598,23761370,4
+2319622,23761370,4
+2428014,23761370,4
+66045294,23761370,5
+2705613,23761370,4
+49833007,23761370,4
+shanelean,23761370,4
+weimoxx,23761370,3
+4380586,23761370,4
+dizzyzzy,23761370,4
+angle1,23761370,5
+uping,23761370,5
+36030831,23761370,5
+123232321,23761370,5
+1436443,23761370,4
+1314672,23761370,5
+87825965,23761370,4
+51881494,23761370,4
+70737495,23761370,5
+48171950,23761370,3
+54607623,23761370,4
+104522932,23761370,5
+82791782,23761370,5
+126237126,23761370,5
+46430008,23761370,5
+yiduoduohua,23761370,5
+81090765,23761370,1
+savvy12,23761370,4
+55598262,23761370,4
+78988976,23761370,4
+50630299,23761370,4
+58519022,23761370,-1
+foxgarden,23761370,3
+ixxxxparis,23761370,5
+wraithhero,23761370,5
+mr.slow,23761370,3
+EncoreUneFois,23761370,3
+120269798,23761370,4
+speaking,23761370,4
+48281244,23761370,4
+closed2200,23761370,5
+iyeah,23761370,5
+69112472,23761370,5
+73691870,23761370,5
+37897776,23761370,3
+fateV,23761370,4
+49571123,23761370,3
+46237216,23761370,4
+lingxi1988,23761370,5
+31563326,23761370,4
+66324417,23761370,5
+mingren2588,23761370,5
+59347352,23761370,4
+ocici,23761370,5
+48895345,23761370,4
+90187672,23761370,4
+3015416,23761370,4
+bilibilla,23761370,5
+36421159,23761370,5
+49209219,23761370,4
+44458228,23761370,4
+ihaveafreeheart,23761370,4
+babyj1992,23761370,5
+73571891,23761370,5
+48979717,23761370,5
+2826756,23761370,4
+Jash1118,23761370,5
+dearw616,23761370,5
+Annlee1891,23761370,4
+59113889,23761370,5
+syh115,23761370,4
+iwangke,23761370,3
+hzrviola,23761370,5
+hzrviola,23761370,5
+4394790,23761370,1
+OrangeGemini,23761370,3
+3564893,23761370,5
+xieyixi,23761370,4
+yumj,23761370,3
+58982615,23761370,4
+70389721,23761370,4
+banxian,23761370,3
+liu_shun,23761370,5
+47537862,23761370,5
+125680910,23761370,3
+62301830,23761370,4
+Angelina_Tao,23761370,4
+24068635,23761370,5
+55314291,23761370,5
+essay13,23761370,4
+catlyn,23761370,5
+125136984,23761370,5
+95621225,23761370,4
+viviwanghoho,23761370,5
+48984520,23761370,4
+2659361,23761370,3
+50396291,23761370,4
+homedrama,23761370,3
+81353495,23761370,4
+38837868,23761370,4
+33822786,23761370,5
+momoran,23761370,5
+35533635,23761370,5
+45783599,23761370,5
+phoenix43,23761370,4
+aircrow,23761370,5
+47361549,23761370,4
+53811685,23761370,5
+31068073,23761370,5
+93468403,23761370,5
+jeonwoo,23761370,3
+42878642,23761370,4
+donnarto,23761370,5
+toostupid,23761370,5
+liumang2,23761370,4
+62892368,23761370,4
+25195048,23761370,3
+53785455,23761370,5
+58603704,23761370,4
+58439081,23761370,3
+4012838,23761370,3
+4557702,23761370,4
+38942357,23761370,5
+miashen,23761370,4
+4698536,23761370,5
+45909249,23761370,3
+42573111,23761370,4
+44289791,23761370,4
+32183273,23761370,5
+fstuntun,23761370,4
+toasting,23761370,3
+suntina,23761370,5
+chelseawang612,23761370,4
+chelseawang612,23761370,4
+leafdeer,23761370,3
+greenbeast,23761370,4
+69343888,23761370,4
+fdshanqun,23761370,5
+43248833,23761370,3
+vikkistyle,23761370,5
+36738202,23761370,5
+35440419,23761370,4
+3958065,23761370,5
+jiany,23761370,4
+104769374,23761370,3
+55021112,23761370,5
+liuyuntianma,23761370,4
+87891193,23761370,4
+10918942,23761370,5
+64430104,23761370,4
+68100167,23761370,5
+53246482,23761370,5
+48114475,23761370,5
+65985883,23761370,5
+LxiaoY0214,23761370,4
+46788062,23761370,4
+99080642,23761370,4
+wuxingta,23761370,4
+babbye,23761370,-1
+cdpnerv,23761370,4
+JasmineH,23761370,4
+58167416,23761370,5
+67885647,23761370,3
+43465195,23761370,5
+83716659,23761370,4
+52956534,23761370,3
+120393284,23761370,5
+67146448,23761370,5
+April_S,23761370,5
+69311501,23761370,3
+gaolccc,23761370,4
+90715533,23761370,4
+33125571,23761370,-1
+2787923,23761370,3
+magic1029,23761370,3
+4571589,23761370,4
+64950174,23761370,5
+khaki72,23761370,5
+62428828,23761370,5
+120577824,23761370,4
+4001287,23761370,5
+62927689,23761370,4
+72098495,23761370,5
+16499451,23761370,3
+91824622,23761370,4
+moonflows,23761370,5
+73122939,23761370,5
+reneesnow,23761370,5
+llllsy1991,23761370,4
+2196899,23761370,5
+luyicia,23761370,3
+47653561,23761370,3
+Ajjer,23761370,5
+Ajjer,23761370,5
+3438313,23761370,4
+107095756,23761370,4
+rahrah,23761370,4
+56169435,23761370,4
+alisontsai,23761370,4
+110189050,23761370,5
+3847108,23761370,-1
+41343112,23761370,5
+25282109,23761370,-1
+78998600,23761370,4
+49473461,23761370,4
+4032421,23761370,4
+115708964,23761370,5
+49469222,23761370,4
+kawennl,23761370,4
+goodbyesolo,23761370,5
+fengjiansun,23761370,4
+haohele,23761370,4
+godspeedcl,23761370,4
+4839154,23761370,4
+cantona_x,23761370,4
+89228456,23761370,3
+125543859,23761370,5
+1754172,23761370,3
+9551191,23761370,4
+30181678,23761370,4
+75799778,23761370,4
+28139217,23761370,3
+33137119,23761370,3
+41260451,23761370,5
+3609679,23761370,4
+76958622,23761370,5
+olimovier,23761370,5
+31465488,23761370,3
+uicolourful,23761370,4
+52869221,23761370,1
+hbigworm,23761370,5
+cannotmissyou,23761370,5
+48145179,23761370,5
+freemind123,23761370,5
+wuwuzizi,23761370,-1
+62963887,23761370,4
+Esther.,23761370,5
+wxhrp,23761370,4
+isaacasimov,23761370,5
+1964723,23761370,3
+67383515,23761370,5
+huamogu,23761370,5
+44034563,23761370,4
+61050936,23761370,5
+45744940,23761370,5
+crystalpansong,23761370,4
+eternityyuli,23761370,5
+1783557,23761370,4
+1897422,23761370,4
+66919459,23761370,5
+63365000,23761370,5
+BigSullivan,23761370,2
+50745514,23761370,5
+123238661,23761370,5
+27251657,23761370,5
+jinshutiegan,23761370,3
+2369423,23761370,5
+wen1028,23761370,-1
+123507323,23761370,3
+19826905,23761370,5
+feesle,23761370,5
+35348811,23761370,4
+41431313,23761370,5
+3322308,23761370,4
+2677068,23761370,4
+1448393,23761370,2
+50095107,23761370,4
+pamela516,23761370,3
+29392606,23761370,3
+72031444,23761370,4
+lipr1118,23761370,3
+61260691,23761370,5
+psycheeee,23761370,3
+Cecil.,23761370,-1
+59073838,23761370,5
+untildied,23761370,3
+lazyminstrel,23761370,4
+109185948,23761370,1
+49462988,23761370,5
+119037715,23761370,4
+119566327,23761370,4
+43626560,23761370,3
+soildsnake,23761370,1
+babylovelife,23761370,5
+1326010,23761370,4
+maggot7,23761370,3
+rangdream,23761370,5
+yayayayay,23761370,5
+65517569,23761370,5
+3004253,23761370,5
+Faychang,23761370,5
+2811684,23761370,3
+53486418,23761370,3
+48372508,23761370,5
+windwingc,23761370,3
+46258857,23761370,2
+46884002,23761370,5
+38040905,23761370,5
+lmtteleung,23761370,5
+orangeo,23761370,5
+76850553,23761370,4
+ceciyu,23761370,5
+louxiaoxiao,23761370,5
+59169109,23761370,3
+3328450,23761370,5
+94988988,23761370,4
+mikewansui,23761370,-1
+ffliens,23761370,4
+39447377,23761370,5
+gene4ever,23761370,3
+51044049,23761370,5
+53451776,23761370,4
+43256472,23761370,5
+43256472,23761370,5
+27356710,23761370,5
+4040058,23761370,4
+56069571,23761370,2
+57812522,23761370,3
+foon,23761370,5
+lzt0202,23761370,5
+26327446,23761370,4
+33976037,23761370,5
+Sponge-Bob,23761370,4
+simuvchen,23761370,4
+59232994,23761370,5
+66519184,23761370,3
+40506496,23761370,4
+screamcity,23761370,5
+xianqiejiao,23761370,4
+60672049,23761370,3
+dolphinfu,23761370,5
+73082880,23761370,4
+rolenter,23761370,5
+LincolnSixEcho,23761370,3
+42284937,23761370,-1
+54129302,23761370,4
+2218265,23761370,3
+54371431,23761370,5
+3999163,23761370,4
+4882930,23761370,3
+49187387,23761370,4
+vero1012,23761370,4
+82357316,23761370,4
+63807438,23761370,2
+schribe4,23761370,5
+48642212,23761370,5
+78941508,23761370,5
+68519424,23761370,4
+41533340,23761370,4
+louix,23761370,4
+59779751,23761370,3
+43427358,23761370,4
+114422467,23761370,5
+114422467,23761370,5
+48059977,23761370,5
+64628791,23761370,5
+hanlu1991,23761370,2
+lyzet,23761370,1
+panicsun,23761370,4
+43452126,23761370,3
+57871266,23761370,4
+54785395,23761370,5
+50831227,23761370,5
+dust_bug,23761370,4
+12644505,23761370,4
+96784473,23761370,5
+Rabbittooth,23761370,5
+3617275,23761370,3
+lattice.lee,23761370,4
+3545643,23761370,4
+50028709,23761370,1
+4032042,23761370,4
+1569342,23761370,4
+76432110,23761370,5
+48649262,23761370,4
+37487489,23761370,4
+47350198,23761370,5
+yuc200,23761370,3
+77380461,23761370,4
+42798149,23761370,4
+lushrene,23761370,4
+4603294,23761370,3
+insignificance,23761370,3
+3621631,23761370,5
+44275428,23761370,4
+74115192,23761370,5
+goldfish0505,23761370,5
+SeanShepherd,23761370,4
+63837619,23761370,2
+yidufuyun,23761370,4
+82685125,23761370,4
+49655746,23761370,4
+65670261,23761370,4
+123469055,23761370,4
+MOXIASTUDIO,23761370,5
+1672449,23761370,5
+sdmscuhm,23761370,3
+leila1204,23761370,3
+1050541,23761370,5
+yumik9,23761370,5
+126037645,23761370,4
+49023101,23761370,3
+xiaosha0131,23761370,3
+3563706,23761370,-1
+usaywhat,23761370,3
+32865838,23761370,4
+44814557,23761370,5
+61100170,23761370,4
+joyinzone,23761370,4
+foolhan,23761370,5
+41471584,23761370,5
+87682536,23761370,5
+andielau,23761370,4
+49847024,23761370,5
+37789532,23761370,5
+rrsean,23761370,4
+2275556,23761370,3
+yxbb,23761370,5
+Face_Lili,23761370,3
+maramara.,23761370,5
+dingdingshine,23761370,4
+manhuamao,23761370,3
+gunroselou,23761370,5
+45549076,23761370,5
+46096823,23761370,4
+37450030,23761370,3
+126189333,23761370,5
+Anilaowei,23761370,5
+16645869,23761370,5
+viviyin,23761370,4
+fenk__,23761370,4
+9662580,23761370,4
+47941534,23761370,5
+zoe-1988,23761370,3
+wind_gxh,23761370,3
+42241968,23761370,4
+50797390,23761370,5
+72902802,23761370,4
+chenruijie1111,23761370,4
+69443311,23761370,3
+1650739,23761370,4
+75992903,23761370,5
+76526220,23761370,4
+moggie,23761370,4
+50154752,23761370,3
+51033950,23761370,5
+84570960,23761370,2
+43699111,23761370,-1
+35213734,23761370,3
+3531317,23761370,-1
+51468288,23761370,4
+50143933,23761370,5
+67184394,23761370,3
+33064145,23761370,4
+74672452,23761370,5
+69428274,23761370,4
+104901969,23761370,2
+33185021,23761370,4
+126187145,23761370,5
+41980740,23761370,5
+dancinglight001,23761370,5
+Susie-Leung,23761370,5
+126187020,23761370,5
+xieyixia,23761370,5
+52068926,23761370,2
+64688150,23761370,4
+51268261,23761370,3
+45406348,23761370,4
+113163801,23761370,4
+64087077,23761370,5
+1778088,23761370,4
+1573732,23761370,5
+wanee,23761370,5
+fearntrembling,23761370,-1
+43988930,23761370,4
+3355710,23761370,4
+tsugumicat,23761370,-1
+pandaT,23761370,4
+sandymint,23761370,4
+stillwaters123,23761370,5
+3574374,23761370,5
+70720802,23761370,3
+41780535,23761370,-1
+75095187,23761370,4
+2584631,23761370,3
+M1racle,23761370,3
+ANG.Y,23761370,5
+59125453,23761370,3
+52148531,23761370,3
+74988720,23761370,5
+77135630,23761370,4
+120209933,23761370,4
+summercaimin,23761370,4
+119282623,23761370,5
+liuxinyuxiao,23761370,4
+82741086,23761370,3
+35474428,23761370,5
+121372048,23761370,5
+fashitiandian,23761370,3
+75569999,23761370,5
+ming_203344,23761370,3
+44010990,23761370,5
+skferb,23761370,5
+57169604,23761370,3
+Yunsta,23761370,5
+53485894,23761370,4
+62455186,23761370,5
+trekker0,23761370,3
+83436610,23761370,4
+14029637,23761370,4
+4716613,23761370,4
+38817296,23761370,5
+71512508,23761370,5
+caijiazhan,23761370,4
+fayecat,23761370,4
+58323332,23761370,5
+4523412,23761370,5
+63601043,23761370,4
+jadexyz,23761370,5
+68738740,23761370,3
+72035614,23761370,-1
+2386807,23761370,4
+dearqqq1204,23761370,4
+AriesSusan,23761370,3
+3258327,23761370,3
+67298685,23761370,3
+101405544,23761370,4
+youngstein,23761370,4
+69013761,23761370,5
+ushiyo,23761370,4
+80096013,23761370,5
+54085861,23761370,5
+97468014,23761370,4
+97468014,23761370,4
+51390119,23761370,5
+47684731,23761370,5
+adamhsieh,23761370,3
+zhusijie1988030,23761370,4
+shuijingqiu,23761370,-1
+shijixue,23761370,5
+tripster,23761370,3
+126053543,23761370,4
+deknowledge,23761370,5
+47056518,23761370,5
+3278408,23761370,5
+lilacdays,23761370,4
+goodnightclara,23761370,5
+moschino,23761370,4
+douyajun,23761370,4
+114877013,23761370,3
+84965549,23761370,5
+50352774,23761370,3
+71146390,23761370,4
+71146390,23761370,4
+81241683,23761370,5
+39759739,23761370,3
+82572574,23761370,-1
+3703670,23761370,4
+jjjjffff,23761370,3
+71584295,23761370,4
+53791497,23761370,3
+52478383,23761370,3
+39540944,23761370,5
+49425371,23761370,3
+56139001,23761370,4
+49586086,23761370,5
+wandoulove,23761370,5
+74444480,23761370,4
+Joseph_8.12,23761370,3
+26239696,23761370,5
+83888533,23761370,5
+liuxiyue,23761370,4
+hillyang,23761370,5
+103111224,23761370,4
+60446322,23761370,3
+51706007,23761370,4
+51432651,23761370,5
+breakinalice,23761370,4
+4627071,23761370,3
+43535885,23761370,3
+55875465,23761370,4
+BeautyLogos_M,23761370,4
+yinbill,23761370,5
+27713698,23761370,5
+54596610,23761370,5
+68219549,23761370,4
+lzy555lzy,23761370,3
+yinzi731,23761370,3
+82052246,23761370,5
+2816656,23761370,4
+3088700,23761370,4
+kandicehu,23761370,4
+51898571,23761370,2
+51898571,23761370,2
+83757263,23761370,4
+SarahCopenhagen,23761370,5
+cnsjw,23761370,4
+64413783,23761370,4
+85343444,23761370,-1
+65038272,23761370,4
+75179409,23761370,3
+dreamsafari,23761370,3
+memorystream,23761370,3
+53154423,23761370,5
+50169026,23761370,5
+47748158,23761370,5
+101247152,23761370,5
+chrno,23761370,5
+4587293,23761370,4
+39428129,23761370,5
+120659553,23761370,5
+avenq,23761370,4
+14627562,23761370,-1
+ning_781205,23761370,4
+3392551,23761370,5
+doubanwangwei,23761370,5
+68277572,23761370,5
+41964570,23761370,5
+34104565,23761370,-1
+3571163,23761370,4
+74457223,23761370,5
+extrahandsome,23761370,4
+fallinrnb,23761370,5
+59747367,23761370,4
+81344855,23761370,4
+120772872,23761370,3
+CatherineBloom,23761370,3
+avian,23761370,3
+jamesjay,23761370,5
+67512191,23761370,5
+58060087,23761370,5
+archtrust,23761370,4
+53309781,23761370,-1
+68918623,23761370,4
+sanbange_XJY,23761370,5
+52978666,23761370,3
+78376995,23761370,5
+62276848,23761370,5
+bigcakkkkkke,23761370,4
+atooom,23761370,2
+MrTricky,23761370,4
+2200968,23761370,4
+kidadida,23761370,3
+45205829,23761370,5
+smilyk,23761370,4
+allanzlau,23761370,5
+danchenxi,23761370,5
+36354672,23761370,5
+BABYH,23761370,5
+wanziall,23761370,4
+4032536,23761370,4
+47295736,23761370,5
+78632463,23761370,4
+2843360,23761370,5
+48132380,23761370,5
+67166553,23761370,3
+59571249,23761370,5
+63603229,23761370,5
+64881839,23761370,3
+valanthecarey,23761370,5
+lv_zhensheng,23761370,4
+80752202,23761370,3
+3050042,23761370,4
+56260092,23761370,4
+DJ-day,23761370,-1
+xiaoshuiliuqiao,23761370,4
+cat911208,23761370,4
+43661933,23761370,5
+38706076,23761370,3
+14352147,23761370,5
+1228208,23761370,5
+83242026,23761370,4
+pm,23761370,3
+43398593,23761370,-1
+124178186,23761370,5
+2161868,23761370,5
+119253554,23761370,4
+DKJessica,23761370,3
+78716929,23761370,4
+72764244,23761370,2
+122090419,23761370,3
+32448053,23761370,4
+79394514,23761370,5
+84198723,23761370,4
+momo_white_1124,23761370,5
+66277003,23761370,5
+54986489,23761370,3
+40921927,23761370,5
+mao_daidai,23761370,1
+oper617,23761370,4
+75909471,23761370,4
+51835078,23761370,5
+Leung_QY,23761370,5
+Red_Bunny,23761370,5
+92134932,23761370,4
+czdjl,23761370,-1
+53917736,23761370,3
+songtomu,23761370,4
+twopersons,23761370,4
+74463071,23761370,3
+chingkei,23761370,4
+49510973,23761370,2
+44665253,23761370,4
+1105862,23761370,3
+xinyi0507,23761370,4
+45617967,23761370,4
+hl7,23761370,3
+79761428,23761370,4
+FortyTwo,23761370,3
+61385330,23761370,5
+66056067,23761370,4
+58337655,23761370,5
+124971830,23761370,4
+SLNWANNA,23761370,4
+57569789,23761370,5
+95587110,23761370,-1
+zjyw_,23761370,5
+73398342,23761370,3
+wangxinxin1019,23761370,5
+shirley115,23761370,4
+xishishi,23761370,1
+3921995,23761370,3
+91286551,23761370,5
+GQY,23761370,4
+43714574,23761370,3
+36556180,23761370,4
+126152053,23761370,3
+2332653,23761370,3
+62559082,23761370,4
+41883587,23761370,4
+xjm1015,23761370,5
+lsz0719,23761370,3
+65292306,23761370,4
+70698244,23761370,4
+65986563,23761370,3
+sukilovemayday,23761370,4
+63485325,23761370,5
+jmybxzggr333777,23761370,1
+cherryonsale,23761370,5
+39695667,23761370,4
+57449957,23761370,4
+voguepie,23761370,5
+62677139,23761370,4
+57359421,23761370,5
+2752972,23761370,5
+102678315,23761370,3
+103343712,23761370,3
+1599590,23761370,4
+67606509,23761370,5
+chong27---,23761370,5
+49025271,23761370,5
+48560216,23761370,1
+miawanzi,23761370,4
+94463679,23761370,3
+yaoyaosays,23761370,5
+62093986,23761370,5
+liuyangmo,23761370,3
+34569099,23761370,1
+50593601,23761370,5
+63160721,23761370,4
+73293779,23761370,4
+43618252,23761370,4
+67621785,23761370,4
+people2,23761370,3
+4690926,23761370,4
+Bobbyency,23761370,5
+braveshengchun,23761370,4
+40758187,23761370,5
+1348958,23761370,4
+52409439,23761370,4
+51313270,23761370,5
+75048470,23761370,4
+50292841,23761370,3
+colorwind,23761370,4
+108243039,23761370,4
+3705850,23761370,5
+45755121,23761370,5
+yY.,23761370,4
+cysocool,23761370,5
+anison,23761370,4
+daneils,23761370,3
+kklro,23761370,3
+secretby,23761370,-1
+1756316,23761370,3
+43906549,23761370,3
+70517273,23761370,5
+47058831,23761370,5
+45060818,23761370,3
+2335203,23761370,4
+43992020,23761370,4
+47917777,23761370,5
+6781786,23761370,5
+69135256,23761370,5
+39544426,23761370,4
+58547520,23761370,3
+66735359,23761370,4
+88406395,23761370,1
+84512686,23761370,3
+88129971,23761370,4
+faycheung,23761370,5
+rainada,23761370,4
+1170261,23761370,1
+61927356,23761370,5
+baihama,23761370,3
+3496922,23761370,3
+104575422,23761370,4
+60635722,23761370,5
+matoishere,23761370,3
+52879823,23761370,4
+baoqy27,23761370,4
+script217,23761370,5
+6610276,23761370,4
+65547971,23761370,4
+114759212,23761370,5
+demix,23761370,4
+75222054,23761370,4
+30153657,23761370,5
+waibao1017,23761370,5
+81506415,23761370,3
+37102095,23761370,-1
+126136697,23761370,3
+49044207,23761370,5
+28208019,23761370,4
+flyingwhale,23761370,4
+121819431,23761370,3
+AmySpecial,23761370,5
+kan_YB,23761370,3
+49184850,23761370,3
+Lizzie14,23761370,5
+63174808,23761370,4
+66872229,23761370,4
+amber_xyxy,23761370,3
+92110044,23761370,-1
+dogeli,23761370,4
+SukiJin,23761370,3
+ihoubin,23761370,5
+ShinemoHu,23761370,-1
+120179899,23761370,5
+szb,23761370,4
+44715924,23761370,4
+76590839,23761370,5
+Eternal.n1ce,23761370,5
+fancheyu,23761370,3
+Ddckss,23761370,4
+64320090,23761370,4
+xiao-fu,23761370,3
+2856245,23761370,4
+rainelf1215,23761370,4
+63348877,23761370,5
+62667448,23761370,5
+37346829,23761370,5
+63282608,23761370,4
+1296624,23761370,5
+4581200,23761370,4
+93056288,23761370,5
+58691476,23761370,5
+67619742,23761370,4
+Lotus511,23761370,4
+73964398,23761370,4
+elona,23761370,3
+36218467,23761370,-1
+4294774,23761370,4
+1301097,23761370,4
+4598811,23761370,2
+ishimi,23761370,4
+jueji,23761370,4
+2587334,23761370,3
+40098675,23761370,5
+douchan,23761370,4
+2336023,23761370,4
+31608347,23761370,4
+2778692,23761370,3
+kidpt,23761370,4
+btone0808,23761370,4
+2878601,23761370,5
+qjquu,23761370,5
+59984702,23761370,4
+48307883,23761370,5
+molly1012,23761370,5
+katerzo,23761370,4
+foreverboy,23761370,4
+60628984,23761370,4
+yumendechaoren,23761370,5
+Jsophia,23761370,5
+cheerychang,23761370,3
+Dorothy-t,23761370,3
+dixie_chen,23761370,3
+75881434,23761370,4
+4243504,23761370,5
+pipi1226,23761370,4
+maurice_wb,23761370,5
+helenzhao0512,23761370,3
+50273478,23761370,5
+76192912,23761370,5
+57882288,23761370,3
+60520622,23761370,5
+77495634,23761370,5
+47156396,23761370,5
+58655915,23761370,5
+12254266,23761370,5
+summerking23,23761370,4
+47679196,23761370,5
+51205034,23761370,5
+yeungkaren,23761370,4
+slipingtime,23761370,5
+jite,23761370,4
+samoyed0310,23761370,5
+48936480,23761370,5
+luckytia,23761370,5
+48053384,23761370,5
+70973948,23761370,5
+52468739,23761370,4
+48866416,23761370,4
+sunseekerns,23761370,4
+54942842,23761370,4
+36541831,23761370,5
+RovinZhan,23761370,3
+60846829,23761370,5
+120889404,23761370,5
+48048906,23761370,4
+1879415,23761370,3
+60109454,23761370,2
+126116154,23761370,5
+59068262,23761370,5
+48668128,23761370,3
+1145003,23761370,5
+blind_love,23761370,5
+AngeDeMusique,23761370,5
+lycinspire,23761370,4
+79861493,23761370,5
+seeve,23761370,5
+56193631,23761370,3
+2940089,23761370,5
+misslian1990,23761370,4
+83751196,23761370,4
+62190791,23761370,3
+4263354,23761370,4
+maggiexu,23761370,4
+kuii,23761370,4
+51624566,23761370,3
+carolyn27,23761370,5
+zhenglin0577,23761370,3
+littlekunsheng,23761370,3
+sakura7788,23761370,4
+bingoyy,23761370,5
+74721875,23761370,4
+76148620,23761370,5
+74389446,23761370,4
+50914683,23761370,5
+78448364,23761370,3
+wincy_5c,23761370,3
+ct1965,23761370,5
+leftone,23761370,5
+leftone,23761370,5
+dstingting,23761370,4
+115838732,23761370,4
+121386623,23761370,5
+57666555,23761370,4
+guoliangzi0806,23761370,4
+2853926,23761370,3
+3932688,23761370,4
+3813613,23761370,3
+53605408,23761370,4
+alynlin,23761370,4
+3282615,23761370,5
+antoniagreen,23761370,4
+55768171,23761370,5
+57287738,23761370,4
+34493197,23761370,5
+48309781,23761370,5
+15409679,23761370,5
+59752375,23761370,5
+75225677,23761370,3
+xiaogualaoyu,23761370,5
+hero1021,23761370,5
+52665905,23761370,4
+nickyluvandy,23761370,5
+124554880,23761370,4
+bmwxusen,23761370,5
+57818188,23761370,4
+rubyxr1028,23761370,-1
+52073805,23761370,2
+53657118,23761370,5
+goodland,23761370,4
+58292946,23761370,4
+71188390,23761370,5
+107347652,23761370,5
+57957607,23761370,4
+grsysyy,23761370,5
+76447430,23761370,5
+leslieilee,23761370,4
+xiaoxiaozhan,23761370,5
+SOWARM,23761370,5
+SOWARM,23761370,5
+zhuxiaoqi,23761370,5
+52003906,23761370,4
+52879841,23761370,5
+abyssknight,23761370,5
+52678874,23761370,4
+36624781,23761370,4
+84872284,23761370,4
+50670973,23761370,4
+55323906,23761370,4
+cachecache,23761370,5
+102959839,23761370,5
+101574679,23761370,5
+45204341,23761370,5
+zhuxiansheng,23761370,1
+41676228,23761370,4
+Weiming,23761370,4
+Qusic,23761370,4
+gdamosusan,23761370,5
+bangyan,23761370,3
+55317138,23761370,4
+3343429,23761370,3
+123599344,23761370,5
+3476892,23761370,1
+59350005,23761370,4
+49022279,23761370,5
+67524287,23761370,5
+46593881,23761370,4
+augustinochen,23761370,4
+toddmi,23761370,5
+84007465,23761370,5
+gloomsky,23761370,4
+tandou,23761370,5
+Viooolin,23761370,4
+dusk.xiyang,23761370,4
+90815329,23761370,5
+elainty,23761370,3
+rhe,23761370,5
+29965674,23761370,3
+78412332,23761370,4
+82686835,23761370,5
+imissdaya,23761370,4
+4260081,23761370,5
+69434990,23761370,4
+40724114,23761370,4
+53595584,23761370,5
+millylyu,23761370,3
+jinsenliao,23761370,4
+56374175,23761370,4
+1736671,23761370,3
+52729031,23761370,5
+Abandoned_Sundy,23761370,4
+65125142,23761370,5
+37310626,23761370,4
+3129978,23761370,3
+black9_eleven,23761370,4
+48034227,23761370,4
+52416505,23761370,3
+60185886,23761370,5
+1289675,23761370,2
+blackey,23761370,3
+kuxingseng80,23761370,5
+63192896,23761370,2
+51965431,23761370,4
+57860593,23761370,3
+int,23761370,5
+amycc,23761370,3
+62253276,23761370,5
+shawn1993,23761370,5
+zhyle,23761370,5
+57983708,23761370,4
+7549744,23761370,5
+33392120,23761370,5
+47039993,23761370,-1
+39328754,23761370,3
+119042456,23761370,2
+46999454,23761370,5
+44071695,23761370,5
+3487470,23761370,-1
+44891984,23761370,3
+63174979,23761370,5
+89750609,23761370,5
+TBZS,23761370,5
+50457615,23761370,3
+nokia13792,23761370,5
+2816357,23761370,5
+1728859,23761370,4
+82687860,23761370,5
+Josephine.R,23761370,3
+alphard0615,23761370,5
+54450568,23761370,4
+97501403,23761370,3
+102626192,23761370,5
+yaoxiaotian,23761370,2
+imhechang,23761370,5
+1482288,23761370,3
+77500999,23761370,4
+floww,23761370,5
+Alvin0414,23761370,3
+49868931,23761370,5
+49868931,23761370,5
+56689572,23761370,4
+54395094,23761370,4
+oblivionyi,23761370,5
+57410654,23761370,3
+67011634,23761370,3
+60797432,23761370,5
+34601221,23761370,5
+2776195,23761370,5
+49986008,23761370,4
+lockrock,23761370,5
+76667923,23761370,5
+30649428,23761370,4
+43102966,23761370,5
+66462926,23761370,5
+76327439,23761370,5
+87298656,23761370,5
+69686791,23761370,-1
+45630966,23761370,3
+45914016,23761370,5
+45914016,23761370,5
+sydliao,23761370,1
+120515548,23761370,5
+GIGILENUG,23761370,5
+44010009,23761370,-1
+killer9a9,23761370,5
+67863373,23761370,5
+68783369,23761370,-1
+71172794,23761370,5
+47704379,23761370,4
+1881656,23761370,4
+55512369,23761370,5
+xmsalem,23761370,3
+suikame,23761370,5
+jiao-j,23761370,5
+3642691,23761370,5
+81736132,23761370,4
+102236551,23761370,4
+3529621,23761370,5
+provence1019,23761370,4
+angel_mayday,23761370,3
+48190133,23761370,4
+liujunhe123,23761370,5
+58542371,23761370,-1
+husen,23761370,4
+50139670,23761370,5
+63382079,23761370,4
+datouma,23761370,2
+MaratChan,23761370,4
+57289722,23761370,5
+50494910,23761370,5
+1393970,23761370,5
+gasolin,23761370,3
+lingamo,23761370,5
+littlelion,23761370,5
+2228099,23761370,4
+yumu2015,23761370,5
+1590523,23761370,5
+2455037,23761370,5
+zhebi,23761370,4
+emilyvc,23761370,5
+lmfssxnmsn,23761370,3
+anferneediao,23761370,5
+saylove,23761370,4
+Frieda_,23761370,4
+moling,23761370,5
+119156717,23761370,5
+yujinxin1992,23761370,5
+67322553,23761370,4
+Bigric,23761370,3
+kyokoo,23761370,5
+78925849,23761370,4
+102265071,23761370,4
+wanprince,23761370,4
+126087578,23761370,5
+94721357,23761370,5
+102472299,23761370,4
+elegantcrazer,23761370,3
+xiaojingjj,23761370,2
+51141120,23761370,3
+84309321,23761370,4
+56551972,23761370,5
+3439248,23761370,3
+4238259,23761370,5
+60154183,23761370,4
+4848486,23761370,5
+58064281,23761370,3
+121391257,23761370,4
+26648197,23761370,5
+3921724,23761370,5
+37017024,23761370,5
+yuenlong,23761370,5
+askingvivian,23761370,5
+3440508,23761370,3
+74331878,23761370,5
+55459368,23761370,4
+84733426,23761370,4
+54676285,23761370,3
+73956595,23761370,5
+54780669,23761370,5
+54780669,23761370,5
+58001502,23761370,4
+4375506,23761370,4
+33567858,23761370,5
+63903749,23761370,4
+loving1014,23761370,5
+gurunliang,23761370,4
+2453215,23761370,4
+Xugh,23761370,5
+grayfoxever,23761370,4
+43944824,23761370,5
+zhanglink,23761370,3
+41304325,23761370,4
+86950901,23761370,5
+52897840,23761370,4
+luetone,23761370,5
+39935657,23761370,3
+8422942,23761370,3
+80398365,23761370,4
+i-am-straight,23761370,3
+14146907,23761370,4
+79047336,23761370,5
+57580969,23761370,4
+3284179,23761370,3
+72089803,23761370,5
+47433157,23761370,3
+limujin1991,23761370,3
+45551165,23761370,5
+tears_rainbow,23761370,3
+thisisgap,23761370,4
+lovemayday,23761370,5
+brushless,23761370,3
+52905046,23761370,4
+120112831,23761370,3
+GLSQ,23761370,3
+cynthiashen,23761370,4
+hydrating,23761370,5
+108207621,23761370,3
+Immafrady,23761370,5
+kkkhahajill,23761370,4
+octoberself,23761370,5
+lemon_ccc_,23761370,4
+kiwi1314020525,23761370,4
+yanyan96,23761370,5
+doraemon63,23761370,4
+52162293,23761370,2
+54347708,23761370,4
+andycarpenter,23761370,5
+29988563,23761370,4
+49878108,23761370,4
+52261532,23761370,4
+72066323,23761370,3
+37574325,23761370,5
+43539810,23761370,4
+30935515,23761370,5
+lovelysunshine,23761370,5
+77611348,23761370,4
+91132615,23761370,4
+78869691,23761370,2
+61409715,23761370,4
+santonin,23761370,3
+sunnykisskins,23761370,3
+54779185,23761370,4
+81646190,23761370,5
+48043894,23761370,-1
+73147158,23761370,5
+47191356,23761370,3
+vertigo1989,23761370,-1
+50804669,23761370,4
+47335967,23761370,4
+shangxia28,23761370,4
+41632476,23761370,3
+78609308,23761370,4
+scholl,23761370,4
+51468941,23761370,4
+mayka,23761370,4
+coco91718,23761370,5
+55566255,23761370,2
+37645721,23761370,3
+mercury1987,23761370,5
+tutuaichili,23761370,-1
+53945299,23761370,4
+39149276,23761370,5
+leoflower,23761370,4
+92480023,23761370,5
+40517893,23761370,3
+mua244,23761370,3
+3815024,23761370,-1
+84708478,23761370,5
+takumiya,23761370,3
+62628565,23761370,3
+87997485,23761370,4
+70164617,23761370,5
+57293187,23761370,5
+frances-6,23761370,4
+47844034,23761370,4
+VintaLong,23761370,4
+simona_mae,23761370,3
+yingchao0426,23761370,5
+PennyZZZZZ,23761370,5
+52951866,23761370,5
+aids,23761370,4
+48937910,23761370,-1
+55671604,23761370,5
+duan2,23761370,4
+violette__zz,23761370,4
+19610329,23761370,5
+lakoon,23761370,3
+45985290,23761370,5
+42136948,23761370,5
+47810404,23761370,4
+66038844,23761370,4
+yimaer,23761370,3
+85375536,23761370,5
+43664992,23761370,5
+hechenguang,23761370,4
+99352636,23761370,5
+35619670,23761370,4
+55608984,23761370,5
+123554879,23761370,4
+89997882,23761370,4
+yangjunye,23761370,3
+jamie_wen,23761370,5
+Chiarachizi,23761370,5
+waynekong,23761370,3
+echonotpotato,23761370,5
+65361448,23761370,5
+42972356,23761370,4
+insurance,23761370,5
+ALLCOFFEE,23761370,5
+44022921,23761370,5
+kiralove00,23761370,3
+47430062,23761370,4
+51937480,23761370,3
+catherine_koo,23761370,4
+crawlings,23761370,4
+littleshoes,23761370,2
+50081163,23761370,5
+42897725,23761370,-1
+66602653,23761370,4
+xiaodi27,23761370,4
+74150636,23761370,5
+dxmou,23761370,4
+11618167,23761370,3
+48939216,23761370,5
+36806157,23761370,5
+vamzc,23761370,3
+xuxiailing,23761370,3
+2519870,23761370,4
+50941482,23761370,3
+milktear,23761370,5
+3656028,23761370,3
+49129833,23761370,5
+48593436,23761370,4
+121049880,23761370,4
+LyleWang,23761370,4
+126053208,23761370,4
+3906584,23761370,4
+leftshoulder,23761370,4
+48787981,23761370,4
+66331142,23761370,3
+35508015,23761370,3
+49522740,23761370,4
+57811423,23761370,4
+2066770,23761370,4
+kimxixi,23761370,5
+42139869,23761370,2
+33091901,23761370,4
+53673765,23761370,5
+51087385,23761370,3
+keychan,23761370,3
+largind,23761370,4
+49326502,23761370,5
+c315838651,23761370,5
+85180680,23761370,5
+amelie_11,23761370,-1
+63457669,23761370,4
+4050914,23761370,5
+samsa,23761370,5
+2061554,23761370,3
+65132828,23761370,5
+1353806,23761370,4
+goldencoin,23761370,3
+61003390,23761370,5
+dogtile_vicky,23761370,4
+64981286,23761370,3
+chenxiaodoushuo,23761370,4
+3438426,23761370,5
+charge727,23761370,4
+ChenMelon,23761370,3
+53307448,23761370,4
+90140834,23761370,5
+leeron,23761370,4
+heng1234567,23761370,3
+lankiki7,23761370,4
+jimmy037,23761370,3
+bonnieWZ,23761370,2
+zjswr,23761370,5
+lionhere0808,23761370,-1
+cheexx7,23761370,5
+68034921,23761370,3
+freyafan,23761370,5
+125473262,23761370,4
+120159216,23761370,5
+1487165,23761370,4
+wolpertinger,23761370,1
+56807111,23761370,5
+49652650,23761370,4
+eleveners-K,23761370,5
+4132596,23761370,4
+35301057,23761370,5
+Rolls-Royce,23761370,4
+61703830,23761370,4
+54763920,23761370,4
+pigpig711,23761370,3
+faithwhite,23761370,3
+putaonat,23761370,5
+55618939,23761370,5
+56834550,23761370,3
+noenough,23761370,5
+T.Tsing,23761370,4
+121675139,23761370,4
+62402890,23761370,5
+48726212,23761370,5
+49803908,23761370,5
+3640687,23761370,4
+lqqjo,23761370,4
+104608789,23761370,3
+3870207,23761370,5
+52508494,23761370,4
+ALee301302,23761370,3
+52052677,23761370,4
+71914937,23761370,5
+66867402,23761370,4
+1613980,23761370,4
+yuemengjiji,23761370,4
+Jennybaby,23761370,5
+40234006,23761370,-1
+33733475,23761370,5
+geniusyang,23761370,2
+tessai,23761370,4
+34569018,23761370,2
+104531394,23761370,5
+87989927,23761370,5
+84462296,23761370,4
+alft-huahua,23761370,4
+4450213,23761370,4
+42554444,23761370,2
+hzkingdom,23761370,5
+124890265,23761370,4
+50192961,23761370,5
+nianhuaapple,23761370,-1
+41805226,23761370,5
+Sally327,23761370,3
+53419028,23761370,5
+43497624,23761370,4
+77176909,23761370,4
+68772665,23761370,4
+57416481,23761370,5
+Ms.Ameko,23761370,-1
+Ms.Ameko,23761370,-1
+summerbs,23761370,3
+jiugongzi1989,23761370,5
+sheltonyou,23761370,5
+50826750,23761370,3
+34032008,23761370,4
+57848049,23761370,3
+61922263,23761370,5
+ziczhang,23761370,5
+1516524,23761370,4
+67220317,23761370,5
+cupltiantian,23761370,4
+supercloud,23761370,-1
+50276433,23761370,3
+wangxiaotuan,23761370,4
+SupremeLady,23761370,5
+may-may,23761370,5
+shir23,23761370,5
+sugarjune,23761370,4
+Zoe.L,23761370,3
+qiabeibei314,23761370,4
+marga,23761370,2
+youndflower,23761370,5
+50041267,23761370,4
+67466072,23761370,5
+livelfet,23761370,4
+52876177,23761370,5
+miyazhao,23761370,3
+41533763,23761370,4
+47628350,23761370,-1
+55823994,23761370,5
+dejavu88,23761370,4
+iamdengdeng,23761370,4
+17748095,23761370,5
+orlandoaa,23761370,4
+bobosuperman,23761370,5
+67536361,23761370,4
+43648577,23761370,4
+48525161,23761370,3
+101182611,23761370,4
+echo_lee0610,23761370,5
+5404310,23761370,5
+47516933,23761370,4
+91487437,23761370,5
+76092155,23761370,4
+rttds,23761370,4
+39923615,23761370,4
+1823435,23761370,4
+sun653,23761370,4
+60733651,23761370,3
+love_sam,23761370,4
+60079328,23761370,4
+57421160,23761370,4
+2015737,23761370,-1
+78767065,23761370,5
+4280274,23761370,5
+nelatever,23761370,-1
+1312686,23761370,4
+lifuruo,23761370,-1
+26275512,23761370,4
+orangeair,23761370,4
+60079215,23761370,3
+damyata,23761370,4
+70130998,23761370,5
+53033860,23761370,3
+36743264,23761370,5
+68250216,23761370,4
+62572474,23761370,4
+tony07monkey,23761370,4
+Lareinelee,23761370,5
+junqli86,23761370,5
+41309998,23761370,2
+57069073,23761370,4
+violetmelody,23761370,5
+61270686,23761370,4
+5795628,23761370,4
+48287912,23761370,3
+50605102,23761370,5
+min8023,23761370,4
+51730707,23761370,5
+67841412,23761370,5
+petitespot,23761370,4
+yakumo,23761370,4
+owlman,23761370,4
+Girlwraith,23761370,3
+51671532,23761370,5
+thevyi,23761370,4
+3915429,23761370,5
+4034848,23761370,5
+41778329,23761370,4
+80285764,23761370,5
+dalianhaizao,23761370,5
+59684425,23761370,4
+71396855,23761370,5
+45508468,23761370,4
+119864973,23761370,4
+zhuzi_33,23761370,4
+70650158,23761370,5
+thesillyone,23761370,4
+briancheung,23761370,4
+46481404,23761370,5
+dadadayo,23761370,5
+jessicapai,23761370,3
+zorock,23761370,5
+49894084,23761370,5
+38207955,23761370,4
+41968793,23761370,4
+94293439,23761370,5
+bowlbowl,23761370,5
+Monzter,23761370,2
+62938015,23761370,4
+41403989,23761370,4
+64477491,23761370,5
+48854756,23761370,5
+53303336,23761370,5
+54217393,23761370,4
+62946136,23761370,4
+43039008,23761370,4
+43289725,23761370,4
+calmejing,23761370,3
+calmejing,23761370,3
+25911106,23761370,3
+popopo,23761370,3
+Sekmat,23761370,4
+46332661,23761370,4
+rayll,23761370,4
+55849765,23761370,4
+1076820,23761370,1
+copenlee,23761370,3
+akirayu,23761370,5
+121727190,23761370,5
+Alicias,23761370,4
+63236633,23761370,4
+66809666,23761370,5
+48026180,23761370,4
+41936444,23761370,5
+54454254,23761370,4
+126027395,23761370,4
+59422380,23761370,4
+3428014,23761370,4
+126026407,23761370,5
+lesliehan9210,23761370,5
+47760602,23761370,4
+59356659,23761370,5
+43044150,23761370,5
+125956679,23761370,5
+89743076,23761370,4
+62873606,23761370,5
+77529304,23761370,5
+Y_Y0907,23761370,5
+57930885,23761370,3
+xx218,23761370,4
+37418235,23761370,5
+4110643,23761370,3
+58642636,23761370,5
+123831008,23761370,4
+zhangyangdouban,23761370,4
+querr,23761370,5
+92025447,23761370,4
+singingloudly,23761370,4
+126026260,23761370,4
+3922229,23761370,3
+4160312,23761370,-1
+38984888,23761370,4
+lanjiancunxin,23761370,4
+101503219,23761370,5
+66252924,23761370,5
+zhouxueyan,23761370,4
+ler.sky.,23761370,4
+xxian,23761370,4
+JesseZZX,23761370,4
+49922245,23761370,4
+zdhtina,23761370,5
+46590190,23761370,5
+70024168,23761370,5
+dmyra1011,23761370,5
+Danya_Tang,23761370,5
+2305521,23761370,4
+chenjingyi26,23761370,5
+Alex.Qiu,23761370,5
+65187145,23761370,3
+54720201,23761370,5
+62684666,23761370,5
+126024725,23761370,5
+mtlove1314,23761370,4
+66128252,23761370,4
+3168552,23761370,5
+chopsticks7,23761370,5
+jinhuang,23761370,1
+chenshuang120,23761370,5
+vchan625,23761370,3
+3790469,23761370,4
+57214774,23761370,4
+shanicky,23761370,4
+fannyone,23761370,4
+1886385,23761370,4
+64920513,23761370,4
+answer0545716,23761370,5
+57285744,23761370,4
+kristin0711,23761370,4
+75466655,23761370,4
+81929147,23761370,5
+Eie10_9,23761370,5
+58975463,23761370,4
+valiantwarrior,23761370,3
+82099928,23761370,5
+77921722,23761370,5
+a999999773,23761370,5
+candy_littrell,23761370,3
+48003133,23761370,5
+watercolor823,23761370,4
+63140817,23761370,5
+44145594,23761370,2
+40865014,23761370,3
+alonecookie,23761370,4
+46169347,23761370,4
+85454895,23761370,4
+3655806,23761370,5
+50564190,23761370,5
+95461146,23761370,3
+59027708,23761370,2
+124150260,23761370,5
+3760738,23761370,2
+charles1102,23761370,5
+4228422,23761370,4
+63607360,23761370,5
+1920409,23761370,3
+myasuka,23761370,3
+qilin,23761370,5
+benmak,23761370,5
+2544651,23761370,5
+lemontree3345,23761370,4
+41234171,23761370,4
+winifred911,23761370,-1
+69302580,23761370,4
+jok13,23761370,4
+46429312,23761370,5
+21348739,23761370,5
+panpingping,23761370,5
+yimi_angel,23761370,5
+yimi_angel,23761370,5
+Exaiy,23761370,4
+43721861,23761370,4
+cl_moming,23761370,5
+120523074,23761370,4
+1531818,23761370,1
+1722504,23761370,-1
+115368831,23761370,5
+dingtan,23761370,4
+flaovr,23761370,4
+72997506,23761370,5
+121799654,23761370,4
+63032360,23761370,4
+2150724,23761370,4
+76127403,23761370,5
+yangyang1008,23761370,4
+Reuben.zhen,23761370,3
+freedamao,23761370,4
+87698709,23761370,5
+55406228,23761370,4
+45560390,23761370,4
+65775791,23761370,4
+69384559,23761370,3
+122696442,23761370,4
+57572137,23761370,4
+4509975,23761370,4
+24263050,23761370,3
+4439779,23761370,4
+iisakura,23761370,4
+30714995,23761370,3
+Sharling,23761370,5
+miesafeandsound,23761370,5
+3390636,23761370,5
+T1994116,23761370,4
+aivnce,23761370,3
+niumingzhe,23761370,4
+68692876,23761370,5
+58503450,23761370,3
+55983316,23761370,4
+flamingflamingo,23761370,5
+46269563,23761370,3
+stonyshiny,23761370,5
+mm_ww,23761370,3
+wumingzaish,23761370,5
+2797193,23761370,5
+akinotsubasa,23761370,3
+1248339,23761370,3
+3497506,23761370,4
+jsssl,23761370,5
+rachellee94,23761370,4
+47161664,23761370,1
+72852558,23761370,3
+101915984,23761370,3
+55610203,23761370,3
+lenka,23761370,3
+nonocat,23761370,3
+Ukika,23761370,-1
+oolong12,23761370,3
+78420106,23761370,4
+yoyoyoyoyoyoyo,23761370,3
+77613125,23761370,-1
+62265284,23761370,-1
+65083222,23761370,-1
+56397573,23761370,4
+makimin,23761370,4
+3470692,23761370,5
+Slovekame,23761370,5
+crossatnight,23761370,5
+49334957,23761370,5
+45077358,23761370,4
+59906784,23761370,3
+43766202,23761370,5
+36221737,23761370,3
+rainylovely,23761370,4
+52524178,23761370,5
+cherry0830,23761370,4
+Lumiere5200,23761370,4
+septimals,23761370,3
+44318435,23761370,4
+i.may.day.,23761370,5
+i.may.day.,23761370,5
+xyyelfin,23761370,5
+33064414,23761370,5
+48658567,23761370,3
+1586094,23761370,3
+48486926,23761370,4
+55443753,23761370,5
+48042607,23761370,4
+alethea_tang,23761370,4
+55320174,23761370,3
+penguin77,23761370,5
+90405650,23761370,4
+SharonS,23761370,3
+74701351,23761370,4
+46408031,23761370,5
+lanyanleiyu,23761370,5
+35145107,23761370,4
+an-sirens,23761370,3
+ch1994,23761370,3
+71765765,23761370,3
+48483774,23761370,4
+49134732,23761370,4
+55892298,23761370,4
+80382193,23761370,3
+69710950,23761370,3
+soffie,23761370,4
+66081323,23761370,4
+diana961108,23761370,-1
+xianyunfei,23761370,5
+susimai,23761370,4
+59404822,23761370,2
+pcde,23761370,4
+48075894,23761370,3
+Ataloss,23761370,-1
+COCOCOQUEEN,23761370,2
+54500497,23761370,5
+122938233,23761370,5
+EchoTaem,23761370,5
+1210763,23761370,4
+54618725,23761370,4
+2524031,23761370,4
+shenshenet,23761370,4
+MoAnnie,23761370,3
+3398416,23761370,4
+39948893,23761370,4
+3671533,23761370,3
+56001919,23761370,5
+togilj,23761370,5
+69127240,23761370,5
+52628024,23761370,5
+tojason,23761370,2
+91250454,23761370,3
+60056083,23761370,5
+56057310,23761370,5
+38882087,23761370,-1
+49750852,23761370,4
+62370868,23761370,4
+lijunqi1234,23761370,3
+imml,23761370,5
+59784525,23761370,4
+59784525,23761370,4
+126010684,23761370,5
+121337200,23761370,3
+67754522,23761370,4
+yuzhizhi,23761370,3
+1582380,23761370,4
+62877748,23761370,3
+88559536,23761370,3
+82023083,23761370,4
+53676052,23761370,4
+Bobbie13,23761370,5
+dongjh,23761370,5
+50373897,23761370,3
+immengxmeng,23761370,5
+74449417,23761370,5
+61419060,23761370,4
+61920379,23761370,5
+60073024,23761370,5
+61358989,23761370,3
+qiaoliangyu,23761370,3
+pussycat08,23761370,3
+41351821,23761370,4
+3870607,23761370,3
+wuye2011,23761370,4
+84779002,23761370,5
+impossible_ww,23761370,5
+46345138,23761370,5
+53082193,23761370,3
+62367310,23761370,-1
+2310497,23761370,3
+83433693,23761370,4
+61633166,23761370,4
+qingruoli,23761370,4
+leepz,23761370,3
+giguemgigue,23761370,4
+49161658,23761370,4
+57717534,23761370,4
+53859661,23761370,4
+45641492,23761370,5
+41942106,23761370,4
+102930164,23761370,5
+41240808,23761370,4
+lucifan,23761370,5
+58013933,23761370,2
+48728550,23761370,4
+47745204,23761370,4
+MaymySumOn,23761370,5
+51496200,23761370,4
+cresting,23761370,5
+64262357,23761370,5
+65563342,23761370,4
+103355489,23761370,5
+60023917,23761370,5
+58268607,23761370,5
+dabaibai,23761370,4
+65556661,23761370,4
+73445491,23761370,4
+fionakeyan,23761370,5
+1642177,23761370,4
+3539441,23761370,5
+stephi,23761370,4
+andywait,23761370,3
+maxiaomeng,23761370,3
+huge25613149421,23761370,4
+61449100,23761370,1
+92945557,23761370,4
+xiaokongji,23761370,4
+4521849,23761370,3
+mattviola,23761370,2
+90592197,23761370,4
+weiwushang,23761370,3
+4676645,23761370,4
+55792350,23761370,5
+47643431,23761370,4
+1205601,23761370,5
+85445381,23761370,4
+114734252,23761370,5
+81539389,23761370,3
+coollamb,23761370,5
+51020341,23761370,5
+sapphire_1228,23761370,5
+Garing,23761370,5
+4349474,23761370,4
+riusmary,23761370,4
+banlizi,23761370,3
+68531336,23761370,2
+shaotong,23761370,4
+122400330,23761370,4
+65441937,23761370,5
+81568339,23761370,5
+53254750,23761370,3
+3073495,23761370,2
+37097219,23761370,4
+63858394,23761370,5
+54193042,23761370,4
+4839234,23761370,4
+43770198,23761370,4
+tangerinex,23761370,4
+xy0402,23761370,5
+50978392,23761370,5
+48653168,23761370,5
+62604002,23761370,4
+33491898,23761370,5
+68027826,23761370,5
+tiramisu1314,23761370,5
+quwaiwai,23761370,3
+36320755,23761370,5
+haywire,23761370,5
+sylcrannog,23761370,3
+53017810,23761370,5
+4407414,23761370,5
+xiaopjie,23761370,4
+51775613,23761370,4
+ricchhard,23761370,3
+6786175,23761370,4
+56160152,23761370,5
+wenzheng,23761370,5
+46714118,23761370,4
+44509877,23761370,4
+cairongjia,23761370,3
+57851144,23761370,5
+mouse920127,23761370,5
+Daisy.chang.,23761370,5
+floraforever21,23761370,5
+48279674,23761370,5
+70862123,23761370,3
+49662457,23761370,5
+matoi,23761370,3
+2178430,23761370,3
+stormsuck,23761370,5
+120447606,23761370,4
+84641449,23761370,3
+3713269,23761370,5
+33599470,23761370,5
+pennie,23761370,5
+aharley,23761370,4
+yylaoliu,23761370,4
+83371005,23761370,5
+77238803,23761370,5
+4379879,23761370,4
+liumessi,23761370,4
+shennanqing,23761370,4
+57437993,23761370,5
+yanjing7611,23761370,4
+43389404,23761370,5
+dbpigeeyore,23761370,4
+80875321,23761370,5
+iamprds,23761370,4
+52901961,23761370,4
+48194650,23761370,5
+80618341,23761370,5
+47495374,23761370,5
+39517329,23761370,5
+2746484,23761370,5
+51023677,23761370,4
+59537220,23761370,5
+101992598,23761370,4
+70944686,23761370,4
+nvmotou,23761370,4
+78782574,23761370,4
+ytonger,23761370,5
+56641164,23761370,5
+55631071,23761370,4
+81732788,23761370,5
+75200446,23761370,4
+ala310,23761370,4
+51818478,23761370,5
+iamfoot,23761370,3
+rbit,23761370,4
+liqipacker,23761370,4
+erhuyouxuan,23761370,4
+51329457,23761370,5
+btfunv,23761370,5
+mythjill,23761370,4
+124514675,23761370,5
+59007642,23761370,4
+48672114,23761370,4
+honey10151106,23761370,5
+82321574,23761370,4
+67826155,23761370,3
+62716131,23761370,5
+62798104,23761370,4
+22779093,23761370,5
+101232797,23761370,5
+60303704,23761370,5
+60752975,23761370,3
+75232634,23761370,4
+2903671,23761370,-1
+50587917,23761370,4
+44714353,23761370,4
+41601748,23761370,4
+94563993,23761370,4
+49246555,23761370,4
+120886080,23761370,1
+114143378,23761370,4
+55997882,23761370,4
+vnoonv,23761370,-1
+crystaltvxq,23761370,5
+52789942,23761370,4
+flower-ye,23761370,-1
+49698151,23761370,5
+3006173,23761370,5
+RyanSheckler,23761370,3
+43523534,23761370,4
+58046064,23761370,4
+51094204,23761370,5
+doooob,23761370,3
+nathanyun,23761370,4
+kristenxin,23761370,4
+bhg,23761370,3
+44483973,23761370,3
+49291610,23761370,3
+45577366,23761370,4
+4914375,23761370,4
+46006682,23761370,-1
+readman,23761370,5
+airo,23761370,4
+sssoul,23761370,-1
+94257080,23761370,4
+2170932,23761370,-1
+2170932,23761370,-1
+66779575,23761370,4
+118837261,23761370,-1
+xiaolefeixing,23761370,5
+41534595,23761370,4
+68894064,23761370,5
+56788102,23761370,5
+58059702,23761370,5
+67461746,23761370,4
+realien,23761370,5
+everlee,23761370,4
+48532760,23761370,5
+OuTalK,23761370,5
+11181555,23761370,5
+hezhuyi,23761370,5
+48957279,23761370,5
+skywithocean,23761370,5
+2323154,23761370,4
+3737377,23761370,5
+25898067,23761370,4
+25898067,23761370,4
+47058104,23761370,5
+34205981,23761370,3
+sunjialin1989,23761370,5
+tangmenyu,23761370,5
+58004886,23761370,5
+37069003,23761370,4
+44996501,23761370,4
+68963474,23761370,4
+55616185,23761370,5
+1816068,23761370,4
+125010605,23761370,5
+49171528,23761370,4
+3664459,23761370,2
+4297883,23761370,4
+2123248,23761370,-1
+fupp1119,23761370,3
+pippopopopo,23761370,2
+47569063,23761370,2
+bavayang,23761370,5
+York29,23761370,3
+wind.B,23761370,-1
+50083716,23761370,5
+gis,23761370,5
+icemanZhang,23761370,4
+socary,23761370,5
+66581892,23761370,5
+1831746,23761370,5
+48962197,23761370,5
+64760834,23761370,5
+exy.want,23761370,5
+10149854,23761370,5
+valentina999,23761370,4
+4263312,23761370,4
+59651696,23761370,4
+48240785,23761370,5
+kistrike,23761370,4
+124228223,23761370,5
+62908115,23761370,5
+92956805,23761370,5
+zcy0505,23761370,5
+60758928,23761370,5
+67435615,23761370,5
+60261428,23761370,-1
+51379903,23761370,5
+sevenwill,23761370,5
+29819963,23761370,5
+Jechina,23761370,5
+52628612,23761370,3
+45299688,23761370,5
+2407221,23761370,5
+52469836,23761370,4
+63038048,23761370,5
+3753451,23761370,3
+37481046,23761370,5
+3637797,23761370,3
+madiwu,23761370,4
+64332038,23761370,5
+57710980,23761370,5
+55906516,23761370,4
+64569894,23761370,3
+48864124,23761370,4
+61210239,23761370,5
+lengmengmeng,23761370,5
+3468823,23761370,5
+71365643,23761370,4
+72732422,23761370,5
+49701850,23761370,4
+11561598,23761370,3
+2341107,23761370,2
+43808911,23761370,4
+45885608,23761370,5
+53839043,23761370,5
+75386626,23761370,4
+1317876,23761370,5
+4823170,23761370,2
+MarsOrMoon,23761370,4
+47259806,23761370,4
+62425490,23761370,4
+etsdie,23761370,5
+chenrunze,23761370,4
+56481449,23761370,5
+67878898,23761370,5
+49505829,23761370,4
+72854729,23761370,4
+48117474,23761370,5
+102931240,23761370,3
+2077924,23761370,4
+67463686,23761370,1
+mikimake,23761370,5
+36458457,23761370,3
+Year0201,23761370,4
+1339762,23761370,4
+3881204,23761370,5
+hhhhhhhhhhhh,23761370,4
+daijialu1992,23761370,4
+73681830,23761370,4
+31606811,23761370,5
+wanglinfei,23761370,4
+littleshit,23761370,5
+51289504,23761370,5
+125284459,23761370,4
+FunnyBike,23761370,3
+55405163,23761370,-1
+36550980,23761370,5
+44780498,23761370,4
+48395509,23761370,4
+26830263,23761370,4
+Paranoid7,23761370,4
+tt2792654,23761370,4
+61922684,23761370,3
+allentear,23761370,5
+72918708,23761370,5
+54643955,23761370,5
+41040273,23761370,5
+lakshi,23761370,5
+46714901,23761370,4
+64894693,23761370,3
+74392239,23761370,4
+annabelle98,23761370,3
+63008806,23761370,4
+albatrossy,23761370,4
+121070871,23761370,4
+andk2181,23761370,5
+youkosunshine,23761370,5
+merde,23761370,5
+irisyours,23761370,4
+64740791,23761370,1
+88008391,23761370,5
+48319291,23761370,4
+K-Arthur,23761370,3
+pirlo21,23761370,3
+48205456,23761370,5
+54703119,23761370,4
+huachunyan,23761370,4
+cookiexzh,23761370,5
+sdoklinsmann,23761370,5
+40227143,23761370,4
+37685059,23761370,4
+49228948,23761370,5
+mylovejaejoong,23761370,5
+cheersting,23761370,4
+gufengbyluoluo,23761370,4
+4737780,23761370,4
+zybest,23761370,4
+70194363,23761370,5
+27390467,23761370,5
+littlefrogD,23761370,4
+ldzy,23761370,3
+48224628,23761370,4
+52406175,23761370,4
+83177067,23761370,5
+58777523,23761370,4
+disheron,23761370,5
+2705756,23761370,5
+qinxiran,23761370,5
+13937744,23761370,5
+4349065,23761370,4
+10236919,23761370,4
+yiquxunfeng,23761370,5
+Qyaoyao,23761370,-1
+lalalina,23761370,3
+iris0820,23761370,4
+WSZYJ,23761370,4
+1463503,23761370,3
+50268324,23761370,5
+4494902,23761370,3
+renth,23761370,4
+miemiefever,23761370,4
+62987657,23761370,5
+39598489,23761370,5
+61191191,23761370,5
+mosquitoBoA,23761370,4
+mazalu,23761370,-1
+60048325,23761370,5
+74506123,23761370,5
+3438186,23761370,4
+123104584,23761370,3
+Before37,23761370,5
+3306133,23761370,4
+ltzfish,23761370,5
+82333155,23761370,4
+52637584,23761370,5
+12410068,23761370,3
+Iamwanghaha,23761370,5
+1482384,23761370,5
+78904463,23761370,5
+jingyajun,23761370,4
+27473239,23761370,3
+cwmaifxx,23761370,3
+70057422,23761370,4
+appleweiwei,23761370,3
+90884547,23761370,5
+60903872,23761370,5
+42511291,23761370,5
+59233639,23761370,4
+79113610,23761370,5
+75581591,23761370,4
+68440347,23761370,4
+wsl7741,23761370,3
+wsl7741,23761370,3
+53356681,23761370,5
+125938253,23761370,5
+huanhai,23761370,3
+45689152,23761370,4
+58094163,23761370,3
+119644008,23761370,5
+nobodyhome,23761370,-1
+jiangye,23761370,5
+85289332,23761370,4
+45984113,23761370,5
+41993830,23761370,5
+50186720,23761370,3
+50893835,23761370,5
+79880444,23761370,2
+71065754,23761370,5
+125965009,23761370,5
+alaxos,23761370,5
+49539458,23761370,5
+Tartan,23761370,3
+70658647,23761370,5
+chris027,23761370,3
+86736353,23761370,5
+cicisweet,23761370,5
+77618969,23761370,4
+78192740,23761370,5
+4104001,23761370,5
+46706719,23761370,3
+firewingwong,23761370,5
+53439322,23761370,2
+3173499,23761370,4
+15859690,23761370,5
+selven77,23761370,-1
+15276874,23761370,4
+dtspsAli,23761370,4
+funkrubby,23761370,5
+iceyvonne,23761370,2
+53479561,23761370,3
+moonphis,23761370,5
+Eva.pisces,23761370,5
+flora2011,23761370,5
+67657833,23761370,4
+xtiana,23761370,3
+44203908,23761370,4
+55799828,23761370,4
+4597338,23761370,3
+48616886,23761370,3
+heycc_,23761370,4
+65387296,23761370,3
+2220773,23761370,4
+55540547,23761370,5
+timbowen,23761370,5
+wu.,23761370,5
+56389466,23761370,4
+zy911,23761370,1
+3845322,23761370,4
+49354246,23761370,5
+iplumage,23761370,3
+83413131,23761370,4
+LeeKitWing,23761370,5
+53176135,23761370,4
+1493589,23761370,4
+EffixC,23761370,5
+1671301,23761370,5
+SokSolon,23761370,4
+49235266,23761370,3
+46766934,23761370,4
+42329947,23761370,-1
+63275976,23761370,-1
+emotion7,23761370,5
+zhuxingyu7,23761370,4
+juzijun,23761370,3
+55990850,23761370,4
+103728250,23761370,5
+13902448,23761370,5
+waershi,23761370,3
+79932882,23761370,4
+4021804,23761370,2
+1346878,23761370,4
+66066878,23761370,3
+72806656,23761370,5
+3197136,23761370,3
+Creep_v,23761370,5
+alec13131,23761370,5
+haizeihuahua,23761370,4
+58035376,23761370,-1
+lovesunny,23761370,3
+zhangsisi333,23761370,5
+48965557,23761370,3
+2787332,23761370,3
+37873012,23761370,-1
+38886796,23761370,-1
+super72,23761370,4
+51589844,23761370,5
+87956504,23761370,5
+44265296,23761370,4
+yoooooooooo,23761370,-1
+49035105,23761370,3
+liudinglan,23761370,3
+46243415,23761370,3
+46243415,23761370,3
+littleflowercan,23761370,4
+18747546,23761370,4
+mangosteen28,23761370,4
+du17,23761370,4
+67749466,23761370,5
+43243621,23761370,5
+kafka85,23761370,3
+46852410,23761370,4
+48474852,23761370,4
+2891116,23761370,2
+4163899,23761370,5
+66409658,23761370,3
+42049358,23761370,-1
+2040497,23761370,3
+125776806,23761370,5
+60747828,23761370,4
+YHF,23761370,4
+42475511,23761370,5
+yesidogiveadamn,23761370,1
+52758613,23761370,5
+jiangmingji,23761370,5
+hanax4,23761370,4
+52030611,23761370,5
+Zlil,23761370,5
+lemon-alex,23761370,3
+51239127,23761370,5
+Amiesays,23761370,3
+75416768,23761370,3
+zz1130,23761370,4
+susie_0,23761370,5
+37291572,23761370,5
+26694704,23761370,5
+40445652,23761370,5
+49396544,23761370,5
+44021986,23761370,4
+qinyouxuan,23761370,4
+56095744,23761370,3
+120090897,23761370,4
+25674811,23761370,3
+25674811,23761370,3
+4083280,23761370,4
+44371183,23761370,3
+SuperKatie,23761370,4
+losmis,23761370,-1
+57690021,23761370,3
+43197947,23761370,4
+formyself,23761370,4
+shaqi,23761370,5
+whereshallwego,23761370,3
+lalamie,23761370,3
+alicerobin,23761370,5
+62333494,23761370,3
+oversensitive,23761370,4
+Kev_,23761370,5
+68002540,23761370,5
+76124816,23761370,4
+34696386,23761370,4
+71954823,23761370,-1
+zhaopeng007,23761370,4
+44225174,23761370,4
+huanghuajing,23761370,5
+chic1206,23761370,5
+40517479,23761370,4
+3970076,23761370,2
+ReinhartLu,23761370,5
+1171026,23761370,5
+64865370,23761370,-1
+112527658,23761370,5
+3456999,23761370,5
+63045251,23761370,5
+104402849,23761370,4
+68957542,23761370,5
+46880610,23761370,5
+46661278,23761370,3
+godbewithme,23761370,4
+kateniceday,23761370,4
+rosetti,23761370,4
+56678240,23761370,3
+63688559,23761370,5
+fuckyouavbody,23761370,-1
+59306525,23761370,4
+41703607,23761370,4
+43956541,23761370,4
+52174423,23761370,5
+58310222,23761370,4
+Cilla1002,23761370,5
+40774343,23761370,5
+37205991,23761370,2
+69741583,23761370,5
+rika19860217,23761370,2
+iknowthispage,23761370,4
+fffx9527,23761370,3
+july0404,23761370,5
+44093787,23761370,4
+45233873,23761370,4
+45979781,23761370,5
+73784476,23761370,4
+51534915,23761370,3
+53376375,23761370,4
+4554062,23761370,4
+41089253,23761370,3
+2922692,23761370,4
+lijsh,23761370,4
+movie007wn,23761370,4
+tigermiao,23761370,3
+Laura502,23761370,-1
+icefishe,23761370,5
+59131716,23761370,5
+sophytao,23761370,5
+jailbreakbin,23761370,5
+4253119,23761370,5
+xk13,23761370,2
+53495596,23761370,4
+38564804,23761370,4
+72241527,23761370,4
+59412896,23761370,4
+63787326,23761370,4
+47931558,23761370,3
+56594053,23761370,4
+50054734,23761370,3
+nothasun,23761370,5
+106207289,23761370,5
+4216976,23761370,4
+58456017,23761370,4
+48579838,23761370,5
+iceboland,23761370,1
+2750410,23761370,4
+2872141,23761370,4
+zebra168,23761370,5
+2268420,23761370,5
+77105796,23761370,5
+Yaai4204,23761370,5
+44877103,23761370,5
+weiranju,23761370,5
+47692471,23761370,3
+igelei,23761370,4
+fade_away,23761370,5
+54365638,23761370,4
+120342469,23761370,5
+huh075,23761370,3
+flora_12,23761370,5
+Amy-QQ,23761370,5
+71980617,23761370,5
+27383917,23761370,5
+41257286,23761370,5
+56041375,23761370,-1
+49620873,23761370,3
+64831069,23761370,5
+63446664,23761370,5
+52308642,23761370,4
+2338060,23761370,4
+48040166,23761370,4
+60051428,23761370,3
+125948389,23761370,5
+47162631,23761370,4
+107561388,23761370,4
+yiqiu8932,23761370,4
+46841149,23761370,4
+am7061222224,23761370,4
+syrah,23761370,4
+bea-u,23761370,-1
+58089127,23761370,4
+fitmos,23761370,5
+heydenny,23761370,4
+82847948,23761370,5
+qiandouduo,23761370,4
+69437011,23761370,3
+2706938,23761370,3
+84755098,23761370,4
+58506046,23761370,4
+34263880,23761370,5
+yyuxy,23761370,3
+55859412,23761370,5
+14409304,23761370,4
+84891221,23761370,5
+53951435,23761370,5
+33787195,23761370,5
+hidemyhead,23761370,5
+65690170,23761370,4
+43258085,23761370,3
+freewingschen,23761370,5
+darlinfish,23761370,-1
+74601156,23761370,3
+75547814,23761370,1
+dreamstealer,23761370,4
+50668588,23761370,4
+1550102,23761370,5
+47869637,23761370,4
+68893720,23761370,5
+50458096,23761370,5
+53602254,23761370,4
+55890778,23761370,5
+aimeecute,23761370,3
+83020087,23761370,5
+2933839,23761370,5
+50771208,23761370,5
+60662074,23761370,2
+imay5,23761370,4
+inruin,23761370,-1
+forings,23761370,-1
+susancaine,23761370,4
+1043912,23761370,5
+59917922,23761370,2
+22991326,23761370,5
+songyao,23761370,3
+fungchilong,23761370,4
+lareida,23761370,5
+60826813,23761370,5
+71240523,23761370,3
+lixiaofu,23761370,4
+121270446,23761370,3
+maxchris,23761370,5
+3117033,23761370,3
+41880792,23761370,5
+2996899,23761370,4
+33322895,23761370,5
+3411545,23761370,4
+2493980,23761370,3
+Winterfell,23761370,4
+41195439,23761370,4
+53300404,23761370,4
+59379634,23761370,4
+gwyan,23761370,5
+taotaomvp,23761370,3
+3427693,23761370,3
+70539132,23761370,5
+hitonmi,23761370,3
+64080825,23761370,5
+81848575,23761370,4
+45684031,23761370,5
+yaaya,23761370,4
+54991103,23761370,4
+vivipico,23761370,3
+48396736,23761370,3
+sissyyyy,23761370,5
+AngelikaSigrid,23761370,3
+53554219,23761370,5
+LChnage,23761370,4
+44738037,23761370,-1
+yutti,23761370,4
+lcnverland,23761370,4
+helemon,23761370,5
+74221142,23761370,2
+54056952,23761370,4
+83879581,23761370,5
+papadaixiong,23761370,5
+43279532,23761370,5
+58822324,23761370,5
+dengleite,23761370,5
+57962576,23761370,-1
+57548460,23761370,4
+65911054,23761370,5
+61189952,23761370,4
+35282603,23761370,5
+m_smile,23761370,4
+octopus19940725,23761370,5
+54074211,23761370,4
+qlbldm,23761370,4
+100208047,23761370,5
+40663225,23761370,3
+barcaren,23761370,4
+gaoshuang1226,23761370,4
+3691770,23761370,4
+ilovehongkou,23761370,5
+mycforever,23761370,-1
+67618719,23761370,4
+74848031,23761370,3
+67715186,23761370,4
+clownlee,23761370,-1
+tomohisabest,23761370,5
+52013029,23761370,3
+120353268,23761370,4
+53060090,23761370,4
+slothbug,23761370,2
+babyxy006,23761370,4
+42440252,23761370,3
+79009364,23761370,4
+33661821,23761370,3
+cloversky,23761370,3
+56138640,23761370,3
+helenforce,23761370,5
+ravingrabbid,23761370,4
+71722491,23761370,-1
+Greewii,23761370,4
+60141694,23761370,5
+yuexiaokan,23761370,5
+thesurfingleaf,23761370,4
+4063952,23761370,4
+3544329,23761370,4
+yoyo...fish,23761370,3
+piaotutu,23761370,3
+apexcyril,23761370,4
+yukiyoung,23761370,5
+55295040,23761370,5
+67415338,23761370,3
+durandalk,23761370,4
+91425062,23761370,3
+1853967,23761370,5
+wendyfield,23761370,3
+lollipopkj,23761370,4
+4547052,23761370,5
+moxiaotu,23761370,5
+RitaXuQ,23761370,5
+1227418,23761370,4
+tengzi,23761370,4
+jacklan,23761370,5
+60732201,23761370,5
+57797490,23761370,5
+73059470,23761370,5
+40005323,23761370,3
+2382205,23761370,3
+4541953,23761370,3
+68020354,23761370,5
+50145644,23761370,5
+woaizhangyu,23761370,3
+36598674,23761370,3
+79895962,23761370,4
+fromsunspeaking,23761370,5
+53108608,23761370,5
+44239008,23761370,5
+douche,23761370,1
+33883920,23761370,4
+25794066,23761370,4
+shesanjin,23761370,5
+houhaidf,23761370,4
+57382521,23761370,5
+51950033,23761370,4
+germ546,23761370,3
+2242668,23761370,5
+wenzhu89,23761370,4
+cl1235,23761370,4
+60182822,23761370,4
+ztzy,23761370,4
+freewhao,23761370,4
+alohaceci,23761370,3
+80098161,23761370,5
+afrasakurai,23761370,5
+54793335,23761370,4
+79450598,23761370,4
+34998517,23761370,5
+djdaisy1874,23761370,5
+3751825,23761370,4
+46984307,23761370,5
+58280028,23761370,3
+47346400,23761370,4
+82570305,23761370,5
+rikko,23761370,5
+46508928,23761370,4
+wishfiy,23761370,1
+54363681,23761370,3
+47804762,23761370,3
+yellnothing,23761370,4
+44453325,23761370,5
+mangzhi,23761370,3
+41864568,23761370,5
+telneter,23761370,5
+heartnow,23761370,4
+xixileo,23761370,3
+76550924,23761370,3
+68531372,23761370,3
+65660961,23761370,3
+62309507,23761370,5
+2823579,23761370,5
+100996286,23761370,3
+13474998,23761370,4
+63716025,23761370,4
+keithw,23761370,5
+2646310,23761370,4
+Clxzx1314,23761370,4
+viola_ting,23761370,2
+renyuan46,23761370,5
+62671989,23761370,5
+zmore,23761370,3
+125913784,23761370,5
+52614774,23761370,4
+fccc,23761370,5
+xiamihemao,23761370,5
+16740582,23761370,3
+loulosting,23761370,3
+81154074,23761370,4
+1012747,23761370,2
+49687309,23761370,5
+41522528,23761370,4
+53450077,23761370,3
+2030100,23761370,4
+46579820,23761370,5
+Ask,23761370,4
+blessfortune,23761370,5
+vivianweiwen,23761370,4
+pisceanw,23761370,3
+58034308,23761370,2
+68197528,23761370,5
+lc2600,23761370,4
+52689515,23761370,5
+sofialiu,23761370,5
+98915792,23761370,5
+celine_nic,23761370,5
+40786451,23761370,4
+73647085,23761370,5
+73647085,23761370,5
+amibubai,23761370,5
+1933557,23761370,3
+64324890,23761370,1
+st000031,23761370,4
+momentum,23761370,4
+1151347,23761370,5
+marukowz,23761370,4
+martiansea,23761370,4
+ijoy1987,23761370,5
+44651418,23761370,5
+peacelife,23761370,4
+2169690,23761370,5
+57286187,23761370,3
+spicybear,23761370,5
+fessi,23761370,4
+46977342,23761370,5
+49357954,23761370,3
+96305246,23761370,4
+Milk_L,23761370,-1
+aibaobaoguai327,23761370,5
+qianxiaoyi,23761370,4
+2740592,23761370,4
+jhy007,23761370,5
+wildale,23761370,4
+redjar,23761370,4
+113408084,23761370,5
+50579039,23761370,4
+G-TOKDing,23761370,3
+49750444,23761370,5
+70588311,23761370,4
+57929054,23761370,3
+oceanofbook,23761370,3
+61346101,23761370,5
+60818564,23761370,5
+73411860,23761370,5
+65268125,23761370,5
+1079180,23761370,4
+57007595,23761370,5
+50939193,23761370,4
+gRay__,23761370,5
+Cecilia925,23761370,4
+70235777,23761370,4
+3041905,23761370,4
+flycondor,23761370,3
+55303820,23761370,5
+alvin-hui,23761370,3
+1280092,23761370,4
+yangweili,23761370,4
+lotusweety,23761370,3
+naier,23761370,4
+CherryCatty,23761370,3
+52805629,23761370,5
+37335417,23761370,4
+sqbing,23761370,5
+11601615,23761370,5
+45826774,23761370,5
+3937689,23761370,4
+49968769,23761370,5
+59627608,23761370,5
+cxy0419,23761370,4
+62362677,23761370,4
+48860832,23761370,5
+baoqiddpp,23761370,4
+KinoQ,23761370,5
+66550488,23761370,4
+hsyh1989,23761370,4
+62927798,23761370,4
+yuyu0403,23761370,3
+4340732,23761370,5
+skyzhong003294,23761370,3
+2034934,23761370,4
+magic90ni,23761370,5
+79641728,23761370,5
+45042581,23761370,3
+duochiduozhan,23761370,4
+bebabay,23761370,5
+62236355,23761370,4
+48216346,23761370,4
+littlewish,23761370,5
+1075678,23761370,3
+1174148,23761370,3
+damnm,23761370,4
+juniorguo,23761370,5
+84670085,23761370,5
+3904912,23761370,3
+58367127,23761370,5
+alienrouge,23761370,3
+87537150,23761370,5
+50345805,23761370,5
+43616371,23761370,4
+71270529,23761370,1
+3079266,23761370,3
+66339819,23761370,3
+chx93,23761370,4
+7053065,23761370,4
+chihuoo,23761370,4
+58339090,23761370,5
+46004647,23761370,4
+61166977,23761370,4
+42421580,23761370,5
+4502583,23761370,4
+60348245,23761370,5
+11986570,23761370,3
+4749363,23761370,3
+58177849,23761370,5
+63213625,23761370,4
+124579345,23761370,3
+williamking001,23761370,4
+cbssy,23761370,5
+58344309,23761370,5
+48927470,23761370,5
+xixymonkey,23761370,4
+iumbrella,23761370,5
+wusue,23761370,4
+55852519,23761370,4
+FTDxiaowukong,23761370,4
+3416468,23761370,4
+69589181,23761370,5
+48282909,23761370,5
+zhaoyuzhaoyu,23761370,5
+shinpiea,23761370,3
+Sherlock.B,23761370,5
+foreversusie,23761370,5
+4146399,23761370,5
+42796272,23761370,4
+lijin606,23761370,4
+Jessica824,23761370,4
+45006334,23761370,4
+woshimumu,23761370,5
+61554500,23761370,4
+4647141,23761370,4
+goeatshit,23761370,5
+4425357,23761370,5
+2440792,23761370,3
+36339008,23761370,5
+46641274,23761370,5
+50474286,23761370,4
+ccgmt,23761370,2
+52118154,23761370,4
+94587558,23761370,4
+53692479,23761370,5
+juyi214,23761370,3
+43805429,23761370,4
+50259699,23761370,3
+tam18,23761370,3
+70009747,23761370,4
+43233255,23761370,4
+53681673,23761370,5
+49708932,23761370,4
+112048402,23761370,3
+49958643,23761370,3
+blueafter17,23761370,3
+doll88,23761370,4
+65365499,23761370,5
+78675448,23761370,5
+37863000,23761370,4
+yuriyurichan,23761370,5
+louieeeee,23761370,4
+63391784,23761370,5
+61355644,23761370,5
+Madaotaku,23761370,3
+54494232,23761370,5
+naschris,23761370,3
+49496507,23761370,5
+1631968,23761370,3
+promise1993,23761370,2
+mensmen,23761370,4
+69067345,23761370,4
+zhengxianmin,23761370,4
+59232482,23761370,3
+paistar,23761370,3
+leapmonth,23761370,3
+jasminum-sambac,23761370,2
+72647940,23761370,5
+faithyan,23761370,4
+28776614,23761370,4
+106137089,23761370,4
+16693810,23761370,1
+xiaojian0717,23761370,2
+ByJuns,23761370,5
+44203780,23761370,4
+54154563,23761370,5
+ing...,23761370,4
+77372571,23761370,4
+Tobijah,23761370,2
+59184492,23761370,4
+ganewael,23761370,5
+64041722,23761370,5
+50460301,23761370,5
+renely,23761370,4
+4001081,23761370,3
+63906800,23761370,5
+58065750,23761370,4
+51297155,23761370,4
+a20130819,23761370,-1
+ha1o,23761370,5
+64710006,23761370,5
+uhziel,23761370,4
+ColinZhang,23761370,4
+robins1979,23761370,3
+125787933,23761370,5
+gj88,23761370,5
+68298279,23761370,4
+57865029,23761370,5
+minilhj,23761370,4
+52740040,23761370,4
+68213529,23761370,3
+Ehecatl,23761370,1
+coson,23761370,5
+Cassiopeia1205,23761370,5
+shiningmonkey,23761370,4
+53745617,23761370,4
+2213454,23761370,4
+zhangqizhuangbi,23761370,4
+48526648,23761370,4
+1873014,23761370,5
+114290703,23761370,5
+12360363,23761370,4
+qishui,23761370,5
+61173588,23761370,4
+56964823,23761370,5
+Ruthwang,23761370,4
+zhangxinwei,23761370,3
+53024139,23761370,4
+63603656,23761370,5
+chuluhxf,23761370,4
+125849599,23761370,3
+35280816,23761370,5
+bruce_liu1123,23761370,5
+61038011,23761370,5
+59374112,23761370,3
+58072209,23761370,5
+78182915,23761370,5
+50742762,23761370,5
+60979573,23761370,4
+56916670,23761370,3
+125877834,23761370,5
+YIYI_LOVE,23761370,4
+45431472,23761370,4
+chtpower,23761370,5
+keeplovelcm,23761370,3
+jardin-jc,23761370,4
+36338773,23761370,4
+46142885,23761370,5
+120006546,23761370,5
+moniquewang,23761370,5
+49767711,23761370,4
+50888397,23761370,4
+56707914,23761370,5
+125881891,23761370,-1
+71430344,23761370,5
+babyshibi,23761370,4
+taozilove1314,23761370,5
+qdzdyg,23761370,4
+kudolan,23761370,4
+4252143,23761370,3
+13113398,23761370,5
+fiona8811,23761370,4
+3440203,23761370,5
+47407581,23761370,3
+dangelme,23761370,5
+alison0548,23761370,5
+DADA123,23761370,-1
+2514634,23761370,5
+51838904,23761370,3
+chalolee,23761370,5
+46494864,23761370,5
+125880821,23761370,-1
+holy_ml,23761370,5
+53075931,23761370,3
+124245470,23761370,1
+92549512,23761370,4
+125880554,23761370,-1
+xuanyushuo,23761370,5
+1223469,23761370,4
+120757685,23761370,5
+47940206,23761370,5
+desperadocow,23761370,3
+57062248,23761370,3
+103525589,23761370,5
+58634950,23761370,4
+64598866,23761370,5
+miyaoyao,23761370,5
+Sissi-fei,23761370,4
+damoiqongri,23761370,4
+15410475,23761370,3
+125879939,23761370,5
+dearsnow,23761370,5
+87928838,23761370,4
+49849512,23761370,5
+31205201,23761370,5
+125879738,23761370,4
+77531616,23761370,5
+52023052,23761370,2
+57880330,23761370,5
+46493903,23761370,4
+49815623,23761370,5
+83192271,23761370,5
+125166268,23761370,-1
+34163619,23761370,5
+unknow-all,23761370,2
+61292565,23761370,4
+37611723,23761370,5
+59665595,23761370,4
+reno890523,23761370,-1
+52989848,23761370,4
+88018835,23761370,3
+Jewelyxy,23761370,3
+33081182,23761370,5
+elfdan,23761370,5
+xiaohanyu,23761370,4
+4469892,23761370,4
+99601016,23761370,5
+ryoheing,23761370,5
+discon,23761370,4
+83070447,23761370,5
+6118493,23761370,-1
+44344508,23761370,4
+mycio,23761370,4
+KevinLuo,23761370,5
+78768224,23761370,5
+pertmm,23761370,4
+60521274,23761370,4
+46183674,23761370,1
+85083709,23761370,5
+53238292,23761370,5
+46394619,23761370,3
+iamlowe,23761370,5
+125877274,23761370,5
+fangping1986,23761370,5
+124494079,23761370,-1
+53618855,23761370,4
+3531316,23761370,4
+uf0,23761370,4
+kulime,23761370,-1
+gulugll,23761370,4
+39607607,23761370,5
+WYkeyu14,23761370,3
+76393487,23761370,4
+surgdy1008,23761370,4
+59341894,23761370,3
+tianzhueyesonme,23761370,3
+96716394,23761370,5
+56237172,23761370,-1
+112965937,23761370,5
+52192679,23761370,5
+YSY999,23761370,4
+53362229,23761370,5
+sahel,23761370,4
+isseyisseyissey,23761370,5
+30756543,23761370,4
+70843457,23761370,1
+45889887,23761370,5
+51378899,23761370,4
+xinyuai,23761370,5
+Rapunzel_y,23761370,4
+ChennyMin,23761370,5
+49764228,23761370,5
+55757133,23761370,4
+55757133,23761370,4
+lupupu,23761370,4
+121679794,23761370,5
+58191921,23761370,5
+4629548,23761370,5
+48118281,23761370,5
+45792761,23761370,5
+4406540,23761370,4
+4241619,23761370,2
+50192575,23761370,3
+48988746,23761370,5
+crystal81,23761370,4
+67796115,23761370,5
+wawanghuan,23761370,5
+46881821,23761370,3
+neoway,23761370,4
+happyds1225,23761370,2
+onlyxia,23761370,5
+smilewsy,23761370,4
+summer_sum,23761370,1
+niushansuan313,23761370,4
+63306444,23761370,3
+79637543,23761370,4
+43157590,23761370,5
+46011187,23761370,4
+chumin201111,23761370,5
+1901451,23761370,4
+15769560,23761370,4
+linanian,23761370,5
+GaGa_1221,23761370,3
+3002217,23761370,3
+2889153,23761370,4
+king1099,23761370,4
+67464304,23761370,5
+123209783,23761370,4
+124397261,23761370,5
+shinedeaki,23761370,2
+Austin_Ai,23761370,5
+ksa,23761370,4
+nicos,23761370,5
+ym.7,23761370,5
+123626254,23761370,5
+52954408,23761370,5
+67659493,23761370,5
+47717984,23761370,5
+guiven,23761370,4
+91399720,23761370,5
+lleiou,23761370,3
+turf85,23761370,5
+43685904,23761370,4
+cho123,23761370,5
+2089206,23761370,4
+84312133,23761370,4
+57905872,23761370,4
+4340100,23761370,3
+6392728,23761370,3
+MMX2012,23761370,5
+1252327,23761370,5
+36466126,23761370,5
+59788445,23761370,4
+1003623,23761370,2
+48448499,23761370,4
+Madao_D,23761370,3
+L0ve-zL,23761370,2
+46643495,23761370,5
+eeeop,23761370,5
+52183959,23761370,4
+14484123,23761370,3
+maeho,23761370,4
+55716934,23761370,5
+46992651,23761370,3
+2992502,23761370,2
+57126178,23761370,5
+60786423,23761370,5
+68362620,23761370,5
+43678627,23761370,5
+53634424,23761370,2
+xingren912,23761370,5
+heyan139710,23761370,3
+44882588,23761370,5
+lyricless,23761370,4
+zonovo,23761370,3
+hai2hai,23761370,4
+99005282,23761370,4
+88226248,23761370,5
+78868148,23761370,3
+linanh8,23761370,4
+73361998,23761370,3
+50024778,23761370,5
+116908080,23761370,5
+58568708,23761370,3
+AndyH,23761370,5
+2565519,23761370,4
+61211793,23761370,4
+122360797,23761370,4
+73948612,23761370,3
+54314418,23761370,5
+4305734,23761370,4
+61351953,23761370,3
+2844320,23761370,5
+2115444,23761370,4
+70455730,23761370,5
+68079880,23761370,4
+hifNKK,23761370,5
+4111611,23761370,4
+54493217,23761370,3
+cloverpipo,23761370,2
+58581987,23761370,3
+37619405,23761370,4
+64073356,23761370,5
+3465796,23761370,4
+majestbanban,23761370,3
+rowdawn,23761370,3
+62926253,23761370,5
+neflower,23761370,4
+46580766,23761370,4
+Alisa9185,23761370,5
+66697925,23761370,5
+37567847,23761370,4
+2208335,23761370,4
+dream09104,23761370,4
+125350437,23761370,4
+49364601,23761370,5
+Tiffay-fxy,23761370,4
+34597318,23761370,5
+54272292,23761370,5
+2986990,23761370,3
+91957409,23761370,5
+79475949,23761370,5
+122980018,23761370,5
+miyamiyawei,23761370,4
+60079134,23761370,4
+47707866,23761370,5
+40977911,23761370,5
+50124782,23761370,4
+52771481,23761370,4
+75091194,23761370,5
+3325711,23761370,4
+37402473,23761370,3
+78843795,23761370,5
+reika_scar,23761370,3
+2105861,23761370,3
+64455771,23761370,4
+yubingqiangwei,23761370,4
+49994320,23761370,4
+42799702,23761370,4
+chimneyqueen,23761370,3
+63272219,23761370,5
+helloway,23761370,3
+69411761,23761370,4
+just-one-way,23761370,3
+Agnes62,23761370,5
+28421732,23761370,5
+68213997,23761370,3
+58343870,23761370,4
+kimore,23761370,4
+1713100,23761370,5
+77279823,23761370,5
+51782661,23761370,4
+41441330,23761370,4
+61402100,23761370,4
+41825095,23761370,5
+celt,23761370,5
+58935563,23761370,3
+119472529,23761370,5
+tshoo,23761370,2
+81104510,23761370,4
+58489881,23761370,4
+76156841,23761370,5
+2777801,23761370,4
+59301340,23761370,5
+dyered,23761370,5
+53512741,23761370,5
+53561589,23761370,5
+3449644,23761370,4
+hanhk,23761370,3
+76225555,23761370,3
+50266692,23761370,4
+June_1,23761370,5
+63087882,23761370,4
+47213217,23761370,5
+kkorange,23761370,4
+armstr,23761370,4
+62478064,23761370,4
+125825597,23761370,5
+53383783,23761370,4
+puccatry,23761370,5
+42380844,23761370,4
+115078834,23761370,5
+124976604,23761370,5
+42412497,23761370,5
+1872169,23761370,3
+120119010,23761370,4
+1883437,23761370,4
+51316179,23761370,5
+34670863,23761370,4
+82052556,23761370,5
+xiaoheziyellow,23761370,3
+edward_ye,23761370,4
+47019104,23761370,3
+20327170,23761370,5
+62323512,23761370,4
+52852194,23761370,5
+44066493,23761370,5
+1478265,23761370,5
+4546356,23761370,3
+Rainbowww,23761370,4
+55468780,23761370,4
+53676836,23761370,5
+72385276,23761370,5
+46803621,23761370,4
+20886546,23761370,4
+34728183,23761370,5
+rukia-ichigo,23761370,3
+115370500,23761370,5
+68144864,23761370,4
+juliesa,23761370,4
+wj8198026,23761370,4
+2435805,23761370,3
+life2x,23761370,4
+life2x,23761370,4
+hzzrtw,23761370,5
+62957878,23761370,3
+60844358,23761370,1
+rbjgenius,23761370,3
+63750698,23761370,3
+3075584,23761370,5
+40498676,23761370,3
+62083725,23761370,5
+41709797,23761370,5
+49560691,23761370,5
+61863665,23761370,4
+72736291,23761370,5
+melodychung,23761370,4
+Lynnxj,23761370,4
+33973051,23761370,5
+68238638,23761370,4
+119543004,23761370,3
+125853147,23761370,4
+wds2001,23761370,4
+125853147,23761370,4
+wds2001,23761370,4
+57693239,23761370,5
+xiaoduo247,23761370,5
+58942968,23761370,4
+31776574,23761370,4
+39091136,23761370,2
+naonaosite,23761370,3
+messicool,23761370,3
+55643387,23761370,4
+47414320,23761370,4
+48845332,23761370,2
+64060371,23761370,5
+85985772,23761370,5
+GOGOAN,23761370,5
+carolcai,23761370,5
+48937128,23761370,3
+pink_yolanda,23761370,5
+yenobis,23761370,4
+71048664,23761370,4
+71317646,23761370,4
+best_times,23761370,3
+72763314,23761370,4
+78146463,23761370,3
+125850852,23761370,5
+43133361,23761370,4
+54578856,23761370,4
+46026110,23761370,4
+66327503,23761370,5
+21883271,23761370,5
+iyuge,23761370,5
+biguru,23761370,4
+79375469,23761370,5
+71260897,23761370,3
+76273078,23761370,2
+ren40631284,23761370,4
+61598383,23761370,4
+53546307,23761370,4
+119681727,23761370,4
+63142060,23761370,5
+5800619,23761370,4
+skutiee,23761370,5
+78719140,23761370,4
+125842598,23761370,3
+liujintong,23761370,4
+32697983,23761370,5
+62117653,23761370,4
+60411717,23761370,4
+57543847,23761370,5
+xiaohuaxia,23761370,4
+violetazhang,23761370,4
+2973872,23761370,5
+63977456,23761370,5
+58774025,23761370,1
+67194113,23761370,3
+23894821,23761370,5
+37679562,23761370,5
+4648608,23761370,4
+3170513,23761370,4
+holyshitzhy,23761370,4
+holyshitzhy,23761370,4
+izaijin,23761370,4
+36769800,23761370,5
+47806412,23761370,4
+60667221,23761370,4
+51050317,23761370,4
+47606622,23761370,3
+62042712,23761370,5
+rainbowstar,23761370,5
+50227204,23761370,5
+1769332,23761370,4
+wuwu7,23761370,4
+holeofstone,23761370,5
+45103571,23761370,2
+70990506,23761370,4
+gonghm,23761370,5
+46003128,23761370,3
+junod,23761370,4
+47823453,23761370,3
+ValeMC,23761370,5
+32968607,23761370,4
+3979883,23761370,4
+47352863,23761370,5
+71868664,23761370,4
+18586571,23761370,4
+Ichbinnichttot,23761370,3
+moqi-xiao,23761370,4
+56192501,23761370,5
+59720333,23761370,3
+justlion,23761370,5
+125844163,23761370,5
+37509961,23761370,5
+2230841,23761370,5
+3868293,23761370,4
+72894253,23761370,5
+43909652,23761370,3
+125844064,23761370,5
+64690164,23761370,5
+68193127,23761370,3
+31061992,23761370,5
+123251457,23761370,5
+84046293,23761370,4
+chendaxiao,23761370,5
+64713080,23761370,4
+jack77gyq,23761370,5
+125843400,23761370,4
+56561314,23761370,5
+vesperxu,23761370,-1
+2176873,23761370,-1
+96204394,23761370,3
+46574354,23761370,4
+shenhuxi,23761370,-1
+1068508,23761370,4
+52271140,23761370,5
+43326393,23761370,3
+aeris511,23761370,4
+123229585,23761370,2
+vanie,23761370,3
+49493827,23761370,3
+102042212,23761370,4
+125841916,23761370,4
+26751853,23761370,4
+48190569,23761370,5
+2039097,23761370,4
+46718589,23761370,4
+45957905,23761370,4
+48071996,23761370,4
+53175000,23761370,4
+102605271,23761370,4
+46266326,23761370,5
+denim,23761370,3
+49263977,23761370,3
+87832668,23761370,5
+63716048,23761370,5
+zhuji,23761370,5
+cening,23761370,4
+15463902,23761370,4
+59038571,23761370,4
+93446419,23761370,4
+62417186,23761370,5
+seattlerein,23761370,4
+80663628,23761370,5
+wuliangmouji,23761370,2
+2063961,23761370,4
+34850767,23761370,4
+marlborosin,23761370,4
+63156510,23761370,3
+heartinsky,23761370,3
+57567019,23761370,5
+anillusion,23761370,3
+jashia,23761370,5
+115362268,23761370,5
+3942969,23761370,5
+64202637,23761370,4
+55432699,23761370,5
+shiro666,23761370,4
+124777465,23761370,5
+evooone,23761370,4
+chinhao,23761370,3
+125838914,23761370,-1
+35665726,23761370,5
+7971473,23761370,2
+54993624,23761370,1
+cassiecici,23761370,5
+slowslowzhang,23761370,3
+43410327,23761370,4
+104407573,23761370,5
+64060365,23761370,5
+125096257,23761370,5
+87625107,23761370,5
+27038162,23761370,3
+1280631,23761370,4
+93896639,23761370,5
+supernanreturns,23761370,5
+williamwindy,23761370,3
+xiaohundexiaoba,23761370,5
+3415449,23761370,2
+puddingcon,23761370,4
+83017477,23761370,4
+xunlaoxia,23761370,4
+bzfdu,23761370,5
+53349812,23761370,4
+neverlander,23761370,4
+53759633,23761370,4
+122759258,23761370,5
+xiaoxiaoyxiaou,23761370,4
+68728325,23761370,5
+doumo.521,23761370,5
+guoerer,23761370,4
+16328246,23761370,4
+missrukawa,23761370,5
+66509980,23761370,3
+Ridagun,23761370,5
+59778828,23761370,4
+cjling,23761370,3
+zoever,23761370,3
+40975074,23761370,-1
+36558966,23761370,4
+38966245,23761370,4
+Leslie_Cheung,23761370,4
+zhao_yingxin,23761370,4
+2312038,23761370,3
+K.Night,23761370,5
+51862860,23761370,5
+51828462,23761370,4
+zy1988,23761370,4
+renchenwei,23761370,5
+phoebetvb,23761370,5
+82927281,23761370,3
+119476925,23761370,4
+63281322,23761370,4
+79528433,23761370,4
+45197494,23761370,4
+memorysongs,23761370,4
+111763280,23761370,5
+51866823,23761370,4
+2403616,23761370,5
+11035901,23761370,5
+1820786,23761370,5
+2270018,23761370,5
+57947419,23761370,5
+icemankobe,23761370,4
+53227132,23761370,4
+44937867,23761370,5
+68503338,23761370,5
+beggarqueen,23761370,3
+dapengalways,23761370,4
+49153230,23761370,5
+voguey,23761370,4
+sharmpian,23761370,5
+68324866,23761370,5
+linglingcat,23761370,4
+85333070,23761370,5
+125831279,23761370,3
+62398922,23761370,5
+xiongjijun,23761370,3
+rakasha,23761370,2
+57684790,23761370,5
+linminyao,23761370,5
+vikshare,23761370,4
+52918154,23761370,3
+gyzan107,23761370,5
+hechiyin,23761370,4
+4628931,23761370,5
+flower_ray,23761370,5
+rly123,23761370,5
+125415794,23761370,5
+32019435,23761370,4
+50941059,23761370,4
+zzetazz,23761370,4
+wavelpc,23761370,3
+68027802,23761370,2
+39579431,23761370,5
+sasz,23761370,4
+121336166,23761370,5
+seditionary,23761370,3
+1205696,23761370,2
+125830240,23761370,5
+38184816,23761370,2
+125815774,23761370,5
+43528923,23761370,4
+63452908,23761370,5
+3597129,23761370,-1
+56105601,23761370,3
+48046895,23761370,-1
+42674793,23761370,5
+3526245,23761370,5
+124767274,23761370,-1
+loftywain,23761370,4
+125829460,23761370,5
+65509971,23761370,5
+50203188,23761370,5
+30552839,23761370,5
+62187279,23761370,5
+saintyaya,23761370,4
+rainloveyy,23761370,3
+47941861,23761370,3
+43713017,23761370,4
+36753711,23761370,5
+1421009,23761370,5
+1421009,23761370,5
+94659336,23761370,4
+78604896,23761370,5
+72171848,23761370,4
+72382152,23761370,4
+46088268,23761370,5
+1333089,23761370,3
+49827359,23761370,5
+26681915,23761370,4
+74237278,23761370,4
+zaidaoyang,23761370,5
+125827565,23761370,5
+65854158,23761370,4
+66439302,23761370,5
+niki2wynn,23761370,3
+36739027,23761370,3
+baoguoyueguang,23761370,3
+aquapanda,23761370,3
+41713024,23761370,4
+68201979,23761370,4
+121215070,23761370,4
+119277134,23761370,5
+twinsty,23761370,-1
+49824169,23761370,4
+1614995,23761370,5
+1226511,23761370,4
+xiaowuchao,23761370,2
+33251691,23761370,5
+34971762,23761370,4
+ear23,23761370,4
+12794807,23761370,4
+45803275,23761370,4
+vvvvvippppp,23761370,4
+61716471,23761370,5
+2787022,23761370,4
+8438524,23761370,4
+4292817,23761370,4
+123288259,23761370,5
+49984882,23761370,5
+71648483,23761370,5
+62233659,23761370,3
+cp33,23761370,5
+44383454,23761370,4
+125806599,23761370,4
+dreamadream,23761370,4
+53743649,23761370,5
+70132869,23761370,4
+48053499,23761370,4
+46924914,23761370,4
+47325319,23761370,3
+4115750,23761370,5
+38632557,23761370,5
+4415498,23761370,5
+103744729,23761370,2
+1357759,23761370,3
+stone610,23761370,4
+80894966,23761370,5
+fishliuly,23761370,4
+janeao,23761370,5
+yscysc803,23761370,4
+yscysc803,23761370,4
+97656023,23761370,2
+kipper79,23761370,3
+yuan425,23761370,5
+80331661,23761370,4
+2010767,23761370,3
+auntyo,23761370,4
+64149046,23761370,5
+koonwah,23761370,-1
+knightingale,23761370,3
+benxiaoqian,23761370,3
+lulusheep,23761370,5
+46372627,23761370,5
+Miralte,23761370,5
+59799868,23761370,4
+54398755,23761370,5
+37551097,23761370,4
+chenxhao,23761370,5
+69432460,23761370,3
+AllenZ_CN,23761370,4
+122155755,23761370,2
+zhewan,23761370,4
+charlotte091108,23761370,2
+jadezely,23761370,4
+49850971,23761370,4
+49128296,23761370,4
+31271550,23761370,4
+4533182,23761370,4
+xiaopool,23761370,-1
+62509666,23761370,4
+79425392,23761370,4
+hyskoamm,23761370,4
+shuihuayi,23761370,5
+wusuhui,23761370,5
+yuemingqiao,23761370,4
+silent_island,23761370,4
+62434188,23761370,5
+bb0708,23761370,3
+4249743,23761370,3
+66537516,23761370,3
+dzhq,23761370,4
+72934606,23761370,4
+hot_air,23761370,3
+2206081,23761370,3
+59584497,23761370,5
+53349909,23761370,5
+98086033,23761370,5
+CgMusicStudio,23761370,5
+56779346,23761370,5
+62229879,23761370,4
+60881937,23761370,5
+65174941,23761370,4
+wmjun,23761370,3
+2572066,23761370,5
+64128291,23761370,3
+chesterchoi,23761370,4
+40704995,23761370,5
+crowdedstars,23761370,4
+58820392,23761370,4
+112527545,23761370,5
+112527545,23761370,5
+itiszdq,23761370,4
+4152821,23761370,4
+66066002,23761370,4
+52036087,23761370,5
+1792548,23761370,5
+42583808,23761370,5
+adi,23761370,3
+2768259,23761370,4
+xuxudaodao,23761370,4
+58058085,23761370,5
+119891877,23761370,5
+29472366,23761370,5
+highwind,23761370,5
+69084655,23761370,3
+56823104,23761370,4
+1368059,23761370,2
+42591703,23761370,5
+laneddy,23761370,3
+win-go,23761370,3
+win-go,23761370,3
+66137002,23761370,5
+jessechi,23761370,5
+just-benren,23761370,4
+53319331,23761370,3
+3325836,23761370,4
+cwalet,23761370,3
+45295722,23761370,2
+124930667,23761370,5
+49910558,23761370,5
+1809252,23761370,5
+xxfelix,23761370,5
+59783365,23761370,4
+60470640,23761370,5
+brant800,23761370,4
+49019812,23761370,5
+60311898,23761370,4
+3180760,23761370,4
+lattelan,23761370,4
+123474986,23761370,4
+Jerusalem,23761370,5
+65479758,23761370,4
+72365393,23761370,4
+61246390,23761370,5
+52519025,23761370,4
+jo422,23761370,4
+82367083,23761370,5
+69665263,23761370,4
+52117256,23761370,3
+46713931,23761370,4
+39912768,23761370,4
+36844954,23761370,4
+15561729,23761370,3
+47160783,23761370,4
+125818346,23761370,5
+FantasyDuan,23761370,2
+littlecat910,23761370,4
+67527831,23761370,5
+54994383,23761370,4
+3827505,23761370,3
+2982439,23761370,-1
+47026147,23761370,2
+41833499,23761370,4
+109586784,23761370,4
+greendrifter,23761370,4
+sewll,23761370,3
+64263776,23761370,5
+51095264,23761370,5
+2328364,23761370,4
+biubiubiubiong,23761370,3
+62113049,23761370,5
+daisyding08,23761370,5
+58482051,23761370,4
+2504153,23761370,4
+qiue-,23761370,5
+125817564,23761370,5
+35624272,23761370,4
+linruoru,23761370,3
+60795536,23761370,4
+58529378,23761370,4
+bernadettttttte,23761370,2
+aoniki,23761370,4
+71628865,23761370,4
+81410709,23761370,5
+crystallovess,23761370,5
+51461223,23761370,3
+6010524,23761370,5
+lovingxtina,23761370,5
+4090000,23761370,4
+64861011,23761370,4
+70381313,23761370,5
+beckylovemickey,23761370,5
+elvyla,23761370,3
+34280647,23761370,4
+monmeilleur,23761370,4
+wlj13626,23761370,4
+125815007,23761370,2
+4246390,23761370,3
+66585195,23761370,4
+yufei707,23761370,4
+40116755,23761370,4
+dolly-cici,23761370,5
+44844360,23761370,4
+tr.ai.nspotting,23761370,4
+52851561,23761370,5
+beijingstone,23761370,4
+baijie8412,23761370,5
+slowood,23761370,2
+38254732,23761370,5
+68461862,23761370,5
+16446452,23761370,5
+64297139,23761370,5
+2694608,23761370,5
+lucywang53,23761370,3
+lovelessvicky,23761370,5
+4505561,23761370,5
+53616337,23761370,4
+38500219,23761370,5
+lvmeng214,23761370,3
+cicihappy,23761370,4
+qpdbd,23761370,5
+6539111,23761370,4
+juliache,23761370,3
+76556877,23761370,4
+26194428,23761370,4
+48306725,23761370,4
+46932816,23761370,4
+62338727,23761370,2
+butuisedelan,23761370,4
+49611742,23761370,4
+shineone,23761370,4
+wddEileen,23761370,5
+2784421,23761370,5
+49145683,23761370,5
+sharon56,23761370,3
+58453204,23761370,5
+Alivia0622,23761370,5
+kikiandme,23761370,4
+74652601,23761370,4
+38462134,23761370,4
+sunshineF,23761370,5
+flowertide,23761370,4
+50875849,23761370,5
+oceanmumu,23761370,5
+55773220,23761370,4
+75445619,23761370,5
+pepereina,23761370,5
+125813311,23761370,5
+47519598,23761370,5
+sung..,23761370,4
+59102141,23761370,5
+63381991,23761370,5
+lianlian1215,23761370,4
+lrrfantasy,23761370,5
+sentlily,23761370,5
+59290404,23761370,4
+120238673,23761370,4
+3270210,23761370,5
+hectorpu,23761370,2
+julyba,23761370,5
+18249376,23761370,5
+mintyhsu,23761370,4
+sijimoli,23761370,4
+51522345,23761370,5
+81602927,23761370,5
+60461731,23761370,5
+60089109,23761370,4
+2962792,23761370,4
+AuLai,23761370,4
+x.xiong,23761370,5
+58049040,23761370,5
+125557164,23761370,5
+hikirres,23761370,3
+foolishrabbit,23761370,3
+qinggugu,23761370,4
+103595996,23761370,-1
+78443793,23761370,4
+125813313,23761370,5
+irissmy,23761370,4
+52521255,23761370,5
+47288828,23761370,5
+dreamrobber,23761370,-1
+61323163,23761370,5
+54652758,23761370,5
+6426642,23761370,4
+69948751,23761370,5
+czhulux,23761370,3
+63207780,23761370,5
+3032363,23761370,5
+125808369,23761370,5
+49307671,23761370,-1
+mumucha,23761370,5
+88428362,23761370,5
+62652935,23761370,5
+10057599,23761370,3
+luckyoooo,23761370,4
+szvivian,23761370,5
+48498923,23761370,4
+48440285,23761370,3
+49939855,23761370,2
+125812751,23761370,5
+rvlt,23761370,4
+47001489,23761370,4
+119790269,23761370,4
+60768752,23761370,3
+3727154,23761370,4
+qingxin623,23761370,4
+37837087,23761370,5
+4591102,23761370,3
+qrange,23761370,3
+abemess,23761370,5
+1655485,23761370,5
+3371479,23761370,4
+68846887,23761370,-1
+125812383,23761370,4
+125764158,23761370,2
+51840690,23761370,4
+42808435,23761370,5
+monilen,23761370,4
+22208302,23761370,3
+60818936,23761370,4
+121055436,23761370,3
+37967188,23761370,4
+53347759,23761370,5
+35703098,23761370,4
+71607723,23761370,5
+65520405,23761370,3
+brucas,23761370,2
+paradise624,23761370,4
+109365835,23761370,5
+binglanxier,23761370,4
+2270098,23761370,4
+50028537,23761370,5
+2503719,23761370,4
+goodmorning918,23761370,5
+59084050,23761370,4
+4003596,23761370,5
+maoxiaoleaichi,23761370,4
+azurewrathphase,23761370,4
+weixiaolengmo,23761370,4
+atsatyr,23761370,5
+2907843,23761370,5
+huotian,23761370,5
+74084079,23761370,5
+xiaohuagu,23761370,5
+chuyoyo,23761370,4
+53001160,23761370,5
+64874309,23761370,3
+2426246,23761370,4
+34740477,23761370,4
+quanquan007,23761370,4
+1901600,23761370,3
+56295737,23761370,5
+leecarol,23761370,4
+mr12,23761370,4
+63188562,23761370,3
+11965473,23761370,4
+zuobei30,23761370,4
+27675083,23761370,3
+cozumakemesmile,23761370,5
+cozumakemesmile,23761370,5
+eskimonino,23761370,4
+lich0079,23761370,4
+20760667,23761370,4
+68204055,23761370,4
+imlayla,23761370,5
+43869534,23761370,5
+61864894,23761370,4
+119467362,23761370,5
+125810313,23761370,5
+farx,23761370,4
+jamtheone,23761370,2
+wd,23761370,4
+miyui,23761370,4
+84792609,23761370,3
+yinyuegood,23761370,4
+50478157,23761370,4
+47775065,23761370,5
+2170266,23761370,4
+cjshangbuqi,23761370,5
+cjshangbuqi,23761370,5
+53691799,23761370,5
+64747830,23761370,5
+33557750,23761370,5
+lillylu,23761370,4
+dunkkin,23761370,5
+62628758,23761370,2
+3025498,23761370,5
+51110099,23761370,4
+2239878,23761370,5
+120091522,23761370,4
+3082576,23761370,2
+33257613,23761370,4
+71462829,23761370,2
+toben,23761370,2
+AAAHHHAAA,23761370,4
+80744107,23761370,5
+mixi456,23761370,4
+jumpjumpgogogo,23761370,3
+68299954,23761370,5
+uestchj,23761370,4
+86229035,23761370,5
+4524238,23761370,5
+81147000,23761370,5
+48986399,23761370,4
+candaes,23761370,4
+ppmy,23761370,3
+oOHOL,23761370,3
+91555657,23761370,3
+hiddentreasures,23761370,5
+17881602,23761370,5
+1985034,23761370,4
+12300787,23761370,5
+76356233,23761370,5
+87530030,23761370,5
+Christopher_,23761370,5
+StacieZhou,23761370,5
+57850884,23761370,5
+62235753,23761370,4
+61220632,23761370,5
+4095918,23761370,5
+doreen1215,23761370,3
+123046059,23761370,5
+39104893,23761370,4
+monaliva,23761370,3
+81454122,23761370,4
+endlishock,23761370,4
+81729720,23761370,4
+univercen,23761370,3
+52113418,23761370,4
+103358688,23761370,3
+63211767,23761370,3
+45036471,23761370,5
+63090885,23761370,2
+dyinghero,23761370,-1
+tuviel,23761370,4
+44939590,23761370,4
+richion,23761370,4
+kongff,23761370,4
+freydou,23761370,3
+37509431,23761370,5
+suyuhang,23761370,4
+yinyannan,23761370,5
+39892852,23761370,4
+ddtou,23761370,5
+1061597,23761370,4
+antheaSH,23761370,3
+2344931,23761370,5
+maimufei,23761370,4
+2238984,23761370,4
+moruohan,23761370,4
+3744327,23761370,4
+80814078,23761370,4
+4398767,23761370,5
+cardplus,23761370,3
+erdansleepy,23761370,5
+49872247,23761370,4
+61161767,23761370,4
+67963097,23761370,4
+orangy,23761370,4
+2373395,23761370,4
+72023671,23761370,5
+49930481,23761370,4
+125807417,23761370,5
+92926800,23761370,5
+73410392,23761370,4
+limqing,23761370,4
+84663969,23761370,5
+3486254,23761370,4
+112845230,23761370,5
+greyfield,23761370,4
+35589826,23761370,4
+orchild0517,23761370,4
+DOPHPIRATE,23761370,3
+72725203,23761370,3
+56370323,23761370,4
+reky327,23761370,3
+125806879,23761370,5
+52231917,23761370,5
+33834953,23761370,5
+witek,23761370,4
+treeplanting,23761370,5
+viviannasun,23761370,5
+1505921,23761370,4
+7952688,23761370,5
+sifangfengdong,23761370,4
+49786123,23761370,5
+ragnarok1028,23761370,5
+longnel,23761370,4
+125806307,23761370,5
+ILY_XX,23761370,4
+58289551,23761370,5
+ikaka,23761370,3
+sue89,23761370,4
+57026969,23761370,5
+53909669,23761370,4
+xiaoang_0528,23761370,5
+11149109,23761370,2
+EinUK,23761370,5
+61955210,23761370,5
+61955210,23761370,5
+43530458,23761370,5
+happyziqi,23761370,5
+123370298,23761370,3
+3675253,23761370,4
+3296630,23761370,4
+Psycho_,23761370,4
+liu11,23761370,3
+57731057,23761370,5
+60344800,23761370,4
+40131360,23761370,3
+81671775,23761370,4
+4530638,23761370,4
+lalavis,23761370,4
+truthyfarr,23761370,3
+75361006,23761370,3
+102426428,23761370,4
+56658377,23761370,3
+51418228,23761370,5
+liusashmily,23761370,3
+125799512,23761370,5
+4724451,23761370,5
+56789007,23761370,3
+vywy,23761370,1
+61911779,23761370,5
+62668317,23761370,5
+yyue,23761370,-1
+2299664,23761370,3
+35963638,23761370,5
+116248974,23761370,5
+dadababa,23761370,4
+christna,23761370,4
+38465519,23761370,4
+43652499,23761370,5
+45944952,23761370,5
+63831823,23761370,5
+76868193,23761370,5
+isss,23761370,4
+125800627,23761370,5
+BeDying,23761370,3
+34476599,23761370,-1
+68767976,23761370,4
+125800186,23761370,5
+dangdang1027,23761370,3
+qijue711,23761370,4
+52168970,23761370,5
+60054890,23761370,3
+44836521,23761370,5
+ad.7,23761370,4
+lothron,23761370,-1
+60861914,23761370,5
+hezelee,23761370,4
+vollvoll,23761370,5
+68631195,23761370,5
+yaoyaodaren,23761370,4
+fendy0827,23761370,5
+52013983,23761370,4
+57378206,23761370,5
+cherrysu711,23761370,5
+lgmx,23761370,5
+omniwillpotent,23761370,5
+1849977,23761370,5
+2740951,23761370,4
+48850859,23761370,5
+xlycn,23761370,5
+JefferyZ,23761370,5
+pajamania,23761370,3
+55389424,23761370,4
+zqy8833,23761370,4
+cheng7si8jin,23761370,1
+43922987,23761370,5
+70672684,23761370,4
+60357094,23761370,4
+ringoo,23761370,4
+91498001,23761370,5
+Trax,23761370,4
+40037855,23761370,5
+tamiwang,23761370,5
+flowerish,23761370,4
+113924103,23761370,3
+36125002,23761370,5
+9962400,23761370,3
+58064521,23761370,4
+57292678,23761370,3
+3962683,23761370,4
+57461686,23761370,5
+71411793,23761370,4
+34969112,23761370,4
+80075564,23761370,5
+82620092,23761370,3
+king591,23761370,4
+65711709,23761370,5
+islander,23761370,4
+43384785,23761370,4
+Tingting0826,23761370,5
+fondxy,23761370,4
+dahuilang15656,23761370,4
+2776724,23761370,4
+holicking,23761370,5
+49215002,23761370,5
+70635900,23761370,4
+zhangyunjun,23761370,4
+dee4ever,23761370,4
+j2dream,23761370,5
+wgj4,23761370,4
+84698699,23761370,3
+xukaibin,23761370,4
+3679624,23761370,5
+april_rap,23761370,4
+sanzang007,23761370,3
+47542838,23761370,5
+44741261,23761370,5
+14954804,23761370,5
+58254080,23761370,4
+rebornsunshine,23761370,5
+46783864,23761370,5
+69363848,23761370,5
+Chelly,23761370,3
+4351653,23761370,4
+69061501,23761370,4
+yjybibby,23761370,4
+kyd77,23761370,4
+53173594,23761370,5
+34161257,23761370,5
+65989353,23761370,5
+66337391,23761370,5
+46979178,23761370,3
+59998509,23761370,4
+wangxin128,23761370,5
+64759386,23761370,5
+43471974,23761370,4
+3611961,23761370,4
+elppapple,23761370,4
+53827874,23761370,4
+luvis1499,23761370,3
+cos2xhps,23761370,3
+wuxuqian,23761370,3
+mars9,23761370,4
+liuliyan,23761370,4
+mickydudu,23761370,5
+connieyu,23761370,5
+qairy,23761370,5
+3760870,23761370,4
+suaguai7,23761370,-1
+1995910,23761370,4
+spankercat,23761370,4
+moxiaobu,23761370,5
+5587401,23761370,4
+Iamapoem,23761370,3
+wangjun1900,23761370,3
+binben,23761370,2
+59954859,23761370,5
+8444736,23761370,3
+luckychu,23761370,4
+70637195,23761370,5
+soberldly,23761370,3
+71457288,23761370,5
+55822084,23761370,2
+92930894,23761370,5
+disby,23761370,4
+53404103,23761370,3
+hauy,23761370,4
+53136602,23761370,4
+30500740,23761370,4
+73465562,23761370,2
+victorwuman,23761370,5
+28460777,23761370,3
+75240553,23761370,4
+darktsukasa,23761370,4
+1375311,23761370,5
+75835017,23761370,4
+53512949,23761370,5
+49298846,23761370,5
+obsesser,23761370,4
+michelle88411,23761370,3
+65584188,23761370,5
+125796378,23761370,1
+Jennysflower,23761370,3
+78731389,23761370,4
+50219833,23761370,3
+3406599,23761370,3
+53322417,23761370,5
+riceMayday,23761370,5
+48985833,23761370,4
+vvish,23761370,3
+125796155,23761370,5
+sunnianyu,23761370,5
+45838943,23761370,5
+37300814,23761370,4
+jasminewhite,23761370,4
+2650390,23761370,5
+125795851,23761370,1
+bj_ffxmy,23761370,2
+60788836,23761370,4
+3446929,23761370,4
+gjr,23761370,3
+tearmap,23761370,4
+117353977,23761370,3
+chrisxys,23761370,5
+7900264,23761370,4
+doliz,23761370,5
+47108985,23761370,3
+3224119,23761370,3
+fanny_lingf,23761370,5
+mmmxyo,23761370,3
+91659297,23761370,5
+ajiuyo,23761370,4
+Bright0574,23761370,3
+passerby2,23761370,3
+woaifanfou,23761370,5
+125795553,23761370,5
+44877947,23761370,4
+5605006,23761370,5
+50285706,23761370,5
+72440781,23761370,-1
+63383879,23761370,3
+65800708,23761370,4
+smilewang918,23761370,5
+25753121,23761370,5
+92449125,23761370,4
+54785428,23761370,3
+34738097,23761370,5
+haizizang5,23761370,5
+125718651,23761370,5
+c2ming,23761370,5
+34641222,23761370,5
+2759871,23761370,4
+violin1112,23761370,5
+3302374,23761370,5
+flowerbaobao,23761370,5
+ai-you,23761370,-1
+92567269,23761370,3
+3574648,23761370,4
+1313358,23761370,5
+31752065,23761370,5
+phoebehsu,23761370,4
+11255442,23761370,4
+14368512,23761370,4
+1813192,23761370,5
+61300212,23761370,4
+skiny_orange,23761370,4
+89852120,23761370,4
+48484446,23761370,5
+54071930,23761370,5
+47543330,23761370,-1
+lesliewong1987,23761370,5
+50139701,23761370,4
+xiluoduode,23761370,3
+52588154,23761370,5
+87327748,23761370,4
+75274306,23761370,4
+thinkinbug,23761370,5
+zerogin,23761370,5
+kvitova,23761370,5
+121545340,23761370,5
+tonyuanChen,23761370,4
+selavyzhou,23761370,5
+icepussy,23761370,5
+49885324,23761370,4
+65592286,23761370,2
+102621793,23761370,5
+xiatan,23761370,4
+55442886,23761370,4
+100934769,23761370,3
+3687966,23761370,4
+121724782,23761370,3
+48311981,23761370,4
+hotync,23761370,4
+BeanInk,23761370,4
+50041894,23761370,4
+2217145,23761370,4
+46851079,23761370,5
+wu__yin,23761370,4
+eye-side,23761370,3
+wannafat,23761370,4
+125794315,23761370,5
+97304737,23761370,4
+4347889,23761370,3
+merlinl,23761370,4
+65924681,23761370,5
+65924681,23761370,5
+35886249,23761370,3
+46240827,23761370,4
+56837215,23761370,3
+47790645,23761370,3
+siusum,23761370,5
+2183610,23761370,3
+dasangg,23761370,5
+wangdaxing,23761370,5
+68925599,23761370,5
+timeseeker,23761370,3
+4666209,23761370,5
+summer712,23761370,4
+59447231,23761370,5
+zhaoyonghui1026,23761370,4
+Joy_sa,23761370,5
+3318801,23761370,5
+56282257,23761370,3
+65487800,23761370,4
+57381947,23761370,5
+leachboy,23761370,5
+69028094,23761370,4
+42280741,23761370,5
+jane.zz,23761370,5
+64275365,23761370,5
+lylechen,23761370,5
+52150349,23761370,4
+cynthiacheng715,23761370,5
+lagrandeillusio,23761370,5
+3121837,23761370,3
+125793577,23761370,5
+50374697,23761370,4
+yuky0906,23761370,4
+76188022,23761370,-1
+125793498,23761370,5
+34622687,23761370,5
+crimsonmoon,23761370,4
+xrc,23761370,4
+4284000,23761370,4
+qdyoo,23761370,4
+komos,23761370,3
+83739647,23761370,4
+96241491,23761370,4
+shuixin7,23761370,3
+43618482,23761370,4
+flowers17520,23761370,5
+27318486,23761370,5
+kexiaoai,23761370,4
+125683927,23761370,5
+62744470,23761370,5
+yogurtshue,23761370,4
+67468845,23761370,5
+125793106,23761370,5
+125265543,23761370,5
+2645593,23761370,5
+125200694,23761370,3
+57719173,23761370,3
+125792884,23761370,5
+3095881,23761370,4
+foolmyself,23761370,2
+1246336,23761370,-1
+3040176,23761370,4
+50726036,23761370,5
+yvonne0909,23761370,3
+alanerer,23761370,3
+a_kira,23761370,1
+leaf615,23761370,5
+weiranchenglin,23761370,4
+1804932,23761370,5
+68540489,23761370,4
+64780259,23761370,4
+50485619,23761370,5
+jessie1989,23761370,4
+80985277,23761370,4
+84247002,23761370,4
+petitejoie,23761370,4
+MiracleLL,23761370,5
+63591559,23761370,4
+82889509,23761370,5
+4146586,23761370,3
+qq530898920,23761370,5
+43975366,23761370,5
+Jake52592,23761370,4
+104629005,23761370,3
+mia6,23761370,4
+sleety,23761370,4
+49983246,23761370,5
+lixiaoran118,23761370,5
+46069089,23761370,1
+72979074,23761370,3
+guaipilele,23761370,4
+89308667,23761370,5
+nalakahn,23761370,4
+zjl234,23761370,5
+70808527,23761370,5
+50875593,23761370,5
+viking7117,23761370,5
+Sabrina527,23761370,4
+Thing2,23761370,-1
+3209049,23761370,3
+yaya0305,23761370,3
+55984415,23761370,4
+1811122,23761370,4
+49138712,23761370,4
+rouble-w,23761370,5
+jennieyoung,23761370,4
+fbndragona,23761370,4
+jofanie,23761370,4
+charlotteeeeeee,23761370,5
+young-lazy,23761370,4
+mayairair,23761370,-1
+strikeman,23761370,4
+116960701,23761370,5
+50616281,23761370,4
+40797334,23761370,5
+74038285,23761370,4
+46430154,23761370,5
+49108524,23761370,5
+63227061,23761370,5
+karenlo,23761370,4
+waityoualex,23761370,4
+58796867,23761370,5
+69186356,23761370,5
+3481292,23761370,3
+4354937,23761370,3
+aijin1011,23761370,5
+58386745,23761370,4
+2921658,23761370,5
+linmi,23761370,4
+emmmmma,23761370,5
+34345848,23761370,2
+75789870,23761370,5
+29800208,23761370,3
+63436872,23761370,5
+u-sister,23761370,5
+wdlove05,23761370,-1
+yuxue,23761370,4
+2177082,23761370,5
+shaoqiongyu,23761370,4
+65025438,23761370,5
+94514917,23761370,4
+8448857,23761370,5
+pppPromise,23761370,5
+87768848,23761370,4
+bellaG,23761370,4
+47789884,23761370,5
+56832705,23761370,5
+53278966,23761370,5
+3514093,23761370,3
+wsyue,23761370,4
+rtg,23761370,5
+fanglei1688,23761370,4
+sssdjay,23761370,4
+50851512,23761370,5
+dreamer629,23761370,3
+kimmyaloha,23761370,5
+ESTUparaAMOR,23761370,5
+57135077,23761370,5
+3717841,23761370,5
+launcelotdulac,23761370,5
+karide,23761370,4
+4057770,23761370,5
+63047551,23761370,1
+ops-out,23761370,4
+48530731,23761370,5
+4606615,23761370,5
+2520869,23761370,3
+renxinn,23761370,5
+iamlizia,23761370,3
+68947670,23761370,4
+35199121,23761370,4
+bingoh2o,23761370,4
+chezmoi,23761370,-1
+62961595,23761370,3
+darcypo,23761370,5
+SKubrick,23761370,4
+cj3,23761370,4
+1212231,23761370,4
+43830524,23761370,5
+51620794,23761370,5
+52268964,23761370,4
+3641686,23761370,5
+4642761,23761370,3
+3794173,23761370,4
+chenjiaqi1008,23761370,5
+summer0607,23761370,4
+34546789,23761370,3
+50654629,23761370,5
+fanbucloud,23761370,3
+46095870,23761370,5
+4111279,23761370,5
+2076941,23761370,5
+38282253,23761370,4
+53168000,23761370,3
+40508755,23761370,3
+1856131,23761370,4
+cicilyting,23761370,4
+53536327,23761370,5
+48028421,23761370,3
+harrymoon,23761370,5
+34009269,23761370,5
+1739349,23761370,3
+42036980,23761370,5
+54209095,23761370,4
+holeelove,23761370,4
+60133071,23761370,5
+60517494,23761370,2
+49197459,23761370,3
+33275779,23761370,4
+46678211,23761370,5
+43390539,23761370,4
+myloveZYM,23761370,3
+85183443,23761370,4
+anowandforever,23761370,5
+lvheng,23761370,4
+4356952,23761370,3
+GrEy4ai,23761370,2
+xiaoand1,23761370,5
+3911666,23761370,4
+83213677,23761370,3
+61584024,23761370,5
+tt1122,23761370,4
+sun543,23761370,4
+116073490,23761370,4
+3330748,23761370,3
+39800168,23761370,-1
+59993091,23761370,3
+yamfesoul,23761370,5
+66741851,23761370,4
+untouchable,23761370,3
+80945094,23761370,4
+102650688,23761370,5
+83364806,23761370,-1
+69678619,23761370,5
+lhkfighting,23761370,3
+Renee_Lee,23761370,3
+uuuuGY,23761370,4
+3551672,23761370,3
+meatybeaty,23761370,4
+47197127,23761370,5
+47197127,23761370,5
+zhjiama,23761370,3
+55001545,23761370,4
+cios,23761370,5
+3555189,23761370,3
+panda_an,23761370,5
+102221538,23761370,3
+2794328,23761370,4
+50506429,23761370,5
+49471489,23761370,4
+3626912,23761370,4
+zhaoyin,23761370,4
+50413289,23761370,4
+vinnsy,23761370,4
+124653543,23761370,4
+maopingzi,23761370,4
+62604027,23761370,5
+linlang7625,23761370,3
+ShenTaMei,23761370,5
+yoicy,23761370,3
+1281739,23761370,4
+85239246,23761370,4
+79888548,23761370,5
+R_raven,23761370,2
+40098751,23761370,5
+26109044,23761370,5
+43709116,23761370,4
+62515963,23761370,3
+3706220,23761370,4
+11501508,23761370,4
+60127464,23761370,2
+SHENCHIFENG,23761370,4
+26018442,23761370,5
+tangchaozs,23761370,4
+2818730,23761370,5
+1702912,23761370,3
+pearltear,23761370,4
+53731567,23761370,5
+watever_lan,23761370,1
+120526999,23761370,4
+75271278,23761370,5
+losses,23761370,5
+22666709,23761370,4
+53268951,23761370,4
+54991804,23761370,5
+gfm,23761370,4
+2451603,23761370,5
+48037187,23761370,4
+jj-lee,23761370,4
+48441113,23761370,4
+xiao888,23761370,3
+napoleon321,23761370,4
+oooweirooo,23761370,4
+qqwhappy,23761370,4
+115532082,23761370,5
+zccshome,23761370,5
+50755752,23761370,4
+hanxiaonuan,23761370,3
+ducklucy,23761370,5
+mafeiyxq,23761370,4
+xihua1993,23761370,4
+lili9790,23761370,4
+56584053,23761370,4
+bonnie_june,23761370,-1
+ccino,23761370,4
+68509387,23761370,5
+JunKun,23761370,4
+purple_kenny,23761370,5
+64064680,23761370,5
+55624184,23761370,4
+43152603,23761370,4
+swuhl999,23761370,5
+37183583,23761370,5
+55310272,23761370,5
+41773334,23761370,5
+jiong4,23761370,4
+recko,23761370,5
+yutang,23761370,3
+36933698,23761370,5
+xyleaf,23761370,-1
+75940383,23761370,5
+25409666,23761370,5
+zhaoyingjia,23761370,5
+121722324,23761370,1
+Phoebe.Lee,23761370,4
+yulingshenyue,23761370,5
+joephie,23761370,-1
+Alan59,23761370,4
+Yo_Kama.,23761370,-1
+65032282,23761370,5
+rubikcj,23761370,5
+91655384,23761370,5
+caceywd,23761370,3
+59905029,23761370,5
+moxugang,23761370,4
+Lv65535,23761370,4
+59108154,23761370,5
+binforever,23761370,5
+63792010,23761370,4
+sunfiona_cheer,23761370,3
+loveian,23761370,5
+63798235,23761370,4
+119013202,23761370,5
+49341014,23761370,4
+QXT-Christine,23761370,5
+2201238,23761370,-1
+62196307,23761370,3
+48859035,23761370,5
+bjoneday,23761370,5
+50344552,23761370,4
+61204028,23761370,5
+58523081,23761370,4
+xiaowuhou,23761370,5
+daisyyatou,23761370,5
+42756036,23761370,5
+jodyguo82,23761370,3
+68403536,23761370,3
+4068734,23761370,4
+taozizun,23761370,5
+43067493,23761370,4
+70090327,23761370,5
+chitb,23761370,5
+51051725,23761370,3
+54942079,23761370,5
+echolihao,23761370,5
+cactus0113,23761370,5
+64375697,23761370,3
+38312647,23761370,4
+3871797,23761370,5
+yurenxiaobai,23761370,4
+cc19900504,23761370,4
+72083306,23761370,4
+forestwanglin,23761370,3
+ClassySpirit,23761370,4
+5836851,23761370,4
+xlzhu,23761370,4
+2272740,23761370,-1
+51594254,23761370,5
+neverwill,23761370,3
+doudouhu,23761370,4
+60805585,23761370,5
+90108397,23761370,5
+piggy007,23761370,3
+68505371,23761370,4
+2801550,23761370,4
+66886930,23761370,4
+58012559,23761370,3
+71233615,23761370,5
+3925598,23761370,5
+50590088,23761370,5
+didojessica,23761370,-1
+81767363,23761370,5
+xuzhuoya,23761370,3
+Rosesea,23761370,4
+reneew,23761370,5
+sarieltsai,23761370,4
+ciciaigigi,23761370,5
+49166988,23761370,3
+liuweimao,23761370,4
+2062948,23761370,-1
+phoebe_wo,23761370,4
+yukileung,23761370,4
+3355859,23761370,3
+92316291,23761370,3
+3319103,23761370,3
+fatia0,23761370,4
+xzx2011,23761370,5
+67297551,23761370,-1
+39498531,23761370,4
+70340227,23761370,3
+41140829,23761370,4
+68700589,23761370,3
+42006560,23761370,4
+46766109,23761370,4
+58630530,23761370,5
+48276926,23761370,5
+115786111,23761370,4
+43456514,23761370,4
+60181393,23761370,4
+4422622,23761370,5
+59358119,23761370,5
+snowhair,23761370,5
+48662310,23761370,3
+39877849,23761370,3
+49854579,23761370,3
+36740289,23761370,5
+nicfaye,23761370,5
+61654063,23761370,3
+50754636,23761370,4
+82338299,23761370,4
+chiqiangze,23761370,5
+67528548,23761370,3
+53617231,23761370,5
+90127295,23761370,5
+59886927,23761370,4
+freya1214,23761370,5
+63809388,23761370,5
+60928291,23761370,4
+79451845,23761370,4
+caseytss,23761370,5
+57365488,23761370,3
+72394582,23761370,5
+68691422,23761370,4
+69972569,23761370,5
+littlemansay,23761370,5
+2349906,23761370,3
+56548401,23761370,5
+79161906,23761370,5
+34908296,23761370,5
+shen3yang,23761370,3
+37318606,23761370,5
+84527502,23761370,5
+122335329,23761370,4
+125773849,23761370,4
+48179378,23761370,5
+lusuiyun,23761370,3
+njtintin,23761370,5
+63381376,23761370,5
+Guojieoo,23761370,5
+duckdan,23761370,4
+albee0613,23761370,4
+65722669,23761370,4
+elle.sc,23761370,3
+miyo5,23761370,5
+78724440,23761370,3
+swarovskii,23761370,4
+rocketeer98,23761370,5
+57319481,23761370,4
+3607173,23761370,5
+57245442,23761370,2
+75621811,23761370,5
+56582926,23761370,4
+60767824,23761370,5
+94009647,23761370,3
+t33th,23761370,5
+khuntoria,23761370,5
+sthtodo,23761370,2
+61449510,23761370,5
+jxyyy,23761370,5
+zhujiao,23761370,5
+Zsaraj,23761370,3
+49095343,23761370,4
+30022643,23761370,5
+3901284,23761370,2
+79349907,23761370,5
+xuliking,23761370,3
+tinyweiba,23761370,3
+79831664,23761370,4
+44324751,23761370,5
+50391571,23761370,5
+65937993,23761370,-1
+51990836,23761370,5
+sosofly,23761370,4
+53252879,23761370,3
+47246915,23761370,3
+64544380,23761370,4
+36539869,23761370,4
+60662764,23761370,4
+4905173,23761370,4
+fantuanzi,23761370,5
+paradise_bear,23761370,5
+58766579,23761370,5
+nihac,23761370,3
+30378348,23761370,4
+Double530,23761370,4
+3212702,23761370,5
+4684950,23761370,3
+47445354,23761370,-1
+absinthejt,23761370,4
+eugne,23761370,4
+61254076,23761370,4
+74805050,23761370,4
+38632566,23761370,3
+lidusa,23761370,3
+59862121,23761370,3
+suqieyao,23761370,4
+ingie,23761370,4
+48313221,23761370,5
+2626566,23761370,3
+zqsnail121,23761370,5
+51217056,23761370,5
+61627108,23761370,1
+Sou819,23761370,4
+62535133,23761370,4
+hakana,23761370,5
+4337658,23761370,4
+51975065,23761370,4
+nebex,23761370,4
+alunnihao,23761370,5
+n626,23761370,4
+66035182,23761370,4
+vianne0214,23761370,5
+wangxiaonan,23761370,5
+87473298,23761370,5
+48236201,23761370,4
+MLLEfanfan,23761370,5
+41196789,23761370,5
+wishtarot,23761370,4
+lcmomo,23761370,4
+40778802,23761370,3
+maitianwuya,23761370,4
+lhyendless,23761370,4
+marguerite0212,23761370,2
+54786076,23761370,5
+125777850,23761370,5
+76846124,23761370,5
+ulayh0607,23761370,3
+37190150,23761370,5
+pumba92simba,23761370,5
+butzi,23761370,4
+48545858,23761370,5
+eyrehuang,23761370,5
+ring_ring,23761370,5
+48975477,23761370,4
+58313279,23761370,5
+shyya,23761370,5
+paulajane,23761370,3
+45881847,23761370,4
+iamlidot,23761370,5
+38595603,23761370,4
+42670122,23761370,4
+48659082,23761370,-1
+76270911,23761370,5
+54810722,23761370,3
+46907907,23761370,4
+54807886,23761370,4
+76418586,23761370,4
+53800868,23761370,3
+57926114,23761370,5
+56866323,23761370,4
+distinguished,23761370,5
+119295165,23761370,5
+53087451,23761370,3
+4295874,23761370,4
+102167381,23761370,5
+aiSn,23761370,4
+loveyouwuwang,23761370,3
+46030353,23761370,4
+49130506,23761370,5
+ashin49,23761370,4
+double_wen,23761370,3
+42964686,23761370,4
+twelveoak,23761370,-1
+58829197,23761370,5
+89269194,23761370,5
+1125905,23761370,5
+1386369,23761370,3
+49751665,23761370,5
+57303793,23761370,5
+78458256,23761370,3
+cuican,23761370,4
+62486948,23761370,5
+zoecaffrey,23761370,3
+indyiyi,23761370,4
+yuchilingkong,23761370,4
+62534657,23761370,5
+52950213,23761370,4
+50510383,23761370,5
+72016063,23761370,5
+68293344,23761370,4
+73341232,23761370,5
+70356127,23761370,5
+Jonathanhu,23761370,3
+knightvine,23761370,5
+50626773,23761370,3
+4341731,23761370,3
+zhouaihaha,23761370,2
+silentruifenfei,23761370,3
+keith_z,23761370,5
+72944780,23761370,5
+2154396,23761370,4
+60255233,23761370,4
+kellyleaf123,23761370,5
+43080559,23761370,3
+cacasoong,23761370,5
+rainysue,23761370,5
+umaymaymay,23761370,4
+chongtianying,23761370,5
+watanabecoffee,23761370,2
+xuweigrace,23761370,5
+106310454,23761370,4
+75429324,23761370,3
+zshaney,23761370,4
+114356515,23761370,5
+65338858,23761370,5
+arm326,23761370,4
+79967579,23761370,5
+bochan,23761370,4
+72147052,23761370,5
+chaliy,23761370,5
+62666104,23761370,2
+cuion,23761370,3
+4339556,23761370,4
+52792351,23761370,5
+54150368,23761370,4
+55944007,23761370,-1
+49267852,23761370,4
+37424688,23761370,4
+4910774,23761370,4
+3860913,23761370,4
+3892198,23761370,4
+58186855,23761370,4
+84217185,23761370,4
+jxzq007,23761370,4
+63572086,23761370,5
+woshuoshuoshuo,23761370,5
+eichaif,23761370,-1
+qingmuwu,23761370,4
+95017002,23761370,5
+supersheep,23761370,3
+119795456,23761370,5
+33472484,23761370,5
+67177395,23761370,4
+52804172,23761370,5
+52120409,23761370,5
+4622548,23761370,3
+dandankittybaby,23761370,4
+recall-,23761370,4
+jideknight,23761370,5
+52374086,23761370,4
+42650469,23761370,5
+68941642,23761370,4
+35367949,23761370,4
+53434263,23761370,4
+34956783,23761370,4
+80055631,23761370,2
+31174939,23761370,3
+tintintsang,23761370,4
+69016189,23761370,5
+125760534,23761370,5
+65765391,23761370,4
+71350146,23761370,5
+22043363,23761370,3
+44184384,23761370,3
+72097640,23761370,4
+62313789,23761370,5
+qiujie,23761370,5
+119488264,23761370,4
+52446109,23761370,4
+h514367193,23761370,4
+teena1002,23761370,3
+73340427,23761370,5
+76117897,23761370,4
+74573393,23761370,5
+oshimabaqiko,23761370,3
+102967407,23761370,4
+47494111,23761370,5
+64876484,23761370,5
+puhonglei,23761370,4
+joaquina,23761370,4
+64426025,23761370,5
+53242545,23761370,5
+39483862,23761370,5
+78160726,23761370,4
+51087287,23761370,4
+1807990,23761370,5
+khuntracie,23761370,4
+rea_bl,23761370,5
+69316482,23761370,5
+74168799,23761370,4
+siriusvicky,23761370,4
+zhwjz,23761370,5
+47548599,23761370,2
+65123381,23761370,4
+lovinest,23761370,5
+pheebsgo,23761370,4
+xiuxiutiancai,23761370,5
+notoo,23761370,2
+CNToria617,23761370,4
+mulittlerice,23761370,-1
+CherryP,23761370,4
+110328259,23761370,3
+39991885,23761370,3
+101618998,23761370,3
+shrimpland,23761370,5
+3740136,23761370,5
+no_chilly,23761370,5
+54781345,23761370,3
+21938998,23761370,3
+50486951,23761370,5
+54562055,23761370,4
+hanyoyo2000,23761370,4
+122844148,23761370,3
+64083865,23761370,3
+Mr-Doraemon,23761370,4
+4105483,23761370,4
+zisic,23761370,5
+44918804,23761370,3
+zzzxy,23761370,4
+40466526,23761370,4
+yvone1220,23761370,3
+jianjianer,23761370,4
+56597679,23761370,5
+46943216,23761370,4
+54576546,23761370,3
+48136740,23761370,4
+120803939,23761370,2
+49492805,23761370,5
+69008426,23761370,5
+28853372,23761370,4
+86138741,23761370,4
+70432798,23761370,5
+elionier,23761370,3
+52581402,23761370,5
+lovefeather,23761370,4
+63346835,23761370,4
+bxg555,23761370,-1
+59781288,23761370,4
+este,23761370,4
+Real-One,23761370,4
+55646582,23761370,3
+misspomelo21,23761370,5
+45849213,23761370,5
+9756246,23761370,4
+parachutony,23761370,4
+63939883,23761370,4
+50502799,23761370,5
+hufey,23761370,3
+63127179,23761370,4
+34948243,23761370,5
+52591024,23761370,1
+57919652,23761370,5
+65723913,23761370,4
+83327008,23761370,5
+3395328,23761370,4
+46634841,23761370,5
+tintingo,23761370,5
+2855026,23761370,5
+34940391,23761370,5
+roxanneshiong,23761370,5
+63969344,23761370,5
+39987739,23761370,4
+anqq7776,23761370,4
+47285302,23761370,-1
+vivi.sunny,23761370,5
+48168032,23761370,5
+ls0060,23761370,3
+lollypain,23761370,3
+39208807,23761370,3
+87623248,23761370,5
+62874787,23761370,3
+vanlan,23761370,5
+52379801,23761370,5
+look,23761370,3
+Gerrard_8,23761370,4
+57286406,23761370,4
+samuelyoung,23761370,4
+63746785,23761370,5
+cuikunjia,23761370,3
+14428600,23761370,5
+nianlu,23761370,4
+happythename,23761370,4
+42835046,23761370,4
+byandong,23761370,5
+98728218,23761370,3
+xxxcici123,23761370,-1
+49948378,23761370,4
+113426887,23761370,5
+70138570,23761370,3
+32019059,23761370,5
+irisblues,23761370,4
+53554657,23761370,5
+Ecoy,23761370,4
+7402565,23761370,5
+23730457,23761370,5
+2214938,23761370,4
+29849443,23761370,5
+4523014,23761370,5
+willow880608,23761370,4
+svtg,23761370,3
+yangruozheng,23761370,5
+2439961,23761370,3
+57120276,23761370,5
+53919558,23761370,4
+2030641,23761370,5
+39612355,23761370,5
+coolbla,23761370,5
+makachina,23761370,5
+40452255,23761370,4
+61535646,23761370,3
+42113590,23761370,4
+ST.john,23761370,4
+benita0124,23761370,3
+2211361,23761370,4
+janezly,23761370,4
+73570868,23761370,4
+MissBinary,23761370,4
+64069487,23761370,4
+97735931,23761370,5
+67958148,23761370,3
+76458811,23761370,3
+morphues,23761370,5
+Pius,23761370,3
+queensmary,23761370,4
+76206641,23761370,5
+58552673,23761370,5
+MINAFISH,23761370,5
+32779785,23761370,5
+88095866,23761370,5
+65870450,23761370,4
+tinywitch,23761370,5
+60877433,23761370,4
+43019559,23761370,5
+98762105,23761370,5
+52190883,23761370,5
+nivakyo,23761370,5
+58836160,23761370,4
+cronyzk,23761370,5
+3953351,23761370,5
+49628023,23761370,5
+25216946,23761370,3
+guangdao,23761370,4
+55584086,23761370,5
+82910448,23761370,5
+shaynexue,23761370,3
+54060298,23761370,4
+PaperBear,23761370,4
+56160592,23761370,4
+56526640,23761370,4
+78352623,23761370,4
+tristanfree,23761370,5
+1058376,23761370,5
+101469765,23761370,4
+nananene,23761370,5
+81484263,23761370,3
+superbin1014,23761370,3
+34854134,23761370,5
+53176363,23761370,4
+60616260,23761370,4
+1368298,23761370,5
+killeren,23761370,4
+68270832,23761370,4
+crystalDave,23761370,5
+21826853,23761370,5
+traylor,23761370,4
+54853345,23761370,3
+61525287,23761370,3
+55606165,23761370,3
+adaxiang1205,23761370,3
+57741033,23761370,2
+56877121,23761370,4
+lightreus,23761370,3
+Mary-jasmine,23761370,5
+56769973,23761370,4
+65259604,23761370,4
+gouuncle,23761370,4
+1207173,23761370,4
+115772568,23761370,4
+lvxing926,23761370,5
+67043084,23761370,5
+62703414,23761370,3
+48440999,23761370,3
+36988039,23761370,-1
+marurui,23761370,5
+51156826,23761370,3
+1732445,23761370,4
+61569380,23761370,4
+90763703,23761370,1
+kikifacy,23761370,1
+41047138,23761370,5
+42748477,23761370,-1
+59391832,23761370,4
+fionafaye,23761370,4
+dlup,23761370,4
+83980387,23761370,5
+xd880820,23761370,3
+wxt2005,23761370,5
+91504508,23761370,4
+2544330,23761370,5
+57383677,23761370,5
+66953582,23761370,3
+3326363,23761370,4
+alexia0609,23761370,3
+ixuxu,23761370,4
+104104789,23761370,5
+90785580,23761370,4
+goofy-G,23761370,5
+weiwei_ya,23761370,-1
+zkn911,23761370,5
+4491930,23761370,4
+29220326,23761370,3
+83925397,23761370,4
+58262422,23761370,4
+65684805,23761370,5
+zyaihg0209,23761370,3
+52477984,23761370,4
+48279669,23761370,5
+48756490,23761370,5
+SmilingJune,23761370,3
+nonob,23761370,-1
+27254965,23761370,4
+AustinTsang,23761370,4
+89843845,23761370,5
+2304557,23761370,5
+3878634,23761370,5
+34136413,23761370,4
+4156087,23761370,5
+1743235,23761370,3
+7605327,23761370,3
+OOXXWJW,23761370,3
+2671857,23761370,3
+52354074,23761370,5
+Catforest33,23761370,5
+csc,23761370,3
+4658851,23761370,5
+103214078,23761370,4
+mittermeier,23761370,3
+SylviaVi,23761370,4
+zhouweilin,23761370,4
+63657398,23761370,4
+3575164,23761370,4
+thycoder,23761370,4
+31669291,23761370,5
+Yanlq,23761370,5
+64901268,23761370,3
+52576339,23761370,5
+60622003,23761370,5
+66140949,23761370,4
+56441353,23761370,-1
+91118015,23761370,5
+veat,23761370,3
+yzfayxj,23761370,4
+69867431,23761370,3
+missyuping,23761370,4
+kiyosun,23761370,4
+74853954,23761370,4
+7984190,23761370,3
+29827748,23761370,4
+aifax,23761370,4
+siinx,23761370,3
+68339254,23761370,4
+iooiooi,23761370,5
+48355482,23761370,4
+yu823904227,23761370,3
+68003634,23761370,4
+44962758,23761370,5
+bulijite,23761370,3
+yuyucara,23761370,5
+K-Child,23761370,3
+56143225,23761370,3
+53901222,23761370,5
+wyjlwyy,23761370,4
+67454532,23761370,5
+emilywang,23761370,5
+38486443,23761370,4
+43130456,23761370,5
+bluecoffin,23761370,4
+2940018,23761370,4
+71865681,23761370,-1
+2544280,23761370,5
+59047724,23761370,5
+47985063,23761370,3
+103620662,23761370,5
+121341279,23761370,5
+v99Alice,23761370,5
+54597957,23761370,5
+57113724,23761370,5
+70800493,23761370,5
+41482299,23761370,5
+windcqy,23761370,5
+59958389,23761370,5
+somegg,23761370,4
+70302420,23761370,5
+101930897,23761370,5
+25296296,23761370,-1
+1373968,23761370,5
+fcleung,23761370,4
+27783640,23761370,3
+48566494,23761370,4
+53675537,23761370,5
+49892872,23761370,3
+bearkitty,23761370,4
+65936157,23761370,4
+45888490,23761370,5
+juisiyi,23761370,5
+cenwenyuan,23761370,3
+xjrwjh,23761370,5
+x1Ao_y,23761370,5
+BigLo,23761370,4
+50146746,23761370,5
+62377440,23761370,4
+46151363,23761370,1
+43297511,23761370,4
+alexliuxirong,23761370,5
+47468751,23761370,4
+49080990,23761370,4
+63825498,23761370,4
+natalielxm,23761370,5
+fianglee,23761370,5
+Jiayan726,23761370,5
+darling425,23761370,5
+124376475,23761370,5
+walkingfish723,23761370,5
+79470678,23761370,5
+liujinyu,23761370,4
+125751709,23761370,4
+48442172,23761370,3
+37899965,23761370,-1
+63462182,23761370,3
+Paninivds,23761370,5
+53566279,23761370,5
+52484761,23761370,4
+fairyyue424,23761370,3
+betterylife,23761370,3
+McAPhenix,23761370,4
+crazyfamily,23761370,4
+angeline313,23761370,4
+39485908,23761370,4
+76536277,23761370,-1
+stanley1459,23761370,5
+YanPeiPan,23761370,3
+51051454,23761370,4
+53116355,23761370,5
+xuhui880321gege,23761370,4
+QINGFENGDIEWU,23761370,5
+49912691,23761370,3
+47792363,23761370,5
+tracyxing,23761370,4
+whuzhangli,23761370,4
+ruanruanjessica,23761370,5
+26464561,23761370,5
+62872014,23761370,5
+53068258,23761370,3
+47373898,23761370,5
+shiJayyongheng,23761370,3
+26360274,23761370,4
+3611990,23761370,5
+ZEON009,23761370,4
+71389371,23761370,5
+2049714,23761370,4
+Stephanie.Zhan,23761370,2
+49181289,23761370,5
+yikouerren,23761370,4
+sunflowermay,23761370,-1
+116034780,23761370,5
+yaocoder,23761370,5
+5550651,23761370,5
+79534422,23761370,5
+50733014,23761370,5
+121593909,23761370,4
+55295193,23761370,5
+46512598,23761370,5
+jouke,23761370,3
+53229667,23761370,4
+69402571,23761370,2
+gtofudan,23761370,3
+53487447,23761370,4
+68828389,23761370,4
+55365789,23761370,5
+83716034,23761370,3
+yanyang210,23761370,4
+liuguilin,23761370,4
+ZeRo.0821,23761370,5
+1792819,23761370,5
+dadafanhe,23761370,4
+43076738,23761370,5
+lina_fu,23761370,5
+3299770,23761370,3
+48171385,23761370,5
+zbbsbjs,23761370,5
+55941240,23761370,5
+49808652,23761370,3
+60835378,23761370,4
+52001200,23761370,5
+59049197,23761370,4
+48815744,23761370,4
+eyefy,23761370,2
+102228697,23761370,5
+68679029,23761370,4
+61606205,23761370,4
+saky,23761370,3
+64392106,23761370,5
+81244462,23761370,5
+14480826,23761370,4
+3450620,23761370,3
+fengzaifei,23761370,3
+butterflypiao,23761370,4
+82834599,23761370,4
+39525517,23761370,4
+LKK8,23761370,4
+jfbobo,23761370,5
+45094700,23761370,5
+Yoyo_Yvette,23761370,3
+ajen,23761370,5
+91548416,23761370,5
+howhappy,23761370,3
+roseauthor,23761370,4
+71123769,23761370,5
+49931222,23761370,4
+31466007,23761370,4
+madman-daily,23761370,3
+allforpeace,23761370,-1
+isabella_shi,23761370,5
+51040807,23761370,4
+Inkfearless,23761370,5
+80056002,23761370,5
+oosunshine,23761370,5
+plawyer,23761370,4
+49261275,23761370,5
+home427,23761370,5
+3678908,23761370,3
+102477875,23761370,5
+75968056,23761370,5
+songtongxue,23761370,5
+atong1013,23761370,5
+chendian,23761370,5
+77213278,23761370,5
+snowhawkyrf,23761370,5
+37676493,23761370,4
+57930397,23761370,5
+44201606,23761370,4
+46631161,23761370,5
+50339584,23761370,4
+86161182,23761370,4
+50879673,23761370,5
+53326407,23761370,3
+monkey_doudou,23761370,5
+68223827,23761370,3
+4051137,23761370,5
+113761818,23761370,4
+29107256,23761370,3
+KayGuoWhu,23761370,5
+75034696,23761370,4
+kissingfeng,23761370,5
+41847091,23761370,5
+65576717,23761370,5
+51411876,23761370,3
+58068354,23761370,5
+45066931,23761370,5
+imPluto,23761370,4
+vera_went,23761370,4
+hisenwang,23761370,5
+ajane,23761370,5
+daijun1988,23761370,4
+81712287,23761370,5
+1163406,23761370,4
+thinkslin,23761370,3
+54235182,23761370,4
+91631692,23761370,4
+3767693,23761370,4
+69202875,23761370,2
+44753087,23761370,5
+ivy_lmj,23761370,3
+hisass,23761370,3
+63941273,23761370,4
+inlong,23761370,4
+34158604,23761370,5
+64454222,23761370,3
+93985741,23761370,3
+freedom_zz,23761370,5
+xiaolanshiguang,23761370,4
+chih,23761370,-1
+89944772,23761370,4
+124668726,23761370,5
+94844780,23761370,4
+shelleywh,23761370,5
+44689263,23761370,5
+78851166,23761370,5
+61468605,23761370,5
+49813079,23761370,5
+prepoet,23761370,4
+61524202,23761370,5
+105736560,23761370,2
+68122835,23761370,3
+46390941,23761370,4
+69161049,23761370,4
+49297995,23761370,5
+75179640,23761370,4
+Avila_Yin,23761370,3
+cloudy47,23761370,4
+67681966,23761370,3
+68099155,23761370,3
+iamccyao,23761370,5
+37621515,23761370,4
+124392101,23761370,3
+64024990,23761370,5
+Kendra0203,23761370,5
+74257902,23761370,4
+3053971,23761370,5
+lgn,23761370,5
+huaiqian7777,23761370,4
+cosmo24,23761370,5
+hiddenmonkey,23761370,5
+81792428,23761370,3
+snowbaby217,23761370,5
+2880188,23761370,4
+55849798,23761370,5
+czsimin512,23761370,5
+46935032,23761370,5
+buhua,23761370,4
+19608345,23761370,3
+75076684,23761370,2
+papayoung,23761370,5
+1519857,23761370,5
+50519870,23761370,5
+2240680,23761370,4
+carelessimida,23761370,3
+greenlifehi,23761370,4
+79148425,23761370,4
+42096411,23761370,5
+72064313,23761370,3
+68404885,23761370,5
+2038447,23761370,5
+nashxk,23761370,5
+44628811,23761370,5
+1538371,23761370,5
+51297796,23761370,5
+69272743,23761370,5
+jiangkui,23761370,5
+46203203,23761370,5
+68078518,23761370,5
+tacshif,23761370,5
+3639221,23761370,4
+70002478,23761370,5
+4067779,23761370,3
+80665810,23761370,5
+53848520,23761370,3
+65908898,23761370,5
+52352034,23761370,5
+39328555,23761370,4
+47746018,23761370,3
+68437634,23761370,5
+45436450,23761370,5
+3506807,23761370,5
+pinkmouse,23761370,4
+LHone,23761370,3
+35095860,23761370,5
+xybdd,23761370,5
+linyundora,23761370,5
+50111492,23761370,4
+48266493,23761370,5
+Tomorrow24,23761370,4
+121347785,23761370,4
+61039441,23761370,5
+52959454,23761370,4
+76649445,23761370,4
+42150537,23761370,5
+85143816,23761370,5
+sweetloli,23761370,5
+60882915,23761370,4
+overlook,23761370,4
+57164709,23761370,5
+35108936,23761370,3
+empty_icer,23761370,4
+65895302,23761370,3
+62160680,23761370,4
+39996420,23761370,5
+79887691,23761370,4
+94671887,23761370,3
+timorrowmain,23761370,3
+qiaowu2,23761370,5
+45485577,23761370,4
+ningxizhu,23761370,5
+2450408,23761370,4
+83244269,23761370,5
+zyzloveair,23761370,4
+63091896,23761370,3
+yuzhaobin,23761370,5
+89734111,23761370,3
+xcloudcloud,23761370,3
+nashlew,23761370,5
+61776963,23761370,5
+ivanzhu,23761370,5
+mishi,23761370,4
+kergee,23761370,4
+10345879,23761370,4
+84796922,23761370,5
+nigelzeng,23761370,4
+65364463,23761370,4
+53578823,23761370,3
+61011795,23761370,5
+57816467,23761370,5
+54639887,23761370,3
+Xpirits,23761370,4
+1038052,23761370,2
+zzzwing,23761370,5
+brokenL,23761370,3
+chihiroly,23761370,4
+58957111,23761370,5
+20032518,23761370,4
+20032518,23761370,4
+54506812,23761370,3
+sklssj,23761370,5
+50966554,23761370,5
+floraalma,23761370,5
+blackhead,23761370,4
+63647766,23761370,5
+ohchara,23761370,4
+80727161,23761370,5
+38633075,23761370,5
+3528696,23761370,5
+hoboland,23761370,3
+92244024,23761370,3
+65912201,23761370,5
+goingannieway,23761370,4
+Oliviaj-Xu,23761370,-1
+babylucky,23761370,4
+25542117,23761370,5
+43376668,23761370,4
+46375333,23761370,4
+49443789,23761370,3
+88328116,23761370,3
+PERFECT_BLUE,23761370,5
+92267089,23761370,4
+summerest,23761370,-1
+42998893,23761370,5
+27339155,23761370,5
+82245250,23761370,4
+67905172,23761370,5
+10128811,23761370,4
+boatsummer,23761370,5
+2845886,23761370,3
+fameloo,23761370,4
+120556600,23761370,5
+kumita,23761370,3
+zhuangjiahan,23761370,5
+Isabella_baby,23761370,5
+Cey-Dun,23761370,4
+wangxue1630,23761370,5
+41158884,23761370,5
+59164813,23761370,5
+36345715,23761370,4
+xuguanyu1381,23761370,5
+xiankanhualuo,23761370,5
+10135672,23761370,5
+107437673,23761370,3
+68390243,23761370,4
+illllls,23761370,3
+Little__Annie,23761370,5
+2906141,23761370,4
+58051571,23761370,5
+watson,23761370,4
+nothingfish,23761370,5
+zhuhaizidaifan,23761370,4
+missinggeek,23761370,1
+wang-fei,23761370,5
+51227412,23761370,5
+69273127,23761370,5
+rockduan1987,23761370,5
+116089509,23761370,5
+momokitty,23761370,5
+39299362,23761370,4
+66636570,23761370,5
+125728484,23761370,4
+64547560,23761370,5
+dreamchris,23761370,3
+36695909,23761370,4
+49217613,23761370,5
+crowneak,23761370,3
+3676493,23761370,5
+48309763,23761370,5
+Decadeff,23761370,5
+sophie.sue,23761370,4
+shadow-1988,23761370,5
+49503755,23761370,4
+lucifer-.,23761370,4
+Ly1n9,23761370,-1
+43966741,23761370,5
+2714554,23761370,4
+luxixi99,23761370,4
+4804994,23761370,4
+57104894,23761370,4
+62050521,23761370,5
+marshroom,23761370,2
+shanggu,23761370,5
+52951268,23761370,5
+wangveggieg,23761370,5
+noncampgen,23761370,5
+puccaandhippo,23761370,5
+50090962,23761370,5
+67525467,23761370,5
+60835831,23761370,4
+yanran227,23761370,3
+63877055,23761370,4
+reader_racer,23761370,3
+54286864,23761370,2
+vivien225,23761370,4
+89529154,23761370,2
+bulin,23761370,1
+94004207,23761370,5
+49463635,23761370,5
+misteror,23761370,4
+14800434,23761370,5
+baosiwei,23761370,-1
+100396653,23761370,5
+8603145,23761370,3
+bluescup,23761370,3
+huayeah,23761370,5
+11307778,23761370,4
+2179845,23761370,4
+58340906,23761370,4
+63926382,23761370,-1
+45556093,23761370,4
+2130456,23761370,2
+kawawa,23761370,4
+stephanie225,23761370,5
+56018610,23761370,5
+ovivio,23761370,4
+Eazyc,23761370,-1
+1666477,23761370,5
+63202867,23761370,1
+66860143,23761370,4
+68865519,23761370,3
+59290535,23761370,5
+asacat7insummer,23761370,5
+55822264,23761370,4
+33143149,23761370,4
+1954477,23761370,5
+8586170,23761370,5
+52816310,23761370,3
+76239452,23761370,5
+2884359,23761370,5
+56035155,23761370,4
+74518373,23761370,5
+51910958,23761370,3
+kiyono9,23761370,4
+73787373,23761370,-1
+104512986,23761370,2
+2660422,23761370,5
+28026008,23761370,5
+77427319,23761370,4
+46097575,23761370,5
+vialc,23761370,4
+isabellaxiao,23761370,3
+49905882,23761370,5
+ouituki,23761370,5
+90855870,23761370,5
+xiyoudou,23761370,4
+diqiuchaoren,23761370,3
+2973220,23761370,4
+48326617,23761370,5
+SpanishAnt,23761370,4
+zuoxinchi,23761370,5
+84100874,23761370,3
+43073010,23761370,4
+46799195,23761370,4
+lixiaoshall,23761370,4
+50437623,23761370,4
+myboo,23761370,4
+unusualli,23761370,5
+dreamingSUN,23761370,-1
+92697402,23761370,3
+61423711,23761370,3
+62781897,23761370,4
+poky_yu,23761370,4
+53612354,23761370,4
+62501092,23761370,3
+59465835,23761370,5
+61935443,23761370,5
+zabazaba,23761370,5
+121767165,23761370,5
+HanaSakuragi,23761370,3
+blessingziyi,23761370,5
+59249650,23761370,4
+3051416,23761370,-1
+vivilida,23761370,5
+62257211,23761370,4
+4274989,23761370,4
+johnnybai,23761370,4
+61033806,23761370,5
+39056323,23761370,4
+47265467,23761370,5
+kristyzcq,23761370,5
+1785087,23761370,4
+72233881,23761370,5
+tony5th,23761370,4
+Azzz,23761370,4
+57965497,23761370,5
+3305668,23761370,2
+gb333,23761370,3
+ariesunoo,23761370,4
+Autumn0511,23761370,-1
+lan.chan,23761370,4
+yaorr,23761370,4
+49173279,23761370,4
+46920683,23761370,5
+biexianju,23761370,4
+111981766,23761370,5
+huangsiluofu,23761370,3
+store88,23761370,5
+85045315,23761370,5
+52862060,23761370,5
+91031871,23761370,5
+80784718,23761370,5
+46102917,23761370,2
+64326764,23761370,4
+52781294,23761370,4
+unabian,23761370,3
+75426992,23761370,5
+56978379,23761370,3
+48496387,23761370,5
+53154595,23761370,4
+70914686,23761370,4
+39089723,23761370,4
+oathkeeper,23761370,3
+xinxinya,23761370,4
+42993511,23761370,5
+82019070,23761370,4
+l592864429,23761370,4
+33382523,23761370,4
+66960634,23761370,5
+113286235,23761370,5
+73692914,23761370,5
+49154372,23761370,3
+30569827,23761370,5
+28704107,23761370,3
+gyivv,23761370,4
+45397702,23761370,5
+1949380,23761370,3
+LeslieAries,23761370,3
+55904741,23761370,3
+lion,23761370,3
+41687639,23761370,5
+52104521,23761370,5
+66266813,23761370,5
+2118507,23761370,4
+anmour,23761370,5
+48396383,23761370,4
+liyuanhui,23761370,3
+nearlloveyou,23761370,4
+52721473,23761370,5
+3222803,23761370,4
+52113990,23761370,4
+55746390,23761370,4
+SimpleLive,23761370,4
+51531476,23761370,5
+43260783,23761370,4
+64797497,23761370,5
+sx18,23761370,4
+luv_ljpp,23761370,5
+supermarie,23761370,5
+selinna730,23761370,4
+64949305,23761370,4
+4257741,23761370,4
+simple545,23761370,5
+66691775,23761370,5
+48229136,23761370,4
+105901752,23761370,4
+37742525,23761370,5
+103969062,23761370,5
+ruoyisisi,23761370,5
+48964348,23761370,4
+44549735,23761370,5
+Eleanor_Mc,23761370,4
+1312162,23761370,5
+castaneousair,23761370,3
+vanilla1991,23761370,3
+57288678,23761370,5
+longyin777,23761370,4
+49417223,23761370,-1
+lovefilms,23761370,4
+christinahua,23761370,5
+AMOHanMeimei,23761370,5
+71522943,23761370,5
+60674505,23761370,5
+2701375,23761370,3
+xiao__F,23761370,4
+67561364,23761370,5
+47736105,23761370,5
+chrisyan,23761370,5
+chrisyan,23761370,5
+41868148,23761370,4
+102059557,23761370,1
+51739908,23761370,3
+2744950,23761370,4
+1587535,23761370,5
+HugoBaker,23761370,3
+obleacho,23761370,2
+23778638,23761370,4
+seseserena,23761370,5
+48221799,23761370,5
+1081478,23761370,3
+55953722,23761370,3
+lbetty,23761370,5
+81249317,23761370,4
+sukey91,23761370,5
+xiaochanzi,23761370,4
+rren,23761370,4
+evan.liew,23761370,2
+yayamaoer,23761370,5
+zhouyihan,23761370,4
+zmhlys,23761370,5
+2196034,23761370,4
+andreamomozby,23761370,4
+klakt,23761370,4
+suyue3,23761370,5
+34894428,23761370,5
+54915033,23761370,3
+50194417,23761370,4
+45786010,23761370,2
+51412054,23761370,4
+50545818,23761370,4
+57057682,23761370,4
+YvonneYoung,23761370,3
+Aldrberan,23761370,4
+hye-c,23761370,4
+63027817,23761370,3
+sunwiner,23761370,5
+51915169,23761370,3
+handsome23,23761370,4
+68657829,23761370,5
+42208767,23761370,5
+rachelpp,23761370,4
+62509398,23761370,5
+51420650,23761370,5
+beaux,23761370,5
+81746832,23761370,4
+61576058,23761370,5
+45860753,23761370,5
+faceChrist,23761370,5
+57348962,23761370,4
+dxy2010,23761370,4
+78893576,23761370,5
+Uroboros,23761370,4
+2030403,23761370,4
+2239773,23761370,3
+30016549,23761370,5
+57812990,23761370,5
+sanzanglx,23761370,5
+39696481,23761370,4
+81864809,23761370,4
+51042338,23761370,4
+4123191,23761370,5
+zj29,23761370,4
+CDplayer,23761370,5
+57640790,23761370,5
+58918860,23761370,5
+qileyi761,23761370,3
+60981159,23761370,3
+125581729,23761370,4
+kayslv,23761370,4
+65990743,23761370,4
+mengwei0205,23761370,3
+119406391,23761370,3
+44338275,23761370,4
+71062374,23761370,5
+57906520,23761370,5
+yesterday0812,23761370,4
+ginnatsu,23761370,4
+48711534,23761370,4
+43127897,23761370,5
+56923561,23761370,4
+41452836,23761370,3
+gs21cn,23761370,4
+4238363,23761370,5
+97331424,23761370,1
+hiong,23761370,4
+losiuhong,23761370,3
+34411968,23761370,5
+73189680,23761370,4
+102564438,23761370,4
+campbellii,23761370,4
+42680639,23761370,4
+71133496,23761370,3
+2481956,23761370,5
+52211909,23761370,5
+50797855,23761370,4
+2870381,23761370,4
+essies,23761370,-1
+beby,23761370,4
+beby,23761370,4
+78520689,23761370,3
+106134371,23761370,4
+Monnnnn,23761370,5
+29620245,23761370,4
+weilianglalala,23761370,3
+94162680,23761370,4
+61226866,23761370,5
+74771985,23761370,4
+73109328,23761370,5
+sacular,23761370,4
+tataqing,23761370,3
+52823077,23761370,4
+naturalvoice,23761370,3
+93336298,23761370,5
+myal,23761370,4
+113421250,23761370,4
+23499046,23761370,3
+71938680,23761370,5
+1297044,23761370,4
+shmilykz,23761370,4
+60814711,23761370,5
+106746048,23761370,5
+1830229,23761370,4
+4464121,23761370,4
+silentmonkey,23761370,5
+ontheroad93,23761370,3
+57577352,23761370,5
+3412408,23761370,-1
+YE937229177,23761370,4
+3502778,23761370,3
+stillfyou,23761370,4
+zhoujunfan,23761370,5
+55686212,23761370,5
+violynne,23761370,4
+nicholasshen,23761370,4
+moonstylegirl,23761370,5
+63730863,23761370,3
+61954615,23761370,2
+54782120,23761370,4
+xiaojiuser,23761370,4
+2330715,23761370,4
+esme123,23761370,5
+Justin.Lu,23761370,1
+48049896,23761370,4
+56890247,23761370,4
+44671906,23761370,3
+115020307,23761370,5
+63119058,23761370,3
+heymikichen,23761370,5
+rong_555,23761370,4
+yonho,23761370,5
+babe_mo,23761370,3
+45359180,23761370,5
+92427949,23761370,4
+claraye,23761370,5
+78976957,23761370,4
+89698495,23761370,5
+82833360,23761370,5
+feifeiyouxia,23761370,4
+58079597,23761370,5
+fongfongziv1600,23761370,3
+zmiya,23761370,4
+77086576,23761370,3
+lianhuaroad,23761370,4
+115780928,23761370,5
+73655737,23761370,2
+29483567,23761370,4
+seoyoungeun,23761370,5
+argentum1207,23761370,3
+joylovesyou,23761370,5
+44523449,23761370,5
+60497116,23761370,5
+10392574,23761370,5
+3513161,23761370,-1
+bluefishining,23761370,5
+6631090,23761370,5
+hazelxue,23761370,5
+36832783,23761370,5
+3195572,23761370,4
+Breath9,23761370,5
+chuiching,23761370,5
+dancingwithme,23761370,5
+59988359,23761370,5
+chenqingda,23761370,5
+4632833,23761370,4
+71925560,23761370,4
+55797857,23761370,4
+alexandrawoo,23761370,4
+69504310,23761370,5
+4610403,23761370,5
+94417927,23761370,4
+zishi121,23761370,3
+91350742,23761370,3
+chonger3507,23761370,5
+77039342,23761370,3
+tunpishuang,23761370,3
+38864475,23761370,5
+1569618,23761370,4
+fortunearn,23761370,4
+luwenting0110,23761370,5
+22841960,23761370,5
+DarkKate,23761370,3
+36579827,23761370,5
+42583940,23761370,4
+82926047,23761370,5
+56470887,23761370,4
+44555225,23761370,4
+wangsmoly,23761370,4
+fengwanlu,23761370,3
+sunshinexuu,23761370,4
+firew0rk,23761370,4
+xiaoaifansion,23761370,3
+48140497,23761370,4
+80372690,23761370,5
+chenjisoler,23761370,3
+44400280,23761370,4
+Possible,23761370,3
+53665197,23761370,3
+myers,23761370,4
+cwill,23761370,4
+UtopianCarmen,23761370,4
+99983803,23761370,4
+59244982,23761370,4
+HSamson,23761370,4
+2550908,23761370,4
+jeremy25,23761370,-1
+klip,23761370,4
+ZMB,23761370,4
+72099073,23761370,5
+2809964,23761370,3
+catheringli,23761370,3
+double_JM,23761370,4
+amandaC,23761370,5
+henhen0701,23761370,5
+45160437,23761370,5
+jlma1,23761370,5
+72620241,23761370,4
+asnito,23761370,2
+8078899,23761370,3
+72997058,23761370,4
+55715901,23761370,4
+4333099,23761370,3
+1951296,23761370,5
+xiaoyatoufengzi,23761370,4
+kurobox,23761370,5
+62778442,23761370,5
+iclover1314,23761370,5
+poppy7mbsf,23761370,4
+s13,23761370,3
+razl2005,23761370,5
+8040223,23761370,4
+87734036,23761370,3
+63927330,23761370,5
+aben,23761370,4
+30531434,23761370,4
+yoyoloveyou,23761370,4
+sukidacss,23761370,4
+58366437,23761370,3
+33629882,23761370,4
+33329676,23761370,4
+24502706,23761370,3
+arg10,23761370,5
+124490297,23761370,5
+alicewant,23761370,3
+25972265,23761370,5
+48972264,23761370,5
+arnohuang,23761370,3
+ryanjuly,23761370,5
+121805239,23761370,5
+Boice-YY,23761370,3
+66201314,23761370,3
+clby,23761370,3
+2810672,23761370,5
+101898330,23761370,3
+andy12007,23761370,5
+2352053,23761370,-1
+jiang728,23761370,3
+3483003,23761370,4
+Lovelife-hh,23761370,4
+47370737,23761370,5
+2475703,23761370,4
+seclo,23761370,5
+50249739,23761370,4
+loucc,23761370,4
+2977822,23761370,5
+ymj1116,23761370,4
+51224776,23761370,4
+sharkyueyue,23761370,5
+ijihoon,23761370,4
+fabrique1987,23761370,5
+Gloriaaa,23761370,4
+daisyholdon,23761370,4
+94303465,23761370,5
+56633990,23761370,4
+figo_tau,23761370,4
+1417054,23761370,3
+azlin0707,23761370,5
+youhebuke,23761370,5
+jujufan,23761370,4
+v193333,23761370,5
+43710853,23761370,4
+84695805,23761370,5
+wusiyi,23761370,4
+63874058,23761370,5
+35407270,23761370,3
+67561107,23761370,3
+121928647,23761370,3
+ulosymn,23761370,4
+99088399,23761370,4
+hejiqingji,23761370,5
+dennie2011,23761370,4
+beforelikewind,23761370,4
+LeonJunki,23761370,5
+purlily,23761370,4
+katze,23761370,3
+3919569,23761370,3
+89152810,23761370,-1
+60119754,23761370,4
+cruer,23761370,5
+120858449,23761370,5
+11285021,23761370,3
+4612949,23761370,5
+36621770,23761370,5
+sunbox,23761370,4
+53833435,23761370,5
+laladudu,23761370,5
+ludwiger,23761370,4
+1716184,23761370,4
+56427016,23761370,3
+125699910,23761370,5
+roseroserourou,23761370,5
+xiaochengsuiyue,23761370,4
+jyo0531,23761370,5
+45435595,23761370,2
+JieloveMovie,23761370,4
+ghostcatstudio,23761370,5
+angelliuzhihui,23761370,3
+lijiancheng0614,23761370,4
+62009840,23761370,5
+72279477,23761370,4
+25750294,23761370,5
+zhaohuan0909,23761370,4
+savawolf,23761370,4
+luxianlx,23761370,5
+125699526,23761370,5
+42629232,23761370,5
+wildno,23761370,2
+61836437,23761370,3
+3922509,23761370,5
+teethyy,23761370,5
+39578194,23761370,4
+forjinger,23761370,3
+45075394,23761370,5
+47877820,23761370,3
+45796709,23761370,5
+50585337,23761370,3
+4067420,23761370,4
+119449888,23761370,3
+shminy,23761370,5
+83532316,23761370,5
+60867302,23761370,5
+63013007,23761370,3
+96233634,23761370,4
+111072325,23761370,2
+123208179,23761370,5
+47170402,23761370,5
+doudou0322,23761370,-1
+45454364,23761370,3
+3591608,23761370,5
+jiangyuhang,23761370,4
+84079001,23761370,5
+poxiaozhe,23761370,5
+homlim,23761370,-1
+luanshijiaren,23761370,4
+dwyk500,23761370,4
+zenrara1143,23761370,5
+blackjason,23761370,4
+109657209,23761370,5
+50126458,23761370,5
+zlqll,23761370,4
+28166395,23761370,3
+EchoVan,23761370,3
+27891262,23761370,4
+tongtong028,23761370,5
+52963157,23761370,5
+84968890,23761370,5
+mcfn,23761370,5
+69016984,23761370,5
+68726944,23761370,5
+83726680,23761370,4
+1007921,23761370,3
+123264667,23761370,5
+81126169,23761370,5
+diablov,23761370,4
+zengruiyan,23761370,4
+125698766,23761370,5
+sevenlan,23761370,5
+69005031,23761370,5
+39540818,23761370,5
+27884235,23761370,5
+ZY_Loft,23761370,-1
+chanmao,23761370,4
+67708728,23761370,5
+Stefi.,23761370,5
+hellovito,23761370,3
+67952037,23761370,3
+jiulingweiji,23761370,5
+68804843,23761370,4
+69993971,23761370,3
+68917720,23761370,3
+1848823,23761370,5
+86941507,23761370,5
+53736520,23761370,-1
+3176034,23761370,5
+theLastQuijote,23761370,4
+zacklee,23761370,3
+45950907,23761370,5
+3862249,23761370,3
+125698189,23761370,-1
+58289096,23761370,2
+87646803,23761370,5
+56904781,23761370,5
+45795420,23761370,4
+50179073,23761370,3
+49617240,23761370,4
+nora_chi,23761370,4
+59074845,23761370,5
+6955816,23761370,4
+sphynx,23761370,5
+4104841,23761370,5
+63941479,23761370,4
+51105006,23761370,5
+125698191,23761370,5
+57920939,23761370,3
+113422603,23761370,2
+smartgirl0305,23761370,-1
+81439273,23761370,5
+dangaodian,23761370,5
+33949296,23761370,3
+125697944,23761370,5
+betterthanrenee,23761370,3
+65638720,23761370,2
+3268751,23761370,4
+37782980,23761370,4
+80359618,23761370,4
+43188072,23761370,5
+119427193,23761370,3
+flashingcrystal,23761370,5
+57583180,23761370,5
+70214079,23761370,5
+70918450,23761370,5
+49561950,23761370,3
+65112013,23761370,4
+MiHS,23761370,4
+riverrun,23761370,4
+85317436,23761370,4
+Siberia3,23761370,5
+125654018,23761370,3
+125697676,23761370,5
+17991181,23761370,3
+2713167,23761370,4
+jiangchongzhi,23761370,5
+claider,23761370,4
+75654309,23761370,4
+pkidd,23761370,5
+4221004,23761370,5
+58950825,23761370,4
+48666960,23761370,5
+Bocahontas,23761370,4
+36681127,23761370,3
+64527930,23761370,2
+69634806,23761370,2
+2990497,23761370,5
+EnronZhao,23761370,5
+wentaoxie,23761370,3
+9971388,23761370,3
+62604546,23761370,5
+xiajixiangnan,23761370,5
+42267736,23761370,5
+35450002,23761370,4
+1375586,23761370,5
+3310969,23761370,5
+63142359,23761370,5
+73718579,23761370,5
+icerattan,23761370,5
+66359414,23761370,4
+25741831,23761370,4
+nanonino,23761370,4
+1235613,23761370,-1
+timeispassing,23761370,5
+82262914,23761370,3
+outsider_Sumo,23761370,-1
+59695335,23761370,5
+tonypolyu,23761370,4
+mya_y,23761370,4
+48494718,23761370,5
+82982521,23761370,2
+98136515,23761370,4
+47546589,23761370,3
+46802890,23761370,5
+57831811,23761370,4
+39382938,23761370,4
+hwkang,23761370,2
+4823337,23761370,3
+magicnuan,23761370,5
+2995401,23761370,3
+74244754,23761370,4
+61063564,23761370,5
+30251701,23761370,5
+miya411,23761370,5
+daizz529,23761370,4
+64190669,23761370,3
+40211770,23761370,3
+59444662,23761370,4
+yasumoto,23761370,5
+wutheringshi,23761370,4
+36008103,23761370,4
+2721912,23761370,5
+wonderer,23761370,4
+52892284,23761370,5
+rainstopgoodbye,23761370,4
+53704124,23761370,3
+summer41,23761370,2
+jech,23761370,5
+59881487,23761370,5
+68407500,23761370,5
+57667535,23761370,5
+59180754,23761370,5
+pueti,23761370,5
+Tobey25,23761370,4
+jasonshaw,23761370,5
+passionless,23761370,4
+2345491,23761370,5
+reneeeee,23761370,5
+43999412,23761370,5
+3622707,23761370,4
+57379426,23761370,5
+58096357,23761370,3
+61625435,23761370,5
+96055021,23761370,5
+greatabel,23761370,3
+57586394,23761370,3
+letmetalk,23761370,-1
+58192083,23761370,3
+55884149,23761370,5
+hezhong,23761370,4
+37480581,23761370,5
+44103636,23761370,5
+phylliszhou,23761370,3
+3647236,23761370,5
+3599865,23761370,5
+44187198,23761370,4
+61532165,23761370,4
+chenliuNJ,23761370,4
+61597899,23761370,3
+cieldingdong,23761370,4
+1840249,23761370,4
+sherylice,23761370,4
+83309837,23761370,5
+65346497,23761370,4
+icyiwing,23761370,5
+94852240,23761370,5
+hanaemily,23761370,4
+74850520,23761370,2
+122514534,23761370,5
+50773904,23761370,4
+68561607,23761370,4
+ivy722,23761370,-1
+48979155,23761370,-1
+cyrus7cf,23761370,4
+tiramisu-1990,23761370,5
+122981729,23761370,2
+freedim,23761370,5
+jiushiguyiming,23761370,4
+emmalty,23761370,3
+XXXXXmian,23761370,4
+kylinnn,23761370,3
+Alicespring,23761370,3
+93917901,23761370,5
+43682836,23761370,4
+79882566,23761370,-1
+68200387,23761370,5
+104344281,23761370,3
+hotaru0223,23761370,4
+47123644,23761370,4
+Aeolus.J,23761370,5
+evelynchengqi,23761370,3
+77200563,23761370,4
+64881520,23761370,4
+48265133,23761370,3
+88097347,23761370,3
+96514775,23761370,5
+av13,23761370,2
+rebecca419,23761370,-1
+heming_way,23761370,4
+49041095,23761370,4
+49411730,23761370,5
+61648064,23761370,3
+kellyhuang,23761370,5
+41766735,23761370,4
+42567436,23761370,3
+64866027,23761370,4
+70536128,23761370,5
+Kanin,23761370,4
+MariahC,23761370,5
+51807331,23761370,4
+34984227,23761370,5
+36634678,23761370,2
+66803034,23761370,5
+xyf599241274,23761370,5
+52597615,23761370,5
+3435127,23761370,3
+xipingchangnata,23761370,5
+43062061,23761370,3
+46369644,23761370,5
+3677825,23761370,4
+qitian2013,23761370,4
+wanggang2005,23761370,5
+31108272,23761370,-1
+luohuazhu,23761370,4
+63882511,23761370,5
+62340199,23761370,3
+3146294,23761370,5
+71836089,23761370,5
+3939279,23761370,4
+75855286,23761370,5
+blue-shadow,23761370,5
+Tyin,23761370,5
+liuzihao6211,23761370,2
+50054306,23761370,4
+89786389,23761370,5
+dhcdanger,23761370,5
+Mitruth,23761370,3
+44662015,23761370,5
+Yolanda0830,23761370,4
+yangfu,23761370,5
+87917002,23761370,4
+leeang,23761370,1
+48544048,23761370,5
+MoneyiMona,23761370,5
+11020421,23761370,5
+71157955,23761370,4
+yuwusankou,23761370,5
+armins,23761370,4
+3539409,23761370,4
+62197141,23761370,5
+55619717,23761370,4
+Sajoin,23761370,4
+48539445,23761370,2
+4474468,23761370,4
+104440766,23761370,5
+53829789,23761370,4
+49879024,23761370,4
+75188752,23761370,5
+aprilpear,23761370,4
+wayneonline,23761370,5
+huiverci,23761370,5
+torol,23761370,4
+chongzi_photo,23761370,5
+46483875,23761370,4
+yaomiao,23761370,4
+42222694,23761370,3
+empty_r,23761370,5
+Josieeeeee,23761370,5
+ZhAojinGzI,23761370,5
+49772004,23761370,3
+36687091,23761370,4
+garconne,23761370,4
+ericatdoll,23761370,4
+darrenskywalker,23761370,1
+spade3,23761370,4
+morningsu,23761370,4
+37229624,23761370,3
+23612143,23761370,3
+61845707,23761370,4
+shf993,23761370,4
+42669381,23761370,3
+50531723,23761370,5
+52916992,23761370,3
+3805267,23761370,5
+68567528,23761370,5
+46879309,23761370,5
+yishengpingfan,23761370,5
+125692009,23761370,4
+stelladingding,23761370,4
+50708014,23761370,5
+64453647,23761370,4
+osssan,23761370,4
+keesh,23761370,2
+47680901,23761370,5
+54222336,23761370,2
+4733262,23761370,4
+nateriveryhy,23761370,4
+64232400,23761370,5
+48069479,23761370,4
+8648538,23761370,5
+81172734,23761370,5
+120913568,23761370,5
+62140326,23761370,4
+45683882,23761370,4
+79667856,23761370,3
+63568179,23761370,4
+38648875,23761370,3
+91365383,23761370,4
+82969027,23761370,3
+chenhuayang,23761370,3
+zhangwj,23761370,4
+vividjoy,23761370,5
+xiangdahai,23761370,4
+78640879,23761370,4
+58597981,23761370,1
+enuer,23761370,4
+aiguiling,23761370,4
+116543609,23761370,5
+90416000,23761370,3
+4698333,23761370,3
+48068452,23761370,4
+lostintheairr,23761370,4
+113303120,23761370,5
+57055757,23761370,5
+sshen,23761370,5
+urwill,23761370,3
+abpeter,23761370,3
+Amppppppp,23761370,5
+73832904,23761370,5
+121188347,23761370,4
+51419980,23761370,5
+119045974,23761370,4
+2842505,23761370,5
+wangxiaonizi,23761370,4
+echo0o0,23761370,5
+62426191,23761370,4
+44244784,23761370,4
+62957574,23761370,5
+120268630,23761370,5
+Nefelibata,23761370,4
+55683912,23761370,4
+47577539,23761370,5
+51915872,23761370,3
+murmer,23761370,4
+63121550,23761370,4
+119039220,23761370,3
+46440709,23761370,4
+105306474,23761370,5
+53082027,23761370,4
+wdhappy,23761370,4
+68810289,23761370,3
+49976313,23761370,-1
+sharon731,23761370,4
+fanya,23761370,4
+msghost,23761370,3
+65109101,23761370,4
+fikhtengol,23761370,1
+84569301,23761370,4
+6576481,23761370,4
+chouxiezi,23761370,4
+lummyboyla,23761370,4
+58466744,23761370,4
+69394485,23761370,3
+22105037,23761370,4
+120797263,23761370,5
+7143853,23761370,4
+asoloman,23761370,4
+nicole1986,23761370,4
+49499439,23761370,5
+47755966,23761370,-1
+alien-wo,23761370,2
+lucyromance,23761370,4
+51602185,23761370,3
+54690757,23761370,5
+32242736,23761370,1
+sbs222,23761370,5
+39288960,23761370,5
+awaylovey,23761370,5
+21331611,23761370,-1
+84475436,23761370,4
+sweetranran,23761370,5
+mona.c,23761370,4
+84142287,23761370,4
+84142287,23761370,4
+71294112,23761370,4
+2593997,23761370,4
+116048075,23761370,1
+tbontb,23761370,3
+puddingyu,23761370,4
+huaibaobao,23761370,4
+94594968,23761370,5
+49445419,23761370,4
+76738601,23761370,5
+zxmushroom,23761370,4
+116007981,23761370,5
+49611226,23761370,5
+3059021,23761370,3
+liyixuanorz,23761370,4
+4148746,23761370,4
+58094231,23761370,5
+32663616,23761370,4
+88327391,23761370,4
+ophelialiu,23761370,5
+2136999,23761370,4
+founder8968,23761370,5
+68934609,23761370,5
+binifit,23761370,5
+46383318,23761370,3
+79002821,23761370,4
+74504270,23761370,5
+xjdrew,23761370,3
+57907537,23761370,3
+heyue5235,23761370,5
+89549400,23761370,5
+4270579,23761370,5
+az_,23761370,-1
+63571575,23761370,3
+2973153,23761370,4
+54629940,23761370,5
+125274878,23761370,5
+43560923,23761370,4
+27194011,23761370,5
+90483519,23761370,3
+62544588,23761370,4
+bluegatecrossin,23761370,4
+Rosamy,23761370,5
+mrswhat,23761370,3
+FIMLML,23761370,3
+shoonior,23761370,3
+ilibby,23761370,4
+2546239,23761370,3
+rhea860618,23761370,3
+craiglau,23761370,5
+76624951,23761370,3
+qianqianfei,23761370,3
+clean12,23761370,5
+yyyscnu,23761370,4
+ZXL29011076,23761370,4
+68083339,23761370,4
+heymona,23761370,3
+50900186,23761370,4
+46729768,23761370,3
+92999358,23761370,5
+65737996,23761370,4
+70091695,23761370,5
+mrlinxiaotian,23761370,5
+57834233,23761370,5
+48724979,23761370,4
+75865676,23761370,4
+hemoli.,23761370,5
+j5281,23761370,4
+3214906,23761370,4
+44445434,23761370,5
+70929695,23761370,3
+Brevityin,23761370,4
+43698525,23761370,4
+linyuzhu,23761370,4
+71472531,23761370,5
+37521902,23761370,4
+58115955,23761370,5
+49301222,23761370,5
+laperseus,23761370,2
+nana.qi,23761370,4
+1665424,23761370,3
+toggi,23761370,5
+60829711,23761370,4
+shennessy,23761370,4
+44716146,23761370,4
+69430764,23761370,4
+47376447,23761370,5
+travelzmc,23761370,4
+51426516,23761370,5
+49983823,23761370,3
+40586247,23761370,4
+63161358,23761370,4
+fuyun2710,23761370,3
+vvzki,23761370,5
+shuangzixing,23761370,4
+hanzhang9037,23761370,5
+ricik,23761370,3
+stalkerazor,23761370,4
+78397458,23761370,5
+45848548,23761370,2
+56647071,23761370,3
+68511299,23761370,2
+58253013,23761370,3
+Neuschvvanstein,23761370,5
+32908344,23761370,5
+31548307,23761370,4
+93727338,23761370,4
+51529335,23761370,5
+2813670,23761370,4
+68439171,23761370,5
+jahwey,23761370,5
+10892176,23761370,5
+63505489,23761370,3
+65608489,23761370,5
+ariesyesung,23761370,5
+81430185,23761370,5
+119672360,23761370,5
+92976667,23761370,5
+63850516,23761370,3
+1497446,23761370,-1
+45320268,23761370,4
+4358020,23761370,5
+7859437,23761370,5
+longzhanyun,23761370,5
+117836887,23761370,3
+25110019,23761370,4
+tree0824,23761370,4
+30465416,23761370,4
+81519024,23761370,4
+120907919,23761370,5
+65322412,23761370,5
+4587643,23761370,4
+37889636,23761370,5
+AbnerLee,23761370,4
+4543074,23761370,5
+56666765,23761370,5
+3707126,23761370,5
+59774310,23761370,5
+mc-panda,23761370,5
+baicun,23761370,4
+baicun,23761370,4
+64858835,23761370,5
+34831993,23761370,3
+104580788,23761370,5
+jessie811,23761370,-1
+yvoxu,23761370,5
+66889726,23761370,5
+Benny2qian,23761370,3
+50256135,23761370,3
+47584632,23761370,5
+48786677,23761370,5
+ohoff,23761370,3
+yuki_kaze,23761370,3
+64020690,23761370,5
+anteruna,23761370,5
+38514261,23761370,4
+2702713,23761370,5
+9590552,23761370,5
+55852131,23761370,5
+53300264,23761370,3
+69040717,23761370,2
+90546052,23761370,5
+2235329,23761370,4
+2256093,23761370,4
+65660945,23761370,3
+78559485,23761370,4
+56772627,23761370,4
+70357022,23761370,3
+76655139,23761370,5
+53921737,23761370,4
+47604910,23761370,5
+bzys,23761370,3
+119315449,23761370,4
+35661060,23761370,5
+84700560,23761370,4
+shine2,23761370,3
+20543493,23761370,4
+40622422,23761370,5
+yilingbaihe,23761370,5
+97305087,23761370,4
+f91_82,23761370,4
+49470212,23761370,5
+2338228,23761370,3
+guoqianning,23761370,5
+48369193,23761370,5
+54991939,23761370,4
+37754278,23761370,5
+Aurour,23761370,3
+47701435,23761370,5
+35797147,23761370,3
+mtz,23761370,1
+mugenya,23761370,4
+64902019,23761370,5
+59363812,23761370,4
+43664671,23761370,4
+fengguozoulang,23761370,5
+natejumper,23761370,-1
+2825367,23761370,5
+51815760,23761370,5
+1343126,23761370,4
+46288869,23761370,5
+54327127,23761370,5
+jluy,23761370,3
+44633309,23761370,3
+56926897,23761370,4
+yulunyiqi,23761370,5
+PheniY,23761370,4
+andrewchen,23761370,1
+63045020,23761370,5
+foreveryoyo,23761370,3
+108313440,23761370,5
+39093072,23761370,5
+44503437,23761370,4
+Xxuechen,23761370,5
+AndreBFSU,23761370,3
+77186305,23761370,3
+1718927,23761370,5
+doloresding,23761370,4
+dyh000528,23761370,5
+66126312,23761370,3
+123037575,23761370,5
+xiaolvtier,23761370,4
+ihana,23761370,5
+SteffiLiu,23761370,5
+rabbit6,23761370,4
+51810692,23761370,5
+carrie_c.,23761370,5
+54774114,23761370,5
+53025886,23761370,4
+15666885,23761370,5
+woodsjan,23761370,5
+8414993,23761370,4
+36238876,23761370,5
+63931139,23761370,5
+cydandelion,23761370,4
+huhhot0471,23761370,4
+79699106,23761370,5
+49981766,23761370,5
+2376689,23761370,-1
+lihouyuan,23761370,-1
+mjh5920,23761370,4
+63069201,23761370,5
+jiqiuqiu,23761370,5
+yin-gang,23761370,3
+2943338,23761370,4
+47836672,23761370,4
+55746264,23761370,4
+79310220,23761370,5
+120299687,23761370,4
+guoooo,23761370,4
+48653568,23761370,4
+3169210,23761370,5
+44610838,23761370,5
+56263251,23761370,4
+2987938,23761370,5
+kimtarm,23761370,4
+iimozart,23761370,4
+38258402,23761370,5
+junejoe,23761370,3
+endlessleep,23761370,4
+64487230,23761370,5
+63622302,23761370,2
+61721303,23761370,4
+70306814,23761370,5
+46094969,23761370,3
+92248819,23761370,5
+evita_lj,23761370,4
+4292449,23761370,3
+64826972,23761370,4
+81215873,23761370,5
+62159352,23761370,5
+81163129,23761370,4
+dorispeng03,23761370,5
+haha_R,23761370,4
+Jennytakun,23761370,5
+47353624,23761370,5
+45193302,23761370,4
+msbig,23761370,4
+47781280,23761370,3
+vincentnifang,23761370,3
+lovewx3,23761370,-1
+76021519,23761370,5
+43941153,23761370,5
+48940820,23761370,5
+bingdongdelv,23761370,4
+2300644,23761370,5
+51036175,23761370,5
+iayunuo,23761370,5
+92206840,23761370,4
+4872425,23761370,3
+34342600,23761370,3
+jiongMiaomiao,23761370,5
+milu123456,23761370,-1
+97312448,23761370,3
+120448486,23761370,3
+60119370,23761370,3
+47172637,23761370,4
+108278256,23761370,5
+59534793,23761370,4
+4265133,23761370,5
+4396761,23761370,5
+71881441,23761370,4
+33324366,23761370,5
+51675247,23761370,3
+50352776,23761370,3
+winderwing,23761370,2
+sqdlx,23761370,3
+2329944,23761370,5
+SJzzy314,23761370,4
+whisperstone,23761370,3
+51590575,23761370,4
+3529058,23761370,5
+43207503,23761370,5
+2603031,23761370,4
+82621190,23761370,5
+luoer,23761370,4
+litt1eboat,23761370,5
+54127918,23761370,2
+weweblue,23761370,-1
+1400556,23761370,5
+SnakeTail,23761370,5
+60605965,23761370,4
+68333051,23761370,5
+32363324,23761370,4
+49231708,23761370,5
+53059304,23761370,4
+74341534,23761370,4
+yaxintt,23761370,5
+97175502,23761370,3
+yunwaizhizhi,23761370,4
+TheAnswer_,23761370,4
+51835968,23761370,5
+minoindemo,23761370,4
+50212998,23761370,4
+viviani87,23761370,4
+3679180,23761370,3
+68796799,23761370,5
+45754818,23761370,5
+rainiewm,23761370,4
+33228926,23761370,4
+51655057,23761370,5
+56974841,23761370,4
+42579778,23761370,3
+47145571,23761370,4
+41728393,23761370,5
+hupotang,23761370,4
+2033181,23761370,5
+UFO-75,23761370,5
+69234532,23761370,3
+catduo,23761370,5
+44669555,23761370,3
+53573790,23761370,5
+51506462,23761370,3
+4596953,23761370,5
+49065066,23761370,5
+julsparks,23761370,3
+46627349,23761370,5
+9354883,23761370,5
+53794132,23761370,2
+63465084,23761370,4
+59310960,23761370,5
+81213276,23761370,5
+methew,23761370,4
+102472885,23761370,5
+57991654,23761370,5
+60902238,23761370,3
+60088640,23761370,3
+hasu,23761370,4
+bramblesinwind,23761370,4
+57052407,23761370,4
+3201065,23761370,4
+60042358,23761370,4
+4028097,23761370,3
+dearsl,23761370,5
+panluobo,23761370,5
+wanmingyun,23761370,5
+72316189,23761370,5
+64759305,23761370,4
+4165770,23761370,5
+48164798,23761370,4
+songxiaozao,23761370,3
+aatt,23761370,3
+51257639,23761370,4
+fishpjr,23761370,4
+42011324,23761370,5
+peggyduan,23761370,4
+liarelaw,23761370,2
+bonike,23761370,5
+47931130,23761370,3
+68865370,23761370,5
+bluefrog,23761370,5
+82817021,23761370,5
+Youmans,23761370,4
+96062684,23761370,3
+49440731,23761370,4
+44777564,23761370,3
+on1ooker,23761370,3
+49548565,23761370,3
+12250432,23761370,4
+50610225,23761370,3
+48252121,23761370,4
+Simplelove_,23761370,4
+62600527,23761370,4
+29905943,23761370,5
+35487811,23761370,4
+schoko6868,23761370,3
+zoe_john,23761370,5
+moz000,23761370,4
+71466029,23761370,2
+SaberChan,23761370,3
+lovejiangnan,23761370,3
+gooddayalways,23761370,3
+justbella,23761370,4
+120555550,23761370,3
+34591792,23761370,-1
+xueshene,23761370,3
+79406388,23761370,4
+my_paint_kettle,23761370,5
+Kumiko_Tan,23761370,3
+jaredchen,23761370,4
+44349387,23761370,5
+51868250,23761370,1
+57953083,23761370,5
+cathh,23761370,4
+zhangyuaicc,23761370,3
+3769888,23761370,5
+66767479,23761370,5
+Muku,23761370,4
+66690322,23761370,4
+119483950,23761370,5
+sui_1130,23761370,4
+linsleyzhou,23761370,5
+43627206,23761370,4
+2865260,23761370,4
+54087603,23761370,5
+77266400,23761370,5
+graffitizy,23761370,4
+53734105,23761370,4
+hym53231323,23761370,4
+her10ve,23761370,5
+sE_Lc7,23761370,5
+liulull,23761370,4
+61524961,23761370,5
+3346015,23761370,4
+58195193,23761370,3
+3334911,23761370,5
+nineism,23761370,4
+demondeng,23761370,3
+mimizang,23761370,4
+Sylar10,23761370,3
+xiaohaier,23761370,-1
+JJY1337,23761370,5
+just-emma,23761370,3
+geb515,23761370,4
+badass,23761370,5
+43671403,23761370,4
+57673530,23761370,4
+49510128,23761370,3
+28782376,23761370,5
+36695741,23761370,5
+120223686,23761370,5
+60227516,23761370,4
+37110649,23761370,4
+61599793,23761370,5
+44436365,23761370,5
+howardbernstein,23761370,5
+48023972,23761370,5
+65442139,23761370,4
+27704994,23761370,5
+aika47,23761370,4
+markmong,23761370,5
+73072446,23761370,5
+VenusDoom,23761370,5
+61392222,23761370,5
+83391483,23761370,5
+114426508,23761370,4
+69189715,23761370,4
+41925325,23761370,3
+mr.Marlboro,23761370,5
+25123789,23761370,5
+44479829,23761370,5
+54990235,23761370,4
+lsg_lsg,23761370,3
+49134940,23761370,4
+92762833,23761370,4
+zhaosituzi,23761370,5
+aaaaaaana,23761370,5
+37168028,23761370,4
+51694672,23761370,5
+35640176,23761370,5
+15439490,23761370,5
+48270391,23761370,5
+61946261,23761370,4
+47568574,23761370,4
+xiG.,23761370,4
+whypretty,23761370,4
+63420837,23761370,4
+51419805,23761370,5
+shuhaiyun,23761370,3
+likounin,23761370,5
+jinyuelibra,23761370,4
+68812181,23761370,4
+59340929,23761370,5
+36289402,23761370,3
+jack_eminem,23761370,4
+luocaochengsi,23761370,5
+amylittle,23761370,5
+26307294,23761370,4
+zxt1219,23761370,4
+53621220,23761370,5
+115213178,23761370,4
+44890622,23761370,4
+61295594,23761370,5
+yutubao,23761370,5
+51445817,23761370,4
+king4solomon,23761370,3
+45324717,23761370,3
+lazygalaxy,23761370,5
+rehina,23761370,4
+3521983,23761370,3
+wangmei,23761370,4
+4335554,23761370,3
+70816175,23761370,3
+3590324,23761370,4
+94863622,23761370,2
+guanwaiguicai,23761370,4
+54500977,23761370,4
+xyl412,23761370,4
+babyA,23761370,3
+56329701,23761370,5
+gothmetallover,23761370,-1
+ninker,23761370,4
+45978726,23761370,4
+omenfly,23761370,3
+63640040,23761370,5
+44622459,23761370,5
+70335579,23761370,4
+rachel1120,23761370,5
+SayAnything,23761370,5
+1305916,23761370,1
+67517477,23761370,5
+zsqsophy,23761370,4
+119192622,23761370,4
+3724442,23761370,4
+74284145,23761370,4
+63684409,23761370,-1
+60040964,23761370,4
+122048487,23761370,5
+46491695,23761370,5
+4603863,23761370,4
+onethree,23761370,3
+119691617,23761370,5
+34036106,23761370,4
+50632642,23761370,3
+60698391,23761370,5
+48645977,23761370,2
+91239382,23761370,3
+59426898,23761370,5
+52620272,23761370,5
+fuyunyajie,23761370,4
+zhangsai,23761370,4
+34108808,23761370,5
+totoko,23761370,4
+69816487,23761370,3
+ranke0129,23761370,4
+54133944,23761370,5
+45833059,23761370,5
+46653633,23761370,5
+89036799,23761370,5
+30599927,23761370,3
+74545384,23761370,3
+deep_purple_w,23761370,4
+121733249,23761370,3
+fengt,23761370,4
+gagakrron,23761370,4
+littleisle,23761370,4
+turtlepear,23761370,4
+felinoshuffle,23761370,5
+103704385,23761370,4
+81374074,23761370,5
+46131474,23761370,4
+tingdreamer,23761370,5
+guooyi,23761370,3
+120791198,23761370,4
+56731271,23761370,3
+yusherry,23761370,5
+78548715,23761370,4
+YuningM,23761370,1
+81001577,23761370,5
+83201955,23761370,5
+4460863,23761370,4
+72048442,23761370,5
+thaddeuskhu,23761370,3
+jjjjjjjoice,23761370,5
+46317949,23761370,5
+uandi,23761370,2
+yfqc24pippo,23761370,3
+DQRXY,23761370,4
+elaine1102,23761370,4
+touya0229,23761370,3
+119185535,23761370,5
+lamwithme,23761370,4
+gilyun,23761370,4
+54478772,23761370,5
+44653636,23761370,3
+61406306,23761370,4
+52479744,23761370,4
+63084243,23761370,5
+49894875,23761370,4
+46039273,23761370,5
+45634818,23761370,5
+79848078,23761370,4
+stevense,23761370,3
+joanna-T,23761370,5
+47279331,23761370,5
+101945887,23761370,5
+xialun,23761370,4
+73787415,23761370,4
+92805867,23761370,5
+75490431,23761370,4
+yyxmy,23761370,3
+32094625,23761370,5
+VeronicaSh,23761370,4
+yifanmumian,23761370,2
+tougholdboy,23761370,4
+50061669,23761370,5
+yekui,23761370,5
+39611534,23761370,5
+yaolan1986,23761370,-1
+47730670,23761370,5
+79889745,23761370,5
+lvben,23761370,3
+59226266,23761370,5
+16494392,23761370,5
+candydaisy,23761370,3
+39940874,23761370,4
+62336834,23761370,3
+3413503,23761370,5
+followyourwind,23761370,3
+JaceJing,23761370,4
+1444948,23761370,4
+77640366,23761370,3
+ninalynnsaynia,23761370,5
+81941728,23761370,5
+66848949,23761370,4
+metaboo,23761370,4
+74871304,23761370,5
+42816859,23761370,4
+voilet6,23761370,5
+115714696,23761370,5
+4456648,23761370,4
+48227184,23761370,4
+52947458,23761370,5
+SylviaWang,23761370,5
+yingchuan,23761370,4
+77135954,23761370,5
+bauerzhang,23761370,3
+54434273,23761370,5
+jeffmsu,23761370,5
+57058120,23761370,5
+57985029,23761370,5
+41843142,23761370,4
+89764263,23761370,3
+53654019,23761370,3
+3070126,23761370,4
+2592016,23761370,4
+adrian-tsai,23761370,4
+63098034,23761370,1
+4105021,23761370,4
+everlastinglove,23761370,4
+74768790,23761370,4
+73188474,23761370,3
+66631031,23761370,5
+godmako,23761370,5
+3414829,23761370,3
+1142037,23761370,5
+normalovetree,23761370,5
+carrot8587,23761370,5
+op5411,23761370,5
+92633728,23761370,4
+44204441,23761370,3
+91949365,23761370,4
+ada7603,23761370,4
+75666359,23761370,4
+54512951,23761370,4
+63992935,23761370,5
+108227368,23761370,5
+124894210,23761370,1
+81103621,23761370,4
+tometojang,23761370,-1
+65486346,23761370,2
+50161437,23761370,5
+31508323,23761370,5
+ECbunny,23761370,3
+kingszar,23761370,3
+HaruhiEnokidu,23761370,3
+57132937,23761370,4
+78508524,23761370,3
+vito0719,23761370,5
+minkyunghoon,23761370,3
+fish.in.bottle,23761370,3
+94394247,23761370,4
+29391968,23761370,5
+Uvo,23761370,3
+60184239,23761370,5
+63548568,23761370,3
+67758880,23761370,5
+49717528,23761370,5
+49017288,23761370,5
+118845762,23761370,4
+omit,23761370,5
+64682658,23761370,5
+chrisqi310,23761370,4
+yihaifei,23761370,3
+66743693,23761370,5
+bubble77,23761370,5
+Eayo,23761370,3
+eater,23761370,5
+40694256,23761370,5
+3187313,23761370,4
+122719042,23761370,5
+83387941,23761370,3
+yyh,23761370,4
+42781255,23761370,5
+yokoxyy0yrvs,23761370,4
+stepnine,23761370,3
+coolgun,23761370,4
+weijiu0821,23761370,3
+41234073,23761370,5
+evangeline.h,23761370,3
+50435061,23761370,5
+50641998,23761370,3
+55970700,23761370,5
+55815048,23761370,5
+ali107,23761370,2
+sunwanyu,23761370,5
+leequeue,23761370,5
+74971861,23761370,4
+bluaxe,23761370,5
+sysonchen,23761370,4
+54357469,23761370,4
+81605681,23761370,5
+renyuanstella,23761370,4
+63892737,23761370,5
+79530931,23761370,4
+MrJlol,23761370,3
+45182883,23761370,3
+68791794,23761370,4
+75256737,23761370,2
+Unique....,23761370,3
+jsjtsecret,23761370,4
+lazycatsn,23761370,5
+48930507,23761370,5
+68783162,23761370,3
+3115385,23761370,4
+64173822,23761370,4
+61207134,23761370,5
+79360281,23761370,5
+v-end,23761370,3
+50069114,23761370,4
+50069114,23761370,4
+lichengcheng,23761370,4
+50082460,23761370,3
+88091701,23761370,4
+44329176,23761370,3
+54521491,23761370,4
+63563681,23761370,5
+zhangfangli,23761370,5
+mado1983,23761370,4
+52275175,23761370,5
+91981482,23761370,5
+2205097,23761370,4
+53720932,23761370,4
+iSaw11021,23761370,4
+121614416,23761370,5
+57541174,23761370,5
+53134901,23761370,5
+31962106,23761370,4
+41012306,23761370,4
+PussyEva,23761370,5
+liuzh2,23761370,5
+52063783,23761370,2
+76417903,23761370,4
+bellona-mars,23761370,4
+Moonmous,23761370,4
+1087321,23761370,3
+113086665,23761370,5
+77296601,23761370,5
+monica90729,23761370,-1
+thouth,23761370,4
+82888615,23761370,4
+103315156,23761370,4
+spnda,23761370,5
+90908945,23761370,5
+yumuyou,23761370,4
+javaking,23761370,3
+Jeanerduo,23761370,2
+97721767,23761370,5
+67104840,23761370,5
+Microka,23761370,3
+56584924,23761370,4
+3386168,23761370,4
+dearbaoba,23761370,5
+49602953,23761370,4
+black-peach,23761370,3
+25432866,23761370,5
+zizon,23761370,3
+1486502,23761370,3
+jiaqingtutu,23761370,5
+48898826,23761370,4
+TalkChan,23761370,4
+75220452,23761370,5
+59217303,23761370,5
+63603619,23761370,4
+46266125,23761370,4
+75859524,23761370,4
+duck130912277,23761370,5
+siaa,23761370,3
+51508838,23761370,4
+i7_11,23761370,3
+Simply08,23761370,5
+82874810,23761370,4
+ztztztzt8888,23761370,4
+82306803,23761370,5
+4692514,23761370,-1
+63853626,23761370,3
+50028817,23761370,3
+68403874,23761370,5
+74862165,23761370,4
+wind_field,23761370,4
+ivy0208,23761370,4
+51920499,23761370,4
+103815567,23761370,5
+3072724,23761370,4
+helenooc,23761370,4
+30323984,23761370,4
+66959291,23761370,4
+88802313,23761370,5
+sumo-zy,23761370,5
+63177196,23761370,5
+ck.earth,23761370,2
+51212270,23761370,5
+81685700,23761370,5
+64239272,23761370,2
+125639910,23761370,4
+83467712,23761370,5
+48386140,23761370,3
+myqianxun,23761370,3
+abe_y,23761370,5
+theninthmonth,23761370,5
+yjysreal,23761370,4
+3158960,23761370,5
+72605529,23761370,4
+56372209,23761370,4
+89723194,23761370,2
+35821566,23761370,1
+chercherlukia,23761370,4
+98098523,23761370,5
+2568577,23761370,5
+kenny_w,23761370,3
+lichen_sun,23761370,2
+bloodsasha,23761370,4
+17672710,23761370,5
+49110008,23761370,4
+4265735,23761370,5
+80679783,23761370,4
+27083454,23761370,3
+56044359,23761370,5
+46065900,23761370,4
+50750779,23761370,1
+Marilyn.dd,23761370,5
+umika0215,23761370,5
+vampire1010,23761370,5
+45564542,23761370,-1
+sundaybar,23761370,4
+61901314,23761370,3
+56475433,23761370,4
+51964215,23761370,2
+syveen,23761370,5
+39662658,23761370,4
+jalshow,23761370,4
+53080180,23761370,5
+44436573,23761370,4
+54738185,23761370,3
+78850337,23761370,5
+69441778,23761370,4
+44542980,23761370,4
+sisyneo,23761370,2
+46476912,23761370,5
+51312252,23761370,4
+luna8525,23761370,3
+4881212,23761370,4
+wyms33,23761370,5
+liminzhang,23761370,5
+48365404,23761370,5
+heymiki,23761370,2
+icyinvent,23761370,4
+41415915,23761370,4
+snailchang,23761370,5
+ohghost,23761370,-1
+51079616,23761370,4
+2590915,23761370,5
+3066956,23761370,4
+42359539,23761370,5
+wstlivetony,23761370,4
+57249057,23761370,5
+52911007,23761370,4
+37861913,23761370,5
+woshimancao,23761370,3
+52283291,23761370,4
+15920095,23761370,-1
+12769559,23761370,5
+dohertysphinx,23761370,3
+65810005,23761370,5
+3108982,23761370,4
+liuanan0606,23761370,5
+akkabby,23761370,4
+1379137,23761370,3
+MaclovenZD,23761370,4
+53219323,23761370,4
+53219323,23761370,4
+iryanvii,23761370,5
+63630042,23761370,5
+withinbeyond,23761370,3
+45846589,23761370,3
+lilmustard,23761370,3
+2176488,23761370,5
+52590669,23761370,5
+75931273,23761370,3
+79583588,23761370,5
+57837456,23761370,5
+61093612,23761370,5
+92085198,23761370,5
+103251122,23761370,5
+58542527,23761370,4
+deaconsu,23761370,4
+45479009,23761370,5
+ZZH1264473877,23761370,5
+mikarg,23761370,5
+30578327,23761370,3
+77106660,23761370,4
+rabbityear,23761370,5
+65303828,23761370,2
+tasria,23761370,4
+krisyu,23761370,5
+sarabilau2,23761370,4
+96967794,23761370,4
+rafael_j,23761370,4
+likechuck,23761370,5
+52655952,23761370,3
+82813230,23761370,4
+casuallife,23761370,4
+2659580,23761370,3
+Ecphronia,23761370,4
+54885866,23761370,3
+imxiaobei,23761370,5
+68201958,23761370,5
+56340290,23761370,5
+41071901,23761370,5
+50860943,23761370,4
+33753427,23761370,5
+43595031,23761370,4
+43978557,23761370,3
+wengjx,23761370,1
+Yan.er..dyn,23761370,3
+43698973,23761370,4
+88308360,23761370,4
+63382462,23761370,-1
+50527375,23761370,3
+fayerr,23761370,5
+63594336,23761370,5
+120137624,23761370,2
+103052218,23761370,4
+he3764,23761370,4
+44653441,23761370,5
+64681504,23761370,5
+melodymanson,23761370,4
+qino,23761370,5
+a5673941,23761370,5
+53801856,23761370,5
+yazizi77,23761370,4
+62014355,23761370,4
+62498830,23761370,4
+tommy_97,23761370,4
+subaru244,23761370,4
+36692191,23761370,5
+44257922,23761370,3
+75412699,23761370,4
+daphneleaf,23761370,2
+82261308,23761370,3
+80013790,23761370,4
+mrchengz,23761370,5
+50124221,23761370,5
+sinnyn,23761370,5
+haocai,23761370,5
+talyscream,23761370,3
+Immortal-mo,23761370,4
+80194301,23761370,5
+49250815,23761370,5
+viviastraea,23761370,5
+viviastraea,23761370,5
+Hazelxxxx,23761370,5
+83648274,23761370,5
+54938342,23761370,5
+Rita_Amber,23761370,2
+n1ev,23761370,4
+q2lee,23761370,5
+53933925,23761370,3
+62453510,23761370,5
+44351082,23761370,4
+79260802,23761370,4
+55273592,23761370,5
+lujinlu,23761370,5
+45511772,23761370,5
+4396218,23761370,5
+yuaryant,23761370,5
+51887409,23761370,5
+tof,23761370,-1
+zzheng,23761370,5
+49016330,23761370,4
+hill__,23761370,4
+stuxiaoqiang,23761370,4
+kk_22,23761370,4
+qianglavender,23761370,3
+luizspirit,23761370,4
+69068097,23761370,5
+ylo1995,23761370,4
+punaisilvia,23761370,5
+frostar,23761370,5
+nian-an,23761370,5
+heatheeer,23761370,4
+69773402,23761370,5
+22871497,23761370,5
+whateverp,23761370,5
+49520911,23761370,3
+83162641,23761370,3
+99526866,23761370,3
+4564695,23761370,3
+62209116,23761370,4
+2364578,23761370,4
+Floverer822,23761370,5
+xierui1841,23761370,5
+2836389,23761370,4
+33329266,23761370,4
+42979713,23761370,4
+sevend106,23761370,5
+4451071,23761370,4
+26318012,23761370,5
+bonniecheung926,23761370,3
+xi23lee,23761370,4
+41891695,23761370,5
+78642636,23761370,5
+4500589,23761370,4
+CHRISTIANWANG,23761370,3
+kimnamhwa,23761370,5
+61589037,23761370,5
+dancing.girl,23761370,4
+52862784,23761370,5
+Sombra,23761370,4
+Fice,23761370,-1
+bingbingsc,23761370,5
+4022317,23761370,3
+89749009,23761370,5
+63548451,23761370,3
+lolli_yj,23761370,4
+51583306,23761370,4
+8836079,23761370,4
+1510862,23761370,4
+1478763,23761370,3
+44251891,23761370,4
+46430952,23761370,5
+wonderfulBonnie,23761370,3
+cassiopeiacai,23761370,4
+ssssherry,23761370,5
+54269260,23761370,5
+42540527,23761370,5
+62181246,23761370,5
+KarenFei,23761370,5
+15923288,23761370,4
+114614912,23761370,5
+57982510,23761370,4
+ReginaYu,23761370,4
+littlethinker,23761370,4
+61247946,23761370,5
+47363870,23761370,3
+63407342,23761370,4
+YJXMYT,23761370,5
+65111838,23761370,3
+mageng,23761370,5
+57589518,23761370,4
+35739270,23761370,5
+darkscorpion,23761370,4
+48916211,23761370,5
+67679479,23761370,5
+82332601,23761370,5
+pengchen,23761370,5
+cherryjoanna,23761370,1
+44105864,23761370,3
+57398866,23761370,4
+caspiandc,23761370,3
+yilai4ever,23761370,4
+2304159,23761370,3
+119772383,23761370,4
+2441016,23761370,5
+36118700,23761370,5
+38508757,23761370,5
+dearbeast,23761370,4
+47784827,23761370,4
+63993568,23761370,4
+sugarl,23761370,5
+lizzy2005,23761370,3
+62275045,23761370,3
+53144791,23761370,4
+yiliaobailiao,23761370,4
+50984634,23761370,5
+xiongweilin,23761370,4
+hualuowushengsi,23761370,5
+shouting0,23761370,1
+58376934,23761370,5
+80162698,23761370,5
+62544966,23761370,5
+2671536,23761370,5
+jinxin19841010,23761370,2
+amberlineating,23761370,2
+2527582,23761370,5
+125623743,23761370,5
+2049952,23761370,5
+63500576,23761370,5
+baby9410,23761370,4
+84976855,23761370,3
+lsy34,23761370,5
+3132362,23761370,4
+easyfeel,23761370,4
+76443964,23761370,5
+125571207,23761370,4
+82909007,23761370,4
+45322158,23761370,5
+2660090,23761370,4
+ohlinh89,23761370,5
+48480567,23761370,4
+51300065,23761370,5
+yukuai,23761370,-1
+donkeyzhang,23761370,3
+7107135,23761370,4
+3085208,23761370,5
+55682383,23761370,3
+2468888,23761370,4
+44917374,23761370,3
+68770847,23761370,4
+42550528,23761370,5
+4094871,23761370,5
+doris19921203,23761370,3
+42542197,23761370,4
+lynn310,23761370,5
+52956842,23761370,3
+121469548,23761370,4
+2574364,23761370,3
+missmole22,23761370,4
+jjdessxn,23761370,4
+91712143,23761370,5
+119233768,23761370,5
+38085562,23761370,5
+47194171,23761370,1
+56931484,23761370,3
+raven_w,23761370,5
+LuckyMagic,23761370,5
+mesjustt,23761370,4
+49509949,23761370,5
+125618871,23761370,5
+antonia422,23761370,4
+MOKUZJY,23761370,5
+4418842,23761370,5
+1767400,23761370,5
+53585857,23761370,3
+90642825,23761370,5
+53132873,23761370,5
+57486272,23761370,4
+enjoy826,23761370,4
+42179639,23761370,5
+hydrofluo,23761370,5
+57065228,23761370,5
+116732161,23761370,1
+2916561,23761370,3
+canxue911,23761370,3
+72684280,23761370,4
+53774748,23761370,5
+84057160,23761370,5
+qingxuan0706,23761370,5
+4766836,23761370,3
+80156653,23761370,5
+15367255,23761370,4
+tomorrowhl,23761370,4
+baobaolilei,23761370,5
+91018361,23761370,1
+blackvenus,23761370,5
+48363785,23761370,5
+47180334,23761370,5
+59396311,23761370,4
+smallcolor,23761370,-1
+qdy67oky57,23761370,5
+79381337,23761370,5
+4295203,23761370,5
+60380024,23761370,3
+sisi_ly,23761370,5
+34203224,23761370,3
+87222005,23761370,2
+62556477,23761370,3
+54073158,23761370,5
+summercharon,23761370,5
+2092765,23761370,4
+119151261,23761370,3
+cindychan89,23761370,4
+2048690,23761370,4
+99761346,23761370,5
+50902143,23761370,-1
+52070312,23761370,4
+85384710,23761370,5
+73057111,23761370,5
+32914940,23761370,-1
+50747236,23761370,3
+harukolin,23761370,4
+nemopapa,23761370,5
+tongzai,23761370,5
+55480143,23761370,5
+bololo923,23761370,4
+48248068,23761370,5
+60051093,23761370,2
+43087425,23761370,5
+3278389,23761370,3
+64801771,23761370,3
+33439516,23761370,4
+50204574,23761370,5
+44209549,23761370,3
+69455218,23761370,1
+122758279,23761370,5
+Weltvonvicky,23761370,4
+YellowDi,23761370,4
+60487756,23761370,4
+55866534,23761370,3
+seal4,23761370,4
+55968360,23761370,4
+Swangshu,23761370,3
+104799628,23761370,5
+renzw,23761370,-1
+60537174,23761370,3
+2301386,23761370,4
+55886551,23761370,4
+69599901,23761370,4
+17549723,23761370,3
+jiangnancao,23761370,3
+52104896,23761370,4
+lowbroadway,23761370,-1
+43274915,23761370,4
+64951594,23761370,4
+aroundall,23761370,3
+21139926,23761370,3
+lovekym,23761370,5
+54885275,23761370,3
+49663981,23761370,4
+63343874,23761370,5
+64259816,23761370,5
+x7summer,23761370,4
+49198106,23761370,5
+eonardo,23761370,-1
+68674167,23761370,4
+70300302,23761370,2
+58808535,23761370,4
+46976976,23761370,5
+lianwei,23761370,4
+51446945,23761370,4
+youmai,23761370,5
+50048803,23761370,5
+100625640,23761370,5
+42272839,23761370,3
+52948477,23761370,3
+70069626,23761370,5
+32937331,23761370,5
+Oil,23761370,4
+lqc_amen,23761370,4
+33761032,23761370,5
+83996558,23761370,5
+kenosisy,23761370,5
+62374245,23761370,4
+3587701,23761370,3
+79507251,23761370,4
+67373623,23761370,5
+32931583,23761370,4
+VYSE,23761370,3
+47996234,23761370,4
+57425096,23761370,4
+81822817,23761370,4
+Singfukua,23761370,5
+71970216,23761370,3
+maddaemon,23761370,5
+70458781,23761370,5
+2920373,23761370,5
+shmily_yummy,23761370,5
+zht90130,23761370,5
+53650978,23761370,5
+xinglu,23761370,4
+79533497,23761370,5
+78377948,23761370,3
+ibenchenhk,23761370,4
+64004989,23761370,4
+cect,23761370,2
+83746312,23761370,5
+41041352,23761370,4
+lher,23761370,4
+1446546,23761370,3
+sariel17,23761370,5
+57155123,23761370,4
+whscale,23761370,5
+70464788,23761370,5
+58955045,23761370,5
+52098177,23761370,4
+liumixi,23761370,5
+2879168,23761370,3
+weiqiboxes,23761370,5
+120961971,23761370,5
+26161451,23761370,5
+2245607,23761370,4
+pinoco,23761370,4
+62189645,23761370,4
+mianhuapaopao,23761370,5
+4442836,23761370,4
+4563516,23761370,5
+67416002,23761370,3
+1865210,23761370,5
+43784506,23761370,4
+51048475,23761370,5
+58207796,23761370,3
+114034987,23761370,5
+72096774,23761370,4
+3832866,23761370,4
+tt0523_hitomi,23761370,4
+54239971,23761370,4
+1493055,23761370,4
+tinkertseng,23761370,4
+foreverjc,23761370,3
+zg1999,23761370,5
+3887563,23761370,5
+2197974,23761370,3
+solidgal,23761370,4
+Zazai,23761370,3
+55915062,23761370,5
+47776464,23761370,3
+3916419,23761370,5
+LXJAAA,23761370,4
+125606279,23761370,3
+54196095,23761370,5
+49593703,23761370,4
+44929656,23761370,5
+3499669,23761370,-1
+mirrorsx,23761370,4
+35436010,23761370,4
+1723553,23761370,3
+73662661,23761370,4
+62146907,23761370,4
+1677956,23761370,4
+Hermionexu,23761370,4
+caseyqian,23761370,5
+104365227,23761370,5
+lzacg,23761370,5
+joycelam,23761370,3
+92894015,23761370,4
+3771616,23761370,3
+little_baby,23761370,5
+MRMavis,23761370,5
+46147645,23761370,3
+71296394,23761370,5
+58170865,23761370,1
+rainbow007,23761370,1
+91201009,23761370,3
+49129674,23761370,4
+zuoxiaoer,23761370,5
+legnaflow,23761370,-1
+29872538,23761370,4
+caizhidao,23761370,5
+52887286,23761370,3
+52575839,23761370,5
+ziyanziyu1024,23761370,3
+allow,23761370,4
+76498254,23761370,4
+jingly,23761370,5
+65150126,23761370,5
+63889015,23761370,4
+69547285,23761370,4
+49159382,23761370,5
+Lreckle,23761370,4
+64565262,23761370,3
+58310803,23761370,2
+51777034,23761370,5
+70678195,23761370,4
+hanadomoto,23761370,5
+64120999,23761370,3
+mmissfreak,23761370,3
+49497688,23761370,5
+98522536,23761370,5
+miwuning,23761370,5
+70862960,23761370,3
+70862960,23761370,3
+48273208,23761370,4
+3105262,23761370,5
+melonkim,23761370,4
+ccpamela,23761370,5
+oldwolfnwf,23761370,4
+3405562,23761370,4
+cescape,23761370,3
+3611128,23761370,3
+midoribear,23761370,5
+67822391,23761370,4
+49294423,23761370,3
+53152941,23761370,4
+sinky1022,23761370,-1
+wenbo2003,23761370,4
+35681480,23761370,5
+2253061,23761370,4
+10906353,23761370,5
+emmalins,23761370,5
+51490972,23761370,4
+3741660,23761370,4
+memechayedandan,23761370,5
+33489379,23761370,4
+RIKI1013,23761370,5
+91310062,23761370,5
+69287943,23761370,5
+wheelerinprc,23761370,5
+124741216,23761370,5
+quanlong35,23761370,5
+mh1230,23761370,5
+jz505877549,23761370,5
+48917306,23761370,5
+18268808,23761370,5
+2123767,23761370,5
+1998296,23761370,4
+74013127,23761370,4
+2889364,23761370,4
+zhangjikun,23761370,4
+suntt1987,23761370,5
+rosaline603,23761370,5
+sharonsama,23761370,4
+44066476,23761370,4
+4411646,23761370,3
+34142242,23761370,4
+zhaobo525,23761370,5
+zazahuang,23761370,3
+13280049,23761370,4
+4696594,23761370,4
+yangyu870118,23761370,4
+39941847,23761370,3
+119456663,23761370,5
+52219315,23761370,3
+anxin817,23761370,5
+65355841,23761370,1
+41576221,23761370,5
+123007416,23761370,-1
+71407779,23761370,5
+60157768,23761370,3
+71325468,23761370,3
+57847628,23761370,5
+63230793,23761370,4
+58161520,23761370,5
+62491542,23761370,4
+timiroya,23761370,5
+70856854,23761370,4
+66706166,23761370,5
+blue995,23761370,4
+81748834,23761370,5
+66053525,23761370,5
+120879875,23761370,5
+wangxingq,23761370,4
+65669179,23761370,4
+xiangpiduck,23761370,3
+74418627,23761370,4
+dodo6060,23761370,4
+haruka49,23761370,4
+Kiwi0213,23761370,5
+125603372,23761370,4
+wuxubo,23761370,3
+43800651,23761370,4
+35376391,23761370,3
+30258001,23761370,4
+adaxu_22,23761370,4
+3929718,23761370,5
+kukushanhu,23761370,3
+65087582,23761370,4
+fluid_time,23761370,4
+blackmeajump,23761370,5
+carhfq,23761370,5
+1794888,23761370,4
+aolantuo7,23761370,4
+69277440,23761370,5
+61094425,23761370,3
+bbqdfc,23761370,4
+68909177,23761370,5
+2285107,23761370,4
+MaxHwang,23761370,4
+62692147,23761370,4
+56392867,23761370,5
+57906045,23761370,5
+67832663,23761370,5
+maxrins,23761370,4
+dovehenry,23761370,4
+30732044,23761370,4
+54537877,23761370,3
+feizi828,23761370,5
+hachien,23761370,5
+fan_tuan,23761370,4
+57803183,23761370,4
+75691865,23761370,4
+xiaoju811,23761370,4
+52471468,23761370,3
+FFcontinue,23761370,4
+nightw1sh,23761370,5
+121333868,23761370,5
+83229871,23761370,4
+Iamlazylady,23761370,5
+59012176,23761370,4
+myxiguachong,23761370,5
+46721596,23761370,5
+61054348,23761370,5
+51354725,23761370,2
+donbeet,23761370,5
+1373185,23761370,5
+kalviny,23761370,4
+46053347,23761370,2
+2442714,23761370,5
+51679834,23761370,5
+3133701,23761370,3
+xiaoshurui,23761370,5
+50451911,23761370,5
+doremicowcow,23761370,3
+petitenianni,23761370,4
+1264144,23761370,5
+58601681,23761370,5
+68934155,23761370,4
+65032980,23761370,3
+108685938,23761370,4
+amberxie,23761370,4
+66191716,23761370,4
+braunschweigen,23761370,1
+44075578,23761370,5
+truth3204,23761370,5
+ziamy,23761370,4
+frnong,23761370,5
+44076262,23761370,5
+58802831,23761370,5
+114336232,23761370,5
+52391581,23761370,4
+53378829,23761370,5
+53768020,23761370,4
+56649250,23761370,5
+46630645,23761370,5
+48289085,23761370,4
+4301756,23761370,4
+64161971,23761370,5
+49871021,23761370,3
+62362303,23761370,5
+lovemycats,23761370,3
+dieonTV,23761370,4
+27676863,23761370,4
+liaoshun,23761370,2
+22704444,23761370,2
+awooda,23761370,3
+beyo213,23761370,5
+lizi0522,23761370,2
+mxmxmxxx,23761370,3
+125580017,23761370,5
+97320944,23761370,5
+57249307,23761370,5
+liyuchun521,23761370,5
+47469828,23761370,5
+cindy1225,23761370,4
+102024870,23761370,4
+cuckon,23761370,2
+69276638,23761370,5
+56028399,23761370,5
+53886253,23761370,5
+I_love_night,23761370,5
+125601240,23761370,5
+87382837,23761370,3
+2394789,23761370,5
+markwh,23761370,4
+56692728,23761370,3
+52668501,23761370,3
+34155630,23761370,4
+99329587,23761370,4
+61486120,23761370,3
+50062701,23761370,5
+candyrice,23761370,5
+49201790,23761370,3
+95046585,23761370,5
+41640054,23761370,5
+40339894,23761370,5
+1256699,23761370,4
+28881965,23761370,5
+tong0803,23761370,5
+qianshu19921105,23761370,5
+1427219,23761370,2
+31949524,23761370,4
+121403067,23761370,5
+chenknight,23761370,2
+sui2,23761370,3
+Seven22,23761370,5
+CitrusSinensis,23761370,4
+32796713,23761370,5
+33597419,23761370,3
+71588552,23761370,5
+2904199,23761370,5
+43354957,23761370,4
+120334801,23761370,3
+54466190,23761370,4
+46091388,23761370,4
+missx009,23761370,5
+50059470,23761370,4
+58526834,23761370,3
+jingtao666,23761370,5
+48254044,23761370,4
+litestix,23761370,4
+54224355,23761370,3
+erfenzhier,23761370,1
+80193020,23761370,4
+44720442,23761370,4
+vancheung,23761370,5
+1885662,23761370,4
+hellolilian,23761370,4
+yanranseven,23761370,5
+4684844,23761370,4
+storyofwind,23761370,5
+63902835,23761370,2
+54013260,23761370,4
+zyv1224,23761370,5
+Opensky,23761370,4
+77852143,23761370,5
+liunizhou,23761370,3
+25572888,23761370,5
+4324357,23761370,4
+omegaenming,23761370,5
+gretchen_n,23761370,4
+CeciYY,23761370,3
+CeciYY,23761370,3
+76615274,23761370,5
+63356616,23761370,5
+nancyxnancy,23761370,4
+yigeguniang,23761370,4
+zhilanas,23761370,5
+54555394,23761370,5
+120996063,23761370,5
+40553391,23761370,4
+fuckpussy,23761370,4
+liangwor,23761370,5
+acmilanzjt,23761370,5
+3974458,23761370,3
+55840798,23761370,5
+80935389,23761370,4
+67739152,23761370,4
+65354428,23761370,4
+48347367,23761370,4
+52730600,23761370,5
+107495405,23761370,5
+65357742,23761370,5
+1379348,23761370,5
+sircayden,23761370,5
+2113261,23761370,5
+A.Plus,23761370,4
+69019465,23761370,5
+57285886,23761370,4
+45491031,23761370,5
+42224337,23761370,5
+verylittleyy,23761370,5
+84128772,23761370,5
+83161147,23761370,3
+51617541,23761370,5
+78857918,23761370,3
+zlpEcho,23761370,4
+36021000,23761370,5
+49366823,23761370,4
+itochika,23761370,5
+blackcatzh,23761370,4
+38585131,23761370,4
+51503805,23761370,4
+64704924,23761370,4
+61651911,23761370,5
+36124836,23761370,5
+50965120,23761370,5
+whitesomnus,23761370,5
+68467702,23761370,5
+71953415,23761370,3
+84453809,23761370,3
+yuanqing630,23761370,5
+Even5free,23761370,5
+60027417,23761370,-1
+YYIloveU,23761370,-1
+49181549,23761370,4
+66380921,23761370,3
+toyomana,23761370,4
+34464499,23761370,4
+62729048,23761370,-1
+Amy1012838842,23761370,5
+55293243,23761370,4
+jingjiyu,23761370,4
+4376883,23761370,3
+sunking_fish,23761370,4
+46042930,23761370,4
+luvcc,23761370,5
+75006194,23761370,5
+12198403,23761370,5
+51255691,23761370,5
+8797571,23761370,5
+58359727,23761370,5
+53594562,23761370,5
+OnePiece0505,23761370,5
+75861008,23761370,4
+125268010,23761370,5
+lachaohuage,23761370,5
+MONSTER-HaN,23761370,5
+56268506,23761370,4
+3776067,23761370,4
+77605914,23761370,5
+23712945,23761370,4
+1761365,23761370,5
+doctorzark,23761370,5
+dreammx,23761370,5
+black0144,23761370,4
+acacia_acacia,23761370,4
+67211553,23761370,5
+48940214,23761370,5
+M1993interspace,23761370,5
+2700487,23761370,5
+terryguy,23761370,4
+72590868,23761370,3
+3116029,23761370,3
+holicjack,23761370,5
+43891940,23761370,4
+lonelycloud,23761370,5
+wait2000,23761370,5
+minami_yan,23761370,4
+36676307,23761370,5
+76618509,23761370,3
+80687112,23761370,5
+57230631,23761370,4
+116277859,23761370,5
+57767148,23761370,5
+54452549,23761370,5
+114505579,23761370,5
+63658075,23761370,-1
+2978272,23761370,4
+4614727,23761370,4
+66644571,23761370,5
+83962986,23761370,4
+36090011,23761370,3
+1310682,23761370,4
+43236574,23761370,5
+44589602,23761370,4
+34387132,23761370,4
+47039890,23761370,5
+45806509,23761370,4
+sentimen,23761370,3
+47376302,23761370,3
+4157643,23761370,4
+yamin1004,23761370,3
+sriloter,23761370,4
+chuanshu,23761370,4
+69808049,23761370,5
+60032619,23761370,3
+lovelans,23761370,5
+baleyang,23761370,4
+1285602,23761370,4
+45595430,23761370,4
+taozi9129,23761370,4
+fancygy,23761370,5
+3603174,23761370,5
+56972307,23761370,5
+44203776,23761370,4
+50082759,23761370,4
+4365983,23761370,4
+124396719,23761370,5
+chennanlydia,23761370,4
+4039085,23761370,3
+beiliya6261,23761370,3
+2265138,23761370,5
+shx303766095,23761370,4
+78833399,23761370,4
+42962790,23761370,4
+dyx1995,23761370,4
+73031295,23761370,5
+45540102,23761370,5
+4862060,23761370,5
+callmeblack,23761370,3
+stevenfive,23761370,5
+59836459,23761370,5
+why901019,23761370,4
+81414068,23761370,4
+1605000,23761370,4
+70441935,23761370,5
+GCGIN,23761370,4
+83977213,23761370,4
+104170571,23761370,5
+47854967,23761370,3
+57326927,23761370,5
+zfy,23761370,5
+53659664,23761370,3
+120643551,23761370,4
+alisonend,23761370,4
+L3322,23761370,5
+51618855,23761370,4
+xiaogege,23761370,3
+62896016,23761370,4
+78473259,23761370,4
+XLL86,23761370,5
+79404315,23761370,5
+79746301,23761370,4
+65311254,23761370,5
+48371435,23761370,5
+3249318,23761370,4
+91687098,23761370,5
+pineapples,23761370,3
+83492460,23761370,2
+81048960,23761370,4
+zhaozhaoyu,23761370,5
+50698080,23761370,4
+53293615,23761370,5
+45382410,23761370,4
+125199315,23761370,5
+JCJC,23761370,4
+114499538,23761370,4
+leteen,23761370,4
+56886215,23761370,4
+shenghui,23761370,4
+49830114,23761370,5
+psychycokie,23761370,4
+therealme,23761370,5
+aioxvx,23761370,4
+121340549,23761370,4
+70121595,23761370,4
+48976619,23761370,3
+32433633,23761370,3
+evil1008,23761370,4
+fenglai,23761370,5
+54647143,23761370,5
+34274621,23761370,5
+115613463,23761370,5
+85423911,23761370,5
+102733238,23761370,4
+toddzhou,23761370,4
+2243854,23761370,5
+isolated,23761370,4
+24787645,23761370,5
+48056062,23761370,3
+zhchtcm,23761370,5
+eddy_charlie,23761370,4
+mohoko,23761370,4
+jeffreypku,23761370,3
+72371285,23761370,4
+ivvvvvyz,23761370,-1
+sleeper0803,23761370,5
+miqingye,23761370,4
+58861409,23761370,5
+57734564,23761370,4
+40425458,23761370,5
+92494614,23761370,5
+53861958,23761370,4
+ngqmtm,23761370,1
+liuningba,23761370,4
+kanzaki666,23761370,5
+ronyi,23761370,4
+4311389,23761370,5
+ELSIE627,23761370,5
+cherryxgoose,23761370,5
+50179673,23761370,5
+59380774,23761370,4
+62240745,23761370,4
+jiao.s,23761370,2
+57059937,23761370,4
+36757046,23761370,5
+50637640,23761370,2
+50490367,23761370,3
+lyming,23761370,4
+45953948,23761370,5
+37818937,23761370,-1
+nick1989s,23761370,4
+shuishou1121,23761370,3
+96785209,23761370,5
+58111972,23761370,4
+104261144,23761370,2
+49152036,23761370,4
+simsummer,23761370,4
+46057903,23761370,5
+80786128,23761370,5
+anqixue,23761370,4
+34558419,23761370,4
+59345564,23761370,3
+44445592,23761370,5
+60566231,23761370,5
+53166913,23761370,5
+51232738,23761370,3
+sunny_shin,23761370,4
+FixtheShadow,23761370,5
+123469699,23761370,5
+67949840,23761370,5
+53248408,23761370,4
+dodo729,23761370,5
+jessiepan0322,23761370,4
+58165403,23761370,4
+92386300,23761370,4
+the_end_,23761370,4
+102165650,23761370,5
+momokoochan,23761370,-1
+63214398,23761370,4
+37679542,23761370,2
+69100167,23761370,5
+40957904,23761370,4
+62954689,23761370,4
+103372722,23761370,4
+sunnyleaves,23761370,5
+54020507,23761370,5
+81407852,23761370,4
+moverh,23761370,4
+55898218,23761370,5
+oozhu,23761370,4
+50724471,23761370,5
+32693161,23761370,5
+57079571,23761370,5
+65092466,23761370,3
+83211889,23761370,3
+40172272,23761370,4
+70136100,23761370,5
+94032763,23761370,3
+55391849,23761370,4
+coolluo_zw,23761370,4
+84191506,23761370,5
+52095918,23761370,4
+62503467,23761370,4
+1760246,23761370,4
+xffeng,23761370,5
+emyllis,23761370,4
+Aquarius_Girl,23761370,4
+70488915,23761370,4
+kamisangma,23761370,5
+jechy1989,23761370,5
+meowmadam,23761370,3
+60307625,23761370,4
+miffy23,23761370,4
+58948623,23761370,4
+summermilan,23761370,3
+51945136,23761370,4
+87910088,23761370,5
+63125292,23761370,4
+50222908,23761370,5
+50222083,23761370,4
+parisyang3,23761370,3
+tow55,23761370,5
+67812928,23761370,3
+eric9210,23761370,5
+40687803,23761370,2
+JoeBazinga,23761370,5
+youdebin1992,23761370,4
+57905126,23761370,5
+icetar,23761370,3
+skyisquiet,23761370,5
+54893820,23761370,3
+50874756,23761370,5
+104492454,23761370,5
+lazyjo,23761370,5
+zjjhbsy,23761370,1
+2087096,23761370,4
+43762975,23761370,4
+71973157,23761370,5
+hughwolfgang,23761370,3
+ltec,23761370,4
+ywbomhf,23761370,3
+78656769,23761370,4
+97415424,23761370,5
+65329885,23761370,5
+4842718,23761370,5
+71269156,23761370,2
+acbc115,23761370,5
+janie225,23761370,5
+59928549,23761370,5
+45018116,23761370,5
+43221002,23761370,3
+yoghurtfree,23761370,4
+48003505,23761370,4
+121047961,23761370,5
+65367030,23761370,5
+96632957,23761370,5
+64488019,23761370,5
+rurikotea,23761370,5
+58419588,23761370,5
+82367118,23761370,4
+xiaoyudian,23761370,5
+xysund,23761370,5
+1645248,23761370,3
+jaytrance,23761370,3
+desertsann,23761370,5
+calfen,23761370,3
+54051724,23761370,4
+80808248,23761370,5
+88987147,23761370,4
+57453667,23761370,5
+57453667,23761370,5
+32025786,23761370,4
+78957265,23761370,-1
+81002115,23761370,4
+CHZHWen,23761370,5
+ppf116,23761370,3
+olivialuan,23761370,5
+3359055,23761370,1
+59669866,23761370,5
+72044584,23761370,4
+olivia1003,23761370,3
+a_weirdo,23761370,4
+jerryxiao1988,23761370,4
+50747518,23761370,5
+37605566,23761370,2
+gengxiang2012,23761370,4
+G-one,23761370,5
+52558781,23761370,-1
+tottibai,23761370,5
+jasonwoodlsj,23761370,4
+49120710,23761370,4
+59408878,23761370,2
+54336874,23761370,4
+52705401,23761370,-1
+75283214,23761370,4
+4283326,23761370,3
+smallove816,23761370,-1
+119418827,23761370,5
+90564411,23761370,3
+37688904,23761370,3
+summermaoyi,23761370,4
+69763950,23761370,5
+16073149,23761370,5
+73061172,23761370,5
+55959083,23761370,5
+wangxiaomo,23761370,3
+55460955,23761370,5
+50444681,23761370,5
+85580339,23761370,5
+49097725,23761370,5
+56998461,23761370,5
+60633670,23761370,5
+taurusdai,23761370,4
+amanjj,23761370,-1
+47132268,23761370,4
+yingyujiaoshi,23761370,4
+2946787,23761370,3
+3061850,23761370,-1
+48364946,23761370,1
+43120723,23761370,4
+TEGONGAE86,23761370,5
+62929476,23761370,5
+59333652,23761370,1
+55444668,23761370,4
+43773144,23761370,5
+45099341,23761370,4
+49088510,23761370,3
+TakeItEasyTed,23761370,3
+50570932,23761370,4
+soquiet4,23761370,5
+zooooooj,23761370,3
+warden_cauc,23761370,5
+49436551,23761370,3
+87922451,23761370,3
+poline,23761370,4
+50066009,23761370,4
+102409204,23761370,5
+31249683,23761370,5
+82145368,23761370,4
+wangzhumei,23761370,4
+CSMiss,23761370,5
+hxmmzl,23761370,5
+63658067,23761370,4
+51275993,23761370,4
+catcher.lo,23761370,3
+4657582,23761370,5
+shuliguo,23761370,5
+77698571,23761370,4
+79073234,23761370,5
+55296834,23761370,5
+3153443,23761370,4
+45522216,23761370,4
+62879204,23761370,2
+62151456,23761370,4
+66926678,23761370,3
+49139242,23761370,5
+jpdong,23761370,5
+leachun,23761370,5
+perfectdemon,23761370,4
+wotaomei,23761370,5
+skywalkerw,23761370,5
+2740339,23761370,5
+coual,23761370,5
+34835512,23761370,5
+16437500,23761370,2
+62835830,23761370,5
+81384765,23761370,5
+78724064,23761370,3
+closeyoureyes,23761370,-1
+48120700,23761370,3
+corona92cml,23761370,5
+mauvey,23761370,3
+58019500,23761370,5
+44728276,23761370,5
+mrbeishuo,23761370,5
+115740561,23761370,5
+42000833,23761370,5
+Da.men,23761370,1
+shirleycapri,23761370,5
+40423448,23761370,-1
+palermo97,23761370,4
+17790607,23761370,4
+120686508,23761370,5
+7768202,23761370,5
+moleeatwood,23761370,5
+song1108,23761370,5
+72276081,23761370,4
+82764755,23761370,4
+58515646,23761370,5
+44175071,23761370,4
+xiaosheng814,23761370,5
+62740578,23761370,4
+CocoHu,23761370,4
+37310403,23761370,3
+Awewonderland,23761370,5
+51684202,23761370,5
+Janeintheair,23761370,-1
+45952735,23761370,4
+84785338,23761370,4
+simplelifer,23761370,4
+24888358,23761370,2
+woaikcc,23761370,5
+Hans_Du,23761370,4
+58737934,23761370,4
+30351647,23761370,3
+83415261,23761370,3
+54474181,23761370,4
+emotata,23761370,5
+wudongmian,23761370,5
+39747892,23761370,2
+planoto,23761370,4
+May_1s,23761370,5
+leroy313,23761370,4
+amis110,23761370,4
+48841040,23761370,4
+3657934,23761370,4
+67548909,23761370,4
+4247204,23761370,5
+82511491,23761370,5
+raintingfan,23761370,5
+sun_corydalis,23761370,5
+zolatemur,23761370,5
+yubin8725,23761370,5
+Susan-D,23761370,5
+renzongxian,23761370,5
+54076009,23761370,4
+68742620,23761370,4
+49008055,23761370,5
+yeyeyoung,23761370,5
+53952389,23761370,4
+shiyun.sherry,23761370,4
+64246935,23761370,5
+66528319,23761370,4
+35367539,23761370,4
+rikkuleonhart,23761370,4
+surebesure,23761370,4
+63218602,23761370,3
+51125825,23761370,5
+108821133,23761370,3
+rethatevon,23761370,4
+60349367,23761370,4
+eloise0114,23761370,4
+Mopeiz,23761370,4
+iqueen,23761370,3
+Mrzorro,23761370,5
+50124375,23761370,4
+51853962,23761370,4
+18937847,23761370,3
+42328531,23761370,5
+106423465,23761370,4
+83015759,23761370,5
+1042464,23761370,2
+1471682,23761370,3
+tolymoly,23761370,5
+Ss_33,23761370,5
+62623482,23761370,2
+4339155,23761370,4
+67011353,23761370,4
+89382029,23761370,1
+39628553,23761370,5
+64778238,23761370,4
+56694340,23761370,3
+47298387,23761370,5
+angelene11,23761370,5
+105588409,23761370,5
+65041509,23761370,5
+124650707,23761370,4
+carol3233,23761370,4
+45768600,23761370,5
+70875238,23761370,4
+70875238,23761370,4
+91690819,23761370,1
+vicky-maomao,23761370,4
+zsydd299,23761370,4
+Ava8023,23761370,5
+52903037,23761370,5
+114398918,23761370,5
+2521209,23761370,5
+L017,23761370,4
+50478596,23761370,5
+34719706,23761370,4
+47485602,23761370,4
+daisyz,23761370,5
+52097584,23761370,4
+59848632,23761370,4
+smcc911,23761370,4
+paranoiaman,23761370,3
+49072289,23761370,5
+lleytonia,23761370,4
+72415412,23761370,3
+72415412,23761370,3
+qzweixin,23761370,4
+49950062,23761370,-1
+yimr,23761370,5
+lovesoweak,23761370,5
+54999951,23761370,4
+80637982,23761370,4
+58223460,23761370,4
+Cinderellamay,23761370,5
+50188959,23761370,5
+latml,23761370,4
+fayeyes,23761370,2
+48505830,23761370,3
+qianxunweizi,23761370,3
+lovinggarfield,23761370,3
+58783819,23761370,3
+3344118,23761370,4
+114337993,23761370,4
+80193116,23761370,4
+51670628,23761370,4
+magicallss,23761370,5
+83312429,23761370,4
+49610582,23761370,-1
+jadebear,23761370,5
+61472693,23761370,4
+35595480,23761370,4
+jijigugumomo,23761370,5
+4673381,23761370,3
+34845334,23761370,4
+walktodream,23761370,4
+61894548,23761370,5
+85616230,23761370,2
+extremisme,23761370,4
+summeric,23761370,3
+xqsmao,23761370,3
+82908629,23761370,5
+52691772,23761370,5
+eevy,23761370,4
+54846832,23761370,5
+65232710,23761370,4
+3132782,23761370,4
+55275802,23761370,3
+4592364,23761370,3
+50467795,23761370,3
+34789683,23761370,4
+guanchangqi217,23761370,5
+MLMLMLMLML,23761370,4
+peggy0506,23761370,5
+57335774,23761370,4
+66893773,23761370,4
+57588789,23761370,4
+2145215,23761370,5
+43871620,23761370,5
+islandmeng,23761370,-1
+37038101,23761370,2
+57879215,23761370,5
+Miss.sian,23761370,5
+65749036,23761370,3
+2737445,23761370,4
+1585222,23761370,5
+63985702,23761370,4
+mannamelike,23761370,5
+64153022,23761370,4
+62024381,23761370,5
+45340915,23761370,3
+88063399,23761370,4
+57826492,23761370,4
+jokelvin,23761370,4
+47798709,23761370,5
+80381774,23761370,4
+zhushuyeyun,23761370,5
+changkxs,23761370,3
+67918582,23761370,4
+77802850,23761370,3
+79142901,23761370,4
+73261780,23761370,1
+37675452,23761370,4
+51568494,23761370,4
+drydrysun,23761370,5
+3669366,23761370,5
+maggiejingliu,23761370,3
+dodoo7,23761370,4
+netease,23761370,5
+kashing,23761370,4
+3641874,23761370,5
+54132457,23761370,5
+45238855,23761370,5
+59260003,23761370,4
+cooli,23761370,5
+bill86101,23761370,4
+45968027,23761370,3
+jingjingstill,23761370,4
+48090448,23761370,5
+lindsayzyh,23761370,5
+sosohuan1024,23761370,4
+gyd,23761370,4
+125505200,23761370,5
+93347677,23761370,3
+41970599,23761370,5
+80257835,23761370,4
+dotcon,23761370,5
+54444481,23761370,3
+oliviapalermo,23761370,4
+zhizhi913,23761370,4
+51836771,23761370,3
+62772373,23761370,3
+PKUTeaParty,23761370,4
+46263671,23761370,4
+54884554,23761370,4
+48253134,23761370,5
+61272151,23761370,5
+65207565,23761370,5
+chloecin,23761370,5
+68450942,23761370,3
+65908152,23761370,5
+jojoliu,23761370,5
+60803331,23761370,5
+sarielkyoto,23761370,5
+3709548,23761370,4
+54536309,23761370,5
+lvrenl,23761370,5
+48735350,23761370,5
+stephan1ee,23761370,4
+zitangyaye,23761370,4
+wjdszy,23761370,5
+wwl924,23761370,4
+120498509,23761370,4
+4805095,23761370,4
+randi0103,23761370,4
+8242631,23761370,3
+1418248,23761370,4
+51754967,23761370,5
+MaDMinD,23761370,3
+echowfy,23761370,3
+zjy1222,23761370,5
+xxffffxx,23761370,3
+47404227,23761370,5
+cskywalker,23761370,4
+55352127,23761370,5
+51162987,23761370,4
+3685431,23761370,3
+31640275,23761370,4
+aki0726,23761370,4
+65175468,23761370,4
+Nimeizi,23761370,4
+20719866,23761370,5
+57477853,23761370,3
+59777274,23761370,5
+54551118,23761370,5
+buto,23761370,4
+LiamGG,23761370,5
+guohaike,23761370,-1
+57420662,23761370,5
+32853386,23761370,4
+mmzshmilyyhf,23761370,5
+47885824,23761370,4
+36676686,23761370,2
+remmerber-love,23761370,3
+skyto77,23761370,3
+47187501,23761370,3
+47187501,23761370,3
+53255904,23761370,4
+godblesswho,23761370,3
+Kidult00,23761370,2
+4841197,23761370,3
+october16,23761370,5
+pannnnnnnda,23761370,3
+44965572,23761370,5
+73132535,23761370,5
+48027905,23761370,4
+64750111,23761370,4
+2991153,23761370,3
+yangchuqi,23761370,5
+kim37,23761370,5
+2562941,23761370,3
+Corrinne,23761370,3
+ashura0509,23761370,5
+3947110,23761370,4
+mirage1102,23761370,4
+amzhang,23761370,5
+49167214,23761370,5
+89661976,23761370,4
+42987999,23761370,3
+53981531,23761370,5
+64255299,23761370,4
+mosquito198611,23761370,4
+82705708,23761370,5
+mandylu2010,23761370,5
+2006580,23761370,4
+vikinglu,23761370,3
+4442734,23761370,5
+ohnirvana,23761370,5
+56782841,23761370,5
+4369687,23761370,5
+chonglian,23761370,4
+baicaitai,23761370,5
+46960084,23761370,3
+64292984,23761370,5
+lixintong,23761370,3
+Light_L,23761370,-1
+28536169,23761370,4
+2280761,23761370,4
+Chaldean,23761370,2
+kk470455349,23761370,5
+2242910,23761370,4
+70736653,23761370,4
+linnestudio,23761370,5
+61095404,23761370,3
+1957404,23761370,5
+52145003,23761370,1
+north7stars,23761370,3
+missZ.,23761370,5
+musicyue21,23761370,4
+76163964,23761370,4
+80026003,23761370,5
+75801738,23761370,4
+120735552,23761370,5
+63790894,23761370,4
+77196684,23761370,5
+60382121,23761370,-1
+44431964,23761370,5
+51994987,23761370,5
+cs1988,23761370,4
+lanzi0932,23761370,3
+77303569,23761370,4
+47805986,23761370,4
+nayumii,23761370,1
+nickbest0628,23761370,5
+47079979,23761370,-1
+im1dao,23761370,5
+71517855,23761370,4
+81370561,23761370,5
+47636927,23761370,4
+beckham4ever,23761370,5
+l87653125,23761370,5
+34310004,23761370,4
+flycanfly,23761370,4
+27561049,23761370,5
+81193986,23761370,5
+36665316,23761370,4
+kittiewong,23761370,5
+39770268,23761370,4
+84201055,23761370,4
+40193618,23761370,5
+79197554,23761370,3
+fanxiaodong,23761370,5
+daliaodelinju,23761370,4
+4652215,23761370,5
+51016470,23761370,-1
+2416471,23761370,4
+wuxi4945,23761370,1
+67262547,23761370,5
+xml1112,23761370,5
+Hellina,23761370,-1
+41353092,23761370,4
+lo0707,23761370,4
+49855743,23761370,4
+54183993,23761370,4
+Sabrina.hu,23761370,5
+58707026,23761370,5
+4589772,23761370,4
+51219877,23761370,4
+64884887,23761370,5
+58549386,23761370,3
+1343484,23761370,3
+wsgstrike,23761370,4
+122416993,23761370,5
+davidove,23761370,4
+37771312,23761370,5
+ywyjennifer,23761370,3
+bakaemono,23761370,5
+4742366,23761370,3
+1233601,23761370,3
+limingquan,23761370,4
+57025568,23761370,5
+8740692,23761370,4
+48362014,23761370,5
+42478117,23761370,5
+43609061,23761370,4
+40241060,23761370,5
+joshvietti,23761370,4
+125543674,23761370,5
+62959844,23761370,5
+114333708,23761370,4
+sophia_9,23761370,3
+C37twocold,23761370,4
+pcool,23761370,2
+3049354,23761370,3
+122609115,23761370,5
+kathy1105,23761370,3
+flyflyflyfly,23761370,4
+1369113,23761370,3
+49922437,23761370,4
+KILLERCAN,23761370,3
+clivery,23761370,3
+4580713,23761370,5
+2350943,23761370,5
+46312195,23761370,5
+photoshopper,23761370,2
+mafially,23761370,4
+1097543,23761370,4
+60941930,23761370,5
+63192479,23761370,5
+53244285,23761370,5
+23955475,23761370,5
+64864159,23761370,3
+55789619,23761370,-1
+79648024,23761370,5
+4140499,23761370,1
+robinsparrow,23761370,-1
+56958360,23761370,5
+ericjorgeeddy,23761370,5
+bainiqiu,23761370,-1
+1137133,23761370,4
+wander429,23761370,5
+dolly21,23761370,3
+63903096,23761370,4
+kindofbullshit,23761370,4
+siyannnn,23761370,-1
+27019548,23761370,5
+46039604,23761370,4
+64113505,23761370,5
+80163980,23761370,4
+124160413,23761370,5
+yiweicoffee,23761370,3
+rabbit_woman,23761370,5
+65413699,23761370,5
+i-m17,23761370,5
+wzy4u,23761370,5
+2472399,23761370,3
+53750492,23761370,4
+54459707,23761370,4
+hdcat45,23761370,4
+122117945,23761370,5
+ninquelote,23761370,4
+craneink,23761370,1
+6727013,23761370,5
+zhaoxiaodou,23761370,3
+kidmo,23761370,5
+jozenky,23761370,4
+jozenky,23761370,4
+Silvia0502,23761370,5
+guigui291,23761370,3
+118409742,23761370,4
+lf54,23761370,5
+hazel-y,23761370,5
+eleven_11,23761370,5
+min1,23761370,4
+JILI,23761370,3
+ice41322,23761370,4
+47289557,23761370,5
+57208665,23761370,4
+umeboshi,23761370,3
+zzzhanglisha,23761370,5
+DEARPOPO,23761370,5
+venicedream,23761370,5
+4774837,23761370,4
+cmisland,23761370,3
+62418670,23761370,3
+cyr9313,23761370,4
+cyr9313,23761370,4
+chenpei0318521,23761370,4
+fredsunhk,23761370,2
+51266289,23761370,5
+47604511,23761370,5
+partynight,23761370,5
+115622817,23761370,4
+mwangym,23761370,3
+4332615,23761370,5
+68157442,23761370,5
+4771574,23761370,4
+49422565,23761370,4
+66890717,23761370,5
+3194701,23761370,4
+3461747,23761370,4
+lovely-Sissi,23761370,5
+72946203,23761370,3
+daisylq,23761370,3
+48945780,23761370,4
+maxiaoyin,23761370,4
+woodwater4,23761370,3
+106964281,23761370,5
+3198997,23761370,4
+57297454,23761370,4
+iamliving,23761370,5
+66064592,23761370,4
+qq1994,23761370,4
+danielpaolod,23761370,5
+44844268,23761370,5
+Dushanbe,23761370,4
+kobekb,23761370,4
+42069915,23761370,5
+62923758,23761370,5
+57100027,23761370,5
+7881838,23761370,5
+107124348,23761370,5
+Xunyinmu,23761370,5
+lyzxoxo,23761370,5
+64932818,23761370,5
+46661734,23761370,4
+cheshiredoc,23761370,5
+luokuibumeng,23761370,5
+81377264,23761370,4
+94417936,23761370,3
+38303495,23761370,5
+yizesen,23761370,5
+119129227,23761370,3
+LarryLv,23761370,4
+mimi...,23761370,5
+4496437,23761370,4
+112962497,23761370,4
+51704621,23761370,4
+28288731,23761370,5
+ANI1222111314,23761370,5
+66650569,23761370,4
+joker619,23761370,5
+2456676,23761370,5
+46845043,23761370,5
+54666620,23761370,5
+57413910,23761370,2
+52791114,23761370,3
+asanjiamomo,23761370,4
+vigilgt,23761370,4
+119877742,23761370,5
+67649121,23761370,5
+47790252,23761370,4
+122075064,23761370,5
+cateill,23761370,5
+gardeniasky,23761370,3
+2383388,23761370,3
+bravoKc,23761370,4
+53857768,23761370,5
+niazion,23761370,5
+3986630,23761370,3
+youyoucc,23761370,3
+64972064,23761370,5
+66483711,23761370,5
+daiyuanvian,23761370,5
+53390395,23761370,5
+51303183,23761370,5
+56739185,23761370,5
+dustybaby,23761370,4
+coldmist,23761370,5
+57567703,23761370,4
+34015028,23761370,3
+suisuichen,23761370,5
+lynorsth,23761370,4
+48717452,23761370,5
+dwayneee,23761370,5
+verylolicon,23761370,4
+Enjoy1985,23761370,4
+dstro,23761370,4
+phoebes,23761370,3
+53577645,23761370,4
+3220875,23761370,5
+49825242,23761370,3
+54141840,23761370,5
+74856255,23761370,4
+yili911,23761370,2
+linlin009006,23761370,5
+53584866,23761370,4
+52157367,23761370,4
+65822347,23761370,3
+liweili,23761370,4
+2457200,23761370,1
+100530673,23761370,4
+52299023,23761370,3
+43295285,23761370,3
+36148411,23761370,5
+56411461,23761370,5
+zwbhappy,23761370,4
+125534246,23761370,4
+84655152,23761370,3
+stephy_mi,23761370,4
+43212336,23761370,4
+xrzsdan,23761370,4
+56485804,23761370,5
+mavishebelsie,23761370,5
+50533001,23761370,-1
+1945646,23761370,5
+monyaya,23761370,5
+71800701,23761370,3
+Cyanogencallio,23761370,4
+fangshixie,23761370,3
+70435217,23761370,4
+123335370,23761370,4
+108797239,23761370,5
+37811593,23761370,5
+mathewxiang,23761370,4
+54791351,23761370,5
+4799920,23761370,5
+liuxt,23761370,4
+lilygoy,23761370,5
+85213640,23761370,4
+48748065,23761370,4
+embee,23761370,-1
+volcancano,23761370,3
+13561643,23761370,5
+sanzihui,23761370,4
+yayuyi,23761370,5
+28308658,23761370,5
+61807648,23761370,3
+56813466,23761370,4
+xi_1483,23761370,5
+cgy0330,23761370,5
+86614728,23761370,4
+chenlijuan1003,23761370,3
+64819804,23761370,5
+4905483,23761370,-1
+51737837,23761370,5
+97649336,23761370,5
+66327848,23761370,5
+2705907,23761370,5
+62325505,23761370,4
+81927453,23761370,4
+58232627,23761370,4
+littlemoon218,23761370,4
+anaisanabel,23761370,3
+colin930,23761370,4
+90549927,23761370,5
+54049829,23761370,5
+125533269,23761370,5
+2668037,23761370,5
+28418359,23761370,4
+june1111,23761370,5
+3595385,23761370,5
+2596050,23761370,3
+mermaid39,23761370,3
+17683946,23761370,3
+24678754,23761370,5
+35183435,23761370,5
+64477541,23761370,4
+50621647,23761370,5
+1889026,23761370,3
+Carol_8507,23761370,4
+36930975,23761370,4
+qq53117256,23761370,4
+dabyrowe,23761370,5
+tcmttoto,23761370,3
+4633346,23761370,4
+1021230,23761370,4
+ramsestwo,23761370,4
+hey_zhan,23761370,4
+45573967,23761370,5
+lixiaoAMG,23761370,4
+87790169,23761370,3
+61579146,23761370,4
+119476678,23761370,4
+ziningcanyue,23761370,5
+matthewchen,23761370,5
+53926972,23761370,5
+52910028,23761370,5
+53925176,23761370,4
+47612067,23761370,3
+AFroThinda,23761370,4
+wskhandsome,23761370,4
+97013183,23761370,3
+125532429,23761370,5
+43648335,23761370,3
+sunhuaning,23761370,4
+sunhuaning,23761370,4
+guangmyirz,23761370,4
+lst_lovetvxq,23761370,4
+80653979,23761370,4
+30691035,23761370,4
+58233650,23761370,4
+shawivy,23761370,4
+82980188,23761370,2
+48798494,23761370,3
+51356383,23761370,4
+55543301,23761370,5
+60588164,23761370,4
+55378354,23761370,4
+39278293,23761370,4
+kazuho,23761370,4
+hanhnin,23761370,4
+Charlin_,23761370,5
+45786589,23761370,3
+57054371,23761370,5
+49386960,23761370,5
+49386960,23761370,5
+maggiexx,23761370,5
+51651519,23761370,4
+2753727,23761370,5
+4914439,23761370,4
+dandan0451,23761370,5
+90847864,23761370,4
+willydu,23761370,4
+50995944,23761370,4
+liujiao808,23761370,3
+55970012,23761370,3
+14966613,23761370,5
+zhongda925,23761370,4
+ddqr,23761370,4
+miaoyanhui,23761370,-1
+125531584,23761370,5
+finle,23761370,5
+125115229,23761370,-1
+2882324,23761370,4
+sumisumi,23761370,3
+63364481,23761370,5
+4643813,23761370,4
+vendome,23761370,3
+tiramisu-katy,23761370,5
+1099803,23761370,4
+jasmine0821,23761370,4
+weiminglu,23761370,4
+58596965,23761370,4
+58231376,23761370,4
+jiuzhao,23761370,4
+kenshinssz,23761370,5
+120695517,23761370,4
+piratecaptain,23761370,3
+nn1987814,23761370,3
+Elizabeth-Lee,23761370,5
+xuyansong,23761370,5
+Chappell.Wat,23761370,3
+90789559,23761370,5
+4290500,23761370,5
+2433992,23761370,3
+whdxaamark,23761370,4
+71639403,23761370,4
+xiaoyaozizai,23761370,5
+91515979,23761370,4
+hirair,23761370,4
+26149939,23761370,4
+36339319,23761370,5
+55640220,23761370,5
+2379338,23761370,4
+82765310,23761370,5
+54356096,23761370,4
+MomoHorin,23761370,5
+godvsghost,23761370,5
+xuwen7un,23761370,3
+saintdump,23761370,3
+seail,23761370,2
+43210476,23761370,4
+2620783,23761370,4
+miumiussss,23761370,3
+88816836,23761370,3
+2385520,23761370,4
+102960018,23761370,5
+64252672,23761370,4
+41571785,23761370,5
+50772354,23761370,4
+brightchai,23761370,5
+myc1993,23761370,2
+shangdixiaole,23761370,4
+8523675,23761370,4
+82813486,23761370,1
+little.pussy.jo,23761370,4
+53936236,23761370,5
+60061265,23761370,5
+2675939,23761370,5
+13864397,23761370,5
+40396294,23761370,4
+2764209,23761370,4
+alice0124,23761370,-1
+loriwithme,23761370,5
+cxq,23761370,3
+5800637,23761370,4
+3387514,23761370,5
+10724888,23761370,5
+glacierzbc,23761370,5
+2776554,23761370,5
+51812849,23761370,4
+echosanmao,23761370,4
+2763659,23761370,4
+51492643,23761370,5
+48690334,23761370,4
+3451324,23761370,2
+54519295,23761370,5
+47768622,23761370,5
+broccole,23761370,4
+Ane1114,23761370,3
+50769986,23761370,4
+66993627,23761370,4
+50412359,23761370,5
+1748014,23761370,3
+73562210,23761370,3
+aprilgarden,23761370,4
+ufokaka,23761370,5
+mystonesmy,23761370,5
+lufvi,23761370,5
+51584292,23761370,4
+57901422,23761370,4
+63760743,23761370,5
+71297783,23761370,3
+2036063,23761370,4
+dvddvd,23761370,5
+65135573,23761370,5
+1495292,23761370,4
+2316069,23761370,3
+52891081,23761370,5
+44901006,23761370,4
+42540342,23761370,3
+winnylee,23761370,5
+mylucky1010,23761370,5
+46680078,23761370,3
+41620486,23761370,5
+qmcream,23761370,4
+67680996,23761370,3
+cherry.cherry,23761370,5
+qianhenbangye,23761370,5
+34179195,23761370,5
+liuchen3254,23761370,5
+54574441,23761370,5
+1727376,23761370,4
+59738934,23761370,3
+4652776,23761370,4
+26650310,23761370,5
+51706956,23761370,5
+tracy0702,23761370,4
+miss-sun,23761370,4
+thoris,23761370,4
+suqianxia,23761370,5
+pmcmichelle,23761370,4
+35937463,23761370,4
+crystalshuishui,23761370,4
+3133331,23761370,-1
+52046119,23761370,4
+1412545,23761370,2
+60956192,23761370,5
+clytzessummer,23761370,4
+4564555,23761370,5
+zqzhuqiu,23761370,5
+hongxiaobao,23761370,3
+Sarinagara,23761370,4
+54506942,23761370,-1
+54983344,23761370,4
+kring,23761370,3
+9386655,23761370,2
+Roam9ng,23761370,4
+37573301,23761370,2
+3331389,23761370,5
+56015661,23761370,4
+3576334,23761370,5
+57246952,23761370,5
+47994797,23761370,5
+colorbeta,23761370,4
+59113427,23761370,5
+53648369,23761370,5
+42049184,23761370,2
+66361854,23761370,4
+79913596,23761370,5
+72368667,23761370,5
+92245110,23761370,3
+58701815,23761370,4
+41919176,23761370,4
+GilbertHong,23761370,3
+qwer3485,23761370,4
+tmd210,23761370,4
+mrockfire,23761370,5
+2960450,23761370,5
+A_R_C_rops,23761370,5
+57153590,23761370,3
+82227481,23761370,4
+65430008,23761370,4
+furien,23761370,3
+2275385,23761370,5
+121718178,23761370,4
+s_sunshine,23761370,5
+Rafe0323,23761370,5
+59760298,23761370,5
+55019164,23761370,5
+64375995,23761370,5
+wangeasy,23761370,4
+axknightroad,23761370,4
+53492986,23761370,3
+guoyifeng,23761370,4
+50017356,23761370,5
+90862997,23761370,5
+lilicici,23761370,4
+3781922,23761370,4
+82507807,23761370,5
+sereinyao,23761370,5
+56653841,23761370,4
+quanquan5885,23761370,5
+74214868,23761370,5
+mmhvv,23761370,5
+42723395,23761370,4
+63621475,23761370,5
+54001624,23761370,4
+42859204,23761370,5
+akixinru,23761370,5
+HottestDaisy,23761370,5
+panyupei,23761370,3
+merrythenight,23761370,4
+1857885,23761370,5
+candy9,23761370,5
+87209971,23761370,4
+4525468,23761370,-1
+49581171,23761370,5
+mancygreen,23761370,5
+120753848,23761370,5
+doubandayima,23761370,3
+haoxiaoning,23761370,3
+41444054,23761370,5
+52120890,23761370,5
+46337346,23761370,3
+41349161,23761370,4
+3561547,23761370,4
+48492382,23761370,3
+real-rex,23761370,5
+zhuluoo7,23761370,4
+elsaguoo,23761370,4
+120964759,23761370,5
+legarn,23761370,5
+50980258,23761370,5
+amyhe,23761370,5
+75001615,23761370,3
+honey_zhang,23761370,4
+3039071,23761370,5
+sunluilui,23761370,4
+85254473,23761370,3
+DOOLYUNI,23761370,4
+47215062,23761370,4
+75413985,23761370,5
+monkeyxuan,23761370,5
+93111568,23761370,5
+11012424,23761370,5
+54718568,23761370,5
+huangyuan_lan,23761370,4
+49872790,23761370,4
+72180654,23761370,4
+usstlxh,23761370,5
+83143363,23761370,5
+maloma1721x,23761370,5
+45242330,23761370,4
+60429218,23761370,5
+49003442,23761370,5
+3745748,23761370,3
+122573291,23761370,5
+36241769,23761370,3
+bluetracy0113,23761370,5
+La_hare,23761370,3
+65697187,23761370,3
+41492377,23761370,5
+xiaotuo,23761370,3
+56360766,23761370,3
+53317988,23761370,3
+information,23761370,5
+68227944,23761370,4
+62458268,23761370,5
+80398385,23761370,5
+zhanglanmo,23761370,5
+guxiaokun,23761370,5
+kecen,23761370,4
+spoil222,23761370,4
+57828738,23761370,4
+64225902,23761370,5
+gogonj,23761370,5
+2705335,23761370,3
+62386822,23761370,5
+kelvinleung,23761370,4
+52910728,23761370,4
+twinslt,23761370,4
+nunnun,23761370,-1
+63286583,23761370,5
+67288374,23761370,4
+wcwc,23761370,5
+87502140,23761370,3
+48387123,23761370,5
+rutanilla07,23761370,-1
+fantasy219,23761370,5
+50365935,23761370,-1
+Pandaoreo,23761370,3
+22462455,23761370,5
+cherriezhuzhu,23761370,5
+40424921,23761370,3
+Azexi,23761370,5
+xygoing,23761370,4
+53422596,23761370,5
+2420500,23761370,5
+1391038,23761370,4
+116539336,23761370,4
+6094042,23761370,5
+linda0210,23761370,-1
+carolinelv,23761370,5
+53646130,23761370,5
+87784117,23761370,5
+wydlkhn,23761370,4
+70951210,23761370,5
+wzshere,23761370,3
+11192863,23761370,4
+85482709,23761370,5
+59364883,23761370,5
+51559906,23761370,4
+100255899,23761370,5
+79849225,23761370,4
+36664361,23761370,5
+CaesarLUO,23761370,3
+miaomi,23761370,3
+plasticme,23761370,-1
+115985324,23761370,5
+guxingao,23761370,5
+yifanElle,23761370,4
+fanshuren,23761370,4
+46159687,23761370,5
+17002232,23761370,4
+z_oey,23761370,4
+53581844,23761370,3
+romance90,23761370,5
+40848331,23761370,5
+62922756,23761370,5
+46789657,23761370,4
+71495902,23761370,5
+aafeier,23761370,4
+baibi,23761370,3
+71203011,23761370,3
+47514626,23761370,5
+Ms_LuNacy,23761370,5
+63788372,23761370,5
+81789878,23761370,5
+shuai7v5,23761370,4
+57919693,23761370,3
+4856461,23761370,3
+crystal53451,23761370,4
+79253096,23761370,5
+49120278,23761370,4
+Kraatui,23761370,4
+fukumm,23761370,5
+33370936,23761370,3
+30494029,23761370,5
+125518351,23761370,4
+4115987,23761370,4
+serenalovetony,23761370,5
+116276728,23761370,3
+57753980,23761370,5
+lxb0423,23761370,5
+Schneestark,23761370,4
+42715973,23761370,5
+bijoubee,23761370,5
+115131162,23761370,5
+liufangni,23761370,4
+69233835,23761370,5
+83793299,23761370,-1
+68860037,23761370,4
+60879930,23761370,4
+alualu,23761370,4
+72415349,23761370,4
+76951536,23761370,4
+linbinchi,23761370,5
+sakura1986,23761370,4
+35450465,23761370,5
+lunes7,23761370,5
+frida0516,23761370,4
+82026124,23761370,5
+41208747,23761370,5
+62960950,23761370,3
+calmlygod,23761370,5
+70001575,23761370,5
+61490354,23761370,5
+2909317,23761370,5
+76020934,23761370,2
+53186197,23761370,4
+119404591,23761370,5
+54542205,23761370,5
+53184572,23761370,4
+sysophie,23761370,3
+mkbl,23761370,5
+41052947,23761370,3
+97673154,23761370,5
+56933647,23761370,5
+62178164,23761370,5
+44057273,23761370,5
+elevenzhang,23761370,4
+56053205,23761370,4
+46425466,23761370,-1
+1656216,23761370,5
+meinaHan,23761370,5
+60894533,23761370,4
+122349852,23761370,5
+121794726,23761370,4
+46510728,23761370,5
+78809440,23761370,1
+56974300,23761370,5
+xiao8888,23761370,3
+42541743,23761370,5
+29771014,23761370,4
+29771014,23761370,4
+48223823,23761370,5
+59101161,23761370,5
+68621390,23761370,5
+44597595,23761370,3
+sw7eets,23761370,4
+42270904,23761370,3
+panxy,23761370,5
+toasthouse,23761370,3
+goblingarden,23761370,5
+DEMO9266,23761370,5
+newbear,23761370,4
+16331608,23761370,5
+Moyuyu111,23761370,4
+51028577,23761370,4
+54776806,23761370,4
+63633595,23761370,4
+71813073,23761370,5
+59552037,23761370,5
+mynigel,23761370,3
+yolanda_kin,23761370,4
+77768096,23761370,5
+68968517,23761370,3
+48184126,23761370,5
+fengbeer,23761370,5
+64758592,23761370,4
+kid131,23761370,4
+ovanisho,23761370,4
+50410530,23761370,4
+wondersue,23761370,4
+115898172,23761370,5
+2778486,23761370,4
+trachow,23761370,5
+51622953,23761370,5
+sunxujjack,23761370,3
+68116866,23761370,4
+PsyLadyTricky,23761370,5
+42084433,23761370,3
+2163937,23761370,4
+youzipi870,23761370,4
+44947264,23761370,2
+41979840,23761370,3
+53559432,23761370,3
+Redfingertip,23761370,5
+47708632,23761370,5
+116805216,23761370,5
+wenzhengchen,23761370,4
+doace,23761370,4
+2784359,23761370,5
+74397322,23761370,2
+1818595,23761370,4
+60461419,23761370,5
+winnie.35,23761370,5
+103124319,23761370,5
+32223373,23761370,4
+2237566,23761370,3
+45441727,23761370,4
+78658357,23761370,5
+daangel,23761370,3
+46343793,23761370,5
+xiaowenli,23761370,4
+1863179,23761370,4
+yotony,23761370,5
+58283218,23761370,2
+50619132,23761370,4
+43775350,23761370,5
+42816825,23761370,4
+2887572,23761370,5
+liuyuxing,23761370,5
+55799629,23761370,4
+4867707,23761370,5
+josephgyal,23761370,2
+50351955,23761370,5
+46379813,23761370,4
+Hudou94Wlide,23761370,4
+1744152,23761370,5
+snowqueen7,23761370,4
+50538155,23761370,5
+70835587,23761370,4
+smartv,23761370,4
+forzajuve,23761370,4
+bdmm,23761370,3
+shenshenlanf,23761370,5
+12511197,23761370,4
+dark_glede,23761370,4
+67481632,23761370,5
+petterzhang,23761370,4
+maryhanqing,23761370,4
+64089533,23761370,5
+waterYan,23761370,2
+DuoThree,23761370,5
+HeyixinCheryl,23761370,2
+ayi2012,23761370,-1
+novkey,23761370,4
+36571303,23761370,4
+47084632,23761370,4
+beijingdouban,23761370,4
+fanfouxiong,23761370,4
+63644333,23761370,5
+52929305,23761370,2
+46655241,23761370,4
+3824408,23761370,5
+baojo,23761370,4
+51070498,23761370,3
+102819112,23761370,4
+121795920,23761370,5
+feller,23761370,3
+3053223,23761370,-1
+73332736,23761370,5
+64858053,23761370,5
+WYQlluvia,23761370,5
+hthj,23761370,5
+64145432,23761370,4
+xiaomei1993,23761370,5
+66048476,23761370,1
+61944030,23761370,3
+2447540,23761370,4
+39430866,23761370,4
+48477814,23761370,4
+DaDukkha,23761370,3
+94574301,23761370,5
+lqh815,23761370,4
+68758179,23761370,3
+103409828,23761370,5
+38487515,23761370,5
+66581901,23761370,3
+BevalWang,23761370,5
+51068968,23761370,4
+unclefuckyou,23761370,4
+3567588,23761370,3
+63421416,23761370,5
+66303721,23761370,3
+virus11,23761370,3
+82849854,23761370,4
+104961288,23761370,4
+120936363,23761370,5
+BOBLEE82,23761370,3
+lixinleixinli,23761370,5
+feitianlv,23761370,5
+deafbear,23761370,3
+24162736,23761370,3
+tibetnamjagbar,23761370,4
+114245978,23761370,5
+violalululu,23761370,4
+4379513,23761370,3
+122508584,23761370,2
+42144339,23761370,4
+96875707,23761370,4
+59803560,23761370,4
+lies583,23761370,5
+30577521,23761370,4
+91671305,23761370,5
+52671677,23761370,4
+1669785,23761370,4
+duozzz,23761370,5
+caixiaofeng1992,23761370,5
+93613617,23761370,3
+62678962,23761370,4
+nonojefferson,23761370,4
+13294183,23761370,5
+62931528,23761370,4
+73942722,23761370,5
+2303322,23761370,4
+Guardianangel,23761370,5
+ying029,23761370,4
+agent0,23761370,5
+CookieCrumbler,23761370,4
+BJm,23761370,4
+easonkoko,23761370,4
+shouJUer,23761370,3
+122805702,23761370,5
+monii,23761370,3
+52319760,23761370,4
+Scorpio_lxs,23761370,5
+52383930,23761370,5
+46838565,23761370,5
+114158978,23761370,4
+1507059,23761370,3
+125498604,23761370,5
+shinai1990,23761370,3
+shinai1990,23761370,3
+50745774,23761370,4
+braquentin,23761370,3
+46348005,23761370,5
+hairu,23761370,4
+2180309,23761370,5
+44132219,23761370,4
+ljksdhr,23761370,2
+AriesW322,23761370,4
+morus,23761370,3
+liuyuejin,23761370,5
+4662505,23761370,4
+1432690,23761370,-1
+47316424,23761370,5
+3369798,23761370,5
+119814853,23761370,5
+96034999,23761370,5
+michelle_peng,23761370,5
+102126440,23761370,3
+74735445,23761370,5
+76083835,23761370,5
+22040154,23761370,3
+juxi,23761370,3
+petitlynn,23761370,5
+102128769,23761370,5
+77522635,23761370,4
+76980448,23761370,5
+51865862,23761370,5
+MrBaby,23761370,-1
+sonicyang,23761370,5
+hidecai,23761370,5
+70365819,23761370,5
+78777736,23761370,4
+67549177,23761370,4
+don_C,23761370,4
+youngoceano,23761370,3
+49839659,23761370,5
+kuihua11yue,23761370,3
+89411042,23761370,5
+littlejuice,23761370,4
+yanan928,23761370,3
+38770333,23761370,3
+hitomiorange,23761370,4
+mengmengh,23761370,5
+sonyazl,23761370,4
+xiaoxiaoxiaoge,23761370,5
+nay57,23761370,3
+33971663,23761370,5
+losslilies,23761370,5
+46258109,23761370,5
+6966417,23761370,2
+3392902,23761370,4
+Crystal_Fong,23761370,4
+55842990,23761370,3
+37280239,23761370,4
+79115910,23761370,5
+28743020,23761370,3
+46449504,23761370,3
+Viannie_CXY,23761370,5
+sunshine606,23761370,4
+amorlee,23761370,3
+74703584,23761370,4
+57565875,23761370,5
+121080476,23761370,4
+59855986,23761370,4
+49856775,23761370,4
+45521984,23761370,4
+30067864,23761370,-1
+52605109,23761370,4
+21946696,23761370,4
+44896000,23761370,5
+20256748,23761370,5
+53749033,23761370,3
+4387690,23761370,3
+yishu.,23761370,5
+94773780,23761370,3
+49145731,23761370,5
+58083058,23761370,5
+67939755,23761370,5
+42171316,23761370,5
+tifa_woo,23761370,-1
+LotteMars,23761370,3
+57643998,23761370,3
+leanduo,23761370,5
+44166605,23761370,4
+50406569,23761370,5
+34255820,23761370,5
+52742786,23761370,4
+49181383,23761370,5
+55785901,23761370,5
+116031531,23761370,4
+2988066,23761370,4
+121907627,23761370,3
+daomeideshu,23761370,3
+lianghon,23761370,5
+renmeng,23761370,4
+ajoin,23761370,5
+jeremery,23761370,4
+41480781,23761370,4
+50217195,23761370,4
+46286886,23761370,5
+pennypennypenny,23761370,5
+secretdeer,23761370,4
+doger,23761370,5
+64540248,23761370,5
+83117603,23761370,5
+zetto,23761370,-1
+66799313,23761370,5
+2006629,23761370,5
+dabianer,23761370,5
+vdv,23761370,5
+petitelazy,23761370,5
+bLue.C,23761370,4
+68584442,23761370,5
+taiwandelicacy,23761370,4
+heartrick,23761370,5
+102877667,23761370,4
+elwy,23761370,5
+lcn8755,23761370,2
+58003006,23761370,5
+58003006,23761370,5
+DrGonzo,23761370,2
+Str,23761370,4
+gujiahui,23761370,5
+92268475,23761370,5
+kokkjj,23761370,5
+97530013,23761370,4
+mousesayit,23761370,5
+andyvivi1984,23761370,4
+4619048,23761370,3
+frances.,23761370,3
+daisy_Ning,23761370,4
+75946130,23761370,5
+theflyingjamie,23761370,4
+74541142,23761370,5
+64947842,23761370,4
+xzach,23761370,5
+122436954,23761370,5
+paquitahh,23761370,3
+62291927,23761370,5
+55865463,23761370,3
+52227518,23761370,5
+yuxiaolanJ,23761370,5
+66916143,23761370,4
+sisyphean,23761370,3
+1668702,23761370,4
+33293861,23761370,4
+lucky_sm,23761370,5
+78318916,23761370,1
+Dora_yan,23761370,4
+1575216,23761370,4
+59629855,23761370,4
+2771396,23761370,3
+52360941,23761370,5
+52473311,23761370,5
+mimi-echo,23761370,5
+tatiaweiyang,23761370,5
+Moderato,23761370,4
+gelsey1992,23761370,5
+LAURANOWHERE,23761370,4
+48471753,23761370,3
+3936813,23761370,5
+61143334,23761370,4
+45725112,23761370,1
+68936327,23761370,5
+vehzee,23761370,4
+91464420,23761370,4
+dirkhysteria,23761370,3
+80212965,23761370,4
+singlecell,23761370,5
+52129503,23761370,4
+87234119,23761370,4
+1494955,23761370,3
+71524971,23761370,5
+OkaLen,23761370,5
+Samadh1,23761370,4
+14093123,23761370,4
+nightbox,23761370,4
+chocococo,23761370,5
+bradmchen,23761370,5
+2370392,23761370,5
+kingdwl,23761370,4
+108894663,23761370,5
+48417569,23761370,3
+47287087,23761370,4
+41758984,23761370,3
+115974574,23761370,2
+113287715,23761370,2
+46362972,23761370,4
+kidrabbit,23761370,4
+53789319,23761370,4
+longlee0622,23761370,5
+icejoke,23761370,5
+yemiaoyi,23761370,-1
+63308535,23761370,4
+Roseate,23761370,4
+yvonnemao,23761370,5
+63371846,23761370,4
+supermalin,23761370,5
+49405131,23761370,3
+53602743,23761370,4
+58977127,23761370,5
+70458668,23761370,4
+38606077,23761370,5
+linziyan,23761370,4
+47382115,23761370,5
+bessiemyq,23761370,5
+45795936,23761370,5
+aluol,23761370,4
+2275057,23761370,-1
+showV,23761370,4
+wangcan_uu,23761370,1
+48662667,23761370,4
+devilxuxu,23761370,2
+chobit.w,23761370,4
+yanpealew,23761370,3
+vvhs,23761370,3
+3282397,23761370,4
+68676250,23761370,3
+70204712,23761370,3
+70204712,23761370,3
+enjoysmile,23761370,-1
+kaka0805,23761370,4
+JCsama,23761370,4
+cloris32,23761370,3
+22401471,23761370,4
+56069549,23761370,5
+31281892,23761370,3
+4462311,23761370,3
+49541222,23761370,5
+3667311,23761370,3
+58504970,23761370,5
+niwei808,23761370,4
+31814184,23761370,5
+chachasu,23761370,5
+69775994,23761370,4
+59020474,23761370,3
+32187017,23761370,5
+63096200,23761370,5
+48412951,23761370,3
+34597331,23761370,5
+amazing84390597,23761370,5
+sunice1314,23761370,5
+63817293,23761370,4
+45792433,23761370,5
+masterbuyuan,23761370,4
+1402905,23761370,4
+61258936,23761370,3
+saryta,23761370,2
+beibeimilk,23761370,5
+47350875,23761370,5
+Tagasu,23761370,4
+32356639,23761370,5
+Anniby-Jade,23761370,4
+2180956,23761370,2
+vickkid,23761370,4
+123850973,23761370,4
+hellnana,23761370,5
+puyangxixu,23761370,5
+68109134,23761370,5
+damiya,23761370,4
+42678524,23761370,5
+65529304,23761370,3
+Frankyooo,23761370,5
+59111625,23761370,5
+coxat,23761370,4
+youngsama,23761370,2
+107451384,23761370,5
+wsr545,23761370,5
+cooloh,23761370,3
+princegemini,23761370,5
+90551968,23761370,5
+41683751,23761370,5
+88199581,23761370,5
+105409285,23761370,5
+53936044,23761370,4
+57568128,23761370,4
+62529217,23761370,5
+jessicahuang,23761370,4
+2086009,23761370,5
+13365296,23761370,3
+ztftom,23761370,3
+57842655,23761370,4
+dreaming66,23761370,4
+91025544,23761370,2
+64757557,23761370,5
+xqyamour,23761370,5
+113053487,23761370,3
+49578533,23761370,4
+75652747,23761370,4
+Lisa.L,23761370,3
+60162366,23761370,5
+chrisloveleslie,23761370,3
+15188529,23761370,2
+laurenzhang,23761370,5
+54533341,23761370,5
+Corartyphed,23761370,3
+zealouszz,23761370,3
+51795397,23761370,-1
+47336635,23761370,4
+fayless,23761370,4
+46977530,23761370,3
+74811686,23761370,5
+96020580,23761370,5
+stillwalking29,23761370,-1
+pczawa,23761370,3
+119632712,23761370,5
+love_my_dog,23761370,4
+1446460,23761370,3
+Skin.C,23761370,4
+46722209,23761370,4
+51335422,23761370,5
+2722676,23761370,3
+49294645,23761370,4
+miuye00,23761370,4
+34112229,23761370,5
+47314582,23761370,3
+1189560,23761370,5
+43008763,23761370,5
+55707159,23761370,4
+82907870,23761370,5
+hallie324,23761370,4
+84771494,23761370,1
+70027321,23761370,4
+elvisxiao,23761370,5
+nowaking,23761370,3
+91111325,23761370,4
+caiwenjing0919,23761370,5
+Chenallen,23761370,4
+51151541,23761370,5
+Nikita.,23761370,5
+60101492,23761370,4
+catandjay,23761370,5
+iconsky,23761370,5
+gintokihi,23761370,5
+57927340,23761370,4
+42187076,23761370,3
+Ce1ine,23761370,5
+1569872,23761370,5
+4491309,23761370,4
+64067066,23761370,5
+Humer_Z,23761370,4
+47574921,23761370,4
+Glycinemax,23761370,5
+rrspeaking,23761370,3
+83748698,23761370,4
+57680535,23761370,5
+jasmine-Lily,23761370,5
+juvenility,23761370,4
+56775169,23761370,5
+4279698,23761370,5
+37895289,23761370,-1
+2774956,23761370,2
+71066092,23761370,4
+53060922,23761370,3
+120547538,23761370,4
+35031977,23761370,4
+122054884,23761370,4
+silencewong,23761370,3
+MZZ1221,23761370,5
+57590168,23761370,3
+62221399,23761370,4
+freelsen,23761370,3
+jaward,23761370,3
+misa_x,23761370,4
+tree0912,23761370,-1
+65940007,23761370,5
+30879584,23761370,5
+53311132,23761370,4
+49165846,23761370,5
+45369042,23761370,5
+UFO007,23761370,4
+78973755,23761370,4
+36576530,23761370,5
+3020797,23761370,4
+62986742,23761370,5
+2160015,23761370,4
+alivevampire,23761370,5
+4604709,23761370,4
+38407388,23761370,3
+xoman,23761370,5
+verygossip,23761370,4
+64238881,23761370,5
+82847789,23761370,5
+niubility1258,23761370,5
+neirn,23761370,5
+twentypercent,23761370,4
+28229661,23761370,4
+57080292,23761370,5
+108146760,23761370,5
+47937779,23761370,4
+63156283,23761370,3
+102662197,23761370,4
+timetowrite,23761370,4
+3130485,23761370,4
+88084115,23761370,3
+fanqu,23761370,4
+songjie0515,23761370,2
+40177253,23761370,4
+hexuan910,23761370,5
+83122250,23761370,5
+57028649,23761370,5
+1000086,23761370,4
+38863592,23761370,3
+52248618,23761370,4
+33196085,23761370,2
+58009119,23761370,1
+93137555,23761370,4
+50658690,23761370,5
+Carman.Feng,23761370,4
+scale2,23761370,5
+53694495,23761370,4
+120142169,23761370,5
+YolandaCH,23761370,4
+turandot0815,23761370,3
+53083224,23761370,5
+69586177,23761370,3
+62815925,23761370,1
+Shawn_Au,23761370,4
+57583046,23761370,4
+buxiren,23761370,4
+andyr0925,23761370,4
+54618299,23761370,5
+3151416,23761370,3
+chuyuanju,23761370,3
+longway771,23761370,4
+94722488,23761370,5
+73161625,23761370,5
+19296065,23761370,2
+sue_79,23761370,3
+49465683,23761370,4
+carolinengan666,23761370,5
+ilaroja,23761370,5
+32159977,23761370,5
+yuedawei,23761370,5
+4217605,23761370,3
+zackman,23761370,4
+4630938,23761370,4
+3912242,23761370,4
+56116508,23761370,3
+surepresen,23761370,-1
+L_LAWLIET,23761370,4
+onlyjtl,23761370,5
+63895414,23761370,-1
+34644427,23761370,1
+53789124,23761370,4
+43867451,23761370,3
+60644811,23761370,4
+sheldonkao,23761370,5
+60624598,23761370,3
+godblessyou07,23761370,5
+LvvvvvW,23761370,5
+32753722,23761370,4
+67330888,23761370,5
+2843086,23761370,4
+Kesen,23761370,4
+3372273,23761370,3
+3262787,23761370,5
+ilovecoyi,23761370,4
+arthurland,23761370,2
+63187930,23761370,5
+48514608,23761370,4
+50745405,23761370,5
+48989146,23761370,5
+70210369,23761370,3
+1105624,23761370,-1
+64879609,23761370,4
+1792275,23761370,5
+zaiyuepaoduosh,23761370,5
+lonelyhj,23761370,4
+2166091,23761370,5
+boonie,23761370,5
+125458644,23761370,5
+51750705,23761370,4
+41247402,23761370,4
+62298442,23761370,3
+huangjungeng,23761370,5
+anrui886,23761370,5
+44025713,23761370,3
+yvonnecui,23761370,5
+58613313,23761370,4
+113977777,23761370,5
+48022266,23761370,5
+62880392,23761370,4
+haidaisisi,23761370,-1
+ligil,23761370,4
+73111916,23761370,5
+87956787,23761370,5
+raphaelife,23761370,5
+114533111,23761370,5
+38635851,23761370,4
+3705194,23761370,5
+63097689,23761370,4
+sunsky625,23761370,4
+122864705,23761370,5
+2438025,23761370,5
+67061542,23761370,5
+68810991,23761370,5
+lastzoo,23761370,3
+puppyyyyyyyyyyy,23761370,5
+53035444,23761370,5
+2389162,23761370,4
+125458076,23761370,5
+zzxuan,23761370,4
+42907481,23761370,5
+65921057,23761370,5
+58706033,23761370,2
+63189496,23761370,5
+badvoice,23761370,4
+zhaoqingyue,23761370,2
+40373193,23761370,5
+watiler,23761370,3
+tanronghong,23761370,4
+zaoshuizaoqi,23761370,4
+83398649,23761370,5
+77718776,23761370,5
+54743136,23761370,4
+61212508,23761370,4
+coolwhite,23761370,4
+nonowhy,23761370,5
+74908482,23761370,-1
+FinalFantasy,23761370,5
+3581002,23761370,5
+113992757,23761370,4
+cheongwon6002,23761370,5
+65851516,23761370,2
+79896532,23761370,4
+47867249,23761370,1
+57689250,23761370,4
+Erica1011,23761370,4
+1050952,23761370,5
+qiao4ever,23761370,5
+63208019,23761370,3
+yimianmian,23761370,4
+113547242,23761370,5
+foggyjungle,23761370,3
+dingsays,23761370,4
+1491950,23761370,3
+yibansun,23761370,5
+49607126,23761370,5
+73542789,23761370,5
+2168902,23761370,5
+72661721,23761370,3
+shadanbbi,23761370,3
+CeciliaChan,23761370,5
+29594909,23761370,3
+chamberlin,23761370,4
+3959996,23761370,5
+aimaox,23761370,5
+miomiomeng,23761370,3
+64092197,23761370,4
+zilingfengsheng,23761370,4
+69980622,23761370,5
+68539735,23761370,5
+rachelkaka,23761370,5
+tuzi-7,23761370,5
+116030466,23761370,5
+nowood,23761370,4
+6186536,23761370,4
+2393231,23761370,3
+momodawang,23761370,5
+23964620,23761370,4
+52181084,23761370,4
+doriskojima,23761370,4
+41320733,23761370,2
+51047226,23761370,4
+zourong,23761370,4
+miiaao,23761370,5
+6901137,23761370,5
+74286517,23761370,4
+106153294,23761370,5
+28559275,23761370,5
+84268334,23761370,5
+domee,23761370,3
+56668791,23761370,5
+122351676,23761370,5
+1779316,23761370,4
+crimedriloffer,23761370,3
+robotstar,23761370,5
+41462661,23761370,5
+41462661,23761370,5
+sevenz07,23761370,5
+44268763,23761370,5
+wuxiaomen,23761370,5
+kimi77,23761370,5
+54910721,23761370,4
+justgin,23761370,5
+3395389,23761370,5
+my_landscape,23761370,4
+bltee,23761370,5
+littlejoong,23761370,4
+44631026,23761370,4
+67596323,23761370,4
+unakao,23761370,5
+sammyl3,23761370,4
+51643428,23761370,5
+3005993,23761370,3
+3706557,23761370,5
+4581051,23761370,5
+46871806,23761370,5
+63618390,23761370,5
+scbox,23761370,3
+tdlimon,23761370,4
+59105676,23761370,5
+46289707,23761370,4
+46371689,23761370,4
+3365374,23761370,3
+93420965,23761370,4
+suuuuuuo,23761370,4
+iris_wu,23761370,-1
+foreverjenny,23761370,4
+43477542,23761370,3
+4732229,23761370,4
+3413987,23761370,4
+117347877,23761370,3
+80353968,23761370,3
+70394248,23761370,3
+62622534,23761370,4
+phonexu,23761370,4
+48688516,23761370,4
+48688516,23761370,4
+partric,23761370,4
+119254265,23761370,5
+4231858,23761370,5
+51942139,23761370,5
+125454927,23761370,5
+zk521,23761370,5
+69172801,23761370,4
+3014602,23761370,4
+52207360,23761370,3
+49123021,23761370,5
+2582746,23761370,3
+44523640,23761370,4
+growingyears,23761370,1
+Mr.maotu,23761370,4
+39829339,23761370,5
+amaokk,23761370,5
+doubeirenyongle,23761370,4
+alks,23761370,5
+52355127,23761370,5
+71773737,23761370,5
+sophie_star,23761370,4
+gloomyass,23761370,4
+46792617,23761370,3
+55622314,23761370,3
+115203825,23761370,3
+65021158,23761370,5
+junelier0611,23761370,3
+goowl,23761370,4
+wangyiwangyi,23761370,5
+58901835,23761370,4
+Lena-Ho,23761370,5
+gaojie0114,23761370,3
+57063965,23761370,5
+IloveyouDanica,23761370,5
+49973625,23761370,5
+45394648,23761370,4
+72098765,23761370,4
+cattisky,23761370,-1
+nolike,23761370,1
+1887825,23761370,4
+50094689,23761370,4
+78366736,23761370,5
+16051084,23761370,5
+82887347,23761370,3
+121763704,23761370,5
+crystal12345678,23761370,3
+41976205,23761370,5
+motou0328,23761370,5
+62209149,23761370,4
+3718839,23761370,5
+48543801,23761370,4
+34011648,23761370,5
+Chris_Martin,23761370,5
+starrylaughter,23761370,3
+rabbithouse,23761370,5
+41648161,23761370,5
+29613060,23761370,3
+74724776,23761370,5
+46258070,23761370,4
+48978738,23761370,5
+6205109,23761370,3
+hennic,23761370,4
+hhhhhhn,23761370,5
+49876674,23761370,4
+foxv1,23761370,-1
+30752911,23761370,4
+HUSTecho,23761370,5
+4066750,23761370,5
+80768830,23761370,5
+60377456,23761370,3
+48057004,23761370,5
+enc,23761370,1
+125453739,23761370,5
+3725350,23761370,4
+45623662,23761370,5
+68963965,23761370,3
+123763902,23761370,4
+83467877,23761370,2
+61387419,23761370,4
+12792627,23761370,5
+57994985,23761370,5
+64180606,23761370,5
+124792567,23761370,5
+chaunceyjohn,23761370,4
+80523939,23761370,4
+56283964,23761370,5
+su321,23761370,4
+122791785,23761370,4
+44949504,23761370,5
+million,23761370,-1
+65159477,23761370,5
+84643794,23761370,5
+120008046,23761370,3
+68320762,23761370,5
+AuRevoir7,23761370,4
+58110434,23761370,5
+53352167,23761370,5
+4266601,23761370,4
+41579519,23761370,5
+misswinnie14,23761370,4
+philosophia1979,23761370,4
+57422914,23761370,3
+60549347,23761370,-1
+44903919,23761370,5
+62871612,23761370,4
+wazx,23761370,3
+goblinever,23761370,5
+turnsole,23761370,5
+encyclopeadia,23761370,5
+kaine666,23761370,-1
+rukiawang,23761370,3
+72925066,23761370,4
+58448710,23761370,2
+yym0227,23761370,5
+Q87094879,23761370,4
+67372006,23761370,4
+123016491,23761370,4
+65744500,23761370,5
+1973189,23761370,5
+49305517,23761370,5
+leeva,23761370,4
+56867346,23761370,3
+ricbabe,23761370,4
+72111363,23761370,5
+66585349,23761370,4
+fulanwawa,23761370,5
+112406567,23761370,4
+zoesun,23761370,4
+willlove,23761370,4
+41776399,23761370,4
+62187339,23761370,5
+50015738,23761370,4
+88934741,23761370,4
+101746783,23761370,5
+92775477,23761370,5
+Jolitachou,23761370,3
+peggyzhu,23761370,5
+pompomlai,23761370,5
+love-suk,23761370,5
+80621591,23761370,5
+3004038,23761370,5
+63637280,23761370,5
+67947664,23761370,3
+2210574,23761370,4
+Sueli,23761370,5
+1426705,23761370,4
+little9,23761370,4
+50360912,23761370,5
+wmdsht,23761370,5
+july10,23761370,3
+48406181,23761370,4
+123285846,23761370,5
+NIAIDE,23761370,5
+vinoruan,23761370,5
+chiaroscuro,23761370,-1
+68705444,23761370,5
+robyayi,23761370,4
+47258009,23761370,5
+47063108,23761370,3
+47063108,23761370,3
+54741903,23761370,-1
+62842608,23761370,5
+apirlapple,23761370,4
+29904054,23761370,5
+45020999,23761370,3
+2305028,23761370,4
+4502175,23761370,4
+53476786,23761370,5
+yidagege,23761370,5
+zhuyueya,23761370,5
+84875821,23761370,5
+58989097,23761370,4
+43236941,23761370,5
+53505227,23761370,5
+49531398,23761370,5
+weinuanfengxin,23761370,5
+funz_7,23761370,5
+1619244,23761370,5
+1457102,23761370,4
+tclh123,23761370,5
+wyqstar,23761370,3
+120700918,23761370,5
+jinnioio,23761370,-1
+3517487,23761370,5
+getto1234,23761370,5
+tyx033333,23761370,3
+Mo-Cuishle,23761370,4
+70289658,23761370,4
+114277103,23761370,3
+53715801,23761370,2
+dolphin.s,23761370,5
+ladyC1016,23761370,3
+39434473,23761370,5
+52199185,23761370,5
+57217044,23761370,4
+72068828,23761370,3
+39519802,23761370,5
+Sad_D,23761370,2
+Nova_Caine,23761370,-1
+63896361,23761370,4
+57716203,23761370,4
+49206550,23761370,4
+42015731,23761370,4
+91277792,23761370,4
+xin594927074,23761370,5
+pinxue,23761370,4
+yanlaotie,23761370,3
+79804950,23761370,5
+coto,23761370,4
+3722976,23761370,5
+lucifer1211,23761370,5
+lemon-fish,23761370,5
+62709413,23761370,5
+yuhuaizi,23761370,4
+75301125,23761370,5
+Pastorale,23761370,5
+61247651,23761370,3
+46020433,23761370,3
+vevay829,23761370,4
+53988920,23761370,4
+neoelsa,23761370,5
+73469799,23761370,5
+ireth,23761370,3
+58379589,23761370,5
+59914179,23761370,5
+miaumiau,23761370,4
+74474859,23761370,3
+48548563,23761370,5
+87581035,23761370,5
+zuo.an,23761370,5
+binnnn,23761370,4
+newdelete,23761370,5
+mmiyoko,23761370,5
+MrChristy,23761370,4
+3772715,23761370,5
+55705224,23761370,4
+3131916,23761370,3
+121581216,23761370,5
+susan-no-home,23761370,3
+3269856,23761370,3
+oliver330,23761370,5
+49143390,23761370,3
+70109000,23761370,5
+quanquan0616,23761370,5
+73956283,23761370,4
+50057469,23761370,4
+44012231,23761370,5
+57139809,23761370,4
+22077242,23761370,3
+think_think,23761370,5
+51312401,23761370,4
+123868184,23761370,4
+4336572,23761370,5
+backstreetcat,23761370,3
+70626173,23761370,5
+xuhuan,23761370,5
+2193797,23761370,4
+elainecy1205,23761370,5
+Andpsv,23761370,1
+68523574,23761370,5
+lulu_life,23761370,5
+indoors,23761370,-1
+1983952,23761370,4
+kaarlo,23761370,5
+ice1,23761370,5
+66599004,23761370,4
+botuoxi,23761370,3
+38863100,23761370,5
+58961800,23761370,2
+eightsbar,23761370,4
+sunnymary,23761370,5
+67811189,23761370,4
+jiemopaofu,23761370,5
+48817278,23761370,3
+4503399,23761370,-1
+124594348,23761370,4
+kakami,23761370,4
+45256525,23761370,5
+lefter,23761370,-1
+51309478,23761370,5
+26604258,23761370,5
+stayfoolishstay,23761370,5
+reneeht,23761370,3
+32875204,23761370,5
+mklop2008,23761370,4
+76804621,23761370,5
+36747339,23761370,5
+py962492,23761370,5
+3717542,23761370,5
+2038568,23761370,4
+60892170,23761370,4
+bettermeloveme,23761370,4
+60739436,23761370,1
+3583078,23761370,5
+58371683,23761370,3
+manhattant,23761370,4
+fengzhiqianhu,23761370,4
+100948641,23761370,4
+ihower,23761370,5
+Vanilla.Y,23761370,5
+lhwithsummer,23761370,5
+4519716,23761370,4
+zoujian-999,23761370,4
+sishuiwuhen333,23761370,4
+fancypippi,23761370,5
+4441359,23761370,5
+61261995,23761370,5
+62629078,23761370,4
+51583553,23761370,5
+2291008,23761370,3
+40751687,23761370,4
+63740935,23761370,3
+69096727,23761370,5
+2672610,23761370,4
+1735243,23761370,5
+fakeyouout,23761370,4
+masaikejun,23761370,3
+34459327,23761370,3
+61135044,23761370,5
+yixuan2,23761370,4
+50953723,23761370,3
+2198591,23761370,5
+89768114,23761370,4
+anya0215,23761370,4
+huoguo,23761370,-1
+94828295,23761370,3
+38790253,23761370,4
+3727747,23761370,3
+rockerai,23761370,4
+63672355,23761370,4
+60610338,23761370,2
+byebyetomorrow,23761370,4
+veronicaz,23761370,4
+43243528,23761370,4
+96161152,23761370,2
+dengdee,23761370,4
+bellezjn,23761370,3
+atlas0413,23761370,4
+73766860,23761370,4
+74912183,23761370,4
+45667555,23761370,5
+4426162,23761370,3
+ruby_xunchuan,23761370,5
+lmm333,23761370,3
+sqxmy,23761370,3
+71127427,23761370,5
+nocturnelee,23761370,4
+50595352,23761370,5
+84966612,23761370,5
+CobbWalt,23761370,3
+50633808,23761370,5
+66763319,23761370,4
+48959774,23761370,5
+39273953,23761370,2
+41949292,23761370,4
+sardine323,23761370,3
+76600314,23761370,5
+54443004,23761370,5
+3962523,23761370,4
+120636923,23761370,4
+92809978,23761370,3
+50205972,23761370,2
+2572927,23761370,4
+baoxiaolin0913,23761370,3
+augeste,23761370,5
+mhg,23761370,5
+62411560,23761370,5
+37019955,23761370,5
+miango0409,23761370,5
+26215875,23761370,4
+78487311,23761370,4
+66679668,23761370,5
+carloye,23761370,5
+EricYing,23761370,5
+47036907,23761370,3
+Dejected,23761370,4
+xuxinyan083,23761370,4
+Sophia_U,23761370,4
+demoncat,23761370,1
+61788705,23761370,5
+84940360,23761370,5
+90954166,23761370,5
+49735626,23761370,3
+95119805,23761370,5
+whitecontinent,23761370,3
+61910501,23761370,4
+Alan-H,23761370,5
+55353580,23761370,5
+4542184,23761370,5
+49337423,23761370,5
+37320102,23761370,5
+33525010,23761370,5
+60388085,23761370,3
+Lucy.Wang,23761370,5
+zoelovepuppy,23761370,4
+sky2006Q,23761370,5
+44238046,23761370,2
+80197452,23761370,3
+98591417,23761370,4
+28313985,23761370,5
+41438322,23761370,4
+105146353,23761370,5
+47365480,23761370,4
+63228338,23761370,1
+TheSe7en,23761370,5
+inrelief,23761370,4
+78638924,23761370,3
+themissingken,23761370,3
+17908241,23761370,4
+120884326,23761370,5
+8402557,23761370,4
+83153978,23761370,3
+44946309,23761370,4
+nnnya,23761370,3
+47903791,23761370,5
+ayumiya,23761370,4
+54474146,23761370,3
+jjsong,23761370,-1
+44686178,23761370,5
+huhuxiaoxue0219,23761370,5
+79677319,23761370,5
+chocochocolat,23761370,-1
+46060990,23761370,5
+fcinter,23761370,4
+85643943,23761370,4
+42243165,23761370,5
+107146502,23761370,4
+50585264,23761370,4
+28678505,23761370,5
+91295365,23761370,3
+49285712,23761370,5
+liweiheng,23761370,4
+49472691,23761370,5
+79825096,23761370,3
+13038456,23761370,4
+43671696,23761370,3
+58370058,23761370,5
+1829349,23761370,5
+34674400,23761370,4
+2543630,23761370,4
+jqcx,23761370,3
+meko1206,23761370,3
+51638198,23761370,1
+63294351,23761370,5
+87681351,23761370,5
+3021551,23761370,4
+33784224,23761370,5
+fwtzzl,23761370,2
+wuzhiyunlv,23761370,5
+47662577,23761370,3
+35438123,23761370,4
+Mov1e-Clan,23761370,5
+61929224,23761370,4
+4200326,23761370,3
+40195223,23761370,4
+ningzile,23761370,5
+miffi,23761370,5
+90164423,23761370,5
+xiyt8911,23761370,5
+63939831,23761370,5
+25885626,23761370,1
+60325674,23761370,4
+55011213,23761370,4
+77174799,23761370,5
+akward,23761370,4
+1513979,23761370,1
+91297667,23761370,3
+tobacco2506,23761370,-1
+55886505,23761370,4
+Joelia,23761370,4
+vannnns,23761370,4
+ruoxioaer,23761370,4
+53682621,23761370,4
+caixiaopao,23761370,5
+48571121,23761370,4
+klpz,23761370,5
+77606289,23761370,4
+51594813,23761370,5
+60151754,23761370,5
+shanjin,23761370,4
+psychefish,23761370,3
+103110935,23761370,5
+86853416,23761370,5
+55890752,23761370,5
+47679672,23761370,3
+69471805,23761370,5
+64186311,23761370,3
+2834857,23761370,-1
+80298648,23761370,1
+3378805,23761370,3
+51320337,23761370,5
+49487093,23761370,4
+98423698,23761370,5
+80149039,23761370,5
+nhjieme,23761370,4
+59981211,23761370,4
+70194075,23761370,4
+58594050,23761370,5
+40567402,23761370,5
+40567402,23761370,5
+dianman,23761370,3
+47958996,23761370,5
+61097351,23761370,5
+80164004,23761370,3
+48245357,23761370,5
+74497804,23761370,5
+heycathy,23761370,5
+58495364,23761370,4
+64770864,23761370,5
+mqknet,23761370,5
+96000077,23761370,5
+45631009,23761370,4
+37162990,23761370,4
+78619194,23761370,5
+3641651,23761370,3
+47329281,23761370,5
+3092731,23761370,1
+46301165,23761370,4
+42316907,23761370,4
+3726054,23761370,2
+havefunlovelife,23761370,-1
+3208300,23761370,4
+geekdreamer,23761370,5
+50348765,23761370,2
+48514157,23761370,5
+32609644,23761370,5
+56075427,23761370,4
+doremi7719,23761370,3
+xiaozhibin,23761370,4
+fuckinboy,23761370,4
+51749955,23761370,5
+54280629,23761370,4
+SickMuse,23761370,5
+10934608,23761370,4
+4491387,23761370,5
+55847546,23761370,3
+1327654,23761370,5
+2353103,23761370,1
+70781880,23761370,5
+90770424,23761370,5
+yiliangsan,23761370,5
+snivelbb,23761370,4
+antilo,23761370,4
+au.sue,23761370,5
+u2bb,23761370,4
+74995001,23761370,2
+jewelshao,23761370,5
+54454466,23761370,5
+21058696,23761370,3
+sidneylumet,23761370,3
+echowithu,23761370,4
+pottqqq,23761370,5
+103163383,23761370,4
+DiabloX,23761370,4
+48249726,23761370,1
+foreveralta,23761370,4
+sherrydjm,23761370,4
+vera0902,23761370,4
+Kay.X,23761370,5
+TerryPrince,23761370,5
+yaoyaomu,23761370,4
+75121378,23761370,4
+45490376,23761370,5
+60028208,23761370,5
+70084901,23761370,5
+lelexiaoyao,23761370,5
+mamakoo,23761370,5
+struggle410,23761370,4
+52233629,23761370,4
+84595718,23761370,5
+45397322,23761370,4
+64683048,23761370,5
+leechestnut,23761370,5
+3474392,23761370,4
+57886651,23761370,5
+58421953,23761370,5
+63680376,23761370,5
+24465701,23761370,5
+66801159,23761370,5
+carytrading,23761370,5
+57171758,23761370,4
+46399973,23761370,4
+71332596,23761370,3
+79423614,23761370,5
+42270798,23761370,4
+65216675,23761370,5
+63903998,23761370,2
+60397577,23761370,4
+hbs178,23761370,5
+54315415,23761370,2
+56722636,23761370,5
+1510625,23761370,5
+89449772,23761370,3
+3151445,23761370,2
+iiioooiii,23761370,3
+54920592,23761370,5
+67815505,23761370,4
+39913122,23761370,5
+91809497,23761370,4
+120258535,23761370,2
+66467494,23761370,4
+47633821,23761370,1
+76554569,23761370,4
+117236489,23761370,3
+29257455,23761370,5
+damao7923,23761370,3
+77024538,23761370,5
+55476347,23761370,4
+53910335,23761370,5
+48675593,23761370,5
+s_issi,23761370,5
+fatday,23761370,3
+46827374,23761370,4
+2280396,23761370,4
+3450071,23761370,4
+62318575,23761370,5
+56903875,23761370,4
+70469575,23761370,5
+88299806,23761370,5
+60976854,23761370,5
+i-san,23761370,5
+64854726,23761370,4
+williampitt,23761370,3
+tinyno7,23761370,4
+cherbing,23761370,4
+52593168,23761370,4
+60484980,23761370,4
+55831492,23761370,5
+50006704,23761370,3
+4601335,23761370,4
+39651718,23761370,5
+50701865,23761370,5
+53992241,23761370,5
+51798478,23761370,5
+89787162,23761370,3
+zy236498319,23761370,5
+shaonvjige,23761370,5
+60688819,23761370,-1
+52406441,23761370,4
+75219384,23761370,5
+69986931,23761370,5
+48856056,23761370,3
+81675003,23761370,4
+60420315,23761370,4
+93240060,23761370,5
+54701230,23761370,5
+63973142,23761370,5
+2637083,23761370,4
+chelseaW4,23761370,5
+Springgu,23761370,3
+keinshen,23761370,1
+57800427,23761370,5
+50519888,23761370,5
+48415827,23761370,3
+116703616,23761370,5
+Melanmare,23761370,5
+m-n,23761370,3
+37189268,23761370,4
+Cheergoing,23761370,5
+1240037,23761370,4
+35069880,23761370,4
+yaohooo,23761370,5
+vivizhao0213,23761370,4
+huzhidao,23761370,4
+61734859,23761370,3
+63435651,23761370,4
+3617677,23761370,4
+chamo124,23761370,5
+1094456,23761370,5
+53006440,23761370,4
+40596238,23761370,4
+73469326,23761370,3
+44168387,23761370,5
+Stephaniewxk,23761370,5
+mrsrost,23761370,2
+43771540,23761370,4
+119078867,23761370,4
+cy_chn,23761370,5
+72365328,23761370,5
+51921097,23761370,3
+75449907,23761370,5
+106730683,23761370,5
+38325652,23761370,5
+64992564,23761370,5
+avyiye,23761370,3
+53460880,23761370,3
+liuyangzi,23761370,5
+chilliza,23761370,4
+smilingfish5,23761370,4
+Waterity,23761370,4
+29438143,23761370,4
+chouchou0707,23761370,4
+43383576,23761370,5
+62446851,23761370,4
+102781440,23761370,5
+57896289,23761370,5
+2777892,23761370,3
+poire,23761370,4
+vacuity,23761370,4
+60677349,23761370,4
+68192317,23761370,4
+81893070,23761370,3
+36940575,23761370,5
+59993815,23761370,5
+75820315,23761370,5
+57992148,23761370,5
+66547713,23761370,4
+tealifelove,23761370,5
+sosisarah,23761370,4
+suxiaobu,23761370,5
+2257100,23761370,3
+skysnow5201314,23761370,3
+49821212,23761370,5
+115645606,23761370,4
+tonicbupt,23761370,3
+58320000,23761370,5
+bilibili01,23761370,4
+39862225,23761370,5
+100150798,23761370,4
+eashion,23761370,4
+14481441,23761370,5
+54757893,23761370,4
+xiaopie,23761370,5
+77097420,23761370,5
+61045255,23761370,5
+racheal0711,23761370,-1
+64043962,23761370,1
+Jammie4u,23761370,4
+120738896,23761370,5
+76621126,23761370,5
+56481731,23761370,3
+52746307,23761370,5
+91604108,23761370,4
+zcyupc,23761370,5
+61301677,23761370,3
+61432042,23761370,4
+29894151,23761370,3
+yanism,23761370,4
+52970998,23761370,3
+58536535,23761370,1
+dilemmass,23761370,3
+34718915,23761370,5
+2716078,23761370,4
+40254687,23761370,5
+chelsealouli3,23761370,4
+colorfulturtle,23761370,-1
+43172878,23761370,5
+2328618,23761370,1
+49288214,23761370,5
+mrbrooks,23761370,3
+75838186,23761370,4
+wickedtian,23761370,3
+1428990,23761370,3
+LadyMavis,23761370,3
+32114364,23761370,5
+2799788,23761370,5
+4543967,23761370,5
+milansunshine,23761370,5
+Star4u,23761370,4
+Linksabbieger,23761370,-1
+3812638,23761370,-1
+25503918,23761370,5
+63174933,23761370,5
+49389259,23761370,2
+60747227,23761370,4
+50880876,23761370,5
+4806563,23761370,4
+DaZi,23761370,-1
+91669617,23761370,4
+lsx8270,23761370,5
+51836530,23761370,5
+46562517,23761370,5
+che_yan,23761370,5
+58545528,23761370,5
+60660353,23761370,5
+greatsmallnine,23761370,5
+tigerwu,23761370,5
+61350699,23761370,4
+13284500,23761370,5
+ouyangjie123,23761370,5
+85169500,23761370,4
+1730596,23761370,3
+uukwok,23761370,5
+pengkaidi,23761370,4
+51144978,23761370,4
+37510315,23761370,4
+95670618,23761370,5
+41883902,23761370,5
+47566511,23761370,1
+50924789,23761370,3
+122868077,23761370,3
+ivydehouse,23761370,4
+yisideta,23761370,5
+Yang0531,23761370,-1
+43396727,23761370,4
+sun-sun-emma,23761370,4
+120172771,23761370,4
+46835972,23761370,2
+amake,23761370,3
+13022391,23761370,3
+84458674,23761370,5
+70924936,23761370,5
+LWODE,23761370,4
+pan_pan,23761370,4
+48807888,23761370,4
+qqqqq2013,23761370,3
+83060190,23761370,4
+58101535,23761370,5
+luoqiuyue,23761370,4
+willinspring,23761370,5
+92090810,23761370,5
+95781281,23761370,5
+2000752,23761370,2
+47698236,23761370,4
+76450068,23761370,5
+Pradayang,23761370,4
+79538435,23761370,5
+36422732,23761370,5
+dinglinsusu,23761370,5
+khalilbaby,23761370,5
+66729635,23761370,5
+68503203,23761370,1
+sama_young,23761370,2
+sunshinetoo,23761370,5
+64182296,23761370,5
+27300707,23761370,5
+jes77,23761370,4
+lydia0319,23761370,5
+52819229,23761370,3
+71117723,23761370,5
+yukidelei,23761370,5
+79699248,23761370,5
+63100004,23761370,4
+fengmaozi,23761370,4
+yjab777,23761370,4
+hysteries,23761370,-1
+58110414,23761370,5
+55868951,23761370,-1
+39952964,23761370,5
+39952964,23761370,5
+56771366,23761370,3
+41125179,23761370,4
+liancheng,23761370,5
+56141450,23761370,4
+iris0405,23761370,4
+65549716,23761370,4
+61268751,23761370,3
+tinas,23761370,4
+Ciamy,23761370,4
+suterian,23761370,4
+nevain,23761370,4
+nwpiao,23761370,4
+EscapeMaci,23761370,3
+84419481,23761370,5
+55834718,23761370,5
+82570789,23761370,4
+72902533,23761370,5
+AspireY,23761370,3
+57086582,23761370,5
+57086582,23761370,5
+79415032,23761370,5
+77519498,23761370,4
+zhuangdikun,23761370,4
+35611829,23761370,4
+1828101,23761370,4
+hongwanmo,23761370,5
+88094868,23761370,5
+89015214,23761370,4
+52284305,23761370,4
+83645404,23761370,5
+63699428,23761370,3
+76270667,23761370,5
+58553636,23761370,5
+4265068,23761370,4
+58065648,23761370,5
+pgt12490,23761370,5
+46330086,23761370,5
+pinpinwantyou,23761370,5
+hyrorim,23761370,5
+leave.me.alone.,23761370,4
+xuyijia,23761370,5
+68990799,23761370,5
+3966394,23761370,3
+2670607,23761370,3
+70849512,23761370,3
+sc43791909,23761370,3
+pbc0615,23761370,4
+54400449,23761370,5
+59914726,23761370,5
+jwjyy,23761370,5
+yangfengdouban,23761370,4
+58771746,23761370,4
+124924998,23761370,5
+viia,23761370,2
+ikezhao,23761370,5
+116728333,23761370,5
+veapon,23761370,4
+astridchan,23761370,1
+35938658,23761370,5
+wuhanguandi,23761370,3
+1731256,23761370,5
+skateryoyo,23761370,4
+92853414,23761370,1
+rjw0212,23761370,4
+54741378,23761370,4
+68266016,23761370,5
+78776420,23761370,5
+66932091,23761370,5
+Uatchet,23761370,4
+alanyu,23761370,5
+34575311,23761370,3
+48953697,23761370,5
+99995336,23761370,4
+49010548,23761370,5
+gabriile,23761370,5
+jennyloforrest,23761370,5
+erin522,23761370,4
+121191945,23761370,4
+tere-yao,23761370,4
+tere-yao,23761370,4
+big_and_small,23761370,5
+58105520,23761370,1
+maxiangge,23761370,5
+concerto,23761370,4
+66210329,23761370,4
+yao_bing,23761370,4
+37503720,23761370,3
+2774199,23761370,4
+46046729,23761370,4
+BloodRaven,23761370,5
+kurtchien,23761370,4
+4688494,23761370,3
+49944862,23761370,3
+122277970,23761370,4
+maobowen,23761370,4
+18746695,23761370,3
+huamochu,23761370,5
+waltzen,23761370,3
+4743244,23761370,5
+122789808,23761370,5
+eertdik,23761370,4
+torrors,23761370,2
+65313383,23761370,3
+35736307,23761370,4
+jane_0826,23761370,5
+84049230,23761370,4
+38381820,23761370,4
+freak-zoe,23761370,5
+50651316,23761370,5
+miaoruomu,23761370,4
+traveller91,23761370,5
+littlesugar,23761370,4
+wiwikuang,23761370,5
+55545338,23761370,4
+72926069,23761370,5
+1684570,23761370,3
+34867941,23761370,4
+eason0210,23761370,4
+vaniadyq,23761370,4
+59959404,23761370,5
+taotaoqin,23761370,2
+67802104,23761370,5
+55438034,23761370,5
+88543196,23761370,4
+63268291,23761370,5
+68668703,23761370,1
+48094958,23761370,5
+69210931,23761370,5
+olivia-y,23761370,4
+53162024,23761370,4
+wuyaicho,23761370,5
+76880625,23761370,4
+75058618,23761370,4
+41596403,23761370,3
+zhengjijia,23761370,5
+38785285,23761370,4
+77589236,23761370,1
+nickgao,23761370,5
+61773646,23761370,5
+61773646,23761370,5
+52997648,23761370,5
+2167952,23761370,4
+49230178,23761370,5
+49223433,23761370,5
+43232986,23761370,5
+49041999,23761370,4
+55362670,23761370,4
+45360816,23761370,4
+26237008,23761370,3
+mayhe,23761370,5
+58784233,23761370,5
+fangyuan1987,23761370,1
+rethought,23761370,4
+53073700,23761370,5
+Katie-Catherine,23761370,5
+69753373,23761370,5
+48725322,23761370,5
+48542981,23761370,3
+might_morning,23761370,5
+50023999,23761370,5
+cangyang,23761370,4
+solance,23761370,-1
+41106056,23761370,3
+mouzhu,23761370,5
+karenizumi,23761370,4
+54731797,23761370,5
+vicking,23761370,4
+Rstories,23761370,3
+yangjiayill,23761370,5
+36235566,23761370,5
+2850187,23761370,4
+n.ight,23761370,4
+77650951,23761370,1
+49938011,23761370,4
+45863268,23761370,3
+82243518,23761370,5
+39336749,23761370,4
+brant,23761370,5
+57865039,23761370,5
+49455679,23761370,5
+L.am,23761370,5
+82150919,23761370,4
+102601631,23761370,4
+xweiway,23761370,5
+3305904,23761370,4
+yuuto,23761370,5
+35805626,23761370,3
+3217100,23761370,4
+61490761,23761370,4
+50413035,23761370,5
+3274950,23761370,-1
+2759371,23761370,3
+3705107,23761370,5
+koyomi,23761370,4
+qianmot,23761370,5
+57771053,23761370,4
+joyyoung19,23761370,5
+54906701,23761370,5
+54556746,23761370,5
+gudushamo,23761370,3
+107574311,23761370,4
+gardeniaJ,23761370,5
+115825634,23761370,5
+44501154,23761370,4
+avivalovestory,23761370,5
+1565237,23761370,4
+wingszero,23761370,4
+Shawn_lecter,23761370,4
+48216227,23761370,5
+junoqi,23761370,5
+amber_L,23761370,4
+53206753,23761370,3
+KAKASHI_7,23761370,4
+junjie1210,23761370,3
+53724361,23761370,4
+2174521,23761370,4
+zhoudaxia,23761370,4
+Suriye_se7en,23761370,4
+sodawubei,23761370,4
+huanxibushuohua,23761370,4
+39795294,23761370,5
+47507946,23761370,4
+48093080,23761370,5
+qxmy,23761370,3
+Hanndiex_,23761370,5
+48264121,23761370,4
+66771088,23761370,4
+38324807,23761370,3
+62697109,23761370,4
+55305806,23761370,4
+2241625,23761370,-1
+dagfgsdfgsdfg,23761370,3
+xiangkou,23761370,5
+52524623,23761370,5
+Lucifer_0,23761370,-1
+cynthia0706,23761370,5
+FungManYuen,23761370,5
+maruko31,23761370,5
+minuan,23761370,5
+dayingbuaini,23761370,5
+superpumpkin,23761370,5
+84055192,23761370,1
+42862984,23761370,4
+3298414,23761370,5
+ltraman,23761370,5
+43310692,23761370,5
+50629690,23761370,4
+122368219,23761370,4
+66540464,23761370,4
+leonsoso,23761370,4
+45448167,23761370,2
+daisy_41,23761370,2
+NinaWang_,23761370,5
+miki414,23761370,5
+jul.9th,23761370,4
+38222446,23761370,5
+60722327,23761370,5
+love540forever,23761370,4
+goodbye1988,23761370,5
+59378291,23761370,5
+84433988,23761370,3
+70160255,23761370,3
+lanette,23761370,3
+125088554,23761370,4
+72828410,23761370,5
+xmusicandy,23761370,4
+48275353,23761370,5
+124120092,23761370,5
+liaosunan,23761370,5
+44903180,23761370,4
+41327989,23761370,4
+54475516,23761370,4
+sp0328,23761370,3
+47010023,23761370,3
+DemiNee,23761370,4
+xoxoxiaoxiaoai,23761370,5
+55439689,23761370,-1
+chihaidan,23761370,5
+Kissogram,23761370,5
+103775903,23761370,5
+dolce327,23761370,5
+candyedsa,23761370,5
+bingbingcheerup,23761370,-1
+seanhh,23761370,5
+secretcat,23761370,4
+123096949,23761370,2
+2658903,23761370,4
+62477319,23761370,2
+51560029,23761370,4
+25517807,23761370,4
+65402009,23761370,3
+A-SU,23761370,4
+rackie,23761370,4
+74851101,23761370,5
+51498464,23761370,5
+36840213,23761370,5
+happyjoy,23761370,5
+88032074,23761370,4
+ljbjune,23761370,4
+49863332,23761370,5
+48065350,23761370,4
+triStoneL,23761370,4
+arys88,23761370,5
+70335996,23761370,3
+2280092,23761370,5
+jogy,23761370,3
+kidkid,23761370,3
+50694975,23761370,4
+61930897,23761370,5
+34940692,23761370,5
+queenmaria,23761370,5
+32359738,23761370,4
+61185595,23761370,5
+2163010,23761370,4
+3985070,23761370,4
+4075226,23761370,4
+43351926,23761370,5
+62236737,23761370,4
+65612991,23761370,2
+3396223,23761370,4
+62318523,23761370,3
+3497982,23761370,4
+66036408,23761370,4
+tjyan,23761370,4
+xianschool,23761370,5
+1949782,23761370,5
+uranus_taotao,23761370,5
+wizards,23761370,5
+bbdddbb,23761370,4
+61602605,23761370,5
+beibeiyu,23761370,4
+aliangshuo,23761370,5
+33149603,23761370,5
+54253559,23761370,5
+arsenal1988828,23761370,5
+Robotme,23761370,5
+55833200,23761370,5
+2411985,23761370,5
+cheryl84,23761370,3
+122586428,23761370,5
+dirtylee,23761370,4
+82027868,23761370,5
+45496268,23761370,4
+3506880,23761370,3
+73416424,23761370,4
+chrissie619108,23761370,4
+76120058,23761370,3
+christchild,23761370,5
+kamao,23761370,5
+Aoiyuu,23761370,5
+50590783,23761370,2
+lamchan,23761370,4
+zzw6021231,23761370,4
+mylittletower,23761370,5
+85728875,23761370,5
+79694642,23761370,-1
+zouxq1993,23761370,4
+pingfandeshabi,23761370,4
+53240525,23761370,4
+2089798,23761370,4
+56712686,23761370,4
+12034593,23761370,3
+60654421,23761370,5
+1102297,23761370,5
+imqxq,23761370,-1
+53011645,23761370,5
+2311976,23761370,3
+41703158,23761370,2
+sweetchocolate,23761370,5
+85770669,23761370,4
+Eleven_Park,23761370,5
+alacrity516,23761370,4
+4507417,23761370,5
+beloved-seven,23761370,5
+57560679,23761370,5
+guanglovelun,23761370,5
+qamber,23761370,4
+miaolerr,23761370,4
+2479049,23761370,5
+4114969,23761370,4
+dl0514,23761370,5
+succina,23761370,3
+83806039,23761370,2
+47523220,23761370,-1
+69712659,23761370,4
+leidashen,23761370,4
+80323022,23761370,5
+84628411,23761370,5
+58610143,23761370,5
+yummygirl,23761370,4
+vanvin,23761370,5
+lunaya,23761370,4
+tmp2,23761370,3
+58752596,23761370,5
+weijianjian,23761370,3
+48349431,23761370,3
+4497053,23761370,5
+48625929,23761370,5
+47821989,23761370,4
+59764593,23761370,4
+fly-bike,23761370,4
+imjinjin,23761370,5
+jaimeshao,23761370,4
+52395639,23761370,5
+121682845,23761370,4
+49266034,23761370,-1
+staved,23761370,4
+13337545,23761370,3
+allenxieaoaf12,23761370,5
+52615595,23761370,4
+60740246,23761370,4
+31596530,23761370,4
+37037578,23761370,-1
+laerngiv,23761370,4
+given0709,23761370,4
+88898947,23761370,5
+aliceadelice,23761370,5
+22187637,23761370,5
+zuoyouyoyo,23761370,5
+80784091,23761370,4
+1749296,23761370,4
+48072166,23761370,4
+maple0925,23761370,5
+71189940,23761370,5
+agnosia11,23761370,5
+10026373,23761370,4
+93408667,23761370,5
+xuan102,23761370,3
+sweetiantian,23761370,4
+73792884,23761370,5
+50682359,23761370,3
+87905288,23761370,4
+61992166,23761370,5
+orchid926,23761370,4
+48816803,23761370,4
+58706786,23761370,5
+46658511,23761370,5
+1783337,23761370,3
+mangomangotree,23761370,2
+iamwhatiam,23761370,-1
+88844052,23761370,3
+47768193,23761370,5
+janincepetrova,23761370,3
+luoxupei,23761370,5
+52743216,23761370,4
+80598638,23761370,5
+huajun20,23761370,5
+65850343,23761370,3
+45129270,23761370,5
+74169906,23761370,5
+46810094,23761370,5
+alaray,23761370,3
+checycc,23761370,4
+42148511,23761370,5
+51805947,23761370,5
+62121970,23761370,5
+59807933,23761370,5
+90761722,23761370,5
+tyfeng1220,23761370,5
+69095608,23761370,4
+122179941,23761370,3
+luomo1989,23761370,3
+67272541,23761370,-1
+anotherballack,23761370,5
+Nextday,23761370,4
+aquahst,23761370,4
+susanmyy,23761370,5
+116007343,23761370,5
+mazerine,23761370,4
+71134054,23761370,5
+smilehuhu,23761370,4
+48829574,23761370,3
+mylittlechul_c,23761370,5
+ppyy,23761370,4
+minijoan,23761370,4
+viva.wj,23761370,3
+chenfanvip,23761370,5
+flowerj,23761370,5
+erms,23761370,5
+54808863,23761370,5
+xuyanshang,23761370,4
+1520844,23761370,4
+2705619,23761370,5
+1286114,23761370,3
+minniedai,23761370,5
+GekiMasamune,23761370,5
+ALLURER,23761370,5
+iamtwn,23761370,4
+4655887,23761370,5
+CheeseTree,23761370,4
+90966188,23761370,5
+Ruby-0917,23761370,5
+40924557,23761370,5
+28272719,23761370,5
+bololodada,23761370,5
+27824791,23761370,5
+xiaojiaozhu,23761370,5
+2802817,23761370,5
+liasuz,23761370,3
+78378668,23761370,5
+74479513,23761370,5
+68354862,23761370,4
+82670007,23761370,4
+peterfdt,23761370,4
+landy0514,23761370,5
+31507086,23761370,4
+57811727,23761370,3
+canson,23761370,3
+isabella_tk,23761370,1
+61594655,23761370,5
+59323757,23761370,5
+45072304,23761370,3
+61209758,23761370,5
+43090298,23761370,3
+50203887,23761370,5
+49594661,23761370,3
+72639962,23761370,4
+50247894,23761370,4
+68504200,23761370,5
+siye,23761370,4
+42992456,23761370,4
+annsueeee,23761370,3
+puccaa,23761370,5
+Sorina,23761370,5
+42083618,23761370,5
+79148662,23761370,-1
+68296813,23761370,5
+wsscjl,23761370,4
+56239687,23761370,2
+42139446,23761370,5
+90514163,23761370,4
+46283344,23761370,5
+1840916,23761370,4
+43105295,23761370,4
+SMC,23761370,4
+48639532,23761370,5
+NNLLT,23761370,4
+xinyi714,23761370,4
+121551804,23761370,5
+puffbaby,23761370,3
+48484195,23761370,3
+cynthiays,23761370,4
+yuexiamengshi,23761370,3
+65094670,23761370,3
+icaplico,23761370,4
+happydouble,23761370,5
+3522555,23761370,5
+mypal,23761370,5
+Sheepo,23761370,3
+36541533,23761370,5
+2465698,23761370,4
+1414370,23761370,4
+59386777,23761370,4
+1439418,23761370,3
+68750728,23761370,5
+122384398,23761370,4
+cherry66,23761370,5
+35233612,23761370,3
+TaTaxxxx,23761370,4
+wph546635812,23761370,5
+ChelseaHotel,23761370,5
+suev,23761370,3
+30277086,23761370,3
+birdieeos,23761370,4
+silenrocker,23761370,4
+59522375,23761370,3
+baosiyixiao,23761370,5
+92636187,23761370,4
+xiaoling1218,23761370,3
+81691317,23761370,5
+35342800,23761370,-1
+59752258,23761370,5
+54154323,23761370,5
+leo07crystal,23761370,5
+68528163,23761370,3
+2707760,23761370,5
+13653549,23761370,5
+annow,23761370,4
+106581395,23761370,5
+52610142,23761370,5
+suels,23761370,2
+ilovealansuper,23761370,5
+2843736,23761370,5
+44182814,23761370,4
+littleben,23761370,5
+44249875,23761370,5
+41363417,23761370,4
+71862712,23761370,4
+shuyiran,23761370,-1
+wei666,23761370,3
+49495441,23761370,4
+purplemoon,23761370,3
+4523655,23761370,1
+55436217,23761370,4
+70950521,23761370,4
+3005484,23761370,5
+63354598,23761370,4
+tanqiang,23761370,4
+merryliang,23761370,4
+125386661,23761370,5
+JoyceX,23761370,1
+62122190,23761370,4
+lupee,23761370,5
+candiclv,23761370,5
+74422713,23761370,5
+82581264,23761370,5
+hecategk,23761370,5
+2345391,23761370,1
+62432889,23761370,4
+erup,23761370,5
+109055681,23761370,4
+60844857,23761370,4
+TiffanyCao,23761370,4
+44662884,23761370,3
+lovenpeaces,23761370,5
+53462734,23761370,5
+61782618,23761370,5
+kangtacaty,23761370,4
+72171780,23761370,4
+66686811,23761370,4
+65403916,23761370,5
+50790508,23761370,3
+28861156,23761370,5
+121243676,23761370,4
+papa1968,23761370,4
+104890249,23761370,1
+roger0420,23761370,4
+50864883,23761370,3
+kangecho,23761370,4
+lilith1215,23761370,-1
+amytsai,23761370,5
+99548924,23761370,5
+4209620,23761370,4
+caroldove,23761370,5
+c20010122,23761370,4
+soool,23761370,5
+Heiyoo,23761370,4
+36945830,23761370,3
+leerp125,23761370,5
+119109089,23761370,5
+xinxinbaby,23761370,3
+58237348,23761370,4
+gatesleilei,23761370,3
+48533366,23761370,5
+124738542,23761370,5
+35265782,23761370,5
+58818351,23761370,2
+89825581,23761370,5
+sumouyeah,23761370,5
+27935436,23761370,5
+122602270,23761370,5
+4597786,23761370,4
+75001572,23761370,5
+125385814,23761370,-1
+goofy,23761370,3
+2622237,23761370,4
+52695229,23761370,3
+74361117,23761370,4
+sam_smile,23761370,5
+41601880,23761370,5
+61762369,23761370,5
+52279505,23761370,4
+lanhl,23761370,5
+44694238,23761370,5
+4582518,23761370,4
+82582051,23761370,4
+fifa7zp,23761370,3
+Darezhao,23761370,5
+75611903,23761370,1
+nicdone,23761370,5
+wchunxiao,23761370,5
+55988655,23761370,5
+eiji218837,23761370,4
+ssyppq,23761370,5
+40889414,23761370,5
+mascotchen,23761370,5
+Mianmian.,23761370,5
+84207817,23761370,5
+34774733,23761370,4
+fenglingcp,23761370,5
+103355287,23761370,4
+50570726,23761370,5
+carol1990,23761370,3
+115006988,23761370,4
+69646560,23761370,5
+66963524,23761370,4
+90269055,23761370,4
+2189661,23761370,3
+4336495,23761370,4
+76595603,23761370,5
+42346605,23761370,4
+staywithmeivy,23761370,3
+68639012,23761370,4
+shimwoo,23761370,5
+3326265,23761370,5
+riverbird,23761370,5
+wendy-tsai,23761370,3
+jeyhello,23761370,4
+77862080,23761370,3
+125384741,23761370,5
+60165139,23761370,5
+4242728,23761370,4
+LOCass,23761370,5
+125384629,23761370,3
+2399727,23761370,4
+baron-K,23761370,4
+56670282,23761370,3
+yingzhuang,23761370,5
+surths,23761370,3
+kelsizy,23761370,3
+125384890,23761370,5
+92616696,23761370,5
+119553776,23761370,4
+75394819,23761370,5
+66467700,23761370,4
+MoEcyan,23761370,5
+50716714,23761370,4
+50028019,23761370,5
+59940868,23761370,4
+59940868,23761370,4
+16750521,23761370,4
+64471026,23761370,5
+roaring90h,23761370,5
+samsyu,23761370,3
+wild-kid,23761370,5
+eyesfromacat,23761370,4
+6898046,23761370,5
+DorisM,23761370,4
+13147316,23761370,3
+candyhorse,23761370,5
+44078114,23761370,4
+54783483,23761370,5
+septembersummer,23761370,4
+91298554,23761370,4
+david001,23761370,5
+122527158,23761370,5
+4703920,23761370,4
+57370195,23761370,4
+Lkongming,23761370,3
+50349631,23761370,5
+kathleenchen,23761370,5
+52299764,23761370,-1
+1421601,23761370,5
+shallio,23761370,4
+mosey0717,23761370,4
+ami0430,23761370,5
+Jewon,23761370,4
+fang0079,23761370,4
+2290969,23761370,-1
+43422904,23761370,4
+64466995,23761370,5
+busmonkey,23761370,3
+67963282,23761370,3
+danlan121,23761370,4
+62041863,23761370,4
+fifthelement,23761370,5
+ryannys,23761370,4
+morechange,23761370,5
+2842222,23761370,5
+2069940,23761370,5
+nianyike,23761370,3
+3959210,23761370,5
+25084052,23761370,5
+kmars,23761370,5
+louis15yao,23761370,4
+4221659,23761370,4
+106137917,23761370,4
+xuexiaoyun,23761370,5
+levone,23761370,4
+43589265,23761370,4
+43842293,23761370,4
+joegun,23761370,2
+56307969,23761370,4
+67567606,23761370,5
+105864771,23761370,4
+zhengminlive,23761370,5
+57974735,23761370,5
+48126624,23761370,5
+69798220,23761370,5
+91114476,23761370,3
+beepee,23761370,4
+jolinxian,23761370,4
+65632415,23761370,5
+dooom,23761370,4
+27764324,23761370,4
+kane7,23761370,4
+104127688,23761370,5
+wangxiaobei89,23761370,5
+9275684,23761370,-1
+ioriwong,23761370,2
+53492499,23761370,5
+50940233,23761370,5
+79309643,23761370,5
+48237443,23761370,5
+48831047,23761370,3
+51873212,23761370,5
+4414323,23761370,5
+16040985,23761370,5
+52650072,23761370,5
+zc_726,23761370,4
+39798049,23761370,5
+114606951,23761370,4
+36321552,23761370,4
+62360601,23761370,4
+51241460,23761370,4
+qiufen,23761370,4
+51765654,23761370,5
+4406925,23761370,3
+3913741,23761370,4
+rachelyi23,23761370,4
+megumiwo,23761370,3
+VLR,23761370,5
+84005253,23761370,5
+62415813,23761370,5
+shijinxue,23761370,5
+megumi2046,23761370,5
+3182937,23761370,5
+3389000,23761370,5
+46078786,23761370,3
+HeroineDaode,23761370,2
+thegreatkoala,23761370,4
+ambehr,23761370,3
+jinsy,23761370,5
+35404268,23761370,5
+100445422,23761370,3
+violettedit,23761370,4
+56557982,23761370,5
+3992054,23761370,3
+57996678,23761370,5
+seven_shimy,23761370,5
+57217882,23761370,5
+ZawadaRiiin,23761370,5
+79301017,23761370,4
+50109761,23761370,4
+69594936,23761370,5
+62706490,23761370,4
+coolwd,23761370,4
+zlr,23761370,5
+2912391,23761370,5
+50537526,23761370,3
+littleprincewx,23761370,5
+37366802,23761370,3
+48459404,23761370,3
+IAMVILLIAN,23761370,4
+louisegarden,23761370,4
+78273434,23761370,5
+83938738,23761370,4
+xiaozhusi,23761370,4
+67586472,23761370,4
+mississluu,23761370,5
+candylyt,23761370,5
+35818666,23761370,3
+49812729,23761370,3
+64883992,23761370,5
+4900537,23761370,5
+57613408,23761370,5
+51760387,23761370,5
+62894547,23761370,5
+90014162,23761370,5
+zo3c,23761370,4
+2248658,23761370,5
+sogenannte,23761370,3
+birchyanhua,23761370,5
+44975625,23761370,5
+yuchenfeng,23761370,4
+eatonzh,23761370,5
+73205560,23761370,5
+Dydia,23761370,3
+77430587,23761370,5
+twinkle1437,23761370,5
+114485241,23761370,5
+51763262,23761370,4
+121346678,23761370,5
+ADmoviemtime,23761370,5
+115310630,23761370,5
+Geminiying,23761370,5
+59402778,23761370,2
+7292654,23761370,5
+busrang,23761370,2
+wangyiqiu,23761370,4
+aki_520,23761370,4
+3192663,23761370,3
+paradis1230,23761370,-1
+gladiatoryuwei,23761370,4
+icy_,23761370,5
+1931212,23761370,-1
+Hey.girl,23761370,5
+cybenny,23761370,4
+115164005,23761370,4
+iyyhua,23761370,5
+2291546,23761370,4
+62945273,23761370,4
+70794815,23761370,5
+52529736,23761370,4
+71029136,23761370,5
+60761601,23761370,5
+Makamaka,23761370,4
+60261092,23761370,5
+chloe0710,23761370,3
+115501329,23761370,5
+60904027,23761370,5
+2959420,23761370,5
+40850252,23761370,3
+51739161,23761370,4
+48610226,23761370,5
+43475648,23761370,5
+55583926,23761370,4
+62497317,23761370,1
+47632513,23761370,4
+8605018,23761370,5
+Yugu,23761370,3
+51248464,23761370,5
+4340826,23761370,5
+4586341,23761370,5
+Lizyjs,23761370,3
+mengailu1314,23761370,4
+59375998,23761370,4
+2889001,23761370,5
+50694268,23761370,5
+Pacific_Wei,23761370,5
+47784418,23761370,4
+44483182,23761370,5
+61711625,23761370,5
+Macready,23761370,5
+43595652,23761370,5
+36475827,23761370,4
+35233003,23761370,3
+40970313,23761370,4
+with-teeny,23761370,3
+3301137,23761370,4
+53981357,23761370,4
+Young_for_you,23761370,4
+45029225,23761370,5
+thunder6780,23761370,5
+tinka,23761370,4
+53240953,23761370,4
+49059883,23761370,5
+louwai,23761370,4
+cerop,23761370,4
+GATIK,23761370,5
+2772729,23761370,3
+36429054,23761370,3
+xiehaoing,23761370,4
+81666481,23761370,5
+47837799,23761370,4
+54098652,23761370,3
+royin.chao,23761370,3
+PatrickMYK,23761370,3
+zeroiris,23761370,4
+excelgirl,23761370,5
+77414251,23761370,5
+1402471,23761370,5
+61733612,23761370,5
+kpcloud1314,23761370,3
+azurepeach,23761370,5
+drowna,23761370,5
+naifena,23761370,4
+poppy830606,23761370,5
+30357929,23761370,5
+Rinascita,23761370,3
+17550801,23761370,4
+61437935,23761370,5
+luoze,23761370,4
+97211660,23761370,5
+nudepic,23761370,5
+58056285,23761370,5
+44228798,23761370,4
+53065744,23761370,5
+CielMu,23761370,4
+wolfdharky,23761370,3
+freekami,23761370,3
+100390920,23761370,5
+alwaysbestrong,23761370,2
+48481672,23761370,5
+64314238,23761370,4
+84513545,23761370,5
+zl99,23761370,5
+dearsiya,23761370,5
+79118365,23761370,5
+3534571,23761370,5
+61729282,23761370,5
+colisa,23761370,3
+61956247,23761370,5
+66979226,23761370,5
+imyoyo1116,23761370,4
+lotuslalay,23761370,4
+wangxiaopang,23761370,5
+68124742,23761370,5
+102100348,23761370,2
+xulu_films,23761370,5
+4413125,23761370,5
+lrc940928,23761370,4
+53829773,23761370,5
+30273027,23761370,3
+AntheaVc,23761370,5
+102075866,23761370,5
+myapril,23761370,4
+Cycneverstop,23761370,5
+misszuoweimen,23761370,4
+silencehuang,23761370,4
+1586971,23761370,4
+aPaoPao,23761370,4
+iwave,23761370,4
+49115709,23761370,5
+shenluos,23761370,4
+51758846,23761370,5
+36231794,23761370,5
+wt365,23761370,4
+54753933,23761370,3
+51965596,23761370,5
+50400133,23761370,3
+RivaLinn,23761370,5
+57950978,23761370,5
+elainxu,23761370,3
+seeuyuki,23761370,5
+leann1217,23761370,4
+30186922,23761370,4
+2055478,23761370,5
+mengmengleo,23761370,5
+24365141,23761370,4
+54296180,23761370,4
+77644475,23761370,-1
+80899034,23761370,5
+fxw0806,23761370,5
+75086193,23761370,4
+22725672,23761370,5
+81412725,23761370,5
+ambrosia.levine,23761370,5
+77568488,23761370,5
+MJ_CN,23761370,4
+4018918,23761370,5
+44112284,23761370,4
+58904341,23761370,5
+122127116,23761370,5
+2179932,23761370,3
+62635630,23761370,4
+43594765,23761370,4
+cardius,23761370,4
+1317183,23761370,4
+1317183,23761370,4
+fortanxu,23761370,5
+50514243,23761370,3
+yangisyang,23761370,5
+2788108,23761370,5
+42443171,23761370,5
+lovelaa,23761370,5
+cxyecho,23761370,5
+105489601,23761370,2
+darlingyou,23761370,3
+52539806,23761370,3
+1107251,23761370,4
+logiko,23761370,4
+alisa_lea,23761370,5
+fyfhjq,23761370,5
+71574131,23761370,4
+wanglihonm,23761370,5
+kiwi7kiwi,23761370,5
+57548410,23761370,1
+soloz,23761370,3
+jupengorall,23761370,5
+Hagy,23761370,5
+62279554,23761370,5
+39652558,23761370,3
+41711436,23761370,4
+29575216,23761370,4
+53334499,23761370,4
+51571110,23761370,3
+someday,23761370,3
+69196405,23761370,5
+qingqiushu,23761370,4
+60485170,23761370,5
+84219123,23761370,4
+70104513,23761370,1
+73150810,23761370,5
+83264508,23761370,4
+lycans,23761370,5
+popzoe,23761370,4
+55882249,23761370,5
+2721490,23761370,4
+66077816,23761370,5
+51777015,23761370,4
+2212675,23761370,5
+calyx,23761370,5
+onlyqinping,23761370,5
+3042446,23761370,4
+56898104,23761370,3
+60382545,23761370,4
+Orchid,23761370,4
+39801222,23761370,5
+26539835,23761370,2
+93377221,23761370,3
+83304203,23761370,5
+elci,23761370,5
+1802019,23761370,4
+41206974,23761370,1
+59245915,23761370,5
+2686706,23761370,5
+pussy0pu,23761370,4
+61904688,23761370,5
+songdajia,23761370,5
+44386404,23761370,5
+24112707,23761370,2
+44722840,23761370,5
+snakeeye,23761370,4
+53271338,23761370,5
+52879996,23761370,5
+wanxinLee,23761370,5
+hejinsomething,23761370,4
+75699782,23761370,2
+2437069,23761370,4
+lucisferre,23761370,4
+jizisudexiaowo,23761370,5
+46350498,23761370,5
+97789517,23761370,5
+57537354,23761370,5
+17843797,23761370,4
+wll1205,23761370,5
+46318575,23761370,5
+54393930,23761370,5
+15982039,23761370,5
+bearblindman,23761370,5
+42821909,23761370,5
+52436988,23761370,4
+46847092,23761370,5
+64328101,23761370,5
+61085333,23761370,4
+53743236,23761370,3
+anjoyloveyaya,23761370,3
+67677954,23761370,4
+acesniper,23761370,3
+blase_pp,23761370,4
+62986694,23761370,5
+58460115,23761370,2
+50577311,23761370,4
+36927005,23761370,3
+69128879,23761370,3
+1934413,23761370,4
+9684493,23761370,5
+103550111,23761370,4
+52598914,23761370,5
+pizipang,23761370,5
+junnasky,23761370,5
+senor,23761370,5
+lesta,23761370,4
+93455705,23761370,4
+121141098,23761370,5
+56351830,23761370,5
+76933799,23761370,4
+cloverzxy,23761370,5
+55019344,23761370,5
+93892137,23761370,5
+47099482,23761370,5
+dej_you,23761370,5
+yjjtdcq200,23761370,5
+genli,23761370,3
+48624306,23761370,5
+mercury0302,23761370,5
+88371415,23761370,3
+58596058,23761370,4
+58596058,23761370,4
+61504169,23761370,4
+57061897,23761370,5
+34347136,23761370,3
+silverstro,23761370,-1
+77212205,23761370,5
+iris714,23761370,4
+laoshixier,23761370,5
+65203829,23761370,3
+okazakishin,23761370,5
+40654523,23761370,4
+120296628,23761370,5
+62393784,23761370,5
+37652857,23761370,4
+mojibai,23761370,5
+68085288,23761370,3
+91798703,23761370,4
+61221215,23761370,4
+screamers,23761370,4
+45784298,23761370,5
+2295266,23761370,2
+wangyinren,23761370,4
+40258007,23761370,5
+pure_115,23761370,4
+love1222,23761370,5
+fonne,23761370,3
+52815807,23761370,5
+sesey,23761370,4
+49133456,23761370,4
+46014273,23761370,5
+65619025,23761370,4
+103491600,23761370,4
+34309421,23761370,4
+14715966,23761370,3
+68219887,23761370,5
+sidrat,23761370,5
+40339892,23761370,4
+a495433977,23761370,5
+indieluster,23761370,4
+62031616,23761370,5
+62031616,23761370,5
+crvigne,23761370,5
+wsyyw,23761370,5
+65448112,23761370,4
+angelinebyi,23761370,4
+shouding,23761370,5
+121967027,23761370,5
+71938369,23761370,4
+samael-15,23761370,3
+58049381,23761370,4
+1970128,23761370,5
+54434263,23761370,5
+36043913,23761370,5
+37684609,23761370,4
+125373467,23761370,5
+3167300,23761370,3
+64026031,23761370,5
+85451111,23761370,5
+54918283,23761370,3
+68604676,23761370,4
+32941683,23761370,4
+56699761,23761370,5
+linxhe,23761370,-1
+28799281,23761370,5
+51393445,23761370,3
+11549513,23761370,5
+60773198,23761370,4
+qiangzhuang,23761370,5
+100639145,23761370,4
+wangmuyang,23761370,4
+74176502,23761370,5
+yukifay,23761370,3
+waitdd,23761370,5
+62764168,23761370,5
+81095299,23761370,4
+55447187,23761370,5
+weiwei8851,23761370,3
+homecat1983,23761370,5
+luyeok,23761370,3
+6091736,23761370,4
+loving_m,23761370,4
+lotusworld,23761370,4
+123090704,23761370,4
+78840839,23761370,5
+59507754,23761370,4
+2260505,23761370,5
+1867729,23761370,5
+39718211,23761370,5
+69948277,23761370,5
+qinzibonheur,23761370,5
+yace,23761370,5
+Deep-drawnstory,23761370,3
+49264212,23761370,4
+2569676,23761370,1
+56996126,23761370,5
+52886775,23761370,5
+36478287,23761370,5
+68586661,23761370,5
+lovechai,23761370,5
+xiaoxiaoz,23761370,5
+lihoru99,23761370,5
+62132064,23761370,4
+61606160,23761370,5
+55554354,23761370,5
+65517275,23761370,5
+41605259,23761370,3
+tabisaikou,23761370,5
+88541927,23761370,5
+47193126,23761370,4
+DarkBeam,23761370,1
+17775259,23761370,5
+68004061,23761370,4
+3113738,23761370,3
+dongxuanlan,23761370,4
+58081588,23761370,-1
+miya705,23761370,5
+leeyo,23761370,3
+47228941,23761370,5
+amber-shadow,23761370,4
+51222575,23761370,5
+43276698,23761370,5
+70806910,23761370,4
+38781943,23761370,4
+66168257,23761370,4
+54375170,23761370,5
+3649863,23761370,5
+nancyoyx,23761370,4
+48258605,23761370,5
+resurrection,23761370,4
+nushou,23761370,-1
+3707420,23761370,5
+52059996,23761370,4
+72785362,23761370,4
+fenglimuren,23761370,3
+62661789,23761370,-1
+56686488,23761370,5
+52291201,23761370,5
+ko2046,23761370,4
+Garbowho,23761370,3
+xusara,23761370,4
+nutsboy,23761370,5
+55314641,23761370,4
+2249533,23761370,5
+Mulholland,23761370,3
+65948274,23761370,-1
+wukailun,23761370,5
+delchisio,23761370,4
+dicky1986,23761370,4
+67644009,23761370,3
+44079904,23761370,3
+Dnegel,23761370,2
+76032805,23761370,4
+cold_warm,23761370,2
+4125912,23761370,-1
+67163006,23761370,5
+TheBeBe,23761370,3
+47943470,23761370,5
+monkeykey,23761370,5
+78362081,23761370,4
+wangzhonghua90,23761370,5
+49269031,23761370,4
+56573880,23761370,5
+yuebancl,23761370,4
+58086005,23761370,4
+ServerError,23761370,4
+ezerlee,23761370,3
+Heroic-Deborah,23761370,5
+49449526,23761370,4
+daisy16489,23761370,4
+52515675,23761370,3
+UltraCat,23761370,5
+wlhjz,23761370,5
+51061132,23761370,4
+LordBean,23761370,5
+3724437,23761370,4
+70930410,23761370,4
+luvsoon,23761370,3
+117359316,23761370,4
+50584548,23761370,-1
+66629958,23761370,4
+Mr.Island,23761370,4
+45529743,23761370,5
+80857906,23761370,-1
+cuixiaofan,23761370,5
+JohnJuniors,23761370,4
+50593872,23761370,5
+4338668,23761370,4
+shamaomao,23761370,2
+zihaozai0407,23761370,3
+4509531,23761370,3
+56556616,23761370,5
+66773730,23761370,3
+66106952,23761370,5
+Mashaun,23761370,5
+xxo,23761370,3
+Strangefamiliar,23761370,2
+46271874,23761370,4
+50221817,23761370,5
+59349524,23761370,4
+124749541,23761370,5
+124749541,23761370,5
+74201077,23761370,5
+snowandrain,23761370,3
+62773794,23761370,4
+29174787,23761370,5
+45506080,23761370,4
+54410090,23761370,3
+40931757,23761370,5
+70918158,23761370,4
+80887950,23761370,4
+37630136,23761370,5
+adong0502,23761370,3
+smile-7,23761370,5
+83143182,23761370,2
+13823787,23761370,3
+63785417,23761370,3
+Fia2mni,23761370,4
+59806287,23761370,3
+wendysunny,23761370,4
+bluekitten,23761370,5
+diefish_02,23761370,5
+4838811,23761370,4
+95382029,23761370,5
+63556191,23761370,5
+28953793,23761370,5
+49199928,23761370,5
+79770015,23761370,4
+39419715,23761370,5
+48329374,23761370,4
+46012521,23761370,3
+jenniferwei,23761370,5
+kikizhu,23761370,4
+parisyu,23761370,5
+oliveliu,23761370,5
+58160746,23761370,4
+2621323,23761370,5
+4800478,23761370,5
+ruanshusheng,23761370,4
+62210177,23761370,4
+daisynowhere,23761370,4
+100005291,23761370,5
+121096549,23761370,5
+73419369,23761370,5
+43716096,23761370,3
+adamson,23761370,5
+samkaka,23761370,5
+ALE277X,23761370,5
+ZoeGH,23761370,5
+pipasway,23761370,3
+53677228,23761370,4
+4858389,23761370,5
+81166239,23761370,5
+1391193,23761370,4
+58369888,23761370,4
+xifengqishi,23761370,4
+71821286,23761370,5
+Xixi_523,23761370,4
+57596518,23761370,4
+4196701,23761370,2
+46009385,23761370,4
+46009385,23761370,4
+50870712,23761370,3
+52399993,23761370,4
+63101856,23761370,5
+xincandu,23761370,3
+67984843,23761370,3
+80062653,23761370,5
+fastkill,23761370,4
+51215598,23761370,4
+78309120,23761370,3
+54041315,23761370,4
+110447556,23761370,4
+83472045,23761370,4
+58249428,23761370,4
+enchanted13,23761370,3
+4584624,23761370,3
+qianmocun,23761370,5
+102603343,23761370,4
+96764185,23761370,5
+GiraffeApril,23761370,5
+1584024,23761370,4
+stephanie7l,23761370,5
+120985349,23761370,5
+61075916,23761370,1
+redcookie,23761370,5
+51439533,23761370,5
+56141860,23761370,4
+44311537,23761370,5
+40369149,23761370,4
+Tanys1912,23761370,4
+122605310,23761370,3
+74448596,23761370,2
+49985095,23761370,5
+49294840,23761370,3
+idreammrs,23761370,5
+31043480,23761370,5
+44387904,23761370,4
+2530592,23761370,4
+59619050,23761370,5
+saint.sebastian,23761370,-1
+50330506,23761370,4
+43229954,23761370,5
+65029164,23761370,5
+MS_Marx,23761370,5
+52338639,23761370,4
+52263736,23761370,4
+55861568,23761370,5
+1285158,23761370,1
+58459733,23761370,3
+52375179,23761370,4
+2539331,23761370,3
+67497043,23761370,4
+i_7lin,23761370,4
+evilecho,23761370,5
+steveliux,23761370,4
+theMicky,23761370,5
+51773323,23761370,5
+rogers17,23761370,5
+WendiMurdoch,23761370,2
+2489066,23761370,5
+101516177,23761370,3
+quella1992,23761370,5
+41541704,23761370,4
+Michaela,23761370,4
+51297703,23761370,5
+nanruo13,23761370,5
+pseudoyu,23761370,5
+57982827,23761370,5
+60063091,23761370,5
+luckvin,23761370,5
+cupandrabbit,23761370,5
+fayed,23761370,4
+charminglight,23761370,2
+engel17,23761370,4
+58042507,23761370,3
+68834746,23761370,5
+pscjanet,23761370,5
+thecrespo,23761370,4
+58452601,23761370,4
+114838989,23761370,3
+120611241,23761370,5
+blue12,23761370,3
+may5may,23761370,5
+zylovenic,23761370,5
+zhaootong,23761370,5
+rainm1201,23761370,3
+62175134,23761370,4
+45484861,23761370,3
+TogetherWJ,23761370,1
+23733715,23761370,4
+lincolnhong,23761370,2
+cppxm,23761370,5
+59968133,23761370,5
+42292941,23761370,4
+PUPUP,23761370,4
+104312412,23761370,5
+4657884,23761370,4
+fyp34756,23761370,4
+58407046,23761370,4
+71060639,23761370,3
+btpighit,23761370,4
+3599642,23761370,5
+lizjuly,23761370,4
+1509670,23761370,-1
+48976051,23761370,4
+55434870,23761370,4
+64124840,23761370,3
+59805346,23761370,5
+Abbey_sick,23761370,5
+58113364,23761370,4
+fzw83035379,23761370,5
+cherrytown,23761370,5
+iloveu520,23761370,5
+55930530,23761370,5
+2304686,23761370,4
+shangyusu,23761370,5
+58023617,23761370,5
+41089463,23761370,4
+enchanter1993,23761370,3
+77236400,23761370,5
+1441718,23761370,4
+jd4868,23761370,5
+42182969,23761370,4
+mustbe007,23761370,4
+YoNasiti,23761370,5
+105547420,23761370,1
+87910708,23761370,1
+52151242,23761370,5
+80922094,23761370,3
+51394391,23761370,-1
+2575898,23761370,3
+eveshi,23761370,5
+78242005,23761370,5
+3920336,23761370,5
+yumaomao123,23761370,3
+weizi1977,23761370,4
+ganx,23761370,4
+87663628,23761370,4
+senlintu,23761370,4
+43200056,23761370,-1
+55653104,23761370,5
+69529350,23761370,2
+29742562,23761370,5
+misawang,23761370,4
+bbfary,23761370,5
+52835253,23761370,4
+56217750,23761370,3
+43473708,23761370,3
+88733058,23761370,5
+1548712,23761370,2
+57747730,23761370,4
+60106208,23761370,2
+chloe6668,23761370,5
+110042616,23761370,4
+jumbyl,23761370,5
+catq,23761370,4
+zhield,23761370,5
+46952897,23761370,3
+3425223,23761370,5
+lostoldboy,23761370,3
+little-dog,23761370,5
+16604198,23761370,5
+oraora,23761370,5
+3304167,23761370,4
+chouchou35,23761370,5
+ju5tin,23761370,3
+52064559,23761370,5
+kyo_21,23761370,3
+50584259,23761370,5
+chloeti,23761370,4
+ygweric,23761370,5
+55942870,23761370,4
+1558937,23761370,4
+72361227,23761370,5
+fengbao945,23761370,1
+102815660,23761370,5
+62710318,23761370,4
+17337630,23761370,5
+1388113,23761370,-1
+81174351,23761370,5
+81174351,23761370,5
+76529709,23761370,4
+88345379,23761370,5
+FORGET...,23761370,5
+4107805,23761370,5
+60886329,23761370,3
+67863005,23761370,5
+2310617,23761370,5
+67451821,23761370,4
+duanxxx,23761370,5
+57231514,23761370,5
+1795919,23761370,4
+Ces7,23761370,4
+46856109,23761370,3
+58313990,23761370,4
+77420474,23761370,5
+tangying1990,23761370,5
+3118797,23761370,4
+Dreamology525,23761370,5
+chimianbaodemao,23761370,4
+maye696,23761370,4
+38045752,23761370,4
+Mackenzie_C,23761370,5
+64252726,23761370,5
+57880931,23761370,5
+66618128,23761370,5
+57784183,23761370,5
+qingchunyy,23761370,5
+liaoxuyun,23761370,4
+gregoryhouse,23761370,4
+74106602,23761370,3
+58309527,23761370,5
+pikabobo,23761370,5
+WindmillPotato,23761370,5
+westleaf,23761370,5
+46593728,23761370,4
+ziv_yll,23761370,5
+76556131,23761370,5
+zmx123,23761370,4
+46213665,23761370,5
+37495463,23761370,4
+74008197,23761370,5
+73655682,23761370,1
+76395595,23761370,5
+andichou,23761370,5
+59638639,23761370,4
+zhuhanlu,23761370,-1
+58736994,23761370,5
+36041688,23761370,4
+4152095,23761370,4
+81757410,23761370,4
+80609092,23761370,4
+61059100,23761370,5
+64954480,23761370,5
+41761558,23761370,4
+73536867,23761370,4
+buerld,23761370,4
+23750536,23761370,5
+4413212,23761370,5
+64035524,23761370,5
+66722485,23761370,4
+5554173,23761370,5
+3502294,23761370,4
+63329467,23761370,3
+53436799,23761370,5
+45453533,23761370,3
+61550476,23761370,5
+66766065,23761370,5
+73496560,23761370,4
+52762105,23761370,4
+teng.,23761370,5
+60834286,23761370,5
+49924082,23761370,4
+62682539,23761370,4
+hiddenIris,23761370,4
+cozy421,23761370,4
+58242884,23761370,4
+v32,23761370,4
+caizixuan,23761370,2
+woshiadan,23761370,4
+shijuming,23761370,4
+52353121,23761370,1
+redspring,23761370,5
+60952252,23761370,4
+daysofyouth,23761370,4
+stephanie7766,23761370,4
+35051373,23761370,5
+zhaimi,23761370,3
+92192831,23761370,5
+1680367,23761370,3
+46836481,23761370,4
+71961235,23761370,3
+shaku_hanako,23761370,3
+43562341,23761370,4
+62532021,23761370,5
+lightchaser,23761370,5
+120975732,23761370,5
+51999705,23761370,5
+4095881,23761370,5
+57666783,23761370,5
+1398348,23761370,4
+illuminati,23761370,5
+tricy_y,23761370,4
+64251683,23761370,5
+57163160,23761370,4
+60220254,23761370,5
+103124006,23761370,5
+49442146,23761370,5
+72475998,23761370,5
+pangdashen,23761370,3
+stefana,23761370,4
+beautifulluna,23761370,3
+71947752,23761370,4
+QQ3BlueRose,23761370,5
+120948549,23761370,3
+zeonwon,23761370,5
+YuiAraGaki615,23761370,4
+47452659,23761370,4
+61630051,23761370,5
+xiawu1130,23761370,5
+49176180,23761370,4
+kimomo,23761370,5
+naiveal,23761370,4
+aaronlikecheese,23761370,4
+42025402,23761370,4
+54933177,23761370,3
+41294131,23761370,3
+64694278,23761370,5
+noirdes,23761370,5
+27928039,23761370,5
+3561702,23761370,5
+xiaoshuogege,23761370,4
+66825713,23761370,5
+65713260,23761370,5
+lolololo,23761370,5
+roughcherry,23761370,4
+nidada,23761370,5
+lyanloveforever,23761370,4
+simonly,23761370,3
+bigoo,23761370,4
+50191666,23761370,4
+48506304,23761370,5
+wtforz,23761370,4
+yuyuchan,23761370,5
+58068856,23761370,4
+58976262,23761370,4
+65466491,23761370,5
+40971398,23761370,4
+120250612,23761370,4
+3412422,23761370,5
+sevenn77,23761370,5
+Face_xiang1992,23761370,4
+72107657,23761370,-1
+gionlau,23761370,4
+4125739,23761370,4
+jzhshow,23761370,4
+leave614,23761370,5
+liiusonny,23761370,4
+1609951,23761370,3
+jeensk,23761370,5
+88117777,23761370,2
+mchun1989,23761370,4
+stephanieyy,23761370,4
+85260214,23761370,5
+59086030,23761370,4
+96408686,23761370,5
+Geller,23761370,5
+46303858,23761370,5
+65521542,23761370,3
+47873595,23761370,4
+gunneryx,23761370,4
+ywbobo,23761370,2
+69068594,23761370,4
+121516783,23761370,4
+beier0310,23761370,4
+37633761,23761370,3
+35904948,23761370,5
+yoonjaeleven,23761370,5
+35085554,23761370,5
+Z-nana,23761370,5
+10652673,23761370,-1
+64545753,23761370,3
+47585387,23761370,5
+85057811,23761370,5
+jingknight,23761370,5
+wanion911,23761370,5
+51469631,23761370,4
+summertt422,23761370,4
+43406564,23761370,4
+1085841,23761370,5
+108728463,23761370,4
+62840358,23761370,5
+85038783,23761370,4
+58792200,23761370,4
+48067046,23761370,4
+SonicAge,23761370,5
+ClaireL,23761370,3
+63997678,23761370,5
+Scorpio0203,23761370,4
+iklong,23761370,3
+20875837,23761370,2
+41786297,23761370,5
+summerchocolate,23761370,4
+2338857,23761370,3
+53990289,23761370,5
+mikeodj,23761370,4
+helloxxf,23761370,4
+idao,23761370,5
+2724287,23761370,5
+58326682,23761370,3
+51763291,23761370,3
+3305717,23761370,4
+southwest,23761370,5
+45282749,23761370,4
+singleyu,23761370,3
+3613230,23761370,2
+74190059,23761370,5
+87513783,23761370,4
+48932530,23761370,5
+79847046,23761370,3
+26715515,23761370,4
+4247098,23761370,4
+71875711,23761370,5
+56454388,23761370,4
+83188412,23761370,5
+57560468,23761370,5
+62198485,23761370,5
+49476132,23761370,4
+dearerxia,23761370,4
+2399044,23761370,5
+acaiaisr0701,23761370,4
+36132288,23761370,5
+lynn-li,23761370,4
+13261397,23761370,3
+70898886,23761370,4
+luoxi5098,23761370,1
+49095978,23761370,5
+63778330,23761370,5
+50875954,23761370,5
+92016495,23761370,5
+lalalalahehehou,23761370,5
+25546658,23761370,5
+momisa,23761370,4
+67867905,23761370,5
+77629811,23761370,1
+65391055,23761370,4
+64816700,23761370,5
+36742818,23761370,4
+72444807,23761370,5
+63537960,23761370,4
+23255914,23761370,4
+60551718,23761370,4
+crossmaple,23761370,4
+43944690,23761370,5
+50203852,23761370,4
+cookieaibonbon,23761370,5
+litterself,23761370,4
+lloveleely,23761370,-1
+27406418,23761370,5
+46839557,23761370,4
+46839557,23761370,4
+xiaojuan0806,23761370,5
+weizaia,23761370,5
+56484149,23761370,4
+posuoluo,23761370,5
+2094664,23761370,5
+58719770,23761370,4
+maplesyrup,23761370,4
+2310104,23761370,5
+45841206,23761370,4
+49383810,23761370,4
+59599346,23761370,3
+56095578,23761370,5
+97740179,23761370,5
+74495148,23761370,3
+4492514,23761370,4
+45952179,23761370,5
+55652120,23761370,3
+51525177,23761370,3
+52392093,23761370,5
+f_floria,23761370,4
+2221326,23761370,5
+47287312,23761370,5
+41324627,23761370,5
+41113837,23761370,3
+cxxxmonster531,23761370,3
+jianjinx,23761370,5
+43102408,23761370,3
+43952815,23761370,5
+122616088,23761370,3
+stabrid,23761370,3
+mozir,23761370,4
+LailaiET,23761370,5
+47127791,23761370,4
+48541726,23761370,3
+4188273,23761370,3
+35656864,23761370,5
+65000892,23761370,2
+56403979,23761370,4
+31885459,23761370,4
+53895947,23761370,5
+102044402,23761370,4
+62500230,23761370,3
+1107971,23761370,3
+52740820,23761370,3
+35015768,23761370,4
+vaneptune,23761370,2
+dOdO621,23761370,4
+12061632,23761370,4
+47837050,23761370,5
+1440772,23761370,4
+annho,23761370,5
+deirdra,23761370,2
+rex-home,23761370,4
+zibuyu,23761370,4
+48001287,23761370,5
+90321364,23761370,5
+3934645,23761370,4
+60408856,23761370,5
+misszhao7,23761370,4
+49029251,23761370,5
+47552322,23761370,5
+zhaozuoyang,23761370,3
+2667938,23761370,3
+daisylook,23761370,3
+124286936,23761370,5
+graceworm,23761370,4
+125204627,23761370,4
+kanrenao,23761370,5
+seeeclipse,23761370,-1
+michaelfwang,23761370,4
+50060892,23761370,5
+62179498,23761370,5
+eeiceeic,23761370,5
+4750967,23761370,3
+xiaoxiaolin1981,23761370,4
+50284694,23761370,3
+showlay,23761370,4
+cherish-u,23761370,5
+70700918,23761370,5
+CINDY_YL,23761370,5
+41570719,23761370,4
+6459660,23761370,5
+58321643,23761370,4
+jiulaoye,23761370,5
+50438993,23761370,3
+54696624,23761370,3
+7786886,23761370,4
+feisha,23761370,5
+APRIL.Z.,23761370,5
+51701544,23761370,4
+49866554,23761370,5
+moonrainlight,23761370,3
+45970589,23761370,5
+libowen,23761370,5
+sherrychen,23761370,5
+48373123,23761370,5
+48898979,23761370,4
+84905176,23761370,5
+55309786,23761370,3
+53854833,23761370,4
+68729830,23761370,3
+ICY428,23761370,3
+4461423,23761370,4
+91304159,23761370,5
+46728642,23761370,4
+sandlee1986,23761370,4
+41447286,23761370,4
+cherryade,23761370,5
+59549540,23761370,5
+heyaoniming3000,23761370,5
+1050739,23761370,3
+zhzh_0831,23761370,5
+59992323,23761370,5
+92220898,23761370,4
+80386991,23761370,4
+xin623,23761370,5
+feelingowen,23761370,3
+46115781,23761370,5
+47598205,23761370,4
+47598205,23761370,4
+homemiami,23761370,5
+47817686,23761370,4
+52799019,23761370,5
+dengzhuo,23761370,4
+61864017,23761370,-1
+printf_ll_,23761370,5
+whereyz,23761370,4
+124239167,23761370,3
+72524329,23761370,4
+aprilsunshine,23761370,3
+lesleylui,23761370,5
+58895776,23761370,4
+61304869,23761370,5
+chaiyang,23761370,5
+56076845,23761370,5
+66613325,23761370,4
+71879716,23761370,3
+54435494,23761370,5
+3282177,23761370,4
+kook23,23761370,3
+5518860,23761370,5
+72613469,23761370,5
+movieview,23761370,3
+miu-Wolf,23761370,3
+Aianita,23761370,4
+ydzxt,23761370,1
+callmealtman,23761370,4
+Cancer_x,23761370,2
+dyq930211,23761370,4
+Dpudding,23761370,3
+3536775,23761370,5
+pennynuan,23761370,5
+58045712,23761370,5
+OUGENWEIDE,23761370,4
+37087273,23761370,4
+jellyzjl,23761370,-1
+2073013,23761370,4
+68146250,23761370,5
+jinzeyu007,23761370,4
+kyo62,23761370,3
+3481340,23761370,2
+76609911,23761370,5
+sunheaven,23761370,3
+1837132,23761370,5
+61074050,23761370,3
+xyiyi,23761370,5
+16156953,23761370,5
+luhua,23761370,3
+59632577,23761370,5
+Olivia_NJ,23761370,5
+45637706,23761370,5
+77182086,23761370,5
+58988232,23761370,5
+4244492,23761370,4
+hianan,23761370,5
+58841103,23761370,5
+55703832,23761370,5
+cheng470,23761370,5
+It_is_not_me.,23761370,5
+lovesky0513,23761370,5
+59598432,23761370,4
+sirui54,23761370,4
+lc7,23761370,4
+61145862,23761370,5
+wanhoo,23761370,5
+53867313,23761370,5
+47894900,23761370,5
+75476246,23761370,4
+lzxsophia,23761370,5
+51624888,23761370,5
+73401827,23761370,5
+noheeyeon,23761370,5
+124340762,23761370,-1
+41656411,23761370,5
+38675688,23761370,5
+42967910,23761370,4
+3576629,23761370,4
+29149296,23761370,3
+60146243,23761370,5
+60208186,23761370,3
+43725091,23761370,4
+3042073,23761370,4
+cabbageSPEC,23761370,4
+30962131,23761370,5
+33195651,23761370,5
+45996774,23761370,5
+47703701,23761370,4
+4730521,23761370,4
+queenvenus,23761370,4
+kidwayne,23761370,5
+59303391,23761370,4
+46507893,23761370,4
+yusanqi,23761370,3
+undecember,23761370,3
+yuzhede,23761370,4
+34909792,23761370,5
+76999762,23761370,4
+67489382,23761370,1
+37025309,23761370,5
+edgeyeung,23761370,5
+1515497,23761370,3
+49009055,23761370,2
+hsuhoffe,23761370,5
+wilhelmina,23761370,5
+90090175,23761370,4
+47587289,23761370,5
+52696742,23761370,5
+46949718,23761370,4
+2113603,23761370,3
+121893790,23761370,3
+vvingl,23761370,3
+littlefly0207,23761370,5
+amor_fati,23761370,3
+54742504,23761370,3
+53672963,23761370,5
+loveedison,23761370,4
+39663881,23761370,5
+52744740,23761370,3
+qszone,23761370,4
+LieberLukas,23761370,3
+kakaitachi,23761370,4
+46327503,23761370,5
+3810485,23761370,3
+78881537,23761370,5
+mary3049,23761370,5
+36164981,23761370,-1
+woaichibaozi,23761370,3
+shadow85,23761370,5
+35963836,23761370,4
+banana77,23761370,4
+45588392,23761370,5
+47239413,23761370,3
+baladong123,23761370,4
+66827695,23761370,5
+tupo,23761370,5
+74123517,23761370,5
+64651581,23761370,3
+1148225,23761370,3
+67211890,23761370,4
+squaremc,23761370,4
+84866392,23761370,5
+hu36,23761370,5
+125333192,23761370,5
+weiguangyinghuo,23761370,4
+46667318,23761370,3
+32746698,23761370,3
+71727863,23761370,3
+nellyhuang,23761370,5
+ouse_12345,23761370,4
+abuu,23761370,5
+67339027,23761370,3
+64532388,23761370,5
+61920644,23761370,4
+51219072,23761370,3
+cherrybooboo,23761370,4
+115504725,23761370,4
+molibrenda,23761370,4
+34516575,23761370,5
+2918978,23761370,5
+2256732,23761370,5
+51833055,23761370,5
+67502392,23761370,4
+sulen,23761370,5
+56003950,23761370,5
+iliahuy,23761370,4
+33847605,23761370,5
+4131188,23761370,4
+3921078,23761370,4
+41138577,23761370,4
+45484348,23761370,4
+45668907,23761370,1
+103601580,23761370,5
+49705302,23761370,5
+35497511,23761370,5
+YUE0825,23761370,3
+jiapp,23761370,5
+Schiller,23761370,3
+chengyp,23761370,5
+2298833,23761370,5
+45274666,23761370,3
+vincen1208,23761370,4
+Garcia_Tommy,23761370,5
+60981917,23761370,4
+62209147,23761370,5
+78301383,23761370,2
+pussycheer,23761370,3
+yt0310,23761370,5
+69968379,23761370,5
+64389231,23761370,4
+yang6090079,23761370,5
+51157596,23761370,5
+89997290,23761370,4
+xiaoranlee,23761370,4
+chenyiguo,23761370,5
+32264409,23761370,4
+92211750,23761370,1
+55638323,23761370,5
+bigbei,23761370,4
+71177487,23761370,4
+buersongzi,23761370,4
+78148602,23761370,4
+tomber,23761370,4
+lecsi,23761370,4
+35506270,23761370,4
+yue777,23761370,3
+48350741,23761370,5
+51133432,23761370,1
+42661541,23761370,4
+115605245,23761370,5
+63925991,23761370,5
+yoky,23761370,4
+lobcn,23761370,5
+64728959,23761370,5
+114284494,23761370,5
+Utopiartist,23761370,3
+91457550,23761370,5
+kiwi22,23761370,-1
+edisonme,23761370,4
+74579907,23761370,1
+abibdy,23761370,5
+53697035,23761370,4
+90521197,23761370,5
+irisihippo,23761370,5
+3512026,23761370,4
+vikin,23761370,4
+50573037,23761370,4
+cappuccino5026,23761370,5
+ueifly,23761370,2
+2616668,23761370,5
+76960780,23761370,4
+claire0917,23761370,5
+laineyq,23761370,4
+eeyore61,23761370,5
+80739922,23761370,5
+56143952,23761370,-1
+power-banana,23761370,-1
+Zeeyoung,23761370,3
+50419177,23761370,2
+wbhwho,23761370,-1
+2424010,23761370,5
+50155335,23761370,5
+69200027,23761370,5
+64412832,23761370,4
+sudust,23761370,4
+bozzvalen,23761370,5
+Coldkey_Yun,23761370,5
+anna017,23761370,4
+Bloodleee,23761370,4
+stella0122,23761370,5
+62993339,23761370,4
+121273352,23761370,5
+54270482,23761370,3
+lomo.all,23761370,5
+39584537,23761370,5
+58211419,23761370,5
+59957803,23761370,4
+64787437,23761370,5
+46438040,23761370,5
+2741490,23761370,3
+68576426,23761370,5
+kirinkeren,23761370,4
+69280420,23761370,5
+40046063,23761370,4
+nophy,23761370,4
+59508588,23761370,4
+luly_xy,23761370,4
+felixlovelva,23761370,4
+funkyheresy,23761370,5
+52811536,23761370,2
+3908816,23761370,1
+54228846,23761370,5
+maggieleaf,23761370,5
+66296653,23761370,5
+51987446,23761370,-1
+shiralees,23761370,5
+38310657,23761370,2
+57947049,23761370,5
+Thulcandra,23761370,4
+70304241,23761370,5
+ZouJiajing,23761370,5
+lyqwitness,23761370,5
+lemons,23761370,5
+dasda,23761370,4
+daiyuannianyan,23761370,-1
+61025925,23761370,5
+swimmist,23761370,5
+2827733,23761370,5
+yaozhouyao,23761370,5
+72626479,23761370,3
+jean4you,23761370,4
+72805274,23761370,4
+69356155,23761370,3
+55973670,23761370,5
+4199486,23761370,5
+78987156,23761370,4
+50229670,23761370,4
+ielit,23761370,5
+59712803,23761370,3
+61742449,23761370,5
+linetwang,23761370,5
+xiaoxianbibi,23761370,4
+autumnfly,23761370,3
+Vision0027,23761370,3
+77762504,23761370,5
+3009345,23761370,4
+58342964,23761370,3
+kdraid13,23761370,4
+59313594,23761370,5
+48349929,23761370,5
+65266454,23761370,3
+48036288,23761370,5
+4841319,23761370,4
+pkbraveheart,23761370,4
+4454692,23761370,5
+mysky,23761370,4
+43562049,23761370,3
+59539569,23761370,4
+59337450,23761370,4
+2221872,23761370,5
+an491033958,23761370,5
+goodbyemagi,23761370,5
+heyavril,23761370,4
+so898,23761370,5
+49728309,23761370,5
+80319931,23761370,5
+2506554,23761370,4
+1786605,23761370,3
+chch1420,23761370,-1
+1986183,23761370,4
+hxl6,23761370,4
+m-chow-chow,23761370,3
+79013811,23761370,3
+43199610,23761370,5
+82522145,23761370,4
+64161276,23761370,5
+Tinyk,23761370,4
+niuniu2221,23761370,3
+48901280,23761370,3
+124812731,23761370,3
+cumming,23761370,4
+50227642,23761370,1
+shenpo333,23761370,4
+26860515,23761370,3
+49971138,23761370,3
+AliceYmz,23761370,5
+5326502,23761370,5
+86019548,23761370,4
+12430910,23761370,3
+61638467,23761370,4
+1248650,23761370,5
+xiaoyedeguo,23761370,5
+79006919,23761370,5
+75809533,23761370,2
+76782634,23761370,5
+libinhan,23761370,4
+lady-66,23761370,4
+34946223,23761370,5
+dingdaiwei,23761370,4
+xiaopo,23761370,4
+72739287,23761370,4
+49241776,23761370,-1
+zayaza,23761370,4
+10513326,23761370,5
+mrbrightside,23761370,5
+thespencer,23761370,3
+120564093,23761370,5
+zhangyunji,23761370,4
+59635734,23761370,3
+chenxi0355,23761370,4
+44411218,23761370,4
+46012600,23761370,5
+88327789,23761370,3
+58027511,23761370,5
+xxxsz,23761370,5
+ganglow,23761370,2
+DIERUN,23761370,5
+ma-sheng,23761370,3
+34737862,23761370,4
+merolan,23761370,4
+50474016,23761370,4
+eill,23761370,3
+QingAIAliur,23761370,5
+55769747,23761370,5
+96171694,23761370,5
+kaizi,23761370,5
+42695669,23761370,4
+48127275,23761370,5
+37681594,23761370,5
+48501388,23761370,5
+61365608,23761370,4
+121131242,23761370,5
+moto0219,23761370,4
+2128957,23761370,5
+60392839,23761370,3
+65835081,23761370,5
+rqh999,23761370,4
+37344756,23761370,5
+beherca,23761370,5
+56055715,23761370,5
+77366580,23761370,5
+43495757,23761370,4
+60477816,23761370,4
+tonny228,23761370,2
+66959983,23761370,5
+3677550,23761370,5
+Love-CJane,23761370,5
+dear.still,23761370,4
+cindyishere2,23761370,5
+63455692,23761370,4
+52372412,23761370,4
+54779873,23761370,4
+62949401,23761370,4
+65281676,23761370,1
+ashole,23761370,-1
+65628515,23761370,3
+ahrainding,23761370,3
+61336958,23761370,5
+35071954,23761370,5
+65907790,23761370,4
+99385118,23761370,5
+ntz521,23761370,4
+anlan1990,23761370,-1
+2985824,23761370,5
+linaria,23761370,3
+47054399,23761370,5
+xq03471022,23761370,5
+yingwuyi,23761370,5
+1406185,23761370,3
+14523458,23761370,3
+liaoxiaoben,23761370,4
+fancy930,23761370,5
+4315821,23761370,4
+54632146,23761370,2
+yore.,23761370,5
+zcsyzdln,23761370,4
+38138105,23761370,4
+49784959,23761370,3
+Sally_Sha,23761370,3
+karmaqi,23761370,5
+everfreeneciel,23761370,5
+moonlightshit,23761370,5
+graylucky,23761370,3
+smile19890207,23761370,4
+Ferloco,23761370,3
+Csisi,23761370,5
+yaoyaolu,23761370,4
+36800921,23761370,3
+37983570,23761370,-1
+66330480,23761370,5
+50397770,23761370,4
+59949751,23761370,3
+69030358,23761370,4
+evanyoung,23761370,5
+69251250,23761370,3
+1585106,23761370,4
+bigfish0625,23761370,5
+48418593,23761370,4
+53192672,23761370,4
+102569869,23761370,2
+50981775,23761370,5
+4095323,23761370,3
+youmingwu,23761370,4
+cchestnut,23761370,4
+sun2_7,23761370,5
+cynthialeng,23761370,5
+Betty818,23761370,4
+50330876,23761370,5
+74385730,23761370,-1
+yclnjj,23761370,4
+70117025,23761370,3
+starry_ripple,23761370,5
+66799655,23761370,3
+cjsjason,23761370,4
+62703428,23761370,4
+imcaoli,23761370,4
+74869296,23761370,5
+dragon_ioo,23761370,4
+tiputin,23761370,5
+lewuleyi,23761370,5
+66015806,23761370,2
+miexiaoyang422,23761370,5
+4531781,23761370,3
+58359397,23761370,5
+baimaheizong,23761370,5
+ht663,23761370,1
+liuliang85,23761370,3
+xxdezhanghao,23761370,3
+huahui,23761370,4
+64004603,23761370,5
+83395067,23761370,5
+90697037,23761370,5
+56743196,23761370,3
+65747516,23761370,3
+43896457,23761370,3
+78261820,23761370,4
+blueandgreen,23761370,3
+44517782,23761370,5
+88605317,23761370,5
+syvialee23,23761370,4
+78966515,23761370,3
+57456072,23761370,4
+52703866,23761370,1
+125319515,23761370,5
+63099220,23761370,4
+121206161,23761370,4
+calvinlv,23761370,4
+47047627,23761370,5
+idlelz,23761370,3
+2504247,23761370,4
+75673483,23761370,5
+2349644,23761370,3
+32727331,23761370,5
+115370369,23761370,4
+55868216,23761370,4
+80662319,23761370,5
+2232768,23761370,3
+paladin_w,23761370,5
+raqiuqiu,23761370,5
+121721375,23761370,5
+61312247,23761370,5
+l---j,23761370,4
+125318617,23761370,5
+62748915,23761370,4
+112934055,23761370,3
+50955049,23761370,4
+3520940,23761370,3
+benyang,23761370,3
+50865768,23761370,5
+60411524,23761370,-1
+3781079,23761370,5
+76553742,23761370,5
+wanbo,23761370,5
+89467395,23761370,5
+52275922,23761370,5
+sysop,23761370,4
+2999725,23761370,3
+62828011,23761370,4
+never-land-bird,23761370,3
+sukimushroom,23761370,4
+daodaowu,23761370,5
+candychan,23761370,5
+ivvvy,23761370,5
+42337937,23761370,5
+2756995,23761370,3
+121713493,23761370,5
+46369381,23761370,3
+54000745,23761370,4
+punk90,23761370,4
+myfan,23761370,4
+47647061,23761370,4
+55322425,23761370,5
+49952089,23761370,4
+keithlv,23761370,4
+57772675,23761370,4
+37294924,23761370,5
+1223520,23761370,-1
+71220968,23761370,5
+50281819,23761370,3
+SoyQueenaTse,23761370,3
+42062370,23761370,5
+evara77,23761370,4
+57382119,23761370,4
+57863538,23761370,4
+3977584,23761370,3
+124789721,23761370,3
+58770583,23761370,5
+33010059,23761370,5
+adelebleu,23761370,5
+56258783,23761370,3
+Lira_13,23761370,5
+100240812,23761370,5
+49724831,23761370,5
+82617590,23761370,2
+102788052,23761370,5
+121368079,23761370,5
+119248783,23761370,5
+wuchen11,23761370,5
+amor1028,23761370,5
+StarryNightiger,23761370,4
+124484161,23761370,4
+125318256,23761370,1
+63041714,23761370,5
+47949405,23761370,1
+green198641,23761370,4
+tozikiacherry,23761370,5
+danbeach,23761370,5
+72869594,23761370,4
+47514908,23761370,5
+61403829,23761370,5
+SuperViking,23761370,3
+65698345,23761370,3
+125317785,23761370,5
+dark_overseer,23761370,5
+71107868,23761370,4
+79037298,23761370,4
+goson,23761370,4
+57075245,23761370,4
+54273802,23761370,4
+77519221,23761370,3
+69481682,23761370,5
+4438015,23761370,3
+37862989,23761370,4
+norahearst,23761370,4
+minisle,23761370,4
+124826275,23761370,5
+NaamTsui,23761370,5
+44911874,23761370,5
+slow-down,23761370,5
+kevinzhang21,23761370,5
+50318647,23761370,5
+30610588,23761370,5
+125054011,23761370,-1
+24570827,23761370,5
+75936791,23761370,5
+52544208,23761370,4
+3484897,23761370,5
+68111480,23761370,4
+icecreamelody,23761370,4
+44622653,23761370,4
+43822211,23761370,5
+58282069,23761370,4
+38567771,23761370,4
+58921825,23761370,4
+41316861,23761370,4
+qc1994,23761370,4
+54617979,23761370,-1
+55410872,23761370,5
+57967686,23761370,5
+90804185,23761370,5
+58853391,23761370,5
+xiaoxiaozhihou,23761370,-1
+eilliott,23761370,5
+49632302,23761370,5
+5126241,23761370,5
+14069864,23761370,4
+2003211,23761370,5
+125317051,23761370,5
+nghwbbbm,23761370,1
+1459659,23761370,4
+slevwh,23761370,4
+46405443,23761370,4
+PandaKing,23761370,5
+Gladysxie,23761370,4
+kidrun,23761370,3
+47212439,23761370,4
+48057625,23761370,5
+pinkyrock,23761370,4
+hjing1993,23761370,4
+63367486,23761370,4
+Winnie_Liu,23761370,5
+kweer,23761370,3
+mengzhuliangyan,23761370,4
+fanxk1014,23761370,5
+73667301,23761370,5
+ewanyang11,23761370,5
+1651604,23761370,5
+125316666,23761370,1
+87506885,23761370,5
+119101467,23761370,4
+119101467,23761370,4
+3613563,23761370,5
+3229724,23761370,4
+75340903,23761370,4
+125316508,23761370,5
+2209906,23761370,4
+Cathay_Wong,23761370,3
+langyayue,23761370,3
+49562417,23761370,4
+wsx5273,23761370,4
+yunyun460,23761370,5
+83192314,23761370,3
+easysmile,23761370,5
+1975902,23761370,4
+3788276,23761370,3
+46462484,23761370,5
+59769605,23761370,3
+115580521,23761370,4
+cherryantie,23761370,5
+qingjuesikong,23761370,4
+huangwei0079,23761370,4
+56403584,23761370,4
+momo_pan,23761370,2
+dist,23761370,2
+zawlwyf,23761370,5
+sagittae,23761370,4
+108840344,23761370,5
+bodysnatcher,23761370,2
+3255312,23761370,5
+4380133,23761370,2
+4737971,23761370,5
+nancywon,23761370,5
+zhangpingpang,23761370,3
+91375204,23761370,5
+jewelschen,23761370,5
+77378264,23761370,5
+43887086,23761370,4
+125315948,23761370,5
+75853640,23761370,5
+xueshanfeitu,23761370,5
+Charlie.Lee,23761370,3
+56628925,23761370,4
+renzrxly,23761370,4
+49270565,23761370,3
+huanhuan1991111,23761370,5
+119485213,23761370,5
+senses058,23761370,5
+80681000,23761370,5
+56369223,23761370,5
+wjscxx,23761370,4
+wz1031h,23761370,4
+45788199,23761370,5
+48953772,23761370,4
+51639933,23761370,4
+joearde,23761370,4
+47557231,23761370,5
+58088013,23761370,4
+60893370,23761370,3
+yangshu1991,23761370,4
+70169858,23761370,5
+Jensen4ever,23761370,5
+28802478,23761370,4
+65442641,23761370,5
+35745931,23761370,5
+53343838,23761370,4
+xiaoyushudai,23761370,4
+dearvera,23761370,5
+91994560,23761370,3
+Slitheryn,23761370,3
+2119013,23761370,4
+Jerrin,23761370,3
+susanshuo,23761370,4
+82265197,23761370,5
+yyxzn,23761370,4
+31816905,23761370,5
+125315170,23761370,5
+83303439,23761370,4
+125315292,23761370,5
+2563465,23761370,5
+45780268,23761370,5
+123292301,23761370,5
+prague2046,23761370,4
+50443109,23761370,5
+37136452,23761370,5
+longislandiced,23761370,3
+82828719,23761370,4
+120253183,23761370,5
+51885129,23761370,2
+48100251,23761370,5
+jason0406,23761370,5
+67870287,23761370,3
+50968156,23761370,5
+54132005,23761370,5
+heikichi,23761370,5
+55932326,23761370,4
+windyolivia,23761370,4
+arielzhong,23761370,2
+88125436,23761370,4
+34280788,23761370,3
+57601400,23761370,5
+59557421,23761370,5
+2732961,23761370,3
+125067475,23761370,5
+lesong,23761370,5
+Mrs_D,23761370,3
+lilysaylove,23761370,4
+35087113,23761370,4
+48369826,23761370,4
+114361347,23761370,5
+hotaug,23761370,4
+61532693,23761370,4
+65546465,23761370,4
+120647438,23761370,5
+forpal,23761370,4
+atomicxxx,23761370,5
+49874489,23761370,4
+3480174,23761370,4
+29645088,23761370,5
+cheeringo,23761370,4
+58065093,23761370,4
+49643548,23761370,4
+37335168,23761370,5
+LLspirit,23761370,3
+117808839,23761370,5
+43252236,23761370,5
+meow-3-,23761370,5
+2287652,23761370,5
+ciciwu789,23761370,5
+45453381,23761370,3
+44356747,23761370,5
+56333236,23761370,4
+applewendy,23761370,4
+108828727,23761370,1
+54232036,23761370,5
+49693965,23761370,5
+daisyyy1989,23761370,5
+61461484,23761370,4
+zhugl,23761370,-1
+xdcheung,23761370,5
+54818133,23761370,-1
+57534493,23761370,5
+58828155,23761370,5
+peipei0105,23761370,5
+102312348,23761370,3
+54385496,23761370,5
+wzsever,23761370,5
+52463916,23761370,4
+80082149,23761370,5
+e_cm,23761370,3
+56606229,23761370,4
+55375385,23761370,1
+3540779,23761370,4
+bambooshasha,23761370,1
+33526716,23761370,4
+48497184,23761370,5
+33914811,23761370,3
+25276115,23761370,5
+mar_jin,23761370,5
+zhm528137,23761370,3
+62655903,23761370,5
+68170184,23761370,5
+28649058,23761370,4
+119340847,23761370,5
+zhugaojia,23761370,5
+inthemelody,23761370,4
+yiwang1979,23761370,5
+40591271,23761370,5
+50507012,23761370,4
+69688835,23761370,2
+md_wxy,23761370,4
+90051465,23761370,5
+45213979,23761370,5
+79450664,23761370,3
+4044609,23761370,4
+jsh0915,23761370,4
+myshowfan,23761370,5
+119043374,23761370,5
+64880714,23761370,4
+3245265,23761370,5
+rainjill,23761370,4
+49991288,23761370,-1
+caiwoshishei,23761370,4
+is_xiaoshu,23761370,5
+bsqtzykbsqtzyk,23761370,1
+41575796,23761370,3
+27978918,23761370,5
+70120190,23761370,2
+heileng,23761370,5
+xykiss,23761370,4
+95443736,23761370,5
+37588688,23761370,4
+vincent910203,23761370,4
+Marcel_M,23761370,-1
+lancer04,23761370,4
+46954285,23761370,4
+imleec,23761370,5
+62334058,23761370,1
+12059676,23761370,4
+2668257,23761370,4
+mkid1412,23761370,5
+SuugarL,23761370,5
+50234002,23761370,5
+48329083,23761370,5
+chevalier7,23761370,5
+lishiyangmayo,23761370,4
+josielove13,23761370,5
+thezzyh,23761370,4
+vikingan,23761370,4
+rajorAn,23761370,4
+12919043,23761370,5
+124829943,23761370,4
+52358087,23761370,4
+88334924,23761370,4
+76364826,23761370,3
+58301523,23761370,4
+51371193,23761370,4
+39730031,23761370,4
+erosxx,23761370,4
+42337387,23761370,4
+59012758,23761370,5
+71962172,23761370,3
+seven_hours,23761370,4
+Leesuner,23761370,5
+snow-in-coffee,23761370,4
+85293907,23761370,5
+annacullen,23761370,4
+49191008,23761370,4
+25282878,23761370,5
+3867480,23761370,4
+vivian_yi,23761370,4
+jiangxv7,23761370,5
+115541155,23761370,4
+Hobbitimomo,23761370,4
+51350191,23761370,3
+33493653,23761370,4
+fanfankuaipao,23761370,5
+4357598,23761370,4
+3131895,23761370,5
+sofia1217,23761370,5
+49661788,23761370,5
+43291484,23761370,5
+43156949,23761370,3
+privatebronze,23761370,5
+yeziliang1208,23761370,5
+84516784,23761370,5
+61042086,23761370,5
+menmener,23761370,5
+124537695,23761370,4
+119145690,23761370,5
+77390342,23761370,5
+cclaser,23761370,5
+40096261,23761370,5
+49478027,23761370,4
+touch1986summer,23761370,4
+59961693,23761370,4
+57679372,23761370,4
+65209475,23761370,5
+45056522,23761370,4
+49245081,23761370,5
+yanleung1102,23761370,5
+48056314,23761370,5
+65578714,23761370,5
+54912224,23761370,4
+hushibookstore,23761370,3
+2565217,23761370,4
+61276700,23761370,3
+4197116,23761370,4
+67006833,23761370,5
+95824497,23761370,4
+1767731,23761370,3
+68061879,23761370,3
+76777443,23761370,3
+YUYII,23761370,5
+ling.,23761370,5
+47768575,23761370,5
+54947013,23761370,3
+42766417,23761370,5
+58605674,23761370,4
+35220990,23761370,4
+3681116,23761370,4
+43260991,23761370,3
+48198642,23761370,4
+82496421,23761370,4
+49637787,23761370,5
+74022856,23761370,5
+chen_cao,23761370,3
+37793108,23761370,5
+sooro13,23761370,3
+youyeqiuxin,23761370,3
+lostItard,23761370,-1
+85109921,23761370,3
+double719jiao,23761370,3
+62476143,23761370,5
+40242702,23761370,5
+1057780,23761370,5
+59104662,23761370,5
+50175269,23761370,5
+68655879,23761370,5
+cai_smalleyes,23761370,-1
+johnqz874,23761370,5
+selfsaver,23761370,5
+3941641,23761370,4
+ethannn,23761370,4
+39953503,23761370,4
+3497198,23761370,4
+roseunicorn,23761370,2
+heyue9315,23761370,5
+52624192,23761370,5
+chenxizi,23761370,4
+63151084,23761370,5
+69927384,23761370,5
+72656808,23761370,4
+Liew_qing,23761370,5
+122764683,23761370,5
+49663103,23761370,5
+71118924,23761370,5
+Lightsummer,23761370,5
+49339916,23761370,3
+edisondream,23761370,1
+50472589,23761370,3
+sushunai,23761370,3
+3677457,23761370,3
+magickori,23761370,5
+61366971,23761370,5
+1467089,23761370,3
+59740138,23761370,5
+72555837,23761370,5
+2498446,23761370,3
+15339673,23761370,5
+79846050,23761370,4
+49079570,23761370,3
+MaccyLiu,23761370,4
+59491193,23761370,-1
+echo0307,23761370,4
+39937848,23761370,5
+PARIADISE,23761370,5
+tangyueqi,23761370,3
+AkaSedative,23761370,5
+Fuermofan,23761370,5
+paggyxu,23761370,5
+cheerstef,23761370,3
+Lilith_cat,23761370,5
+iammaxlai,23761370,4
+alwayslo7e,23761370,5
+54449435,23761370,5
+49181653,23761370,5
+79478187,23761370,4
+54925658,23761370,4
+h34v3n,23761370,5
+47499332,23761370,2
+34950703,23761370,5
+point.,23761370,5
+80226411,23761370,5
+momo_8cm,23761370,5
+49691795,23761370,-1
+Evan.Chris,23761370,4
+48833539,23761370,5
+chianghu,23761370,4
+62036162,23761370,4
+staryanyan,23761370,4
+Daisyyyue,23761370,5
+kona,23761370,5
+50556906,23761370,4
+61486728,23761370,5
+4019961,23761370,4
+mirror814,23761370,5
+120593690,23761370,4
+51990488,23761370,4
+76943413,23761370,3
+3334219,23761370,5
+huizhuoyi,23761370,5
+47529878,23761370,4
+edhua,23761370,5
+54638347,23761370,5
+phuntshogs,23761370,5
+yaya_chichi,23761370,5
+62403751,23761370,5
+2628569,23761370,3
+79547229,23761370,4
+loveleo,23761370,4
+52526840,23761370,5
+77718541,23761370,4
+68735389,23761370,3
+1507865,23761370,4
+pinkcity,23761370,4
+fylingy,23761370,4
+9064350,23761370,3
+Angel.Tracy,23761370,5
+50493709,23761370,4
+rye39,23761370,4
+3909726,23761370,4
+62762350,23761370,5
+babyny,23761370,1
+35294199,23761370,5
+doreenvv,23761370,4
+43766729,23761370,4
+thehours_lxx,23761370,3
+83520827,23761370,3
+33226742,23761370,5
+alwayslife2008,23761370,3
+alwayslife2008,23761370,3
+49148779,23761370,4
+48621199,23761370,-1
+62988496,23761370,-1
+43970229,23761370,4
+14426204,23761370,5
+52685590,23761370,5
+yushuliuy,23761370,4
+ZJ1231,23761370,1
+asen_shi,23761370,5
+mirrorw,23761370,4
+stier,23761370,3
+ichocolau,23761370,5
+Alcor,23761370,5
+78237245,23761370,5
+62877626,23761370,5
+sarinalee,23761370,4
+81251411,23761370,4
+tangyanlin,23761370,4
+115879931,23761370,5
+csging,23761370,5
+91216946,23761370,5
+119796299,23761370,3
+anycat718,23761370,5
+110104355,23761370,5
+88927471,23761370,4
+maorabbit,23761370,5
+48957397,23761370,5
+suikasuika,23761370,3
+40517102,23761370,5
+47383067,23761370,3
+XixiQ,23761370,4
+6232149,23761370,4
+52730986,23761370,4
+35861398,23761370,5
+92082038,23761370,4
+64095116,23761370,5
+58041147,23761370,5
+yanxianxian,23761370,5
+58462261,23761370,5
+1213382,23761370,4
+justsay,23761370,3
+108496496,23761370,5
+46249272,23761370,4
+34177788,23761370,5
+zhousophia,23761370,4
+helernann,23761370,4
+119340060,23761370,4
+etta26,23761370,5
+miuccia,23761370,3
+38426766,23761370,3
+34394752,23761370,5
+yinkun,23761370,4
+GossipRyan,23761370,4
+4184049,23761370,5
+45639752,23761370,4
+Makoto614,23761370,4
+61805546,23761370,5
+getefuxing,23761370,4
+xingyingxiang,23761370,5
+spdza,23761370,5
+49528893,23761370,4
+32402352,23761370,3
+3780519,23761370,5
+74937470,23761370,3
+yyxdl,23761370,5
+49673011,23761370,3
+66643150,23761370,5
+adayinthelife,23761370,3
+3831169,23761370,5
+iampearl,23761370,4
+50191113,23761370,-1
+52722463,23761370,4
+30562566,23761370,5
+Mayuyulover,23761370,5
+kexiaoxuan_,23761370,4
+zhuzx,23761370,4
+80196193,23761370,4
+17289580,23761370,4
+hwh,23761370,4
+remi,23761370,5
+jyjRachel,23761370,3
+feibaobei,23761370,5
+larchlz,23761370,3
+diccy227,23761370,4
+springfantasy,23761370,3
+genietao,23761370,5
+92490871,23761370,3
+yededi8821,23761370,4
+49686463,23761370,5
+momodeshang,23761370,5
+lingkong911,23761370,3
+3898470,23761370,4
+gongtong,23761370,5
+joygirlying,23761370,5
+51919301,23761370,5
+fayewong77,23761370,4
+44230817,23761370,4
+56816118,23761370,4
+52424511,23761370,5
+49767528,23761370,4
+immangowu,23761370,1
+55737203,23761370,4
+lylehxh,23761370,4
+52699321,23761370,3
+HouLi,23761370,4
+Joker-DeadeYe,23761370,5
+superxiaoqi123,23761370,3
+55744777,23761370,4
+52918110,23761370,4
+64568355,23761370,4
+83130364,23761370,5
+52004258,23761370,5
+maomao3644,23761370,5
+6400247,23761370,5
+49946239,23761370,5
+56273353,23761370,4
+liarb,23761370,4
+Mr_Sunday,23761370,3
+31689638,23761370,5
+82909338,23761370,5
+53318659,23761370,5
+zyjsunk,23761370,5
+76371710,23761370,3
+50379356,23761370,-1
+61476572,23761370,4
+86638445,23761370,2
+doravilla,23761370,3
+69221648,23761370,5
+54353968,23761370,4
+xxzy93,23761370,5
+liwshuo,23761370,5
+61893491,23761370,5
+76591163,23761370,3
+jick35,23761370,4
+wushouhan,23761370,5
+57436067,23761370,5
+simple4ever,23761370,3
+fat_dragon,23761370,5
+celestialsir,23761370,5
+45312368,23761370,3
+58349730,23761370,5
+54580645,23761370,4
+48167301,23761370,4
+34668513,23761370,4
+ToscanaSole,23761370,5
+charlene.x,23761370,3
+black1110,23761370,5
+64465114,23761370,5
+52243773,23761370,5
+ripage,23761370,5
+73178076,23761370,5
+amyxing,23761370,5
+hinna,23761370,5
+1200829,23761370,4
+52378291,23761370,4
+foreverwxin,23761370,5
+59693690,23761370,5
+hotsdk,23761370,4
+margie_margie,23761370,3
+margie_margie,23761370,3
+1065050,23761370,4
+rita-star,23761370,4
+49800908,23761370,2
+101437932,23761370,3
+st1na,23761370,5
+68285010,23761370,5
+58199841,23761370,4
+JudyItalia,23761370,3
+stellar1107,23761370,-1
+captainhjb,23761370,5
+yigedaguangtou,23761370,5
+59880831,23761370,4
+48793240,23761370,5
+57137219,23761370,5
+37019836,23761370,5
+color1983,23761370,5
+53044283,23761370,5
+120573072,23761370,5
+77452458,23761370,5
+74738689,23761370,5
+79116802,23761370,5
+hexinchen,23761370,-1
+62613227,23761370,5
+Agashu,23761370,5
+10782937,23761370,5
+mue82,23761370,-1
+32045146,23761370,5
+45182133,23761370,4
+yuago,23761370,5
+AlohaJessica,23761370,3
+48143172,23761370,3
+82334443,23761370,5
+ChristiaLi,23761370,5
+4132864,23761370,3
+sunfloweroom,23761370,4
+imsharon,23761370,4
+58405298,23761370,5
+colour3367,23761370,3
+79217059,23761370,4
+48105149,23761370,3
+67016418,23761370,3
+74753192,23761370,4
+alvinyan,23761370,3
+121917998,23761370,4
+i_shotamandown,23761370,4
+8517504,23761370,5
+rhh,23761370,4
+42202741,23761370,4
+111584714,23761370,2
+42961895,23761370,4
+Torence,23761370,5
+61532678,23761370,5
+reiko77877,23761370,4
+greenne,23761370,4
+56980595,23761370,4
+49213332,23761370,5
+4287768,23761370,4
+zhz586,23761370,5
+43652685,23761370,4
+Amulp,23761370,3
+63874836,23761370,4
+sunww,23761370,4
+ni0712,23761370,5
+lovelu1988,23761370,4
+62764426,23761370,5
+100571343,23761370,5
+52387038,23761370,5
+38863376,23761370,5
+kryp,23761370,5
+37959469,23761370,4
+120425967,23761370,5
+Fedsay,23761370,4
+49875981,23761370,5
+80230025,23761370,5
+85313116,23761370,4
+yuuu,23761370,4
+aishiTeru,23761370,4
+64334718,23761370,5
+1772956,23761370,4
+90581117,23761370,5
+27245032,23761370,4
+54365564,23761370,5
+dhgx,23761370,3
+49060307,23761370,5
+24444649,23761370,5
+59262140,23761370,5
+KimDream,23761370,5
+a55h01e,23761370,4
+tezuka15,23761370,4
+duzhouchi,23761370,3
+117795392,23761370,4
+xiaojiaheng,23761370,4
+zytarcy,23761370,5
+52080462,23761370,5
+doreen333,23761370,5
+b.side,23761370,4
+83401102,23761370,4
+heidiai,23761370,5
+wangtingmm,23761370,4
+miss.nuonuoz,23761370,4
+62150747,23761370,4
+kiddy_kiddy,23761370,5
+Sparkle-in-hell,23761370,4
+54079652,23761370,4
+56325708,23761370,5
+3551930,23761370,5
+92468807,23761370,4
+62290717,23761370,5
+60765105,23761370,5
+47265925,23761370,5
+foreveralice,23761370,4
+mafiafansv,23761370,4
+52867303,23761370,5
+78679982,23761370,1
+2256302,23761370,4
+59307428,23761370,5
+50152175,23761370,3
+pirate_cat,23761370,3
+77489603,23761370,5
+11939797,23761370,4
+ccl499508605,23761370,5
+hellosasa,23761370,5
+18045809,23761370,4
+64146995,23761370,5
+glax,23761370,3
+26194155,23761370,4
+chickenmor,23761370,4
+53599970,23761370,5
+69563108,23761370,5
+3111599,23761370,3
+42759061,23761370,5
+122725527,23761370,4
+heimoleeway,23761370,4
+ilove2026,23761370,5
+Estelita,23761370,4
+52187278,23761370,5
+4564418,23761370,5
+2126779,23761370,5
+echoliuxiao,23761370,5
+yoyo5411,23761370,5
+45957514,23761370,5
+yaya_1990,23761370,4
+97977278,23761370,5
+DreamAmin,23761370,-1
+eslian,23761370,3
+tianxianglouzhu,23761370,4
+wuztshuo,23761370,4
+35967527,23761370,5
+48482166,23761370,4
+89587704,23761370,5
+4131568,23761370,5
+3559769,23761370,3
+3171600,23761370,-1
+1947490,23761370,3
+jingaizhuheng,23761370,5
+jiguangpianyu,23761370,4
+37509680,23761370,5
+sEvera1,23761370,5
+litsunny,23761370,5
+litsunny,23761370,5
+freerom,23761370,4
+119090951,23761370,4
+4557738,23761370,5
+2245152,23761370,5
+56402767,23761370,2
+49170790,23761370,3
+3970607,23761370,5
+57121277,23761370,5
+67203836,23761370,5
+28978843,23761370,3
+50790931,23761370,1
+Mitak,23761370,5
+72685963,23761370,2
+61517654,23761370,5
+wjferic,23761370,3
+102184149,23761370,4
+57610818,23761370,2
+68091203,23761370,5
+51785908,23761370,4
+12859609,23761370,4
+lijingxuan0205,23761370,5
+4135099,23761370,5
+70242419,23761370,5
+53266040,23761370,4
+66251904,23761370,5
+49907891,23761370,5
+53383569,23761370,5
+27597762,23761370,4
+93274521,23761370,4
+poisoncake,23761370,4
+magezero,23761370,4
+gps730,23761370,5
+46862579,23761370,3
+7669558,23761370,5
+48575730,23761370,4
+75404520,23761370,5
+58536019,23761370,5
+conan_4869,23761370,5
+8597502,23761370,5
+canlaoda,23761370,4
+sopin,23761370,3
+BlossomBlue,23761370,5
+64243116,23761370,4
+ccok,23761370,5
+84968325,23761370,5
+49090392,23761370,3
+51933689,23761370,5
+56841923,23761370,5
+91785401,23761370,5
+milanmao,23761370,3
+asanisimasa,23761370,3
+61572428,23761370,4
+46276304,23761370,3
+65429716,23761370,5
+flydolphin,23761370,3
+83295266,23761370,5
+47202062,23761370,3
+Jalapa,23761370,5
+121029402,23761370,5
+A-Cat,23761370,4
+81762861,23761370,5
+59577112,23761370,5
+4318669,23761370,4
+littleAVRIL,23761370,5
+70515402,23761370,4
+47920402,23761370,4
+61424734,23761370,5
+88092702,23761370,5
+70070576,23761370,3
+1352009,23761370,5
+langdd_002,23761370,-1
+92392303,23761370,5
+wenyibu,23761370,4
+3970952,23761370,5
+48542740,23761370,5
+a-zhu,23761370,4
+63531003,23761370,5
+49472404,23761370,5
+helloface,23761370,5
+baradyw,23761370,4
+123288101,23761370,5
+cy0713,23761370,5
+cyanchen0708,23761370,5
+dingding4g,23761370,5
+54961193,23761370,5
+36710706,23761370,4
+3734557,23761370,5
+50061912,23761370,4
+yilvmeihua,23761370,4
+50494817,23761370,4
+54680854,23761370,4
+67733438,23761370,5
+120950015,23761370,4
+13129748,23761370,5
+freeyoru,23761370,5
+49059976,23761370,5
+TabulaRasa,23761370,3
+52846746,23761370,3
+2822340,23761370,-1
+52649059,23761370,4
+51583782,23761370,2
+nqw1031,23761370,5
+63606501,23761370,5
+55910265,23761370,5
+5642184,23761370,5
+zhangxurui,23761370,4
+82123498,23761370,4
+tianbin777,23761370,4
+lingJessie,23761370,3
+113239868,23761370,5
+51046269,23761370,5
+Belong_Leon,23761370,3
+46815874,23761370,5
+122858309,23761370,3
+onlycp3,23761370,4
+58014974,23761370,5
+KingJing12,23761370,3
+57831478,23761370,3
+45411639,23761370,5
+doreenleung,23761370,3
+52762831,23761370,4
+wangxiaopao,23761370,4
+Dthler,23761370,-1
+93332466,23761370,5
+forrymhrccpig,23761370,4
+68913100,23761370,5
+41792966,23761370,3
+79841047,23761370,4
+moniyuxin,23761370,5
+52459455,23761370,4
+39875217,23761370,4
+MagicTT,23761370,5
+38971714,23761370,5
+51601787,23761370,5
+LilC,23761370,4
+cyrene959,23761370,5
+liulinmax,23761370,5
+magnolialy,23761370,4
+moon_mengmeng,23761370,4
+3640495,23761370,4
+88433908,23761370,4
+cainroziel,23761370,5
+48128948,23761370,-1
+woshixiaoqi,23761370,4
+122716451,23761370,5
+53649464,23761370,5
+ceffee,23761370,5
+64569742,23761370,5
+121706508,23761370,5
+64776955,23761370,5
+57938639,23761370,5
+87587366,23761370,5
+62291435,23761370,5
+lalade,23761370,5
+ily98426,23761370,4
+62961782,23761370,5
+53864735,23761370,5
+54764886,23761370,5
+67529255,23761370,-1
+92230776,23761370,4
+williezou,23761370,4
+52864776,23761370,5
+liuni19,23761370,5
+63346469,23761370,5
+73597591,23761370,5
+67316449,23761370,2
+mic0124,23761370,5
+yyyzy,23761370,4
+Yanhuan,23761370,4
+32776828,23761370,4
+59235742,23761370,4
+windowsosok,23761370,4
+56173618,23761370,4
+1394891,23761370,4
+49384394,23761370,3
+88193100,23761370,4
+jakartaxie,23761370,3
+52710825,23761370,4
+105892231,23761370,5
+105892231,23761370,5
+just_yeat,23761370,5
+63507670,23761370,5
+3308110,23761370,5
+121614690,23761370,4
+58805542,23761370,4
+63140112,23761370,5
+67653468,23761370,4
+lovezhuangjia,23761370,5
+80604085,23761370,5
+57968508,23761370,3
+1348086,23761370,-1
+53143088,23761370,4
+40861362,23761370,5
+69698923,23761370,5
+icykiko,23761370,5
+ruoxingyi,23761370,4
+63151314,23761370,5
+34237269,23761370,5
+44909153,23761370,4
+83850748,23761370,4
+61918071,23761370,4
+53194674,23761370,4
+27199413,23761370,4
+53044772,23761370,5
+106597439,23761370,5
+42884654,23761370,3
+58778667,23761370,5
+nildesperandum,23761370,4
+Funkiso,23761370,4
+bashousan,23761370,4
+57360419,23761370,4
+dongxiao0613,23761370,-1
+120846577,23761370,3
+115603694,23761370,5
+50415311,23761370,5
+54398591,23761370,4
+96798086,23761370,3
+66699032,23761370,4
+neko707,23761370,5
+48182921,23761370,5
+47914580,23761370,5
+45396935,23761370,5
+67048173,23761370,3
+50013563,23761370,5
+will_swj,23761370,5
+Knight9,23761370,5
+fansz,23761370,4
+50848466,23761370,4
+46971826,23761370,5
+121745176,23761370,5
+1534250,23761370,4
+icethawless,23761370,4
+ava_liu,23761370,4
+74942807,23761370,-1
+2882160,23761370,5
+kkk920,23761370,4
+beomi,23761370,4
+addonn,23761370,4
+54410019,23761370,5
+58602804,23761370,5
+woshimoxiaowei,23761370,5
+Jayne_pig,23761370,5
+123686536,23761370,2
+84593268,23761370,5
+35478997,23761370,5
+78473653,23761370,4
+52925540,23761370,4
+plebeian423,23761370,5
+1277139,23761370,5
+46424200,23761370,4
+evilhyde,23761370,4
+firsh3k,23761370,3
+71907895,23761370,5
+loliichigo,23761370,5
+76482774,23761370,5
+89792617,23761370,5
+qiqi227,23761370,5
+garlic,23761370,5
+helianchan,23761370,3
+101052722,23761370,5
+Lioka,23761370,4
+82195777,23761370,3
+gin_gin,23761370,5
+88178277,23761370,4
+45567002,23761370,5
+61459253,23761370,4
+66636246,23761370,4
+80020848,23761370,4
+48441251,23761370,5
+58994215,23761370,4
+65979615,23761370,4
+yousuosi77,23761370,4
+horizontality,23761370,4
+22342554,23761370,5
+95188248,23761370,5
+36910596,23761370,4
+philly_h,23761370,4
+tx515,23761370,3
+jessie8506,23761370,5
+Kayicat,23761370,4
+yzjoanne,23761370,5
+alapeach,23761370,4
+xiaochan83,23761370,5
+huhu227,23761370,3
+gailsylee,23761370,5
+58919934,23761370,4
+killit,23761370,3
+40362056,23761370,4
+48354152,23761370,4
+79908264,23761370,4
+Mathilda_428,23761370,4
+3549555,23761370,4
+xiyanbyluo,23761370,5
+lukaka,23761370,4
+59480679,23761370,3
+36739822,23761370,5
+50073106,23761370,5
+62833770,23761370,4
+topperandy,23761370,3
+113635216,23761370,3
+54989059,23761370,4
+104872369,23761370,5
+43889610,23761370,4
+55446081,23761370,4
+3931948,23761370,5
+5012885,23761370,5
+90793123,23761370,3
+70076924,23761370,4
+vesperxixi,23761370,3
+28572987,23761370,3
+68116906,23761370,3
+96513847,23761370,-1
+49087284,23761370,3
+51904993,23761370,4
+huaaforever,23761370,3
+gothickid,23761370,3
+57693499,23761370,5
+lpjxc,23761370,2
+joyceatobe,23761370,5
+Luckymiku,23761370,5
+49283723,23761370,3
+72692620,23761370,4
+25240448,23761370,5
+3043324,23761370,3
+63527920,23761370,1
+1631122,23761370,5
+3142248,23761370,4
+freedomdeai,23761370,3
+hua400,23761370,-1
+why051370,23761370,5
+82159990,23761370,2
+58603812,23761370,4
+4200380,23761370,5
+2944300,23761370,4
+49196106,23761370,5
+17131500,23761370,4
+71519036,23761370,5
+56744079,23761370,4
+50923581,23761370,4
+4090922,23761370,4
+49082695,23761370,4
+86561373,23761370,4
+Plaka,23761370,4
+fengyibeizi,23761370,5
+banbeizi,23761370,-1
+nickolez,23761370,5
+3707909,23761370,3
+33207894,23761370,3
+celysej,23761370,4
+73678720,23761370,4
+50465713,23761370,3
+rollo1117,23761370,5
+59961174,23761370,5
+anniewy,23761370,5
+jasontodd,23761370,4
+44624503,23761370,4
+73696070,23761370,3
+banpofeng,23761370,5
+49140362,23761370,5
+LionManKinG,23761370,5
+59824275,23761370,5
+tayloverms,23761370,4
+52777095,23761370,4
+78089832,23761370,3
+49703092,23761370,3
+57584504,23761370,3
+55716146,23761370,5
+48195937,23761370,3
+64459007,23761370,5
+72800521,23761370,5
+58648435,23761370,5
+52895403,23761370,5
+90808222,23761370,3
+vivian59,23761370,4
+47376134,23761370,4
+77567155,23761370,5
+53988209,23761370,5
+85602254,23761370,5
+4244410,23761370,4
+65002726,23761370,5
+57028724,23761370,3
+41976054,23761370,5
+81391880,23761370,5
+fuloli,23761370,4
+3981048,23761370,4
+83129118,23761370,4
+73577019,23761370,4
+39565182,23761370,4
+barbieyoung,23761370,4
+54880097,23761370,5
+foxrain1215,23761370,5
+72387002,23761370,5
+67525836,23761370,5
+69403623,23761370,4
+jingnian,23761370,5
+75174389,23761370,4
+chs1988,23761370,5
+60247891,23761370,5
+49636823,23761370,5
+60891750,23761370,5
+53662022,23761370,2
+68429541,23761370,4
+4392294,23761370,4
+48007551,23761370,3
+92335297,23761370,5
+39974163,23761370,5
+57338014,23761370,5
+naki,23761370,5
+xiaofangyang,23761370,5
+58983992,23761370,5
+Dreamer.Chen,23761370,5
+73291837,23761370,4
+pigggytao,23761370,5
+107413834,23761370,5
+82512036,23761370,5
+couple1314,23761370,5
+Bittersweetlove,23761370,-1
+bjlc,23761370,5
+58005580,23761370,4
+feifei0806,23761370,-1
+3720128,23761370,4
+53533608,23761370,3
+xianzuo,23761370,5
+Elizabeth1989,23761370,3
+szwct,23761370,5
+dora1991,23761370,5
+2704650,23761370,4
+apple3558,23761370,5
+60002715,23761370,3
+51686071,23761370,4
+61877419,23761370,5
+51504747,23761370,5
+51892425,23761370,4
+111745071,23761370,5
+78314147,23761370,5
+2219533,23761370,5
+49207175,23761370,3
+83767037,23761370,3
+baizi886,23761370,5
+37034778,23761370,5
+54159008,23761370,4
+73077237,23761370,5
+luckycci,23761370,5
+64968243,23761370,5
+bozil,23761370,4
+Dennisguan,23761370,5
+Lelucermaire,23761370,5
+52262957,23761370,5
+soulchang,23761370,3
+53957027,23761370,4
+monsterkill,23761370,5
+42774143,23761370,1
+49910264,23761370,3
+50880780,23761370,5
+117360867,23761370,3
+52825921,23761370,3
+90492661,23761370,5
+51605377,23761370,5
+SZH19920707,23761370,4
+47619462,23761370,3
+10668148,23761370,5
+81835593,23761370,5
+deerEE,23761370,4
+89491653,23761370,4
+121888064,23761370,4
+58722109,23761370,4
+momoko_huang,23761370,5
+53412927,23761370,5
+36226181,23761370,4
+jiujiang9,23761370,-1
+jay220,23761370,5
+99483183,23761370,3
+lansizhe,23761370,5
+lacly,23761370,4
+justforcrazy,23761370,5
+53351588,23761370,4
+aspirin-m,23761370,4
+45802347,23761370,5
+dearhana,23761370,3
+dearhana,23761370,3
+108942456,23761370,4
+50074678,23761370,4
+45523722,23761370,3
+60246775,23761370,4
+68311586,23761370,5
+yajan,23761370,5
+78534395,23761370,5
+67910771,23761370,5
+rucic,23761370,5
+44140767,23761370,5
+Banana_Z,23761370,5
+49960251,23761370,4
+83089164,23761370,3
+2341945,23761370,4
+117018256,23761370,5
+19790770,23761370,5
+53283406,23761370,4
+karif,23761370,3
+tjmelody,23761370,5
+privatelie,23761370,4
+46853382,23761370,4
+58698996,23761370,3
+AlienSuger,23761370,5
+1494780,23761370,4
+48724953,23761370,4
+shuiseji,23761370,5
+flowermumu,23761370,4
+1225190,23761370,4
+43677316,23761370,5
+shannonsummer,23761370,4
+58430439,23761370,5
+bellayy,23761370,4
+smartsz,23761370,4
+lzsq,23761370,5
+wowoLeejh,23761370,-1
+mmxw,23761370,5
+54261589,23761370,-1
+48434496,23761370,5
+17004593,23761370,5
+17004593,23761370,5
+2057177,23761370,5
+55016503,23761370,5
+61160292,23761370,5
+boboaibaobao,23761370,5
+78284032,23761370,5
+2476564,23761370,4
+wangfendou1,23761370,4
+65080237,23761370,3
+97517593,23761370,3
+103110256,23761370,5
+aba1one,23761370,5
+44649844,23761370,4
+onlymengya,23761370,5
+Ray_W,23761370,4
+mimienn,23761370,5
+52836356,23761370,-1
+waasabi,23761370,4
+dingyin,23761370,5
+46342757,23761370,5
+hijikataT,23761370,3
+49980662,23761370,4
+autograghonly,23761370,5
+79165942,23761370,5
+119015919,23761370,5
+92364458,23761370,5
+69892402,23761370,5
+cantucimtryin,23761370,1
+58571573,23761370,4
+8136180,23761370,4
+37370038,23761370,5
+icemonique,23761370,2
+Ston3s,23761370,5
+48737936,23761370,5
+1067485,23761370,4
+56655499,23761370,5
+HAVIAL13WEI,23761370,5
+3868971,23761370,3
+61504033,23761370,5
+goranger,23761370,1
+58865216,23761370,5
+36120326,23761370,5
+56432703,23761370,5
+sam_wyc,23761370,4
+wukunlsy,23761370,1
+akakyo85,23761370,5
+70242980,23761370,5
+virago1994,23761370,5
+49419366,23761370,5
+65266213,23761370,5
+2181155,23761370,4
+103315563,23761370,4
+shingudoo,23761370,4
+53050998,23761370,5
+75192516,23761370,4
+twitodd,23761370,5
+102640123,23761370,5
+1460180,23761370,5
+25618688,23761370,5
+yueyuebetty,23761370,4
+36362288,23761370,5
+4771743,23761370,4
+A_len,23761370,5
+67072789,23761370,3
+37922395,23761370,5
+54506320,23761370,4
+electronic,23761370,2
+9386243,23761370,3
+hellojanefly,23761370,4
+52883607,23761370,5
+1182787,23761370,4
+48524640,23761370,3
+68607460,23761370,5
+38421432,23761370,5
+Liz426,23761370,3
+xiaobenma,23761370,3
+64268546,23761370,5
+easyqingtian,23761370,5
+cazze,23761370,3
+xiaoranran,23761370,4
+32836711,23761370,4
+62063810,23761370,5
+53644066,23761370,-1
+54126939,23761370,4
+zzxlcq,23761370,5
+58512408,23761370,4
+rosiness,23761370,5
+wuyunli,23761370,4
+qingxiaohuan,23761370,4
+80516818,23761370,4
+55429218,23761370,5
+41307413,23761370,4
+42997943,23761370,5
+14348215,23761370,5
+56831995,23761370,4
+53012012,23761370,4
+spidaman,23761370,5
+91028226,23761370,4
+netkr,23761370,4
+70253982,23761370,5
+2728833,23761370,4
+34059035,23761370,5
+46836947,23761370,5
+78985673,23761370,3
+airaining,23761370,5
+freedomiron,23761370,4
+75270004,23761370,5
+66309841,23761370,5
+juanjuanxy,23761370,5
+ldn19931111,23761370,5
+58591644,23761370,5
+47709338,23761370,4
+15141860,23761370,3
+cursedstar,23761370,4
+80846705,23761370,4
+2850580,23761370,5
+61953480,23761370,-1
+Silvia531,23761370,5
+69078769,23761370,2
+46698247,23761370,3
+46698247,23761370,3
+83267313,23761370,5
+huhu_27,23761370,4
+1956247,23761370,4
+23419399,23761370,4
+shift77,23761370,5
+qi-shao-shang,23761370,5
+46321014,23761370,5
+104212629,23761370,3
+48877495,23761370,5
+54725778,23761370,5
+lemoncake,23761370,4
+52456948,23761370,4
+oh2est,23761370,5
+zcx1990,23761370,5
+yueyuedad1972,23761370,5
+jygreen,23761370,5
+biglovebigbang,23761370,5
+lzannie823,23761370,5
+79254578,23761370,4
+pengyuwa,23761370,3
+61873687,23761370,5
+fox198898,23761370,5
+2999319,23761370,4
+48406952,23761370,4
+icepenny77,23761370,5
+1559168,23761370,4
+46308834,23761370,2
+51300496,23761370,4
+38599840,23761370,-1
+ya45010424,23761370,4
+57756222,23761370,4
+daisy5555,23761370,-1
+NicoleSuking,23761370,4
+35302007,23761370,4
+34810194,23761370,5
+68900038,23761370,3
+zhirong,23761370,5
+67393041,23761370,5
+43866584,23761370,3
+43866584,23761370,3
+gogogounclesam,23761370,5
+60554271,23761370,5
+39784071,23761370,5
+45604659,23761370,5
+cookiefive,23761370,3
+48784410,23761370,4
+tonychyi,23761370,3
+evacheung,23761370,5
+idealtemple,23761370,3
+DUNHILLJJ,23761370,4
+bxhOTZ,23761370,4
+metkee,23761370,4
+david880614,23761370,4
+60157385,23761370,5
+alex-_.-,23761370,5
+82562378,23761370,5
+klerin7,23761370,3
+samadhi,23761370,5
+jinduoduo,23761370,-1
+64214244,23761370,3
+57101279,23761370,4
+jianghucrab,23761370,5
+whxiaobu,23761370,5
+115497658,23761370,5
+80429780,23761370,5
+79464183,23761370,5
+achering,23761370,3
+yips,23761370,5
+47704715,23761370,5
+memor,23761370,5
+48613697,23761370,5
+6303192,23761370,2
+78629416,23761370,4
+49389297,23761370,-1
+123336975,23761370,4
+71946766,23761370,5
+2880359,23761370,5
+nevertori,23761370,4
+29791205,23761370,4
+herohaha,23761370,5
+pbchen,23761370,3
+dolly6084,23761370,4
+4498680,23761370,4
+CXX90622,23761370,5
+autumnsun,23761370,2
+sapphirebaby,23761370,4
+70382173,23761370,3
+deardeerdearme,23761370,5
+94073624,23761370,5
+anjingjiuhao,23761370,4
+56006932,23761370,2
+s5ven,23761370,4
+whitedrama,23761370,3
+66494720,23761370,3
+yeahme,23761370,5
+53890773,23761370,5
+2195518,23761370,5
+64064709,23761370,5
+70468713,23761370,5
+66632216,23761370,4
+OliceDai,23761370,4
+81265460,23761370,5
+ssxl,23761370,5
+totdaisy,23761370,4
+77750639,23761370,5
+StoneandFlower,23761370,5
+35754076,23761370,3
+shelockcrc,23761370,4
+54782824,23761370,5
+yaoaixi,23761370,3
+airinsky,23761370,4
+beggar,23761370,5
+ZillahTiptoe,23761370,4
+mikafish,23761370,5
+josefina_sysbs,23761370,4
+66757366,23761370,5
+124983314,23761370,4
+3801810,23761370,5
+77037611,23761370,4
+87355390,23761370,5
+hollymolly,23761370,5
+ukindergarten,23761370,4
+lygirl989193,23761370,4
+1109340,23761370,5
+ppeimi,23761370,5
+53636868,23761370,3
+3385352,23761370,4
+72808838,23761370,3
+80129989,23761370,5
+35652268,23761370,5
+73438385,23761370,4
+34723827,23761370,5
+84171597,23761370,2
+50433488,23761370,4
+nemomoc,23761370,3
+bunnyx,23761370,5
+summer_waiting,23761370,5
+84775041,23761370,5
+45613020,23761370,4
+momojasper,23761370,5
+75561690,23761370,4
+2297182,23761370,1
+52564377,23761370,5
+53694721,23761370,5
+4427169,23761370,5
+51103261,23761370,5
+qiao1123,23761370,5
+67572632,23761370,3
+54228014,23761370,4
+122596452,23761370,5
+53107666,23761370,5
+58658225,23761370,5
+85230814,23761370,5
+76666171,23761370,4
+60917488,23761370,4
+stillm,23761370,3
+52635539,23761370,4
+125266785,23761370,5
+51828492,23761370,4
+54378325,23761370,5
+61296926,23761370,5
+79402170,23761370,4
+evaniscoming,23761370,5
+maggietan,23761370,5
+LoudsYoung,23761370,5
+3783012,23761370,5
+standyvan,23761370,5
+42682123,23761370,4
+typezero,23761370,3
+xczhong,23761370,5
+orangela,23761370,4
+57492630,23761370,5
+22818127,23761370,5
+73648035,23761370,4
+3740857,23761370,5
+103598804,23761370,4
+125265338,23761370,4
+68194248,23761370,3
+2258556,23761370,1
+shixiaoli,23761370,5
+4487892,23761370,4
+57303542,23761370,5
+LadyShino,23761370,5
+2453784,23761370,3
+44376403,23761370,5
+eci0427,23761370,-1
+atomziyu,23761370,4
+qinxinzhu,23761370,3
+86138673,23761370,5
+81322557,23761370,5
+imay,23761370,5
+45416494,23761370,5
+73958247,23761370,4
+rivasunzhuoling,23761370,4
+44338831,23761370,4
+ltracy,23761370,4
+44611044,23761370,5
+grey_sugar,23761370,4
+114278157,23761370,5
+powerdog,23761370,5
+52279001,23761370,3
+55990410,23761370,5
+quan1989cheng,23761370,3
+babysui,23761370,3
+cb1030,23761370,4
+seereen,23761370,-1
+50069849,23761370,5
+55735713,23761370,5
+1296537,23761370,4
+HuigeZhuang,23761370,4
+zoe605533485,23761370,2
+ssime,23761370,3
+62863500,23761370,5
+81424914,23761370,5
+69318478,23761370,4
+42183794,23761370,4
+Collins1995,23761370,4
+yunl988,23761370,4
+56080469,23761370,4
+4495771,23761370,-1
+onelifeonelove,23761370,5
+64776383,23761370,4
+56355383,23761370,5
+8068484,23761370,5
+star2u,23761370,5
+50404313,23761370,5
+eastern,23761370,2
+individualism,23761370,5
+4582318,23761370,5
+46597691,23761370,5
+shingo,23761370,4
+a870838604,23761370,5
+9290427,23761370,5
+dayandnights,23761370,3
+44424123,23761370,5
+79605736,23761370,4
+92993399,23761370,5
+46837885,23761370,5
+Daisy910,23761370,4
+47117725,23761370,5
+jxzb,23761370,4
+42303791,23761370,4
+72209783,23761370,5
+73510716,23761370,4
+di07,23761370,4
+49468468,23761370,5
+blablablalala,23761370,5
+4182806,23761370,3
+nocita,23761370,3
+101963490,23761370,5
+57367354,23761370,5
+59456598,23761370,4
+penghui-1988916,23761370,5
+42162053,23761370,5
+wajie1129,23761370,4
+73669959,23761370,4
+Bennyzjq,23761370,5
+70454973,23761370,4
+59599997,23761370,5
+122060054,23761370,3
+97543641,23761370,5
+kimidesperado,23761370,5
+youyi414,23761370,2
+1092101,23761370,3
+1908333,23761370,4
+imarilyn,23761370,3
+65832475,23761370,5
+45193149,23761370,3
+1024655,23761370,4
+63723593,23761370,5
+umikin,23761370,5
+89530028,23761370,5
+59133678,23761370,5
+1601140,23761370,4
+yeelotea,23761370,5
+91584522,23761370,5
+72571233,23761370,4
+47655212,23761370,4
+ray1124,23761370,5
+doubleis,23761370,5
+whenmay,23761370,5
+jellyfish0816,23761370,5
+musicmuse,23761370,4
+33712486,23761370,5
+caixiaoqiang,23761370,5
+48710899,23761370,5
+mymisssummer,23761370,4
+firstcause,23761370,4
+81766513,23761370,5
+114483839,23761370,4
+47118380,23761370,5
+57397941,23761370,3
+liujinjie,23761370,4
+45791033,23761370,4
+63565906,23761370,4
+4652325,23761370,5
+1482191,23761370,5
+2600634,23761370,5
+tdz,23761370,4
+chenshazi,23761370,4
+imellie,23761370,4
+48857118,23761370,5
+56901584,23761370,5
+xiaokangfrost,23761370,5
+49214798,23761370,4
+63176670,23761370,5
+paral-self,23761370,5
+catherine_0529,23761370,5
+49283694,23761370,4
+1443450,23761370,4
+kuguadashi,23761370,5
+churao,23761370,5
+queen_kw,23761370,4
+97011076,23761370,5
+39698078,23761370,5
+49852947,23761370,5
+cyblocker,23761370,5
+vincent2010,23761370,3
+29640209,23761370,5
+29640209,23761370,5
+54130378,23761370,3
+92048195,23761370,5
+4257921,23761370,5
+keytoworld,23761370,4
+cocacolacat,23761370,4
+59281963,23761370,4
+40764389,23761370,5
+62021048,23761370,-1
+Imrice,23761370,5
+59206130,23761370,5
+luans,23761370,5
+48035505,23761370,4
+103696234,23761370,5
+52231356,23761370,5
+49948273,23761370,4
+siyao1019,23761370,5
+45982072,23761370,2
+114955674,23761370,4
+vtmonkey,23761370,4
+lzlm,23761370,4
+killy_wys,23761370,5
+Christ-X,23761370,3
+1671131,23761370,5
+Olivia0813,23761370,4
+bardfox,23761370,4
+2509846,23761370,4
+58268396,23761370,3
+63589848,23761370,5
+w-leaf,23761370,5
+82133013,23761370,4
+4091974,23761370,5
+timeflowers,23761370,5
+xiemenmen,23761370,5
+52931532,23761370,5
+52697213,23761370,5
+ravenphoto,23761370,5
+49821466,23761370,5
+64067835,23761370,3
+25818225,23761370,5
+wanxiaojin,23761370,4
+72296514,23761370,5
+49628220,23761370,5
+Shirney007,23761370,3
+37329078,23761370,5
+stafiaryuu,23761370,4
+Cheshier,23761370,4
+123875477,23761370,5
+120884778,23761370,3
+dolphinson,23761370,5
+30655094,23761370,3
+2226983,23761370,4
+49924267,23761370,5
+xjndfdfe,23761370,5
+zhouzh,23761370,4
+68509187,23761370,4
+Dadaspurs,23761370,-1
+wenmiaohan,23761370,4
+flinpped,23761370,5
+loveoon,23761370,4
+zhaowanqiong,23761370,4
+grave-,23761370,4
+43055983,23761370,5
+zhangjianpeng,23761370,4
+Lucifer4219,23761370,4
+sahalazx,23761370,4
+lajambo,23761370,5
+imsunfish,23761370,5
+lcrgreen,23761370,4
+bronze27,23761370,5
+81626321,23761370,5
+52843310,23761370,5
+sherlocklu,23761370,3
+BoheLOG,23761370,-1
+56104621,23761370,3
+jaswin,23761370,5
+80346808,23761370,5
+xin19930622,23761370,5
+66266161,23761370,5
+duxiaolin,23761370,3
+40581527,23761370,4
+61607875,23761370,5
+57989017,23761370,5
+58179920,23761370,5
+59702078,23761370,5
+wensonsmith,23761370,5
+seVen.C,23761370,5
+ggx29225692,23761370,5
+LyReonn,23761370,4
+Dlio_o,23761370,5
+58401750,23761370,4
+75653628,23761370,5
+hayako8059,23761370,5
+arsenalfc,23761370,5
+s.e.t,23761370,5
+6394113,23761370,5
+92853395,23761370,3
+dhflockyer00,23761370,4
+4239816,23761370,5
+angelcheng728,23761370,5
+lixiaguniang,23761370,4
+26306306,23761370,5
+hjmm900911,23761370,4
+37460295,23761370,4
+3105123,23761370,5
+4600351,23761370,5
+Petrick628,23761370,2
+shadowyshadow,23761370,3
+72106984,23761370,5
+Sunnyshine,23761370,3
+CLOWN9527521,23761370,4
+3712644,23761370,5
+56945558,23761370,5
+eleGuai,23761370,4
+56672211,23761370,5
+mayirgo,23761370,4
+xiang-chuyi,23761370,-1
+fannyl,23761370,4
+44637469,23761370,4
+74553304,23761370,5
+29155383,23761370,3
+chrisairfly,23761370,3
+59471293,23761370,5
+7116166,23761370,4
+49081433,23761370,5
+52153576,23761370,5
+ichigomint,23761370,5
+XTW,23761370,2
+50201051,23761370,5
+zenglk,23761370,5
+PIERO1208,23761370,4
+madchen,23761370,5
+michelq,23761370,4
+48622526,23761370,3
+47821826,23761370,4
+49128378,23761370,5
+119346466,23761370,5
+2746761,23761370,4
+49948857,23761370,5
+cloudybaby,23761370,5
+43815351,23761370,4
+3636257,23761370,4
+45790333,23761370,5
+119666088,23761370,3
+52860705,23761370,5
+65901691,23761370,4
+45194143,23761370,5
+1832033,23761370,5
+kisiss,23761370,5
+44044101,23761370,4
+64622270,23761370,5
+superrain,23761370,4
+heavywoo,23761370,5
+43568390,23761370,5
+9737012,23761370,5
+ZouzheFoudouzhe,23761370,4
+92666074,23761370,5
+53507443,23761370,4
+futurebaymax,23761370,5
+44726753,23761370,5
+38498557,23761370,3
+62774885,23761370,3
+120160275,23761370,5
+december.L,23761370,5
+52415116,23761370,4
+hanchongmusic,23761370,5
+izhouxy,23761370,5
+10011120,23761370,5
+42948156,23761370,4
+40631026,23761370,3
+49031008,23761370,5
+36888465,23761370,5
+6019648,23761370,5
+summerzoo,23761370,4
+61345635,23761370,5
+pkt1993,23761370,4
+1414995,23761370,5
+Susan1206,23761370,5
+45449329,23761370,3
+69760912,23761370,5
+122371820,23761370,5
+52680941,23761370,4
+52912743,23761370,5
+60883239,23761370,4
+1963507,23761370,5
+suinsun,23761370,5
+61621681,23761370,3
+47274903,23761370,3
+39747577,23761370,-1
+70572780,23761370,5
+18997911,23761370,4
+KnightWhite,23761370,5
+69240302,23761370,5
+2075652,23761370,5
+DARKM,23761370,5
+4458376,23761370,4
+nalusea,23761370,4
+53814152,23761370,4
+TAMMYEE,23761370,-1
+48507146,23761370,4
+125257619,23761370,5
+B-B-B-Side,23761370,2
+liweimin,23761370,5
+rousanpangzi,23761370,3
+47873831,23761370,3
+49526632,23761370,3
+ailic,23761370,4
+51351647,23761370,5
+4612781,23761370,5
+51158942,23761370,5
+48172193,23761370,5
+50583077,23761370,5
+49259090,23761370,5
+litchiding,23761370,4
+2326875,23761370,5
+heyunchao007,23761370,4
+guoyeh,23761370,5
+50040754,23761370,5
+MissMelody-,23761370,5
+80161168,23761370,1
+68272824,23761370,5
+bebest,23761370,5
+daocaorenxiaoC,23761370,5
+sunlinlovemicky,23761370,4
+awayway,23761370,4
+isleen,23761370,5
+starandstar,23761370,4
+41678611,23761370,5
+toby_7,23761370,5
+64576009,23761370,5
+1636289,23761370,5
+antime,23761370,3
+49378755,23761370,5
+3355006,23761370,5
+57956919,23761370,5
+kitty1988,23761370,-1
+4704155,23761370,3
+SHSMJ-Z,23761370,4
+wanghuzou,23761370,5
+91839798,23761370,5
+psynonder,23761370,5
+58847621,23761370,5
+shuaishuaia,23761370,5
+52792433,23761370,5
+70775632,23761370,4
+69616363,23761370,5
+69395755,23761370,4
+Samantha_X,23761370,3
+26475045,23761370,5
+45256458,23761370,4
+shengnian,23761370,5
+67824919,23761370,-1
+attack_y,23761370,5
+4807458,23761370,4
+60211609,23761370,5
+48184999,23761370,5
+kansing,23761370,5
+50337203,23761370,5
+50299553,23761370,5
+49257924,23761370,3
+64898125,23761370,5
+66089131,23761370,4
+fish_yoyo,23761370,4
+lambert1989,23761370,3
+60778939,23761370,5
+113911609,23761370,5
+betty5230,23761370,5
+45133346,23761370,4
+memo7,23761370,4
+shaoraul,23761370,5
+41165476,23761370,4
+65197042,23761370,3
+55764121,23761370,5
+jue_mingzi,23761370,4
+xanxan,23761370,3
+VincentYeh,23761370,3
+hdx1991,23761370,4
+3053086,23761370,4
+louisayu,23761370,3
+3554744,23761370,2
+leashellchen,23761370,5
+hanlywu,23761370,4
+tinydream,23761370,5
+selfishJin,23761370,5
+52484586,23761370,4
+61978827,23761370,4
+48864123,23761370,5
+49338428,23761370,5
+59008972,23761370,5
+lauretta2acm,23761370,4
+47755955,23761370,5
+imqiuzi,23761370,3
+48748738,23761370,5
+67547776,23761370,5
+90916062,23761370,5
+63228539,23761370,5
+46829398,23761370,5
+56835847,23761370,4
+Hex79696e67,23761370,3
+48793243,23761370,5
+NebulaSY,23761370,5
+duguyuze,23761370,5
+34271981,23761370,5
+58462881,23761370,5
+53460171,23761370,5
+42340302,23761370,5
+imMurphy,23761370,4
+hlphyx,23761370,5
+50410160,23761370,5
+smiletolife,23761370,5
+yq_,23761370,5
+58759061,23761370,5
+62760915,23761370,5
+netzilla,23761370,3
+85174401,23761370,5
+1956404,23761370,5
+51605005,23761370,5
+69842524,23761370,4
+42346736,23761370,5
+shishishishijie,23761370,5
+115693800,23761370,5
+57089947,23761370,5
+75706045,23761370,5
+niuniurf,23761370,4
+49298161,23761370,5
+46567129,23761370,4
+57465510,23761370,5
+lovelessdavy,23761370,2
+85190333,23761370,4
+4446747,23761370,4
+yummy0526,23761370,4
+Joest,23761370,4
+yypudding,23761370,3
+topsky_0,23761370,4
+karyland,23761370,5
+nangongdumpling,23761370,4
+58109706,23761370,5
+armai,23761370,3
+13174363,23761370,4
+108282995,23761370,5
+26895097,23761370,3
+Orapa,23761370,3
+40241805,23761370,4
+solarwater,23761370,5
+denghl,23761370,5
+44726824,23761370,5
+groof,23761370,4
+27081582,23761370,4
+3442979,23761370,4
+4712419,23761370,5
+55374994,23761370,3
+44344818,23761370,5
+eureka7,23761370,3
+52288503,23761370,4
+3817992,23761370,-1
+104551011,23761370,5
+bangbang2033,23761370,5
+krenee,23761370,4
+linsese,23761370,4
+breadforest,23761370,4
+naturalran,23761370,5
+XRD-0125,23761370,4
+mailaoshi,23761370,5
+menkoumahu,23761370,4
+64673199,23761370,5
+xiaowuyi,23761370,-1
+M.iya,23761370,5
+woshizeng,23761370,5
+dashuibei,23761370,5
+fhq0320121,23761370,5
+58544664,23761370,4
+62222208,23761370,5
+15240693,23761370,4
+73942837,23761370,3
+81392998,23761370,5
+shadowall,23761370,4
+chenbing,23761370,3
+39957958,23761370,4
+inout,23761370,3
+yilin101,23761370,3
+ruyan0521,23761370,5
+67342694,23761370,4
+56398717,23761370,5
+huaxiaole,23761370,4
+lingjunxin,23761370,4
+70097402,23761370,5
+leeyone,23761370,3
+40232667,23761370,-1
+alpshh,23761370,5
+57325323,23761370,4
+K.E,23761370,5
+15456074,23761370,5
+heyonggang,23761370,5
+weilovetvxq,23761370,4
+70927104,23761370,4
+57586060,23761370,5
+66738885,23761370,5
+3000313,23761370,5
+112236619,23761370,5
+114619050,23761370,5
+114619050,23761370,5
+43484054,23761370,5
+4165611,23761370,4
+DrRay,23761370,4
+Daryl,23761370,3
+41255889,23761370,5
+nanawu,23761370,4
+4731274,23761370,4
+103769558,23761370,2
+stkenny,23761370,5
+34763047,23761370,-1
+92017036,23761370,5
+suretobehere,23761370,5
+SILENT7,23761370,4
+11542932,23761370,4
+50557669,23761370,5
+56062537,23761370,4
+b_less,23761370,5
+4847438,23761370,5
+30457423,23761370,5
+102996784,23761370,5
+48167450,23761370,3
+63332988,23761370,4
+jn121314,23761370,-1
+121720779,23761370,5
+76852341,23761370,5
+1258179,23761370,4
+xiaohundaban,23761370,5
+116036519,23761370,3
+57818955,23761370,5
+49178045,23761370,5
+122755872,23761370,5
+buffongao,23761370,5
+midautumnsong,23761370,5
+122640070,23761370,5
+51686088,23761370,4
+mingyuehdajiang,23761370,4
+80307859,23761370,4
+tanhuiwendy,23761370,-1
+74033537,23761370,4
+3676447,23761370,4
+zhengyaru,23761370,4
+47625625,23761370,4
+43303495,23761370,5
+kid719,23761370,4
+x.sunday,23761370,4
+zhangmz,23761370,-1
+guosiyao,23761370,4
+emmazhangxx,23761370,4
+jiangrenz,23761370,3
+81056400,23761370,5
+running_zhang,23761370,5
+89108079,23761370,5
+59776851,23761370,4
+41214988,23761370,5
+WOBUSHINI,23761370,5
+1732296,23761370,5
+lyancole1,23761370,3
+Carmeliano,23761370,3
+55940096,23761370,5
+HBHelena,23761370,4
+63123053,23761370,3
+59404566,23761370,3
+60645894,23761370,4
+52917026,23761370,5
+53362752,23761370,5
+81313472,23761370,5
+meilang.,23761370,3
+maqingyun,23761370,1
+58903847,23761370,5
+58016445,23761370,5
+122224219,23761370,4
+trumpkiller,23761370,5
+PMsxl,23761370,4
+101625344,23761370,5
+15497319,23761370,4
+qt1022,23761370,5
+80993663,23761370,5
+54802441,23761370,4
+51803624,23761370,4
+yoshizuki,23761370,5
+hujiahao,23761370,5
+3208761,23761370,5
+sukisukid,23761370,-1
+justin-vboy,23761370,1
+ajuews,23761370,5
+63622280,23761370,4
+84896449,23761370,5
+3903753,23761370,3
+48730189,23761370,4
+calvingaga,23761370,5
+53132869,23761370,4
+116052846,23761370,5
+57961574,23761370,5
+46423055,23761370,5
+124168888,23761370,5
+61098125,23761370,5
+91872697,23761370,5
+68732725,23761370,5
+125232872,23761370,4
+54186144,23761370,5
+paperboat,23761370,5
+58725989,23761370,4
+1556970,23761370,4
+53458658,23761370,5
+20486627,23761370,5
+29783892,23761370,4
+4319074,23761370,5
+smshuimu,23761370,4
+LLsupportsJIM,23761370,3
+2211220,23761370,5
+88919684,23761370,5
+4147254,23761370,3
+68778355,23761370,5
+51774232,23761370,5
+58576729,23761370,4
+cherryoung,23761370,4
+43445712,23761370,5
+63054075,23761370,4
+60950430,23761370,5
+38104909,23761370,5
+31757691,23761370,5
+35499398,23761370,5
+ovosophia,23761370,3
+84758064,23761370,4
+3986975,23761370,5
+vipzshtomorrow,23761370,5
+4376416,23761370,5
+yangyemiemie,23761370,5
+melissia,23761370,3
+Night_shadow,23761370,3
+ink1020,23761370,-1
+60605103,23761370,4
+3796003,23761370,4
+10396818,23761370,4
+104392597,23761370,5
+zengkun100,23761370,3
+58286468,23761370,5
+64349163,23761370,4
+66832758,23761370,4
+Forrestgary,23761370,5
+50199937,23761370,3
+115974716,23761370,5
+flavia-huqing,23761370,5
+jill426,23761370,3
+59705163,23761370,5
+62414956,23761370,4
+4274576,23761370,5
+42830550,23761370,5
+59777760,23761370,5
+safulas,23761370,5
+83809414,23761370,5
+4080309,23761370,2
+54660916,23761370,5
+37718981,23761370,5
+38412947,23761370,5
+53669377,23761370,5
+101386865,23761370,5
+57738253,23761370,5
+52763361,23761370,5
+33830687,23761370,5
+4387302,23761370,5
+3581917,23761370,5
+67835292,23761370,3
+4627411,23761370,5
+muyucheng,23761370,-1
+36341358,23761370,4
+goodays,23761370,4
+48577098,23761370,4
+jialinwonder,23761370,4
+omnia,23761370,5
+liao_le,23761370,4
+4425575,23761370,3
+65500032,23761370,5
+mrsmsr,23761370,5
+ldfuer,23761370,4
+2361078,23761370,3
+58110144,23761370,3
+56854681,23761370,4
+43594707,23761370,4
+43594707,23761370,4
+glorymanutd,23761370,5
+2223577,23761370,5
+66170168,23761370,4
+tymchn,23761370,5
+48047560,23761370,5
+57668007,23761370,5
+51541189,23761370,4
+hcsh,23761370,5
+Liu.Y,23761370,5
+62312013,23761370,2
+thinkbai,23761370,4
+flycandice,23761370,5
+69386924,23761370,4
+68877037,23761370,4
+47803604,23761370,5
+2124879,23761370,5
+3683910,23761370,4
+2974918,23761370,4
+bubblewing,23761370,4
+Chinajoke,23761370,5
+torresgomenggo,23761370,3
+2230395,23761370,4
+1793710,23761370,4
+derekl,23761370,5
+1725784,23761370,5
+yeeeeeee,23761370,4
+43712380,23761370,5
+TenTonTruck,23761370,-1
+badayidi,23761370,3
+zhanglinge,23761370,4
+fb87,23761370,5
+arcueid,23761370,4
+t2yan,23761370,5
+seafans,23761370,4
+17516659,23761370,5
+yangbo_md,23761370,4
+47634214,23761370,5
+mattni,23761370,4
+senelu,23761370,4
+116092070,23761370,5
+shiji47,23761370,5
+ckthewise,23761370,4
+47516528,23761370,4
+4006554,23761370,5
+71193524,23761370,5
+NullPointer,23761370,5
+1767634,23761370,4
+69791332,23761370,3
+cherrybabe,23761370,5
+49519305,23761370,3
+57273933,23761370,5
+46455848,23761370,5
+78593884,23761370,5
+edenhsu,23761370,4
+47731149,23761370,5
+3471396,23761370,-1
+xly7788,23761370,4
+56117843,23761370,5
+76206117,23761370,3
+31170991,23761370,5
+creasywq,23761370,5
+2058011,23761370,5
+littlepoorshit,23761370,3
+65795438,23761370,4
+46981614,23761370,5
+61547123,23761370,5
+75422336,23761370,4
+120459070,23761370,5
+36501990,23761370,4
+116402107,23761370,4
+4085843,23761370,5
+93426094,23761370,2
+xiamubeishi,23761370,5
+dssunshineer,23761370,3
+46810832,23761370,5
+121762241,23761370,5
+monkeykk,23761370,4
+pangjiansheng,23761370,5
+57445447,23761370,3
+60192740,23761370,5
+88554996,23761370,4
+73701438,23761370,5
+Kissthelife,23761370,5
+zooxiaowu,23761370,5
+freed0me,23761370,5
+complicated3071,23761370,-1
+bicaihua,23761370,3
+waWa.tomato,23761370,5
+27343589,23761370,4
+vron,23761370,4
+68874282,23761370,5
+88292094,23761370,5
+83744928,23761370,4
+100144425,23761370,5
+chaneagle,23761370,5
+ninalan911,23761370,5
+92004174,23761370,5
+47995436,23761370,4
+69000298,23761370,5
+vikingforest,23761370,2
+56984536,23761370,5
+54463579,23761370,5
+48684337,23761370,5
+loveloki913,23761370,5
+shling1900,23761370,4
+DERRICK_ROSE,23761370,5
+Faith-Eternal,23761370,3
+65434599,23761370,5
+tucaomalisu,23761370,5
+banyueyayinzhai,23761370,5
+115363688,23761370,3
+m1ss.x2,23761370,5
+33353344,23761370,5
+98775139,23761370,5
+vikifred,23761370,5
+Cici0926,23761370,5
+mayxoxo,23761370,4
+inspiredxx,23761370,2
+57134566,23761370,5
+rooob,23761370,3
+4595311,23761370,4
+61229030,23761370,4
+124621410,23761370,5
+59114201,23761370,5
+athena0888,23761370,4
+52756407,23761370,5
+80033918,23761370,5
+68993346,23761370,5
+75749423,23761370,5
+25972257,23761370,5
+52729956,23761370,5
+2736910,23761370,4
+50304215,23761370,5
+69223309,23761370,5
+onlymoc,23761370,3
+84608070,23761370,5
+41659361,23761370,5
+51430921,23761370,3
+83328709,23761370,4
+sue0919,23761370,4
+allenwangzihan,23761370,5
+ste0815,23761370,2
+xudouli,23761370,5
+deepgrey,23761370,4
+88171828,23761370,4
+3779967,23761370,2
+72278242,23761370,5
+3716200,23761370,5
+wndc44,23761370,5
+st.nye,23761370,4
+hedan122,23761370,5
+81594429,23761370,5
+68186008,23761370,5
+65179482,23761370,5
+54741080,23761370,5
+75807285,23761370,4
+2326685,23761370,4
+73932625,23761370,5
+lovepussy,23761370,4
+jhtwillrockyou,23761370,4
+61712734,23761370,3
+40053775,23761370,5
+yeluchow,23761370,4
+68744718,23761370,4
+26486155,23761370,4
+54909564,23761370,4
+60781966,23761370,5
+sunnyEudora,23761370,5
+89340873,23761370,5
+48562105,23761370,5
+114082783,23761370,5
+75208258,23761370,5
+55593785,23761370,3
+38811434,23761370,5
+Zdb,23761370,5
+59884446,23761370,5
+46043739,23761370,4
+49006442,23761370,2
+linxiayidu0,23761370,4
+121464329,23761370,5
+viola210,23761370,5
+57981890,23761370,-1
+soyasauce,23761370,5
+46843344,23761370,5
+36030234,23761370,4
+91546587,23761370,5
+55842549,23761370,4
+90638810,23761370,5
+78321919,23761370,3
+120605598,23761370,5
+63270983,23761370,5
+shumingray,23761370,5
+onelast,23761370,3
+ryanwaiting,23761370,4
+50377436,23761370,4
+52608532,23761370,4
+sodaorchid,23761370,3
+43955496,23761370,4
+72151805,23761370,4
+66104614,23761370,5
+moliye,23761370,5
+90622464,23761370,5
+beautyxyw,23761370,5
+hamsteryo,23761370,5
+64254250,23761370,3
+3627412,23761370,5
+59394881,23761370,5
+120872335,23761370,4
+cheerjuno,23761370,5
+17547191,23761370,5
+fayexu,23761370,5
+35353317,23761370,4
+15121621,23761370,5
+ccccccIty,23761370,5
+67936960,23761370,5
+50988051,23761370,5
+cannawinds,23761370,4
+53348174,23761370,5
+2082692,23761370,4
+Honeys-Lee,23761370,5
+75280843,23761370,3
+serenenight,23761370,4
+51467287,23761370,4
+39526350,23761370,4
+53012671,23761370,5
+Patrick_Kang,23761370,5
+47637580,23761370,5
+84642200,23761370,5
+jeansolove,23761370,3
+64571969,23761370,4
+15565943,23761370,5
+Aurora0125,23761370,5
+ktXIIIjk,23761370,5
+Mayday_Casa,23761370,5
+83905461,23761370,5
+neil722,23761370,5
+103735356,23761370,4
+cathrynlv,23761370,5
+dai0dai,23761370,5
+Stamay_chou,23761370,3
+53829658,23761370,5
+122886150,23761370,3
+67514988,23761370,5
+Ryan-Cheng,23761370,5
+37694256,23761370,4
+60841792,23761370,-1
+zenbi,23761370,5
+63829883,23761370,5
+brair.Q,23761370,5
+1531887,23761370,4
+kylehuang,23761370,5
+onlyloll,23761370,4
+77699429,23761370,5
+70976003,23761370,5
+chenyaya,23761370,5
+121650860,23761370,5
+51829065,23761370,5
+71686495,23761370,5
+119498270,23761370,3
+aRmstrong-Kiss,23761370,5
+64301256,23761370,4
+45986847,23761370,5
+33893684,23761370,5
+4019279,23761370,5
+121861331,23761370,3
+elliott5678,23761370,4
+60448203,23761370,5
+machaojie,23761370,4
+evim,23761370,5
+41806618,23761370,5
+65413413,23761370,4
+54116667,23761370,4
+62504024,23761370,4
+71467734,23761370,4
+ShawnChou,23761370,5
+ChrisOutOfSpace,23761370,3
+p22231,23761370,5
+xianghang123,23761370,4
+christinazeng,23761370,4
+ClaireChu,23761370,4
+123331677,23761370,4
+Renaissance_w,23761370,3
+MadHorse,23761370,3
+51990360,23761370,5
+82243464,23761370,5
+smile_xue,23761370,5
+Vol.de.nuit,23761370,3
+54956203,23761370,4
+dadazai,23761370,5
+CcC.r,23761370,5
+6278260,23761370,4
+cypsh,23761370,4
+48216088,23761370,5
+MissLynn11,23761370,5
+58255325,23761370,4
+30823951,23761370,4
+73456502,23761370,3
+63517876,23761370,5
+traveler1756,23761370,3
+C.YEll,23761370,4
+nickeyes,23761370,5
+71702160,23761370,5
+Tracy1230,23761370,4
+65026592,23761370,5
+piaoyull,23761370,4
+ForeverMoon,23761370,5
+kiwiflmi,23761370,5
+45221153,23761370,-1
+34546770,23761370,5
+52177154,23761370,5
+62141246,23761370,5
+50141200,23761370,3
+Brooke_love,23761370,5
+99296692,23761370,5
+48892199,23761370,5
+mlgbpirate,23761370,5
+caojiang,23761370,5
+veronicawolf,23761370,4
+41386230,23761370,4
+jy0820,23761370,5
+3552611,23761370,4
+Iayours,23761370,3
+sleepwalk,23761370,5
+WXbmouth,23761370,5
+53971929,23761370,3
+54398534,23761370,5
+45430088,23761370,5
+sunnyniumei,23761370,3
+66179494,23761370,5
+5612926,23761370,4
+cxs168,23761370,4
+36499503,23761370,3
+34585399,23761370,3
+52636837,23761370,4
+54103480,23761370,4
+2217349,23761370,5
+zebramomo,23761370,5
+berber918,23761370,5
+banxia819,23761370,5
+pumeiling,23761370,4
+52806556,23761370,5
+56631465,23761370,4
+yogaeven,23761370,5
+64885985,23761370,5
+55846038,23761370,4
+lily0310,23761370,-1
+48224395,23761370,2
+syviesun,23761370,5
+66269844,23761370,5
+4606888,23761370,4
+waynexx,23761370,3
+88310167,23761370,5
+42709925,23761370,5
+51721466,23761370,4
+49188433,23761370,4
+shoushouan,23761370,4
+59459283,23761370,4
+4068305,23761370,4
+81351219,23761370,4
+3677448,23761370,4
+59210685,23761370,5
+53911259,23761370,5
+flykewell4,23761370,5
+acparadise,23761370,5
+64506068,23761370,4
+saradipity,23761370,4
+82018179,23761370,4
+8872886,23761370,4
+wjlqnyrc,23761370,5
+Kohlerdagger,23761370,5
+69412065,23761370,1
+58581778,23761370,5
+83337492,23761370,4
+fan_1220,23761370,2
+4463143,23761370,5
+81146735,23761370,5
+LisaQiuQiu,23761370,5
+vivian000627,23761370,5
+sukihsieh,23761370,5
+67336403,23761370,4
+46456359,23761370,3
+rickeylee,23761370,4
+121263235,23761370,3
+frankcheung,23761370,5
+fuckTMD,23761370,5
+9823994,23761370,4
+fifa10,23761370,4
+blackguardangel,23761370,5
+marieni,23761370,5
+77084938,23761370,5
+TangAnAnn,23761370,5
+cola1214,23761370,3
+83524937,23761370,3
+49778972,23761370,3
+55420489,23761370,5
+35374393,23761370,5
+yiaqing,23761370,5
+xuepanpan,23761370,5
+66557301,23761370,4
+123173242,23761370,5
+115467690,23761370,4
+50935316,23761370,5
+lazyyufeng,23761370,4
+75096112,23761370,5
+63744886,23761370,5
+50929196,23761370,4
+Uni_zz,23761370,3
+29998892,23761370,5
+liketingting,23761370,5
+37146120,23761370,4
+Kemuid,23761370,5
+wuyuanwei,23761370,5
+62687217,23761370,5
+3701499,23761370,5
+hedyiswondering,23761370,4
+gloriabrigida,23761370,3
+55886831,23761370,5
+43691246,23761370,5
+ruanzebang,23761370,3
+38308503,23761370,5
+lnzyn,23761370,3
+zzzzzmc,23761370,5
+ruohu3094,23761370,5
+ximenjun,23761370,3
+tomyiyun,23761370,5
+kuukin,23761370,5
+4525795,23761370,4
+sundayafternoon,23761370,5
+32133702,23761370,4
+18124381,23761370,5
+77876684,23761370,4
+23853027,23761370,3
+sucetteliu,23761370,4
+111206168,23761370,5
+122552717,23761370,5
+jermen,23761370,5
+97743237,23761370,5
+82582719,23761370,5
+54790827,23761370,5
+3558390,23761370,3
+74567166,23761370,4
+64280475,23761370,5
+53612048,23761370,5
+luckyshell,23761370,5
+17512518,23761370,5
+39158131,23761370,4
+58976778,23761370,5
+62879258,23761370,4
+57955732,23761370,5
+zhaodan,23761370,5
+Memorial_Sue,23761370,4
+72296325,23761370,4
+14042957,23761370,5
+YY-77,23761370,4
+90443772,23761370,5
+56818506,23761370,5
+47817980,23761370,5
+Young.forU,23761370,2
+41562982,23761370,5
+60203877,23761370,5
+haixiaoyang,23761370,4
+122178478,23761370,5
+54712653,23761370,4
+35348647,23761370,3
+wdxc999999,23761370,5
+37108716,23761370,5
+tiemflies,23761370,5
+djoko,23761370,4
+49397696,23761370,3
+71143154,23761370,4
+52209428,23761370,5
+46805578,23761370,5
+muyanyan,23761370,5
+65579666,23761370,5
+duotian,23761370,3
+lingfriendly,23761370,5
+76803382,23761370,5
+zullnverno,23761370,5
+bestsecretlife,23761370,5
+oppih,23761370,5
+sokuuu,23761370,5
+69910134,23761370,4
+4410708,23761370,5
+kops7s8,23761370,5
+38592455,23761370,5
+81546686,23761370,5
+45266623,23761370,5
+leilei66,23761370,4
+thisismeng,23761370,5
+Jobszhuisui9,23761370,5
+121118492,23761370,5
+46538324,23761370,5
+xiaokaca,23761370,4
+iceleehom,23761370,4
+vitakoo,23761370,4
+40748755,23761370,4
+57977167,23761370,4
+yaoricky,23761370,5
+52187900,23761370,4
+wusansui,23761370,5
+58677622,23761370,5
+4574856,23761370,5
+3480296,23761370,5
+airan712,23761370,3
+MaoMaoTiNa,23761370,5
+1693893,23761370,5
+2277888,23761370,5
+125231797,23761370,5
+55807632,23761370,4
+125231750,23761370,4
+43960066,23761370,4
+Ryan_zc,23761370,5
+suheagatha,23761370,5
+superangel,23761370,5
+1079289,23761370,5
+58374891,23761370,5
+yiyangdexiatian,23761370,3
+4505631,23761370,4
+56998454,23761370,5
+jiazi1216,23761370,4
+yxhmm126,23761370,3
+39049908,23761370,4
+34600215,23761370,3
+hlym,23761370,4
+33940050,23761370,4
+64120206,23761370,4
+noiceburg,23761370,3
+lunann,23761370,3
+57724794,23761370,5
+41030554,23761370,4
+56732738,23761370,5
+45941293,23761370,5
+73449717,23761370,5
+80059301,23761370,5
+owen289607833,23761370,4
+58783502,23761370,4
+4574811,23761370,5
+2437900,23761370,5
+43487279,23761370,5
+114461726,23761370,4
+nathanzhang1989,23761370,5
+cccccuiyao,23761370,5
+eitu,23761370,4
+66686724,23761370,5
+49784742,23761370,5
+125231654,23761370,5
+adamhu,23761370,5
+sunrisesmile,23761370,3
+119296720,23761370,5
+73421771,23761370,3
+72409759,23761370,4
+125230283,23761370,5
+30884176,23761370,4
+46292893,23761370,3
+skyjadebear,23761370,4
+38431953,23761370,5
+51583738,23761370,4
+59433731,23761370,4
+dear_rebecca,23761370,4
+helene9933,23761370,3
+Dmozlmz,23761370,-1
+55767497,23761370,5
+4089785,23761370,4
+17006018,23761370,5
+michellejnj,23761370,5
+49239429,23761370,5
+49190910,23761370,5
+46891725,23761370,4
+42827834,23761370,5
+50262864,23761370,5
+34990141,23761370,5
+Robin0227,23761370,4
+24274750,23761370,4
+33683472,23761370,3
+gillx,23761370,5
+89330155,23761370,5
+125231342,23761370,5
+69104253,23761370,5
+31573360,23761370,3
+54282219,23761370,3
+58158315,23761370,4
+98857291,23761370,5
+64805295,23761370,5
+22456411,23761370,4
+80399266,23761370,5
+calvadosshan,23761370,4
+sweetlalalove,23761370,3
+125230433,23761370,-1
+55976298,23761370,4
+63765493,23761370,3
+45169064,23761370,5
+53225925,23761370,5
+79419474,23761370,3
+ahxu,23761370,5
+teasung,23761370,4
+60369056,23761370,5
+1109195,23761370,5
+125171586,23761370,5
+debrah,23761370,5
+21042861,23761370,5
+llawlietlhy,23761370,5
+95910591,23761370,4
+102986629,23761370,4
+68669440,23761370,4
+52284219,23761370,4
+42490816,23761370,5
+47286656,23761370,4
+TKDE,23761370,4
+54244526,23761370,5
+62282689,23761370,3
+64680540,23761370,3
+dinfinity,23761370,4
+2890081,23761370,3
+4118218,23761370,-1
+habobking,23761370,5
+y_y316,23761370,4
+61029170,23761370,3
+mushroom16,23761370,2
+3936749,23761370,5
+dkjune,23761370,4
+92585307,23761370,4
+49405022,23761370,5
+125230820,23761370,5
+108247778,23761370,3
+52045267,23761370,5
+68111004,23761370,5
+82669508,23761370,5
+51743352,23761370,5
+More-ZZ,23761370,4
+50278650,23761370,4
+2567214,23761370,5
+86019559,23761370,4
+121441966,23761370,5
+45307960,23761370,3
+4571269,23761370,-1
+96730730,23761370,5
+43999135,23761370,5
+zhanglk0,23761370,5
+luominlala,23761370,4
+64213105,23761370,4
+125230568,23761370,4
+73831600,23761370,2
+dongjingting,23761370,5
+70881344,23761370,5
+wandertree,23761370,5
+3491773,23761370,4
+102938445,23761370,5
+47783311,23761370,5
+48424979,23761370,5
+Moqi,23761370,3
+124869246,23761370,5
+44727170,23761370,5
+vivi827,23761370,5
+43650052,23761370,5
+imvesper,23761370,5
+35518271,23761370,4
+65392736,23761370,4
+65486975,23761370,5
+Teamt,23761370,5
+lilylau,23761370,3
+122040688,23761370,5
+65044584,23761370,4
+69164754,23761370,4
+52801321,23761370,4
+foxinhongyan,23761370,5
+75108228,23761370,5
+scofieldx,23761370,4
+sunshineM,23761370,5
+enimo,23761370,5
+BadLoser,23761370,3
+125229314,23761370,5
+73367751,23761370,5
+44049794,23761370,5
+51651483,23761370,5
+nongnong424,23761370,5
+56070301,23761370,5
+kevinsheh,23761370,5
+122195109,23761370,4
+zxysyz,23761370,4
+zxysyz,23761370,4
+fantastical,23761370,5
+81923930,23761370,5
+YUKI1220,23761370,-1
+47787216,23761370,4
+ziv_tmac,23761370,5
+kathy91,23761370,4
+csaver,23761370,3
+67334357,23761370,5
+AIRs,23761370,-1
+98766274,23761370,5
+47343411,23761370,2
+hiphopking,23761370,5
+124780684,23761370,5
+2604555,23761370,5
+86584280,23761370,4
+57749924,23761370,4
+120199628,23761370,5
+42400951,23761370,5
+59590971,23761370,5
+53397982,23761370,5
+3353179,23761370,5
+40438184,23761370,5
+60788126,23761370,4
+monica-lcw,23761370,4
+3030951,23761370,5
+3516023,23761370,4
+leechikit,23761370,4
+80476846,23761370,5
+124493343,23761370,5
+uniqueaw,23761370,3
+45603420,23761370,5
+75763564,23761370,3
+dave_m,23761370,5
+yyingz,23761370,5
+jaredspecter,23761370,3
+3750652,23761370,4
+4856520,23761370,3
+freedom9611,23761370,5
+3324844,23761370,4
+47598013,23761370,3
+64692199,23761370,5
+lucifer7th,23761370,5
+axiu0122,23761370,-1
+68817200,23761370,5
+67693720,23761370,5
+darthvader,23761370,4
+ch123,23761370,4
+mmj12,23761370,5
+58049152,23761370,4
+62260131,23761370,4
+48375215,23761370,3
+10671511,23761370,3
+123146820,23761370,5
+ucrone,23761370,5
+together1018,23761370,5
+steamnoob,23761370,4
+86441968,23761370,4
+121702182,23761370,4
+125229716,23761370,5
+as_shmily,23761370,2
+46505445,23761370,4
+levitating,23761370,3
+LynS,23761370,3
+j85,23761370,5
+3083133,23761370,-1
+84655356,23761370,4
+41793800,23761370,4
+36282621,23761370,5
+52197957,23761370,5
+4793836,23761370,5
+cueb,23761370,5
+89951804,23761370,5
+feilong880928,23761370,5
+33564270,23761370,4
+lyilyf,23761370,3
+47881810,23761370,5
+73187224,23761370,4
+kakayanzi,23761370,5
+sibisibi,23761370,5
+51389077,23761370,4
+onlymoment,23761370,4
+64626755,23761370,4
+flowerfrommars,23761370,5
+84513623,23761370,4
+davishu,23761370,5
+Swing105,23761370,-1
+69236289,23761370,4
+75902309,23761370,4
+clarachan,23761370,4
+52190902,23761370,5
+scohj,23761370,4
+35414342,23761370,5
+63434636,23761370,5
+momomoyeah,23761370,4
+4310321,23761370,4
+olive_secret,23761370,5
+120417851,23761370,4
+125229363,23761370,5
+suobang11,23761370,5
+51491547,23761370,5
+65246493,23761370,3
+44087578,23761370,4
+53333586,23761370,5
+119416345,23761370,4
+46129647,23761370,5
+sushengkun,23761370,4
+90755706,23761370,5
+74483095,23761370,5
+64692515,23761370,5
+yanlifan,23761370,3
+GD_VIP,23761370,4
+108253828,23761370,5
+emma_mrty,23761370,5
+82454010,23761370,3
+95817419,23761370,5
+124946845,23761370,5
+57672353,23761370,1
+44150163,23761370,5
+meetlittlepanda,23761370,4
+51874201,23761370,5
+izemo-sunny,23761370,5
+beefeaters,23761370,4
+ccaarrrroott,23761370,4
+60263818,23761370,4
+showhey,23761370,4
+ZM_19,23761370,3
+Narcotic_,23761370,5
+47152561,23761370,4
+dikeylee,23761370,4
+Roxane,23761370,-1
+2654056,23761370,5
+zlaye,23761370,5
+50620373,23761370,5
+TuTun,23761370,5
+1160337,23761370,5
+123813137,23761370,5
+44492633,23761370,5
+poornicky,23761370,3
+41901519,23761370,5
+guojianzhi,23761370,4
+2231635,23761370,3
+3863337,23761370,5
+xushutao,23761370,5
+zhangxiaori,23761370,5
+84289597,23761370,4
+66204869,23761370,5
+122786004,23761370,5
+101240413,23761370,5
+39604999,23761370,4
+1278172,23761370,5
+42128136,23761370,4
+hongdouzhi,23761370,3
+71790709,23761370,5
+2917249,23761370,5
+37230449,23761370,4
+66224726,23761370,5
+kingharry517,23761370,5
+44708171,23761370,5
+94872079,23761370,5
+125215506,23761370,5
+56437151,23761370,5
+qulanchen,23761370,5
+iovepanda,23761370,4
+areskila,23761370,4
+104559183,23761370,5
+45608534,23761370,5
+miffychen0,23761370,5
+58846797,23761370,5
+2348564,23761370,3
+47122102,23761370,5
+mczane,23761370,5
+a1234567,23761370,3
+zero0913,23761370,4
+zqy931213,23761370,4
+paomoyueyue,23761370,5
+41554359,23761370,5
+endofmay,23761370,3
+Mignonette-W,23761370,4
+1619279,23761370,4
+sidneyalva,23761370,5
+61505695,23761370,4
+onedotdot,23761370,5
+rinnnnka,23761370,5
+98956475,23761370,5
+Asuka.,23761370,5
+57210088,23761370,2
+47372422,23761370,2
+princesssyn,23761370,5
+zapppp-charlie,23761370,4
+googollee,23761370,4
+queenlolo,23761370,5
+3722910,23761370,5
+4370686,23761370,4
+2813595,23761370,5
+55289792,23761370,5
+orange12345,23761370,5
+44602453,23761370,5
+69245450,23761370,5
+97350616,23761370,5
+haviya,23761370,3
+27068945,23761370,5
+97310924,23761370,5
+MissCaptain,23761370,5
+2673239,23761370,3
+october777,23761370,3
+Runjey,23761370,5
+52964714,23761370,5
+scuzz,23761370,5
+45324893,23761370,3
+119237142,23761370,4
+kaprobear,23761370,4
+53257561,23761370,4
+49408765,23761370,4
+34255087,23761370,2
+82838350,23761370,4
+1001195,23761370,5
+88383698,23761370,5
+43973698,23761370,4
+100953233,23761370,5
+59156667,23761370,4
+125228083,23761370,5
+47368327,23761370,5
+51862785,23761370,4
+thinkid,23761370,5
+43883337,23761370,3
+3212866,23761370,4
+se7en8736,23761370,4
+1616375,23761370,5
+125223802,23761370,5
+Mary-ed,23761370,4
+guiwuu,23761370,5
+layne37,23761370,5
+simplece,23761370,5
+61324818,23761370,5
+15914592,23761370,5
+10321693,23761370,5
+54144044,23761370,5
+56660730,23761370,-1
+121681378,23761370,5
+46234987,23761370,4
+58983373,23761370,2
+79075918,23761370,4
+65362150,23761370,5
+88449358,23761370,4
+Juju1990,23761370,1
+2794484,23761370,4
+smlietantan,23761370,5
+91311900,23761370,4
+47152521,23761370,5
+fu-yu,23761370,5
+spicymilk,23761370,3
+65623605,23761370,5
+mrmu,23761370,3
+65181987,23761370,5
+clamp5200,23761370,3
+82687720,23761370,4
+125227885,23761370,5
+76722357,23761370,5
+silent.mi,23761370,5
+DoctorHou,23761370,3
+49972822,23761370,-1
+42709375,23761370,4
+62455742,23761370,5
+94032478,23761370,4
+57424600,23761370,5
+Zoeeoz,23761370,3
+88335567,23761370,5
+94460148,23761370,4
+76499396,23761370,4
+56745020,23761370,5
+A_Sam,23761370,5
+45530358,23761370,5
+71036525,23761370,5
+4140870,23761370,4
+4423579,23761370,-1
+64092114,23761370,5
+45119859,23761370,5
+55849683,23761370,5
+103411830,23761370,4
+48997994,23761370,4
+Andy_Shan,23761370,5
+yangzhuo322,23761370,3
+2014095,23761370,4
+shiwuri,23761370,5
+56911400,23761370,4
+1499246,23761370,4
+68542833,23761370,3
+61164583,23761370,5
+hippokun,23761370,3
+50786456,23761370,5
+hwl19900304,23761370,5
+anana-shan,23761370,3
+63852259,23761370,4
+clearhappy7,23761370,4
+3941943,23761370,5
+i.m.yours,23761370,5
+sunjinrui,23761370,5
+3601002,23761370,5
+53908274,23761370,4
+lovexiaoyu0204,23761370,5
+2750884,23761370,5
+117239199,23761370,3
+52975364,23761370,4
+wulaoshan,23761370,3
+3039172,23761370,5
+xiekaiwait,23761370,4
+45818710,23761370,4
+leejiatu987,23761370,5
+oransay,23761370,5
+1529288,23761370,5
+cjtracey,23761370,4
+haluway,23761370,4
+tuanzilove,23761370,4
+91626041,23761370,5
+flyingkuku,23761370,4
+60854174,23761370,5
+hongdoushanuomi,23761370,4
+74797419,23761370,5
+51245924,23761370,5
+4790872,23761370,5
+49260594,23761370,5
+54782688,23761370,5
+57277473,23761370,5
+highlightxing,23761370,5
+DezZZZ,23761370,4
+onceme,23761370,5
+77334326,23761370,5
+34284550,23761370,5
+1895030,23761370,3
+83974267,23761370,4
+119159151,23761370,4
+superchen1015,23761370,5
+91319965,23761370,4
+sunkyeast,23761370,5
+shadow_y,23761370,5
+dchaochao,23761370,4
+wei.ran,23761370,-1
+64039605,23761370,4
+33399271,23761370,4
+50888167,23761370,4
+103675641,23761370,5
+107805569,23761370,5
+zombiebaby,23761370,5
+100043163,23761370,5
+60421761,23761370,5
+2701338,23761370,4
+77286594,23761370,5
+58023093,23761370,5
+60375167,23761370,5
+73836336,23761370,3
+minozyi,23761370,5
+AngryZorro,23761370,5
+51855205,23761370,4
+blew,23761370,3
+40071327,23761370,5
+43832747,23761370,3
+55874346,23761370,4
+41443101,23761370,5
+4323578,23761370,5
+doubanbaojun,23761370,5
+45797969,23761370,4
+54706735,23761370,5
+duoluowenren,23761370,3
+ak650,23761370,4
+shirline7,23761370,4
+4313535,23761370,4
+119489543,23761370,4
+kevin_wang,23761370,5
+122099416,23761370,5
+ruoren,23761370,4
+onlyYH,23761370,4
+58429338,23761370,2
+42786624,23761370,5
+yyq811,23761370,5
+cirart,23761370,3
+59577856,23761370,5
+68203246,23761370,4
+63304223,23761370,4
+68647916,23761370,5
+48048904,23761370,5
+60095742,23761370,5
+crlazy_,23761370,4
+49233803,23761370,5
+sodawon,23761370,4
+insensitive,23761370,5
+4093754,23761370,4
+60283154,23761370,5
+45587283,23761370,5
+xwx18,23761370,5
+39245426,23761370,5
+thethirteenth,23761370,5
+50365027,23761370,4
+49691346,23761370,5
+reven3018,23761370,5
+62489520,23761370,5
+benjaminwang,23761370,3
+kino611,23761370,4
+wapy5,23761370,5
+71816439,23761370,5
+71816439,23761370,5
+allenshao,23761370,4
+1554569,23761370,5
+48545446,23761370,4
+akakiwong,23761370,5
+daisy702,23761370,5
+61983960,23761370,-1
+ratyie,23761370,4
+79907287,23761370,5
+22238838,23761370,5
+117130584,23761370,4
+3433653,23761370,5
+89155855,23761370,3
+2840499,23761370,5
+midori_amoy,23761370,4
+henryxuzimo,23761370,5
+63708637,23761370,5
+105390195,23761370,5
+3548216,23761370,4
+103678234,23761370,5
+cherry_ocean,23761370,5
+39378921,23761370,5
+45362948,23761370,5
+1437985,23761370,4
+2255407,23761370,5
+63805846,23761370,5
+50732676,23761370,5
+3550837,23761370,4
+lucifer-kiki,23761370,5
+41010803,23761370,4
+4628349,23761370,5
+guyu0531,23761370,5
+susese466,23761370,3
+yuni192,23761370,5
+iloveqiong,23761370,-1
+virlee,23761370,5
+57383545,23761370,4
+princessmavis,23761370,4
+isabel_chen,23761370,4
+xy921,23761370,1
+echodtatu,23761370,5
+39720218,23761370,5
+dearkiki,23761370,5
+am-gemini,23761370,5
+68071230,23761370,5
+60046981,23761370,4
+pejaming,23761370,5
+4682042,23761370,5
+bubbbble,23761370,4
+3686271,23761370,5
+46149703,23761370,4
+60166330,23761370,4
+neko0926,23761370,4
+61900609,23761370,4
+48480160,23761370,5
+35697125,23761370,5
+flower_ryoo,23761370,5
+yan274424,23761370,5
+anliushuo,23761370,4
+57882904,23761370,4
+winya229,23761370,4
+goodjelly,23761370,4
+58258651,23761370,4
+brightnight,23761370,3
+53257612,23761370,4
+81131709,23761370,5
+70668927,23761370,4
+poly0330,23761370,5
+72985710,23761370,5
+124578863,23761370,4
+54387469,23761370,5
+2643462,23761370,5
+53792834,23761370,4
+53062456,23761370,4
+honeyforest,23761370,5
+64455785,23761370,4
+43107357,23761370,5
+57800772,23761370,3
+47020813,23761370,5
+120245591,23761370,4
+120245591,23761370,4
+58625918,23761370,4
+Lucifer4,23761370,3
+alfon42,23761370,4
+dear.sunny,23761370,5
+79334007,23761370,4
+p0pking,23761370,5
+4629619,23761370,-1
+rocksind,23761370,5
+haimian1077,23761370,5
+69015835,23761370,5
+ilu4u,23761370,5
+72864726,23761370,4
+bluegrid,23761370,5
+pineberry,23761370,3
+66322119,23761370,5
+1030614,23761370,5
+69854098,23761370,5
+1318771,23761370,5
+45141451,23761370,5
+45141451,23761370,5
+just_milky,23761370,4
+eva0320,23761370,4
+ellipsometer,23761370,5
+iamjessi,23761370,4
+35155184,23761370,4
+60358393,23761370,3
+yo911217,23761370,5
+47677919,23761370,4
+3253504,23761370,5
+43191706,23761370,5
+47129748,23761370,5
+55701734,23761370,5
+zhangduanduan,23761370,-1
+69127270,23761370,4
+bonjourlouise,23761370,-1
+gooo111,23761370,4
+cuisandy,23761370,5
+59421721,23761370,5
+tangguai95,23761370,5
+41576966,23761370,3
+jianbrother,23761370,5
+67332921,23761370,4
+4686814,23761370,4
+xrdcrab,23761370,3
+67910969,23761370,5
+2883655,23761370,5
+alice1123,23761370,4
+75828184,23761370,-1
+fion173,23761370,5
+fyl00,23761370,4
+yourblossom,23761370,4
+48846649,23761370,3
+121418007,23761370,4
+4272982,23761370,3
+44388338,23761370,3
+68326053,23761370,5
+Van07,23761370,4
+65260313,23761370,5
+54588486,23761370,2
+3467735,23761370,5
+3725907,23761370,5
+raymondray,23761370,5
+3045195,23761370,5
+up117,23761370,4
+wangxiaozhi,23761370,5
+56809398,23761370,3
+bingkuaizhuiluo,23761370,5
+48163421,23761370,5
+benniewong,23761370,4
+68078086,23761370,5
+109063951,23761370,5
+iwinux,23761370,4
+3403075,23761370,4
+maoguer,23761370,5
+4368925,23761370,4
+60839683,23761370,4
+leabc,23761370,5
+linlinghao,23761370,3
+66664303,23761370,-1
+NBES,23761370,-1
+80060249,23761370,5
+2187326,23761370,3
+52111153,23761370,5
+113596639,23761370,4
+46359852,23761370,5
+35996477,23761370,5
+dou4y,23761370,4
+blunder,23761370,4
+kerrylee621,23761370,5
+25129636,23761370,5
+50010572,23761370,5
+48207324,23761370,5
+piscescissy,23761370,5
+63281299,23761370,5
+42797250,23761370,3
+omgjingjing,23761370,4
+52255600,23761370,4
+songsunsong,23761370,5
+65590622,23761370,5
+warm_fan,23761370,3
+paopaotang1990,23761370,4
+jafey1,23761370,4
+44130742,23761370,5
+ciciywg,23761370,4
+46865175,23761370,5
+1991085,23761370,5
+90014790,23761370,5
+46505367,23761370,5
+64038033,23761370,5
+68879282,23761370,5
+simon_liu,23761370,5
+5467957,23761370,5
+jinyannn,23761370,4
+aQuabLus,23761370,4
+minquan,23761370,3
+iiiiiiiii,23761370,1
+spikery,23761370,4
+103817777,23761370,4
+1532705,23761370,3
+2945631,23761370,1
+56974061,23761370,3
+48541824,23761370,4
+64795129,23761370,5
+66066828,23761370,4
+62426044,23761370,5
+igreeny,23761370,5
+39890237,23761370,5
+69547016,23761370,5
+71630153,23761370,4
+lukai41douban,23761370,4
+3915286,23761370,4
+55373134,23761370,3
+120169874,23761370,5
+46794642,23761370,5
+53682959,23761370,3
+autohj,23761370,-1
+69900690,23761370,5
+Kvastika,23761370,4
+36040987,23761370,5
+122616416,23761370,4
+lemon1991syj,23761370,5
+huangbaoxia,23761370,3
+48047032,23761370,4
+tonyzhao,23761370,4
+evian_bebe,23761370,2
+andylau40,23761370,4
+mcdullsu,23761370,5
+66966914,23761370,5
+momo_722,23761370,5
+57281112,23761370,5
+53561733,23761370,5
+52741465,23761370,5
+Lf1387,23761370,5
+45211631,23761370,5
+57804928,23761370,5
+48501324,23761370,5
+41370734,23761370,5
+ch1ngz,23761370,5
+3291689,23761370,5
+sigra,23761370,5
+12489963,23761370,3
+dunleavy,23761370,5
+1440164,23761370,5
+41874215,23761370,5
+DeAThpaNdA,23761370,3
+Uff_lam,23761370,5
+3305775,23761370,1
+dan0108,23761370,5
+netant3000,23761370,3
+31555036,23761370,5
+39132503,23761370,5
+101793601,23761370,5
+115555640,23761370,5
+49075951,23761370,4
+freda_thx,23761370,5
+103274308,23761370,4
+klin_ar,23761370,4
+49530616,23761370,2
+39979081,23761370,5
+34826304,23761370,5
+116213668,23761370,4
+79561217,23761370,3
+57319762,23761370,3
+67866504,23761370,5
+U.YO,23761370,5
+Genjo,23761370,4
+36763698,23761370,5
+103488718,23761370,5
+67181847,23761370,-1
+39863904,23761370,5
+78539431,23761370,5
+34187825,23761370,5
+82460624,23761370,5
+sjk,23761370,5
+2713869,23761370,5
+jimodexueren,23761370,5
+85075595,23761370,4
+44125552,23761370,5
+Kevin3,23761370,4
+Kevin3,23761370,4
+castor30,23761370,5
+zhangtuo,23761370,4
+101555944,23761370,5
+83153649,23761370,4
+eijam,23761370,4
+63897196,23761370,5
+53466542,23761370,3
+72760996,23761370,5
+dovm,23761370,4
+86460916,23761370,5
+1801052,23761370,4
+arriey,23761370,5
+121885606,23761370,5
+54484399,23761370,5
+28522579,23761370,5
+jesmine114,23761370,4
+56968195,23761370,3
+ioricg,23761370,5
+Mr_movie,23761370,-1
+48672767,23761370,5
+30626996,23761370,5
+4172016,23761370,5
+99562712,23761370,5
+a5811548,23761370,5
+60038262,23761370,4
+stevefan,23761370,5
+4735214,23761370,5
+54352664,23761370,4
+xxxxiaoxiao,23761370,-1
+68449205,23761370,4
+62582526,23761370,4
+109330278,23761370,5
+30908327,23761370,4
+phoenix722,23761370,5
+82871013,23761370,5
+121562470,23761370,4
+momoko11510,23761370,4
+79256838,23761370,5
+dongbai,23761370,5
+78994143,23761370,4
+jonijiang,23761370,5
+63307477,23761370,5
+Fangodar,23761370,4
+48532169,23761370,5
+dawn1993,23761370,5
+2831834,23761370,5
+15146438,23761370,4
+kmiyc,23761370,4
+forlang,23761370,-1
+66950057,23761370,5
+3464738,23761370,4
+29374473,23761370,5
+gloria1102,23761370,4
+cranberry711,23761370,4
+imlyc,23761370,5
+3576004,23761370,4
+Lufey,23761370,5
+78617609,23761370,4
+echo0928,23761370,5
+43342048,23761370,4
+Qsays,23761370,4
+2249866,23761370,3
+66519246,23761370,4
+lingsishi,23761370,5
+67297999,23761370,3
+44460949,23761370,5
+2539543,23761370,4
+55322877,23761370,5
+53517811,23761370,4
+75485763,23761370,4
+tagore_tsai,23761370,5
+4284541,23761370,5
+amwihgu,23761370,5
+akin11,23761370,4
+2587763,23761370,5
+42137156,23761370,4
+58699045,23761370,5
+amille,23761370,4
+Iamui,23761370,5
+signal,23761370,5
+mackalex,23761370,3
+45318563,23761370,3
+39655690,23761370,4
+8752115,23761370,1
+102885531,23761370,5
+120789579,23761370,5
+87468773,23761370,5
+izane,23761370,5
+2591111,23761370,-1
+mattony,23761370,5
+1617824,23761370,4
+51875621,23761370,5
+45994637,23761370,4
+Sissi.Wu,23761370,5
+68715109,23761370,4
+4657541,23761370,5
+manjusaka.,23761370,5
+47734584,23761370,5
+104265215,23761370,5
+75391847,23761370,5
+caijin,23761370,5
+broempty,23761370,3
+44465418,23761370,5
+soron90,23761370,5
+51223777,23761370,4
+4114315,23761370,5
+bablis,23761370,5
+zlyxxm,23761370,3
+4170552,23761370,5
+37436539,23761370,5
+64026152,23761370,4
+84430794,23761370,4
+sherrychris,23761370,4
+freenest,23761370,4
+devywing,23761370,5
+sunshineface,23761370,5
+shishiamz,23761370,3
+61130867,23761370,3
+zhangxuncc,23761370,5
+1609757,23761370,4
+4682542,23761370,5
+64287168,23761370,4
+letaliu,23761370,5
+Beca,23761370,5
+ILOVEMOVIES,23761370,4
+52709908,23761370,4
+forme,23761370,4
+1796833,23761370,5
+zenlee,23761370,3
+57775883,23761370,5
+shujiesun,23761370,4
+candicechang,23761370,4
+4613815,23761370,5
+54475572,23761370,5
+59384236,23761370,5
+69998360,23761370,4
+44364803,23761370,5
+shikelu,23761370,5
+sj91123,23761370,4
+45219094,23761370,3
+38549519,23761370,5
+yyuan9372,23761370,4
+76119649,23761370,-1
+himedai,23761370,5
+rachelife930,23761370,4
+shengxiacanlan,23761370,4
+21606016,23761370,4
+119829181,23761370,5
+39318469,23761370,5
+63170740,23761370,5
+3969854,23761370,5
+lxp1234,23761370,5
+berryue,23761370,5
+moyki,23761370,5
+4051797,23761370,4
+xuyuny252,23761370,4
+3638194,23761370,5
+moneyfan,23761370,5
+4297674,23761370,3
+70202233,23761370,4
+yingtaozi07,23761370,4
+echowangxw,23761370,5
+fotoz,23761370,-1
+rinkacheng,23761370,4
+AMY-SHUFEN,23761370,5
+empressgg,23761370,4
+58980651,23761370,5
+luoyao1223,23761370,5
+mianhuashengfan,23761370,5
+63606511,23761370,5
+4170268,23761370,5
+72181533,23761370,3
+star_bury,23761370,5
+51445389,23761370,4
+liu_uil,23761370,3
+47139815,23761370,4
+52259505,23761370,5
+zhouruopei,23761370,4
+79535503,23761370,5
+daixiaobao,23761370,4
+Leslie_ontheway,23761370,5
+madwithu,23761370,3
+killrec,23761370,5
+63766185,23761370,5
+76994083,23761370,-1
+45478417,23761370,5
+40979934,23761370,5
+q164511490,23761370,5
+2340389,23761370,4
+60168902,23761370,5
+41985340,23761370,-1
+69301715,23761370,5
+skynery,23761370,5
+2720430,23761370,4
+cdorange,23761370,3
+92952701,23761370,5
+55656322,23761370,3
+adoknow,23761370,4
+57048842,23761370,5
+57048842,23761370,5
+angellailai,23761370,5
+48581424,23761370,5
+75987286,23761370,5
+1371719,23761370,4
+53352676,23761370,5
+DateWithAngel,23761370,4
+1932670,23761370,5
+74207075,23761370,5
+50814286,23761370,5
+50662959,23761370,3
+hanqiu1995,23761370,4
+fishersong,23761370,5
+45616193,23761370,5
+l00000000,23761370,3
+chongtong,23761370,5
+igrene,23761370,5
+tintin_yu,23761370,4
+yaltafang,23761370,5
+EffyQ,23761370,5
+46207489,23761370,4
+74606159,23761370,5
+68241479,23761370,5
+91788777,23761370,4
+zhangyired,23761370,4
+maigc,23761370,5
+ninababy25,23761370,5
+Raining421,23761370,5
+R.Lou,23761370,5
+maggie594522,23761370,4
+34438242,23761370,4
+72549209,23761370,5
+77735645,23761370,5
+81475444,23761370,5
+120270612,23761370,4
+morekai,23761370,5
+53644713,23761370,5
+lemonher,23761370,4
+tojohnonly,23761370,5
+66332693,23761370,5
+58926732,23761370,3
+Wilde1005,23761370,5
+clhan,23761370,4
+81660446,23761370,5
+myhot,23761370,4
+91251565,23761370,5
+3351650,23761370,5
+1178759,23761370,4
+79157709,23761370,4
+57632493,23761370,4
+levido,23761370,4
+52568986,23761370,5
+30591753,23761370,5
+27867593,23761370,5
+2275634,23761370,3
+78321087,23761370,5
+66610462,23761370,5
+15260965,23761370,5
+121017690,23761370,5
+kasogg,23761370,5
+SecondRound1997,23761370,5
+28212620,23761370,4
+37001447,23761370,5
+50659341,23761370,4
+26721122,23761370,3
+2044436,23761370,3
+candy100zxy,23761370,3
+xiaqian0323,23761370,5
+67305392,23761370,4
+3246025,23761370,5
+echof,23761370,4
+63642324,23761370,5
+bombman,23761370,5
+58623242,23761370,5
+71869905,23761370,5
+Kevser,23761370,-1
+36719582,23761370,5
+34909666,23761370,4
+jianguo73,23761370,5
+sarahxx,23761370,5
+42718436,23761370,5
+devilips,23761370,4
+cloverMu,23761370,5
+nosight,23761370,3
+48755775,23761370,4
+jasonisajoker,23761370,4
+2935013,23761370,5
+39045216,23761370,5
+61865806,23761370,5
+3924135,23761370,5
+83882766,23761370,4
+62737718,23761370,5
+lvxiang,23761370,4
+shingle,23761370,4
+76602042,23761370,5
+71298339,23761370,5
+flypiggys,23761370,5
+62658973,23761370,5
+57620266,23761370,4
+54117151,23761370,5
+3004066,23761370,4
+adrian.chai.au,23761370,4
+40966373,23761370,5
+83040147,23761370,4
+49011755,23761370,5
+53006710,23761370,4
+fylyunfei,23761370,5
+76461360,23761370,5
+64047033,23761370,3
+63050276,23761370,3
+66586650,23761370,4
+1686305,23761370,2
+songchunxue,23761370,5
+98838344,23761370,5
+please1x,23761370,4
+45959791,23761370,3
+yinchouyunv,23761370,3
+4011439,23761370,5
+1875013,23761370,4
+49926539,23761370,5
+71877767,23761370,4
+33862051,23761370,5
+reave,23761370,4
+71833015,23761370,5
+16301105,23761370,5
+maggie1268,23761370,5
+getbuzylinving,23761370,5
+31513632,23761370,5
+48596684,23761370,5
+tinyliu1113,23761370,4
+77456258,23761370,5
+musiknonstop,23761370,5
+49005223,23761370,5
+53875254,23761370,5
+2487129,23761370,5
+heiziyefengkuan,23761370,5
+hangli2,23761370,5
+34365468,23761370,5
+2985135,23761370,5
+2942790,23761370,-1
+102930645,23761370,5
+71679335,23761370,3
+80049748,23761370,3
+yu830,23761370,5
+hualian,23761370,5
+Sirenfairy,23761370,3
+27308826,23761370,4
+59544460,23761370,4
+60484236,23761370,3
+62101965,23761370,5
+carmengmm,23761370,5
+sprite916,23761370,4
+31600047,23761370,4
+tangjiaqi,23761370,4
+feqinfan,23761370,-1
+123299580,23761370,4
+36108304,23761370,5
+57688571,23761370,4
+47215662,23761370,5
+36757912,23761370,5
+WN-ninja,23761370,3
+sucowper,23761370,5
+1992074,23761370,5
+huanghuang0227,23761370,3
+69122932,23761370,5
+77316354,23761370,4
+62256460,23761370,5
+3956290,23761370,5
+56037799,23761370,5
+americanidiot,23761370,5
+zero520,23761370,3
+yahgyl,23761370,4
+53745932,23761370,4
+43211032,23761370,5
+106128018,23761370,5
+69094998,23761370,4
+61203030,23761370,5
+45838830,23761370,5
+fkimi,23761370,5
+46373671,23761370,5
+4314733,23761370,4
+qixin77,23761370,5
+dearjan,23761370,5
+67473137,23761370,5
+54265487,23761370,4
+beto,23761370,4
+51401098,23761370,3
+64223729,23761370,4
+loveuevol,23761370,4
+29179639,23761370,5
+holy-fishman,23761370,4
+shai1210,23761370,5
+122720481,23761370,3
+sunxjlovepeace,23761370,5
+61540845,23761370,5
+qingchushuang,23761370,3
+zxman386,23761370,5
+36554075,23761370,5
+fegncs,23761370,4
+45223979,23761370,5
+99606591,23761370,5
+49756568,23761370,2
+91609218,23761370,5
+54251461,23761370,4
+76819505,23761370,5
+yeox,23761370,5
+mola,23761370,3
+60258701,23761370,5
+tmz1127,23761370,4
+yanyantangtang,23761370,3
+miafish,23761370,5
+48929842,23761370,5
+zhaoyian8888,23761370,5
+two_dogz,23761370,5
+Ian-COD,23761370,4
+monkeywen,23761370,5
+21951726,23761370,5
+yuxflan,23761370,5
+ahuaaa,23761370,5
+claireloveyou,23761370,5
+lovefay,23761370,5
+34623045,23761370,3
+53343168,23761370,5
+FFFine,23761370,5
+after1010,23761370,5
+47687839,23761370,5
+54147186,23761370,5
+sylvi,23761370,4
+49391762,23761370,3
+71627900,23761370,4
+siersiershiwo,23761370,5
+68872792,23761370,5
+68936887,23761370,5
+misamore,23761370,5
+1864146,23761370,5
+54309491,23761370,5
+Vanessa.,23761370,3
+miucather,23761370,5
+feelzyl,23761370,5
+consigli,23761370,5
+52049296,23761370,5
+70804320,23761370,4
+2387348,23761370,4
+dodocancer,23761370,4
+3520804,23761370,3
+adidas_Original,23761370,5
+46190149,23761370,5
+51099421,23761370,5
+51600146,23761370,4
+lzeer,23761370,4
+xiaomai82,23761370,5
+Lethe_Deer,23761370,5
+57586237,23761370,5
+49164545,23761370,4
+72409866,23761370,5
+51640558,23761370,4
+115686371,23761370,4
+mayee1121,23761370,5
+57859852,23761370,4
+chihee,23761370,4
+46514355,23761370,5
+51880758,23761370,5
+mingming1124530,23761370,4
+nan1208,23761370,3
+sen63,23761370,5
+74707621,23761370,5
+whosoever,23761370,4
+imr3,23761370,4
+3749468,23761370,5
+farawayboat,23761370,4
+3729649,23761370,5
+71455965,23761370,4
+3852753,23761370,4
+43665498,23761370,4
+79990790,23761370,5
+niguize,23761370,3
+zoedark,23761370,4
+63575682,23761370,5
+BaiDamao,23761370,4
+58707225,23761370,5
+72524460,23761370,3
+49251109,23761370,3
+zhangzhangzhang,23761370,5
+115706838,23761370,4
+48823348,23761370,5
+69852570,23761370,5
+102602713,23761370,5
+37077356,23761370,3
+ceqt_pulpfictio,23761370,4
+40835496,23761370,5
+Catherinecathy,23761370,4
+sjzbr,23761370,5
+66783329,23761370,5
+44561738,23761370,4
+xiaochongshan,23761370,3
+31926586,23761370,5
+49294962,23761370,5
+30762446,23761370,5
+57344317,23761370,5
+daydayfree,23761370,5
+107556145,23761370,3
+Olesama,23761370,4
+65576748,23761370,5
+forevereva,23761370,4
+3679808,23761370,4
+aime30,23761370,5
+58550778,23761370,4
+z_zkagami,23761370,5
+57713987,23761370,5
+chocopig,23761370,5
+tyl31,23761370,-1
+1711587,23761370,4
+61883535,23761370,5
+4404541,23761370,5
+librapapaya,23761370,4
+xiaoyuan_0310,23761370,4
+sarahbeibei,23761370,5
+48242893,23761370,4
+87909103,23761370,4
+iamchece,23761370,5
+54365251,23761370,5
+arthurwen,23761370,4
+87930236,23761370,5
+57711275,23761370,4
+70253613,23761370,5
+64303441,23761370,5
+67770010,23761370,5
+godric,23761370,4
+39506344,23761370,4
+lilies.tou,23761370,5
+53716519,23761370,5
+65162469,23761370,5
+jasonking0920,23761370,4
+76758378,23761370,-1
+shuoying,23761370,5
+47924320,23761370,5
+59802133,23761370,5
+G--er,23761370,3
+85727973,23761370,5
+41765196,23761370,5
+ahokin,23761370,4
+83773769,23761370,5
+51945032,23761370,5
+dzy-douban,23761370,4
+82566965,23761370,4
+Now2012,23761370,4
+67987921,23761370,5
+55817697,23761370,3
+81033865,23761370,4
+63548987,23761370,4
+qiven,23761370,2
+39628944,23761370,-1
+Abby_ZLJ,23761370,5
+71362286,23761370,5
+103074549,23761370,5
+2432955,23761370,1
+sordk,23761370,5
+4075769,23761370,5
+30219531,23761370,5
+62934408,23761370,5
+wangyi2011,23761370,5
+sunxuhang,23761370,2
+babybei,23761370,5
+28317833,23761370,5
+122532383,23761370,4
+pengpengyue,23761370,5
+kkguagangqin,23761370,-1
+56955441,23761370,1
+5772280,23761370,5
+zhangtiexun,23761370,5
+58598004,23761370,3
+piggasol,23761370,4
+57989535,23761370,5
+52478596,23761370,5
+45623979,23761370,4
+119084031,23761370,5
+ice_pudding,23761370,4
+71654816,23761370,5
+ladymashroom,23761370,4
+48876970,23761370,4
+50679313,23761370,4
+46492005,23761370,4
+vivijs3,23761370,4
+wdmzjls,23761370,4
+chinesean,23761370,4
+alicebbb,23761370,5
+atombb,23761370,5
+36125277,23761370,4
+65057372,23761370,4
+pengpeng,23761370,3
+61782892,23761370,2
+3055954,23761370,4
+cuidanxiaoxiao,23761370,5
+63728947,23761370,5
+anliye,23761370,5
+87885475,23761370,4
+kingsunny,23761370,5
+VampirX,23761370,5
+64009647,23761370,4
+leftpomelo,23761370,5
+52694995,23761370,5
+butina,23761370,5
+cgbing,23761370,5
+66352565,23761370,5
+89700756,23761370,5
+31192217,23761370,5
+54200818,23761370,5
+kroraina,23761370,3
+woxingmi,23761370,3
+CackleHan,23761370,5
+fidotoy,23761370,4
+97387099,23761370,5
+cutebbluckygirl,23761370,3
+ghoody,23761370,5
+hyukcat,23761370,5
+79736160,23761370,5
+68668092,23761370,4
+Joycejingtong,23761370,5
+66989813,23761370,5
+Helianthus_annu,23761370,4
+1236656,23761370,4
+67806825,23761370,5
+ode001,23761370,2
+40340822,23761370,5
+63105919,23761370,4
+54507660,23761370,4
+eternityc,23761370,4
+56491296,23761370,5
+49258293,23761370,4
+VendettaChild,23761370,-1
+3606261,23761370,4
+43409515,23761370,5
+xuylu,23761370,3
+88731043,23761370,4
+37309065,23761370,4
+58833110,23761370,4
+nemoooooo,23761370,5
+xingwuguo,23761370,4
+3935498,23761370,4
+65922740,23761370,5
+65922740,23761370,5
+46536036,23761370,5
+sweetsss,23761370,5
+71098341,23761370,5
+70327248,23761370,3
+zhyibin,23761370,4
+57195945,23761370,4
+tjz230,23761370,4
+cris7ss,23761370,5
+64546652,23761370,5
+54937218,23761370,5
+GianfrancoLee,23761370,4
+zydaydream,23761370,5
+hades1029,23761370,3
+43692949,23761370,5
+49086981,23761370,5
+joanna_L,23761370,5
+50231783,23761370,-1
+101795214,23761370,3
+feifeistone,23761370,5
+46834053,23761370,-1
+wanwan______,23761370,4
+38090828,23761370,5
+65886851,23761370,5
+93179604,23761370,3
+zianzhao,23761370,5
+51481503,23761370,5
+76933633,23761370,5
+86463308,23761370,4
+74775337,23761370,5
+cicisj,23761370,4
+63756961,23761370,4
+Demon90,23761370,5
+maundytime,23761370,2
+41764429,23761370,3
+87928490,23761370,5
+zxl,23761370,5
+Sataaaaaan,23761370,5
+63405492,23761370,5
+3623903,23761370,4
+behindtheveil,23761370,2
+memo_lois,23761370,4
+49826646,23761370,5
+2737013,23761370,4
+71593445,23761370,4
+64610386,23761370,5
+ShellDing,23761370,5
+49756686,23761370,5
+67779609,23761370,5
+57824542,23761370,5
+crazies,23761370,5
+72945107,23761370,4
+39684033,23761370,3
+69406658,23761370,5
+c_angelica,23761370,4
+102939359,23761370,5
+geniuswan,23761370,4
+67679868,23761370,4
+dearajiu,23761370,5
+52390911,23761370,3
+84675514,23761370,5
+2156872,23761370,5
+1683351,23761370,5
+4287946,23761370,2
+52506105,23761370,4
+65385097,23761370,5
+thiefboy,23761370,4
+Ciarlo,23761370,4
+2363758,23761370,4
+db_time,23761370,4
+66437335,23761370,4
+windwing,23761370,2
+wang1994,23761370,5
+78642284,23761370,5
+51692061,23761370,5
+48325307,23761370,3
+TulipDuke,23761370,4
+kinged14,23761370,3
+84340226,23761370,3
+57213056,23761370,5
+mooncakes,23761370,5
+silenceeeee,23761370,4
+3894303,23761370,5
+121724170,23761370,5
+58027563,23761370,3
+adiawang,23761370,5
+i_Soda,23761370,5
+65764407,23761370,5
+RainingDemo,23761370,5
+NNNNNian-,23761370,5
+53039976,23761370,-1
+how-precious,23761370,-1
+4054174,23761370,-1
+Vo.,23761370,4
+httchyj,23761370,4
+kukupercent,23761370,5
+3843671,23761370,4
+6982563,23761370,5
+66958106,23761370,5
+38289674,23761370,4
+66013972,23761370,5
+75869572,23761370,5
+SH51244,23761370,4
+yjyskoala,23761370,5
+56694923,23761370,-1
+43285698,23761370,4
+119343743,23761370,5
+zhaoqitian,23761370,4
+106437389,23761370,5
+liulangdemaozi,23761370,3
+yehuajie,23761370,4
+63086434,23761370,4
+77557534,23761370,3
+isnowsword,23761370,3
+56243256,23761370,5
+3828189,23761370,2
+Y_Sss,23761370,5
+rex2xt,23761370,4
+3328022,23761370,3
+66827780,23761370,4
+kamato,23761370,5
+UncleJOEs,23761370,5
+lolitazly,23761370,4
+52183902,23761370,5
+gachapin1103,23761370,4
+57696717,23761370,5
+3282401,23761370,3
+32962084,23761370,4
+3651501,23761370,4
+54543639,23761370,5
+DomEw,23761370,3
+92592691,23761370,4
+70238352,23761370,3
+diwosy,23761370,5
+imhjl412,23761370,5
+43302206,23761370,3
+72705326,23761370,4
+yanqinforziyu,23761370,4
+60082328,23761370,5
+59967068,23761370,5
+42886827,23761370,2
+shinechun,23761370,5
+47992232,23761370,5
+a_zi,23761370,4
+48743013,23761370,5
+62230987,23761370,4
+43917270,23761370,3
+51610718,23761370,5
+48852309,23761370,5
+34370407,23761370,5
+62007778,23761370,5
+Xia0_K,23761370,4
+2836954,23761370,-1
+60248583,23761370,5
+51448618,23761370,5
+bleach_liuyu,23761370,5
+107493544,23761370,5
+66818748,23761370,5
+53728385,23761370,5
+59103272,23761370,5
+superpanv,23761370,5
+70248212,23761370,5
+nbyuan,23761370,4
+xiaoqi526,23761370,4
+BarryLyndon,23761370,4
+3559068,23761370,5
+64041275,23761370,5
+ytlive,23761370,4
+joseph1213,23761370,3
+asglass,23761370,3
+59027231,23761370,5
+WANG_RS,23761370,3
+huster-lion,23761370,5
+77394245,23761370,3
+57563925,23761370,5
+tomatoecho,23761370,4
+45553945,23761370,5
+60130169,23761370,4
+91975504,23761370,4
+luoochaoo,23761370,-1
+91975504,23761370,4
+luoochaoo,23761370,-1
+haber,23761370,5
+67942569,23761370,5
+66979855,23761370,3
+57815489,23761370,3
+83187671,23761370,5
+heijintong,23761370,4
+LinXion,23761370,5
+69602937,23761370,5
+2607145,23761370,4
+121228834,23761370,5
+35715082,23761370,5
+34155818,23761370,5
+pydiyudie,23761370,5
+4362367,23761370,5
+72991242,23761370,4
+whateverwbwb,23761370,4
+72911180,23761370,5
+47605458,23761370,5
+100577628,23761370,4
+54868324,23761370,5
+xiaojing_,23761370,4
+2489180,23761370,5
+47779144,23761370,5
+59228754,23761370,5
+65025544,23761370,5
+ashleystella,23761370,5
+59573093,23761370,4
+57665696,23761370,3
+Bupt_Doc,23761370,4
+59225121,23761370,5
+ekamiao,23761370,3
+90769441,23761370,2
+scorpion.miumiu,23761370,5
+62497907,23761370,4
+72817242,23761370,3
+59530679,23761370,4
+57998442,23761370,3
+64500822,23761370,3
+60073105,23761370,5
+youngmu,23761370,4
+55584411,23761370,5
+4700693,23761370,5
+119414892,23761370,5
+4713512,23761370,4
+3289683,23761370,3
+47458734,23761370,4
+71758766,23761370,5
+54989820,23761370,4
+44418907,23761370,5
+l.don,23761370,3
+47227699,23761370,5
+soulmissing,23761370,4
+38850585,23761370,4
+4466010,23761370,4
+hui_112233,23761370,4
+marvelwei,23761370,4
+51049181,23761370,5
+dd_sy918,23761370,4
+50558551,23761370,4
+82309830,23761370,4
+62090217,23761370,5
+MonteVita,23761370,5
+62601567,23761370,5
+52211429,23761370,4
+97757646,23761370,5
+1885523,23761370,4
+cutenami,23761370,5
+ipzone,23761370,5
+53420942,23761370,4
+ccior,23761370,5
+stacieee,23761370,5
+83183535,23761370,5
+vickipeach,23761370,5
+5409779,23761370,5
+51338478,23761370,4
+22842390,23761370,4
+May_T,23761370,4
+122594677,23761370,3
+jadexyy,23761370,4
+3966971,23761370,5
+upyougo,23761370,5
+62401840,23761370,5
+115807401,23761370,5
+59311720,23761370,4
+maggiexiao,23761370,5
+85081559,23761370,3
+spoondrift,23761370,5
+63371877,23761370,3
+57775394,23761370,5
+40664401,23761370,5
+34665026,23761370,4
+56392220,23761370,4
+isellechane,23761370,3
+ShaneMcCutcheon,23761370,5
+3873637,23761370,5
+EtionT,23761370,4
+80453139,23761370,5
+SilverZhan,23761370,5
+4586397,23761370,3
+14014568,23761370,4
+tumin,23761370,4
+115920220,23761370,5
+six211,23761370,4
+L0711,23761370,5
+67131918,23761370,4
+Marcia0714,23761370,5
+2214394,23761370,5
+48227582,23761370,4
+zit0131,23761370,4
+49151798,23761370,5
+47195572,23761370,5
+Acheng05,23761370,5
+myzengchen,23761370,5
+LarryCC,23761370,4
+jiajia1130,23761370,4
+55789789,23761370,3
+tachikoma.gaga,23761370,5
+15183757,23761370,4
+malu,23761370,3
+liayuan,23761370,4
+43448609,23761370,5
+AdamWu,23761370,4
+tt0090,23761370,4
+86140576,23761370,5
+2338741,23761370,5
+79938004,23761370,5
+65145861,23761370,5
+nonspicy,23761370,5
+86728823,23761370,4
+3522611,23761370,5
+huangguohuai,23761370,5
+49057685,23761370,3
+67039563,23761370,5
+67388709,23761370,5
+37411559,23761370,4
+ballteda,23761370,5
+42583356,23761370,5
+65173505,23761370,4
+1270557,23761370,5
+29069011,23761370,5
+strawman81,23761370,5
+45942645,23761370,5
+68812580,23761370,5
+59992887,23761370,5
+2595427,23761370,5
+aijiaojiao,23761370,-1
+33977432,23761370,5
+mollyjc,23761370,5
+whr714,23761370,5
+41209497,23761370,5
+82722362,23761370,4
+58859893,23761370,5
+14433242,23761370,4
+69458430,23761370,5
+75617472,23761370,5
+4474883,23761370,4
+luoxugeng12581,23761370,4
+52899671,23761370,4
+40822709,23761370,5
+77201294,23761370,5
+honestydudu,23761370,3
+43617068,23761370,4
+72101661,23761370,5
+2340314,23761370,5
+woniu0125,23761370,4
+82615337,23761370,5
+3542501,23761370,5
+43017535,23761370,4
+50807913,23761370,5
+48459200,23761370,5
+brofox,23761370,3
+45648190,23761370,5
+tls,23761370,4
+sunny11fish,23761370,4
+3661713,23761370,3
+56259387,23761370,5
+49158269,23761370,5
+lancezou,23761370,4
+63976517,23761370,4
+Ada_quan,23761370,-1
+antebellum,23761370,5
+to_be_yourS,23761370,5
+59408490,23761370,3
+miaogusensai,23761370,4
+poochai,23761370,4
+58568506,23761370,5
+52889528,23761370,4
+111229686,23761370,1
+53798871,23761370,2
+88537945,23761370,5
+nianxnian,23761370,5
+shelen7,23761370,3
+83357048,23761370,4
+kongben,23761370,4
+klose_y,23761370,4
+futureheihei,23761370,5
+51132496,23761370,5
+a529105502,23761370,5
+yeniya519,23761370,-1
+5843640,23761370,5
+49864044,23761370,5
+34348516,23761370,5
+sunus,23761370,4
+63348856,23761370,5
+49708011,23761370,5
+lucifercpy,23761370,4
+54811615,23761370,4
+65574259,23761370,3
+76749304,23761370,5
+liuhuan88,23761370,4
+59129938,23761370,4
+33381351,23761370,5
+40017309,23761370,5
+loserisit,23761370,5
+duwin,23761370,5
+44187248,23761370,4
+shelstar,23761370,4
+efgefg,23761370,4
+jasmine.licong,23761370,4
+katieming818,23761370,5
+r43y,23761370,5
+joenoy,23761370,5
+51852319,23761370,3
+jenesaispas,23761370,4
+58144691,23761370,4
+Vicky_Jiang,23761370,4
+ang0326,23761370,4
+MaybeIamAFreak,23761370,4
+xiki.m,23761370,4
+wenjiaqi,23761370,5
+zsy19910228,23761370,5
+2233142,23761370,4
+108077404,23761370,4
+52272881,23761370,5
+39299123,23761370,2
+63643182,23761370,5
+4393121,23761370,5
+67674079,23761370,5
+27223833,23761370,4
+57025348,23761370,3
+66532138,23761370,4
+YMQ89727,23761370,5
+75927554,23761370,4
+ky1on,23761370,5
+62453081,23761370,-1
+4073845,23761370,5
+hazelhan,23761370,5
+51075579,23761370,5
+48235985,23761370,5
+115841516,23761370,5
+51495138,23761370,2
+nicole900116,23761370,5
+24125064,23761370,5
+54450707,23761370,4
+ZDavid001,23761370,5
+bookpotato,23761370,4
+yfbs,23761370,5
+42781171,23761370,3
+81530706,23761370,4
+79194135,23761370,5
+lovehour,23761370,5
+49693617,23761370,5
+missgodzilla,23761370,4
+33372140,23761370,4
+15762102,23761370,3
+61394930,23761370,4
+78143772,23761370,5
+Min-sunflower,23761370,4
+70119935,23761370,5
+62263569,23761370,5
+maguojin,23761370,3
+61127973,23761370,4
+vivvvvvchan,23761370,5
+elmerlt,23761370,5
+49585596,23761370,5
+12200477,23761370,5
+xiaoyasecond,23761370,5
+varshaJ,23761370,4
+4398085,23761370,5
+3377295,23761370,5
+69126111,23761370,3
+homecaty,23761370,5
+35668073,23761370,5
+xsmm995,23761370,4
+48633478,23761370,4
+dahuanhuan,23761370,4
+83899962,23761370,4
+18318076,23761370,5
+blueillusion,23761370,5
+meidusa-pan,23761370,5
+50137334,23761370,5
+2578584,23761370,5
+57437352,23761370,5
+turtleeb,23761370,5
+40823380,23761370,4
+52797672,23761370,5
+34725478,23761370,5
+14528749,23761370,1
+4272147,23761370,5
+67699413,23761370,5
+48540705,23761370,5
+52962377,23761370,5
+74005844,23761370,4
+48901454,23761370,5
+56873909,23761370,5
+magieq,23761370,4
+40760358,23761370,5
+34032339,23761370,5
+aurora77,23761370,5
+66340656,23761370,5
+TRULYSHELTON,23761370,4
+121480587,23761370,5
+54082963,23761370,5
+45660957,23761370,5
+121993907,23761370,5
+75658713,23761370,5
+akilaa,23761370,3
+GZ,23761370,4
+67771007,23761370,5
+50036509,23761370,2
+45079617,23761370,3
+3883617,23761370,5
+kammury,23761370,4
+arenagreen,23761370,5
+sarome,23761370,5
+43601720,23761370,3
+66017098,23761370,5
+juech171,23761370,4
+121479444,23761370,5
+nicolas7,23761370,5
+3958994,23761370,5
+79420252,23761370,5
+61357618,23761370,3
+53162708,23761370,5
+puutao,23761370,-1
+46564815,23761370,4
+2660582,23761370,5
+qingfengmubai,23761370,5
+54579149,23761370,3
+zhouyuan0124,23761370,5
+ruokongzhi,23761370,4
+shiminxu,23761370,5
+4026275,23761370,4
+34882300,23761370,4
+64493600,23761370,5
+44085500,23761370,5
+114567900,23761370,5
+pianzhikuangyy,23761370,3
+55541078,23761370,4
+53982181,23761370,4
+46482640,23761370,5
+seekyo,23761370,5
+85408427,23761370,4
+amao1412,23761370,5
+taxi,23761370,4
+63642213,23761370,5
+amandaccforever,23761370,4
+23428594,23761370,2
+brutwater,23761370,3
+vvglico,23761370,5
+77110674,23761370,5
+40883731,23761370,4
+66851184,23761370,5
+sanrin,23761370,3
+60490305,23761370,4
+81003605,23761370,5
+50363542,23761370,5
+71859163,23761370,4
+manbujx,23761370,5
+Eom-Young,23761370,5
+seaea5t,23761370,5
+gift2,23761370,-1
+Xiaojieli,23761370,5
+50748825,23761370,5
+83123138,23761370,4
+39520405,23761370,4
+3541537,23761370,5
+iyue,23761370,3
+Aterego,23761370,5
+34243551,23761370,2
+summer-oblivion,23761370,1
+62403296,23761370,4
+62811019,23761370,5
+Gotrifajrohoo,23761370,3
+63754268,23761370,4
+44976171,23761370,4
+104092639,23761370,5
+10045748,23761370,5
+44329904,23761370,5
+80759115,23761370,5
+yeppy,23761370,5
+xia_xiao,23761370,4
+46103242,23761370,5
+befreelancer,23761370,5
+73207612,23761370,5
+47220088,23761370,4
+43372151,23761370,4
+lingerer,23761370,3
+125208149,23761370,4
+zhanghr,23761370,5
+55516483,23761370,5
+18072949,23761370,5
+76932825,23761370,5
+121118830,23761370,4
+38756287,23761370,5
+47514715,23761370,5
+37844167,23761370,5
+58967145,23761370,5
+85361556,23761370,2
+23595062,23761370,4
+45850647,23761370,5
+59510268,23761370,5
+81666344,23761370,5
+employee,23761370,3
+sodaBai,23761370,4
+3234538,23761370,4
+62369741,23761370,4
+44106543,23761370,4
+CQQQ,23761370,5
+mrcat16,23761370,5
+116471524,23761370,4
+beckham7,23761370,4
+xiaohazz,23761370,5
+64415039,23761370,5
+98710059,23761370,5
+naivedick,23761370,4
+2595929,23761370,4
+49160897,23761370,3
+celua,23761370,5
+88144613,23761370,2
+96229888,23761370,4
+115366212,23761370,3
+orangelive,23761370,5
+120929768,23761370,4
+deepwaves,23761370,-1
+65450414,23761370,4
+44055485,23761370,5
+64396292,23761370,5
+miaohan,23761370,5
+64291202,23761370,5
+57932629,23761370,3
+kymair,23761370,4
+28693684,23761370,5
+40447897,23761370,3
+luoyingling,23761370,5
+125111991,23761370,5
+98583266,23761370,4
+31617624,23761370,5
+heradarling,23761370,5
+true-xiaomai,23761370,5
+Dantey,23761370,3
+83885200,23761370,5
+61069242,23761370,5
+crazydj,23761370,5
+yllovefish,23761370,5
+2904311,23761370,4
+vicky_vampire,23761370,4
+71268273,23761370,5
+98809894,23761370,5
+47203558,23761370,5
+fyself,23761370,3
+enhengheng,23761370,5
+39072740,23761370,5
+4126419,23761370,4
+59820675,23761370,3
+2940531,23761370,4
+xdays,23761370,5
+Just_vv,23761370,5
+mumurose,23761370,5
+122954749,23761370,5
+91680822,23761370,5
+85339188,23761370,3
+115665831,23761370,5
+socalledgin,23761370,3
+4201625,23761370,5
+70341533,23761370,1
+58415545,23761370,5
+sail-li,23761370,4
+hss18384939520,23761370,5
+47259659,23761370,5
+45306000,23761370,3
+63878965,23761370,4
+48106358,23761370,5
+carol2sea,23761370,5
+45665171,23761370,4
+41052184,23761370,4
+Fucking_hell,23761370,4
+louxiaoyu,23761370,5
+49197725,23761370,-1
+sjzqzkn,23761370,5
+dousei,23761370,5
+41437311,23761370,5
+16817778,23761370,4
+46735351,23761370,4
+Dianaloveword,23761370,5
+119280630,23761370,5
+darlingtudai,23761370,4
+faannn,23761370,5
+44457357,23761370,2
+45512031,23761370,5
+83527994,23761370,5
+42722420,23761370,5
+48972057,23761370,4
+61011471,23761370,4
+aixiSHE,23761370,5
+flvacant,23761370,5
+nia,23761370,3
+daping,23761370,4
+3880942,23761370,5
+2903830,23761370,4
+Son47,23761370,3
+90786655,23761370,5
+Giagiagia,23761370,4
+bellewang,23761370,4
+antoniochen,23761370,-1
+78364683,23761370,5
+69221955,23761370,5
+glc5812,23761370,5
+wuzhengfu,23761370,4
+41199208,23761370,4
+48165998,23761370,5
+54055888,23761370,-1
+6594024,23761370,5
+onotou,23761370,4
+81131336,23761370,5
+50308434,23761370,5
+1147598,23761370,3
+p_travel,23761370,4
+36621116,23761370,4
+51477454,23761370,4
+49336479,23761370,4
+52364944,23761370,4
+57820083,23761370,3
+xunliwu,23761370,5
+48261630,23761370,4
+59672369,23761370,4
+68102477,23761370,5
+94033941,23761370,5
+wangweiyi,23761370,5
+cheeseberry,23761370,4
+Hanakoko,23761370,4
+2655199,23761370,5
+3566560,23761370,5
+84589131,23761370,5
+64023928,23761370,3
+34081979,23761370,5
+66236412,23761370,4
+49602795,23761370,4
+46909734,23761370,1
+48540834,23761370,4
+71317241,23761370,4
+67667928,23761370,5
+65161284,23761370,5
+84960809,23761370,5
+1549570,23761370,5
+frankzhang,23761370,4
+MovieL,23761370,3
+42933115,23761370,5
+69937371,23761370,5
+AeroAnte,23761370,4
+120883441,23761370,5
+57012377,23761370,4
+4559768,23761370,4
+duodu,23761370,3
+vimuo,23761370,4
+4116226,23761370,4
+Tina.qian,23761370,5
+73952321,23761370,3
+jiuge42,23761370,1
+66620661,23761370,5
+72788853,23761370,3
+41786270,23761370,4
+54358561,23761370,3
+45160142,23761370,5
+65105898,23761370,5
+43871169,23761370,5
+57853791,23761370,4
+122107409,23761370,5
+122107409,23761370,5
+zeon_lee,23761370,5
+SummerChen,23761370,5
+seasonart,23761370,4
+92516233,23761370,5
+huantong,23761370,4
+maxwell2place,23761370,3
+azaleahu,23761370,5
+84377752,23761370,4
+11889754,23761370,5
+chuxiangyuan,23761370,5
+sykid,23761370,5
+2757825,23761370,5
+cjsky,23761370,5
+76467871,23761370,4
+58908611,23761370,3
+70341874,23761370,5
+50573065,23761370,5
+sl19910727,23761370,3
+quizas63,23761370,-1
+Pennyui,23761370,5
+ZouwenLI87you,23761370,5
+4096244,23761370,5
+KennySiliver,23761370,4
+cotton,23761370,4
+ledreamaker,23761370,4
+kin090909,23761370,-1
+neverland1210,23761370,5
+cgw,23761370,5
+ABQK,23761370,4
+Stephanieman,23761370,5
+youyufei,23761370,4
+jy89110,23761370,3
+yuanchuan1996,23761370,5
+41629334,23761370,4
+10235906,23761370,5
+37306803,23761370,5
+92135778,23761370,5
+Rosieash,23761370,3
+48115539,23761370,5
+3944230,23761370,4
+90729667,23761370,3
+58040832,23761370,2
+44349376,23761370,5
+1061046,23761370,1
+83166119,23761370,-1
+35921165,23761370,5
+brucetown,23761370,4
+49589423,23761370,5
+58277084,23761370,4
+119606902,23761370,5
+93866578,23761370,5
+58723728,23761370,4
+liqiru1110,23761370,5
+81843857,23761370,5
+Remmirath,23761370,5
+60889273,23761370,5
+49489943,23761370,5
+lancelin,23761370,1
+October21,23761370,4
+41014466,23761370,4
+kouchi,23761370,5
+lovetatum,23761370,5
+54096060,23761370,5
+Jhon_Lou,23761370,4
+1876785,23761370,5
+58231390,23761370,5
+2730322,23761370,4
+83389859,23761370,4
+120625991,23761370,4
+szlbanxia,23761370,5
+115660168,23761370,4
+62430865,23761370,5
+52870411,23761370,4
+jianinglee,23761370,3
+72792251,23761370,3
+LuuuuC,23761370,4
+47396894,23761370,5
+hhy2013,23761370,4
+flyingdove,23761370,4
+47586387,23761370,5
+56609049,23761370,4
+67981371,23761370,5
+75007342,23761370,4
+57887580,23761370,3
+qingyang7893,23761370,5
+wilsonliu,23761370,5
+48411235,23761370,3
+87715878,23761370,5
+82057959,23761370,3
+Three-monks,23761370,4
+42607298,23761370,5
+huanghongyang,23761370,5
+66539911,23761370,5
+48638598,23761370,4
+xunwendy,23761370,5
+59639951,23761370,5
+53023463,23761370,4
+73096568,23761370,5
+52128481,23761370,5
+85368770,23761370,5
+35514033,23761370,4
+47254580,23761370,3
+84184896,23761370,5
+76097175,23761370,5
+98110557,23761370,3
+se7en-se7en,23761370,2
+bestayu,23761370,2
+2292966,23761370,5
+40841242,23761370,5
+xilouchen,23761370,3
+kimixyz,23761370,5
+90688581,23761370,3
+kylintatto,23761370,5
+nilinli,23761370,5
+sby2730,23761370,5
+89654663,23761370,3
+3873448,23761370,5
+76335653,23761370,3
+79092618,23761370,4
+14451236,23761370,5
+KaYcily,23761370,5
+68179093,23761370,5
+vivisnbb,23761370,4
+10666362,23761370,4
+2424181,23761370,4
+Baoberlln,23761370,5
+37675281,23761370,5
+60089560,23761370,4
+kszone,23761370,5
+jolinalbert,23761370,5
+121776182,23761370,5
+80631367,23761370,3
+5440395,23761370,3
+69459870,23761370,4
+88807844,23761370,3
+lvyanjing,23761370,3
+xiaomeng43210,23761370,5
+69680398,23761370,5
+ayame,23761370,5
+moka_me,23761370,4
+102599783,23761370,4
+mengqingqing,23761370,5
+48657704,23761370,3
+Kin7,23761370,5
+auv_lau,23761370,4
+87357482,23761370,5
+hanyiran,23761370,4
+3975844,23761370,5
+zhibiaoshi,23761370,4
+48420105,23761370,5
+109023138,23761370,5
+52977562,23761370,5
+yangui,23761370,2
+lilliantao,23761370,4
+prikum,23761370,4
+64181002,23761370,5
+blackscreen,23761370,4
+62781349,23761370,4
+57944002,23761370,4
+zkjhhhh,23761370,5
+73710640,23761370,3
+46754080,23761370,5
+65631549,23761370,3
+48689530,23761370,5
+55592172,23761370,5
+3875131,23761370,4
+66397755,23761370,3
+mizuki-mizuki,23761370,5
+wizardcypress,23761370,5
+45563432,23761370,4
+64091286,23761370,4
+47317180,23761370,4
+sicksoul,23761370,5
+35059047,23761370,3
+thesue,23761370,4
+lxy250,23761370,5
+57765448,23761370,5
+63822026,23761370,5
+75863554,23761370,5
+fireflyxin,23761370,5
+4605744,23761370,4
+49082451,23761370,5
+62095303,23761370,3
+46656643,23761370,3
+51904354,23761370,5
+36067055,23761370,4
+65239324,23761370,5
+SYRR,23761370,5
+124962987,23761370,5
+37828208,23761370,5
+40649536,23761370,4
+60096895,23761370,5
+110142217,23761370,5
+71222358,23761370,4
+53547705,23761370,3
+47490003,23761370,5
+56684756,23761370,1
+79240544,23761370,4
+zoehuan,23761370,4
+82479868,23761370,5
+MisS_Umylove,23761370,5
+2443488,23761370,5
+4715775,23761370,5
+76251078,23761370,4
+69475610,23761370,4
+o1,23761370,2
+49984538,23761370,5
+forever-me,23761370,5
+68138320,23761370,4
+3607278,23761370,5
+gxf,23761370,4
+59795284,23761370,5
+49066626,23761370,5
+piubiu,23761370,4
+mengqishuo,23761370,5
+63888010,23761370,4
+jj920762149,23761370,5
+isabellagreen,23761370,4
+82983433,23761370,4
+85516664,23761370,4
+53925544,23761370,5
+44767328,23761370,5
+61315630,23761370,4
+sunnydaisy04,23761370,5
+adora,23761370,5
+49269010,23761370,4
+82404312,23761370,5
+Iris0107,23761370,5
+55603094,23761370,4
+zhaoxiaobeng,23761370,5
+2677247,23761370,4
+Jeremy87,23761370,5
+dearmaggie,23761370,5
+120523718,23761370,5
+61108610,23761370,5
+2537864,23761370,5
+57955489,23761370,5
+gexiarong,23761370,4
+51670482,23761370,5
+46373841,23761370,5
+124254697,23761370,5
+liwujiu,23761370,4
+113752134,23761370,4
+92543363,23761370,5
+80357218,23761370,4
+48906452,23761370,5
+62055273,23761370,5
+119189786,23761370,3
+zzyzeal,23761370,5
+52063841,23761370,4
+yekaokao,23761370,4
+lewish,23761370,5
+122274250,23761370,4
+34823430,23761370,5
+72279635,23761370,5
+whenwilli,23761370,5
+67870138,23761370,4
+sylvere,23761370,4
+12919014,23761370,5
+steero1015,23761370,5
+57935610,23761370,4
+75901513,23761370,5
+fayxiaodiao,23761370,5
+50303559,23761370,5
+91824431,23761370,5
+doubanfox,23761370,5
+70764851,23761370,5
+50755079,23761370,5
+mctrain,23761370,5
+39912864,23761370,1
+78484453,23761370,4
+liveland,23761370,4
+dzone,23761370,4
+53108516,23761370,5
+41660790,23761370,4
+chapu,23761370,5
+90546553,23761370,5
+60369875,23761370,5
+4408385,23761370,4
+stella930,23761370,5
+onshuway,23761370,3
+28677254,23761370,5
+46346813,23761370,5
+19593525,23761370,5
+71240597,23761370,5
+58317992,23761370,5
+49916048,23761370,3
+magic_kid,23761370,4
+124389328,23761370,5
+54612022,23761370,4
+50117993,23761370,4
+68929585,23761370,4
+67664389,23761370,5
+54433399,23761370,4
+64620324,23761370,5
+77092352,23761370,4
+zhaimozi,23761370,4
+67795566,23761370,4
+ting_shark,23761370,-1
+ting_shark,23761370,-1
+71465294,23761370,4
+sixer1005,23761370,5
+hhy890809,23761370,4
+54391655,23761370,5
+robin1988,23761370,4
+18416992,23761370,4
+1334269,23761370,4
+60738715,23761370,4
+88452602,23761370,4
+xl8690,23761370,5
+62739963,23761370,5
+50842003,23761370,5
+romaweb,23761370,5
+68922284,23761370,4
+79515979,23761370,5
+jiubadaoxiahun,23761370,5
+52840437,23761370,4
+61953501,23761370,4
+jaslee,23761370,3
+xmly13,23761370,4
+vivien007,23761370,5
+huadouyeying,23761370,4
+79201200,23761370,5
+44117015,23761370,5
+93664984,23761370,5
+52878748,23761370,5
+1384796,23761370,5
+85428939,23761370,4
+56604697,23761370,4
+destiny.chan,23761370,5
+58807022,23761370,3
+1632754,23761370,4
+76412365,23761370,5
+96885435,23761370,5
+124829304,23761370,5
+jasonscat,23761370,5
+Cheer.M,23761370,5
+54719866,23761370,5
+58149680,23761370,3
+mrlp,23761370,4
+Wenqian,23761370,5
+57923940,23761370,4
+60708488,23761370,5
+56981196,23761370,5
+50700305,23761370,-1
+52621026,23761370,5
+84884816,23761370,5
+64772450,23761370,4
+52963156,23761370,5
+Desiree,23761370,4
+46370067,23761370,4
+78123649,23761370,5
+rianna,23761370,5
+51314726,23761370,5
+64597029,23761370,4
+plight,23761370,3
+seekis,23761370,3
+50487557,23761370,5
+65784611,23761370,3
+49813166,23761370,5
+81551351,23761370,5
+99329704,23761370,4
+90532501,23761370,3
+Dasiycat,23761370,5
+PIERRELIU,23761370,5
+45255137,23761370,5
+79915546,23761370,5
+maggieleehom,23761370,5
+61259227,23761370,5
+supersun1005,23761370,5
+61824176,23761370,5
+kiahchen,23761370,5
+42000641,23761370,5
+57993896,23761370,4
+64017906,23761370,5
+yongshi415,23761370,4
+schweinyu,23761370,4
+sangye1989,23761370,5
+63377310,23761370,5
+40559472,23761370,5
+49527668,23761370,5
+56104597,23761370,5
+46256345,23761370,3
+seventeenF,23761370,5
+50270612,23761370,5
+shepherded,23761370,4
+winmaxangle,23761370,5
+6500897,23761370,-1
+33615287,23761370,5
+Sissi17,23761370,5
+91794461,23761370,5
+4465352,23761370,5
+ruru8,23761370,-1
+52244996,23761370,5
+tobekalorce,23761370,4
+66612496,23761370,5
+62783535,23761370,5
+87876887,23761370,5
+luar77627,23761370,5
+83601520,23761370,3
+41967258,23761370,3
+60142596,23761370,4
+59189424,23761370,5
+34890857,23761370,-1
+65213268,23761370,5
+124313805,23761370,5
+51927148,23761370,5
+ACJG,23761370,4
+57945054,23761370,5
+81062694,23761370,4
+36688591,23761370,5
+1187053,23761370,4
+winkishiny,23761370,5
+KinO_O,23761370,5
+21944459,23761370,4
+Gloria2Lei,23761370,4
+wrdouban,23761370,5
+Sapporo,23761370,3
+casablanca0912,23761370,4
+vacant85,23761370,4
+DreamOnBuddy,23761370,1
+48132884,23761370,4
+88661415,23761370,5
+47778684,23761370,5
+122392735,23761370,3
+schersey,23761370,5
+41383796,23761370,5
+3877238,23761370,5
+4527041,23761370,4
+50842238,23761370,3
+yujianwo49,23761370,5
+70047087,23761370,4
+77645766,23761370,5
+3519432,23761370,5
+74777306,23761370,4
+liyah,23761370,5
+nianfangshiba,23761370,5
+56894941,23761370,5
+78275647,23761370,4
+122181202,23761370,5
+1929074,23761370,5
+wohouhou,23761370,4
+56470585,23761370,5
+68177760,23761370,5
+ciseibian,23761370,5
+wqqingtian,23761370,4
+flena,23761370,5
+58983444,23761370,4
+103652076,23761370,5
+40844077,23761370,5
+teikamouse,23761370,4
+3050828,23761370,3
+42721786,23761370,5
+tuochacha,23761370,4
+lazzaro,23761370,4
+56394106,23761370,3
+47979130,23761370,-1
+61907684,23761370,4
+hexiumin,23761370,5
+mouy490,23761370,5
+53934829,23761370,4
+ghzxjian,23761370,4
+21766290,23761370,5
+realdeal,23761370,5
+64955104,23761370,5
+60819782,23761370,5
+55630140,23761370,5
+lovemj4ever,23761370,5
+lacunasmile,23761370,5
+4427457,23761370,5
+85654464,23761370,5
+90769317,23761370,5
+99144453,23761370,3
+95988337,23761370,4
+55983243,23761370,5
+80657169,23761370,5
+65358454,23761370,5
+121478143,23761370,5
+91397625,23761370,5
+57064183,23761370,4
+62521772,23761370,5
+18313578,23761370,4
+63089726,23761370,5
+61190847,23761370,4
+yixi7,23761370,4
+whatever8585,23761370,5
+69585663,23761370,4
+72133915,23761370,3
+53335866,23761370,5
+47749365,23761370,5
+steffani,23761370,4
+daseinbo,23761370,4
+41842523,23761370,5
+jore1102,23761370,4
+adrian0807,23761370,5
+fanlinbo,23761370,2
+zhaoyao0919,23761370,4
+aprilisqiu,23761370,4
+48786032,23761370,4
+48786032,23761370,4
+13424749,23761370,5
+48500174,23761370,5
+27641257,23761370,5
+125198992,23761370,5
+32541723,23761370,5
+60011840,23761370,4
+ansontree33,23761370,4
+64969140,23761370,5
+67103907,23761370,4
+stephy.shy,23761370,5
+48026427,23761370,5
+raising_dawn,23761370,3
+3493699,23761370,4
+zq863619730,23761370,5
+51639627,23761370,5
+17926996,23761370,4
+63352248,23761370,4
+chaliwang3,23761370,5
+AAGban,23761370,5
+62538300,23761370,3
+longzuxin,23761370,4
+92377799,23761370,5
+june28th,23761370,5
+84958026,23761370,5
+ccclllbl,23761370,5
+65925279,23761370,5
+suntotem,23761370,5
+77724416,23761370,5
+72122656,23761370,4
+121055562,23761370,4
+98493632,23761370,5
+45235162,23761370,5
+73383984,23761370,3
+4697357,23761370,5
+73827929,23761370,5
+Fxlly3,23761370,5
+Emily77,23761370,4
+42465627,23761370,3
+chiche318,23761370,5
+wangdoudou20,23761370,2
+xiaoshi0212,23761370,4
+124092156,23761370,4
+89332160,23761370,5
+Asurra,23761370,5
+50242616,23761370,5
+36978059,23761370,3
+60098427,23761370,5
+3994599,23761370,4
+monai3,23761370,5
+78466382,23761370,4
+lost902,23761370,5
+sherry0425,23761370,4
+74799167,23761370,5
+80414582,23761370,4
+taiopiao,23761370,4
+53830250,23761370,4
+1543106,23761370,5
+62517636,23761370,5
+douzihao,23761370,4
+zouzouwanwan,23761370,4
+50655031,23761370,5
+tutusky,23761370,5
+lily-monica,23761370,5
+73610664,23761370,5
+66274625,23761370,5
+53662568,23761370,4
+3215217,23761370,5
+leslie93,23761370,5
+59945460,23761370,5
+90042244,23761370,4
+Joan7600,23761370,5
+104742376,23761370,4
+vianna.H,23761370,5
+lylalei,23761370,4
+flyxzz,23761370,3
+68934324,23761370,5
+wenteng1988,23761370,5
+56203465,23761370,2
+49116772,23761370,5
+limitoflove,23761370,5
+65040109,23761370,5
+26980013,23761370,4
+4110596,23761370,5
+122632852,23761370,5
+52497918,23761370,4
+58060684,23761370,2
+62518074,23761370,3
+79546225,23761370,5
+liuyuhen18,23761370,4
+39421864,23761370,5
+snailjia,23761370,-1
+76617024,23761370,5
+3569506,23761370,5
+47393559,23761370,3
+wish430,23761370,5
+74575002,23761370,3
+5678441,23761370,5
+mai_k,23761370,5
+26044083,23761370,4
+63517332,23761370,4
+34704440,23761370,4
+54186627,23761370,4
+soarchane,23761370,5
+34779757,23761370,5
+sonoflucifer,23761370,5
+60042960,23761370,5
+lvchencf,23761370,4
+kebra,23761370,5
+VIPP,23761370,5
+40681472,23761370,5
+84971232,23761370,5
+57778559,23761370,5
+Her_Mione,23761370,4
+73405940,23761370,1
+43969501,23761370,5
+wangrujing,23761370,5
+tracyliang223,23761370,5
+3735881,23761370,4
+99309849,23761370,5
+63008010,23761370,5
+hollyxiyi,23761370,3
+88648524,23761370,4
+FreeDream,23761370,5
+59553808,23761370,5
+61720492,23761370,5
+guolibin,23761370,5
+sunny3333,23761370,5
+60447093,23761370,5
+84093369,23761370,-1
+2182241,23761370,5
+3951378,23761370,5
+whisper,23761370,3
+1452141,23761370,5
+67957141,23761370,5
+51760780,23761370,4
+momonian,23761370,5
+77645956,23761370,5
+ANPANG,23761370,5
+baisechengai,23761370,5
+chagrinbleu,23761370,5
+80928749,23761370,5
+MissFish417,23761370,5
+34894274,23761370,4
+60947985,23761370,4
+3871209,23761370,4
+2199302,23761370,5
+winnielancy,23761370,5
+60444870,23761370,5
+Betty_king,23761370,4
+shiyanshigou,23761370,5
+52004957,23761370,3
+65161196,23761370,4
+lbwqqq,23761370,4
+viviancien,23761370,4
+106450202,23761370,5
+tranquilization,23761370,2
+34245713,23761370,5
+38866851,23761370,5
+2393543,23761370,5
+70034039,23761370,4
+celiaxiaoluohao,23761370,5
+53853520,23761370,5
+121898555,23761370,5
+Ryan.Luo,23761370,5
+adagio4400,23761370,5
+qwkkc,23761370,5
+42953573,23761370,3
+52583680,23761370,5
+52763172,23761370,4
+adaylanie,23761370,2
+wewewu,23761370,5
+73847256,23761370,4
+1094981,23761370,5
+32314297,23761370,5
+69532674,23761370,4
+wangshaoda,23761370,4
+2400445,23761370,4
+4097348,23761370,5
+coral1210,23761370,5
+44851884,23761370,5
+fin07,23761370,5
+63045574,23761370,5
+mumuyanshi,23761370,5
+56032742,23761370,5
+115750334,23761370,4
+40518476,23761370,4
+48263593,23761370,5
+lunaa,23761370,4
+68456066,23761370,5
+61426958,23761370,4
+claire1101,23761370,5
+cjiaojiao,23761370,5
+dogg313,23761370,4
+47401916,23761370,5
+62383479,23761370,4
+3398230,23761370,5
+70081984,23761370,4
+33513453,23761370,5
+nancy425,23761370,4
+phoebeandjelly,23761370,5
+50918423,23761370,3
+68485237,23761370,5
+zuiaiyanda,23761370,3
+41780016,23761370,5
+wantwaye,23761370,4
+Just_So_So,23761370,5
+youeqian,23761370,4
+hana-neverland,23761370,5
+znrpiggey,23761370,3
+lianjin,23761370,4
+wei.xiao,23761370,5
+106620783,23761370,5
+63770150,23761370,2
+63218478,23761370,1
+hikkii,23761370,4
+53330840,23761370,5
+62911444,23761370,5
+pigsoldier,23761370,4
+90767458,23761370,5
+empfan,23761370,5
+120551581,23761370,4
+1604274,23761370,4
+47165850,23761370,5
+pandaleilei,23761370,4
+60488216,23761370,5
+lokita,23761370,5
+danmark_cuber,23761370,4
+43248233,23761370,5
+4674424,23761370,4
+40757284,23761370,5
+46179321,23761370,5
+longlastingfad,23761370,4
+DY9174,23761370,5
+zr8359,23761370,3
+78689806,23761370,4
+forgetsth,23761370,3
+57893510,23761370,5
+67924559,23761370,4
+1877066,23761370,5
+leonhardtdb,23761370,5
+TangJing1229,23761370,3
+54126303,23761370,4
+28535454,23761370,4
+mlzizi,23761370,5
+54275881,23761370,5
+4056276,23761370,-1
+yamina_won,23761370,5
+rabbitgirl,23761370,5
+80356847,23761370,4
+2363090,23761370,5
+94093856,23761370,4
+liuniankui,23761370,4
+79499233,23761370,4
+eastge,23761370,1
+cynthia3922,23761370,4
+46416150,23761370,5
+46454476,23761370,5
+Leakeyenjoylife,23761370,4
+syt0924,23761370,4
+48419303,23761370,5
+gracetop10,23761370,5
+3347709,23761370,5
+christa1989,23761370,4
+shadow_break,23761370,5
+Garfield88,23761370,5
+59032148,23761370,5
+graygem,23761370,2
+73561647,23761370,5
+lewisuan,23761370,4
+48973217,23761370,4
+princewzy,23761370,5
+aprisliver,23761370,2
+53301684,23761370,4
+too_up,23761370,5
+2182902,23761370,4
+51775822,23761370,3
+muxiaoxu,23761370,5
+32586647,23761370,5
+88542586,23761370,5
+101454154,23761370,5
+blue-Petit,23761370,4
+58484976,23761370,5
+25140645,23761370,5
+61555981,23761370,5
+76781286,23761370,5
+lihanbin,23761370,5
+36936880,23761370,4
+imoviekobe,23761370,4
+48051436,23761370,5
+92409264,23761370,5
+57456977,23761370,4
+2266577,23761370,5
+brainwashed,23761370,1
+50553222,23761370,5
+47878737,23761370,5
+79478297,23761370,4
+lonelymile,23761370,4
+Athenalotr,23761370,5
+57896401,23761370,5
+46292666,23761370,4
+yiyiyangwish,23761370,5
+43360069,23761370,4
+13782040,23761370,5
+Hello-Momoko,23761370,5
+possion007,23761370,5
+ke1in,23761370,5
+119992317,23761370,2
+tomhu,23761370,5
+4709576,23761370,4
+76497080,23761370,4
+beachboyzx,23761370,5
+2876239,23761370,-1
+6440487,23761370,5
+achenlydia,23761370,4
+snowbubblelf,23761370,5
+105456391,23761370,4
+shenqi891003,23761370,5
+115982737,23761370,5
+74562280,23761370,4
+67148149,23761370,4
+49473828,23761370,5
+33245540,23761370,4
+58065568,23761370,5
+90476319,23761370,4
+47401412,23761370,5
+shenxuzhu,23761370,4
+83429427,23761370,5
+weichengyuan,23761370,3
+116063812,23761370,5
+sln58,23761370,4
+64631465,23761370,5
+2655191,23761370,4
+78170465,23761370,5
+43906508,23761370,4
+3139928,23761370,2
+kevinrise,23761370,5
+3502559,23761370,4
+57998456,23761370,5
+91433204,23761370,5
+colleen_1211,23761370,4
+63981734,23761370,5
+53479679,23761370,2
+33177895,23761370,5
+danielxiafei,23761370,5
+27517816,23761370,4
+121240202,23761370,5
+62346407,23761370,4
+monetsun,23761370,5
+YP2013,23761370,5
+lovexiaoyan,23761370,5
+60798953,23761370,5
+54074581,23761370,5
+63977206,23761370,5
+76375998,23761370,5
+56959661,23761370,5
+81444301,23761370,5
+Arche0528barney,23761370,4
+120780634,23761370,5
+SR-Vision,23761370,4
+53123954,23761370,5
+caidaoshiren,23761370,4
+rip626,23761370,4
+nightdreamer,23761370,5
+75914022,23761370,5
+52104937,23761370,5
+23306928,23761370,4
+2374899,23761370,5
+46715327,23761370,2
+63179876,23761370,5
+74139024,23761370,5
+47583585,23761370,5
+vanessamoon,23761370,3
+48492345,23761370,5
+jyuelovejay,23761370,5
+48041083,23761370,5
+44335923,23761370,5
+36841439,23761370,4
+119296664,23761370,4
+124600906,23761370,5
+59864726,23761370,5
+wakaka1986,23761370,3
+47804884,23761370,4
+84911781,23761370,5
+chanel0214,23761370,5
+anna.sarah,23761370,4
+3006521,23761370,5
+96302308,23761370,5
+123972857,23761370,5
+60112538,23761370,5
+aiwengfan,23761370,5
+CRazYBoX,23761370,4
+lynnux,23761370,4
+67304405,23761370,5
+NotY,23761370,4
+80999703,23761370,5
+turtlezheng,23761370,5
+elizabethchen,23761370,-1
+Deirdre95,23761370,5
+89403832,23761370,4
+cheanopig,23761370,5
+JadeLiang,23761370,5
+65386579,23761370,5
+88069657,23761370,5
+MOVA,23761370,-1
+pufang,23761370,5
+13871179,23761370,5
+GERNAZI,23761370,5
+seeder0121,23761370,4
+live4ever,23761370,5
+115324297,23761370,4
+125185442,23761370,5
+70913010,23761370,3
+jiqingyi,23761370,3
+Yindaxian,23761370,3
+48919627,23761370,4
+christopherlin,23761370,3
+Chauvetina,23761370,4
+misstiming,23761370,4
+dudunvmotou,23761370,3
+51292649,23761370,3
+50481665,23761370,-1
+fx20061006,23761370,4
+4104741,23761370,5
+49324662,23761370,3
+zstyle,23761370,5
+81785994,23761370,5
+91263818,23761370,4
+9313726,23761370,4
+foxemperor,23761370,4
+briphia,23761370,4
+hanhancool,23761370,5
+40806456,23761370,3
+87529198,23761370,5
+70801167,23761370,4
+67266475,23761370,5
+thomsonkoo,23761370,4
+lcghere,23761370,5
+kg1898,23761370,5
+Constra1nt,23761370,5
+44837247,23761370,5
+78383050,23761370,5
+2565783,23761370,5
+3425802,23761370,5
+51636160,23761370,5
+62916692,23761370,5
+kimitsexq,23761370,5
+93451657,23761370,4
+55284427,23761370,4
+linda740,23761370,5
+jollychang,23761370,3
+69087410,23761370,4
+28808683,23761370,4
+hitian,23761370,4
+69066580,23761370,5
+3832280,23761370,5
+78211526,23761370,5
+shoucnag,23761370,5
+88439681,23761370,4
+79865158,23761370,4
+63202684,23761370,3
+superzoukang,23761370,4
+49277470,23761370,3
+60080171,23761370,3
+Jessica0322,23761370,5
+3603670,23761370,3
+51955204,23761370,5
+kyleul,23761370,5
+68144890,23761370,3
+1128775,23761370,5
+wuyuemua,23761370,2
+71361734,23761370,5
+45080377,23761370,5
+wallyvay,23761370,4
+50060410,23761370,3
+43910154,23761370,4
+47021231,23761370,5
+33538142,23761370,4
+54532754,23761370,4
+eddychaw,23761370,4
+65912537,23761370,5
+43297457,23761370,3
+sand,23761370,5
+wangqinggejiaye,23761370,5
+77162594,23761370,5
+48956646,23761370,5
+124136324,23761370,4
+4867435,23761370,4
+49233507,23761370,-1
+14608434,23761370,5
+miomioMM,23761370,5
+ticky77,23761370,5
+3454812,23761370,5
+54770734,23761370,5
+43479344,23761370,5
+68704917,23761370,5
+72789208,23761370,4
+51061137,23761370,5
+83772004,23761370,4
+120468135,23761370,5
+3957251,23761370,5
+yinghuaji,23761370,5
+43639134,23761370,4
+40463747,23761370,2
+70513238,23761370,5
+63699116,23761370,5
+91754998,23761370,5
+55617091,23761370,5
+87529400,23761370,3
+brandnewstart,23761370,5
+57368289,23761370,5
+fionaprincess,23761370,4
+ksjaewon,23761370,5
+68806140,23761370,5
+50565905,23761370,5
+27502595,23761370,5
+2319130,23761370,5
+ialaska,23761370,5
+58270299,23761370,5
+smallazure,23761370,5
+4485928,23761370,5
+58127008,23761370,5
+seaneight,23761370,4
+73866765,23761370,3
+75910591,23761370,5
+38897761,23761370,3
+51971987,23761370,5
+52877982,23761370,4
+68529863,23761370,5
+lucia1239,23761370,4
+nocturnetian,23761370,5
+121196732,23761370,4
+4826633,23761370,5
+caomanjing,23761370,5
+59404548,23761370,5
+wendymabel,23761370,3
+66057217,23761370,4
+56782849,23761370,5
+dijionnn,23761370,5
+49316177,23761370,3
+57441290,23761370,5
+122081749,23761370,5
+1276233,23761370,5
+little_kevin,23761370,3
+mynange,23761370,5
+leeloo_s,23761370,5
+66696808,23761370,4
+93920997,23761370,4
+62390040,23761370,5
+55556148,23761370,5
+WatanabeSumire,23761370,2
+suntao1989,23761370,5
+51059118,23761370,4
+66161843,23761370,4
+46021030,23761370,5
+45463396,23761370,1
+64070273,23761370,5
+96318986,23761370,5
+hungryfishlb,23761370,5
+jimmy47,23761370,5
+jimmy47,23761370,5
+LillianLeelll,23761370,5
+56906475,23761370,5
+114647405,23761370,5
+44158473,23761370,5
+69158289,23761370,5
+81317502,23761370,5
+66539731,23761370,5
+88213659,23761370,5
+sesesmovie,23761370,5
+huxiaotian,23761370,3
+bloodleopard,23761370,5
+yoanayy,23761370,5
+haisua,23761370,5
+70055114,23761370,4
+57224796,23761370,5
+51156864,23761370,5
+alexanderx,23761370,3
+ziyu0802,23761370,5
+44822608,23761370,5
+45055967,23761370,5
+teddyisme,23761370,5
+44701988,23761370,3
+kontalee,23761370,5
+45848130,23761370,5
+2982463,23761370,5
+taylorzc,23761370,4
+4148773,23761370,5
+45549330,23761370,5
+ssnowitzki,23761370,5
+snh,23761370,4
+pansin,23761370,5
+55996936,23761370,5
+babyfacer,23761370,4
+44111749,23761370,5
+64009987,23761370,5
+bibodeng,23761370,4
+yingji920,23761370,5
+OxygenBar,23761370,4
+1648456,23761370,5
+sakurawei,23761370,4
+60442939,23761370,5
+ystone,23761370,5
+yoyolibing,23761370,5
+qqiang,23761370,5
+53234514,23761370,5
+41258503,23761370,5
+53081539,23761370,5
+mystory0310,23761370,5
+gonedreamback,23761370,3
+75439501,23761370,5
+kingiknow,23761370,5
+easyLyc,23761370,5
+46052845,23761370,5
+93214291,23761370,5
+66713336,23761370,5
+43110705,23761370,4
+ayouyoucats,23761370,5
+RedSnowRose,23761370,4
+nnnn3,23761370,5
+gegewu92,23761370,3
+43335889,23761370,5
+42214996,23761370,4
+olo.0lv,23761370,5
+shalley,23761370,4
+Willdo6,23761370,4
+maxmum,23761370,4
+74698401,23761370,4
+jdqx,23761370,4
+47480391,23761370,5
+64297649,23761370,5
+51736844,23761370,5
+47981838,23761370,5
+54069821,23761370,4
+63425633,23761370,5
+qijiuzhiyue,23761370,4
+4190834,23761370,4
+57293029,23761370,5
+1503749,23761370,5
+hqwxyz,23761370,4
+92361571,23761370,5
+82568769,23761370,3
+SLChern,23761370,5
+lsmichelle007,23761370,5
+52050193,23761370,4
+72771005,23761370,2
+102101154,23761370,2
+3956544,23761370,5
+94783474,23761370,4
+89984750,23761370,4
+41341856,23761370,4
+51174402,23761370,5
+119061026,23761370,5
+43540050,23761370,5
+73836689,23761370,3
+4694209,23761370,5
+DelphiJo,23761370,5
+47833511,23761370,4
+52200683,23761370,5
+115523541,23761370,4
+15005083,23761370,4
+83817130,23761370,5
+71265432,23761370,5
+122669942,23761370,4
+121736995,23761370,5
+hello_ten,23761370,5
+2481671,23761370,5
+34570824,23761370,4
+hygm1239,23761370,4
+47618892,23761370,5
+49586478,23761370,4
+91573235,23761370,5
+73042225,23761370,5
+2637449,23761370,5
+65463016,23761370,5
+67739656,23761370,5
+34035451,23761370,5
+16084893,23761370,5
+68338997,23761370,5
+Poison.,23761370,5
+zznoy,23761370,5
+yangerui,23761370,5
+22031277,23761370,5
+3843442,23761370,5
+realcecilia,23761370,3
+122404820,23761370,2
+mika8611,23761370,5
+maomaomaoyl,23761370,5
+4283595,23761370,2
+1249134,23761370,4
+59013874,23761370,3
+yanya,23761370,4
+69428143,23761370,5
+letonk,23761370,5
+75237378,23761370,4
+xiguai,23761370,5
+kimiweng,23761370,4
+53182864,23761370,4
+123036590,23761370,4
+erhuu,23761370,4
+solondon,23761370,5
+73780688,23761370,4
+2909779,23761370,3
+71807376,23761370,4
+56445943,23761370,5
+nleydy,23761370,4
+62743500,23761370,4
+66898270,23761370,2
+54521144,23761370,-1
+yanniyanni,23761370,3
+rasunsiyu,23761370,-1
+65415712,23761370,5
+4281036,23761370,4
+45916040,23761370,1
+78447440,23761370,5
+36610260,23761370,5
+Pm_wanderlust,23761370,3
+82498439,23761370,4
+49776648,23761370,4
+59181374,23761370,5
+3605341,23761370,5
+panda874,23761370,3
+rain711,23761370,5
+120124957,23761370,5
+43225247,23761370,4
+marta_sunying,23761370,5
+virvivian,23761370,4
+Rachel.W,23761370,4
+108233483,23761370,4
+conansense,23761370,3
+mjjeje0126,23761370,5
+74316022,23761370,4
+3539543,23761370,5
+91511148,23761370,5
+bingocoder,23761370,5
+yan599083337,23761370,5
+xiaohongrachel,23761370,5
+59317066,23761370,5
+51782800,23761370,5
+lovewallace1130,23761370,5
+74128877,23761370,5
+longxsen,23761370,4
+Articuno,23761370,5
+sywhouhou,23761370,5
+lotusmomo,23761370,5
+tayee,23761370,5
+40104674,23761370,4
+38724262,23761370,3
+4590914,23761370,5
+62012748,23761370,5
+3524065,23761370,5
+phoenixfannie,23761370,4
+c-bode,23761370,5
+57876228,23761370,5
+languheshang,23761370,4
+87988157,23761370,5
+34226675,23761370,4
+43327765,23761370,5
+51122778,23761370,4
+confuzzle,23761370,3
+3032877,23761370,5
+124454581,23761370,3
+74599483,23761370,5
+2670240,23761370,4
+52994758,23761370,1
+71328407,23761370,5
+58015786,23761370,5
+1337767,23761370,4
+57095832,23761370,3
+3928773,23761370,5
+57294501,23761370,5
+42825111,23761370,5
+103348980,23761370,4
+3724740,23761370,5
+48256404,23761370,5
+52771940,23761370,5
+120358201,23761370,5
+52889197,23761370,4
+80780400,23761370,5
+jiejueliaoyi,23761370,4
+51345502,23761370,5
+88260020,23761370,5
+52084130,23761370,5
+3758018,23761370,5
+2885958,23761370,5
+3334629,23761370,4
+3507040,23761370,5
+52615010,23761370,5
+52479763,23761370,5
+52573676,23761370,5
+be_here,23761370,5
+hutianyi,23761370,4
+102843938,23761370,5
+76981338,23761370,5
+xieetuzi,23761370,5
+journey..,23761370,5
+olivevivi,23761370,4
+49132390,23761370,5
+htl90983,23761370,5
+75375560,23761370,5
+62553340,23761370,5
+6037002,23761370,5
+51007787,23761370,5
+44563728,23761370,5
+53917309,23761370,5
+62171799,23761370,5
+55599359,23761370,5
+43362874,23761370,5
+charliye,23761370,5
+50522399,23761370,5
+time2359,23761370,5
+50159821,23761370,5
+28170948,23761370,5
+67235309,23761370,5
+weimao3368,23761370,4
+Cq1988,23761370,4
+Ayuland,23761370,5
+48679133,23761370,5
+skateismylife,23761370,5
+airforce_one,23761370,5
+60976525,23761370,4
+hellowembley,23761370,5
+72175536,23761370,5
+lowinvae,23761370,5
+whisaly,23761370,3
+liangkou,23761370,4
+4005034,23761370,5
+dofine,23761370,4
+92649048,23761370,5
+47653456,23761370,2
+deist,23761370,-1
+imarlboro,23761370,5
+3509692,23761370,4
+mhyigeren,23761370,5
+2208183,23761370,4
+102429851,23761370,4
+anthonywoo.,23761370,3
+1138243,23761370,4
+43903214,23761370,5
+fluorinespark,23761370,5
+106159855,23761370,4
+47832790,23761370,4
+younvtongche,23761370,5
+cocozmk,23761370,4
+2449818,23761370,4
+62690697,23761370,5
+PANRICO,23761370,-1
+62974718,23761370,3
+2793396,23761370,5
+3770572,23761370,5
+104529925,23761370,5
+46361986,23761370,3
+41241224,23761370,5
+wishiamwhoiam,23761370,4
+monica325,23761370,5
+121394153,23761370,4
+mien.w,23761370,5
+83900345,23761370,5
+29988044,23761370,5
+ydlxiaolong,23761370,4
+39969280,23761370,5
+taorong,23761370,5
+47346774,23761370,4
+2636873,23761370,5
+64702674,23761370,5
+69465231,23761370,4
+66970135,23761370,4
+67922393,23761370,5
+46338325,23761370,5
+92422818,23761370,5
+3077213,23761370,5
+44134802,23761370,4
+52286623,23761370,4
+84386523,23761370,5
+laners,23761370,5
+24192874,23761370,3
+67606836,23761370,5
+7305861,23761370,5
+65863659,23761370,5
+70807559,23761370,4
+2431818,23761370,2
+11794252,23761370,5
+pigletjj,23761370,4
+yoyoya,23761370,5
+58734272,23761370,4
+wsszmq,23761370,5
+2601748,23761370,3
+89844032,23761370,5
+zhangziyi,23761370,4
+50869178,23761370,4
+babyplume,23761370,4
+holly_xu,23761370,4
+99707083,23761370,5
+yihuiw,23761370,3
+20672891,23761370,4
+45794051,23761370,4
+50740764,23761370,5
+53564451,23761370,5
+51705570,23761370,4
+47096779,23761370,5
+smqllj,23761370,5
+31873785,23761370,1
+65746834,23761370,4
+mimoomim,23761370,4
+36612113,23761370,3
+65181695,23761370,5
+joyceiveryin,23761370,5
+54839016,23761370,5
+56593116,23761370,5
+YUYUSTF,23761370,3
+62649072,23761370,4
+Scorpio_1001,23761370,4
+54862758,23761370,5
+36810630,23761370,5
+zhangxiaogou77,23761370,5
+neildelaopo,23761370,5
+humanafterall,23761370,5
+sable_in_red,23761370,4
+3386344,23761370,5
+wenyuanxu828,23761370,5
+2492496,23761370,4
+itzhaoxiangyu,23761370,4
+75475788,23761370,5
+44736268,23761370,5
+51247678,23761370,5
+LOTUS_NANA,23761370,3
+lick647,23761370,4
+audreys29,23761370,5
+2705757,23761370,5
+iamzhanggui,23761370,5
+sarahvong,23761370,4
+47946624,23761370,4
+48198672,23761370,5
+4057859,23761370,5
+mawii,23761370,3
+fergie37,23761370,5
+42069458,23761370,2
+Summer-J,23761370,5
+60370348,23761370,4
+81445026,23761370,3
+foreverjoy,23761370,4
+klot,23761370,3
+78914788,23761370,4
+dkh.,23761370,5
+xiaoyechen,23761370,5
+xxeeeeee,23761370,5
+1344334,23761370,4
+jakend,23761370,5
+45100414,23761370,5
+104158167,23761370,2
+sodazxw,23761370,4
+hcaelb,23761370,3
+Meva,23761370,5
+KingJames6,23761370,5
+53873820,23761370,5
+wmywbyt,23761370,4
+4087904,23761370,5
+61898774,23761370,5
+tree1900,23761370,4
+79089179,23761370,3
+58325868,23761370,2
+3786096,23761370,5
+bullshitforever,23761370,4
+67140522,23761370,5
+edtos,23761370,4
+lotusz23,23761370,4
+110611489,23761370,5
+82437190,23761370,5
+58701318,23761370,3
+clynch,23761370,-1
+50650597,23761370,5
+rena0115,23761370,5
+cassiemurray,23761370,3
+hh1125,23761370,5
+baby.w,23761370,5
+87513324,23761370,2
+gzshi,23761370,4
+62366078,23761370,5
+91802045,23761370,4
+56794742,23761370,5
+ChantMore,23761370,4
+shallwe07,23761370,5
+cherry1207,23761370,5
+58399217,23761370,4
+alyssaxinyi,23761370,4
+66129611,23761370,5
+102901525,23761370,3
+76314569,23761370,3
+60208379,23761370,5
+43683587,23761370,4
+ljjchn,23761370,5
+58929132,23761370,4
+55379993,23761370,3
+14281062,23761370,5
+70359207,23761370,5
+63191025,23761370,5
+99414276,23761370,3
+powerfulphantom,23761370,5
+AKbianhua,23761370,3
+57870358,23761370,5
+75188314,23761370,5
+RW116642370,23761370,5
+deartintin,23761370,3
+sunnyvicky,23761370,5
+63964754,23761370,3
+weipengcheng,23761370,1
+smileuna,23761370,4
+120187893,23761370,3
+demiinzhang,23761370,5
+55497792,23761370,-1
+i-Justin,23761370,4
+Tensa,23761370,5
+71277964,23761370,5
+70548536,23761370,5
+13262103,23761370,5
+50266026,23761370,5
+Albertlzs,23761370,5
+AaronRamsey16k,23761370,5
+3572516,23761370,5
+91426543,23761370,2
+77151655,23761370,5
+49503226,23761370,3
+82021088,23761370,1
+jqong1,23761370,5
+luvu-demigod,23761370,5
+59319434,23761370,4
+102489587,23761370,5
+44629551,23761370,4
+tangtiantian,23761370,5
+chenspoon,23761370,5
+bluesorry,23761370,5
+96471943,23761370,5
+xiaosanye,23761370,3
+IWNBB,23761370,5
+SANDMANECW,23761370,3
+2210308,23761370,5
+9349453,23761370,5
+madbug,23761370,4
+RR_Sherrol,23761370,5
+44159130,23761370,5
+2620884,23761370,4
+youlemei47,23761370,4
+marsmosquito,23761370,5
+82274459,23761370,5
+31818291,23761370,-1
+105314480,23761370,5
+54106953,23761370,1
+119694915,23761370,5
+65064690,23761370,4
+114632781,23761370,5
+42207663,23761370,2
+zzzzwt,23761370,3
+63819525,23761370,5
+2700292,23761370,4
+48264510,23761370,5
+vincentzhz,23761370,2
+liu1231,23761370,5
+armitt,23761370,5
+loveisnothing,23761370,4
+cecilelover,23761370,5
+4313043,23761370,3
+antwon,23761370,5
+52488485,23761370,5
+yzr8979,23761370,3
+sunhaoren,23761370,2
+wwnoah,23761370,4
+41419698,23761370,4
+viewKG,23761370,5
+48249333,23761370,4
+banzhixian,23761370,5
+dawn.limpid,23761370,3
+83377255,23761370,4
+47190086,23761370,4
+towelcatryna,23761370,1
+vinciwang,23761370,2
+61026232,23761370,5
+Nia23,23761370,4
+83436609,23761370,5
+53330231,23761370,3
+2060473,23761370,5
+2060473,23761370,5
+summerdoris,23761370,5
+Hebebabemaik,23761370,3
+70688735,23761370,5
+124824509,23761370,3
+yolandayin,23761370,4
+xTristan,23761370,5
+potatokid76,23761370,5
+Ozu,23761370,3
+readcpc,23761370,5
+59428470,23761370,5
+ark_Rosie,23761370,3
+Trai25,23761370,4
+YumiJiang215,23761370,5
+31873447,23761370,4
+73474605,23761370,5
+3507965,23761370,5
+yuanlcheng,23761370,4
+122749528,23761370,5
+77194286,23761370,5
+frozone,23761370,2
+curtis_zhu,23761370,5
+62452314,23761370,5
+se7enwt,23761370,5
+55972392,23761370,5
+silvenyszmanda,23761370,5
+80873754,23761370,5
+lnnnnnnnn,23761370,-1
+abby0109,23761370,4
+50405161,23761370,4
+fjjacynth,23761370,5
+56071635,23761370,5
+73726092,23761370,5
+3430040,23761370,3
+myf19951010,23761370,5
+62861526,23761370,5
+wendawen,23761370,4
+h1057015905,23761370,4
+heechulholic,23761370,5
+asingleboat,23761370,5
+80996621,23761370,5
+ycwong,23761370,4
+2433047,23761370,4
+120779050,23761370,5
+50532974,23761370,5
+84396587,23761370,5
+49231465,23761370,5
+49454101,23761370,5
+65322598,23761370,4
+38774242,23761370,3
+aprilwind_shi,23761370,3
+hollypong,23761370,5
+66404994,23761370,5
+HarryBabel,23761370,4
+jxncm,23761370,4
+3859112,23761370,4
+claire1031,23761370,5
+56878421,23761370,5
+12039408,23761370,4
+sevseven,23761370,4
+65720816,23761370,4
+30839916,23761370,5
+123576889,23761370,4
+52675266,23761370,3
+48116369,23761370,5
+97478495,23761370,5
+61284865,23761370,4
+zhxyl,23761370,4
+11258252,23761370,-1
+123977133,23761370,5
+cindyzhe,23761370,4
+122110070,23761370,5
+lost-kaine,23761370,3
+12822970,23761370,5
+penguinwang2008,23761370,5
+sliaobellamy,23761370,2
+xuesongtian,23761370,4
+43805881,23761370,5
+kazuki_,23761370,5
+51628420,23761370,4
+35445243,23761370,4
+119399510,23761370,5
+maremo,23761370,5
+cul_de_sac27,23761370,4
+37037810,23761370,5
+3640673,23761370,5
+6543358,23761370,5
+88539374,23761370,5
+69157879,23761370,2
+66829788,23761370,5
+8132922,23761370,4
+Carrera,23761370,5
+zzxxzz,23761370,4
+zyczsy,23761370,5
+49571609,23761370,4
+70542468,23761370,5
+3599139,23761370,5
+3337008,23761370,5
+81509803,23761370,3
+52071601,23761370,5
+47488504,23761370,5
+4680837,23761370,4
+hugo_697,23761370,5
+john.lau,23761370,5
+56256280,23761370,4
+babywineer,23761370,4
+azurec,23761370,5
+58383460,23761370,5
+yoforyo,23761370,4
+yangqiaohe,23761370,3
+54567626,23761370,5
+53278965,23761370,5
+38815134,23761370,5
+83143884,23761370,5
+53213022,23761370,5
+18555862,23761370,5
+Superfuck,23761370,5
+66004905,23761370,5
+87742458,23761370,5
+3820813,23761370,5
+50526806,23761370,4
+82319776,23761370,3
+Acorus,23761370,4
+kolzybe,23761370,4
+45099103,23761370,5
+77267743,23761370,4
+63359487,23761370,5
+119853756,23761370,3
+8151313,23761370,5
+60092575,23761370,5
+40659159,23761370,4
+aaralyn,23761370,5
+106032621,23761370,5
+JZhong,23761370,4
+abey1949,23761370,3
+52702022,23761370,4
+classa,23761370,5
+jersey0821,23761370,5
+59282824,23761370,5
+41582940,23761370,4
+rainsun1030,23761370,5
+a286963819,23761370,4
+geminismile,23761370,5
+50683342,23761370,4
+56230435,23761370,5
+43856464,23761370,5
+67192113,23761370,5
+62182942,23761370,3
+zmiya_leo,23761370,5
+73732905,23761370,5
+4652357,23761370,4
+wayne421,23761370,5
+wangyuezuiai,23761370,5
+zeph1462,23761370,-1
+49521685,23761370,5
+2657344,23761370,4
+Ethan531,23761370,2
+120439339,23761370,5
+43214194,23761370,5
+nerochan,23761370,5
+47347613,23761370,4
+42036210,23761370,3
+seal2967,23761370,5
+yimiqisan,23761370,5
+62309312,23761370,5
+48490607,23761370,5
+myplacemyway,23761370,4
+S.G,23761370,4
+90546161,23761370,5
+livelongandpros,23761370,5
+69324457,23761370,4
+2716998,23761370,5
+wxsbeyondi,23761370,5
+Endcl7,23761370,4
+56762666,23761370,5
+yigerenzhu,23761370,4
+67855390,23761370,5
+52415788,23761370,5
+WyBaby,23761370,3
+77519863,23761370,5
+1615580,23761370,5
+Jacob678,23761370,4
+ya366000,23761370,5
+73281520,23761370,5
+nibabiyanimabi,23761370,5
+84832389,23761370,3
+1711434,23761370,3
+foolish_q,23761370,5
+jieyuz,23761370,5
+randyyet,23761370,4
+67575567,23761370,5
+lm0617,23761370,5
+48334088,23761370,5
+lushuixian,23761370,5
+45588791,23761370,3
+45509005,23761370,5
+80337672,23761370,5
+91890793,23761370,5
+71762579,23761370,5
+59389607,23761370,5
+56912792,23761370,5
+54597801,23761370,3
+62896170,23761370,5
+reveil,23761370,4
+kidedu,23761370,4
+59370142,23761370,5
+zzoozz_111,23761370,5
+116556583,23761370,5
+fenjinnan,23761370,4
+3922372,23761370,5
+58433028,23761370,4
+xiaozhubaobao,23761370,5
+66040410,23761370,5
+AdagioTotoro,23761370,5
+AlBiKlose,23761370,5
+Mr.pea,23761370,5
+54843353,23761370,5
+46939980,23761370,5
+luckysophia55,23761370,5
+61480128,23761370,4
+39670803,23761370,5
+gogopeter,23761370,5
+53992790,23761370,5
+nice4ever,23761370,4
+67873759,23761370,5
+HeyAriel,23761370,5
+nodummy,23761370,5
+70510688,23761370,4
+60650614,23761370,4
+78089790,23761370,5
+yz501,23761370,4
+chenhaoyuan,23761370,5
+liveralkali,23761370,4
+37412088,23761370,4
+93962585,23761370,5
+43585255,23761370,2
+3489632,23761370,5
+72006598,23761370,5
+38821369,23761370,5
+62535973,23761370,4
+39789288,23761370,5
+zooeyyue,23761370,5
+sarah59,23761370,3
+67641940,23761370,5
+53664299,23761370,4
+98021283,23761370,3
+likinglr,23761370,5
+2233324,23761370,5
+47849551,23761370,5
+47580513,23761370,4
+huabushi,23761370,1
+towne,23761370,4
+50081676,23761370,5
+3727616,23761370,5
+58226091,23761370,5
+55925373,23761370,4
+63173862,23761370,5
+schweinskilyz,23761370,4
+1158194,23761370,5
+1359081,23761370,4
+sonnyji,23761370,5
+57479148,23761370,4
+63945813,23761370,5
+remote_,23761370,4
+60349266,23761370,5
+youtuo_,23761370,5
+46319328,23761370,5
+edwardtroy,23761370,1
+2205198,23761370,3
+GodAssassin,23761370,5
+69809730,23761370,3
+64046846,23761370,5
+118607602,23761370,2
+ayake,23761370,4
+lovetakestime,23761370,5
+3273386,23761370,4
+49198892,23761370,5
+Doctor_lee,23761370,5
+tianlin87,23761370,5
+cofyc,23761370,5
+yiannisyan,23761370,5
+81157731,23761370,5
+89797698,23761370,5
+60717435,23761370,4
+50119866,23761370,5
+szhi,23761370,4
+highfever100,23761370,4
+michelleorz,23761370,5
+yaradona,23761370,3
+36837248,23761370,5
+44610423,23761370,5
+121689080,23761370,5
+3484320,23761370,3
+19136693,23761370,3
+52613141,23761370,5
+liushiyong,23761370,5
+82897167,23761370,1
+51750507,23761370,5
+57491258,23761370,5
+good_man,23761370,5
+maomaowei1992,23761370,5
+52932994,23761370,5
+Tavico,23761370,4
+55631737,23761370,5
+45662322,23761370,5
+44887235,23761370,4
+32509717,23761370,5
+3395613,23761370,5
+64498203,23761370,5
+huaanhuang,23761370,4
+huijunnj,23761370,5
+sysmile,23761370,5
+left_behind,23761370,-1
+60432635,23761370,5
+DamonCoxon,23761370,2
+72693000,23761370,5
+90764556,23761370,5
+99593121,23761370,5
+80726886,23761370,4
+rukaaa,23761370,5
+llahx,23761370,5
+immarisa,23761370,4
+touchingdown,23761370,-1
+75074220,23761370,5
+122633809,23761370,5
+46017359,23761370,5
+tiancaimu,23761370,5
+ruudgoal,23761370,5
+tatamiao,23761370,5
+marmotgo,23761370,4
+48387955,23761370,5
+61338076,23761370,5
+75174312,23761370,5
+moshangsunrise,23761370,5
+loooli,23761370,5
+103484667,23761370,5
+30267706,23761370,5
+32424363,23761370,5
+RIO-Teamradio,23761370,4
+49514456,23761370,5
+120043182,23761370,5
+foxyfoxyfox,23761370,5
+cqlavender,23761370,5
+guaitai19960115,23761370,4
+59995660,23761370,5
+50472438,23761370,5
+oneweek,23761370,5
+93843420,23761370,5
+sfroompp,23761370,4
+50433074,23761370,5
+45388031,23761370,5
+45954041,23761370,5
+38239971,23761370,5
+jiekuang,23761370,5
+winonaliang,23761370,1
+eazi2,23761370,4
+greatMRZ,23761370,4
+121127024,23761370,5
+81317162,23761370,3
+76081150,23761370,5
+76081150,23761370,5
+wanghaoze,23761370,1
+59969817,23761370,5
+120360240,23761370,3
+41662587,23761370,4
+hp951222,23761370,5
+53504462,23761370,4
+36210205,23761370,4
+leexiang,23761370,5
+procxu,23761370,4
+94396136,23761370,5
+lx1994,23761370,4
+66780341,23761370,3
+tounye,23761370,3
+emi881008,23761370,5
+48764715,23761370,5
+sevenready,23761370,4
+winterpills,23761370,5
+veiko,23761370,5
+skag,23761370,5
+fables,23761370,-1
+28736165,23761370,3
+pennylueng,23761370,4
+50419563,23761370,4
+angelliujiayun,23761370,5
+60980785,23761370,3
+80553335,23761370,5
+8627977,23761370,5
+60666720,23761370,3
+kiddii,23761370,3
+garuru,23761370,3
+vivaviva,23761370,5
+overlysilly,23761370,3
+ellen0724,23761370,5
+51168066,23761370,3
+jackybaby,23761370,5
+scarling,23761370,5
+2135892,23761370,5
+ruozi,23761370,4
+snakesarah,23761370,5
+DonCorleone,23761370,4
+48095362,23761370,5
+flyfrankenstein,23761370,4
+sophigrace,23761370,4
+71026194,23761370,4
+xx758289116,23761370,5
+hello.louis,23761370,5
+16821197,23761370,5
+summerholiday,23761370,4
+andriylin,23761370,4
+45245216,23761370,5
+120544917,23761370,3
+2866973,23761370,4
+61037395,23761370,5
+pinkelephant-mt,23761370,5
+2069295,23761370,4
+82846844,23761370,3
+tkf024,23761370,5
+sspring,23761370,4
+isheldon,23761370,4
+babybluebb,23761370,3
+48255191,23761370,4
+67620488,23761370,3
+57298056,23761370,-1
+3082131,23761370,5
+35967033,23761370,5
+17043182,23761370,5
+ecane,23761370,5
+Jarry_yang,23761370,3
+sharkbaby,23761370,-1
+64080026,23761370,5
+42859437,23761370,2
+77307938,23761370,4
+52800930,23761370,5
+46040413,23761370,4
+4655247,23761370,4
+49273163,23761370,3
+64253762,23761370,5
+idorothy,23761370,4
+47540163,23761370,5
+8882421,23761370,4
+59050702,23761370,5
+cxycxy19930520,23761370,3
+nuannuanmo,23761370,4
+raingong,23761370,-1
+jaredc,23761370,4
+3783132,23761370,4
+dannyHou,23761370,5
+dlg1021,23761370,5
+65842431,23761370,4
+89810514,23761370,1
+54278419,23761370,4
+ciaoxu,23761370,3
+earthchild,23761370,5
+51981353,23761370,-1
+57908991,23761370,5
+38856279,23761370,1
+43297403,23761370,4
+Rock_meiwen,23761370,5
+4010650,23761370,5
+34800119,23761370,4
+53721165,23761370,5
+88175103,23761370,5
+vipdayu,23761370,4
+limenghua,23761370,3
+40743178,23761370,4
+45505797,23761370,5
+7829388,23761370,5
+44645874,23761370,5
+62998558,23761370,5
+67447555,23761370,5
+77631133,23761370,5
+57713838,23761370,3
+45307285,23761370,4
+79302633,23761370,5
+103026669,23761370,4
+marxpayne,23761370,5
+47991605,23761370,5
+47232431,23761370,5
+68984410,23761370,4
+48146801,23761370,3
+hdkn235,23761370,4
+74950807,23761370,5
+tracypolaris,23761370,4
+53471196,23761370,5
+54555433,23761370,5
+36867618,23761370,4
+6558213,23761370,4
+bushido,23761370,4
+wh396011051,23761370,4
+KuanKuannnn,23761370,5
+74756120,23761370,3
+53288868,23761370,-1
+121411544,23761370,4
+73491796,23761370,5
+74748012,23761370,4
+FK621,23761370,4
+maxlvw,23761370,5
+1435293,23761370,4
+54118264,23761370,4
+May1018,23761370,2
+lovingmia,23761370,5
+gmzzxg,23761370,5
+70119569,23761370,3
+Sine917,23761370,5
+neptunetulip,23761370,5
+52296283,23761370,5
+2254195,23761370,4
+springing,23761370,5
+michaeldreamy,23761370,5
+52773857,23761370,5
+68001560,23761370,5
+93299177,23761370,-1
+48990139,23761370,4
+59604055,23761370,5
+bybylee,23761370,-1
+72538808,23761370,5
+84290123,23761370,5
+li_1314,23761370,5
+maybach2008,23761370,5
+91689443,23761370,5
+4146441,23761370,5
+3418984,23761370,3
+3468051,23761370,4
+satanprince,23761370,4
+67404244,23761370,2
+33886622,23761370,4
+4043363,23761370,-1
+1381497,23761370,4
+Amoresummer,23761370,4
+lazing0611,23761370,5
+xiayou,23761370,5
+xiaoluohao,23761370,3
+62868573,23761370,5
+2290428,23761370,-1
+mossla,23761370,5
+57824869,23761370,3
+74872914,23761370,4
+mariannelan,23761370,4
+um_banana,23761370,5
+48050176,23761370,5
+dianxuechaoren,23761370,5
+28987824,23761370,5
+Aubrey4S,23761370,4
+68935992,23761370,3
+4341727,23761370,5
+ImHuiY,23761370,5
+jcvvvq,23761370,5
+elisha_gai,23761370,4
+ciaccona,23761370,4
+62064169,23761370,5
+125101066,23761370,5
+45600222,23761370,5
+shangshanruohu,23761370,5
+52366349,23761370,4
+52404781,23761370,4
+41486781,23761370,4
+48544549,23761370,5
+wenzhu0423,23761370,4
+hopelessbaby,23761370,4
+juscici,23761370,-1
+41366816,23761370,5
+17353430,23761370,3
+Candy_Can,23761370,3
+63014642,23761370,4
+72904940,23761370,5
+loveguma,23761370,4
+63953384,23761370,5
+zousisi,23761370,5
+6559057,23761370,5
+29774277,23761370,2
+sunyiqing,23761370,5
+2227798,23761370,4
+103841589,23761370,5
+sundayikel,23761370,-1
+45477393,23761370,4
+shiningkiss85,23761370,5
+MuseMcMurphy,23761370,2
+1643372,23761370,4
+54443073,23761370,5
+48202928,23761370,5
+greenland,23761370,4
+40838505,23761370,5
+donglaixia,23761370,5
+guanjunyan,23761370,-1
+55365364,23761370,4
+zhangyue88,23761370,3
+PurpleYol,23761370,5
+Idahogirl,23761370,4
+66400312,23761370,4
+49919563,23761370,5
+14095143,23761370,5
+52696490,23761370,5
+53872616,23761370,5
+73815567,23761370,5
+121385842,23761370,5
+1998991,23761370,5
+87590424,23761370,5
+peterzhou001,23761370,4
+10034546,23761370,3
+barcelona1989,23761370,5
+65873693,23761370,4
+42644649,23761370,4
+27091040,23761370,5
+peachhyn,23761370,5
+4396096,23761370,5
+81607262,23761370,5
+56685137,23761370,5
+Top-Secret,23761370,5
+iammianmian,23761370,-1
+4530938,23761370,4
+zjstheking,23761370,5
+coconutZii,23761370,4
+3826970,23761370,-1
+bestrichie,23761370,4
+blueskyfly,23761370,4
+64440158,23761370,5
+menphix_ng,23761370,5
+quite-yacca,23761370,5
+chemicalromance,23761370,4
+AOMENGMENG,23761370,5
+soffeeyang,23761370,5
+theperisherme,23761370,5
+66732023,23761370,4
+jacoxu,23761370,3
+41039810,23761370,5
+82092717,23761370,5
+54298835,23761370,3
+62317139,23761370,3
+1634975,23761370,2
+laozixingguo,23761370,5
+39788968,23761370,5
+3864518,23761370,4
+47200046,23761370,4
+zhangyue78,23761370,3
+60523134,23761370,5
+79959123,23761370,5
+ccushuaia1220,23761370,5
+cx9146,23761370,4
+81892189,23761370,5
+4234937,23761370,5
+65917717,23761370,4
+swimming7891,23761370,3
+nctcjy,23761370,3
+58018487,23761370,5
+80028538,23761370,5
+18080670,23761370,4
+wuxu92,23761370,5
+83701119,23761370,4
+appreciation,23761370,3
+47479797,23761370,5
+archikiki,23761370,4
+4663105,23761370,4
+53319371,23761370,5
+54145491,23761370,5
+44725365,23761370,5
+brad_tsye,23761370,4
+cukia,23761370,3
+Louise64,23761370,5
+77765586,23761370,5
+lmgomg,23761370,4
+55657617,23761370,5
+122663190,23761370,5
+46385467,23761370,-1
+CorDigAn,23761370,3
+3407887,23761370,4
+31213700,23761370,3
+lcaesar,23761370,5
+Hee_Tiina,23761370,5
+agnesliuctt,23761370,3
+44104954,23761370,4
+4719134,23761370,4
+17298456,23761370,4
+trekkerT,23761370,4
+becky_,23761370,5
+xixi0508,23761370,4
+41852768,23761370,2
+xxyilun,23761370,4
+2370961,23761370,3
+autumndream,23761370,3
+michaelhhu,23761370,4
+pagekteng,23761370,5
+66833229,23761370,3
+hay12ley,23761370,-1
+60011676,23761370,5
+58991490,23761370,5
+30943019,23761370,5
+109284403,23761370,5
+ssissi7,23761370,4
+52375021,23761370,5
+shamkle,23761370,5
+Librebing,23761370,3
+1437339,23761370,5
+vplumage,23761370,4
+74814512,23761370,4
+65830621,23761370,5
+qfuga,23761370,3
+Vagabondaggio,23761370,5
+yningc,23761370,4
+98096163,23761370,5
+81294123,23761370,1
+114115384,23761370,4
+69331187,23761370,4
+4667031,23761370,5
+57747110,23761370,4
+Y_____________O,23761370,5
+61078922,23761370,3
+57317658,23761370,5
+67936485,23761370,5
+4639276,23761370,4
+48687311,23761370,5
+58509538,23761370,5
+54366340,23761370,4
+bfa1950,23761370,4
+poseidonbunny,23761370,4
+100922035,23761370,3
+99401561,23761370,4
+92133935,23761370,5
+49764495,23761370,5
+leon_lin,23761370,5
+cathyhere,23761370,3
+123004306,23761370,5
+Renee101,23761370,3
+50935504,23761370,3
+60915070,23761370,4
+lmz9386,23761370,3
+44230369,23761370,1
+3588360,23761370,5
+km_mutt,23761370,3
+DeWatson,23761370,5
+tuotuomei,23761370,5
+yykenny,23761370,5
+2468582,23761370,4
+annabelledear,23761370,4
+sunprawn,23761370,5
+Bianco717,23761370,5
+freddy_xu,23761370,3
+coco-cookies,23761370,5
+xs2019,23761370,4
+76033027,23761370,5
+crystalhsucc,23761370,4
+88719620,23761370,4
+3543054,23761370,-1
+75837915,23761370,-1
+57242741,23761370,-1
+longlanglang,23761370,4
+Aziraphale,23761370,5
+49891610,23761370,3
+jacysun,23761370,5
+Linqiny,23761370,3
+1994827,23761370,-1
+68441395,23761370,4
+1511816,23761370,5
+fangbin0516,23761370,4
+123172698,23761370,5
+colintide,23761370,2
+2314341,23761370,5
+zhuxiaorui2012,23761370,5
+85822010,23761370,3
+Faust_Tsai,23761370,3
+gdama,23761370,4
+moyzhang,23761370,5
+designernoideas,23761370,4
+wangpeiying,23761370,4
+chaoren124,23761370,4
+may.love,23761370,5
+62877515,23761370,5
+66769273,23761370,5
+alicenight,23761370,5
+53253261,23761370,5
+58679862,23761370,2
+62237138,23761370,4
+jimwang0106,23761370,4
+57542378,23761370,5
+68871392,23761370,3
+51881334,23761370,-1
+dxiaocai,23761370,5
+Obtson,23761370,4
+2414599,23761370,5
+44272314,23761370,5
+qiaomai,23761370,3
+54757698,23761370,5
+musicoral,23761370,2
+IvyGiggs,23761370,3
+vevine,23761370,5
+32670743,23761370,4
+98649579,23761370,5
+gexiaohua,23761370,4
+aegeanelsie,23761370,5
+adoredmouse,23761370,3
+kidwoo,23761370,4
+falent,23761370,5
+volantisff,23761370,5
+37682814,23761370,4
+fangyuanyuan,23761370,5
+89431473,23761370,4
+jiajun14,23761370,5
+49443595,23761370,5
+24227243,23761370,5
+nodane,23761370,5
+53277349,23761370,5
+49761983,23761370,4
+lihen,23761370,3
+wtymarx,23761370,4
+lene1207,23761370,4
+46815070,23761370,3
+9623777,23761370,4
+3513365,23761370,3
+xiaodaoyang,23761370,4
+4337944,23761370,4
+32023013,23761370,5
+june.q,23761370,3
+GMDY,23761370,4
+tongchao,23761370,4
+EvelynReese,23761370,5
+70183540,23761370,5
+34331382,23761370,3
+4286045,23761370,4
+49028296,23761370,5
+81061741,23761370,3
+bessie10105101,23761370,5
+gossip3micky,23761370,4
+sdcxv,23761370,4
+78721241,23761370,3
+50661880,23761370,4
+49465758,23761370,4
+wxcthu,23761370,5
+79580095,23761370,5
+37488201,23761370,-1
+2248218,23761370,2
+104533245,23761370,4
+62192019,23761370,5
+45935605,23761370,4
+3010221,23761370,5
+4724177,23761370,3
+Yijings,23761370,5
+56997985,23761370,5
+49387796,23761370,5
+mumu1007,23761370,4
+48990593,23761370,4
+97277841,23761370,5
+63553338,23761370,4
+jihong,23761370,3
+foreverdannie,23761370,5
+hgw92812,23761370,4
+PASSMEBY,23761370,3
+63395887,23761370,5
+92978277,23761370,2
+69780901,23761370,5
+83621605,23761370,5
+OpalMummy,23761370,4
+121967825,23761370,3
+princeeeee,23761370,4
+liaozhongchao,23761370,4
+36805272,23761370,5
+47835316,23761370,3
+chouchouCp,23761370,-1
+67062923,23761370,5
+kitty668,23761370,5
+aaaaaaaaaaa,23761370,5
+64773935,23761370,5
+sherry615,23761370,4
+77068892,23761370,5
+58249010,23761370,5
+82422832,23761370,3
+3375011,23761370,5
+borbo,23761370,4
+123274551,23761370,5
+91870642,23761370,5
+ele30tin,23761370,3
+sencillo,23761370,5
+1911212,23761370,5
+19224434,23761370,3
+48362404,23761370,4
+47052162,23761370,4
+1727444,23761370,3
+124905970,23761370,4
+47052799,23761370,3
+2538079,23761370,3
+windson7,23761370,3
+53112021,23761370,5
+gekun,23761370,4
+72538044,23761370,4
+volvic,23761370,-1
+freeeeeeee,23761370,4
+EricV_Lee,23761370,5
+melody20556,23761370,5
+zhoulucy,23761370,2
+mumu2017,23761370,4
+miumiu444,23761370,5
+fengsheep,23761370,4
+stephanieliu,23761370,5
+54781442,23761370,4
+91645081,23761370,4
+spadegirlsays,23761370,2
+amadecasa,23761370,5
+2640900,23761370,5
+54049800,23761370,4
+3507094,23761370,5
+47216469,23761370,4
+58990417,23761370,5
+Mmmmmmagica,23761370,4
+64047703,23761370,4
+71158856,23761370,5
+14542773,23761370,4
+luhang363,23761370,4
+IceP,23761370,4
+wzdradon,23761370,5
+3205834,23761370,5
+2513766,23761370,3
+64277319,23761370,3
+66513837,23761370,4
+46257426,23761370,5
+58403534,23761370,5
+phoebe9982,23761370,3
+88938201,23761370,4
+yhn33,23761370,5
+44426861,23761370,5
+shinizzay,23761370,-1
+no1like_u,23761370,5
+Chloe8846,23761370,3
+Williammer,23761370,2
+FuTeng,23761370,5
+miracle1025,23761370,4
+64069423,23761370,3
+59237362,23761370,5
+36412299,23761370,5
+FrankWasabi,23761370,3
+52284019,23761370,4
+mR.Js,23761370,4
+chinriya,23761370,4
+duduxiongzhifu,23761370,4
+41338064,23761370,5
+danyue,23761370,5
+mknow,23761370,4
+63830017,23761370,5
+lorrainelsy,23761370,4
+4026585,23761370,4
+vanvan07,23761370,4
+lanlingwang,23761370,4
+nehmen,23761370,4
+hajimeyoung,23761370,5
+aixuil,23761370,5
+clover41,23761370,4
+35755342,23761370,3
+cat23love,23761370,4
+vera-cheng,23761370,5
+10455322,23761370,4
+48905575,23761370,4
+59290832,23761370,5
+miyanodorian,23761370,4
+49730004,23761370,5
+leslietongdc339,23761370,3
+wumeiqinvzi,23761370,4
+69367982,23761370,5
+75015059,23761370,-1
+shixiao198867,23761370,5
+52046312,23761370,5
+lilwhite,23761370,-1
+63030056,23761370,5
+52721598,23761370,3
+52737447,23761370,3
+Hjalmar,23761370,3
+121859961,23761370,4
+mary27,23761370,-1
+73062698,23761370,4
+hedgehog,23761370,5
+65263408,23761370,4
+37947794,23761370,5
+zerostd,23761370,5
+46780682,23761370,4
+62506001,23761370,5
+nicijinn,23761370,4
+64354015,23761370,5
+77155788,23761370,4
+SeeUMr.Van,23761370,5
+bruce.L,23761370,4
+52237739,23761370,4
+4226784,23761370,4
+ZackorZac,23761370,-1
+myokiss,23761370,5
+4711240,23761370,4
+66492007,23761370,4
+2646843,23761370,4
+68209747,23761370,5
+su27,23761370,5
+14587316,23761370,-1
+50867193,23761370,4
+songy,23761370,4
+iamshining,23761370,4
+34866563,23761370,3
+18031013,23761370,-1
+psyche213,23761370,5
+rociowyc,23761370,5
+2829044,23761370,3
+Sandythc,23761370,5
+78486968,23761370,5
+47535142,23761370,5
+rrppff,23761370,3
+71024831,23761370,4
+vectorloveelm,23761370,5
+92671472,23761370,5
+49356246,23761370,5
+kimi-seven,23761370,5
+Asteria,23761370,4
+39228377,23761370,4
+Momo-at1615,23761370,4
+51448397,23761370,5
+77017255,23761370,4
+hw4life,23761370,4
+cappuccino-jl,23761370,5
+57484258,23761370,5
+2605445,23761370,5
+69859774,23761370,4
+meltykisszhy,23761370,4
+50539079,23761370,5
+Inlstress,23761370,5
+aragakki,23761370,5
+62484889,23761370,3
+1599200,23761370,5
+1599200,23761370,5
+chibbo,23761370,5
+cuoyiban,23761370,5
+linshang,23761370,4
+54866440,23761370,5
+Ecthelion,23761370,4
+62637901,23761370,5
+58033159,23761370,5
+49809768,23761370,4
+lucameow,23761370,3
+46026235,23761370,5
+liuxiao0601,23761370,5
+76157804,23761370,5
+helloivan,23761370,5
+AquaStyx,23761370,5
+menghao111965,23761370,4
+andrewrhao,23761370,3
+47820753,23761370,5
+48232858,23761370,4
+70308764,23761370,5
+chunxiaoniubi,23761370,5
+yuwenyuan,23761370,4
+pilinono,23761370,5
+takigo,23761370,5
+bvnonesuch,23761370,5
+Pincent,23761370,4
+spunik,23761370,-1
+bolin0713,23761370,5
+woodmoon24,23761370,4
+51442166,23761370,4
+felt,23761370,5
+47891382,23761370,5
+54947709,23761370,5
+48040629,23761370,5
+ellestmorte,23761370,3
+2190268,23761370,5
+Nemoyo,23761370,5
+xiaoyaoshi,23761370,-1
+Goudy,23761370,4
+dibvy,23761370,4
+1768522,23761370,3
+41054771,23761370,4
+cockerel,23761370,5
+47493797,23761370,5
+31356909,23761370,4
+xiaoqianhui,23761370,3
+48316305,23761370,5
+ephemerality,23761370,-1
+45179970,23761370,4
+74283080,23761370,5
+3616413,23761370,5
+HyoA,23761370,4
+27402449,23761370,5
+66858542,23761370,4
+ohahahu,23761370,4
+lajiao1028,23761370,4
+53392958,23761370,4
+Hitachi,23761370,3
+76589851,23761370,5
+46056630,23761370,5
+60894983,23761370,4
+4255750,23761370,5
+50777931,23761370,4
+lanodg,23761370,3
+46260385,23761370,5
+laihiukei,23761370,3
+81612650,23761370,5
+72573288,23761370,5
+hide-by-day,23761370,4
+kathyminwoo,23761370,3
+33685378,23761370,5
+Princess_C,23761370,5
+mocomeng,23761370,5
+97415625,23761370,4
+mymay17,23761370,5
+middleair,23761370,5
+42927229,23761370,5
+jackxyc,23761370,4
+122704131,23761370,5
+53677968,23761370,3
+teliduxingdegou,23761370,3
+skyemoon,23761370,4
+Wkw1129BZBHS,23761370,5
+2005598,23761370,3
+51480816,23761370,3
+47741107,23761370,4
+2364127,23761370,4
+49047522,23761370,5
+Lee_ssang,23761370,5
+3716043,23761370,5
+dou_1223,23761370,4
+4642818,23761370,4
+65566265,23761370,5
+49891918,23761370,5
+31932913,23761370,5
+Idealistting,23761370,4
+jodiefan,23761370,4
+37338806,23761370,5
+77794824,23761370,4
+TitanNing,23761370,4
+bubblelam,23761370,4
+119854281,23761370,5
+45307751,23761370,5
+lxmama,23761370,5
+ivysyi,23761370,5
+56004375,23761370,5
+77014669,23761370,5
+sulayman0308,23761370,4
+64172865,23761370,5
+2300521,23761370,3
+reneelv,23761370,3
+73317824,23761370,5
+William_Locke,23761370,5
+rebfan,23761370,5
+crazytj,23761370,5
+fakedrum,23761370,5
+magic198911,23761370,5
+dmp,23761370,5
+marina_liu,23761370,5
+55813488,23761370,2
+zoethree,23761370,3
+3912925,23761370,3
+ingi_allen,23761370,5
+88906666,23761370,5
+feliciaLt,23761370,-1
+le_petit_alice,23761370,1
+jessie962464,23761370,5
+alua,23761370,5
+Litt1eSta5,23761370,5
+32558831,23761370,3
+Leslie221,23761370,4
+49046809,23761370,4
+lingjun611,23761370,5
+91575456,23761370,4
+4775119,23761370,5
+potatooo,23761370,5
+tinyuu,23761370,4
+4593197,23761370,5
+61682333,23761370,3
+36321216,23761370,5
+serenatan1114,23761370,4
+shen1110,23761370,4
+97811499,23761370,3
+32791958,23761370,5
+51974103,23761370,3
+kleer,23761370,5
+lishirley,23761370,3
+55937351,23761370,-1
+SkyTangHui,23761370,5
+48198502,23761370,3
+38695828,23761370,5
+Yuer_Wu,23761370,4
+42679617,23761370,-1
+46456770,23761370,5
+42918463,23761370,5
+Joy1023,23761370,5
+30980638,23761370,4
+55943262,23761370,4
+45512867,23761370,5
+45252504,23761370,5
+gaohang,23761370,5
+watcherli,23761370,3
+78940118,23761370,5
+rr317,23761370,5
+52927993,23761370,5
+jiman10000tucao,23761370,1
+su_karen,23761370,4
+liutengzhi,23761370,5
+63461045,23761370,3
+kusanoyui,23761370,4
+2099122,23761370,4
+xiao317,23761370,5
+nivel,23761370,4
+nbpurple,23761370,4
+1780860,23761370,4
+daniellexia,23761370,5
+andy5,23761370,4
+54508124,23761370,5
+80024991,23761370,4
+124847125,23761370,5
+36477944,23761370,4
+48794689,23761370,4
+ruoyingwang,23761370,4
+3982398,23761370,3
+smilediva,23761370,4
+62380532,23761370,5
+53609213,23761370,5
+rexarski,23761370,5
+amandachun-gccz,23761370,4
+115555325,23761370,-1
+zxxaki,23761370,4
+48689695,23761370,5
+2458174,23761370,4
+53503308,23761370,5
+fayi77,23761370,4
+98944241,23761370,5
+94136704,23761370,5
+lesile,23761370,4
+cactusnl,23761370,4
+ahtuan,23761370,4
+46828129,23761370,5
+zuoyulau,23761370,4
+zoelizexin,23761370,5
+67977644,23761370,5
+49765851,23761370,5
+92027453,23761370,5
+jeffblack,23761370,5
+cherrytvxq1126,23761370,5
+wingwahaha,23761370,5
+2052146,23761370,-1
+35367131,23761370,5
+gmrxfx,23761370,4
+65532755,23761370,5
+ruby0511,23761370,5
+90005274,23761370,3
+maples611627,23761370,4
+lesleyxu,23761370,3
+4545647,23761370,5
+4868364,23761370,5
+xianyu719,23761370,3
+2488091,23761370,2
+depressioncat,23761370,5
+cissyxuecc,23761370,4
+52848231,23761370,5
+64373182,23761370,5
+HSDK,23761370,4
+43787915,23761370,4
+Arielcong,23761370,5
+nicolez,23761370,5
+67267631,23761370,5
+67353115,23761370,5
+3395057,23761370,5
+wilsoni3,23761370,5
+oneparty,23761370,3
+26157793,23761370,5
+snowandsummers,23761370,5
+sadiee,23761370,5
+yibo_blink,23761370,5
+heydi,23761370,4
+59886586,23761370,-1
+124833218,23761370,4
+6261473,23761370,4
+littlelu,23761370,5
+Panda0822,23761370,5
+54043321,23761370,5
+zkb-archer,23761370,5
+yishanhe,23761370,5
+viona,23761370,3
+kaolaxing,23761370,4
+rakobi,23761370,3
+38854651,23761370,5
+etern1ty,23761370,5
+67364205,23761370,4
+81552139,23761370,5
+50813433,23761370,5
+37212337,23761370,5
+lobatt,23761370,5
+70296365,23761370,3
+3738773,23761370,5
+zhiyutianhaozi,23761370,5
+sun_1107,23761370,4
+lllusion,23761370,-1
+118862756,23761370,5
+103125299,23761370,5
+56267226,23761370,5
+71663707,23761370,5
+123274527,23761370,4
+50228732,23761370,5
+51367308,23761370,5
+46616811,23761370,5
+boweidasabi,23761370,3
+SVEN-YR,23761370,5
+73769279,23761370,5
+116902692,23761370,4
+79874579,23761370,4
+65662824,23761370,3
+60752428,23761370,5
+77571393,23761370,4
+chanelluo,23761370,5
+mengmeng393,23761370,4
+2417136,23761370,5
+61597442,23761370,5
+62597862,23761370,5
+hwx0807,23761370,4
+57303621,23761370,5
+62270641,23761370,5
+yoisung,23761370,4
+Little09Captain,23761370,5
+3219043,23761370,5
+lulubei,23761370,4
+57996041,23761370,5
+52097421,23761370,5
+34367914,23761370,5
+4537211,23761370,4
+52481154,23761370,5
+tit000,23761370,1
+34596748,23761370,4
+albeedesert,23761370,4
+48212423,23761370,5
+2627935,23761370,3
+55770567,23761370,5
+meilingmj,23761370,5
+viviancai7,23761370,5
+maomaoye,23761370,4
+67550871,23761370,4
+chendax,23761370,5
+53106118,23761370,3
+37050297,23761370,4
+belyone,23761370,4
+56755571,23761370,4
+2785136,23761370,2
+45887661,23761370,4
+109071347,23761370,5
+102725685,23761370,5
+73763567,23761370,5
+1577735,23761370,5
+3457397,23761370,5
+mic1203,23761370,5
+52555096,23761370,4
+ffei593,23761370,5
+ffei593,23761370,5
+76617093,23761370,5
+48606276,23761370,4
+MintManiac,23761370,4
+51231937,23761370,3
+39226398,23761370,5
+NF_xian,23761370,5
+67190853,23761370,5
+ttchen,23761370,5
+2363543,23761370,4
+liaor,23761370,5
+120736500,23761370,5
+92185128,23761370,5
+48751679,23761370,4
+58402026,23761370,5
+cn1027,23761370,5
+48479280,23761370,5
+Brigitte_L,23761370,4
+66362055,23761370,2
+4299425,23761370,3
+irisli777,23761370,5
+48813347,23761370,4
+51393119,23761370,4
+81407053,23761370,5
+Keemen,23761370,4
+Chorai42,23761370,5
+nicolas0606,23761370,3
+iammagic,23761370,4
+xdy1990,23761370,4
+61569566,23761370,5
+63621630,23761370,5
+3284948,23761370,5
+raychau,23761370,3
+alex4814,23761370,4
+elenacaus,23761370,4
+101607871,23761370,5
+mimimamahong_,23761370,3
+xiaomu0813,23761370,3
+52111433,23761370,3
+viviane1989,23761370,4
+3436408,23761370,5
+lv_miyako,23761370,5
+48116810,23761370,5
+74248985,23761370,3
+44586945,23761370,5
+kuku_yang,23761370,4
+xiadandan,23761370,5
+flyingpig312,23761370,5
+79420813,23761370,5
+48796924,23761370,5
+1702693,23761370,5
+yizhibanjie,23761370,5
+edward1988,23761370,2
+yr0109,23761370,4
+nathaneil,23761370,5
+4353625,23761370,4
+59027127,23761370,5
+50234828,23761370,5
+heyyytiffany,23761370,5
+122224124,23761370,5
+46358899,23761370,5
+4482032,23761370,5
+53803517,23761370,5
+OurMovies,23761370,5
+midoushushu,23761370,5
+programet,23761370,5
+Renovatio84,23761370,5
+findmusic,23761370,3
+wangbingyu,23761370,2
+PepsiPussy,23761370,4
+59643892,23761370,5
+119024126,23761370,5
+nobodyisidee,23761370,5
+JASON1986,23761370,3
+52374368,23761370,4
+54111436,23761370,4
+tinylamb,23761370,4
+51048563,23761370,5
+68678476,23761370,3
+sususuya,23761370,4
+63413586,23761370,3
+55356495,23761370,5
+18133718,23761370,4
+lirovise,23761370,5
+phoenix.shan,23761370,3
+4628354,23761370,5
+einverne,23761370,4
+97721547,23761370,4
+silentff,23761370,5
+6442650,23761370,5
+97009281,23761370,5
+guyuemuziye2,23761370,4
+45267369,23761370,-1
+Sally_Wu,23761370,4
+sunshine2.0,23761370,4
+64658457,23761370,4
+amy930,23761370,5
+bu2ny-8023,23761370,5
+precmomen,23761370,3
+51328750,23761370,3
+53532061,23761370,5
+B-162,23761370,5
+shinnodoo,23761370,4
+florahua,23761370,3
+zhuiyii,23761370,4
+80121316,23761370,4
+momo077,23761370,5
+4890225,23761370,5
+59307847,23761370,5
+peholia,23761370,4
+90779258,23761370,5
+42886985,23761370,5
+79829494,23761370,5
+67545074,23761370,5
+35838273,23761370,5
+80634044,23761370,5
+66586990,23761370,5
+willababy,23761370,5
+60623717,23761370,5
+67071901,23761370,5
+49662959,23761370,4
+gaomiao,23761370,5
+sarachung,23761370,5
+sczz_tang,23761370,5
+FlorenceLovers,23761370,5
+44896206,23761370,5
+rabbiton,23761370,4
+SnowlinHu,23761370,5
+56623116,23761370,4
+erin_yyi,23761370,5
+68016906,23761370,5
+tonyandsue,23761370,4
+sharkzifan,23761370,1
+61536666,23761370,5
+85168864,23761370,4
+spyx1njing,23761370,5
+syh202,23761370,5
+69107349,23761370,4
+47585871,23761370,5
+feehan,23761370,-1
+47512500,23761370,5
+jennylee0402,23761370,4
+52138770,23761370,5
+yangziyoko,23761370,5
+reneryu,23761370,5
+fsdyf,23761370,5
+ipanema,23761370,4
+sysysysy,23761370,4
+shunjun,23761370,5
+yueyueunique,23761370,5
+ly_yun811,23761370,4
+41428170,23761370,4
+rainbow0815,23761370,4
+fay19881025,23761370,4
+iris1217,23761370,4
+53798089,23761370,5
+zyj881027,23761370,5
+puppyfanfan,23761370,5
+kailunxuco,23761370,5
+elainemumu,23761370,-1
+79757878,23761370,5
+48849875,23761370,4
+44917242,23761370,3
+phlia,23761370,3
+52318521,23761370,5
+Luciferre,23761370,5
+39792754,23761370,4
+yvesadam,23761370,3
+82362528,23761370,4
+iseeyoubabe,23761370,5
+2127487,23761370,5
+shanshanshanqin,23761370,4
+49791962,23761370,4
+pluiechan,23761370,5
+qiusheng,23761370,4
+34797260,23761370,5
+flytomilan,23761370,5
+hqi7,23761370,5
+pigaret,23761370,4
+zyr920924,23761370,4
+sonfeo,23761370,5
+15821602,23761370,3
+48839347,23761370,3
+45790746,23761370,4
+31713107,23761370,5
+48444678,23761370,4
+2784323,23761370,4
+3908597,23761370,5
+66237715,23761370,5
+1502568,23761370,5
+poppytat,23761370,5
+BenRun,23761370,5
+49441067,23761370,5
+67152183,23761370,5
+27979325,23761370,5
+42360628,23761370,3
+Liluw,23761370,4
+53453211,23761370,3
+56638281,23761370,4
+65457803,23761370,5
+61676565,23761370,5
+73123286,23761370,-1
+87137257,23761370,4
+69255850,23761370,5
+Pavellippo,23761370,4
+hululin,23761370,4
+amaotou,23761370,4
+54813786,23761370,5
+43336457,23761370,5
+rangerswang,23761370,5
+ziyaotang,23761370,5
+ginapoppy,23761370,4
+94168906,23761370,5
+ericandlisa,23761370,4
+53647405,23761370,4
+zhang91823,23761370,-1
+interskh,23761370,4
+70192323,23761370,5
+97443629,23761370,5
+50360714,23761370,5
+50030842,23761370,5
+3890631,23761370,5
+christinaliu,23761370,5
+69489076,23761370,4
+julynight,23761370,5
+lethechris,23761370,4
+benzene,23761370,4
+51781522,23761370,5
+Kimiellen,23761370,5
+momobearbear,23761370,-1
+63871072,23761370,4
+34722246,23761370,4
+tristanye,23761370,4
+muzexun88,23761370,5
+16716071,23761370,5
+3884388,23761370,4
+21771687,23761370,3
+1948721,23761370,5
+bonnieliu0718,23761370,4
+sylvie_l,23761370,5
+lenglen,23761370,4
+thunderous,23761370,3
+QiangL,23761370,3
+59292045,23761370,5
+8083237,23761370,5
+3399900,23761370,5
+73639448,23761370,5
+NirvanAnswer,23761370,4
+shelley824,23761370,5
+HowardRoark,23761370,4
+Sylein,23761370,3
+50880028,23761370,4
+cynthia311,23761370,5
+cccccecile,23761370,4
+102916412,23761370,4
+landcrosser,23761370,4
+rominakata,23761370,5
+moonglade,23761370,5
+itisadamas,23761370,4
+ninjaliu,23761370,5
+70159805,23761370,3
+pumpink,23761370,5
+54783024,23761370,4
+43674596,23761370,5
+jmatsingapore,23761370,5
+49893874,23761370,3
+ostrichbaby,23761370,4
+48074092,23761370,3
+ichliebeiceland,23761370,3
+edocsil,23761370,5
+3966164,23761370,5
+87560715,23761370,5
+3480100,23761370,5
+4713496,23761370,4
+60853996,23761370,4
+41566646,23761370,4
+RBMILAN-zwy,23761370,5
+subject,23761370,5
+65161359,23761370,4
+69433839,23761370,5
+84393372,23761370,5
+37112433,23761370,5
+Huii.,23761370,5
+saaaaaaa,23761370,2
+2812599,23761370,5
+49447425,23761370,2
+68967658,23761370,5
+79833907,23761370,5
+lrsnsyzb,23761370,4
+60870044,23761370,5
+huangshisi,23761370,3
+96039982,23761370,5
+67844394,23761370,3
+44728414,23761370,5
+124238314,23761370,5
+59249083,23761370,5
+52701290,23761370,4
+4518731,23761370,4
+superegg.,23761370,4
+39255754,23761370,4
+34558131,23761370,4
+34753066,23761370,5
+38770627,23761370,5
+14465196,23761370,3
+lazyfoliage,23761370,4
+2528826,23761370,4
+roro0306,23761370,4
+newyow,23761370,4
+l.j.dreamland,23761370,5
+chadpowell,23761370,3
+angengel,23761370,4
+FinnieXu,23761370,5
+24935994,23761370,3
+jccycj,23761370,4
+3538572,23761370,3
+57701070,23761370,5
+60513029,23761370,5
+lilypure,23761370,4
+littledorothy,23761370,5
+luka1990,23761370,5
+heptahedron,23761370,-1
+Gevjon,23761370,4
+10402342,23761370,4
+57693045,23761370,5
+arthurx,23761370,5
+102797351,23761370,5
+jkt0734,23761370,5
+rickycc,23761370,4
+121620281,23761370,4
+changemelwy,23761370,5
+onlysunkk,23761370,5
+55705550,23761370,5
+97416681,23761370,4
+80177881,23761370,4
+3432492,23761370,5
+61688414,23761370,5
+55321453,23761370,5
+37589827,23761370,5
+2569116,23761370,5
+73723847,23761370,1
+2863758,23761370,5
+4537031,23761370,4
+ananny,23761370,5
+Gmosquito,23761370,4
+cherry0908,23761370,4
+luoxianyuan,23761370,5
+honeylee,23761370,5
+56488690,23761370,5
+77905933,23761370,5
+yezihanxu,23761370,3
+93699875,23761370,4
+gluestick,23761370,5
+chrislam,23761370,5
+margaret_wmx,23761370,4
+124573622,23761370,2
+40018241,23761370,5
+55915124,23761370,5
+48967001,23761370,5
+abelxing,23761370,3
+124640229,23761370,4
+79793599,23761370,5
+59959824,23761370,4
+59011123,23761370,4
+ZHIFAN,23761370,5
+wuyefeibao,23761370,5
+laoshudeshijie,23761370,4
+49515197,23761370,5
+anyu1029,23761370,5
+124597343,23761370,5
+1274020,23761370,5
+68227139,23761370,5
+84614536,23761370,5
+55319176,23761370,5
+pgezhu,23761370,3
+shaoyi,23761370,3
+recheng,23761370,4
+63314941,23761370,5
+A-deux-K,23761370,5
+55380431,23761370,5
+babe_of_pisces,23761370,5
+92154799,23761370,5
+62340253,23761370,5
+38547386,23761370,4
+55466368,23761370,4
+89931172,23761370,4
+53601527,23761370,5
+122161339,23761370,5
+benjamin4ever,23761370,4
+aether1013,23761370,4
+55535474,23761370,-1
+51474654,23761370,4
+123172810,23761370,5
+87578866,23761370,5
+thinkerfeng,23761370,4
+62554570,23761370,2
+lijinhui,23761370,4
+maoyu,23761370,3
+sky15,23761370,5
+viatina,23761370,5
+boluzhang,23761370,4
+43991440,23761370,5
+37296535,23761370,3
+vanlove,23761370,5
+83749532,23761370,5
+Y-hyacinth,23761370,3
+46509614,23761370,5
+venhow,23761370,2
+lemonshammy,23761370,-1
+54433785,23761370,5
+34473328,23761370,5
+saltysun,23761370,5
+rafael1986,23761370,5
+102639642,23761370,4
+pink_summer,23761370,4
+dgtdgb,23761370,5
+42400624,23761370,4
+jingcailife,23761370,4
+donatello,23761370,5
+47238636,23761370,-1
+47999352,23761370,5
+47999352,23761370,5
+sherrycyq,23761370,-1
+xiaomayi0323,23761370,5
+49499844,23761370,5
+26702959,23761370,5
+fnks,23761370,5
+3564797,23761370,3
+moneybear,23761370,4
+greenyyo,23761370,4
+2024774,23761370,4
+todayseizer,23761370,5
+regardez_moi,23761370,-1
+luojiu,23761370,-1
+abin520918,23761370,5
+60018944,23761370,5
+4252298,23761370,2
+ya19910907,23761370,5
+s7v7n86,23761370,4
+maxyuan,23761370,3
+Jackieee_28,23761370,5
+MayaDey,23761370,3
+jichan,23761370,-1
+41242318,23761370,5
+77459141,23761370,4
+46016357,23761370,5
+Ryansher,23761370,1
+4305669,23761370,2
+x1nyu,23761370,-1
+48984512,23761370,4
+bluebamboo,23761370,5
+ivy0731,23761370,5
+qianhaowu,23761370,5
+47587724,23761370,5
+hetells,23761370,5
+fanyi0109,23761370,5
+66829235,23761370,4
+ireneqian,23761370,5
+zhenjunliu,23761370,5
+115202805,23761370,5
+37255357,23761370,5
+54504933,23761370,5
+maoxiaotao,23761370,5
+phoenixlee,23761370,5
+problem123,23761370,3
+81277517,23761370,5
+1811212,23761370,5
+35777009,23761370,-1
+baoshumin,23761370,3
+ClockSheepZ,23761370,4
+jiduohuanle,23761370,4
+chengchen0121,23761370,4
+heraunty,23761370,3
+54666689,23761370,5
+4105781,23761370,4
+villena,23761370,5
+ooo000ooo,23761370,4
+cassiopeiaxiah,23761370,4
+koly1987,23761370,5
+douding1024,23761370,3
+67331748,23761370,2
+dnarna_vicky,23761370,-1
+morphinerouge,23761370,4
+haiserlu,23761370,5
+2088344,23761370,4
+59733385,23761370,5
+xumhandy,23761370,5
+woaitongdd,23761370,5
+anamorphose,23761370,5
+52014537,23761370,5
+joranli,23761370,5
+Alien_Alice,23761370,2
+4292579,23761370,3
+xideal,23761370,4
+weinitadaya,23761370,4
+zeroflowing,23761370,5
+stella_zhou,23761370,4
+zhangxingshen,23761370,4
+WindyWoods,23761370,3
+tgan10,23761370,5
+52137256,23761370,5
+edchan,23761370,4
+heixxj,23761370,5
+aiyowocao,23761370,-1
+52403253,23761370,4
+60038380,23761370,3
+76553080,23761370,5
+bunnyshinoda,23761370,4
+vivienp,23761370,5
+jalouse,23761370,5
+64387229,23761370,4
+walkeri,23761370,5
+50700722,23761370,5
+76689420,23761370,2
+68577121,23761370,3
+37497401,23761370,5
+3579800,23761370,5
+lovezaxcat,23761370,5
+39029113,23761370,4
+Niiiil_f,23761370,5
+2713839,23761370,5
+50103716,23761370,5
+lovely-zi,23761370,5
+NarcissusMomo,23761370,3
+jerviscz,23761370,4
+4587542,23761370,5
+43509887,23761370,5
+45840603,23761370,4
+kejinlong,23761370,4
+101967009,23761370,5
+53656219,23761370,4
+queenieliao,23761370,5
+edison.xyz,23761370,1
+mito,23761370,3
+undo9,23761370,5
+59677707,23761370,5
+61499382,23761370,5
+38651346,23761370,5
+59967815,23761370,4
+49479464,23761370,-1
+kiruka,23761370,5
+xiaoliandd54,23761370,3
+shirley863,23761370,-1
+yiayia1023,23761370,5
+kenzone,23761370,5
+caihx,23761370,3
+amyzane,23761370,5
+3846941,23761370,4
+41397812,23761370,5
+hwf254,23761370,5
+seekingwjy,23761370,5
+119559372,23761370,5
+119931381,23761370,5
+76146142,23761370,4
+64456556,23761370,5
+2228048,23761370,5
+singlesinger,23761370,4
+Edvar,23761370,2
+jasoncx,23761370,4
+4570225,23761370,4
+apple475,23761370,4
+spaceli,23761370,5
+57990843,23761370,5
+49676841,23761370,5
+61879680,23761370,-1
+summerwoods,23761370,5
+63716641,23761370,5
+crazyrobot,23761370,3
+53735887,23761370,5
+WitchBunny,23761370,3
+richer725,23761370,3
+39294617,23761370,4
+imuuuu,23761370,5
+61183081,23761370,3
+CityOfShadows,23761370,4
+1789314,23761370,3
+hyuk35zm,23761370,4
+68942746,23761370,3
+3391373,23761370,4
+64164296,23761370,4
+46144657,23761370,3
+53531270,23761370,5
+47026791,23761370,5
+48066975,23761370,5
+2192381,23761370,4
+1239706,23761370,5
+summerpool,23761370,5
+26482350,23761370,5
+isayan,23761370,3
+122706377,23761370,5
+60107866,23761370,3
+miyukihyde666,23761370,4
+marcoooo,23761370,4
+bella_1993,23761370,5
+60222114,23761370,4
+79571053,23761370,4
+Cimmy,23761370,5
+kangtadlt,23761370,5
+73594919,23761370,5
+qweerew,23761370,5
+73199533,23761370,5
+neptune_smile,23761370,5
+3278968,23761370,5
+xuemengfei,23761370,5
+48984292,23761370,4
+ixiaomaye,23761370,3
+63006818,23761370,5
+geeglory,23761370,2
+68186986,23761370,5
+30725262,23761370,5
+pig4lover,23761370,4
+towerH,23761370,5
+65431582,23761370,2
+ariafield,23761370,-1
+louis_li,23761370,4
+worldman55555,23761370,3
+12391728,23761370,4
+gh13singer,23761370,4
+RanQixi,23761370,3
+97542556,23761370,5
+49651658,23761370,-1
+youhuizi,23761370,5
+59302695,23761370,5
+iwhatever,23761370,4
+tuming1990,23761370,5
+2592298,23761370,4
+Gorjess3,23761370,5
+3613357,23761370,5
+60048536,23761370,5
+Chiunotfortoday,23761370,5
+62149815,23761370,5
+66907377,23761370,5
+48260143,23761370,5
+58922364,23761370,5
+urielwang,23761370,4
+ataxi,23761370,5
+119490218,23761370,3
+heryard,23761370,4
+angelmagazine,23761370,4
+astroangel,23761370,5
+ILWTFT,23761370,4
+littlemonster93,23761370,5
+67560502,23761370,5
+65441793,23761370,5
+82187985,23761370,5
+zhangtingrui,23761370,5
+aaaaaaalice,23761370,5
+hyx0724,23761370,5
+32722540,23761370,5
+princefelipe,23761370,5
+3803915,23761370,5
+ifuya,23761370,5
+jimmy78801,23761370,5
+85110196,23761370,4
+lianyalee,23761370,5
+SabrinaChen,23761370,4
+ohsimoncool,23761370,5
+50594493,23761370,4
+Exiaofei,23761370,5
+1595012,23761370,2
+63305510,23761370,3
+34454459,23761370,5
+fevermania,23761370,-1
+lettyhuang,23761370,5
+ryan220,23761370,5
+supermelon,23761370,5
+45551543,23761370,5
+2135192,23761370,3
+66692285,23761370,4
+mfishoo,23761370,4
+dai_tt,23761370,3
+2465284,23761370,5
+David930,23761370,5
+25569564,23761370,4
+34459109,23761370,5
+path45,23761370,5
+44219353,23761370,5
+cindyrabbit,23761370,4
+24112539,23761370,4
+flowerwithalice,23761370,5
+47052225,23761370,4
+45886049,23761370,4
+julia_qi,23761370,4
+35645675,23761370,5
+boyounghua,23761370,4
+biglaitythecure,23761370,4
+kianfish,23761370,-1
+3918619,23761370,5
+40371570,23761370,4
+superkongxx,23761370,5
+53981944,23761370,5
+3310354,23761370,3
+yikoyumisa,23761370,5
+4440208,23761370,4
+58011320,23761370,4
+suyimo,23761370,4
+55832458,23761370,3
+emma1127,23761370,5
+Milckhy,23761370,5
+47448827,23761370,5
+47448827,23761370,5
+onlylefthand,23761370,4
+luyanyihan,23761370,5
+52023451,23761370,5
+11189422,23761370,4
+4078308,23761370,-1
+Zhedong,23761370,3
+alvie,23761370,-1
+4916602,23761370,5
+71985811,23761370,5
+xiaozha007,23761370,4
+Christina63,23761370,5
+62741723,23761370,5
+52269090,23761370,5
+tcff,23761370,5
+momomosuck,23761370,4
+yeallingmay,23761370,5
+3424286,23761370,5
+58451948,23761370,4
+74916567,23761370,5
+57389316,23761370,4
+Nassco,23761370,3
+bunny_Shen,23761370,5
+60952768,23761370,4
+xuweihua,23761370,5
+42291551,23761370,4
+97118853,23761370,1
+1388786,23761370,5
+75209751,23761370,5
+oralm,23761370,1
+34668120,23761370,4
+harry731,23761370,5
+jtothen,23761370,5
+61785634,23761370,4
+53323190,23761370,5
+sinkeyq,23761370,5
+80570322,23761370,4
+doctorecho,23761370,4
+riplilse7en,23761370,4
+47155464,23761370,4
+2107434,23761370,4
+lyzhie,23761370,4
+50785660,23761370,5
+3435212,23761370,4
+34461821,23761370,5
+1617432,23761370,4
+3751807,23761370,2
+49177191,23761370,5
+Veronicam,23761370,4
+52859781,23761370,3
+rainie1005,23761370,5
+38504197,23761370,4
+litlfaiv,23761370,-1
+liujieruo,23761370,5
+zzhumemory,23761370,4
+zihana,23761370,3
+1159054,23761370,3
+jiayi6616,23761370,5
+40750297,23761370,5
+ruki,23761370,5
+45381894,23761370,5
+bartonmoney,23761370,5
+67672494,23761370,5
+angelaibobo,23761370,-1
+3427595,23761370,5
+43776397,23761370,5
+26921092,23761370,-1
+dogkingcatqueen,23761370,3
+lillianana1260,23761370,5
+2754169,23761370,5
+122804233,23761370,4
+dearmagic,23761370,5
+13766234,23761370,5
+89320570,23761370,5
+brainlesscong,23761370,4
+sailyang,23761370,5
+sunshuqiaossq,23761370,3
+KiMika,23761370,5
+39566719,23761370,2
+15181941,23761370,4
+manyandandan,23761370,4
+unclecake,23761370,5
+48295646,23761370,5
+poros,23761370,-1
+tfdlyoo,23761370,-1
+73919831,23761370,5
+61681406,23761370,5
+62525976,23761370,3
+tzizajuly,23761370,4
+63641530,23761370,4
+xiaomengqiuyue,23761370,5
+41743713,23761370,5
+84975793,23761370,4
+2194320,23761370,5
+31591592,23761370,4
+83550216,23761370,5
+33575961,23761370,-1
+57707299,23761370,4
+58249088,23761370,3
+wywu1990,23761370,4
+66189087,23761370,4
+48287443,23761370,5
+IcbM,23761370,4
+39073606,23761370,5
+49174691,23761370,5
+lovedujuan,23761370,3
+35200825,23761370,4
+emma777,23761370,5
+63839731,23761370,4
+lisamashroom,23761370,5
+Jillie,23761370,4
+58707423,23761370,4
+spark0601,23761370,4
+47011778,23761370,-1
+mushroomcloud,23761370,5
+47379145,23761370,4
+18360610,23761370,3
+zhangqian102,23761370,2
+26039197,23761370,5
+yoyoj,23761370,5
+chuleiwu,23761370,4
+thechamp,23761370,4
+52828296,23761370,4
+49297870,23761370,5
+50183995,23761370,5
+haungli_hl,23761370,4
+67689487,23761370,4
+marvellousmaggi,23761370,-1
+62041665,23761370,4
+50010079,23761370,5
+lujcmss,23761370,5
+nicole_do,23761370,5
+Vincentwsk,23761370,4
+CraziLaura,23761370,5
+AaronMix,23761370,5
+Amour-Xerophyte,23761370,4
+57828105,23761370,5
+55960754,23761370,5
+36049101,23761370,5
+120703929,23761370,5
+cmzcgq,23761370,4
+3731360,23761370,3
+41080463,23761370,5
+67843912,23761370,3
+82145763,23761370,5
+2741464,23761370,4
+49285560,23761370,5
+jessica_joy5,23761370,5
+peilic1020,23761370,4
+60673865,23761370,4
+u-know17,23761370,5
+Sophiaxixi,23761370,5
+77395757,23761370,4
+40892198,23761370,-1
+kingevin_cho,23761370,5
+stsu,23761370,5
+stephanie_chen,23761370,5
+RITABMW,23761370,4
+shushibi,23761370,3
+45556417,23761370,5
+29382908,23761370,4
+49606070,23761370,4
+81431649,23761370,3
+helen--lu,23761370,4
+matlab,23761370,4
+55319489,23761370,5
+54018069,23761370,4
+50195646,23761370,5
+67791231,23761370,4
+lengjueye,23761370,-1
+104428490,23761370,4
+helloLins,23761370,5
+52690453,23761370,5
+58030320,23761370,5
+48661159,23761370,3
+nianmo,23761370,-1
+4702861,23761370,5
+106379353,23761370,5
+49642517,23761370,4
+46025465,23761370,5
+psychojudy,23761370,-1
+wanglq,23761370,5
+1893736,23761370,3
+44891162,23761370,4
+zhoubaicai,23761370,-1
+90548650,23761370,5
+48502563,23761370,5
+48964885,23761370,5
+3852850,23761370,-1
+76970827,23761370,4
+56959845,23761370,5
+jiangziwen,23761370,4
+ark891209,23761370,5
+4407883,23761370,3
+39355167,23761370,4
+12274848,23761370,5
+3628727,23761370,5
+25538128,23761370,5
+Ivy_bramble,23761370,5
+hrzlvn,23761370,4
+80936991,23761370,4
+47533995,23761370,5
+47150276,23761370,5
+42645237,23761370,4
+82836529,23761370,5
+smurf0911,23761370,3
+119325282,23761370,4
+70354931,23761370,5
+jediknight,23761370,4
+54941274,23761370,5
+zmj13,23761370,5
+iris77yaxo,23761370,2
+48204771,23761370,4
+3573130,23761370,4
+6618394,23761370,4
+falling__slowly,23761370,5
+MATTZ,23761370,5
+39561667,23761370,4
+71100061,23761370,5
+Dabble,23761370,4
+ichee,23761370,5
+lrshmily,23761370,5
+you3white,23761370,4
+Isil.G,23761370,5
+zhaixi,23761370,5
+princessqfy,23761370,5
+clarehsu0203,23761370,4
+39543044,23761370,5
+tianrunhe,23761370,5
+61712114,23761370,4
+mason7,23761370,5
+3033139,23761370,4
+68027669,23761370,5
+eaborn,23761370,5
+61591790,23761370,5
+ss_li,23761370,4
+50219893,23761370,5
+1418770,23761370,5
+xuqianxun,23761370,4
+Shyt_summer,23761370,5
+flyfy,23761370,5
+spzmoon,23761370,5
+51918666,23761370,5
+49718559,23761370,5
+xiaoyaoworm,23761370,4
+48044328,23761370,4
+floatorange,23761370,3
+wuzhaozhao,23761370,5
+duanduankong,23761370,5
+duoran_,23761370,5
+glassywitch,23761370,3
+4553271,23761370,4
+ohgoogjump,23761370,5
+yytaizi,23761370,4
+lyndonneu,23761370,5
+68479471,23761370,4
+120720922,23761370,5
+miaoxiaoqiu,23761370,5
+eggtree,23761370,4
+anthony1123,23761370,3
+26173061,23761370,5
+fandashu,23761370,4
+2309931,23761370,3
+facingdwy,23761370,4
+78977506,23761370,5
+neema,23761370,3
+Jonhanna,23761370,4
+mskitten,23761370,2
+pqqy,23761370,4
+49346952,23761370,4
+Sunbowinrain,23761370,5
+50897878,23761370,2
+liu_xiaoyu,23761370,4
+82779684,23761370,5
+62862861,23761370,5
+40979259,23761370,4
+42074061,23761370,3
+46378874,23761370,5
+43128357,23761370,3
+46793847,23761370,5
+zhtianyu,23761370,5
+81692213,23761370,4
+57993547,23761370,5
+62213699,23761370,5
+iamiamphilip,23761370,3
+51391471,23761370,5
+ryeon,23761370,4
+nicole0107,23761370,5
+54131075,23761370,5
+et2o,23761370,2
+73282611,23761370,5
+59990067,23761370,5
+inging,23761370,5
+58009000,23761370,3
+70416305,23761370,4
+68948810,23761370,5
+47618742,23761370,5
+52718923,23761370,5
+graceguolinjing,23761370,4
+Vanaf,23761370,4
+wzh1995,23761370,5
+czhou,23761370,5
+76731702,23761370,5
+3280103,23761370,3
+58523222,23761370,4
+icelemons,23761370,5
+lisa-l,23761370,5
+davidevans,23761370,4
+shisan107,23761370,5
+ashgone,23761370,3
+3908249,23761370,5
+fengyalan,23761370,5
+lanmon,23761370,2
+68454681,23761370,3
+43019845,23761370,5
+zuoxunlian,23761370,5
+elwingt,23761370,5
+OliviaQiuau,23761370,5
+57200771,23761370,5
+4687562,23761370,5
+wuyantutu,23761370,4
+119419174,23761370,5
+46953232,23761370,-1
+whateverrr,23761370,3
+ArcherF,23761370,5
+tuoxiaotu,23761370,5
+1752320,23761370,3
+xiongye,23761370,4
+YuRAY,23761370,4
+88446212,23761370,5
+43286962,23761370,5
+2824286,23761370,3
+yuyiheng,23761370,-1
+44087173,23761370,5
+48495423,23761370,5
+yozoh96119,23761370,5
+43594988,23761370,4
+52117309,23761370,5
+34575902,23761370,5
+25960765,23761370,4
+4401259,23761370,5
+3913549,23761370,5
+guomuyang,23761370,4
+Shaylee,23761370,4
+baywreath,23761370,4
+64213791,23761370,5
+74913423,23761370,5
+Mini_Dragon,23761370,5
+56480741,23761370,5
+zy421,23761370,5
+3124037,23761370,5
+71652538,23761370,5
+96429395,23761370,5
+Chenjingwang92,23761370,3
+zachzhou,23761370,4
+papizza,23761370,5
+li2007,23761370,4
+3553432,23761370,3
+49099822,23761370,2
+66096605,23761370,5
+45251073,23761370,4
+realbamboo,23761370,4
+bjmiss,23761370,5
+norah1212,23761370,5
+62658444,23761370,3
+51888816,23761370,3
+tinyrabbit,23761370,4
+2185769,23761370,5
+kjlart,23761370,5
+40994633,23761370,3
+chmax31,23761370,-1
+1428744,23761370,4
+chefan1115,23761370,4
+shouxiaohei,23761370,5
+Gally,23761370,3
+3513677,23761370,4
+anru,23761370,5
+shawyim,23761370,3
+yeti4ever,23761370,4
+89972315,23761370,3
+46920813,23761370,4
+robamgu,23761370,5
+biteorange,23761370,5
+wnovic,23761370,5
+rollyv5,23761370,2
+3096198,23761370,5
+53869706,23761370,5
+4000873,23761370,5
+yoyo_ran,23761370,4
+61741541,23761370,4
+31829297,23761370,2
+rachelray83,23761370,4
+the7th_bloom,23761370,4
+9164431,23761370,4
+shigusawa,23761370,5
+sakurazizi,23761370,4
+58926634,23761370,5
+james089,23761370,5
+1454015,23761370,4
+4632971,23761370,5
+hey_m1loca_,23761370,5
+1548746,23761370,5
+13036313,23761370,4
+boneloverock,23761370,4
+jy41,23761370,5
+cpcp,23761370,5
+Raisin,23761370,5
+jodiesun,23761370,4
+69388549,23761370,5
+jxiaomao,23761370,4
+bubblepop,23761370,-1
+effy1027,23761370,5
+57260239,23761370,5
+89869233,23761370,5
+57892517,23761370,4
+kiwiyui,23761370,5
+43942858,23761370,5
+66878450,23761370,3
+ruo619,23761370,4
+leecyril,23761370,5
+scorpiogirljill,23761370,4
+53633250,23761370,5
+89262639,23761370,5
+65758167,23761370,5
+69725938,23761370,4
+amoamoamoamoamo,23761370,5
+rudygiraffe,23761370,3
+MENCHI,23761370,5
+verachen,23761370,5
+shen0809yang,23761370,5
+Wangxinjiareo,23761370,5
+3753878,23761370,5
+kevinyan13,23761370,5
+Septembres,23761370,3
+thisisisabella,23761370,5
+67943724,23761370,5
+92180345,23761370,5
+sillage_dm,23761370,3
+124118579,23761370,5
+qian_natsu,23761370,5
+48903607,23761370,4
+103060200,23761370,3
+iliuweiming,23761370,4
+51967154,23761370,2
+ktsobright,23761370,3
+37197206,23761370,5
+54400244,23761370,-1
+R.Samsara,23761370,5
+54066175,23761370,5
+66967830,23761370,5
+lavendercx,23761370,5
+frayd,23761370,5
+60577747,23761370,5
+giddens,23761370,5
+38508819,23761370,5
+4161702,23761370,5
+privateplot,23761370,-1
+35575281,23761370,3
+JerrySunChen,23761370,5
+54711543,23761370,4
+jerry1992,23761370,5
+troy521,23761370,5
+54959487,23761370,4
+EloiseL,23761370,5
+4636124,23761370,4
+50092483,23761370,4
+mr81,23761370,4
+46196239,23761370,4
+4231536,23761370,4
+44514288,23761370,5
+isaxue,23761370,5
+AnaerobicResp,23761370,5
+dorothealu,23761370,4
+luckyjessica,23761370,5
+lolitagreen,23761370,3
+54525580,23761370,5
+llamame,23761370,4
+48465073,23761370,5
+jerrynmb,23761370,5
+liamyeung,23761370,5
+48102408,23761370,3
+liero,23761370,5
+33777026,23761370,5
+86193611,23761370,5
+PrinceLu,23761370,4
+jasonwzz,23761370,5
+ValentineQ,23761370,5
+rocara,23761370,3
+52416544,23761370,2
+54507832,23761370,5
+58048362,23761370,5
+71968197,23761370,1
+longnnight,23761370,4
+A-OK,23761370,5
+jojojoshow,23761370,4
+evenone,23761370,5
+62400422,23761370,4
+lucyseven,23761370,4
+122859901,23761370,5
+63989075,23761370,4
+Broderick,23761370,5
+simizi-Cee,23761370,4
+memotown07,23761370,5
+3948990,23761370,2
+2853059,23761370,5
+38955500,23761370,4
+2231082,23761370,5
+mayting,23761370,4
+abcclk,23761370,5
+54384747,23761370,5
+55772953,23761370,5
+rachelff,23761370,5
+rockyanhua,23761370,4
+57794823,23761370,4
+3309017,23761370,4
+lsloveshow,23761370,5
+majorjohn,23761370,4
+57906332,23761370,4
+yingtianjin,23761370,5
+sickroom305,23761370,5
+angelaxie,23761370,5
+Tommy-Zhou,23761370,5
+xiaozhenzi_zz,23761370,5
+47622051,23761370,5
+metaleddie,23761370,5
+2959380,23761370,5
+68974440,23761370,5
+69131576,23761370,5
+55364280,23761370,4
+lynnwhite,23761370,5
+50154536,23761370,5
+19863736,23761370,5
+40559395,23761370,3
+49284769,23761370,-1
+taliyan,23761370,3
+58458320,23761370,5
+will_u,23761370,4
+stacy-agony,23761370,5
+51183805,23761370,4
+45446265,23761370,4
+75242193,23761370,5
+yre,23761370,5
+48808158,23761370,5
+38361995,23761370,4
+1851702,23761370,4
+55426628,23761370,5
+54364029,23761370,5
+46897570,23761370,3
+4860409,23761370,3
+sususlsz,23761370,3
+47705439,23761370,4
+Carl0809,23761370,4
+54076788,23761370,5
+sallen,23761370,5
+3673640,23761370,5
+60015867,23761370,4
+62055436,23761370,5
+51676636,23761370,4
+clarified,23761370,5
+4402728,23761370,5
+56559303,23761370,5
+57815451,23761370,4
+Eataix,23761370,3
+79262344,23761370,5
+42065664,23761370,5
+58878500,23761370,2
+rongjiexuanlv,23761370,5
+57438194,23761370,4
+50484635,23761370,3
+3572503,23761370,4
+xixiai,23761370,5
+qinsining,23761370,5
+wenbao,23761370,4
+1563212,23761370,-1
+76191580,23761370,3
+CrystalSleeper,23761370,5
+50144135,23761370,5
+68042727,23761370,4
+64141049,23761370,4
+norge,23761370,5
+47510305,23761370,3
+47415890,23761370,5
+monkey2b,23761370,5
+Duckpear10,23761370,5
+Sammyzheng,23761370,4
+forla,23761370,5
+anearl,23761370,4
+49822426,23761370,5
+zealsuo,23761370,4
+wzn,23761370,4
+69105248,23761370,5
+88712828,23761370,5
+therealfifi,23761370,5
+49501478,23761370,3
+48771374,23761370,5
+65357548,23761370,4
+josie5dance,23761370,-1
+qinduo,23761370,5
+mearcher,23761370,4
+queenic,23761370,4
+kkfkk,23761370,4
+lidouble,23761370,4
+2976358,23761370,4
+46158204,23761370,5
+cmqmimi,23761370,5
+laura_ch,23761370,5
+51244718,23761370,5
+50277925,23761370,3
+ann-in-april,23761370,4
+Pabalee,23761370,4
+43649189,23761370,4
+amazingta,23761370,5
+macybing,23761370,5
+AkiranoAsahi,23761370,5
+66030450,23761370,5
+erickyee,23761370,3
+riverheai,23761370,-1
+Fay59,23761370,5
+CatPrince,23761370,5
+xxxeleven,23761370,5
+danger8413,23761370,3
+39636766,23761370,4
+46341101,23761370,4
+52790328,23761370,5
+113467292,23761370,4
+25686543,23761370,4
+liebe_ente,23761370,5
+face_off,23761370,2
+75007497,23761370,5
+dragonfigo,23761370,4
+unarcenciel,23761370,4
+fernweh,23761370,5
+47917142,23761370,5
+65934035,23761370,4
+79085491,23761370,4
+litash,23761370,4
+53510827,23761370,5
+finalburn,23761370,5
+58732271,23761370,5
+willywyang,23761370,5
+40765738,23761370,-1
+4594646,23761370,5
+lovemapaandhuhu,23761370,5
+61092160,23761370,5
+66768823,23761370,5
+chrisWen,23761370,5
+4332872,23761370,5
+28736860,23761370,3
+65680836,23761370,5
+39147275,23761370,5
+thedharmabum,23761370,2
+4606993,23761370,4
+1223426,23761370,4
+dengzhiyou,23761370,4
+3983208,23761370,4
+48689412,23761370,5
+fashional,23761370,4
+kz47,23761370,5
+57124272,23761370,5
+pinkopink,23761370,5
+49386304,23761370,5
+akarin,23761370,4
+librapan,23761370,5
+49719880,23761370,5
+74993789,23761370,3
+Tryortry,23761370,4
+88741706,23761370,-1
+120225989,23761370,5
+95794515,23761370,5
+starrynite,23761370,5
+29515987,23761370,3
+41277351,23761370,5
+lemonspirit,23761370,5
+queenchelsea,23761370,3
+octeven,23761370,5
+40309421,23761370,5
+ywx100407,23761370,-1
+84250012,23761370,4
+58956224,23761370,4
+60515729,23761370,4
+31622009,23761370,5
+Blair-L,23761370,5
+Aaronbin,23761370,4
+70825764,23761370,5
+bebesummer,23761370,3
+22785617,23761370,5
+VVIVXIV,23761370,4
+41191561,23761370,2
+103178426,23761370,5
+kirsten7,23761370,5
+derekderek,23761370,4
+71723686,23761370,5
+68918996,23761370,5
+Just-My-Luck.,23761370,4
+Linkinport,23761370,5
+MoJiu,23761370,5
+64694528,23761370,5
+39707780,23761370,4
+67013615,23761370,5
+84828143,23761370,5
+84828143,23761370,5
+qzl,23761370,4
+118190387,23761370,4
+dddhkbj2333,23761370,5
+52331791,23761370,3
+majolica,23761370,5
+jirosan,23761370,5
+61110648,23761370,5
+43308232,23761370,5
+KayeFiennes,23761370,-1
+kalla,23761370,4
+51342796,23761370,5
+dazhao,23761370,5
+rabbityinyin,23761370,-1
+winter-h,23761370,4
+52583509,23761370,3
+55845400,23761370,5
+70006548,23761370,5
+tonyhuihui,23761370,5
+hailie0421,23761370,1
+rienge,23761370,5
+jilianchitang,23761370,4
+paulgerchen,23761370,4
+4042513,23761370,5
+3947395,23761370,5
+15262776,23761370,4
+Moretoless,23761370,4
+jiqn,23761370,5
+roseme,23761370,3
+90564869,23761370,4
+52032404,23761370,4
+48904916,23761370,4
+49325422,23761370,4
+34543870,23761370,4
+robinwx,23761370,5
+ikeike,23761370,3
+skay,23761370,5
+58906924,23761370,4
+jwangab,23761370,5
+digdug,23761370,5
+didijia,23761370,4
+marmar,23761370,5
+dnt,23761370,5
+6023961,23761370,4
+54424447,23761370,5
+dr_new,23761370,4
+26545118,23761370,5
+sunny1992,23761370,4
+Viadrina,23761370,5
+dan_ger,23761370,4
+pandalam,23761370,5
+97431474,23761370,4
+9998453,23761370,5
+56459606,23761370,3
+foreveryoung09,23761370,4
+35073852,23761370,5
+sinbone,23761370,4
+sunshinezz1991,23761370,5
+4896156,23761370,5
+55540473,23761370,4
+75486420,10727641,4
+69251373,10727641,3
+48528115,10727641,2
+83538603,10727641,2
+socalledaeolus,10727641,3
+48997876,10727641,5
+83722175,10727641,4
+foreveryoung...,10727641,3
+52421629,10727641,-1
+sobbingnight,10727641,4
+53477722,10727641,5
+narcisusss,10727641,4
+49825242,10727641,3
+iwangke,10727641,4
+48989032,10727641,3
+64716871,10727641,4
+42137037,10727641,4
+45929722,10727641,3
+CrashCaine,10727641,4
+Alpinist,10727641,4
+42411779,10727641,4
+nlai,10727641,4
+124168888,10727641,3
+64865370,10727641,4
+lvhuimin,10727641,4
+55443170,10727641,4
+136663776,10727641,3
+fancybear,10727641,3
+52639695,10727641,3
+58064926,10727641,4
+63656505,10727641,5
+shane90,10727641,4
+69682298,10727641,3
+ashley17,10727641,2
+71220393,10727641,5
+64092114,10727641,5
+120681314,10727641,-1
+yehewanshixing,10727641,4
+41495090,10727641,4
+3733528,10727641,4
+52319760,10727641,3
+eefee,10727641,3
+64280895,10727641,2
+48599915,10727641,5
+Omnifield,10727641,4
+67758784,10727641,5
+101837882,10727641,3
+131380048,10727641,5
+94578244,10727641,4
+81652871,10727641,3
+104167946,10727641,4
+zhibiaoshi,10727641,3
+68205783,10727641,5
+shuai19930426,10727641,4
+51064618,10727641,3
+randi0103,10727641,4
+kanxiao,10727641,4
+65053075,10727641,5
+4582130,10727641,4
+readmovie,10727641,3
+127118502,10727641,4
+liuruiwen16,10727641,5
+daystar22,10727641,3
+103343443,10727641,4
+isabel_cui,10727641,2
+60987007,10727641,3
+wuyunoy,10727641,3
+skysnow5201314,10727641,3
+42040332,10727641,4
+krisleung,10727641,4
+46630332,10727641,4
+75364199,10727641,5
+3818567,10727641,4
+lareida,10727641,4
+131254424,10727641,3
+3740351,10727641,4
+leftrighthands,10727641,4
+56994326,10727641,4
+136133409,10727641,4
+ztr19920126,10727641,3
+ztr19920126,10727641,3
+136714107,10727641,3
+Carl_L,10727641,5
+angelichalo,10727641,3
+Oyiyu,10727641,4
+89411042,10727641,4
+135753239,10727641,4
+64597422,10727641,4
+47078298,10727641,4
+58042557,10727641,3
+2592170,10727641,3
+57656194,10727641,4
+Thrloverock,10727641,3
+61594655,10727641,4
+45285599,10727641,3
+63296396,10727641,3
+jill426,10727641,2
+tdrdmad,10727641,4
+shexiuling,10727641,5
+foufou,10727641,4
+FANG-GUOWEI,10727641,5
+rola_heart,10727641,5
+1935056,10727641,5
+3498321,10727641,4
+127691419,10727641,-1
+5263690,10727641,4
+134440390,10727641,3
+yangyucn,10727641,3
+45349650,10727641,4
+qichengshiwo,10727641,4
+Danys,10727641,4
+101978260,10727641,4
+leeyzh,10727641,4
+2210399,10727641,2
+wenbin623,10727641,3
+4679551,10727641,2
+48050176,10727641,3
+136344918,10727641,4
+70006917,10727641,4
+sijizhp,10727641,3
+87638833,10727641,4
+49334857,10727641,4
+lish0001,10727641,3
+olivia_LQ,10727641,4
+50337203,10727641,4
+120832541,10727641,4
+sugarlovesworld,10727641,3
+45476449,10727641,3
+83261887,10727641,4
+57024226,10727641,3
+82216412,10727641,5
+53272974,10727641,4
+zhaowei78,10727641,3
+hhao108,10727641,3
+heartbreakerkid,10727641,3
+istuart,10727641,3
+9485080,10727641,5
+77263108,10727641,2
+61497443,10727641,5
+kayak_b007,10727641,3
+68277125,10727641,4
+58174504,10727641,5
+51784561,10727641,5
+138119872,10727641,4
+52732060,10727641,5
+2884333,10727641,-1
+14891442,10727641,4
+73925418,10727641,3
+44417635,10727641,4
+66784871,10727641,3
+supersleeper,10727641,3
+65777896,10727641,4
+crucifix_fox,10727641,3
+52958795,10727641,5
+thana19tos90,10727641,4
+39360207,10727641,3
+67325073,10727641,3
+funvdaduoduo,10727641,4
+zzfznp,10727641,3
+46138752,10727641,3
+73654644,10727641,5
+lozer,10727641,3
+135538162,10727641,3
+74589582,10727641,4
+mmmmf,10727641,4
+76623488,10727641,4
+adong0502,10727641,3
+aiyawocaonima,10727641,4
+50414826,10727641,4
+53968782,10727641,4
+47430062,10727641,3
+buluangao,10727641,-1
+luxe,10727641,4
+95824497,10727641,5
+56248710,10727641,4
+2328781,10727641,3
+1590523,10727641,4
+1364566,10727641,4
+101017245,10727641,4
+51602185,10727641,3
+48335260,10727641,4
+71663333,10727641,4
+78906906,10727641,4
+wutongsuliang,10727641,4
+47181851,10727641,4
+79002821,10727641,4
+eyestriker,10727641,2
+lingqingchun,10727641,-1
+zl1237,10727641,4
+ivypa,10727641,3
+Little-bear.,10727641,4
+41540943,10727641,4
+78759547,10727641,4
+mydar,10727641,3
+49027770,10727641,-1
+56519940,10727641,3
+liuyingxin_1984,10727641,3
+50759873,10727641,-1
+50590747,10727641,4
+38572458,10727641,4
+18984732,10727641,4
+dream1005,10727641,-1
+136674981,10727641,5
+85135780,10727641,4
+13174363,10727641,4
+iamnoone,10727641,3
+62606694,10727641,3
+62926087,10727641,3
+43430222,10727641,-1
+41943699,10727641,4
+79032682,10727641,2
+2161404,10727641,4
+40098751,10727641,4
+79514138,10727641,5
+78730690,10727641,5
+37228447,10727641,2
+62904122,10727641,3
+57587470,10727641,4
+82643605,10727641,5
+NicoleRobin,10727641,3
+97112144,10727641,3
+lifelikedream,10727641,3
+88603301,10727641,4
+deina,10727641,4
+dongjh,10727641,5
+darkerthanwhite,10727641,5
+elvenH,10727641,5
+37065743,10727641,5
+loverwenzi22,10727641,3
+yukizakura,10727641,4
+35245488,10727641,4
+dogfish,10727641,3
+furore,10727641,4
+14889069,10727641,4
+myl1fe,10727641,-1
+59044456,10727641,3
+36238876,10727641,4
+xucencen,10727641,4
+74033673,10727641,4
+fvalentine,10727641,-1
+122079973,10727641,3
+39789924,10727641,3
+3096049,10727641,3
+123073450,10727641,4
+sandie21,10727641,5
+ztt90119,10727641,4
+56268259,10727641,3
+tomelephant,10727641,4
+3808156,10727641,3
+54022186,10727641,4
+3341865,10727641,3
+MoviesandI,10727641,3
+48973534,10727641,3
+41499752,10727641,3
+121378988,10727641,5
+66624462,10727641,3
+45123579,10727641,5
+xuliaoliao,10727641,3
+71534592,10727641,5
+81524908,10727641,3
+136801905,10727641,3
+51330947,10727641,2
+saintxi,10727641,4
+54450568,10727641,3
+zoe5956,10727641,4
+ben_nsr,10727641,3
+nadiawoo,10727641,4
+57163160,10727641,4
+36547066,10727641,4
+55858261,10727641,4
+61413214,10727641,5
+124732039,10727641,3
+36794017,10727641,3
+137720532,10727641,3
+102220840,10727641,3
+48079918,10727641,4
+fifiyard,10727641,4
+74199863,10727641,4
+rhodenbarr,10727641,4
+fengshurui,10727641,-1
+66242700,10727641,4
+julia0214,10727641,4
+127433083,10727641,3
+136160725,10727641,4
+84739561,10727641,3
+faye1023,10727641,3
+74104010,10727641,4
+111493695,10727641,3
+67669143,10727641,3
+137555231,10727641,5
+50073602,10727641,5
+LuthienLee,10727641,3
+4253202,10727641,4
+woshiadan,10727641,5
+4237075,10727641,3
+61261995,10727641,-1
+66371515,10727641,4
+72972634,10727641,5
+24918393,10727641,5
+63856676,10727641,4
+64767888,10727641,4
+89528523,10727641,4
+flow7,10727641,5
+53492986,10727641,4
+Bloodworks,10727641,5
+48132735,10727641,5
+107863421,10727641,4
+5772280,10727641,3
+4603559,10727641,3
+ninuga-710sss,10727641,3
+82310044,10727641,3
+jerrysong,10727641,4
+73767002,10727641,4
+81445026,10727641,4
+monica_ning,10727641,5
+99623872,10727641,-1
+46703055,10727641,3
+95458643,10727641,4
+Van07,10727641,4
+3801443,10727641,4
+137909681,10727641,3
+42678961,10727641,3
+130234848,10727641,5
+47696466,10727641,-1
+ninaperfume,10727641,3
+62029451,10727641,3
+34739546,10727641,3
+62157854,10727641,4
+30704068,10727641,3
+47593124,10727641,3
+shuoshashisha,10727641,4
+PasS__bY,10727641,3
+49719880,10727641,4
+3914240,10727641,4
+48194135,10727641,4
+bukuwanzi,10727641,4
+88345379,10727641,4
+szk13731584239,10727641,3
+69900690,10727641,5
+66802637,10727641,4
+51909458,10727641,4
+43864936,10727641,3
+51733805,10727641,3
+88171131,10727641,3
+actionaction,10727641,4
+daiginnko,10727641,5
+58484410,10727641,4
+48358348,10727641,-1
+49733253,10727641,3
+134534109,10727641,4
+47187938,10727641,3
+Ophelia-108,10727641,4
+mad1026,10727641,4
+53323494,10727641,4
+125386476,10727641,2
+1991085,10727641,4
+42905617,10727641,3
+fishlittle,10727641,3
+llcsb,10727641,3
+68550514,10727641,4
+4707526,10727641,4
+31970870,10727641,4
+137709918,10727641,-1
+nickyiao,10727641,4
+10007777,10727641,4
+1406185,10727641,4
+yustone,10727641,5
+janejanechan,10727641,4
+2543390,10727641,4
+afrasakurai,10727641,3
+xuyangran,10727641,4
+54419821,10727641,3
+81507911,10727641,4
+2857340,10727641,4
+64230152,10727641,2
+137878411,10727641,3
+lemoncan,10727641,5
+1141627,10727641,5
+dcliuxu,10727641,4
+68528163,10727641,3
+7255952,10727641,4
+1208857,10727641,4
+92303311,10727641,4
+60353338,10727641,4
+jaycee103,10727641,4
+53951715,10727641,-1
+136645238,10727641,3
+Tammy_fish,10727641,3
+chaikuan,10727641,4
+watercolor823,10727641,4
+ilovemyself,10727641,3
+34464499,10727641,4
+yangyiwen,10727641,4
+alivinlondonl,10727641,3
+cronus92,10727641,4
+2169690,10727641,4
+60118968,10727641,3
+39006881,10727641,4
+Like_zsy,10727641,4
+26786112,10727641,4
+mickjoust,10727641,4
+76981391,10727641,3
+1484739,10727641,4
+fluorinespark,10727641,4
+2161369,10727641,3
+74601834,10727641,-1
+kuroneko2002,10727641,3
+130541613,10727641,5
+65754057,10727641,3
+cmybbbb,10727641,5
+1799532,10727641,4
+cities,10727641,4
+81439273,10727641,4
+115310630,10727641,4
+65172633,10727641,3
+67052373,10727641,3
+poppy7777,10727641,4
+aiwosuoai55,10727641,3
+73334494,10727641,3
+tanntann,10727641,5
+73334494,10727641,3
+tanntann,10727641,5
+53823312,10727641,3
+31877981,10727641,4
+4320476,10727641,5
+3709827,10727641,4
+2187670,10727641,3
+1971105,10727641,3
+37442929,10727641,3
+huamochu,10727641,4
+81845294,10727641,4
+108684193,10727641,5
+92838568,10727641,5
+Vision0027,10727641,4
+singing_bird,10727641,4
+51853962,10727641,5
+35698262,10727641,5
+1174148,10727641,4
+60925481,10727641,4
+bmrlb,10727641,5
+bmrlb,10727641,5
+134519666,10727641,3
+89804270,10727641,-1
+lena0517,10727641,4
+kovin8888,10727641,5
+137802335,10727641,5
+59992323,10727641,4
+137800179,10727641,4
+84752076,10727641,5
+62688110,10727641,4
+67409717,10727641,4
+59302800,10727641,5
+calove,10727641,5
+HughCapet,10727641,4
+galaxyzhao,10727641,4
+1188503,10727641,4
+84912149,10727641,3
+64858870,10727641,3
+dujianpeng,10727641,2
+33845603,10727641,4
+49690364,10727641,4
+8927123,10727641,4
+44599506,10727641,3
+104701659,10727641,4
+36403736,10727641,5
+59723978,10727641,4
+111331563,10727641,3
+10992856,10727641,3
+76326345,10727641,5
+2550908,10727641,3
+42898231,10727641,4
+93385129,10727641,5
+americanidiot,10727641,5
+61215850,10727641,4
+harjol,10727641,3
+54071930,10727641,4
+freeilove,10727641,4
+48969108,10727641,4
+46990299,10727641,3
+133175259,10727641,4
+133175259,10727641,4
+huapiqiu,10727641,5
+132671924,10727641,5
+31949524,10727641,3
+56238441,10727641,4
+thinthin,10727641,2
+28709669,10727641,3
+kyo85,10727641,3
+68123525,10727641,3
+StephanieL6223,10727641,4
+66689109,10727641,3
+wendy47,10727641,4
+50614819,10727641,4
+kusch,10727641,4
+jianchen810,10727641,3
+fangfang5,10727641,4
+136272866,10727641,3
+linger37,10727641,3
+RoveSoul,10727641,4
+pandoranavi,10727641,3
+camellowang,10727641,3
+62874039,10727641,5
+46441063,10727641,4
+floragrx,10727641,5
+apr1lcoo,10727641,5
+47496790,10727641,3
+cloverwhite,10727641,4
+2084798,10727641,3
+restoration,10727641,5
+4442564,10727641,4
+2003211,10727641,5
+2283018,10727641,4
+50919323,10727641,5
+Drottningholms,10727641,3
+2300914,10727641,-1
+65394456,10727641,4
+4709512,10727641,5
+VINCENTVCHAN,10727641,3
+92454572,10727641,3
+70923979,10727641,4
+85084961,10727641,3
+2370392,10727641,4
+4531748,10727641,3
+129611474,10727641,4
+90681003,10727641,4
+54166375,10727641,5
+98014856,10727641,3
+94390156,10727641,3
+blanca,10727641,5
+mia777,10727641,3
+3027179,10727641,3
+govgouviiiiiiii,10727641,5
+25874574,10727641,4
+iris007,10727641,3
+63306713,10727641,4
+papa_guo,10727641,4
+131787614,10727641,3
+bluevivien,10727641,4
+cvisy,10727641,4
+47371112,10727641,4
+47371112,10727641,4
+4502175,10727641,4
+Serena.du,10727641,5
+78921107,10727641,3
+59273600,10727641,5
+75727476,10727641,3
+4128845,10727641,3
+47265467,10727641,4
+25460734,10727641,4
+47614478,10727641,3
+134842363,10727641,-1
+33686484,10727641,3
+sunwiner,10727641,4
+59378291,10727641,5
+52084130,10727641,5
+elinli00,10727641,4
+throughtherock,10727641,4
+43953322,10727641,3
+41041352,10727641,4
+9998453,10727641,-1
+yolanda_kin,10727641,3
+alabataille,10727641,4
+10358809,10727641,4
+3361340,10727641,4
+108601772,10727641,4
+70656928,10727641,3
+65031840,10727641,3
+shiawasen,10727641,4
+131816687,10727641,2
+Ke-_-vin,10727641,5
+71821286,10727641,4
+58114352,10727641,4
+48568857,10727641,4
+64624172,10727641,-1
+elastico,10727641,3
+88532423,10727641,4
+127066563,10727641,4
+69062991,10727641,4
+46505690,10727641,4
+103726869,10727641,1
+55518938,10727641,4
+waitthesun,10727641,3
+14583847,10727641,3
+xiaoqiww,10727641,3
+93892137,10727641,3
+98857291,10727641,2
+yangruozheng,10727641,4
+3519752,10727641,3
+81424914,10727641,5
+43602056,10727641,4
+HeavenU,10727641,4
+fastkill,10727641,4
+feelmyworld,10727641,2
+codeyu,10727641,4
+124210070,10727641,4
+wx970436587,10727641,4
+wakopa,10727641,4
+61134040,10727641,4
+4329212,10727641,4
+SldneyZhang,10727641,4
+SldneyZhang,10727641,4
+4105261,10727641,3
+92379471,10727641,2
+54813786,10727641,5
+116035367,10727641,3
+136096165,10727641,4
+136193935,10727641,3
+64173610,10727641,4
+linglongwunv,10727641,3
+49172161,10727641,4
+37861913,10727641,3
+72827871,10727641,3
+maloma1721x,10727641,5
+75606386,10727641,4
+48930135,10727641,4
+78565044,10727641,5
+49271038,10727641,4
+sinan,10727641,4
+lalou,10727641,4
+135470815,10727641,5
+45177549,10727641,4
+huxy1983,10727641,4
+99344521,10727641,4
+29074419,10727641,4
+4495640,10727641,4
+59197107,10727641,3
+65174941,10727641,3
+54693337,10727641,4
+60885961,10727641,4
+1096452,10727641,4
+135396673,10727641,3
+131730876,10727641,3
+most100,10727641,4
+119521216,10727641,3
+2566893,10727641,3
+137640498,10727641,3
+kongkong7,10727641,3
+54443287,10727641,3
+36458457,10727641,3
+103032395,10727641,3
+4096669,10727641,2
+46309610,10727641,3
+49981766,10727641,4
+onlyjtl,10727641,4
+41655130,10727641,4
+71335687,10727641,4
+zoewen1984,10727641,3
+mountainriver,10727641,4
+135101430,10727641,3
+67208670,10727641,5
+2294404,10727641,3
+68023776,10727641,4
+60420315,10727641,3
+68592556,10727641,4
+frances-6,10727641,-1
+muxieyes,10727641,4
+127398009,10727641,4
+126842883,10727641,3
+124548457,10727641,3
+54633830,10727641,4
+nicoleyanxi,10727641,4
+57083273,10727641,4
+44514372,10727641,2
+rosemerryth,10727641,4
+candyberg,10727641,1
+49514456,10727641,5
+96638998,10727641,4
+53405330,10727641,3
+viaggiatore,10727641,4
+dyinggg,10727641,4
+91912832,10727641,4
+44949504,10727641,5
+keai0708,10727641,4
+limeng7,10727641,-1
+tyy,10727641,3
+53376629,10727641,3
+43542523,10727641,3
+3923245,10727641,4
+46023770,10727641,4
+4737971,10727641,4
+47705439,10727641,3
+133407003,10727641,4
+lomata,10727641,4
+olejue,10727641,5
+53193684,10727641,4
+131006977,10727641,4
+4768830,10727641,5
+122868077,10727641,2
+49448182,10727641,4
+memox,10727641,3
+104710659,10727641,4
+taibeike,10727641,3
+48066537,10727641,3
+48345899,10727641,-1
+laney,10727641,5
+34882816,10727641,-1
+51179038,10727641,3
+103297087,10727641,4
+grannys_bear,10727641,3
+38984888,10727641,4
+59116664,10727641,3
+66397755,10727641,3
+61823164,10727641,2
+slippercc,10727641,3
+36638409,10727641,4
+3601002,10727641,4
+103477045,10727641,5
+71732006,10727641,4
+65854158,10727641,3
+119741632,10727641,-1
+1240037,10727641,3
+8836079,10727641,3
+sky-captaion,10727641,5
+57442857,10727641,3
+137061442,10727641,4
+61681574,10727641,4
+131063824,10727641,4
+love_1973,10727641,5
+Dora_bamboo,10727641,3
+73572671,10727641,4
+gracegsmile,10727641,4
+59907116,10727641,5
+55357697,10727641,4
+53891862,10727641,4
+44852938,10727641,4
+xuyinaxxxxxxx,10727641,4
+3321331,10727641,4
+54627335,10727641,4
+youngmars,10727641,3
+34243551,10727641,2
+70759577,10727641,4
+sesameduck,10727641,3
+116567998,10727641,5
+56875123,10727641,3
+18071732,10727641,3
+holyhteara,10727641,4
+19124466,10727641,3
+82674531,10727641,4
+1486195,10727641,5
+4200336,10727641,3
+4200336,10727641,3
+68900038,10727641,3
+OOOOSummer,10727641,4
+61775961,10727641,4
+chinriya,10727641,3
+84710876,10727641,4
+98956225,10727641,2
+85635101,10727641,4
+jennybear1108,10727641,4
+andrewhxism,10727641,3
+Magicians,10727641,3
+29620245,10727641,3
+dress2kill,10727641,3
+zhongshu,10727641,4
+cc789,10727641,4
+137541270,10727641,5
+51955839,10727641,4
+3339805,10727641,4
+OMGZZ,10727641,3
+65915611,10727641,4
+3483430,10727641,5
+53710865,10727641,2
+losrfuu,10727641,3
+asvra,10727641,4
+65345941,10727641,3
+56339363,10727641,3
+maskman0917,10727641,3
+131953037,10727641,5
+1312162,10727641,4
+61878012,10727641,3
+103990191,10727641,-1
+huachai1021,10727641,4
+lovegerrard,10727641,4
+92224480,10727641,4
+2483074,10727641,3
+133033817,10727641,4
+67829510,10727641,4
+50144135,10727641,3
+2167030,10727641,4
+76428013,10727641,3
+Renee_er_est,10727641,4
+75723338,10727641,3
+2435646,10727641,-1
+55494665,10727641,4
+91584698,10727641,5
+lhgdxx,10727641,5
+64751584,10727641,4
+42263664,10727641,4
+XY920521,10727641,4
+2468857,10727641,3
+42897156,10727641,3
+4561356,10727641,3
+philette,10727641,4
+52305498,10727641,3
+52969609,10727641,-1
+120885239,10727641,5
+4600351,10727641,3
+DrLoop,10727641,4
+36285360,10727641,-1
+55698037,10727641,3
+55698037,10727641,3
+snowchris,10727641,3
+79703370,10727641,4
+92196607,10727641,3
+63391784,10727641,2
+46162383,10727641,3
+zhoulefeng,10727641,2
+48756490,10727641,3
+2579882,10727641,3
+aqweji,10727641,3
+83769444,10727641,2
+80323022,10727641,4
+77048663,10727641,4
+xiongjixiaojie,10727641,4
+123736721,10727641,5
+35819333,10727641,4
+114179686,10727641,4
+119807484,10727641,3
+43783521,10727641,3
+56389466,10727641,5
+whj623185136,10727641,3
+120241385,10727641,4
+65838066,10727641,4
+137398525,10727641,4
+adododo,10727641,4
+33830687,10727641,3
+2546239,10727641,4
+47874933,10727641,3
+72858627,10727641,4
+55969190,10727641,4
+107911126,10727641,4
+108701392,10727641,4
+10277954,10727641,4
+135302519,10727641,4
+cedric99,10727641,3
+rgwmnzyq,10727641,2
+131471616,10727641,3
+ximozhe,10727641,4
+wangweiyi,10727641,4
+ccav1,10727641,4
+52103391,10727641,4
+poornicky,10727641,3
+zorrocw,10727641,4
+cgl0932,10727641,3
+12003068,10727641,4
+novel_zhou,10727641,3
+27527393,10727641,4
+4643954,10727641,3
+44486984,10727641,3
+fourjings,10727641,3
+14327084,10727641,4
+45413815,10727641,4
+39388801,10727641,4
+57395055,10727641,5
+47405010,10727641,4
+zoethree,10727641,3
+125154714,10727641,-1
+LoveXXin,10727641,3
+57890138,10727641,5
+56111522,10727641,4
+45856827,10727641,3
+71944624,10727641,2
+56568243,10727641,4
+jane921,10727641,4
+1249947,10727641,4
+137436672,10727641,5
+24139618,10727641,4
+64146995,10727641,4
+117339283,10727641,3
+47475734,10727641,4
+1291946,10727641,2
+JasonKing1021,10727641,2
+4283893,10727641,4
+45266385,10727641,4
+Pengjianjun,10727641,3
+10564212,10727641,4
+67489382,10727641,5
+26459598,10727641,5
+81685996,10727641,4
+131749314,10727641,4
+michaelya,10727641,4
+4166320,10727641,4
+57138259,10727641,5
+98880412,10727641,4
+9628483,10727641,5
+3217100,10727641,-1
+3625567,10727641,4
+jbfu,10727641,4
+43378617,10727641,4
+136623062,10727641,5
+kobekb,10727641,4
+43342177,10727641,3
+zhaojing333,10727641,2
+margaux,10727641,4
+Elsa-Young,10727641,3
+48626862,10727641,4
+77155788,10727641,4
+viviyin,10727641,4
+bozil,10727641,3
+81698816,10727641,4
+99598599,10727641,4
+1367998,10727641,4
+137274542,10727641,3
+83576575,10727641,5
+2051711,10727641,3
+134567193,10727641,4
+51078918,10727641,4
+71132041,10727641,5
+52524178,10727641,4
+yxmj1982,10727641,5
+68085192,10727641,3
+heart_forever,10727641,5
+56823104,10727641,3
+41463110,10727641,4
+58292946,10727641,5
+blacksmiles,10727641,3
+51126355,10727641,5
+121675172,10727641,5
+72841552,10727641,4
+MR.Pain,10727641,4
+MimiLs,10727641,4
+3318502,10727641,3
+70058362,10727641,4
+1775081,10727641,4
+doon7,10727641,4
+129599627,10727641,4
+64607654,10727641,2
+119787917,10727641,3
+48249333,10727641,3
+4560642,10727641,4
+87411702,10727641,4
+sunpeipei,10727641,3
+104091868,10727641,5
+movie8,10727641,4
+gooxx,10727641,3
+2713839,10727641,-1
+3000688,10727641,4
+alienwang,10727641,-1
+3931948,10727641,4
+sesey,10727641,3
+1626912,10727641,4
+beau1022,10727641,4
+Di-Dar,10727641,3
+36580588,10727641,4
+136714687,10727641,4
+91754998,10727641,3
+chaosi,10727641,1
+50728438,10727641,4
+52109390,10727641,1
+kidozz,10727641,4
+76170749,10727641,4
+43982125,10727641,3
+1155736,10727641,4
+kunp,10727641,4
+wetty,10727641,4
+136727796,10727641,4
+Orchendor,10727641,2
+jroclee,10727641,4
+85490827,10727641,4
+4156800,10727641,4
+4156800,10727641,4
+HowShouldIKnow,10727641,4
+4588595,10727641,5
+47935255,10727641,4
+136800374,10727641,3
+sheyinghui,10727641,4
+namik_ercan,10727641,4
+redenter,10727641,4
+121829507,10727641,3
+76976556,10727641,4
+116271293,10727641,5
+17679147,10727641,4
+56856986,10727641,5
+Doctory,10727641,4
+135229497,10727641,4
+xiaoiou,10727641,5
+98300789,10727641,4
+79245082,10727641,3
+54094049,10727641,3
+hildasu,10727641,4
+4252143,10727641,4
+44103412,10727641,5
+83003018,10727641,4
+126348390,10727641,4
+88658178,10727641,4
+mumucha,10727641,4
+fanshall,10727641,4
+85659565,10727641,4
+3801481,10727641,4
+fanqu,10727641,3
+youtingzi,10727641,4
+49129833,10727641,5
+rabbit6,10727641,4
+4242728,10727641,3
+NosyBunny,10727641,3
+smumy,10727641,3
+1383301,10727641,4
+SokSolon,10727641,4
+55714302,10727641,4
+46068341,10727641,4
+127313933,10727641,4
+58935563,10727641,2
+lindadarling,10727641,3
+HBHelena,10727641,4
+62119610,10727641,3
+121321169,10727641,4
+2760210,10727641,4
+46564377,10727641,2
+76549379,10727641,4
+130004425,10727641,4
+1574402,10727641,4
+43790131,10727641,3
+53297892,10727641,4
+jx_ivy,10727641,5
+68093704,10727641,4
+1667633,10727641,3
+guppyfish,10727641,4
+51183805,10727641,3
+att2046,10727641,3
+65125200,10727641,4
+49583310,10727641,3
+133142786,10727641,4
+2750884,10727641,4
+136179114,10727641,5
+mjtang,10727641,4
+82230910,10727641,-1
+115375109,10727641,4
+5854721,10727641,3
+35497511,10727641,3
+58623242,10727641,4
+125180351,10727641,5
+85665063,10727641,3
+43395025,10727641,4
+122822781,10727641,4
+lostgraduate,10727641,4
+53878676,10727641,4
+74117962,10727641,5
+eshenxian,10727641,-1
+64923655,10727641,4
+65113301,10727641,5
+65678306,10727641,1
+annaanonly,10727641,5
+31606811,10727641,4
+31784704,10727641,5
+coldmist,10727641,4
+56431276,10727641,3
+81206741,10727641,5
+40126557,10727641,4
+51449484,10727641,4
+Zizou_Vam,10727641,4
+61315252,10727641,4
+fannie7,10727641,4
+33976222,10727641,5
+balelovesqian,10727641,3
+92948260,10727641,4
+tomato88,10727641,4
+lisayang,10727641,4
+41963538,10727641,4
+2488466,10727641,3
+lyman,10727641,4
+lyman,10727641,4
+39946195,10727641,3
+sabel,10727641,4
+4361353,10727641,4
+35360651,10727641,4
+45933152,10727641,3
+55671604,10727641,5
+luocha,10727641,4
+57598630,10727641,5
+anikasun,10727641,4
+hx615,10727641,4
+56800653,10727641,3
+genger85,10727641,3
+46565536,10727641,4
+karo1993,10727641,3
+2475141,10727641,3
+yuemochen,10727641,4
+4842930,10727641,5
+54530527,10727641,3
+81418362,10727641,4
+4537053,10727641,3
+zq8870690207,10727641,4
+67943970,10727641,3
+lazyjo,10727641,4
+skycity,10727641,3
+3324021,10727641,5
+65897421,10727641,4
+samwang,10727641,5
+101504303,10727641,4
+3387308,10727641,4
+48867731,10727641,4
+126393954,10727641,4
+43207001,10727641,2
+43974139,10727641,3
+liangtong,10727641,4
+2272118,10727641,4
+justyiye,10727641,5
+71022383,10727641,5
+ksmyass,10727641,5
+47574517,10727641,4
+47574517,10727641,4
+60721327,10727641,5
+20196112,10727641,4
+3238270,10727641,3
+44990923,10727641,3
+hanxiaonuo,10727641,3
+53726776,10727641,3
+44176282,10727641,3
+46914347,10727641,4
+87034893,10727641,4
+66440574,10727641,4
+38138105,10727641,3
+kalinin,10727641,5
+134943076,10727641,2
+48324481,10727641,5
+43061716,10727641,4
+57235976,10727641,5
+41416992,10727641,3
+84166452,10727641,4
+84708478,10727641,3
+72061303,10727641,4
+72540789,10727641,3
+facelessecho,10727641,3
+1388185,10727641,5
+35514248,10727641,3
+70915171,10727641,4
+huhu227,10727641,4
+Maze10888119,10727641,4
+52631968,10727641,3
+AmeliaZhu,10727641,4
+4574039,10727641,4
+55596530,10727641,3
+120187474,10727641,3
+47786256,10727641,4
+1828898,10727641,4
+91140332,10727641,3
+130384556,10727641,3
+14247291,10727641,3
+33619574,10727641,3
+coolfax,10727641,5
+coolfax,10727641,5
+49968268,10727641,3
+mingyaback,10727641,3
+54991804,10727641,5
+alexyou,10727641,4
+57591346,10727641,2
+72219224,10727641,5
+wxgigi0617,10727641,4
+summermayfly,10727641,3
+51881494,10727641,5
+jessica_21,10727641,3
+76950599,10727641,5
+1444030,10727641,4
+liong,10727641,5
+3442593,10727641,4
+48120332,10727641,3
+eilyying,10727641,4
+46963529,10727641,3
+65078775,10727641,4
+62956939,10727641,2
+britpopsailor,10727641,3
+76295495,10727641,3
+52415788,10727641,5
+3353584,10727641,4
+62987205,10727641,3
+ps2xboxgbaxbox,10727641,4
+103406589,10727641,3
+71254966,10727641,3
+3222803,10727641,3
+120272196,10727641,5
+36475631,10727641,4
+68241844,10727641,5
+65898498,10727641,4
+2309684,10727641,3
+67759095,10727641,5
+45108609,10727641,2
+137138614,10727641,4
+121943500,10727641,4
+59228227,10727641,5
+128271168,10727641,4
+64142096,10727641,4
+ZLeaves,10727641,3
+127119228,10727641,4
+69095785,10727641,4
+50702754,10727641,3
+123112465,10727641,3
+happyjoy,10727641,3
+57617460,10727641,3
+123981537,10727641,4
+formydream,10727641,3
+17654843,10727641,4
+hanec,10727641,2
+53550866,10727641,3
+45160142,10727641,5
+128041275,10727641,2
+ryannys,10727641,3
+15520729,10727641,3
+godismyye,10727641,4
+70752428,10727641,3
+60442939,10727641,4
+49813578,10727641,4
+62705311,10727641,3
+48998348,10727641,5
+28368079,10727641,4
+50493709,10727641,4
+49116416,10727641,3
+4703013,10727641,4
+67653468,10727641,3
+128142501,10727641,5
+18349242,10727641,3
+119300833,10727641,5
+33261301,10727641,3
+bygsun,10727641,4
+41453827,10727641,4
+49736336,10727641,3
+36276299,10727641,5
+gloria1102,10727641,4
+39382448,10727641,5
+10862320,10727641,5
+123274527,10727641,3
+122966703,10727641,4
+Metal.GY,10727641,4
+RivenZhong,10727641,3
+67225577,10727641,4
+61009590,10727641,4
+1510625,10727641,4
+78389609,10727641,4
+hdjjys,10727641,2
+53916327,10727641,3
+33205781,10727641,5
+talentygw,10727641,3
+131909298,10727641,4
+77555967,10727641,4
+3440740,10727641,5
+63109880,10727641,4
+79169198,10727641,5
+50452092,10727641,3
+137061387,10727641,4
+68666799,10727641,4
+muiy,10727641,3
+68551392,10727641,3
+3942272,10727641,4
+57546427,10727641,5
+58338006,10727641,4
+53248408,10727641,4
+bunny_Shen,10727641,3
+jjwzgrmdx,10727641,4
+1802279,10727641,3
+66150896,10727641,4
+1143666,10727641,3
+45268716,10727641,4
+134574897,10727641,4
+1547393,10727641,4
+anteruna,10727641,4
+55653553,10727641,4
+88535863,10727641,4
+x-inter,10727641,4
+93339436,10727641,4
+64879609,10727641,2
+3503065,10727641,4
+137046543,10727641,4
+98222657,10727641,5
+sanpisanpi,10727641,4
+princessing,10727641,4
+63676625,10727641,4
+127080746,10727641,3
+66575578,10727641,3
+125760534,10727641,4
+102108363,10727641,3
+lee7lee,10727641,4
+thomasvader,10727641,5
+68629139,10727641,4
+4194592,10727641,3
+jsc528,10727641,3
+wateryang,10727641,4
+dltmw,10727641,4
+28820949,10727641,5
+laoshububen,10727641,3
+70313784,10727641,4
+130952703,10727641,4
+79044274,10727641,3
+45008619,10727641,5
+kgbbeer,10727641,3
+44020426,10727641,3
+54378428,10727641,3
+58215137,10727641,3
+130419426,10727641,4
+liaofei,10727641,4
+67184394,10727641,2
+5894610,10727641,3
+cherryfeng,10727641,3
+59959913,10727641,4
+jmknoy,10727641,5
+64774214,10727641,3
+2235112,10727641,4
+116044095,10727641,3
+61024723,10727641,4
+momon1900,10727641,5
+4318669,10727641,3
+caofei-dai,10727641,5
+zhegejiale,10727641,3
+display,10727641,4
+carytrading,10727641,3
+largecool,10727641,3
+MyloveXxy,10727641,4
+68632804,10727641,5
+lowbroadway,10727641,-1
+reveur07,10727641,4
+49802388,10727641,4
+1981762,10727641,3
+84854172,10727641,2
+48589119,10727641,3
+butterflyvv,10727641,3
+visita,10727641,4
+25795086,10727641,4
+98956266,10727641,3
+48090771,10727641,3
+4118910,10727641,3
+echobaby6002,10727641,-1
+pyengu,10727641,4
+130998014,10727641,4
+30674711,10727641,5
+46133817,10727641,3
+34209311,10727641,3
+55399562,10727641,3
+134101610,10727641,4
+133860777,10727641,4
+xyxyxyxyxy1995,10727641,5
+Sandorothy,10727641,5
+46845043,10727641,3
+129124033,10727641,5
+longnel,10727641,4
+redcookie,10727641,5
+iRayc,10727641,3
+biti.vector,10727641,4
+45937620,10727641,2
+zhjwxw,10727641,4
+4789722,10727641,3
+37306803,10727641,4
+88317701,10727641,5
+60096981,10727641,4
+66557005,10727641,4
+64344492,10727641,5
+57295120,10727641,4
+70292927,10727641,4
+49886917,10727641,5
+113560444,10727641,5
+2798381,10727641,4
+36339118,10727641,2
+127972732,10727641,5
+69439267,10727641,4
+54944138,10727641,5
+47037959,10727641,4
+lingdongling,10727641,3
+137070872,10727641,3
+53325239,10727641,4
+59163778,10727641,3
+81351219,10727641,3
+staramoi,10727641,4
+3264232,10727641,4
+Ghostlin,10727641,4
+134057557,10727641,3
+60168447,10727641,3
+3519353,10727641,4
+56095656,10727641,4
+69252394,10727641,4
+howhappy,10727641,4
+73515290,10727641,4
+68881946,10727641,5
+50285765,10727641,3
+bearhao1976,10727641,3
+75804317,10727641,3
+60407025,10727641,3
+56139397,10727641,3
+50255025,10727641,3
+48093431,10727641,3
+mangobird,10727641,3
+SOPHYSUN,10727641,-1
+xunbao521,10727641,4
+53486801,10727641,4
+yinmilan,10727641,4
+108992688,10727641,3
+61012226,10727641,4
+2174443,10727641,4
+136274462,10727641,4
+xmap,10727641,5
+81742461,10727641,4
+133689309,10727641,3
+63685423,10727641,4
+shareyixia,10727641,5
+66776645,10727641,4
+51445012,10727641,5
+57615935,10727641,3
+jageon,10727641,4
+wendu0909,10727641,3
+79820861,10727641,5
+shaoraul,10727641,4
+63813651,10727641,3
+92892144,10727641,3
+47980331,10727641,5
+47980331,10727641,5
+tijuana,10727641,2
+53795201,10727641,3
+63014642,10727641,4
+3682455,10727641,5
+78754556,10727641,3
+61223246,10727641,4
+2417785,10727641,4
+61497577,10727641,4
+54415980,10727641,3
+47590897,10727641,3
+100255899,10727641,4
+33990008,10727641,5
+freewhao,10727641,4
+136896563,10727641,3
+jimmyjiayou,10727641,4
+zuozichu,10727641,3
+67688465,10727641,4
+122879836,10727641,4
+80781412,10727641,4
+86638464,10727641,5
+114635463,10727641,4
+matthew1323,10727641,3
+119359923,10727641,3
+44837247,10727641,4
+132751120,10727641,4
+55835825,10727641,5
+oriolekoh,10727641,4
+52293681,10727641,-1
+48676614,10727641,4
+130939164,10727641,4
+4113112,10727641,4
+QTCE,10727641,5
+64083865,10727641,3
+sophiaforfree,10727641,4
+61883535,10727641,4
+114149260,10727641,4
+3277928,10727641,2
+62137571,10727641,4
+136455099,10727641,2
+60631421,10727641,3
+125373467,10727641,5
+49318064,10727641,4
+60193296,10727641,5
+48126534,10727641,5
+54983933,10727641,3
+48225861,10727641,3
+75169660,10727641,3
+97057958,10727641,5
+136048332,10727641,3
+136978639,10727641,5
+theoneforever,10727641,4
+jeanwoo,10727641,3
+cai1st,10727641,4
+maomaoyuey,10727641,5
+40238634,10727641,3
+y18188805152,10727641,-1
+51836771,10727641,5
+130466660,10727641,4
+3074747,10727641,4
+3436379,10727641,4
+xuancaidanqing,10727641,4
+katichang,10727641,3
+jujue,10727641,4
+128902296,10727641,4
+88386627,10727641,4
+oobibigo,10727641,4
+joycesi,10727641,4
+54631324,10727641,5
+S.s.,10727641,5
+carmengmm,10727641,3
+66831677,10727641,4
+81639579,10727641,3
+4280909,10727641,4
+rosepicker,10727641,4
+bus99,10727641,4
+131020888,10727641,3
+Dawn1,10727641,5
+45833709,10727641,4
+4545627,10727641,5
+43820792,10727641,4
+maddaemon,10727641,4
+36250262,10727641,5
+39217507,10727641,3
+44027480,10727641,4
+2234216,10727641,4
+122627623,10727641,4
+72949033,10727641,3
+jijiezheng,10727641,5
+lq_lemon,10727641,4
+2493346,10727641,-1
+65178670,10727641,3
+136409582,10727641,4
+87604568,10727641,5
+noixkyd,10727641,3
+135430923,10727641,5
+hanhanq,10727641,3
+48477485,10727641,5
+58840542,10727641,3
+115979146,10727641,5
+leechambo,10727641,4
+51491569,10727641,3
+hejianjian,10727641,3
+128005787,10727641,3
+allenshao,10727641,3
+lizishu,10727641,3
+miaohengla,10727641,3
+50178808,10727641,3
+83268589,10727641,5
+olabaobao,10727641,2
+lawbody,10727641,4
+135882446,10727641,4
+yifei1110,10727641,4
+136653803,10727641,4
+93208688,10727641,3
+1417770,10727641,5
+76216989,10727641,4
+octopusz,10727641,4
+Ann-e,10727641,4
+60365345,10727641,3
+adrian0807,10727641,3
+37322815,10727641,4
+42821103,10727641,3
+77001369,10727641,3
+104128106,10727641,4
+herunqi,10727641,3
+fmxiaofei,10727641,4
+neofree,10727641,3
+67887593,10727641,4
+1759173,10727641,3
+33707224,10727641,5
+68871897,10727641,4
+1856608,10727641,4
+135420756,10727641,5
+135396561,10727641,4
+58544856,10727641,5
+132292462,10727641,3
+Alicestormrage,10727641,-1
+51688901,10727641,5
+kkfkk,10727641,4
+53603778,10727641,4
+47792951,10727641,5
+133590394,10727641,4
+daysofyouth,10727641,4
+111743603,10727641,-1
+58290785,10727641,4
+oojooo,10727641,4
+4378595,10727641,4
+85830142,10727641,3
+bbbonniechan,10727641,3
+125151418,10727641,5
+48812858,10727641,4
+1212649,10727641,2
+53523221,10727641,5
+82992838,10727641,3
+52948312,10727641,4
+lsg_lsg,10727641,3
+50479628,10727641,4
+2746484,10727641,4
+50431006,10727641,4
+58780427,10727641,1
+3418984,10727641,4
+57934491,10727641,-1
+co_cobalt,10727641,4
+57084794,10727641,4
+waterdrop,10727641,3
+62052341,10727641,3
+60701395,10727641,4
+84872284,10727641,4
+mondain,10727641,-1
+2435805,10727641,3
+zf468930104,10727641,5
+129346558,10727641,3
+41573793,10727641,4
+senioroneleo,10727641,3
+38853044,10727641,3
+lovechai,10727641,4
+dalizi,10727641,4
+Vol.de.nuit,10727641,3
+xlei130,10727641,3
+luanma1977,10727641,5
+46828794,10727641,4
+UC0083,10727641,3
+62517009,10727641,-1
+136878015,10727641,5
+tyx033333,10727641,-1
+60107866,10727641,4
+47817980,10727641,4
+33392381,10727641,4
+71865681,10727641,5
+mcas1880,10727641,3
+131610704,10727641,3
+justdust,10727641,3
+HAPPYFFF,10727641,5
+65070154,10727641,4
+62662600,10727641,2
+piscesyw,10727641,4
+vvworld,10727641,4
+mrkingdom,10727641,4
+heartnow,10727641,4
+40913424,10727641,4
+131352783,10727641,4
+41717444,10727641,3
+42620728,10727641,3
+43970229,10727641,3
+49544157,10727641,3
+52061855,10727641,4
+gloomsky,10727641,5
+4259768,10727641,4
+47931156,10727641,4
+75034696,10727641,4
+68477521,10727641,2
+56807608,10727641,3
+136810733,10727641,4
+jiangli1988,10727641,2
+anamorphose,10727641,4
+chamori,10727641,3
+woshiguolei,10727641,3
+moxmo,10727641,4
+136019111,10727641,3
+136019111,10727641,3
+1671301,10727641,4
+hanyoyo2000,10727641,4
+120666244,10727641,3
+eris,10727641,4
+47361455,10727641,4
+33021828,10727641,4
+56747069,10727641,5
+44172595,10727641,1
+mayka,10727641,4
+78645703,10727641,4
+45975385,10727641,3
+60696883,10727641,3
+34235185,10727641,4
+62608491,10727641,4
+oriclschu,10727641,3
+108685938,10727641,4
+bigmatt80,10727641,4
+69228709,10727641,4
+52610142,10727641,4
+65565016,10727641,4
+dhlingchi,10727641,3
+daisy940403,10727641,3
+nyx0115,10727641,4
+Dreamology525,10727641,4
+wusiyunfeng,10727641,3
+135739193,10727641,5
+49232664,10727641,5
+65547477,10727641,4
+26788914,10727641,3
+miaommiki,10727641,5
+youngjie999,10727641,3
+76467871,10727641,3
+3193127,10727641,5
+x_xx,10727641,5
+OrangeWeiei,10727641,5
+72273417,10727641,3
+59290535,10727641,5
+64109076,10727641,4
+77278075,10727641,4
+56072639,10727641,3
+135975439,10727641,3
+yangshiner,10727641,5
+edgeyeung,10727641,4
+4415405,10727641,3
+elijahh,10727641,3
+45274800,10727641,3
+52684314,10727641,3
+72996822,10727641,4
+dreamcristal,10727641,4
+quelheart,10727641,-1
+jiangchongzhi,10727641,4
+136683044,10727641,3
+115714696,10727641,5
+64093040,10727641,3
+seasonart,10727641,3
+73474090,10727641,3
+62140326,10727641,5
+flora929,10727641,4
+stories7,10727641,3
+stories7,10727641,3
+rext,10727641,3
+freedomandlove,10727641,4
+115097585,10727641,4
+76589400,10727641,4
+hanayuki,10727641,4
+128179860,10727641,4
+57562576,10727641,4
+melodybeiz,10727641,4
+le_grand_bleu,10727641,3
+50310274,10727641,5
+54721365,10727641,5
+64992164,10727641,3
+mimosa93,10727641,3
+55668412,10727641,3
+QQXLH,10727641,4
+geekiris,10727641,-1
+1314726,10727641,5
+133172735,10727641,4
+131854669,10727641,1
+76554051,10727641,3
+73581567,10727641,4
+69367982,10727641,4
+amour,10727641,5
+61698998,10727641,5
+125789242,10727641,3
+126916102,10727641,3
+lee_king,10727641,3
+42306867,10727641,3
+2745029,10727641,4
+136765005,10727641,4
+136768505,10727641,5
+41620486,10727641,5
+39543914,10727641,3
+chambreavecvue,10727641,5
+96873313,10727641,2
+68899668,10727641,4
+iclover1314,10727641,4
+70549270,10727641,5
+4051028,10727641,5
+114645921,10727641,3
+dairytea,10727641,2
+tinaxuang,10727641,3
+17791320,10727641,3
+115235064,10727641,5
+130890583,10727641,5
+48097979,10727641,4
+zephyr_archer,10727641,3
+luffliu,10727641,3
+72769762,10727641,4
+55461172,10727641,5
+50188986,10727641,4
+51692269,10727641,5
+CWQ1030,10727641,3
+zhanggongzi,10727641,3
+zzzt29,10727641,3
+honey10151106,10727641,3
+41898081,10727641,4
+75309704,10727641,5
+66959983,10727641,4
+134232286,10727641,4
+44537605,10727641,3
+ORBR,10727641,4
+115815889,10727641,5
+65595562,10727641,4
+antee,10727641,3
+memor,10727641,2
+57756222,10727641,4
+47755926,10727641,4
+46370067,10727641,3
+laura13,10727641,-1
+EmmaChow,10727641,3
+57880373,10727641,4
+127219953,10727641,3
+55661989,10727641,3
+yellowbiga,10727641,3
+56007618,10727641,5
+36579072,10727641,3
+2215106,10727641,-1
+3471923,10727641,4
+sby37,10727641,4
+3251343,10727641,3
+73597591,10727641,5
+36196484,10727641,3
+65029164,10727641,4
+1032606,10727641,4
+65856924,10727641,4
+50516869,10727641,4
+129633404,10727641,4
+hellovito,10727641,4
+83975590,10727641,4
+36978059,10727641,4
+mia52,10727641,4
+136695075,10727641,4
+136693733,10727641,5
+120336134,10727641,4
+115035212,10727641,4
+sdayor,10727641,4
+46355168,10727641,3
+Lovejingdianyu,10727641,4
+65101753,10727641,3
+2624193,10727641,4
+133620973,10727641,4
+54322151,10727641,5
+Kkumako,10727641,4
+52389655,10727641,2
+43912671,10727641,4
+136364437,10727641,3
+136673934,10727641,4
+103012049,10727641,4
+66178513,10727641,4
+2385262,10727641,4
+wood0913,10727641,3
+bingocoder,10727641,4
+103487977,10727641,5
+39855725,10727641,4
+letyoufindme,10727641,4
+134682343,10727641,5
+49134940,10727641,3
+misslillian1993,10727641,3
+125644658,10727641,5
+90097591,10727641,4
+penshan,10727641,4
+23400839,10727641,4
+1727995,10727641,3
+fat_hill,10727641,4
+76446728,10727641,3
+Suyan.,10727641,5
+82443240,10727641,4
+3337754,10727641,3
+53036105,10727641,4
+Gengxiaolele,10727641,4
+60593657,10727641,3
+121557775,10727641,4
+54944221,10727641,5
+2569425,10727641,4
+69457010,10727641,4
+yexxs,10727641,5
+YSAZA,10727641,4
+sniperchris,10727641,3
+guojiaqi1015,10727641,3
+58195193,10727641,4
+3704222,10727641,4
+51302979,10727641,4
+50583077,10727641,4
+aguacristal,10727641,5
+55993143,10727641,4
+61536666,10727641,4
+76926287,10727641,4
+snoweather,10727641,3
+1956404,10727641,5
+132943568,10727641,4
+48685895,10727641,3
+osopaso,10727641,5
+59904576,10727641,4
+2328333,10727641,3
+louis4498,10727641,4
+102790365,10727641,4
+91809497,10727641,4
+125843994,10727641,5
+gaoshiqi,10727641,4
+IIGHTENYZING,10727641,4
+54826965,10727641,4
+31316457,10727641,3
+francesfyy,10727641,3
+75301762,10727641,5
+45446401,10727641,4
+WhoRU,10727641,4
+42884870,10727641,4
+3884732,10727641,5
+isfloyd,10727641,3
+1358077,10727641,5
+49570696,10727641,5
+44559687,10727641,4
+56008028,10727641,3
+hayden001,10727641,3
+mitdudu,10727641,3
+61734859,10727641,3
+93242497,10727641,3
+43072400,10727641,3
+43072400,10727641,3
+2891944,10727641,4
+55842378,10727641,4
+Antonis,10727641,3
+53734105,10727641,4
+64191113,10727641,4
+jingying11,10727641,3
+kingiknow,10727641,2
+vaay-mei,10727641,5
+60352980,10727641,4
+3024636,10727641,5
+3924193,10727641,4
+58927688,10727641,4
+iameric,10727641,5
+53364319,10727641,5
+127506443,10727641,4
+earthchild,10727641,3
+80648916,10727641,4
+56832705,10727641,4
+2182600,10727641,3
+2182600,10727641,3
+24639587,10727641,3
+51699958,10727641,4
+fenglai,10727641,3
+124570878,10727641,3
+49582119,10727641,4
+70467086,10727641,4
+63227061,10727641,3
+48492174,10727641,4
+136338060,10727641,4
+3935498,10727641,2
+73110105,10727641,4
+3314831,10727641,3
+61536847,10727641,2
+121826791,10727641,4
+wylwddjz,10727641,4
+54753971,10727641,3
+zhoujingsi,10727641,3
+50328248,10727641,3
+49247233,10727641,3
+47299010,10727641,3
+136593943,10727641,4
+63155041,10727641,3
+64670528,10727641,4
+pottqqq,10727641,3
+handsome23,10727641,4
+65804378,10727641,3
+follytinge,10727641,4
+cassiopeiaxiah,10727641,4
+humanafterall,10727641,5
+91305249,10727641,4
+renco,10727641,4
+62761738,10727641,3
+2432383,10727641,4
+2471352,10727641,4
+88302269,10727641,4
+lecsi,10727641,4
+9556755,10727641,3
+119406391,10727641,3
+57672911,10727641,4
+99074736,10727641,4
+29947405,10727641,3
+66336980,10727641,3
+119079844,10727641,3
+blue_sky_yang,10727641,3
+mao87523,10727641,4
+HSamson,10727641,4
+70202233,10727641,3
+62613227,10727641,3
+69822507,10727641,2
+4689314,10727641,4
+2452480,10727641,3
+leeilo,10727641,3
+angalny,10727641,3
+40967366,10727641,4
+4453892,10727641,-1
+136560460,10727641,3
+sunmiaoran,10727641,3
+Bebefore,10727641,3
+64716585,10727641,4
+49587231,10727641,3
+ymli,10727641,2
+65916762,10727641,5
+59781377,10727641,3
+diablov,10727641,4
+metaljacket,10727641,3
+63050490,10727641,2
+weizheren,10727641,3
+50238914,10727641,3
+Baracke,10727641,4
+hamletvsRomeo,10727641,4
+48717993,10727641,3
+119340060,10727641,4
+52606660,10727641,4
+51908799,10727641,3
+twinklingm,10727641,4
+55563514,10727641,5
+4523741,10727641,4
+26461987,10727641,3
+dsqingdao,10727641,-1
+80365604,10727641,4
+miachen,10727641,5
+2095941,10727641,4
+1998903,10727641,5
+3215192,10727641,4
+129274650,10727641,3
+76013835,10727641,4
+64943055,10727641,5
+123927119,10727641,3
+53457477,10727641,4
+chengjiaxuan,10727641,4
+51937003,10727641,2
+37673954,10727641,4
+135239811,10727641,3
+69187139,10727641,4
+zzz.aoe,10727641,4
+136516834,10727641,4
+29126479,10727641,4
+2533178,10727641,3
+mhkm,10727641,3
+77222475,10727641,3
+54199995,10727641,3
+ccushuaia1220,10727641,-1
+84548265,10727641,4
+4286666,10727641,4
+136505664,10727641,5
+landcontinent,10727641,4
+136454222,10727641,4
+67943015,10727641,3
+54428123,10727641,3
+maoyufreng,10727641,4
+135906739,10727641,4
+133714436,10727641,3
+1156438,10727641,3
+40995885,10727641,3
+danlan121,10727641,3
+57661642,10727641,4
+fineyou,10727641,5
+40567402,10727641,5
+48324038,10727641,4
+132341755,10727641,3
+51095264,10727641,5
+57156729,10727641,4
+4551546,10727641,3
+a83848400,10727641,3
+oxolin,10727641,3
+dogeli,10727641,5
+12289929,10727641,4
+64700587,10727641,4
+52471406,10727641,3
+cjjeff,10727641,3
+62717924,10727641,4
+ruyibuzairuyi,10727641,4
+5942247,10727641,4
+55914733,10727641,5
+65901691,10727641,3
+58542527,10727641,4
+joyeteyoj,10727641,5
+2119698,10727641,4
+62917977,10727641,4
+51369912,10727641,4
+yale2010,10727641,3
+just_yeat,10727641,3
+desa,10727641,4
+thisisdaisy,10727641,3
+reeboir,10727641,2
+58921414,10727641,4
+34571461,10727641,3
+tzytime,10727641,3
+cl20lc,10727641,3
+78689518,10727641,4
+ayurine,10727641,5
+hqwxyz,10727641,2
+infante,10727641,2
+130633898,10727641,2
+40161822,10727641,5
+50180510,10727641,4
+Algaeme,10727641,3
+51933689,10727641,5
+1829349,10727641,3
+56234281,10727641,3
+41209021,10727641,4
+romance90,10727641,3
+27644471,10727641,3
+71326967,10727641,3
+64430270,10727641,3
+carrieme,10727641,3
+49340190,10727641,3
+lolitazly,10727641,3
+63924562,10727641,4
+50118479,10727641,4
+44096316,10727641,3
+Yvonne_G,10727641,4
+107812748,10727641,4
+Baker-Street,10727641,4
+62730894,10727641,3
+81645668,10727641,5
+33493653,10727641,4
+131274312,10727641,5
+125346898,10727641,5
+cherbing,10727641,3
+128409852,10727641,3
+52382273,10727641,4
+47113198,10727641,3
+108496496,10727641,3
+luo_yanling,10727641,4
+51419805,10727641,5
+44160866,10727641,4
+Edward_Elric,10727641,3
+yumiaodemao,10727641,-1
+emor-hwang,10727641,2
+49974563,10727641,5
+45792584,10727641,3
+120792651,10727641,3
+136421859,10727641,5
+juwujian,10727641,4
+121146638,10727641,3
+3577491,10727641,4
+hdkoo,10727641,4
+favezhihao,10727641,4
+favezhihao,10727641,4
+52636646,10727641,3
+bullettime,10727641,2
+amsingapore,10727641,3
+dreamAnchor,10727641,4
+connieqiao,10727641,3
+46936304,10727641,3
+134318408,10727641,3
+xingxkxk,10727641,4
+evenrain2008,10727641,4
+59640195,10727641,4
+58004886,10727641,5
+x1ngstar,10727641,4
+135372483,10727641,3
+136396839,10727641,3
+yixiaoyan_,10727641,3
+46004647,10727641,4
+48554960,10727641,5
+snowlydouban,10727641,1
+MightyAtom,10727641,3
+MightyAtom,10727641,3
+oceanting,10727641,4
+artmisia,10727641,4
+57971874,10727641,3
+45646209,10727641,3
+53233343,10727641,3
+Mreja,10727641,3
+lollipopwyj,10727641,3
+131413332,10727641,4
+waldo0121,10727641,4
+hongna,10727641,4
+eleven0205,10727641,3
+2640849,10727641,3
+41315597,10727641,4
+IcyloveSeraphy,10727641,3
+xanthe_,10727641,4
+59797746,10727641,3
+yardbirds,10727641,4
+62842608,10727641,3
+andyliu030,10727641,-1
+79453297,10727641,4
+leiii,10727641,3
+1865210,10727641,4
+1437339,10727641,3
+piaoyull,10727641,4
+3936749,10727641,4
+vanuan,10727641,3
+67851427,10727641,4
+52652829,10727641,4
+54495452,10727641,3
+44057273,10727641,4
+49854579,10727641,4
+mickey0725,10727641,5
+yyy1240,10727641,3
+60222551,10727641,3
+132166609,10727641,4
+95264069,10727641,4
+54736283,10727641,4
+74196818,10727641,5
+applebunny,10727641,4
+4244381,10727641,5
+62600930,10727641,3
+135981815,10727641,3
+52198236,10727641,5
+47114271,10727641,3
+4568924,10727641,4
+64674632,10727641,4
+2679276,10727641,3
+1465852,10727641,3
+3307476,10727641,4
+116138651,10727641,3
+45755121,10727641,4
+98013800,10727641,3
+36661492,10727641,4
+2233781,10727641,2
+65218056,10727641,3
+owlman,10727641,4
+2376689,10727641,-1
+47407581,10727641,4
+96336225,10727641,4
+125402478,10727641,2
+47263713,10727641,5
+yoyochat,10727641,5
+40328329,10727641,4
+leoglory,10727641,3
+1539693,10727641,3
+Y_Y0907,10727641,3
+130610060,10727641,4
+4024346,10727641,5
+131744488,10727641,3
+59172517,10727641,4
+58083000,10727641,4
+52995380,10727641,3
+43409918,10727641,4
+1948576,10727641,-1
+tamiwang,10727641,5
+4033467,10727641,-1
+xpen95,10727641,4
+3034073,10727641,4
+51680535,10727641,3
+48667076,10727641,3
+2664578,10727641,5
+nanday,10727641,2
+4580722,10727641,4
+48031945,10727641,4
+119653223,10727641,5
+52179978,10727641,4
+teroteuroko,10727641,3
+bluebellforest,10727641,-1
+wendyrain,10727641,4
+2386302,10727641,5
+53471828,10727641,5
+Zynismus,10727641,3
+yeepy,10727641,4
+liarb,10727641,3
+creamxxy,10727641,3
+carerina,10727641,5
+zackman,10727641,4
+77634597,10727641,3
+53049553,10727641,5
+delicioussalad,10727641,5
+fengwanlu,10727641,3
+48369826,10727641,5
+xinyuemeizi,10727641,4
+81040698,10727641,4
+95310145,10727641,3
+57889113,10727641,4
+nanmon,10727641,3
+34966723,10727641,4
+halfyoyo,10727641,4
+32502933,10727641,4
+82630245,10727641,5
+130562665,10727641,5
+47022632,10727641,4
+27036601,10727641,2
+64949305,10727641,4
+135761559,10727641,3
+sissi0209,10727641,5
+122303970,10727641,4
+37448450,10727641,3
+134516953,10727641,4
+50747236,10727641,3
+114165552,10727641,4
+55916506,10727641,3
+74662202,10727641,4
+2620278,10727641,5
+63220712,10727641,3
+46649398,10727641,4
+62449667,10727641,-1
+linayan,10727641,4
+m0rtiny,10727641,5
+38884692,10727641,3
+125528314,10727641,4
+1781887,10727641,3
+dusk.xiyang,10727641,3
+66680308,10727641,3
+chenhuayang,10727641,4
+55332677,10727641,5
+yang_ygy,10727641,3
+76319059,10727641,4
+76319059,10727641,4
+green911,10727641,4
+136265610,10727641,4
+sdanlin,10727641,4
+135880399,10727641,3
+fayfayhao,10727641,4
+130435722,10727641,3
+34909792,10727641,4
+ImpossibleII,10727641,3
+frankjin,10727641,4
+69146575,10727641,5
+Plumed__Serpent,10727641,3
+43720060,10727641,3
+122720481,10727641,3
+45404415,10727641,3
+Dandelion369,10727641,4
+h1057015905,10727641,3
+jeskovampire,10727641,4
+heyheygun,10727641,3
+runlifelong,10727641,3
+80803700,10727641,2
+airchris,10727641,3
+123783477,10727641,4
+greenbeansand,10727641,4
+67456292,10727641,5
+136275151,10727641,3
+85250768,10727641,-1
+xylor,10727641,2
+54443064,10727641,3
+MISTER.X,10727641,4
+95147125,10727641,4
+54887771,10727641,5
+10827411,10727641,3
+75789624,10727641,4
+132347906,10727641,5
+2070699,10727641,2
+43625639,10727641,4
+3082551,10727641,4
+zommy,10727641,3
+lulu521621,10727641,5
+47632961,10727641,3
+tonytina,10727641,3
+mecerdes,10727641,2
+128932733,10727641,4
+Qevernever,10727641,3
+sunzj,10727641,4
+3208300,10727641,3
+47415286,10727641,4
+50694268,10727641,3
+play0829,10727641,4
+121730462,10727641,4
+V.J.,10727641,5
+wong_orz,10727641,5
+jian.ai,10727641,3
+60746988,10727641,4
+jeanann,10727641,4
+62776173,10727641,5
+122855833,10727641,4
+42291376,10727641,4
+135290961,10727641,5
+49985202,10727641,4
+asimpledream,10727641,5
+61319449,10727641,3
+11192863,10727641,4
+corina0717,10727641,4
+102904949,10727641,4
+56260072,10727641,3
+62159352,10727641,4
+61229226,10727641,3
+51582662,10727641,3
+132774712,10727641,3
+83129118,10727641,3
+ccw051746,10727641,4
+57278963,10727641,3
+lidiot,10727641,4
+80224563,10727641,5
+71715054,10727641,3
+51244681,10727641,3
+82717454,10727641,5
+littleshit,10727641,3
+littleshit,10727641,3
+52907345,10727641,3
+55806681,10727641,3
+milkcolor,10727641,4
+48335787,10727641,3
+58427192,10727641,4
+74825137,10727641,4
+43372236,10727641,4
+3352510,10727641,4
+musicer03,10727641,4
+91794047,10727641,3
+bukuweidouban,10727641,3
+53742632,10727641,4
+xiaomo828,10727641,4
+3032632,10727641,3
+3683910,10727641,4
+46965877,10727641,3
+48623750,10727641,4
+54635444,10727641,4
+3481080,10727641,4
+4727803,10727641,4
+mocouhs,10727641,4
+121602316,10727641,4
+80622644,10727641,4
+3633901,10727641,5
+cherryo,10727641,3
+showhand1988,10727641,4
+Charlie.Lee,10727641,4
+sskllt,10727641,3
+57288421,10727641,4
+66615793,10727641,3
+54757698,10727641,4
+91729154,10727641,3
+134537950,10727641,4
+sevenbeans,10727641,3
+54520030,10727641,4
+42661364,10727641,4
+83881122,10727641,4
+74307791,10727641,4
+132954430,10727641,4
+oracle218,10727641,3
+4011962,10727641,4
+68547609,10727641,4
+46420896,10727641,3
+whenyoubelieve,10727641,3
+2013907,10727641,3
+2311976,10727641,3
+1456706,10727641,3
+mrsmsr,10727641,4
+36621771,10727641,4
+33906135,10727641,4
+55018128,10727641,3
+4056445,10727641,4
+83507458,10727641,3
+101405544,10727641,5
+48919879,10727641,4
+83057102,10727641,5
+39132623,10727641,5
+67502392,10727641,3
+48155100,10727641,4
+doris19921203,10727641,3
+missgemini,10727641,4
+liuzhenhuadedou,10727641,3
+79951353,10727641,5
+gh13singer,10727641,4
+usstlxh,10727641,5
+127295564,10727641,5
+2616909,10727641,4
+4211678,10727641,4
+3616413,10727641,4
+68799841,10727641,4
+75413985,10727641,1
+mua_joker,10727641,5
+paranoidascetic,10727641,3
+128063349,10727641,3
+81336001,10727641,5
+yomfall,10727641,3
+36100413,10727641,3
+calyx,10727641,5
+130580816,10727641,4
+missingmycat,10727641,3
+41680917,10727641,4
+133195565,10727641,4
+2298495,10727641,5
+LegendZX,10727641,5
+butina,10727641,4
+2157105,10727641,5
+51699859,10727641,-1
+ft5239328,10727641,3
+119226090,10727641,5
+64911962,10727641,3
+hicode,10727641,3
+136194748,10727641,4
+50860943,10727641,3
+43840425,10727641,4
+gg_gogoing,10727641,3
+michiyojun,10727641,5
+51728436,10727641,5
+1198621,10727641,4
+1980904,10727641,2
+45375152,10727641,3
+63885118,10727641,5
+59426898,10727641,4
+70470057,10727641,4
+KInCwen,10727641,3
+73600166,10727641,4
+54781345,10727641,3
+3677782,10727641,5
+135128946,10727641,3
+23159155,10727641,4
+64217814,10727641,4
+Ginatea,10727641,3
+lchdonkey,10727641,4
+milansunshine,10727641,4
+3887848,10727641,4
+weimoxx,10727641,3
+yihengxi,10727641,4
+jinjidexiong,10727641,4
+46505445,10727641,4
+135239127,10727641,4
+135239127,10727641,4
+50075764,10727641,4
+Absurd1212,10727641,2
+Dev1antKoMi,10727641,4
+135677641,10727641,-1
+134276083,10727641,5
+46266479,10727641,-1
+7292654,10727641,3
+58513319,10727641,4
+78169012,10727641,4
+50443007,10727641,4
+79092004,10727641,5
+119900869,10727641,5
+59629692,10727641,3
+bravoKc,10727641,3
+63447172,10727641,5
+52702832,10727641,4
+42781557,10727641,3
+foreverred,10727641,4
+48968722,10727641,4
+48968722,10727641,4
+42948649,10727641,4
+52870461,10727641,4
+56976495,10727641,4
+jennystar,10727641,4
+22187637,10727641,3
+46014273,10727641,3
+45134770,10727641,4
+54092067,10727641,4
+78376995,10727641,5
+14451354,10727641,3
+77356251,10727641,3
+82025931,10727641,4
+92930894,10727641,3
+tomop,10727641,3
+18049709,10727641,5
+91193494,10727641,5
+3045539,10727641,2
+55320320,10727641,4
+54753552,10727641,4
+yukiyoung,10727641,4
+59038247,10727641,2
+57540468,10727641,4
+zangyaqiong,10727641,5
+feature-Z,10727641,4
+wei75820,10727641,3
+tiaotiaotang,10727641,4
+58850430,10727641,3
+57693045,10727641,3
+shalouzhitong,10727641,3
+2171255,10727641,4
+76566444,10727641,3
+51898920,10727641,4
+lisai1020,10727641,4
+hupose,10727641,4
+muxichahua,10727641,5
+55930112,10727641,3
+2206901,10727641,3
+103694448,10727641,4
+willieoo,10727641,4
+75179640,10727641,3
+51759536,10727641,3
+cattyiyoungeoon,10727641,5
+74541142,10727641,4
+33959216,10727641,3
+84978868,10727641,4
+hewenzicandy,10727641,4
+lostinfire,10727641,3
+126499602,10727641,3
+51909421,10727641,3
+summerbs,10727641,5
+53697035,10727641,5
+134847487,10727641,4
+46100445,10727641,5
+enjoymyjoy,10727641,5
+Jerryxuch,10727641,3
+65396178,10727641,4
+woshimomo,10727641,4
+YAMAHA_GO,10727641,4
+5851064,10727641,3
+81986503,10727641,3
+icecream308,10727641,4
+72133915,10727641,3
+52249991,10727641,5
+xifengweiyu,10727641,5
+42858442,10727641,3
+18046588,10727641,4
+47382115,10727641,4
+50054232,10727641,4
+57986340,10727641,3
+3506343,10727641,5
+xiaoweiwang,10727641,3
+69838429,10727641,5
+59572934,10727641,3
+83842649,10727641,4
+75852429,10727641,3
+zhouxin95,10727641,4
+135394418,10727641,4
+52069371,10727641,4
+65830621,10727641,5
+89320570,10727641,4
+49685419,10727641,4
+cherrysakura,10727641,4
+zhangziyi,10727641,4
+131147743,10727641,3
+Popdai,10727641,5
+wangDP,10727641,5
+bellaG,10727641,3
+foxswily,10727641,4
+2229889,10727641,4
+130321312,10727641,3
+96000077,10727641,4
+132439319,10727641,3
+69833341,10727641,4
+Turkeyears,10727641,3
+59625394,10727641,4
+43627476,10727641,3
+41051294,10727641,3
+53062232,10727641,4
+33973051,10727641,3
+130592757,10727641,3
+fishyfishy,10727641,4
+lionxb5,10727641,4
+46525176,10727641,3
+47044348,10727641,5
+130617817,10727641,4
+16212011,10727641,4
+70033159,10727641,3
+changlianlove,10727641,5
+67071901,10727641,3
+zzxuan,10727641,4
+nkkun,10727641,4
+nizhenhua1981,10727641,3
+43452126,10727641,4
+49855743,10727641,4
+wantu,10727641,2
+40587202,10727641,3
+53033730,10727641,4
+snow961003,10727641,5
+newslizi,10727641,4
+newslizi,10727641,4
+135928484,10727641,3
+34701908,10727641,4
+65615098,10727641,5
+77838488,10727641,3
+18088011,10727641,4
+yyhhf,10727641,3
+25977714,10727641,4
+metaphyp,10727641,4
+errorpig,10727641,4
+1951463,10727641,3
+2225215,10727641,3
+xyhen,10727641,4
+4138157,10727641,3
+52956534,10727641,4
+77571393,10727641,2
+zhuzaixuanyabia,10727641,4
+37288881,10727641,3
+133245536,10727641,3
+46348139,10727641,3
+15367255,10727641,4
+52098224,10727641,4
+3397745,10727641,3
+70930463,10727641,4
+40558804,10727641,4
+42678241,10727641,5
+53362350,10727641,4
+baby861708,10727641,3
+125602185,10727641,5
+20213088,10727641,3
+98855330,10727641,4
+84370641,10727641,4
+2760083,10727641,4
+sunviro,10727641,3
+49930481,10727641,4
+54853596,10727641,4
+4083554,10727641,3
+48567965,10727641,4
+53335483,10727641,5
+69594701,10727641,4
+towne,10727641,4
+59699452,10727641,5
+25982397,10727641,3
+simplece,10727641,4
+49622936,10727641,3
+57742737,10727641,4
+akiisajunk,10727641,3
+syrahshiraz,10727641,5
+zodiac93,10727641,5
+135623300,10727641,3
+nilreb,10727641,4
+51299801,10727641,5
+yanglaosan,10727641,3
+2437974,10727641,4
+mengxixi,10727641,4
+gulupao,10727641,2
+4287326,10727641,4
+122125335,10727641,4
+babywineer,10727641,4
+4075064,10727641,5
+47376302,10727641,4
+larrylazy,10727641,5
+55673467,10727641,5
+79547229,10727641,4
+50972547,10727641,5
+samove,10727641,4
+1213382,10727641,4
+132750777,10727641,2
+60027696,10727641,5
+feizhuangzhuang,10727641,3
+cplcs,10727641,4
+64249051,10727641,4
+49519192,10727641,3
+107143245,10727641,5
+Z369728892,10727641,4
+47959291,10727641,4
+A.Mo,10727641,4
+junglehaha,10727641,5
+wuxi4945,10727641,3
+91688422,10727641,3
+96473447,10727641,3
+59318451,10727641,4
+baishibaihu,10727641,4
+93602980,10727641,5
+48163178,10727641,-1
+3943144,10727641,5
+66714330,10727641,2
+yiyi9love,10727641,5
+50935504,10727641,3
+siro7,10727641,4
+110542864,10727641,4
+1099721,10727641,4
+56159025,10727641,4
+45846589,10727641,3
+74103020,10727641,3
+135092660,10727641,2
+31922995,10727641,4
+lindanda,10727641,3
+katerzo,10727641,4
+57406267,10727641,3
+KKPrincess,10727641,5
+51212428,10727641,3
+starpieces,10727641,-1
+moongemini,10727641,4
+MerciMFY,10727641,5
+134192641,10727641,4
+60470640,10727641,4
+Gyingguo,10727641,5
+skyaim,10727641,4
+mjxlyc,10727641,4
+3921078,10727641,4
+your_j,10727641,3
+63167875,10727641,3
+65562815,10727641,4
+2087622,10727641,3
+84168657,10727641,4
+55330229,10727641,3
+40027917,10727641,3
+yuchenyuan,10727641,4
+64213898,10727641,4
+61651854,10727641,4
+101874395,10727641,-1
+AAAHHHAAA,10727641,5
+104842273,10727641,4
+loveleo,10727641,3
+jekyll,10727641,3
+3918507,10727641,4
+58084681,10727641,4
+4668466,10727641,3
+23266967,10727641,3
+domber,10727641,4
+anniex,10727641,5
+wuyuloveelva,10727641,5
+126489180,10727641,5
+97365571,10727641,5
+3546054,10727641,4
+ariesking,10727641,3
+119734974,10727641,4
+lyx906,10727641,3
+gjx189,10727641,4
+ninjiushinin,10727641,4
+51947048,10727641,4
+83193363,10727641,4
+PinkyL,10727641,3
+69155614,10727641,4
+70011209,10727641,5
+yutang,10727641,3
+1804203,10727641,4
+37019836,10727641,3
+jopees,10727641,3
+2196209,10727641,3
+yjv22,10727641,3
+2240638,10727641,4
+zo3c,10727641,3
+dober,10727641,4
+58901835,10727641,4
+sharkspeare,10727641,4
+l---j,10727641,3
+44028961,10727641,4
+ido_idoing,10727641,3
+67732402,10727641,4
+47335967,10727641,4
+thevyi,10727641,4
+3355710,10727641,4
+65948183,10727641,3
+73587524,10727641,4
+suealone,10727641,-1
+131749198,10727641,4
+67947213,10727641,4
+sunnyxin0521,10727641,4
+dreaming66,10727641,4
+131597292,10727641,5
+tomatosweet,10727641,5
+3014394,10727641,3
+121997108,10727641,4
+dentist,10727641,4
+catsama77,10727641,3
+59220835,10727641,4
+joyzhai,10727641,4
+aquariusyoyo,10727641,4
+aquariusyoyo,10727641,4
+67297999,10727641,3
+ADmoviemtime,10727641,5
+3687958,10727641,4
+59799868,10727641,3
+59217273,10727641,4
+alexguo,10727641,5
+47471768,10727641,3
+70668435,10727641,4
+53227132,10727641,3
+schumibati,10727641,3
+8582710,10727641,2
+joyzhuang,10727641,-1
+jygreen,10727641,4
+bigmiao,10727641,3
+1792502,10727641,3
+formosa12,10727641,3
+125136984,10727641,4
+42826387,10727641,2
+100338185,10727641,3
+ZonaLau1997,10727641,5
+zdybit,10727641,3
+77223468,10727641,3
+Seuysiro,10727641,3
+3981138,10727641,4
+133349897,10727641,4
+134969713,10727641,4
+50731325,10727641,3
+122938233,10727641,5
+Sk.Young,10727641,4
+57001880,10727641,4
+felifeli,10727641,4
+10040083,10727641,-1
+58511967,10727641,4
+fwtzzl,10727641,4
+3254418,10727641,5
+tarapanda,10727641,3
+centerfold,10727641,3
+74773211,10727641,3
+qfsstj,10727641,4
+69015025,10727641,5
+Zealx,10727641,4
+50235608,10727641,4
+61483050,10727641,4
+MihaelKeehl,10727641,4
+48946932,10727641,5
+58993802,10727641,4
+1521470,10727641,3
+jielade08,10727641,4
+stickerzhang,10727641,4
+nonoloveu,10727641,3
+boill,10727641,4
+32539484,10727641,4
+130152879,10727641,4
+41651079,10727641,4
+cviva,10727641,2
+79352949,10727641,4
+woshisijia,10727641,3
+sallymour,10727641,4
+129473035,10727641,3
+3030951,10727641,5
+woaikanlongmao,10727641,5
+51908195,10727641,3
+63134305,10727641,4
+49025260,10727641,4
+1396140,10727641,3
+56922790,10727641,4
+2382217,10727641,4
+sweetxyy,10727641,5
+Ritroman92,10727641,5
+x7,10727641,4
+IamV,10727641,4
+halk,10727641,4
+Skiboo,10727641,5
+enderstar,10727641,2
+3772715,10727641,4
+mhyigeren,10727641,3
+33374006,10727641,4
+wxljoanna,10727641,4
+33300959,10727641,3
+kidify,10727641,3
+82912362,10727641,4
+hehe2day,10727641,3
+59556078,10727641,4
+40740426,10727641,4
+db924519251,10727641,3
+loveormore,10727641,3
+iampattygong,10727641,4
+zmhlys,10727641,4
+flycolorice,10727641,-1
+23735384,10727641,4
+1434651,10727641,4
+3782024,10727641,4
+4348412,10727641,4
+2632584,10727641,3
+79720313,10727641,4
+86140576,10727641,-1
+3934047,10727641,4
+ruiqigreen,10727641,4
+Do-my-self,10727641,4
+3899360,10727641,3
+liz_anna,10727641,5
+98110557,10727641,2
+tanmingdong,10727641,3
+Ziya,10727641,4
+72123222,10727641,4
+49253215,10727641,3
+47144465,10727641,4
+58386149,10727641,2
+76716477,10727641,4
+92522882,10727641,3
+53910261,10727641,4
+issdream,10727641,4
+minicarpenter,10727641,4
+46011187,10727641,3
+43163424,10727641,4
+53582530,10727641,4
+4654119,10727641,3
+68307753,10727641,4
+Ye_sss,10727641,4
+oak1890,10727641,4
+K-Child,10727641,3
+66114359,10727641,4
+handankaikai,10727641,3
+64959073,10727641,4
+shingo,10727641,3
+dobima,10727641,3
+amber-tear,10727641,4
+64515288,10727641,4
+66916143,10727641,4
+48824155,10727641,4
+88719361,10727641,4
+biby9475,10727641,3
+135547689,10727641,5
+72642943,10727641,4
+42675078,10727641,5
+63757293,10727641,4
+133734548,10727641,3
+53682563,10727641,4
+OpenSpaces,10727641,5
+OpenSpaces,10727641,5
+106596511,10727641,4
+knighttcwsy,10727641,3
+julian_lu,10727641,4
+CSO-Botasky,10727641,3
+62586140,10727641,5
+donbeet,10727641,5
+58504822,10727641,4
+71327383,10727641,5
+benqiu,10727641,3
+44162461,10727641,5
+47178789,10727641,3
+SpringLamb,10727641,5
+andreamomozby,10727641,4
+illness,10727641,4
+XiaoShai,10727641,3
+jimmyusher,10727641,3
+69467986,10727641,4
+longestname,10727641,3
+54405784,10727641,-1
+135844891,10727641,4
+wyfar,10727641,4
+53339781,10727641,4
+23522353,10727641,4
+67093640,10727641,3
+49447425,10727641,4
+Lan.die,10727641,3
+46355021,10727641,5
+2510758,10727641,5
+63194138,10727641,3
+kristin0711,10727641,3
+62500230,10727641,3
+fyyksyh,10727641,3
+joyinzone,10727641,3
+2224281,10727641,4
+48086467,10727641,4
+38184816,10727641,3
+babyili,10727641,4
+suvenee0715,10727641,3
+blueclover,10727641,2
+76595310,10727641,4
+A_Sam,10727641,4
+4553155,10727641,4
+71539240,10727641,5
+37853656,10727641,2
+44134802,10727641,4
+61415476,10727641,4
+63997974,10727641,4
+50124782,10727641,5
+ohmygod813,10727641,4
+tofrom,10727641,4
+69192715,10727641,4
+wwcg,10727641,5
+59394881,10727641,4
+91480587,10727641,5
+woshihaoren123,10727641,2
+71741760,10727641,4
+Zenforfree,10727641,3
+44596229,10727641,3
+veranannan,10727641,4
+rakuL,10727641,3
+81222828,10727641,4
+48023115,10727641,2
+68793477,10727641,4
+87603533,10727641,4
+yoyo_wu,10727641,3
+zero0913,10727641,4
+anviliu,10727641,4
+53845428,10727641,-1
+Duck1217479484,10727641,4
+dOdO621,10727641,4
+diwuweidi,10727641,4
+76109816,10727641,5
+129096085,10727641,4
+126621481,10727641,3
+54336845,10727641,5
+121356446,10727641,4
+48678826,10727641,4
+corrinneh,10727641,4
+yolandami,10727641,3
+47857020,10727641,5
+90693032,10727641,3
+70109874,10727641,3
+134040475,10727641,3
+jiujiuprincess,10727641,4
+xiao33319,10727641,5
+34255820,10727641,4
+74548439,10727641,4
+4260546,10727641,4
+Jellabah,10727641,-1
+47261642,10727641,2
+36831002,10727641,5
+birdgirl,10727641,3
+125538893,10727641,5
+jaspure,10727641,4
+59769203,10727641,5
+121289283,10727641,3
+59280087,10727641,5
+41022109,10727641,4
+135623570,10727641,2
+41022109,10727641,4
+135623570,10727641,2
+54781167,10727641,5
+panyari,10727641,4
+ningjuntao,10727641,4
+2367248,10727641,4
+60867302,10727641,3
+33231016,10727641,4
+74960024,10727641,4
+68100167,10727641,4
+10918686,10727641,4
+63226607,10727641,4
+133350413,10727641,4
+56225727,10727641,4
+76552950,10727641,4
+36886500,10727641,3
+mydream_allblue,10727641,4
+1066031,10727641,3
+2033181,10727641,5
+83295870,10727641,4
+duochiduozhan,10727641,3
+67007418,10727641,4
+39319034,10727641,-1
+followmyfaith,10727641,4
+1233601,10727641,3
+134519801,10727641,4
+mobikarl,10727641,3
+56267380,10727641,4
+48623920,10727641,4
+131860652,10727641,4
+53126915,10727641,4
+joybang,10727641,4
+blueYY,10727641,3
+1016554,10727641,4
+auslittlespace,10727641,5
+131380413,10727641,3
+46065900,10727641,4
+3343209,10727641,-1
+68999326,10727641,4
+42034925,10727641,4
+york_wu,10727641,2
+97845627,10727641,3
+113418380,10727641,4
+54869862,10727641,4
+19716945,10727641,3
+106548711,10727641,4
+71665499,10727641,4
+80658200,10727641,4
+markshi425,10727641,5
+51426219,10727641,3
+76526220,10727641,3
+53273464,10727641,4
+59886586,10727641,-1
+xrdcrab,10727641,-1
+28835602,10727641,5
+59181026,10727641,4
+134526659,10727641,4
+46959087,10727641,4
+50166173,10727641,4
+69561858,10727641,5
+55840798,10727641,3
+39791533,10727641,3
+52525960,10727641,3
+1887825,10727641,4
+1552160,10727641,2
+maggie.wxy,10727641,4
+mylittleairport,10727641,5
+1926472,10727641,3
+49811100,10727641,4
+69499815,10727641,3
+48420080,10727641,3
+132326708,10727641,5
+Cindylam,10727641,4
+sukaka51,10727641,4
+78885563,10727641,4
+34592808,10727641,4
+54541604,10727641,4
+4340826,10727641,5
+sonicsung,10727641,4
+129219793,10727641,3
+129219793,10727641,3
+3116575,10727641,3
+60101406,10727641,5
+59005110,10727641,3
+orcagoal,10727641,5
+121475864,10727641,4
+ajl1014,10727641,4
+97378500,10727641,5
+57549243,10727641,4
+3564765,10727641,3
+gs21cn,10727641,4
+84116606,10727641,4
+66771614,10727641,4
+57143181,10727641,4
+46210114,10727641,4
+kiwi_1115,10727641,3
+61702958,10727641,4
+kinozhang,10727641,-1
+74418129,10727641,4
+AAAhua,10727641,4
+4013665,10727641,5
+3215381,10727641,3
+2630742,10727641,4
+savage001,10727641,3
+tsoo416,10727641,2
+muziadao,10727641,4
+47472746,10727641,3
+65301397,10727641,3
+54731797,10727641,4
+seven_mu,10727641,4
+tomiesky,10727641,4
+115697810,10727641,4
+dolly-cici,10727641,4
+aircentee,10727641,5
+winnie0032,10727641,3
+whalebb,10727641,4
+69223309,10727641,4
+FennyFu,10727641,2
+shimengyan0326,10727641,4
+85636644,10727641,5
+wen1228,10727641,4
+52012798,10727641,4
+fcinter,10727641,3
+alice.ming,10727641,4
+15444113,10727641,4
+1754955,10727641,4
+4214564,10727641,3
+58158290,10727641,3
+2003213,10727641,5
+luoyanbella,10727641,3
+90149495,10727641,4
+43782586,10727641,4
+57702848,10727641,4
+16347879,10727641,3
+126071846,10727641,4
+40853957,10727641,3
+wcwc,10727641,5
+troylision,10727641,5
+59375998,10727641,4
+48415827,10727641,4
+shanehsiang,10727641,3
+64723431,10727641,4
+51445817,10727641,4
+28586261,10727641,4
+78713846,10727641,4
+28296079,10727641,4
+59884270,10727641,4
+49667048,10727641,4
+46170275,10727641,4
+52335309,10727641,4
+1937088,10727641,4
+3052607,10727641,4
+102214206,10727641,3
+mainemay,10727641,3
+39888720,10727641,5
+2861869,10727641,4
+seizeup,10727641,4
+viola_ting,10727641,2
+49643631,10727641,4
+dinoel,10727641,4
+53916506,10727641,5
+evich,10727641,3
+3457634,10727641,4
+zhangyawei,10727641,3
+62131091,10727641,4
+72598149,10727641,4
+2759466,10727641,3
+nickblue,10727641,2
+127102772,10727641,4
+135746994,10727641,4
+zouzhiruo,10727641,3
+megzzy,10727641,3
+45242960,10727641,4
+64425214,10727641,4
+135422574,10727641,4
+cloudwwb,10727641,3
+51149079,10727641,4
+4214124,10727641,3
+131903502,10727641,4
+57420118,10727641,3
+57420118,10727641,3
+1451542,10727641,2
+47167494,10727641,4
+bekylin,10727641,4
+zhenzhenyui,10727641,4
+131610219,10727641,4
+83513831,10727641,4
+2752525,10727641,4
+65475140,10727641,3
+tlbb008,10727641,4
+59858658,10727641,5
+tea123,10727641,5
+65074680,10727641,4
+50234828,10727641,4
+3893974,10727641,4
+Suumer007,10727641,4
+tianchuan,10727641,3
+57951864,10727641,4
+4657541,10727641,2
+jinzimiao,10727641,5
+xiaodao102,10727641,3
+51100692,10727641,5
+46818877,10727641,3
+84745831,10727641,3
+3092474,10727641,5
+41130036,10727641,4
+65398795,10727641,3
+50217070,10727641,3
+2547928,10727641,4
+4439510,10727641,3
+nalusea,10727641,2
+noodleno3,10727641,5
+73747958,10727641,4
+26379453,10727641,3
+Halisadreamer,10727641,3
+WhiteShadows,10727641,4
+57217580,10727641,2
+32865838,10727641,4
+64328101,10727641,4
+53586919,10727641,4
+49388908,10727641,3
+52021826,10727641,5
+69927296,10727641,4
+80923059,10727641,4
+stefani_hz,10727641,2
+134145147,10727641,3
+fantasymika,10727641,4
+2884967,10727641,3
+64658435,10727641,2
+jhxxs,10727641,4
+dustybaby,10727641,3
+4900400,10727641,4
+2180309,10727641,5
+Simplelove_,10727641,3
+45820206,10727641,5
+65662348,10727641,3
+jpjc222,10727641,4
+117027234,10727641,4
+72945107,10727641,3
+uemadj,10727641,4
+zbar1234,10727641,5
+77111727,10727641,3
+miniqian0228,10727641,-1
+dove219,10727641,3
+51955688,10727641,4
+102653753,10727641,3
+freakg,10727641,3
+43255855,10727641,1
+4345520,10727641,4
+65308671,10727641,-1
+chaochao85mao,10727641,-1
+huahuadaisy,10727641,3
+60570203,10727641,3
+58308697,10727641,3
+3348609,10727641,5
+4236471,10727641,4
+nvwu_sophia,10727641,4
+47098539,10727641,4
+106730683,10727641,4
+svtg,10727641,3
+svtg,10727641,3
+yangsheng213,10727641,3
+3725383,10727641,5
+121916264,10727641,4
+liangzhuzaoshu,10727641,-1
+67413514,10727641,5
+chelseaq,10727641,4
+candy_maoshijia,10727641,4
+2544330,10727641,3
+59123210,10727641,4
+51299697,10727641,4
+onlysaybye,10727641,3
+46203022,10727641,3
+107495405,10727641,3
+baicun,10727641,5
+moonpaul,10727641,4
+37303827,10727641,3
+belmer,10727641,4
+liux5520,10727641,5
+lyzw,10727641,5
+bobo32,10727641,4
+127506237,10727641,5
+towzoo,10727641,4
+huxzhao,10727641,4
+48066058,10727641,2
+42418025,10727641,3
+aki0726,10727641,3
+bakaemono,10727641,4
+27073019,10727641,4
+94966849,10727641,4
+55575289,10727641,4
+1398348,10727641,4
+71093640,10727641,3
+134540692,10727641,4
+1061597,10727641,4
+hotforeverwhite,10727641,5
+41786241,10727641,4
+96856511,10727641,3
+83778628,10727641,5
+69856173,10727641,4
+69856173,10727641,4
+celinedsam,10727641,4
+1108403,10727641,3
+37045614,10727641,4
+imzrh,10727641,4
+rampager,10727641,4
+1555908,10727641,4
+62536526,10727641,5
+3694786,10727641,3
+blindye,10727641,-1
+lalade,10727641,4
+62945794,10727641,4
+135545986,10727641,4
+littlet2010,10727641,3
+71928655,10727641,4
+61355644,10727641,4
+Gaspard,10727641,3
+xxSHOUT,10727641,3
+132787116,10727641,4
+46788822,10727641,3
+61259818,10727641,3
+cca2222223,10727641,4
+135704491,10727641,4
+innocentwarm,10727641,4
+46483875,10727641,3
+44282848,10727641,3
+61312247,10727641,4
+blackey,10727641,4
+55755276,10727641,4
+115220323,10727641,3
+57841233,10727641,4
+xinyu1890,10727641,3
+nile0106,10727641,1
+43087425,10727641,3
+55019838,10727641,3
+wangjun1900,10727641,3
+73532203,10727641,3
+sunhuaning,10727641,5
+maxsoulspace,10727641,4
+easytodo,10727641,3
+39824986,10727641,3
+45833897,10727641,4
+46411162,10727641,5
+bolanboy,10727641,4
+124040620,10727641,5
+51044049,10727641,4
+38850701,10727641,4
+48304556,10727641,3
+130770428,10727641,2
+lph12168,10727641,4
+82138315,10727641,3
+wondisfy,10727641,5
+61019177,10727641,4
+49326502,10727641,4
+54787734,10727641,-1
+56871206,10727641,4
+4100649,10727641,4
+INTERVENTION,10727641,5
+3550233,10727641,3
+kasaier,10727641,1
+1228551,10727641,3
+68204055,10727641,4
+120159555,10727641,4
+51814592,10727641,4
+123977860,10727641,5
+2753727,10727641,3
+48335496,10727641,4
+130391371,10727641,4
+17074035,10727641,4
+car.men,10727641,5
+xuhongruc,10727641,4
+84408746,10727641,3
+asfishinwater,10727641,3
+51443474,10727641,3
+misssunshinerr,10727641,4
+3349587,10727641,3
+shijinqi,10727641,5
+sid005,10727641,3
+57713987,10727641,4
+SueZhao,10727641,4
+70588269,10727641,4
+iqingyang,10727641,4
+61927356,10727641,4
+58364140,10727641,3
+byjch,10727641,3
+cby1993v,10727641,4
+2005602,10727641,3
+sunny-lj,10727641,4
+yechenchao,10727641,3
+52372412,10727641,3
+2622237,10727641,4
+alafangfang,10727641,3
+52129512,10727641,4
+nina8489,10727641,3
+48615515,10727641,5
+61805838,10727641,3
+3934917,10727641,3
+5955160,10727641,4
+63830890,10727641,4
+50414764,10727641,5
+Aurora707,10727641,4
+57725456,10727641,4
+RBMILAN-zwy,10727641,3
+54242754,10727641,3
+72936086,10727641,3
+84773489,10727641,4
+81163129,10727641,3
+4344093,10727641,-1
+122990703,10727641,4
+taxidriver1976,10727641,3
+carmen8212,10727641,4
+131786401,10727641,4
+2817521,10727641,3
+irischou,10727641,4
+56633809,10727641,4
+69529988,10727641,4
+viola-x,10727641,4
+124812731,10727641,4
+59538037,10727641,4
+51408985,10727641,4
+44066080,10727641,5
+dangdangbaba,10727641,4
+105895178,10727641,5
+fmksheva,10727641,4
+49685592,10727641,4
+60449837,10727641,4
+81591121,10727641,4
+42106999,10727641,4
+134972244,10727641,4
+69317675,10727641,4
+qingmuwu,10727641,3
+34220694,10727641,4
+83019485,10727641,3
+AJ.neverland,10727641,4
+2512153,10727641,4
+47845902,10727641,3
+44975625,10727641,4
+73665578,10727641,3
+102627576,10727641,3
+54083120,10727641,4
+54083120,10727641,4
+56711504,10727641,4
+63768742,10727641,5
+54790827,10727641,4
+76964275,10727641,4
+lostcat84,10727641,2
+60832172,10727641,3
+1565710,10727641,5
+43148544,10727641,3
+52045308,10727641,5
+97011076,10727641,-1
+43870659,10727641,5
+wuyanqiu,10727641,3
+102650364,10727641,3
+46842319,10727641,3
+62314563,10727641,4
+alunnihao,10727641,5
+135501678,10727641,5
+akiwalnut,10727641,5
+2882690,10727641,3
+61555779,10727641,3
+72128165,10727641,4
+122536695,10727641,4
+92490871,10727641,3
+1345496,10727641,5
+44420749,10727641,4
+43283265,10727641,3
+82891330,10727641,3
+135681079,10727641,4
+18082249,10727641,4
+buddhajump,10727641,2
+54896883,10727641,4
+3296630,10727641,4
+Elvis-lx3,10727641,4
+83880297,10727641,5
+37883393,10727641,3
+1444111,10727641,4
+125294371,10727641,4
+2836389,10727641,3
+burclover,10727641,3
+38675688,10727641,3
+hanlywu,10727641,1
+59551626,10727641,3
+huangzj09thu,10727641,3
+58376087,10727641,4
+50374697,10727641,2
+37885408,10727641,5
+73292250,10727641,4
+lovepeter,10727641,3
+2828084,10727641,4
+52478383,10727641,5
+yishengpingfan,10727641,4
+50515546,10727641,5
+114743620,10727641,3
+kingmonkey,10727641,4
+36617894,10727641,3
+57778394,10727641,3
+41214898,10727641,4
+alice-cat,10727641,5
+97772446,10727641,4
+28467614,10727641,4
+snowyhowe,10727641,4
+43558241,10727641,3
+sunny1992,10727641,4
+45271252,10727641,4
+fangpeng521,10727641,4
+monanaka,10727641,4
+119063618,10727641,4
+62482710,10727641,4
+132388146,10727641,3
+dhlp,10727641,5
+49365587,10727641,4
+wulaoshan,10727641,4
+3398416,10727641,4
+12528508,10727641,5
+130817915,10727641,3
+37757920,10727641,5
+CloudTHE,10727641,4
+44690899,10727641,4
+gaxiaomi,10727641,5
+icplasf,10727641,5
+54781799,10727641,4
+52970998,10727641,4
+48232992,10727641,3
+59094570,10727641,5
+89270889,10727641,4
+50404313,10727641,4
+45505109,10727641,5
+46215737,10727641,5
+13191648,10727641,4
+57577418,10727641,3
+cyygigig,10727641,4
+126746574,10727641,4
+135670326,10727641,4
+51384913,10727641,4
+130020039,10727641,4
+Cristina.Yang,10727641,4
+127184799,10727641,5
+115560712,10727641,4
+36654067,10727641,5
+thriller32,10727641,3
+4848799,10727641,4
+17790607,10727641,3
+128124324,10727641,5
+67194113,10727641,3
+lizihevip,10727641,4
+45482570,10727641,4
+nini1030,10727641,3
+46167382,10727641,4
+sugarjojo,10727641,4
+zzzxy,10727641,3
+TalkChan,10727641,4
+28089263,10727641,4
+30108942,10727641,4
+84152502,10727641,3
+48028421,10727641,3
+35805626,10727641,3
+133087040,10727641,5
+81914486,10727641,4
+49910264,10727641,3
+taronie,10727641,4
+49255582,10727641,5
+sky_shadow,10727641,4
+135660540,10727641,4
+22040154,10727641,3
+oliveliu,10727641,4
+plidezus,10727641,3
+135254330,10727641,4
+30830742,10727641,3
+47423392,10727641,4
+biguniverse,10727641,3
+ice41322,10727641,2
+58697210,10727641,4
+yuxflan,10727641,3
+37382236,10727641,4
+pengze840128,10727641,3
+75651763,10727641,4
+59129552,10727641,4
+Huizailikai,10727641,4
+45775512,10727641,3
+cxtx520031,10727641,4
+yanism,10727641,3
+28482979,10727641,4
+129449441,10727641,4
+133319509,10727641,5
+135628685,10727641,4
+102627656,10727641,5
+34094574,10727641,3
+89928823,10727641,4
+xyc1987,10727641,4
+41901407,10727641,4
+iamloco,10727641,4
+LadyA,10727641,4
+acgfan,10727641,4
+111273600,10727641,3
+atu521,10727641,4
+68084040,10727641,5
+underware,10727641,5
+59291130,10727641,5
+1285360,10727641,5
+45080512,10727641,3
+70972968,10727641,2
+zhantinger,10727641,5
+80359618,10727641,4
+51576505,10727641,5
+83942913,10727641,3
+preconscious,10727641,4
+127731912,10727641,4
+59025385,10727641,3
+78491782,10727641,4
+46883744,10727641,4
+hjconan,10727641,3
+4213331,10727641,-1
+endofmay,10727641,3
+himarkcn,10727641,4
+3248654,10727641,3
+63821085,10727641,4
+135647354,10727641,3
+DUOSI,10727641,4
+shyue0268,10727641,4
+3288269,10727641,3
+2406760,10727641,4
+116036519,10727641,3
+skloveshaka,10727641,4
+58185506,10727641,3
+feelruiyan,10727641,4
+51684202,10727641,5
+43308232,10727641,4
+kubrick_dy,10727641,4
+58542369,10727641,5
+48905575,10727641,3
+51416132,10727641,3
+TGLRF,10727641,3
+jaymo,10727641,4
+QPF,10727641,4
+cios,10727641,4
+amibubai,10727641,3
+129051527,10727641,4
+130446592,10727641,3
+126957176,10727641,3
+q168,10727641,4
+50389330,10727641,4
+59393765,10727641,4
+2670240,10727641,3
+40971398,10727641,5
+81475444,10727641,4
+1481976,10727641,4
+icezyf415,10727641,4
+82285213,10727641,3
+76613301,10727641,4
+56964823,10727641,4
+64543096,10727641,4
+132076381,10727641,4
+57943031,10727641,5
+nighthanwei,10727641,2
+zzkiara,10727641,3
+51574104,10727641,4
+taoqishu,10727641,4
+playtoy,10727641,3
+75203785,10727641,2
+135556704,10727641,4
+44516493,10727641,5
+102203140,10727641,4
+1281739,10727641,3
+50266692,10727641,3
+47345174,10727641,3
+48614999,10727641,5
+120895686,10727641,4
+1643126,10727641,4
+34377394,10727641,5
+129164828,10727641,3
+135206813,10727641,4
+allenyao,10727641,4
+kangmeng,10727641,4
+42725289,10727641,3
+fairyhui521,10727641,5
+4496437,10727641,3
+132236886,10727641,4
+wangmuyang,10727641,3
+3218814,10727641,4
+3218814,10727641,4
+84077935,10727641,4
+49659191,10727641,3
+amyirose,10727641,5
+50502799,10727641,3
+47032049,10727641,4
+44406151,10727641,4
+kafuxi,10727641,4
+125484892,10727641,2
+44832442,10727641,4
+paraj,10727641,3
+2917148,10727641,5
+61550476,10727641,4
+illusionchen,10727641,3
+62296200,10727641,5
+2761282,10727641,3
+3201544,10727641,3
+sumisumi,10727641,3
+66178639,10727641,4
+44029743,10727641,3
+windy.lin,10727641,4
+tengteng58,10727641,4
+eriol1987,10727641,5
+marco_0708,10727641,4
+zhoujiewu,10727641,3
+msw0123,10727641,1
+65311350,10727641,4
+41396729,10727641,4
+aoniki,10727641,4
+2415600,10727641,3
+15439490,10727641,5
+129724079,10727641,4
+119924623,10727641,5
+134879624,10727641,4
+Melanmare,10727641,3
+47950267,10727641,4
+61476268,10727641,4
+79135407,10727641,4
+lingdonging,10727641,4
+41471584,10727641,5
+41471584,10727641,5
+mysunshineangle,10727641,4
+feiifee,10727641,4
+jiushigesuren,10727641,4
+39823985,10727641,3
+43336457,10727641,5
+48041444,10727641,5
+49150172,10727641,3
+xiaoxinadd,10727641,4
+52878748,10727641,4
+Air02,10727641,5
+46748939,10727641,3
+121137821,10727641,4
+63620310,10727641,4
+73868761,10727641,3
+79080709,10727641,4
+2477652,10727641,4
+guoziguoziguozi,10727641,4
+hettler,10727641,4
+65718372,10727641,4
+40760358,10727641,3
+74097394,10727641,4
+64451802,10727641,3
+63188562,10727641,3
+37558127,10727641,5
+40113350,10727641,3
+65540708,10727641,4
+real-rex,10727641,3
+54147990,10727641,5
+86450815,10727641,4
+95460891,10727641,3
+59820007,10727641,4
+57622739,10727641,4
+103045657,10727641,3
+evanglion,10727641,4
+3647902,10727641,5
+44066493,10727641,5
+30343256,10727641,3
+50579250,10727641,4
+132271021,10727641,4
+66682606,10727641,3
+135410614,10727641,3
+4160312,10727641,4
+ichloe,10727641,4
+aoaoaoaoaoaoao,10727641,3
+ducklucy,10727641,4
+jadexyy,10727641,4
+123625456,10727641,4
+87212949,10727641,3
+43811088,10727641,5
+moyx,10727641,2
+47913948,10727641,3
+64218724,10727641,4
+supersaul,10727641,5
+92318310,10727641,4
+saisyou,10727641,2
+43529469,10727641,4
+13728402,10727641,3
+49594661,10727641,4
+78662061,10727641,4
+57063106,10727641,4
+dustblue,10727641,2
+62445201,10727641,5
+live4ever,10727641,4
+58197963,10727641,5
+48898826,10727641,4
+62765064,10727641,4
+1489279,10727641,-1
+68243999,10727641,4
+4457767,10727641,3
+yjybibby,10727641,4
+74796937,10727641,4
+54002451,10727641,5
+enigmacjh,10727641,3
+61797915,10727641,3
+ellie1501240013,10727641,5
+119992317,10727641,4
+52120008,10727641,4
+63310556,10727641,4
+linaria,10727641,-1
+37445047,10727641,4
+135614717,10727641,3
+3362422,10727641,3
+52267687,10727641,5
+57421160,10727641,-1
+leonardodicapri,10727641,4
+qqb143,10727641,4
+63027604,10727641,3
+115937929,10727641,3
+44437315,10727641,4
+pretender123,10727641,5
+120342469,10727641,3
+74420370,10727641,5
+1355685,10727641,4
+46026110,10727641,4
+49655412,10727641,4
+64394091,10727641,3
+45418355,10727641,4
+103632905,10727641,4
+79330359,10727641,2
+66766065,10727641,5
+noncampgen,10727641,4
+34304437,10727641,5
+Beardnan,10727641,4
+goodmorninglife,10727641,5
+2787344,10727641,3
+63989658,10727641,5
+1897616,10727641,4
+clumsybean,10727641,3
+firstsigh1209,10727641,4
+126749714,10727641,3
+33729211,10727641,5
+supersheep,10727641,4
+77769351,10727641,5
+lixiaofu,10727641,3
+56330466,10727641,4
+xingxin6,10727641,4
+2423100,10727641,4
+54795955,10727641,3
+3420891,10727641,3
+59274268,10727641,4
+56669894,10727641,3
+50425182,10727641,4
+wangxue1630,10727641,2
+128885646,10727641,4
+ufofay,10727641,4
+readyliu,10727641,3
+3274094,10727641,3
+62825162,10727641,4
+49531953,10727641,3
+lrrlrr,10727641,5
+66362038,10727641,5
+57168306,10727641,4
+120063423,10727641,4
+98357097,10727641,4
+121469548,10727641,3
+zi34lang,10727641,3
+30437248,10727641,4
+80511782,10727641,3
+28074817,10727641,4
+67539711,10727641,3
+51636177,10727641,3
+3013879,10727641,4
+72002197,10727641,4
+taylorzc,10727641,2
+bcyoyo,10727641,4
+54536309,10727641,4
+silentjava,10727641,4
+hero2845,10727641,4
+58051077,10727641,3
+49734677,10727641,3
+133648602,10727641,4
+dscmaroon15,10727641,4
+55999310,10727641,4
+48484502,10727641,4
+135209494,10727641,4
+xifengqishi,10727641,3
+84752730,10727641,5
+MarquisX,10727641,3
+68004061,10727641,3
+133623955,10727641,5
+54838318,10727641,4
+63075072,10727641,4
+4462311,10727641,3
+joyveela,10727641,4
+13964762,10727641,4
+43085940,10727641,5
+zhanglinge,10727641,3
+suixi,10727641,3
+115092605,10727641,4
+135335880,10727641,3
+33635879,10727641,3
+74535406,10727641,3
+swans13,10727641,3
+2650205,10727641,3
+alynlin,10727641,3
+75186042,10727641,5
+lily229,10727641,3
+lillianxiong,10727641,5
+hailuo,10727641,4
+felizfinal,10727641,3
+119484400,10727641,5
+byzod,10727641,4
+35276844,10727641,4
+43455232,10727641,-1
+121088664,10727641,3
+128136989,10727641,5
+55809849,10727641,4
+soulless_jo,10727641,4
+kindxie,10727641,5
+38500219,10727641,5
+whathef,10727641,2
+53238172,10727641,3
+shisonghua,10727641,3
+67489519,10727641,4
+4667240,10727641,4
+victor618000,10727641,5
+130183790,10727641,3
+forestwanglin,10727641,3
+56827109,10727641,4
+sl1219dyj66,10727641,4
+17471764,10727641,-1
+chenlee,10727641,4
+52001200,10727641,4
+135378115,10727641,-1
+29590814,10727641,5
+lewis_zzc,10727641,4
+90445661,10727641,4
+1596435,10727641,3
+simaxiangru118,10727641,3
+100399848,10727641,5
+lcpeng,10727641,4
+67731504,10727641,4
+47052162,10727641,4
+1625807,10727641,4
+128099844,10727641,2
+zhiwojian,10727641,4
+64149040,10727641,4
+jiayouqiufeng,10727641,4
+ada2fill,10727641,4
+66689721,10727641,3
+57054371,10727641,5
+hechiyin,10727641,4
+110172016,10727641,2
+133439975,10727641,5
+NicoleCrowe,10727641,4
+50980636,10727641,3
+bxhOTZ,10727641,3
+38248181,10727641,4
+amao890424,10727641,4
+myfairytale,10727641,-1
+55447460,10727641,4
+3641185,10727641,4
+cheesechee,10727641,4
+fighting-ing,10727641,4
+bianhuajiandan,10727641,3
+62971730,10727641,3
+jane19860903,10727641,5
+55280126,10727641,4
+58016445,10727641,5
+psychodying,10727641,3
+135530165,10727641,4
+58880510,10727641,3
+kimi-1119,10727641,4
+73741678,10727641,4
+51300065,10727641,4
+4209484,10727641,5
+28676334,10727641,4
+52395760,10727641,4
+izhouxy,10727641,4
+125469853,10727641,4
+55976862,10727641,4
+106154963,10727641,5
+57139809,10727641,4
+50453656,10727641,3
+76299602,10727641,3
+75369986,10727641,5
+2226875,10727641,3
+91117590,10727641,5
+mathwaiting,10727641,3
+122537169,10727641,5
+58278187,10727641,4
+50589086,10727641,5
+ChrisEvi,10727641,1
+39739363,10727641,4
+102751214,10727641,5
+37586252,10727641,4
+62398614,10727641,-1
+pm,10727641,5
+55819038,10727641,4
+79543278,10727641,4
+NEUN1975,10727641,4
+anluos,10727641,3
+65432868,10727641,4
+53268951,10727641,5
+46173555,10727641,3
+60201729,10727641,3
+anastasiya,10727641,4
+lucifers,10727641,4
+uumay,10727641,4
+43612401,10727641,4
+29438275,10727641,4
+SKYE_Is_Super,10727641,4
+peter.dai,10727641,4
+119740290,10727641,3
+yunknap,10727641,3
+serphim8,10727641,3
+49922437,10727641,4
+133706367,10727641,3
+48529084,10727641,3
+69713313,10727641,3
+46217012,10727641,3
+71118924,10727641,4
+44559195,10727641,5
+84796061,10727641,3
+tristanfree,10727641,4
+45300768,10727641,3
+57407001,10727641,4
+60046891,10727641,4
+15044978,10727641,4
+125275470,10727641,4
+47589630,10727641,4
+1823227,10727641,4
+zhaoyihong,10727641,4
+2262469,10727641,3
+50873936,10727641,3
+52675855,10727641,5
+80769810,10727641,4
+Ymmy,10727641,3
+121491917,10727641,-1
+geeoff,10727641,4
+51224776,10727641,3
+49221787,10727641,3
+120581904,10727641,3
+53185889,10727641,2
+46693500,10727641,3
+115231190,10727641,4
+2623464,10727641,4
+135088317,10727641,4
+69433244,10727641,5
+21147092,10727641,3
+13293190,10727641,3
+76355824,10727641,5
+58982995,10727641,4
+72391986,10727641,-1
+65596478,10727641,5
+31849844,10727641,3
+3511936,10727641,4
+z-tianhua,10727641,5
+97783825,10727641,3
+4610792,10727641,4
+64202458,10727641,5
+121682845,10727641,4
+xuweigrace,10727641,4
+wish430,10727641,4
+phoenixjanezhai,10727641,5
+49227158,10727641,3
+82368690,10727641,4
+56608269,10727641,5
+lanette,10727641,4
+hrj21,10727641,3
+yyumen,10727641,3
+2946090,10727641,4
+74115491,10727641,4
+4246182,10727641,5
+135559997,10727641,4
+60932260,10727641,4
+Robttm_,10727641,3
+71135421,10727641,4
+SabrinaChen,10727641,3
+sleepydaisy,10727641,4
+3496829,10727641,5
+43939933,10727641,3
+ading4171,10727641,5
+134496609,10727641,4
+62453172,10727641,3
+Joeking.xiao,10727641,2
+sevenshaw,10727641,3
+2437511,10727641,4
+27518977,10727641,3
+98830486,10727641,5
+megane0931,10727641,4
+1648456,10727641,3
+47636927,10727641,4
+57750976,10727641,3
+taya,10727641,4
+90108397,10727641,5
+3683994,10727641,5
+61717566,10727641,4
+thesouthking,10727641,4
+125311022,10727641,4
+bdch,10727641,4
+48330549,10727641,3
+killertaotao,10727641,4
+yunfeiyang2046,10727641,4
+3433935,10727641,3
+reneeht,10727641,3
+f05041220,10727641,4
+chenjz,10727641,4
+dogbus,10727641,4
+dogbus,10727641,4
+135279955,10727641,4
+2116608,10727641,-1
+shizong,10727641,-1
+michaelfun,10727641,3
+Monte.L,10727641,3
+62163309,10727641,5
+Sunray0807,10727641,4
+55320625,10727641,4
+51508838,10727641,3
+2351247,10727641,5
+3170937,10727641,4
+68071842,10727641,4
+56566421,10727641,4
+50352774,10727641,2
+74041547,10727641,4
+48539301,10727641,3
+69232236,10727641,4
+gongxukai,10727641,3
+55566255,10727641,4
+2238527,10727641,4
+127554011,10727641,3
+42961533,10727641,5
+orangexc621,10727641,4
+mmaiying,10727641,3
+xuci,10727641,3
+zhangyanyu,10727641,5
+shepherded,10727641,2
+tata1030,10727641,4
+80655381,10727641,3
+135548680,10727641,4
+2700013,10727641,4
+72955732,10727641,4
+42987999,10727641,2
+2220514,10727641,4
+49963574,10727641,4
+80005522,10727641,3
+dd54,10727641,4
+myice,10727641,4
+44190263,10727641,3
+63793789,10727641,4
+55570949,10727641,4
+toka,10727641,4
+34727533,10727641,4
+113306042,10727641,4
+xfpeng,10727641,4
+hopeinlife,10727641,4
+52236123,10727641,-1
+55289567,10727641,4
+37375698,10727641,3
+13310364,10727641,5
+canitryagain,10727641,4
+80121316,10727641,5
+1416692,10727641,3
+62370377,10727641,4
+82134708,10727641,4
+huyouyou,10727641,3
+michelleliu31,10727641,5
+daydayup_6,10727641,4
+yt19911130,10727641,4
+superran,10727641,4
+83690779,10727641,4
+SylviaWang,10727641,4
+3041529,10727641,3
+maggiexiao,10727641,3
+2435504,10727641,4
+minami_yan,10727641,3
+rabbityear,10727641,4
+53942259,10727641,4
+guice,10727641,4
+youzidao,10727641,4
+socary,10727641,4
+happinessspace,10727641,3
+128617296,10727641,4
+c___you,10727641,4
+bibu,10727641,-1
+50249739,10727641,4
+58601681,10727641,4
+doraemonfj,10727641,4
+Mellifluence,10727641,3
+61086434,10727641,5
+132983057,10727641,3
+kokia233,10727641,4
+116089509,10727641,3
+aiwangyue,10727641,4
+yuexiaokan,10727641,-1
+nealwzn,10727641,4
+zhangyunjun,10727641,3
+ink1020,10727641,4
+mr.slow,10727641,4
+pansin,10727641,5
+64168729,10727641,3
+BlackOpIum,10727641,4
+3243275,10727641,4
+99601239,10727641,3
+47914580,10727641,5
+60246775,10727641,4
+iMELPOMENE,10727641,3
+61144715,10727641,2
+45655057,10727641,4
+melancia,10727641,3
+kistrike,10727641,3
+xonnox,10727641,4
+sherrykoo,10727641,4
+yore.,10727641,4
+127598543,10727641,4
+2113927,10727641,5
+dwindywen,10727641,4
+91526509,10727641,4
+55408701,10727641,5
+76447430,10727641,4
+57865039,10727641,5
+119449888,10727641,3
+14605992,10727641,3
+49489943,10727641,3
+107338684,10727641,4
+61805853,10727641,4
+kevi2dan,10727641,5
+73033279,10727641,3
+62999603,10727641,3
+120094361,10727641,5
+71843271,10727641,5
+135518553,10727641,4
+58628233,10727641,3
+k33425,10727641,3
+bluegrid,10727641,4
+52663135,10727641,4
+26463375,10727641,4
+38265968,10727641,4
+71861591,10727641,2
+2705619,10727641,5
+52606273,10727641,2
+62101398,10727641,4
+34035451,10727641,4
+vito0719,10727641,4
+8919634,10727641,5
+62717349,10727641,5
+whatnoyeah,10727641,3
+134626134,10727641,4
+104531394,10727641,5
+7429116,10727641,5
+48427684,10727641,3
+135519326,10727641,3
+46711215,10727641,3
+Becky223,10727641,3
+casper009,10727641,4
+48354152,10727641,3
+119018319,10727641,4
+58988950,10727641,4
+2259682,10727641,4
+65551720,10727641,4
+122696705,10727641,4
+48850482,10727641,5
+imarilyn,10727641,3
+71416831,10727641,-1
+64036955,10727641,2
+gdpan,10727641,5
+130054425,10727641,5
+2082235,10727641,4
+tamako,10727641,4
+littlebigstar,10727641,4
+sukizy,10727641,3
+128187814,10727641,4
+86019548,10727641,4
+27088353,10727641,4
+56035121,10727641,3
+pajas,10727641,3
+1789518,10727641,4
+48586435,10727641,3
+echoditto,10727641,5
+71930651,10727641,4
+fish1984,10727641,4
+115660168,10727641,3
+63635753,10727641,4
+66798898,10727641,4
+Melissa-amour,10727641,4
+1491317,10727641,-1
+99169967,10727641,4
+1342137,10727641,5
+rebecca.psy,10727641,4
+songshijia88888,10727641,5
+91690819,10727641,3
+68426019,10727641,4
+135521084,10727641,2
+48794742,10727641,4
+SuperViking,10727641,3
+49988296,10727641,4
+48100528,10727641,4
+Jswooden,10727641,3
+74680638,10727641,3
+47785072,10727641,3
+129107430,10727641,4
+teste,10727641,5
+76950291,10727641,3
+120936363,10727641,5
+47437399,10727641,3
+fc9597,10727641,3
+130636578,10727641,5
+4352757,10727641,4
+48044506,10727641,4
+homedrama,10727641,5
+51411741,10727641,4
+4590078,10727641,3
+2348623,10727641,-1
+peaceup,10727641,4
+88101207,10727641,4
+onlya,10727641,5
+83621117,10727641,2
+131985297,10727641,4
+58008361,10727641,4
+miqingye,10727641,3
+2297041,10727641,4
+130129200,10727641,3
+43087251,10727641,3
+55543301,10727641,5
+1998979,10727641,3
+134498967,10727641,4
+4545187,10727641,3
+3772330,10727641,3
+1570580,10727641,4
+48904916,10727641,4
+sarainotes,10727641,5
+57137488,10727641,3
+53851680,10727641,3
+donchen,10727641,4
+lemon_ccc_,10727641,4
+14440927,10727641,3
+74237278,10727641,3
+63008806,10727641,4
+qkx,10727641,4
+winterTTr,10727641,4
+alla,10727641,4
+sernando,10727641,3
+hanyuting,10727641,3
+63829316,10727641,5
+daping,10727641,4
+arys-mao,10727641,4
+1023714,10727641,2
+49935216,10727641,3
+79879080,10727641,3
+13902448,10727641,4
+66650863,10727641,4
+125553826,10727641,3
+Alan59,10727641,4
+127242444,10727641,5
+screamcity,10727641,4
+maybachyingzhi,10727641,4
+87874424,10727641,5
+68810289,10727641,3
+49494443,10727641,4
+winniewong021,10727641,3
+46880896,10727641,4
+2553333,10727641,3
+90729667,10727641,3
+Solo-n,10727641,4
+53561667,10727641,3
+fourkings,10727641,5
+72303778,10727641,3
+4682077,10727641,3
+nigu_lulu,10727641,3
+johannesthomas,10727641,3
+78277982,10727641,3
+40814354,10727641,4
+birdicat,10727641,3
+41453047,10727641,4
+125010605,10727641,4
+1222203,10727641,4
+80732468,10727641,2
+lovemimidog,10727641,4
+62837123,10727641,4
+65922740,10727641,3
+nathanxcc,10727641,3
+65418706,10727641,4
+120334801,10727641,3
+84334717,10727641,5
+48752740,10727641,3
+Sun1989,10727641,5
+96414359,10727641,3
+42775906,10727641,5
+60422467,10727641,4
+41919176,10727641,4
+46984307,10727641,4
+71039483,10727641,4
+49963511,10727641,4
+44877103,10727641,4
+yuanzedong,10727641,4
+matthewchen,10727641,4
+22140861,10727641,3
+58132844,10727641,3
+tiancai930,10727641,4
+24974359,10727641,3
+104559183,10727641,4
+107437673,10727641,4
+limifly,10727641,3
+wzptoby,10727641,3
+120470819,10727641,4
+129678455,10727641,4
+3993595,10727641,4
+54231110,10727641,4
+deandai,10727641,4
+annieer,10727641,4
+4470265,10727641,3
+47468400,10727641,4
+58025611,10727641,5
+35003254,10727641,4
+69386924,10727641,4
+fuyu8818,10727641,5
+74281082,10727641,3
+54735125,10727641,4
+74008803,10727641,4
+72368775,10727641,5
+53833816,10727641,3
+littlepea,10727641,-1
+yutingamy,10727641,3
+mocnabuodouhs,10727641,4
+99677951,10727641,4
+shblueblue,10727641,5
+eleven0824,10727641,4
+boboaibaobao,10727641,3
+82909007,10727641,5
+ouyazhaozha,10727641,3
+heyidi,10727641,3
+42522085,10727641,3
+69712659,10727641,3
+xiongxiaoqin912,10727641,3
+30949178,10727641,4
+Flo,10727641,5
+DLZ0724,10727641,4
+71511701,10727641,3
+Luptior,10727641,4
+Geminiying,10727641,4
+52618432,10727641,5
+cc86317,10727641,4
+3137358,10727641,4
+66644571,10727641,3
+eeiceeic,10727641,3
+40910948,10727641,4
+66494720,10727641,3
+Aries-in-douban,10727641,3
+57585752,10727641,4
+xiaoheng,10727641,2
+53323022,10727641,4
+90638184,10727641,2
+119266785,10727641,4
+41751766,10727641,5
+132770225,10727641,3
+2555357,10727641,3
+60606998,10727641,4
+4712087,10727641,3
+59064601,10727641,3
+55321398,10727641,5
+55288748,10727641,5
+67632250,10727641,4
+pimichang,10727641,3
+fredztq,10727641,4
+3905412,10727641,4
+yypudding,10727641,3
+joemayxu,10727641,4
+3855018,10727641,4
+56906475,10727641,4
+76937893,10727641,4
+43808911,10727641,4
+67325492,10727641,4
+71925935,10727641,4
+121057597,10727641,5
+65911136,10727641,4
+134177705,10727641,3
+Hagy,10727641,3
+lovejidi,10727641,4
+66484043,10727641,4
+amyammy,10727641,4
+54653189,10727641,4
+colorfulturtle,10727641,-1
+135491689,10727641,4
+lmhluvmovie,10727641,4
+60088640,10727641,3
+81895989,10727641,5
+58055765,10727641,3
+46402600,10727641,4
+helenyouyi,10727641,5
+4498928,10727641,5
+102930164,10727641,4
+1205601,10727641,5
+twelve1234,10727641,3
+100208047,10727641,4
+50284935,10727641,4
+48445532,10727641,4
+FORDOOf4,10727641,-1
+nicemonster_,10727641,5
+49198911,10727641,4
+47345728,10727641,4
+bodd,10727641,2
+tomsnakewang,10727641,4
+luffyhan,10727641,5
+53567005,10727641,3
+48251188,10727641,3
+95768578,10727641,4
+91870642,10727641,5
+80246281,10727641,3
+wwyihuayishijie,10727641,4
+119183809,10727641,3
+Maxy-Shuai,10727641,4
+77869304,10727641,3
+gallria,10727641,3
+92659635,10727641,4
+ousophie,10727641,4
+keith_z,10727641,4
+3170428,10727641,3
+flora_panda,10727641,4
+deviline,10727641,4
+4190856,10727641,2
+48712788,10727641,3
+64825748,10727641,4
+133675350,10727641,4
+StanleyCheung,10727641,4
+4104001,10727641,3
+123945021,10727641,4
+33415384,10727641,3
+62674251,10727641,4
+candia,10727641,4
+candia,10727641,4
+kagaminerin,10727641,4
+47368646,10727641,4
+40264297,10727641,4
+66582764,10727641,5
+33607978,10727641,5
+hana-neverland,10727641,4
+wingwj,10727641,4
+argoowz,10727641,4
+wewedy,10727641,4
+59783887,10727641,5
+64404438,10727641,4
+93504074,10727641,4
+4875017,10727641,4
+66828927,10727641,5
+134868209,10727641,5
+58433028,10727641,4
+alsotang,10727641,2
+70119569,10727641,3
+2081187,10727641,-1
+68151450,10727641,4
+3857465,10727641,4
+51853424,10727641,4
+shangdixiaole,10727641,3
+vivianlily,10727641,3
+nicolehom,10727641,4
+lan_nal,10727641,4
+anchorj,10727641,4
+46722646,10727641,5
+longfei39,10727641,5
+43389668,10727641,4
+amao1412,10727641,3
+2632722,10727641,4
+58064281,10727641,3
+eeagle,10727641,4
+zweikun,10727641,4
+2976553,10727641,3
+zhongxiaojun,10727641,3
+songjinglee,10727641,3
+kimly,10727641,4
+71230586,10727641,5
+whz1143243564,10727641,4
+51067589,10727641,2
+tiramisu-katy,10727641,3
+lbnew,10727641,4
+willyjiang,10727641,2
+52298238,10727641,4
+82767121,10727641,3
+cloudybaby,10727641,5
+catyypp,10727641,4
+tongkaishi,10727641,4
+53316406,10727641,4
+48559229,10727641,4
+heyeast,10727641,3
+herfilm,10727641,4
+37183583,10727641,4
+misteror,10727641,3
+lihui_tiger,10727641,2
+135470899,10727641,4
+Ja_Gui,10727641,4
+87735422,10727641,5
+52286838,10727641,4
+119182643,10727641,4
+4572875,10727641,5
+52243773,10727641,4
+53147090,10727641,4
+51424042,10727641,3
+2812415,10727641,4
+60160104,10727641,3
+82915328,10727641,4
+49571617,10727641,4
+sunshineonlyme,10727641,4
+paperlu,10727641,4
+42413148,10727641,3
+82498439,10727641,4
+53795476,10727641,4
+45127907,10727641,4
+130289158,10727641,4
+zuara,10727641,4
+49810367,10727641,3
+68700662,10727641,4
+83802681,10727641,4
+AtomuHZ,10727641,4
+4295298,10727641,4
+52294863,10727641,3
+115974750,10727641,4
+134611218,10727641,4
+80915286,10727641,4
+67511716,10727641,4
+1266223,10727641,-1
+Seeress,10727641,5
+36077927,10727641,4
+97009601,10727641,4
+68192173,10727641,3
+70287604,10727641,4
+133426271,10727641,5
+54538602,10727641,4
+49987495,10727641,5
+39646494,10727641,4
+132078723,10727641,5
+1246074,10727641,4
+omg-_-,10727641,4
+131500618,10727641,5
+131465314,10727641,4
+50828814,10727641,4
+93484113,10727641,4
+44514726,10727641,5
+liuyunxuan333,10727641,4
+101574679,10727641,4
+43909634,10727641,4
+115985324,10727641,3
+66739600,10727641,4
+3760681,10727641,3
+53223737,10727641,5
+69253315,10727641,3
+35296178,10727641,3
+47294823,10727641,4
+losiuhong,10727641,3
+119652521,10727641,5
+2136360,10727641,5
+haixingba,10727641,3
+masterobert,10727641,3
+92613498,10727641,4
+124703569,10727641,2
+65745378,10727641,4
+yzk2237084,10727641,4
+Siegfried82,10727641,4
+thinklight,10727641,4
+63733867,10727641,4
+szhiji,10727641,5
+47257885,10727641,3
+74984713,10727641,4
+54488759,10727641,3
+4652194,10727641,3
+alphes,10727641,4
+xiaoshuogege,10727641,3
+135421560,10727641,3
+53968834,10727641,5
+darlingyinsusu,10727641,4
+50892549,10727641,4
+shishuyue,10727641,5
+129837323,10727641,4
+60602246,10727641,4
+Niceown,10727641,3
+pp3288,10727641,4
+52390911,10727641,3
+1844983,10727641,3
+2569325,10727641,-1
+49570940,10727641,4
+92080933,10727641,5
+kevindai,10727641,5
+37380657,10727641,3
+65985132,10727641,5
+43132253,10727641,4
+72779825,10727641,3
+3921995,10727641,4
+59504522,10727641,3
+circircle,10727641,4
+132580596,10727641,4
+128593702,10727641,4
+emelyne,10727641,4
+v0Id0,10727641,2
+gloryjohnny,10727641,4
+tbubo,10727641,4
+135383710,10727641,4
+AlphaScan,10727641,4
+131533540,10727641,5
+shuaziwang,10727641,5
+39404458,10727641,4
+ANPANG,10727641,5
+70204811,10727641,4
+44965595,10727641,5
+44105012,10727641,4
+mrschan,10727641,5
+wlj13626,10727641,3
+104445642,10727641,4
+3583078,10727641,5
+50139520,10727641,4
+elva_M,10727641,4
+81544162,10727641,4
+zichuanxiao,10727641,4
+69273736,10727641,4
+37973356,10727641,4
+67998952,10727641,5
+46456526,10727641,5
+56678240,10727641,4
+67952397,10727641,5
+133968272,10727641,4
+128005150,10727641,3
+46371689,10727641,5
+78376415,10727641,4
+130787417,10727641,5
+48180333,10727641,4
+52851107,10727641,4
+68835916,10727641,4
+61037567,10727641,4
+adrin,10727641,3
+3685431,10727641,3
+53011288,10727641,3
+77919551,10727641,4
+fm4714,10727641,4
+74616260,10727641,5
+60810849,10727641,3
+57982516,10727641,4
+sukalim,10727641,5
+Kevin_Tse,10727641,5
+wisepeng,10727641,5
+meatybeaty,10727641,5
+64876484,10727641,4
+88961089,10727641,4
+53836712,10727641,4
+b_less,10727641,4
+18571046,10727641,5
+66720713,10727641,4
+131216464,10727641,3
+3946199,10727641,3
+52017448,10727641,4
+131739660,10727641,4
+53246779,10727641,4
+3485230,10727641,4
+3485230,10727641,4
+isbai,10727641,4
+vinnsy,10727641,4
+1698143,10727641,4
+Colin_Wang,10727641,3
+davidxuzhao,10727641,4
+64702519,10727641,4
+55593785,10727641,4
+28587995,10727641,3
+andrea_tang,10727641,4
+52160935,10727641,4
+47210682,10727641,4
+135260912,10727641,4
+46639477,10727641,4
+105892231,10727641,4
+94514917,10727641,3
+66295147,10727641,3
+58170865,10727641,2
+65927273,10727641,3
+57683355,10727641,4
+57683355,10727641,4
+pluto0318,10727641,4
+79915546,10727641,2
+ioy,10727641,3
+64759091,10727641,5
+44914758,10727641,3
+131536000,10727641,4
+China.He,10727641,3
+63227542,10727641,4
+53392346,10727641,4
+56206950,10727641,4
+74714528,10727641,5
+47002742,10727641,4
+50511333,10727641,3
+freezingdream,10727641,4
+47510305,10727641,3
+3091791,10727641,3
+62148442,10727641,5
+124400494,10727641,4
+1183933,10727641,3
+52862784,10727641,4
+134256964,10727641,3
+lifan1980,10727641,3
+starlink,10727641,4
+127383061,10727641,1
+99401561,10727641,2
+pocchong,10727641,4
+y.u,10727641,4
+78695888,10727641,3
+9916832,10727641,3
+3611128,10727641,3
+wiwikuang,10727641,4
+40272500,10727641,4
+13332687,10727641,3
+astrology11,10727641,4
+58819016,10727641,5
+luxianlx,10727641,4
+mikihiro,10727641,4
+62659146,10727641,3
+30268116,10727641,5
+48092800,10727641,4
+57122585,10727641,4
+anniefay,10727641,5
+liheping0310,10727641,3
+53134025,10727641,4
+67892984,10727641,3
+84140369,10727641,3
+50957198,10727641,5
+119280630,10727641,4
+mascotchen,10727641,3
+76707175,10727641,5
+errena,10727641,3
+Femery,10727641,4
+sugertk,10727641,2
+44132219,10727641,4
+48468316,10727641,3
+48585920,10727641,2
+73332736,10727641,3
+128086623,10727641,5
+46553524,10727641,5
+87532340,10727641,4
+xiiiiiin,10727641,3
+44882588,10727641,3
+Asuka4J,10727641,4
+73554013,10727641,4
+sradium,10727641,3
+evilpeach,10727641,4
+OuTalK,10727641,4
+64764556,10727641,5
+46004933,10727641,5
+4007938,10727641,5
+wangchenroc,10727641,4
+27160193,10727641,5
+57412686,10727641,2
+zini8023,10727641,3
+evastone,10727641,4
+62455742,10727641,3
+93013491,10727641,4
+nangle,10727641,-1
+ok-0991,10727641,3
+ok-0991,10727641,3
+51099809,10727641,4
+75658713,10727641,3
+3694504,10727641,4
+bjus,10727641,4
+135072611,10727641,5
+releasej,10727641,4
+49653767,10727641,4
+1821069,10727641,4
+48508304,10727641,4
+78065496,10727641,4
+30258001,10727641,-1
+splu5,10727641,4
+Benny_Fu,10727641,4
+3590324,10727641,4
+54815072,10727641,5
+namexjn,10727641,3
+58842483,10727641,5
+77769633,10727641,3
+41758984,10727641,5
+52354029,10727641,3
+70984488,10727641,4
+has5211314,10727641,5
+49882814,10727641,5
+89078162,10727641,5
+47801703,10727641,4
+yuyusuper2,10727641,4
+2897878,10727641,5
+32798278,10727641,4
+61384734,10727641,4
+135419353,10727641,4
+kristyjaime,10727641,3
+50153226,10727641,3
+125267371,10727641,5
+zhangxurui,10727641,4
+66016685,10727641,3
+yuanpy,10727641,4
+songrui,10727641,4
+134494328,10727641,3
+47849591,10727641,5
+72044584,10727641,4
+37698619,10727641,4
+49442507,10727641,4
+Yaya325,10727641,4
+68436569,10727641,4
+130520817,10727641,3
+37840696,10727641,4
+77645193,10727641,3
+57818188,10727641,3
+45925639,10727641,3
+southdrift,10727641,4
+JoyDivisions,10727641,5
+Mr_movie,10727641,-1
+igreen,10727641,4
+57753788,10727641,3
+49019773,10727641,3
+75188038,10727641,3
+57678650,10727641,4
+karen.w,10727641,4
+6776768,10727641,5
+47589972,10727641,4
+84563751,10727641,3
+53259018,10727641,4
+48791168,10727641,4
+Vanessa...,10727641,4
+darkness211,10727641,4
+56814340,10727641,4
+54435942,10727641,4
+50848466,10727641,4
+61340642,10727641,3
+68177776,10727641,3
+elevenyumiko,10727641,4
+60732201,10727641,3
+51853124,10727641,4
+46307188,10727641,4
+nanshuo,10727641,4
+62685954,10727641,3
+106324472,10727641,5
+3880844,10727641,3
+66489043,10727641,5
+66489043,10727641,5
+37102807,10727641,4
+48151770,10727641,3
+4123613,10727641,3
+xiaosazi,10727641,3
+vincent41,10727641,4
+laputanyoung,10727641,5
+sczz_tang,10727641,2
+121024512,10727641,3
+lugia1989,10727641,3
+1885662,10727641,4
+ohahahu,10727641,3
+62241974,10727641,3
+100461496,10727641,4
+feiqilin,10727641,4
+sulphurlee,10727641,3
+42168964,10727641,3
+46353600,10727641,3
+131171695,10727641,4
+tenspace,10727641,3
+tenspace,10727641,3
+unw,10727641,4
+72141762,10727641,3
+71814599,10727641,-1
+114085523,10727641,5
+57907537,10727641,4
+119476678,10727641,4
+cajiln,10727641,4
+aeeyajie,10727641,4
+58280028,10727641,3
+43507289,10727641,3
+ziv_yll,10727641,5
+chencheng2046,10727641,4
+63594199,10727641,5
+51218232,10727641,4
+116271195,10727641,3
+1599143,10727641,5
+94032763,10727641,5
+Fedsay,10727641,4
+27203188,10727641,3
+27203188,10727641,3
+59760298,10727641,4
+59731496,10727641,4
+6270415,10727641,3
+79719410,10727641,3
+133202517,10727641,3
+4599465,10727641,2
+EdgarII,10727641,3
+126331855,10727641,3
+48856056,10727641,4
+balltaker,10727641,4
+44812730,10727641,3
+coqueke,10727641,3
+tincnie,10727641,4
+114124277,10727641,4
+1979139,10727641,5
+41622977,10727641,5
+3189855,10727641,5
+66598625,10727641,4
+62156484,10727641,4
+48357583,10727641,3
+81378961,10727641,5
+llllllazy,10727641,3
+59524621,10727641,4
+xiaojiongxia,10727641,4
+61160709,10727641,4
+carloye,10727641,3
+bohemiann,10727641,3
+journeyqiqi,10727641,4
+hesson,10727641,5
+54893820,10727641,4
+maiganer,10727641,5
+103108509,10727641,4
+45133421,10727641,4
+zhangrihe,10727641,4
+2298998,10727641,3
+26390357,10727641,3
+1356234,10727641,5
+71931742,10727641,4
+48331572,10727641,4
+120264216,10727641,4
+125368859,10727641,4
+17006018,10727641,4
+36832783,10727641,5
+50585223,10727641,4
+55561510,10727641,4
+101818819,10727641,2
+79699248,10727641,5
+grammophon,10727641,4
+1077003,10727641,4
+41605259,10727641,4
+miexiaoyang422,10727641,5
+48664010,10727641,3
+nicer,10727641,4
+yanmo2015,10727641,5
+suojiayichen,10727641,4
+135342073,10727641,4
+donfer,10727641,4
+58245871,10727641,-1
+28481892,10727641,4
+cgy,10727641,3
+upning,10727641,4
+simplycomplex,10727641,4
+73937499,10727641,5
+warmice,10727641,3
+kencity,10727641,4
+hnnyzxh,10727641,3
+2144219,10727641,4
+47109551,10727641,3
+jefffeng,10727641,4
+davidmoer,10727641,3
+133268624,10727641,5
+51002009,10727641,4
+97300287,10727641,5
+ItoHayachi,10727641,4
+colin628,10727641,2
+53419028,10727641,4
+134171030,10727641,4
+EveNotended,10727641,3
+53387034,10727641,5
+53387034,10727641,5
+12913964,10727641,5
+Faithy26,10727641,4
+124401468,10727641,3
+61317282,10727641,4
+summertime727,10727641,-1
+62572474,10727641,4
+Greta207,10727641,1
+56390770,10727641,2
+57474326,10727641,4
+fansherlocked,10727641,4
+3095564,10727641,4
+joanchen,10727641,-1
+soberldly,10727641,2
+3656028,10727641,4
+54992495,10727641,4
+ocov,10727641,5
+67328017,10727641,3
+98767132,10727641,4
+82974233,10727641,5
+zizip,10727641,4
+pigSu,10727641,3
+44599413,10727641,3
+70749635,10727641,5
+42621361,10727641,3
+sirluoji,10727641,4
+56345053,10727641,5
+102611391,10727641,4
+seraphzz,10727641,5
+52905046,10727641,3
+3043901,10727641,3
+4396096,10727641,5
+79357729,10727641,5
+shawnchang,10727641,5
+iamnotshaobing,10727641,5
+135317067,10727641,4
+bluecucumber,10727641,5
+34800143,10727641,5
+1220427,10727641,4
+mxj950111,10727641,3
+leonardodouban,10727641,3
+daodi,10727641,3
+fanshuren,10727641,3
+65930256,10727641,3
+66554243,10727641,3
+tessai,10727641,3
+leafly8,10727641,4
+Zoe0116,10727641,4
+128265644,10727641,3
+63091896,10727641,5
+miss0you,10727641,5
+48518515,10727641,3
+57996084,10727641,4
+2709569,10727641,4
+68770847,10727641,4
+4303543,10727641,3
+lvxg521,10727641,3
+89474196,10727641,4
+104003575,10727641,4
+izzie,10727641,3
+wbhvivian,10727641,4
+sleepinmorning,10727641,4
+frank1992,10727641,4
+Woody89man,10727641,-1
+87938767,10727641,4
+125762409,10727641,3
+3245265,10727641,4
+tengAkame,10727641,4
+35697125,10727641,5
+61944030,10727641,4
+70557752,10727641,5
+58294803,10727641,3
+57115166,10727641,4
+1370561,10727641,4
+52104896,10727641,3
+chanelKing,10727641,3
+4624478,10727641,4
+mian11,10727641,3
+54540243,10727641,5
+noisH,10727641,3
+noisH,10727641,3
+67851025,10727641,5
+3790594,10727641,2
+summersugarb,10727641,5
+41385833,10727641,3
+121666382,10727641,4
+50668588,10727641,3
+dorothyzhang,10727641,5
+73314180,10727641,4
+shikeyifeng,10727641,3
+liuboyxl,10727641,4
+kite.runner,10727641,3
+2191624,10727641,5
+nekol,10727641,5
+45743155,10727641,4
+58314626,10727641,4
+wangdale,10727641,5
+52446857,10727641,-1
+3546509,10727641,5
+yimairen,10727641,4
+yimairen,10727641,4
+59842125,10727641,2
+xcser,10727641,4
+56873909,10727641,4
+du17,10727641,3
+34005046,10727641,5
+122938944,10727641,3
+63741181,10727641,-1
+goldenday,10727641,4
+58658426,10727641,4
+55281780,10727641,4
+51955912,10727641,4
+51604039,10727641,3
+46668535,10727641,4
+60046536,10727641,5
+51814585,10727641,4
+k1ss,10727641,3
+73427598,10727641,3
+101067288,10727641,5
+63229273,10727641,4
+adejavu,10727641,4
+71791031,10727641,4
+1335097,10727641,4
+me.la.vida,10727641,5
+mrlp,10727641,3
+45221913,10727641,3
+73024171,10727641,3
+benyuh,10727641,3
+73619940,10727641,5
+3278968,10727641,5
+stoneshen,10727641,3
+126209159,10727641,4
+kero-zx1-yjx,10727641,4
+46761602,10727641,3
+fc404931881,10727641,4
+79858645,10727641,3
+87490266,10727641,3
+34831031,10727641,3
+54562736,10727641,4
+3103013,10727641,5
+lemonsweet,10727641,3
+4318512,10727641,3
+121460001,10727641,4
+131039743,10727641,4
+52924173,10727641,4
+45610612,10727641,4
+2236050,10727641,5
+50443109,10727641,4
+74250287,10727641,3
+stickman,10727641,3
+58205318,10727641,4
+62779631,10727641,3
+129913027,10727641,1
+49366879,10727641,3
+3403075,10727641,3
+119938228,10727641,4
+125663520,10727641,4
+50802370,10727641,5
+wolf4peak,10727641,4
+68075321,10727641,4
+49670470,10727641,3
+19699130,10727641,3
+92432764,10727641,5
+1068125,10727641,4
+xl8690,10727641,5
+1149341,10727641,5
+duducool,10727641,4
+65550387,10727641,4
+weblinder,10727641,3
+62382957,10727641,4
+75555205,10727641,3
+jxzq007,10727641,3
+81998138,10727641,4
+79507258,10727641,5
+129338201,10727641,4
+122195109,10727641,4
+67686027,10727641,3
+khloris,10727641,3
+53071214,10727641,4
+joideyy,10727641,5
+52961960,10727641,4
+46960084,10727641,3
+Esine,10727641,4
+momoicy,10727641,3
+34284665,10727641,4
+25195048,10727641,4
+70238336,10727641,3
+121197543,10727641,4
+82511491,10727641,4
+genez,10727641,3
+43621378,10727641,4
+134146468,10727641,4
+guangnianji90,10727641,4
+fayewong77,10727641,4
+130433536,10727641,5
+43814222,10727641,4
+114499538,10727641,4
+67866798,10727641,4
+94679289,10727641,4
+44662015,10727641,5
+46050186,10727641,3
+120352953,10727641,4
+76589411,10727641,5
+120879032,10727641,4
+icefishe,10727641,4
+65284332,10727641,4
+46395630,10727641,3
+35342792,10727641,4
+43730319,10727641,4
+johngreed,10727641,4
+skyllla,10727641,4
+2221077,10727641,4
+27432217,10727641,3
+guoguoguodaxia,10727641,4
+43737726,10727641,4
+48972272,10727641,4
+38721043,10727641,4
+37206579,10727641,3
+47814118,10727641,4
+yushicaomei,10727641,4
+62487097,10727641,4
+3030378,10727641,5
+58094874,10727641,4
+58856682,10727641,4
+120113112,10727641,4
+kingkongofkhan,10727641,4
+yaoyamin,10727641,4
+ananyuki,10727641,3
+robin1988,10727641,4
+49342454,10727641,4
+43528546,10727641,3
+117858377,10727641,3
+53952389,10727641,4
+cloverps,10727641,4
+45981995,10727641,3
+67777547,10727641,3
+Hennessy_,10727641,3
+bmw.lili,10727641,5
+62932402,10727641,4
+jingmeng_xiahti,10727641,4
+48725265,10727641,5
+36043786,10727641,4
+Karilyn,10727641,3
+55287270,10727641,4
+3511814,10727641,4
+2965102,10727641,4
+82834599,10727641,4
+78768709,10727641,3
+zhifang828,10727641,-1
+119296421,10727641,4
+39506344,10727641,4
+53312858,10727641,3
+51572844,10727641,-1
+58400700,10727641,3
+1365076,10727641,3
+FoEverDove,10727641,4
+2163010,10727641,4
+35578162,10727641,4
+mrstarry,10727641,5
+tsubasaimai,10727641,4
+121152580,10727641,3
+70530619,10727641,5
+61809588,10727641,5
+3641651,10727641,3
+63277654,10727641,4
+2168902,10727641,3
+51856482,10727641,4
+lorey531,10727641,4
+missing7V,10727641,5
+Perry_Chan,10727641,5
+3433653,10727641,4
+weilijie,10727641,4
+55851508,10727641,3
+64559791,10727641,4
+SummerChai,10727641,5
+62986742,10727641,4
+54217412,10727641,3
+45057209,10727641,4
+34889836,10727641,4
+18586571,10727641,3
+102477875,10727641,5
+mystory0310,10727641,3
+zhaozihan1029,10727641,3
+76839665,10727641,4
+kwokchloe,10727641,4
+kensu,10727641,5
+57776195,10727641,4
+93828886,10727641,3
+33597419,10727641,3
+55803883,10727641,3
+75826878,10727641,4
+iwei,10727641,4
+115550774,10727641,4
+130461977,10727641,4
+bobobobobo,10727641,4
+120244834,10727641,4
+120551581,10727641,3
+izune,10727641,3
+4841914,10727641,4
+131406948,10727641,4
+12300787,10727641,3
+53741508,10727641,5
+106998846,10727641,4
+59956259,10727641,4
+geniusjj,10727641,5
+13654829,10727641,5
+85423911,10727641,5
+disney9,10727641,4
+130272080,10727641,4
+Zhkuzds,10727641,4
+69893360,10727641,3
+envy1001,10727641,4
+32977496,10727641,4
+1538371,10727641,3
+135317252,10727641,4
+lt-2988,10727641,4
+66173191,10727641,3
+78721948,10727641,4
+49875686,10727641,2
+53371953,10727641,5
+4245687,10727641,4
+3931828,10727641,4
+sunyixin,10727641,-1
+disby,10727641,4
+101503219,10727641,4
+48801010,10727641,4
+56771343,10727641,3
+39121054,10727641,4
+spottedowl,10727641,2
+64319336,10727641,4
+veverlee,10727641,4
+4175130,10727641,3
+85340697,10727641,4
+60731189,10727641,2
+76073478,10727641,5
+heydzi,10727641,3
+2415153,10727641,4
+hasejun,10727641,4
+qiangzhuang,10727641,3
+69770129,10727641,3
+hthj,10727641,4
+37039458,10727641,3
+kiki0616,10727641,3
+vanvin,10727641,4
+77922789,10727641,4
+4248003,10727641,4
+4889156,10727641,4
+43326904,10727641,5
+babude,10727641,3
+4544241,10727641,5
+4734251,10727641,4
+ypapa,10727641,3
+3655399,10727641,4
+45107841,10727641,3
+100250357,10727641,5
+imqiankai,10727641,4
+130944881,10727641,3
+62565824,10727641,4
+124554880,10727641,4
+qiaoqiezi,10727641,3
+zhaoda,10727641,4
+115560708,10727641,4
+46814301,10727641,5
+85333070,10727641,4
+3439248,10727641,3
+54352343,10727641,3
+JeffShi,10727641,-1
+rosemaryii,10727641,5
+53677228,10727641,3
+7605327,10727641,3
+2083571,10727641,-1
+46339922,10727641,4
+shirleychien,10727641,3
+44470560,10727641,3
+46550592,10727641,-1
+Cyder,10727641,4
+63027817,10727641,3
+81560578,10727641,-1
+50363542,10727641,5
+3832866,10727641,3
+waytsing,10727641,4
+bnueppmsl,10727641,4
+Reichsrevolver,10727641,4
+54753816,10727641,5
+zooooooj,10727641,3
+78471663,10727641,4
+67330888,10727641,5
+wolfgood,10727641,3
+69338065,10727641,3
+vincentmi,10727641,4
+3232162,10727641,3
+dabeibao,10727641,3
+135337821,10727641,4
+124986655,10727641,4
+xybeijing,10727641,4
+63352926,10727641,4
+cherub235,10727641,3
+master-photon,10727641,5
+ganlu58,10727641,4
+xqer,10727641,4
+xqer,10727641,4
+qinlang1900,10727641,4
+silence_queen,10727641,4
+flowermoi,10727641,4
+gongwei,10727641,4
+59273208,10727641,3
+68873403,10727641,5
+lmx1220,10727641,4
+59071108,10727641,4
+44908756,10727641,4
+47413356,10727641,4
+wanpunleo,10727641,3
+126014934,10727641,3
+58029072,10727641,4
+67630346,10727641,4
+56922961,10727641,4
+zhangreeki,10727641,3
+xiaopie,10727641,4
+55305623,10727641,3
+67574388,10727641,4
+67574388,10727641,4
+4501544,10727641,4
+53156692,10727641,4
+115645606,10727641,4
+haishou,10727641,5
+66721010,10727641,4
+60192811,10727641,5
+70300693,10727641,5
+luciferls,10727641,4
+121819431,10727641,4
+princessjason,10727641,3
+46209502,10727641,4
+rolex16600,10727641,5
+4655496,10727641,3
+errylee,10727641,3
+tequila7,10727641,3
+shuyan50,10727641,4
+53277775,10727641,4
+muxu413,10727641,3
+63367486,10727641,4
+faiel,10727641,4
+42539119,10727641,3
+61110036,10727641,4
+1634532,10727641,3
+34744036,10727641,4
+83079271,10727641,-1
+lcqi123,10727641,3
+62878556,10727641,4
+52138435,10727641,3
+60038262,10727641,3
+74797419,10727641,-1
+kaverjody,10727641,3
+55842990,10727641,4
+51651483,10727641,5
+rainstopgoodbye,10727641,4
+2994454,10727641,1
+47250941,10727641,4
+46095841,10727641,5
+cutebug,10727641,3
+snow523,10727641,5
+cmayc,10727641,5
+felt,10727641,4
+43652685,10727641,4
+69515899,10727641,5
+37450029,10727641,4
+45540102,10727641,3
+52621026,10727641,4
+keneyzhao,10727641,4
+zimoyingti,10727641,4
+24556429,10727641,3
+87956504,10727641,4
+132594477,10727641,5
+16547415,10727641,3
+64168650,10727641,3
+3623604,10727641,-1
+36475827,10727641,4
+suffering0,10727641,2
+34219306,10727641,-1
+54034056,10727641,2
+123543090,10727641,4
+123543090,10727641,4
+koukouxuanhe,10727641,3
+3421868,10727641,4
+120597236,10727641,3
+50694975,10727641,4
+124365930,10727641,4
+58503450,10727641,4
+Zukunft,10727641,3
+valleyshan,10727641,4
+hiddenIris,10727641,4
+73384084,10727641,5
+Chrismade,10727641,2
+97531934,10727641,4
+shane_sha,10727641,3
+67483108,10727641,4
+doneisdone,10727641,4
+65420358,10727641,4
+51378582,10727641,3
+JoJo1983666,10727641,4
+47212245,10727641,4
+alanerer,10727641,4
+laycher,10727641,4
+121945022,10727641,5
+3585127,10727641,4
+115131162,10727641,4
+59289371,10727641,4
+ephraimdw,10727641,4
+ppt86,10727641,3
+51787477,10727641,3
+3713100,10727641,3
+mabeysomeday,10727641,4
+easternmoon,10727641,4
+jagpumpkin,10727641,3
+71260850,10727641,3
+wushuangbiaojie,10727641,5
+27064459,10727641,5
+84091392,10727641,3
+44437703,10727641,3
+72355462,10727641,4
+121702182,10727641,3
+rodneyxp2002,10727641,5
+28272719,10727641,4
+52371477,10727641,4
+31906441,10727641,3
+erosbaby,10727641,5
+57666555,10727641,3
+135312907,10727641,5
+36030831,10727641,5
+77121969,10727641,3
+135317139,10727641,3
+yulehe,10727641,4
+130996893,10727641,3
+aTeeksI,10727641,3
+52870405,10727641,3
+asterialeto,10727641,4
+69331187,10727641,4
+4643817,10727641,5
+83141101,10727641,3
+ccdetiantang,10727641,4
+44903969,10727641,5
+83674616,10727641,3
+48375037,10727641,4
+38682661,10727641,5
+fallenangle3,10727641,4
+62198966,10727641,4
+starryskyskysky,10727641,5
+pingfandeshabi,10727641,3
+51583738,10727641,4
+3491773,10727641,4
+134097030,10727641,3
+52120311,10727641,4
+cangbaicanku,10727641,3
+42445219,10727641,4
+zcy0505,10727641,3
+92966403,10727641,3
+89395128,10727641,-1
+caixiaoqiang,10727641,3
+2368381,10727641,3
+102967407,10727641,3
+49634368,10727641,4
+70083588,10727641,4
+ameko5053,10727641,4
+49091580,10727641,3
+135177943,10727641,4
+49469319,10727641,-1
+64529500,10727641,3
+37229624,10727641,4
+1053377,10727641,4
+vfish,10727641,5
+66750034,10727641,5
+38631038,10727641,3
+2419512,10727641,5
+26812348,10727641,-1
+52348153,10727641,5
+shibiebie,10727641,4
+53877889,10727641,4
+BALENO,10727641,4
+47241007,10727641,3
+skyfeel,10727641,4
+134911669,10727641,5
+120929768,10727641,3
+65761613,10727641,3
+aquariankitty,10727641,4
+88256583,10727641,4
+4558040,10727641,4
+2754922,10727641,5
+journeyboy,10727641,4
+manbujx,10727641,3
+71241934,10727641,3
+59478720,10727641,5
+AiryLam,10727641,4
+39696481,10727641,-1
+youkejia,10727641,5
+BBmachtalles,10727641,-1
+54067198,10727641,2
+4266482,10727641,3
+buobo,10727641,4
+119263813,10727641,4
+CheeseTree,10727641,4
+Shelly0623,10727641,4
+tybeijing,10727641,5
+boringsly,10727641,3
+2016454,10727641,5
+46015207,10727641,4
+52655756,10727641,-1
+59967519,10727641,-1
+3016464,10727641,3
+frostar,10727641,-1
+131337124,10727641,4
+51068415,10727641,3
+35745537,10727641,5
+52321375,10727641,5
+mkfinch,10727641,-1
+49971887,10727641,-1
+TooYoungToosP,10727641,-1
+zhaobiao1988,10727641,1
+hakuhaku,10727641,4
+shir23,10727641,-1
+84475486,10727641,4
+38160220,10727641,5
+54277204,10727641,3
+may-may,10727641,4
+72485230,10727641,5
+44033923,10727641,5
+135298874,10727641,3
+zsy_azure,10727641,3
+Vampire1004,10727641,4
+2192099,10727641,-1
+47032431,10727641,4
+lena_yue,10727641,4
+120383320,10727641,4
+helenooc,10727641,4
+izwfang,10727641,3
+64139432,10727641,-1
+102939359,10727641,4
+3311665,10727641,3
+62423648,10727641,-1
+anaisecho,10727641,5
+119359941,10727641,5
+catbabe,10727641,4
+41998379,10727641,-1
+dingdaiwei,10727641,3
+31479000,10727641,3
+freezinggl,10727641,4
+1101928,10727641,4
+67871819,10727641,3
+4354942,10727641,4
+penny623,10727641,4
+mrockfire,10727641,5
+hsyh1989,10727641,4
+3444801,10727641,3
+69968379,10727641,5
+57928029,10727641,-1
+56608210,10727641,4
+45784891,10727641,4
+nknemo,10727641,-1
+hazel-y,10727641,5
+48069693,10727641,3
+135292568,10727641,4
+2570198,10727641,-1
+Nokia95,10727641,4
+hejingyi0803,10727641,5
+djdaisy1874,10727641,3
+2741490,10727641,3
+arun1019,10727641,3
+32334286,10727641,3
+4107737,10727641,-1
+82018179,10727641,3
+67334357,10727641,4
+49134258,10727641,4
+Cinderella11,10727641,4
+130622022,10727641,-1
+47436910,10727641,4
+4336395,10727641,5
+58641999,10727641,3
+56776280,10727641,-1
+61231743,10727641,5
+Basten,10727641,4
+47331166,10727641,4
+43683594,10727641,4
+47331166,10727641,4
+43683594,10727641,4
+58009329,10727641,4
+27979325,10727641,5
+115994323,10727641,4
+126348691,10727641,3
+69834668,10727641,-1
+28776614,10727641,5
+50412116,10727641,3
+Devil.Q,10727641,3
+104629005,10727641,4
+72606790,10727641,4
+51252348,10727641,3
+58754090,10727641,5
+yinleo,10727641,3
+134125596,10727641,4
+ph7ever,10727641,5
+120445293,10727641,4
+RyanSheckler,10727641,4
+74659221,10727641,5
+52673788,10727641,4
+68800938,10727641,4
+2373335,10727641,3
+koonom,10727641,4
+20689335,10727641,5
+69534865,10727641,3
+75943726,10727641,4
+62516560,10727641,4
+showmeet111,10727641,-1
+60112538,10727641,-1
+90551968,10727641,4
+cain69,10727641,-1
+68023271,10727641,4
+68655237,10727641,4
+kulapika,10727641,-1
+iatihs,10727641,3
+120313404,10727641,-1
+55325883,10727641,5
+1317876,10727641,5
+115125689,10727641,4
+53718083,10727641,3
+28079955,10727641,-1
+mikewansui,10727641,-1
+63092842,10727641,4
+52840916,10727641,4
+36817857,10727641,5
+129556271,10727641,3
+peggy_3,10727641,3
+oathkeeper,10727641,4
+zhengshiyi123,10727641,3
+hljmsfy,10727641,3
+3794173,10727641,3
+wen1028,10727641,-1
+91312221,10727641,4
+51945032,10727641,4
+131525211,10727641,-1
+40398105,10727641,5
+57858463,10727641,-1
+c-bode,10727641,4
+44656032,10727641,4
+44656032,10727641,4
+luffyzl,10727641,4
+50240966,10727641,4
+51387166,10727641,2
+KGB1997,10727641,-1
+casanova_11,10727641,-1
+71121278,10727641,3
+36569006,10727641,3
+1860715,10727641,-1
+41761191,10727641,4
+66388538,10727641,3
+hhuwing,10727641,4
+lovetree521,10727641,5
+88431606,10727641,4
+88095503,10727641,4
+jasonrel,10727641,4
+35473568,10727641,4
+88595142,10727641,5
+microogle,10727641,3
+suzyfine,10727641,4
+xianxianchen,10727641,4
+yangui,10727641,3
+37832420,10727641,-1
+104792995,10727641,4
+waershi,10727641,3
+2599660,10727641,3
+109659168,10727641,3
+vitakoo,10727641,3
+maoliqiumao,10727641,3
+71714040,10727641,4
+heshouwu555,10727641,-1
+121468237,10727641,3
+ov_beeshoot,10727641,3
+48194344,10727641,3
+39015968,10727641,-1
+68193127,10727641,-1
+51534374,10727641,3
+41492377,10727641,3
+103026669,10727641,4
+53935985,10727641,4
+53303336,10727641,4
+3598072,10727641,-1
+yazawahan,10727641,5
+ChocoRum,10727641,-1
+88114103,10727641,-1
+autumnalequinox,10727641,-1
+79583588,10727641,4
+43919989,10727641,-1
+51357527,10727641,4
+2368703,10727641,-1
+48647582,10727641,4
+61813472,10727641,3
+62336834,10727641,-1
+cindyya,10727641,4
+tshane,10727641,3
+69364200,10727641,4
+70335483,10727641,4
+3845089,10727641,-1
+swwol32,10727641,3
+niler,10727641,-1
+61098091,10727641,4
+45117838,10727641,3
+32111208,10727641,3
+77371780,10727641,-1
+williamking001,10727641,4
+50765649,10727641,5
+timenull,10727641,-1
+62659371,10727641,-1
+90587256,10727641,4
+55466368,10727641,4
+ciyoandcicy,10727641,4
+1078136,10727641,4
+tianxianglouzhu,10727641,3
+65912201,10727641,4
+60855466,10727641,3
+48864646,10727641,4
+3467012,10727641,-1
+lindaxxl,10727641,-1
+4605514,10727641,-1
+45609195,10727641,4
+d8day,10727641,3
+125741123,10727641,4
+43801354,10727641,3
+mabysomebody,10727641,1
+29704544,10727641,-1
+abe_y,10727641,3
+xu77,10727641,-1
+135257732,10727641,3
+woshimasi,10727641,4
+128648728,10727641,2
+mixmx,10727641,4
+gelsey1992,10727641,4
+63998046,10727641,3
+52580766,10727641,4
+95880928,10727641,3
+2494468,10727641,-1
+66716197,10727641,4
+89989677,10727641,4
+dasda,10727641,4
+51463765,10727641,4
+miaoseason,10727641,-1
+49833007,10727641,4
+Rae8023,10727641,4
+47598205,10727641,4
+45884348,10727641,5
+56561314,10727641,-1
+58866731,10727641,3
+beannykk,10727641,-1
+48715746,10727641,2
+69579059,10727641,5
+fanzling,10727641,4
+maryshirley,10727641,4
+sunanna,10727641,4
+52271834,10727641,4
+hsiaoning,10727641,4
+61506971,10727641,4
+64965474,10727641,5
+fourieren,10727641,3
+happuiness,10727641,4
+40341457,10727641,3
+yayun920,10727641,4
+topku,10727641,4
+126007802,10727641,5
+128272992,10727641,3
+50079024,10727641,4
+3345648,10727641,4
+Shimpear,10727641,4
+yang0826,10727641,3
+52933532,10727641,4
+macrocheng,10727641,5
+29302066,10727641,3
+117359316,10727641,4
+92189909,10727641,3
+68596231,10727641,4
+71062611,10727641,4
+50474016,10727641,5
+64579754,10727641,3
+angerjia,10727641,3
+78977506,10727641,3
+dan1103,10727641,2
+dan1103,10727641,2
+3862786,10727641,3
+Tiara0211,10727641,4
+Decwind,10727641,4
+52357915,10727641,4
+dewar,10727641,3
+55649933,10727641,3
+2610976,10727641,5
+77676888,10727641,4
+2249596,10727641,4
+53517811,10727641,4
+129389032,10727641,4
+41420170,10727641,5
+61072952,10727641,5
+40836230,10727641,5
+chinber,10727641,4
+46390941,10727641,4
+52460447,10727641,3
+129853005,10727641,4
+3299770,10727641,4
+4557290,10727641,5
+122124788,10727641,4
+32354448,10727641,3
+2475595,10727641,3
+monster1000,10727641,4
+dashan1928,10727641,4
+noel.suri,10727641,4
+waterfront,10727641,4
+haizor,10727641,5
+chopinfisher,10727641,4
+2251309,10727641,4
+64783983,10727641,4
+56046715,10727641,3
+1848756,10727641,5
+snail_l,10727641,3
+59986635,10727641,4
+121749765,10727641,4
+AldrickBanks,10727641,2
+mylbj,10727641,4
+99352636,10727641,3
+34700595,10727641,3
+1316648,10727641,3
+99397835,10727641,4
+elric07,10727641,5
+MOON_CHUNG,10727641,4
+57280262,10727641,3
+66568520,10727641,4
+xiayou,10727641,4
+135181099,10727641,5
+71180219,10727641,5
+25282878,10727641,5
+25970354,10727641,4
+89838973,10727641,4
+yjab777,10727641,4
+55865463,10727641,5
+lancaoqin,10727641,4
+lan_guang,10727641,5
+33759229,10727641,4
+96785209,10727641,4
+1495292,10727641,3
+88452602,10727641,4
+59459283,10727641,3
+51526777,10727641,3
+59931529,10727641,2
+adelestarry,10727641,4
+1531441,10727641,4
+109365835,10727641,5
+90751686,10727641,1
+alei7774,10727641,3
+xiaoyu86,10727641,3
+strike1up,10727641,5
+liusicong,10727641,1
+sylcrannog,10727641,3
+116073490,10727641,4
+2672610,10727641,3
+2761343,10727641,-1
+Adrift_eternity,10727641,4
+blazel,10727641,3
+124825941,10727641,4
+1071198,10727641,4
+3513626,10727641,3
+82578473,10727641,4
+51303533,10727641,4
+foreverboy,10727641,3
+3331039,10727641,3
+45390521,10727641,4
+55323906,10727641,5
+mochall,10727641,4
+62875538,10727641,5
+34943086,10727641,4
+54251461,10727641,4
+44436573,10727641,4
+sunq,10727641,4
+mikiwdy,10727641,4
+action552200,10727641,4
+27928039,10727641,5
+jjftnt007,10727641,2
+71267265,10727641,4
+12667477,10727641,4
+clar,10727641,-1
+135067568,10727641,4
+57149098,10727641,4
+58801917,10727641,2
+65393233,10727641,3
+77060201,10727641,4
+54339174,10727641,4
+Mr.rawness,10727641,4
+66999227,10727641,5
+97331914,10727641,-1
+australiaaaa,10727641,-1
+55796583,10727641,4
+45400078,10727641,4
+56771366,10727641,4
+67987733,10727641,4
+50430721,10727641,5
+51945136,10727641,4
+37034778,10727641,3
+yzy16,10727641,4
+79736160,10727641,-1
+51907207,10727641,4
+120322125,10727641,2
+135245444,10727641,3
+61622729,10727641,4
+57812522,10727641,5
+4321081,10727641,4
+4631001,10727641,3
+69168057,10727641,4
+1437680,10727641,4
+VIVIAN.Z,10727641,4
+59068262,10727641,4
+55850316,10727641,4
+LoserInLove,10727641,4
+63602418,10727641,4
+50042577,10727641,5
+61335632,10727641,5
+3214138,10727641,5
+80175824,10727641,4
+justinchung,10727641,4
+114082783,10727641,3
+48038910,10727641,5
+2898955,10727641,3
+3192650,10727641,5
+lc_ENo.,10727641,4
+133161561,10727641,5
+lantianlee,10727641,-1
+121205980,10727641,4
+1169676,10727641,5
+bluellow,10727641,3
+53859661,10727641,5
+vinjun,10727641,3
+50432570,10727641,3
+91686187,10727641,4
+ll_azrael,10727641,4
+102938445,10727641,4
+marvin42,10727641,4
+flytomilan,10727641,4
+davidchan,10727641,5
+Da.men,10727641,3
+38466277,10727641,4
+ileonwii,10727641,4
+130111946,10727641,3
+58407561,10727641,5
+90548476,10727641,4
+orochichris,10727641,4
+QuincyLiang,10727641,3
+124878359,10727641,3
+60894983,10727641,3
+49568833,10727641,5
+mnxn889,10727641,4
+jxcc,10727641,2
+chuxuemu,10727641,4
+48530731,10727641,4
+62497391,10727641,3
+53053772,10727641,4
+2647768,10727641,4
+miuk,10727641,-1
+smokey,10727641,4
+2705335,10727641,4
+53526777,10727641,3
+45577366,10727641,5
+38973316,10727641,5
+GLSQ,10727641,3
+inearlysummer,10727641,4
+71273423,10727641,4
+50754636,10727641,4
+122360797,10727641,4
+q164511490,10727641,4
+2174790,10727641,5
+49097725,10727641,5
+pretd,10727641,3
+50210563,10727641,4
+75561690,10727641,1
+14306980,10727641,3
+132773025,10727641,4
+61422378,10727641,4
+49252551,10727641,4
+122191146,10727641,4
+broussaille,10727641,-1
+2310617,10727641,4
+gsherwin,10727641,4
+48512186,10727641,5
+43359124,10727641,3
+124061437,10727641,5
+56788441,10727641,5
+lensliao,10727641,4
+126201751,10727641,4
+15497319,10727641,4
+51711938,10727641,3
+47485602,10727641,3
+2596903,10727641,4
+114285934,10727641,5
+40844077,10727641,5
+skywriting1012,10727641,4
+dreamcatcher17,10727641,4
+smilingfish5,10727641,4
+85125548,10727641,4
+2917441,10727641,3
+54289383,10727641,4
+ohghost,10727641,-1
+120099108,10727641,4
+81573829,10727641,4
+fuzyu,10727641,4
+emnery,10727641,3
+tidus90,10727641,-1
+53168001,10727641,4
+2426372,10727641,4
+48539431,10727641,3
+79205951,10727641,4
+49437443,10727641,5
+sulang,10727641,4
+21751408,10727641,3
+47200180,10727641,4
+helenelian,10727641,4
+duolamaoxian,10727641,5
+1693083,10727641,3
+98888334,10727641,5
+62259012,10727641,4
+52248618,10727641,3
+1065097,10727641,4
+missliyu,10727641,3
+2759778,10727641,4
+47357292,10727641,4
+1865714,10727641,4
+53890917,10727641,4
+54069821,10727641,4
+64337164,10727641,3
+105530942,10727641,4
+Oleg,10727641,3
+1519166,10727641,4
+kistance,10727641,-1
+81793893,10727641,4
+zhangsisi333,10727641,4
+74141389,10727641,3
+38047106,10727641,5
+52331791,10727641,3
+48790837,10727641,5
+lilian-tian,10727641,5
+81616503,10727641,4
+cheergao,10727641,4
+hunhunsui,10727641,3
+93924879,10727641,4
+76316404,10727641,4
+53616337,10727641,3
+gzgaoyuan,10727641,4
+50233060,10727641,4
+52624380,10727641,3
+75043038,10727641,4
+moneyfish,10727641,4
+87237425,10727641,4
+8184556,10727641,4
+53575080,10727641,4
+83429427,10727641,3
+xuxu2333,10727641,5
+austing,10727641,5
+lzw22,10727641,3
+mna,10727641,4
+76076982,10727641,3
+lammanyuk,10727641,5
+67633281,10727641,5
+59901694,10727641,4
+bunnyshinoda,10727641,4
+79875260,10727641,3
+75261344,10727641,4
+ningzile,10727641,5
+72066296,10727641,4
+60835831,10727641,5
+2989793,10727641,4
+3852931,10727641,3
+3489125,10727641,3
+79214635,10727641,3
+lilliantao,10727641,4
+migojune,10727641,4
+133768318,10727641,4
+54654221,10727641,4
+llweifall,10727641,4
+34133480,10727641,3
+67943333,10727641,5
+81102769,10727641,3
+shaqi,10727641,4
+57249057,10727641,3
+35737386,10727641,5
+lauretta2acm,10727641,-1
+62668317,10727641,4
+4182606,10727641,2
+94131092,10727641,3
+3212190,10727641,4
+34516353,10727641,3
+wolfdharky,10727641,3
+Nofeelings,10727641,3
+simonwuang,10727641,4
+wuyewen,10727641,4
+vanshaw,10727641,4
+2110097,10727641,4
+51982551,10727641,4
+2917503,10727641,4
+57998947,10727641,3
+ABQK,10727641,5
+135225130,10727641,2
+bancy,10727641,4
+dengxuanhai,10727641,3
+dengxuanhai,10727641,3
+130909390,10727641,4
+sakuras1412,10727641,-1
+54880973,10727641,3
+46350345,10727641,4
+74145867,10727641,4
+123608856,10727641,4
+1849697,10727641,3
+84654420,10727641,3
+1789314,10727641,4
+Renee_Lee,10727641,4
+bilin,10727641,4
+65607463,10727641,4
+50746684,10727641,4
+81373304,10727641,4
+vonvonluck,10727641,5
+fancheng91,10727641,4
+68990799,10727641,5
+linglingwin,10727641,4
+74286517,10727641,4
+124385874,10727641,5
+DODOwoo,10727641,4
+60019067,10727641,3
+mayoke,10727641,5
+4431205,10727641,3
+yuh17,10727641,1
+xyl19900815,10727641,4
+heyowl,10727641,2
+1306838,10727641,4
+48854859,10727641,3
+67551894,10727641,3
+turandot0815,10727641,4
+35518301,10727641,4
+59901599,10727641,3
+lwx27,10727641,3
+60563094,10727641,3
+kylieduan,10727641,5
+77316354,10727641,4
+4340459,10727641,4
+79378805,10727641,3
+61465633,10727641,3
+jinnjinnee,10727641,3
+nora1sme,10727641,4
+3748350,10727641,2
+48091725,10727641,5
+sherry5241,10727641,3
+63903749,10727641,3
+Lysander,10727641,4
+37181999,10727641,4
+3481297,10727641,3
+132039953,10727641,5
+114841876,10727641,5
+mufengqin,10727641,4
+66867402,10727641,4
+75805907,10727641,3
+81848575,10727641,1
+rocwang,10727641,4
+46202965,10727641,4
+103454751,10727641,4
+48864124,10727641,3
+48864124,10727641,3
+1806185,10727641,3
+132841698,10727641,5
+1863179,10727641,3
+62535636,10727641,4
+biteorange,10727641,4
+54025015,10727641,4
+126116154,10727641,4
+98336288,10727641,5
+nicole31,10727641,4
+47814421,10727641,4
+65141663,10727641,4
+74835284,10727641,4
+64724465,10727641,4
+33981553,10727641,3
+xTristan,10727641,4
+63592658,10727641,4
+66775281,10727641,4
+3498233,10727641,4
+47063836,10727641,4
+51540920,10727641,5
+63641303,10727641,4
+58732401,10727641,4
+43375121,10727641,4
+41618389,10727641,4
+104918473,10727641,4
+1559062,10727641,4
+50226238,10727641,3
+Movllmo,10727641,4
+120107044,10727641,5
+geminige,10727641,4
+SherylHsu,10727641,4
+4182845,10727641,4
+34946618,10727641,5
+44032446,10727641,3
+46460002,10727641,5
+53560944,10727641,4
+51620794,10727641,3
+26234613,10727641,4
+lostxy,10727641,5
+100328938,10727641,1
+wzy4u,10727641,4
+joyce0411,10727641,-1
+53090809,10727641,3
+54825070,10727641,5
+Cgangs,10727641,4
+55362670,10727641,3
+129348708,10727641,4
+bunnydoll,10727641,4
+jok13,10727641,4
+63620716,10727641,4
+68124742,10727641,2
+111528840,10727641,4
+83962986,10727641,4
+4195703,10727641,3
+AdileGuan,10727641,3
+48107191,10727641,5
+54803109,10727641,3
+yueyuedad1972,10727641,4
+a1eudora,10727641,4
+112133874,10727641,4
+levone,10727641,3
+51483335,10727641,3
+58691476,10727641,4
+123252296,10727641,4
+1356477,10727641,5
+47717774,10727641,5
+89847136,10727641,4
+xinxinyan,10727641,4
+78214422,10727641,3
+joyjay,10727641,5
+47321536,10727641,3
+tddsy,10727641,4
+48333089,10727641,4
+monet_c,10727641,5
+84560634,10727641,3
+lpf1990,10727641,5
+59984702,10727641,3
+39735164,10727641,3
+gb333,10727641,3
+eashion,10727641,4
+ayuxu,10727641,3
+43397297,10727641,4
+huachunyan,10727641,3
+2632589,10727641,4
+40260992,10727641,2
+whitedrama,10727641,3
+sonicyang,10727641,4
+Angely_K,10727641,3
+54570567,10727641,3
+87837876,10727641,4
+59880831,10727641,4
+yangfan0628,10727641,3
+hexiaotang,10727641,4
+132613327,10727641,4
+53256209,10727641,4
+77485218,10727641,3
+longziz,10727641,4
+123208179,10727641,4
+62489520,10727641,4
+62489520,10727641,4
+49641316,10727641,3
+29271779,10727641,4
+iris29,10727641,4
+54860840,10727641,5
+D_DAY_OFF,10727641,5
+46064171,10727641,5
+martinchen,10727641,3
+26725113,10727641,2
+48698083,10727641,4
+63255619,10727641,4
+shuiduocao,10727641,3
+3429762,10727641,4
+4498921,10727641,3
+doroink,10727641,5
+zhudahui,10727641,4
+Coanl,10727641,5
+Fienix,10727641,4
+126825199,10727641,4
+bjoneday,10727641,5
+103016444,10727641,3
+wanglei0326,10727641,4
+douban0805,10727641,5
+reneew,10727641,3
+oasiswong,10727641,1
+56143102,10727641,3
+68082604,10727641,4
+42724768,10727641,3
+37375149,10727641,4
+kouxping,10727641,3
+1389557,10727641,4
+55013431,10727641,4
+104344457,10727641,3
+49216618,10727641,4
+5218300,10727641,5
+71719673,10727641,-1
+55281661,10727641,3
+39612355,10727641,4
+dreamt_A,10727641,4
+130150805,10727641,4
+tennystime,10727641,4
+81729720,10727641,4
+61567993,10727641,4
+67325426,10727641,4
+wangsanjin,10727641,4
+4057670,10727641,4
+116273034,10727641,4
+63851599,10727641,4
+oppoize,10727641,4
+73034002,10727641,3
+rodi,10727641,4
+60973173,10727641,4
+aarivy,10727641,5
+matoishere,10727641,4
+95074857,10727641,4
+46670616,10727641,3
+kasogg,10727641,4
+96869610,10727641,4
+122943812,10727641,3
+dearforget,10727641,4
+dearforget,10727641,4
+wenwendang,10727641,4
+Casanova,10727641,4
+132997262,10727641,5
+hewuyou,10727641,4
+47917777,10727641,4
+zenlife,10727641,4
+2316813,10727641,4
+84177108,10727641,4
+61641617,10727641,5
+4446932,10727641,3
+29896838,10727641,4
+52002560,10727641,4
+70764851,10727641,5
+im77,10727641,4
+72547163,10727641,4
+66861175,10727641,3
+110328259,10727641,3
+80875321,10727641,4
+51760780,10727641,5
+70380343,10727641,3
+echo__,10727641,3
+maviswang,10727641,3
+122635365,10727641,3
+fengwuyaoye,10727641,4
+mapleqi,10727641,3
+3891395,10727641,3
+62822588,10727641,4
+anlrj,10727641,4
+30435959,10727641,4
+jasonwzz,10727641,4
+4345264,10727641,4
+sowhatanyi,10727641,3
+42275698,10727641,4
+gtxyxyz,10727641,5
+44136800,10727641,3
+48509446,10727641,3
+97537742,10727641,4
+ellencc,10727641,4
+1595315,10727641,4
+summitmonet,10727641,5
+jinneewang,10727641,3
+11882042,10727641,4
+poros,10727641,-1
+52284149,10727641,3
+50335410,10727641,5
+51297703,10727641,5
+61030127,10727641,3
+caunion,10727641,5
+2618753,10727641,4
+jeady2311,10727641,4
+46801772,10727641,5
+49976313,10727641,-1
+4239908,10727641,3
+44134959,10727641,4
+46812658,10727641,4
+66754854,10727641,4
+48258273,10727641,4
+frosteeeee,10727641,3
+94967208,10727641,5
+132893137,10727641,3
+caicaihuang,10727641,3
+58187681,10727641,5
+oakhui,10727641,5
+Jyr_112358,10727641,4
+zilongu,10727641,4
+efox5,10727641,3
+4713496,10727641,4
+14840393,10727641,4
+73287736,10727641,4
+68632515,10727641,3
+4331359,10727641,4
+suzon_deedee,10727641,3
+51477202,10727641,2
+78905607,10727641,4
+132772322,10727641,4
+31452599,10727641,5
+samsaran,10727641,3
+14149496,10727641,5
+67525836,10727641,4
+courtney,10727641,3
+45003782,10727641,5
+75986203,10727641,3
+rosiness,10727641,5
+36936880,10727641,3
+lovely002,10727641,4
+ylamb,10727641,4
+46930361,10727641,4
+51904993,10727641,4
+tangshundgar,10727641,4
+55833673,10727641,4
+71573163,10727641,4
+51207003,10727641,4
+schritt,10727641,5
+dreamersjcat,10727641,3
+46957067,10727641,4
+55622314,10727641,3
+72438704,10727641,5
+51171341,10727641,4
+78412332,10727641,4
+yanan928,10727641,3
+65111838,10727641,5
+78588109,10727641,5
+64802960,10727641,5
+guoerer,10727641,3
+stardust1900,10727641,4
+51938291,10727641,4
+60747828,10727641,3
+harrz,10727641,4
+35414122,10727641,5
+1534963,10727641,3
+zhurou,10727641,3
+66240857,10727641,3
+67681153,10727641,4
+135197620,10727641,5
+130729175,10727641,4
+36853373,10727641,4
+74062182,10727641,3
+69848404,10727641,2
+4657884,10727641,5
+Cherry.Pluto,10727641,4
+55477102,10727641,4
+OnlyCoffee,10727641,4
+51062093,10727641,5
+smilejackiekwok,10727641,4
+66617032,10727641,3
+82849854,10727641,4
+97057870,10727641,4
+tkoks,10727641,4
+3015416,10727641,3
+colorjiang,10727641,2
+62558245,10727641,1
+80466761,10727641,4
+yunerrun,10727641,4
+Echokeats,10727641,4
+44318435,10727641,4
+zooyam,10727641,4
+zouhuzm,10727641,4
+129776219,10727641,3
+40812485,10727641,4
+63127522,10727641,5
+47542838,10727641,5
+2278436,10727641,3
+37584896,10727641,4
+leehyon,10727641,4
+109273896,10727641,5
+69714540,10727641,4
+zuiyufengzhong,10727641,4
+64123749,10727641,5
+50867193,10727641,4
+77152937,10727641,5
+whisaly,10727641,3
+59672518,10727641,2
+123013458,10727641,5
+kelvinshaw,10727641,3
+violetbooks,10727641,4
+35235372,10727641,5
+luoquan,10727641,4
+93500334,10727641,4
+41083928,10727641,4
+125841916,10727641,5
+aurora0217,10727641,4
+62712229,10727641,4
+65019366,10727641,4
+baidudotcom,10727641,3
+BOBODD,10727641,4
+14479133,10727641,4
+47052940,10727641,5
+63033488,10727641,4
+77629611,10727641,4
+41529515,10727641,4
+jinasong,10727641,4
+lijsh,10727641,4
+proust999,10727641,3
+lewish,10727641,4
+61963666,10727641,5
+firewingwong,10727641,4
+Morris.,10727641,3
+134203554,10727641,2
+122705753,10727641,5
+napleo,10727641,3
+41386230,10727641,3
+52954881,10727641,4
+81787067,10727641,4
+43632851,10727641,3
+yestar,10727641,4
+dodov,10727641,3
+54951412,10727641,4
+87950167,10727641,4
+103039257,10727641,5
+57577352,10727641,4
+76621126,10727641,5
+127153017,10727641,5
+immmmm,10727641,4
+amadecasa,10727641,5
+51717187,10727641,5
+Fxlly3,10727641,5
+122184294,10727641,4
+2760910,10727641,4
+1280213,10727641,3
+66967732,10727641,5
+74278050,10727641,4
+3840143,10727641,3
+133986166,10727641,5
+chitb,10727641,4
+63506712,10727641,3
+alalei214,10727641,4
+31667362,10727641,3
+108212384,10727641,3
+68576426,10727641,3
+56075427,10727641,4
+59927608,10727641,5
+1456910,10727641,3
+72006598,10727641,3
+55512330,10727641,4
+1831746,10727641,4
+68339919,10727641,4
+102594722,10727641,3
+Mandyreyan,10727641,5
+ROMAN10,10727641,4
+82520594,10727641,5
+70214079,10727641,3
+4698536,10727641,4
+102862890,10727641,4
+54582488,10727641,4
+2865842,10727641,4
+62751293,10727641,5
+Sking_lq,10727641,4
+snipersteve,10727641,3
+73956595,10727641,4
+fangwenjiao,10727641,3
+yigesong,10727641,4
+130808289,10727641,4
+67924559,10727641,5
+tianranzijiegou,10727641,3
+130954450,10727641,4
+121288261,10727641,4
+97649336,10727641,4
+121680939,10727641,3
+115644313,10727641,5
+115644313,10727641,5
+zxzcherish,10727641,5
+haizhiyue,10727641,3
+103503223,10727641,5
+4501745,10727641,3
+60192740,10727641,5
+david880614,10727641,4
+58179619,10727641,3
+jackoldbear,10727641,4
+54595614,10727641,3
+60712166,10727641,4
+97354586,10727641,4
+62920331,10727641,5
+bcnk,10727641,4
+87884178,10727641,4
+32920328,10727641,4
+naninani,10727641,4
+5116652,10727641,4
+40642090,10727641,3
+87693385,10727641,5
+49267929,10727641,4
+43766202,10727641,3
+3982610,10727641,5
+119606284,10727641,3
+zmiya_leo,10727641,5
+2233141,10727641,4
+50340855,10727641,4
+ling_sha,10727641,5
+49190337,10727641,4
+69458682,10727641,4
+3846099,10727641,-1
+3623202,10727641,5
+97477466,10727641,5
+30148733,10727641,3
+55609637,10727641,3
+o_xm,10727641,4
+studentdao,10727641,3
+58763583,10727641,4
+60167379,10727641,4
+2369423,10727641,4
+65044285,10727641,3
+120963459,10727641,4
+49059976,10727641,5
+39224869,10727641,4
+49298107,10727641,3
+bloomyjasmine,10727641,4
+ninomae,10727641,4
+52608122,10727641,3
+4672889,10727641,3
+64320633,10727641,4
+44361116,10727641,2
+afterlook,10727641,5
+1225389,10727641,4
+54146602,10727641,5
+falsefish,10727641,4
+wondershine,10727641,3
+3394942,10727641,4
+74873417,10727641,3
+twopages,10727641,4
+50435061,10727641,4
+dor0229,10727641,-1
+Koko_head,10727641,5
+4199524,10727641,4
+107719993,10727641,4
+57525782,10727641,4
+44386404,10727641,4
+49022279,10727641,3
+2544651,10727641,4
+3540979,10727641,5
+C_Perk,10727641,4
+anonymousor,10727641,3
+sinclair,10727641,4
+cherryhood,10727641,4
+58899374,10727641,3
+49065754,10727641,4
+cyjcyj92,10727641,4
+76334881,10727641,3
+47680886,10727641,4
+66669080,10727641,3
+78757579,10727641,3
+louis_li,10727641,3
+limicm,10727641,3
+sickx11,10727641,5
+70781768,10727641,-1
+4685842,10727641,5
+63644333,10727641,4
+119795456,10727641,4
+130138879,10727641,4
+wxy88,10727641,4
+30219531,10727641,4
+50481722,10727641,5
+aquar25,10727641,4
+91236974,10727641,5
+EMonica,10727641,4
+38789187,10727641,4
+46496992,10727641,5
+47926562,10727641,4
+4708937,10727641,5
+85536299,10727641,4
+85109921,10727641,3
+42042005,10727641,5
+77900955,10727641,-1
+56721088,10727641,4
+49905882,10727641,3
+41634233,10727641,4
+49027405,10727641,5
+55933493,10727641,4
+62249001,10727641,4
+100083138,10727641,4
+67509576,10727641,1
+cobing,10727641,4
+120299687,10727641,4
+viyawym,10727641,3
+clever528,10727641,4
+cyjcandychan,10727641,2
+star_bury,10727641,5
+68585121,10727641,3
+53890677,10727641,5
+41441330,10727641,3
+4597338,10727641,3
+powerfultony,10727641,4
+115593440,10727641,5
+69407013,10727641,4
+Cactao,10727641,4
+athena51244,10727641,5
+yujianengyi,10727641,4
+60851886,10727641,2
+47798709,10727641,5
+41533340,10727641,4
+Niro-Zeng,10727641,3
+leixiao86,10727641,3
+Julilili,10727641,4
+52816310,10727641,4
+48309781,10727641,4
+108821133,10727641,4
+afa1021,10727641,2
+60599665,10727641,4
+sureiamsure,10727641,2
+46078786,10727641,3
+kfc77,10727641,4
+ddxiaohuli,10727641,4
+45508468,10727641,2
+61890434,10727641,4
+63305885,10727641,4
+76097175,10727641,4
+113124571,10727641,5
+34588630,10727641,3
+2943338,10727641,4
+nidewenzi,10727641,4
+125055300,10727641,4
+54780827,10727641,5
+otakuone,10727641,4
+46467799,10727641,3
+shf993,10727641,3
+131375761,10727641,4
+chariey,10727641,4
+71374005,10727641,3
+53503878,10727641,5
+2518153,10727641,4
+maggiefacebook,10727641,3
+maggiefacebook,10727641,3
+76549265,10727641,5
+riqu,10727641,3
+lichuman,10727641,4
+vyeah,10727641,4
+keisa,10727641,4
+sherryw76,10727641,4
+82570789,10727641,4
+ayumiH,10727641,3
+74567166,10727641,2
+32853386,10727641,5
+90161175,10727641,3
+yin-gang,10727641,3
+50222083,10727641,4
+sunnyhk,10727641,4
+narahana,10727641,3
+4482312,10727641,3
+58070874,10727641,3
+58855650,10727641,5
+qinxinzhu,10727641,4
+48190133,10727641,3
+91474719,10727641,3
+35421582,10727641,5
+lion87,10727641,3
+3514066,10727641,4
+113584703,10727641,4
+81299266,10727641,4
+28293516,10727641,4
+smallazure,10727641,4
+yvone1220,10727641,4
+54465504,10727641,5
+134013208,10727641,5
+shabaor,10727641,4
+121154422,10727641,5
+57582133,10727641,5
+3531316,10727641,4
+sunyangchina,10727641,4
+65417028,10727641,4
+56070920,10727641,4
+sophie_chan,10727641,4
+64787437,10727641,3
+65514003,10727641,5
+achen29,10727641,4
+47480391,10727641,4
+2238966,10727641,4
+77027659,10727641,4
+38252612,10727641,3
+cuteeestar,10727641,4
+81421967,10727641,4
+57417208,10727641,4
+17342003,10727641,4
+47822950,10727641,4
+Dydia,10727641,3
+Flipped_Judy,10727641,4
+Casiopea_yh,10727641,4
+63927330,10727641,4
+33158247,10727641,5
+popzoe,10727641,2
+96728684,10727641,4
+52260644,10727641,3
+alfredd,10727641,4
+4281036,10727641,3
+64190669,10727641,3
+127675582,10727641,3
+68747518,10727641,4
+hallie324,10727641,3
+78728775,10727641,3
+46829398,10727641,5
+53377652,10727641,4
+133815233,10727641,3
+eksmemo,10727641,3
+56672211,10727641,4
+an.seven,10727641,3
+wangxiaoyou,10727641,4
+kylin216,10727641,4
+57461686,10727641,3
+plkeke,10727641,4
+67342694,10727641,5
+musesmelpomene,10727641,2
+floraalma,10727641,4
+floraalma,10727641,4
+90217144,10727641,3
+pppppisces,10727641,5
+huangrui1016,10727641,4
+leapmotion,10727641,4
+62528741,10727641,4
+rainze,10727641,4
+64529774,10727641,5
+appeal,10727641,4
+49812770,10727641,4
+32835447,10727641,3
+38599840,10727641,-1
+Oncenevermore,10727641,4
+66171228,10727641,5
+42458136,10727641,5
+39532785,10727641,3
+61415856,10727641,4
+130748709,10727641,5
+46939628,10727641,4
+52184872,10727641,4
+52184872,10727641,4
+nikko_y,10727641,4
+yinw83,10727641,3
+Sophie0111,10727641,3
+1282175,10727641,3
+aurden,10727641,4
+124232379,10727641,4
+74551171,10727641,4
+53868140,10727641,4
+cocojamboo,10727641,3
+48815744,10727641,4
+119262226,10727641,5
+84930768,10727641,4
+53647318,10727641,3
+65553756,10727641,5
+2881197,10727641,3
+61576058,10727641,3
+tigerout,10727641,5
+68013076,10727641,4
+shane_Xu,10727641,4
+bayernwin,10727641,4
+82019070,10727641,4
+78216114,10727641,5
+57501453,10727641,4
+58596058,10727641,4
+shikechen,10727641,5
+124391754,10727641,4
+114617164,10727641,3
+75351528,10727641,3
+71421150,10727641,5
+69387510,10727641,3
+cloris32,10727641,4
+4592782,10727641,4
+alex227,10727641,4
+76192912,10727641,4
+1750236,10727641,5
+79782728,10727641,4
+44848574,10727641,5
+64874710,10727641,4
+134599372,10727641,4
+22997328,10727641,5
+74422444,10727641,4
+50930270,10727641,4
+45909249,10727641,3
+55489137,10727641,-1
+36189380,10727641,-1
+54253559,10727641,4
+sherry007,10727641,5
+jackguo,10727641,4
+115668392,10727641,3
+1175458,10727641,4
+3595293,10727641,4
+63514966,10727641,4
+Mr_January,10727641,4
+30166860,10727641,4
+60289116,10727641,4
+moon6fly,10727641,4
+25468044,10727641,3
+jiyingsysu,10727641,4
+60446322,10727641,4
+68919734,10727641,3
+lxhwsm,10727641,4
+fishpjr,10727641,4
+cabrite,10727641,4
+59634338,10727641,4
+70311914,10727641,4
+vivianweiwen,10727641,4
+2415644,10727641,4
+45858265,10727641,3
+52335106,10727641,-1
+bugerfly,10727641,5
+47776464,10727641,4
+suitsue0504,10727641,4
+4066025,10727641,4
+121922274,10727641,4
+70194363,10727641,5
+63636223,10727641,4
+74771985,10727641,3
+cometoloveme,10727641,3
+35407270,10727641,3
+115032485,10727641,4
+61486728,10727641,4
+2792721,10727641,3
+66015511,10727641,4
+61122762,10727641,4
+phoe9101,10727641,-1
+zhmcyake,10727641,4
+50206708,10727641,3
+FiveStrong,10727641,4
+WantonQueer,10727641,2
+yourinan,10727641,4
+mizuki313,10727641,2
+64407340,10727641,4
+lost-kaine,10727641,3
+tankdriver,10727641,3
+70672684,10727641,3
+84770907,10727641,4
+T-Wolf,10727641,4
+agenta,10727641,3
+djinn77,10727641,5
+69406009,10727641,4
+20194870,10727641,3
+53839512,10727641,4
+86253418,10727641,4
+48377465,10727641,4
+majesty.voyi,10727641,3
+78635378,10727641,4
+2788057,10727641,4
+84207817,10727641,4
+16520047,10727641,5
+43988930,10727641,4
+119692827,10727641,4
+43692949,10727641,4
+62302403,10727641,2
+49258519,10727641,5
+75928928,10727641,4
+1251922,10727641,3
+55860957,10727641,4
+4646921,10727641,4
+53788254,10727641,3
+foleyfan,10727641,3
+2158121,10727641,3
+52076607,10727641,4
+poria,10727641,3
+7223165,10727641,4
+waiting58,10727641,5
+49983396,10727641,4
+29519193,10727641,4
+daniellered,10727641,4
+133266692,10727641,3
+2853926,10727641,5
+44592673,10727641,3
+43393007,10727641,3
+ysxue,10727641,3
+69489690,10727641,4
+97184237,10727641,3
+117348494,10727641,3
+70930410,10727641,3
+shanyuping,10727641,4
+70521921,10727641,3
+fanclrice,10727641,4
+limoli,10727641,4
+35270225,10727641,3
+kkkki,10727641,4
+47084530,10727641,4
+qingxiaolin,10727641,4
+80923328,10727641,4
+A-sun,10727641,4
+44149860,10727641,4
+lucifer7th,10727641,5
+thedharmabum,10727641,5
+dontdee14,10727641,3
+jojogiogio,10727641,3
+googkyle,10727641,3
+43500933,10727641,4
+80598638,10727641,3
+130623512,10727641,4
+1490487,10727641,3
+62565954,10727641,5
+nanacancer,10727641,4
+elefant,10727641,3
+34617683,10727641,-1
+51227085,10727641,-1
+133044153,10727641,3
+67374627,10727641,5
+50583394,10727641,3
+61805546,10727641,4
+74687875,10727641,5
+3851118,10727641,4
+41808846,10727641,3
+whisperstone,10727641,4
+phnix,10727641,5
+wisagan,10727641,4
+Siddartha,10727641,4
+yklizheng123,10727641,5
+lillianbehappy,10727641,5
+123304129,10727641,4
+morieyun,10727641,4
+mjpx0510,10727641,4
+54228014,10727641,4
+54228014,10727641,4
+germ546,10727641,4
+92203860,10727641,4
+3110715,10727641,4
+63578781,10727641,4
+ruck,10727641,4
+darrenskywalker,10727641,3
+DEMO9266,10727641,3
+52064761,10727641,4
+98273529,10727641,5
+49493827,10727641,3
+48062280,10727641,3
+staved,10727641,-1
+taomomogo,10727641,3
+50337676,10727641,5
+2829825,10727641,4
+34204093,10727641,5
+hiromasahan,10727641,5
+2822846,10727641,4
+83123138,10727641,4
+2708018,10727641,4
+bubble77,10727641,5
+83016243,10727641,5
+38074820,10727641,4
+Georgewen,10727641,4
+64673199,10727641,3
+77774632,10727641,3
+125148047,10727641,4
+97396333,10727641,4
+56952438,10727641,4
+56824817,10727641,5
+manchukhan,10727641,3
+yovng,10727641,3
+kusachann,10727641,4
+59336433,10727641,4
+3218379,10727641,5
+lx6100,10727641,5
+34387789,10727641,4
+55990850,10727641,3
+43626938,10727641,2
+3640801,10727641,5
+66778770,10727641,4
+ruoxingyi,10727641,4
+yikobest,10727641,5
+70775632,10727641,5
+30532043,10727641,5
+104041207,10727641,4
+45685573,10727641,3
+68669440,10727641,4
+71929336,10727641,4
+50266918,10727641,5
+yangyin827,10727641,5
+120982954,10727641,4
+littleflowercan,10727641,4
+63231885,10727641,5
+47877808,10727641,3
+33326474,10727641,4
+67769734,10727641,4
+d-coffin,10727641,4
+50532923,10727641,3
+d-coffin,10727641,4
+50532923,10727641,3
+artemishappy,10727641,3
+Xenophon,10727641,4
+48065972,10727641,4
+71882881,10727641,2
+120148116,10727641,4
+90332226,10727641,5
+1929074,10727641,5
+4829013,10727641,3
+kingdoucloud,10727641,4
+135144421,10727641,3
+28884615,10727641,4
+59113427,10727641,3
+83143884,10727641,4
+56279666,10727641,3
+130657915,10727641,4
+winderwing,10727641,3
+hxtdkz1226,10727641,3
+127781489,10727641,5
+shiyezi8877,10727641,4
+xjksama,10727641,4
+4415498,10727641,5
+68000398,10727641,5
+126824613,10727641,4
+65740832,10727641,5
+83722487,10727641,4
+94380874,10727641,3
+15029766,10727641,3
+qyqgpower,10727641,4
+8752115,10727641,4
+Son47,10727641,3
+s-a-d,10727641,4
+46799195,10727641,3
+2187326,10727641,3
+64931517,10727641,4
+littlemoon218,10727641,4
+sakura114,10727641,4
+17386893,10727641,-1
+Seajor74,10727641,3
+72155995,10727641,4
+52270206,10727641,3
+71107908,10727641,4
+59969817,10727641,4
+126804729,10727641,3
+46291002,10727641,4
+Engray,10727641,5
+3504753,10727641,2
+hohojm,10727641,5
+AlejandroX,10727641,2
+47799758,10727641,5
+63368903,10727641,3
+hls_304,10727641,4
+madbilly,10727641,3
+52296283,10727641,3
+13375506,10727641,5
+50754510,10727641,3
+123046225,10727641,4
+51583306,10727641,4
+leayingly,10727641,3
+Tackie,10727641,4
+chaoren124,10727641,3
+GrinGrinGrin,10727641,4
+3682526,10727641,1
+40474222,10727641,4
+myarale,10727641,5
+nangdaocc,10727641,5
+74825312,10727641,4
+11893352,10727641,4
+6681296,10727641,3
+72792251,10727641,3
+djtears88,10727641,4
+padme,10727641,5
+eureka7,10727641,3
+glason,10727641,4
+82096379,10727641,1
+13586058,10727641,3
+marala,10727641,4
+57727542,10727641,4
+smallcolor,10727641,3
+68325010,10727641,4
+83743791,10727641,3
+dear-lc,10727641,5
+51815650,10727641,5
+emor1106,10727641,3
+11889754,10727641,5
+smallsugar,10727641,5
+54596610,10727641,4
+49993074,10727641,3
+114353086,10727641,4
+ringfin,10727641,4
+72993383,10727641,3
+sosofly,10727641,4
+syfins,10727641,4
+84646038,10727641,3
+135137854,10727641,3
+100778702,10727641,3
+vane37,10727641,3
+50199937,10727641,4
+56070301,10727641,5
+92960717,10727641,4
+115603694,10727641,4
+arthurlee,10727641,3
+65366516,10727641,4
+94352576,10727641,4
+53592125,10727641,3
+fanyamin,10727641,4
+wang2v,10727641,4
+30492787,10727641,4
+sakurayuki,10727641,4
+XiahHawking,10727641,4
+59620866,10727641,3
+114435379,10727641,3
+1795295,10727641,5
+fameloo,10727641,4
+metac,10727641,5
+53329043,10727641,5
+71472531,10727641,5
+helenzhao0512,10727641,3
+Pixie_19,10727641,-1
+39363445,10727641,5
+78777412,10727641,3
+rhea860618,10727641,4
+75355268,10727641,4
+youyang1991,10727641,5
+dreamcm,10727641,4
+jj2332,10727641,3
+46257426,10727641,5
+81665646,10727641,4
+2849700,10727641,4
+gluttony6,10727641,3
+42962790,10727641,4
+51951271,10727641,4
+xinranli,10727641,-1
+2923091,10727641,4
+jh072,10727641,4
+FFcontinue,10727641,4
+134540327,10727641,5
+59189424,10727641,4
+tiebin223,10727641,4
+zjk5264,10727641,5
+2536847,10727641,4
+54845025,10727641,5
+91851250,10727641,3
+yasin.z,10727641,4
+52592607,10727641,3
+liusuer,10727641,3
+Lv65535,10727641,4
+mak1k28,10727641,5
+68699271,10727641,3
+69735820,10727641,4
+sakurairo,10727641,4
+90751149,10727641,3
+Xiongxiaomi,10727641,4
+cyssnk,10727641,4
+33575154,10727641,4
+81985285,10727641,4
+83317045,10727641,4
+caicaisweat,10727641,4
+Jerusalem,10727641,4
+94394247,10727641,3
+73836689,10727641,4
+40077286,10727641,4
+62647501,10727641,4
+56896542,10727641,4
+dongbai,10727641,3
+61888159,10727641,4
+64253762,10727641,4
+57074194,10727641,4
+46572945,10727641,3
+3741660,10727641,4
+55350236,10727641,5
+3878223,10727641,5
+2214938,10727641,4
+qiaowu2,10727641,4
+121288678,10727641,4
+23235822,10727641,5
+mogujunmomo,10727641,4
+pylee,10727641,3
+59623092,10727641,3
+36501764,10727641,5
+64870027,10727641,5
+me2shy,10727641,4
+3173862,10727641,-1
+xisahala,10727641,3
+60822788,10727641,4
+wangty,10727641,4
+78130201,10727641,5
+100342523,10727641,3
+122450255,10727641,4
+44758840,10727641,3
+68708613,10727641,4
+2040497,10727641,2
+49456596,10727641,4
+2228783,10727641,3
+61624406,10727641,4
+49004115,10727641,3
+tiny_loo,10727641,4
+37640485,10727641,4
+zhanghanha,10727641,3
+131631669,10727641,5
+saradush,10727641,4
+54538975,10727641,3
+74575002,10727641,5
+62504399,10727641,3
+40549441,10727641,4
+52345284,10727641,3
+62628758,10727641,5
+63349480,10727641,4
+99579544,10727641,4
+102289527,10727641,3
+3428014,10727641,4
+63635904,10727641,4
+mythjill,10727641,4
+68531336,10727641,1
+yuc200,10727641,3
+cruz,10727641,5
+72629481,10727641,4
+Tylermrx,10727641,4
+jump2cn,10727641,3
+131771853,10727641,4
+Jacky_L,10727641,5
+83462778,10727641,2
+45479009,10727641,5
+75328137,10727641,5
+xiaobob03,10727641,5
+47243412,10727641,3
+52454899,10727641,1
+56260092,10727641,3
+49093725,10727641,3
+llms,10727641,4
+35667000,10727641,5
+oacao,10727641,5
+54116882,10727641,4
+jinjingjing,10727641,4
+3592617,10727641,4
+25972265,10727641,4
+chapu,10727641,4
+tykm,10727641,3
+123250951,10727641,5
+120772872,10727641,4
+youmuyishu,10727641,4
+5760403,10727641,4
+Edward-Lockwood,10727641,4
+134042232,10727641,4
+119428504,10727641,4
+yanyu_r,10727641,5
+74805050,10727641,4
+Makoto614,10727641,3
+56694630,10727641,4
+49266863,10727641,4
+3302358,10727641,4
+43133361,10727641,4
+48020067,10727641,5
+64618863,10727641,3
+bubbbble,10727641,5
+brucedt,10727641,-1
+94976751,10727641,4
+58774315,10727641,5
+60826813,10727641,4
+ed-sky,10727641,3
+31817174,10727641,5
+zhuangbixia,10727641,3
+sheldonkao,10727641,3
+naoyareiji,10727641,4
+133471355,10727641,5
+99251376,10727641,5
+121664748,10727641,3
+withoutMrRight,10727641,5
+vchin,10727641,3
+alicewithoutyou,10727641,3
+rtg,10727641,4
+snowkit,10727641,4
+3943602,10727641,5
+51736421,10727641,-1
+52995552,10727641,3
+iammonna,10727641,4
+46422837,10727641,3
+Yu-Tommy,10727641,4
+sibyl-tongsiyu,10727641,-1
+sibyl-tongsiyu,10727641,-1
+tangputao,10727641,-1
+changgu4290,10727641,4
+50527578,10727641,-1
+46175747,10727641,4
+ambehr,10727641,3
+135118827,10727641,4
+61606236,10727641,3
+38924619,10727641,3
+54382756,10727641,5
+kloccd,10727641,4
+50094689,10727641,3
+babyfishjj,10727641,5
+45405991,10727641,5
+suyi1031,10727641,3
+Chendavid,10727641,4
+64497662,10727641,5
+cynthia27,10727641,4
+51953999,10727641,3
+ihaveafreeheart,10727641,3
+ihaveafreeheart,10727641,3
+kellenart,10727641,4
+neochao,10727641,4
+33091901,10727641,4
+61294563,10727641,3
+bb609,10727641,4
+castaneousair,10727641,3
+73017631,10727641,3
+49521685,10727641,4
+4607844,10727641,4
+65672467,10727641,3
+81316047,10727641,4
+79893626,10727641,5
+Schicksalslied,10727641,4
+49870315,10727641,5
+50778273,10727641,5
+mi-hang,10727641,4
+3631042,10727641,3
+79779762,10727641,2
+Mov1e-Clan,10727641,2
+30591753,10727641,5
+65190817,10727641,4
+52246931,10727641,4
+LSDRauz,10727641,3
+50001721,10727641,4
+65117604,10727641,4
+53566385,10727641,3
+karenin,10727641,4
+IWASKUN,10727641,4
+50353681,10727641,3
+aptx0922,10727641,5
+57088195,10727641,4
+47795407,10727641,3
+littlesheeta,10727641,4
+56066164,10727641,4
+56567872,10727641,3
+1077771,10727641,4
+littleyoyo,10727641,-1
+47037056,10727641,4
+3928793,10727641,4
+128615153,10727641,4
+imyoyo1116,10727641,3
+59339572,10727641,4
+67072789,10727641,5
+46497691,10727641,3
+89852120,10727641,3
+1656255,10727641,4
+134062078,10727641,4
+124640229,10727641,3
+klinken,10727641,4
+76819168,10727641,4
+hill__,10727641,4
+ff_way,10727641,4
+66802444,10727641,4
+53291817,10727641,5
+64728684,10727641,4
+41116493,10727641,4
+57761188,10727641,4
+jimodexueren,10727641,3
+37574325,10727641,5
+LittleMing,10727641,4
+60973927,10727641,5
+watchboy,10727641,4
+vc,10727641,2
+131412359,10727641,5
+confuzzle,10727641,3
+quanzhongyang,10727641,4
+Grace_Xuliang,10727641,4
+leaf615,10727641,5
+65312708,10727641,5
+dyh1991,10727641,4
+2030775,10727641,4
+103277074,10727641,4
+stargazerzsd,10727641,4
+123469699,10727641,5
+loveye0720,10727641,3
+lilililizi,10727641,3
+fortblk,10727641,3
+alfon42,10727641,-1
+kimidon,10727641,3
+15778860,10727641,4
+chen-mo,10727641,4
+wallaceLee,10727641,4
+48483774,10727641,4
+63971578,10727641,4
+75231611,10727641,4
+43703653,10727641,5
+119920422,10727641,5
+40184115,10727641,5
+sherrybecks,10727641,4
+36260283,10727641,3
+42342405,10727641,2
+66992520,10727641,5
+yadnomeulb,10727641,3
+47285151,10727641,4
+sangou,10727641,3
+46090573,10727641,5
+46099230,10727641,3
+tifa_woo,10727641,3
+pinky2011s,10727641,4
+129470292,10727641,5
+2330491,10727641,4
+1321907,10727641,4
+78601907,10727641,4
+solavre,10727641,-1
+34411968,10727641,5
+79798477,10727641,5
+72175536,10727641,4
+23575352,10727641,3
+76331020,10727641,3
+65579666,10727641,4
+xingjiaqi0622,10727641,4
+Jodiezhang,10727641,3
+dasung,10727641,-1
+51045384,10727641,4
+1463457,10727641,3
+51641962,10727641,4
+70289521,10727641,4
+jiajunzhi,10727641,5
+45966706,10727641,4
+binaryman,10727641,5
+36234545,10727641,3
+131185324,10727641,4
+94444600,10727641,4
+pantaichi,10727641,4
+aprilpear,10727641,3
+james089,10727641,4
+73445491,10727641,3
+kolodo,10727641,3
+39565614,10727641,4
+mengthinking,10727641,4
+66066828,10727641,5
+69045210,10727641,4
+JakeNow,10727641,4
+60947985,10727641,4
+Simon_Wu,10727641,3
+88298272,10727641,4
+1186840,10727641,4
+17661600,10727641,5
+tinyoyo,10727641,3
+xumhandy,10727641,3
+54308994,10727641,3
+67767887,10727641,3
+keaqy,10727641,5
+71259453,10727641,5
+Irivin,10727641,4
+130154428,10727641,4
+56960014,10727641,4
+82872608,10727641,4
+sampetter,10727641,3
+55405486,10727641,4
+99078833,10727641,3
+103111224,10727641,5
+andichou,10727641,4
+54484555,10727641,4
+49404071,10727641,3
+4776985,10727641,4
+92697402,10727641,4
+syou27,10727641,4
+zxl321,10727641,3
+fuei,10727641,5
+bodyblue,10727641,4
+132148305,10727641,5
+1558709,10727641,4
+revaoo,10727641,3
+95442218,10727641,4
+66086973,10727641,4
+49937057,10727641,4
+4435016,10727641,4
+francisxu,10727641,4
+2344931,10727641,4
+35051547,10727641,4
+52114041,10727641,4
+rvlt,10727641,4
+51772148,10727641,4
+115001902,10727641,3
+1886385,10727641,3
+96175707,10727641,4
+54667143,10727641,3
+65164486,10727641,4
+qingyizheng,10727641,4
+57707856,10727641,1
+69507945,10727641,5
+8313519,10727641,4
+71344804,10727641,2
+40193618,10727641,4
+81530706,10727641,4
+lumen,10727641,4
+46865711,10727641,3
+59993815,10727641,4
+xhm,10727641,4
+4250797,10727641,5
+tangwenjoash,10727641,4
+paomoyueyue,10727641,4
+133553375,10727641,3
+79596238,10727641,3
+26487427,10727641,4
+52685413,10727641,4
+everyage,10727641,4
+130603128,10727641,5
+rogerjulia,10727641,4
+Alicias,10727641,5
+3469841,10727641,4
+4156087,10727641,3
+129101053,10727641,5
+104605800,10727641,5
+49628220,10727641,5
+46992157,10727641,4
+89984750,10727641,3
+tomatobear,10727641,4
+85293907,10727641,3
+sunny_S,10727641,4
+132540342,10727641,4
+121900435,10727641,4
+68423037,10727641,3
+eiris,10727641,2
+77169093,10727641,3
+122586428,10727641,4
+liiinda,10727641,4
+85413129,10727641,3
+120899384,10727641,4
+shinysky,10727641,4
+51077975,10727641,4
+Viooolin,10727641,5
+63150759,10727641,4
+54614709,10727641,3
+70686440,10727641,3
+2005598,10727641,3
+84106648,10727641,-1
+Bupt_Doc,10727641,4
+125282020,10727641,5
+61921761,10727641,4
+87651171,10727641,3
+61273534,10727641,5
+7609988,10727641,3
+nicoleryeo,10727641,3
+mingren2588,10727641,4
+84628421,10727641,-1
+zhujiao,10727641,3
+82619026,10727641,5
+124201774,10727641,4
+58140841,10727641,3
+kiwihello,10727641,3
+100574320,10727641,4
+luzifer,10727641,4
+66973670,10727641,4
+Wing87504,10727641,5
+91543549,10727641,4
+3623955,10727641,3
+71808718,10727641,4
+31755732,10727641,4
+1215737,10727641,4
+12873508,10727641,5
+4520667,10727641,3
+helloivan,10727641,4
+114505500,10727641,5
+82823263,10727641,2
+tanguohong,10727641,5
+127526905,10727641,5
+131849470,10727641,3
+4303991,10727641,4
+28256528,10727641,4
+53626260,10727641,3
+82629797,10727641,4
+114493517,10727641,4
+76611008,10727641,3
+122164611,10727641,4
+34367914,10727641,3
+123389634,10727641,4
+2069523,10727641,3
+66606480,10727641,-1
+63916272,10727641,3
+DracoMa,10727641,5
+2106137,10727641,4
+35552430,10727641,4
+dhtcwd,10727641,4
+83366568,10727641,3
+101982187,10727641,3
+88262446,10727641,3
+53743879,10727641,5
+51876413,10727641,4
+shangdi2v,10727641,-1
+69196405,10727641,4
+2597570,10727641,5
+44293336,10727641,4
+47265925,10727641,4
+134854042,10727641,4
+122349852,10727641,4
+55919901,10727641,5
+126853809,10727641,5
+3369617,10727641,5
+61365691,10727641,4
+zhujjcn,10727641,3
+42307079,10727641,4
+liyah,10727641,4
+crystaliceblue,10727641,5
+57874487,10727641,3
+60115733,10727641,4
+135077083,10727641,3
+lailai_tu,10727641,4
+3730004,10727641,3
+134563962,10727641,4
+128160386,10727641,3
+caroline_lls,10727641,4
+62151514,10727641,4
+Longinuss,10727641,3
+sylviahuang1029,10727641,4
+98417762,10727641,4
+130650007,10727641,4
+65412989,10727641,4
+lovekahn2002,10727641,3
+NIAIDE,10727641,3
+53035444,10727641,4
+looknana,10727641,4
+45697598,10727641,4
+44849027,10727641,4
+Christinayanhan,10727641,4
+48204509,10727641,4
+85324147,10727641,5
+51729072,10727641,4
+sangelsangel,10727641,5
+33761032,10727641,4
+DdotRabbit,10727641,5
+mansono,10727641,3
+35012305,10727641,4
+41370734,10727641,5
+85324202,10727641,4
+zcsgdbd,10727641,5
+everlastingblue,10727641,3
+2859552,10727641,3
+47862343,10727641,4
+martinaaa,10727641,4
+132342909,10727641,4
+44904163,10727641,3
+22666709,10727641,4
+1844596,10727641,3
+48047032,10727641,4
+jinhelu,10727641,3
+zech,10727641,3
+129276323,10727641,3
+48121857,10727641,4
+pangdashen,10727641,4
+rainy525,10727641,3
+xsbbbb,10727641,3
+87547812,10727641,4
+69244855,10727641,5
+131120554,10727641,3
+ziyuyouyou,10727641,4
+102246597,10727641,1
+foreverpdc,10727641,3
+virginieds,10727641,4
+xiayiliang,10727641,3
+21990858,10727641,5
+42143621,10727641,5
+marrrk,10727641,4
+maybe520sunshin,10727641,5
+3535148,10727641,5
+45321739,10727641,3
+90164423,10727641,2
+52582202,10727641,3
+48555554,10727641,3
+46061693,10727641,4
+xgy0318,10727641,4
+2491799,10727641,3
+99027512,10727641,3
+4346900,10727641,3
+qinjiaxi,10727641,5
+74745339,10727641,4
+53743649,10727641,4
+2420500,10727641,4
+103163383,10727641,4
+2260580,10727641,4
+imnine,10727641,4
+wjy419762524,10727641,5
+yogurt2202,10727641,4
+qxmy,10727641,3
+oooooocc,10727641,2
+aprilsunshine,10727641,4
+114658973,10727641,5
+keikisky,10727641,4
+keikisky,10727641,4
+fangzheer,10727641,-1
+68952401,10727641,4
+72413093,10727641,4
+122605310,10727641,2
+63680376,10727641,4
+villezhan,10727641,3
+1841749,10727641,4
+47790645,10727641,4
+oceaneyes,10727641,4
+68002540,10727641,5
+53729115,10727641,4
+3661713,10727641,4
+71979032,10727641,3
+47732529,10727641,4
+48236459,10727641,3
+58727241,10727641,5
+1793748,10727641,3
+fengyuanli,10727641,4
+59413586,10727641,4
+5596854,10727641,3
+syurinn,10727641,4
+46590871,10727641,3
+48973674,10727641,4
+50475822,10727641,4
+107369167,10727641,5
+134907491,10727641,3
+57025568,10727641,4
+nicaland,10727641,3
+53437305,10727641,3
+una423,10727641,3
+43804267,10727641,4
+why051370,10727641,2
+45957568,10727641,4
+guangdao,10727641,4
+56981196,10727641,4
+36643443,10727641,5
+marukowz,10727641,4
+42663693,10727641,5
+124953231,10727641,3
+monai3,10727641,4
+94773780,10727641,4
+42046990,10727641,4
+empty712,10727641,4
+47548547,10727641,-1
+56856472,10727641,4
+4412898,10727641,4
+42060804,10727641,4
+46142725,10727641,3
+16413081,10727641,3
+42808435,10727641,3
+4642464,10727641,3
+47745204,10727641,-1
+ALICE901,10727641,4
+Metalheads,10727641,5
+62346407,10727641,4
+huskie,10727641,3
+39491647,10727641,3
+zhuxiansheng,10727641,2
+1712422,10727641,4
+2768259,10727641,3
+71095371,10727641,4
+hhvan,10727641,5
+btone0808,10727641,3
+ACGharris,10727641,3
+51126064,10727641,4
+50651365,10727641,5
+71143154,10727641,3
+127256948,10727641,4
+debehe,10727641,4
+48271739,10727641,4
+44705986,10727641,4
+83900345,10727641,3
+yunhany,10727641,5
+37424688,10727641,3
+baliangyutang,10727641,3
+3285194,10727641,4
+Lafa,10727641,4
+kiffiz,10727641,4
+Lava_R,10727641,3
+12074004,10727641,4
+99942273,10727641,3
+72151805,10727641,4
+3086120,10727641,4
+christna,10727641,4
+lumins,10727641,3
+ichliebedich,10727641,-1
+wxhsolo,10727641,4
+72573412,10727641,4
+84270133,10727641,4
+linqianyue,10727641,4
+121058318,10727641,4
+75842929,10727641,4
+sunred66,10727641,4
+brightchai,10727641,5
+57915415,10727641,4
+50030842,10727641,-1
+35453500,10727641,5
+99550697,10727641,4
+49850552,10727641,3
+99550697,10727641,4
+49850552,10727641,3
+6243740,10727641,3
+96704443,10727641,5
+yimin99,10727641,5
+sihuo521,10727641,4
+stingroger,10727641,3
+58267868,10727641,3
+84802419,10727641,4
+gyd,10727641,4
+46073568,10727641,3
+2162982,10727641,4
+56593791,10727641,3
+54178918,10727641,5
+35545320,10727641,5
+133332673,10727641,2
+gozn,10727641,4
+amrita,10727641,4
+daniel01,10727641,5
+1732792,10727641,3
+48441373,10727641,3
+1491950,10727641,4
+seal4,10727641,3
+50545818,10727641,4
+Terri0710,10727641,4
+41566646,10727641,3
+Mrsmilence,10727641,3
+30212180,10727641,4
+2915371,10727641,5
+laurelni,10727641,4
+68887897,10727641,5
+115551507,10727641,3
+bardfox,10727641,4
+66081323,10727641,3
+125334017,10727641,3
+56873542,10727641,4
+3355684,10727641,4
+babylon2000,10727641,3
+43617068,10727641,3
+moryfor,10727641,4
+moryfor,10727641,4
+73696070,10727641,4
+forucy,10727641,4
+59377450,10727641,-1
+48786976,10727641,3
+57058120,10727641,4
+3703670,10727641,4
+42060794,10727641,4
+Chivar,10727641,4
+pumuxinzuo,10727641,5
+44641662,10727641,5
+nearlygod,10727641,-1
+49635484,10727641,4
+emmahuahua,10727641,4
+1117514,10727641,4
+rasler,10727641,5
+muyeah,10727641,4
+43107357,10727641,3
+43513795,10727641,3
+70668609,10727641,5
+61695974,10727641,3
+51289559,10727641,2
+78902065,10727641,5
+62476143,10727641,4
+Jessie_liao,10727641,2
+baiqitun,10727641,4
+134847229,10727641,5
+43473856,10727641,4
+58479235,10727641,4
+kenheart_ccxuan,10727641,4
+xxfyxl,10727641,4
+weiilele,10727641,3
+IOMOVIE,10727641,4
+muvictor925,10727641,-1
+jieyaren,10727641,4
+wins,10727641,5
+37966759,10727641,4
+momogui,10727641,5
+43885181,10727641,3
+48671713,10727641,4
+xbegg,10727641,3
+81666481,10727641,4
+59777760,10727641,4
+63250313,10727641,4
+48092758,10727641,4
+46165082,10727641,5
+64146161,10727641,5
+47541380,10727641,5
+13713408,10727641,5
+51300496,10727641,4
+blessfortune,10727641,5
+41839383,10727641,4
+63869528,10727641,3
+onlynana,10727641,4
+76333727,10727641,2
+82193634,10727641,-1
+phantom23,10727641,4
+53827874,10727641,4
+Awhatever,10727641,4
+daidai324,10727641,5
+126599373,10727641,5
+zzzhy,10727641,5
+130024032,10727641,5
+Eclipse_17,10727641,4
+iriszhong,10727641,3
+benniewong,10727641,4
+92335297,10727641,5
+lasenli,10727641,4
+contender,10727641,-1
+amanjj,10727641,-1
+2504247,10727641,4
+66889726,10727641,5
+68058633,10727641,1
+59138637,10727641,5
+48976051,10727641,4
+2117969,10727641,3
+63617560,10727641,-1
+bbqdfc,10727641,4
+49048693,10727641,5
+66197287,10727641,3
+theaxell,10727641,4
+viteless,10727641,4
+36060435,10727641,1
+59390060,10727641,4
+justsmaki,10727641,3
+115474394,10727641,4
+carlhan,10727641,5
+sweetiekath,10727641,1
+Sheldon5,10727641,3
+liuzongming,10727641,5
+47515339,10727641,5
+actor2019,10727641,4
+4716984,10727641,5
+51075041,10727641,5
+ZouzheFoudouzhe,10727641,4
+PIERRELIU,10727641,5
+jiaxintuanzi,10727641,4
+36659366,10727641,5
+62415146,10727641,4
+58930752,10727641,4
+74258577,10727641,5
+elisabethhan,10727641,4
+69892402,10727641,5
+vincentjones,10727641,4
+ninalan911,10727641,2
+126220956,10727641,3
+102184149,10727641,5
+45403290,10727641,3
+yifanmumian,10727641,4
+Reina_elyse,10727641,4
+79325710,10727641,5
+4715675,10727641,4
+3524450,10727641,4
+68085632,10727641,5
+53975576,10727641,2
+Marcelproust,10727641,5
+38789203,10727641,2
+36791649,10727641,4
+50013150,10727641,4
+53668460,10727641,3
+bonnieyuan,10727641,5
+115987406,10727641,4
+rickeylee,10727641,4
+57847628,10727641,-1
+50093699,10727641,4
+70007681,10727641,3
+onlybelovedlulu,10727641,5
+ys1013,10727641,3
+69679169,10727641,4
+mimiking,10727641,4
+meowchang,10727641,5
+ala310,10727641,4
+135012811,10727641,4
+Libralife,10727641,3
+4077370,10727641,4
+yiliangsan,10727641,5
+99736785,10727641,5
+64010291,10727641,2
+65359383,10727641,3
+68578162,10727641,5
+3571163,10727641,4
+3223140,10727641,4
+chuyanran,10727641,-1
+3166039,10727641,-1
+ayouyoucats,10727641,3
+medievaldream32,10727641,3
+69967865,10727641,5
+2058817,10727641,3
+51263731,10727641,3
+42590079,10727641,5
+62298176,10727641,3
+2413203,10727641,4
+38698116,10727641,4
+wuomo,10727641,3
+qswoomsb,10727641,4
+soulmatekyu,10727641,5
+ytyyg,10727641,4
+tintingo,10727641,3
+3061104,10727641,4
+55926222,10727641,4
+foxgarden,10727641,4
+59013874,10727641,4
+74715074,10727641,4
+48821646,10727641,3
+33757247,10727641,3
+88795226,10727641,3
+superlims,10727641,5
+allysun,10727641,5
+49376231,10727641,2
+hawkingwang,10727641,4
+30003543,10727641,4
+81107474,10727641,3
+42359539,10727641,4
+71479420,10727641,3
+53768301,10727641,4
+37101036,10727641,-1
+Wait_decade,10727641,3
+sjch,10727641,4
+51577920,10727641,4
+62938015,10727641,4
+59421436,10727641,3
+4207280,10727641,5
+3590759,10727641,3
+lipengfeng2007,10727641,3
+45396935,10727641,4
+6264939,10727641,3
+surebesure,10727641,3
+3571623,10727641,4
+catakata,10727641,3
+15032209,10727641,4
+46836481,10727641,4
+41313130,10727641,4
+brison,10727641,4
+Zoooooooe,10727641,3
+47582437,10727641,-1
+57945333,10727641,5
+St.Lone,10727641,4
+47145599,10727641,4
+52309571,10727641,5
+4750660,10727641,4
+57088096,10727641,3
+moqianyao,10727641,4
+134907073,10727641,5
+126934669,10727641,4
+50644881,10727641,3
+45598200,10727641,5
+3899575,10727641,4
+50214253,10727641,4
+104402849,10727641,5
+milanai,10727641,4
+ddww911028,10727641,4
+34440776,10727641,3
+43330235,10727641,3
+c505113782,10727641,5
+133178672,10727641,4
+ile,10727641,3
+104347602,10727641,4
+34040552,10727641,4
+A317,10727641,5
+56164676,10727641,4
+panhan,10727641,5
+77201294,10727641,3
+perrinc,10727641,4
+2370454,10727641,5
+2429499,10727641,4
+57511216,10727641,5
+4675885,10727641,4
+wangyao1982,10727641,4
+103617417,10727641,3
+tonitoni,10727641,4
+47872764,10727641,3
+27300376,10727641,5
+64308036,10727641,3
+64886133,10727641,3
+youngoceano,10727641,3
+weitongqi,10727641,3
+69323349,10727641,3
+2174521,10727641,4
+62345168,10727641,4
+63381991,10727641,5
+1091787,10727641,4
+jiangjiang1214,10727641,4
+2752290,10727641,4
+nn1987814,10727641,2
+122240927,10727641,3
+mushroom16,10727641,3
+60915070,10727641,3
+muyuxiaoxiao,10727641,3
+58984077,10727641,5
+celia550,10727641,4
+soyoung1986,10727641,4
+ViHar,10727641,5
+130372330,10727641,3
+joakimtong,10727641,3
+10392574,10727641,5
+zkxloveytt,10727641,3
+45965937,10727641,5
+4325847,10727641,3
+4248246,10727641,3
+61311789,10727641,3
+ningning316,10727641,4
+52824756,10727641,4
+59482177,10727641,5
+103281873,10727641,3
+45944952,10727641,5
+83616696,10727641,3
+2713358,10727641,4
+63434723,10727641,3
+sssa1,10727641,4
+paistar,10727641,4
+47368196,10727641,4
+71666783,10727641,4
+58166165,10727641,4
+49294423,10727641,4
+dearjan,10727641,4
+Puppyman,10727641,3
+69607726,10727641,5
+60356718,10727641,3
+35522961,10727641,5
+39019803,10727641,4
+39019803,10727641,4
+59567796,10727641,3
+131205798,10727641,-1
+LinuxPlusPlus,10727641,4
+134983577,10727641,4
+114845268,10727641,3
+65046838,10727641,3
+1144905,10727641,5
+xuansushine,10727641,4
+26860515,10727641,4
+jijitata,10727641,5
+xuanxuan1209,10727641,4
+selavyzhou,10727641,4
+sanyanpi,10727641,-1
+4295778,10727641,5
+68662178,10727641,4
+48897339,10727641,5
+Lucif,10727641,4
+Fay...,10727641,4
+3223208,10727641,-1
+beech,10727641,3
+131147318,10727641,3
+91093296,10727641,4
+sun543,10727641,4
+134312634,10727641,2
+duyishi,10727641,4
+chenxi19890711,10727641,5
+Qyaoyao,10727641,-1
+51918172,10727641,5
+momohei,10727641,3
+1101526,10727641,3
+46718288,10727641,5
+65734199,10727641,3
+68152865,10727641,5
+1008482,10727641,4
+51067846,10727641,5
+52575839,10727641,5
+1865228,10727641,4
+62034201,10727641,4
+76315009,10727641,5
+27884235,10727641,4
+spritefall,10727641,3
+cuichuichui,10727641,5
+Liverpoolsun,10727641,3
+58836054,10727641,3
+68671581,10727641,4
+122954749,10727641,3
+homlim,10727641,-1
+heyebei,10727641,3
+byandong,10727641,2
+31427645,10727641,4
+76786786,10727641,5
+36221737,10727641,4
+tangmy,10727641,4
+58999997,10727641,3
+122458396,10727641,2
+houjingmeng,10727641,5
+zoneone,10727641,4
+45905762,10727641,4
+68777906,10727641,4
+47322994,10727641,3
+ergezuigao,10727641,2
+cheeseflower,10727641,5
+mirrorjing,10727641,3
+meowjiong,10727641,5
+kikilili006,10727641,4
+shirleycapri,10727641,4
+59949251,10727641,5
+73705875,10727641,4
+Yanna_z,10727641,5
+zp913,10727641,5
+47817775,10727641,4
+vivianchance,10727641,3
+cskywalker,10727641,4
+63527236,10727641,4
+2254747,10727641,4
+76999200,10727641,4
+46123999,10727641,3
+78731933,10727641,3
+81393037,10727641,2
+3849086,10727641,4
+26717463,10727641,4
+52204082,10727641,3
+55404773,10727641,3
+moyuhuansha,10727641,5
+73948612,10727641,5
+67668770,10727641,3
+78469944,10727641,4
+46289841,10727641,4
+kuruto,10727641,3
+amazingsusan,10727641,4
+48506705,10727641,-1
+76755993,10727641,4
+44555018,10727641,5
+33400757,10727641,4
+126658027,10727641,5
+wenshy,10727641,3
+burglar,10727641,3
+1633209,10727641,5
+125957151,10727641,3
+39996045,10727641,3
+66581901,10727641,3
+69785577,10727641,3
+54387469,10727641,5
+little-hot,10727641,5
+48273603,10727641,4
+JiaoYaZi,10727641,4
+shingle,10727641,3
+84334911,10727641,3
+pennate,10727641,4
+22991326,10727641,5
+68225994,10727641,3
+yangyanyi_ash,10727641,5
+visionhyr,10727641,3
+reverserve,10727641,4
+54983344,10727641,4
+80314108,10727641,4
+18031013,10727641,3
+72277431,10727641,5
+35528479,10727641,3
+2842455,10727641,3
+66804000,10727641,2
+127345355,10727641,5
+33828391,10727641,2
+114719953,10727641,4
+whatmike,10727641,3
+2033349,10727641,3
+77735645,10727641,4
+3851255,10727641,3
+71336529,10727641,4
+2706993,10727641,4
+1275109,10727641,4
+81159938,10727641,3
+32968607,10727641,4
+50876750,10727641,5
+mindechoing,10727641,3
+zsq0028347,10727641,4
+98665982,10727641,4
+2126423,10727641,4
+zhouyuanwai,10727641,-1
+summersuy,10727641,5
+46680078,10727641,4
+92726708,10727641,4
+felixqiqi,10727641,4
+41506209,10727641,4
+61419060,10727641,4
+28112076,10727641,3
+46121551,10727641,3
+49345312,10727641,4
+102906934,10727641,5
+pigeye,10727641,4
+fishlu,10727641,3
+2339752,10727641,3
+77626905,10727641,4
+133651758,10727641,3
+75538960,10727641,4
+61703830,10727641,4
+56502207,10727641,5
+3590101,10727641,4
+64012826,10727641,4
+2009298,10727641,4
+8126956,10727641,4
+4239816,10727641,5
+evilecho,10727641,4
+38911133,10727641,5
+55831492,10727641,4
+1426705,10727641,3
+69479460,10727641,5
+69378440,10727641,5
+28918042,10727641,3
+46958062,10727641,4
+nicoleinthecity,10727641,5
+feelnothing,10727641,3
+juyi214,10727641,4
+2176077,10727641,2
+65266454,10727641,3
+lvcha_,10727641,4
+34990836,10727641,3
+boredblooming,10727641,5
+73729558,10727641,3
+16820487,10727641,4
+4413666,10727641,5
+crystalnura,10727641,4
+lyreforever,10727641,4
+verababe,10727641,4
+zhaoru,10727641,5
+layne37,10727641,4
+cherrywang0118,10727641,3
+z57,10727641,3
+1498656,10727641,4
+4357598,10727641,4
+83445808,10727641,4
+80898668,10727641,4
+4918550,10727641,4
+jermen,10727641,4
+joxxc,10727641,4
+130136455,10727641,5
+21395164,10727641,4
+kakai0u,10727641,3
+73536867,10727641,4
+gallimard,10727641,2
+3413155,10727641,3
+41430865,10727641,4
+17338724,10727641,5
+acseleon,10727641,4
+5187507,10727641,4
+53061557,10727641,4
+2142797,10727641,4
+21058696,10727641,5
+xusisu,10727641,2
+4028097,10727641,4
+57775883,10727641,4
+emmaxu,10727641,4
+59229335,10727641,5
+lcisco,10727641,4
+guoguog,10727641,3
+2535721,10727641,4
+44003548,10727641,4
+kerying,10727641,5
+42796530,10727641,5
+73034014,10727641,4
+sanhao_love,10727641,4
+queenic,10727641,3
+3788179,10727641,4
+51202223,10727641,4
+131341295,10727641,5
+51223777,10727641,-1
+gawain,10727641,4
+52974792,10727641,4
+SylvanasDANG,10727641,4
+shelleymei,10727641,4
+Polo79,10727641,3
+128645743,10727641,4
+peach...,10727641,5
+3344930,10727641,5
+4311818,10727641,4
+120498509,10727641,3
+sophytao,10727641,4
+49747994,10727641,4
+zhaoyong922,10727641,3
+zhaoyong922,10727641,3
+51195238,10727641,4
+61005092,10727641,4
+little_baby,10727641,3
+hulahei,10727641,5
+22432052,10727641,4
+18747582,10727641,4
+snowpears,10727641,5
+62126364,10727641,3
+andezhu,10727641,3
+48027905,10727641,4
+wl_22,10727641,4
+53772865,10727641,5
+15028817,10727641,3
+79840078,10727641,5
+35914058,10727641,3
+3180760,10727641,4
+52512744,10727641,4
+120510985,10727641,4
+59292045,10727641,2
+AhLang,10727641,4
+56694430,10727641,4
+Banana_Z,10727641,4
+imlarisa,10727641,4
+34431376,10727641,4
+50344894,10727641,5
+mijibaby,10727641,4
+2577981,10727641,4
+3239421,10727641,5
+130599574,10727641,3
+101926210,10727641,5
+46361626,10727641,3
+3344118,10727641,4
+29562487,10727641,3
+kemoaye,10727641,3
+holly_cerise,10727641,3
+davidnate,10727641,5
+75611903,10727641,5
+54176593,10727641,5
+73692914,10727641,4
+57418562,10727641,3
+53134632,10727641,2
+xslidian,10727641,2
+39811194,10727641,3
+34315445,10727641,4
+42636733,10727641,4
+mschang,10727641,4
+75180994,10727641,3
+8902114,10727641,2
+Awkwardly,10727641,3
+sherry_zeng,10727641,4
+genlegen,10727641,5
+48942866,10727641,3
+4521703,10727641,4
+80868866,10727641,4
+70933374,10727641,4
+debussy,10727641,3
+PrinceLu,10727641,3
+69383984,10727641,5
+42276599,10727641,3
+47746018,10727641,4
+loveuleslie,10727641,4
+115467690,10727641,4
+hyy_lili,10727641,3
+45222640,10727641,4
+sp0721,10727641,3
+43271150,10727641,4
+122399571,10727641,4
+AaronCheung,10727641,4
+61058075,10727641,3
+63595580,10727641,5
+1390707,10727641,4
+qingchuanchuan,10727641,4
+124467661,10727641,4
+vanvan07,10727641,3
+krisyu,10727641,5
+90528426,10727641,5
+33827278,10727641,4
+45718170,10727641,4
+52268964,10727641,3
+83449630,10727641,4
+108625513,10727641,4
+131932247,10727641,5
+Jarashi,10727641,4
+52110233,10727641,4
+qianqianfei,10727641,5
+luhuimin,10727641,5
+ypfair,10727641,4
+marie2,10727641,3
+63925556,10727641,4
+chouchouMQ1010,10727641,3
+jibenbanana,10727641,3
+55010409,10727641,3
+35822684,10727641,4
+3183207,10727641,-1
+54358561,10727641,4
+66040371,10727641,3
+89480416,10727641,4
+59795953,10727641,4
+52628233,10727641,4
+63010133,10727641,5
+44182899,10727641,4
+35828355,10727641,3
+zcmichael,10727641,2
+49724831,10727641,4
+132526070,10727641,4
+4431281,10727641,4
+cattisky,10727641,5
+3450071,10727641,3
+54257539,10727641,-1
+1624071,10727641,4
+jojo123com,10727641,4
+45870400,10727641,4
+uplee,10727641,3
+45408474,10727641,5
+3073495,10727641,3
+dovm,10727641,5
+47605458,10727641,4
+48531007,10727641,5
+maggieleaf,10727641,4
+yizhao,10727641,4
+78819457,10727641,4
+crystal12345678,10727641,4
+55392439,10727641,3
+1711540,10727641,4
+BigBirdBooky,10727641,5
+19136693,10727641,4
+48472429,10727641,3
+jeremywcc,10727641,4
+92585307,10727641,4
+77089569,10727641,4
+zhiyutianhaozi,10727641,5
+2473165,10727641,4
+71156044,10727641,4
+too_much,10727641,3
+81903104,10727641,2
+50116314,10727641,-1
+yeye0511,10727641,4
+125773849,10727641,4
+cathy_59,10727641,5
+garfieldnotcat,10727641,4
+35047264,10727641,4
+sixsea,10727641,4
+amycc,10727641,5
+Smeagol,10727641,4
+j303,10727641,4
+heavywoo,10727641,4
+48862865,10727641,-1
+antoniagreen,10727641,3
+44685216,10727641,4
+zyf99213,10727641,5
+68372587,10727641,3
+clay,10727641,3
+50186647,10727641,4
+44531163,10727641,5
+78931639,10727641,5
+liky13,10727641,4
+51107253,10727641,4
+crystal_ruirui,10727641,4
+sunking_fish,10727641,4
+allenyip,10727641,4
+spaceli,10727641,4
+25284374,10727641,4
+57557138,10727641,4
+fengjch127,10727641,3
+116416248,10727641,4
+C7chuqi,10727641,4
+9429775,10727641,4
+aless13,10727641,4
+43390539,10727641,4
+79842106,10727641,4
+4234695,10727641,4
+68160177,10727641,4
+hbshuo,10727641,4
+59029214,10727641,4
+xiangkayi,10727641,4
+3768837,10727641,5
+skyofhaley,10727641,5
+smilewsy,10727641,4
+78609614,10727641,3
+on1ooker,10727641,3
+togyo,10727641,3
+61039882,10727641,4
+4464121,10727641,3
+68031012,10727641,2
+29662178,10727641,4
+82615337,10727641,4
+49126637,10727641,4
+52952050,10727641,3
+73331491,10727641,5
+126894330,10727641,4
+9614176,10727641,4
+17943191,10727641,3
+90812716,10727641,4
+samixuan.,10727641,3
+57456072,10727641,5
+48195937,10727641,4
+wddEileen,10727641,4
+ossianshiwo,10727641,3
+4478283,10727641,3
+46766299,10727641,4
+3569090,10727641,5
+85570492,10727641,5
+rainloveyy,10727641,4
+125671008,10727641,2
+3738135,10727641,4
+102658217,10727641,4
+qianxun_lin,10727641,4
+54776806,10727641,4
+46581516,10727641,4
+pinkelephant-mt,10727641,4
+23361704,10727641,4
+45463685,10727641,4
+63236278,10727641,4
+32360693,10727641,4
+luoxuerubing,10727641,5
+24910421,10727641,5
+45756376,10727641,4
+fancy9979,10727641,-1
+33620618,10727641,5
+68431348,10727641,5
+108137914,10727641,3
+2362910,10727641,-1
+109055681,10727641,4
+beautysheng,10727641,4
+48864357,10727641,5
+69351110,10727641,5
+42466915,10727641,3
+taorong,10727641,5
+52562845,10727641,4
+4700693,10727641,4
+libertyer,10727641,5
+maggiore,10727641,4
+43595607,10727641,4
+blunting,10727641,4
+60304820,10727641,3
+together1018,10727641,3
+wood008,10727641,3
+102140713,10727641,3
+43429533,10727641,5
+sliverfox,10727641,4
+yikedanhaung,10727641,3
+103046050,10727641,-1
+UU0707,10727641,5
+geminehoo,10727641,5
+43535885,10727641,3
+52476794,10727641,5
+56840457,10727641,5
+64347644,10727641,4
+48745932,10727641,4
+3134922,10727641,4
+Paradox_Q,10727641,4
+canvasfan,10727641,4
+66613730,10727641,4
+3468823,10727641,3
+64325413,10727641,5
+theast,10727641,2
+cosis,10727641,4
+4442734,10727641,5
+51694672,10727641,5
+52079002,10727641,3
+121663852,10727641,4
+54221036,10727641,4
+30944301,10727641,-1
+82219188,10727641,4
+113519445,10727641,4
+sjsry,10727641,3
+flcl,10727641,5
+NeverEver1987,10727641,4
+78399714,10727641,5
+40868820,10727641,3
+55330163,10727641,4
+guanchangqi217,10727641,4
+52530490,10727641,4
+jiangwei199204,10727641,4
+127426227,10727641,4
+yesewenrou,10727641,3
+ShellDing,10727641,3
+2635498,10727641,3
+70665705,10727641,4
+48179378,10727641,4
+50534285,10727641,3
+yingchao0426,10727641,4
+53004765,10727641,5
+melanie_je,10727641,4
+121314476,10727641,4
+57932306,10727641,5
+momodir,10727641,5
+125749179,10727641,5
+69658283,10727641,4
+72134977,10727641,3
+wangxu200,10727641,4
+cxp0730,10727641,4
+cellozh,10727641,3
+77272275,10727641,4
+76617024,10727641,4
+62503467,10727641,4
+61920644,10727641,4
+raymondzhang,10727641,5
+amanda.zhang,10727641,5
+froggrandpa,10727641,3
+75271278,10727641,4
+mivan,10727641,4
+52582928,10727641,3
+58131621,10727641,4
+1586971,10727641,4
+kimidesperado,10727641,4
+Lotus511,10727641,4
+3001594,10727641,3
+42861426,10727641,3
+133402651,10727641,5
+Moanna,10727641,5
+soulwander,10727641,5
+ioncx,10727641,4
+49062310,10727641,4
+pannnnnnnda,10727641,3
+dpan,10727641,4
+Articuno,10727641,5
+46137946,10727641,5
+chenmuhan1994,10727641,5
+sanchor,10727641,3
+ShuangXiaodan,10727641,4
+MUYUEYISI,10727641,3
+62011725,10727641,-1
+dianyu,10727641,4
+hokuto,10727641,4
+128233338,10727641,5
+blueprints,10727641,4
+126994808,10727641,4
+77768096,10727641,5
+78693841,10727641,5
+daffodils,10727641,4
+1739959,10727641,4
+67596323,10727641,4
+45454876,10727641,5
+51412054,10727641,4
+79647492,10727641,4
+xlfx,10727641,4
+guaishou1017,10727641,4
+1565237,10727641,3
+46982712,10727641,3
+lanlantian,10727641,4
+68588112,10727641,4
+Daisy.chang.,10727641,4
+34784070,10727641,5
+134907913,10727641,4
+LiuS-7,10727641,3
+stormsuck,10727641,4
+42421580,10727641,5
+77337192,10727641,4
+120518408,10727641,3
+3087894,10727641,3
+49819133,10727641,3
+69940340,10727641,5
+127489630,10727641,4
+airinsky,10727641,5
+47984188,10727641,5
+1558576,10727641,4
+mrsdarce,10727641,4
+sqq4290,10727641,3
+133859876,10727641,3
+54622140,10727641,-1
+spancer0309,10727641,3
+52046624,10727641,4
+cqcbtiandong,10727641,4
+echoney,10727641,5
+49426583,10727641,5
+118843796,10727641,3
+syt0924,10727641,3
+3953545,10727641,4
+navorski,10727641,3
+yoki1128,10727641,4
+lalisa0724,10727641,-1
+hxiaoyang,10727641,3
+45826774,10727641,4
+66031948,10727641,5
+jimmy_8785,10727641,4
+lisianl,10727641,4
+ninomihoko,10727641,3
+134241394,10727641,5
+133997393,10727641,3
+63174808,10727641,4
+GJ007,10727641,4
+yt1215,10727641,4
+59404822,10727641,4
+shenxueying,10727641,3
+13036313,10727641,5
+120943212,10727641,3
+80517374,10727641,4
+2392193,10727641,4
+47496531,10727641,4
+gbracelet,10727641,5
+33649081,10727641,5
+51782800,10727641,4
+1895591,10727641,4
+47798574,10727641,4
+Hazelxxxx,10727641,4
+26312947,10727641,4
+3526854,10727641,4
+126833925,10727641,3
+62217128,10727641,5
+lexiaoqi,10727641,4
+we_15,10727641,3
+z0830,10727641,-1
+boraboradream,10727641,5
+gyql_h,10727641,4
+47026915,10727641,4
+122780529,10727641,4
+71073087,10727641,3
+49021922,10727641,4
+50942013,10727641,4
+65869046,10727641,3
+102631650,10727641,3
+break5,10727641,4
+46148106,10727641,4
+4842718,10727641,4
+53241323,10727641,3
+within.april,10727641,4
+1588264,10727641,4
+sevenlucky,10727641,3
+127085106,10727641,4
+29220326,10727641,5
+24545522,10727641,5
+57230631,10727641,3
+52299764,10727641,-1
+1834292,10727641,3
+41786297,10727641,3
+34968891,10727641,4
+fuckinboy,10727641,5
+4876430,10727641,4
+michaelfwang,10727641,4
+circleontheway,10727641,3
+1794910,10727641,5
+sweetrain0229,10727641,4
+4220024,10727641,4
+52907369,10727641,4
+ReginaYu,10727641,4
+xiaochener,10727641,5
+aben,10727641,3
+niuchen0288,10727641,3
+frank1234,10727641,4
+28313985,10727641,3
+50335163,10727641,-1
+holy_ml,10727641,4
+yyxdl,10727641,4
+28530130,10727641,5
+83313626,10727641,3
+ivis1989,10727641,4
+4507417,10727641,3
+PC_Mancola,10727641,4
+59100232,10727641,5
+looma,10727641,3
+2450715,10727641,5
+56782841,10727641,3
+45578211,10727641,4
+2883655,10727641,5
+60109497,10727641,4
+autsummer,10727641,3
+1048791,10727641,3
+Pennyui,10727641,4
+twoerer,10727641,3
+114351262,10727641,4
+guiwuu,10727641,3
+19579481,10727641,3
+52841977,10727641,4
+bzlin,10727641,4
+39698078,10727641,5
+48165079,10727641,4
+47022625,10727641,4
+2679279,10727641,5
+76421121,10727641,3
+bxynf4,10727641,4
+fying,10727641,5
+lmz9386,10727641,4
+59197305,10727641,3
+j2dream,10727641,4
+60715104,10727641,5
+48180482,10727641,3
+72782260,10727641,3
+70918450,10727641,5
+53533608,10727641,4
+oll,10727641,3
+soulmissing,10727641,2
+7900264,10727641,4
+4010903,10727641,4
+76617762,10727641,5
+134896142,10727641,4
+93238901,10727641,3
+43761875,10727641,5
+134479956,10727641,4
+70378389,10727641,5
+qingdonghai,10727641,5
+4622548,10727641,4
+124555271,10727641,3
+73114101,10727641,3
+llllsy1991,10727641,3
+45666193,10727641,4
+huangxie,10727641,4
+77288841,10727641,4
+76128506,10727641,4
+ZS2011,10727641,3
+67536792,10727641,5
+36943871,10727641,4
+52792351,10727641,5
+59705163,10727641,4
+51628420,10727641,4
+keinshen,10727641,3
+134586200,10727641,3
+ethanzheng,10727641,4
+keita1,10727641,4
+hhy890809,10727641,3
+40447897,10727641,4
+treevow,10727641,1
+57572389,10727641,3
+smile_smile1988,10727641,3
+35066963,10727641,3
+somnor,10727641,5
+34155630,10727641,3
+60386467,10727641,4
+133904204,10727641,4
+59113728,10727641,5
+51258589,10727641,5
+52273132,10727641,4
+akanishi_0704,10727641,4
+fishzero,10727641,4
+65944325,10727641,4
+allforpeace,10727641,3
+lishiyangmayo,10727641,5
+134874653,10727641,4
+105270130,10727641,4
+sishangduwu,10727641,5
+BlackRainbow,10727641,4
+62335557,10727641,4
+venipasta,10727641,3
+snowchong1984,10727641,3
+58543683,10727641,3
+27068945,10727641,4
+maggie594522,10727641,5
+53368191,10727641,3
+57835208,10727641,4
+jofanie,10727641,4
+66617660,10727641,3
+cnnkidd,10727641,4
+58415543,10727641,4
+63923908,10727641,4
+julykimi,10727641,4
+1384240,10727641,5
+119341040,10727641,5
+LillianLeelll,10727641,4
+1728859,10727641,4
+127741400,10727641,3
+132186892,10727641,4
+guitarain,10727641,4
+3942998,10727641,5
+vvvvv,10727641,5
+45245030,10727641,4
+fuzhli,10727641,4
+Dasiycat,10727641,4
+lihaijing,10727641,4
+60092099,10727641,4
+6455488,10727641,5
+60123894,10727641,4
+Amanda-Z,10727641,4
+magickori,10727641,5
+glax,10727641,4
+36676686,10727641,4
+46380360,10727641,3
+103283256,10727641,4
+120531493,10727641,4
+33969609,10727641,4
+willdawn,10727641,3
+2993054,10727641,5
+Vicarol,10727641,3
+2708531,10727641,5
+76550501,10727641,3
+zxjtmac,10727641,5
+58472048,10727641,4
+69535601,10727641,4
+sis-24sec,10727641,4
+SA69,10727641,4
+46672889,10727641,4
+42036980,10727641,5
+85191711,10727641,3
+39747577,10727641,3
+57882904,10727641,4
+2338228,10727641,4
+63747435,10727641,5
+L-muyan,10727641,4
+59944601,10727641,3
+kimtarm,10727641,4
+imsharon,10727641,4
+lu7,10727641,-1
+63925991,10727641,3
+7510013,10727641,4
+59414293,10727641,5
+GracieG,10727641,4
+61238455,10727641,5
+51978662,10727641,4
+40154979,10727641,5
+rukia-ichigo,10727641,4
+Lotto59,10727641,5
+62553612,10727641,3
+4417183,10727641,3
+102662130,10727641,5
+momojasper,10727641,4
+124596897,10727641,4
+2659580,10727641,3
+79571053,10727641,4
+88024927,10727641,5
+55687047,10727641,5
+120563382,10727641,3
+29481623,10727641,4
+Cq1988,10727641,3
+41933072,10727641,5
+74723978,10727641,3
+58399217,10727641,4
+129582003,10727641,4
+bzfdu,10727641,5
+74766860,10727641,3
+44426861,10727641,4
+an-sirens,10727641,4
+73475415,10727641,3
+41805226,10727641,5
+asen_shi,10727641,4
+leftone,10727641,3
+41304325,10727641,3
+45665949,10727641,4
+62314671,10727641,4
+netkr,10727641,4
+51774232,10727641,3
+weijisheng,10727641,5
+36022376,10727641,-1
+akixinru,10727641,4
+hollyhui,10727641,4
+csc,10727641,4
+HeroineDaode,10727641,3
+91576800,10727641,4
+70435217,10727641,4
+43842293,10727641,4
+115103932,10727641,2
+115103932,10727641,2
+daisylikeu,10727641,4
+93985741,10727641,4
+juliactj,10727641,5
+60720562,10727641,5
+fanze,10727641,3
+42221402,10727641,3
+2282279,10727641,3
+63911026,10727641,-1
+Zosen,10727641,4
+kzhailideyu,10727641,4
+59658127,10727641,3
+40258007,10727641,5
+35892009,10727641,4
+XING0131,10727641,5
+47978030,10727641,4
+56823011,10727641,3
+3168552,10727641,5
+tmrai,10727641,3
+erbility,10727641,4
+58950261,10727641,4
+33572204,10727641,4
+71492907,10727641,5
+zhouxiaotong,10727641,3
+yanyang210,10727641,4
+riusmary,10727641,3
+36289402,10727641,4
+49994320,10727641,4
+62873685,10727641,5
+43156949,10727641,4
+JIANGXUE,10727641,3
+69369704,10727641,3
+3822591,10727641,4
+ccj0212,10727641,4
+dinglinsusu,10727641,3
+49094968,10727641,5
+boycester,10727641,4
+gengxiang2012,10727641,4
+liyuanli0824,10727641,4
+98165549,10727641,3
+2866973,10727641,3
+lemoon9,10727641,3
+pikabobo,10727641,4
+4687388,10727641,4
+obbo,10727641,3
+59329084,10727641,4
+84718748,10727641,4
+44651571,10727641,5
+87515196,10727641,4
+tearsslj,10727641,4
+57135077,10727641,4
+tree-on-feet,10727641,4
+49282329,10727641,4
+1615084,10727641,2
+huang.jr,10727641,4
+130506104,10727641,3
+101454370,10727641,4
+zhqi11,10727641,3
+50226054,10727641,5
+44536599,10727641,-1
+64297139,10727641,4
+dearruby,10727641,3
+79701801,10727641,4
+marshall,10727641,4
+122531288,10727641,3
+shelley8334,10727641,3
+1583404,10727641,2
+Silstar,10727641,4
+2062524,10727641,3
+57646854,10727641,3
+arriey,10727641,4
+46140866,10727641,4
+67923437,10727641,4
+51120293,10727641,4
+53045068,10727641,5
+xiaofenzi,10727641,4
+60818564,10727641,4
+2651943,10727641,4
+121930638,10727641,3
+65441937,10727641,3
+71867547,10727641,3
+sarahyangs,10727641,4
+honey-catherine,10727641,3
+Obtson,10727641,3
+73993174,10727641,4
+Lizyjs,10727641,4
+meixinmeifei,10727641,4
+louis38,10727641,4
+78667857,10727641,5
+ckino,10727641,4
+70595719,10727641,3
+47452659,10727641,4
+sissistar,10727641,3
+9064350,10727641,4
+87642971,10727641,4
+52304130,10727641,5
+yourmint,10727641,4
+basaya,10727641,4
+77619786,10727641,4
+17949602,10727641,3
+126000236,10727641,4
+91091021,10727641,4
+calfqingqing,10727641,4
+47052463,10727641,3
+Ichbinnichttot,10727641,5
+thwack,10727641,4
+TTEminem,10727641,3
+30714456,10727641,4
+62831329,10727641,4
+60042358,10727641,4
+127292796,10727641,3
+menkoumahu,10727641,4
+57209076,10727641,4
+51126215,10727641,-1
+gerald_m,10727641,5
+63963645,10727641,4
+56303626,10727641,4
+wty_0716,10727641,4
+Ruby-0917,10727641,4
+2611034,10727641,-1
+2611034,10727641,-1
+43204352,10727641,5
+sure1101,10727641,4
+Love-CJane,10727641,3
+67730949,10727641,5
+yetel,10727641,4
+53255772,10727641,3
+parasol00100,10727641,4
+57475766,10727641,4
+4582170,10727641,4
+65021622,10727641,4
+68031244,10727641,3
+ning77,10727641,4
+4834635,10727641,4
+1741127,10727641,4
+nikkichou,10727641,4
+oneofus,10727641,3
+soleilratemma,10727641,3
+singlebuddy,10727641,3
+17435111,10727641,4
+meitianniang,10727641,3
+1366592,10727641,3
+64428558,10727641,4
+lankiki7,10727641,3
+optimisery,10727641,3
+wcx5810,10727641,-1
+51125398,10727641,4
+pure_115,10727641,4
+25977616,10727641,4
+zhangmz,10727641,2
+3644430,10727641,4
+124832004,10727641,3
+yuan425,10727641,5
+130312890,10727641,4
+sweet2wingsky,10727641,3
+52201060,10727641,5
+3826169,10727641,4
+33525558,10727641,4
+68472138,10727641,4
+blueshadow30,10727641,4
+38785285,10727641,4
+varshaJ,10727641,3
+43393053,10727641,3
+kristenxin,10727641,4
+yaozixi,10727641,4
+133398715,10727641,4
+karita,10727641,5
+58345437,10727641,3
+bestkinki,10727641,5
+77609153,10727641,3
+xiaozizi13,10727641,3
+66798831,10727641,5
+49968769,10727641,3
+110953624,10727641,4
+52282089,10727641,4
+48018796,10727641,3
+50870712,10727641,3
+2231624,10727641,3
+37803671,10727641,3
+40125342,10727641,3
+53329015,10727641,3
+amiaschen,10727641,4
+timeispassing,10727641,5
+44034563,10727641,4
+49872247,10727641,4
+zx8713,10727641,3
+somedayin1991,10727641,4
+124257806,10727641,5
+proton20,10727641,4
+53222131,10727641,4
+59213940,10727641,3
+130851961,10727641,5
+yaoyoyo,10727641,4
+87838056,10727641,4
+49145683,10727641,5
+58096445,10727641,2
+Jerry-feng,10727641,4
+albee0613,10727641,2
+47047240,10727641,4
+47674530,10727641,5
+47674530,10727641,5
+120980814,10727641,4
+48048906,10727641,5
+71133348,10727641,5
+62309781,10727641,5
+cherryhj,10727641,3
+55716934,10727641,4
+jimonline,10727641,3
+2601089,10727641,4
+1443980,10727641,4
+66136937,10727641,5
+magic90ni,10727641,3
+killy_wys,10727641,4
+cheeradele,10727641,4
+3566413,10727641,3
+orgel,10727641,4
+62726844,10727641,3
+48877341,10727641,4
+seamouse,10727641,4
+Eeamon,10727641,4
+hubin,10727641,5
+6537233,10727641,5
+mikamimimika,10727641,3
+originhuman,10727641,4
+1884591,10727641,5
+52947390,10727641,-1
+milanjia,10727641,4
+36601365,10727641,3
+57798216,10727641,5
+127771292,10727641,3
+zhenziren,10727641,3
+55769530,10727641,5
+66816646,10727641,4
+77782385,10727641,4
+Juno14,10727641,5
+4711240,10727641,4
+59426800,10727641,3
+57783651,10727641,3
+feifeiyouxia,10727641,4
+kakasissi,10727641,4
+nshen121,10727641,3
+88292094,10727641,3
+68290528,10727641,4
+27779765,10727641,4
+2634815,10727641,4
+50081516,10727641,4
+freakyoyo,10727641,5
+76625428,10727641,5
+andrpirl,10727641,4
+55605353,10727641,4
+107982589,10727641,5
+83659624,10727641,3
+57967875,10727641,5
+44823745,10727641,4
+liyue8848,10727641,5
+21331611,10727641,-1
+49428588,10727641,4
+wsgstrike,10727641,4
+45397702,10727641,4
+131055900,10727641,3
+49384394,10727641,4
+2617396,10727641,4
+48593436,10727641,3
+47609294,10727641,4
+51852760,10727641,5
+84755665,10727641,2
+134863795,10727641,4
+95427243,10727641,4
+41968915,10727641,4
+sweetcold,10727641,5
+yoyoloveyou,10727641,4
+39138192,10727641,5
+Chneyu8504,10727641,3
+demifun,10727641,5
+69096727,10727641,4
+73849647,10727641,4
+54896584,10727641,4
+34707868,10727641,3
+Lucifer4219,10727641,3
+issyoukenmei,10727641,4
+issyoukenmei,10727641,4
+120466803,10727641,4
+30811180,10727641,3
+chenbing,10727641,4
+conyichiya,10727641,4
+tuviel,10727641,2
+59586263,10727641,4
+36719582,10727641,3
+61098125,10727641,5
+3258823,10727641,3
+Lucia_xiao,10727641,4
+63045020,10727641,3
+43948244,10727641,5
+42490816,10727641,3
+JennyDingding,10727641,4
+chenjihao,10727641,4
+4097878,10727641,3
+87599334,10727641,4
+59867809,10727641,4
+1965573,10727641,4
+48494874,10727641,4
+lealex,10727641,2
+49798911,10727641,5
+128631374,10727641,3
+libinghe,10727641,4
+69393592,10727641,4
+3574648,10727641,4
+2060825,10727641,3
+120841522,10727641,3
+84975087,10727641,4
+may_you_never,10727641,5
+1565707,10727641,-1
+1767863,10727641,2
+shenshenet,10727641,3
+zinnialily,10727641,4
+68779054,10727641,4
+4243064,10727641,4
+ppandpp,10727641,4
+84655152,10727641,4
+akkabby,10727641,4
+65813423,10727641,5
+55798806,10727641,4
+10218271,10727641,4
+123393020,10727641,3
+yanleung1102,10727641,3
+vickkid,10727641,5
+sekijiang,10727641,4
+4349474,10727641,3
+1482288,10727641,4
+73667301,10727641,4
+ZnCore,10727641,4
+48035298,10727641,3
+69066592,10727641,4
+fourteendepp,10727641,3
+61469153,10727641,5
+113547242,10727641,5
+42669381,10727641,5
+chandler821,10727641,3
+130100257,10727641,3
+74890087,10727641,5
+50971658,10727641,5
+64254102,10727641,4
+simuvchen,10727641,5
+44564068,10727641,4
+52750268,10727641,5
+62414956,10727641,4
+60741095,10727641,4
+70081048,10727641,4
+65808284,10727641,5
+tingky,10727641,2
+12538971,10727641,4
+64345409,10727641,4
+55628165,10727641,4
+33149603,10727641,4
+83994671,10727641,4
+dotcon,10727641,3
+52565559,10727641,5
+coconutZii,10727641,4
+cambridgeblue,10727641,4
+61504033,10727641,4
+hilbertcn,10727641,-1
+66460349,10727641,3
+49882550,10727641,3
+labrat,10727641,-1
+84433988,10727641,5
+43891940,10727641,4
+31776574,10727641,-1
+72201310,10727641,4
+peter-pen,10727641,4
+melatielian,10727641,3
+caseytss,10727641,5
+constantmartin,10727641,4
+15181022,10727641,5
+49134732,10727641,4
+Sherry-OCDer,10727641,5
+81654169,10727641,5
+75788452,10727641,3
+48411049,10727641,4
+2275556,10727641,4
+3549448,10727641,3
+3549448,10727641,3
+zhaoyueru1996,10727641,5
+64822308,10727641,4
+96290717,10727641,3
+64069487,10727641,4
+mafiafansv,10727641,-1
+4155347,10727641,4
+49411986,10727641,4
+25514105,10727641,4
+summerlater,10727641,4
+109166654,10727641,4
+2181401,10727641,-1
+a1234567,10727641,3
+51448618,10727641,5
+50062390,10727641,4
+missing_medusa,10727641,5
+1796714,10727641,3
+134854783,10727641,3
+Maqqieyaoyao,10727641,4
+49405022,10727641,3
+61724448,10727641,5
+3059021,10727641,4
+Seraph.D,10727641,3
+grimy,10727641,4
+44412254,10727641,4
+onlyloll,10727641,4
+61633382,10727641,3
+daisyinblossom,10727641,4
+2200873,10727641,4
+55507630,10727641,3
+34789541,10727641,4
+yampak,10727641,4
+rumba,10727641,3
+10992633,10727641,4
+71082385,10727641,4
+bestavil,10727641,3
+3432048,10727641,4
+rebeccalulu,10727641,4
+doubandayima,10727641,3
+2183610,10727641,3
+yan599083337,10727641,4
+69127375,10727641,3
+duanxiu,10727641,3
+lisijia,10727641,4
+36740289,10727641,5
+cn50344,10727641,4
+79770015,10727641,3
+3705906,10727641,4
+28790311,10727641,5
+59206907,10727641,4
+62900892,10727641,3
+49466976,10727641,4
+go2,10727641,2
+54543639,10727641,4
+lolita822,10727641,4
+82759882,10727641,4
+starry_16,10727641,4
+mtz,10727641,2
+wawanghuan,10727641,4
+47802404,10727641,4
+121629069,10727641,3
+celestetang,10727641,3
+K_Kaito,10727641,3
+retepeter,10727641,4
+4704105,10727641,4
+49867377,10727641,4
+38498557,10727641,3
+87768848,10727641,3
+55019164,10727641,4
+hmhbaby,10727641,4
+1167276,10727641,3
+stier,10727641,4
+2020855,10727641,4
+wtsy,10727641,4
+3266143,10727641,4
+zyq1029q12,10727641,4
+67572632,10727641,3
+lemonoo,10727641,5
+59137908,10727641,2
+Lf1387,10727641,3
+2903172,10727641,4
+128061195,10727641,3
+claider,10727641,5
+64700633,10727641,3
+70574692,10727641,4
+67878319,10727641,4
+1556266,10727641,4
+57862943,10727641,4
+3159688,10727641,4
+36288413,10727641,4
+74551006,10727641,4
+37460852,10727641,4
+53961104,10727641,4
+49473461,10727641,4
+100279661,10727641,3
+3966093,10727641,3
+2019156,10727641,4
+55737467,10727641,5
+78251252,10727641,4
+Ellenlium01,10727641,4
+Bollin,10727641,4
+116037812,10727641,4
+BruceBack,10727641,3
+look,10727641,3
+81325605,10727641,4
+46892616,10727641,3
+69430764,10727641,5
+35877038,10727641,4
+Strawberry-U,10727641,4
+123461714,10727641,4
+3160219,10727641,4
+50331162,10727641,3
+83455232,10727641,4
+71543959,10727641,4
+14428600,10727641,4
+llbd0621,10727641,5
+ying823624,10727641,4
+34156068,10727641,5
+viking7117,10727641,4
+47310524,10727641,4
+33921766,10727641,4
+36641921,10727641,4
+44556444,10727641,5
+a-zhu,10727641,3
+anyuancat,10727641,-1
+maeho,10727641,4
+45073590,10727641,4
+67865489,10727641,5
+74389768,10727641,4
+59105676,10727641,3
+63837890,10727641,5
+120069048,10727641,4
+imai,10727641,4
+66423478,10727641,4
+RaphaelDeng,10727641,-1
+haochimaomao,10727641,4
+60352370,10727641,4
+sailorcooper,10727641,3
+49550156,10727641,4
+50814286,10727641,4
+lauriexue,10727641,5
+nicole1986,10727641,4
+79317259,10727641,4
+xj2006062,10727641,3
+60180314,10727641,-1
+miyamengsz,10727641,4
+marilyncooper,10727641,4
+50242818,10727641,4
+49680774,10727641,3
+52322894,10727641,5
+liu1231,10727641,4
+aquilokyrie,10727641,3
+mayuki,10727641,4
+54239245,10727641,5
+ccaarrrroott,10727641,4
+2283860,10727641,4
+61408402,10727641,3
+38595603,10727641,5
+50875593,10727641,4
+122573291,10727641,5
+huangpanger,10727641,5
+98643202,10727641,-1
+huangzhn,10727641,4
+3496526,10727641,4
+121340954,10727641,5
+oraow,10727641,4
+51481264,10727641,-1
+2705756,10727641,5
+fairydiane,10727641,4
+51687822,10727641,4
+46640524,10727641,4
+38979539,10727641,4
+hisass,10727641,3
+Loreley333,10727641,4
+morgankuku,10727641,4
+43832986,10727641,3
+62781351,10727641,5
+87971449,10727641,3
+xusara,10727641,3
+hi-sunshin,10727641,5
+xusara,10727641,3
+hi-sunshin,10727641,5
+36554662,10727641,4
+66115129,10727641,5
+126865052,10727641,5
+amyslover,10727641,4
+132690366,10727641,4
+crvigne,10727641,4
+61312900,10727641,4
+35367949,10727641,3
+53027731,10727641,3
+kehr,10727641,4
+1227418,10727641,3
+61033806,10727641,4
+91230765,10727641,4
+84086649,10727641,4
+54048072,10727641,3
+rinkacheng,10727641,3
+91582621,10727641,3
+62056493,10727641,3
+cynb,10727641,4
+AudelRom,10727641,-1
+65616619,10727641,-1
+orangezombie,10727641,5
+65046407,10727641,5
+star-b612,10727641,4
+yuami,10727641,5
+104823204,10727641,3
+a495433977,10727641,5
+53278966,10727641,5
+119364125,10727641,3
+119226922,10727641,3
+133141228,10727641,4
+baiguopi,10727641,4
+2226886,10727641,4
+1536142,10727641,4
+67895825,10727641,4
+59363812,10727641,4
+70637195,10727641,5
+57673530,10727641,4
+am-gemini,10727641,4
+2973390,10727641,4
+62728845,10727641,5
+51841040,10727641,5
+tongyc8844,10727641,4
+67561107,10727641,3
+44367163,10727641,2
+2677448,10727641,5
+AsleepOrDead,10727641,4
+xcjustin,10727641,3
+14406549,10727641,4
+65526333,10727641,5
+3163781,10727641,4
+58797277,10727641,4
+43966741,10727641,4
+49124802,10727641,4
+guillaumezhu,10727641,5
+49134204,10727641,5
+59741091,10727641,4
+114467456,10727641,4
+ishra,10727641,3
+3011986,10727641,4
+yinmouren,10727641,4
+tletaotaot,10727641,4
+67953627,10727641,5
+55455251,10727641,4
+summer712,10727641,5
+63479785,10727641,4
+53140684,10727641,3
+54164106,10727641,3
+38866851,10727641,5
+86460916,10727641,4
+down_0,10727641,4
+Leslie_ontheway,10727641,4
+1585143,10727641,3
+Kumiko_Tan,10727641,5
+REALEYE,10727641,4
+babycabbage317,10727641,3
+lvben,10727641,3
+3352134,10727641,4
+79210098,10727641,4
+3874583,10727641,4
+60374653,10727641,3
+yuminbeizhanyon,10727641,2
+4657028,10727641,4
+tonychou,10727641,4
+Unknown_One,10727641,5
+45982097,10727641,5
+58231376,10727641,4
+reneesnow,10727641,5
+130819255,10727641,4
+49145848,10727641,4
+doctorxiong,10727641,5
+dilys,10727641,5
+49316177,10727641,3
+bmwwxw,10727641,4
+134630183,10727641,3
+48819084,10727641,3
+47024160,10727641,4
+haocai,10727641,5
+chuan111,10727641,4
+1891993,10727641,4
+3745695,10727641,4
+4158579,10727641,4
+juxi,10727641,4
+2994065,10727641,4
+jy89110,10727641,3
+49205354,10727641,4
+2951993,10727641,5
+64682658,10727641,3
+Tina.qian,10727641,4
+LancySiu,10727641,3
+50371058,10727641,4
+ihee1995,10727641,5
+62369006,10727641,4
+54588486,10727641,3
+3613742,10727641,3
+nana_007,10727641,3
+tflib,10727641,5
+3483358,10727641,4
+41780535,10727641,-1
+kidddaisy,10727641,4
+1371141,10727641,4
+silencehuang,10727641,4
+2984167,10727641,3
+134545730,10727641,4
+renmeng,10727641,3
+58752983,10727641,5
+4348536,10727641,4
+49585596,10727641,3
+47737974,10727641,5
+92011041,10727641,4
+liuliang85,10727641,4
+neverwashair,10727641,5
+imGracie,10727641,4
+58438773,10727641,4
+1240620,10727641,4
+Not.W.Sad,10727641,4
+2600115,10727641,4
+kim5257,10727641,5
+kim5257,10727641,5
+66273636,10727641,4
+45229731,10727641,3
+53482752,10727641,4
+46729768,10727641,3
+liebejenny,10727641,4
+41649419,10727641,4
+59495705,10727641,3
+70451060,10727641,5
+colorwind,10727641,3
+52740644,10727641,4
+46579498,10727641,4
+45030783,10727641,4
+49135452,10727641,4
+Sohai,10727641,4
+dearaprilfool,10727641,5
+50490367,10727641,4
+49668851,10727641,5
+mua244,10727641,4
+chl199093,10727641,4
+yuziduo,10727641,4
+61589037,10727641,4
+70873982,10727641,5
+xiaoyutoufengla,10727641,5
+49201867,10727641,4
+49948273,10727641,4
+69753373,10727641,5
+44727956,10727641,5
+59386777,10727641,5
+132099750,10727641,4
+62578070,10727641,5
+132799762,10727641,4
+50139701,10727641,4
+oolongtea_lsy,10727641,5
+Cat_at,10727641,3
+44678301,10727641,3
+zhuzx,10727641,4
+cibeles3715,10727641,3
+mione,10727641,4
+72067182,10727641,4
+wanwanwan,10727641,5
+124058067,10727641,4
+MOONDRIVE,10727641,5
+junoqi,10727641,3
+52514383,10727641,4
+67854963,10727641,3
+dengxian123,10727641,4
+chenyushu,10727641,4
+55374511,10727641,4
+kiss_lavender,10727641,5
+1478763,10727641,4
+54506898,10727641,3
+97646321,10727641,4
+134662241,10727641,5
+59342011,10727641,4
+47299092,10727641,3
+youandmekizuna,10727641,5
+81519024,10727641,4
+elmsley,10727641,3
+carriewxy,10727641,4
+catsSchrodinge,10727641,5
+lanchong03,10727641,4
+40743178,10727641,-1
+4012838,10727641,3
+land1314,10727641,3
+55970012,10727641,3
+youyiwanan,10727641,5
+3397806,10727641,4
+canxue911,10727641,2
+qurtime,10727641,3
+64497362,10727641,4
+48368530,10727641,4
+snowplum,10727641,4
+3618983,10727641,5
+127129249,10727641,4
+51287977,10727641,4
+55887105,10727641,4
+44201606,10727641,4
+xxxaftertaste,10727641,3
+1509853,10727641,5
+4890522,10727641,4
+48184719,10727641,4
+rainfromstar,10727641,4
+Rotta,10727641,2
+120852248,10727641,5
+68014143,10727641,4
+132566833,10727641,4
+vivi-van,10727641,4
+3974458,10727641,3
+vianann,10727641,4
+50695368,10727641,5
+Vicky_Jiang,10727641,3
+45539371,10727641,4
+4719104,10727641,4
+bigsu,10727641,4
+49220314,10727641,4
+56357426,10727641,5
+48936742,10727641,3
+summerchocolate,10727641,3
+51928009,10727641,4
+81848282,10727641,5
+52962015,10727641,4
+tanyue,10727641,3
+47175598,10727641,5
+trueboy,10727641,4
+4373310,10727641,3
+45055967,10727641,5
+1302842,10727641,2
+54703835,10727641,5
+36138367,10727641,4
+27922885,10727641,4
+babys-breath,10727641,2
+micao-onlyhui,10727641,4
+maxiangge,10727641,3
+58670685,10727641,4
+132130312,10727641,3
+QISHENG,10727641,4
+69565888,10727641,3
+130309969,10727641,4
+44400357,10727641,4
+godsun,10727641,4
+arenagreen,10727641,4
+52244645,10727641,5
+73781165,10727641,4
+gekisoul,10727641,5
+puppy33,10727641,4
+sui_1130,10727641,4
+iamaprilm,10727641,4
+61657305,10727641,4
+52369066,10727641,3
+qiantianxun,10727641,4
+48119983,10727641,5
+zwq2u,10727641,4
+2240680,10727641,4
+3310203,10727641,5
+90462809,10727641,4
+33770815,10727641,5
+45355870,10727641,3
+haruka87,10727641,5
+56451790,10727641,5
+56451790,10727641,5
+Aviva.mc,10727641,4
+ivyfire,10727641,4
+43297511,10727641,4
+41070205,10727641,5
+freddie,10727641,4
+yezhan,10727641,3
+unclepenguin,10727641,3
+33886622,10727641,4
+Conniejia,10727641,4
+dxdbygtt,10727641,3
+130111969,10727641,4
+46609795,10727641,5
+41583177,10727641,4
+48533366,10727641,4
+cccpusahonor,10727641,3
+123818384,10727641,5
+87730532,10727641,4
+2625768,10727641,4
+3027017,10727641,4
+2697152,10727641,3
+54806083,10727641,4
+56164157,10727641,4
+treesun173,10727641,3
+111711289,10727641,3
+kilometres85,10727641,5
+58064521,10727641,4
+57583180,10727641,4
+71416031,10727641,4
+ween339,10727641,4
+50116920,10727641,-1
+41260318,10727641,3
+65458998,10727641,4
+131013584,10727641,4
+52446058,10727641,5
+47698655,10727641,3
+4236071,10727641,4
+15088576,10727641,3
+zuoxiaoan45,10727641,4
+2324228,10727641,4
+bolijiao,10727641,3
+40049810,10727641,3
+76951536,10727641,4
+3793771,10727641,5
+1221938,10727641,4
+121947747,10727641,4
+48683953,10727641,5
+50219833,10727641,3
+122028540,10727641,4
+121334635,10727641,4
+swanix,10727641,4
+41431118,10727641,4
+51617797,10727641,3
+taohuawuzhu,10727641,4
+62665352,10727641,4
+45038508,10727641,4
+Yolandaaa_,10727641,4
+Ivy_bramble,10727641,3
+2393716,10727641,4
+Sunnie-Shining,10727641,5
+60791510,10727641,3
+3621260,10727641,4
+HeyMok,10727641,3
+114358187,10727641,5
+133241079,10727641,4
+tuoxianzi7788,10727641,4
+119356731,10727641,3
+cobbcheng,10727641,5
+76099210,10727641,3
+62407563,10727641,4
+sunlei1029,10727641,5
+57553454,10727641,4
+vivi112,10727641,3
+131764578,10727641,4
+65826312,10727641,3
+oranje_ice,10727641,4
+fuxt,10727641,4
+2304686,10727641,5
+57729353,10727641,4
+43704429,10727641,5
+49705526,10727641,3
+55550016,10727641,4
+42735872,10727641,3
+92442460,10727641,5
+ZZH1264473877,10727641,3
+49891918,10727641,4
+vagabonder912,10727641,4
+2440348,10727641,3
+40074179,10727641,3
+119930629,10727641,4
+73032214,10727641,4
+40742605,10727641,3
+48190248,10727641,4
+birdieeos,10727641,4
+102598019,10727641,4
+76868556,10727641,3
+luics,10727641,4
+61551903,10727641,5
+52745181,10727641,4
+131587002,10727641,4
+sara39aiba,10727641,4
+127027482,10727641,4
+fengjiansun,10727641,3
+53749033,10727641,3
+35150951,10727641,5
+48500918,10727641,4
+130940806,10727641,4
+ryotta,10727641,-1
+4668511,10727641,3
+abel-tree,10727641,5
+chenxinhuang,10727641,5
+40237768,10727641,3
+45725575,10727641,5
+52639138,10727641,3
+chenmoon,10727641,4
+66001925,10727641,3
+janetblcu,10727641,4
+130648493,10727641,4
+carambo,10727641,4
+babyshiniu,10727641,5
+misstiming,10727641,4
+45543551,10727641,5
+133001212,10727641,5
+133386536,10727641,4
+Metalk,10727641,4
+3851929,10727641,4
+41534595,10727641,4
+95293056,10727641,3
+arrowkey,10727641,4
+37212118,10727641,5
+even,10727641,4
+zhaohuli,10727641,3
+56957975,10727641,4
+112941907,10727641,4
+120547538,10727641,3
+sophie125,10727641,4
+nellylin,10727641,4
+3859587,10727641,3
+50526806,10727641,4
+63205591,10727641,4
+2222172,10727641,4
+72663701,10727641,4
+everytimedouble,10727641,5
+131508476,10727641,4
+4573227,10727641,4
+2995257,10727641,3
+54030694,10727641,4
+69038993,10727641,5
+73838544,10727641,4
+tresor,10727641,4
+64995298,10727641,5
+3023464,10727641,5
+2621323,10727641,3
+63306444,10727641,4
+57598902,10727641,4
+61785692,10727641,3
+3161055,10727641,3
+88099677,10727641,4
+63030178,10727641,4
+123374707,10727641,4
+125031755,10727641,4
+67581850,10727641,3
+nobita1217,10727641,5
+soso8842,10727641,2
+119485674,10727641,3
+fish,10727641,4
+zeoh,10727641,4
+46847393,10727641,5
+sirk,10727641,4
+XixiQ,10727641,4
+67454532,10727641,5
+51836301,10727641,4
+44013836,10727641,5
+qinchongayo,10727641,4
+mizimoxi,10727641,-1
+1179798,10727641,4
+75602395,10727641,4
+2888284,10727641,3
+74168799,10727641,3
+mangomaluko,10727641,4
+Lonelydark,10727641,3
+70108831,10727641,4
+nian-an,10727641,4
+133372996,10727641,5
+132461589,10727641,5
+52023052,10727641,3
+echo-shuang,10727641,5
+54041222,10727641,3
+101225471,10727641,4
+eugne,10727641,4
+rabbit_king,10727641,4
+43071963,10727641,4
+loneblog,10727641,4
+iloveEminem,10727641,4
+85958266,10727641,5
+1203148,10727641,4
+MISSMOUMOU,10727641,3
+romaweb,10727641,5
+2202605,10727641,4
+41437311,10727641,4
+xiao8888,10727641,4
+53526243,10727641,3
+chrisloveleslie,10727641,3
+66773730,10727641,4
+johnnybai,10727641,4
+68531895,10727641,4
+2227016,10727641,4
+TINA703,10727641,4
+jsssl,10727641,5
+1581275,10727641,5
+51795397,10727641,4
+38407388,10727641,4
+66524788,10727641,-1
+ideyes,10727641,4
+38634697,10727641,3
+30580516,10727641,4
+62191711,10727641,4
+10724871,10727641,5
+83550216,10727641,4
+127066549,10727641,5
+liuxiyue,10727641,4
+coco0609,10727641,4
+52932994,10727641,4
+51606142,10727641,3
+w_weixing,10727641,3
+48898327,10727641,5
+3632876,10727641,4
+56682982,10727641,3
+77068892,10727641,4
+43683587,10727641,5
+132065702,10727641,4
+64273735,10727641,3
+holly_xu,10727641,4
+53669377,10727641,3
+68085288,10727641,4
+binglanxier,10727641,4
+56194836,10727641,4
+Tangss,10727641,-1
+64181731,10727641,4
+wanlili520,10727641,5
+momoironosora,10727641,-1
+26018442,10727641,5
+60630554,10727641,4
+36963391,10727641,-1
+53024139,10727641,4
+thegrudge,10727641,4
+2221536,10727641,3
+57193331,10727641,5
+4571655,10727641,3
+47381919,10727641,3
+68909177,10727641,4
+53317466,10727641,5
+zebramomo,10727641,4
+3505428,10727641,3
+3557042,10727641,3
+65645276,10727641,4
+kfc2005,10727641,3
+55625887,10727641,4
+81478198,10727641,3
+cherrybylove,10727641,4
+2794369,10727641,3
+121909765,10727641,4
+twinslt,10727641,3
+imdiaosi,10727641,4
+131259091,10727641,5
+2327858,10727641,3
+69854006,10727641,5
+14597192,10727641,3
+marmotgo,10727641,4
+asoma,10727641,4
+79475105,10727641,4
+sunnielittle18,10727641,5
+zephyrliu,10727641,4
+129838963,10727641,5
+miaspace,10727641,4
+zebralve,10727641,3
+48396212,10727641,3
+75362296,10727641,4
+wildno,10727641,4
+51901368,10727641,4
+59379666,10727641,5
+angeswong,10727641,5
+BackToNight,10727641,5
+43210840,10727641,4
+69028094,10727641,3
+44780498,10727641,4
+aprisliver,10727641,1
+moquin,10727641,3
+2528826,10727641,3
+Tweff,10727641,3
+45388031,10727641,4
+29905943,10727641,3
+41843142,10727641,3
+3419883,10727641,3
+54237570,10727641,5
+73562210,10727641,4
+show06254444,10727641,3
+qingruoli,10727641,5
+64023928,10727641,4
+50880876,10727641,4
+acbc115,10727641,4
+CloudInFire,10727641,2
+127996638,10727641,3
+49443789,10727641,3
+1171407,10727641,3
+48383608,10727641,2
+jiajia1130,10727641,4
+90128896,10727641,5
+39152562,10727641,5
+51481503,10727641,4
+43342048,10727641,5
+fkimi,10727641,4
+68250216,10727641,4
+79240212,10727641,4
+64875949,10727641,3
+132344629,10727641,5
+66636487,10727641,4
+28219717,10727641,4
+114274927,10727641,3
+64934604,10727641,4
+38514261,10727641,4
+63977456,10727641,4
+29839643,10727641,5
+alisonend,10727641,4
+51855182,10727641,5
+azure0130,10727641,3
+59893880,10727641,4
+134180658,10727641,4
+whoselee,10727641,5
+97185474,10727641,4
+58314949,10727641,3
+maple9204,10727641,5
+77621226,10727641,4
+1251804,10727641,4
+2842780,10727641,4
+flowerfrommars,10727641,4
+58043215,10727641,4
+thisworld2night,10727641,3
+6239142,10727641,4
+shuimudeyu1990,10727641,3
+millren,10727641,-1
+zhenhao,10727641,3
+92337255,10727641,5
+zhhsbkl,10727641,4
+73469326,10727641,4
+2489180,10727641,5
+qingmeng2015,10727641,3
+skay,10727641,4
+moon123,10727641,4
+awesomz,10727641,4
+37448218,10727641,3
+47047988,10727641,5
+1030614,10727641,4
+75015059,10727641,-1
+doubangrace,10727641,4
+60406508,10727641,3
+miss90,10727641,4
+46067722,10727641,2
+9172847,10727641,4
+4269560,10727641,2
+3815024,10727641,-1
+tohoshinki1002,10727641,5
+2361739,10727641,4
+lululalalulu,10727641,3
+4301952,10727641,3
+physicalpanda,10727641,4
+122499072,10727641,4
+annieshuo,10727641,5
+44396338,10727641,4
+1971155,10727641,3
+79269644,10727641,5
+49873483,10727641,5
+Uroboros,10727641,4
+50727167,10727641,-1
+70444437,10727641,5
+zhuzi_33,10727641,5
+fanqiewanzi,10727641,3
+43649933,10727641,3
+68324587,10727641,5
+39874749,10727641,5
+4852496,10727641,3
+sonicxs,10727641,3
+58090967,10727641,4
+131717591,10727641,4
+nangongmocheng,10727641,4
+52117227,10727641,4
+48859035,10727641,4
+54793495,10727641,4
+maoamao,10727641,4
+24812939,10727641,4
+43942858,10727641,5
+4684932,10727641,3
+leafxiaoying,10727641,5
+126513771,10727641,3
+130988431,10727641,3
+zhang117,10727641,3
+chongtong,10727641,3
+qiujianxiang,10727641,4
+48795907,10727641,5
+Dutchgirl,10727641,-1
+41036540,10727641,4
+3142149,10727641,4
+huoniu,10727641,4
+87769477,10727641,4
+79420252,10727641,5
+36821754,10727641,3
+cdeworld,10727641,4
+Phoebe.Lee,10727641,4
+2213454,10727641,3
+66089131,10727641,4
+72060320,10727641,5
+sucila,10727641,3
+RingS915,10727641,3
+53177130,10727641,3
+seeingever,10727641,5
+49708830,10727641,4
+w1130,10727641,4
+2272740,10727641,5
+43547642,10727641,3
+xiao_hui,10727641,4
+60593481,10727641,4
+57815451,10727641,4
+zishi121,10727641,4
+27223833,10727641,4
+3220986,10727641,3
+78276267,10727641,3
+42603198,10727641,-1
+53512949,10727641,3
+134807455,10727641,4
+2069295,10727641,4
+dd_sy918,10727641,5
+1773768,10727641,4
+1311897,10727641,4
+3233958,10727641,4
+fanbucloud,10727641,4
+bulanke,10727641,4
+palmasz,10727641,4
+wyjlwyy,10727641,4
+80943037,10727641,4
+49849512,10727641,3
+67819507,10727641,4
+34794492,10727641,4
+koutiao,10727641,4
+catheringli,10727641,5
+Hero14,10727641,4
+66802086,10727641,5
+102236966,10727641,4
+1077570,10727641,4
+dreamsun,10727641,3
+phoebe0225,10727641,4
+lpoihy,10727641,3
+133708111,10727641,4
+1011787,10727641,3
+claudiaqq,10727641,3
+dukeyunz,10727641,4
+53820803,10727641,4
+cueb,10727641,4
+1390047,10727641,-1
+1346719,10727641,3
+14525816,10727641,4
+42971292,10727641,5
+efscpig,10727641,4
+mai_k,10727641,4
+50817761,10727641,4
+62500466,10727641,4
+mobao0731,10727641,5
+lovebkd,10727641,-1
+58234284,10727641,4
+oppih,10727641,4
+61421978,10727641,4
+15941361,10727641,5
+59468829,10727641,1
+124500350,10727641,4
+24068635,10727641,4
+Viannie_CXY,10727641,4
+cyan-syy,10727641,-1
+41290543,10727641,4
+therecomy,10727641,4
+torrywong,10727641,4
+34063715,10727641,4
+greybear,10727641,4
+69269083,10727641,5
+timeknife,10727641,4
+55754517,10727641,3
+NicoleDR,10727641,4
+68647916,10727641,5
+foofights,10727641,2
+fxl0977,10727641,3
+haruka,10727641,4
+SEY421,10727641,4
+yangboy,10727641,5
+61779592,10727641,4
+lulyly,10727641,3
+64017906,10727641,5
+40811083,10727641,4
+46865175,10727641,5
+charliye,10727641,4
+chairbandeng,10727641,4
+84425856,10727641,5
+79503433,10727641,5
+48798073,10727641,4
+2116998,10727641,5
+kbs---ak,10727641,4
+nickdu,10727641,3
+45501861,10727641,4
+34710237,10727641,4
+48322771,10727641,4
+97330876,10727641,3
+57193722,10727641,4
+lluolluo,10727641,5
+78724440,10727641,3
+wendyhsu,10727641,3
+121772413,10727641,2
+Day111,10727641,4
+hikarulea,10727641,4
+rmemories,10727641,3
+1943869,10727641,4
+88097347,10727641,4
+101450082,10727641,4
+29988563,10727641,3
+4466839,10727641,-1
+81690117,10727641,4
+74780656,10727641,4
+53560863,10727641,4
+27796353,10727641,4
+53192672,10727641,4
+Carf,10727641,5
+131713125,10727641,4
+3921724,10727641,5
+4094354,10727641,3
+Jazag,10727641,3
+nycharline,10727641,-1
+4077141,10727641,4
+68523574,10727641,3
+130504774,10727641,4
+1857671,10727641,5
+44029751,10727641,5
+47869637,10727641,3
+savokiss,10727641,4
+3308637,10727641,3
+missingworld,10727641,4
+yuyuyuyuyuxp,10727641,4
+63705961,10727641,4
+bora2547,10727641,4
+66875274,10727641,4
+61110479,10727641,4
+57365117,10727641,4
+33549498,10727641,4
+Scullyzfq,10727641,4
+whitelavender,10727641,3
+119123981,10727641,3
+scorndefeat,10727641,3
+50880028,10727641,4
+46507893,10727641,4
+37945803,10727641,4
+80676300,10727641,5
+43326393,10727641,4
+2059210,10727641,4
+1393380,10727641,4
+3690205,10727641,4
+3891615,10727641,5
+45938786,10727641,5
+76915466,10727641,5
+76626194,10727641,5
+2324455,10727641,5
+128580925,10727641,3
+48518696,10727641,4
+45792761,10727641,3
+67848471,10727641,5
+57560468,10727641,4
+54178861,10727641,4
+37968335,10727641,5
+76388576,10727641,5
+lele8,10727641,5
+59272939,10727641,3
+53536011,10727641,5
+71235635,10727641,4
+76236179,10727641,3
+myangel_aj,10727641,4
+131449449,10727641,4
+47623080,10727641,3
+2152315,10727641,3
+52378291,10727641,2
+58726406,10727641,4
+90325710,10727641,4
+58807022,10727641,3
+luoweixy,10727641,5
+127708051,10727641,3
+qiqiyinyu,10727641,4
+darlingpea,10727641,4
+2404315,10727641,3
+108113381,10727641,5
+57436067,10727641,4
+52762831,10727641,4
+lovinsun,10727641,4
+junod,10727641,5
+3315921,10727641,2
+70045201,10727641,5
+echosmilefor,10727641,5
+yanhaolee,10727641,3
+tanlin8711,10727641,3
+3506866,10727641,4
+49132390,10727641,4
+59807660,10727641,4
+56858025,10727641,4
+mildcoffee,10727641,4
+cooiky,10727641,-1
+luckyinvoke,10727641,4
+35178783,10727641,4
+luoochaoo,10727641,3
+3662890,10727641,5
+aleung,10727641,4
+Qquuuuuu,10727641,3
+44587158,10727641,5
+yeyeyuyu,10727641,5
+52327549,10727641,4
+cherylnim,10727641,4
+48247604,10727641,4
+54106628,10727641,5
+frozone,10727641,2
+124139068,10727641,2
+Gorjess3,10727641,3
+sapari,10727641,5
+89735154,10727641,4
+57754572,10727641,5
+tintin_yu,10727641,3
+ddkitty,10727641,4
+89982109,10727641,4
+89449772,10727641,4
+122365805,10727641,3
+10750432,10727641,3
+wj8198026,10727641,4
+1818595,10727641,4
+imnotme,10727641,4
+alonso_frame,10727641,2
+40553391,10727641,4
+huanzai,10727641,3
+47265787,10727641,3
+116782951,10727641,4
+mickeyliuf,10727641,5
+67285197,10727641,5
+gebilaowang,10727641,4
+chamou,10727641,4
+lolypop,10727641,4
+84873418,10727641,3
+44109040,10727641,5
+fivedegree,10727641,4
+1533229,10727641,4
+zhangzc,10727641,4
+54622662,10727641,3
+zhouyun19910131,10727641,4
+3538505,10727641,4
+128638957,10727641,4
+1400556,10727641,4
+53244433,10727641,5
+33329266,10727641,3
+122351676,10727641,4
+49585135,10727641,3
+jiaterry,10727641,4
+88157858,10727641,4
+1353605,10727641,4
+myway510,10727641,3
+banxiamelove,10727641,4
+60583997,10727641,5
+121924869,10727641,3
+67322058,10727641,5
+49789259,10727641,5
+50794214,10727641,5
+62716748,10727641,3
+53036681,10727641,-1
+xiaoyinxuanpapa,10727641,4
+103024649,10727641,4
+75586965,10727641,4
+Eveh,10727641,3
+44409988,10727641,4
+lionxiyouming,10727641,5
+58518290,10727641,4
+54209528,10727641,3
+59634469,10727641,4
+51253098,10727641,4
+jinsy,10727641,5
+89332160,10727641,4
+53257634,10727641,4
+116908080,10727641,5
+51157503,10727641,5
+shoshana,10727641,5
+mukucelia,10727641,3
+linngallery,10727641,4
+54512951,10727641,3
+53126913,10727641,4
+2416471,10727641,3
+jujufan,10727641,4
+48793243,10727641,3
+superzoukang,10727641,5
+shiww,10727641,5
+NO-doubanjiang,10727641,4
+40838566,10727641,5
+akilaa,10727641,3
+3515372,10727641,5
+Lyabing,10727641,4
+nemo2man,10727641,5
+65054384,10727641,4
+3438528,10727641,3
+53582924,10727641,4
+120194903,10727641,4
+sunnyniumei,10727641,3
+ToscanaSole,10727641,5
+capri19901231,10727641,4
+72620241,10727641,4
+casussi,10727641,3
+70924398,10727641,3
+42213473,10727641,4
+48881927,10727641,3
+104489015,10727641,3
+Ark1992,10727641,3
+47289557,10727641,5
+1530155,10727641,-1
+63285789,10727641,4
+2634600,10727641,4
+48088910,10727641,2
+RRspace,10727641,3
+57824542,10727641,4
+133081838,10727641,3
+71624097,10727641,4
+75511451,10727641,3
+misspj,10727641,3
+69550899,10727641,4
+little_cupid,10727641,3
+48616886,10727641,3
+sifangfengdong,10727641,4
+80010727,10727641,4
+3326363,10727641,4
+78651458,10727641,5
+53311132,10727641,3
+122686185,10727641,3
+49520128,10727641,5
+76603396,10727641,5
+lilian199288,10727641,4
+vivien_0124,10727641,3
+Joe.ang,10727641,3
+liltwo,10727641,4
+Trista72,10727641,5
+31914408,10727641,2
+48708306,10727641,4
+46713931,10727641,3
+87978530,10727641,5
+51303183,10727641,4
+132320147,10727641,4
+64064709,10727641,4
+39708774,10727641,4
+59997800,10727641,3
+98543997,10727641,4
+schweinyu,10727641,3
+julynan,10727641,4
+65721480,10727641,5
+102407375,10727641,4
+45748609,10727641,4
+3612252,10727641,5
+arbow,10727641,4
+o0Oo0O,10727641,4
+115706838,10727641,4
+2234882,10727641,3
+sunxujjack,10727641,4
+43803797,10727641,4
+87891193,10727641,4
+lcnverland,10727641,3
+glooshou,10727641,4
+70464788,10727641,4
+mew-yxs,10727641,4
+jamfever,10727641,4
+55972806,10727641,4
+poped,10727641,5
+wfxs,10727641,4
+31996522,10727641,4
+momokitty,10727641,5
+114670150,10727641,5
+L-U-N-A,10727641,4
+38452487,10727641,4
+60041289,10727641,3
+Sissi17,10727641,4
+yoxi222,10727641,4
+33751339,10727641,5
+62386997,10727641,3
+48634684,10727641,3
+57970979,10727641,3
+jluy,10727641,4
+8087992,10727641,4
+53012012,10727641,5
+witchmignon,10727641,4
+2664010,10727641,3
+TimonPeng,10727641,5
+62440574,10727641,4
+106677211,10727641,5
+65916785,10727641,3
+gujingxue,10727641,4
+amberahyPOLA,10727641,4
+51156826,10727641,4
+lingwanwan,10727641,4
+92576305,10727641,4
+1194063,10727641,4
+88212348,10727641,4
+52113603,10727641,3
+Jessfree,10727641,4
+49197596,10727641,4
+tuscany1234,10727641,3
+130330790,10727641,3
+liyuchen,10727641,5
+zxzy,10727641,4
+49117233,10727641,5
+raymondray,10727641,4
+78511044,10727641,5
+103717318,10727641,4
+68280697,10727641,5
+48008465,10727641,3
+sukey91,10727641,5
+littleshy,10727641,4
+willen007,10727641,2
+9813696,10727641,5
+vanjohnbob,10727641,5
+cpaycy,10727641,5
+rucic,10727641,4
+Kishimushroom,10727641,5
+43788388,10727641,3
+63083691,10727641,3
+jolinalbert,10727641,4
+30935515,10727641,4
+58001500,10727641,4
+79478297,10727641,4
+4058668,10727641,4
+82345675,10727641,5
+isaxue,10727641,4
+55319489,10727641,3
+flowernim,10727641,4
+13826202,10727641,3
+1479138,10727641,3
+76816067,10727641,4
+46002196,10727641,3
+35371266,10727641,4
+souring,10727641,3
+80275782,10727641,5
+cincinlee11,10727641,5
+86721520,10727641,5
+53500354,10727641,3
+wanls,10727641,-1
+47653561,10727641,3
+70126364,10727641,5
+naschris,10727641,3
+sand_mao,10727641,4
+secretcat,10727641,4
+agpaper,10727641,5
+89399422,10727641,-1
+baimaheizong,10727641,4
+51525177,10727641,4
+51396590,10727641,4
+3392902,10727641,3
+45549076,10727641,4
+za7ck,10727641,3
+53405870,10727641,4
+suicidee,10727641,3
+109867334,10727641,4
+15188529,10727641,2
+blueandgreen,10727641,3
+skyisquiet,10727641,5
+3944394,10727641,4
+60071743,10727641,3
+62452566,10727641,3
+2920373,10727641,3
+53642273,10727641,4
+44694238,10727641,4
+4097004,10727641,3
+66116098,10727641,3
+54852905,10727641,3
+42511069,10727641,4
+48138532,10727641,4
+leosy,10727641,4
+55868951,10727641,5
+43012209,10727641,4
+brightliwei,10727641,2
+hudachazi1227,10727641,4
+88122336,10727641,5
+66897985,10727641,4
+134462242,10727641,4
+127112078,10727641,3
+130069675,10727641,3
+27641257,10727641,4
+gent1eman,10727641,4
+Lumiere5200,10727641,4
+frankxumomo,10727641,3
+blackmushroom,10727641,3
+56416143,10727641,4
+fuck17,10727641,2
+stt0315,10727641,4
+cwill,10727641,4
+47621269,10727641,4
+45875943,10727641,3
+35575281,10727641,3
+71181579,10727641,4
+maybach2008,10727641,5
+49415138,10727641,3
+73687210,10727641,4
+44222152,10727641,-1
+27277400,10727641,4
+82150919,10727641,4
+53202374,10727641,3
+42274147,10727641,4
+77809977,10727641,5
+sky-Atlas,10727641,2
+39890237,10727641,5
+58059702,10727641,4
+ivyuan,10727641,4
+ccrazy,10727641,3
+58212317,10727641,5
+79929926,10727641,3
+yidiu,10727641,4
+45354123,10727641,4
+38462134,10727641,4
+78926576,10727641,5
+134494053,10727641,5
+34699714,10727641,5
+soarchane,10727641,3
+minoindemo,10727641,4
+61781075,10727641,5
+isayan,10727641,3
+54365251,10727641,4
+figo341,10727641,4
+91224743,10727641,4
+126980247,10727641,5
+Jewon,10727641,3
+MissRosa,10727641,5
+35294199,10727641,3
+54556717,10727641,5
+66276295,10727641,5
+47832003,10727641,3
+35252346,10727641,2
+72934606,10727641,3
+46728603,10727641,5
+2742057,10727641,4
+48078859,10727641,3
+2254648,10727641,4
+yukuai,10727641,-1
+4739187,10727641,3
+38252883,10727641,4
+60514515,10727641,4
+75844540,10727641,4
+lotusweety,10727641,5
+alyosha-alyosha,10727641,4
+90813983,10727641,4
+76762897,10727641,5
+25978283,10727641,4
+47103768,10727641,3
+85264062,10727641,3
+zhanghang525,10727641,4
+64164461,10727641,5
+zimingyulin,10727641,4
+48349929,10727641,4
+48765818,10727641,3
+cijfer,10727641,4
+tanelyu,10727641,5
+52064559,10727641,3
+dingjiandoris,10727641,4
+47717336,10727641,5
+sophiasue,10727641,4
+48772570,10727641,3
+42951565,10727641,4
+15923288,10727641,4
+3850256,10727641,4
+70884954,10727641,5
+jingchengzhu,10727641,5
+45313514,10727641,4
+1354076,10727641,4
+68539735,10727641,-1
+116805216,10727641,4
+102607559,10727641,4
+miaooooo,10727641,5
+126838227,10727641,5
+70392138,10727641,3
+67984945,10727641,2
+69416088,10727641,4
+47187501,10727641,3
+52088899,10727641,4
+OOORRR,10727641,4
+54961193,10727641,4
+64776383,10727641,4
+1306187,10727641,4
+60096895,10727641,3
+56053205,10727641,4
+jesterselby,10727641,3
+natsuantares,10727641,4
+shanl,10727641,3
+116695354,10727641,4
+3447155,10727641,4
+41071901,10727641,2
+xlew,10727641,4
+69673873,10727641,5
+wangying2325,10727641,5
+iswearbei,10727641,4
+xiaoqi526,10727641,4
+2527162,10727641,4
+sfhuizhang,10727641,4
+59904940,10727641,2
+59904940,10727641,2
+6010509,10727641,5
+3575164,10727641,3
+73921973,10727641,5
+75496108,10727641,3
+64008981,10727641,4
+58178362,10727641,4
+79757878,10727641,5
+loreleishanny,10727641,3
+on1yys,10727641,4
+45714346,10727641,4
+ct1965,10727641,3
+64480930,10727641,4
+FanGo-Paris,10727641,4
+yuanqing630,10727641,4
+stany,10727641,4
+4836179,10727641,3
+50366197,10727641,3
+84607799,10727641,3
+yeeye,10727641,5
+53942243,10727641,4
+dingban,10727641,4
+80589402,10727641,2
+emi881008,10727641,4
+liveralkali,10727641,3
+54888937,10727641,5
+37471230,10727641,4
+61420594,10727641,3
+zydaydream,10727641,3
+61723144,10727641,5
+iwinux,10727641,3
+60201593,10727641,4
+Sakura-feng,10727641,5
+answer0545716,10727641,3
+shanelean,10727641,4
+belovedeyes,10727641,4
+31640275,10727641,4
+3716766,10727641,4
+dingdangneko,10727641,4
+quadoooo,10727641,4
+16084893,10727641,4
+102747303,10727641,3
+bester214,10727641,4
+44150163,10727641,3
+50927542,10727641,4
+chiliu,10727641,4
+3131808,10727641,4
+yird,10727641,-1
+48032763,10727641,4
+83989454,10727641,5
+47053575,10727641,3
+Chrysilla-chunc,10727641,4
+fisin,10727641,3
+leeXD22,10727641,5
+2239773,10727641,4
+dear77,10727641,4
+51839609,10727641,5
+75914022,10727641,4
+discipline,10727641,4
+1498731,10727641,3
+82145185,10727641,5
+zlqll,10727641,3
+3187951,10727641,5
+66676801,10727641,4
+55883774,10727641,3
+wunie,10727641,3
+122054884,10727641,4
+134644116,10727641,5
+chiaroscuro,10727641,4
+HollyPhoenix,10727641,4
+55308180,10727641,5
+36617215,10727641,4
+61557388,10727641,3
+85044242,10727641,4
+45599884,10727641,4
+WENDY-NN,10727641,4
+77644475,10727641,3
+76188360,10727641,4
+67970767,10727641,-1
+53656219,10727641,4
+get0ut,10727641,4
+10848778,10727641,4
+nevoisbug,10727641,3
+96492695,10727641,3
+2911268,10727641,4
+79037298,10727641,3
+60981917,10727641,4
+42301539,10727641,5
+39739693,10727641,4
+candylyt,10727641,4
+4390564,10727641,-1
+68138320,10727641,3
+94886676,10727641,4
+or_child,10727641,5
+89308667,10727641,4
+hakovip,10727641,4
+57716769,10727641,5
+58824133,10727641,4
+nocita,10727641,5
+50657559,10727641,5
+54220607,10727641,3
+62374245,10727641,5
+122113976,10727641,5
+77174338,10727641,4
+48508682,10727641,2
+Eazyc,10727641,-1
+wjjjzz,10727641,4
+125962511,10727641,3
+Curlylin,10727641,4
+candice1206,10727641,4
+mymike,10727641,4
+3130809,10727641,3
+12328837,10727641,4
+chyxqwl,10727641,4
+wdxc999999,10727641,3
+121131242,10727641,5
+perhaps0108,10727641,5
+hinna,10727641,5
+sarah_cat,10727641,4
+dodo729,10727641,4
+39628553,10727641,4
+3736224,10727641,4
+89045639,10727641,4
+67334410,10727641,4
+a.c.h.e.n,10727641,4
+83983151,10727641,5
+rdjtmntrl,10727641,5
+ahxu,10727641,4
+suikame,10727641,4
+28572987,10727641,4
+28839183,10727641,4
+56161116,10727641,4
+Zmeters,10727641,3
+3619881,10727641,4
+34816783,10727641,4
+82847924,10727641,3
+46567889,10727641,4
+47316424,10727641,5
+88857098,10727641,3
+58709298,10727641,3
+60615521,10727641,5
+49176180,10727641,5
+66580589,10727641,3
+luoxugeng12581,10727641,3
+60079529,10727641,5
+3856901,10727641,4
+4478995,10727641,3
+65058797,10727641,4
+2202052,10727641,3
+dearza01,10727641,4
+3066956,10727641,3
+3768455,10727641,4
+YVANFUS,10727641,4
+59757081,10727641,5
+103533703,10727641,4
+47903791,10727641,4
+huanglijing,10727641,5
+Micky_48,10727641,5
+74835866,10727641,4
+nobodyhome,10727641,-1
+4563516,10727641,5
+luoshu,10727641,4
+57961574,10727641,4
+75117514,10727641,4
+45379301,10727641,3
+j23ju,10727641,2
+McCrae,10727641,4
+1973642,10727641,5
+4306508,10727641,4
+2622808,10727641,4
+2940152,10727641,3
+32746698,10727641,4
+Democan,10727641,5
+72590868,10727641,5
+73910323,10727641,4
+70043510,10727641,5
+126828053,10727641,5
+fifa7zp,10727641,3
+janehere,10727641,4
+yoyosecret,10727641,5
+tuzinike,10727641,4
+lourdes,10727641,3
+101884264,10727641,3
+53195089,10727641,4
+cici0617,10727641,4
+78824064,10727641,4
+3648258,10727641,3
+spiritnwj,10727641,5
+2771799,10727641,5
+nashiyizhenfeng,10727641,4
+maomouren,10727641,3
+2053084,10727641,4
+63044289,10727641,5
+71946766,10727641,4
+2480830,10727641,4
+48516898,10727641,-1
+116671714,10727641,4
+42222694,10727641,3
+52246319,10727641,4
+Corleone89,10727641,4
+Corleone89,10727641,4
+48949607,10727641,4
+78616781,10727641,5
+2759174,10727641,4
+piggy3399,10727641,3
+uglyaa,10727641,5
+25911106,10727641,4
+66290511,10727641,4
+60952768,10727641,4
+mymiss,10727641,5
+3323980,10727641,4
+pretendor,10727641,3
+nicos,10727641,4
+130651540,10727641,5
+RowCheung,10727641,3
+70571885,10727641,4
+DavidbyGrace,10727641,4
+4234539,10727641,4
+Bainan,10727641,3
+1905433,10727641,4
+1905433,10727641,4
+yinzhong,10727641,3
+annbabyyan,10727641,4
+48312397,10727641,4
+44610838,10727641,4
+128299048,10727641,4
+76076225,10727641,4
+104575422,10727641,4
+1350737,10727641,4
+seaky007,10727641,3
+34600308,10727641,4
+xx218,10727641,4
+36789209,10727641,4
+37917730,10727641,4
+60072533,10727641,4
+57888362,10727641,3
+3427401,10727641,3
+80239706,10727641,3
+kratti,10727641,4
+68870851,10727641,4
+68870851,10727641,4
+54306143,10727641,5
+124749541,10727641,5
+brightwsx,10727641,4
+48675593,10727641,3
+130558480,10727641,5
+74106602,10727641,4
+50158586,10727641,4
+122248485,10727641,3
+veraaa,10727641,4
+2626566,10727641,5
+47885824,10727641,4
+56141863,10727641,3
+51258253,10727641,4
+88213659,10727641,5
+58959752,10727641,5
+littlegaga,10727641,4
+43005536,10727641,3
+liandlisa,10727641,5
+lassiedusky,10727641,5
+leikuen,10727641,4
+54474146,10727641,4
+25481348,10727641,4
+84887652,10727641,4
+yummy1986,10727641,4
+4902486,10727641,3
+1391038,10727641,4
+Moanin,10727641,4
+shinydaye,10727641,4
+veronicawu1982,10727641,4
+133832889,10727641,5
+chelseason,10727641,3
+30267706,10727641,3
+2933839,10727641,5
+promise1993,10727641,3
+4222235,10727641,4
+27713698,10727641,4
+61304869,10727641,3
+sonoko,10727641,-1
+121933130,10727641,3
+66387369,10727641,3
+61734937,10727641,4
+134309409,10727641,4
+76077736,10727641,4
+48238044,10727641,3
+53244586,10727641,5
+73101232,10727641,4
+filmvivi,10727641,3
+fzw83035379,10727641,3
+blackside,10727641,3
+lotus47,10727641,5
+worm.in.amber,10727641,5
+50745514,10727641,4
+130362078,10727641,4
+40671381,10727641,3
+zhangtuo,10727641,5
+67489449,10727641,5
+48359509,10727641,4
+syveen,10727641,5
+chopsticks7,10727641,3
+131855831,10727641,4
+63575195,10727641,4
+59803743,10727641,5
+53720932,10727641,3
+ling0816,10727641,4
+49345225,10727641,3
+2783565,10727641,-1
+49364303,10727641,3
+69605901,10727641,4
+45204341,10727641,5
+wangmuse,10727641,5
+91467014,10727641,4
+130572922,10727641,3
+gailsylee,10727641,4
+85150392,10727641,4
+suekz,10727641,4
+2238297,10727641,2
+68434505,10727641,3
+82846791,10727641,4
+49266061,10727641,2
+3691770,10727641,4
+4400922,10727641,3
+4750688,10727641,4
+rianna,10727641,4
+63173862,10727641,4
+64485578,10727641,4
+72163604,10727641,5
+dxmou,10727641,5
+gojin,10727641,4
+50527952,10727641,3
+2445643,10727641,4
+37983732,10727641,5
+58286363,10727641,3
+80244830,10727641,3
+lokimicky,10727641,-1
+maggieq_qw,10727641,4
+wikimedia,10727641,3
+58181516,10727641,4
+48394631,10727641,-1
+1231047,10727641,3
+121304224,10727641,5
+36680326,10727641,5
+sunlover,10727641,5
+jjrr,10727641,3
+longer1995,10727641,4
+131817058,10727641,4
+61464429,10727641,5
+47537834,10727641,4
+130540529,10727641,4
+119489543,10727641,3
+60142367,10727641,5
+bluestereo,10727641,4
+4391367,10727641,3
+55747971,10727641,3
+4511572,10727641,3
+82321138,10727641,3
+37390884,10727641,4
+41353092,10727641,3
+crony09,10727641,4
+3809304,10727641,4
+88780244,10727641,3
+monster.sen,10727641,-1
+72491929,10727641,3
+2944300,10727641,5
+34774733,10727641,4
+enough,10727641,3
+solo_jane,10727641,4
+47732275,10727641,3
+chuqihua,10727641,4
+swarovskii,10727641,4
+teafragments,10727641,3
+81273832,10727641,4
+yubingqiangwei,10727641,5
+61722748,10727641,4
+124621410,10727641,4
+44887235,10727641,3
+kasimsophie,10727641,5
+53807437,10727641,4
+Stephanie-Lee,10727641,4
+yan6,10727641,4
+44556619,10727641,4
+2747271,10727641,4
+47810404,10727641,4
+113999648,10727641,4
+47509216,10727641,5
+51569553,10727641,4
+49722374,10727641,5
+gaokai3091354,10727641,4
+3617275,10727641,4
+3573467,10727641,4
+lesleytian,10727641,4
+52273545,10727641,4
+59033325,10727641,5
+66537516,10727641,3
+fidolee,10727641,3
+116282788,10727641,5
+114734252,10727641,4
+46848554,10727641,5
+aoneatwo,10727641,4
+ddwhy,10727641,4
+70698244,10727641,4
+Susan1206,10727641,4
+hendiujiu,10727641,5
+msuper,10727641,4
+133511683,10727641,2
+45271055,10727641,3
+51876173,10727641,3
+34507934,10727641,4
+ziyanziyu1024,10727641,4
+99975380,10727641,3
+68212398,10727641,3
+braveshengchun,10727641,5
+3153437,10727641,4
+35715082,10727641,4
+55582032,10727641,4
+84609158,10727641,4
+3328022,10727641,3
+Artouria,10727641,5
+CyberKnight,10727641,4
+78284260,10727641,4
+3705182,10727641,4
+104056990,10727641,3
+28643180,10727641,4
+123533077,10727641,4
+spx,10727641,3
+48857179,10727641,4
+67411446,10727641,4
+40141522,10727641,4
+47166487,10727641,5
+maxwangl,10727641,5
+52364944,10727641,5
+pipi1226,10727641,4
+68031960,10727641,4
+3195042,10727641,3
+35768537,10727641,3
+junelong,10727641,3
+fanrky,10727641,4
+25180021,10727641,5
+49338392,10727641,-1
+40639861,10727641,4
+ibx,10727641,4
+55854831,10727641,4
+50257103,10727641,4
+moonbeam0104,10727641,3
+133889279,10727641,4
+zxxia,10727641,-1
+33322981,10727641,5
+yogaeven,10727641,4
+93224854,10727641,5
+104528325,10727641,5
+3449878,10727641,4
+Qianlumanman,10727641,4
+topgunly,10727641,-1
+63436872,10727641,4
+41471656,10727641,4
+4599993,10727641,4
+Tracy.Wan,10727641,5
+130294899,10727641,4
+pinkycon,10727641,3
+46684749,10727641,4
+myronlau,10727641,4
+cody555,10727641,3
+jiangying,10727641,4
+52128481,10727641,4
+theasir,10727641,4
+SQ17,10727641,5
+52308161,10727641,5
+62781897,10727641,4
+50405272,10727641,4
+mr.junior,10727641,5
+2527696,10727641,5
+63981568,10727641,5
+68200387,10727641,4
+54452935,10727641,5
+45059307,10727641,3
+126818392,10727641,3
+2240667,10727641,-1
+valanthecarey,10727641,5
+qingfengpushang,10727641,3
+116960701,10727641,3
+104517766,10727641,4
+39328754,10727641,4
+Visionario,10727641,4
+71177487,10727641,3
+eric_iiw,10727641,3
+5239878,10727641,3
+56875822,10727641,5
+84384668,10727641,4
+guanlinan,10727641,4
+superbin1014,10727641,2
+41863858,10727641,4
+yan7478,10727641,3
+90594252,10727641,5
+tomoohayou,10727641,3
+34459327,10727641,3
+sunyn0910,10727641,4
+88201815,10727641,2
+absdee,10727641,5
+loveBJuncle,10727641,4
+57947419,10727641,4
+Miss_Dior,10727641,5
+59773274,10727641,5
+Elizabethly,10727641,3
+64369589,10727641,5
+63080132,10727641,5
+43536991,10727641,5
+130706971,10727641,5
+kimeshichan,10727641,3
+48286372,10727641,5
+sunjialin1989,10727641,4
+andyxu3586,10727641,3
+45447780,10727641,4
+suiyi7367,10727641,4
+59262140,10727641,5
+90056142,10727641,3
+50017857,10727641,4
+134158647,10727641,4
+131358056,10727641,4
+3784972,10727641,4
+122594677,10727641,4
+122594677,10727641,4
+impossible_ww,10727641,4
+48542981,10727641,4
+92017036,10727641,5
+4307095,10727641,4
+67940029,10727641,1
+51815760,10727641,5
+81444301,10727641,4
+EricYing,10727641,4
+mysuyu,10727641,4
+2746761,10727641,4
+3619392,10727641,1
+50861907,10727641,5
+1759266,10727641,3
+lizzy2005,10727641,3
+29793897,10727641,-1
+yangtao0810,10727641,3
+sunjunhuang,10727641,2
+4341892,10727641,4
+10144438,10727641,5
+52876797,10727641,5
+aliciajun,10727641,4
+1278172,10727641,4
+heikichi,10727641,4
+60763444,10727641,4
+101790054,10727641,3
+herofaykjj,10727641,4
+azcaban,10727641,4
+emily_mom,10727641,5
+2912846,10727641,3
+63236633,10727641,4
+88135973,10727641,2
+dirtydung,10727641,4
+40921927,10727641,4
+63905629,10727641,4
+57734564,10727641,4
+dinglinzi,10727641,4
+46199652,10727641,4
+winniwang,10727641,4
+79576884,10727641,4
+75407043,10727641,4
+53932937,10727641,4
+Bingbing.,10727641,3
+done13,10727641,3
+3440203,10727641,4
+48488105,10727641,4
+2710028,10727641,5
+2670645,10727641,3
+116007343,10727641,5
+Q1187240392,10727641,4
+tasti,10727641,3
+62742693,10727641,4
+buwubuhui,10727641,1
+2154396,10727641,4
+88219909,10727641,2
+romamor,10727641,5
+the_catcher,10727641,3
+2189292,10727641,3
+52703994,10727641,4
+68640061,10727641,4
+sixiaokong,10727641,3
+benzliang,10727641,5
+54217393,10727641,5
+Devilhunter,10727641,3
+Gordoncoco,10727641,4
+41693160,10727641,3
+kongong,10727641,3
+87648315,10727641,3
+LinXion,10727641,4
+1887686,10727641,3
+72527055,10727641,4
+94988988,10727641,3
+leantong,10727641,2
+47218521,10727641,5
+4438064,10727641,4
+65588257,10727641,4
+Mr.tao,10727641,4
+52826626,10727641,3
+yaoyaocj,10727641,4
+xieyixi,10727641,4
+100517466,10727641,3
+71585704,10727641,4
+panshurst,10727641,3
+summmer49,10727641,4
+51239314,10727641,3
+41706695,10727641,3
+ithilien,10727641,2
+75475788,10727641,5
+colejie,10727641,4
+lan.chan,10727641,3
+vivilinezaixu,10727641,3
+KerhS3,10727641,-1
+xingtiant,10727641,4
+cheng-hang,10727641,5
+52864366,10727641,2
+131197515,10727641,3
+44549599,10727641,4
+86734236,10727641,5
+80519837,10727641,4
+83587515,10727641,-1
+47587270,10727641,4
+wcfdh,10727641,5
+66311081,10727641,5
+buaojiao,10727641,4
+104158754,10727641,4
+24219882,10727641,4
+Daruke,10727641,3
+1336631,10727641,4
+wangyiping,10727641,4
+41520378,10727641,4
+73566551,10727641,5
+l-snow,10727641,4
+guxingao,10727641,4
+chasel,10727641,5
+AngelikaSigrid,10727641,3
+47637886,10727641,4
+3390494,10727641,4
+atsatyr,10727641,5
+45504245,10727641,4
+62139918,10727641,5
+88789846,10727641,5
+80193020,10727641,3
+127589546,10727641,3
+53222149,10727641,4
+xiaojidunmoguxi,10727641,4
+60307625,10727641,4
+yele,10727641,4
+7877539,10727641,5
+69110012,10727641,2
+DrinkD,10727641,4
+62707498,10727641,-1
+108037483,10727641,5
+MAY2RAIN,10727641,3
+62917556,10727641,4
+69341317,10727641,5
+76493812,10727641,4
+57317934,10727641,4
+lorrainelsy,10727641,4
+58458609,10727641,5
+96137054,10727641,3
+wangfei1122,10727641,3
+a_lying_eight,10727641,4
+116380975,10727641,4
+46694434,10727641,5
+8342264,10727641,4
+47603027,10727641,4
+54103480,10727641,3
+bx,10727641,3
+36568075,10727641,4
+25560643,10727641,4
+80021363,10727641,5
+76251078,10727641,3
+4005034,10727641,5
+93651159,10727641,3
+lilyneedmoney,10727641,5
+38694734,10727641,4
+82223630,10727641,3
+Rocklisa,10727641,4
+50447840,10727641,5
+42267736,10727641,4
+script217,10727641,4
+121592816,10727641,5
+oliverfish,10727641,4
+gothes,10727641,3
+34779757,10727641,4
+baobaolilei,10727641,5
+yoyomint,10727641,4
+IloveyouDanica,10727641,3
+77370926,10727641,5
+Molly_W,10727641,4
+3501606,10727641,2
+MALIMA,10727641,3
+zaobai,10727641,3
+48852309,10727641,5
+57910322,10727641,5
+2265138,10727641,4
+52963157,10727641,4
+enjoy826,10727641,5
+91375204,10727641,4
+yueyue718,10727641,3
+134050023,10727641,3
+74920289,10727641,4
+sweetloli,10727641,5
+sugarjune,10727641,3
+49891343,10727641,3
+57968864,10727641,3
+84261396,10727641,4
+4263659,10727641,4
+daomeidi,10727641,4
+43618482,10727641,4
+33962271,10727641,-1
+40733477,10727641,3
+80062653,10727641,3
+3548216,10727641,4
+41316861,10727641,4
+55643387,10727641,5
+kharkov,10727641,5
+hawklee,10727641,3
+41307480,10727641,5
+3852753,10727641,4
+39104472,10727641,4
+58004852,10727641,4
+53551447,10727641,1
+pretender007,10727641,4
+kthinker,10727641,4
+134574653,10727641,5
+lidy33,10727641,5
+avrilyian,10727641,4
+2257100,10727641,4
+pandapie,10727641,4
+100229529,10727641,4
+81144305,10727641,5
+84431385,10727641,4
+127316538,10727641,4
+WAZYZ1115,10727641,3
+49116772,10727641,4
+lvmeansdonkey,10727641,3
+72480107,10727641,4
+scarlett982,10727641,4
+wanderinglife,10727641,-1
+56360766,10727641,3
+meetchris,10727641,4
+menmener,10727641,4
+wishna,10727641,4
+82437190,10727641,5
+godlovetong,10727641,2
+59122633,10727641,4
+54732272,10727641,3
+3090478,10727641,4
+44129141,10727641,3
+70470121,10727641,4
+sealyhere,10727641,3
+4038133,10727641,4
+yeyongqing,10727641,4
+49848992,10727641,4
+63102892,10727641,5
+49740490,10727641,3
+ricechow,10727641,3
+96473743,10727641,4
+missair,10727641,3
+73530411,10727641,4
+mariegaoge,10727641,-1
+44452876,10727641,4
+nanzixiaoche,10727641,5
+rutanilla07,10727641,-1
+75210149,10727641,3
+sofein,10727641,4
+2001079,10727641,5
+53261530,10727641,2
+128033988,10727641,4
+71100061,10727641,4
+52441493,10727641,3
+huayou77,10727641,5
+daangel,10727641,4
+4905173,10727641,4
+73272706,10727641,5
+suheagatha,10727641,5
+45689152,10727641,3
+largind,10727641,3
+53523495,10727641,3
+xiaofz1988,10727641,3
+Yuenyuan,10727641,4
+AeroAnte,10727641,4
+125111991,10727641,4
+ootc,10727641,4
+firepr,10727641,4
+imjerry,10727641,3
+103370606,10727641,4
+83505394,10727641,4
+59817512,10727641,3
+67125371,10727641,4
+23543377,10727641,4
+85398631,10727641,4
+rebry,10727641,3
+idcyou,10727641,4
+2639245,10727641,3
+bonny1111,10727641,3
+36103812,10727641,3
+nancy425,10727641,4
+jjq_wuyi,10727641,3
+piecelost,10727641,5
+52536484,10727641,5
+56207725,10727641,4
+demi1949,10727641,5
+vivi730,10727641,5
+4655666,10727641,4
+130098092,10727641,4
+41939078,10727641,4
+64866923,10727641,3
+sunrisesmile,10727641,2
+52448549,10727641,5
+36090011,10727641,4
+4679905,10727641,4
+4560479,10727641,4
+38863592,10727641,4
+2380878,10727641,5
+3908588,10727641,4
+17843797,10727641,3
+josephine1982,10727641,3
+yiquanennyo,10727641,3
+134682190,10727641,5
+126970287,10727641,4
+yuwersun,10727641,3
+50111172,10727641,3
+kidkid,10727641,2
+4459976,10727641,3
+68403536,10727641,3
+weiyangyinyi,10727641,3
+120178108,10727641,5
+65381163,10727641,4
+131687078,10727641,4
+54480475,10727641,-1
+minuan,10727641,5
+68290597,10727641,4
+3112527,10727641,3
+50194417,10727641,4
+62959210,10727641,3
+iamliving,10727641,5
+jiangmingji,10727641,4
+49689956,10727641,4
+49513730,10727641,5
+61783140,10727641,4
+51508263,10727641,5
+isabella_tk,10727641,2
+78238348,10727641,3
+26739863,10727641,4
+fish_zhao,10727641,4
+35565374,10727641,3
+4513908,10727641,3
+39971075,10727641,3
+130427491,10727641,4
+130989210,10727641,3
+51994220,10727641,4
+2429292,10727641,3
+1550868,10727641,5
+1056656,10727641,4
+50941482,10727641,3
+78898515,10727641,4
+2400445,10727641,3
+130248738,10727641,4
+linfact,10727641,3
+white817,10727641,3
+58515646,10727641,4
+44080755,10727641,-1
+44335994,10727641,3
+ericleaf,10727641,4
+LeonJunki,10727641,4
+xdidd,10727641,5
+spomelo,10727641,4
+bubblechen,10727641,-1
+yoghurtfree,10727641,3
+Vielsamkeit,10727641,4
+55334687,10727641,3
+40136550,10727641,5
+45580632,10727641,4
+68186986,10727641,5
+93854184,10727641,4
+69021752,10727641,-1
+VanlillaSky,10727641,4
+51303525,10727641,4
+CrystalFung,10727641,4
+1271102,10727641,4
+somewhere,10727641,4
+49474405,10727641,3
+ohohzhizhi,10727641,3
+2859580,10727641,4
+4600665,10727641,4
+56444754,10727641,5
+21113489,10727641,5
+iamyzgf,10727641,5
+qingchunyy,10727641,5
+52190902,10727641,5
+134620766,10727641,4
+gee880130,10727641,3
+Ira_Jing,10727641,5
+72371285,10727641,4
+ylmil,10727641,3
+xiaoju811,10727641,5
+freedamao,10727641,5
+76980448,10727641,4
+106639249,10727641,4
+liminray,10727641,5
+miya_o,10727641,3
+96152194,10727641,4
+lyje0401,10727641,5
+121372048,10727641,5
+johnjackson,10727641,5
+bigmama,10727641,3
+jinyatou,10727641,3
+52114898,10727641,4
+3966394,10727641,4
+129448195,10727641,4
+43783099,10727641,4
+72096774,10727641,4
+51882960,10727641,3
+dreamstealer,10727641,4
+Victor_D,10727641,2
+63211767,10727641,3
+76306117,10727641,3
+38897761,10727641,4
+2996899,10727641,3
+71402960,10727641,4
+50164947,10727641,4
+45220416,10727641,4
+54734027,10727641,-1
+61042086,10727641,4
+53267569,10727641,4
+31318906,10727641,5
+50845223,10727641,3
+3385352,10727641,4
+18274942,10727641,5
+122669942,10727641,5
+76092155,10727641,5
+67425224,10727641,4
+50887988,10727641,5
+134630891,10727641,3
+65224512,10727641,3
+122587004,10727641,3
+zoelizexin,10727641,4
+jessy522,10727641,5
+litsunny,10727641,4
+45812371,10727641,4
+skywalkerw,10727641,3
+49714707,10727641,4
+67035142,10727641,3
+biglovebigbang,10727641,5
+4283665,10727641,4
+junjie1210,10727641,5
+131913480,10727641,3
+66685670,10727641,4
+Macmania,10727641,4
+2792116,10727641,5
+poyiao,10727641,3
+1960285,10727641,3
+momodd1314,10727641,4
+58480998,10727641,4
+47998075,10727641,5
+cloudless,10727641,3
+4108038,10727641,5
+fiona-cin,10727641,4
+77151797,10727641,4
+samkaka,10727641,3
+2423121,10727641,5
+yzygod888,10727641,3
+48577098,10727641,4
+41571111,10727641,3
+4284841,10727641,3
+junenmajunen,10727641,4
+4702486,10727641,4
+2721249,10727641,5
+37241520,10727641,3
+81059952,10727641,3
+125827809,10727641,3
+guanghainanhai,10727641,5
+48218453,10727641,5
+57695924,10727641,3
+9950349,10727641,3
+46579820,10727641,5
+dejavu88,10727641,5
+YuleWu,10727641,4
+28104351,10727641,4
+119913085,10727641,4
+nabiki1003,10727641,5
+doreen1215,10727641,3
+30649428,10727641,4
+99036229,10727641,4
+huangxiaojuan,10727641,4
+linxiaoleng,10727641,5
+1353634,10727641,3
+51079481,10727641,4
+couple1314,10727641,4
+61233140,10727641,4
+sinkingjack,10727641,4
+102877510,10727641,3
+54033630,10727641,4
+70255132,10727641,4
+xxb,10727641,4
+mengqingjiao,10727641,3
+paradoxofTM,10727641,3
+70381343,10727641,5
+shijixue,10727641,4
+hitori_guai,10727641,4
+highlightxing,10727641,4
+46953833,10727641,3
+75870999,10727641,4
+shunchong,10727641,3
+lindsaysaysay,10727641,3
+2825155,10727641,4
+timeseeker,10727641,4
+134661569,10727641,3
+115351276,10727641,4
+3855133,10727641,3
+46830081,10727641,4
+suzheer,10727641,3
+49371386,10727641,5
+92267089,10727641,4
+Javian,10727641,4
+63319802,10727641,3
+43414229,10727641,5
+sisilian,10727641,4
+ddqr,10727641,3
+34800119,10727641,4
+65309399,10727641,5
+51468941,10727641,3
+1511035,10727641,3
+63255258,10727641,5
+elmerlt,10727641,5
+49329563,10727641,3
+59545635,10727641,5
+83521053,10727641,3
+81789668,10727641,4
+waiwai7,10727641,5
+125775996,10727641,4
+133816635,10727641,4
+100503233,10727641,4
+31068073,10727641,3
+2570265,10727641,5
+62304027,10727641,4
+122517698,10727641,5
+xiaoranLR,10727641,5
+68804843,10727641,4
+15966927,10727641,3
+KarenC12,10727641,5
+51399526,10727641,4
+49284769,10727641,-1
+hujian9,10727641,3
+Simple.S,10727641,4
+4594646,10727641,4
+67400745,10727641,3
+50553011,10727641,4
+78389639,10727641,3
+74916567,10727641,5
+4380133,10727641,3
+zpp100,10727641,3
+90741174,10727641,3
+xxwm,10727641,4
+39476732,10727641,5
+chilliza,10727641,3
+chichi_g,10727641,4
+6877388,10727641,4
+68631195,10727641,4
+1482384,10727641,4
+reneena,10727641,2
+bluedestiny,10727641,4
+sakay,10727641,5
+102912620,10727641,3
+62291521,10727641,3
+3551983,10727641,5
+nanazou,10727641,3
+mxl1988,10727641,4
+2596592,10727641,4
+fuckTMD,10727641,4
+yekciR,10727641,3
+aimning,10727641,4
+BakerHong,10727641,3
+1378705,10727641,5
+38863376,10727641,4
+61654956,10727641,4
+45490376,10727641,4
+jasmine0821,10727641,4
+CJAP,10727641,4
+ballwen,10727641,4
+78968264,10727641,4
+little_MOMO,10727641,1
+44653441,10727641,4
+103412976,10727641,5
+xiangdahai,10727641,3
+51404354,10727641,3
+wwwwind,10727641,4
+41993032,10727641,3
+heizhugan,10727641,4
+sarahsong,10727641,4
+hollypong,10727641,4
+38087875,10727641,5
+129728582,10727641,4
+76590785,10727641,5
+yigeguniang,10727641,4
+Palomar123,10727641,3
+4526633,10727641,3
+73187224,10727641,3
+73187224,10727641,3
+46345138,10727641,5
+66277003,10727641,5
+36071533,10727641,5
+dead-dick,10727641,4
+82332601,10727641,3
+tiffanieee,10727641,4
+2804944,10727641,5
+isabel_chen,10727641,4
+crazycrazyboo,10727641,3
+45616808,10727641,4
+35353317,10727641,4
+58309527,10727641,4
+heydenny,10727641,5
+alenawan,10727641,5
+58056819,10727641,3
+crescentz,10727641,4
+fuxiu,10727641,4
+121191945,10727641,4
+enberry,10727641,4
+58928033,10727641,4
+133564346,10727641,4
+13643274,10727641,3
+88433908,10727641,3
+baijixing,10727641,4
+52763361,10727641,4
+36408136,10727641,3
+65688183,10727641,1
+wujiuri,10727641,-1
+dongeliu,10727641,4
+kongxinzei,10727641,4
+1206139,10727641,3
+shenda,10727641,5
+58039933,10727641,-1
+94165453,10727641,4
+62742263,10727641,5
+69914528,10727641,2
+100240812,10727641,5
+35818666,10727641,3
+14341331,10727641,3
+xiaosuii,10727641,3
+48057625,10727641,5
+67447555,10727641,4
+xiaoyaozizai,10727641,4
+34107081,10727641,5
+chiu-chiu,10727641,4
+1530964,10727641,3
+staywithcc,10727641,4
+63802168,10727641,4
+70741441,10727641,3
+thunderous,10727641,4
+fortanxu,10727641,4
+WierdMinds,10727641,3
+fanjay,10727641,3
+64707906,10727641,4
+1779389,10727641,3
+49991288,10727641,-1
+26539835,10727641,3
+88175103,10727641,4
+sadiee,10727641,3
+40037855,10727641,4
+71883529,10727641,5
+46788119,10727641,4
+jiangjixiang,10727641,3
+Youoen,10727641,4
+49691346,10727641,4
+mynange,10727641,4
+34549773,10727641,4
+cpxxpc,10727641,5
+ltzfish,10727641,5
+lintao,10727641,4
+61934550,10727641,4
+azraelibaby,10727641,4
+4719369,10727641,3
+62455186,10727641,5
+120579850,10727641,4
+lostintheairr,10727641,4
+73498520,10727641,3
+2718336,10727641,4
+43986034,10727641,5
+82124586,10727641,4
+lazylauren,10727641,3
+67880800,10727641,4
+Mrssin,10727641,4
+hatsukoitaste,10727641,4
+65354608,10727641,4
+60653503,10727641,5
+49408765,10727641,-1
+nanonino,10727641,4
+64020906,10727641,4
+54665714,10727641,3
+27249646,10727641,3
+1219037,10727641,4
+52106062,10727641,4
+dudumozart,10727641,4
+35806544,10727641,4
+84010010,10727641,4
+120983042,10727641,4
+3016636,10727641,4
+cherrywoodpig,10727641,5
+cherrywoodpig,10727641,5
+4799920,10727641,4
+damaimmm,10727641,-1
+montcalgary,10727641,4
+paandpa,10727641,4
+67410434,10727641,4
+yijiusisan,10727641,-1
+55799800,10727641,3
+mornzhao,10727641,3
+3871951,10727641,4
+61419341,10727641,4
+plvangogh,10727641,4
+1427744,10727641,4
+65660945,10727641,4
+norker,10727641,3
+60388741,10727641,5
+49041095,10727641,5
+51756127,10727641,4
+ding415,10727641,3
+12945910,10727641,4
+46721845,10727641,3
+audreysy,10727641,3
+mirror-y,10727641,5
+67370965,10727641,4
+71001688,10727641,3
+126785151,10727641,4
+82909338,10727641,4
+sufie,10727641,4
+85660086,10727641,4
+78840839,10727641,4
+91046092,10727641,5
+jaywooh,10727641,4
+70513012,10727641,3
+50068704,10727641,4
+62968482,10727641,5
+yufei707,10727641,4
+51835495,10727641,5
+43127616,10727641,5
+4226505,10727641,3
+80382193,10727641,4
+bestsecretlife,10727641,4
+53312629,10727641,4
+3116029,10727641,4
+kirilowii,10727641,-1
+35380385,10727641,4
+fabulouswhite,10727641,4
+fuifshan,10727641,4
+lovelinor310,10727641,5
+66869185,10727641,5
+Light_L,10727641,-1
+81936466,10727641,3
+4517313,10727641,5
+lingkong911,10727641,3
+64451825,10727641,3
+tammyj_11,10727641,5
+behindme,10727641,3
+runcastor,10727641,5
+41579519,10727641,5
+fannytracyshine,10727641,4
+singheartly,10727641,3
+39787501,10727641,3
+48179026,10727641,4
+akinotsubasa,10727641,3
+65116292,10727641,4
+49893629,10727641,4
+101849853,10727641,4
+liujinlin,10727641,4
+132805966,10727641,4
+cookiemadam,10727641,4
+grantqian,10727641,5
+mypal,10727641,4
+1494376,10727641,4
+134562390,10727641,4
+jelly12,10727641,4
+46540591,10727641,3
+74170855,10727641,4
+m2cky,10727641,4
+46205687,10727641,3
+NIGELeilei,10727641,4
+2571588,10727641,4
+zhangtiexun,10727641,5
+61190847,10727641,4
+4248371,10727641,3
+56758013,10727641,4
+46408031,10727641,5
+tangerine0113,10727641,5
+stare,10727641,3
+75327882,10727641,5
+TheSilvia,10727641,4
+lala715,10727641,4
+57497039,10727641,4
+53241623,10727641,5
+134202677,10727641,4
+49230486,10727641,4
+cicizhaowei,10727641,3
+2449100,10727641,4
+3591608,10727641,4
+48069479,10727641,4
+AndyYue,10727641,5
+62521900,10727641,4
+131850841,10727641,5
+4019319,10727641,4
+amylittle,10727641,3
+77661771,10727641,4
+46665128,10727641,4
+38620255,10727641,5
+49364044,10727641,3
+ironCC,10727641,4
+46834160,10727641,5
+minoru,10727641,4
+45094700,10727641,5
+dannytheking,10727641,3
+chjjuly0118,10727641,4
+62377440,10727641,3
+1326095,10727641,3
+53829509,10727641,4
+62675898,10727641,4
+47678286,10727641,4
+heyjjzlyoops,10727641,4
+25153376,10727641,2
+108794765,10727641,4
+69569015,10727641,4
+kilruk,10727641,4
+birdersky,10727641,4
+45368816,10727641,4
+37019644,10727641,3
+adaylanie,10727641,5
+do.care,10727641,4
+53854187,10727641,3
+99372325,10727641,4
+YJXMYT,10727641,4
+38272326,10727641,4
+xuxiailing,10727641,3
+smile2491,10727641,4
+franling,10727641,4
+4692009,10727641,4
+a529105502,10727641,3
+35409946,10727641,3
+tricky_V,10727641,3
+78599391,10727641,4
+48787302,10727641,3
+48873217,10727641,4
+mczane,10727641,5
+54866935,10727641,5
+63205590,10727641,3
+dreamingday,10727641,4
+65672790,10727641,4
+i_littlebee,10727641,5
+maxiaoyin,10727641,4
+49191528,10727641,3
+62318523,10727641,3
+xuyansong,10727641,4
+dogtile_vicky,10727641,4
+rakasha,10727641,3
+44914778,10727641,5
+54646551,10727641,4
+lilith1150511,10727641,3
+xxzy93,10727641,4
+42144339,10727641,-1
+Iamabadman,10727641,3
+57723908,10727641,4
+68468748,10727641,4
+69036663,10727641,4
+134488722,10727641,4
+57321135,10727641,5
+72101237,10727641,5
+1159179,10727641,4
+84531200,10727641,4
+74195289,10727641,4
+hoxx,10727641,3
+2658903,10727641,4
+64389615,10727641,4
+4131568,10727641,5
+119487629,10727641,4
+3648785,10727641,4
+4698494,10727641,4
+49369831,10727641,2
+126162318,10727641,4
+HR-vivi,10727641,4
+132146700,10727641,4
+zgd0914,10727641,5
+pussycat100,10727641,4
+67523596,10727641,4
+44501154,10727641,3
+RobotechMacorss,10727641,4
+42298202,10727641,4
+lixiaguniang,10727641,4
+120780634,10727641,4
+2435169,10727641,4
+4269909,10727641,4
+117018256,10727641,5
+50703649,10727641,3
+79372581,10727641,3
+feelzyl,10727641,4
+69682145,10727641,3
+shelockcrc,10727641,3
+61504169,10727641,4
+2144442,10727641,4
+132714507,10727641,4
+122118571,10727641,5
+122452558,10727641,5
+130132099,10727641,4
+lyzxoxo,10727641,4
+43716096,10727641,3
+88780521,10727641,4
+lzyue,10727641,4
+33139664,10727641,4
+3816221,10727641,5
+pinxue,10727641,4
+92340097,10727641,-1
+summer0504,10727641,4
+60717435,10727641,4
+36324525,10727641,4
+43503664,10727641,4
+79161906,10727641,5
+102640123,10727641,4
+42111921,10727641,4
+hongzhouche,10727641,4
+2670607,10727641,2
+1548109,10727641,4
+zhimayinxiang,10727641,4
+46637594,10727641,4
+68511299,10727641,4
+115786111,10727641,4
+leslie93,10727641,4
+nimonnwang,10727641,5
+58493889,10727641,5
+62979513,10727641,3
+42362308,10727641,3
+ZEZETHEX,10727641,4
+49065066,10727641,5
+47587289,10727641,4
+mengzhuliangyan,10727641,4
+havethedream,10727641,4
+shipan,10727641,3
+63336838,10727641,3
+68309337,10727641,3
+16497021,10727641,4
+alicebbb,10727641,5
+zaq1xsw2,10727641,5
+3430040,10727641,-1
+59147323,10727641,4
+65268125,10727641,4
+83809414,10727641,3
+122944258,10727641,4
+michael10,10727641,4
+know,10727641,-1
+24986808,10727641,4
+87344411,10727641,4
+127975111,10727641,4
+48025013,10727641,4
+123012852,10727641,5
+1065050,10727641,4
+43044093,10727641,3
+19598764,10727641,4
+appleweiwei,10727641,3
+126338898,10727641,5
+daisy_Ning,10727641,5
+46342568,10727641,3
+tenderhearted,10727641,3
+41453172,10727641,3
+55683912,10727641,3
+lulupink,10727641,5
+EmilyLin,10727641,3
+zc_726,10727641,4
+kaprilis,10727641,5
+sunkang1015,10727641,3
+44121177,10727641,5
+93486979,10727641,2
+68684062,10727641,5
+48659293,10727641,5
+cheerychang,10727641,3
+70951210,10727641,5
+hikkii,10727641,4
+4386130,10727641,3
+momoaamomo,10727641,3
+47258020,10727641,4
+3052479,10727641,5
+tangsoo,10727641,3
+hades1029,10727641,5
+lugubrious,10727641,4
+39961322,10727641,4
+71262182,10727641,4
+stillm,10727641,3
+xqsmao,10727641,2
+129778542,10727641,4
+51386842,10727641,5
+49855779,10727641,3
+alexf,10727641,2
+zhz586,10727641,5
+134034550,10727641,4
+15782303,10727641,3
+movie-liang,10727641,4
+adi,10727641,3
+shuangyugongjue,10727641,4
+rujiayang,10727641,4
+Top129,10727641,3
+qingtongkuihua,10727641,3
+avro,10727641,3
+38964387,10727641,4
+wille,10727641,3
+39706193,10727641,4
+3337362,10727641,4
+59310037,10727641,4
+1573713,10727641,-1
+60846829,10727641,5
+130156822,10727641,3
+68027802,10727641,3
+58121019,10727641,4
+color.x,10727641,4
+130762342,10727641,4
+luvless,10727641,4
+aRmstrong-Kiss,10727641,3
+25491726,10727641,5
+68464777,10727641,3
+52406033,10727641,5
+128122831,10727641,5
+3142824,10727641,5
+1479136,10727641,5
+40273043,10727641,5
+62313381,10727641,5
+96009356,10727641,3
+85424369,10727641,3
+65844601,10727641,-1
+mary27,10727641,3
+zxin94264,10727641,3
+65763988,10727641,5
+2984220,10727641,5
+anniehoneys,10727641,4
+66552525,10727641,4
+SJW,10727641,3
+ch123,10727641,4
+58854842,10727641,3
+49176347,10727641,2
+63589080,10727641,5
+92027453,10727641,4
+1494955,10727641,4
+Demonbane,10727641,3
+62532715,10727641,5
+62101965,10727641,3
+44844360,10727641,4
+82359447,10727641,3
+63622280,10727641,4
+4635895,10727641,4
+dawn.limpid,10727641,4
+57753980,10727641,5
+jasmine_han,10727641,4
+57580353,10727641,4
+45234987,10727641,4
+ucrone,10727641,4
+47983574,10727641,5
+123710346,10727641,5
+93375016,10727641,4
+85174401,10727641,5
+52801695,10727641,4
+4807458,10727641,3
+dreaming_zh,10727641,4
+giantchen,10727641,3
+Vivien0712,10727641,4
+114533111,10727641,4
+happyds1225,10727641,4
+MELEM,10727641,3
+7252394,10727641,5
+hlphyx,10727641,3
+spsara,10727641,5
+23826255,10727641,4
+48841040,10727641,3
+38615886,10727641,5
+1489572,10727641,4
+36829119,10727641,5
+tianxiaodao,10727641,3
+62751828,10727641,3
+34394752,10727641,4
+Z-nana,10727641,4
+62720771,10727641,4
+tiffany_xu,10727641,4
+2268636,10727641,4
+zjulion,10727641,2
+48381234,10727641,4
+39795294,10727641,4
+52283291,10727641,5
+70432324,10727641,4
+MonikaLiu,10727641,4
+LITTLEWYY,10727641,4
+71724045,10727641,3
+sally_she,10727641,4
+65766110,10727641,5
+2279936,10727641,4
+33754763,10727641,3
+26414546,10727641,3
+97088153,10727641,3
+74913423,10727641,4
+65784611,10727641,3
+65415712,10727641,4
+alv1023,10727641,4
+vividgreen,10727641,3
+49543670,10727641,4
+iambenbenkitty,10727641,4
+65619251,10727641,4
+49520911,10727641,4
+62377536,10727641,4
+68149806,10727641,4
+43448765,10727641,4
+xiaohuai533,10727641,5
+TCTF,10727641,4
+57249703,10727641,3
+1032754,10727641,5
+60988503,10727641,4
+1130020,10727641,3
+3246025,10727641,4
+134585517,10727641,5
+31004958,10727641,3
+47458523,10727641,3
+40613593,10727641,4
+49143252,10727641,1
+mangosteen28,10727641,3
+123370298,10727641,3
+54759391,10727641,3
+hydrofluo,10727641,3
+barong,10727641,4
+barong,10727641,4
+ripplelien,10727641,4
+45849213,10727641,4
+oTiffanYo,10727641,3
+bbnh0729,10727641,4
+leilei66,10727641,5
+6429517,10727641,5
+27802113,10727641,4
+pacinos,10727641,5
+4228484,10727641,4
+45819950,10727641,4
+115658788,10727641,4
+1403770,10727641,5
+infinitezzq,10727641,4
+60357094,10727641,3
+baizi886,10727641,4
+papaduty,10727641,4
+2174123,10727641,5
+47515047,10727641,5
+69337550,10727641,3
+8097574,10727641,4
+85269486,10727641,3
+62215499,10727641,4
+lovejiangnan,10727641,4
+cheryl-,10727641,5
+61014893,10727641,3
+79567337,10727641,4
+118854497,10727641,4
+108247778,10727641,4
+50403801,10727641,3
+108282995,10727641,4
+34543110,10727641,4
+mensmen,10727641,3
+82369004,10727641,4
+62130099,10727641,4
+121545000,10727641,5
+BarbieZ,10727641,4
+127649705,10727641,5
+57328303,10727641,5
+2584631,10727641,3
+54132457,10727641,4
+simon_liu,10727641,3
+AriesSusan,10727641,4
+Malivoni,10727641,3
+tu_bi_yang,10727641,5
+38603350,10727641,3
+wusue,10727641,4
+53829658,10727641,5
+4151606,10727641,5
+125929186,10727641,4
+123238661,10727641,5
+zhkaoe,10727641,4
+shmily_yummy,10727641,5
+68786900,10727641,4
+83161147,10727641,5
+64497522,10727641,4
+47656138,10727641,4
+41899297,10727641,4
+lovecris,10727641,4
+deardearcat,10727641,4
+54463600,10727641,4
+sunshinean2000,10727641,4
+YakiraKw,10727641,5
+1584024,10727641,5
+37162990,10727641,4
+44903919,10727641,5
+fallwood,10727641,4
+58064853,10727641,5
+54044288,10727641,4
+35364683,10727641,4
+114387264,10727641,4
+3750983,10727641,3
+134600773,10727641,5
+jiroleng,10727641,5
+whloo1,10727641,5
+1948340,10727641,3
+dchaochao,10727641,4
+Mary-ed,10727641,3
+thesillyone,10727641,3
+54395094,10727641,4
+100162086,10727641,3
+singalongsong,10727641,4
+35821913,10727641,3
+greenbeast,10727641,4
+93607054,10727641,5
+mugglezwt,10727641,4
+applekido,10727641,4
+38487515,10727641,5
+xffeng,10727641,5
+44724487,10727641,4
+50638011,10727641,3
+43710572,10727641,4
+97062397,10727641,5
+67192113,10727641,5
+119877759,10727641,4
+66512641,10727641,3
+4391066,10727641,5
+2411985,10727641,4
+51557657,10727641,5
+3006385,10727641,3
+15666797,10727641,2
+hingyyq,10727641,3
+guosiyao,10727641,4
+91348351,10727641,3
+54351544,10727641,4
+72576116,10727641,5
+65177243,10727641,4
+61549389,10727641,5
+ceffee,10727641,4
+48032170,10727641,3
+ifeelfine,10727641,4
+mysilence,10727641,4
+64405131,10727641,4
+yiya77,10727641,5
+iamdzn,10727641,5
+124035859,10727641,4
+89066076,10727641,4
+79148662,10727641,-1
+MaxMoon,10727641,4
+30641768,10727641,4
+46370564,10727641,4
+49507964,10727641,4
+haxiepeia,10727641,3
+crystalpansong,10727641,4
+hana0707,10727641,5
+37810756,10727641,4
+63278789,10727641,4
+59537499,10727641,5
+rbit,10727641,4
+Jaytaoo,10727641,4
+73388741,10727641,2
+62917161,10727641,4
+69481440,10727641,4
+xzhxf,10727641,4
+47297112,10727641,4
+L-sheep,10727641,3
+38258402,10727641,5
+31698933,10727641,3
+fish_apple_love,10727641,3
+neoway,10727641,4
+huoyanshanbaofa,10727641,4
+36539869,10727641,3
+64172865,10727641,4
+69476809,10727641,4
+cuiyin030812,10727641,4
+lincolnhong,10727641,4
+130121771,10727641,3
+41397677,10727641,3
+62649072,10727641,4
+Jhon_Lou,10727641,4
+missmole22,10727641,4
+OOXXWJW,10727641,5
+25217510,10727641,3
+61602922,10727641,4
+yyqh,10727641,5
+xiaoxianbibi,10727641,-1
+47808773,10727641,3
+50271561,10727641,5
+hushibookstore,10727641,4
+67690348,10727641,4
+122208001,10727641,4
+50647319,10727641,3
+80726886,10727641,2
+Arenas4.-_-Hreo,10727641,3
+mmmxyo,10727641,3
+91816564,10727641,4
+ifesherry,10727641,5
+134148719,10727641,3
+bravefish,10727641,4
+1511879,10727641,-1
+39279260,10727641,3
+B-B-B-Side,10727641,3
+132640037,10727641,-1
+52656396,10727641,3
+11508993,10727641,4
+songxiaozao,10727641,5
+1338530,10727641,3
+80358373,10727641,5
+LeeMar,10727641,4
+Davidcyclone,10727641,-1
+44652503,10727641,4
+56580780,10727641,5
+yingshuizy,10727641,5
+74719967,10727641,4
+130116393,10727641,4
+55825163,10727641,4
+shandandream,10727641,4
+62072392,10727641,4
+yuefulun,10727641,3
+43200549,10727641,4
+45020999,10727641,5
+67316449,10727641,4
+77583980,10727641,3
+ziyunying,10727641,3
+flower_ryoo,10727641,4
+xiaxixiaxi,10727641,3
+josephgyal,10727641,4
+Eugene07,10727641,4
+1235613,10727641,-1
+3451324,10727641,4
+echy,10727641,5
+yuanzailv,10727641,4
+dooyan,10727641,4
+39813056,10727641,4
+asukayoshioka,10727641,4
+kuoxen,10727641,3
+82052556,10727641,5
+NG,10727641,5
+nowood,10727641,5
+39620888,10727641,5
+jiutianforever,10727641,3
+68223783,10727641,4
+76825328,10727641,5
+94794671,10727641,3
+summerboom,10727641,4
+3681552,10727641,3
+66314549,10727641,5
+73856541,10727641,5
+46424200,10727641,3
+anoTherTeezy,10727641,3
+Rebecca_618,10727641,5
+51227412,10727641,4
+baleyang,10727641,5
+mazing,10727641,4
+hanqiu1995,10727641,4
+25329087,10727641,4
+33949296,10727641,4
+superloveCoral,10727641,5
+iconsume,10727641,5
+50437623,10727641,4
+kimchoogak,10727641,4
+119265628,10727641,4
+43134800,10727641,3
+67232713,10727641,4
+59914726,10727641,4
+116617620,10727641,5
+134498765,10727641,4
+131748286,10727641,5
+greengina,10727641,4
+circleyup,10727641,3
+circleyup,10727641,3
+josiekiu,10727641,5
+50015300,10727641,4
+YJJlovelife,10727641,4
+hhy2013,10727641,3
+66266161,10727641,3
+namta,10727641,3
+Zsaraj,10727641,3
+44258193,10727641,4
+100530673,10727641,4
+2894410,10727641,-1
+39811397,10727641,5
+62189600,10727641,-1
+122258109,10727641,3
+89304458,10727641,4
+62818720,10727641,5
+72385276,10727641,5
+56438841,10727641,4
+4575064,10727641,2
+randomforever,10727641,4
+36777396,10727641,2
+90037986,10727641,4
+127291315,10727641,4
+66873262,10727641,3
+120503221,10727641,5
+58148727,10727641,4
+FIONAMOK,10727641,4
+Holacomida,10727641,3
+61479485,10727641,3
+65721564,10727641,3
+eggs,10727641,3
+75474977,10727641,4
+wongtianzhen,10727641,5
+127308888,10727641,4
+23856656,10727641,5
+99131710,10727641,3
+53673765,10727641,3
+manrysh,10727641,4
+54265487,10727641,3
+32881100,10727641,4
+1744955,10727641,4
+75666359,10727641,4
+4705983,10727641,4
+guoooo,10727641,3
+60311898,10727641,4
+BOBLEE82,10727641,4
+cheerjia,10727641,4
+ibty,10727641,3
+matamune,10727641,4
+104427009,10727641,3
+131130976,10727641,3
+46519818,10727641,5
+liutianhong1992,10727641,3
+winterbreak,10727641,4
+1599590,10727641,3
+48518877,10727641,4
+rakbumps,10727641,4
+iker-estrella,10727641,4
+yichenburan,10727641,3
+8130576,10727641,3
+3382542,10727641,4
+60552303,10727641,4
+99853652,10727641,5
+41374892,10727641,4
+xyy_1214,10727641,4
+1039253,10727641,3
+realomo,10727641,5
+52872697,10727641,4
+48501189,10727641,4
+simona_mae,10727641,3
+jasocn,10727641,4
+59878476,10727641,5
+58949902,10727641,3
+71717099,10727641,5
+cloudys,10727641,2
+124886620,10727641,5
+2663035,10727641,4
+34226675,10727641,4
+119447313,10727641,5
+81651557,10727641,5
+81651557,10727641,5
+haiziqiolaye,10727641,-1
+104511788,10727641,5
+33933254,10727641,5
+57262819,10727641,4
+36478287,10727641,4
+nimei2009,10727641,4
+85634562,10727641,5
+121499670,10727641,4
+66883163,10727641,4
+51629890,10727641,5
+ocn27,10727641,3
+48959194,10727641,5
+crucify,10727641,3
+lshangy,10727641,-1
+56221536,10727641,4
+25240448,10727641,4
+129743539,10727641,5
+yue919,10727641,3
+71478394,10727641,4
+3201065,10727641,5
+donna719,10727641,3
+adrian1990,10727641,4
+46171104,10727641,4
+mf,10727641,4
+3970538,10727641,3
+DizzyFox,10727641,3
+ccl499508605,10727641,5
+Lolita1881,10727641,4
+58762290,10727641,3
+2686879,10727641,3
+liunizhou,10727641,3
+134562153,10727641,4
+NicoleSuking,10727641,3
+51607217,10727641,4
+93423717,10727641,5
+49703092,10727641,4
+xiaomu0813,10727641,5
+40015442,10727641,4
+46037677,10727641,2
+61719919,10727641,3
+76119662,10727641,4
+59834267,10727641,5
+25668103,10727641,3
+michaelswift,10727641,4
+2777892,10727641,4
+121892422,10727641,4
+Sunny.S,10727641,4
+42036458,10727641,3
+10402342,10727641,3
+1073807,10727641,4
+59596431,10727641,3
+91785401,10727641,3
+84139416,10727641,5
+51058811,10727641,4
+44359880,10727641,4
+52202737,10727641,3
+3529058,10727641,5
+wangya.sophia,10727641,3
+80657169,10727641,5
+46228308,10727641,5
+59524525,10727641,3
+78382519,10727641,5
+130778242,10727641,4
+ysatis.wan,10727641,4
+82317907,10727641,3
+48072909,10727641,3
+134136241,10727641,4
+lalack1987,10727641,4
+88444727,10727641,3
+129563214,10727641,3
+70588311,10727641,5
+17131500,10727641,5
+68855191,10727641,3
+mien.w,10727641,5
+49144241,10727641,5
+Dolantin.,10727641,3
+nicole82,10727641,5
+donkele,10727641,4
+seanseal,10727641,4
+130940103,10727641,3
+2513212,10727641,4
+2476564,10727641,5
+kikyo531,10727641,4
+dlllllll,10727641,4
+tianreta,10727641,4
+55617039,10727641,4
+3096673,10727641,3
+minglemingle,10727641,4
+134574099,10727641,4
+lanma90,10727641,3
+zhangdayang,10727641,3
+52689515,10727641,3
+68898069,10727641,4
+45256458,10727641,4
+me1on,10727641,4
+BenGlen,10727641,4
+46811981,10727641,4
+jetaimeyc,10727641,4
+mccoy16,10727641,4
+58509538,10727641,3
+50400133,10727641,4
+51611125,10727641,3
+echosanmao,10727641,3
+3954052,10727641,5
+62997799,10727641,4
+Neoo0,10727641,3
+63583816,10727641,4
+46742119,10727641,4
+77731556,10727641,4
+83745562,10727641,3
+61573146,10727641,3
+vvehouse,10727641,3
+1109113,10727641,-1
+48125005,10727641,5
+pepereina,10727641,4
+youwangnian,10727641,-1
+SafeHaven,10727641,4
+4826633,10727641,5
+34738097,10727641,3
+61145820,10727641,5
+83016108,10727641,4
+119550935,10727641,5
+13856427,10727641,4
+123833891,10727641,3
+51828462,10727641,4
+noheeyeon,10727641,5
+kokdemo,10727641,5
+97913735,10727641,4
+scbox,10727641,3
+37618184,10727641,3
+66848309,10727641,4
+134053963,10727641,4
+70160255,10727641,3
+tarorez,10727641,4
+zchou,10727641,3
+libott,10727641,4
+autumn-tree,10727641,4
+47958996,10727641,3
+4553379,10727641,4
+3332733,10727641,3
+104608789,10727641,4
+38815134,10727641,4
+25179405,10727641,3
+1444216,10727641,1
+roseandwater,10727641,4
+48206424,10727641,3
+xiyt8911,10727641,4
+63500576,10727641,4
+3674593,10727641,5
+53791984,10727641,3
+yyxmy,10727641,4
+2566871,10727641,5
+85948759,10727641,4
+59995660,10727641,4
+beckylovemickey,10727641,5
+50698115,10727641,5
+58418894,10727641,5
+ccleung,10727641,4
+Ruty1985,10727641,4
+rayta,10727641,3
+49091198,10727641,3
+48521109,10727641,5
+maertaren,10727641,3
+saky,10727641,3
+Sylar10,10727641,5
+35729058,10727641,5
+36360632,10727641,3
+62687736,10727641,4
+51489993,10727641,4
+61707252,10727641,4
+67388709,10727641,4
+134574178,10727641,4
+63401608,10727641,2
+46096823,10727641,4
+23499046,10727641,4
+2654144,10727641,3
+Luchengshuang,10727641,4
+51724042,10727641,5
+41212756,10727641,4
+66430665,10727641,3
+anjyukaras,10727641,4
+momo_722,10727641,4
+52209772,10727641,3
+66461116,10727641,5
+66535614,10727641,3
+94358582,10727641,4
+shinnodoo,10727641,4
+bbass,10727641,3
+121881237,10727641,4
+121080454,10727641,3
+41934676,10727641,4
+133864523,10727641,5
+86585180,10727641,4
+129956212,10727641,3
+84622836,10727641,4
+silenceeeee,10727641,5
+61740178,10727641,3
+ppmy,10727641,4
+rapunzeld,10727641,3
+tao.shieh,10727641,-1
+56795705,10727641,5
+uuul,10727641,5
+3296176,10727641,2
+42842033,10727641,5
+monkeywen,10727641,5
+51331852,10727641,4
+luobaise,10727641,3
+ck65,10727641,5
+1169348,10727641,3
+edith.wong,10727641,5
+3851842,10727641,4
+36800921,10727641,3
+4498680,10727641,3
+48519318,10727641,5
+kidcumt,10727641,3
+sibisibi,10727641,4
+76763230,10727641,4
+76913320,10727641,5
+Yiz-Chan,10727641,5
+47566185,10727641,4
+50937061,10727641,5
+2453044,10727641,3
+39077146,10727641,5
+39483862,10727641,4
+62276848,10727641,4
+daiyuxuan,10727641,3
+67254469,10727641,3
+130344319,10727641,4
+4260081,10727641,4
+14914580,10727641,4
+58606725,10727641,5
+62664201,10727641,4
+zhangnawind,10727641,4
+3417250,10727641,5
+124920209,10727641,4
+blanch,10727641,4
+72861793,10727641,5
+49785601,10727641,3
+34133902,10727641,3
+53316043,10727641,4
+john1220,10727641,3
+80283476,10727641,4
+jinxishen,10727641,5
+kimsunny,10727641,3
+3398219,10727641,-1
+3275817,10727641,4
+53925910,10727641,2
+65214570,10727641,4
+57386300,10727641,4
+68227944,10727641,3
+54762005,10727641,3
+85282476,10727641,3
+48167301,10727641,4
+feifei0806,10727641,4
+133011186,10727641,4
+leyoudb,10727641,3
+92559363,10727641,-1
+54782004,10727641,5
+126123815,10727641,4
+ivysyi,10727641,4
+3446088,10727641,4
+64321061,10727641,4
+68403874,10727641,5
+dear.still,10727641,4
+ourmfzh,10727641,4
+58332166,10727641,4
+52148531,10727641,3
+51903311,10727641,4
+51589899,10727641,5
+52739241,10727641,4
+83119841,10727641,3
+62030418,10727641,4
+68607460,10727641,4
+47425487,10727641,5
+funnyxucheng,10727641,4
+46861379,10727641,4
+60278797,10727641,5
+82333155,10727641,3
+45073290,10727641,4
+arika.L,10727641,5
+54633281,10727641,3
+106606702,10727641,3
+freedomiron,10727641,3
+63820953,10727641,5
+57751641,10727641,4
+31845728,10727641,4
+40241060,10727641,4
+52918154,10727641,4
+96046921,10727641,3
+37340433,10727641,4
+123227583,10727641,3
+Y19950422,10727641,3
+50238501,10727641,4
+2387705,10727641,5
+123645823,10727641,4
+4654940,10727641,4
+snakesarah,10727641,4
+4045991,10727641,5
+52843468,10727641,4
+43725091,10727641,4
+ejw,10727641,3
+kiwigwj,10727641,5
+54676285,10727641,4
+xmly13,10727641,5
+52108070,10727641,4
+64598866,10727641,5
+40699267,10727641,3
+134563704,10727641,3
+91718479,10727641,2
+smellyman,10727641,4
+58881939,10727641,3
+132678799,10727641,4
+8136180,10727641,4
+hedan122,10727641,4
+129175694,10727641,5
+49705302,10727641,5
+Jimmy_z,10727641,4
+50687552,10727641,2
+4486712,10727641,4
+52762105,10727641,3
+60551718,10727641,5
+babybluevino,10727641,4
+cloudcity,10727641,5
+29458018,10727641,4
+DVforever,10727641,4
+cherwy,10727641,3
+51514734,10727641,3
+65512328,10727641,4
+happysadop,10727641,4
+34243799,10727641,4
+lingtongisly,10727641,2
+47001489,10727641,4
+53614180,10727641,5
+8469986,10727641,4
+guojianzhi,10727641,3
+58725875,10727641,4
+36412946,10727641,3
+71217329,10727641,4
+1189560,10727641,4
+xiaoxingxing,10727641,4
+toasthouse,10727641,4
+lanzi0932,10727641,3
+36616266,10727641,4
+qi7745723,10727641,2
+95988485,10727641,4
+kimxixi,10727641,3
+wangshaoda,10727641,3
+68493924,10727641,3
+60082922,10727641,3
+Mrs.Myself,10727641,3
+56062537,10727641,4
+57777518,10727641,4
+91079375,10727641,3
+luoluomicky,10727641,4
+2300644,10727641,3
+60435322,10727641,4
+nianyike,10727641,4
+yuantown,10727641,3
+Alicia_Y,10727641,4
+58833396,10727641,5
+127863593,10727641,4
+57572100,10727641,3
+84231515,10727641,5
+quanquan0616,10727641,5
+enjoyleelife,10727641,4
+cenijoo,10727641,5
+cynthiayunyun,10727641,4
+59015045,10727641,5
+48731333,10727641,4
+38695828,10727641,5
+62764426,10727641,5
+sky147,10727641,3
+52236468,10727641,4
+3020797,10727641,5
+53252879,10727641,3
+130716428,10727641,4
+sunnysabine,10727641,4
+64390024,10727641,2
+38522531,10727641,4
+65717651,10727641,4
+47874303,10727641,4
+myriceo2011,10727641,-1
+27402449,10727641,5
+59684425,10727641,4
+jean627,10727641,4
+2107978,10727641,3
+3269129,10727641,1
+3520940,10727641,4
+GeekChic7,10727641,3
+48505830,10727641,3
+44005191,10727641,5
+36415794,10727641,5
+bigheadq,10727641,4
+71655181,10727641,3
+ItalinaWang,10727641,4
+105901752,10727641,4
+98321949,10727641,5
+4229818,10727641,3
+51029451,10727641,3
+10236919,10727641,4
+132082715,10727641,5
+after17-Lily,10727641,4
+48515290,10727641,4
+porangec,10727641,4
+70394248,10727641,3
+Miliyah0101,10727641,3
+turtlezheng,10727641,4
+buchimifan,10727641,3
+shane_shang,10727641,5
+56388358,10727641,5
+yuco,10727641,3
+se7enwt,10727641,4
+131508135,10727641,4
+xmusicandy,10727641,4
+pigletjj,10727641,4
+48117298,10727641,5
+Showga,10727641,4
+44349913,10727641,3
+91180216,10727641,4
+CZHYWC,10727641,4
+TiM2012start,10727641,5
+41833499,10727641,5
+52451495,10727641,4
+2405934,10727641,4
+47427697,10727641,4
+69384559,10727641,4
+43096733,10727641,4
+61767280,10727641,3
+60054829,10727641,3
+116717708,10727641,5
+72028864,10727641,4
+wsbaihu,10727641,4
+gabijiang,10727641,4
+48989146,10727641,4
+68922284,10727641,3
+1205451,10727641,4
+miyo5,10727641,4
+ritrost,10727641,4
+veolxxxx,10727641,4
+cloverwish,10727641,5
+65637488,10727641,4
+49370528,10727641,4
+61078922,10727641,4
+sugarli,10727641,2
+vero1012,10727641,4
+57559863,10727641,3
+soevil,10727641,5
+49583852,10727641,3
+ruoxudeng,10727641,4
+36641683,10727641,4
+36999894,10727641,3
+geminitang,10727641,5
+colorfee,10727641,5
+eko2echo,10727641,3
+52226268,10727641,4
+134549829,10727641,4
+yanzi_ziyue,10727641,5
+10117520,10727641,3
+bjlc,10727641,5
+52596376,10727641,5
+84513545,10727641,4
+48219520,10727641,4
+colisa,10727641,4
+53061128,10727641,4
+110901020,10727641,3
+52507418,10727641,3
+74984207,10727641,4
+45594284,10727641,4
+35902921,10727641,4
+58658424,10727641,5
+zyt_69,10727641,3
+56980157,10727641,4
+66066878,10727641,4
+89451372,10727641,4
+92480023,10727641,5
+43710853,10727641,2
+aprilisqiu,10727641,5
+78833399,10727641,4
+37346829,10727641,5
+68735389,10727641,4
+21212589,10727641,3
+62406790,10727641,4
+4596560,10727641,4
+99586677,10727641,5
+zhangjianpeng,10727641,4
+47586387,10727641,3
+ingie,10727641,4
+moyei,10727641,3
+lidianxi1990,10727641,3
+74437095,10727641,5
+30796658,10727641,4
+32340360,10727641,4
+53639016,10727641,5
+49351272,10727641,5
+allanzlau,10727641,4
+spankercat,10727641,3
+33226742,10727641,5
+conanwansui,10727641,4
+1268296,10727641,4
+81998298,10727641,4
+hippowitz,10727641,4
+56916670,10727641,5
+45313223,10727641,4
+68465754,10727641,3
+fushengyishi,10727641,4
+aukry,10727641,4
+51259360,10727641,5
+minhom,10727641,4
+2438025,10727641,5
+romans,10727641,5
+Masked-xia,10727641,4
+shuang331,10727641,3
+jiangjiang10,10727641,4
+134506465,10727641,5
+tumaohunda,10727641,5
+54422637,10727641,5
+seraphhoo,10727641,4
+55767927,10727641,3
+48298152,10727641,4
+CAYmomo,10727641,3
+waifong,10727641,3
+61807648,10727641,4
+zhongdaieva,10727641,3
+59174738,10727641,4
+82918444,10727641,4
+49063054,10727641,4
+13833588,10727641,5
+61716471,10727641,2
+jiajiaxie,10727641,5
+50147481,10727641,4
+128307157,10727641,4
+69124031,10727641,3
+91825059,10727641,4
+67372006,10727641,4
+131882002,10727641,4
+62475981,10727641,5
+31954151,10727641,3
+Darevivion,10727641,4
+yayatu,10727641,4
+acmilanzjt,10727641,3
+40339894,10727641,5
+choushabi,10727641,4
+81034691,10727641,4
+vocalist84,10727641,5
+zacklee,10727641,3
+4348122,10727641,4
+znnancy,10727641,4
+lolitaj,10727641,5
+44006704,10727641,3
+gooo111,10727641,4
+48657704,10727641,5
+fannyone,10727641,4
+Just_vv,10727641,5
+4297674,10727641,4
+121756661,10727641,4
+55786630,10727641,4
+78589161,10727641,3
+134546216,10727641,4
+zenlee,10727641,5
+41522528,10727641,3
+65108877,10727641,4
+52925540,10727641,4
+55747324,10727641,4
+2324863,10727641,4
+MoriartyL,10727641,5
+songjia0227,10727641,4
+hyocheong,10727641,4
+69215741,10727641,3
+STT810,10727641,3
+vacodia,10727641,3
+38569244,10727641,5
+51497174,10727641,4
+yemiaoxihuan,10727641,5
+turf85,10727641,4
+1557359,10727641,-1
+52305274,10727641,4
+55421766,10727641,4
+68989098,10727641,3
+1686617,10727641,4
+124568524,10727641,-1
+41482074,10727641,5
+yitull,10727641,4
+50619817,10727641,5
+50023585,10727641,4
+littlemarss,10727641,4
+47698861,10727641,4
+59110325,10727641,3
+1218753,10727641,-1
+131514121,10727641,4
+46291335,10727641,5
+40588949,10727641,5
+LoveJHart,10727641,4
+49012459,10727641,3
+76139174,10727641,5
+47183487,10727641,4
+50926960,10727641,3
+50988051,10727641,5
+55638323,10727641,5
+bltee,10727641,4
+72136015,10727641,4
+60410157,10727641,4
+46736701,10727641,3
+56109175,10727641,5
+anderose,10727641,4
+67826155,10727641,2
+48759818,10727641,3
+xishy,10727641,2
+3947549,10727641,3
+44330480,10727641,3
+42477053,10727641,4
+Dreaming-Tina,10727641,4
+43228715,10727641,3
+3380762,10727641,3
+sunshine-loy,10727641,3
+63189763,10727641,5
+77215273,10727641,5
+45167634,10727641,5
+65477691,10727641,4
+xuexiaoyan,10727641,5
+imr3,10727641,4
+amour1,10727641,4
+35087113,10727641,3
+52591024,10727641,3
+izhou,10727641,4
+55624184,10727641,4
+1068202,10727641,5
+63060917,10727641,4
+126334650,10727641,3
+Mr..k.ing,10727641,-1
+61111185,10727641,4
+88726475,10727641,4
+115632980,10727641,3
+3167300,10727641,4
+2193797,10727641,5
+rafael_j,10727641,3
+46462451,10727641,3
+63583166,10727641,4
+zhaoyao0919,10727641,4
+somegg,10727641,4
+QAZLee,10727641,3
+81646946,10727641,3
+opq416,10727641,3
+goofy-G,10727641,5
+sirkee,10727641,4
+37268394,10727641,3
+idlelz,10727641,3
+64245643,10727641,2
+4385611,10727641,5
+11786089,10727641,4
+lulinhaohan,10727641,3
+eatonzh,10727641,3
+3911866,10727641,3
+spf,10727641,4
+merengue,10727641,4
+poemaroma,10727641,5
+75322883,10727641,4
+haru0817,10727641,4
+35888113,10727641,5
+38624462,10727641,5
+68027461,10727641,5
+kilo2009,10727641,3
+dmchang,10727641,3
+36339319,10727641,4
+79308363,10727641,5
+Shanglinyuan,10727641,3
+54064610,10727641,5
+46261546,10727641,4
+23612143,10727641,4
+51061137,10727641,4
+allblue,10727641,3
+jackie1207,10727641,4
+sakura7788,10727641,3
+48673876,10727641,3
+61922263,10727641,4
+lethechris,10727641,3
+1605613,10727641,3
+53155339,10727641,4
+119189447,10727641,4
+130571706,10727641,4
+59361957,10727641,3
+41242591,10727641,4
+124247886,10727641,4
+leftfm,10727641,4
+131800375,10727641,5
+59979647,10727641,4
+110025674,10727641,4
+EtionT,10727641,3
+4518731,10727641,3
+3897873,10727641,4
+2030641,10727641,4
+fuhehe,10727641,3
+cool123cool,10727641,5
+feo44,10727641,4
+63548451,10727641,4
+70536128,10727641,5
+2678642,10727641,4
+xiaosongtao,10727641,4
+61562634,10727641,4
+dumbear,10727641,4
+feng-tracy,10727641,4
+blacktea077,10727641,5
+2132440,10727641,4
+laihahayixia,10727641,-1
+80671336,10727641,4
+62927689,10727641,4
+71305067,10727641,5
+4016972,10727641,4
+meganmoon,10727641,4
+42397686,10727641,4
+ramsestwo,10727641,4
+47647061,10727641,4
+56486542,10727641,4
+lingtse,10727641,5
+darktravelor,10727641,4
+F7LOWER,10727641,4
+ChenMelon,10727641,3
+2370135,10727641,3
+66602695,10727641,3
+62651248,10727641,3
+2763206,10727641,4
+11581911,10727641,4
+kkkhahajill,10727641,3
+3735881,10727641,4
+114680384,10727641,4
+122697552,10727641,4
+12644505,10727641,5
+67823980,10727641,5
+visualhyde,10727641,3
+62658973,10727641,5
+78420106,10727641,4
+125445387,10727641,3
+June_Linden,10727641,5
+122127116,10727641,4
+53731567,10727641,5
+sunlinght,10727641,4
+ArsenalCH,10727641,5
+49733499,10727641,4
+44140767,10727641,5
+91606599,10727641,4
+dearing,10727641,4
+smallxuxu,10727641,2
+51597147,10727641,3
+58094531,10727641,4
+50010572,10727641,5
+43231074,10727641,4
+121049880,10727641,4
+57816467,10727641,4
+123134764,10727641,3
+buleddoll,10727641,3
+shiro666,10727641,4
+annerabbit1127,10727641,3
+3004066,10727641,4
+lukaka,10727641,4
+rachel1120,10727641,3
+diedin1991,10727641,4
+72944170,10727641,4
+83183535,10727641,4
+64450665,10727641,3
+wangjijuzi,10727641,4
+49389540,10727641,3
+JimmyLien,10727641,5
+133382870,10727641,5
+49393280,10727641,4
+1583835,10727641,4
+LEEYanwen,10727641,3
+54590401,10727641,4
+lvy823823,10727641,4
+lanodg,10727641,4
+4648608,10727641,4
+fugen,10727641,5
+cydandelion,10727641,3
+3410512,10727641,3
+weibioh,10727641,4
+tzhuang,10727641,3
+4317448,10727641,3
+4451710,10727641,5
+yuuka0765,10727641,4
+58171023,10727641,3
+yeyixin,10727641,4
+39034881,10727641,-1
+73458864,10727641,4
+63898686,10727641,4
+sbandsth,10727641,5
+48463955,10727641,4
+50573314,10727641,3
+4391706,10727641,4
+12573860,10727641,5
+55488423,10727641,4
+52308522,10727641,3
+34979549,10727641,4
+32033776,10727641,3
+74022856,10727641,4
+131079832,10727641,5
+evita_lj,10727641,4
+60919975,10727641,4
+54209095,10727641,4
+66181047,10727641,5
+69420876,10727641,4
+63934272,10727641,3
+59235742,10727641,5
+Eva.pisces,10727641,4
+ada7603,10727641,3
+Windbroken,10727641,3
+46540910,10727641,4
+cherryantie,10727641,3
+76954190,10727641,4
+57935610,10727641,3
+63320651,10727641,5
+hayeke2325156,10727641,3
+32845019,10727641,3
+55873737,10727641,5
+53346121,10727641,4
+56582926,10727641,5
+RedSnowRose,10727641,4
+glasstar,10727641,4
+49484848,10727641,4
+KatoInoue,10727641,5
+3846968,10727641,3
+88502851,10727641,4
+thankyou2014,10727641,3
+beyond007,10727641,4
+82910448,10727641,5
+134530385,10727641,4
+62143130,10727641,3
+61345635,10727641,4
+120566516,10727641,4
+52261532,10727641,4
+54467510,10727641,5
+ycy19870313,10727641,3
+63641490,10727641,4
+2206999,10727641,4
+10027720,10727641,3
+51281553,10727641,3
+no1guangming,10727641,5
+aiyos,10727641,4
+dingxiang_4537,10727641,4
+92673816,10727641,4
+83041900,10727641,4
+ryan-vag,10727641,3
+paopaotang1990,10727641,4
+blueberrie,10727641,3
+56623116,10727641,4
+43327058,10727641,-1
+4481559,10727641,4
+tears_rainbow,10727641,5
+54909533,10727641,4
+49905941,10727641,5
+jessedong,10727641,4
+42834382,10727641,4
+90470774,10727641,4
+ggx29225692,10727641,4
+79302633,10727641,4
+133350014,10727641,4
+27656435,10727641,4
+52270497,10727641,5
+1194375,10727641,3
+71020138,10727641,4
+53250423,10727641,3
+wxzj,10727641,5
+deany,10727641,4
+64429364,10727641,4
+cap120,10727641,5
+76670694,10727641,5
+67728756,10727641,5
+58137395,10727641,5
+64547560,10727641,4
+130944929,10727641,4
+mysha,10727641,3
+46829071,10727641,4
+63050000,10727641,4
+24791739,10727641,5
+68812580,10727641,4
+59404195,10727641,4
+ashes-and-snow,10727641,4
+48728287,10727641,4
+44028253,10727641,4
+67852674,10727641,4
+hua621321,10727641,4
+PIERO1208,10727641,4
+26754683,10727641,4
+76136745,10727641,3
+sep17,10727641,-1
+melodysmelody,10727641,5
+oscarknvb,10727641,4
+zhangying0913,10727641,4
+kanxide,10727641,3
+45487500,10727641,4
+49868632,10727641,5
+winsunVU,10727641,4
+amandapisces,10727641,4
+DoctorHou,10727641,4
+67667928,10727641,3
+67620876,10727641,4
+Mr-Daze,10727641,3
+superloki,10727641,-1
+Immortal-mo,10727641,3
+58506046,10727641,5
+shables,10727641,3
+Decadeff,10727641,4
+kimiyooo,10727641,-1
+124981596,10727641,5
+x5,10727641,5
+56798233,10727641,4
+vexit,10727641,-1
+3371479,10727641,4
+LuckyStrikeNero,10727641,-1
+gycheng,10727641,5
+48246830,10727641,5
+yezihanxu,10727641,4
+89039670,10727641,3
+100497038,10727641,5
+teenybrook,10727641,4
+66689025,10727641,5
+58064743,10727641,3
+engel17,10727641,3
+dneo,10727641,4
+49784959,10727641,3
+57879215,10727641,3
+kyouichigo,10727641,4
+polars,10727641,3
+4839057,10727641,4
+48164798,10727641,4
+2264793,10727641,3
+flyindance_fei,10727641,4
+shouwang-,10727641,4
+belial_cheung,10727641,4
+56627146,10727641,5
+gossipygirl,10727641,4
+43447764,10727641,3
+2304340,10727641,3
+118096038,10727641,3
+57795507,10727641,5
+Cinderellamay,10727641,4
+3121598,10727641,4
+jtjm,10727641,4
+56872635,10727641,4
+jimmy037,10727641,4
+53168109,10727641,5
+132082727,10727641,4
+37785613,10727641,3
+50587917,10727641,3
+toomoo,10727641,3
+121564913,10727641,4
+125671757,10727641,3
+nanaei1314,10727641,4
+3144827,10727641,4
+mknow,10727641,4
+61209876,10727641,4
+93226079,10727641,5
+52267466,10727641,5
+50720023,10727641,4
+45571229,10727641,5
+57266286,10727641,4
+CamilleChang,10727641,4
+115546887,10727641,5
+26239696,10727641,5
+crystal53451,10727641,4
+78616610,10727641,4
+60359343,10727641,3
+49866554,10727641,4
+52529736,10727641,3
+3622707,10727641,3
+3508684,10727641,4
+75652838,10727641,2
+56872191,10727641,4
+47708632,10727641,5
+1407063,10727641,4
+jun0824,10727641,4
+73827929,10727641,4
+raymax,10727641,4
+yumiao2,10727641,4
+atomvivain,10727641,4
+Earrame,10727641,3
+51119971,10727641,5
+75292213,10727641,3
+74613275,10727641,4
+47185791,10727641,4
+103583567,10727641,5
+50410160,10727641,5
+1834682,10727641,4
+49103272,10727641,4
+43784582,10727641,4
+50680625,10727641,5
+46467201,10727641,5
+33126104,10727641,4
+43771540,10727641,4
+2162065,10727641,3
+1867729,10727641,-1
+49721814,10727641,2
+YIN017,10727641,4
+lyning,10727641,4
+xlxiaolei,10727641,4
+weizi1977,10727641,3
+nonob,10727641,4
+1222692,10727641,4
+69298292,10727641,5
+marlborosin,10727641,4
+fuckmetender,10727641,5
+63946270,10727641,4
+63946270,10727641,4
+wednesday.coffe,10727641,3
+zorro4337,10727641,4
+44474526,10727641,3
+JoyYoung,10727641,5
+3202437,10727641,4
+68445549,10727641,3
+93197518,10727641,4
+summerose,10727641,3
+51381887,10727641,4
+cheerful,10727641,4
+stephanie33,10727641,5
+75696184,10727641,3
+57477853,10727641,4
+amake,10727641,4
+babytara,10727641,3
+3596469,10727641,3
+arm326,10727641,4
+60980785,10727641,3
+SETiiiii,10727641,3
+45137077,10727641,2
+gothicly16,10727641,5
+51143310,10727641,3
+ann5342,10727641,-1
+127934825,10727641,5
+81030268,10727641,2
+2336023,10727641,4
+jasonwcy,10727641,3
+dictionaryy,10727641,4
+njtintin,10727641,3
+32697983,10727641,4
+62497317,10727641,3
+JaceJing,10727641,3
+53159267,10727641,4
+33656787,10727641,5
+64898125,10727641,4
+10124138,10727641,4
+16518264,10727641,4
+iida,10727641,4
+Lisa.L,10727641,3
+azureINBLUR,10727641,2
+128778083,10727641,4
+80354020,10727641,3
+4096494,10727641,4
+74611617,10727641,5
+twinsyy,10727641,4
+57377674,10727641,5
+mitusheng,10727641,4
+62798977,10727641,4
+fadefeng,10727641,3
+34101066,10727641,4
+58276692,10727641,5
+125387254,10727641,3
+4348456,10727641,4
+55446081,10727641,3
+1462552,10727641,5
+69354188,10727641,3
+3113509,10727641,3
+88078787,10727641,4
+setsail89,10727641,3
+bue,10727641,2
+48713524,10727641,4
+2169850,10727641,3
+67770010,10727641,4
+64467057,10727641,4
+60979573,10727641,4
+52650480,10727641,5
+ssdysyyy,10727641,4
+minniedai,10727641,5
+41543402,10727641,4
+AMY-SHUFEN,10727641,5
+65550886,10727641,4
+silvanelf,10727641,4
+63988187,10727641,3
+125776806,10727641,3
+xx0301ll,10727641,4
+xuyimeng,10727641,4
+9173752,10727641,4
+pangwaer,10727641,3
+54480059,10727641,3
+120786974,10727641,4
+jideknight,10727641,4
+67883787,10727641,5
+77691678,10727641,4
+1284659,10727641,4
+59169669,10727641,4
+1853333,10727641,4
+shuhaiyun,10727641,3
+45103690,10727641,4
+yhrchong,10727641,3
+130010087,10727641,5
+60241118,10727641,4
+8412009,10727641,3
+34145433,10727641,4
+87689465,10727641,3
+47308476,10727641,4
+30765497,10727641,4
+YDHouer,10727641,4
+65808040,10727641,4
+guaishou995,10727641,4
+minusculeF,10727641,4
+125643700,10727641,5
+Chilyan601,10727641,5
+66038844,10727641,5
+69814261,10727641,4
+3287454,10727641,3
+lolos,10727641,5
+yanranaduo,10727641,5
+dongdashan,10727641,4
+81058498,10727641,5
+yao_123,10727641,3
+4513619,10727641,4
+opheliafeeling,10727641,4
+3731229,10727641,4
+xiexian,10727641,5
+74573393,10727641,3
+61181084,10727641,3
+kane7,10727641,4
+2391373,10727641,4
+69842524,10727641,5
+zard21,10727641,3
+67806727,10727641,4
+gray1210,10727641,-1
+46088268,10727641,4
+2955357,10727641,4
+nikkispaghetti,10727641,3
+youyuanshanren,10727641,4
+65750183,10727641,4
+47186001,10727641,4
+3752572,10727641,3
+47941009,10727641,3
+coolorita,10727641,4
+58081295,10727641,4
+74818677,10727641,3
+xuecong,10727641,4
+kerorojuncao,10727641,4
+124596387,10727641,5
+60151849,10727641,5
+95213691,10727641,5
+64466995,10727641,5
+36638272,10727641,5
+3988346,10727641,4
+63576791,10727641,3
+53667837,10727641,5
+69518357,10727641,3
+54306906,10727641,4
+134522617,10727641,5
+127141779,10727641,5
+65764407,10727641,4
+60051731,10727641,3
+57893703,10727641,4
+huotian,10727641,3
+46408896,10727641,3
+xishuaicn,10727641,3
+5145026,10727641,5
+63894811,10727641,3
+50755079,10727641,4
+83188680,10727641,4
+134087511,10727641,5
+nazuna,10727641,4
+1585106,10727641,3
+1600136,10727641,4
+79452582,10727641,4
+100639145,10727641,4
+1335654,10727641,3
+4092203,10727641,3
+72857405,10727641,5
+2789604,10727641,3
+14598994,10727641,4
+57083421,10727641,4
+kekexilijiu,10727641,4
+xuylu,10727641,3
+B-162,10727641,3
+46627349,10727641,5
+48856971,10727641,4
+NataliaZhao,10727641,3
+96490951,10727641,4
+melanthaxoxo,10727641,4
+62417186,10727641,5
+shania0912,10727641,5
+23835324,10727641,5
+91108237,10727641,5
+Sm_Qop,10727641,4
+81630192,10727641,3
+chihuoo,10727641,5
+cuixuelei,10727641,3
+47848856,10727641,4
+3120137,10727641,4
+48750150,10727641,4
+67320672,10727641,4
+72970549,10727641,4
+saws,10727641,5
+33445354,10727641,3
+46430549,10727641,3
+4326663,10727641,4
+53672256,10727641,5
+65721466,10727641,4
+4482032,10727641,4
+47619273,10727641,3
+58048362,10727641,5
+wendyfield,10727641,3
+132396464,10727641,4
+shine10d,10727641,4
+122604864,10727641,4
+dashdot,10727641,5
+42953573,10727641,4
+63817293,10727641,5
+flmia0430,10727641,5
+15393217,10727641,4
+1233038,10727641,2
+38080849,10727641,3
+88863939,10727641,5
+4335163,10727641,4
+49191008,10727641,3
+royallo,10727641,4
+52478596,10727641,4
+jiechengzongshi,10727641,3
+50095107,10727641,4
+48467281,10727641,3
+3274566,10727641,4
+panyang,10727641,2
+90005274,10727641,4
+gtl,10727641,5
+pisceanw,10727641,4
+121400884,10727641,4
+61520831,10727641,5
+72605529,10727641,3
+64240592,10727641,4
+xiaodog,10727641,5
+75855286,10727641,5
+haha_R,10727641,3
+63964754,10727641,3
+issattkl,10727641,4
+62835550,10727641,3
+j1angvei,10727641,5
+84885684,10727641,3
+chloecin,10727641,3
+2394327,10727641,4
+91815909,10727641,4
+111584714,10727641,4
+3678762,10727641,4
+sisyneo,10727641,3
+3160681,10727641,5
+yukiseventeen,10727641,4
+apollofay,10727641,4
+nromandy,10727641,3
+zystt,10727641,4
+39060227,10727641,5
+124349489,10727641,4
+82934318,10727641,5
+126014541,10727641,3
+72576153,10727641,4
+anarkhhom,10727641,4
+zeo-peanut,10727641,4
+53248531,10727641,3
+50672411,10727641,4
+yiqiu8932,10727641,4
+2531264,10727641,3
+lily928,10727641,3
+67311017,10727641,3
+1168375,10727641,4
+45112780,10727641,4
+23853027,10727641,4
+44015652,10727641,3
+penjing1026,10727641,3
+49838146,10727641,5
+83829939,10727641,4
+49713409,10727641,4
+63006818,10727641,4
+73293779,10727641,5
+85180680,10727641,5
+132959097,10727641,3
+54533341,10727641,4
+130860796,10727641,5
+Arashic5,10727641,4
+superpandaba,10727641,5
+3440401,10727641,3
+goodays,10727641,3
+liancheng,10727641,5
+66810723,10727641,5
+Monderian,10727641,3
+44166324,10727641,3
+4691374,10727641,5
+2427508,10727641,2
+72920178,10727641,4
+53886253,10727641,4
+49757941,10727641,4
+gexiaohua,10727641,4
+47996487,10727641,4
+37264633,10727641,3
+79846050,10727641,4
+misora331,10727641,3
+2878601,10727641,4
+82923282,10727641,4
+kingharry517,10727641,3
+beijingstone,10727641,4
+4263354,10727641,4
+55703832,10727641,-1
+82847789,10727641,4
+52499863,10727641,3
+51609833,10727641,3
+122071338,10727641,3
+95046585,10727641,5
+68131545,10727641,4
+3724437,10727641,4
+6400247,10727641,5
+k-blog,10727641,4
+44306902,10727641,3
+64681504,10727641,3
+zhaoyian8888,10727641,4
+fuckfucker,10727641,3
+vansion,10727641,4
+62760636,10727641,4
+1598223,10727641,5
+62559581,10727641,4
+JesseZZX,10727641,5
+50971547,10727641,4
+59254681,10727641,3
+70653531,10727641,5
+shmily_fm,10727641,4
+48807888,10727641,4
+EvelynReese,10727641,4
+orangesuan,10727641,3
+gaoshuang1226,10727641,5
+55692656,10727641,5
+65408583,10727641,3
+lingxiaxia,10727641,4
+3576794,10727641,5
+supergububble,10727641,5
+70862123,10727641,4
+63863771,10727641,3
+50951864,10727641,3
+37460295,10727641,3
+54728119,10727641,4
+staryyao,10727641,4
+realien,10727641,5
+83679704,10727641,4
+44809136,10727641,4
+88433674,10727641,3
+envyryu,10727641,4
+59378072,10727641,4
+ixuxu,10727641,3
+97517593,10727641,3
+qyqx,10727641,5
+3116391,10727641,4
+124347540,10727641,3
+47215745,10727641,4
+47988380,10727641,3
+81673893,10727641,4
+47659966,10727641,4
+cici3,10727641,4
+WindmillPotato,10727641,4
+peridot,10727641,-1
+67828663,10727641,3
+sue0213,10727641,3
+70950521,10727641,4
+108663216,10727641,3
+Cassiopeia1205,10727641,5
+figo_tau,10727641,3
+shadowall,10727641,5
+37820008,10727641,4
+realsupersu,10727641,2
+2759871,10727641,4
+17913616,10727641,5
+pipangpi,10727641,-1
+43278036,10727641,4
+120934977,10727641,4
+56218053,10727641,3
+52934173,10727641,3
+52061340,10727641,4
+81588706,10727641,4
+jxyyy,10727641,5
+y2j911,10727641,4
+yadiel,10727641,4
+otakichi,10727641,3
+47370846,10727641,3
+1380828,10727641,4
+VC39,10727641,4
+jinniunvzuo,10727641,5
+61392222,10727641,5
+Narcotic_,10727641,4
+qdyoo,10727641,5
+walkingtime,10727641,4
+78190173,10727641,3
+67262547,10727641,3
+nianxnian,10727641,4
+doubledou,10727641,4
+79285043,10727641,4
+94713382,10727641,5
+4714593,10727641,4
+45573967,10727641,4
+4132580,10727641,4
+24853995,10727641,4
+51605005,10727641,5
+35192408,10727641,4
+63483596,10727641,5
+43389049,10727641,3
+53884441,10727641,4
+4566763,10727641,3
+74937470,10727641,3
+anantitheist,10727641,4
+3128287,10727641,5
+55915138,10727641,3
+45506080,10727641,4
+34705755,10727641,4
+72757269,10727641,4
+sodayeah,10727641,3
+40067937,10727641,3
+willsunday,10727641,4
+46976674,10727641,4
+78937198,10727641,4
+irini_lee,10727641,4
+49559165,10727641,4
+happen23,10727641,4
+jiatianyu1,10727641,2
+49241696,10727641,4
+noruen,10727641,4
+38479950,10727641,5
+62007778,10727641,5
+57411563,10727641,5
+huangtaok,10727641,4
+53372445,10727641,3
+4088278,10727641,4
+132328783,10727641,5
+28582386,10727641,3
+4552437,10727641,3
+27698600,10727641,4
+susancfr,10727641,3
+1061046,10727641,5
+qinger1999,10727641,2
+themissingone,10727641,4
+lovingmia,10727641,5
+tiamo_c,10727641,4
+maggie1268,10727641,5
+qflgfgm,10727641,5
+53910242,10727641,4
+125668189,10727641,4
+Hrypenlyandroid,10727641,1
+56413551,10727641,-1
+3447252,10727641,2
+Pandaoreo,10727641,4
+tatsu,10727641,3
+4464843,10727641,3
+69675656,10727641,4
+95017002,10727641,4
+103420044,10727641,3
+73787373,10727641,-1
+elisha_gai,10727641,4
+graceinjune,10727641,3
+chiarachan,10727641,3
+panggou,10727641,4
+30677211,10727641,3
+45193149,10727641,3
+tuirt,10727641,5
+fairy823,10727641,4
+1299909,10727641,4
+44875082,10727641,3
+1469851,10727641,-1
+dazui076819,10727641,-1
+2445695,10727641,3
+quwaiwai,10727641,3
+javy,10727641,4
+55457402,10727641,4
+MissLynn11,10727641,4
+45436450,10727641,3
+122978902,10727641,4
+sho2mon4e4y,10727641,3
+lilygoy,10727641,4
+64455785,10727641,4
+4764033,10727641,4
+65576748,10727641,4
+calamusrain,10727641,4
+134022837,10727641,5
+36840213,10727641,5
+53212541,10727641,3
+zl99,10727641,5
+40861362,10727641,4
+superalsrk,10727641,4
+66936124,10727641,4
+55978897,10727641,4
+58337655,10727641,5
+yuanyang1100,10727641,4
+pieces,10727641,4
+81197029,10727641,4
+xiaoxiao9061,10727641,4
+80682770,10727641,5
+47212439,10727641,4
+68621390,10727641,4
+53073700,10727641,5
+34706621,10727641,4
+tt2792654,10727641,4
+x_torres,10727641,3
+128328073,10727641,4
+ray.mario,10727641,5
+megumiwo,10727641,3
+62340407,10727641,4
+59199050,10727641,-1
+117360867,10727641,3
+48419960,10727641,4
+76239452,10727641,4
+Grahame,10727641,5
+gaiasmile,10727641,4
+lemon1121,10727641,3
+48717924,10727641,3
+Dorothycheer,10727641,3
+kimfan,10727641,4
+july0007,10727641,4
+19296065,10727641,3
+68354862,10727641,4
+14042957,10727641,4
+sleeper_arashi,10727641,3
+caosen,10727641,3
+kissorli,10727641,4
+48363906,10727641,3
+gulunmu,10727641,3
+counting_crows,10727641,5
+73932625,10727641,5
+1468930,10727641,4
+mirrorsx,10727641,4
+39485908,10727641,4
+fantastical,10727641,4
+49020270,10727641,5
+11017625,10727641,4
+3758018,10727641,4
+14014568,10727641,4
+3970076,10727641,3
+maxrins,10727641,4
+caoxudong818,10727641,4
+47660748,10727641,3
+oliviapalermo,10727641,4
+59318975,10727641,4
+bukaopuer,10727641,4
+zhcrobert,10727641,3
+25372576,10727641,4
+21139926,10727641,4
+lefter,10727641,4
+brian4444,10727641,5
+62020201,10727641,3
+78406775,10727641,3
+4367517,10727641,4
+96475500,10727641,4
+tanggg,10727641,3
+62334058,10727641,1
+30128934,10727641,5
+maplepu,10727641,4
+83186453,10727641,5
+4578368,10727641,3
+Smileysnow,10727641,4
+89893696,10727641,5
+33792508,10727641,4
+49449526,10727641,4
+giguemgigue,10727641,5
+4678419,10727641,5
+71065080,10727641,4
+invastson,10727641,5
+shynic89,10727641,5
+fanzaisaid,10727641,3
+xqyamour,10727641,4
+TonTon,10727641,5
+Lelio090101,10727641,4
+62438264,10727641,3
+GianfrancoLee,10727641,4
+lewuleyi,10727641,4
+pajamania,10727641,4
+54421856,10727641,4
+44275428,10727641,5
+lyming,10727641,4
+2756995,10727641,3
+ms_lily,10727641,3
+44996165,10727641,1
+hamixiong0926,10727641,4
+gavinturkey,10727641,4
+59572206,10727641,3
+74932520,10727641,5
+Jandeaux,10727641,3
+blackmeajump,10727641,4
+anboli,10727641,3
+58061567,10727641,5
+46682644,10727641,5
+60933677,10727641,5
+kurobox,10727641,5
+48226109,10727641,5
+Vivian-KW,10727641,5
+88927471,10727641,4
+75916776,10727641,5
+42346736,10727641,5
+52120890,10727641,3
+35229125,10727641,3
+sunsun1990,10727641,5
+13893884,10727641,5
+115772568,10727641,3
+59089292,10727641,4
+ValeMC,10727641,4
+53926972,10727641,4
+skyline0623,10727641,3
+125182895,10727641,5
+Little-Shaily,10727641,4
+62062793,10727641,3
+50199295,10727641,4
+ganganjj,10727641,4
+Lark.Sue,10727641,3
+48002194,10727641,5
+1655091,10727641,4
+75311522,10727641,4
+43694846,10727641,-1
+91575456,10727641,4
+52051860,10727641,4
+66547713,10727641,4
+1797200,10727641,3
+134142938,10727641,3
+101114328,10727641,4
+117808839,10727641,4
+31711681,10727641,4
+jialezone,10727641,2
+QXT-Christine,10727641,4
+37793108,10727641,3
+75244611,10727641,5
+nightdreamer,10727641,5
+45238478,10727641,5
+82874810,10727641,4
+52533161,10727641,5
+4367727,10727641,4
+45795420,10727641,4
+jujunijuninho,10727641,5
+ceceyui,10727641,4
+87691265,10727641,4
+52901753,10727641,5
+chenxy92,10727641,4
+69113925,10727641,5
+53746304,10727641,4
+14433242,10727641,4
+71427030,10727641,4
+47322858,10727641,5
+6851634,10727641,4
+48503019,10727641,3
+51010843,10727641,4
+Verocia,10727641,3
+73844432,10727641,5
+44966176,10727641,5
+O0onion,10727641,4
+O0onion,10727641,4
+65951931,10727641,3
+vontall,10727641,5
+105804171,10727641,3
+bismorgen,10727641,4
+shallwe07,10727641,3
+37450030,10727641,4
+43978557,10727641,4
+49491466,10727641,4
+52893055,10727641,3
+55824890,10727641,4
+zafki,10727641,3
+48695037,10727641,4
+2095236,10727641,4
+75178022,10727641,4
+44561738,10727641,3
+littlenineten,10727641,5
+cocozhao,10727641,3
+SILENT7,10727641,3
+sunlightsilent,10727641,5
+54158519,10727641,3
+119693372,10727641,5
+2780974,10727641,4
+39427343,10727641,4
+1707210,10727641,-1
+62868573,10727641,4
+65204496,10727641,3
+131208902,10727641,3
+zhounian24,10727641,5
+Hans_Du,10727641,3
+2660582,10727641,4
+naich,10727641,5
+51234375,10727641,4
+legal_alien,10727641,4
+44500339,10727641,3
+51362438,10727641,4
+ilovekyoko,10727641,4
+seayo,10727641,5
+yumbe,10727641,3
+littleisle,10727641,4
+xiaohundaban,10727641,4
+aegeanfjcdg25,10727641,5
+somaliayaswan,10727641,4
+robrob,10727641,4
+60303704,10727641,4
+superpanv,10727641,3
+1340751,10727641,3
+40586247,10727641,4
+asd137,10727641,5
+116607290,10727641,3
+ivydehouse,10727641,4
+NeverLate,10727641,3
+82620092,10727641,3
+beilog,10727641,4
+Cecilia925,10727641,4
+51188157,10727641,5
+yldo,10727641,4
+64710056,10727641,4
+55769747,10727641,4
+tkseraph,10727641,5
+luziyujiang,10727641,5
+littlewish,10727641,5
+33534935,10727641,3
+54807019,10727641,4
+lilyhmmm,10727641,2
+133921080,10727641,4
+3311124,10727641,4
+87602683,10727641,4
+35905722,10727641,4
+xyyelfin,10727641,4
+janxin,10727641,4
+wjdszy,10727641,4
+Beth0204,10727641,4
+violin0714,10727641,5
+79731878,10727641,5
+51380962,10727641,3
+farawayfromhome,10727641,3
+97409290,10727641,2
+60461731,10727641,5
+aijin1011,10727641,4
+iceyvonne,10727641,3
+124629682,10727641,4
+36256022,10727641,3
+miuye00,10727641,3
+acher58,10727641,3
+frida0516,10727641,3
+zishy,10727641,3
+misawang,10727641,3
+maryoasis,10727641,3
+kolzybe,10727641,4
+90769441,10727641,4
+128247761,10727641,4
+yinhun,10727641,4
+58142666,10727641,5
+100324027,10727641,3
+nearlloveyou,10727641,3
+76790888,10727641,4
+lamusing,10727641,4
+53880577,10727641,5
+3150872,10727641,3
+132460751,10727641,3
+ilikejuly,10727641,4
+misssummer27,10727641,3
+119988256,10727641,4
+58794497,10727641,4
+JTG,10727641,5
+48943201,10727641,4
+cheryl73,10727641,5
+130968000,10727641,4
+mascot,10727641,-1
+51292681,10727641,4
+60885363,10727641,4
+94373618,10727641,4
+54309403,10727641,4
+60337804,10727641,5
+misswatermelon,10727641,4
+115631804,10727641,4
+hvbert,10727641,3
+reyico,10727641,4
+Hermionexu,10727641,5
+71057399,10727641,4
+40757284,10727641,4
+2755543,10727641,5
+67466072,10727641,5
+jujuzhh,10727641,-1
+MLMLMLMLML,10727641,3
+44431235,10727641,4
+121484000,10727641,4
+35442481,10727641,4
+34151620,10727641,5
+BiXiaoBengZhuRe,10727641,4
+3410808,10727641,4
+133810684,10727641,5
+jhy007,10727641,5
+xizi90,10727641,3
+45034440,10727641,3
+47104715,10727641,5
+49904236,10727641,3
+eslian,10727641,4
+89925975,10727641,5
+89925975,10727641,5
+AstrianZheng,10727641,3
+mayhi,10727641,4
+csf,10727641,4
+givindream,10727641,4
+46630726,10727641,4
+nakassuse,10727641,-1
+dengjie23,10727641,4
+57285744,10727641,4
+turquoise_,10727641,3
+68298279,10727641,3
+maggiexu,10727641,3
+2471335,10727641,4
+EBO,10727641,4
+33142981,10727641,5
+49988447,10727641,4
+62995545,10727641,4
+46321014,10727641,5
+99309071,10727641,5
+130692853,10727641,5
+44142031,10727641,4
+91548755,10727641,4
+3786096,10727641,5
+4652776,10727641,4
+134498032,10727641,4
+Abby_ZLJ,10727641,4
+hedgehog,10727641,4
+seacissy,10727641,3
+mmhvv,10727641,4
+Yeah.Owl.G,10727641,4
+128831767,10727641,4
+candy-huhu,10727641,4
+psynonder,10727641,2
+75237378,10727641,5
+zhaifei-movie,10727641,2
+violetshel,10727641,4
+4090221,10727641,4
+1098195,10727641,5
+132010641,10727641,5
+serinazheng,10727641,4
+128184368,10727641,3
+azurepeach,10727641,4
+68449205,10727641,4
+mmissfreak,10727641,4
+2238984,10727641,4
+air1104,10727641,4
+49884893,10727641,4
+Who.care.,10727641,4
+45872414,10727641,4
+2620783,10727641,4
+lycanthropy,10727641,3
+40512144,10727641,4
+67077088,10727641,5
+127191688,10727641,5
+4278296,10727641,5
+3487705,10727641,3
+56584053,10727641,4
+Gabrielle012,10727641,5
+41726005,10727641,3
+isabelliu,10727641,5
+zhda,10727641,-1
+52767452,10727641,5
+44868532,10727641,3
+f32112345,10727641,3
+jennylove,10727641,5
+antebellum,10727641,5
+Ecoy,10727641,3
+majormaureen,10727641,4
+Katharine205,10727641,5
+42367831,10727641,4
+46044871,10727641,3
+verse,10727641,-1
+35950569,10727641,4
+70363758,10727641,4
+52780386,10727641,4
+56548401,10727641,5
+destiny049,10727641,3
+47359867,10727641,5
+yuzhaobin,10727641,4
+petitlynn,10727641,3
+lufy,10727641,4
+125913784,10727641,3
+3315150,10727641,4
+woruili,10727641,4
+1964260,10727641,3
+83192314,10727641,4
+zyjsunk,10727641,4
+64831069,10727641,4
+aisarah,10727641,4
+boonup,10727641,4
+isseyisseyissey,10727641,5
+nolanjr,10727641,5
+mengtianjun,10727641,-1
+64326764,10727641,2
+63928716,10727641,4
+concrete_sea,10727641,3
+2036063,10727641,4
+9096101,10727641,3
+2846988,10727641,4
+3717841,10727641,-1
+imys1102,10727641,3
+yangyiyin,10727641,5
+hyukcat,10727641,4
+47977269,10727641,4
+52710825,10727641,4
+37078808,10727641,4
+qiushengtang,10727641,2
+79398772,10727641,3
+anynini,10727641,4
+49994038,10727641,3
+changefiona,10727641,3
+dereklecter,10727641,5
+50308243,10727641,5
+yy1988428,10727641,4
+chinhao,10727641,4
+39611799,10727641,4
+tinafaerie,10727641,4
+62209149,10727641,2
+69295551,10727641,5
+yzzlovezj,10727641,3
+69434990,10727641,4
+Dante-htj,10727641,3
+koklite,10727641,3
+DellaZ,10727641,5
+adamhsieh,10727641,3
+48165045,10727641,3
+afantys,10727641,2
+2818464,10727641,3
+28808683,10727641,3
+6681586,10727641,4
+stanup,10727641,4
+3837260,10727641,5
+13062600,10727641,4
+59540342,10727641,-1
+sarah59,10727641,4
+yodswork,10727641,3
+115027330,10727641,4
+37202317,10727641,4
+120523074,10727641,4
+let_it_be_me,10727641,4
+8449145,10727641,4
+130599620,10727641,4
+shenluos,10727641,4
+wshirleyc,10727641,5
+sajmira,10727641,3
+62012748,10727641,4
+vincent2010,10727641,4
+32264409,10727641,3
+67763944,10727641,5
+maxmum,10727641,5
+57965497,10727641,5
+2445824,10727641,4
+58386439,10727641,4
+zuotianyou,10727641,4
+robinlee126,10727641,4
+WSZYJ,10727641,3
+4836633,10727641,5
+101905187,10727641,3
+36622145,10727641,5
+82145368,10727641,4
+53485894,10727641,4
+57882288,10727641,3
+3887933,10727641,3
+sk4ever,10727641,4
+i840152811,10727641,4
+sunivengg,10727641,4
+52635539,10727641,3
+85360851,10727641,4
+121125678,10727641,5
+lmgomg,10727641,4
+49581171,10727641,5
+3613680,10727641,4
+47207886,10727641,3
+72418572,10727641,4
+48256975,10727641,4
+y-3y17,10727641,-1
+sandy130,10727641,3
+weldon,10727641,3
+132599218,10727641,4
+46942165,10727641,5
+65466491,10727641,5
+Mrs.wrong,10727641,3
+26322881,10727641,4
+43891260,10727641,4
+x19920414,10727641,3
+San_king,10727641,4
+67725912,10727641,3
+donpieisme,10727641,4
+real_spain,10727641,5
+vtmonkey,10727641,4
+kimimama,10727641,5
+49210085,10727641,5
+show.huang,10727641,4
+87997485,10727641,3
+Victory_V,10727641,4
+64796008,10727641,5
+69582063,10727641,3
+75295285,10727641,5
+45235125,10727641,4
+DeiDWang,10727641,4
+moviegoer,10727641,4
+67861654,10727641,4
+JIAXIAOQI,10727641,5
+TizzyRin,10727641,3
+52957567,10727641,3
+127438099,10727641,4
+3202207,10727641,4
+58049381,10727641,3
+coto,10727641,4
+annacullen,10727641,4
+mendal,10727641,4
+handsometian,10727641,4
+60161913,10727641,5
+40611533,10727641,4
+A.C.Jones,10727641,4
+62710966,10727641,4
+junchao1988,10727641,4
+2273276,10727641,5
+57479148,10727641,5
+67246411,10727641,4
+33616968,10727641,5
+23733715,10727641,4
+hiddenyang,10727641,5
+88273996,10727641,3
+71203011,10727641,3
+55583926,10727641,4
+ice.koo,10727641,-1
+65521219,10727641,4
+henliang,10727641,4
+68456412,10727641,5
+3876612,10727641,-1
+64083587,10727641,5
+120860718,10727641,4
+ohnosang,10727641,2
+zlkent,10727641,4
+83044349,10727641,5
+52662946,10727641,3
+kongyan15,10727641,4
+83377603,10727641,5
+3077713,10727641,4
+qiangqiangzhang,10727641,3
+67238808,10727641,4
+hasu,10727641,4
+48656837,10727641,5
+127965244,10727641,3
+himesamala,10727641,4
+76426376,10727641,3
+rumpelstiltskin,10727641,4
+54948411,10727641,5
+56677474,10727641,5
+3801925,10727641,4
+53421715,10727641,3
+129501673,10727641,4
+133080033,10727641,4
+83524937,10727641,2
+50642394,10727641,4
+poochai,10727641,5
+AngelGoku,10727641,4
+74608127,10727641,5
+19598735,10727641,4
+foradaisy,10727641,3
+13337545,10727641,5
+72828815,10727641,4
+59111075,10727641,5
+2424837,10727641,4
+55811847,10727641,4
+64978409,10727641,4
+kingkinlx7bibi,10727641,2
+LadySandra,10727641,3
+barbarossa1753,10727641,3
+63068430,10727641,4
+zugarholic,10727641,4
+67512191,10727641,3
+121824767,10727641,5
+4254152,10727641,5
+75476246,10727641,3
+ophelia_m,10727641,3
+ash1225,10727641,5
+saintyaya,10727641,2
+78475246,10727641,4
+79080942,10727641,5
+64446418,10727641,5
+106706919,10727641,5
+44431964,10727641,4
+hypertxt,10727641,4
+49391559,10727641,4
+40901036,10727641,4
+joy_wu,10727641,5
+shadowalker,10727641,5
+66088686,10727641,3
+84396587,10727641,3
+47476934,10727641,1
+sunny_i,10727641,5
+Sophia_jyt,10727641,4
+lilipop,10727641,3
+joyestin,10727641,4
+K-Madao,10727641,4
+74139024,10727641,4
+BMY378670541,10727641,4
+41310094,10727641,5
+3687393,10727641,1
+37789532,10727641,5
+amandaccforever,10727641,3
+vividance,10727641,3
+4260903,10727641,3
+flxjp,10727641,4
+ajuews,10727641,5
+orangeock,10727641,4
+51749125,10727641,4
+2219602,10727641,2
+62434414,10727641,4
+58963446,10727641,4
+64369585,10727641,4
+partingkadaj,10727641,4
+76185877,10727641,5
+jakexiong,10727641,3
+35005590,10727641,5
+47546589,10727641,4
+59587066,10727641,4
+balanco,10727641,4
+5600034,10727641,3
+sharkup,10727641,4
+dangre,10727641,4
+134499894,10727641,4
+yy56cc,10727641,3
+55859412,10727641,5
+baihama,10727641,4
+huajun20,10727641,4
+renee_jun,10727641,4
+42765400,10727641,5
+sogstad,10727641,4
+guoguangming,10727641,4
+happygs,10727641,4
+4496644,10727641,3
+1958405,10727641,3
+Lulu-chips,10727641,3
+lovekuaihua,10727641,3
+57451673,10727641,4
+chowkalin,10727641,4
+85104639,10727641,4
+76395595,10727641,4
+12792627,10727641,4
+131845858,10727641,4
+Defeeeeeated,10727641,4
+callmemrcoolman,10727641,3
+4190834,10727641,4
+joseph1213,10727641,3
+hot_air,10727641,4
+69475039,10727641,3
+43703010,10727641,3
+yanerqian,10727641,4
+mengxiaohua,10727641,4
+mokop,10727641,4
+50189562,10727641,5
+80124028,10727641,4
+67000147,10727641,3
+51156864,10727641,4
+Lessat,10727641,4
+solo007,10727641,2
+gov,10727641,4
+3559301,10727641,5
+44326064,10727641,4
+62301518,10727641,3
+64692199,10727641,5
+48174123,10727641,4
+83217907,10727641,4
+60363608,10727641,4
+si7ence89,10727641,5
+45459664,10727641,3
+65795567,10727641,3
+111826997,10727641,4
+4474893,10727641,4
+sizuka3n,10727641,5
+43989001,10727641,3
+dorothealu,10727641,4
+empty_icer,10727641,4
+doitnow14,10727641,5
+einverne,10727641,4
+85258559,10727641,4
+huantong,10727641,4
+76667923,10727641,4
+1558551,10727641,4
+34438242,10727641,4
+Oo0o0o0,10727641,3
+tcrabbit,10727641,2
+57383545,10727641,3
+montee_D,10727641,3
+42670122,10727641,4
+chendian,10727641,3
+88392258,10727641,3
+66066845,10727641,5
+AnguesZoe,10727641,4
+sunnyfify,10727641,4
+46967065,10727641,3
+61531110,10727641,3
+xxxxiaoxiao,10727641,-1
+62930321,10727641,4
+125228083,10727641,5
+79372274,10727641,4
+27037345,10727641,4
+2521681,10727641,4
+xihahaha,10727641,3
+wangjingjin,10727641,5
+3541131,10727641,4
+toxicming,10727641,3
+72885322,10727641,5
+damienhu,10727641,5
+Na0mi,10727641,3
+yelusiku,10727641,4
+gongzitian,10727641,4
+113163801,10727641,4
+133074819,10727641,5
+iae,10727641,3
+kynno,10727641,4
+55419419,10727641,3
+emmacqq,10727641,4
+61613642,10727641,4
+54532754,10727641,4
+55512369,10727641,4
+1414083,10727641,5
+36348999,10727641,5
+132395688,10727641,2
+Annietta8393,10727641,4
+4749504,10727641,2
+89081401,10727641,5
+vcandverve,10727641,4
+83858975,10727641,4
+60348521,10727641,4
+rangdream,10727641,5
+raynix,10727641,5
+abuwangzi,10727641,3
+shinpiea,10727641,3
+52408878,10727641,3
+puxiancheng,10727641,3
+130535859,10727641,3
+81179431,10727641,4
+2720430,10727641,4
+zealuck,10727641,4
+130920695,10727641,5
+walkingbun,10727641,5
+fallinrnb,10727641,4
+46839557,10727641,4
+iamdengdeng,10727641,4
+47504578,10727641,4
+39200780,10727641,4
+lunababe,10727641,3
+tansydreamslink,10727641,3
+43344085,10727641,4
+zhenshubizheng,10727641,4
+hxlgoodboy,10727641,3
+54309491,10727641,4
+17894469,10727641,4
+65692300,10727641,4
+sunchao1989,10727641,4
+34160744,10727641,3
+70724743,10727641,4
+kaya_flowers,10727641,4
+whenhear,10727641,3
+73538819,10727641,4
+lauer,10727641,4
+48090448,10727641,3
+70827051,10727641,3
+dr_floyd,10727641,-1
+53620031,10727641,4
+60625421,10727641,5
+viviensong,10727641,5
+ronniedream,10727641,-1
+57214774,10727641,3
+haidonsun,10727641,3
+3450620,10727641,3
+70548870,10727641,1
+62905133,10727641,4
+43921829,10727641,4
+3784723,10727641,5
+qiancaoxun,10727641,4
+41933310,10727641,4
+2198591,10727641,5
+45243612,10727641,5
+www1122456,10727641,3
+62892368,10727641,5
+59684689,10727641,4
+34321151,10727641,4
+114321835,10727641,5
+85356798,10727641,5
+65940576,10727641,4
+36118700,10727641,3
+51406169,10727641,4
+59528107,10727641,3
+qryousity,10727641,5
+51506462,10727641,3
+48497242,10727641,4
+56369223,10727641,3
+ffliens,10727641,4
+96861056,10727641,3
+60608137,10727641,3
+43352896,10727641,4
+2447240,10727641,-1
+126565881,10727641,3
+leona_2624c,10727641,4
+122394659,10727641,3
+58066035,10727641,5
+1658796,10727641,4
+64750790,10727641,3
+muwuxi,10727641,3
+48227977,10727641,3
+51239884,10727641,4
+charmine913,10727641,4
+17871243,10727641,4
+zyx1990deep,10727641,4
+134495648,10727641,4
+cklchocolate,10727641,3
+ayumiya,10727641,4
+b_randy,10727641,4
+ben0712,10727641,5
+102070870,10727641,4
+nellostation,10727641,3
+3870362,10727641,4
+muzimisneil,10727641,4
+60570793,10727641,4
+jiany,10727641,4
+130225502,10727641,4
+57576645,10727641,3
+2794600,10727641,3
+weird_galaxy,10727641,1
+63694963,10727641,5
+hal-end,10727641,4
+PandaHermit,10727641,4
+lilmustard,10727641,4
+agentying,10727641,4
+sweetmisscat,10727641,4
+xuxinleo,10727641,4
+45941293,10727641,3
+76205060,10727641,5
+51354667,10727641,4
+4610304,10727641,3
+39012867,10727641,4
+41065419,10727641,3
+andylau40,10727641,3
+sakimay,10727641,3
+moranlover,10727641,5
+5363818,10727641,3
+ospopi,10727641,4
+103602476,10727641,3
+79451845,10727641,4
+beida2012,10727641,3
+131500891,10727641,4
+65131699,10727641,5
+32716850,10727641,3
+134137352,10727641,5
+lemonplant,10727641,5
+61439975,10727641,5
+96140309,10727641,5
+qiaokelijia,10727641,5
+lanpengyou,10727641,3
+scolo,10727641,3
+Hayley_Tsu,10727641,4
+63589848,10727641,4
+68760105,10727641,5
+8708200,10727641,3
+NetPuter,10727641,3
+47993544,10727641,4
+32720498,10727641,2
+dearnikki,10727641,4
+40155699,10727641,4
+127354177,10727641,5
+47516693,10727641,4
+natsunokaori,10727641,-1
+caroltt4024333,10727641,4
+82404312,10727641,5
+teenytinygenius,10727641,4
+51219877,10727641,4
+84001065,10727641,4
+3420320,10727641,4
+53734471,10727641,1
+mikaLynn,10727641,4
+2360493,10727641,4
+Pledge,10727641,5
+52561499,10727641,3
+2657253,10727641,4
+vaniadyq,10727641,4
+2923837,10727641,3
+50077440,10727641,4
+2751179,10727641,4
+1530502,10727641,4
+cloudlandlord,10727641,4
+28536169,10727641,4
+59306525,10727641,4
+eileenxx,10727641,5
+129432208,10727641,4
+62629078,10727641,5
+4393121,10727641,5
+46098362,10727641,3
+JosephGordon,10727641,4
+twotwo,10727641,5
+7143853,10727641,4
+52506105,10727641,3
+59253003,10727641,4
+53810483,10727641,5
+79930432,10727641,-1
+yes_answer,10727641,3
+yao2harry,10727641,3
+Littlecattle,10727641,3
+letonk,10727641,4
+49017384,10727641,4
+2424966,10727641,3
+122696545,10727641,4
+suis,10727641,4
+laxiaomian,10727641,3
+61845707,10727641,5
+tobekalorce,10727641,4
+55863856,10727641,4
+tonhyuk3507,10727641,3
+53721830,10727641,4
+52739987,10727641,4
+54090532,10727641,4
+44428248,10727641,4
+KennySiliver,10727641,4
+108394568,10727641,3
+25572888,10727641,4
+sxywingwing,10727641,-1
+sxywingwing,10727641,-1
+132249471,10727641,4
+3663654,10727641,4
+Free-cat,10727641,5
+3527917,10727641,1
+2842505,10727641,3
+133578116,10727641,4
+69247286,10727641,4
+3496801,10727641,4
+38770627,10727641,3
+41964570,10727641,4
+95621225,10727641,4
+53132873,10727641,2
+louis520000,10727641,-1
+104707030,10727641,4
+55956958,10727641,4
+51016249,10727641,5
+37914560,10727641,3
+67393945,10727641,4
+32251971,10727641,5
+124808104,10727641,4
+115957962,10727641,4
+122667777,10727641,4
+56580928,10727641,4
+qibacha,10727641,3
+24451966,10727641,4
+57671679,10727641,4
+hdkn235,10727641,3
+2763659,10727641,4
+69280679,10727641,4
+55885677,10727641,3
+56272874,10727641,3
+64290310,10727641,4
+yazeng,10727641,5
+43354403,10727641,5
+122288974,10727641,3
+Wsuansuan,10727641,3
+110969952,10727641,3
+2428233,10727641,3
+reneeeee,10727641,4
+51485297,10727641,5
+103339430,10727641,3
+45953948,10727641,4
+61992166,10727641,4
+likechuck,10727641,3
+64172361,10727641,4
+49441144,10727641,4
+54591552,10727641,4
+2676527,10727641,3
+dadafanhe,10727641,4
+1885166,10727641,4
+132835611,10727641,4
+37899965,10727641,4
+3555189,10727641,3
+54783483,10727641,4
+amorle,10727641,4
+raitydove,10727641,5
+51584092,10727641,5
+asuka216,10727641,3
+3832362,10727641,4
+littleyellowhat,10727641,4
+Renkomei,10727641,3
+114656856,10727641,4
+S.G,10727641,4
+sp0328,10727641,4
+lxy5228231,10727641,2
+58723728,10727641,4
+130596522,10727641,4
+yiweyi,10727641,5
+21212541,10727641,4
+53908763,10727641,3
+JustRainbow,10727641,5
+wumengyu,10727641,4
+4606615,10727641,3
+41864568,10727641,4
+37513501,10727641,4
+nynynyny,10727641,5
+12198403,10727641,3
+52583553,10727641,4
+41785476,10727641,4
+41785476,10727641,4
+Utopia.YY,10727641,4
+53984076,10727641,3
+rengzai1893,10727641,3
+56049056,10727641,5
+rover_l,10727641,5
+christinacyy,10727641,4
+easystyle,10727641,3
+Imagine89,10727641,4
+118812578,10727641,4
+48845332,10727641,5
+56223706,10727641,4
+shutantan,10727641,5
+qweerew,10727641,5
+jiuzhao,10727641,4
+2580551,10727641,3
+sharon.jin,10727641,4
+45770435,10727641,3
+Tianyangyang,10727641,5
+3951378,10727641,4
+58195982,10727641,4
+122929763,10727641,4
+89082243,10727641,4
+hanlinallen,10727641,5
+goopoh,10727641,4
+56168328,10727641,4
+80072984,10727641,4
+53809597,10727641,4
+47445354,10727641,-1
+46646867,10727641,-1
+miraclebear,10727641,4
+41766735,10727641,4
+65181695,10727641,4
+xiaoshi0212,10727641,4
+luckyumao,10727641,4
+muse111,10727641,3
+yuuto,10727641,4
+58164155,10727641,3
+qiangdao77,10727641,4
+64124840,10727641,4
+quaner1126,10727641,-1
+2909779,10727641,5
+39168659,10727641,4
+123683000,10727641,5
+52387038,10727641,5
+wowtim,10727641,4
+45347825,10727641,4
+jessica0118,10727641,4
+42618283,10727641,4
+35533635,10727641,5
+4465352,10727641,5
+47279331,10727641,3
+61689906,10727641,4
+36709791,10727641,4
+46943216,10727641,4
+74775337,10727641,5
+ilvhsq,10727641,5
+fangcao5,10727641,5
+2182418,10727641,3
+yunwen_2012,10727641,4
+131024844,10727641,3
+47853825,10727641,4
+vinvinky,10727641,3
+56070100,10727641,5
+57593317,10727641,3
+longyueye,10727641,3
+43600394,10727641,1
+15337334,10727641,5
+jjwhu,10727641,5
+pjwrain,10727641,5
+supermyhero,10727641,4
+1599200,10727641,4
+40434117,10727641,3
+53240953,10727641,4
+eazi2,10727641,4
+56783392,10727641,3
+starkingstar,10727641,5
+63170647,10727641,4
+ya_simon,10727641,3
+CherryChI,10727641,4
+4105021,10727641,4
+EchoVan,10727641,5
+31558041,10727641,-1
+lianadreaming,10727641,4
+105588409,10727641,5
+maggieleehom,10727641,3
+balancee,10727641,4
+dongdansh,10727641,3
+69678068,10727641,4
+43671403,10727641,4
+81480860,10727641,2
+kazuo,10727641,4
+guoxingxing,10727641,4
+1423932,10727641,4
+51315378,10727641,3
+46252496,10727641,3
+77264837,10727641,3
+Cycneverstop,10727641,5
+97319028,10727641,4
+wesley007,10727641,4
+47719447,10727641,4
+myonlysummer,10727641,4
+lion,10727641,3
+56413610,10727641,3
+49081579,10727641,4
+57996460,10727641,3
+4389847,10727641,3
+104745481,10727641,3
+dennie2011,10727641,3
+3699603,10727641,4
+llamame,10727641,4
+64943384,10727641,5
+59354182,10727641,4
+43784506,10727641,4
+67910969,10727641,5
+63177437,10727641,4
+73847256,10727641,3
+dahdumiedu,10727641,4
+108111137,10727641,4
+sha-sha,10727641,2
+point1to1,10727641,4
+57065086,10727641,4
+vaie,10727641,4
+8872886,10727641,4
+henryhill,10727641,4
+82897167,10727641,1
+34894274,10727641,4
+48796562,10727641,5
+48448499,10727641,4
+Charlotte.Q,10727641,4
+72556774,10727641,4
+99329704,10727641,4
+47062002,10727641,5
+48855139,10727641,3
+60161365,10727641,3
+caiduo7,10727641,4
+59998164,10727641,4
+58576729,10727641,4
+91994560,10727641,4
+wocalei,10727641,3
+Nibrina,10727641,4
+114547095,10727641,4
+tracycw618,10727641,3
+mocun,10727641,5
+in_stereo,10727641,4
+menyahu,10727641,5
+joyceatobe,10727641,4
+zhirunze,10727641,4
+FGerlop,10727641,5
+cocowool,10727641,4
+64692515,10727641,3
+43854747,10727641,4
+82603813,10727641,4
+4359174,10727641,4
+87892417,10727641,-1
+ashin49,10727641,4
+37631254,10727641,3
+2099336,10727641,4
+maorabbit,10727641,5
+130647398,10727641,5
+50351703,10727641,3
+Bening,10727641,5
+44304127,10727641,3
+58255325,10727641,4
+wunan0216,10727641,4
+Jessy.Liu,10727641,5
+Moqi,10727641,4
+62491542,10727641,4
+Jenny_Hsin,10727641,4
+63021970,10727641,5
+rebecca-luxueya,10727641,4
+92206840,10727641,5
+53888176,10727641,4
+bakamoto31,10727641,5
+92717529,10727641,3
+130938555,10727641,4
+97312448,10727641,3
+C37twocold,10727641,3
+lovehailie,10727641,3
+summonercarl,10727641,4
+4709576,10727641,4
+70794815,10727641,5
+43596686,10727641,3
+52252202,10727641,4
+42062370,10727641,4
+54038897,10727641,5
+92544403,10727641,2
+4200380,10727641,3
+9094023,10727641,3
+Coke,10727641,2
+conniejjq,10727641,4
+2893753,10727641,4
+ryanwanghz,10727641,4
+59020474,10727641,3
+Pius,10727641,3
+3438313,10727641,4
+54989820,10727641,4
+solo2530,10727641,5
+80995666,10727641,5
+lizi19881218,10727641,5
+kmet,10727641,3
+Dora_lee,10727641,5
+65413699,10727641,4
+78657454,10727641,4
+82993911,10727641,3
+2449818,10727641,3
+1313358,10727641,3
+57826492,10727641,4
+54291215,10727641,5
+133053378,10727641,5
+121055562,10727641,3
+68406681,10727641,3
+132161257,10727641,5
+3406491,10727641,4
+honeyforest,10727641,5
+shinsukeholic,10727641,4
+57036451,10727641,4
+63352248,10727641,4
+67247084,10727641,4
+57670721,10727641,4
+107805569,10727641,4
+27627449,10727641,4
+71679335,10727641,4
+fengt,10727641,4
+yoyocui,10727641,5
+43102408,10727641,4
+2776951,10727641,3
+4118218,10727641,-1
+73421771,10727641,4
+2586114,10727641,4
+yunkou,10727641,4
+26318012,10727641,4
+heitao-1991,10727641,4
+91310062,10727641,4
+87888275,10727641,5
+neixinqiangda,10727641,4
+54441903,10727641,4
+76270911,10727641,4
+62664539,10727641,4
+2052292,10727641,3
+127534515,10727641,3
+8863836,10727641,4
+51100351,10727641,2
+61488498,10727641,5
+brightup,10727641,4
+103648635,10727641,3
+51174120,10727641,3
+coffeestar,10727641,3
+arzoo,10727641,4
+yifanElle,10727641,5
+65549716,10727641,4
+67804762,10727641,5
+ya45010424,10727641,4
+45276725,10727641,4
+pawear,10727641,4
+wang19881205,10727641,5
+74420414,10727641,3
+yiduan,10727641,3
+16048346,10727641,4
+49570590,10727641,4
+2740339,10727641,4
+87842256,10727641,3
+54506812,10727641,3
+47939693,10727641,4
+1110575,10727641,4
+donna12355,10727641,4
+98782610,10727641,5
+1733876,10727641,4
+106343650,10727641,4
+Turismo,10727641,4
+54234447,10727641,4
+50931867,10727641,4
+Lane640,10727641,4
+133497472,10727641,5
+nauyuxSilverdew,10727641,4
+29472366,10727641,5
+4075628,10727641,3
+70090327,10727641,4
+1313926,10727641,5
+3928587,10727641,4
+47458734,10727641,4
+60927256,10727641,4
+Felven,10727641,4
+1813192,10727641,4
+atom41650,10727641,3
+126557589,10727641,4
+nagi_echo-king,10727641,4
+34557052,10727641,4
+121724782,10727641,4
+62079416,10727641,4
+53025886,10727641,4
+jinlinyuyu,10727641,5
+44724666,10727641,5
+guanwaiguicai,10727641,4
+60338101,10727641,4
+69986931,10727641,4
+2882324,10727641,5
+40195223,10727641,5
+120593809,10727641,4
+62478064,10727641,3
+1075678,10727641,3
+73952321,10727641,2
+yxhmm126,10727641,3
+116551398,10727641,4
+cappuccino5026,10727641,4
+42798504,10727641,4
+56578863,10727641,4
+47508082,10727641,5
+yigerenzhu,10727641,4
+Cassiopeia58,10727641,5
+89369000,10727641,4
+47120902,10727641,-1
+Jocelyn119517,10727641,5
+2935013,10727641,3
+4602733,10727641,4
+127766292,10727641,4
+56083884,10727641,5
+mineLingLei,10727641,4
+34728183,10727641,5
+2849990,10727641,3
+linger905,10727641,5
+jiachangting,10727641,4
+67235309,10727641,4
+43589265,10727641,4
+3273386,10727641,3
+4639367,10727641,3
+58759122,10727641,5
+61076987,10727641,4
+57842655,10727641,4
+2809964,10727641,3
+Lovezing,10727641,5
+71269156,10727641,3
+exploremore,10727641,4
+1820229,10727641,4
+43871000,10727641,4
+ccllj,10727641,4
+51697610,10727641,5
+lxklzy,10727641,4
+56920148,10727641,4
+81003990,10727641,4
+85806214,10727641,4
+114088175,10727641,4
+46512598,10727641,4
+blue-Petit,10727641,4
+77636390,10727641,5
+80442790,10727641,3
+32609644,10727641,4
+53864258,10727641,4
+63410162,10727641,4
+2219533,10727641,4
+greenliam,10727641,-1
+spidaman,10727641,5
+lijin329,10727641,4
+1498974,10727641,4
+43345158,10727641,4
+F189cyl,10727641,4
+6184067,10727641,4
+3730460,10727641,4
+103122769,10727641,5
+1902232,10727641,4
+1902232,10727641,4
+3540779,10727641,-1
+62358486,10727641,5
+66696808,10727641,4
+54977613,10727641,5
+74059129,10727641,4
+4655247,10727641,4
+VALLA,10727641,3
+34850767,10727641,4
+85451111,10727641,4
+116539336,10727641,4
+82743334,10727641,4
+126092428,10727641,3
+chouchou0707,10727641,4
+zuiaiyanda,10727641,3
+47964908,10727641,3
+3468574,10727641,4
+65738214,10727641,4
+yeon921,10727641,4
+3219043,10727641,3
+57710980,10727641,5
+81616133,10727641,4
+70149072,10727641,3
+lotte07,10727641,4
+129495494,10727641,4
+Regina749,10727641,5
+qijiejieblue,10727641,4
+120271645,10727641,5
+eyesfromacat,10727641,5
+dou_chi,10727641,-1
+119829181,10727641,4
+61602655,10727641,4
+85008872,10727641,4
+5214442,10727641,4
+40487079,10727641,4
+4421085,10727641,4
+ClaireL,10727641,3
+lolastella,10727641,4
+46317949,10727641,2
+4283602,10727641,4
+37633761,10727641,4
+63382079,10727641,3
+46528082,10727641,5
+3429384,10727641,4
+tls,10727641,3
+mereally,10727641,3
+3539543,10727641,4
+Fish_ego,10727641,4
+69202875,10727641,5
+WyBaby,10727641,3
+houtz,10727641,4
+1375311,10727641,4
+xiaomeng43210,10727641,4
+MoonNoonVivi,10727641,4
+2826239,10727641,4
+31920828,10727641,4
+pengpeng0308,10727641,3
+NAGISHO,10727641,3
+17004593,10727641,4
+52906969,10727641,2
+rmj89,10727641,5
+36669166,10727641,4
+languheshang,10727641,4
+farmerdouban,10727641,4
+lqs0420,10727641,3
+xx_jmlx,10727641,4
+55289792,10727641,4
+49444266,10727641,4
+4132596,10727641,3
+132333627,10727641,3
+tianamber,10727641,5
+126731716,10727641,3
+131104086,10727641,4
+84453809,10727641,4
+67943735,10727641,3
+39520405,10727641,3
+58581987,10727641,4
+49467804,10727641,5
+ran3233,10727641,4
+go_go_go,10727641,4
+morningcuckoo,10727641,4
+120199628,10727641,5
+wendines,10727641,4
+doctorecho,10727641,3
+lidayuanly,10727641,4
+misswho,10727641,4
+slowslowzhang,10727641,4
+57971814,10727641,5
+maximjoker,10727641,3
+56193837,10727641,3
+56911400,10727641,4
+9453784,10727641,4
+53958013,10727641,4
+cxlpanda,10727641,4
+thejl,10727641,4
+47768622,10727641,5
+63481518,10727641,5
+62062477,10727641,4
+52889197,10727641,4
+gsjivy,10727641,3
+4019398,10727641,4
+65111983,10727641,2
+62766562,10727641,4
+laceless,10727641,-1
+kyth,10727641,4
+101890144,10727641,5
+69068097,10727641,5
+107887327,10727641,3
+61171378,10727641,3
+126584609,10727641,3
+70238509,10727641,3
+wzdradon,10727641,5
+T.V.Zoe,10727641,4
+85008065,10727641,4
+suichunjie,10727641,4
+64135957,10727641,4
+3100924,10727641,3
+3889746,10727641,3
+49703181,10727641,5
+urania1102,10727641,5
+59958117,10727641,3
+ceachother,10727641,3
+kiddii,10727641,2
+66825713,10727641,5
+wakaka1986,10727641,3
+62996817,10727641,4
+PulpPaprika,10727641,4
+54782824,10727641,4
+134285579,10727641,4
+51967154,10727641,3
+44483182,10727641,5
+69225702,10727641,4
+60787717,10727641,5
+75874468,10727641,5
+3372273,10727641,4
+43256131,10727641,5
+55885423,10727641,3
+2296297,10727641,1
+52116550,10727641,3
+57874939,10727641,4
+2869651,10727641,-1
+1584930,10727641,4
+66234722,10727641,4
+2668037,10727641,4
+52279001,10727641,4
+45954041,10727641,3
+134026402,10727641,4
+u2bb,10727641,4
+36458786,10727641,5
+53460171,10727641,3
+Wannaly,10727641,5
+wind.B,10727641,-1
+45385294,10727641,4
+67609904,10727641,3
+61346202,10727641,4
+122318855,10727641,5
+miki_ai,10727641,4
+44518903,10727641,4
+majorjohn,10727641,4
+AndreGide,10727641,4
+AndreGide,10727641,4
+75698770,10727641,4
+44376011,10727641,3
+84710118,10727641,4
+lolitahanhan,10727641,5
+binmusiq,10727641,3
+73825906,10727641,4
+38986558,10727641,4
+yaweilee,10727641,4
+28465264,10727641,5
+133864365,10727641,5
+66104038,10727641,4
+weiranwei,10727641,4
+benjemin,10727641,4
+littlemansay,10727641,5
+4527907,10727641,4
+47746906,10727641,4
+61845850,10727641,3
+32737692,10727641,5
+53794054,10727641,4
+37482324,10727641,3
+stardust1030,10727641,3
+kjjane,10727641,4
+sev7n,10727641,3
+3523839,10727641,4
+34753066,10727641,4
+4134812,10727641,4
+15286071,10727641,4
+6821770,10727641,5
+vernasun,10727641,3
+amazeyw2015,10727641,5
+70251090,10727641,3
+66865384,10727641,4
+elvawang,10727641,4
+97840927,10727641,3
+62544966,10727641,3
+49637787,10727641,4
+2054540,10727641,4
+brallow,10727641,4
+MaclovenZD,10727641,3
+41511009,10727641,3
+57724049,10727641,4
+andromeda1020,10727641,3
+didy815,10727641,3
+Xiomara,10727641,3
+73383984,10727641,3
+87636985,10727641,4
+54999818,10727641,5
+edininja,10727641,5
+76274839,10727641,4
+3435112,10727641,4
+94511804,10727641,4
+sleety,10727641,5
+zhaopeng007,10727641,3
+66688383,10727641,-1
+xiaoyasecond,10727641,3
+xmzjjlbc,10727641,4
+32144547,10727641,4
+68918230,10727641,3
+3014946,10727641,5
+yyuan9372,10727641,3
+maharaga,10727641,4
+69938073,10727641,4
+60991971,10727641,3
+126783800,10727641,4
+suh5213,10727641,4
+124018692,10727641,5
+51086058,10727641,4
+qiyueluoying,10727641,4
+phoebefly,10727641,4
+55958826,10727641,-1
+120831081,10727641,4
+1138243,10727641,3
+qszone,10727641,4
+58141773,10727641,4
+4594496,10727641,4
+128529030,10727641,4
+wenjunlwj,10727641,3
+4570225,10727641,3
+milva,10727641,5
+flyoverthecity,10727641,2
+70379849,10727641,4
+47047008,10727641,3
+s_plus,10727641,4
+67683358,10727641,4
+sssoul,10727641,-1
+65015070,10727641,5
+92999358,10727641,4
+Nokia5610,10727641,5
+Elaineyre,10727641,5
+cyb1n,10727641,3
+47187723,10727641,4
+62362677,10727641,4
+SUMOylation,10727641,4
+likecake,10727641,3
+57540462,10727641,4
+113977777,10727641,4
+84920230,10727641,4
+4537211,10727641,4
+122287111,10727641,4
+Freaksister,10727641,4
+66098214,10727641,3
+61515355,10727641,5
+fishgor,10727641,5
+lilyoio,10727641,3
+2341945,10727641,3
+3302864,10727641,4
+63568179,10727641,5
+50826750,10727641,4
+50590088,10727641,4
+92895370,10727641,4
+aboutdistance,10727641,3
+glandlord,10727641,3
+71429906,10727641,3
+56091943,10727641,-1
+36537385,10727641,4
+tangyilun,10727641,4
+85205230,10727641,5
+119631821,10727641,4
+bemature,10727641,3
+sunbox,10727641,3
+47390120,10727641,4
+27091040,10727641,4
+43809998,10727641,3
+65302462,10727641,5
+35468620,10727641,4
+kinjio,10727641,4
+67532317,10727641,5
+53559369,10727641,5
+asa-yan,10727641,3
+58140285,10727641,5
+65127594,10727641,5
+ondin12,10727641,4
+130533154,10727641,4
+36541533,10727641,3
+MAOXIAOCHENG,10727641,3
+86136547,10727641,4
+jisad-popppy,10727641,4
+34694249,10727641,4
+leamenlee,10727641,5
+Tower1214,10727641,4
+GAJI,10727641,3
+shadyjia,10727641,5
+urpk,10727641,4
+graygem,10727641,3
+sesesmovie,10727641,4
+gexiaoshang,10727641,5
+toulaoshi,10727641,4
+2710818,10727641,4
+mayee1121,10727641,4
+1834928,10727641,3
+77676134,10727641,4
+1368090,10727641,4
+kaname,10727641,4
+53717841,10727641,4
+80734129,10727641,4
+59742770,10727641,4
+49710379,10727641,4
+54949916,10727641,4
+memoricry,10727641,5
+1551936,10727641,3
+m19900714,10727641,4
+57104894,10727641,4
+108573841,10727641,4
+Mihiyo,10727641,4
+129158063,10727641,5
+39740830,10727641,4
+akward,10727641,3
+ergeo,10727641,3
+42966769,10727641,4
+129331938,10727641,3
+56066718,10727641,5
+cqz5960,10727641,4
+fragrance123,10727641,3
+61468605,10727641,5
+66779575,10727641,4
+53497780,10727641,4
+niuzhi,10727641,5
+62464125,10727641,4
+39245426,10727641,5
+43680833,10727641,4
+vivid..,10727641,5
+88648524,10727641,4
+63950951,10727641,4
+zxd2010,10727641,4
+sunzeya,10727641,4
+90767458,10727641,4
+47833189,10727641,4
+83985284,10727641,5
+45819377,10727641,5
+75091194,10727641,4
+bigway,10727641,4
+133551897,10727641,3
+auvauva,10727641,3
+57469413,10727641,3
+120989480,10727641,5
+81628425,10727641,3
+meganlee,10727641,4
+bigEggplant,10727641,4
+71868582,10727641,3
+39695667,10727641,4
+ccbadger,10727641,4
+50689721,10727641,3
+62065685,10727641,5
+45789849,10727641,5
+huangjungeng,10727641,4
+lips,10727641,5
+lycheng,10727641,4
+57729721,10727641,4
+4448887,10727641,5
+ahino,10727641,5
+65386803,10727641,3
+76368408,10727641,5
+4368925,10727641,3
+83436610,10727641,3
+128115257,10727641,4
+53108807,10727641,4
+50010079,10727641,3
+3045713,10727641,2
+49518850,10727641,5
+liu_feng,10727641,4
+userzero,10727641,3
+58976262,10727641,4
+katherine22,10727641,4
+81506415,10727641,5
+47889564,10727641,3
+45753459,10727641,4
+81454122,10727641,4
+120654562,10727641,3
+79381337,10727641,4
+58079597,10727641,4
+65628781,10727641,4
+2829310,10727641,4
+carcajou,10727641,4
+72100141,10727641,4
+kidbbmm,10727641,-1
+guolichee,10727641,4
+tm_lover,10727641,2
+58829197,10727641,5
+cl1235,10727641,4
+hualuowushengsi,10727641,5
+Ruthwang,10727641,4
+61366288,10727641,4
+faannn,10727641,3
+48709528,10727641,4
+69131215,10727641,5
+2538567,10727641,3
+57486272,10727641,4
+chengxiaoxi,10727641,3
+sharp.shooter,10727641,4
+zengkun100,10727641,4
+54096060,10727641,4
+62736630,10727641,3
+ash1a1ym,10727641,4
+71859163,10727641,3
+35421368,10727641,4
+ashilyong,10727641,5
+51477454,10727641,3
+MygawaTalk,10727641,4
+hjn21111,10727641,3
+cachecache,10727641,4
+terryoy,10727641,4
+mogu1008,10727641,3
+56384995,10727641,5
+63243356,10727641,3
+BeckhamCai,10727641,3
+52951268,10727641,4
+fwh0324,10727641,4
+113267573,10727641,4
+fancyfanfan77,10727641,4
+xisme,10727641,4
+86208688,10727641,3
+fengxiaohelaoli,10727641,1
+115553730,10727641,5
+46796051,10727641,4
+xiaoyaoworm,10727641,3
+63875799,10727641,5
+9928698,10727641,3
+29116290,10727641,5
+35061353,10727641,4
+57563598,10727641,4
+johnnyshen90,10727641,5
+48613771,10727641,4
+94460148,10727641,3
+81926810,10727641,5
+3705062,10727641,4
+120046148,10727641,4
+bmw,10727641,5
+groupie,10727641,4
+gongqiong,10727641,4
+67153139,10727641,2
+76624951,10727641,4
+nvxiahxx,10727641,5
+49914687,10727641,4
+67182363,10727641,5
+4124299,10727641,4
+62677519,10727641,4
+73340427,10727641,5
+2319090,10727641,4
+121767165,10727641,4
+liuxk99,10727641,4
+51588082,10727641,5
+crystalchris,10727641,3
+67662597,10727641,3
+84965973,10727641,3
+2118404,10727641,4
+get9667pages,10727641,3
+yulebecky,10727641,4
+49041999,10727641,3
+65894356,10727641,4
+muchamucha,10727641,4
+4238363,10727641,3
+88127492,10727641,4
+1783337,10727641,4
+doraeman,10727641,4
+39991885,10727641,4
+solidgal,10727641,4
+64039684,10727641,3
+3712644,10727641,4
+65449858,10727641,4
+an-th7,10727641,3
+yangfu,10727641,5
+87646803,10727641,4
+67606836,10727641,3
+46671950,10727641,4
+50425824,10727641,3
+88998260,10727641,4
+2512704,10727641,-1
+2637449,10727641,4
+homjanon,10727641,5
+beanbag,10727641,4
+77267201,10727641,4
+3671869,10727641,4
+51711108,10727641,4
+ivy_713,10727641,5
+57175016,10727641,5
+lubinfan,10727641,3
+3532653,10727641,4
+108023641,10727641,4
+49370214,10727641,5
+132386823,10727641,4
+119181182,10727641,5
+58908611,10727641,4
+49652958,10727641,5
+foolishrabbit,10727641,4
+28678505,10727641,5
+eill,10727641,-1
+yuyajing1230,10727641,5
+67795566,10727641,4
+rock0323,10727641,3
+50256249,10727641,5
+socordia,10727641,4
+60722327,10727641,3
+3092747,10727641,4
+3925691,10727641,4
+1831722,10727641,4
+dadadayo,10727641,5
+aeol,10727641,5
+122897474,10727641,3
+ilondon,10727641,3
+ilondon,10727641,3
+1734232,10727641,4
+2963179,10727641,4
+BLACK1992222,10727641,4
+2333505,10727641,4
+64092595,10727641,4
+115962378,10727641,4
+67614447,10727641,4
+63777033,10727641,5
+133658801,10727641,4
+irockbunny,10727641,4
+toxichoco,10727641,4
+iumbrella,10727641,3
+131606948,10727641,3
+yocrazy,10727641,4
+lanego,10727641,4
+wonder_u,10727641,5
+43360069,10727641,4
+38989368,10727641,3
+1840916,10727641,4
+84938785,10727641,3
+3933863,10727641,4
+39525517,10727641,3
+67977752,10727641,3
+62874787,10727641,3
+62434188,10727641,5
+yusanlv,10727641,4
+51229713,10727641,4
+4565301,10727641,4
+xin0725,10727641,3
+Chappell.Wat,10727641,4
+wengxiaolan,10727641,5
+64996012,10727641,-1
+jixiang656,10727641,4
+3216288,10727641,3
+52582150,10727641,5
+lumo93,10727641,5
+tor23,10727641,3
+summer000000,10727641,4
+4415376,10727641,5
+hollydoyle,10727641,4
+zhuhaizidaifan,10727641,3
+saradipity,10727641,5
+jack_chenxiaotu,10727641,3
+41506911,10727641,5
+3670661,10727641,4
+2401872,10727641,4
+ALBERTYI,10727641,4
+83927943,10727641,5
+bxg555,10727641,-1
+graceberyl,10727641,4
+49287269,10727641,3
+Ac_heron,10727641,3
+59175479,10727641,3
+60865096,10727641,4
+44303270,10727641,4
+50835991,10727641,3
+65027660,10727641,5
+1830523,10727641,3
+71972126,10727641,5
+ipodmelody,10727641,3
+115618317,10727641,5
+49443595,10727641,5
+Luozixia,10727641,5
+13148640,10727641,4
+130828999,10727641,4
+Cherryzuo,10727641,3
+2030100,10727641,4
+wuyewuyu,10727641,5
+80044238,10727641,4
+60968365,10727641,4
+hollyang,10727641,5
+6352011,10727641,3
+fengbeer,10727641,3
+wonderer,10727641,4
+88339806,10727641,4
+49983823,10727641,3
+coco921,10727641,5
+laixiaccc,10727641,3
+52413397,10727641,5
+52413397,10727641,5
+51928372,10727641,3
+53652105,10727641,3
+doris_1994,10727641,5
+54942314,10727641,4
+48499183,10727641,3
+behindtheveil,10727641,4
+z-h-7,10727641,3
+69805658,10727641,4
+4157643,10727641,4
+124132685,10727641,4
+4664430,10727641,4
+130618048,10727641,3
+112007778,10727641,4
+jywpl,10727641,4
+TAKITANI,10727641,4
+32785698,10727641,4
+41848345,10727641,3
+39233007,10727641,5
+133578825,10727641,4
+66345910,10727641,3
+121536434,10727641,5
+49922134,10727641,4
+jakehkj,10727641,3
+84832389,10727641,4
+58569504,10727641,5
+68033214,10727641,4
+53257612,10727641,4
+68090176,10727641,5
+1499246,10727641,5
+winna91,10727641,4
+3914860,10727641,4
+Pallas_Athena,10727641,3
+48705699,10727641,4
+46917427,10727641,4
+ijose,10727641,4
+58453044,10727641,5
+105306474,10727641,4
+lovelyting58,10727641,4
+63583844,10727641,4
+41462661,10727641,5
+39518332,10727641,4
+PaperBear,10727641,4
+21024728,10727641,4
+wilhelmina,10727641,4
+43683389,10727641,5
+3573377,10727641,5
+79743002,10727641,3
+63646607,10727641,4
+4244492,10727641,3
+twxpda,10727641,2
+66545348,10727641,4
+127008939,10727641,4
+1252327,10727641,4
+chidaoshu,10727641,4
+sysop,10727641,4
+xingmuduishui,10727641,4
+49154510,10727641,4
+nanoyi,10727641,3
+stompbabe,10727641,4
+132505335,10727641,4
+131958507,10727641,3
+zxman386,10727641,4
+54151974,10727641,5
+MoQin,10727641,3
+qianhuibaizhuan,10727641,5
+shmilykz,10727641,4
+doloresding,10727641,4
+jerrycan,10727641,5
+Mun.,10727641,4
+73159539,10727641,4
+MRCellardoor,10727641,4
+VIPP,10727641,3
+104985254,10727641,3
+35002027,10727641,4
+57901422,10727641,4
+hyapple,10727641,4
+kweer,10727641,4
+huoLayfeng,10727641,4
+34177163,10727641,4
+werder100,10727641,4
+gachapin1103,10727641,4
+shen3yang,10727641,4
+Since,10727641,5
+119100002,10727641,3
+54513758,10727641,4
+64291202,10727641,4
+3812638,10727641,-1
+christie88cn,10727641,5
+lfj1016,10727641,3
+57991654,10727641,4
+xiaopang2671,10727641,-1
+45324893,10727641,2
+89934202,10727641,3
+49188433,10727641,3
+65315119,10727641,5
+46350498,10727641,4
+109038183,10727641,4
+58252389,10727641,4
+liquor,10727641,4
+2530592,10727641,4
+113088428,10727641,3
+ring_ring,10727641,4
+60421761,10727641,5
+50122124,10727641,5
+stabrid,10727641,5
+57867436,10727641,5
+83746312,10727641,3
+72596766,10727641,4
+46634841,10727641,5
+50763897,10727641,2
+baliang,10727641,4
+80954767,10727641,5
+102626192,10727641,4
+66261518,10727641,5
+onelast,10727641,4
+102931240,10727641,4
+Cidane1991,10727641,5
+yishenmanli,10727641,4
+58286468,10727641,4
+29958349,10727641,4
+121557291,10727641,4
+97674151,10727641,3
+onlymengya,10727641,4
+76418586,10727641,3
+beckham7,10727641,4
+57213056,10727641,5
+3068912,10727641,2
+61191191,10727641,3
+39875217,10727641,4
+88695508,10727641,5
+ashes,10727641,3
+cheryl.12,10727641,4
+42880272,10727641,5
+IncredibleWoody,10727641,4
+73542789,10727641,3
+babe_mo,10727641,4
+mattviola,10727641,5
+leeois,10727641,4
+ningxixi,10727641,4
+66559917,10727641,-1
+124595459,10727641,4
+akin11,10727641,3
+1319299,10727641,4
+69930229,10727641,3
+1623664,10727641,3
+77847494,10727641,4
+43594765,10727641,4
+lime-water,10727641,3
+skin-,10727641,5
+61326336,10727641,4
+49034223,10727641,4
+2826167,10727641,3
+aprilray,10727641,4
+Total-recall,10727641,3
+58624199,10727641,3
+forlang,10727641,-1
+22645353,10727641,4
+75416298,10727641,2
+s1219snow,10727641,4
+45920567,10727641,4
+35964817,10727641,4
+godbewithme,10727641,3
+xfjzoe,10727641,3
+2982439,10727641,-1
+1475172,10727641,4
+49587059,10727641,3
+demondeng,10727641,4
+liujiao808,10727641,3
+Isa.bella,10727641,3
+yyq811,10727641,4
+tutusky,10727641,4
+sophiafei,10727641,4
+127052076,10727641,5
+4805061,10727641,5
+daifuzhai,10727641,3
+46706719,10727641,5
+1857885,10727641,4
+crystin,10727641,3
+Elfiny,10727641,4
+yaossss,10727641,4
+52992118,10727641,5
+33399271,10727641,4
+meow-3-,10727641,-1
+44189745,10727641,3
+97977278,10727641,3
+14745838,10727641,3
+friendsay66,10727641,3
+61830049,10727641,-1
+50720620,10727641,4
+59570666,10727641,4
+bramblesinwind,10727641,4
+64161171,10727641,4
+39974163,10727641,3
+Hyke,10727641,3
+64755839,10727641,3
+129691770,10727641,3
+53861958,10727641,3
+63086434,10727641,3
+56596051,10727641,4
+tracyliang223,10727641,4
+4067420,10727641,3
+68333051,10727641,4
+68199229,10727641,4
+60733451,10727641,4
+zhongshanaoli,10727641,4
+55937876,10727641,5
+51472613,10727641,4
+51561756,10727641,3
+48545858,10727641,4
+37009079,10727641,4
+4401243,10727641,4
+58924080,10727641,3
+59872521,10727641,5
+81045053,10727641,4
+50228732,10727641,3
+ingwerstein,10727641,4
+69248100,10727641,4
+wyqstar,10727641,3
+tmz1127,10727641,4
+129087038,10727641,4
+38207955,10727641,4
+Sparkyue,10727641,4
+61060682,10727641,5
+66824818,10727641,4
+58629376,10727641,3
+zoerance,10727641,3
+aarcher,10727641,4
+1487165,10727641,4
+52904420,10727641,4
+97735931,10727641,4
+piggy007,10727641,4
+jellysmiling,10727641,3
+2655191,10727641,4
+52198048,10727641,5
+awooda,10727641,4
+51568494,10727641,4
+Keemen,10727641,2
+1741905,10727641,4
+4527041,10727641,3
+44866153,10727641,3
+51202453,10727641,2
+125411012,10727641,4
+4158652,10727641,3
+poisoncake,10727641,4
+58289551,10727641,5
+47671840,10727641,5
+49499844,10727641,3
+zhaoliqun,10727641,4
+3105123,10727641,5
+4590914,10727641,5
+neflower,10727641,5
+danaest,10727641,5
+51152974,10727641,4
+quzheng1986,10727641,4
+ztl-poppy,10727641,4
+aime30,10727641,4
+51786034,10727641,4
+wujingchao92,10727641,3
+egeria1225,10727641,4
+97313895,10727641,3
+81740258,10727641,-1
+72573288,10727641,4
+97320944,10727641,4
+85239246,10727641,4
+VendettaChild,10727641,3
+61134295,10727641,5
+48229136,10727641,4
+53220096,10727641,3
+susan_chen,10727641,4
+rachelseed,10727641,3
+alj,10727641,4
+58233650,10727641,4
+Sudanese,10727641,2
+6576481,10727641,3
+lanyuhhh1,10727641,3
+2626046,10727641,4
+hecategk,10727641,3
+lovemobiledev,10727641,5
+apple3558,10727641,3
+61579146,10727641,4
+47152561,10727641,3
+71877767,10727641,3
+70242980,10727641,5
+ccchow,10727641,4
+JieloveMovie,10727641,4
+67781222,10727641,4
+79111761,10727641,5
+46912803,10727641,5
+62961595,10727641,3
+71281519,10727641,4
+longlastingfad,10727641,4
+2980674,10727641,3
+77881111,10727641,3
+77213278,10727641,5
+47821826,10727641,4
+88193100,10727641,2
+langyayue,10727641,3
+66627403,10727641,4
+xwj0709,10727641,4
+xwj0709,10727641,4
+45283318,10727641,4
+2320060,10727641,5
+53708555,10727641,5
+70990506,10727641,4
+losed,10727641,4
+emome,10727641,4
+43290072,10727641,5
+Bobbyency,10727641,4
+RUOER,10727641,4
+SteelZhao,10727641,4
+umaymaymay,10727641,3
+116007981,10727641,4
+dududuiloveyou,10727641,4
+85075595,10727641,3
+songchunxue,10727641,5
+3198636,10727641,3
+3502559,10727641,5
+memorycatcher,10727641,4
+dreamsafari,10727641,3
+dreamsafari,10727641,3
+59149005,10727641,3
+kin090909,10727641,-1
+zhangleyuan,10727641,3
+108077404,10727641,4
+F1vese7enone,10727641,3
+84612888,10727641,5
+76497080,10727641,5
+kenn,10727641,4
+Joycejingtong,10727641,5
+50487557,10727641,5
+70055114,10727641,4
+72549209,10727641,4
+fatfay,10727641,3
+2764571,10727641,4
+52945004,10727641,3
+70987947,10727641,5
+2307407,10727641,4
+damon3liz,10727641,4
+68586661,10727641,4
+79456169,10727641,2
+72984075,10727641,3
+35994820,10727641,5
+46881086,10727641,5
+53872084,10727641,5
+zhhongbo,10727641,4
+50451911,10727641,4
+3209634,10727641,5
+loverenezh,10727641,4
+fanny_lingf,10727641,5
+34834989,10727641,4
+ViamoLee,10727641,3
+21133666,10727641,3
+etta26,10727641,5
+73909736,10727641,4
+30626996,10727641,3
+yasonyyx,10727641,3
+doris0717,10727641,4
+47227699,10727641,5
+moyujushi,10727641,3
+62419320,10727641,5
+53152941,10727641,3
+52721666,10727641,5
+48892199,10727641,2
+40395493,10727641,4
+128066557,10727641,4
+51262782,10727641,2
+83164836,10727641,4
+angieangie,10727641,4
+JCJC,10727641,4
+xiahkim,10727641,3
+lovelaa,10727641,4
+cjiaojiao,10727641,5
+atengbrilliance,10727641,4
+127365822,10727641,4
+p_travel,10727641,4
+34940692,10727641,4
+93091639,10727641,5
+2696668,10727641,5
+119362745,10727641,4
+27498320,10727641,4
+42625255,10727641,5
+EchoofFei,10727641,4
+34124820,10727641,5
+43333979,10727641,4
+49607126,10727641,4
+66968677,10727641,4
+64330998,10727641,3
+60648596,10727641,5
+joko14,10727641,4
+128140278,10727641,4
+66159896,10727641,4
+70744313,10727641,3
+queensmary,10727641,4
+harukimlee,10727641,3
+maidangdang,10727641,5
+43539810,10727641,4
+62488679,10727641,5
+27951374,10727641,4
+levid,10727641,4
+108313440,10727641,5
+52299023,10727641,3
+kira1010,10727641,4
+81771803,10727641,3
+pekingcat,10727641,3
+74700188,10727641,4
+track12345,10727641,4
+121925373,10727641,4
+cijunbutileng,10727641,2
+66803513,10727641,4
+133188364,10727641,4
+119203760,10727641,4
+weipengcheng,10727641,1
+sarayixin,10727641,4
+aik_xy,10727641,4
+42799171,10727641,3
+58512408,10727641,4
+65086127,10727641,5
+soulchang,10727641,4
+49587951,10727641,3
+69692421,10727641,4
+killrec,10727641,3
+54131572,10727641,3
+91350742,10727641,4
+isaakfvkampfer,10727641,4
+120266874,10727641,4
+52874024,10727641,3
+1095652,10727641,3
+91521812,10727641,3
+39093072,10727641,3
+58597123,10727641,4
+1886453,10727641,5
+65879642,10727641,4
+2399727,10727641,4
+123361030,10727641,5
+86708177,10727641,4
+luvmariah,10727641,5
+36108304,10727641,3
+YP2013,10727641,3
+3010194,10727641,4
+UchihaObito,10727641,4
+3254520,10727641,5
+51322683,10727641,3
+westleaf,10727641,4
+85868315,10727641,3
+55941536,10727641,4
+kmars,10727641,4
+Isabella_Meow,10727641,5
+4342372,10727641,3
+yanwo,10727641,4
+125474588,10727641,4
+xianqiejiao,10727641,5
+49267852,10727641,4
+48891474,10727641,4
+yuyang1990720,10727641,4
+3514603,10727641,3
+111180716,10727641,4
+lingchenmorning,10727641,5
+49826646,10727641,3
+andyylx,10727641,3
+1965898,10727641,2
+80893099,10727641,4
+33960706,10727641,3
+1368116,10727641,4
+laLavande,10727641,4
+candaes,10727641,5
+65442139,10727641,4
+thisisstan,10727641,5
+miaoxiaof,10727641,4
+57831478,10727641,3
+3796003,10727641,4
+azaleahu,10727641,3
+thoris,10727641,5
+goldendali,10727641,5
+july10,10727641,5
+81224431,10727641,5
+65364016,10727641,3
+100390920,10727641,4
+kazuya13,10727641,-1
+121389553,10727641,4
+57271651,10727641,5
+49746134,10727641,4
+sevenlan,10727641,4
+xingren912,10727641,4
+57440805,10727641,5
+50785660,10727641,5
+bingoyy,10727641,5
+maggietan,10727641,5
+Andalou,10727641,3
+iSaw11021,10727641,4
+50928174,10727641,4
+103917417,10727641,4
+29123460,10727641,4
+yjjhyxy,10727641,5
+4249661,10727641,4
+34087859,10727641,3
+16740582,10727641,4
+else1104,10727641,4
+65810750,10727641,4
+rubage,10727641,4
+80681000,10727641,4
+60223940,10727641,4
+killeren,10727641,4
+43926422,10727641,4
+58081648,10727641,3
+51387684,10727641,4
+carolilac,10727641,4
+101206978,10727641,3
+vivabarca,10727641,4
+1923916,10727641,4
+querr,10727641,5
+qingbaba,10727641,4
+38711184,10727641,4
+125498604,10727641,5
+pennylonelyking,10727641,4
+42270904,10727641,3
+52763266,10727641,4
+Huxuan0522,10727641,3
+bais0630,10727641,3
+3111680,10727641,3
+3111680,10727641,3
+2036689,10727641,5
+132299108,10727641,5
+duanduan520,10727641,5
+128200926,10727641,3
+53404477,10727641,4
+3006521,10727641,4
+Gau,10727641,5
+51159705,10727641,4
+45839023,10727641,4
+4812436,10727641,4
+kiara1988,10727641,4
+zhouyuan0124,10727641,4
+anguijia,10727641,3
+87476374,10727641,5
+cutebbluckygirl,10727641,3
+52823077,10727641,3
+1211567,10727641,4
+qixiaotun,10727641,5
+79841047,10727641,2
+75555964,10727641,5
+133899314,10727641,4
+84704746,10727641,4
+4286679,10727641,3
+52801321,10727641,4
+53721569,10727641,4
+29574917,10727641,4
+sweather,10727641,5
+3649520,10727641,5
+114422467,10727641,5
+57989017,10727641,5
+lotusjunepp,10727641,3
+alexDlee,10727641,4
+minilbiss,10727641,3
+83619054,10727641,3
+micmoo,10727641,4
+26889158,10727641,4
+brahms49,10727641,4
+1763981,10727641,5
+3929718,10727641,4
+yunyunk,10727641,4
+1332702,10727641,3
+liufangni,10727641,4
+127076902,10727641,3
+ClaireDeblanc,10727641,4
+xibanyayidong,10727641,4
+67528548,10727641,4
+vince717,10727641,4
+zeph1462,10727641,4
+64705544,10727641,5
+46678115,10727641,4
+cuikunjia,10727641,4
+loveulovelife,10727641,3
+58020106,10727641,5
+outstandinger,10727641,4
+45959791,10727641,3
+2760131,10727641,3
+41512337,10727641,4
+YYDEE,10727641,3
+obliviosage,10727641,3
+84947801,10727641,4
+42886827,10727641,4
+urwill,10727641,4
+15762102,10727641,2
+1520223,10727641,3
+64972660,10727641,3
+forlig,10727641,4
+6987390,10727641,4
+Yokizyz,10727641,4
+59340784,10727641,3
+ioricg,10727641,5
+130945059,10727641,4
+64671678,10727641,4
+ninosun,10727641,3
+shenmism,10727641,5
+60488216,10727641,4
+35780118,10727641,4
+candicechang,10727641,4
+131795789,10727641,3
+qyf620,10727641,4
+10287741,10727641,4
+49950062,10727641,4
+3706500,10727641,5
+38632566,10727641,4
+48065174,10727641,4
+67296353,10727641,4
+47070736,10727641,5
+49036730,10727641,3
+45851871,10727641,3
+46891725,10727641,4
+122060330,10727641,4
+55373134,10727641,3
+hanxiaonuan,10727641,4
+46359852,10727641,5
+lbc21,10727641,5
+that555,10727641,4
+53014985,10727641,3
+UD_NaZi,10727641,3
+49166988,10727641,3
+79176271,10727641,5
+SR-Vision,10727641,4
+76018725,10727641,4
+VampirX,10727641,5
+thinson,10727641,4
+21606016,10727641,3
+elisalaura,10727641,4
+jakeman,10727641,4
+14088916,10727641,3
+post-rocker,10727641,3
+25585138,10727641,5
+84962977,10727641,3
+44761018,10727641,4
+58207796,10727641,4
+28582685,10727641,4
+24263050,10727641,3
+terenceyibo,10727641,4
+41686662,10727641,3
+4247179,10727641,3
+27157362,10727641,4
+119296720,10727641,5
+steinyxu,10727641,4
+65347418,10727641,5
+oldwolfnwf,10727641,5
+DY9174,10727641,5
+47336635,10727641,3
+72256181,10727641,4
+65560821,10727641,3
+91432391,10727641,5
+sophiee,10727641,4
+78845373,10727641,3
+yueyuebetty,10727641,-1
+xiaoteddy,10727641,3
+Sovee091,10727641,3
+67773111,10727641,4
+2834898,10727641,4
+joysu,10727641,4
+129214543,10727641,4
+49110008,10727641,3
+babyamanda,10727641,3
+116049427,10727641,3
+Lieutenant_Lu,10727641,3
+chocoqiao,10727641,4
+58012896,10727641,3
+4342517,10727641,4
+kicker10,10727641,3
+rokuko1859,10727641,5
+1256699,10727641,4
+arsene,10727641,4
+50797855,10727641,4
+80127380,10727641,5
+53050056,10727641,3
+wllh2345,10727641,4
+122701852,10727641,4
+4047603,10727641,5
+63227383,10727641,3
+hydellen,10727641,4
+isheldon,10727641,5
+zhaoqingyue,10727641,3
+116290357,10727641,3
+71566080,10727641,3
+ypvip,10727641,3
+lachie,10727641,4
+42680639,10727641,3
+92245110,10727641,5
+ViviaChen,10727641,4
+35365939,10727641,4
+lacarosado,10727641,3
+65173505,10727641,3
+73008479,10727641,4
+ilovealien1128,10727641,5
+summertalking,10727641,3
+1022788,10727641,3
+josieyang,10727641,4
+55997229,10727641,4
+63340395,10727641,5
+52157663,10727641,3
+40452255,10727641,3
+61937821,10727641,4
+yoky,10727641,4
+laneddy,10727641,4
+runrunny,10727641,5
+2807823,10727641,4
+dzone,10727641,4
+55608502,10727641,3
+yangyq,10727641,5
+1762955,10727641,4
+2260384,10727641,3
+58083307,10727641,4
+phonexu,10727641,4
+2722876,10727641,2
+63264576,10727641,5
+48502234,10727641,2
+wuf1990,10727641,4
+59942467,10727641,4
+49488588,10727641,3
+2144303,10727641,4
+nice4ever,10727641,3
+mcgregor,10727641,4
+10045748,10727641,4
+maorongqiu,10727641,4
+75760992,10727641,4
+102626556,10727641,4
+marxpayne,10727641,4
+2715466,10727641,-1
+sanheng,10727641,3
+91457550,10727641,4
+67771925,10727641,3
+120736500,10727641,5
+51139979,10727641,5
+62350026,10727641,5
+jinyuji,10727641,3
+DERRICK_ROSE,10727641,4
+67225686,10727641,5
+yidan816,10727641,5
+53491052,10727641,3
+66168101,10727641,4
+102718430,10727641,3
+ashincheer,10727641,4
+cindol,10727641,5
+Heroic-Deborah,10727641,3
+Big2BMan,10727641,4
+scarllet1984,10727641,4
+shaoqiongyu,10727641,4
+1011858,10727641,5
+67962053,10727641,4
+78632762,10727641,4
+JJY1337,10727641,4
+103178477,10727641,5
+127847268,10727641,5
+52593974,10727641,4
+sixprecepts,10727641,3
+Bennyzjq,10727641,4
+HarryBabel,10727641,3
+sunnyleaves,10727641,4
+angelhor,10727641,4
+1033926,10727641,4
+121097634,10727641,4
+dreamrain6,10727641,4
+103146964,10727641,3
+2846758,10727641,4
+85112816,10727641,2
+102838934,10727641,3
+47887275,10727641,5
+wzjzxgj,10727641,-1
+48194650,10727641,5
+43862674,10727641,5
+CRazYBoX,10727641,4
+whenwilli,10727641,5
+MonaChou0720,10727641,3
+43188072,10727641,5
+48252121,10727641,3
+37945741,10727641,4
+56797290,10727641,4
+46493467,10727641,2
+41006128,10727641,3
+88369332,10727641,5
+54531313,10727641,3
+125112279,10727641,4
+60645894,10727641,4
+7085324,10727641,4
+49301222,10727641,4
+36282621,10727641,5
+tinmiko,10727641,5
+72122656,10727641,5
+dawnyan,10727641,5
+52001180,10727641,4
+4704862,10727641,3
+cxxloveavril,10727641,4
+63853626,10727641,4
+45255137,10727641,4
+28695473,10727641,5
+121479444,10727641,5
+73456502,10727641,1
+70027321,10727641,4
+51454938,10727641,5
+QQSXXXR,10727641,3
+51571110,10727641,3
+43903214,10727641,4
+53419547,10727641,4
+joyceshan,10727641,4
+joyceshan,10727641,4
+44514155,10727641,3
+stknight,10727641,4
+119253554,10727641,4
+120625991,10727641,3
+Mignonette-W,10727641,4
+44329176,10727641,4
+36822469,10727641,4
+mimizang,10727641,4
+whosoever,10727641,3
+yuanmavis,10727641,3
+31592783,10727641,5
+48495296,10727641,5
+MaDMinD,10727641,3
+61999118,10727641,5
+58741495,10727641,5
+lene1207,10727641,5
+notoshaz,10727641,4
+50268348,10727641,4
+typezero,10727641,3
+capricornslythe,10727641,4
+xxffffxx,10727641,4
+2381427,10727641,5
+57607946,10727641,3
+2614716,10727641,4
+38191056,10727641,3
+37736612,10727641,4
+1456492,10727641,4
+40201382,10727641,4
+37524402,10727641,5
+115602293,10727641,5
+58249428,10727641,4
+lolitayan,10727641,3
+blue1997,10727641,4
+57445690,10727641,3
+55324515,10727641,4
+50179673,10727641,4
+sjzqzkn,10727641,4
+mado1983,10727641,4
+49745538,10727641,4
+67348238,10727641,4
+64704924,10727641,4
+47216352,10727641,4
+4163899,10727641,5
+ywbobo,10727641,3
+dyinginthemoon,10727641,3
+68166546,10727641,3
+79262344,10727641,4
+Mobius.wang,10727641,5
+124632875,10727641,4
+2552257,10727641,5
+lily0001,10727641,4
+115695650,10727641,4
+brightlook,10727641,4
+65995981,10727641,3
+mayday_paopao,10727641,3
+63072650,10727641,4
+qino,10727641,4
+4587643,10727641,4
+ye-ah,10727641,4
+foryoungheart,10727641,5
+75624333,10727641,4
+LHone,10727641,3
+46735351,10727641,4
+liebedai,10727641,4
+hiddenmonkey,10727641,4
+2461588,10727641,4
+102997764,10727641,5
+122139957,10727641,4
+55852131,10727641,5
+51132610,10727641,4
+88077335,10727641,5
+128675043,10727641,5
+zlpEcho,10727641,4
+4276720,10727641,5
+36681127,10727641,3
+4114969,10727641,3
+lingaoyi,10727641,5
+5102238,10727641,5
+thekk,10727641,3
+subaru244,10727641,4
+44738037,10727641,3
+48116599,10727641,5
+133485545,10727641,4
+pzaiqueen,10727641,4
+74601156,10727641,3
+43474774,10727641,3
+87884717,10727641,3
+jin811089856,10727641,5
+61189415,10727641,3
+64563247,10727641,3
+76994083,10727641,4
+sE_Lc7,10727641,4
+6278260,10727641,4
+wuzouhuanghun,10727641,4
+Rainlivelin,10727641,4
+47368327,10727641,4
+48950860,10727641,3
+61313201,10727641,5
+melynda,10727641,3
+17628651,10727641,4
+Aroulin,10727641,4
+52174423,10727641,5
+120043439,10727641,4
+74412119,10727641,4
+xueshanfeitu,10727641,5
+52758065,10727641,4
+54443004,10727641,5
+sherry0425,10727641,4
+53176363,10727641,4
+47323388,10727641,-1
+52763172,10727641,4
+nbcc,10727641,4
+27710094,10727641,4
+monkeydoll,10727641,4
+ilovetaylor,10727641,4
+carey1217,10727641,5
+coolgun,10727641,5
+63253187,10727641,5
+53381423,10727641,3
+freeandwind,10727641,4
+131333953,10727641,5
+131969516,10727641,4
+skyFei,10727641,3
+yoanayy,10727641,4
+3739572,10727641,5
+zWalle,10727641,3
+magicxiaobi,10727641,4
+misue,10727641,4
+38718376,10727641,4
+41198675,10727641,-1
+5747784,10727641,4
+48521258,10727641,4
+2548584,10727641,5
+104822554,10727641,4
+1743599,10727641,3
+lovelydoria,10727641,4
+54537877,10727641,3
+smilezhangjian,10727641,3
+saraystang,10727641,4
+104777463,10727641,4
+Kostova,10727641,3
+LoveB4ever,10727641,4
+120802499,10727641,5
+120099521,10727641,4
+65881207,10727641,5
+2986383,10727641,4
+toraz,10727641,4
+91609218,10727641,4
+Ophelia14,10727641,4
+63805238,10727641,4
+1447900,10727641,4
+bikibiki,10727641,5
+zhangxuncc,10727641,3
+77094909,10727641,4
+58934879,10727641,4
+ccinder,10727641,-1
+fuloli,10727641,4
+emilyvc,10727641,5
+gwaihir,10727641,4
+chercherlukia,10727641,4
+69248321,10727641,5
+132217575,10727641,5
+48273445,10727641,5
+cnmbdouban,10727641,3
+80768370,10727641,4
+72571342,10727641,4
+123504720,10727641,5
+howlformousai,10727641,2
+1692752,10727641,5
+garymaycry,10727641,4
+gxf,10727641,4
+58521633,10727641,5
+88079450,10727641,4
+69024870,10727641,4
+127802556,10727641,4
+wandan,10727641,2
+1371348,10727641,4
+46954285,10727641,4
+rontgen,10727641,4
+4464824,10727641,3
+55507508,10727641,4
+1412545,10727641,4
+elliry,10727641,4
+nigelzeng,10727641,4
+hye-c,10727641,4
+126375178,10727641,4
+22725672,10727641,4
+Daryl,10727641,3
+58899302,10727641,4
+82974666,10727641,4
+dancylon,10727641,4
+RebeccaRan,10727641,4
+tupac,10727641,4
+77622866,10727641,4
+63291912,10727641,4
+39957958,10727641,4
+44555140,10727641,4
+Hola_Nana,10727641,2
+chuanshu,10727641,4
+82230727,10727641,4
+44669555,10727641,3
+58550778,10727641,3
+79008626,10727641,4
+65026592,10727641,5
+J_Seraph,10727641,4
+4627411,10727641,3
+44794793,10727641,5
+pandatou,10727641,3
+beramode,10727641,4
+rienge,10727641,4
+2679870,10727641,3
+58087275,10727641,4
+rou3lives,10727641,4
+59126747,10727641,5
+36619379,10727641,3
+133958903,10727641,4
+1424355,10727641,4
+68401918,10727641,4
+81319731,10727641,4
+81319731,10727641,4
+niangaoshou,10727641,5
+losacos,10727641,3
+80659101,10727641,4
+38024916,10727641,4
+pscjanet,10727641,4
+fantasy507,10727641,4
+132422839,10727641,4
+31814184,10727641,3
+127998296,10727641,5
+taidy89,10727641,4
+elegantcrazer,10727641,5
+37976069,10727641,5
+violetsnow,10727641,5
+2180501,10727641,3
+67615408,10727641,5
+56885500,10727641,4
+MrQuestion,10727641,5
+tiffanyji,10727641,5
+2562419,10727641,4
+yiyiyangwish,10727641,3
+52408297,10727641,5
+116213668,10727641,5
+131016761,10727641,5
+57886651,10727641,5
+126202371,10727641,4
+83192271,10727641,4
+fan_1220,10727641,3
+100313446,10727641,4
+45541495,10727641,3
+omi0604,10727641,3
+Vivianabout,10727641,3
+86193760,10727641,3
+lvlvlvl,10727641,3
+133077198,10727641,5
+58189352,10727641,4
+58977127,10727641,4
+60882809,10727641,5
+87673408,10727641,4
+IantoJones,10727641,4
+45042581,10727641,3
+ameliefei,10727641,4
+7669558,10727641,4
+18045662,10727641,4
+81212174,10727641,5
+47604910,10727641,4
+46820034,10727641,5
+63147654,10727641,4
+orczhou,10727641,4
+79118365,10727641,4
+134446098,10727641,5
+22276083,10727641,5
+21042861,10727641,5
+52074740,10727641,3
+marcamoy,10727641,4
+SummerChen,10727641,4
+16689035,10727641,5
+69542619,10727641,-1
+121650272,10727641,4
+43372151,10727641,3
+Singyi,10727641,4
+4538292,10727641,4
+75865676,10727641,4
+72699504,10727641,5
+3356601,10727641,4
+2767001,10727641,4
+91649977,10727641,5
+kellyhuang,10727641,4
+4132864,10727641,3
+85733818,10727641,4
+hongdoushanuomi,10727641,4
+simplyme,10727641,-1
+abezhang,10727641,5
+SUNEEMA,10727641,4
+59638137,10727641,5
+ailuwan,10727641,4
+catigloo,10727641,4
+37153252,10727641,4
+122385818,10727641,4
+49890390,10727641,4
+eightsbar,10727641,4
+49382185,10727641,3
+75545538,10727641,4
+45032378,10727641,4
+32541723,10727641,4
+56526640,10727641,4
+Alienzhao,10727641,4
+46944255,10727641,5
+122725527,10727641,5
+54864069,10727641,4
+106794129,10727641,-1
+Thing2,10727641,-1
+39789528,10727641,4
+king1099,10727641,3
+ccpamela,10727641,5
+jj-lee,10727641,4
+78489673,10727641,-1
+chunjuantaihou,10727641,4
+126818106,10727641,3
+41806618,10727641,5
+tsubomi_sun,10727641,3
+double1004,10727641,5
+81944836,10727641,3
+2787490,10727641,4
+3843442,10727641,4
+graceoklove,10727641,4
+youyeqiuxin,10727641,3
+37168028,10727641,3
+46911994,10727641,5
+Jh1205,10727641,5
+2768499,10727641,3
+gardeniasky,10727641,4
+2467998,10727641,4
+2056209,10727641,3
+jianinglee,10727641,2
+66890717,10727641,3
+4749363,10727641,4
+62852599,10727641,5
+102436486,10727641,4
+johnqz874,10727641,4
+tinyshmily,10727641,5
+lonelysin,10727641,4
+4855309,10727641,2
+52146606,10727641,4
+anxiao,10727641,3
+90236615,10727641,4
+54150368,10727641,3
+48474852,10727641,5
+133239175,10727641,3
+64173822,10727641,5
+shenghui,10727641,4
+80039937,10727641,4
+53364915,10727641,3
+41288485,10727641,4
+62941951,10727641,3
+34108808,10727641,5
+rechyo,10727641,3
+51587083,10727641,3
+49569915,10727641,4
+77887306,10727641,4
+28169414,10727641,2
+june.q,10727641,4
+65611753,10727641,5
+2890910,10727641,3
+1554569,10727641,4
+68191014,10727641,3
+2906873,10727641,5
+83773769,10727641,4
+4750967,10727641,3
+fdshanqun,10727641,5
+57886275,10727641,4
+102607701,10727641,3
+loveday1023,10727641,4
+125942088,10727641,4
+zhtianyu,10727641,4
+maomixiaosu,10727641,4
+2772729,10727641,4
+angelliuzhihui,10727641,5
+stella930,10727641,4
+54365638,10727641,5
+87558584,10727641,4
+52415244,10727641,5
+4314733,10727641,3
+59181374,10727641,5
+80759115,10727641,3
+85664932,10727641,4
+vmile,10727641,4
+4040560,10727641,4
+49855278,10727641,5
+4909186,10727641,3
+2551136,10727641,5
+57584504,10727641,4
+54639887,10727641,3
+2635787,10727641,3
+63400230,10727641,4
+Amazire,10727641,4
+Awewonderland,10727641,5
+73064038,10727641,4
+22176088,10727641,5
+SkYbLuEPInKxxxx,10727641,3
+4639431,10727641,5
+38441695,10727641,4
+47687839,10727641,4
+79119121,10727641,3
+gusuxiaoqiao,10727641,5
+65981408,10727641,4
+qzl,10727641,4
+90187672,10727641,5
+76458811,10727641,4
+lovexiaoyan,10727641,5
+rabbitlee2000,10727641,4
+1756316,10727641,4
+danxun,10727641,3
+54444481,10727641,3
+75001615,10727641,5
+132870303,10727641,3
+angeline313,10727641,4
+81431199,10727641,4
+BDX,10727641,-1
+RemyAnderson,10727641,4
+65638659,10727641,4
+39703037,10727641,3
+62762871,10727641,3
+79631427,10727641,5
+3306133,10727641,3
+forrymhrccpig,10727641,3
+butten,10727641,3
+soyasauce,10727641,3
+56492985,10727641,4
+134007622,10727641,4
+3386344,10727641,4
+72571807,10727641,4
+chaosenvoy,10727641,5
+LynnHsu,10727641,5
+1545634,10727641,3
+FuTeng,10727641,4
+133105438,10727641,5
+61197777,10727641,4
+xiaokaike,10727641,2
+82817021,10727641,4
+122603381,10727641,5
+66717059,10727641,4
+85472462,10727641,5
+24322539,10727641,4
+47003472,10727641,3
+32314297,10727641,5
+3232896,10727641,4
+130613741,10727641,4
+mimi...,10727641,3
+43891249,10727641,3
+54145451,10727641,5
+vivianmira,10727641,4
+131893479,10727641,5
+78660676,10727641,5
+62369741,10727641,3
+57923940,10727641,2
+4245568,10727641,4
+2221354,10727641,4
+62853485,10727641,2
+3366974,10727641,3
+zizon,10727641,3
+51277324,10727641,3
+hakana,10727641,4
+42786624,10727641,4
+canopy,10727641,4
+128719565,10727641,5
+23357719,10727641,3
+gilyun,10727641,4
+125571207,10727641,3
+chenxiaodong,10727641,3
+9915911,10727641,4
+122670225,10727641,3
+51229956,10727641,4
+14406293,10727641,5
+61683576,10727641,4
+78242005,10727641,5
+1892627,10727641,3
+29685065,10727641,4
+iam7,10727641,4
+SamuelYan,10727641,3
+baguabagua,10727641,3
+jessemoon,10727641,4
+dodopan,10727641,4
+34560160,10727641,5
+79452257,10727641,4
+114991648,10727641,5
+1735243,10727641,4
+50682062,10727641,5
+81299938,10727641,4
+cealiannnnnn,10727641,5
+hyt,10727641,4
+33538142,10727641,4
+lushrene,10727641,4
+123818120,10727641,3
+129397746,10727641,5
+72596022,10727641,4
+beancatty,10727641,4
+chris027,10727641,3
+arthurwen,10727641,5
+64067066,10727641,5
+zzyzeal,10727641,4
+122130571,10727641,5
+f91_82,10727641,4
+133722851,10727641,-1
+cris7ss,10727641,4
+49288214,10727641,5
+2134658,10727641,4
+46461287,10727641,5
+tev,10727641,4
+38648875,10727641,4
+1140283,10727641,5
+2774956,10727641,5
+61515893,10727641,5
+zhangxunnj,10727641,4
+69823739,10727641,5
+27517816,10727641,4
+47220302,10727641,4
+65133684,10727641,3
+80028681,10727641,4
+50641998,10727641,3
+ninquelote,10727641,4
+cheng_Ting,10727641,3
+3427616,10727641,5
+49043955,10727641,4
+sooro13,10727641,3
+34142242,10727641,4
+znrpiggey,10727641,2
+40257008,10727641,3
+45566980,10727641,3
+huan19494114,10727641,4
+65563342,10727641,4
+since1890,10727641,3
+susan-no-home,10727641,4
+121762241,10727641,4
+73681068,10727641,4
+119110863,10727641,4
+39115751,10727641,4
+79693169,10727641,4
+49272831,10727641,3
+iamkaka,10727641,5
+33275779,10727641,4
+huangti,10727641,5
+yinchuanfu,10727641,4
+3234538,10727641,-1
+60678806,10727641,3
+darling425,10727641,3
+1032604,10727641,5
+xinlong1987,10727641,4
+50878855,10727641,4
+evey42,10727641,3
+63266479,10727641,3
+65926602,10727641,3
+ivy0208,10727641,3
+52536969,10727641,3
+nick1989s,10727641,5
+46057903,10727641,3
+aishiTeru,10727641,4
+31978586,10727641,5
+hellojeff,10727641,3
+zhangyired,10727641,3
+134257829,10727641,4
+84564093,10727641,4
+61047391,10727641,4
+83264508,10727641,4
+50029958,10727641,-1
+69105248,10727641,4
+129051371,10727641,4
+oneweek,10727641,3
+dmyra1011,10727641,4
+64648933,10727641,4
+106581395,10727641,4
+67514988,10727641,5
+zoufei0404,10727641,4
+islandlonely,10727641,4
+lincheng_,10727641,4
+nuonuofanny,10727641,4
+122221488,10727641,4
+79127642,10727641,5
+83693197,10727641,5
+idealtemple,10727641,4
+50308434,10727641,5
+Katherinexiaoya,10727641,4
+79766846,10727641,4
+2256302,10727641,3
+51743352,10727641,5
+72083821,10727641,5
+61328130,10727641,3
+60181393,10727641,2
+54176828,10727641,3
+mixj93,10727641,4
+121377886,10727641,3
+48497484,10727641,5
+68506751,10727641,3
+50349631,10727641,4
+51345502,10727641,5
+huiverci,10727641,3
+55474748,10727641,3
+15965977,10727641,4
+37521902,10727641,3
+SnakeTail,10727641,5
+108175205,10727641,4
+64159384,10727641,5
+89796820,10727641,4
+119189786,10727641,3
+130399642,10727641,3
+43709116,10727641,-1
+56586044,10727641,5
+100991294,10727641,3
+78914788,10727641,4
+3176938,10727641,4
+50619132,10727641,4
+91392218,10727641,3
+4449823,10727641,4
+AnitaXSteps,10727641,4
+changle0605,10727641,5
+26149046,10727641,4
+Olesama,10727641,3
+wtforz,10727641,3
+ceh19930603,10727641,3
+4238259,10727641,3
+93451657,10727641,3
+63167150,10727641,3
+niushansuan313,10727641,5
+68881934,10727641,3
+83188412,10727641,4
+120102643,10727641,4
+81086027,10727641,4
+4582518,10727641,5
+wangyi2011,10727641,4
+yukiyuko,10727641,4
+lullaby_ly,10727641,5
+29172425,10727641,4
+ichbinsherlyn,10727641,4
+tinydust_90,10727641,4
+4290099,10727641,4
+27643874,10727641,3
+27403051,10727641,3
+44005154,10727641,4
+50057469,10727641,4
+lmxhxi,10727641,4
+makzhou,10727641,4
+83139491,10727641,5
+62546651,10727641,4
+49181549,10727641,5
+1504581,10727641,4
+94036052,10727641,3
+chuan1989,10727641,4
+peggyzhu,10727641,4
+74418627,10727641,4
+4658849,10727641,4
+tomyiyun,10727641,4
+4493051,10727641,5
+130119581,10727641,4
+52359235,10727641,3
+121795920,10727641,5
+63401093,10727641,-1
+32284171,10727641,1
+ishikari,10727641,3
+59913885,10727641,-1
+shenxuzhu,10727641,4
+vincet,10727641,4
+tobewith0216,10727641,4
+69794753,10727641,4
+tumipiace,10727641,4
+107559213,10727641,4
+tadashi,10727641,5
+yoeamber,10727641,3
+2330476,10727641,5
+bluelsd,10727641,4
+nancy8787,10727641,3
+drun2046,10727641,3
+64625049,10727641,4
+Lillian-LYL,10727641,3
+64740791,10727641,3
+1236338,10727641,4
+58810279,10727641,5
+godblesswho,10727641,5
+96092788,10727641,3
+66973297,10727641,3
+futoublog,10727641,5
+duklyon1983,10727641,3
+27263711,10727641,4
+bupt_shine,10727641,3
+39382938,10727641,4
+64225902,10727641,4
+56584924,10727641,4
+75741734,10727641,4
+odelete,10727641,5
+ivy_lmj,10727641,4
+nia_chen,10727641,4
+sanzhiling,10727641,3
+61721612,10727641,4
+jy0820,10727641,3
+64067835,10727641,3
+mush24,10727641,5
+43067493,10727641,5
+xiaoling1218,10727641,4
+xiaoduzi,10727641,3
+socalledgin,10727641,4
+3756476,10727641,3
+47672733,10727641,3
+ohAnthea,10727641,3
+2130456,10727641,3
+Winterfell,10727641,3
+reader_racer,10727641,3
+34950703,10727641,3
+61054348,10727641,5
+3503742,10727641,4
+103685842,10727641,4
+60786536,10727641,4
+xiaoxiaoyxiaou,10727641,4
+itzhaoxiangyu,10727641,4
+liuningba,10727641,4
+Rachel_Ren,10727641,4
+62333889,10727641,5
+sharplhl,10727641,5
+81099629,10727641,4
+1335489,10727641,5
+36006859,10727641,2
+44443009,10727641,4
+68961522,10727641,4
+61329324,10727641,4
+shaoguangleo,10727641,4
+ccclllbl,10727641,5
+67934980,10727641,4
+4637134,10727641,4
+vancion,10727641,4
+99834805,10727641,5
+81691649,10727641,2
+133755742,10727641,5
+34552812,10727641,4
+xiaoniukou,10727641,3
+55290389,10727641,5
+ashli,10727641,3
+desire19840311,10727641,2
+35350032,10727641,5
+38803170,10727641,4
+128549976,10727641,4
+fun-studio,10727641,3
+3844430,10727641,4
+59677707,10727641,4
+63099220,10727641,4
+AileenY,10727641,5
+63196145,10727641,3
+zechewang007,10727641,4
+1334269,10727641,4
+45417298,10727641,4
+83236865,10727641,3
+V.Hilbert,10727641,5
+57775394,10727641,4
+64096688,10727641,4
+90581117,10727641,4
+46375776,10727641,3
+3701499,10727641,4
+Madaotaku,10727641,3
+58158122,10727641,4
+75354960,10727641,5
+zhangrenran,10727641,4
+40823380,10727641,3
+66332693,10727641,5
+sincerity615,10727641,3
+1079289,10727641,3
+48079113,10727641,3
+morning_sun,10727641,5
+39756741,10727641,3
+48314806,10727641,2
+119806823,10727641,4
+67958148,10727641,4
+97468014,10727641,4
+2918555,10727641,3
+40744319,10727641,-1
+58161520,10727641,4
+60815590,10727641,4
+49956516,10727641,3
+cchou,10727641,4
+35665174,10727641,2
+64440158,10727641,5
+61228697,10727641,4
+83436609,10727641,4
+yumik9,10727641,5
+sep23,10727641,4
+53565685,10727641,3
+54306037,10727641,2
+58194812,10727641,4
+JunKun,10727641,4
+amoric_sang,10727641,4
+Floraturing1996,10727641,3
+52214552,10727641,5
+36784029,10727641,4
+knightingale,10727641,4
+48071996,10727641,4
+95166626,10727641,5
+81300776,10727641,-1
+ylemliu,10727641,4
+xiaochanzi,10727641,3
+52787854,10727641,3
+1719492,10727641,3
+whischu,10727641,5
+59906784,10727641,3
+gaopengyuan,10727641,3
+wangxiaobei89,10727641,3
+45266623,10727641,3
+25453566,10727641,3
+108693709,10727641,3
+63787326,10727641,4
+lin2jie,10727641,4
+TomiOh,10727641,3
+xxtd,10727641,3
+Bobbie13,10727641,4
+chinabamboo,10727641,2
+54377969,10727641,4
+ireneyan,10727641,4
+CalvinAzure,10727641,5
+1695479,10727641,5
+51624566,10727641,5
+52928685,10727641,4
+eleventhsnow,10727641,5
+50984634,10727641,5
+kex,10727641,-1
+47088428,10727641,4
+55886831,10727641,3
+ponie325,10727641,5
+28212620,10727641,2
+50964453,10727641,3
+45274666,10727641,5
+1971815,10727641,-1
+64239272,10727641,3
+72316189,10727641,5
+ytt1990,10727641,3
+31313042,10727641,3
+104592207,10727641,3
+3922509,10727641,5
+50660191,10727641,3
+RaulG,10727641,5
+logicmd,10727641,4
+70619574,10727641,5
+huanghongyang,10727641,5
+jbecks,10727641,4
+44937867,10727641,4
+48548563,10727641,4
+zzjackonline,10727641,3
+2266577,10727641,4
+56035155,10727641,3
+CharlesTian,10727641,5
+63471811,10727641,5
+lnayg1221,10727641,4
+52910373,10727641,3
+68693771,10727641,4
+57478592,10727641,3
+superbjs,10727641,3
+41799655,10727641,4
+vipzshtomorrow,10727641,5
+55740203,10727641,5
+43856297,10727641,4
+84340226,10727641,-1
+65329230,10727641,3
+ily98426,10727641,3
+wowWicgam,10727641,3
+M1racle,10727641,4
+53784803,10727641,3
+briphia,10727641,3
+48506304,10727641,4
+79089179,10727641,3
+67928088,10727641,4
+3591352,10727641,4
+48929842,10727641,4
+32670743,10727641,4
+kingevin_cho,10727641,4
+3285936,10727641,3
+rum1412,10727641,4
+wlee21,10727641,4
+PETDAN,10727641,4
+SSSs714,10727641,3
+wolfsring,10727641,3
+monstersimon,10727641,4
+63976517,10727641,4
+summerhanabi,10727641,4
+changkxs,10727641,4
+58507282,10727641,4
+dxwsz1,10727641,4
+134205031,10727641,3
+14360735,10727641,4
+ilove_CY,10727641,4
+alexhuang,10727641,3
+Swindler,10727641,3
+konakona,10727641,4
+4570656,10727641,4
+miss_moomo,10727641,4
+43214194,10727641,4
+monster-bro,10727641,4
+tttwgangan,10727641,5
+56146022,10727641,5
+77420474,10727641,5
+solokimi,10727641,2
+61978827,10727641,4
+1452797,10727641,3
+rongmenkezhan,10727641,3
+1359081,10727641,5
+46996433,10727641,3
+3688402,10727641,-1
+1089753,10727641,4
+nonowhy,10727641,5
+voler,10727641,3
+doreen333,10727641,4
+bunny-say,10727641,3
+lindsayzyh,10727641,5
+74169906,10727641,4
+51766927,10727641,3
+fuyulovehyde,10727641,2
+1519013,10727641,5
+40673634,10727641,3
+76770413,10727641,4
+70115262,10727641,4
+qiulaodie,10727641,3
+cherian,10727641,3
+SoyQueenaTse,10727641,3
+16413618,10727641,4
+61791153,10727641,4
+49748358,10727641,-1
+58992948,10727641,4
+58992948,10727641,4
+29904054,10727641,4
+ewanyang11,10727641,4
+52897840,10727641,3
+sprite052,10727641,4
+86584992,10727641,3
+raintingfan,10727641,3
+14594315,10727641,4
+Redlum,10727641,4
+119123866,10727641,5
+47101605,10727641,4
+kaneho,10727641,3
+56609049,10727641,4
+58273860,10727641,3
+23260274,10727641,5
+22420408,10727641,4
+118409742,10727641,3
+VAR_nowhere,10727641,5
+Josephine.R,10727641,3
+Ryan-Cheng,10727641,3
+sthcouldhappen,10727641,4
+maxmartin,10727641,5
+94563993,10727641,5
+65623605,10727641,4
+83701119,10727641,4
+klcklc,10727641,4
+89843845,10727641,5
+62009840,10727641,5
+1997237,10727641,4
+seaskky,10727641,4
+50117171,10727641,3
+52758719,10727641,5
+68420280,10727641,5
+BurningSoul,10727641,1
+75260597,10727641,4
+sough,10727641,4
+lilyzhou2012,10727641,4
+yi_do,10727641,4
+cgy0330,10727641,5
+47243761,10727641,4
+71745673,10727641,4
+72647940,10727641,3
+DominoRecording,10727641,5
+3597938,10727641,2
+49254231,10727641,3
+134183599,10727641,3
+emotion7,10727641,4
+57871688,10727641,3
+PatrickMYK,10727641,3
+58197291,10727641,4
+67758880,10727641,5
+youngmu,10727641,3
+beannyontheroad,10727641,4
+76769321,10727641,4
+57933302,10727641,4
+2565702,10727641,4
+28953793,10727641,4
+79254578,10727641,5
+49414332,10727641,3
+mazerine,10727641,4
+jhourui,10727641,4
+32711539,10727641,4
+64506068,10727641,4
+7651105,10727641,5
+12320986,10727641,4
+87237465,10727641,4
+43910063,10727641,3
+55607390,10727641,5
+danmole,10727641,5
+115740561,10727641,5
+mojibai,10727641,3
+aiyucheng,10727641,3
+blackjason,10727641,3
+korialeaf,10727641,5
+81042933,10727641,5
+49649488,10727641,3
+31205863,10727641,3
+57319762,10727641,3
+51593794,10727641,3
+83899962,10727641,3
+zhoushiyun,10727641,3
+nwl1991,10727641,5
+93161752,10727641,3
+prague2046,10727641,3
+59275049,10727641,4
+cheshiredoc,10727641,4
+38538166,10727641,2
+hernansun,10727641,4
+fyerl,10727641,3
+edward4th,10727641,3
+Tramyzzp,10727641,3
+68014906,10727641,3
+mengaxin,10727641,3
+YUKI1220,10727641,-1
+ShaRu,10727641,4
+76406795,10727641,4
+63606511,10727641,3
+83797718,10727641,3
+1116703,10727641,4
+valiantwarrior,10727641,3
+2797193,10727641,5
+1817304,10727641,3
+lovely-Sissi,10727641,5
+smilehuhu,10727641,4
+rhh,10727641,3
+newdelete,10727641,3
+68811221,10727641,5
+53644713,10727641,5
+yesterday0812,10727641,4
+yoyoya,10727641,4
+tangmm,10727641,4
+121109357,10727641,3
+karenizumi,10727641,4
+1717832,10727641,4
+yxm8854,10727641,4
+2393231,10727641,4
+50405161,10727641,3
+z7z,10727641,5
+MGRJGirl,10727641,5
+pure0918,10727641,4
+haihouzhi,10727641,4
+jolinxian,10727641,4
+Gavin_,10727641,4
+fivero,10727641,4
+jingknight,10727641,4
+he6000,10727641,3
+32776828,10727641,4
+thanksdanny,10727641,4
+59714184,10727641,4
+36477944,10727641,4
+64628791,10727641,4
+18045809,10727641,3
+44384908,10727641,-1
+2163937,10727641,4
+lattice.lee,10727641,3
+64272167,10727641,2
+3346015,10727641,3
+105802310,10727641,4
+feixianggod,10727641,4
+yeyayu,10727641,4
+63879603,10727641,2
+Tree4,10727641,5
+iampromise,10727641,5
+xmgddq,10727641,5
+luxifilm,10727641,4
+73530011,10727641,5
+36302037,10727641,4
+sevseven,10727641,4
+meiyulin,10727641,5
+DDingLucky,10727641,4
+49214515,10727641,5
+52790172,10727641,3
+43522694,10727641,5
+1094981,10727641,4
+Rachel.W,10727641,4
+Zenodotus,10727641,3
+122765987,10727641,5
+zeroqq,10727641,-1
+apple-dudu,10727641,4
+56611387,10727641,4
+48419666,10727641,4
+48322533,10727641,5
+47971743,10727641,4
+43212336,10727641,4
+ji2uu,10727641,3
+81626835,10727641,-1
+tlbin1989,10727641,3
+56224870,10727641,5
+81692824,10727641,2
+1226646,10727641,4
+sweetjune,10727641,3
+willness,10727641,5
+JimTsang,10727641,4
+121368079,10727641,4
+48326188,10727641,2
+ldcr99,10727641,3
+35066546,10727641,5
+83855853,10727641,4
+89768114,10727641,3
+74397322,10727641,3
+fylyunfei,10727641,-1
+lynntong,10727641,4
+zer09,10727641,4
+66239873,10727641,3
+4776566,10727641,5
+88687842,10727641,4
+124739803,10727641,4
+zhou33,10727641,4
+gdhdun,10727641,4
+spain7,10727641,4
+rovenyou,10727641,5
+57827622,10727641,4
+62198193,10727641,5
+4079793,10727641,4
+64176350,10727641,3
+50886291,10727641,4
+68252234,10727641,3
+69854098,10727641,4
+58634950,10727641,3
+jesmine114,10727641,4
+rachelyi23,10727641,4
+62968651,10727641,3
+82123498,10727641,4
+59356659,10727641,5
+heichiyan,10727641,3
+49269031,10727641,4
+47526491,10727641,4
+56493831,10727641,4
+49853962,10727641,5
+69441778,10727641,5
+luoxun,10727641,3
+10268879,10727641,3
+GreenAdam,10727641,3
+121950359,10727641,3
+1895030,10727641,4
+sudalufei,10727641,5
+x1Ao_y,10727641,4
+80177881,10727641,4
+52822833,10727641,3
+27573979,10727641,3
+29821954,10727641,3
+darkbob,10727641,3
+97350616,10727641,3
+48207518,10727641,5
+keyilibie,10727641,4
+66999913,10727641,4
+46672186,10727641,4
+dssbnxz,10727641,3
+hotduck,10727641,4
+41438322,10727641,3
+phoebechin,10727641,3
+80060249,10727641,5
+42778669,10727641,5
+jasonliu0315,10727641,3
+zasu1100412,10727641,5
+30762446,10727641,4
+121602100,10727641,4
+33427011,10727641,4
+58786397,10727641,4
+mouq,10727641,3
+foxbaby1010,10727641,3
+128063403,10727641,3
+65662005,10727641,4
+liangjingli,10727641,4
+83295219,10727641,3
+64138699,10727641,5
+3513365,10727641,3
+132306889,10727641,5
+HugoVince,10727641,3
+woniumm,10727641,4
+65448112,10727641,4
+54744606,10727641,3
+34493482,10727641,4
+40466526,10727641,3
+53065744,10727641,4
+120931613,10727641,4
+LauFun,10727641,4
+49740890,10727641,4
+48876748,10727641,2
+xylonapp,10727641,3
+xiamihemao,10727641,5
+ziningcanyue,10727641,3
+54643955,10727641,4
+30221113,10727641,3
+46242801,10727641,3
+57819875,10727641,3
+ruudgoal,10727641,4
+ffffans,10727641,4
+40687803,10727641,4
+65920181,10727641,5
+53663779,10727641,4
+14601311,10727641,4
+2100419,10727641,3
+57679372,10727641,2
+2527582,10727641,5
+51297155,10727641,4
+56304613,10727641,4
+45808338,10727641,4
+70173493,10727641,4
+3440574,10727641,4
+43127897,10727641,4
+Chayhaw,10727641,5
+seoyoungeun,10727641,4
+37750456,10727641,4
+guaitai19960115,10727641,5
+124094945,10727641,4
+76874419,10727641,4
+76004263,10727641,5
+wincy_5c,10727641,4
+44998200,10727641,4
+simple_v,10727641,5
+49989362,10727641,4
+22666513,10727641,4
+maieryan,10727641,4
+2845886,10727641,2
+missscyun,10727641,4
+59735300,10727641,3
+51486008,10727641,4
+darkmorpheus,10727641,5
+2987038,10727641,3
+4579924,10727641,4
+fortiffany,10727641,4
+63635363,10727641,2
+dai_xiao_feng,10727641,4
+87843873,10727641,4
+69371071,10727641,5
+holdingtt,10727641,4
+130755105,10727641,4
+62684666,10727641,5
+4683518,10727641,4
+62179197,10727641,5
+89766487,10727641,4
+jancehoney_2008,10727641,4
+iswear_4ever,10727641,4
+46938276,10727641,4
+48119351,10727641,3
+1094456,10727641,3
+jiaosally,10727641,4
+62736610,10727641,5
+lucialo,10727641,4
+48921552,10727641,3
+60432635,10727641,4
+onionzoooo,10727641,4
+46243415,10727641,4
+CYYYY,10727641,5
+61861749,10727641,5
+3939038,10727641,3
+Life4Junson,10727641,2
+MLLEfanfan,10727641,5
+dosery,10727641,4
+40861955,10727641,4
+42670212,10727641,-1
+moliao,10727641,4
+yoshidaerika,10727641,4
+lns,10727641,4
+123469055,10727641,5
+74814512,10727641,4
+1732930,10727641,-1
+Milu.w,10727641,4
+35804400,10727641,5
+41466246,10727641,4
+69585394,10727641,5
+56167719,10727641,5
+100750697,10727641,3
+cherrykuo,10727641,4
+wjj1,10727641,5
+73856461,10727641,4
+131684327,10727641,5
+rqh999,10727641,4
+nic3yi,10727641,5
+xingyingxiang,10727641,5
+howlongisyoyo,10727641,3
+61261494,10727641,4
+70052197,10727641,4
+63287228,10727641,5
+57880300,10727641,5
+Charlotte-e,10727641,5
+Aquarious,10727641,4
+2332373,10727641,5
+82435721,10727641,4
+3555547,10727641,3
+53142647,10727641,3
+62817881,10727641,4
+rayll,10727641,4
+129035571,10727641,4
+3304536,10727641,4
+83550377,10727641,4
+chemicalromance,10727641,4
+121148510,10727641,3
+namedgod,10727641,4
+feel_sorrow,10727641,4
+mikeodj,10727641,4
+120035398,10727641,4
+92894015,10727641,3
+Cherryandtomato,10727641,5
+2984695,10727641,3
+58872286,10727641,5
+83070447,10727641,5
+114357928,10727641,5
+54704732,10727641,5
+88260020,10727641,4
+76653168,10727641,4
+cjc112,10727641,4
+xss0791,10727641,4
+124764727,10727641,4
+73983245,10727641,4
+64796716,10727641,2
+clandia,10727641,5
+49914696,10727641,4
+wusiyi,10727641,4
+zion12345,10727641,5
+3707126,10727641,5
+51930449,10727641,5
+44076173,10727641,3
+3636257,10727641,4
+65399116,10727641,4
+64780259,10727641,4
+pangtoufeng,10727641,5
+lymilan1899,10727641,3
+49968813,10727641,4
+62117653,10727641,5
+61328607,10727641,5
+lily-monica,10727641,4
+130829901,10727641,5
+Gerrard_8,10727641,4
+seeyou--,10727641,3
+41296801,10727641,4
+40283915,10727641,4
+jiongreborn,10727641,4
+krator,10727641,5
+121883364,10727641,4
+126241859,10727641,4
+ayuandeDB,10727641,4
+sugar.yao,10727641,4
+45781335,10727641,5
+miao7,10727641,4
+2858394,10727641,3
+47419627,10727641,5
+4294244,10727641,5
+134141941,10727641,3
+70499982,10727641,4
+63415470,10727641,3
+62778442,10727641,4
+Joeroad,10727641,4
+115974574,10727641,3
+44648913,10727641,1
+28743020,10727641,2
+59058717,10727641,5
+69000699,10727641,4
+2229038,10727641,4
+124141483,10727641,5
+41148862,10727641,4
+65364463,10727641,4
+hitomiorange,10727641,3
+wheartless,10727641,5
+taotao0510,10727641,3
+4587143,10727641,5
+64532388,10727641,3
+61015056,10727641,4
+74013127,10727641,4
+bbfary,10727641,4
+103647607,10727641,4
+121888064,10727641,4
+82391952,10727641,4
+euro,10727641,3
+dearFreundin,10727641,4
+60408856,10727641,3
+119159151,10727641,4
+66632216,10727641,4
+73787415,10727641,4
+honey-honey,10727641,5
+57465510,10727641,5
+buersongzi,10727641,4
+62915199,10727641,3
+72911275,10727641,5
+3420387,10727641,5
+56796153,10727641,5
+buffyjiang,10727641,4
+56884321,10727641,3
+65521542,10727641,2
+raytao,10727641,4
+wutheringshi,10727641,3
+58693526,10727641,4
+fengwanjing,10727641,4
+78706605,10727641,5
+61506735,10727641,5
+rae,10727641,4
+76335173,10727641,5
+31704533,10727641,4
+Fesvia,10727641,4
+mingming1124530,10727641,4
+4662411,10727641,4
+39202306,10727641,5
+42539278,10727641,3
+xiamudemao,10727641,3
+doubanJT,10727641,3
+KTHJX,10727641,4
+92637851,10727641,3
+ice-yan,10727641,5
+66919459,10727641,4
+slavica,10727641,4
+34028398,10727641,5
+FEI27,10727641,3
+46749955,10727641,4
+zhouxuan,10727641,3
+42264311,10727641,-1
+asanisimasa,10727641,3
+2600693,10727641,3
+48609572,10727641,4
+sevendream129,10727641,3
+mandylu2010,10727641,5
+42186843,10727641,4
+H_flower,10727641,5
+46337346,10727641,5
+traveller91,10727641,5
+1494780,10727641,4
+GodAssassin,10727641,4
+61701584,10727641,4
+34015028,10727641,3
+44305668,10727641,4
+121627285,10727641,4
+91656862,10727641,4
+70967069,10727641,3
+essy,10727641,3
+127782706,10727641,5
+2733941,10727641,3
+mackalex,10727641,3
+LuciaEvans,10727641,4
+65641754,10727641,3
+1645862,10727641,4
+1223469,10727641,4
+59078607,10727641,4
+MomoHorin,10727641,5
+2691100,10727641,4
+84526752,10727641,3
+84475436,10727641,3
+iwdd,10727641,4
+1977979,10727641,4
+cxwcxw,10727641,5
+41879004,10727641,3
+reMark,10727641,4
+Plaka,10727641,3
+116051325,10727641,5
+76097668,10727641,5
+selenesun,10727641,4
+Carman.Feng,10727641,4
+36805272,10727641,3
+giacintaxx,10727641,5
+3090957,10727641,3
+47168050,10727641,4
+52728173,10727641,4
+84912545,10727641,4
+71233615,10727641,5
+4137118,10727641,3
+88393319,10727641,3
+66369181,10727641,3
+92610102,10727641,3
+54613586,10727641,3
+90564869,10727641,3
+3611560,10727641,4
+93179604,10727641,4
+1600165,10727641,3
+58896741,10727641,4
+4347889,10727641,4
+82744292,10727641,4
+121656332,10727641,4
+37848161,10727641,4
+18313578,10727641,3
+39517329,10727641,5
+63719421,10727641,5
+115843319,10727641,4
+baozha,10727641,4
+39871697,10727641,3
+96514775,10727641,4
+114278157,10727641,3
+48329083,10727641,5
+84064538,10727641,5
+qiujin,10727641,4
+109774060,10727641,4
+56914134,10727641,3
+adrian.chai.au,10727641,4
+44610743,10727641,4
+blancheliu,10727641,3
+54367149,10727641,4
+50831360,10727641,4
+36390435,10727641,5
+Valentina,10727641,3
+64013773,10727641,4
+ciseibian,10727641,5
+cat911208,10727641,4
+94254038,10727641,4
+a.lili,10727641,4
+58759205,10727641,3
+oceanheart,10727641,5
+51605377,10727641,4
+50169799,10727641,4
+63059985,10727641,4
+64454480,10727641,5
+wangxiaozhi,10727641,5
+SHAOSHAOMENG,10727641,3
+124249667,10727641,4
+78105867,10727641,4
+50844097,10727641,4
+97463781,10727641,4
+63307477,10727641,3
+toyshen,10727641,3
+52279505,10727641,4
+70011740,10727641,3
+dearbaoba,10727641,5
+4905483,10727641,-1
+naiveal,10727641,3
+90201226,10727641,4
+110142217,10727641,5
+119670372,10727641,4
+woodlawcn,10727641,4
+2237566,10727641,5
+82479868,10727641,5
+wubingheng,10727641,4
+73101938,10727641,4
+52125579,10727641,4
+82817836,10727641,4
+58783502,10727641,4
+14484123,10727641,3
+127905303,10727641,4
+ameliuge,10727641,3
+87988831,10727641,4
+sunvee,10727641,4
+75033795,10727641,4
+52956842,10727641,5
+36980568,10727641,4
+51537862,10727641,3
+maomiwang809,10727641,5
+luoluo430,10727641,4
+49307986,10727641,3
+eeneq,10727641,5
+AppleTREE4014,10727641,3
+yzjoanne,10727641,4
+34678139,10727641,4
+67081418,10727641,4
+80665810,10727641,5
+62323478,10727641,3
+tanzi24,10727641,3
+73134068,10727641,4
+1364576,10727641,5
+129783136,10727641,3
+127266116,10727641,3
+64302220,10727641,4
+Vampire0704,10727641,3
+2160015,10727641,4
+tanya_tian,10727641,5
+peng2,10727641,5
+xiongwenwenv,10727641,3
+lyy819,10727641,4
+82521332,10727641,5
+64737081,10727641,3
+zmx447684192,10727641,4
+46003128,10727641,4
+maxselina,10727641,4
+65114344,10727641,-1
+84675514,10727641,5
+84675514,10727641,5
+fangyuan1mi,10727641,5
+124313805,10727641,3
+53602254,10727641,3
+100303280,10727641,3
+yan920131,10727641,3
+104179618,10727641,5
+60142596,10727641,3
+63953384,10727641,4
+tongdann,10727641,4
+78194519,10727641,3
+58040832,10727641,3
+75246716,10727641,5
+113924103,10727641,4
+68664986,10727641,3
+120091522,10727641,4
+1702693,10727641,4
+wenzhu89,10727641,3
+zccdtc,10727641,5
+64040953,10727641,4
+3966971,10727641,5
+daisyhsia,10727641,4
+125229784,10727641,3
+13873761,10727641,4
+raintree00,10727641,5
+59233639,10727641,4
+56257600,10727641,4
+33646875,10727641,4
+115164354,10727641,4
+yjjtdcq200,10727641,4
+41444054,10727641,3
+Fly123,10727641,3
+34649584,10727641,4
+1399555,10727641,4
+tylysia,10727641,4
+2695144,10727641,5
+Lemonsir,10727641,3
+52829030,10727641,3
+73605349,10727641,4
+63399051,10727641,3
+67437110,10727641,-1
+53877844,10727641,4
+2029939,10727641,3
+44710985,10727641,3
+angeldch3,10727641,4
+M.iya,10727641,4
+74499406,10727641,4
+101860430,10727641,4
+75347251,10727641,4
+Iin1lin2,10727641,5
+60988585,10727641,3
+62084067,10727641,4
+alianhei,10727641,4
+102938752,10727641,4
+36507254,10727641,4
+63391208,10727641,4
+mborn,10727641,4
+zhxyl,10727641,5
+59142794,10727641,5
+35135916,10727641,3
+65029025,10727641,4
+36899592,10727641,4
+126682168,10727641,4
+78406452,10727641,4
+55509648,10727641,4
+nicole24,10727641,5
+67805960,10727641,4
+50535661,10727641,4
+wendymabel,10727641,3
+searchforriver,10727641,3
+60027986,10727641,3
+65376509,10727641,4
+my_landscape,10727641,5
+wonderfulsavvy,10727641,4
+peerless14,10727641,4
+shaoyedn,10727641,4
+4856520,10727641,3
+100746508,10727641,5
+48417569,10727641,4
+54492665,10727641,4
+ericleemayday,10727641,4
+85142259,10727641,3
+64086111,10727641,5
+zhawu,10727641,4
+52103289,10727641,4
+99202413,10727641,5
+94838326,10727641,4
+89017979,10727641,5
+51563286,10727641,4
+94766000,10727641,5
+lizhiqiang127,10727641,4
+55785418,10727641,5
+88047435,10727641,4
+myself7,10727641,5
+128507849,10727641,3
+constancef,10727641,3
+summermon,10727641,3
+67810207,10727641,4
+72183184,10727641,4
+81084741,10727641,5
+47709338,10727641,3
+67781678,10727641,3
+50455314,10727641,3
+48276999,10727641,3
+4414491,10727641,5
+52891081,10727641,4
+1327654,10727641,-1
+129137675,10727641,3
+yujianwo49,10727641,5
+blueillusion,10727641,5
+50944576,10727641,3
+122016263,10727641,3
+96383885,10727641,5
+DKJessica,10727641,5
+42006560,10727641,4
+53198188,10727641,3
+mumu2017,10727641,4
+47754409,10727641,4
+119583854,10727641,5
+1792353,10727641,4
+rockrujing,10727641,-1
+bagpipesyu,10727641,5
+sherayang,10727641,4
+98379378,10727641,3
+Stephen2046,10727641,4
+89909266,10727641,4
+65450414,10727641,4
+GQY,10727641,3
+63686313,10727641,3
+84059376,10727641,4
+xiaodiutan,10727641,3
+131603889,10727641,4
+41736231,10727641,4
+2745009,10727641,4
+72607708,10727641,3
+65120174,10727641,-1
+130425620,10727641,4
+rachellee94,10727641,4
+127448556,10727641,5
+52846746,10727641,4
+olala,10727641,5
+ChelseaDawson,10727641,4
+47044131,10727641,3
+46907907,10727641,3
+65084443,10727641,5
+cookies4ever,10727641,4
+58451504,10727641,5
+merveille,10727641,5
+2310497,10727641,3
+4445294,10727641,3
+wouldntitbenice,10727641,4
+38216063,10727641,3
+51583782,10727641,3
+64760834,10727641,4
+36579827,10727641,4
+38412910,10727641,4
+4407414,10727641,4
+kirsty417,10727641,4
+congyang77,10727641,4
+63760743,10727641,4
+cloudyha,10727641,5
+59959824,10727641,4
+before1998CXH,10727641,3
+alice_witch,10727641,3
+47805986,10727641,4
+65358186,10727641,5
+2640253,10727641,4
+zhhuang1980,10727641,4
+21056216,10727641,5
+76857499,10727641,5
+80040060,10727641,3
+130988539,10727641,4
+74983017,10727641,4
+53554219,10727641,4
+60739586,10727641,5
+4594513,10727641,4
+63122021,10727641,5
+fsivyneof4,10727641,4
+plight,10727641,3
+cc120,10727641,-1
+38317863,10727641,4
+43071569,10727641,4
+hichai,10727641,4
+dambo,10727641,3
+46881075,10727641,3
+47806996,10727641,5
+46009561,10727641,4
+61983960,10727641,4
+jafey1,10727641,3
+42585852,10727641,4
+87587366,10727641,4
+88371415,10727641,4
+4292817,10727641,4
+59848257,10727641,3
+xxflyyh,10727641,5
+74807963,10727641,4
+4089785,10727641,4
+53319331,10727641,4
+1603477,10727641,4
+2219194,10727641,4
+66051391,10727641,4
+goldenslumbers,10727641,4
+76909039,10727641,3
+49086631,10727641,4
+17424606,10727641,4
+31102423,10727641,4
+93940379,10727641,4
+65021113,10727641,4
+75639599,10727641,3
+cainroziel,10727641,4
+63995854,10727641,4
+100293359,10727641,5
+120795158,10727641,5
+88367047,10727641,5
+2618181,10727641,3
+111757218,10727641,4
+bluesorry,10727641,3
+velmafei,10727641,3
+nakiyami,10727641,1
+76529709,10727641,3
+67569502,10727641,5
+132063881,10727641,4
+68156660,10727641,3
+yangpuwei,10727641,4
+cumming,10727641,5
+85748562,10727641,3
+Iayours,10727641,5
+51747532,10727641,4
+59925796,10727641,4
+4603294,10727641,3
+127858479,10727641,4
+1713793,10727641,3
+fleuridou,10727641,4
+ShoneSpeaking,10727641,3
+Chenzhouyun1995,10727641,3
+121143067,10727641,4
+4674424,10727641,4
+Iamfull,10727641,5
+lenashow0115,10727641,4
+Yolanda0830,10727641,4
+131117180,10727641,3
+58186855,10727641,5
+52070152,10727641,5
+deltatrong,10727641,4
+skyflying,10727641,4
+49358929,10727641,4
+gagging,10727641,3
+41608232,10727641,5
+52933680,10727641,4
+81130737,10727641,4
+Yeziteng,10727641,5
+46338692,10727641,4
+67863557,10727641,4
+christophehj2,10727641,4
+36634678,10727641,3
+63779461,10727641,4
+53694721,10727641,3
+35725005,10727641,5
+79773701,10727641,3
+3514906,10727641,3
+68214984,10727641,4
+51136126,10727641,4
+4130350,10727641,5
+banbeizi,10727641,-1
+kring,10727641,3
+48937128,10727641,4
+mosey0717,10727641,4
+ETLoVeZL,10727641,2
+53769414,10727641,4
+2842937,10727641,3
+35503787,10727641,4
+45634818,10727641,5
+65593493,10727641,4
+62691710,10727641,4
+ambermemory,10727641,5
+YellowDi,10727641,4
+44397532,10727641,4
+41856050,10727641,3
+58051571,10727641,-1
+45637706,10727641,5
+44817172,10727641,4
+snlve,10727641,4
+75705487,10727641,3
+52103092,10727641,4
+61294202,10727641,5
+ops-out,10727641,4
+1820276,10727641,5
+Yb1204,10727641,4
+76477435,10727641,4
+102045513,10727641,4
+63294351,10727641,5
+Cancer_x,10727641,3
+49936891,10727641,5
+41110782,10727641,4
+84512686,10727641,4
+47618855,10727641,-1
+41837755,10727641,5
+humechan,10727641,4
+michelq,10727641,3
+d690859110,10727641,2
+silverhawk,10727641,5
+yutti,10727641,3
+82146721,10727641,5
+56341748,10727641,4
+57947466,10727641,5
+25282109,10727641,4
+2242668,10727641,3
+1929758,10727641,3
+tasuka_l,10727641,3
+76781286,10727641,4
+60166916,10727641,5
+Gabriel_Mars,10727641,4
+tomas-yang,10727641,3
+chevalier7,10727641,5
+4337866,10727641,5
+58894061,10727641,3
+42650213,10727641,3
+awayfromworld,10727641,3
+91304159,10727641,3
+K_kk,10727641,3
+1028731,10727641,3
+68561607,10727641,4
+torresgomenggo,10727641,-1
+33245540,10727641,4
+103551705,10727641,3
+eaudevie,10727641,2
+56686931,10727641,5
+80609092,10727641,4
+57640790,10727641,4
+goodnia,10727641,4
+104145373,10727641,2
+57821710,10727641,4
+92341154,10727641,2
+lemonice520,10727641,4
+41823915,10727641,4
+wuyaicho,10727641,3
+benven,10727641,4
+41636718,10727641,4
+53134415,10727641,4
+1137422,10727641,2
+liushidemeng,10727641,4
+kbbean620,10727641,3
+59861947,10727641,3
+127363660,10727641,3
+102781440,10727641,3
+66473759,10727641,4
+59526552,10727641,5
+blemoguy,10727641,3
+87057947,10727641,5
+dengxiayedao,10727641,4
+58604332,10727641,5
+58283218,10727641,3
+68487696,10727641,3
+beomi,10727641,3
+29819963,10727641,4
+coffeejikou,10727641,3
+68020683,10727641,2
+3468604,10727641,-1
+jo422,10727641,3
+51862785,10727641,4
+41307413,10727641,3
+63647766,10727641,4
+78568972,10727641,5
+superyyrrzz,10727641,5
+49893874,10727641,3
+sissybaby,10727641,4
+1313315,10727641,3
+zjlovezj,10727641,5
+bleachxiaobai,10727641,4
+76536277,10727641,-1
+1164137,10727641,3
+60208186,10727641,3
+1835309,10727641,3
+4420513,10727641,4
+53913160,10727641,4
+mandycho,10727641,-1
+101450152,10727641,4
+Cenux,10727641,4
+119512559,10727641,4
+49751665,10727641,3
+yoforyo,10727641,5
+koyomi,10727641,4
+80873754,10727641,4
+2870561,10727641,4
+51199402,10727641,3
+129503817,10727641,2
+shirleycore,10727641,4
+75493093,10727641,4
+onlycee,10727641,4
+jessie1989,10727641,4
+76933799,10727641,5
+2634544,10727641,5
+CLASSIC-MOVIE,10727641,4
+2834857,10727641,-1
+1575077,10727641,4
+46082327,10727641,3
+december.L,10727641,3
+olmo,10727641,3
+xuyajing,10727641,5
+47715297,10727641,1
+53416381,10727641,3
+7511995,10727641,4
+95852859,10727641,5
+xiaohe5210,10727641,4
+67677954,10727641,3
+rethatevon,10727641,4
+61449794,10727641,4
+hellowind,10727641,4
+34347136,10727641,4
+69146103,10727641,3
+scorpio922,10727641,4
+79309643,10727641,4
+28296923,10727641,4
+lcrgreen,10727641,4
+jia931218,10727641,4
+125473262,10727641,4
+54417681,10727641,4
+justcrazy,10727641,3
+66831193,10727641,4
+flowermoon,10727641,4
+zhy650218,10727641,4
+14157576,10727641,4
+75659126,10727641,4
+xinlang,10727641,4
+44122696,10727641,5
+adaxinyi,10727641,4
+3898330,10727641,4
+3064435,10727641,4
+2135351,10727641,5
+45299688,10727641,4
+toni_hand,10727641,4
+63183447,10727641,-1
+77039342,10727641,3
+ltraman,10727641,4
+longlanglang,10727641,4
+58771894,10727641,4
+1605000,10727641,4
+momoko_huang,10727641,4
+Vilin,10727641,5
+yisideta,10727641,5
+3505129,10727641,4
+4718173,10727641,3
+sandlee1986,10727641,3
+guardiansays,10727641,-1
+toprocku,10727641,5
+6631765,10727641,3
+twelveoak,10727641,-1
+54639950,10727641,3
+110227894,10727641,4
+atoki,10727641,3
+45221153,10727641,3
+76443964,10727641,5
+51105006,10727641,4
+63226691,10727641,3
+makc,10727641,5
+63119058,10727641,3
+4299160,10727641,5
+83601248,10727641,3
+73538837,10727641,3
+sapphire_1228,10727641,4
+wang-jian,10727641,5
+wuxipaopao,10727641,4
+chenquuu,10727641,5
+myplacemyway,10727641,4
+xinxinyu,10727641,5
+76630020,10727641,4
+1422378,10727641,4
+iamfoot,10727641,3
+54375575,10727641,4
+27613318,10727641,4
+2287090,10727641,3
+51350191,10727641,4
+zaoshuizaoqi,10727641,1
+61621650,10727641,4
+liasuz,10727641,3
+10560080,10727641,3
+3919450,10727641,3
+68219887,10727641,4
+xubuntu,10727641,4
+2169752,10727641,4
+nickbest0628,10727641,5
+50041267,10727641,3
+yogurtshue,10727641,5
+river_me1212,10727641,4
+57076226,10727641,4
+47674074,10727641,4
+35886249,10727641,4
+80381774,10727641,4
+90847864,10727641,4
+55941997,10727641,4
+75640218,10727641,5
+chesbasten,10727641,2
+SmilingJune,10727641,3
+58159662,10727641,3
+51266971,10727641,3
+4791622,10727641,3
+66442511,10727641,4
+61722322,10727641,4
+62911366,10727641,4
+4657710,10727641,4
+79754122,10727641,4
+cindyrabbit,10727641,4
+gothickid,10727641,4
+qiaomai,10727641,4
+57142558,10727641,3
+111342880,10727641,3
+2280118,10727641,4
+28522579,10727641,4
+47764209,10727641,4
+50882279,10727641,4
+sassy22,10727641,5
+Coast0to0coast,10727641,4
+haaar,10727641,3
+mantou_Li,10727641,4
+lich0079,10727641,4
+ghostneng,10727641,3
+shaochaowen,10727641,5
+42541743,10727641,4
+38567114,10727641,4
+rainylovely,10727641,4
+anana-shan,10727641,3
+56905488,10727641,5
+sethyoung,10727641,4
+33118444,10727641,5
+67389754,10727641,5
+35499398,10727641,3
+colintide,10727641,4
+3476767,10727641,3
+hanceemax,10727641,4
+un-do,10727641,3
+57041893,10727641,4
+79499016,10727641,4
+46722209,10727641,3
+33510302,10727641,3
+36148411,10727641,3
+62644428,10727641,3
+yt0310,10727641,5
+103358688,10727641,3
+41502689,10727641,3
+1201937,10727641,3
+43096716,10727641,4
+yikouerren,10727641,5
+XIADAN4,10727641,5
+2644695,10727641,5
+G-one,10727641,4
+54478804,10727641,5
+107140803,10727641,4
+4534568,10727641,4
+32034441,10727641,4
+45099103,10727641,4
+47325319,10727641,4
+44192456,10727641,3
+3547067,10727641,2
+79033208,10727641,4
+30562566,10727641,5
+77905956,10727641,5
+lvhobbitdarren,10727641,4
+30569827,10727641,5
+LaddishXuan,10727641,4
+78918071,10727641,5
+126853799,10727641,4
+ilovehongkou,10727641,5
+1631968,10727641,3
+35436010,10727641,4
+2052146,10727641,-1
+25621274,10727641,3
+46365473,10727641,5
+mirror814,10727641,4
+xelnnaga,10727641,3
+45520575,10727641,5
+44726753,10727641,4
+summer_sum,10727641,3
+40177253,10727641,5
+alangalang,10727641,5
+132350496,10727641,4
+gushaochen,10727641,3
+133474803,10727641,4
+47776036,10727641,4
+51378440,10727641,2
+68510883,10727641,3
+59307217,10727641,4
+101963490,10727641,5
+jon1ee,10727641,4
+51260309,10727641,3
+76636095,10727641,3
+37280239,10727641,5
+61375666,10727641,4
+wangxinjia,10727641,3
+78473931,10727641,4
+49848634,10727641,4
+46423055,10727641,4
+qiztholly,10727641,4
+3701919,10727641,5
+JAVAAU,10727641,5
+pspld,10727641,4
+babbye,10727641,3
+FORGET...,10727641,4
+120201514,10727641,4
+49308797,10727641,4
+128154666,10727641,4
+4242859,10727641,3
+40518476,10727641,3
+67626896,10727641,4
+43031718,10727641,3
+clovernini,10727641,-1
+56559303,10727641,5
+41526136,10727641,5
+56408133,10727641,5
+128113494,10727641,4
+49089345,10727641,4
+barkerhjj,10727641,5
+70522766,10727641,2
+edenhsu,10727641,3
+44192267,10727641,4
+60905557,10727641,5
+56846668,10727641,4
+68034788,10727641,4
+46395531,10727641,3
+57717534,10727641,3
+44420768,10727641,4
+83571302,10727641,4
+81284938,10727641,5
+134358881,10727641,4
+65628515,10727641,3
+57884844,10727641,4
+WN-ninja,10727641,-1
+QingAIAliur,10727641,3
+58976778,10727641,5
+bainiqiu,10727641,3
+jessie962464,10727641,4
+33382680,10727641,-1
+49147828,10727641,3
+yeahqiang,10727641,3
+imoviekobe,10727641,4
+80915451,10727641,1
+48082988,10727641,3
+105146664,10727641,4
+82454010,10727641,4
+cjsjason,10727641,5
+ccccccIty,10727641,2
+42471589,10727641,4
+little.m,10727641,5
+PrinceAlbert,10727641,3
+63884258,10727641,3
+116402107,10727641,4
+bdhztian,10727641,3
+62582467,10727641,4
+49876674,10727641,4
+63314847,10727641,4
+2787996,10727641,3
+4287880,10727641,4
+127559466,10727641,4
+1105624,10727641,4
+35369841,10727641,4
+89846523,10727641,5
+49123021,10727641,5
+dsdg,10727641,3
+65730226,10727641,4
+thethirteenth,10727641,4
+sachi227,10727641,5
+89472918,10727641,5
+ibluepurple,10727641,4
+77762504,10727641,4
+suyuqi,10727641,4
+okship,10727641,4
+MilkyWayH,10727641,4
+yyue,10727641,-1
+57048528,10727641,-1
+62013379,10727641,1
+jiazi1216,10727641,4
+51359075,10727641,3
+51706068,10727641,3
+47494442,10727641,5
+46588781,10727641,3
+44998479,10727641,4
+115728568,10727641,5
+3848184,10727641,3
+86821204,10727641,4
+1082879,10727641,3
+121612994,10727641,4
+128992913,10727641,4
+48941229,10727641,4
+Mirabilis,10727641,3
+baokuo,10727641,3
+Mr.Mango,10727641,4
+shumingray,10727641,4
+57644512,10727641,4
+11428236,10727641,4
+dkjune,10727641,4
+dreampan,10727641,4
+Elizabeth1989,10727641,3
+lynn0128,10727641,4
+41017931,10727641,4
+kiian,10727641,4
+11973232,10727641,3
+48917306,10727641,5
+windwingc,10727641,4
+44445592,10727641,3
+yaoyaolu,10727641,3
+97515933,10727641,4
+blackout,10727641,4
+ypl52111,10727641,4
+kencheng,10727641,3
+mymydemon,10727641,3
+tracy0702,10727641,4
+62648117,10727641,4
+Yunsta,10727641,4
+44178660,10727641,4
+dianbou,10727641,3
+59237362,10727641,5
+55761413,10727641,4
+telneter,10727641,4
+MrJlol,10727641,5
+nofishhere,10727641,5
+59244982,10727641,4
+65719691,10727641,4
+47043061,10727641,5
+kidadida,10727641,3
+20755333,10727641,5
+4427457,10727641,4
+72672635,10727641,5
+34558476,10727641,3
+ttiamom,10727641,-1
+zorrozj,10727641,5
+120872335,10727641,4
+DrRay,10727641,4
+57517262,10727641,3
+82538219,10727641,3
+vienna76,10727641,4
+KK22,10727641,3
+17549723,10727641,3
+madwithu,10727641,4
+66799655,10727641,3
+jennyxixi,10727641,5
+48752205,10727641,4
+fifa10,10727641,3
+58970075,10727641,5
+summermilan,10727641,4
+twofour,10727641,3
+niol,10727641,4
+cruelfate,10727641,3
+yzr8979,10727641,3
+61533871,10727641,4
+62318575,10727641,5
+58457174,10727641,3
+46911355,10727641,4
+59554628,10727641,5
+MoEcyan,10727641,4
+85739611,10727641,3
+52008660,10727641,4
+speed7,10727641,4
+78619194,10727641,5
+elevenfang11,10727641,3
+50331335,10727641,3
+59263792,10727641,3
+liveland,10727641,4
+felicita,10727641,4
+65202120,10727641,4
+48057004,10727641,5
+65675536,10727641,5
+60628308,10727641,3
+70357022,10727641,1
+62714490,10727641,4
+MYtachikoma,10727641,3
+zhengxianmin,10727641,4
+summercaimin,10727641,4
+liuyuxing,10727641,4
+53352676,10727641,4
+134160760,10727641,4
+3676198,10727641,5
+13972691,10727641,5
+39526350,10727641,3
+49193369,10727641,5
+50932968,10727641,5
+68917720,10727641,3
+absinthejt,10727641,4
+62333494,10727641,5
+57612378,10727641,4
+sidneylumet,10727641,4
+miracleq0614,10727641,3
+45943252,10727641,5
+josiahpotato,10727641,2
+Davinairene,10727641,5
+jjzzjoyce,10727641,4
+45385281,10727641,5
+61350699,10727641,3
+53507443,10727641,4
+2539442,10727641,3
+52199185,10727641,5
+80250339,10727641,4
+89421913,10727641,4
+48406181,10727641,4
+41787565,10727641,4
+65233043,10727641,5
+48780835,10727641,3
+40828546,10727641,4
+2180689,10727641,4
+36008103,10727641,3
+68239707,10727641,4
+dayandnights,10727641,3
+1752821,10727641,4
+zeeka,10727641,4
+78925849,10727641,3
+doushabaoKG,10727641,5
+4503433,10727641,4
+suxiaopo,10727641,4
+45097131,10727641,5
+63848305,10727641,4
+122864705,10727641,5
+carrie1005,10727641,3
+130175424,10727641,4
+1421601,10727641,4
+4509975,10727641,4
+fifiqshoho,10727641,4
+61996441,10727641,4
+52463415,10727641,3
+2510654,10727641,3
+48587197,10727641,4
+2126183,10727641,3
+39351378,10727641,4
+52416505,10727641,3
+kkguagangqin,10727641,4
+leyuanhf,10727641,5
+45276525,10727641,4
+44345461,10727641,4
+8067166,10727641,5
+43199610,10727641,4
+30251701,10727641,3
+4502583,10727641,3
+91746178,10727641,4
+4006640,10727641,3
+46943365,10727641,4
+madbamboo,10727641,2
+brunooctober,10727641,4
+fotosong,10727641,4
+1542251,10727641,3
+47286411,10727641,3
+hua400,10727641,-1
+binnnn,10727641,2
+29219029,10727641,4
+43259429,10727641,4
+gasolin,10727641,5
+35653009,10727641,3
+vvingl,10727641,4
+81923941,10727641,4
+54457207,10727641,4
+3725907,10727641,3
+61868098,10727641,4
+yiwangtianshi,10727641,3
+louing,10727641,4
+75156006,10727641,3
+zyzloveair,10727641,4
+iamlowe,10727641,5
+tonyzhao,10727641,4
+2190982,10727641,3
+zaza610,10727641,4
+rebeccasen,10727641,4
+3542803,10727641,3
+49488269,10727641,4
+3317641,10727641,4
+62535973,10727641,4
+3730071,10727641,3
+57959105,10727641,4
+61640995,10727641,3
+69836665,10727641,5
+waityoualex,10727641,3
+11255442,10727641,4
+betty5230,10727641,4
+82872552,10727641,4
+130474636,10727641,4
+43111391,10727641,4
+67272467,10727641,5
+72197323,10727641,5
+81391880,10727641,4
+tosummer,10727641,3
+cloverllx,10727641,4
+otherheaven,10727641,3
+huahuo0612,10727641,3
+70195839,10727641,3
+48936362,10727641,4
+wayephang,10727641,4
+68726944,10727641,3
+BA92101,10727641,4
+42583808,10727641,4
+76999762,10727641,5
+53896694,10727641,4
+76668612,10727641,5
+68079880,10727641,4
+42171316,10727641,4
+47940206,10727641,5
+61229955,10727641,5
+sadness,10727641,3
+yiddypiddypoo,10727641,4
+mt_q,10727641,4
+2217105,10727641,4
+48163421,10727641,4
+31066447,10727641,4
+127688878,10727641,5
+91626041,10727641,4
+59278283,10727641,3
+ninuo_wjw,10727641,3
+3417104,10727641,4
+fb87,10727641,5
+60080560,10727641,4
+2842222,10727641,3
+2216486,10727641,4
+SELVEN,10727641,4
+47495374,10727641,5
+73869586,10727641,4
+snowallsky,10727641,3
+52940930,10727641,3
+reika_scar,10727641,4
+60392839,10727641,3
+77162594,10727641,5
+2618043,10727641,5
+heyan0225,10727641,4
+58936179,10727641,3
+SKubrick,10727641,2
+40516523,10727641,4
+60673752,10727641,4
+60673752,10727641,4
+sai27,10727641,4
+3719905,10727641,5
+70626173,10727641,5
+122704131,10727641,4
+82250645,10727641,5
+phoebe_wo,10727641,4
+90908945,10727641,5
+55460987,10727641,5
+42949382,10727641,3
+iayunuo,10727641,5
+3439529,10727641,4
+57985209,10727641,3
+76032805,10727641,4
+120729297,10727641,4
+42088638,10727641,4
+105325845,10727641,5
+EnBunSyun,10727641,5
+60941930,10727641,4
+91872215,10727641,5
+tjg325,10727641,5
+63432491,10727641,2
+91280997,10727641,3
+shawn1993,10727641,4
+amazinfiona,10727641,4
+31797184,10727641,5
+43115240,10727641,4
+3199036,10727641,4
+lovesoweak,10727641,4
+melody0727,10727641,4
+1975902,10727641,4
+73678720,10727641,4
+chenc2,10727641,3
+43518138,10727641,5
+3569551,10727641,3
+51221334,10727641,5
+39273953,10727641,3
+35076203,10727641,5
+52540412,10727641,4
+windirt,10727641,3
+windirt,10727641,3
+caicai1005,10727641,4
+6580754,10727641,4
+68539816,10727641,3
+63629111,10727641,5
+josie5dance,10727641,4
+3905808,10727641,5
+Ihuiyao,10727641,4
+101568749,10727641,3
+robinsparrow,10727641,-1
+wettime,10727641,1
+possion007,10727641,3
+ohcherrysama,10727641,5
+Kings917,10727641,3
+11566740,10727641,3
+AndersonNeo,10727641,4
+4862060,10727641,3
+31082152,10727641,4
+60788836,10727641,4
+echowangxw,10727641,4
+123232321,10727641,4
+121734611,10727641,3
+62282689,10727641,3
+cl411,10727641,3
+43130402,10727641,4
+59627608,10727641,4
+lovehh0921,10727641,5
+1527243,10727641,5
+Yulia,10727641,4
+windwith,10727641,4
+tracy-cc-inter,10727641,4
+1723553,10727641,2
+63121550,10727641,3
+4314292,10727641,4
+36119710,10727641,4
+56104621,10727641,4
+braxin2007,10727641,4
+18997911,10727641,4
+56329683,10727641,5
+eyesi,10727641,3
+3694442,10727641,5
+58520151,10727641,4
+65072386,10727641,5
+39519802,10727641,4
+1582961,10727641,5
+3232636,10727641,4
+89587704,10727641,3
+132016475,10727641,4
+58671992,10727641,3
+40241805,10727641,4
+53401429,10727641,5
+48662310,10727641,3
+74077740,10727641,4
+68900028,10727641,4
+78377948,10727641,3
+shushi2011,10727641,4
+Vikkiii,10727641,5
+lanyangyangdecc,10727641,4
+3353989,10727641,5
+yiliaobailiao,10727641,4
+62134225,10727641,4
+lmm333,10727641,4
+wongzayoi,10727641,3
+dark_glede,10727641,4
+fan_tuan,10727641,3
+49539143,10727641,3
+36945830,10727641,4
+109023138,10727641,5
+zoeasy,10727641,2
+47914662,10727641,4
+mio1989,10727641,3
+2906253,10727641,5
+59738934,10727641,3
+celua,10727641,4
+73923502,10727641,-1
+71325468,10727641,4
+64173512,10727641,3
+dahuilang15656,10727641,3
+49000384,10727641,4
+57263657,10727641,4
+heathercone,10727641,3
+121073792,10727641,4
+queenlolo,10727641,4
+huantian_chen,10727641,4
+3875131,10727641,3
+sunjinrui,10727641,4
+3410857,10727641,3
+s1220,10727641,4
+45312368,10727641,4
+ifengzi,10727641,4
+brant,10727641,3
+50094357,10727641,3
+115060047,10727641,3
+hidedrain,10727641,5
+2599411,10727641,4
+jiaming102,10727641,4
+dominic---,10727641,4
+1302983,10727641,4
+elevenzhang,10727641,4
+33509749,10727641,4
+128739482,10727641,4
+changtengteng,10727641,4
+120207668,10727641,3
+81939418,10727641,4
+22513808,10727641,4
+snokin,10727641,4
+fanxiaodong,10727641,4
+49654924,10727641,4
+LunaticPandora,10727641,2
+46721798,10727641,4
+gogom,10727641,4
+29284484,10727641,5
+54233501,10727641,3
+gregoryhouse,10727641,3
+70929695,10727641,5
+72179398,10727641,5
+58903343,10727641,5
+2187951,10727641,3
+2985147,10727641,4
+63142359,10727641,4
+13088914,10727641,3
+32941683,10727641,4
+twochow,10727641,2
+78492076,10727641,3
+49888583,10727641,4
+2211361,10727641,3
+102356757,10727641,2
+52426499,10727641,3
+andyzhanghua,10727641,4
+imMurphy,10727641,4
+nnnn3,10727641,4
+60377456,10727641,4
+79356961,10727641,4
+2823928,10727641,5
+52856501,10727641,5
+Razzmatazz,10727641,4
+STleo,10727641,4
+67160845,10727641,4
+4336572,10727641,5
+69516043,10727641,3
+efeimaomao,10727641,3
+catcathan,10727641,4
+jokeman92,10727641,5
+echozhan,10727641,4
+jjdessxn,10727641,4
+3573351,10727641,4
+3954422,10727641,5
+3478406,10727641,2
+49161078,10727641,3
+AllenXYZ,10727641,4
+59862121,10727641,3
+luoxupei,10727641,4
+58023093,10727641,4
+89164143,10727641,3
+90751741,10727641,4
+50023999,10727641,3
+vivifyvivi,10727641,4
+4777709,10727641,3
+50637640,10727641,4
+zebra168,10727641,4
+40526761,10727641,5
+36545709,10727641,4
+huaisC,10727641,5
+52917026,10727641,4
+114732916,10727641,5
+81728735,10727641,5
+56237449,10727641,3
+68227139,10727641,5
+nd4spd,10727641,5
+63166175,10727641,4
+1379137,10727641,3
+KFdaxiong,10727641,4
+119013202,10727641,5
+3506880,10727641,3
+hanlu1991,10727641,5
+79337395,10727641,4
+54827958,10727641,3
+taozi9129,10727641,5
+jayscien,10727641,5
+40544595,10727641,4
+cdqingchen,10727641,3
+47207706,10727641,4
+56775169,10727641,4
+51611294,10727641,4
+cucaoxu,10727641,4
+bulijite,10727641,5
+57539497,10727641,4
+4516843,10727641,3
+iyyhua,10727641,4
+120867848,10727641,5
+shahuizhang,10727641,4
+46843344,10727641,4
+lstra,10727641,4
+Emily.Don,10727641,5
+41848839,10727641,4
+119489564,10727641,4
+yangziche,10727641,3
+GZ,10727641,3
+76668507,10727641,5
+yin1257,10727641,3
+chuetiti,10727641,4
+HandsomePrince,10727641,4
+86019559,10727641,5
+jiejueliaoyi,10727641,4
+tianxinsweetie,10727641,5
+51922606,10727641,5
+ceccion,10727641,3
+82222392,10727641,4
+2262505,10727641,4
+Robin0227,10727641,4
+93956744,10727641,4
+58547827,10727641,5
+116996584,10727641,4
+47417998,10727641,4
+complexity,10727641,5
+adelineadele,10727641,4
+echoningning,10727641,2
+songsunsong,10727641,5
+33372140,10727641,3
+49228218,10727641,5
+39720218,10727641,4
+44475872,10727641,-1
+53646130,10727641,4
+122361491,10727641,5
+55765864,10727641,3
+SKTM,10727641,3
+2141189,10727641,4
+2783681,10727641,3
+56844373,10727641,4
+loveloki913,10727641,3
+54880097,10727641,3
+58028787,10727641,5
+70668927,10727641,3
+dianyingjia,10727641,5
+reador,10727641,3
+2740951,10727641,4
+90963774,10727641,5
+51100123,10727641,5
+62544588,10727641,4
+82814499,10727641,4
+82814499,10727641,4
+sonado,10727641,4
+90497185,10727641,5
+oqopo,10727641,4
+demoncat,10727641,4
+sunxuhang,10727641,4
+1522300,10727641,3
+58225512,10727641,3
+ochy,10727641,5
+125650125,10727641,5
+124253962,10727641,4
+MaymySumOn,10727641,4
+Lethe1225,10727641,4
+51225563,10727641,4
+chawan,10727641,3
+75192516,10727641,3
+55779948,10727641,4
+56054406,10727641,4
+62237138,10727641,4
+lynn_500,10727641,3
+50880780,10727641,3
+48792138,10727641,4
+129766862,10727641,4
+81467436,10727641,4
+3013889,10727641,4
+42802728,10727641,4
+weremanutd123,10727641,5
+64585974,10727641,4
+dirkhysteria,10727641,5
+yanrange1218,10727641,4
+48924653,10727641,3
+78728562,10727641,4
+43046100,10727641,4
+lxzyen,10727641,4
+34310004,10727641,4
+kenishi,10727641,3
+57251364,10727641,3
+buchiyudemao,10727641,5
+92636187,10727641,4
+41036146,10727641,3
+41036146,10727641,3
+32433633,10727641,4
+79963490,10727641,4
+58228627,10727641,4
+60782706,10727641,4
+36576530,10727641,4
+55942870,10727641,4
+133815703,10727641,5
+4804994,10727641,3
+47873866,10727641,5
+36463636,10727641,-1
+51863269,10727641,4
+feisun,10727641,-1
+53318659,10727641,4
+93900680,10727641,4
+hecongqi,10727641,5
+heartlesstree,10727641,5
+70094249,10727641,5
+lotas,10727641,4
+53171610,10727641,4
+kiteshady,10727641,4
+128550056,10727641,3
+125971465,10727641,3
+71061897,10727641,4
+64012873,10727641,4
+103178426,10727641,4
+115879931,10727641,5
+43087480,10727641,4
+71741571,10727641,-1
+54500497,10727641,5
+61963967,10727641,4
+SoniaLu-douban,10727641,4
+SayAnything,10727641,5
+67861218,10727641,3
+78691419,10727641,-1
+herrygogo,10727641,3
+pan7y,10727641,5
+69980622,10727641,4
+56873859,10727641,5
+77194286,10727641,5
+42616654,10727641,3
+chumin201111,10727641,5
+houdini2015,10727641,5
+arthurx,10727641,4
+duanziyu,10727641,3
+59621398,10727641,4
+50244513,10727641,4
+mio620,10727641,4
+63639535,10727641,4
+51911319,10727641,4
+49332776,10727641,4
+51657974,10727641,4
+25721762,10727641,4
+4606725,10727641,3
+68661491,10727641,4
+LuuuuC,10727641,4
+jerry20071012,10727641,5
+53010578,10727641,-1
+53274197,10727641,5
+64287168,10727641,3
+charge727,10727641,5
+79865158,10727641,3
+77037611,10727641,3
+31922532,10727641,2
+106711871,10727641,3
+4909767,10727641,4
+49578533,10727641,3
+68812181,10727641,5
+sam_smile,10727641,3
+14424317,10727641,4
+45242330,10727641,4
+45957905,10727641,5
+Collins1995,10727641,3
+Lee90,10727641,3
+53487515,10727641,4
+lovingyoyo8ever,10727641,5
+47830975,10727641,4
+127950412,10727641,3
+yshhq,10727641,5
+103622140,10727641,4
+49321684,10727641,5
+94763902,10727641,4
+chrissie619108,10727641,4
+82262295,10727641,4
+51429861,10727641,4
+foxmuldery,10727641,5
+130384856,10727641,4
+53531602,10727641,5
+4375506,10727641,3
+58536525,10727641,4
+15183757,10727641,4
+euphymia,10727641,4
+1082144,10727641,4
+43085828,10727641,4
+51419685,10727641,4
+80751044,10727641,5
+elaine14,10727641,3
+Minimalis,10727641,3
+51476083,10727641,5
+16817778,10727641,4
+28959917,10727641,4
+66705172,10727641,3
+A-Marvin-T,10727641,4
+lameizi,10727641,4
+66393784,10727641,3
+75076684,10727641,2
+121570619,10727641,5
+56063289,10727641,4
+36477514,10727641,4
+memorysongs,10727641,4
+immengxmeng,10727641,3
+28978843,10727641,4
+44112901,10727641,3
+sumeoy,10727641,3
+LynS,10727641,4
+48287153,10727641,3
+10149854,10727641,4
+103793768,10727641,3
+ouyangjie123,10727641,4
+57367354,10727641,5
+43003860,10727641,4
+60300339,10727641,5
+75912354,10727641,5
+3514375,10727641,3
+53265759,10727641,4
+46810094,10727641,3
+75339260,10727641,-1
+134275392,10727641,3
+60385100,10727641,2
+82463994,10727641,5
+52399993,10727641,4
+63345058,10727641,4
+40010660,10727641,4
+39545267,10727641,1
+lyzyaxc,10727641,5
+49358081,10727641,5
+57129991,10727641,5
+66053525,10727641,3
+60906528,10727641,4
+60388085,10727641,3
+emily7726,10727641,3
+119833132,10727641,5
+65003049,10727641,4
+huangzhang92090,10727641,1
+52384106,10727641,4
+altmann,10727641,4
+57026267,10727641,3
+chimianbaodemao,10727641,4
+cocorella,10727641,5
+74472287,10727641,5
+4115987,10727641,5
+3783012,10727641,5
+62884241,10727641,4
+agreedoes,10727641,5
+baibailin,10727641,5
+72147052,10727641,5
+qiyou0812,10727641,5
+4559768,10727641,4
+ikezhao,10727641,4
+60407456,10727641,4
+128044981,10727641,4
+79423614,10727641,-1
+56953623,10727641,4
+50560714,10727641,5
+29142546,10727641,5
+127409335,10727641,3
+zetto,10727641,-1
+41975874,10727641,3
+57883052,10727641,5
+41976054,10727641,4
+mogu_,10727641,4
+69164081,10727641,4
+48253364,10727641,4
+PringlesLinB,10727641,4
+jinduoduo,10727641,5
+longxsen,10727641,4
+2453563,10727641,4
+bingjie,10727641,4
+59691399,10727641,3
+gubbys,10727641,4
+45686083,10727641,3
+zero940825,10727641,4
+75801738,10727641,3
+1230019,10727641,4
+48777501,10727641,3
+themissingken,10727641,3
+50909085,10727641,3
+childishqueen,10727641,4
+37751161,10727641,5
+zhou0603,10727641,4
+130531955,10727641,4
+VEmokst,10727641,4
+deargod123,10727641,4
+80212965,10727641,5
+4525795,10727641,5
+119340847,10727641,4
+miaoza,10727641,3
+fishzdream,10727641,5
+50174936,10727641,4
+130520030,10727641,5
+70284743,10727641,5
+junepotty,10727641,4
+130276654,10727641,5
+71337437,10727641,4
+48990139,10727641,3
+89399541,10727641,4
+38770333,10727641,4
+thehours_lxx,10727641,3
+Llilililili,10727641,2
+97645479,10727641,3
+62804242,10727641,4
+77519221,10727641,3
+61988364,10727641,5
+joanna-T,10727641,4
+36881798,10727641,5
+tinyuu,10727641,3
+ankui,10727641,3
+53293207,10727641,5
+bearblindman,10727641,4
+magicpencil,10727641,4
+Exaiy,10727641,4
+zhouruowan,10727641,3
+57912090,10727641,3
+39072740,10727641,3
+76916226,10727641,4
+irene826,10727641,4
+71562844,10727641,4
+45994637,10727641,3
+iamjessi,10727641,3
+summerxiao,10727641,5
+131361061,10727641,4
+shevoner,10727641,5
+49689556,10727641,4
+27728988,10727641,4
+wongelephant,10727641,3
+qiusuiying,10727641,5
+92231929,10727641,4
+planoto,10727641,4
+58802831,10727641,4
+bruin1018,10727641,4
+cherrytiaotiao,10727641,5
+120378701,10727641,3
+gstone1723,10727641,4
+31641036,10727641,4
+ananw,10727641,3
+82927281,10727641,1
+54380467,10727641,3
+3484320,10727641,3
+44708171,10727641,5
+icephoenixone,10727641,4
+taikonaut,10727641,4
+2295492,10727641,3
+66950057,10727641,4
+51741927,10727641,4
+Song1183,10727641,4
+fishandbike,10727641,4
+104207639,10727641,4
+35234705,10727641,5
+70306814,10727641,4
+4753861,10727641,3
+33538024,10727641,4
+69523535,10727641,4
+50953723,10727641,3
+1204427,10727641,3
+63084559,10727641,1
+113286915,10727641,3
+60310155,10727641,3
+91712143,10727641,4
+92048195,10727641,3
+tonyii06,10727641,4
+52959454,10727641,3
+qianhenbangye,10727641,4
+128377373,10727641,5
+provence1019,10727641,3
+lin19960605,10727641,3
+memmao,10727641,4
+loveyixiao,10727641,4
+1582144,10727641,4
+33512281,10727641,5
+70277062,10727641,5
+11534903,10727641,4
+simple4ever,10727641,4
+63631634,10727641,4
+xiaohanyu,10727641,4
+shenxiyu,10727641,3
+51439533,10727641,3
+113992757,10727641,4
+taken-tee,10727641,3
+Nicole0,10727641,3
+65079823,10727641,4
+4538596,10727641,4
+28460777,10727641,3
+50219998,10727641,5
+4766836,10727641,3
+26959254,10727641,3
+Stannnnn,10727641,4
+forever0801,10727641,5
+nanfengchuimu,10727641,4
+yuyuchan,10727641,5
+63950350,10727641,4
+86850732,10727641,4
+withzzc,10727641,3
+64769270,10727641,3
+1743863,10727641,3
+44517782,10727641,4
+26893697,10727641,4
+45311964,10727641,4
+45454544,10727641,4
+44411218,10727641,3
+57981890,10727641,3
+126026407,10727641,5
+ifuya,10727641,4
+70047087,10727641,4
+126010784,10727641,4
+missyoucl,10727641,5
+linningmeng,10727641,4
+45079617,10727641,4
+89382029,10727641,5
+38006752,10727641,3
+69152007,10727641,5
+1219497,10727641,-1
+fupp1119,10727641,4
+45935236,10727641,5
+51861126,10727641,4
+55767497,10727641,3
+larval,10727641,2
+133789012,10727641,5
+JuicyLemonade,10727641,3
+44132837,10727641,3
+2495913,10727641,4
+43253714,10727641,3
+63739812,10727641,5
+82169084,10727641,5
+4435042,10727641,5
+hzrviola,10727641,5
+idama,10727641,5
+sunchaoming,10727641,1
+4160222,10727641,4
+134131182,10727641,4
+2293401,10727641,4
+63322065,10727641,4
+vincent0007,10727641,3
+130758637,10727641,4
+summer_ending,10727641,4
+60870044,10727641,3
+damos,10727641,3
+vanea,10727641,4
+fallenisland,10727641,4
+lichade,10727641,3
+miis,10727641,4
+71575345,10727641,4
+1986183,10727641,3
+51269285,10727641,4
+63509313,10727641,5
+59446610,10727641,4
+44992130,10727641,3
+66203352,10727641,3
+40143996,10727641,4
+1155174,10727641,5
+48181580,10727641,-1
+cylarzc,10727641,3
+ALee301302,10727641,3
+38754265,10727641,4
+lonelyattic,10727641,4
+51105091,10727641,4
+83666516,10727641,3
+liwanjun,10727641,3
+46368829,10727641,4
+3972030,10727641,4
+easycyan,10727641,3
+fabrique1987,10727641,3
+41541165,10727641,5
+xiaotuo,10727641,3
+57690021,10727641,4
+huzhenting,10727641,5
+64128291,10727641,4
+hitonmi,10727641,5
+mylucky1010,10727641,5
+bochan,10727641,4
+yooyoooooo,10727641,4
+50129534,10727641,3
+132222782,10727641,4
+43002843,10727641,4
+circle920,10727641,4
+52508593,10727641,5
+80163980,10727641,4
+58988232,10727641,4
+50151786,10727641,4
+4090922,10727641,4
+sasa522,10727641,-1
+48794309,10727641,5
+1015227,10727641,4
+yoyoyoya,10727641,1
+121410902,10727641,5
+xiayichuan,10727641,4
+oops_mie,10727641,4
+66035004,10727641,4
+weexf,10727641,3
+35569255,10727641,5
+55023376,10727641,4
+xuhui900830,10727641,4
+56444765,10727641,4
+darling99,10727641,4
+ladyyue,10727641,3
+51401098,10727641,3
+120764157,10727641,3
+miaoxiaomo,10727641,5
+132985387,10727641,4
+pengpeng,10727641,3
+SINCE1988,10727641,3
+3553432,10727641,3
+3728891,10727641,4
+xiyanbyluo,10727641,4
+44187248,10727641,3
+57379426,10727641,3
+128742398,10727641,4
+4266454,10727641,4
+laotiee,10727641,4
+73153832,10727641,4
+90496628,10727641,4
+26681915,10727641,4
+63603619,10727641,4
+88542586,10727641,3
+mysupers,10727641,4
+4650728,10727641,4
+41866163,10727641,3
+91157157,10727641,5
+37481260,10727641,4
+cake0214,10727641,5
+47058104,10727641,3
+126511623,10727641,4
+cat.k,10727641,4
+xellossking,10727641,3
+professormars,10727641,3
+airan712,10727641,3
+104076508,10727641,4
+Mr.V,10727641,5
+54340462,10727641,4
+132508544,10727641,4
+70013242,10727641,4
+selonidepp,10727641,-1
+sakurawei,10727641,4
+self1988,10727641,5
+malu,10727641,3
+lulushine,10727641,4
+dodofish,10727641,4
+79111155,10727641,4
+59345564,10727641,3
+75493120,10727641,4
+3717542,10727641,4
+maerting,10727641,3
+54175557,10727641,3
+49806360,10727641,5
+4593305,10727641,4
+45812383,10727641,4
+lizmurray,10727641,3
+53128064,10727641,3
+gentelbreeze,10727641,5
+4841197,10727641,4
+cjshangbuqi,10727641,4
+2431413,10727641,5
+burninghugehead,10727641,3
+ylo1995,10727641,4
+38909839,10727641,5
+133123885,10727641,4
+42465627,10727641,4
+108480827,10727641,-1
+40907907,10727641,3
+40125031,10727641,3
+45305916,10727641,4
+kokki,10727641,5
+102446060,10727641,5
+benbenmuxi,10727641,4
+Analulu,10727641,4
+zhuji,10727641,4
+88122881,10727641,5
+28314639,10727641,4
+Isabella0712,10727641,5
+MOKUZJY,10727641,3
+huilam0123,10727641,3
+83166758,10727641,4
+dou4y,10727641,4
+130087300,10727641,3
+53411965,10727641,4
+huajiali,10727641,-1
+3396610,10727641,4
+antiekin,10727641,3
+60818367,10727641,3
+oolong12,10727641,4
+heyunchao007,10727641,4
+luanjunyi,10727641,5
+nineC,10727641,3
+1440164,10727641,5
+80019682,10727641,1
+fayless,10727641,4
+Monster_004,10727641,4
+47943470,10727641,4
+1278367,10727641,4
+75521175,10727641,4
+love_my_dog,10727641,4
+48578861,10727641,3
+56628925,10727641,5
+EvilCat,10727641,5
+3939279,10727641,4
+1335533,10727641,4
+qt1022,10727641,4
+wingrabbit,10727641,3
+126693961,10727641,5
+xuyoz1,10727641,4
+61123670,10727641,5
+40313131,10727641,5
+x.xiong,10727641,4
+amofirenze,10727641,5
+throw_exceptioi,10727641,-1
+12832281,10727641,4
+28612508,10727641,4
+34600682,10727641,3
+70521401,10727641,4
+124602530,10727641,3
+gimyonggi,10727641,4
+57931932,10727641,4
+billyqianbin,10727641,3
+flower-flower25,10727641,3
+39708814,10727641,3
+123042042,10727641,5
+2666968,10727641,-1
+42839977,10727641,4
+60251826,10727641,3
+zsqsophy,10727641,5
+p22231,10727641,5
+55804173,10727641,5
+33525459,10727641,4
+4806185,10727641,4
+67104840,10727641,3
+94842809,10727641,3
+58310945,10727641,3
+guanyushenghuo,10727641,5
+92064878,10727641,5
+moon124,10727641,4
+3160851,10727641,5
+33328418,10727641,3
+41734674,10727641,3
+shushudabaoz,10727641,4
+32819169,10727641,3
+zjswr,10727641,5
+55924051,10727641,4
+46167248,10727641,4
+82520014,10727641,5
+Hyvi,10727641,4
+illuminati,10727641,5
+54506320,10727641,4
+pompomlai,10727641,5
+74693421,10727641,5
+69428143,10727641,4
+59571520,10727641,4
+43156253,10727641,4
+3641686,10727641,4
+stevense,10727641,3
+ragnarok1028,10727641,-1
+lishidai93,10727641,4
+40110852,10727641,4
+lamwithme,10727641,5
+likinglr,10727641,4
+loischoi,10727641,3
+59752375,10727641,4
+taylorman,10727641,4
+62321975,10727641,4
+1122386,10727641,2
+55319176,10727641,4
+purple_medic,10727641,5
+109169757,10727641,4
+superzhaolihuan,10727641,4
+leonx818,10727641,4
+ddumplling,10727641,3
+33693061,10727641,3
+poemorning0326,10727641,3
+64572749,10727641,5
+49850664,10727641,3
+79306764,10727641,4
+x1nyu,10727641,-1
+63156510,10727641,4
+Alien_Alice,10727641,4
+everfreeneciel,10727641,3
+3625625,10727641,4
+imxiaobei,10727641,5
+dujiachen,10727641,4
+kuku_yang,10727641,5
+40017309,10727641,5
+Elizabeth-Lee,10727641,4
+32838151,10727641,3
+85179487,10727641,5
+soyore,10727641,4
+68341681,10727641,5
+60155135,10727641,3
+1532624,10727641,4
+PicturePerfect,10727641,4
+74538779,10727641,4
+bayueshuang,10727641,3
+84078952,10727641,3
+allentear,10727641,5
+2078085,10727641,5
+48773692,10727641,3
+hxl6,10727641,3
+i7COLORS,10727641,5
+85341093,10727641,5
+46484046,10727641,5
+blackeleven,10727641,4
+54130249,10727641,4
+69152913,10727641,4
+58221616,10727641,4
+1248650,10727641,3
+53330231,10727641,3
+129040380,10727641,3
+31043480,10727641,4
+17289580,10727641,4
+tcyzco3,10727641,3
+71561935,10727641,4
+59646207,10727641,4
+50706917,10727641,4
+1995910,10727641,4
+65145861,10727641,4
+51448340,10727641,4
+85727973,10727641,4
+allenwangzihan,10727641,3
+1782024,10727641,4
+65186418,10727641,4
+46712687,10727641,4
+4564555,10727641,3
+septembersummer,10727641,3
+45307960,10727641,3
+chinimei,10727641,5
+3350852,10727641,4
+51683273,10727641,3
+grammarbai,10727641,4
+103024790,10727641,5
+53768123,10727641,4
+47809178,10727641,3
+joygirlying,10727641,3
+77914968,10727641,3
+MooTheMonster,10727641,3
+3184101,10727641,4
+Eenina,10727641,3
+zhangbin97,10727641,4
+107554806,10727641,5
+49325754,10727641,4
+lanmon,10727641,5
+3478731,10727641,5
+50460301,10727641,3
+119950155,10727641,4
+wheat109,10727641,3
+mariaaa,10727641,-1
+yushi,10727641,3
+54706735,10727641,4
+58323329,10727641,4
+59249237,10727641,4
+ms0604,10727641,3
+3838722,10727641,3
+sheng1992,10727641,4
+ladymashroom,10727641,3
+53824348,10727641,3
+cirosie,10727641,4
+QiNang,10727641,2
+50592533,10727641,4
+74188273,10727641,4
+126846791,10727641,4
+2339873,10727641,3
+82334570,10727641,5
+69571886,10727641,4
+52427196,10727641,4
+wsyta,10727641,3
+YvonneYoung,10727641,4
+45319686,10727641,3
+scohj,10727641,4
+dian378397734,10727641,5
+53653880,10727641,3
+momodawang,10727641,4
+24093893,10727641,4
+abaqiao,10727641,4
+72055888,10727641,5
+2472751,10727641,5
+ahuasist,10727641,4
+heartrick,10727641,4
+52448110,10727641,4
+cioilo,10727641,4
+52611637,10727641,5
+tigerwu,10727641,4
+lucyhuang21,10727641,3
+moowait,10727641,4
+63786695,10727641,5
+chixixiaoyu228,10727641,5
+kitty_cat,10727641,5
+misswoo,10727641,4
+51797650,10727641,5
+abowlofnoodles,10727641,-1
+CTT696,10727641,5
+sslcfss,10727641,4
+59290556,10727641,4
+40104674,10727641,4
+honestydudu,10727641,4
+phonicfei,10727641,4
+33822786,10727641,4
+mango-mian,10727641,4
+4525488,10727641,4
+61302763,10727641,5
+saemahr,10727641,3
+40401643,10727641,4
+wxstar,10727641,5
+63177196,10727641,4
+xyz0805,10727641,4
+leann1217,10727641,4
+89340873,10727641,5
+redhairmashroom,10727641,4
+zqy931213,10727641,4
+hxmmzl,10727641,4
+allen_wang0567,10727641,3
+50588044,10727641,4
+xuyuhaouriz,10727641,5
+121807969,10727641,4
+cynthiazhang_,10727641,5
+79756212,10727641,3
+114181765,10727641,4
+41403989,10727641,3
+3970952,10727641,5
+zhangdayun,10727641,3
+Menhalai,10727641,3
+3209208,10727641,4
+40547313,10727641,4
+51629650,10727641,4
+51680395,10727641,3
+yixi7,10727641,4
+51845720,10727641,4
+renth,10727641,3
+pkbraveheart,10727641,4
+49206550,10727641,3
+50936098,10727641,4
+70057422,10727641,3
+60882378,10727641,3
+54811800,10727641,5
+131135417,10727641,4
+3192663,10727641,4
+far_away,10727641,4
+tequi1a,10727641,5
+briantzw,10727641,4
+62983025,10727641,5
+eggtree,10727641,4
+1814709,10727641,5
+alaray,10727641,4
+78458256,10727641,4
+lazzaro,10727641,3
+2232768,10727641,4
+89723194,10727641,4
+Liz426,10727641,4
+vivirainbow,10727641,3
+68332314,10727641,3
+124033490,10727641,4
+2504153,10727641,4
+51099421,10727641,5
+ningzi310,10727641,5
+57059937,10727641,5
+82852911,10727641,4
+44313962,10727641,4
+68237085,10727641,4
+72700363,10727641,5
+130993618,10727641,3
+122273764,10727641,4
+55865392,10727641,3
+vloiter,10727641,4
+46455848,10727641,4
+50926271,10727641,5
+65309880,10727641,-1
+66405994,10727641,4
+alovelybone,10727641,5
+42400179,10727641,5
+1187053,10727641,3
+64359754,10727641,5
+jiangye,10727641,4
+justinnext,10727641,3
+Summer-J,10727641,3
+95377922,10727641,5
+66340029,10727641,4
+villano,10727641,3
+130735639,10727641,3
+54713128,10727641,3
+67416002,10727641,3
+erobin,10727641,4
+59835894,10727641,4
+56772627,10727641,4
+46881821,10727641,5
+112962497,10727641,4
+huxiaotian,10727641,4
+kazuki_,10727641,4
+34937499,10727641,3
+58987913,10727641,4
+76489826,10727641,4
+ilovepanda42,10727641,3
+DUNHILLJJ,10727641,3
+106866145,10727641,5
+jack13,10727641,3
+51168066,10727641,4
+ngqmtm,10727641,1
+ngqmtm,10727641,1
+beate,10727641,4
+45107933,10727641,4
+tryingman,10727641,-1
+53773345,10727641,4
+92707476,10727641,5
+122789808,10727641,4
+68993346,10727641,4
+57707299,10727641,4
+janie225,10727641,5
+wasasw,10727641,3
+51479122,10727641,5
+1317656,10727641,5
+xjc1-1,10727641,4
+agnes223,10727641,4
+4463287,10727641,3
+94951098,10727641,4
+27933062,10727641,4
+48528896,10727641,5
+Q9,10727641,3
+jupengorall,10727641,3
+2973153,10727641,4
+67919722,10727641,4
+49661788,10727641,4
+3544382,10727641,4
+qiabeibei314,10727641,4
+xchill,10727641,3
+64904915,10727641,4
+78675448,10727641,3
+51795855,10727641,4
+90051465,10727641,4
+119396712,10727641,5
+1256276,10727641,4
+3229150,10727641,4
+3393944,10727641,4
+uniyiyi,10727641,5
+Warrgon,10727641,5
+83793299,10727641,-1
+ximutudan,10727641,5
+47182866,10727641,4
+46630645,10727641,5
+54252667,10727641,5
+kuangjieyu,10727641,3
+81425101,10727641,4
+115898172,10727641,3
+4044609,10727641,3
+wiki7,10727641,-1
+51279827,10727641,3
+sylviasun2011,10727641,3
+kuoxh,10727641,4
+56437151,10727641,4
+91528271,10727641,3
+alisa_lea,10727641,5
+3682487,10727641,4
+unrealzhizhi,10727641,4
+fuckyeahfaithy,10727641,-1
+nancyoyx,10727641,4
+10724372,10727641,4
+wangfendou1,10727641,3
+yue_cp,10727641,4
+bidiwudong,10727641,5
+115547734,10727641,2
+58267989,10727641,5
+73203651,10727641,3
+whisper,10727641,4
+45164185,10727641,4
+benjune,10727641,4
+helene9933,10727641,4
+52519025,10727641,5
+wenbo2003,10727641,4
+53080002,10727641,4
+54771764,10727641,4
+greymz,10727641,5
+56803436,10727641,4
+73630939,10727641,4
+81939274,10727641,3
+52013029,10727641,4
+AzuresongWarden,10727641,5
+45262915,10727641,4
+Rafe0323,10727641,4
+casper2fly,10727641,4
+wangyiqiu,10727641,4
+Creep_,10727641,3
+babyplume,10727641,4
+133887142,10727641,4
+onless,10727641,4
+3613359,10727641,4
+2646878,10727641,4
+ourpeerlesshero,10727641,4
+ll60amo,10727641,4
+DaRin6,10727641,-1
+46202022,10727641,4
+yanghuaxiluo,10727641,3
+80768830,10727641,5
+59929388,10727641,4
+q14151415,10727641,5
+58075034,10727641,5
+fatia0,10727641,3
+candy_littrell,10727641,4
+132389993,10727641,4
+angellailai,10727641,4
+1162369,10727641,4
+jingchen-ai,10727641,5
+astanly,10727641,3
+poly0330,10727641,4
+cherry_ocean,10727641,4
+Lioka,10727641,3
+fish0813,10727641,4
+kugooer,10727641,3
+aquahst,10727641,4
+103251122,10727641,4
+miaobuyi,10727641,-1
+56876627,10727641,3
+45318563,10727641,3
+4310321,10727641,5
+3899782,10727641,3
+50782612,10727641,3
+WG92,10727641,3
+1843710,10727641,4
+lachaohuage,10727641,4
+41498049,10727641,3
+39272608,10727641,4
+82320533,10727641,4
+51297229,10727641,3
+louieeeee,10727641,4
+princessvincy,10727641,5
+62496308,10727641,-1
+132024010,10727641,4
+floww,10727641,4
+35742329,10727641,3
+95871505,10727641,4
+serein0423,10727641,5
+63234207,10727641,3
+seekingant,10727641,4
+64880714,10727641,4
+4886879,10727641,5
+63765493,10727641,4
+50410530,10727641,4
+117236221,10727641,5
+61461484,10727641,4
+shoufy,10727641,4
+60095742,10727641,-1
+51803624,10727641,3
+77099096,10727641,3
+63949906,10727641,3
+network,10727641,3
+102042212,10727641,4
+2119783,10727641,4
+77644996,10727641,4
+watson,10727641,3
+2858055,10727641,4
+59966659,10727641,5
+cb1030,10727641,4
+2437069,10727641,4
+to1900,10727641,5
+121679794,10727641,4
+48690943,10727641,4
+77492957,10727641,5
+papa1968,10727641,4
+60119095,10727641,5
+46646449,10727641,3
+susidai,10727641,4
+YUYII,10727641,4
+52409641,10727641,3
+40140527,10727641,3
+consheep,10727641,3
+felinoshuffle,10727641,4
+94324210,10727641,5
+88259412,10727641,3
+54036002,10727641,5
+71947752,10727641,4
+46794642,10727641,5
+sttg,10727641,5
+55737203,10727641,3
+gonglinluan,10727641,3
+48098094,10727641,4
+7881838,10727641,4
+50555792,10727641,4
+95794515,10727641,4
+89750609,10727641,4
+aiyaya8856,10727641,4
+66617484,10727641,5
+58411324,10727641,4
+2942680,10727641,-1
+66794531,10727641,5
+76051077,10727641,5
+3863337,10727641,5
+W3IQ7,10727641,4
+36413097,10727641,4
+120978925,10727641,4
+63579329,10727641,2
+134327676,10727641,5
+59084050,10727641,3
+82690334,10727641,3
+moxbear,10727641,5
+huynbinF,10727641,4
+123331677,10727641,4
+FEILAMIDU,10727641,2
+sylvielanlan,10727641,5
+47293974,10727641,4
+48042607,10727641,4
+46312195,10727641,4
+73080100,10727641,4
+orangelynn,10727641,5
+54230070,10727641,1
+winya229,10727641,3
+37879706,10727641,2
+she-is-momo,10727641,4
+4808362,10727641,4
+61836437,10727641,4
+48906452,10727641,4
+17233438,10727641,4
+sophie_star,10727641,4
+67426132,10727641,3
+nongnong424,10727641,5
+fatwolf,10727641,4
+53242545,10727641,5
+tracyxin,10727641,5
+fanfankuaipao,10727641,-1
+56553588,10727641,4
+43867451,10727641,4
+mlzizi,10727641,5
+53925227,10727641,4
+21771687,10727641,5
+bluetiger,10727641,4
+holyisland,10727641,5
+sooochent,10727641,3
+45077358,10727641,2
+52558082,10727641,5
+62949380,10727641,5
+57749924,10727641,4
+44356747,10727641,4
+49813166,10727641,4
+79745413,10727641,4
+z218,10727641,4
+41732863,10727641,5
+57468138,10727641,4
+74073772,10727641,4
+130712247,10727641,4
+cyctntx,10727641,4
+8523675,10727641,4
+dancing.girl,10727641,4
+67883683,10727641,4
+4574277,10727641,4
+70913010,10727641,5
+ricchhard,10727641,5
+62501092,10727641,4
+1923469,10727641,3
+61186332,10727641,4
+jinyuhen,10727641,4
+127071890,10727641,4
+87911212,10727641,3
+64734128,10727641,5
+lim6o,10727641,5
+37571281,10727641,3
+57115066,10727641,3
+51248598,10727641,5
+3658319,10727641,3
+zzzzzmc,10727641,4
+Giraffe830,10727641,4
+51855205,10727641,4
+45279594,10727641,3
+blurrrrr,10727641,5
+littlerow,10727641,3
+babylucky,10727641,4
+4014604,10727641,4
+3502294,10727641,3
+11906540,10727641,4
+54454026,10727641,-1
+89835512,10727641,5
+5552215,10727641,4
+75301125,10727641,4
+54875172,10727641,5
+mississluu,10727641,4
+17991181,10727641,5
+56919715,10727641,5
+50245903,10727641,3
+78966790,10727641,3
+65032980,10727641,4
+43191706,10727641,4
+logiko,10727641,4
+133979013,10727641,5
+52211403,10727641,5
+61026232,10727641,3
+2325631,10727641,5
+leeliu,10727641,3
+36575109,10727641,4
+68825025,10727641,3
+35892393,10727641,4
+64122434,10727641,5
+leoloe,10727641,5
+smiletolife,10727641,4
+49238441,10727641,4
+nailuoyitai,10727641,3
+12629797,10727641,3
+ganqianru,10727641,5
+sunflower_miss,10727641,4
+58199841,10727641,5
+74520684,10727641,4
+guoguo915,10727641,5
+45623662,10727641,4
+zcysandra,10727641,4
+sunwukong.326,10727641,5
+3410163,10727641,4
+48153292,10727641,4
+67942462,10727641,4
+meathill,10727641,5
+105023809,10727641,4
+3195957,10727641,3
+62484889,10727641,3
+1782017,10727641,4
+70692054,10727641,5
+47288802,10727641,4
+EffyQ,10727641,4
+echoabc0409,10727641,5
+49356152,10727641,4
+ssxl,10727641,4
+izaijin,10727641,4
+86203854,10727641,5
+chanelluo,10727641,5
+66507526,10727641,5
+51135746,10727641,4
+88050881,10727641,3
+64056125,10727641,4
+71654816,10727641,4
+44834403,10727641,4
+108182333,10727641,3
+46804098,10727641,4
+4046190,10727641,5
+55715149,10727641,4
+50159821,10727641,4
+2572927,10727641,4
+84593268,10727641,4
+56867346,10727641,3
+grayfoxever,10727641,3
+snoopy198471,10727641,3
+46532377,10727641,5
+68912465,10727641,4
+69324457,10727641,4
+ff_fecility,10727641,4
+ff_fecility,10727641,4
+57079811,10727641,4
+shuaiteng,10727641,4
+54945552,10727641,4
+59344860,10727641,5
+54479962,10727641,4
+thelostcoffee,10727641,3
+3529966,10727641,-1
+45439094,10727641,4
+51357131,10727641,3
+3838565,10727641,3
+youyeyi,10727641,3
+131194167,10727641,5
+hey.nanzhuang,10727641,4
+2126869,10727641,4
+2961232,10727641,5
+Andy9,10727641,4
+dssunshineer,10727641,4
+16645869,10727641,4
+Boomer,10727641,4
+nadileaf,10727641,4
+61492149,10727641,3
+33901414,10727641,3
+74941787,10727641,4
+miniseal,10727641,5
+82832477,10727641,4
+yaozhilan,10727641,4
+52935293,10727641,5
+abpeter,10727641,4
+81410150,10727641,4
+48725322,10727641,5
+ilittleP,10727641,5
+liuzhusn,10727641,4
+jiqiuqiu,10727641,5
+42604000,10727641,4
+72387002,10727641,4
+68046428,10727641,5
+Tomokin,10727641,5
+45984681,10727641,4
+2190029,10727641,4
+49079570,10727641,3
+Findirien,10727641,-1
+lucypenny_2001,10727641,4
+60583715,10727641,5
+phoebes,10727641,3
+52004957,10727641,3
+41516855,10727641,3
+69998360,10727641,4
+52845120,10727641,5
+57287738,10727641,4
+Deeper.Dark,10727641,3
+punkyml,10727641,-1
+47118380,10727641,5
+4887509,10727641,4
+50543598,10727641,4
+58087167,10727641,3
+litian19890502,10727641,4
+45982463,10727641,4
+soul92114,10727641,3
+92775477,10727641,5
+asha19,10727641,4
+fangzhou422,10727641,4
+134319338,10727641,5
+48046895,10727641,-1
+leisuretimeyun,10727641,4
+37959469,10727641,3
+2319130,10727641,5
+sqz1212,10727641,3
+onlyYH,10727641,4
+2565519,10727641,4
+dingxuefeng0918,10727641,5
+xiaoyuhen,10727641,4
+42871982,10727641,3
+100541029,10727641,4
+46793847,10727641,5
+wan1991m,10727641,4
+55286449,10727641,5
+4066750,10727641,5
+edensan,10727641,4
+40835496,10727641,-1
+57790852,10727641,3
+raquelycidas,10727641,5
+77801341,10727641,4
+zsuredrain,10727641,4
+1956921,10727641,4
+2469119,10727641,3
+100625194,10727641,5
+65216675,10727641,4
+62141852,10727641,4
+65813989,10727641,4
+Optimus-Prime,10727641,5
+87725382,10727641,3
+focustom,10727641,5
+2258796,10727641,4
+6595795,10727641,5
+102572566,10727641,4
+17298456,10727641,4
+44705370,10727641,4
+kongben,10727641,3
+fangxiulei,10727641,2
+40876510,10727641,4
+Ching-s,10727641,4
+ricochen,10727641,4
+4313714,10727641,4
+2243854,10727641,4
+59606439,10727641,4
+liuzhiya,10727641,3
+shen.yang,10727641,3
+128237011,10727641,5
+2910620,10727641,5
+36610260,10727641,3
+2683471,10727641,4
+Creep_v,10727641,5
+53095659,10727641,4
+rainbow220,10727641,3
+64396292,10727641,4
+45383601,10727641,4
+67387288,10727641,5
+56769973,10727641,4
+onlyburger,10727641,4
+65832475,10727641,4
+79075918,10727641,4
+58536535,10727641,4
+39268690,10727641,4
+66967497,10727641,4
+114339975,10727641,5
+49549223,10727641,3
+130994214,10727641,5
+wucai663,10727641,5
+25818207,10727641,5
+50472438,10727641,3
+48722381,10727641,5
+solohomer,10727641,3
+harmfulinsect,10727641,3
+81304240,10727641,5
+4586341,10727641,5
+130217505,10727641,4
+87790169,10727641,3
+39879452,10727641,5
+42202741,10727641,4
+3791482,10727641,4
+5758212,10727641,3
+43409515,10727641,5
+zhongxiaoho,10727641,4
+undeadmonster,10727641,4
+99483183,10727641,3
+fandaniaowoaini,10727641,3
+51790635,10727641,4
+45987005,10727641,3
+42781255,10727641,4
+Link0406,10727641,3
+105547420,10727641,5
+52202300,10727641,5
+39923615,10727641,4
+Gladysxie,10727641,5
+2902661,10727641,4
+Chilwoo,10727641,3
+YvonneGQ,10727641,4
+walinee,10727641,5
+TheOddOne,10727641,5
+yqdz,10727641,3
+fish_peanut,10727641,3
+cantona_x,10727641,5
+65292706,10727641,5
+50204008,10727641,5
+116703616,10727641,3
+wreneastwood,10727641,4
+79666954,10727641,3
+shushizhenliu,10727641,4
+57105566,10727641,3
+zhaoxiaobeng,10727641,4
+89667488,10727641,5
+129015324,10727641,4
+62309312,10727641,4
+125149511,10727641,5
+90793123,10727641,3
+57375454,10727641,4
+55438034,10727641,4
+xiaofeipedia,10727641,4
+seren,10727641,4
+62941422,10727641,4
+96233634,10727641,5
+58777523,10727641,3
+43639134,10727641,3
+61674777,10727641,5
+52242741,10727641,4
+lilcccc,10727641,4
+127278343,10727641,4
+51065075,10727641,5
+siyoo,10727641,5
+xiaozhubaobao,10727641,4
+zolene,10727641,4
+25591384,10727641,5
+132466611,10727641,3
+2174198,10727641,3
+52886775,10727641,4
+70124708,10727641,5
+54008688,10727641,4
+XiaoKong,10727641,4
+liulenju,10727641,4
+jujuhe,10727641,3
+75007342,10727641,3
+49098543,10727641,4
+y19940504,10727641,5
+66966914,10727641,4
+heymgx,10727641,3
+49115709,10727641,5
+vivimao128,10727641,4
+68277572,10727641,4
+yvonneliu,10727641,3
+H.T.Rockwall,10727641,4
+tayloverms,10727641,4
+yumendechaoren,10727641,5
+71758766,10727641,4
+miss-sun,10727641,4
+132923762,10727641,3
+35925189,10727641,4
+56413716,10727641,4
+64120834,10727641,5
+82765310,10727641,4
+53007365,10727641,4
+oceanboo,10727641,4
+78548715,10727641,4
+irenaleo,10727641,4
+65510626,10727641,4
+Microka,10727641,4
+132718277,10727641,5
+94659309,10727641,3
+100934769,10727641,-1
+biyi,10727641,-1
+duax,10727641,4
+37310626,10727641,4
+5667325,10727641,3
+40424921,10727641,2
+62950315,10727641,5
+chidaodexiaolou,10727641,4
+dulllennon,10727641,4
+44005420,10727641,4
+49927758,10727641,4
+50842003,10727641,3
+LogicLady,10727641,4
+2799911,10727641,3
+1381065,10727641,4
+66598578,10727641,5
+74771823,10727641,2
+chennanlydia,10727641,5
+miku,10727641,4
+52386028,10727641,4
+49008055,10727641,4
+27008930,10727641,4
+85003945,10727641,5
+toyomana,10727641,4
+72808838,10727641,3
+1609757,10727641,4
+60262421,10727641,4
+54090244,10727641,5
+1659209,10727641,4
+55296709,10727641,5
+63412313,10727641,3
+84420223,10727641,5
+103400756,10727641,4
+3239192,10727641,4
+jennychang,10727641,3
+48532169,10727641,4
+zhaozhaolv,10727641,4
+bunny636,10727641,4
+3718839,10727641,4
+61280115,10727641,4
+waitting_alone,10727641,4
+58429338,10727641,5
+45782661,10727641,4
+46711552,10727641,4
+isabella2524,10727641,5
+take_me_away,10727641,4
+82687720,10727641,3
+58117045,10727641,4
+zzqinxx,10727641,4
+3722910,10727641,5
+82764407,10727641,5
+lyyyy,10727641,4
+46346785,10727641,4
+1162046,10727641,3
+57968608,10727641,3
+36927005,10727641,4
+caixiaofeng1992,10727641,3
+EddyLin,10727641,5
+51686369,10727641,4
+yededi8821,10727641,4
+49082451,10727641,4
+62122112,10727641,4
+Youandi4,10727641,-1
+riyueming024,10727641,4
+seodler,10727641,3
+59856519,10727641,5
+78571536,10727641,5
+63450487,10727641,3
+violin1112,10727641,4
+121519477,10727641,5
+49586478,10727641,4
+yanjing7611,10727641,4
+mvapple,10727641,5
+80899034,10727641,3
+2094226,10727641,3
+49087284,10727641,4
+41803938,10727641,4
+56751525,10727641,4
+57031441,10727641,4
+yaozi0426,10727641,4
+mumurose,10727641,4
+41703158,10727641,4
+zyx256,10727641,3
+sheeppark,10727641,4
+hwh,10727641,3
+4405956,10727641,4
+49295947,10727641,2
+pengyuwa,10727641,5
+45549330,10727641,4
+57059547,10727641,4
+58412725,10727641,4
+66990559,10727641,5
+3728206,10727641,5
+85866685,10727641,5
+july8903,10727641,4
+75548648,10727641,4
+hhhhhhn,10727641,4
+luyanan1943,10727641,3
+liuyahuavv,10727641,4
+122061245,10727641,5
+zhuangdikun,10727641,3
+3605624,10727641,5
+4151913,10727641,5
+79394514,10727641,4
+37523518,10727641,4
+49139242,10727641,5
+65442641,10727641,4
+73735858,10727641,4
+130377977,10727641,3
+114759212,10727641,5
+guaipilele,10727641,4
+126908686,10727641,5
+48877140,10727641,3
+53936044,10727641,4
+Colahdh,10727641,3
+93723705,10727641,5
+yingyujiaoshi,10727641,3
+64854726,10727641,4
+120886080,10727641,2
+zjw0325,10727641,4
+121881765,10727641,4
+47877779,10727641,3
+isabell520,10727641,3
+3170513,10727641,4
+133593177,10727641,3
+109446676,10727641,4
+zjnsas,10727641,4
+4036138,10727641,4
+essies,10727641,4
+44050452,10727641,4
+55744777,10727641,4
+1414261,10727641,5
+60233136,10727641,4
+inka37x,10727641,5
+74522776,10727641,5
+3687786,10727641,5
+49317175,10727641,4
+hotelCA,10727641,4
+tiamat,10727641,4
+wukongtiaotiao,10727641,4
+3948218,10727641,5
+TerryPrince,10727641,4
+120467898,10727641,4
+63308535,10727641,4
+131616351,10727641,5
+58311927,10727641,5
+chen_sam,10727641,4
+3304167,10727641,4
+zhangezra,10727641,3
+shangshishuo,10727641,5
+canace_wang,10727641,5
+kidsinlove,10727641,3
+119493650,10727641,4
+87353422,10727641,5
+elephantjun,10727641,3
+68492607,10727641,3
+51591369,10727641,3
+60844857,10727641,4
+Kinguan,10727641,5
+83497810,10727641,5
+62775210,10727641,2
+83411107,10727641,4
+53917309,10727641,4
+38276962,10727641,4
+49196106,10727641,4
+73478164,10727641,3
+72644151,10727641,4
+2571757,10727641,4
+121055789,10727641,5
+68511665,10727641,3
+Heliotrop,10727641,5
+57195945,10727641,3
+lindada,10727641,5
+4805946,10727641,5
+70702423,10727641,4
+127386249,10727641,4
+shouting0,10727641,4
+68758179,10727641,2
+57695371,10727641,4
+54011582,10727641,3
+12822970,10727641,4
+125965009,10727641,5
+4638543,10727641,3
+94299562,10727641,-1
+iceleehom,10727641,3
+21533627,10727641,5
+wkwkaka,10727641,4
+ntz521,10727641,3
+62690697,10727641,4
+iear,10727641,4
+130699016,10727641,4
+60074125,10727641,4
+snowhair,10727641,4
+lephemera,10727641,3
+85821824,10727641,4
+99473768,10727641,4
+piposha,10727641,4
+75652747,10727641,4
+kandyball,10727641,4
+wheRe,10727641,4
+78801731,10727641,5
+JoooNE,10727641,4
+as_shmily,10727641,3
+pixiezhezhe,10727641,3
+shirleynash,10727641,3
+GraceSprite,10727641,3
+Csq1994106,10727641,4
+Prague920510,10727641,3
+63140674,10727641,4
+52665876,10727641,5
+4715775,10727641,4
+102979286,10727641,4
+rabbityinyin,10727641,4
+38834525,10727641,2
+59008447,10727641,3
+63888010,10727641,4
+beibeilaner,10727641,4
+fucklester,10727641,4
+72312471,10727641,4
+coolbla,10727641,3
+64904189,10727641,4
+48494718,10727641,4
+57418074,10727641,4
+49576050,10727641,5
+41835913,10727641,5
+bidhole,10727641,4
+endlishock,10727641,5
+76428623,10727641,3
+32114364,10727641,4
+114057522,10727641,3
+85384929,10727641,3
+48480563,10727641,4
+poison1988,10727641,4
+micky,10727641,4
+icepenny77,10727641,4
+11383205,10727641,4
+74448596,10727641,3
+manlymanly,10727641,-1
+lies583,10727641,4
+benmak,10727641,5
+75174389,10727641,3
+27562730,10727641,4
+megansyr,10727641,-1
+84663969,10727641,5
+gabubu,10727641,4
+cherrybomb0225,10727641,3
+68194248,10727641,3
+youknow810,10727641,3
+zcx1990,10727641,5
+sallow,10727641,3
+42084433,10727641,3
+60829773,10727641,4
+57611021,10727641,4
+54187301,10727641,4
+95386641,10727641,4
+55630387,10727641,5
+102100348,10727641,4
+60017606,10727641,4
+121754243,10727641,5
+53240525,10727641,4
+SuperWMY,10727641,1
+131738303,10727641,5
+69529350,10727641,3
+3953875,10727641,3
+114854164,10727641,5
+15923962,10727641,3
+PhilZH,10727641,3
+121880026,10727641,3
+89780589,10727641,5
+24333336,10727641,4
+63016416,10727641,4
+46119744,10727641,4
+46119744,10727641,4
+DeWatson,10727641,4
+badaalle,10727641,3
+rockymei,10727641,5
+79426082,10727641,5
+3520910,10727641,5
+55819414,10727641,3
+87783033,10727641,4
+arashilee,10727641,3
+71324630,10727641,5
+131811211,10727641,5
+121763704,10727641,5
+129283684,10727641,3
+1973189,10727641,4
+wangdoudou20,10727641,4
+msbig,10727641,3
+dearerxia,10727641,4
+even2even,10727641,4
+goodbyelenin,10727641,2
+98794202,10727641,4
+SilentTokoy,10727641,3
+49388696,10727641,3
+owenclv,10727641,3
+4760755,10727641,4
+paradoxx,10727641,3
+ivy1207,10727641,5
+senlintu,10727641,3
+120421429,10727641,4
+101633858,10727641,5
+liuzisen,10727641,3
+QQ3BlueRose,10727641,4
+vinciwang,10727641,4
+61518424,10727641,4
+duckdan,10727641,4
+65247258,10727641,4
+maxiaomeng,10727641,4
+60165688,10727641,4
+ontheroad93,10727641,3
+50416947,10727641,3
+102463790,10727641,4
+samadhi,10727641,5
+49261275,10727641,4
+54780757,10727641,3
+56827914,10727641,3
+30857176,10727641,3
+77194214,10727641,3
+59038571,10727641,4
+130953760,10727641,4
+3497982,10727641,4
+3898671,10727641,3
+67755024,10727641,3
+98762105,10727641,5
+zayuyun,10727641,3
+65563453,10727641,4
+38045752,10727641,-1
+55571572,10727641,4
+4705870,10727641,4
+SZH19920707,10727641,4
+loveabuforever,10727641,4
+3477296,10727641,-1
+2761640,10727641,4
+Talushen,10727641,4
+34766480,10727641,3
+yihanlin,10727641,4
+60447195,10727641,3
+46508158,10727641,5
+cateyeqn,10727641,5
+4525630,10727641,4
+3624250,10727641,4
+57580969,10727641,4
+110929955,10727641,4
+55406228,10727641,3
+moweryu,10727641,5
+2109472,10727641,5
+cdc,10727641,4
+comicsuperman,10727641,5
+43328284,10727641,3
+44286513,10727641,3
+maerta,10727641,3
+50629676,10727641,4
+19848707,10727641,4
+82387095,10727641,4
+100582359,10727641,3
+guanbz,10727641,4
+66763585,10727641,4
+4675447,10727641,5
+iCinderella721,10727641,4
+63639496,10727641,5
+57459956,10727641,4
+lucychen,10727641,4
+47034969,10727641,4
+58485840,10727641,4
+shinkouyin,10727641,4
+81763122,10727641,3
+90769317,10727641,4
+99296692,10727641,2
+yummygirl,10727641,3
+WillHunted,10727641,4
+64139791,10727641,4
+49002817,10727641,5
+mistersusma,10727641,3
+HilaryYue,10727641,3
+57093320,10727641,2
+4549412,10727641,5
+44034935,10727641,3
+48036288,10727641,5
+122420292,10727641,3
+Deniss.Q,10727641,4
+mrgoodnight,10727641,3
+78727424,10727641,3
+45047336,10727641,4
+62288515,10727641,5
+40681472,10727641,5
+55444870,10727641,4
+67876533,10727641,3
+122052846,10727641,3
+52468739,10727641,4
+1664141,10727641,4
+KIRINZAN,10727641,4
+82395674,10727641,4
+lutaozi,10727641,2
+shelstar,10727641,4
+132446691,10727641,4
+112902824,10727641,5
+49411009,10727641,4
+47054399,10727641,4
+ccamanda,10727641,4
+88267631,10727641,-1
+53917833,10727641,5
+45784298,10727641,5
+53143088,10727641,3
+2778486,10727641,4
+yihaifei,10727641,3
+63202684,10727641,3
+60189381,10727641,4
+110718557,10727641,4
+44733447,10727641,3
+3537292,10727641,3
+4725146,10727641,4
+walunt,10727641,4
+paradise624,10727641,4
+3934959,10727641,4
+2740592,10727641,3
+llbreeze,10727641,4
+pbc0615,10727641,3
+6303192,10727641,3
+78656769,10727641,5
+52424511,10727641,3
+57061185,10727641,4
+65187145,10727641,4
+71278523,10727641,4
+52021990,10727641,4
+53420942,10727641,4
+beini125,10727641,2
+48590382,10727641,3
+pxdnic,10727641,4
+43866584,10727641,1
+ximenqing_,10727641,4
+59378260,10727641,5
+3322909,10727641,3
+clytzesmile,10727641,5
+sulen,10727641,5
+64552518,10727641,4
+105314480,10727641,5
+ceciliarazee,10727641,3
+61790360,10727641,3
+45964596,10727641,-1
+Hermetic,10727641,4
+Butcherhoney,10727641,3
+leave614,10727641,4
+mianapple,10727641,3
+31978240,10727641,4
+91779176,10727641,3
+79249648,10727641,4
+2409685,10727641,4
+beanny,10727641,5
+xiaojingyush,10727641,3
+52392093,10727641,4
+39257377,10727641,4
+mxydhd,10727641,3
+60923783,10727641,4
+67796824,10727641,3
+75188752,10727641,3
+75182939,10727641,5
+2340389,10727641,4
+rachelife930,10727641,4
+61326844,10727641,5
+44379599,10727641,4
+delchisio,10727641,4
+45521984,10727641,4
+40733180,10727641,4
+imcaoli,10727641,3
+63474747,10727641,4
+echoticDDDD,10727641,4
+70469575,10727641,4
+ygweric,10727641,5
+mason0128,10727641,4
+shennessy,10727641,4
+metkee,10727641,4
+44191956,10727641,4
+104823216,10727641,5
+40482611,10727641,4
+52944642,10727641,4
+shotakusho,10727641,5
+71882861,10727641,4
+108289552,10727641,4
+dseye,10727641,5
+4247692,10727641,4
+21465226,10727641,4
+47331864,10727641,4
+78192927,10727641,4
+52153576,10727641,4
+L_kid,10727641,5
+58975463,10727641,4
+fenglianjun,10727641,3
+65559590,10727641,3
+51683768,10727641,4
+82484416,10727641,4
+114606951,10727641,5
+62672201,10727641,3
+yuhongliang,10727641,3
+fanya,10727641,4
+54266589,10727641,4
+godzip,10727641,4
+janiris,10727641,4
+65850343,10727641,4
+57919652,10727641,4
+67905172,10727641,5
+130345686,10727641,3
+xiaoshenjing,10727641,4
+123235799,10727641,-1
+59301158,10727641,4
+36241769,10727641,4
+124454581,10727641,4
+93825881,10727641,4
+74624286,10727641,4
+75672182,10727641,5
+38808960,10727641,4
+94872079,10727641,5
+62344979,10727641,5
+62344979,10727641,5
+jpdong,10727641,4
+88719109,10727641,4
+1333942,10727641,4
+jetamit,10727641,4
+57786267,10727641,4
+Monica__Wang,10727641,4
+61509352,10727641,4
+44316758,10727641,5
+52833192,10727641,4
+130762415,10727641,3
+113966573,10727641,4
+71512508,10727641,4
+1802019,10727641,4
+126857182,10727641,5
+68499558,10727641,4
+sherry_mj,10727641,4
+52977562,10727641,5
+yangziqiang,10727641,4
+teselaaaaaaa,10727641,4
+131191820,10727641,4
+3297168,10727641,3
+zxmgx,10727641,4
+lucyn,10727641,5
+3481855,10727641,4
+BoondockSaints,10727641,4
+64564754,10727641,5
+48369193,10727641,5
+csj0824,10727641,3
+2451603,10727641,5
+102024318,10727641,4
+36653510,10727641,3
+3922341,10727641,5
+stile,10727641,3
+Rainbowww,10727641,4
+zouzouwanwan,10727641,4
+46162518,10727641,5
+46953232,10727641,-1
+47669083,10727641,3
+68865370,10727641,4
+waking,10727641,3
+1424607,10727641,2
+69385606,10727641,5
+53706113,10727641,3
+46874810,10727641,2
+jakartaxie,10727641,4
+55930699,10727641,4
+kuensun,10727641,4
+y_XO,10727641,4
+xiaozuo1,10727641,4
+gexiarong,10727641,3
+lunaya,10727641,3
+82131016,10727641,5
+48689734,10727641,4
+yyyyyq,10727641,4
+mpower007,10727641,3
+123690548,10727641,4
+4087422,10727641,4
+85345798,10727641,5
+52268031,10727641,3
+74038752,10727641,5
+122365182,10727641,3
+83739220,10727641,5
+38606077,10727641,4
+yoink,10727641,2
+ishama,10727641,5
+iCath,10727641,4
+36409267,10727641,4
+43396727,10727641,3
+2266961,10727641,5
+lastunicorn,10727641,5
+46469157,10727641,5
+79847046,10727641,3
+53475858,10727641,4
+51920642,10727641,3
+2833136,10727641,3
+harriet,10727641,3
+50833058,10727641,5
+56941343,10727641,3
+26306306,10727641,4
+virginiaboat,10727641,-1
+53075931,10727641,3
+95630751,10727641,5
+52307398,10727641,5
+bastonma,10727641,4
+49454136,10727641,4
+70441935,10727641,4
+imom918,10727641,4
+41801093,10727641,5
+molianshaonian,10727641,4
+mississippi0071,10727641,5
+58109706,10727641,4
+44045127,10727641,5
+39529333,10727641,4
+caesarphoenix,10727641,-1
+xuqingkuang,10727641,4
+7861077,10727641,4
+qieer_422,10727641,4
+2404348,10727641,2
+59544460,10727641,4
+58188727,10727641,5
+wapxw,10727641,3
+luzhenxing,10727641,5
+124120092,10727641,5
+lotusworld,10727641,4
+104797754,10727641,3
+takuyayueyue,10727641,3
+34270663,10727641,4
+qiao517,10727641,5
+67906921,10727641,3
+127318413,10727641,5
+37205674,10727641,-1
+54298534,10727641,5
+deafbear,10727641,3
+amyzane,10727641,4
+126685684,10727641,5
+unknown-place,10727641,4
+45527228,10727641,5
+131463434,10727641,5
+51488028,10727641,4
+96771459,10727641,5
+Kateya,10727641,4
+nicolastong,10727641,3
+April95,10727641,3
+133173153,10727641,3
+48227947,10727641,5
+48398238,10727641,4
+131340441,10727641,3
+92174979,10727641,3
+1731256,10727641,5
+51919876,10727641,4
+3155091,10727641,4
+huwenjia,10727641,4
+2935568,10727641,5
+84972499,10727641,-1
+131843195,10727641,5
+29696256,10727641,5
+kuwawa,10727641,3
+yaqian,10727641,4
+JGuo,10727641,3
+48358575,10727641,5
+2407582,10727641,5
+57566252,10727641,5
+Lost_Atlantis,10727641,3
+null12345,10727641,3
+lbq0175,10727641,4
+rajorAn,10727641,4
+40926979,10727641,1
+3853276,10727641,3
+134298368,10727641,3
+13643786,10727641,3
+3634776,10727641,4
+82299258,10727641,1
+35703098,10727641,3
+33489379,10727641,3
+warmsoliloquy,10727641,3
+joycedays,10727641,-1
+zourong,10727641,4
+56708726,10727641,4
+66698052,10727641,4
+49168768,10727641,5
+46952897,10727641,5
+44611044,10727641,5
+shilaimu,10727641,4
+ininsun,10727641,2
+summer_waiting,10727641,4
+46513410,10727641,3
+63882511,10727641,5
+teikamouse,10727641,3
+xhlaxhla,10727641,2
+along72,10727641,3
+45010437,10727641,3
+115483881,10727641,4
+124862785,10727641,4
+2402223,10727641,5
+14715966,10727641,4
+51840690,10727641,4
+wangmian0729,10727641,4
+56685137,10727641,5
+chengtong1991,10727641,5
+cranberry711,10727641,3
+56478530,10727641,3
+59307428,10727641,5
+acousma,10727641,4
+2918978,10727641,5
+ayame,10727641,-1
+74869653,10727641,5
+yangmiu,10727641,4
+fsyc,10727641,4
+49965026,10727641,5
+48198502,10727641,4
+crystaltvxq,10727641,4
+56196018,10727641,5
+17883695,10727641,4
+56971084,10727641,5
+bayuban,10727641,4
+131166222,10727641,3
+74195273,10727641,4
+earnest1987,10727641,5
+50268324,10727641,5
+3032363,10727641,3
+40735647,10727641,4
+47489065,10727641,5
+85060926,10727641,4
+zzy1217,10727641,4
+xiaoyi91,10727641,5
+53766158,10727641,4
+2830223,10727641,3
+miyamiyawei,10727641,4
+76380392,10727641,4
+50497680,10727641,4
+76850553,10727641,5
+73291837,10727641,4
+muer1986,10727641,3
+allwordswrong,10727641,4
+Kaylana,10727641,3
+61877419,10727641,5
+50317261,10727641,4
+109071347,10727641,4
+61405029,10727641,4
+wulebuzuo,10727641,4
+4323578,10727641,4
+42415785,10727641,5
+62044477,10727641,3
+houyuan425,10727641,5
+ruxiaoguo,10727641,3
+emilylele,10727641,5
+2561289,10727641,3
+vacancy_v,10727641,3
+43828485,10727641,4
+reneelv,10727641,4
+henhen7,10727641,5
+132506140,10727641,4
+4387690,10727641,3
+bunny-_-,10727641,3
+blindlove,10727641,-1
+1985034,10727641,3
+1614995,10727641,4
+49270267,10727641,5
+39378921,10727641,4
+succiyan,10727641,5
+66330480,10727641,4
+81202119,10727641,3
+72505167,10727641,3
+50750896,10727641,3
+80319590,10727641,4
+bill86101,10727641,4
+supersun1005,10727641,4
+59012758,10727641,4
+63973142,10727641,4
+drawtang,10727641,3
+133672618,10727641,3
+invierno,10727641,4
+sarahbeibei,10727641,4
+paranoid...,10727641,4
+graceguolinjing,10727641,4
+46251702,10727641,4
+64545753,10727641,2
+49575577,10727641,5
+3620788,10727641,4
+karee,10727641,5
+42628772,10727641,5
+52470854,10727641,4
+40747171,10727641,5
+2056601,10727641,4
+cappuccino-jl,10727641,3
+leon115,10727641,5
+30909217,10727641,4
+82887347,10727641,3
+48849498,10727641,4
+cindy547288,10727641,4
+121925432,10727641,4
+3924135,10727641,5
+dandan0451,10727641,5
+yanqingwei,10727641,3
+saramd,10727641,4
+Hannah5354,10727641,4
+55511225,10727641,2
+57693778,10727641,3
+75925121,10727641,2
+3981876,10727641,4
+76368928,10727641,3
+123172698,10727641,4
+131329189,10727641,-1
+63318425,10727641,4
+44602453,10727641,4
+56857148,10727641,4
+35921595,10727641,4
+2226423,10727641,4
+53375345,10727641,5
+71813073,10727641,5
+Chloe-IZUMI,10727641,4
+3053086,10727641,4
+46017359,10727641,4
+leafwaiting,10727641,3
+dear.sunny,10727641,5
+means,10727641,4
+joyfish0912,10727641,3
+JackHChan,10727641,5
+58619991,10727641,4
+58619991,10727641,4
+daisylau,10727641,4
+xinzhouyang,10727641,5
+2298833,10727641,3
+1623065,10727641,4
+27675083,10727641,4
+Alice_,10727641,4
+46282005,10727641,4
+c1010123100,10727641,4
+saai,10727641,5
+41349161,10727641,4
+45532519,10727641,4
+Dpudding,10727641,3
+emmazhangxx,10727641,4
+xiaohundexiaoba,10727641,4
+chloe6668,10727641,5
+alvinyan,10727641,4
+49614386,10727641,3
+akprussia,10727641,5
+3619652,10727641,4
+3497198,10727641,4
+dhflockyer00,10727641,4
+luoee,10727641,4
+62644880,10727641,4
+101573363,10727641,4
+foreversleepy,10727641,4
+74553304,10727641,3
+3317762,10727641,4
+lish5621,10727641,5
+68640235,10727641,5
+moruohan,10727641,3
+65094670,10727641,4
+Jobszhuisui9,10727641,4
+120605718,10727641,3
+48847988,10727641,3
+sunfloweroom,10727641,4
+15342214,10727641,3
+54335075,10727641,3
+2176940,10727641,4
+silver_soul,10727641,4
+50054306,10727641,4
+47353624,10727641,5
+36002366,10727641,4
+shjolin,10727641,4
+Leslie_Cheung,10727641,3
+43955496,10727641,4
+68504200,10727641,5
+brushless,10727641,4
+37775182,10727641,4
+52777997,10727641,3
+44349387,10727641,4
+103102665,10727641,4
+28739019,10727641,3
+37919686,10727641,4
+dianawh,10727641,4
+tianchaoccav,10727641,2
+3835065,10727641,4
+43211886,10727641,2
+29710107,10727641,5
+bailongyizhan,10727641,3
+66483711,10727641,3
+92081294,10727641,4
+pygmalio,10727641,3
+liuweifly,10727641,4
+45478417,10727641,4
+62322815,10727641,5
+98944241,10727641,4
+105344131,10727641,-1
+endingsue,10727641,5
+60140602,10727641,5
+FinalFantasy,10727641,4
+58833110,10727641,3
+34440415,10727641,-1
+119061026,10727641,4
+lex1940,10727641,5
+83438195,10727641,4
+60853996,10727641,3
+43322350,10727641,5
+luoqiuyue,10727641,3
+99833271,10727641,3
+68568095,10727641,4
+41896230,10727641,3
+46659356,10727641,5
+8603145,10727641,3
+68280727,10727641,4
+17639214,10727641,3
+lingfriendly,10727641,4
+61351436,10727641,4
+girliris,10727641,4
+wen_Schwartz,10727641,3
+tomhu,10727641,3
+henshss,10727641,3
+107413834,10727641,5
+72101661,10727641,5
+27647451,10727641,5
+2176730,10727641,3
+120480108,10727641,3
+55021112,10727641,4
+98257348,10727641,4
+onlycf,10727641,3
+lovetatum,10727641,4
+42280664,10727641,4
+suecat,10727641,-1
+4732229,10727641,3
+56091106,10727641,5
+karenlo,10727641,4
+3310337,10727641,4
+38870289,10727641,4
+51274833,10727641,5
+91584041,10727641,4
+pumba92simba,10727641,4
+58423164,10727641,5
+45849847,10727641,4
+ViolentViolin,10727641,5
+shadow-walker,10727641,4
+3403796,10727641,3
+Amy-Winter,10727641,3
+19835187,10727641,3
+wangxc90721,10727641,4
+58113364,10727641,3
+finallove,10727641,5
+75025238,10727641,5
+17210436,10727641,4
+45210302,10727641,3
+jiarencaotian,10727641,4
+janeao,10727641,3
+90197957,10727641,5
+115702103,10727641,3
+45162443,10727641,4
+3178442,10727641,5
+129345259,10727641,4
+45099441,10727641,3
+99077517,10727641,4
+CaptLimbo,10727641,4
+sarieru,10727641,-1
+zty1989,10727641,4
+meetanan,10727641,3
+129139352,10727641,3
+1065969,10727641,3
+44909153,10727641,4
+64162088,10727641,4
+dreamofme,10727641,4
+48778738,10727641,4
+88220116,10727641,5
+madbug,10727641,4
+63270983,10727641,4
+50293369,10727641,4
+Susie.Wong,10727641,3
+angusfox,10727641,4
+78231416,10727641,3
+48565113,10727641,5
+66740319,10727641,4
+hy1900,10727641,4
+4265133,10727641,5
+46115911,10727641,5
+130930909,10727641,4
+taiopiao,10727641,-1
+38150776,10727641,-1
+yoite7,10727641,2
+53878096,10727641,5
+65937993,10727641,4
+45780268,10727641,5
+4609336,10727641,4
+micros,10727641,3
+50565787,10727641,4
+adamhu,10727641,4
+74863608,10727641,4
+71188390,10727641,5
+62993339,10727641,3
+50890852,10727641,4
+joker619,10727641,5
+66025844,10727641,4
+superlionisme,10727641,3
+132783290,10727641,4
+jxncm,10727641,5
+59092308,10727641,4
+67119457,10727641,-1
+doppio,10727641,4
+53915476,10727641,5
+58379589,10727641,3
+xiaogu_07,10727641,5
+onairhh,10727641,5
+luo871222,10727641,4
+Ken,10727641,3
+83977213,10727641,4
+apple_pie,10727641,5
+52275922,10727641,4
+76605980,10727641,3
+42495249,10727641,4
+XIKUANGJING,10727641,5
+58059498,10727641,4
+guey4,10727641,5
+3442243,10727641,-1
+36664214,10727641,5
+1820379,10727641,4
+yuedawei,10727641,3
+3962683,10727641,4
+48253465,10727641,5
+1381497,10727641,4
+aptx869,10727641,4
+freeloooop,10727641,5
+47564941,10727641,4
+43962345,10727641,3
+122392735,10727641,3
+80071306,10727641,4
+chen_cao,10727641,4
+singingxin,10727641,4
+50620373,10727641,5
+44265296,10727641,5
+poppy1982,10727641,4
+80082149,10727641,5
+yyqlyb,10727641,3
+y111222,10727641,3
+miiaao,10727641,5
+133978729,10727641,4
+54186627,10727641,4
+tracy77899,10727641,5
+21927784,10727641,5
+2144848,10727641,3
+handouxiansheng,10727641,4
+3040176,10727641,4
+3638194,10727641,4
+51773323,10727641,4
+Gotrifajrohoo,10727641,5
+snowman-clover,10727641,4
+landy0514,10727641,3
+55410736,10727641,3
+qd724945697,10727641,4
+sequel,10727641,5
+anotherballack,10727641,3
+52273292,10727641,4
+eason0210,10727641,3
+48669872,10727641,5
+NullPointer,10727641,4
+MovieL,10727641,4
+44630019,10727641,5
+50902440,10727641,2
+35447196,10727641,4
+3322308,10727641,3
+jizisudexiaowo,10727641,5
+44924401,10727641,-1
+4454692,10727641,4
+52567562,10727641,-1
+129719594,10727641,4
+33000319,10727641,2
+48160759,10727641,2
+von71224,10727641,5
+DivaTequila,10727641,3
+75835017,10727641,5
+107200905,10727641,4
+61935443,10727641,4
+131761912,10727641,4
+xiaopin19,10727641,3
+61898774,10727641,2
+126514473,10727641,3
+xiaopjie,10727641,3
+zhangzhangzhang,10727641,4
+81508668,10727641,4
+joyxu,10727641,-1
+himore007,10727641,3
+skag,10727641,3
+58601599,10727641,5
+9275684,10727641,3
+mfswsungirl,10727641,4
+royin.chao,10727641,4
+ZotterElaine,10727641,2
+113440309,10727641,5
+sky7va,10727641,5
+qingwood,10727641,2
+yueyarom,10727641,3
+1416219,10727641,4
+69356155,10727641,3
+willer16,10727641,4
+enimo,10727641,4
+3529057,10727641,4
+88174425,10727641,5
+lovelyekin,10727641,3
+cargee,10727641,5
+47367046,10727641,5
+61511301,10727641,5
+benbenwinter,10727641,3
+bullshitforever,10727641,4
+57844859,10727641,4
+55457012,10727641,4
+originalchen,10727641,5
+72278242,10727641,5
+63475975,10727641,3
+40659159,10727641,4
+laozo,10727641,4
+57236274,10727641,4
+WSSWHL,10727641,3
+54859559,10727641,5
+123434592,10727641,4
+torreslee,10727641,4
+zonovo,10727641,4
+31600047,10727641,4
+82770763,10727641,4
+63699428,10727641,5
+48490607,10727641,5
+2550503,10727641,5
+dshiji,10727641,3
+amzyangyk,10727641,3
+etocre,10727641,4
+74525845,10727641,4
+dongxuanlan,10727641,3
+aprilwind_shi,10727641,4
+4221004,10727641,4
+49973625,10727641,5
+yisilian,10727641,3
+44182814,10727641,4
+57328342,10727641,4
+ixiaoi,10727641,4
+61538847,10727641,4
+62936243,10727641,5
+49784018,10727641,3
+77451005,10727641,5
+39278293,10727641,4
+tjz230,10727641,4
+63606216,10727641,1
+89575571,10727641,4
+rrspeaking,10727641,3
+shenhuxi,10727641,-1
+55541618,10727641,5
+vivavera,10727641,3
+cherybeckham,10727641,5
+51067587,10727641,5
+andyzhang1995,10727641,3
+morvin,10727641,4
+52209428,10727641,4
+2701338,10727641,5
+Luxiyalu,10727641,5
+cruiselee,10727641,5
+zhangqiyuan,10727641,4
+doctor12,10727641,4
+mirrorw,10727641,4
+dxy2010,10727641,3
+49878108,10727641,4
+78518168,10727641,5
+1879221,10727641,3
+59473087,10727641,3
+59716419,10727641,4
+Emily77,10727641,4
+49151871,10727641,-1
+92315963,10727641,5
+chencici20,10727641,4
+47818652,10727641,3
+sentexiaohu,10727641,4
+1021240,10727641,4
+daniel_gao,10727641,3
+37179759,10727641,5
+90859526,10727641,5
+yummyW,10727641,4
+76082574,10727641,4
+mjh5920,10727641,3
+goson,10727641,5
+3922372,10727641,4
+z1901111,10727641,4
+5678441,10727641,5
+11441521,10727641,3
+Frienky,10727641,5
+43698664,10727641,4
+71210783,10727641,3
+fallistuzi,10727641,5
+65896805,10727641,4
+Kevin3,10727641,4
+complicate89,10727641,3
+baiyang36172417,10727641,-1
+xinxinbaby,10727641,4
+fx20061006,10727641,4
+97011307,10727641,4
+ftxnj,10727641,5
+quite-yacca,10727641,3
+looktwice,10727641,4
+46871806,10727641,4
+83475575,10727641,4
+4691421,10727641,4
+frnong,10727641,5
+122145772,10727641,3
+renoming,10727641,5
+sefvdx,10727641,5
+52071601,10727641,4
+67103907,10727641,4
+stinmon,10727641,5
+53233117,10727641,5
+belladonnalily,10727641,4
+luoyunxiang72,10727641,4
+zhwjz,10727641,3
+saosin,10727641,5
+liuweilian,10727641,4
+25664582,10727641,3
+dutianxiong,10727641,5
+tangjiaqi,10727641,3
+65893110,10727641,5
+3430526,10727641,4
+66834234,10727641,5
+iuheuxnehc,10727641,4
+milkbook,10727641,4
+samuelyoung,10727641,3
+venicedream,10727641,5
+4159892,10727641,5
+116649672,10727641,4
+42993095,10727641,5
+57820083,10727641,2
+48361122,10727641,4
+55618939,10727641,5
+82913743,10727641,-1
+chrisyx,10727641,4
+tommyd,10727641,3
+106467997,10727641,-1
+89187056,10727641,3
+3192065,10727641,-1
+Wenqian,10727641,4
+yuwusankou,10727641,5
+zoooooh,10727641,4
+wangdeuqna,10727641,4
+1709876,10727641,3
+BlossomBlue,10727641,3
+Guardianangel,10727641,4
+58734372,10727641,4
+57183211,10727641,4
+51812849,10727641,4
+42787791,10727641,4
+2330715,10727641,3
+47101317,10727641,4
+zeisiphe,10727641,4
+fantasy16,10727641,4
+54885866,10727641,3
+52985598,10727641,3
+luke89,10727641,4
+Sigrid_Lu,10727641,3
+harryuharryu,10727641,5
+76818492,10727641,4
+67952869,10727641,4
+3559769,10727641,4
+xiaoyuan_0310,10727641,4
+shaomingwen,10727641,4
+35233003,10727641,3
+imlyc,10727641,4
+ibenben,10727641,5
+sui2,10727641,3
+47852493,10727641,4
+87781173,10727641,4
+57830328,10727641,2
+4069863,10727641,3
+134191128,10727641,4
+72167289,10727641,-1
+81668154,10727641,3
+catvoldemort,10727641,5
+57786639,10727641,3
+petterzhang,10727641,3
+yueyan23,10727641,4
+yaopi,10727641,3
+66650981,10727641,1
+49421064,10727641,4
+52286623,10727641,4
+xiaojiaheng,10727641,3
+maomaomaoyl,10727641,4
+44976171,10727641,4
+might_morning,10727641,5
+20555419,10727641,3
+big_blue,10727641,3
+44862479,10727641,4
+58665425,10727641,3
+123538192,10727641,3
+moyia,10727641,3
+2379338,10727641,1
+44457357,10727641,3
+45194143,10727641,3
+53317988,10727641,2
+66556802,10727641,4
+53212620,10727641,5
+stillmuchtolose,10727641,3
+73470763,10727641,4
+68577121,10727641,4
+3725502,10727641,2
+mkid1412,10727641,5
+90795414,10727641,3
+44539890,10727641,5
+2252088,10727641,4
+3387514,10727641,5
+kerorocao,10727641,4
+122604790,10727641,3
+75288450,10727641,3
+67888545,10727641,4
+6169099,10727641,5
+131183484,10727641,3
+35183435,10727641,5
+66613325,10727641,4
+C-Plus,10727641,4
+lotus--eater,10727641,4
+evaniscoming,10727641,5
+75543467,10727641,3
+Sapporo,10727641,4
+eddychaw,10727641,5
+97075618,10727641,4
+CocoHu,10727641,3
+78001242,10727641,4
+1951296,10727641,4
+50028019,10727641,3
+55531901,10727641,3
+ciell,10727641,4
+31873447,10727641,4
+xuanranhuihui,10727641,4
+Lena-Ho,10727641,3
+liunisn,10727641,4
+Yvonne0627,10727641,5
+1463503,10727641,3
+64463407,10727641,3
+47370505,10727641,4
+127467448,10727641,5
+53656421,10727641,4
+60040116,10727641,4
+69704401,10727641,4
+chrislam,10727641,4
+cloverMu,10727641,3
+42128136,10727641,4
+michelleorz,10727641,5
+36724749,10727641,5
+45519389,10727641,3
+georgebobochina,10727641,5
+38085562,10727641,4
+4291484,10727641,3
+langland,10727641,5
+50629690,10727641,4
+garconne,10727641,4
+57996759,10727641,3
+47396894,10727641,4
+55443753,10727641,5
+wuxiduo,10727641,3
+50438518,10727641,5
+1891047,10727641,-1
+79669043,10727641,5
+nicdone,10727641,4
+56396911,10727641,4
+45964771,10727641,5
+3061502,10727641,5
+4630769,10727641,4
+72387638,10727641,4
+zhangqiong07,10727641,4
+47914559,10727641,4
+71133496,10727641,5
+3774349,10727641,3
+64981286,10727641,3
+72041646,10727641,4
+xubuyu,10727641,3
+76655139,10727641,5
+RongZ,10727641,4
+2291546,10727641,5
+121337200,10727641,3
+yyyyyrl,10727641,4
+51180631,10727641,4
+qi-shao-shang,10727641,3
+46564815,10727641,4
+81812882,10727641,4
+eiji218837,10727641,3
+41510845,10727641,3
+61602605,10727641,3
+49476132,10727641,3
+sjt641100358,10727641,4
+3256580,10727641,4
+46761795,10727641,4
+rockduan1987,10727641,4
+75140760,10727641,3
+one0827,10727641,5
+iml5,10727641,3
+49487093,10727641,4
+65369148,10727641,3
+3337830,10727641,4
+36341358,10727641,-1
+kidrun,10727641,4
+49604858,10727641,4
+58544664,10727641,3
+54382034,10727641,4
+120250612,10727641,4
+77033669,10727641,4
+33751223,10727641,5
+42759061,10727641,4
+67011634,10727641,3
+4247335,10727641,4
+51364758,10727641,5
+61321704,10727641,3
+34623045,10727641,3
+69094998,10727641,2
+52192679,10727641,5
+58343870,10727641,4
+1159670,10727641,4
+94768716,10727641,3
+mavishebelsie,10727641,2
+63111176,10727641,4
+48217298,10727641,5
+45608534,10727641,3
+93442022,10727641,4
+39122069,10727641,2
+32485856,10727641,4
+89565486,10727641,3
+52213307,10727641,4
+38811434,10727641,4
+44888841,10727641,3
+romanbaby,10727641,3
+xr118_,10727641,4
+1864146,10727641,3
+Coldon,10727641,5
+44734820,10727641,5
+1558354,10727641,4
+75325570,10727641,5
+39760597,10727641,3
+ballteda,10727641,5
+119404798,10727641,4
+bebest,10727641,4
+yindeming,10727641,-1
+122981729,10727641,3
+1919476,10727641,5
+raintail,10727641,3
+67679868,10727641,4
+2403415,10727641,4
+mala112,10727641,5
+35079473,10727641,4
+38592455,10727641,5
+yixiaoxiao,10727641,5
+50028349,10727641,3
+moumou19920907,10727641,4
+Ste_corleone,10727641,4
+109878041,10727641,2
+49809768,10727641,3
+xunnight,10727641,4
+46758980,10727641,4
+4203571,10727641,4
+signal,10727641,5
+67619742,10727641,4
+22077242,10727641,4
+leexiaoxiao,10727641,4
+shirley317,10727641,5
+gravi,10727641,4
+kururuken,10727641,3
+127792178,10727641,5
+101992598,10727641,4
+43462039,10727641,5
+72852558,10727641,3
+97042878,10727641,5
+28802478,10727641,3
+curlyfox,10727641,3
+congba,10727641,4
+negoning,10727641,4
+bunnyzizi,10727641,4
+47172452,10727641,2
+zhangzhai,10727641,4
+sujutotheme,10727641,3
+bigbei,10727641,4
+45897135,10727641,4
+xiaoshizhan,10727641,3
+Elsie_7,10727641,3
+91361689,10727641,5
+94884974,10727641,5
+54950938,10727641,4
+jx45-14,10727641,5
+upyougo,10727641,4
+aibaobaoguai327,10727641,4
+moooote,10727641,5
+3751886,10727641,3
+dingmao2012,10727641,4
+3862073,10727641,3
+heypulj,10727641,-1
+59129938,10727641,4
+56119626,10727641,5
+1773126,10727641,3
+cathyhere,10727641,4
+iamsyh,10727641,4
+107718660,10727641,4
+72705326,10727641,4
+48471753,10727641,4
+82582719,10727641,5
+4543967,10727641,4
+51601999,10727641,5
+muyunattitude,10727641,3
+coolluo_zw,10727641,3
+52781294,10727641,5
+42955100,10727641,3
+Plutoyw,10727641,4
+38105854,10727641,4
+119270472,10727641,4
+88425798,10727641,5
+67333235,10727641,3
+2915986,10727641,4
+xilouchen,10727641,3
+infinite_zhai,10727641,3
+99004931,10727641,4
+43944690,10727641,4
+2909216,10727641,2
+129106127,10727641,4
+duphy,10727641,3
+75749312,10727641,3
+55985856,10727641,4
+68139737,10727641,4
+overgrass,10727641,2
+71988580,10727641,3
+53385600,10727641,4
+27028067,10727641,4
+53635906,10727641,3
+lokolifestyle,10727641,3
+73060633,10727641,3
+caipanda,10727641,4
+84410222,10727641,3
+marvelwei,10727641,4
+32475884,10727641,4
+2593133,10727641,4
+3044428,10727641,4
+34826304,10727641,4
+62298442,10727641,4
+44272314,10727641,3
+46129019,10727641,5
+49764228,10727641,4
+31573360,10727641,4
+dellama,10727641,4
+133695436,10727641,3
+69631083,10727641,4
+64821035,10727641,5
+catq,10727641,3
+51756800,10727641,4
+65943333,10727641,5
+mckee123,10727641,5
+39022168,10727641,4
+caosl,10727641,4
+irisyours,10727641,4
+abyssalsea,10727641,4
+71860442,10727641,4
+panpan_lovelife,10727641,3
+1618383,10727641,3
+64287527,10727641,5
+48376628,10727641,4
+124659337,10727641,4
+28677254,10727641,3
+celiaxiaoluohao,10727641,4
+warm_fan,10727641,4
+gerlinda,10727641,3
+duzhuo,10727641,4
+42563034,10727641,4
+34065248,10727641,4
+59909492,10727641,4
+wumingzaish,10727641,5
+37146663,10727641,5
+58787827,10727641,3
+121351165,10727641,5
+44332074,10727641,5
+54941298,10727641,4
+2064047,10727641,4
+62175503,10727641,3
+103735356,10727641,4
+56836925,10727641,4
+67529255,10727641,4
+colleen_1211,10727641,4
+69165098,10727641,3
+aimeecute,10727641,4
+59421721,10727641,4
+28398689,10727641,4
+120303134,10727641,4
+66979855,10727641,4
+68500162,10727641,3
+movie007wn,10727641,4
+76169652,10727641,2
+65669464,10727641,5
+126010684,10727641,5
+vorachoochoo,10727641,2
+38553909,10727641,5
+babybluebb,10727641,3
+43344167,10727641,4
+61685486,10727641,5
+xizhijun,10727641,3
+58603704,10727641,3
+benyang,10727641,4
+8444736,10727641,4
+yuyucara,10727641,4
+duanhong169,10727641,5
+63924842,10727641,4
+45484861,10727641,3
+1876785,10727641,4
+51777015,10727641,4
+48793240,10727641,4
+retrograder,10727641,4
+56865316,10727641,5
+yejin,10727641,4
+yejin,10727641,4
+39628944,10727641,-1
+92050427,10727641,4
+xxe,10727641,3
+77436258,10727641,5
+23789136,10727641,5
+13262749,10727641,3
+blinglu,10727641,4
+yf611x,10727641,5
+noknown,10727641,4
+man_man_,10727641,3
+120268630,10727641,2
+49907411,10727641,3
+60020373,10727641,5
+56684398,10727641,3
+BURIALBLACK,10727641,4
+30769156,10727641,4
+55585297,10727641,3
+50432713,10727641,5
+goldensunflower,10727641,-1
+kiki204629,10727641,4
+128103803,10727641,4
+2167975,10727641,5
+thegreatkoala,10727641,3
+alicemiffy,10727641,5
+69405707,10727641,5
+52167289,10727641,5
+59337450,10727641,3
+blmeat,10727641,4
+43856464,10727641,5
+L0ve-zL,10727641,4
+94032593,10727641,4
+kakaandkamen,10727641,3
+91475573,10727641,4
+120169874,10727641,4
+LeeXorlarrin,10727641,3
+52056943,10727641,5
+128735945,10727641,5
+ElyseLee,10727641,5
+huochemao,10727641,5
+49237640,10727641,5
+76804621,10727641,4
+smallspoon,10727641,-1
+58605674,10727641,4
+yawenxu,10727641,3
+98107332,10727641,3
+59380890,10727641,5
+57297847,10727641,4
+51078000,10727641,5
+127515076,10727641,5
+130044129,10727641,3
+69321316,10727641,5
+crlazy_,10727641,3
+zhoucongyu,10727641,5
+54171902,10727641,3
+75273529,10727641,4
+75987958,10727641,4
+2129512,10727641,4
+3717792,10727641,4
+Tracy1230,10727641,4
+57126111,10727641,3
+xago,10727641,4
+35438123,10727641,4
+iamchece,10727641,4
+46630513,10727641,5
+50977699,10727641,2
+53908274,10727641,4
+49916048,10727641,4
+56786805,10727641,4
+AdagioTotoro,10727641,4
+15146438,10727641,5
+1362388,10727641,5
+lyanloveforever,10727641,3
+2006622,10727641,5
+4733262,10727641,4
+65431427,10727641,3
+87650854,10727641,4
+JTimberlake,10727641,5
+alwayslo7e,10727641,5
+darkphoenix,10727641,4
+49014708,10727641,2
+RivaLinn,10727641,5
+78793402,10727641,4
+124823143,10727641,3
+80305341,10727641,5
+withshane,10727641,4
+wu.,10727641,4
+53433843,10727641,3
+ijihoon,10727641,4
+taiyanghuazhen,10727641,4
+lyy19,10727641,4
+58863205,10727641,3
+shoushouan,10727641,4
+rikkuwang,10727641,3
+dlgcy,10727641,5
+ask4more,10727641,3
+natiezhishi,10727641,3
+67939886,10727641,4
+44756932,10727641,5
+1744631,10727641,3
+42149787,10727641,3
+sssssstutter,10727641,3
+2643117,10727641,4
+5566664,10727641,4
+67957881,10727641,5
+2121850,10727641,4
+4404237,10727641,5
+63669349,10727641,5
+teuhyuk,10727641,5
+surths,10727641,5
+46739678,10727641,3
+70060927,10727641,4
+73701438,10727641,5
+7798390,10727641,3
+sunshinetoo,10727641,5
+onlyqinping,10727641,3
+115782738,10727641,3
+49854531,10727641,3
+64241350,10727641,5
+2322224,10727641,4
+56405377,10727641,3
+2423694,10727641,3
+cicisj,10727641,3
+43281124,10727641,4
+64459545,10727641,4
+126899663,10727641,5
+53769380,10727641,4
+65795089,10727641,5
+fusyel,10727641,4
+linxiayidu0,10727641,3
+xiaolxk,10727641,5
+63329467,10727641,4
+49195870,10727641,5
+superrao,10727641,4
+42535832,10727641,4
+129549618,10727641,5
+70821942,10727641,4
+Zhpher,10727641,5
+onotou,10727641,5
+129548672,10727641,4
+99977887,10727641,4
+50506429,10727641,3
+gnosis,10727641,4
+mortal.chan,10727641,5
+49133883,10727641,-1
+53971929,10727641,3
+moneylatem,10727641,5
+feiyu,10727641,4
+50624122,10727641,2
+35231874,10727641,5
+49295714,10727641,4
+69030358,10727641,4
+oasisercher,10727641,4
+57899397,10727641,5
+44896000,10727641,4
+Ston3s,10727641,4
+46932541,10727641,3
+dearbobbie,10727641,5
+jeasonxianh,10727641,3
+1178759,10727641,4
+57071321,10727641,4
+55320174,10727641,4
+73901440,10727641,4
+braquentin,10727641,2
+57490228,10727641,4
+simonpeter,10727641,4
+7542909,10727641,3
+85347919,10727641,4
+41786270,10727641,4
+xieao123,10727641,4
+Mr.pea,10727641,4
+57437837,10727641,5
+68664261,10727641,4
+63219447,10727641,3
+53076468,10727641,3
+sophiejiang,10727641,4
+lingrui1995,10727641,3
+landelanle,10727641,4
+zhaolongjun,10727641,3
+banlizi,10727641,4
+xuweihua,10727641,5
+32320904,10727641,4
+80209748,10727641,5
+yangshu1991,10727641,4
+124392101,10727641,5
+130692591,10727641,5
+33381351,10727641,5
+H897120417,10727641,3
+62733328,10727641,2
+49875976,10727641,4
+darlingtudai,10727641,-1
+16040985,10727641,4
+68712202,10727641,4
+fre7dom,10727641,3
+cat23love,10727641,4
+woniu0125,10727641,3
+70481744,10727641,3
+50161136,10727641,5
+50126458,10727641,3
+tinydream,10727641,5
+33819207,10727641,3
+mizzro,10727641,3
+66232190,10727641,3
+muamu,10727641,4
+cherrybombbb,10727641,4
+75812054,10727641,4
+71052883,10727641,4
+128434932,10727641,3
+72985710,10727641,5
+rocksun,10727641,3
+36930975,10727641,3
+130603786,10727641,5
+58629032,10727641,4
+69196878,10727641,4
+phunny,10727641,3
+anicelv,10727641,4
+willow880608,10727641,5
+gavinyangyang,10727641,4
+4200326,10727641,3
+43752137,10727641,2
+69730932,10727641,4
+88803097,10727641,5
+fycqcyl,10727641,4
+yaltafang,10727641,5
+hpsqn,10727641,4
+28840841,10727641,4
+62279554,10727641,4
+53434263,10727641,4
+58067735,10727641,5
+phoenixfannie,10727641,4
+jessechi,10727641,1
+35672658,10727641,4
+luerdelphic,10727641,3
+jing328,10727641,5
+49343055,10727641,4
+jutong,10727641,4
+85516664,10727641,5
+34482746,10727641,3
+129298730,10727641,4
+fatfatdog,10727641,3
+23766862,10727641,4
+xipingchangnata,10727641,5
+lrxsamantha,10727641,5
+rhythmfish,10727641,5
+77288583,10727641,5
+xieetuzi,10727641,4
+53854833,10727641,3
+baicaitai,10727641,5
+51215296,10727641,5
+77459855,10727641,4
+120448486,10727641,3
+queshui,10727641,4
+Rice5566Mayday,10727641,4
+elsaguoo,10727641,4
+cubesugar,10727641,3
+summerwith,10727641,4
+keino-malus,10727641,-1
+66995858,10727641,4
+46949718,10727641,3
+51338179,10727641,4
+60731838,10727641,4
+ChrisNoth,10727641,4
+54174425,10727641,4
+87026553,10727641,5
+69532674,10727641,4
+58526834,10727641,5
+daylily1016,10727641,4
+37915504,10727641,3
+Jerry-Zeng,10727641,4
+66362134,10727641,5
+62610096,10727641,4
+qianshu19921105,10727641,5
+kiiinnng,10727641,3
+landaishuyihao,10727641,4
+flowertide,10727641,2
+58057340,10727641,3
+46481404,10727641,3
+aaaaaas,10727641,5
+131505012,10727641,4
+1313659,10727641,3
+73106736,10727641,4
+54612022,10727641,5
+29193245,10727641,3
+1069770,10727641,3
+103601580,10727641,5
+69999895,10727641,4
+3080557,10727641,4
+3177593,10727641,3
+34343021,10727641,5
+posuoluo,10727641,4
+25588497,10727641,3
+1259506,10727641,3
+33010059,10727641,3
+56279009,10727641,5
+120400807,10727641,4
+62089597,10727641,3
+S1990,10727641,3
+1932670,10727641,3
+36059562,10727641,4
+126051718,10727641,4
+126051718,10727641,4
+104257497,10727641,4
+67981460,10727641,5
+88335567,10727641,5
+zhangsunset,10727641,5
+djoko,10727641,3
+78529584,10727641,4
+44326808,10727641,5
+43384535,10727641,3
+lianmumu,10727641,5
+57214502,10727641,5
+132322439,10727641,3
+4272051,10727641,4
+sodasue,10727641,3
+floraxu,10727641,3
+claireloveyou,10727641,3
+69072673,10727641,4
+ClaireChu,10727641,3
+120985349,10727641,5
+84142287,10727641,4
+4370686,10727641,3
+53387777,10727641,3
+lovesay,10727641,3
+youngfuck,10727641,5
+54500977,10727641,5
+43851694,10727641,4
+mxmxmxxx,10727641,4
+Vo.,10727641,3
+52558781,10727641,-1
+lostlandist,10727641,-1
+21944459,10727641,3
+curingresidence,10727641,4
+Athenalotr,10727641,4
+ashin52,10727641,5
+redsandalwood,10727641,4
+taxi,10727641,4
+56938346,10727641,5
+1295097,10727641,4
+62582526,10727641,4
+38781943,10727641,3
+57210088,10727641,4
+64500822,10727641,4
+46020433,10727641,4
+76356022,10727641,4
+50058949,10727641,4
+26713841,10727641,4
+inrelief,10727641,4
+75809533,10727641,3
+76602042,10727641,4
+67942569,10727641,3
+4146441,10727641,5
+45383615,10727641,-1
+yoicy,10727641,4
+yqxn,10727641,4
+shouhuwodemao,10727641,5
+47193126,10727641,4
+reave,10727641,5
+115982359,10727641,5
+93946528,10727641,5
+61669464,10727641,4
+69429649,10727641,4
+52140349,10727641,3
+63346022,10727641,5
+48217943,10727641,-1
+marthachan,10727641,4
+eozic,10727641,-1
+zhangshura,10727641,-1
+raye.b,10727641,4
+76146142,10727641,4
+131479331,10727641,4
+3307428,10727641,3
+2852847,10727641,4
+72101886,10727641,5
+81607262,10727641,5
+83244806,10727641,5
+christopherlin,10727641,4
+5684681,10727641,4
+25586254,10727641,5
+74573040,10727641,4
+79450664,10727641,4
+45831323,10727641,4
+3880942,10727641,5
+zxmushroom,10727641,3
+96149760,10727641,4
+64976230,10727641,5
+52951856,10727641,5
+prostate,10727641,5
+picazhazha,10727641,4
+126911678,10727641,5
+57583046,10727641,4
+paggyxu,10727641,5
+65744923,10727641,4
+Gioz,10727641,5
+49294645,10727641,4
+132348134,10727641,4
+zihaozai0407,10727641,3
+62304049,10727641,3
+63205792,10727641,4
+52611136,10727641,3
+130115967,10727641,3
+lingci,10727641,3
+89027823,10727641,3
+xiaopinshan,10727641,4
+toddzhou,10727641,4
+39670803,10727641,4
+18080670,10727641,3
+127343496,10727641,3
+charlielee,10727641,4
+69266204,10727641,4
+84408132,10727641,3
+saintdump,10727641,3
+56003032,10727641,5
+ellenc,10727641,4
+56072564,10727641,4
+iris_wu,10727641,3
+45537891,10727641,3
+111974961,10727641,4
+58114383,10727641,4
+67163006,10727641,4
+ailoveai,10727641,4
+72639962,10727641,3
+mindiaodiao,10727641,4
+hahahahahahah,10727641,5
+cqzby,10727641,3
+fengzhiying1314,10727641,5
+43732585,10727641,4
+gunguning,10727641,4
+50576516,10727641,4
+60370348,10727641,4
+62024381,10727641,5
+82685125,10727641,4
+114689592,10727641,3
+midoushushu,10727641,4
+wangshiqian1024,10727641,3
+75678243,10727641,4
+48849197,10727641,3
+45182883,10727641,3
+rainbowlla,10727641,4
+80922094,10727641,4
+49158269,10727641,5
+68765821,10727641,4
+1148225,10727641,4
+61551663,10727641,4
+77427875,10727641,5
+34271981,10727641,4
+36439061,10727641,5
+55656322,10727641,4
+25673026,10727641,3
+57224796,10727641,4
+cynthia3922,10727641,3
+63612050,10727641,4
+4463635,10727641,4
+tami0112,10727641,4
+90598022,10727641,4
+69104253,10727641,5
+1792548,10727641,4
+4364181,10727641,4
+56167831,10727641,5
+wangxiaolu,10727641,4
+65532755,10727641,4
+34017621,10727641,3
+126896295,10727641,3
+yanyandedouban,10727641,4
+4578112,10727641,5
+49542323,10727641,-1
+jessicahuang,10727641,3
+58902646,10727641,3
+100841051,10727641,2
+38736772,10727641,3
+bnblut,10727641,4
+128234602,10727641,2
+dingxx,10727641,4
+40684002,10727641,4
+37037810,10727641,3
+artech3608,10727641,3
+52183902,10727641,4
+elsading,10727641,3
+10214816,10727641,4
+dearmeng,10727641,2
+isay_,10727641,3
+69616363,10727641,5
+hawords,10727641,4
+wdmzjls,10727641,4
+124570095,10727641,5
+57699906,10727641,5
+47787216,10727641,3
+46915487,10727641,5
+vincente,10727641,5
+jollychang,10727641,3
+freeup157,10727641,4
+lingxishuyu,10727641,5
+37402473,10727641,4
+56273353,10727641,-1
+75115896,10727641,4
+mewcatcher,10727641,5
+60209158,10727641,5
+52698885,10727641,3
+46941676,10727641,4
+35450002,10727641,4
+121572592,10727641,4
+King-master,10727641,5
+87909103,10727641,5
+45505797,10727641,4
+13441174,10727641,4
+flyxzz,10727641,3
+64898172,10727641,4
+121844395,10727641,4
+43871169,10727641,5
+smlietantan,10727641,4
+62072231,10727641,4
+90415514,10727641,5
+51965596,10727641,3
+1642385,10727641,4
+82689458,10727641,2
+79457713,10727641,4
+1079180,10727641,4
+51479265,10727641,4
+XFlovesChrisH,10727641,4
+yangfengdouban,10727641,4
+102858753,10727641,4
+60308488,10727641,5
+xyzxun,10727641,4
+79372510,10727641,5
+Jensen4ever,10727641,5
+55503051,10727641,4
+1167339,10727641,3
+54455119,10727641,5
+65836711,10727641,5
+liwujiu,10727641,5
+lozijun,10727641,5
+3526503,10727641,3
+1207607,10727641,3
+77042003,10727641,2
+1544023,10727641,4
+62949401,10727641,4
+yexuexiange,10727641,5
+kangecho,10727641,5
+grigor-grigory,10727641,4
+45360816,10727641,3
+103240447,10727641,5
+colormoon,10727641,4
+aegeanguo,10727641,5
+82147319,10727641,5
+ly227,10727641,4
+1452141,10727641,4
+1885523,10727641,3
+42137156,10727641,3
+80082541,10727641,4
+104890249,10727641,4
+56543834,10727641,2
+quarter,10727641,3
+131684545,10727641,5
+44523449,10727641,4
+53462734,10727641,4
+130319064,10727641,3
+52807266,10727641,4
+2113603,10727641,4
+43207503,10727641,5
+69840641,10727641,4
+65295255,10727641,4
+wangjing1990,10727641,4
+101837950,10727641,4
+luans,10727641,2
+64255299,10727641,4
+84169041,10727641,5
+MrChristy,10727641,3
+63223538,10727641,4
+94574301,10727641,4
+57401508,10727641,4
+wrbconnie,10727641,4
+missdarcy,10727641,5
+vinoruan,10727641,4
+96730730,10727641,4
+72750731,10727641,4
+65562790,10727641,3
+FEDERICO123,10727641,3
+65684805,10727641,4
+huti,10727641,5
+62296063,10727641,4
+52918110,10727641,3
+124697172,10727641,5
+115780928,10727641,5
+Hiedra,10727641,4
+92809978,10727641,4
+30962131,10727641,4
+vane09,10727641,4
+56670282,10727641,4
+76696081,10727641,3
+132678322,10727641,4
+2036819,10727641,4
+lordbaker,10727641,-1
+55410872,10727641,5
+55886505,10727641,4
+61681280,10727641,3
+vulgarianvv,10727641,4
+121740137,10727641,5
+happythename,10727641,4
+78352623,10727641,5
+Night_shadow,10727641,3
+55455640,10727641,4
+53162708,10727641,4
+sfroompp,10727641,5
+kofee,10727641,5
+77883181,10727641,4
+64396291,10727641,4
+ruby_xunchuan,10727641,3
+firecome7,10727641,4
+1786605,10727641,2
+60055945,10727641,4
+biskup,10727641,4
+57243384,10727641,4
+liuanan0606,10727641,4
+63230793,10727641,3
+nana.7,10727641,4
+4104741,10727641,3
+50451871,10727641,3
+51444963,10727641,4
+71051752,10727641,3
+48932419,10727641,3
+67134272,10727641,3
+2787923,10727641,5
+63300955,10727641,3
+102960018,10727641,5
+3179641,10727641,3
+76841664,10727641,4
+60348245,10727641,4
+43961500,10727641,4
+63528583,10727641,5
+46281534,10727641,4
+89076924,10727641,4
+74628004,10727641,3
+hanajiang,10727641,5
+cathrynlv,10727641,5
+62824485,10727641,4
+61504628,10727641,4
+highmore91,10727641,4
+61058312,10727641,3
+134146156,10727641,4
+51745010,10727641,5
+88952881,10727641,5
+iimozart,10727641,4
+90930462,10727641,3
+louix,10727641,5
+51960803,10727641,-1
+4584624,10727641,4
+venk7,10727641,4
+princessj1217,10727641,5
+princesssyn,10727641,4
+2737013,10727641,4
+73011629,10727641,4
+59954859,10727641,4
+mitangcandy,10727641,5
+56682460,10727641,4
+baozi1008,10727641,3
+sqxmy,10727641,4
+58677622,10727641,4
+128767774,10727641,5
+55844421,10727641,4
+tavi0529,10727641,4
+41317902,10727641,3
+41317902,10727641,3
+crownwinnie,10727641,4
+duduxiongzhifu,10727641,3
+lzy_tc,10727641,4
+123639862,10727641,2
+59032148,10727641,5
+72004354,10727641,3
+flydolphin,10727641,4
+antoniochen,10727641,3
+jeremy25,10727641,5
+twitodd,10727641,4
+88844052,10727641,4
+62740578,10727641,4
+vivisnbb,10727641,4
+hahatedan,10727641,3
+46439800,10727641,3
+36862106,10727641,3
+Emily723,10727641,5
+70534283,10727641,4
+71465294,10727641,4
+58057227,10727641,4
+Yinaly,10727641,4
+73585315,10727641,4
+2483011,10727641,4
+122825199,10727641,4
+rosekiss,10727641,4
+78680128,10727641,4
+tildali1214,10727641,4
+58289096,10727641,4
+nianfangshiba,10727641,5
+63485325,10727641,4
+2096902,10727641,3
+130365524,10727641,4
+55434870,10727641,3
+62743500,10727641,4
+53300404,10727641,5
+64865993,10727641,4
+61572404,10727641,2
+79698960,10727641,5
+122709202,10727641,3
+54054785,10727641,2
+orsule,10727641,3
+16026833,10727641,5
+83900482,10727641,4
+49319979,10727641,5
+103236141,10727641,4
+125594306,10727641,3
+69411761,10727641,3
+49239429,10727641,4
+91408651,10727641,5
+maydaythering,10727641,3
+chankawai,10727641,3
+hexuanpomon,10727641,5
+yannis0417,10727641,4
+June_1,10727641,4
+52143519,10727641,4
+SoloAi,10727641,-1
+50405954,10727641,4
+4341727,10727641,5
+90553636,10727641,5
+133816961,10727641,2
+ppyy,10727641,4
+chloeqx,10727641,4
+loserisit,10727641,5
+veronicaz,10727641,4
+xxxali,10727641,4
+48929898,10727641,4
+52101882,10727641,4
+42679192,10727641,4
+65734088,10727641,4
+48514274,10727641,4
+62889721,10727641,4
+41258503,10727641,5
+2019155,10727641,4
+43831100,10727641,5
+53256552,10727641,5
+2922353,10727641,3
+105169883,10727641,5
+69736898,10727641,5
+2009103,10727641,4
+2009103,10727641,4
+73807448,10727641,4
+75096112,10727641,4
+47783311,10727641,5
+74844430,10727641,4
+74289022,10727641,5
+76935168,10727641,3
+1602396,10727641,5
+Ryanzeng,10727641,5
+62651785,10727641,4
+tanronghong,10727641,5
+51490972,10727641,4
+yeslie,10727641,3
+4771796,10727641,4
+69739345,10727641,5
+79259757,10727641,-1
+68936887,10727641,4
+43766729,10727641,3
+133433124,10727641,5
+73079867,10727641,5
+mon,10727641,3
+57246952,10727641,5
+41246979,10727641,5
+133568097,10727641,4
+60860847,10727641,3
+52939857,10727641,4
+66758358,10727641,5
+1833079,10727641,3
+49076335,10727641,5
+121471027,10727641,4
+4255750,10727641,3
+ilestlevraije,10727641,4
+kinokoneko,10727641,5
+53612447,10727641,3
+74345724,10727641,3
+Mulholland,10727641,3
+102541469,10727641,3
+50197826,10727641,4
+36757046,10727641,5
+4446589,10727641,4
+tingdy,10727641,4
+29755688,10727641,5
+35780501,10727641,4
+zhousophia,10727641,4
+easonkoko,10727641,3
+sakina_s,10727641,4
+33177895,10727641,3
+57285886,10727641,4
+126189333,10727641,4
+75219384,10727641,4
+kiekyo,10727641,4
+bulbosa,10727641,4
+lingjunxin,10727641,3
+37509961,10727641,5
+122880766,10727641,5
+63371877,10727641,5
+youyan.annalise,10727641,4
+81551351,10727641,4
+Halbert-Sun,10727641,4
+3617677,10727641,4
+piaoyi,10727641,4
+63878965,10727641,4
+yeahxcx,10727641,4
+69680398,10727641,4
+90014790,10727641,3
+lovewar,10727641,5
+45604552,10727641,5
+2338857,10727641,3
+59164249,10727641,3
+117795392,10727641,5
+119062503,10727641,4
+100953233,10727641,5
+42884654,10727641,2
+65292306,10727641,5
+128066555,10727641,5
+73530078,10727641,3
+64227408,10727641,4
+38971714,10727641,5
+53162024,10727641,3
+77278882,10727641,4
+77908351,10727641,5
+wjgq0722,10727641,-1
+70308638,10727641,5
+59878199,10727641,5
+60168902,10727641,3
+104706942,10727641,5
+73866765,10727641,4
+yiqiny,10727641,5
+40979829,10727641,4
+2305028,10727641,4
+99669308,10727641,4
+105736560,10727641,4
+Apollous,10727641,4
+71466029,10727641,5
+60053622,10727641,5
+50073106,10727641,4
+71298339,10727641,5
+63638610,10727641,4
+2292966,10727641,4
+puggy,10727641,4
+starstargoo,10727641,4
+49063613,10727641,4
+45485577,10727641,4
+RobinsonWang,10727641,4
+gxyvonne,10727641,4
+63283643,10727641,4
+87570484,10727641,5
+43493146,10727641,5
+gloria1206,10727641,4
+78159814,10727641,4
+50169026,10727641,4
+55426628,10727641,4
+2325252,10727641,3
+89778884,10727641,4
+miemiefever,10727641,4
+67937047,10727641,4
+69646560,10727641,4
+a_weirdo,10727641,4
+59774310,10727641,5
+1847624,10727641,5
+82141965,10727641,5
+67742715,10727641,4
+53023463,10727641,4
+Knight9,10727641,4
+hashininaru,10727641,5
+55536216,10727641,5
+q962265267,10727641,4
+orchialgia,10727641,3
+tripster,10727641,5
+70034039,10727641,3
+66168257,10727641,4
+2914496,10727641,5
+68534357,10727641,3
+luoandqian,10727641,5
+58291702,10727641,3
+fyl00,10727641,3
+82722362,10727641,4
+2923243,10727641,4
+130851881,10727641,4
+77648355,10727641,5
+43933479,10727641,4
+zuoshoudezuo,10727641,3
+lucky498,10727641,4
+54845592,10727641,4
+124170080,10727641,4
+98183739,10727641,2
+2963025,10727641,4
+90548650,10727641,4
+63822026,10727641,5
+63001683,10727641,5
+130957788,10727641,3
+128145859,10727641,4
+49198892,10727641,4
+59380774,10727641,4
+sure5004,10727641,4
+63641530,10727641,4
+113752134,10727641,4
+serenity.,10727641,4
+55817697,10727641,3
+35668888,10727641,4
+127728111,10727641,4
+LasciatemiMorir,10727641,3
+19734042,10727641,3
+43104816,10727641,4
+67179244,10727641,4
+hiddddleston,10727641,5
+ensi,10727641,4
+122526882,10727641,3
+48687824,10727641,4
+anya2011,10727641,5
+52800930,10727641,4
+chenahu,10727641,4
+NYullmao,10727641,3
+74150636,10727641,5
+63633595,10727641,3
+55618931,10727641,5
+51414151,10727641,4
+aquqmarine,10727641,4
+lostItard,10727641,3
+62636724,10727641,3
+63659583,10727641,3
+69068986,10727641,4
+43585255,10727641,3
+66448083,10727641,5
+75555636,10727641,4
+73710640,10727641,4
+haiyi,10727641,4
+59619129,10727641,4
+aiwengfan,10727641,4
+55617091,10727641,4
+yumanre,10727641,5
+lllianely,10727641,-1
+70603009,10727641,4
+sibyl0510,10727641,5
+88439681,10727641,4
+debrah,10727641,3
+63156283,10727641,4
+50769743,10727641,4
+102879069,10727641,5
+37216410,10727641,3
+73492373,10727641,4
+41125179,10727641,4
+121928290,10727641,4
+127245295,10727641,4
+newbear,10727641,5
+134242130,10727641,4
+ctube,10727641,4
+InTheShadowOfLo,10727641,4
+120427833,10727641,4
+1189608,10727641,3
+53771727,10727641,3
+Secilia,10727641,4
+77052440,10727641,3
+79896532,10727641,3
+LOCass,10727641,4
+127932658,10727641,3
+62667852,10727641,4
+83433400,10727641,3
+50900048,10727641,3
+anjia617,10727641,5
+levitating,10727641,4
+59945460,10727641,5
+46006075,10727641,4
+69048541,10727641,1
+50393794,10727641,4
+1132028,10727641,5
+92282866,10727641,-1
+54410090,10727641,2
+muxiaoxu,10727641,3
+63477660,10727641,4
+kuitesi,10727641,3
+94068216,10727641,3
+81411880,10727641,5
+1815039,10727641,3
+54743136,10727641,5
+JupiterGalileo,10727641,4
+62182942,10727641,3
+92962269,10727641,3
+weiqiang90,10727641,4
+lcghere,10727641,4
+61823510,10727641,4
+mercuryleehom,10727641,4
+128109849,10727641,5
+suitxiv,10727641,5
+mecsta,10727641,2
+53953725,10727641,4
+4587707,10727641,4
+92427949,10727641,4
+75479053,10727641,4
+72878510,10727641,4
+128167486,10727641,3
+57259895,10727641,4
+nophy,10727641,4
+HF7O,10727641,4
+huster-lion,10727641,5
+61696914,10727641,3
+49122242,10727641,4
+63403641,10727641,5
+ningning9164,10727641,-1
+121432090,10727641,5
+73419369,10727641,5
+rosemary307,10727641,3
+50065768,10727641,4
+114805643,10727641,4
+jean4you,10727641,4
+81916130,10727641,5
+guolibin,10727641,5
+53914126,10727641,4
+did-it,10727641,3
+resurrection,10727641,4
+61236336,10727641,3
+LightningChing,10727641,5
+75509335,10727641,5
+62764168,10727641,5
+82817173,10727641,5
+65274866,10727641,3
+L.D.king,10727641,4
+sherlocknh2fan,10727641,3
+xxxdorisxxx,10727641,4
+54619955,10727641,3
+54619955,10727641,3
+111572690,10727641,4
+115762881,10727641,4
+4648504,10727641,4
+65975444,10727641,4
+verazhao,10727641,3
+64223729,10727641,4
+125708318,10727641,3
+oceanofbook,10727641,3
+72684898,10727641,4
+3599865,10727641,5
+103707463,10727641,5
+1408253,10727641,3
+68342567,10727641,3
+129932224,10727641,4
+13452174,10727641,4
+siriusvicky,10727641,4
+yusherry,10727641,4
+124988562,10727641,5
+Ronicalee,10727641,4
+xnj131,10727641,3
+nekozamurai,10727641,5
+55609514,10727641,5
+2284835,10727641,4
+enanm,10727641,4
+40081609,10727641,5
+yousuosi77,10727641,4
+65828524,10727641,4
+79706317,10727641,3
+66722557,10727641,5
+88012352,10727641,3
+64428373,10727641,3
+sweetleafyang,10727641,4
+gujiahui,10727641,3
+45322158,10727641,4
+78170129,10727641,1
+bloodleopard,10727641,4
+2108403,10727641,4
+yinkun,10727641,4
+61922684,10727641,2
+116556583,10727641,3
+44614198,10727641,4
+62880392,10727641,4
+82935134,10727641,4
+51793957,10727641,4
+yfqc24pippo,10727641,4
+3187868,10727641,4
+60307464,10727641,4
+liluoliluo,10727641,4
+44816197,10727641,3
+127450235,10727641,3
+122336700,10727641,3
+wrdouban,10727641,4
+niazion,10727641,5
+52470011,10727641,4
+14900905,10727641,5
+92364458,10727641,4
+69236289,10727641,4
+41471449,10727641,4
+66537927,10727641,3
+88746541,10727641,4
+65301310,10727641,5
+NINA0220,10727641,5
+hsuhoffe,10727641,4
+96804163,10727641,5
+xiaopang1106,10727641,5
+57803183,10727641,3
+3395613,10727641,3
+56978693,10727641,4
+41629334,10727641,3
+93920997,10727641,3
+55275802,10727641,4
+48399899,10727641,4
+71328407,10727641,4
+65009709,10727641,5
+deltax,10727641,4
+97211660,10727641,4
+111416364,10727641,4
+45411639,10727641,3
+82663579,10727641,4
+shuoaiwo,10727641,5
+60786130,10727641,5
+juzi888,10727641,1
+15716080,10727641,3
+35904729,10727641,4
+53373861,10727641,3
+92468807,10727641,3
+3845975,10727641,5
+Spherenix,10727641,5
+life_go,10727641,5
+48843801,10727641,4
+53584866,10727641,4
+nanguodehaizi,10727641,5
+55630140,10727641,4
+yangqiaohe,10727641,4
+Mickey-Cai,10727641,4
+121516783,10727641,4
+81313472,10727641,5
+45379580,10727641,4
+darcypo,10727641,-1
+silencefall,10727641,5
+xiaomanxiaoxi,10727641,5
+69838036,10727641,2
+littlejuice,10727641,3
+132213872,10727641,4
+44159956,10727641,4
+120764662,10727641,4
+missaaa,10727641,-1
+68869311,10727641,5
+41000067,10727641,4
+41606409,10727641,4
+114336409,10727641,5
+52895943,10727641,5
+oversensitive,10727641,5
+101433184,10727641,4
+wuyantutu,10727641,4
+120508779,10727641,3
+102236551,10727641,4
+92300542,10727641,4
+64107417,10727641,4
+66619718,10727641,1
+odely,10727641,5
+25140645,10727641,4
+83401102,10727641,4
+Will307,10727641,5
+131814242,10727641,3
+69857353,10727641,4
+alchain,10727641,5
+crowdedstars,10727641,3
+sonofsam,10727641,5
+14950195,10727641,5
+shiminxu,10727641,4
+75963174,10727641,5
+qiuniao1982,10727641,4
+43164200,10727641,4
+61581753,10727641,4
+115870534,10727641,4
+raising_dawn,10727641,3
+2332724,10727641,4
+3259792,10727641,3
+44649844,10727641,3
+yingzhuang,10727641,3
+emmychan,10727641,4
+rachelray83,10727641,3
+133846679,10727641,4
+flowermumu,10727641,4
+floraSmithereen,10727641,4
+42562148,10727641,5
+55653104,10727641,5
+108210499,10727641,4
+2830413,10727641,4
+wch1116,10727641,4
+RLanffy,10727641,5
+62668036,10727641,3
+conansense,10727641,4
+48349431,10727641,3
+43405327,10727641,3
+75170478,10727641,4
+122974709,10727641,4
+61845493,10727641,1
+61845493,10727641,1
+102796007,10727641,3
+pandorapple,10727641,3
+40684892,10727641,4
+fei-never,10727641,3
+luzhiyu,10727641,4
+68800261,10727641,3
+kyleul,10727641,5
+63531003,10727641,5
+3548835,10727641,4
+79669816,10727641,5
+irislxxx,10727641,4
+50024165,10727641,4
+Edvar,10727641,5
+32728165,10727641,4
+cazze,10727641,4
+73445722,10727641,4
+copy6,10727641,4
+51763291,10727641,4
+54593861,10727641,3
+annho,10727641,4
+50222187,10727641,4
+mufanxuanji,10727641,3
+zzmynn,10727641,4
+46815070,10727641,3
+46754080,10727641,5
+70815428,10727641,4
+53068258,10727641,3
+60051635,10727641,4
+GAYHOUSE,10727641,2
+yixin,10727641,4
+44271862,10727641,2
+d.brown,10727641,3
+111986885,10727641,4
+kpcloud1314,10727641,4
+51602608,10727641,3
+mustbe007,10727641,4
+78973755,10727641,5
+42320046,10727641,5
+54131075,10727641,4
+46696173,10727641,4
+wannamocca,10727641,5
+p2165,10727641,4
+75984184,10727641,3
+fsmarjorie,10727641,4
+85230814,10727641,5
+3908249,10727641,5
+90884269,10727641,4
+atomziyu,10727641,4
+88096302,10727641,4
+121132811,10727641,5
+119399510,10727641,5
+iseeiv,10727641,1
+45838830,10727641,4
+54954502,10727641,4
+52830779,10727641,4
+lunes7,10727641,3
+1267221,10727641,3
+129598785,10727641,4
+roseme,10727641,4
+niguize,10727641,4
+wangxiaoyeer,10727641,4
+1730018,10727641,2
+37580592,10727641,3
+Cherry-Pop,10727641,4
+57542378,10727641,4
+qijiuzhiyue,10727641,3
+64038122,10727641,2
+cageyz,10727641,3
+79746301,10727641,4
+47941065,10727641,4
+3481340,10727641,2
+4356603,10727641,-1
+61715230,10727641,4
+55391513,10727641,4
+fenlanbingyan,10727641,4
+3524452,10727641,4
+66691775,10727641,4
+jingyajun,10727641,3
+evan.liew,10727641,3
+evan.liew,10727641,3
+lovingmomo,10727641,4
+97163496,10727641,5
+11380026,10727641,-1
+timo_lis,10727641,5
+1086544,10727641,4
+zayaza,10727641,4
+106481252,10727641,5
+36621116,10727641,4
+83895101,10727641,5
+47601380,10727641,4
+97305087,10727641,4
+132438473,10727641,3
+63682044,10727641,4
+63359487,10727641,5
+39666261,10727641,4
+30357929,10727641,4
+129369858,10727641,4
+42319568,10727641,3
+72387570,10727641,3
+50060410,10727641,3
+49836781,10727641,-1
+66764182,10727641,3
+nicolas7,10727641,5
+43808968,10727641,4
+60650614,10727641,3
+25960765,10727641,4
+130467406,10727641,5
+48941780,10727641,3
+124825999,10727641,4
+rabbiton,10727641,3
+crowsz,10727641,4
+mingyu1992,10727641,5
+51513008,10727641,5
+67143504,10727641,3
+herbage,10727641,3
+67864685,10727641,3
+45944885,10727641,4
+yaoxianjun,10727641,5
+41639509,10727641,3
+mzmuxin,10727641,4
+jojo2046,10727641,4
+134159627,10727641,4
+4710028,10727641,4
+HY1990919,10727641,4
+killsusie,10727641,3
+55010892,10727641,4
+3407887,10727641,4
+Erman-Wei,10727641,4
+duzhouchi,10727641,3
+131504298,10727641,4
+68864457,10727641,4
+konghanlei,10727641,5
+116151373,10727641,5
+65263102,10727641,5
+133687248,10727641,5
+34187825,10727641,5
+Vitus16,10727641,4
+carried,10727641,4
+BUNNV,10727641,4
+BUNNV,10727641,4
+92944589,10727641,4
+28573780,10727641,4
+56044350,10727641,4
+68454681,10727641,4
+19156366,10727641,3
+65929485,10727641,5
+samleq,10727641,4
+84019906,10727641,5
+xzfd,10727641,4
+63083756,10727641,2
+58878500,10727641,3
+53744550,10727641,3
+4590334,10727641,3
+60187036,10727641,5
+tomqulab,10727641,3
+50222908,10727641,5
+doll88,10727641,4
+Osolemio,10727641,4
+wendawen,10727641,3
+81118604,10727641,4
+125281406,10727641,4
+nbyuan,10727641,3
+19869375,10727641,5
+58706786,10727641,4
+44504956,10727641,4
+58044913,10727641,5
+13330129,10727641,5
+1133241,10727641,4
+xly7788,10727641,3
+awayway,10727641,3
+abie0728,10727641,3
+erasa,10727641,5
+93471236,10727641,5
+milanmao,10727641,3
+53251134,10727641,5
+lovemj4ever,10727641,5
+83971141,10727641,5
+129371077,10727641,5
+73156181,10727641,5
+deardeerdearme,10727641,3
+masaikejun,10727641,3
+moonflora,10727641,4
+72068828,10727641,4
+fenris,10727641,5
+Evarnold,10727641,3
+charlene1996,10727641,3
+css,10727641,5
+44643250,10727641,5
+mowo,10727641,4
+45556826,10727641,5
+16073149,10727641,4
+20054715,10727641,4
+54449997,10727641,4
+9411149,10727641,5
+2569676,10727641,4
+rocksind,10727641,3
+Kesen,10727641,4
+66814088,10727641,5
+ca5h,10727641,4
+40299768,10727641,4
+92815743,10727641,4
+133764875,10727641,3
+angelmagazine,10727641,4
+xiguaguagua,10727641,4
+78955356,10727641,4
+thomsonkoo,10727641,4
+129626635,10727641,5
+42443171,10727641,4
+hellozyn,10727641,4
+119484113,10727641,4
+davyjones,10727641,3
+104409838,10727641,4
+3753878,10727641,4
+54597801,10727641,4
+danewkk,10727641,5
+67575567,10727641,3
+55741481,10727641,4
+6423059,10727641,5
+67641940,10727641,5
+su27,10727641,5
+88867964,10727641,5
+43712380,10727641,5
+killmystery,10727641,4
+kimixu1017,10727641,3
+43743828,10727641,4
+55465032,10727641,4
+50326036,10727641,4
+Howen,10727641,5
+130589394,10727641,3
+68186008,10727641,4
+joesmine,10727641,5
+liusikuang,10727641,4
+133445534,10727641,3
+71134054,10727641,3
+zy1255805234,10727641,4
+caijiazhan,10727641,4
+loucinda,10727641,4
+43539479,10727641,4
+wwnoah,10727641,5
+119182014,10727641,2
+48965747,10727641,5
+58955045,10727641,5
+More-ZZ,10727641,5
+68041869,10727641,5
+amwindy,10727641,5
+guihuazhouzi,10727641,3
+4629743,10727641,-1
+32995807,10727641,3
+107124348,10727641,4
+foreverGJC8023,10727641,3
+130983616,10727641,5
+43618252,10727641,4
+wanwan______,10727641,-1
+fotoz,10727641,4
+89330155,10727641,5
+82494304,10727641,4
+133125055,10727641,3
+40490776,10727641,5
+Brad_King,10727641,3
+yeyizhimei,10727641,4
+sweetranran,10727641,4
+yycznh0520,10727641,4
+chnp101,10727641,3
+66186689,10727641,4
+meisacc,10727641,3
+67298685,10727641,3
+25110019,10727641,3
+shifted,10727641,5
+ondinehz,10727641,5
+133486848,10727641,4
+62862861,10727641,4
+53811293,10727641,4
+yushiyumaodeyu,10727641,5
+26757948,10727641,4
+41923950,10727641,5
+alohaceci,10727641,5
+riplilse7en,10727641,3
+ydyie,10727641,3
+3846941,10727641,4
+81982527,10727641,5
+133546205,10727641,5
+53344398,10727641,5
+63672355,10727641,3
+leticiatang,10727641,5
+121939824,10727641,4
+liuheng20110613,10727641,3
+seafans,10727641,4
+52048699,10727641,4
+62735975,10727641,4
+26526390,10727641,4
+50777931,10727641,3
+paulsfoot,10727641,4
+41687639,10727641,4
+lzw5546,10727641,4
+huohuoa,10727641,3
+2630532,10727641,5
+covering,10727641,4
+fangbin0516,10727641,3
+66596564,10727641,4
+58927939,10727641,5
+2628019,10727641,5
+8839314,10727641,5
+xbl911,10727641,4
+zhchtcm,10727641,4
+bessie10105101,10727641,4
+54770734,10727641,5
+64124886,10727641,3
+82602677,10727641,4
+46271571,10727641,5
+39818753,10727641,4
+cera,10727641,4
+Chorai42,10727641,4
+41521750,10727641,5
+4800478,10727641,3
+50117993,10727641,-1
+FUCKDONTLOVING,10727641,4
+133921096,10727641,-1
+snoopynirvana,10727641,3
+61742449,10727641,3
+78385817,10727641,5
+86091558,10727641,5
+y328675858,10727641,2
+SweetCoffee,10727641,4
+71450042,10727641,5
+3006805,10727641,4
+76993603,10727641,5
+3850532,10727641,5
+4577694,10727641,5
+arista9,10727641,3
+50696757,10727641,1
+47708904,10727641,3
+windyolivia,10727641,4
+61393582,10727641,3
+volantisff,10727641,4
+fuckyeahdelia,10727641,5
+51377015,10727641,4
+54621732,10727641,4
+miumiu444,10727641,5
+93939331,10727641,4
+75609687,10727641,3
+1001195,10727641,4
+4596244,10727641,5
+61003221,10727641,3
+foreverlee,10727641,3
+dreamchu,10727641,5
+dmp,10727641,4
+18734127,10727641,5
+illxg001,10727641,4
+48256404,10727641,5
+76960780,10727641,5
+133351029,10727641,3
+64883992,10727641,4
+97195140,10727641,5
+78240226,10727641,4
+41294131,10727641,3
+34668649,10727641,4
+119101467,10727641,5
+meskelil,10727641,3
+46970398,10727641,5
+76825676,10727641,4
+fireattack,10727641,-1
+58403534,10727641,5
+43161873,10727641,3
+49032591,10727641,4
+60882381,10727641,5
+hackerviki,10727641,4
+2387348,10727641,4
+57391002,10727641,-1
+58896419,10727641,4
+dingyin,10727641,3
+berialgreener,10727641,4
+71678016,10727641,3
+90178539,10727641,5
+129709557,10727641,5
+amis110,10727641,4
+33982496,10727641,5
+51329457,10727641,4
+121197040,10727641,5
+d_minor,10727641,4
+d_minor,10727641,4
+54364029,10727641,5
+3509096,10727641,5
+jumpingjanice,10727641,2
+3573676,10727641,4
+4655887,10727641,5
+131223393,10727641,5
+58101535,10727641,3
+2049714,10727641,4
+4072052,10727641,4
+84395072,10727641,3
+CZ1011,10727641,4
+49346952,10727641,4
+90338227,10727641,4
+43210581,10727641,5
+120627927,10727641,3
+83726680,10727641,5
+122266314,10727641,4
+lazymule,10727641,3
+47764376,10727641,3
+jessie1456,10727641,5
+77198061,10727641,5
+cyblocker,10727641,4
+36359450,10727641,4
+59665595,10727641,3
+daily_kitchen,10727641,4
+FrankWasabi,10727641,4
+34901213,10727641,3
+smilemansay,10727641,4
+40970313,10727641,3
+47840013,10727641,5
+gufengbyluoluo,10727641,4
+27019548,10727641,5
+4283595,10727641,4
+62690762,10727641,3
+tintintsang,10727641,4
+42292941,10727641,4
+cindyhao,10727641,-1
+luhua,10727641,3
+133490729,10727641,-1
+43664862,10727641,5
+OpalMummy,10727641,4
+61169740,10727641,4
+swiftwind,10727641,5
+56024205,10727641,4
+122484981,10727641,5
+1749137,10727641,4
+sjdjayjj,10727641,4
+chenkendra,10727641,4
+48962197,10727641,4
+76565788,10727641,4
+58596015,10727641,5
+2914721,10727641,4
+nicoleltt,10727641,5
+101866753,10727641,5
+61946723,10727641,2
+14587316,10727641,-1
+78517327,10727641,4
+41486823,10727641,4
+acapellaminuet,10727641,4
+darkdio,10727641,4
+1485397,10727641,3
+j_lazy,10727641,3
+56653305,10727641,4
+hiphopking,10727641,4
+queenieliao,10727641,5
+TiffanyBrisset,10727641,3
+RobinsonZZ,10727641,4
+musicgroup,10727641,4
+helenhong,10727641,3
+130569620,10727641,4
+3166954,10727641,3
+50023640,10727641,3
+Cicinnurus,10727641,5
+dadou417,10727641,2
+aaronlikecheese,10727641,-1
+132744825,10727641,5
+Evenray,10727641,4
+46853382,10727641,5
+cyyywx,10727641,3
+xiqi,10727641,4
+heraunty,10727641,3
+findmusic,10727641,4
+BIN_CHANG,10727641,2
+violette,10727641,3
+laisui,10727641,3
+fakeyouout,10727641,3
+ryoiyu,10727641,5
+55883652,10727641,4
+septembre,10727641,3
+48511248,10727641,4
+65868986,10727641,4
+caonimeide,10727641,4
+nini_wang,10727641,3
+zhenzhen07,10727641,3
+51320700,10727641,5
+2633400,10727641,4
+79217059,10727641,4
+44618919,10727641,4
+yiweicoffee,10727641,3
+leftside,10727641,-1
+63877279,10727641,4
+li_1314,10727641,3
+kidaliu,10727641,4
+87910088,10727641,5
+imellie,10727641,5
+69121114,10727641,5
+31945324,10727641,4
+50028709,10727641,2
+littlekidzouzou,10727641,4
+Alisonlove,10727641,-1
+124470674,10727641,4
+enzai,10727641,4
+fanzai8,10727641,4
+zpvera,10727641,3
+60378678,10727641,4
+sunjm,10727641,3
+52987923,10727641,3
+Shiely,10727641,3
+79420813,10727641,3
+2692873,10727641,4
+fionhe89,10727641,5
+ValentineQ,10727641,4
+jacoxu,10727641,4
+48661159,10727641,4
+mmmeow,10727641,4
+tikchao,10727641,4
+exvi,10727641,4
+10834287,10727641,4
+89844147,10727641,5
+hu82667775,10727641,3
+36152069,10727641,4
+vicong,10727641,3
+1038194,10727641,4
+doctormiro,10727641,3
+myhot,10727641,4
+disloyalworld,10727641,4
+hutianyi,10727641,4
+yjjwx,10727641,3
+jhj0918,10727641,4
+cuterice,10727641,5
+4558486,10727641,4
+feitianye,10727641,4
+47047627,10727641,5
+foreveryoung09,10727641,4
+56897677,10727641,5
+babylisa,10727641,3
+8802832,10727641,4
+77288161,10727641,3
+Iamapoem,10727641,3
+129586774,10727641,5
+53476410,10727641,4
+foreveryoung01,10727641,4
+40059497,10727641,5
+88159379,10727641,3
+48369698,10727641,1
+2481956,10727641,4
+Anastasia,10727641,3
+65335204,10727641,3
+62049572,10727641,3
+74361117,10727641,3
+66344990,10727641,3
+shiyanshigou,10727641,5
+122775909,10727641,3
+23664888,10727641,-1
+sif7,10727641,5
+DesmondDAI,10727641,4
+1493686,10727641,5
+44434649,10727641,3
+fishlet,10727641,3
+72538808,10727641,4
+76781369,10727641,3
+cabaret,10727641,4
+cmisland,10727641,4
+vigilgt,10727641,3
+55279581,10727641,4
+17337630,10727641,3
+laoshixier,10727641,3
+43087284,10727641,4
+1708899,10727641,3
+gropher,10727641,4
+102966117,10727641,4
+42597882,10727641,5
+83242026,10727641,3
+63557771,10727641,3
+bjmiss,10727641,5
+AnaerobicResp,10727641,4
+62319312,10727641,4
+85366942,10727641,4
+132458103,10727641,5
+77758955,10727641,5
+90704708,10727641,5
+1197799,10727641,5
+47448827,10727641,4
+2448391,10727641,4
+78414144,10727641,-1
+midochan,10727641,-1
+82298379,10727641,5
+35777009,10727641,-1
+Hjalmar,10727641,3
+63839731,10727641,4
+whyoung,10727641,2
+1768522,10727641,3
+89987861,10727641,3
+1979010,10727641,3
+37488201,10727641,-1
+46714159,10727641,5
+1757021,10727641,3
+roror,10727641,3
+Asita99,10727641,4
+81697516,10727641,4
+2626119,10727641,4
+biaobiaoqi,10727641,4
+queeneiekong,10727641,3
+ramya99,10727641,3
+58263716,10727641,5
+rose886,10727641,5
+dyalan,10727641,2
+zhishouyuan,10727641,4
+pinomax,10727641,-1
+47905384,10727641,4
+Camusdead,10727641,4
+57080555,10727641,3
+63156137,10727641,5
+jeonwoo,10727641,4
+menghao111965,10727641,3
+mikarg,10727641,4
+133900665,10727641,4
+40399819,10727641,4
+47870683,10727641,3
+58034308,10727641,3
+3360380,10727641,3
+47189582,10727641,4
+64757557,10727641,5
+40830379,10727641,4
+53698727,10727641,4
+44254923,10727641,4
+JeffHoo,10727641,5
+jaslee,10727641,4
+31630076,10727641,5
+31630076,10727641,5
+41869870,10727641,4
+48523065,10727641,3
+xixi9000,10727641,3
+aibamoe,10727641,4
+vinnywang,10727641,5
+amhuming,10727641,4
+caocaoa,10727641,4
+suwa,10727641,4
+mrmary_43,10727641,5
+wanwenv,10727641,3
+90761722,10727641,5
+yinshan1025,10727641,4
+58030320,10727641,3
+yumiaoxiaoyu,10727641,4
+3416468,10727641,3
+70052814,10727641,4
+depressioncat,10727641,5
+xiaohesophia,10727641,5
+38882087,10727641,3
+Moretoless,10727641,4
+29107256,10727641,4
+Qizura,10727641,5
+3009345,10727641,4
+121397901,10727641,4
+eastge,10727641,4
+61021408,10727641,2
+aliiiiis,10727641,3
+62732851,10727641,3
+2118868,10727641,4
+57545593,10727641,5
+129931141,10727641,4
+kishio,10727641,-1
+57925888,10727641,3
+75284376,10727641,3
+57537354,10727641,4
+tenaciousdragon,10727641,3
+129798303,10727641,5
+55293243,10727641,4
+may1ight,10727641,3
+may1ight,10727641,3
+janejane,10727641,4
+34309421,10727641,4
+4147353,10727641,4
+129956796,10727641,5
+C.again,10727641,4
+3455600,10727641,3
+rie_fu,10727641,2
+42361601,10727641,2
+64979240,10727641,4
+ele30tin,10727641,4
+zod798,10727641,4
+48927470,10727641,4
+49322454,10727641,3
+78413454,10727641,5
+janaldlam,10727641,4
+132216519,10727641,4
+voidoo,10727641,4
+43201019,10727641,4
+aotui,10727641,3
+3588917,10727641,2
+34461821,10727641,5
+127329113,10727641,5
+jessezheng,10727641,4
+83389168,10727641,5
+41565491,10727641,5
+mixi456,10727641,3
+48514157,10727641,5
+69463567,10727641,2
+3006833,10727641,3
+61712114,10727641,3
+88272921,10727641,4
+53988247,10727641,4
+margaret_wmx,10727641,4
+liangyingnicole,10727641,4
+52358087,10727641,4
+14542773,10727641,4
+weizixin.winni,10727641,4
+towelie,10727641,3
+52868226,10727641,5
+Pabalee,10727641,4
+3629692,10727641,4
+56655394,10727641,4
+lucia1227,10727641,2
+66604481,10727641,4
+xuaoling,10727641,5
+rouble-w,10727641,5
+roro0306,10727641,4
+53853520,10727641,5
+fatfatbird,10727641,4
+59027708,10727641,2
+Memorial_Sue,10727641,3
+shannonsummer,10727641,5
+90547930,10727641,3
+126248170,10727641,4
+52098177,10727641,4
+ohseven,10727641,4
+26475045,10727641,4
+88076684,10727641,5
+53304881,10727641,4
+dakusaido,10727641,5
+mixdream,10727641,4
+63097689,10727641,5
+3086188,10727641,4
+42345304,10727641,5
+17543193,10727641,5
+64154441,10727641,4
+stone2jade,10727641,3
+34280788,10727641,4
+1569518,10727641,3
+seail,10727641,4
+Ly1n9,10727641,4
+63781103,10727641,4
+HyoA,10727641,4
+vanyeeyouth,10727641,3
+flowervirus,10727641,4
+weichengluanma,10727641,3
+50632642,10727641,3
+50590335,10727641,3
+Laylauu,10727641,3
+rokkumu,10727641,3
+65851349,10727641,3
+dou_1223,10727641,4
+2457734,10727641,3
+zachzhou,10727641,4
+27898838,10727641,4
+tatanolove,10727641,4
+kirinkeren,10727641,2
+bebesummer,10727641,4
+scarlywoo,10727641,4
+lightreus,10727641,3
+mo_hui06,10727641,4
+58121967,10727641,3
+sancosmos,10727641,5
+3589886,10727641,4
+1121196,10727641,-1
+chrisWen,10727641,4
+22364570,10727641,4
+49496507,10727641,4
+catfood,10727641,3
+zhebingjie,10727641,3
+Bibi4L,10727641,4
+susacho,10727641,4
+Qsays,10727641,4
+jewelshao,10727641,4
+3431403,10727641,3
+33669561,10727641,5
+69547285,10727641,4
+suma,10727641,3
+sinapple,10727641,3
+133866670,10727641,4
+56557982,10727641,5
+76943413,10727641,2
+Renee101,10727641,3
+lhs,10727641,4
+toucHero,10727641,3
+mouzhi,10727641,4
+33978544,10727641,4
+chyfreefly,10727641,5
+104469563,10727641,5
+mogu_s,10727641,4
+BarbieJ,10727641,4
+ichenyixiang,10727641,3
+yinchouyunv,10727641,3
+godmako,10727641,3
+tom80s,10727641,4
+53201983,10727641,4
+49324662,10727641,3
+111461811,10727641,5
+53648369,10727641,-1
+1651604,10727641,3
+46169869,10727641,3
+45406348,10727641,4
+xiatian722,10727641,5
+51675182,10727641,4
+bell-wind,10727641,3
+133176732,10727641,4
+55915124,10727641,4
+46429312,10727641,5
+Hee_Tiina,10727641,5
+chuleiwu,10727641,3
+RCN,10727641,4
+songsida,10727641,4
+45637551,10727641,3
+84722461,10727641,4
+44589835,10727641,4
+lyncia,10727641,4
+1624233,10727641,3
+ruoqizhang,10727641,4
+17247716,10727641,4
+47574075,10727641,4
+watertcafe,10727641,5
+121907627,10727641,5
+unclewater,10727641,3
+53942101,10727641,4
+3553461,10727641,3
+75173878,10727641,3
+55549387,10727641,4
+anniebridge,10727641,3
+47035485,10727641,4
+87355390,10727641,4
+horaprima,10727641,4
+rollschild,10727641,5
+53782984,10727641,4
+vivo,10727641,-1
+49595588,10727641,2
+80846705,10727641,4
+47331387,10727641,4
+zhangkvi,10727641,3
+106347535,10727641,4
+smallove816,10727641,-1
+50280331,10727641,4
+48254437,10727641,3
+53031430,10727641,5
+xianuannian,10727641,4
+64400147,10727641,5
+58904341,10727641,5
+anyone,10727641,3
+canon125,10727641,4
+Nova_Caine,10727641,5
+29326394,10727641,5
+vitasharry,10727641,4
+92399399,10727641,4
+70682305,10727641,3
+44589757,10727641,4
+31335200,10727641,4
+eisenhajime,10727641,4
+imblind,10727641,4
+45088175,10727641,5
+3864518,10727641,3
+82630962,10727641,5
+83223876,10727641,3
+SkyeHo,10727641,4
+4067480,10727641,5
+125017541,10727641,5
+54415662,10727641,5
+50745405,10727641,4
+45935605,10727641,3
+82362528,10727641,4
+48886320,10727641,4
+kkyyoo,10727641,4
+2615650,10727641,4
+1108707,10727641,4
+wendy86,10727641,3
+70361131,10727641,3
+SiyeonYeung,10727641,3
+Luci4er,10727641,4
+45509766,10727641,5
+2431859,10727641,4
+prince-benja,10727641,4
+58350801,10727641,4
+58060693,10727641,4
+hh55555,10727641,4
+58957642,10727641,4
+1088369,10727641,5
+jianyadaodao,10727641,5
+62738742,10727641,3
+63824068,10727641,4
+43237878,10727641,-1
+3863626,10727641,4
+121744754,10727641,3
+45804814,10727641,4
+46742218,10727641,5
+cat_rs,10727641,4
+65741899,10727641,4
+60413316,10727641,4
+HEISONWONG,10727641,3
+70454973,10727641,5
+casablanca0912,10727641,4
+4401259,10727641,4
+119683375,10727641,4
+4010650,10727641,4
+71062374,10727641,3
+46832337,10727641,4
+armitt,10727641,3
+outsider-hk,10727641,5
+44359808,10727641,5
+2561513,10727641,3
+40956109,10727641,5
+1091789,10727641,4
+53578475,10727641,3
+huangdx,10727641,4
+38655686,10727641,4
+Joy1023,10727641,5
+zyycat,10727641,5
+122677688,10727641,5
+59156269,10727641,3
+44049891,10727641,4
+60080924,10727641,5
+52338823,10727641,4
+ally7,10727641,3
+77595746,10727641,5
+66834039,10727641,5
+wzwzjb,10727641,5
+50043116,10727641,4
+45382410,10727641,4
+47902744,10727641,5
+115476786,10727641,4
+74935838,10727641,5
+51638198,10727641,3
+acepatrick,10727641,4
+sunnybath,10727641,5
+55917160,10727641,4
+44387904,10727641,3
+63774339,10727641,2
+2609936,10727641,4
+3783132,10727641,4
+yningc,10727641,-1
+stetehe,10727641,5
+78906900,10727641,3
+Jake52592,10727641,4
+115276282,10727641,4
+59719434,10727641,4
+wangyujia520,10727641,5
+56102431,10727641,3
+49420713,10727641,4
+JanC,10727641,4
+envyandecho,10727641,4
+gloriabrigida,10727641,3
+elingwu,10727641,4
+OnePiece0505,10727641,4
+81107134,10727641,5
+daydream466,10727641,5
+45840603,10727641,4
+qingjuesikong,10727641,4
+102006715,10727641,4
+obepkgmm,10727641,4
+59399193,10727641,3
+raychau,10727641,4
+qshou,10727641,-1
+123634783,10727641,5
+47773223,10727641,4
+43302206,10727641,3
+IMJW,10727641,3
+4161317,10727641,4
+lesones,10727641,4
+happyzkl,10727641,4
+ayueshuo,10727641,5
+chaoz-mozart,10727641,4
+Just_So_So,10727641,4
+71463470,10727641,4
+49891610,10727641,4
+kuangren79,10727641,3
+Shuimu3,10727641,3
+62648038,10727641,5
+43996429,10727641,4
+moleeatwood,10727641,5
+35487811,10727641,5
+50821588,10727641,4
+39051094,10727641,4
+zsylovelife,10727641,5
+58386111,10727641,3
+49995537,10727641,3
+wuxuqian,10727641,4
+heartsdice,10727641,3
+54043321,10727641,4
+75405959,10727641,5
+ensure7,10727641,4
+31951077,10727641,4
+petitespot,10727641,4
+52976585,10727641,4
+98552283,10727641,5
+67823084,10727641,3
+64954480,10727641,5
+Tooooooo0,10727641,5
+sisonzhang,10727641,3
+55274244,10727641,3
+81619869,10727641,5
+lingyun93,10727641,4
+60983088,10727641,2
+bettyzhu,10727641,4
+91548416,10727641,3
+2256732,10727641,4
+Ikino,10727641,5
+woodring,10727641,-1
+ghw0225,10727641,4
+47832666,10727641,4
+3802312,10727641,-1
+39029113,10727641,4
+wlzrxxc,10727641,5
+67586472,10727641,3
+xuguanyu1381,10727641,3
+66612367,10727641,3
+sunshinexuu,10727641,4
+36940816,10727641,4
+62469238,10727641,4
+55335684,10727641,4
+103497855,10727641,4
+Vincent4ever,10727641,4
+gakkilee,10727641,3
+48578756,10727641,3
+shelleyhsu,10727641,3
+65319841,10727641,3
+53268123,10727641,5
+58004310,10727641,4
+littlekunsheng,10727641,2
+zoezz,10727641,4
+51711778,10727641,4
+1703105,10727641,3
+59955851,10727641,3
+59955851,10727641,3
+3253588,10727641,4
+4409829,10727641,4
+73959584,10727641,4
+42234148,10727641,3
+3541486,10727641,4
+62619587,10727641,-1
+iiibuwan,10727641,4
+cici115,10727641,4
+48532760,10727641,-1
+97277841,10727641,4
+sweetsss,10727641,3
+jushang,10727641,2
+HeyAriel,10727641,5
+46492005,10727641,4
+48362404,10727641,4
+72327409,10727641,5
+49145944,10727641,4
+1867121,10727641,3
+74017888,10727641,4
+133571284,10727641,5
+ziyoupaifeizai,10727641,4
+53022241,10727641,4
+anearl,10727641,3
+55772953,10727641,4
+48182921,10727641,2
+4356952,10727641,4
+50831726,10727641,5
+77485550,10727641,5
+62206199,10727641,4
+Rayzhangcl,10727641,4
+yangyixiu1218,10727641,3
+sickroom305,10727641,3
+91936277,10727641,5
+48763298,10727641,4
+2112561,10727641,3
+winter-h,10727641,3
+58114980,10727641,4
+ronmul,10727641,4
+45025869,10727641,4
+Kafspear,10727641,3
+ruijiejie,10727641,4
+48117474,10727641,3
+68913582,10727641,3
+zhaimozi,10727641,4
+124142229,10727641,5
+junqli86,10727641,3
+insomniaintokyo,10727641,-1
+62850714,10727641,5
+bowon,10727641,3
+110524135,10727641,4
+8498291,10727641,5
+lithiumworld,10727641,3
+33325157,10727641,4
+rockbobby,10727641,4
+59973784,10727641,4
+51264470,10727641,4
+juicyberry,10727641,-1
+48997081,10727641,3
+31634567,10727641,4
+102996784,10727641,4
+sharonsama,10727641,3
+Happyprince,10727641,4
+twowise,10727641,5
+G-Dear,10727641,4
+70253982,10727641,4
+49539687,10727641,3
+Zoeeoz,10727641,3
+131494962,10727641,5
+annierainbow,10727641,4
+59465835,10727641,5
+EastDesert,10727641,4
+fangxiaotang,10727641,3
+92840931,10727641,4
+severus,10727641,4
+59245915,10727641,3
+cassidesert,10727641,4
+xiongbear01,10727641,4
+82262914,10727641,4
+pallaspurple,10727641,4
+97542556,10727641,5
+39228377,10727641,4
+moth,10727641,3
+4720825,10727641,2
+icebully521,10727641,4
+giliani,10727641,4
+ILoveAshin,10727641,4
+qxxxd,10727641,-1
+fhlan,10727641,4
+Gawiel,10727641,4
+casusu,10727641,3
+Vof,10727641,4
+3107715,10727641,3
+dnarna_vicky,10727641,-1
+dearmaya,10727641,4
+xsky,10727641,4
+45220439,10727641,3
+star_tar1101,10727641,4
+emmas,10727641,4
+114079849,10727641,3
+102714413,10727641,4
+Etoilefilante,10727641,4
+79829494,10727641,4
+57124272,10727641,4
+1572051,10727641,5
+38974798,10727641,4
+65977866,10727641,4
+98014979,10727641,4
+4624578,10727641,4
+mocnab,10727641,3
+50716714,10727641,3
+foreverjoy,10727641,4
+65075320,10727641,5
+79108534,10727641,3
+58078884,10727641,3
+70385539,10727641,3
+82740330,10727641,3
+69319715,10727641,4
+74756120,10727641,3
+32647118,10727641,5
+3750339,10727641,4
+hohosweet,10727641,3
+vv_gh,10727641,4
+47867459,10727641,5
+2731510,10727641,5
+97416681,10727641,5
+fudorec,10727641,4
+2185681,10727641,3
+sakamoto1ren,10727641,3
+youngsimple,10727641,2
+51445023,10727641,4
+2280920,10727641,3
+52751640,10727641,4
+1636017,10727641,3
+2977496,10727641,4
+aprildaisy,10727641,3
+ruo619,10727641,4
+yepiam,10727641,5
+76327439,10727641,5
+64260595,10727641,4
+1050344,10727641,4
+89844032,10727641,5
+58102881,10727641,4
+123174311,10727641,4
+53822938,10727641,4
+kitkat_kk1125,10727641,4
+4317712,10727641,5
+ericyxh,10727641,4
+Ask,10727641,3
+49138712,10727641,4
+30280100,10727641,4
+buffongao,10727641,4
+lilacdays,10727641,5
+wenbao,10727641,3
+zi,10727641,3
+81544351,10727641,4
+v7v7v7v7v7,10727641,3
+ericandlisa,10727641,3
+Ramoser,10727641,3
+121209775,10727641,3
+spookyfox,10727641,4
+1608731,10727641,3
+brbaarlab,10727641,3
+deadmonica,10727641,4
+encorepanda,10727641,4
+bettercharlot,10727641,5
+27308826,10727641,4
+55937351,10727641,3
+119413025,10727641,4
+kellyouka,10727641,3
+shesmesyely,10727641,3
+curemyself,10727641,3
+jersey0821,10727641,4
+56526826,10727641,4
+deepkid,10727641,-1
+tytony890115,10727641,4
+64131713,10727641,4
+51559906,10727641,3
+2889153,10727641,3
+34855007,10727641,3
+37499782,10727641,4
+p0pking,10727641,3
+sunevivi,10727641,5
+weirdoToC,10727641,4
+1550127,10727641,4
+icwk,10727641,4
+blueskd,10727641,4
+35800608,10727641,4
+62445798,10727641,4
+3512045,10727641,4
+pierrewrs,10727641,4
+3615093,10727641,5
+73126266,10727641,4
+kaolaxing,10727641,4
+2732455,10727641,5
+49227246,10727641,5
+2829909,10727641,4
+8213200,10727641,5
+alvie,10727641,4
+imulu,10727641,5
+x745bc11,10727641,4
+4047880,10727641,4
+106663926,10727641,4
+zxxaki,10727641,4
+63161507,10727641,5
+64318696,10727641,4
+paper5431,10727641,4
+Hanndiex_,10727641,4
+69274709,10727641,5
+qian828,10727641,3
+3561547,10727641,4
+37344756,10727641,3
+zhangxingshen,10727641,4
+foreversylvia,10727641,3
+4341359,10727641,4
+66533894,10727641,4
+xi_1483,10727641,5
+yuanaibing,10727641,3
+at_maokedongwu,10727641,5
+93469106,10727641,3
+63167572,10727641,3
+75215072,10727641,2
+41431459,10727641,4
+leevis,10727641,4
+45072336,10727641,2
+charissanama,10727641,3
+46354029,10727641,4
+53464636,10727641,3
+sasacheuang,10727641,4
+55746390,10727641,4
+rociowyc,10727641,3
+lalunefay,10727641,3
+followmydreams,10727641,5
+mysheepy,10727641,4
+59538070,10727641,5
+babe_of_pisces,10727641,4
+81412725,10727641,4
+83842502,10727641,4
+Carmeliano,10727641,1
+103042585,10727641,3
+4765777,10727641,2
+3005627,10727641,4
+thandiwe,10727641,4
+anyeyaodao,10727641,3
+anison,10727641,3
+fotonorth,10727641,-1
+50945725,10727641,3
+88081047,10727641,4
+61041059,10727641,-1
+rodinian,10727641,4
+vivianlovesun,10727641,3
+hzloli,10727641,-1
+capsula,10727641,3
+54366340,10727641,4
+amyue,10727641,4
+48395509,10727641,4
+45107402,10727641,5
+20047139,10727641,4
+43296422,10727641,3
+audreyc,10727641,4
+64251575,10727641,3
+jiqn,10727641,4
+1520497,10727641,3
+Kevinsoong,10727641,5
+bss007vip,10727641,4
+1757039,10727641,3
+coldcall,10727641,4
+karenyao,10727641,4
+60289458,10727641,3
+vivianbaby0925,10727641,4
+jackieatdnv,10727641,4
+chilldream,10727641,4
+39098592,10727641,4
+flyingCaptian,10727641,3
+amandachun-gccz,10727641,3
+80570322,10727641,3
+chloexile,10727641,5
+daiyuko,10727641,3
+veronicavee,10727641,4
+62963887,10727641,5
+lsy_yurensmall,10727641,4
+53718578,10727641,3
+halaRMforever,10727641,5
+simonyao,10727641,4
+hannat,10727641,5
+79335001,10727641,3
+63730928,10727641,4
+octo8,10727641,4
+58926065,10727641,3
+46897570,10727641,3
+51381782,10727641,4
+74721875,10727641,3
+zhanglehu,10727641,3
+44576253,10727641,3
+AmadHatter,10727641,5
+3809045,10727641,4
+mm_ww,10727641,3
+alfmunny,10727641,4
+vanlove,10727641,4
+53833067,10727641,3
+Illbeamyouup,10727641,4
+ymm,10727641,3
+calla,10727641,4
+1900968,10727641,4
+65113325,10727641,4
+shiningmonkey,10727641,4
+2305085,10727641,4
+julienzhao,10727641,5
+1503417,10727641,3
+3623173,10727641,4
+dinosaw,10727641,5
+103550111,10727641,4
+adonis72,10727641,4
+74008197,10727641,5
+80121917,10727641,5
+46632584,10727641,4
+127480277,10727641,5
+RR_Sherrol,10727641,4
+59015401,10727641,5
+3763502,10727641,4
+jjforever,10727641,4
+5318547,10727641,2
+SnoozyOwl,10727641,3
+4695452,10727641,4
+calamus22,10727641,3
+ellestmorte,10727641,3
+yizhu,10727641,3
+68140400,10727641,5
+48312950,10727641,4
+28480387,10727641,5
+2373395,10727641,3
+103118450,10727641,4
+75042090,10727641,4
+ancientbabylon,10727641,4
+1689876,10727641,4
+pingzhen,10727641,4
+msfigaro,10727641,4
+teenzy,10727641,3
+some_Ji,10727641,5
+Jessica_Nangong,10727641,4
+xiaojuer,10727641,3
+ghlznh,10727641,3
+52112521,10727641,3
+lengleng,10727641,3
+49953838,10727641,5
+47821989,10727641,3
+132956553,10727641,4
+petercat,10727641,4
+maoluyang,10727641,3
+diafarona,10727641,3
+Chloe8846,10727641,3
+2812955,10727641,4
+xixileo,10727641,3
+nathaliema,10727641,4
+Vulpeculae,10727641,4
+sonfeo,10727641,3
+oursonkuma,10727641,4
+shuaimz,10727641,3
+anthony1123,10727641,3
+moviet,10727641,4
+syyw88,10727641,4
+127809639,10727641,5
+lumin1989,10727641,4
+ranljron,10727641,5
+119290611,10727641,5
+xuyanjie,10727641,5
+49363697,10727641,-1
+kevinrise,10727641,4
+99761346,10727641,4
+68732725,10727641,5
+banxian,10727641,4
+53453211,10727641,4
+77430587,10727641,4
+66266382,10727641,4
+loveleejin,10727641,4
+hwylesley,10727641,5
+jimmy78801,10727641,5
+67208403,10727641,4
+73942837,10727641,3
+wanglq,10727641,5
+46661278,10727641,3
+53979926,10727641,4
+38465519,10727641,4
+41522615,10727641,5
+DrGonzo,10727641,3
+59073966,10727641,5
+2726477,10727641,3
+2756282,10727641,4
+89386351,10727641,4
+30872266,10727641,3
+61389234,10727641,4
+62709413,10727641,5
+50061669,10727641,5
+MayaDey,10727641,2
+suyimo,10727641,4
+55603094,10727641,4
+neverfoundme,10727641,4
+67570964,10727641,3
+56342422,10727641,5
+heartkokoro,10727641,5
+fang0079,10727641,4
+2352547,10727641,4
+46087498,10727641,5
+2888621,10727641,4
+annvivienne,10727641,4
+64047703,10727641,5
+53051085,10727641,4
+50166201,10727641,4
+fayeling,10727641,3
+102458348,10727641,3
+2974918,10727641,4
+sugarman638,10727641,4
+liusashmily,10727641,3
+lampslovesterry,10727641,3
+66967830,10727641,5
+57666783,10727641,4
+minazhang,10727641,3
+70297480,10727641,4
+46190519,10727641,4
+zwbhappy,10727641,5
+35687471,10727641,4
+cocteaut,10727641,-1
+noisyphone,10727641,4
+cyc_1124,10727641,4
+50234002,10727641,3
+harlanlee,10727641,5
+41640054,10727641,-1
+64317656,10727641,4
+cakesama,10727641,4
+68311988,10727641,3
+weiwei1020,10727641,4
+kuro-neko,10727641,4
+133146648,10727641,4
+weiguangyinghuo,10727641,4
+forla,10727641,3
+weightless,10727641,4
+32424363,10727641,3
+41342829,10727641,3
+1845671,10727641,4
+faycheung,10727641,5
+faycheung,10727641,5
+3507094,10727641,4
+19660347,10727641,5
+mufishchi,10727641,3
+yqp1987,10727641,4
+zhuangjiahan,10727641,5
+63133964,10727641,4
+62676772,10727641,5
+2210223,10727641,5
+silvenyszmanda,10727641,5
+74938203,10727641,3
+53366599,10727641,4
+74767482,10727641,4
+38986432,10727641,4
+cecilynie,10727641,3
+42886985,10727641,5
+Eassie.Chen.,10727641,3
+11658942,10727641,4
+littne,10727641,-1
+windson7,10727641,4
+1643427,10727641,4
+ximeir,10727641,2
+11956978,10727641,4
+zhuhuazhaojun,10727641,3
+marilia0125,10727641,5
+119606902,10727641,4
+51992445,10727641,4
+seasunflower,10727641,4
+56872447,10727641,4
+55560561,10727641,3
+estrelafan,10727641,5
+36627836,10727641,4
+48558872,10727641,3
+75188314,10727641,4
+joywuyan,10727641,5
+3513161,10727641,4
+subuuti,10727641,4
+50478596,10727641,3
+Livingintherose,10727641,5
+loveirina,10727641,3
+piratecaptain,10727641,3
+emma777,10727641,3
+63553338,10727641,5
+1296624,10727641,4
+65722669,10727641,3
+rickyliqi,10727641,4
+33201871,10727641,5
+suyanz,10727641,4
+solycoco,10727641,4
+U-Know-Who,10727641,4
+bingbingaloe,10727641,4
+Linkinport,10727641,4
+jolyne,10727641,3
+52576887,10727641,3
+narcissus_iris,10727641,3
+78727212,10727641,4
+moredarkwhite,10727641,4
+30218761,10727641,3
+littletraveler,10727641,5
+44219353,10727641,4
+SukiJin,10727641,3
+fengbao945,10727641,4
+prejudice,10727641,4
+3519575,10727641,4
+70895184,10727641,2
+69146144,10727641,5
+stogangan,10727641,3
+wshan,10727641,4
+52934097,10727641,4
+superCocoNie,10727641,4
+3454575,10727641,3
+Depp.Qin,10727641,3
+83949510,10727641,5
+45226797,10727641,4
+freebird619,10727641,4
+2595929,10727641,4
+LunaticSothis,10727641,-1
+bayer04040404,10727641,4
+rominakata,10727641,4
+specialvera,10727641,4
+lilianzly,10727641,4
+77092352,10727641,3
+5594345,10727641,4
+46783923,10727641,5
+jackar,10727641,4
+UNVS,10727641,4
+121817489,10727641,-1
+78408036,10727641,4
+63989347,10727641,4
+36028138,10727641,-1
+ananbaby7,10727641,5
+DryEar,10727641,4
+83152977,10727641,5
+lavendercx,10727641,5
+nbot,10727641,3
+44578870,10727641,4
+90586395,10727641,4
+SOU77ESS,10727641,5
+Fight4Life,10727641,4
+1476559,10727641,4
+61681406,10727641,3
+52395639,10727641,4
+33783341,10727641,4
+129548719,10727641,5
+49515197,10727641,5
+52466190,10727641,3
+elephanthuihui,10727641,3
+wn0126,10727641,3
+ivygreen06,10727641,4
+54737377,10727641,3
+63281322,10727641,4
+saryta,10727641,3
+xdy1990,10727641,3
+Asteria,10727641,3
+disheron,10727641,3
+ikon.rUDY,10727641,5
+youngtoo,10727641,4
+lalarain,10727641,3
+aquapanda,10727641,3
+19676752,10727641,4
+64817099,10727641,3
+violetmelody,10727641,5
+22263173,10727641,4
+queenbean,10727641,4
+68724030,10727641,3
+karasu419,10727641,4
+18851959,10727641,4
+53392132,10727641,3
+1532150,10727641,5
+fevotw,10727641,3
+jiduohuanle,10727641,4
+1634975,10727641,4
+54442469,10727641,5
+jackiex,10727641,5
+princefelipe,10727641,4
+samoyed0310,10727641,4
+70182542,10727641,5
+6644981,10727641,4
+4486237,10727641,4
+yi_yang,10727641,3
+dorislee63,10727641,3
+78471852,10727641,5
+kinolin,10727641,4
+68872792,10727641,4
+yanniyanni,10727641,4
+4485928,10727641,5
+3280103,10727641,4
+magic_qiqi,10727641,4
+radishcindy,10727641,4
+libramao,10727641,4
+51165620,10727641,3
+49288990,10727641,4
+78056349,10727641,5
+dyq930211,10727641,4
+yokotree,10727641,4
+samra,10727641,4
+MelodyGrass,10727641,5
+viona,10727641,3
+54754236,10727641,3
+buerxiong,10727641,4
+133039983,10727641,5
+foamwhisper,10727641,3
+37031042,10727641,4
+ameliewang,10727641,4
+131481046,10727641,5
+56909243,10727641,3
+121353064,10727641,5
+ekling,10727641,3
+misaai,10727641,5
+54915299,10727641,5
+40950202,10727641,3
+121532564,10727641,4
+jeremydu777,10727641,4
+oralm,10727641,3
+79047257,10727641,4
+72923671,10727641,4
+52097875,10727641,4
+64164296,10727641,4
+63666718,10727641,-1
+kuangk,10727641,4
+Crj-Ruya,10727641,-1
+76191580,10727641,4
+62453695,10727641,5
+43783147,10727641,4
+misspill,10727641,4
+chinnyh,10727641,4
+rafael1986,10727641,5
+130110997,10727641,5
+4426095,10727641,3
+49158891,10727641,3
+izume,10727641,4
+52568253,10727641,4
+47656185,10727641,3
+sophia_423,10727641,4
+3670070,10727641,4
+4582318,10727641,4
+boiling-silence,10727641,3
+sonnenshein,10727641,4
+lucyseven,10727641,3
+33118181,10727641,5
+axiu0122,10727641,4
+39294617,10727641,3
+deirdra,10727641,3
+fengzaifei,10727641,4
+noleeshan,10727641,1
+45007107,10727641,4
+90868187,10727641,-1
+61967626,10727641,3
+Xingda,10727641,5
+lingerer,10727641,4
+73040905,10727641,4
+68792801,10727641,3
+3509998,10727641,5
+42065664,10727641,3
+83502519,10727641,5
+2843167,10727641,4
+WangWei1995,10727641,4
+winnie0212,10727641,4
+clearsky11,10727641,4
+lovely2656,10727641,4
+lovely2656,10727641,4
+qiqi_2046,10727641,3
+kanzaki666,10727641,4
+43471768,10727641,3
+moiselletea,10727641,2
+14345299,10727641,4
+33125571,10727641,-1
+119644008,10727641,4
+dawenxi,10727641,4
+T.Shinoda,10727641,4
+spark0601,10727641,3
+2481028,10727641,3
+36881560,10727641,-1
+cukia,10727641,3
+apple475,10727641,4
+towelcatryna,10727641,3
+lightu,10727641,3
+jessie811,10727641,-1
+2842762,10727641,5
+59221485,10727641,5
+68288048,10727641,4
+65038272,10727641,4
+wattan,10727641,3
+25508098,10727641,4
+68379103,10727641,4
+xlee,10727641,3
+johnsonfox,10727641,5
+summer_Remember,10727641,4
+3890374,10727641,5
+41419698,10727641,4
+suguorui,10727641,5
+abby0109,10727641,4
+rulaishenzhang,10727641,4
+1061640,10727641,4
+14683656,10727641,3
+jalouse,10727641,4
+51474654,10727641,5
+57025348,10727641,2
+46718589,10727641,4
+36621770,10727641,5
+yangshuangblue,10727641,4
+pandejian250,10727641,4
+56064358,10727641,5
+55660651,10727641,4
+72945702,10727641,4
+121490085,10727641,4
+WuDingShang,10727641,4
+tengmac,10727641,4
+seaneight,10727641,4
+craigga,10727641,3
+jesuisQ,10727641,3
+infero,10727641,3
+AzureFeeling,10727641,1
+61542214,10727641,4
+48317610,10727641,3
+jingrong,10727641,2
+backinblack,10727641,4
+ekiz,10727641,2
+66752551,10727641,5
+61654063,10727641,4
+weapin,10727641,3
+66307947,10727641,5
+75645970,10727641,2
+4202836,10727641,4
+63176670,10727641,4
+roryluo,10727641,3
+daphneleaf,10727641,4
+65079476,10727641,4
+Septembres,10727641,3
+bluetracy0113,10727641,4
+77232684,10727641,4
+2828111,10727641,3
+maggiemars,10727641,4
+ly_yun811,10727641,5
+dr_new,10727641,4
+stevenfive,10727641,4
+shigusawa,10727641,-1
+odileyue,10727641,4
+damoss,10727641,4
+mimimamahong_,10727641,3
+mimimamahong_,10727641,3
+laylasn,10727641,4
+genppppp,10727641,5
+56523090,10727641,5
+3579800,10727641,3
+RITABMW,10727641,4
+lugeast,10727641,4
+65934035,10727641,5
+lhuiy1020,10727641,5
+jaciewho,10727641,3
+10345879,10727641,4
+frankzhang,10727641,4
+55694141,10727641,3
+green0313,10727641,-1
+2637083,10727641,5
+luhang363,10727641,4
+3572516,10727641,4
+43917006,10727641,-1
+6019648,10727641,3
+Pathon,10727641,3
+naroro,10727641,-1
+ganewael,10727641,4
+71455047,10727641,5
+25533910,10727641,4
+yotsubachan,10727641,4
+dodoface,10727641,4
+zhuluoo7,10727641,4
+1923202,10727641,5
+60513029,10727641,4
+zita07,10727641,4
+bikki,10727641,4
+wmsdaishu,10727641,5
+79272694,10727641,3
+wyjlazy,10727641,4
+FK621,10727641,4
+syh202,10727641,4
+whatever92,10727641,5
+inout,10727641,4
+1662765,10727641,3
+15097830,10727641,4
+64902546,10727641,3
+jashia,10727641,5
+georgelouis,10727641,3
+79994497,10727641,5
+44600352,10727641,4
+1012162,10727641,3
+83415261,10727641,4
+xsy2020,10727641,3
+andriylin,10727641,4
+usaywhat,10727641,4
+James20070126,10727641,-1
+2326027,10727641,4
+51603593,10727641,4
+rantiankat,10727641,3
+cloudy20011128,10727641,4
+stargazerkila,10727641,4
+IcbM,10727641,3
+53637766,10727641,4
+84421464,10727641,5
+41122541,10727641,4
+105631790,10727641,3
+wtffffff,10727641,3
+56682127,10727641,3
+53060922,10727641,3
+52036602,10727641,-1
+lhwithsummer,10727641,3
+stacy-agony,10727641,5
+82868192,10727641,5
+doriszhangye,10727641,5
+dudunvmotou,10727641,3
+whuizw,10727641,4
+1320248,10727641,3
+zillyromantic,10727641,4
+et2o,10727641,4
+xinxinlyx,10727641,5
+yytaizi,10727641,4
+gomorrha,10727641,3
+laineyq,10727641,4
+131663027,10727641,3
+sebas0714,10727641,5
+55635987,10727641,4
+huanxibushuohua,10727641,4
+56655497,10727641,5
+terrubunny,10727641,4
+Betty_king,10727641,3
+chanel0214,10727641,5
+47549344,10727641,3
+95817419,10727641,4
+lamovrevx,10727641,3
+83908365,10727641,3
+1078571,10727641,4
+54326669,10727641,4
+GMDY,10727641,4
+72818218,10727641,2
+108092622,10727641,4
+godlovesemily,10727641,2
+4257284,10727641,4
+zyw,10727641,3
+zjmm1990,10727641,4
+56901313,10727641,3
+2829044,10727641,3
+1949431,10727641,3
+76617093,10727641,3
+justinran,10727641,5
+96503660,10727641,2
+53876218,10727641,2
+Liangkui,10727641,4
+flyingelfin,10727641,3
+lijinhui,10727641,3
+3825095,10727641,4
+1074301,10727641,4
+starwan,10727641,3
+62971762,10727641,4
+zhuang5473,10727641,2
+taylorwang,10727641,5
+48905928,10727641,4
+stella_zhou,10727641,4
+59310806,10727641,3
+tapac,10727641,5
+48484470,10727641,3
+perisher,10727641,4
+chaocai,10727641,4
+48746387,10727641,3
+45219094,10727641,3
+jessie77s,10727641,3
+84250012,10727641,5
+43576863,10727641,4
+52750876,10727641,4
+51851072,10727641,3
+45600222,10727641,4
+83876707,10727641,3
+dizai,10727641,3
+DereyantChan,10727641,5
+4347930,10727641,2
+79887691,10727641,4
+66441737,10727641,4
+willdb,10727641,3
+59916348,10727641,5
+3171917,10727641,4
+60639132,10727641,4
+tigerteethzhang,10727641,4
+icyning,10727641,4
+kitchenbee,10727641,5
+silent_island,10727641,5
+54288370,10727641,5
+54433785,10727641,4
+75957964,10727641,4
+46886299,10727641,5
+somnus7,10727641,4
+7083923,10727641,-1
+35003294,10727641,4
+53749024,10727641,4
+58104865,10727641,5
+l00000000,10727641,3
+36230644,10727641,4
+paranoid_0,10727641,5
+78164697,10727641,3
+nanbunny,10727641,-1
+4268680,10727641,5
+4251050,10727641,4
+4078308,10727641,-1
+37956992,10727641,4
+44399575,10727641,3
+smilesky1216,10727641,4
+1982229,10727641,4
+foreverbye622,10727641,5
+nzy,10727641,5
+75189266,10727641,4
+queenice,10727641,5
+120828432,10727641,4
+meanwhile13,10727641,4
+iorl,10727641,4
+zhouweilin,10727641,4
+hasuki523,10727641,5
+59733385,10727641,3
+31407826,10727641,5
+8527993,10727641,4
+126831966,10727641,4
+immortalmonkey,10727641,3
+3637664,10727641,5
+46758044,10727641,4
+xiankanhualuo,10727641,4
+yre,10727641,4
+60687232,10727641,4
+4583473,10727641,4
+2301865,10727641,4
+34940391,10727641,3
+stena,10727641,4
+2275412,10727641,4
+puppyfanfan,10727641,5
+CNatural,10727641,4
+doralupin,10727641,3
+lotus_yc,10727641,4
+68906717,10727641,4
+132126693,10727641,5
+78710403,10727641,5
+ytismile,10727641,2
+vividtime,10727641,4
+SuddenDream,10727641,4
+YangIvan,10727641,4
+YangIvan,10727641,4
+zhangchipapa,10727641,5
+iadamlambert,10727641,3
+kloe_pan,10727641,3
+brosnail,10727641,4
+singlesinger,10727641,4
+AndyH,10727641,4
+3667311,10727641,5
+dana111111,10727641,4
+uuooioi,10727641,5
+53636341,10727641,4
+38778496,10727641,-1
+66230509,10727641,3
+Pm_wanderlust,10727641,4
+72170846,10727641,3
+ILWTFT,10727641,4
+sisilovechoco,10727641,3
+2515260,10727641,3
+oliviaorsino,10727641,4
+2044636,10727641,4
+44509877,10727641,4
+93202185,10727641,4
+126152053,10727641,3
+4698243,10727641,4
+53981944,10727641,3
+shooting_woo,10727641,3
+17433771,10727641,4
+63571575,10727641,3
+69122615,10727641,5
+runawaysleepful,10727641,4
+yrftx,10727641,3
+58865216,10727641,4
+spectretown,10727641,4
+78455570,10727641,4
+shireenzhu,10727641,3
+lvchencf,10727641,4
+startalker,10727641,4
+51923237,10727641,4
+4640924,10727641,4
+zhangcoolhaas,10727641,3
+57149541,10727641,3
+hanzhang9037,10727641,3
+66385263,10727641,5
+echorus-walker,10727641,3
+58335145,10727641,4
+kidpt,10727641,4
+35519663,10727641,5
+aicbgyihai,10727641,4
+62992709,10727641,5
+Silencege,10727641,3
+ls_-ltr,10727641,-1
+arcueid,10727641,4
+vicky1115,10727641,3
+9623777,10727641,4
+afreetsophia,10727641,4
+12125155,10727641,5
+4224404,10727641,5
+88539374,10727641,4
+shuishuidream,10727641,3
+eileen_cheung,10727641,4
+124833218,10727641,3
+57892747,10727641,4
+82274459,10727641,5
+camia,10727641,5
+126825775,10727641,5
+SWASNY,10727641,4
+59864726,10727641,4
+3823320,10727641,5
+87857918,10727641,3
+sherry123,10727641,5
+bladeboy,10727641,3
+lihouyuan,10727641,4
+47587724,10727641,5
+ainme,10727641,4
+annieangel,10727641,4
+2738218,10727641,4
+31983093,10727641,5
+bobohan,10727641,2
+wangchenmoji,10727641,4
+hyuk35zm,10727641,4
+irrisawu,10727641,4
+niiyaaaaa,10727641,5
+luvis1499,10727641,3
+2139346,10727641,4
+48296036,10727641,5
+TokyoRight,10727641,4
+55882161,10727641,5
+56198749,10727641,4
+2548730,10727641,5
+wolverine_c,10727641,4
+angelababy_,10727641,4
+1668414,10727641,4
+61741541,10727641,4
+richer725,10727641,5
+playon,10727641,4
+frankxiafan,10727641,4
+53652913,10727641,5
+raingong,10727641,-1
+52163063,10727641,3
+95626875,10727641,5
+69277440,10727641,5
+3422611,10727641,4
+68705444,10727641,3
+47591131,10727641,-1
+buzzsunny,10727641,5
+69079998,10727641,5
+zhanghaoruo,10727641,4
+39234011,10727641,3
+36768577,10727641,-1
+3812836,10727641,5
+37589827,10727641,4
+NarcissusMomo,10727641,3
+73545042,10727641,4
+huoguo,10727641,5
+cfqjw,10727641,5
+93372123,10727641,4
+52791114,10727641,4
+3588360,10727641,-1
+rainbow-fish,10727641,-1
+81404706,10727641,4
+LilHayah,10727641,5
+1860311,10727641,4
+8490514,10727641,4
+1725577,10727641,3
+iliuweiming,10727641,4
+1811474,10727641,5
+tkk1997,10727641,4
+56243256,10727641,5
+70742333,10727641,4
+Lynnli,10727641,4
+1454015,10727641,4
+travelaway,10727641,5
+34186094,10727641,-1
+moi.s,10727641,4
+1861275,10727641,4
+74301144,10727641,4
+1149126,10727641,3
+41334510,10727641,4
+25865463,10727641,3
+66431238,10727641,4
+the-lake-house,10727641,4
+66161914,10727641,4
+echodtatu,10727641,5
+2213510,10727641,3
+120913568,10727641,4
+siyunxp,10727641,3
+35403224,10727641,-1
+Cathybebrave,10727641,3
+91905286,10727641,5
+vacuity,10727641,4
+framtid,10727641,3
+13038312,10727641,4
+aragakki,10727641,4
+46919543,10727641,4
+48568251,10727641,5
+44777109,10727641,4
+45446265,10727641,4
+47911343,10727641,4
+4057118,10727641,3
+30961553,10727641,4
+pc27149,10727641,5
+57416285,10727641,5
+jacobgao,10727641,4
+26629130,10727641,5
+BeDying,10727641,3
+ohterri,10727641,3
+45864291,10727641,3
+winmaxangle,10727641,3
+82836529,10727641,4
+73828343,10727641,4
+NinevehQ,10727641,3
+france_lj,10727641,4
+lizlee0601,10727641,4
+64702674,10727641,4
+70308764,10727641,5
+87495306,10727641,4
+huoguohuoguo,10727641,5
+CraigDaw,10727641,3
+wanglinfei,10727641,4
+64207251,10727641,5
+81902764,10727641,4
+amberose,10727641,3
+61955471,10727641,5
+MentalDisorder,10727641,3
+52489469,10727641,5
+raindawn,10727641,4
+64571969,10727641,3
+48816171,10727641,3
+47713342,10727641,4
+60544607,10727641,5
+51689962,10727641,4
+xiaolanhou,10727641,4
+jiushitime,10727641,5
+60788989,10727641,3
+zmiya,10727641,4
+liuzhe821,10727641,4
+pinkkumo,10727641,4
+Sophieless,10727641,4
+37470705,10727641,5
+caimengya,10727641,-1
+35158141,10727641,3
+Ray_W,10727641,4
+49877723,10727641,5
+hudodo0314,10727641,-1
+xiaofangma,10727641,4
+42862890,10727641,3
+65239324,10727641,4
+16237835,10727641,3
+czhou,10727641,5
+110752603,10727641,3
+lilylillylillie,10727641,3
+neptunetulip,10727641,4
+PHLucy,10727641,3
+58701318,10727641,4
+45012265,10727641,4
+123288101,10727641,4
+anbox,10727641,4
+Slovekame,10727641,4
+janeythai,10727641,4
+61448696,10727641,3
+fluffycat,10727641,5
+40537905,10727641,5
+abysselysion,10727641,4
+51342796,10727641,4
+53609992,10727641,5
+3527526,10727641,3
+1459581,10727641,4
+fulingke,10727641,4
+44851952,10727641,3
+65595818,10727641,4
+iris59,10727641,4
+118862756,10727641,4
+ThomasMore,10727641,2
+46340614,10727641,3
+acphoenix,10727641,4
+iuhoay,10727641,4
+vesperxu,10727641,-1
+samsadhu,10727641,5
+2605445,10727641,5
+Baronera,10727641,4
+4191076,10727641,4
+lianhuaroad,10727641,-1
+Hunter2046,10727641,4
+dirtywest,10727641,4
+qzwang,10727641,5
+41664547,10727641,4
+31788712,10727641,4
+129131502,10727641,5
+Gmosquito,10727641,4
+departed_,10727641,5
+130104294,10727641,5
+iisakura,10727641,3
+46856850,10727641,4
+4340710,10727641,3
+1740474,10727641,4
+104658411,10727641,5
+55321453,10727641,4
+ryod,10727641,4
+3409499,10727641,5
+67331748,10727641,3
+67331748,10727641,3
+69172097,10727641,4
+sanzanglx,10727641,3
+dick8045,10727641,4
+annalotory,10727641,5
+Wendyjiang,10727641,4
+tezuka15,10727641,3
+orangeT,10727641,3
+holicjack,10727641,5
+51974103,10727641,3
+80634044,10727641,5
+82643561,10727641,4
+34968205,10727641,3
+1978997,10727641,4
+felili,10727641,5
+ryez,10727641,3
+muyi9,10727641,4
+diudiu0802,10727641,4
+xweiway,10727641,5
+40977982,10727641,4
+77905933,10727641,4
+orry-lee,10727641,4
+1380354,10727641,4
+millayQ,10727641,4
+yongzou,10727641,5
+3512026,10727641,4
+imbella,10727641,4
+guiqiwuyu,10727641,3
+122804233,10727641,4
+Rosier,10727641,4
+irafighting,10727641,5
+1752075,10727641,-1
+tiffanyqiang,10727641,4
+93294169,10727641,5
+keyilijie,10727641,4
+theflyingjamie,10727641,5
+xiaowuchao,10727641,3
+50552390,10727641,3
+lst_lovetvxq,10727641,3
+35595189,10727641,4
+45781179,10727641,4
+56411907,10727641,3
+51393119,10727641,4
+53886643,10727641,5
+virlee,10727641,5
+seasonkiddo,10727641,4
+2196034,10727641,3
+128773519,10727641,5
+50648969,10727641,5
+sususuya,10727641,4
+50255660,10727641,4
+57990843,10727641,4
+47448262,10727641,4
+wotaomei,10727641,5
+24598372,10727641,4
+yzx_901215,10727641,2
+70129406,10727641,5
+Lan_momo,10727641,2
+sugushome,10727641,4
+58056490,10727641,2
+shunong,10727641,4
+1817565,10727641,-1
+52523559,10727641,4
+49791962,10727641,4
+45642222,10727641,5
+131057617,10727641,4
+53463691,10727641,3
+68775691,10727641,4
+53661945,10727641,3
+maclauring,10727641,5
+IvyGiggs,10727641,4
+kazutoshi,10727641,4
+3219666,10727641,5
+1536149,10727641,5
+47946624,10727641,4
+47874382,10727641,3
+xuqianxun,10727641,3
+jiangjiang326,10727641,4
+melon_guo,10727641,4
+wateralong,10727641,4
+14277787,10727641,3
+Christina63,10727641,5
+28726499,10727641,4
+saraxia33,10727641,4
+annow,10727641,3
+Frankyooo,10727641,5
+4847438,10727641,3
+57081822,10727641,3
+55364280,10727641,4
+LOVEyuduoduo,10727641,3
+chassit,10727641,5
+timothy89,10727641,4
+54875370,10727641,4
+qiusibaby,10727641,4
+78487387,10727641,3
+YiquigZhao,10727641,4
+70277575,10727641,4
+2350127,10727641,5
+43794729,10727641,5
+62124559,10727641,5
+46258432,10727641,4
+rav4ever,10727641,5
+hwashever,10727641,2
+hhriver,10727641,4
+akizhan,10727641,3
+46482350,10727641,4
+73403895,10727641,4
+62588625,10727641,4
+64465647,10727641,5
+paulineku,10727641,4
+yaffy,10727641,5
+crystalloid,10727641,3
+45251073,10727641,4
+120500737,10727641,4
+emmadoudou,10727641,4
+58498649,10727641,4
+sixiaoshui,10727641,-1
+plebeian423,10727641,4
+72166467,10727641,4
+llefan,10727641,3
+52866645,10727641,3
+4116226,10727641,3
+102030240,10727641,-1
+56013791,10727641,3
+pennylueng,10727641,4
+61268751,10727641,4
+78907182,10727641,3
+3464738,10727641,5
+jiayi6616,10727641,3
+57001973,10727641,5
+Amiesays,10727641,5
+fayi77,10727641,5
+49902009,10727641,4
+96044338,10727641,4
+1184336,10727641,4
+christinaliu,10727641,4
+yc_richard,10727641,5
+queeniehan,10727641,5
+ichimarumidori,10727641,4
+91426543,10727641,5
+132224795,10727641,5
+56658377,10727641,5
+redeyeski,10727641,4
+paco,10727641,4
+102014161,10727641,3
+43122192,10727641,5
+6846145,10727641,3
+128917939,10727641,4
+47979130,10727641,-1
+alcat,10727641,5
+xiaoyouhun,10727641,-1
+121861331,10727641,4
+passerby2,10727641,3
+FTY364002361,10727641,4
+Julia_Queen,10727641,4
+2275057,10727641,-1
+50293215,10727641,4
+52161075,10727641,4
+para77,10727641,-1
+eaufavor,10727641,3
+quriola,10727641,4
+liszt_pp,10727641,5
+treeplanting,10727641,5
+102941926,10727641,4
+shinyeel,10727641,3
+4350982,10727641,4
+32187017,10727641,4
+jabriel90,10727641,4
+3938082,10727641,3
+45794051,10727641,5
+lily46639507,10727641,4
+iConan,10727641,4
+rickycc,10727641,4
+2700292,10727641,3
+43602749,10727641,4
+kekechan,10727641,4
+killastrawberry,10727641,4
+snowbabe,10727641,3
+4200201,10727641,3
+2924921,10727641,3
+fallwater,10727641,4
+mayting,10727641,4
+gl56770978,10727641,5
+63530647,10727641,4
+49577718,10727641,5
+Nolicier,10727641,-1
+3673640,10727641,4
+lizandliz,10727641,4
+82408935,10727641,3
+sundayikel,10727641,-1
+desmond1982,10727641,4
+63272246,10727641,4
+minus16,10727641,5
+47612067,10727641,4
+59894468,10727641,4
+120774684,10727641,5
+shinyhjx,10727641,4
+119325282,10727641,2
+92231788,10727641,4
+52481154,10727641,4
+3007033,10727641,-1
+fisaco,10727641,4
+msghost,10727641,5
+54603413,10727641,3
+mryanwoo,10727641,3
+Littlesj,10727641,2
+70862713,10727641,5
+29211262,10727641,3
+49842997,10727641,5
+urielwang,10727641,4
+100013080,10727641,4
+40303756,10727641,4
+Sherlock.B,10727641,4
+2744950,10727641,3
+xiaoluohao,10727641,4
+48761994,10727641,3
+52467809,10727641,-1
+4722347,10727641,3
+ajiuyo,10727641,4
+35645675,10727641,4
+4649236,10727641,4
+49730004,10727641,4
+xiao__F,10727641,4
+gmrxfx,10727641,4
+leeyizuo,10727641,5
+49407192,10727641,5
+jianghucrab,10727641,4
+giseleYAO,10727641,4
+teapot,10727641,4
+64980477,10727641,4
+1632116,10727641,4
+Mflower,10727641,4
+Jayne_pig,10727641,5
+63901336,10727641,5
+shiningkiss85,10727641,5
+4081670,10727641,4
+iamwendy,10727641,4
+Sammyzheng,10727641,3
+52350910,10727641,4
+khalilfongmlg,10727641,-1
+icejuicy,10727641,4
+51442166,10727641,3
+jiangziwen,10727641,4
+102902864,10727641,5
+78092587,10727641,4
+TitanNing,10727641,5
+HIDING.,10727641,3
+75209751,10727641,4
+50109761,10727641,4
+51679757,10727641,5
+cjsunsun,10727641,4
+57290714,10727641,4
+yeemin,10727641,-1
+NicoleYuyijun,10727641,5
+hengyunyixiang,10727641,3
+avall0n,10727641,3
+52227138,10727641,5
+onlysunkk,10727641,4
+64137441,10727641,4
+75270004,10727641,4
+neptunekevin,10727641,4
+63568126,10727641,4
+46828129,10727641,3
+4042513,10727641,4
+hhhhhhhhhhhh,10727641,5
+128799458,10727641,4
+samii,10727641,4
+48316305,10727641,3
+57416043,10727641,3
+56543116,10727641,5
+lotuskate,10727641,5
+4299219,10727641,1
+aginny,10727641,2
+confidants,10727641,4
+lynnwhite,10727641,4
+53288868,10727641,-1
+4266952,10727641,4
+2377434,10727641,4
+89972315,10727641,3
+vicness,10727641,5
+33328876,10727641,4
+wayneZ_z,10727641,2
+113050393,10727641,3
+morningormoenig,10727641,4
+linz94,10727641,-1
+46476890,10727641,-1
+57260239,10727641,4
+pkughost,10727641,3
+fairyx,10727641,5
+58499826,10727641,5
+49119255,10727641,2
+65240470,10727641,3
+zhangyue88,10727641,4
+lesile,10727641,4
+54614951,10727641,5
+46221574,10727641,4
+34174788,10727641,-1
+olivia_wwj,10727641,3
+30758845,10727641,5
+2629223,10727641,4
+orchid926,10727641,5
+2756636,10727641,3
+yukinari999,10727641,3
+missbean1993,10727641,4
+fasshinetti,10727641,5
+48560904,10727641,3
+Ginkgo,10727641,4
+48066975,10727641,5
+aceking0505,10727641,3
+Liluw,10727641,3
+Ikergzy,10727641,5
+liweiheng,10727641,5
+glorymanutd,10727641,4
+idorothy,10727641,4
+90601363,10727641,1
+danchenxi,10727641,3
+39937848,10727641,4
+35963638,10727641,5
+das_parfum,10727641,4
+cbw506021,10727641,4
+52375179,10727641,3
+sevenready,10727641,4
+lixiaoshall,10727641,4
+1274922,10727641,5
+estela_0916,10727641,3
+imCheryl,10727641,4
+71053452,10727641,4
+catlovesbrad,10727641,4
+qpdbd,10727641,5
+tzhou730,10727641,3
+vkinoko,10727641,4
+derekderek,10727641,4
+3170426,10727641,3
+2438329,10727641,5
+54982306,10727641,5
+2013478,10727641,4
+scofieldx,10727641,4
+sable_in_red,10727641,4
+48167750,10727641,3
+52705401,10727641,5
+43517333,10727641,5
+84538815,10727641,4
+Ciamy,10727641,5
+42939713,10727641,4
+jamesmoriartied,10727641,5
+Candy_Can,10727641,3
+6023961,10727641,4
+21334043,10727641,3
+45641492,10727641,4
+97786845,10727641,4
+123004306,10727641,4
+71928003,10727641,3
+lihenghui,10727641,3
+66819479,10727641,4
+freggieg,10727641,5
+rudygiraffe,10727641,4
+47675907,10727641,5
+dasyure,10727641,4
+Maniacwild,10727641,3
+49836065,10727641,3
+whateverwbwb,10727641,4
+51833370,10727641,5
+41684888,10727641,4
+lnmeng_9823,10727641,-1
+oncemultiverse,10727641,3
+43802399,10727641,4
+4406180,10727641,5
+lqr,10727641,3
+45345873,10727641,4
+chenxijessica,10727641,4
+justsay,10727641,4
+26921092,10727641,-1
+susiewater,10727641,4
+2913201,10727641,5
+21032255,10727641,4
+47253727,10727641,4
+Aubrey4S,10727641,4
+34407636,10727641,4
+2632873,10727641,4
+fullofvitamin,10727641,3
+moneybear,10727641,3
+derivatives,10727641,4
+50887625,10727641,4
+cryc,10727641,4
+68974440,10727641,3
+joyyoung19,10727641,3
+50583134,10727641,5
+etsbin12,10727641,4
+61246082,10727641,4
+ILY_XX,10727641,4
+50144933,10727641,4
+the_last_leaf,10727641,3
+42765442,10727641,4
+60018944,10727641,3
+JollyMah,10727641,3
+54192615,10727641,3
+nemooO,10727641,3
+49011902,10727641,4
+4063991,10727641,4
+58179920,10727641,4
+JaneEvans,10727641,3
+Aaronyy,10727641,4
+sosansosan,10727641,5
+chinenco,10727641,5
+39047335,10727641,4
+XinZee,10727641,3
+shine531,10727641,-1
+44159130,10727641,5
+4775119,10727641,4
+26039197,10727641,4
+threeyears,10727641,4
+cheeringo,10727641,4
+thoughts,10727641,5
+2491680,10727641,3
+dydyd_douban,10727641,3
+4353001,10727641,3
+wusequanwei,10727641,4
+liseahy,10727641,5
+GreatStarSeven,10727641,4
+60962941,10727641,4
+60962941,10727641,4
+Eataix,10727641,3
+Chliztian,10727641,3
+38955500,10727641,4
+yangyi52,10727641,4
+52374368,10727641,5
+128165523,10727641,3
+dearabbyabby,10727641,3
+79571152,10727641,4
+hearta,10727641,4
+15304383,10727641,4
+siupak,10727641,5
+114014303,10727641,4
+melancholyhill,10727641,3
+51622953,10727641,4
+danielgillies,10727641,5
+mengdalian,10727641,5
+nanasun,10727641,4
+80206205,10727641,4
+80307859,10727641,3
+80307859,10727641,3
+39255754,10727641,4
+34486562,10727641,5
+26441091,10727641,4
+finsy,10727641,5
+36049101,10727641,4
+34434303,10727641,4
+li2007,10727641,-1
+kangtadlt,10727641,4
+45208551,10727641,4
+misscellophane,10727641,3
+superegg.,10727641,4
+1872169,10727641,3
+moyuxi,10727641,3
+66652458,10727641,5
+66193299,10727641,5
+15112169,10727641,4
+29544236,10727641,5
+48963798,10727641,5
+97249280,10727641,4
+54607623,10727641,3
+104092639,10727641,5
+2756490,10727641,4
+84457214,10727641,4
+whatsuplaura,10727641,3
+catherine_koo,10727641,4
+128421145,10727641,4
+cristinaburke,10727641,3
+56638281,10727641,4
+2646843,10727641,3
+120281173,10727641,3
+sunshine2.0,10727641,4
+51411876,10727641,4
+aries23,10727641,3
+dingtian911,10727641,3
+ElephantBoy,10727641,4
+veracin,10727641,3
+17337672,10727641,5
+octobercloud,10727641,4
+freda_thx,10727641,3
+63041378,10727641,5
+neillee312,10727641,4
+indigo90,10727641,4
+MihoKomatsu,10727641,4
+yikoyumisa,10727641,5
+ioaxis,10727641,4
+luckyanc,10727641,5
+61511872,10727641,4
+49441067,10727641,5
+peterzhou001,10727641,2
+48795051,10727641,3
+39660567,10727641,4
+kenmark,10727641,4
+37009398,10727641,3
+zy421,10727641,4
+48160969,10727641,3
+florenceran,10727641,5
+shaoyi,10727641,3
+2440792,10727641,5
+57794823,10727641,4
+YeonParadise,10727641,4
+49367829,10727641,4
+G--er,10727641,3
+surishaw,10727641,5
+entelechie,10727641,5
+felixfelicis,10727641,4
+swimming7891,10727641,4
+wenyuan_li,10727641,3
+zzy.ll,10727641,4
+silverslivers,10727641,4
+superseahell,10727641,4
+55390748,10727641,3
+interskh,10727641,4
+52523145,10727641,3
+83694969,10727641,5
+66189087,10727641,5
+RIO-Teamradio,10727641,4
+echogame,10727641,4
+jean,10727641,4
+42948156,10727641,3
+55832458,10727641,4
+56454388,10727641,4
+37599552,10727641,3
+34722246,10727641,4
+2601748,10727641,3
+mirrorad,10727641,4
+sunyiqing,10727641,4
+2199302,10727641,4
+didijia,10727641,5
+wowcecilia,10727641,3
+45733786,10727641,5
+60101934,10727641,4
+gwyting,10727641,4
+giggleli,10727641,3
+godisseven,10727641,4
+truthyfarr,10727641,3
+linkisterock,10727641,3
+vickychen110,10727641,4
+126437677,10727641,4
+60577747,10727641,3
+46327229,10727641,3
+feixuanqiwu,10727641,4
+zhuiyii,10727641,4
+nianmo,10727641,4
+tmbbf,10727641,3
+42682850,10727641,2
+79599953,10727641,5
+80289474,10727641,5
+shodoco,10727641,5
+queeniepku,10727641,-1
+beatricehzp,10727641,5
+kusanoyui,10727641,4
+119626702,10727641,5
+24725856,10727641,4
+2824723,10727641,3
+63218602,10727641,3
+AndreBFSU,10727641,3
+Emoie.,10727641,-1
+1811212,10727641,4
+shadow_break,10727641,3
+Dependon,10727641,4
+cactusnl,10727641,5
+rena0115,10727641,4
+78588214,10727641,4
+56488690,10727641,4
+shuaiwhu,10727641,3
+Shyt_summer,10727641,-1
+38774242,10727641,3
+kellangamp,10727641,4
+30725262,10727641,3
+eva1221,10727641,3
+IIIiiireneeeeee,10727641,4
+3080009,10727641,4
+28288520,10727641,4
+56587180,10727641,4
+halfling,10727641,4
+troublemakerjoy,10727641,4
+Coolslight,10727641,3
+2226586,10727641,5
+50952518,10727641,3
+magicbin,10727641,5
+yanglotti,10727641,4
+71229527,10727641,4
+solanachen,10727641,3
+46118793,10727641,5
+violetljj,10727641,4
+neptune_smile,10727641,5
+nknymphet,10727641,4
+83761077,10727641,4
+stella0122,10727641,3
+56789007,10727641,3
+ephemerality,10727641,3
+87222005,10727641,4
+Artystayshungry,10727641,3
+49901679,10727641,3
+78231413,10727641,4
+cocageng,10727641,3
+mutouchuangzi,10727641,4
+honey_pig,10727641,5
+ss25,10727641,4
+77459141,10727641,5
+vigshane,10727641,5
+58409936,10727641,4
+newyow,10727641,3
+jkk0620,10727641,5
+zuochangyu,10727641,4
+jisixue0111,10727641,3
+132358159,10727641,5
+kikkki,10727641,4
+108431827,10727641,5
+ericdo,10727641,4
+131838639,10727641,4
+x2338x,10727641,4
+stuarth,10727641,5
+78957039,10727641,4
+49147216,10727641,5
+47005130,10727641,4
+jiajiazhou,10727641,5
+14747203,10727641,4
+43241733,10727641,4
+41277351,10727641,4
+66749335,10727641,4
+psyche213,10727641,4
+endzz,10727641,4
+yynick,10727641,4
+15263432,10727641,4
+93217012,10727641,4
+angelstone,10727641,3
+3051483,10727641,3
+Greenwicher,10727641,3
+Wristcut,10727641,3
+46372944,10727641,3
+hello.louis,10727641,5
+71038565,10727641,3
+84782971,10727641,3
+whateverrr,10727641,4
+103196865,10727641,4
+digdug,10727641,5
+59794185,10727641,3
+yanrutaoli,10727641,4
+1496728,10727641,4
+bluebamboo,10727641,3
+sunlaomeng,10727641,3
+78977766,10727641,5
+47681496,10727641,4
+fengyalan,10727641,4
+68696664,10727641,4
+31757691,10727641,5
+ncfom,10727641,-1
+HowardRoark,10727641,4
+zhecx,10727641,4
+insomnia,10727641,4
+starrynite,10727641,5
+D-Lcat,10727641,3
+46445015,10727641,3
+PeterChe1990,10727641,4
+43752216,10727641,3
+1225917,10727641,4
+C61497775,10727641,3
+64844513,10727641,5
+KayeFiennes,10727641,-1
+YOKIII,10727641,5
+Serrya,10727641,5
+49576668,10727641,3
+44861342,10727641,5
+2073049,10727641,4
+cinderella23,10727641,4
+Clarke,10727641,2
+fusiyuan2010,10727641,3
+mistycheney,10727641,4
+4904166,10727641,4
+ERIKAZU,10727641,4
+nielu,10727641,4
+123515572,10727641,4
+53990289,10727641,5
+75462954,10727641,4
+Milckhy,10727641,4
+seclo,10727641,3
+45845721,10727641,4
+baywreath,10727641,4
+watly,10727641,3
+cleverswan,10727641,3
+44214335,10727641,4
+31818291,10727641,-1
+Claire1990,10727641,4
+3284948,10727641,4
+70239399,10727641,4
+cmhloveukulele,10727641,-1
+47311931,10727641,4
+24227243,10727641,5
+ET-Jac,10727641,4
+25276718,10727641,4
+2139539,10727641,4
+34922072,10727641,5
+2750410,10727641,4
+1941418,10727641,4
+49009055,10727641,2
+48938528,10727641,5
+Tensa,10727641,4
+4896156,10727641,4
+11189422,10727641,3
+49761291,10727641,3
+damon-l,10727641,4
+2135192,10727641,3
+w-libra,10727641,-1
+zouy1216,10727641,3
+kotony,10727641,4
+54278419,10727641,4
+47999352,10727641,4
+yeeeeeee,10727641,3
+Leslie221,10727641,4
+13263646,10727641,4
+jiajun14,10727641,4
+roy325,10727641,3
+4022317,10727641,3
+43824187,10727641,3
+heheloveu,10727641,5
+heidycat,10727641,4
+twocoldplay,10727641,4
+3658863,10727641,4
+balconynemo,10727641,3
+1223733,10727641,4
+freeeeeeee,10727641,4
+nevertori,10727641,3
+erhuyouxuan,10727641,3
+75242193,10727641,5
+billrain,10727641,3
+1284677,10727641,5
+aluol,10727641,4
+qixuelun,10727641,3
+remixchao,10727641,3
+styz,10727641,4
+119277789,10727641,3
+1528182,10727641,5
+45886049,10727641,4
+51367308,10727641,5
+thechamp,10727641,5
+55486023,10727641,5
+cleosa,10727641,4
+57407384,10727641,5
+maikocyan,10727641,4
+amethysts,10727641,3
+qianhaowu,10727641,5
+kaiserhl,10727641,1
+65417437,10727641,5
+1663187,10727641,3
+intransigence,10727641,3
+peri_yi,10727641,4
+68601720,10727641,5
+73919831,10727641,4
+41799258,10727641,4
+2220298,10727641,4
+clarehsu0203,10727641,4
+crazycathr,10727641,4
+3638500,10727641,3
+lisa-l,10727641,4
+4663105,10727641,4
+opheliauncle,10727641,3
+32934464,10727641,4
+maxyuan,10727641,4
+37296535,10727641,5
+charlottey,10727641,4
+dasyhiqiang,10727641,3
+108637207,10727641,5
+Morewhite,10727641,4
+shuchenxue,10727641,4
+1344334,10727641,4
+67843912,10727641,3
+kera2reelan,10727641,5
+37677418,10727641,4
+48407248,10727641,3
+54666689,10727641,4
+wzn,10727641,3
+rackylo,10727641,4
+34929495,10727641,2
+64277319,10727641,4
+53343838,10727641,4
+1159054,10727641,4
+cyeon,10727641,5
+chenchenchenhs,10727641,-1
+pigaret,10727641,4
+114500626,10727641,3
+ajiaclpk,10727641,3
+shanefirth,10727641,4
+32267845,10727641,4
+eversupersheep,10727641,3
+pluskid,10727641,5
+47995787,10727641,3
+74003656,10727641,4
+66237715,10727641,5
+43649189,10727641,3
+Miracle0616,10727641,4
+88890615,10727641,4
+imnothan,10727641,5
+63092398,10727641,5
+GinaJJ,10727641,4
+amhooo,10727641,3
+Teatalk,10727641,-1
+74629238,10727641,4
+Henry-Maugham,10727641,4
+51741700,10727641,5
+DonCorleone,10727641,3
+angelmagic,10727641,4
+wymanyeung34,10727641,-1
+waynema,10727641,2
+4023421,10727641,-1
+ssb,10727641,5
+4811269,10727641,4
+luluforever,10727641,5
+illwhite,10727641,4
+waterclouder,10727641,3
+33718263,10727641,4
+2200968,10727641,4
+hopllier,10727641,-1
+violajoe,10727641,4
+karrel,10727641,5
+jimmy47,10727641,4
+u-know17,10727641,4
+ZackorZac,10727641,4
+28359015,10727641,4
+lolopraying,10727641,4
+pinger87,10727641,5
+4305669,10727641,5
+who_knows,10727641,4
+aixiaoke,10727641,3
+ricy-rice,10727641,-1
+4347027,10727641,4
+60834753,10727641,3
+69065443,10727641,5
+4251957,10727641,-1
+R.Samsara,10727641,-1
+41949292,10727641,5
+papa_christmas,10727641,3
+71998007,10727641,5
+htshboy,10727641,4
+1636537,10727641,5
+kejinlong,10727641,3
+26545118,10727641,4
+53679520,10727641,4
+scarling,10727641,5
+fanddy,10727641,4
+dilv,10727641,4
+126849700,10727641,2
+sinbone,10727641,4
+COCOCOQUEEN,10727641,3
+JeffreyGavin,10727641,4
+63496676,10727641,4
+52744890,10727641,4
+3633183,10727641,4
+spondee,10727641,4
+lilymoonlight,10727641,5
+87542949,10727641,5
+skye1110,10727641,3
+be1103,10727641,5
+woshixuanzi,10727641,5
+SophiaCGuo,10727641,4
+hellominne,10727641,4
+bonnieliu0718,10727641,5
+ltracy,10727641,4
+maggielee818,10727641,4
+solli,10727641,4
+45887661,10727641,4
+miracle1025,10727641,3
+justineous,10727641,4
+jobinchow,10727641,5
+66057217,10727641,4
+3122796,10727641,4
+36905457,10727641,4
+bubblelam,10727641,4
+120541509,10727641,4
+app0571_com,10727641,1
+LilC,10727641,3
+petitejoie,10727641,5
+61503519,10727641,4
+28105351,10727641,4
+BethBubbly,10727641,4
+neverland4u,10727641,4
+queeenababy,10727641,5
+liaozhongchao,10727641,4
+winterjane,10727641,4
+like-a-star,10727641,5
+52655814,10727641,-1
+amelieho,10727641,4
+50452701,10727641,3
+43314025,10727641,4
+dingstyle,10727641,4
+ego-siting,10727641,-1
+Jira,10727641,4
+yupian,10727641,4
+kyd77,10727641,4
+kratos0008,10727641,4
+luluto,10727641,4
+lux1119,10727641,3
+MATTZ,10727641,5
+2614108,10727641,4
+16251580,10727641,5
+elainemumu,10727641,4
+jomey,10727641,4
+39415945,10727641,4
+28344177,10727641,5
+rickydna,10727641,4
+3678908,10727641,4
+dixueyaxiaojie,10727641,5
+shushibi,10727641,4
+nathaneil,10727641,4
+62400422,10727641,4
+yupz,10727641,3
+wutianxiang,10727641,4
+34926165,10727641,4
+57774716,10727641,3
+10503526,10727641,5
+50205798,10727641,5
+41474694,10727641,5
+econique,10727641,4
+cold24,10727641,5
+LAURANOWHERE,10727641,3
+Renovatio84,10727641,4
+127948092,10727641,3
+rantao,10727641,4
+79425472,10727641,5
+Sabire,10727641,5
+foreverlethe,10727641,-1
+lr777,10727641,4
+sylviachan56,10727641,5
+janice5680,10727641,4
+43289725,10727641,4
+38560086,10727641,5
+58018487,10727641,5
+tinakirakira,10727641,4
+55365789,10727641,5
+47941742,10727641,4
+2121794,10727641,4
+chenyingxing,10727641,4
+1998991,10727641,5
+63706315,10727641,4
+2640900,10727641,5
+ann-in-april,10727641,5
+Olivia4real,10727641,3
+31622009,10727641,4
+99894123,10727641,3
+Zeeyoung,10727641,3
+wywu1990,10727641,4
+2209141,10727641,4
+Rinyee,10727641,2
+63424113,10727641,4
+comebabycome,10727641,4
+peilic1020,10727641,4
+sigma_root,10727641,5
+53002549,10727641,3
+scorpiogirljill,10727641,5
+Weeeeeeeeeeds,10727641,2
+45623690,10727641,3
+50044721,10727641,4
+mr81,10727641,3
+pumpkin_s,10727641,4
+WizardLee,10727641,4
+4860409,10727641,5
+4161702,10727641,5
+87275356,10727641,5
+fairyluohua,10727641,5
+44725365,10727641,3
+3857479,10727641,3
+26641956,10727641,4
+31602666,10727641,4
+whalesong,10727641,3
+3862249,10727641,3
+offers,10727641,2
+pipituliuliu,10727641,-1
+irisli777,10727641,5
+87559103,10727641,4
+60073024,10727641,5
+lulu_p.p,10727641,5
+46375333,10727641,3
+2092985,10727641,4
+lesleyxu,10727641,4
+mrnerd,10727641,5
+53447982,10727641,5
+2763596,10727641,4
+steamnoob,10727641,3
+56143952,10727641,-1
+52403253,10727641,4
+IAMVILLIAN,10727641,4
+bobharris,10727641,4
+38651346,10727641,4
+2413899,10727641,3
+56038290,10727641,5
+47354119,10727641,5
+50219893,10727641,3
+2309931,10727641,4
+65758167,10727641,4
+CatPrince,10727641,4
+faye2,10727641,4
+kekeximi,10727641,4
+callus,10727641,2
+47443720,10727641,5
+4407883,10727641,3
+julia_duan,10727641,4
+appreciation,10727641,4
+64929024,10727641,4
+joarieas,10727641,3
+kouhualin,10727641,3
+64455771,10727641,3
+ringcarter,10727641,5
+71381094,10727641,4
+vplumage,10727641,4
+80936991,10727641,3
+zy236498319,10727641,4
+hanaray,10727641,5
+50484741,10727641,5
+84741817,10727641,3
+littlepinkbang7,10727641,5
+toby_7,10727641,2
+Sh1neYuan,10727641,4
+34575902,10727641,3
+10034546,10727641,4
+goeatshit,10727641,4
+50112413,10727641,4
+edward1988,10727641,3
+63140304,10727641,4
+abcclk,10727641,4
+79085491,10727641,4
+slyLeopard,10727641,4
+35876869,10727641,5
+52536542,10727641,4
+4680837,10727641,4
+4320404,10727641,3
+122532976,10727641,4
+NMary,10727641,4
+nodane,10727641,4
+cynclarac,10727641,5
+harrymoon,10727641,5
+48554628,10727641,3
+33042240,10727641,4
+renyouy,10727641,3
+xw0525,10727641,-1
+freddy_xu,10727641,4
+sunshinezz1991,10727641,4
+5755075,10727641,5
+54208229,10727641,4
+45244208,10727641,4
+zoelovepuppy,10727641,4
+21197410,10727641,3
+wsqabc,10727641,4
+rianneli,10727641,-1
+29973964,10727641,5
+Pincent,10727641,4
+duwenjun,10727641,4
+se7enbao,10727641,3
+shanjuan,10727641,4
+elwingt,10727641,4
+missdepp,10727641,4
+VVIVXIV,10727641,4
+DuckLee,10727641,4
+58036782,10727641,4
+lingnafox,10727641,4
+50566666,10727641,4
+um_banana,10727641,4
+1752320,10727641,4
+jasontodd,10727641,4
+2307180,10727641,4
+44359602,10727641,4
+someoneunknown,10727641,3
+YuRAY,10727641,4
+missdonglian,10727641,3
+65642489,10727641,4
+44159174,10727641,3
+leahahaha,10727641,4
+3765272,10727641,-1
+vacancy_,10727641,3
+59940868,10727641,3
+52800878,10727641,5
+sindyfan,10727641,5
+z275,10727641,5
+shiyun.sherry,10727641,4
+sophie1900,10727641,3
+45432670,10727641,-1
+biqicynthia,10727641,5
+58689768,10727641,5
+44193122,10727641,3
+44155683,10727641,5
+fenglimuren,10727641,3
+44140949,10727641,2
+54507832,10727641,4
+1314672,10727641,4
+52023451,10727641,4
+80063534,10727641,4
+cherry0908,10727641,3
+15854310,10727641,4
+ClockSheepZ,10727641,4
+64780091,10727641,4
+73122939,10727641,5
+thistle_,10727641,3
+44622653,10727641,3
+4549541,10727641,4
+guojiangdou,10727641,5
+fishy,10727641,3
+73669959,10727641,4
+61927827,10727641,4
+rouroudong,10727641,3
+shinesday,10727641,5
+edwardpanda,10727641,5
+horace_j_lz,10727641,5
+48112826,10727641,3
+cinkie,10727641,4
+Nenya,10727641,3
+fengqingyuexia,10727641,4
+3148214,10727641,-1
+ET.papillon,10727641,3
+straw_here,10727641,4
+2039887,10727641,4
+45488064,10727641,4
+4457496,10727641,4
+2784323,10727641,4
+imedi,10727641,2
+procxu,10727641,4
+49583557,10727641,4
+ninoliu,10727641,4
+46341101,10727641,3
+kid_jianyi,10727641,3
+wohui1989,10727641,5
+3894700,10727641,4
+monkeycupl,10727641,5
+49776648,10727641,2
+59101445,10727641,4
+44468738,10727641,5
+60910402,10727641,4
+be-my-mirror,10727641,4
+2979840,10727641,4
+oooweirooo,10727641,3
+nathanyun,10727641,4
+76393487,10727641,5
+roseforu,10727641,4
+3187313,10727641,4
+skatarist,10727641,5
+2757733,10727641,4
+3374391,10727641,5
+52675266,10727641,3
+28400267,10727641,3
+46026235,10727641,4
+43260783,10727641,3
+Iamwanghaha,10727641,5
+47689906,10727641,3
+80722428,10727641,4
+alacrity516,10727641,3
+love_sam,10727641,4
+50088258,10727641,5
+Tavico,10727641,4
+3731360,10727641,4
+yinni1990,10727641,5
+50545656,10727641,3
+75621811,10727641,4
+vivamian,10727641,4
+wandersu,10727641,4
+niubinuo,10727641,3
+puppy22,10727641,5
+manyandandan,10727641,4
+65414018,10727641,5
+46920813,10727641,5
+brucetown,10727641,4
+59774628,10727641,4
+guoyandao,10727641,3
+woaiwudaokou,10727641,5
+purepureheart,10727641,4
+75215757,10727641,4
+summer_island,10727641,3
+49733419,10727641,5
+ellie911,10727641,2
+ColinMorgan,10727641,4
+44514288,10727641,4
+87527536,10727641,4
+sunnykisskins,10727641,4
+hengacheung,10727641,4
+win_ter_bells,10727641,4
+2701375,10727641,3
+59021120,10727641,4
+alcudish,10727641,4
+79695986,10727641,4
+liarelaw,10727641,3
+46810238,10727641,3
+qwishu,10727641,4
+84217681,10727641,3
+58287082,10727641,-1
+seancheung,10727641,4
+lwl8823,10727641,4
+75902309,10727641,3
+kumhua,10727641,4
+59210685,10727641,4
+41555500,10727641,4
+zhenjiananbian,10727641,5
+dearhana,10727641,3
+sebastiankudo,10727641,4
+46911720,10727641,4
+joyeblog,10727641,5
+runaway6161,10727641,4
+46919006,10727641,4
+43956642,10727641,3
+43473868,10727641,3
+Lancelot365,10727641,4
+vermouthsama,10727641,4
+slipingtime,10727641,4
+wlj2lhx,10727641,4
+4685727,10727641,4
+glassywitch,10727641,4
+85671125,10727641,3
+103619776,10727641,4
+38256965,10727641,2
+60348817,10727641,4
+2107434,10727641,4
+holyzach,10727641,5
+58448710,10727641,4
+45817845,10727641,3
+2381120,10727641,5
+8447509,10727641,5
+59236889,10727641,4
+3540441,10727641,3
+1477764,10727641,4
+shinjong,10727641,5
+shunicole,10727641,4
+PASSMEBY,10727641,4
+bimbo,10727641,4
+2248658,10727641,4
+114540686,10727641,5
+miama420,10727641,4
+adamyoung1518,10727641,3
+91484813,10727641,5
+belinda0717,10727641,4
+52046312,10727641,5
+LittleChong,10727641,4
+4471547,10727641,4
+lovingly,10727641,5
+cyrus_wong,10727641,4
+MOVIE--KO,10727641,3
+nildesperandum,10727641,3
+kevin918,10727641,4
+49669686,10727641,3
+weichuan,10727641,5
+deepsnow,10727641,5
+2349644,10727641,4
+4108269,10727641,3
+70159805,10727641,3
+56160592,10727641,3
+48258605,10727641,5
+2670612,10727641,4
+1555181,10727641,4
+63335454,10727641,5
+stevecarell,10727641,4
+Momo-at1615,10727641,4
+1383722,10727641,5
+nocturnelee,10727641,3
+57280159,10727641,5
+lcaesar,10727641,5
+68416685,10727641,5
+Sophie0401,10727641,4
+2862311,10727641,3
+che_yan,10727641,5
+61216437,10727641,5
+45665171,10727641,4
+46845668,10727641,3
+132218568,10727641,3
+58956224,10727641,4
+zhubonn,10727641,3
+yoshimi,10727641,3
+lihoru99,10727641,5
+58482756,10727641,5
+andyhaveadream,10727641,5
+75332568,10727641,5
+57436180,10727641,-1
+riricess,10727641,4
+moian,10727641,3
+ysding,10727641,5
+moradin,10727641,4
+heylucyliu,10727641,4
+78559485,10727641,4
+terry_f,10727641,4
+disy109,10727641,4
+53769343,10727641,4
+shadow1,10727641,5
+35967033,10727641,4
+128569967,10727641,4
+hwf254,10727641,5
+27560437,10727641,4
+59236586,10727641,5
+52724535,10727641,4
+SANDMANECW,10727641,5
+silencewong,10727641,3
+kobechen,10727641,3
+yidakefacaishu,10727641,5
+38854651,10727641,4
+97757646,10727641,4
+proband,10727641,4
+92580665,10727641,4
+12391728,10727641,4
+65398660,10727641,3
+sunnykatty,10727641,4
+yonghengyanggua,10727641,4
+guanjunyan,10727641,-1
+49863534,10727641,5
+30457423,10727641,5
+63422177,10727641,5
+69074281,10727641,4
+69074281,10727641,4
+130960542,10727641,4
+81160024,10727641,4
+MaxDing,10727641,4
+49294840,10727641,4
+51558823,10727641,4
+123474986,10727641,5
+57002877,10727641,5
+72169675,10727641,4
+fusiluo,10727641,5
+ryeon,10727641,3
+kaa77,10727641,4
+yr0109,10727641,4
+62894547,10727641,5
+52819229,10727641,4
+11542932,10727641,3
+69000298,10727641,3
+cecilia.eve,10727641,5
+51708467,10727641,3
+xiaoyusumu,10727641,5
+121418007,10727641,4
+131932102,10727641,4
+69388549,10727641,5
+2234264,10727641,3
+39122664,10727641,3
+4583369,10727641,3
+78954375,10727641,5
+Luciferre,10727641,5
+kelsangmetok,10727641,4
+26394259,10727641,4
+yangziyoko,10727641,5
+64741291,10727641,4
+77631133,10727641,4
+63011235,10727641,3
+hikarichin,10727641,3
+Solv,10727641,5
+89479516,10727641,5
+Snoopeacer,10727641,5
+hobbitkirsten,10727641,4
+62221399,10727641,4
+61426958,10727641,3
+emmalaw,10727641,4
+fnks,10727641,4
+65720816,10727641,5
+findeva,10727641,4
+souryu,10727641,3
+mearcher,10727641,4
+25314137,10727641,5
+67711452,10727641,4
+sueprince,10727641,4
+52628612,10727641,3
+nikubenki,10727641,4
+119559372,10727641,4
+septimals,10727641,3
+86714653,10727641,5
+52390566,10727641,5
+63797161,10727641,4
+26781077,10727641,5
+75418722,10727641,5
+lovea_ten,10727641,5
+wann_,10727641,3
+sea-lucky,10727641,3
+36185142,10727641,4
+48484472,10727641,5
+60808695,10727641,3
+Geraldine7,10727641,4
+wjiandan,10727641,4
+nicoyan,10727641,5
+Strangefamiliar,10727641,3
+47609007,10727641,4
+EosIcyGreen,10727641,4
+58110414,10727641,5
+summerholiday,10727641,4
+58741014,10727641,4
+94162680,10727641,4
+51488168,10727641,3
+79450598,10727641,3
+50492297,10727641,4
+67211309,10727641,5
+sophie-z,10727641,4
+53941925,10727641,4
+kxyyxk,10727641,3
+3870395,10727641,4
+thehours,10727641,4
+58249010,10727641,4
+60315776,10727641,5
+RicoCC,10727641,4
+avisj,10727641,4
+tidotuantuan,10727641,3
+meteora,10727641,5
+lululovexiah,10727641,-1
+84759549,10727641,4
+58305570,10727641,3
+3833842,10727641,5
+Mayk,10727641,3
+63614573,10727641,5
+buubu,10727641,3
+60349367,10727641,4
+chinesean,10727641,4
+53914537,10727641,4
+63090885,10727641,2
+pariseros,10727641,5
+48826965,10727641,4
+34305909,10727641,4
+59290832,10727641,4
+71985811,10727641,4
+52825921,10727641,3
+69311501,10727641,4
+52944852,10727641,5
+45164060,10727641,4
+2464453,10727641,4
+100153718,10727641,3
+81752466,10727641,4
+56339593,10727641,5
+Roy021,10727641,-1
+48269548,10727641,4
+114282416,10727641,5
+55598262,10727641,5
+83195287,10727641,4
+87609683,10727641,5
+122893858,10727641,4
+tiancaimu,10727641,3
+131278340,10727641,5
+2529003,10727641,4
+edisonme,10727641,4
+82766218,10727641,5
+JC921004,10727641,5
+yintianxiaozhu,10727641,4
+heming_way,10727641,5
+yochiro,10727641,4
+keningisgod,10727641,3
+68651338,10727641,4
+icyinvent,10727641,4
+weyal,10727641,4
+ILOVEMOVIES,10727641,4
+lee_way,10727641,5
+67083418,10727641,5
+50161437,10727641,5
+fs678,10727641,5
+momoroe,10727641,3
+treeman,10727641,4
+1131035,10727641,5
+Janny_blue,10727641,3
+semiyanyan,10727641,4
+nancyyan,10727641,4
+130608231,10727641,5
+zc1997,10727641,4
+87069723,10727641,4
+34674400,10727641,4
+115713999,10727641,5
+52828296,10727641,4
+51061132,10727641,4
+judy0420,10727641,4
+37160658,10727641,3
+64110275,10727641,5
+4420483,10727641,3
+53467195,10727641,4
+52512202,10727641,4
+97840419,10727641,3
+donglaixia,10727641,4
+39288960,10727641,4
+JazzJohnny,10727641,-1
+4165611,10727641,4
+85143816,10727641,4
+120871752,10727641,5
+119024126,10727641,4
+yalindongdong,10727641,3
+yanbeixingren,10727641,5
+47314582,10727641,4
+37906609,10727641,4
+88650755,10727641,4
+jasonscat,10727641,5
+44392983,10727641,4
+leven0111,10727641,5
+Sylein,10727641,3
+somovie,10727641,4
+82920101,10727641,4
+nevain,10727641,4
+wgb,10727641,5
+117234787,10727641,4
+90480173,10727641,3
+70648715,10727641,4
+Alejandro0929,10727641,5
+37396527,10727641,5
+ydlxiaolong,10727641,4
+xita,10727641,5
+96662969,10727641,4
+47894122,10727641,4
+53810031,10727641,5
+wish21,10727641,4
+79168541,10727641,4
+46687558,10727641,3
+weiyu0417,10727641,4
+94328046,10727641,5
+1793879,10727641,4
+54489982,10727641,3
+95313700,10727641,5
+58576630,10727641,4
+80606571,10727641,5
+66711391,10727641,4
+49419366,10727641,3
+xinziai,10727641,4
+97880539,10727641,4
+2195978,10727641,5
+wjlqnyrc,10727641,3
+121920760,10727641,4
+Duckpear10,10727641,5
+59553766,10727641,3
+36352996,10727641,4
+mspengmei,10727641,4
+pamelayang,10727641,4
+3538572,10727641,4
+121033638,10727641,3
+3412422,10727641,3
+3698997,10727641,3
+4152690,10727641,5
+48360878,10727641,4
+raptor,10727641,4
+AustinTsang,10727641,4
+36941035,10727641,5
+JeremyMJ,10727641,3
+3681045,10727641,4
+NysUn,10727641,4
+33354362,10727641,5
+52765000,10727641,4
+127342704,10727641,5
+4623641,10727641,-1
+good.speed.0,10727641,5
+49004528,10727641,4
+121917998,10727641,4
+zhengtian,10727641,3
+81061741,10727641,4
+Brettish,10727641,4
+119462749,10727641,4
+44869983,10727641,5
+guanzihuiji,10727641,4
+m.Blacky,10727641,3
+9678828,10727641,5
+76802075,10727641,4
+nianlu,10727641,3
+123383424,10727641,3
+jessieron,10727641,4
+66664303,10727641,4
+35591333,10727641,3
+106032621,10727641,4
+YOYOFunFun1064,10727641,3
+53518939,10727641,5
+59366761,10727641,5
+alwaysbestrong,10727641,4
+58313990,10727641,3
+53696796,10727641,5
+68366606,10727641,4
+grinch,10727641,-1
+81476241,10727641,3
+96948133,10727641,3
+erosthefaith,10727641,5
+bg1212,10727641,5
+34245713,10727641,4
+qiyingrunhua,10727641,4
+124443004,10727641,5
+elice,10727641,4
+yY.,10727641,4
+ch4gas,10727641,4
+merci_avi,10727641,4
+73577019,10727641,5
+67232116,10727641,4
+1004756,10727641,4
+49148779,10727641,3
+59079111,10727641,4
+51881603,10727641,5
+baibuooo,10727641,5
+xulu_films,10727641,3
+fikichow,10727641,4
+72432038,10727641,4
+66550848,10727641,4
+4032411,10727641,3
+AspireY,10727641,4
+douban787878,10727641,4
+VivianGoodchild,10727641,3
+itayloriswift,10727641,3
+Sherlockskyfall,10727641,5
+51636486,10727641,4
+sukixiaojie,10727641,3
+48787128,10727641,4
+60871322,10727641,3
+samsyu,10727641,4
+64076867,10727641,4
+52538749,10727641,3
+64083735,10727641,5
+63643182,10727641,3
+99215743,10727641,5
+yf19931112,10727641,3
+agwhy,10727641,3
+88938201,10727641,4
+51301478,10727641,5
+23730457,10727641,4
+48167450,10727641,4
+49136042,10727641,5
+2253369,10727641,4
+nemoye,10727641,3
+14699938,10727641,4
+Angst_Requiem,10727641,5
+48901280,10727641,4
+28178228,10727641,5
+miao1109,10727641,3
+57581825,10727641,4
+57906332,10727641,4
+sam920228,10727641,4
+34543870,10727641,4
+41014466,10727641,4
+122789390,10727641,5
+88188816,10727641,4
+89931172,10727641,3
+aiyouwoca,10727641,4
+eternalblue,10727641,5
+42328531,10727641,2
+123061684,10727641,5
+29844884,10727641,4
+20760667,10727641,4
+91252299,10727641,3
+63575487,10727641,4
+yokojanee,10727641,5
+mlgbbbb,10727641,3
+chan007,10727641,5
+3293932,10727641,5
+78851730,10727641,3
+lxl1990,10727641,3
+41601894,10727641,3
+50570726,10727641,4
+librapan,10727641,5
+2099122,10727641,3
+24678754,10727641,4
+boomXXboomXX,10727641,3
+49298846,10727641,5
+3399239,10727641,-1
+53217426,10727641,5
+wuxingta,10727641,4
+zhanmeichen,10727641,5
+31932913,10727641,5
+steflover,10727641,3
+83989831,10727641,4
+49186147,10727641,4
+michaelhhu,10727641,3
+54404280,10727641,4
+louql,10727641,3
+lxu,10727641,4
+50557701,10727641,4
+59791947,10727641,4
+45543286,10727641,4
+60214722,10727641,5
+116856151,10727641,4
+47426974,10727641,3
+2366856,10727641,4
+40730943,10727641,-1
+lrc893,10727641,5
+48689695,10727641,4
+4145491,10727641,4
+57084778,10727641,3
+2332162,10727641,3
+brad_tsye,10727641,4
+4307662,10727641,1
+72917772,10727641,4
+62446851,10727641,5
+102221538,10727641,4
+imkly,10727641,4
+tianyue,10727641,5
+29827748,10727641,4
+W_wanna_Show,10727641,4
+Isil.G,10727641,3
+43475184,10727641,4
+sisiliya,10727641,3
+46163023,10727641,-1
+50782420,10727641,5
+80065462,10727641,3
+58264706,10727641,4
+50414498,10727641,3
+52622213,10727641,5
+yscysc803,10727641,4
+LXJAAA,10727641,4
+bettylwx,10727641,3
+82347389,10727641,4
+25423159,10727641,5
+3488671,10727641,4
+57981450,10727641,5
+47730670,10727641,5
+ish2,10727641,4
+3599893,10727641,3
+44388338,10727641,2
+68467794,10727641,3
+EVz,10727641,4
+1723236,10727641,4
+triStoneL,10727641,4
+kaede11,10727641,4
+silencelee,10727641,3
+53247764,10727641,4
+ltp19950208,10727641,4
+zuomu,10727641,4
+Eileke,10727641,4
+rusheye,10727641,4
+xuhailong87,10727641,3
+64715321,10727641,4
+52434759,10727641,4
+80115244,10727641,5
+74460460,10727641,5
+ClaudiaS571,10727641,4
+48463460,10727641,3
+crabhk,10727641,3
+48333582,10727641,3
+Cheney__,10727641,4
+eightails,10727641,3
+3996839,10727641,4
+64249671,10727641,4
+77320088,10727641,4
+59055667,10727641,4
+ikedakai,10727641,4
+iris_0721,10727641,4
+79913596,10727641,4
+kylefun,10727641,4
+zuohengheng,10727641,5
+yujun_2011,10727641,4
+51138955,10727641,3
+80398385,10727641,3
+Hannia,10727641,5
+yaoayao1988,10727641,3
+101467920,10727641,3
+78208494,10727641,4
+currant,10727641,5
+leo123leo,10727641,4
+dragonflypedals,10727641,5
+DONGXIAOYANG,10727641,4
+lilyang,10727641,2
+62917415,10727641,5
+85385458,10727641,4
+3043976,10727641,5
+1252761,10727641,4
+2465698,10727641,4
+Levora,10727641,4
+75531469,10727641,4
+53392958,10727641,3
+42713356,10727641,5
+42713356,10727641,5
+ruoren,10727641,4
+102819112,10727641,4
+51119059,10727641,4
+3874094,10727641,5
+JOCK,10727641,5
+81051190,10727641,4
+moyanmoyu,10727641,3
+62297944,10727641,4
+39649962,10727641,4
+64619116,10727641,4
+79417839,10727641,5
+58012559,10727641,4
+59202996,10727641,3
+62187339,10727641,4
+83650519,10727641,5
+CCeleven1230,10727641,3
+78636509,10727641,4
+Chiunotfortoday,10727641,5
+maitian123123,10727641,-1
+maitian123123,10727641,-1
+51760387,10727641,4
+1849986,10727641,3
+53794132,10727641,3
+68208485,10727641,4
+57980305,10727641,4
+13129748,10727641,5
+4161339,10727641,5
+55619717,10727641,4
+58202638,10727641,5
+56855422,10727641,4
+czy940903,10727641,5
+46986910,10727641,3
+63937204,10727641,4
+48854947,10727641,5
+33293861,10727641,4
+58725999,10727641,4
+54184798,10727641,3
+EndAndEnd,10727641,3
+CaptBastard,10727641,3
+androidboy00,10727641,3
+49191644,10727641,4
+46894377,10727641,4
+abin520918,10727641,4
+37973331,10727641,4
+52278915,10727641,4
+leemarkgz,10727641,2
+59370142,10727641,4
+hifNKK,10727641,4
+58044228,10727641,4
+u_soda,10727641,4
+kirsten7,10727641,4
+55366144,10727641,4
+66803034,10727641,4
+josefina_sysbs,10727641,4
+57630254,10727641,5
+2417136,10727641,5
+jamiegan,10727641,5
+62854869,10727641,5
+everlastingEGO,10727641,3
+65113652,10727641,3
+zhuanglongzuoya,10727641,4
+steventian,10727641,3
+lovesebby,10727641,4
+idmmdi,10727641,5
+allahking,10727641,3
+43356588,10727641,3
+zajm,10727641,4
+42923614,10727641,4
+yangzifeng,10727641,4
+115707608,10727641,4
+73154787,10727641,4
+adandd,10727641,2
+me0mj,10727641,4
+ruo1996,10727641,4
+66836438,10727641,4
+75348259,10727641,4
+63348856,10727641,4
+42256726,10727641,3
+lncclacs,10727641,3
+J7N,10727641,4
+74106981,10727641,5
+zuozuo1990,10727641,4
+62070084,10727641,5
+83389859,10727641,4
+lazydesigner,10727641,4
+63127179,10727641,4
+threedropofshui,10727641,4
+19958381,10727641,3
+67990351,10727641,5
+65672659,10727641,4
+58630944,10727641,4
+fxiaobo,10727641,4
+60413211,10727641,2
+37495463,10727641,5
+54690757,10727641,4
+Eudemonia-moon,10727641,3
+HAYATE-RIN,10727641,5
+58288224,10727641,4
+Iamlazylady,10727641,5
+47224854,10727641,4
+weepbird,10727641,3
+littlelu,10727641,5
+evilQin,10727641,3
+mrbrooks,10727641,3
+crankysophia,10727641,3
+WiseUncleWu,10727641,4
+47404227,10727641,4
+amvivid,10727641,3
+3966164,10727641,3
+47004373,10727641,4
+72365328,10727641,4
+91158172,10727641,5
+57936922,10727641,3
+xiawu1130,10727641,5
+44810732,10727641,3
+87230484,10727641,4
+lorry316,10727641,4
+xingwuguo,10727641,4
+61131446,10727641,4
+75486420,10727641,4
+69251373,10727641,3
+48528115,10727641,2
+83538603,10727641,2
+socalledaeolus,10727641,3
+48997876,10727641,5
+83722175,10727641,4
+foreveryoung...,10727641,3
+52421629,10727641,-1
+sobbingnight,10727641,4
+53477722,10727641,5
+narcisusss,10727641,4
+49825242,10727641,3
+iwangke,10727641,4
+48989032,10727641,3
+64716871,10727641,4
+42137037,10727641,4
+45929722,10727641,3
+CrashCaine,10727641,4
+Alpinist,10727641,4
+JazzJohnny,25745752,2
+61619787,25745752,2
+82231172,25745752,2
+129032954,25745752,3
+69336085,25745752,3
+102156765,25745752,4
+59302581,25745752,3
+narcisusss,25745752,4
+chenhuangchao,25745752,4
+57409751,25745752,5
+120945947,25745752,3
+58993802,25745752,2
+56035155,25745752,2
+133235780,25745752,5
+131892019,25745752,5
+136663776,25745752,2
+114745452,25745752,2
+120424017,25745752,-1
+88075202,25745752,1
+Small_Wan,25745752,4
+zhaohuli,25745752,3
+4111498,25745752,4
+51705019,25745752,1
+48562570,25745752,4
+67503021,25745752,2
+136668262,25745752,4
+61951829,25745752,3
+126412740,25745752,2
+133144980,25745752,3
+133080033,25745752,3
+131817448,25745752,2
+65542582,25745752,4
+vala1994,25745752,3
+115329516,25745752,2
+75479924,25745752,3
+53375345,25745752,2
+104366141,25745752,3
+134576253,25745752,3
+137047356,25745752,2
+1785328,25745752,5
+krisleung,25745752,2
+109530447,25745752,1
+51057847,25745752,2
+131254424,25745752,2
+130603884,25745752,3
+39406660,25745752,2
+43882997,25745752,3
+suelynn,25745752,2
+muzixuan,25745752,3
+77554207,25745752,4
+125055300,25745752,3
+BettyLuu,25745752,3
+4624601,25745752,3
+130539334,25745752,3
+102604927,25745752,4
+2911189,25745752,2
+3501453,25745752,3
+dolore,25745752,2
+69582063,25745752,2
+m4145050099,25745752,2
+angeiyc,25745752,3
+98629034,25745752,3
+130445057,25745752,1
+tuxiaomao,25745752,2
+134540507,25745752,4
+Anita_Seta,25745752,3
+137075359,25745752,4
+qingzai,25745752,2
+50925315,25745752,2
+cowsumy,25745752,3
+36372446,25745752,4
+131332142,25745752,2
+135894725,25745752,1
+83094775,25745752,2
+wukefenggao,25745752,2
+51146070,25745752,2
+tongtong7,25745752,3
+sunsun0222,25745752,3
+104462145,25745752,-1
+43817219,25745752,2
+xiguaguagua,25745752,1
+red.,25745752,3
+L-6206,25745752,2
+136883234,25745752,2
+53679658,25745752,3
+34243799,25745752,3
+jesseclockwork,25745752,3
+51436199,25745752,3
+70805035,25745752,2
+idaisylife,25745752,3
+14622412,25745752,1
+marryliu,25745752,5
+47714398,25745752,2
+zhirunze,25745752,3
+44096316,25745752,5
+137726184,25745752,2
+emmalty,25745752,1
+66381242,25745752,4
+qinqin1130,25745752,4
+129636483,25745752,2
+129636483,25745752,2
+diyidouya,25745752,2
+68680519,25745752,5
+62932403,25745752,2
+130999542,25745752,3
+YummiG.,25745752,2
+39360207,25745752,3
+127646367,25745752,3
+48003781,25745752,1
+84267223,25745752,3
+99022280,25745752,4
+121359012,25745752,3
+58466235,25745752,3
+55406228,25745752,2
+2055701,25745752,1
+oOUmi,25745752,3
+137800980,25745752,3
+1530465,25745752,4
+52810314,25745752,3
+lovemapaandhuhu,25745752,5
+3992258,25745752,3
+3489590,25745752,2
+50992070,25745752,2
+dolly48yyt,25745752,4
+78759547,25745752,3
+tintintsang,25745752,2
+38572458,25745752,2
+55322587,25745752,1
+55515445,25745752,3
+81870070,25745752,1
+69529350,25745752,2
+64248782,25745752,3
+wuyunoy,25745752,1
+134399469,25745752,4
+134784310,25745752,3
+130396881,25745752,2
+40021345,25745752,4
+123036643,25745752,2
+70310265,25745752,1
+2588629,25745752,2
+59574320,25745752,5
+137794763,25745752,3
+popo324,25745752,3
+136947773,25745752,3
+niubility1258,25745752,1
+99710074,25745752,2
+130534487,25745752,1
+simu19,25745752,2
+zebramomo,25745752,3
+ever4ever,25745752,3
+94556650,25745752,3
+61265213,25745752,3
+fanleny,25745752,3
+136148693,25745752,4
+136942011,25745752,3
+39646385,25745752,2
+134156002,25745752,1
+61355302,25745752,1
+134943894,25745752,3
+suneleo,25745752,4
+137720532,25745752,1
+mayka,25745752,2
+135680157,25745752,5
+132908375,25745752,2
+136578921,25745752,3
+71569163,25745752,2
+rainbow0420,25745752,3
+samzhuang,25745752,4
+136499234,25745752,3
+135138287,25745752,2
+61937821,25745752,2
+80991459,25745752,4
+LuthienLee,25745752,2
+58550480,25745752,3
+thesillyone,25745752,1
+33325157,25745752,4
+75598534,25745752,2
+angelstar,25745752,5
+119019899,25745752,2
+43634472,25745752,2
+113345841,25745752,3
+120947474,25745752,5
+lixinbei8023,25745752,1
+5218300,25745752,2
+134906983,25745752,5
+95458643,25745752,3
+64305932,25745752,1
+137941433,25745752,-1
+shzcsmzzss,25745752,2
+mlli,25745752,1
+56666764,25745752,4
+52275129,25745752,5
+aolantuo7,25745752,1
+122868077,25745752,3
+119072798,25745752,3
+longlastingfad,25745752,2
+135187492,25745752,3
+131343395,25745752,2
+43458075,25745752,3
+130453043,25745752,2
+tina220284,25745752,4
+Heaterh,25745752,3
+4707526,25745752,4
+58635910,25745752,1
+68550514,25745752,1
+131103457,25745752,3
+114380564,25745752,1
+jokerli,25745752,4
+45220705,25745752,2
+19765113,25745752,1
+126502185,25745752,3
+134520468,25745752,2
+137783291,25745752,1
+49185698,25745752,4
+yubin8725,25745752,3
+120962539,25745752,2
+bettersnail,25745752,-1
+63820149,25745752,4
+59163778,25745752,1
+asvra,25745752,4
+7010764,25745752,2
+53624567,25745752,1
+125282375,25745752,4
+137850204,25745752,4
+135996995,25745752,1
+68960796,25745752,3
+137849195,25745752,-1
+eejunki,25745752,3
+136900208,25745752,3
+53325239,25745752,3
+134498967,25745752,2
+rtzzw,25745752,4
+31877981,25745752,3
+137839195,25745752,3
+orangeo,25745752,2
+130934404,25745752,3
+mickjoust,25745752,3
+gaolengshaonv,25745752,1
+zhangziyi,25745752,2
+103572835,25745752,3
+daisywj,25745752,3
+137770410,25745752,3
+3716043,25745752,1
+53823312,25745752,4
+50944576,25745752,1
+Magic_L,25745752,3
+54162773,25745752,-1
+37442929,25745752,1
+61315672,25745752,2
+120792456,25745752,4
+shengyang,25745752,3
+133551897,25745752,2
+47236193,25745752,1
+somnouslove,25745752,3
+56223239,25745752,4
+55308939,25745752,2
+cundou,25745752,4
+spgsw,25745752,2
+136727796,25745752,3
+134534654,25745752,3
+134534654,25745752,3
+69127270,25745752,2
+98553621,25745752,4
+54071930,25745752,3
+76866338,25745752,3
+1393380,25745752,3
+137479208,25745752,2
+76297198,25745752,4
+deactivate,25745752,1
+57878638,25745752,3
+mudongya,25745752,4
+124529831,25745752,3
+47119400,25745752,2
+LUCIS0000,25745752,1
+14889069,25745752,4
+68878691,25745752,3
+killsusie,25745752,1
+103580957,25745752,3
+lainey1006,25745752,1
+102986186,25745752,3
+51582662,25745752,3
+120535734,25745752,1
+sltrherinFY,25745752,3
+55652120,25745752,3
+Charline-2015,25745752,3
+134963788,25745752,4
+75314908,25745752,2
+132463662,25745752,2
+simonly,25745752,2
+37551097,25745752,3
+aralebox,25745752,3
+77434550,25745752,1
+duoduohaowawa,25745752,3
+menzeld,25745752,1
+136691889,25745752,4
+87713828,25745752,4
+42817015,25745752,3
+TonyChuh,25745752,3
+136669389,25745752,2
+3138428,25745752,-1
+120911789,25745752,1
+90798972,25745752,2
+62483503,25745752,1
+51639933,25745752,2
+87673698,25745752,1
+59725846,25745752,4
+76097175,25745752,3
+4534607,25745752,3
+wyjlwyy,25745752,3
+126338570,25745752,4
+134505975,25745752,2
+58487163,25745752,3
+gexiarong,25745752,3
+our1314,25745752,5
+51398742,25745752,3
+lixiaoyuan1991,25745752,3
+119590373,25745752,1
+134031623,25745752,3
+92962162,25745752,4
+1016029,25745752,4
+silentwarm,25745752,3
+4429329,25745752,2
+100297843,25745752,1
+104710659,25745752,3
+128955983,25745752,4
+34882816,25745752,-1
+80544842,25745752,2
+103477045,25745752,2
+chensiliunian,25745752,2
+zxyan,25745752,2
+34243551,25745752,1
+win-go,25745752,2
+45321512,25745752,2
+Ruty1985,25745752,2
+49052740,25745752,3
+68551392,25745752,2
+125827809,25745752,2
+49022703,25745752,3
+88124369,25745752,2
+46845276,25745752,3
+58386581,25745752,3
+43958959,25745752,3
+qiubutong,25745752,2
+137503237,25745752,2
+137541270,25745752,4
+52269752,25745752,3
+70144915,25745752,2
+lizi19881218,25745752,5
+63384110,25745752,1
+Hyke,25745752,2
+58738139,25745752,1
+137136099,25745752,2
+89219788,25745752,-1
+52969609,25745752,-1
+51658550,25745752,1
+66555498,25745752,3
+67181207,25745752,3
+56630500,25745752,3
+junjun520wei,25745752,3
+adelestarry,25745752,3
+134580402,25745752,3
+M.Roseline,25745752,2
+121163756,25745752,3
+137462818,25745752,4
+52023451,25745752,3
+73943791,25745752,4
+125291522,25745752,1
+124497944,25745752,1
+104167946,25745752,1
+137009471,25745752,3
+133917626,25745752,1
+71016890,25745752,3
+130421778,25745752,3
+125790890,25745752,3
+56568243,25745752,3
+jane921,25745752,2
+98956225,25745752,3
+shadowphoenix,25745752,-1
+137274542,25745752,1
+69701042,25745752,1
+76025225,25745752,1
+69776394,25745752,3
+51226667,25745752,4
+63361491,25745752,2
+joylovesyou,25745752,-1
+1865210,25745752,2
+92351225,25745752,4
+103486960,25745752,3
+106448546,25745752,3
+whitedrama,25745752,2
+136714687,25745752,3
+41520364,25745752,3
+59665000,25745752,2
+64400147,25745752,3
+62748351,25745752,1
+91277792,25745752,4
+116271293,25745752,3
+37148291,25745752,3
+134879624,25745752,2
+133986166,25745752,3
+133393933,25745752,2
+68549464,25745752,2
+4679551,25745752,1
+65663324,25745752,4
+59290832,25745752,3
+136867844,25745752,3
+gintokiyin,25745752,2
+126693961,25745752,2
+65025231,25745752,1
+littlegreenyoba,25745752,4
+62703970,25745752,2
+43411603,25745752,1
+63347675,25745752,3
+137324986,25745752,2
+132321087,25745752,1
+52629192,25745752,3
+113589392,25745752,4
+134642164,25745752,-1
+genger85,25745752,2
+Lillianzyl,25745752,4
+Lillianzyl,25745752,4
+92860197,25745752,1
+135099240,25745752,3
+72411875,25745752,1
+53126913,25745752,2
+101334259,25745752,-1
+81076826,25745752,2
+73530411,25745752,2
+113582401,25745752,1
+137273110,25745752,3
+Mary_Lee,25745752,5
+51854366,25745752,3
+60020985,25745752,2
+68550063,25745752,1
+137206904,25745752,4
+60689490,25745752,3
+134506095,25745752,3
+80849511,25745752,2
+44308589,25745752,2
+48953204,25745752,1
+61836437,25745752,1
+137082405,25745752,3
+59167569,25745752,2
+136409582,25745752,3
+131909298,25745752,1
+70487695,25745752,3
+84060429,25745752,1
+45962163,25745752,2
+127119228,25745752,3
+SPIRITUA,25745752,3
+variation1229,25745752,4
+135487682,25745752,2
+51277491,25745752,2
+120117137,25745752,3
+127601327,25745752,2
+137188029,25745752,3
+55914733,25745752,2
+126785151,25745752,2
+119253554,25745752,3
+134631211,25745752,2
+127297247,25745752,1
+anjingyigeren,25745752,-1
+48096986,25745752,-1
+90681003,25745752,3
+122966703,25745752,2
+53916327,25745752,3
+131704221,25745752,2
+127367901,25745752,2
+34250438,25745752,-1
+1626349,25745752,4
+Yangtze_Ann,25745752,-1
+135850955,25745752,2
+135237923,25745752,3
+lixixi1995,25745752,3
+50706220,25745752,5
+124848293,25745752,3
+135349398,25745752,1
+66771297,25745752,3
+liuanan0606,25745752,2
+43129996,25745752,1
+43129996,25745752,1
+shinny010101,25745752,4
+135689504,25745752,2
+88731228,25745752,2
+54719032,25745752,1
+137061387,25745752,2
+goodbyemagi,25745752,2
+68666799,25745752,2
+134509941,25745752,3
+61675448,25745752,2
+watercolor823,25745752,2
+131205877,25745752,2
+48090771,25745752,1
+68632804,25745752,2
+xclc,25745752,4
+79157004,25745752,4
+maaliskuu,25745752,3
+55399562,25745752,3
+eustachon,25745752,5
+4083554,25745752,4
+4465352,25745752,4
+131088732,25745752,3
+mimimojo,25745752,2
+133415627,25745752,3
+136445770,25745752,3
+134034047,25745752,3
+revaoo,25745752,1
+gezi921054,25745752,1
+112727402,25745752,3
+98954264,25745752,3
+115051698,25745752,3
+104529925,25745752,2
+136274462,25745752,5
+45268716,25745752,2
+94511804,25745752,3
+120566787,25745752,2
+aids,25745752,3
+yinmilan,25745752,2
+103277074,25745752,3
+50484779,25745752,2
+104759156,25745752,2
+Xinmai,25745752,5
+134726224,25745752,3
+KaRiCh,25745752,3
+3601446,25745752,2
+114149260,25745752,1
+60245938,25745752,1
+88345829,25745752,1
+suiffeng0504,25745752,-1
+103284743,25745752,4
+75804317,25745752,1
+64096559,25745752,1
+131408932,25745752,1
+81725101,25745752,3
+136118939,25745752,3
+134550050,25745752,1
+82670007,25745752,2
+112725692,25745752,3
+Nine-Hero,25745752,-1
+49088631,25745752,-1
+49088631,25745752,-1
+136398287,25745752,2
+redwing730,25745752,4
+123002309,25745752,3
+56143102,25745752,4
+68920399,25745752,3
+3435845,25745752,3
+countcrows,25745752,-1
+48167722,25745752,4
+34348744,25745752,3
+82503693,25745752,3
+xiaohuai533,25745752,2
+60099689,25745752,2
+136724236,25745752,1
+67978704,25745752,4
+72642943,25745752,2
+52166968,25745752,3
+gonejack,25745752,2
+62425489,25745752,1
+76230819,25745752,2
+77100547,25745752,1
+76099686,25745752,5
+kiffiz,25745752,4
+64434584,25745752,3
+11509694,25745752,4
+69326188,25745752,3
+136826257,25745752,2
+63568126,25745752,3
+ypppp,25745752,4
+110565024,25745752,3
+anjinian,25745752,3
+48756490,25745752,2
+134531645,25745752,3
+50854633,25745752,2
+126579331,25745752,3
+47605458,25745752,2
+81639579,25745752,2
+6877388,25745752,3
+136810733,25745752,3
+62748028,25745752,3
+15537506,25745752,5
+116366072,25745752,2
+77607835,25745752,3
+133619421,25745752,1
+rozing,25745752,3
+ruoansen,25745752,4
+68429494,25745752,1
+134346251,25745752,-1
+135906739,25745752,3
+mira_yukin,25745752,3
+99104494,25745752,1
+82046546,25745752,2
+68578532,25745752,-1
+121780577,25745752,3
+77244535,25745752,3
+xsmyfc,25745752,3
+134823022,25745752,5
+Joacy19900902,25745752,-1
+75752859,25745752,1
+topxpp,25745752,1
+135112639,25745752,2
+134730691,25745752,3
+hanayuki,25745752,3
+48096896,25745752,2
+126759406,25745752,1
+Gally,25745752,2
+2310617,25745752,3
+artofloving,25745752,2
+62110835,25745752,2
+EmmaChow,25745752,3
+yoji,25745752,3
+65415290,25745752,2
+130599917,25745752,3
+136707946,25745752,2
+1324079,25745752,2
+65931842,25745752,1
+43187789,25745752,2
+9095449,25745752,1
+93180377,25745752,1
+sysu-shichen,25745752,1
+90498206,25745752,3
+125321184,25745752,3
+84983836,25745752,3
+qzpm1029,25745752,3
+chrisocean,25745752,3
+136340593,25745752,3
+Gengxiaolele,25745752,3
+113515120,25745752,2
+72870354,25745752,3
+63255619,25745752,1
+4170547,25745752,2
+102070677,25745752,1
+jill426,25745752,3
+87704099,25745752,-1
+133502255,25745752,4
+131507436,25745752,3
+134348634,25745752,4
+25927417,25745752,3
+vaay-mei,25745752,3
+56128182,25745752,2
+130557749,25745752,2
+56250024,25745752,2
+64062822,25745752,2
+74471598,25745752,1
+69113925,25745752,2
+choulaoya,25745752,4
+66575578,25745752,4
+64037870,25745752,2
+93828886,25745752,2
+57967189,25745752,2
+kashandela,25745752,3
+132364091,25745752,2
+9071897,25745752,3
+alice_witch,25745752,4
+48965557,25745752,1
+12019710,25745752,5
+41680938,25745752,2
+36832783,25745752,1
+81266175,25745752,3
+136570486,25745752,-1
+56378824,25745752,3
+Ningen1007,25745752,1
+51170361,25745752,3
+64908960,25745752,3
+51245229,25745752,3
+81210724,25745752,3
+42568988,25745752,5
+66178639,25745752,1
+58485268,25745752,2
+73294999,25745752,3
+66644724,25745752,4
+joyevil,25745752,4
+91253707,25745752,3
+79452838,25745752,3
+129274650,25745752,2
+135694361,25745752,2
+snow523,25745752,1
+4210795,25745752,3
+MENG-331,25745752,3
+46503366,25745752,1
+eilyying,25745752,5
+88322769,25745752,4
+manxiaoyi,25745752,2
+135949040,25745752,1
+77592151,25745752,3
+54639718,25745752,3
+42495249,25745752,4
+33981553,25745752,4
+loveserein,25745752,3
+xxxJJ13,25745752,1
+116169961,25745752,3
+53980581,25745752,2
+64333231,25745752,1
+58769650,25745752,1
+nikkiwu,25745752,3
+51594094,25745752,2
+45661108,25745752,3
+72457171,25745752,1
+46418064,25745752,-1
+130680494,25745752,3
+3922692,25745752,4
+winter-h,25745752,2
+63283899,25745752,3
+134909513,25745752,4
+121916264,25745752,4
+122199610,25745752,2
+50335163,25745752,1
+126485867,25745752,1
+DuXinZeLizzie,25745752,3
+52135478,25745752,5
+lipiaopiao,25745752,3
+74337586,25745752,4
+106525523,25745752,3
+121614971,25745752,3
+134505006,25745752,3
+58609577,25745752,2
+102323615,25745752,2
+xiaopjie,25745752,3
+66107296,25745752,3
+4271937,25745752,2
+minishine,25745752,3
+62503588,25745752,3
+78862155,25745752,3
+47725909,25745752,5
+57137451,25745752,3
+ailaoshan,25745752,1
+56780355,25745752,3
+4251044,25745752,1
+136337190,25745752,4
+42011516,25745752,2
+jingzi_tang,25745752,1
+102521015,25745752,4
+zhangxyi,25745752,4
+49353235,25745752,4
+GeSMD,25745752,3
+103066869,25745752,2
+60997769,25745752,3
+49072240,25745752,4
+51098227,25745752,1
+135714519,25745752,3
+61176733,25745752,4
+135101148,25745752,2
+3246311,25745752,3
+zhdong,25745752,2
+56517415,25745752,3
+3646084,25745752,1
+wen1228,25745752,4
+songzier1009,25745752,3
+72721074,25745752,3
+NikkiG,25745752,3
+andy12007,25745752,3
+60634199,25745752,4
+48071372,25745752,3
+134969713,25745752,2
+IamFiona,25745752,4
+xx0301ll,25745752,2
+xiaodou52,25745752,3
+Video-game,25745752,4
+37395154,25745752,5
+133125055,25745752,3
+zhonglizhongli,25745752,3
+132885035,25745752,4
+45419889,25745752,1
+3874094,25745752,1
+49952089,25745752,4
+42359539,25745752,2
+2968227,25745752,3
+56063289,25745752,1
+122680353,25745752,1
+iceJY,25745752,1
+62403523,25745752,3
+136199952,25745752,3
+56111522,25745752,3
+61911395,25745752,2
+130353620,25745752,1
+mimosa_tara,25745752,3
+52596376,25745752,2
+65922815,25745752,3
+72806494,25745752,4
+jessicatow,25745752,3
+116408059,25745752,1
+133883408,25745752,3
+58854842,25745752,1
+shanl,25745752,2
+134574897,25745752,2
+55842746,25745752,4
+fiy_like_a_BEE,25745752,2
+88386627,25745752,3
+134496609,25745752,3
+136063439,25745752,1
+kassyxuemeng,25745752,3
+H_flower,25745752,3
+77779936,25745752,4
+47820005,25745752,2
+68269501,25745752,3
+9861818,25745752,2
+134532187,25745752,2
+2291010,25745752,4
+7292654,25745752,2
+133433272,25745752,1
+zq8870690207,25745752,3
+3213833,25745752,3
+54092067,25745752,2
+24557674,25745752,2
+18049709,25745752,4
+69495229,25745752,3
+fishting,25745752,1
+106519480,25745752,3
+51054869,25745752,3
+121881836,25745752,3
+hewenzicandy,25745752,3
+123714793,25745752,3
+127375314,25745752,3
+135647361,25745752,4
+51649981,25745752,4
+51058099,25745752,2
+quinyu,25745752,3
+lmx1220,25745752,2
+33534935,25745752,1
+67618719,25745752,2
+136078411,25745752,2
+38980912,25745752,4
+130321312,25745752,4
+bihaichaosheng,25745752,4
+23380026,25745752,1
+floraforever21,25745752,2
+vva_,25745752,1
+130978369,25745752,2
+1380828,25745752,3
+136054482,25745752,5
+80622644,25745752,4
+120693431,25745752,3
+jiushitime,25745752,3
+40727462,25745752,2
+135348089,25745752,1
+55328158,25745752,2
+132750777,25745752,1
+zayaza,25745752,4
+hou-z,25745752,3
+winnie0212,25745752,1
+59420428,25745752,4
+50340677,25745752,3
+SevenL7.,25745752,3
+135995286,25745752,1
+66552525,25745752,1
+84708478,25745752,1
+130309969,25745752,3
+yuyuzstarry,25745752,3
+35781944,25745752,3
+65191313,25745752,3
+2723512,25745752,4
+69010983,25745752,4
+ningyaogezhi,25745752,2
+60470640,25745752,3
+74138139,25745752,2
+135956704,25745752,5
+51624408,25745752,3
+134537950,25745752,3
+99897272,25745752,2
+pangjiansheng,25745752,4
+Loreley333,25745752,4
+134937890,25745752,3
+hwmiss1104,25745752,3
+63249490,25745752,4
+4130350,25745752,3
+58602525,25745752,2
+64175578,25745752,2
+58309699,25745752,3
+48877659,25745752,3
+zingchampion,25745752,3
+wen_Schwartz,25745752,2
+y888888888,25745752,4
+47761082,25745752,1
+3577491,25745752,2
+119611672,25745752,2
+xinyu1890,25745752,2
+65785338,25745752,2
+mhyigeren,25745752,2
+120350586,25745752,5
+93962513,25745752,4
+93962513,25745752,4
+40081609,25745752,2
+135882446,25745752,1
+135328500,25745752,2
+129577459,25745752,-1
+sysop,25745752,3
+77788939,25745752,1
+toodream,25745752,3
+134528559,25745752,2
+75489500,25745752,3
+135563932,25745752,3
+79879080,25745752,3
+beckihu,25745752,4
+49124222,25745752,3
+128637962,25745752,2
+124343373,25745752,3
+16792916,25745752,1
+133890183,25745752,1
+134498032,25745752,2
+62466428,25745752,2
+Y9025,25745752,4
+122031722,25745752,2
+leerayv587,25745752,2
+yokoyi,25745752,3
+48137459,25745752,1
+2594397,25745752,4
+134516953,25745752,3
+76526220,25745752,3
+vvspy,25745752,3
+48857786,25745752,4
+135451898,25745752,1
+Xmelie,25745752,-1
+maoulyn,25745752,4
+sinux,25745752,2
+87190066,25745752,2
+3386887,25745752,3
+50727415,25745752,3
+2605445,25745752,5
+76420498,25745752,2
+mutii,25745752,3
+47413356,25745752,3
+chaomei,25745752,2
+135403711,25745752,3
+4563859,25745752,4
+alicelv,25745752,5
+Deepwhite_lx,25745752,2
+doney88,25745752,3
+69815211,25745752,3
+78081172,25745752,3
+60475494,25745752,3
+134825816,25745752,3
+125814755,25745752,5
+52999504,25745752,3
+43069509,25745752,2
+4283595,25745752,1
+47098539,25745752,3
+130540894,25745752,3
+87555900,25745752,4
+56693883,25745752,4
+134542917,25745752,3
+4054446,25745752,4
+135713881,25745752,-1
+renshaoqun,25745752,3
+beloved72,25745752,2
+F1vese7enone,25745752,1
+73987511,25745752,4
+62877748,25745752,3
+132998627,25745752,3
+duguguiyu,25745752,2
+46965914,25745752,3
+58387557,25745752,2
+52933532,25745752,2
+34062081,25745752,2
+54728942,25745752,-1
+53477033,25745752,2
+gzunknow,25745752,2
+6621886,25745752,3
+135660540,25745752,2
+95832299,25745752,3
+smart-ass,25745752,3
+smart-ass,25745752,3
+72273685,25745752,3
+133497939,25745752,3
+55835825,25745752,5
+wpjkatrina,25745752,3
+Gemini175,25745752,3
+37445047,25745752,3
+61332759,25745752,3
+29839010,25745752,3
+134532071,25745752,4
+102053172,25745752,1
+51435663,25745752,4
+4051028,25745752,1
+85266036,25745752,3
+4031388,25745752,4
+135573173,25745752,4
+88863939,25745752,4
+2245968,25745752,4
+68655237,25745752,1
+1787295,25745752,2
+134074497,25745752,3
+frankfankai,25745752,3
+134221694,25745752,4
+66767479,25745752,3
+28074817,25745752,4
+2966287,25745752,3
+dongboqi,25745752,3
+47561768,25745752,3
+icecreamdd,25745752,3
+BarbieZ,25745752,3
+nanshuo,25745752,2
+mocean,25745752,5
+104696310,25745752,3
+Light_L,25745752,-1
+leeleedaisy,25745752,-1
+52454145,25745752,2
+49921068,25745752,1
+134309957,25745752,4
+97463781,25745752,3
+106787532,25745752,2
+1458725,25745752,3
+miemiemind,25745752,2
+maybachyingzhi,25745752,2
+76420488,25745752,3
+4447333,25745752,1
+135553491,25745752,1
+chymo,25745752,2
+135463478,25745752,5
+43137121,25745752,2
+sugar710,25745752,2
+2700013,25745752,2
+izumi999,25745752,4
+Zero108,25745752,2
+119591644,25745752,2
+131518850,25745752,2
+52428951,25745752,3
+133658801,25745752,3
+51901368,25745752,5
+48996798,25745752,4
+kezhai,25745752,1
+4640784,25745752,3
+IDEAL_Jason,25745752,1
+bb0708,25745752,1
+66353833,25745752,2
+1444030,25745752,3
+xy52119910521,25745752,3
+xx2086,25745752,4
+defline,25745752,4
+120895384,25745752,2
+54087521,25745752,3
+59514938,25745752,2
+133498988,25745752,1
+122221670,25745752,2
+133106464,25745752,4
+53707542,25745752,1
+32925702,25745752,1
+50259221,25745752,2
+lucia_star,25745752,3
+superxiaoqi123,25745752,2
+48339890,25745752,3
+57129991,25745752,2
+119448621,25745752,4
+aprilwhu,25745752,2
+rikkiwan,25745752,4
+64404438,25745752,3
+134318408,25745752,3
+97354586,25745752,2
+58259896,25745752,1
+115310630,25745752,3
+artwalk,25745752,3
+76844756,25745752,1
+jadexyy,25745752,2
+82268934,25745752,3
+50516350,25745752,3
+4892064,25745752,4
+47169625,25745752,2
+114864918,25745752,2
+131557844,25745752,2
+135317252,25745752,1
+131239316,25745752,4
+131239316,25745752,4
+92878802,25745752,2
+66642487,25745752,4
+55874640,25745752,2
+135383710,25745752,1
+1421869,25745752,1
+67189963,25745752,2
+CrystalFung,25745752,3
+4733255,25745752,4
+4301313,25745752,4
+110392919,25745752,2
+132098902,25745752,1
+127926003,25745752,2
+59399939,25745752,4
+135415731,25745752,2
+39605411,25745752,1
+89407486,25745752,3
+HeroineDaode,25745752,2
+loreene,25745752,2
+solarshr,25745752,2
+29725427,25745752,3
+131490533,25745752,1
+g.z.y,25745752,2
+wikimedia,25745752,1
+1485351,25745752,3
+huskie,25745752,1
+135396561,25745752,2
+3814651,25745752,2
+49164545,25745752,4
+77886672,25745752,3
+61111034,25745752,4
+135092660,25745752,2
+1467788,25745752,1
+Frienky,25745752,4
+moshushinihao,25745752,2
+diudiuhappiness,25745752,-1
+104276562,25745752,3
+2481053,25745752,-1
+64852790,25745752,3
+64092197,25745752,2
+43621378,25745752,4
+41742499,25745752,3
+3002217,25745752,3
+47801703,25745752,3
+60731189,25745752,2
+90787314,25745752,2
+70726919,25745752,3
+Nur,25745752,3
+lazymule,25745752,5
+marsenvoy,25745752,2
+46630332,25745752,4
+68519424,25745752,3
+58914252,25745752,2
+supersooby,25745752,2
+133564346,25745752,2
+82847924,25745752,2
+135213952,25745752,4
+78619480,25745752,3
+84551349,25745752,4
+90213874,25745752,1
+83531928,25745752,4
+57205524,25745752,1
+87902775,25745752,2
+48281759,25745752,3
+ccgmt,25745752,1
+134702987,25745752,1
+52114041,25745752,-1
+68367782,25745752,2
+cherryli5288,25745752,-1
+lilylmh,25745752,4
+69244531,25745752,-1
+62438603,25745752,-1
+tzkmfsi,25745752,3
+135292568,25745752,3
+134586200,25745752,3
+57955489,25745752,-1
+hanyu199006,25745752,3
+47379547,25745752,-1
+71712133,25745752,4
+65038141,25745752,2
+56744687,25745752,3
+akpe,25745752,4
+58294250,25745752,-1
+123543090,25745752,3
+43934370,25745752,2
+68946630,25745752,1
+130807808,25745752,2
+66770908,25745752,4
+75013445,25745752,3
+119450758,25745752,4
+44587158,25745752,3
+feiranny,25745752,2
+47057852,25745752,2
+45800647,25745752,2
+81244293,25745752,2
+li_yixiao,25745752,-1
+73741678,25745752,2
+ghlee,25745752,1
+120315724,25745752,3
+chenspoon,25745752,4
+46915487,25745752,1
+132681320,25745752,1
+64473872,25745752,4
+8184556,25745752,3
+55012980,25745752,4
+ricy-rice,25745752,1
+54663523,25745752,2
+77522635,25745752,4
+86253847,25745752,2
+2018531,25745752,4
+83576151,25745752,1
+69839480,25745752,5
+stile,25745752,2
+monet_c,25745752,2
+53831199,25745752,4
+badula,25745752,2
+AbigailXu,25745752,2
+70534377,25745752,2
+69973465,25745752,2
+sqdlx,25745752,5
+37005827,25745752,3
+125940552,25745752,4
+3818190,25745752,3
+reneew,25745752,1
+44150702,25745752,2
+57337773,25745752,3
+56823011,25745752,3
+134493698,25745752,3
+74139940,25745752,2
+viyawym,25745752,3
+12962566,25745752,4
+Ceeport,25745752,4
+122521606,25745752,2
+linda740,25745752,3
+49178777,25745752,2
+62748915,25745752,3
+71940900,25745752,2
+132010641,25745752,5
+65121555,25745752,2
+meltyice,25745752,3
+129838963,25745752,4
+doveshala,25745752,4
+120853771,25745752,3
+122341750,25745752,2
+134548968,25745752,3
+78076129,25745752,3
+stcheng,25745752,-1
+Melanmare,25745752,3
+2166582,25745752,3
+114435379,25745752,3
+49355592,25745752,3
+xiaoyuan_0310,25745752,-1
+shexihuan,25745752,4
+135126816,25745752,3
+134267805,25745752,3
+45223077,25745752,3
+133504650,25745752,1
+135118905,25745752,2
+134506096,25745752,3
+74015810,25745752,3
+122048396,25745752,3
+130583862,25745752,2
+134883298,25745752,3
+findingfinding,25745752,2
+61724448,25745752,3
+54540243,25745752,3
+lelouch1205,25745752,2
+63119655,25745752,3
+126980247,25745752,2
+flyingaway07,25745752,2
+48121857,25745752,1
+justforcrazy,25745752,3
+72711765,25745752,3
+41207080,25745752,2
+qioling,25745752,3
+57663536,25745752,1
+134541627,25745752,3
+94420378,25745752,3
+YuZhou10,25745752,1
+73641671,25745752,3
+59029214,25745752,3
+135012811,25745752,4
+5594345,25745752,2
+sharpay0421,25745752,1
+linlinhuangcc,25745752,2
+ruirui03,25745752,4
+131771729,25745752,1
+24406697,25745752,3
+42306867,25745752,1
+64694278,25745752,2
+44574545,25745752,2
+128596881,25745752,2
+WisdomWisdom,25745752,3
+57274360,25745752,3
+summersuy,25745752,3
+52387878,25745752,4
+gufengbyluoluo,25745752,1
+128063403,25745752,1
+clover121,25745752,3
+2617293,25745752,2
+134501526,25745752,3
+cen1126,25745752,3
+102906934,25745752,4
+53381748,25745752,2
+58134028,25745752,4
+134503726,25745752,2
+31760536,25745752,4
+86922521,25745752,4
+56453375,25745752,2
+134536472,25745752,4
+88961089,25745752,2
+134463446,25745752,4
+75503316,25745752,3
+71093640,25745752,3
+44034206,25745752,3
+NeverLate,25745752,3
+134339414,25745752,4
+44847644,25745752,4
+83521690,25745752,1
+130289224,25745752,3
+134519801,25745752,2
+134176594,25745752,2
+66744438,25745752,2
+103380368,25745752,4
+62664539,25745752,3
+70663980,25745752,3
+70569834,25745752,2
+75302221,25745752,3
+RuijiangANAN,25745752,2
+97243569,25745752,3
+64585406,25745752,2
+weiaimaohu,25745752,5
+131610704,25745752,2
+60818564,25745752,1
+fangxiaotang,25745752,1
+xlj741015,25745752,3
+anarchy4,25745752,2
+chankawai,25745752,3
+1443980,25745752,2
+alien-wo,25745752,-1
+63981568,25745752,4
+45012026,25745752,3
+flytomilan,25745752,4
+68377587,25745752,2
+103097591,25745752,3
+121340954,25745752,4
+134847229,25745752,3
+13646967,25745752,3
+3054635,25745752,3
+xcjustin,25745752,2
+Airy916,25745752,2
+90594252,25745752,3
+23901134,25745752,2
+130945059,25745752,3
+134589409,25745752,2
+132137179,25745752,2
+15262776,25745752,4
+56004220,25745752,4
+foreversusie,25745752,2
+26018442,25745752,3
+72040927,25745752,2
+84570571,25745752,-1
+59916348,25745752,3
+44893800,25745752,3
+63345984,25745752,1
+lily7735,25745752,3
+81268750,25745752,5
+tkf024,25745752,1
+akiralovedark,25745752,4
+62147836,25745752,3
+60380106,25745752,3
+130547881,25745752,3
+94030348,25745752,3
+lillianQ,25745752,3
+129224814,25745752,2
+envelopeyy,25745752,-1
+bear1943,25745752,3
+zhiyi-10,25745752,2
+42650469,25745752,4
+64817099,25745752,3
+2235528,25745752,4
+bondu,25745752,-1
+134500343,25745752,4
+44338549,25745752,4
+Wblb9,25745752,3
+44150163,25745752,1
+4570656,25745752,3
+MMMangojz,25745752,3
+54929944,25745752,1
+85508803,25745752,4
+64146161,25745752,1
+47885824,25745752,2
+77914516,25745752,3
+123004132,25745752,4
+73704277,25745752,2
+51901036,25745752,2
+121959506,25745752,3
+schumibati,25745752,3
+48668128,25745752,1
+134644116,25745752,3
+119991897,25745752,3
+14264766,25745752,1
+straighttree,25745752,4
+58932917,25745752,2
+movingcastal,25745752,2
+SylvanasDANG,25745752,3
+74934010,25745752,3
+134473693,25745752,1
+xuzhezhen,25745752,2
+63872937,25745752,3
+54300451,25745752,1
+huayou77,25745752,3
+36765167,25745752,2
+inqi07,25745752,-1
+134630891,25745752,4
+6914750,25745752,3
+96152194,25745752,3
+xyzzecho,25745752,3
+1428057,25745752,5
+130988431,25745752,3
+130988431,25745752,3
+134494053,25745752,3
+64202637,25745752,1
+yes.it_is_you,25745752,3
+11839371,25745752,2
+52650076,25745752,3
+Yulia,25745752,2
+62450111,25745752,1
+54724200,25745752,3
+58694417,25745752,-1
+67523596,25745752,3
+131887197,25745752,-1
+131514121,25745752,2
+89929180,25745752,-1
+41706695,25745752,1
+134617663,25745752,2
+Top129,25745752,3
+gaohame,25745752,3
+53806077,25745752,3
+81078473,25745752,3
+127024293,25745752,3
+84235049,25745752,2
+Kkkky,25745752,3
+65840249,25745752,1
+49576050,25745752,2
+4224058,25745752,1
+59729897,25745752,5
+121182825,25745752,1
+116420703,25745752,2
+134508428,25745752,1
+57524610,25745752,4
+5191781,25745752,5
+4228422,25745752,3
+dizhujiadehuaiz,25745752,5
+124618760,25745752,3
+xiyt8911,25745752,1
+51700552,25745752,3
+130411267,25745752,3
+findeva,25745752,2
+loveadoris,25745752,4
+loveadoris,25745752,4
+jiuyang,25745752,3
+1599200,25745752,2
+daiyon,25745752,-1
+134497633,25745752,2
+25427220,25745752,2
+wondershine,25745752,3
+70328279,25745752,3
+134563704,25745752,3
+84866154,25745752,2
+shuikanshuizhid,25745752,4
+133398715,25745752,3
+131882002,25745752,3
+134509898,25745752,2
+79168541,25745752,2
+51635015,25745752,5
+2628569,25745752,3
+47856992,25745752,1
+133382870,25745752,2
+gogo530,25745752,3
+vermouthsama,25745752,2
+131079832,25745752,1
+45673380,25745752,1
+echomei999,25745752,-1
+zhongdidi,25745752,3
+64898125,25745752,3
+strandjun,25745752,-1
+134525513,25745752,3
+3438956,25745752,3
+80207020,25745752,3
+manbujx,25745752,3
+52482326,25745752,3
+mushroom2011,25745752,1
+naomi_giveme5,25745752,2
+71411793,25745752,1
+61101997,25745752,4
+130687315,25745752,3
+91083170,25745752,4
+evachfu,25745752,3
+133970678,25745752,3
+8527993,25745752,1
+2218798,25745752,3
+129596076,25745752,1
+49631806,25745752,2
+46616178,25745752,3
+3942998,25745752,3
+BaBaBaL,25745752,1
+whitedove,25745752,3
+71250285,25745752,2
+3459381,25745752,3
+64202458,25745752,3
+134125596,25745752,5
+2869651,25745752,-1
+4527907,25745752,3
+sunny216,25745752,-1
+littlemonster93,25745752,2
+127722758,25745752,2
+54578280,25745752,2
+heylloveyou,25745752,4
+1442204,25745752,3
+cloudless,25745752,2
+ignory,25745752,4
+cognac,25745752,1
+kimiraikkone,25745752,1
+64253762,25745752,2
+30322114,25745752,3
+36669166,25745752,2
+tiazhihen290,25745752,3
+Corleone89,25745752,2
+tasha2011,25745752,3
+55566255,25745752,1
+119583067,25745752,5
+132773025,25745752,3
+kuangxx,25745752,3
+2850261,25745752,3
+71467416,25745752,5
+68201628,25745752,2
+tracy-cc-inter,25745752,4
+70892372,25745752,3
+126027447,25745752,2
+4099282,25745752,1
+122232791,25745752,3
+44159130,25745752,4
+103137045,25745752,2
+dearmasemma,25745752,4
+3653514,25745752,5
+4145186,25745752,3
+26360498,25745752,3
+maotumaotu,25745752,4
+133672618,25745752,4
+kiekyo,25745752,1
+65085377,25745752,3
+119447313,25745752,3
+129930035,25745752,3
+131545662,25745752,3
+45436450,25745752,2
+35861398,25745752,2
+badass420,25745752,-1
+133815233,25745752,2
+2009103,25745752,3
+32094102,25745752,-1
+80314628,25745752,3
+45041155,25745752,5
+xxberny,25745752,2
+132751120,25745752,2
+49598163,25745752,1
+38863592,25745752,1
+59195803,25745752,3
+47823127,25745752,2
+beautysheng,25745752,1
+douban20140316,25745752,3
+77629811,25745752,1
+120035781,25745752,4
+fanyiduo,25745752,2
+sunfloweroom,25745752,3
+28612508,25745752,4
+chinimei,25745752,3
+siseneg,25745752,3
+83507855,25745752,3
+45560390,25745752,1
+46370397,25745752,3
+68952248,25745752,2
+77278075,25745752,3
+3632876,25745752,2
+yangfengdouban,25745752,2
+43662496,25745752,2
+55609622,25745752,-1
+60369036,25745752,2
+69037503,25745752,3
+38957706,25745752,3
+64382911,25745752,2
+48823817,25745752,3
+Lul.z,25745752,1
+44140187,25745752,3
+93347677,25745752,2
+74053506,25745752,3
+shanliang-,25745752,3
+134298368,25745752,3
+4557702,25745752,3
+44404487,25745752,1
+49081433,25745752,3
+zhouty,25745752,4
+Eayo,25745752,2
+daisylikeu,25745752,2
+53179097,25745752,1
+134161390,25745752,1
+51461477,25745752,3
+yangquan0914,25745752,4
+56458916,25745752,3
+47851057,25745752,4
+jaymo,25745752,3
+kissmusic_520,25745752,3
+3655220,25745752,4
+68192173,25745752,2
+40436997,25745752,2
+1211567,25745752,2
+momopeach,25745752,-1
+134257829,25745752,2
+30569646,25745752,2
+chelseyzuo,25745752,2
+2329944,25745752,3
+47182696,25745752,3
+3891881,25745752,4
+30332673,25745752,3
+8701005,25745752,4
+66419543,25745752,3
+ziyunhwj,25745752,4
+6926584,25745752,3
+67524096,25745752,3
+80202749,25745752,2
+songjia0227,25745752,3
+58803580,25745752,1
+82580428,25745752,2
+50518823,25745752,1
+73315824,25745752,-1
+103902770,25745752,3
+56092754,25745752,3
+chloexile,25745752,2
+58858653,25745752,3
+50449318,25745752,3
+131545379,25745752,4
+lianbin,25745752,3
+4486712,25745752,-1
+29113494,25745752,3
+45245216,25745752,3
+37364562,25745752,-1
+68708613,25745752,3
+LOHANSYANG,25745752,2
+49888583,25745752,2
+76395595,25745752,1
+62986742,25745752,3
+53820803,25745752,3
+58808535,25745752,4
+59053134,25745752,3
+89789393,25745752,1
+kiddy_kiddy,25745752,2
+aivivi,25745752,3
+64835861,25745752,5
+62535133,25745752,1
+119567495,25745752,1
+127855614,25745752,4
+33575154,25745752,2
+59297910,25745752,1
+64038122,25745752,1
+ZWJ1996716,25745752,-1
+greyrj,25745752,3
+74980339,25745752,3
+64208531,25745752,4
+40611753,25745752,3
+omenjoy,25745752,3
+62412162,25745752,2
+catherinex217,25745752,3
+53620725,25745752,4
+2543597,25745752,1
+48808520,25745752,3
+131255183,25745752,2
+44866153,25745752,4
+mujiji,25745752,4
+ang0326,25745752,2
+127192204,25745752,3
+126028524,25745752,3
+niushansuan313,25745752,4
+46887415,25745752,3
+53796875,25745752,2
+daetou,25745752,2
+51763262,25745752,3
+lmonfxy,25745752,3
+HAVIAL13WEI,25745752,3
+126843454,25745752,2
+43444655,25745752,4
+52696145,25745752,3
+73626763,25745752,3
+62718942,25745752,-1
+chevalier7,25745752,2
+133356595,25745752,4
+51467153,25745752,1
+cookie777hide,25745752,3
+30830742,25745752,3
+larvae,25745752,2
+130819255,25745752,4
+84311404,25745752,3
+40067937,25745752,3
+62251744,25745752,2
+66753862,25745752,3
+kanxide,25745752,3
+57518893,25745752,3
+105409285,25745752,1
+52172902,25745752,3
+gracecang,25745752,3
+bestavil,25745752,5
+RainKa,25745752,1
+54102792,25745752,2
+4889372,25745752,2
+amy3189,25745752,3
+73399489,25745752,1
+KevinLiLI,25745752,-1
+xiaoang_0528,25745752,4
+summer19,25745752,4
+1412545,25745752,-1
+rabbit-bu,25745752,4
+lizhiqiang127,25745752,3
+kongguyouju,25745752,5
+119883443,25745752,2
+babelotus,25745752,4
+61192140,25745752,3
+73923502,25745752,-1
+67494005,25745752,5
+37448945,25745752,4
+Lena.Y,25745752,2
+4083854,25745752,2
+Sophiashen,25745752,3
+youdianhuanjue,25745752,1
+KloriaLee,25745752,3
+55835105,25745752,1
+SBtripleplus,25745752,2
+62307805,25745752,3
+apri__l,25745752,1
+MoEcyan,25745752,1
+alleni,25745752,4
+here-for-you,25745752,4
+84169034,25745752,3
+4644252,25745752,3
+72285462,25745752,3
+sunflowerlife,25745752,3
+65545122,25745752,1
+47368646,25745752,1
+50238914,25745752,3
+133895653,25745752,1
+rhine-dong,25745752,3
+Shirleywjz,25745752,2
+53161271,25745752,4
+70846256,25745752,1
+55578065,25745752,1
+133123250,25745752,3
+2081187,25745752,3
+miniswinner,25745752,2
+lintao,25745752,2
+65935512,25745752,3
+54328512,25745752,3
+52203973,25745752,4
+93985741,25745752,3
+Vivian1121,25745752,2
+65346497,25745752,3
+3682487,25745752,2
+dayna,25745752,4
+summerfay,25745752,4
+46767985,25745752,2
+88212348,25745752,2
+64189382,25745752,1
+43599155,25745752,2
+4154813,25745752,2
+shanyier,25745752,5
+thewindydays,25745752,4
+59380375,25745752,3
+130083039,25745752,2
+37521902,25745752,-1
+45347825,25745752,2
+2412177,25745752,3
+AliceTang27,25745752,2
+43120723,25745752,4
+51058811,25745752,3
+65398395,25745752,4
+fengyunxiongba,25745752,3
+65014224,25745752,2
+flower_N,25745752,3
+53220096,25745752,4
+42576821,25745752,3
+45088693,25745752,4
+128569083,25745752,3
+2541348,25745752,2
+92328135,25745752,2
+sheryl-tong,25745752,2
+69074609,25745752,3
+start20130208,25745752,3
+65746834,25745752,3
+starry_liu,25745752,3
+4516843,25745752,3
+3214906,25745752,-1
+119500718,25745752,1
+shadowsn,25745752,3
+79387387,25745752,2
+14333996,25745752,3
+92698550,25745752,3
+3662890,25745752,3
+103539396,25745752,3
+44028961,25745752,2
+50540787,25745752,2
+50565787,25745752,1
+lilishi,25745752,3
+131210032,25745752,3
+74795936,25745752,1
+jicheng1993,25745752,3
+94768134,25745752,4
+sunshinegirl510,25745752,3
+pbc0615,25745752,2
+1077635,25745752,3
+54626990,25745752,2
+3510245,25745752,1
+easyfeel,25745752,1
+46359852,25745752,2
+barrentime,25745752,3
+123025932,25745752,-1
+59544350,25745752,3
+howie720,25745752,2
+alal_clcl,25745752,4
+vannesse,25745752,3
+LotteMars,25745752,3
+yingcao,25745752,4
+77621226,25745752,3
+47081915,25745752,2
+102917800,25745752,1
+40177253,25745752,1
+guaitai19960115,25745752,4
+70605081,25745752,3
+59158463,25745752,2
+fanbucloud,25745752,3
+1250982,25745752,3
+48069693,25745752,3
+124142229,25745752,5
+87902611,25745752,1
+Julia-Lam,25745752,2
+68683258,25745752,3
+3894685,25745752,3
+cipherblue,25745752,3
+61279346,25745752,1
+123370298,25745752,3
+101504179,25745752,2
+49182642,25745752,3
+69006454,25745752,5
+59285494,25745752,2
+132191737,25745752,5
+49519003,25745752,2
+pygmalio,25745752,2
+62476289,25745752,1
+4500067,25745752,3
+96758494,25745752,5
+fangleaver,25745752,3
+1486195,25745752,4
+49704716,25745752,2
+3469841,25745752,2
+79745413,25745752,2
+88632956,25745752,1
+103375945,25745752,4
+kii-hong,25745752,1
+gutt727,25745752,2
+101393970,25745752,1
+26781077,25745752,3
+lian0070,25745752,1
+69033332,25745752,2
+68636133,25745752,4
+LIMEADE,25745752,2
+11606251,25745752,3
+96912190,25745752,3
+pitianhong,25745752,-1
+92353114,25745752,2
+roiroii,25745752,2
+violet412,25745752,3
+1724293,25745752,4
+8425896,25745752,4
+1886719,25745752,3
+DLZ0724,25745752,3
+87344337,25745752,5
+laura2zero,25745752,3
+60774527,25745752,-1
+9596432,25745752,2
+72044481,25745752,3
+Loveneverfail,25745752,2
+bodhi521,25745752,4
+48589119,25745752,2
+kristine0627,25745752,2
+37460295,25745752,2
+80797062,25745752,2
+62404811,25745752,3
+67883683,25745752,2
+81724665,25745752,3
+crow.,25745752,2
+1295718,25745752,3
+52852852,25745752,4
+49290705,25745752,3
+128454807,25745752,3
+51363497,25745752,1
+70914686,25745752,1
+133785442,25745752,2
+darchang,25745752,2
+83265970,25745752,2
+54192360,25745752,4
+60712166,25745752,3
+lovememebb,25745752,1
+Phoeny_C,25745752,4
+cyl0429,25745752,3
+immortal_light,25745752,2
+grass_tree,25745752,2
+tutuaichili,25745752,5
+2987938,25745752,3
+BritpopStarFeel,25745752,1
+yinyannan,25745752,3
+80348399,25745752,2
+cindyqiu90,25745752,3
+60131423,25745752,3
+starry_ripple,25745752,1
+42695400,25745752,2
+Fly123,25745752,2
+109446676,25745752,4
+51264317,25745752,3
+Novembersnow,25745752,2
+4592782,25745752,2
+3083714,25745752,4
+69037881,25745752,1
+133847224,25745752,-1
+nicer,25745752,3
+78539196,25745752,3
+63983660,25745752,4
+120259879,25745752,3
+130556036,25745752,3
+4405260,25745752,1
+p11,25745752,5
+51245049,25745752,1
+liuzhuyi,25745752,2
+34739133,25745752,3
+92402986,25745752,2
+92402986,25745752,2
+46707086,25745752,1
+giantpanda,25745752,3
+ss20,25745752,4
+84174018,25745752,3
+yangqiaoying,25745752,2
+45508468,25745752,1
+kellyleaf123,25745752,5
+chenquan91,25745752,1
+45034440,25745752,3
+3860913,25745752,4
+natsukinoheya,25745752,3
+28212620,25745752,2
+2118177,25745752,3
+2858055,25745752,2
+36003110,25745752,1
+wkwkaka,25745752,1
+128641812,25745752,2
+118036743,25745752,3
+nanacancer,25745752,4
+44028253,25745752,3
+zhangcj1224,25745752,2
+73376661,25745752,2
+65096830,25745752,1
+113306042,25745752,-1
+4621814,25745752,4
+39055689,25745752,4
+92957665,25745752,3
+missgreencelia,25745752,1
+55006908,25745752,4
+123858451,25745752,2
+62215389,25745752,2
+4612702,25745752,4
+lanmayday,25745752,3
+SunnyLuo,25745752,3
+flowerann,25745752,2
+52816785,25745752,4
+65386365,25745752,5
+56753356,25745752,3
+94823043,25745752,2
+3629483,25745752,4
+132945472,25745752,3
+49162215,25745752,3
+mydrean,25745752,2
+63044289,25745752,4
+67740587,25745752,4
+Nia23,25745752,3
+45575142,25745752,1
+songjie0515,25745752,3
+35109078,25745752,3
+chunqiushangui,25745752,3
+4324357,25745752,4
+59423518,25745752,5
+55978838,25745752,4
+ganganjj,25745752,2
+58953302,25745752,-1
+60776717,25745752,3
+71812808,25745752,5
+shuixieqingtai,25745752,2
+61981205,25745752,3
+dywinlo,25745752,1
+70379849,25745752,2
+93454462,25745752,4
+64008832,25745752,3
+41704887,25745752,-1
+81219638,25745752,2
+4611880,25745752,1
+55571747,25745752,2
+53363947,25745752,2
+33679145,25745752,3
+12034593,25745752,3
+51528187,25745752,3
+131416608,25745752,3
+ricbabe,25745752,3
+luyt,25745752,2
+amor22,25745752,-1
+101384243,25745752,1
+127787046,25745752,2
+onlyxia,25745752,1
+46437629,25745752,1
+78664563,25745752,3
+co1orful,25745752,2
+June-sunshine,25745752,2
+owwo,25745752,3
+L-muyan,25745752,2
+4361353,25745752,1
+53406061,25745752,4
+52924734,25745752,2
+30153657,25745752,1
+60935478,25745752,4
+qiqiyang,25745752,3
+59482177,25745752,3
+chendax,25745752,2
+49568833,25745752,2
+37153252,25745752,3
+69129266,25745752,2
+62995680,25745752,2
+63672153,25745752,4
+lily_3,25745752,3
+70967069,25745752,-1
+83215137,25745752,4
+njinian,25745752,2
+53433671,25745752,4
+66750034,25745752,4
+sunnybest,25745752,3
+75474486,25745752,4
+lovelessji,25745752,3
+chaosi,25745752,3
+71471459,25745752,4
+68701440,25745752,1
+x.sunday,25745752,3
+lpoihy,25745752,5
+EMonica,25745752,3
+34842803,25745752,4
+mengjianl,25745752,3
+zorrocw,25745752,4
+semo_oh_yeah,25745752,3
+leexiaoxiao,25745752,1
+122232631,25745752,2
+sleepinmorning,25745752,3
+sleepinmorning,25745752,3
+43318411,25745752,3
+67557903,25745752,5
+91882469,25745752,2
+ggiyang,25745752,4
+57258660,25745752,3
+58110049,25745752,4
+Carpediemnicole,25745752,3
+suannaimao,25745752,-1
+62662822,25745752,3
+61719854,25745752,4
+133207476,25745752,3
+69721760,25745752,3
+133533874,25745752,3
+liuyahuavv,25745752,2
+54043321,25745752,3
+asd1223123,25745752,3
+133662506,25745752,3
+touch1986summer,25745752,2
+56065914,25745752,3
+bodhivrksa,25745752,2
+annabelle98,25745752,4
+133658543,25745752,2
+Ken,25745752,2
+57371466,25745752,4
+PUNKKONG,25745752,-1
+evaine,25745752,4
+59803743,25745752,2
+64280895,25745752,1
+evara77,25745752,2
+4467480,25745752,4
+122759258,25745752,3
+104415200,25745752,4
+simpledeer,25745752,2
+48786722,25745752,4
+43628615,25745752,3
+73931385,25745752,1
+59776391,25745752,3
+52169768,25745752,2
+42859187,25745752,2
+42859187,25745752,2
+47118380,25745752,2
+88229223,25745752,5
+JuSang,25745752,3
+3465895,25745752,4
+132730973,25745752,3
+133635438,25745752,5
+toufaluan,25745752,4
+133581965,25745752,3
+133241079,25745752,5
+2916349,25745752,3
+133630833,25745752,5
+133629822,25745752,1
+yangjing113,25745752,4
+kazuyak1108,25745752,3
+Jackandfoureyes,25745752,2
+60419092,25745752,2
+53041046,25745752,2
+gingerlea,25745752,4
+133625168,25745752,3
+timonin,25745752,2
+125784671,25745752,5
+132730918,25745752,3
+xyzoi,25745752,4
+lulusea,25745752,1
+51929370,25745752,3
+2195435,25745752,2
+99404272,25745752,3
+66193180,25745752,3
+kansing,25745752,2
+57545593,25745752,3
+piscesm,25745752,3
+maggiememory,25745752,3
+dounageban,25745752,3
+50111172,25745752,2
+62436915,25745752,4
+SpancerM,25745752,4
+qiao517,25745752,2
+75360409,25745752,4
+39315197,25745752,3
+49370626,25745752,4
+131204726,25745752,3
+133556437,25745752,2
+78578037,25745752,3
+46867582,25745752,4
+65005592,25745752,-1
+57838355,25745752,3
+42783992,25745752,3
+60662764,25745752,3
+63192479,25745752,-1
+69266204,25745752,2
+35877941,25745752,2
+106384266,25745752,3
+133592324,25745752,4
+57048528,25745752,-1
+som3day,25745752,3
+113171403,25745752,3
+83881122,25745752,4
+45909488,25745752,2
+leng7.,25745752,3
+2079871,25745752,-1
+yuansu000,25745752,4
+102904949,25745752,3
+46140866,25745752,4
+50288784,25745752,-1
+48960199,25745752,3
+1611100,25745752,3
+2632722,25745752,1
+133515838,25745752,2
+46954044,25745752,3
+4509464,25745752,3
+121057597,25745752,5
+130053414,25745752,3
+84797100,25745752,3
+58373774,25745752,3
+66341284,25745752,3
+87790169,25745752,2
+wangxiaoma27,25745752,3
+xiiiiiiian,25745752,3
+Bran,25745752,3
+gongxiaolei,25745752,3
+77200977,25745752,3
+maybeland,25745752,4
+133564730,25745752,4
+40395493,25745752,4
+51197261,25745752,3
+60819367,25745752,1
+pisacane,25745752,3
+55321548,25745752,3
+54783406,25745752,-1
+46509168,25745752,4
+79858645,25745752,3
+38635851,25745752,4
+themoonforgets,25745752,2
+geniusjj,25745752,3
+74723978,25745752,2
+2848425,25745752,5
+nancyrocks,25745752,4
+mickeyj,25745752,2
+yidakefacaishu,25745752,3
+52834901,25745752,1
+65379257,25745752,3
+67838046,25745752,3
+MikaAU,25745752,2
+51471232,25745752,1
+Amolittlergirl,25745752,1
+3223179,25745752,-1
+54740327,25745752,4
+79951353,25745752,5
+43044150,25745752,3
+74559265,25745752,2
+2781564,25745752,3
+80064679,25745752,1
+43649399,25745752,4
+taoxiaomeng,25745752,2
+recordus,25745752,3
+2573784,25745752,2
+1432690,25745752,-1
+pupu_love,25745752,3
+61215427,25745752,1
+80727731,25745752,2
+68429541,25745752,3
+63008915,25745752,1
+77349857,25745752,3
+LarryCC,25745752,2
+iris1117,25745752,4
+120780634,25745752,1
+Naki1123,25745752,3
+iamkoptite,25745752,2
+bailuweishuang,25745752,3
+69917748,25745752,3
+120080740,25745752,3
+39364196,25745752,2
+43925619,25745752,-1
+yangyangjt,25745752,3
+61843859,25745752,3
+63777033,25745752,2
+63404258,25745752,2
+willicy,25745752,1
+loturis,25745752,1
+60012651,25745752,3
+spaceart,25745752,4
+94341296,25745752,4
+64561505,25745752,4
+57786267,25745752,3
+liyuchun521,25745752,4
+4247303,25745752,3
+40551404,25745752,2
+94008918,25745752,2
+49961036,25745752,4
+40112480,25745752,3
+91564466,25745752,-1
+3639168,25745752,2
+91606599,25745752,3
+xcorange,25745752,2
+afou,25745752,2
+1767400,25745752,2
+crowsz,25745752,3
+vikshare,25745752,2
+59599597,25745752,4
+133497592,25745752,3
+129251000,25745752,1
+94052787,25745752,4
+54989899,25745752,1
+64676598,25745752,2
+4415376,25745752,4
+47135774,25745752,2
+52214552,25745752,1
+58276313,25745752,3
+sj1_1ei,25745752,3
+66171470,25745752,4
+52431869,25745752,1
+57527976,25745752,2
+livelongandpros,25745752,3
+1428027,25745752,3
+musofan,25745752,3
+64063497,25745752,3
+84634589,25745752,3
+weijielin,25745752,2
+lydiaxanthe,25745752,4
+46540910,25745752,4
+little_stone,25745752,3
+72409759,25745752,3
+69855682,25745752,2
+zyqwendy,25745752,1
+eiyou,25745752,2
+4396937,25745752,3
+45653571,25745752,2
+2125053,25745752,3
+56952438,25745752,2
+53385321,25745752,3
+isnil,25745752,3
+71378283,25745752,3
+4379513,25745752,4
+51352320,25745752,5
+AMY-SHUFEN,25745752,3
+132166609,25745752,3
+68363649,25745752,2
+1401650,25745752,3
+3493096,25745752,3
+33010059,25745752,3
+flyoversky,25745752,3
+87488566,25745752,2
+57093382,25745752,2
+41636463,25745752,3
+amemiki,25745752,4
+62498869,25745752,4
+Jyuriko,25745752,3
+2783573,25745752,3
+ipci,25745752,-1
+lecay,25745752,3
+curenmu,25745752,-1
+54492768,25745752,3
+yunqiu,25745752,3
+2922921,25745752,4
+magicdreamin,25745752,3
+akifon,25745752,2
+61807648,25745752,2
+95186647,25745752,3
+38291713,25745752,3
+sonicxs,25745752,4
+83432844,25745752,3
+49251016,25745752,1
+joyjoyyu,25745752,4
+shijiabeini0701,25745752,1
+63176107,25745752,2
+ocov,25745752,4
+yu395813542,25745752,4
+ilovefashion,25745752,-1
+seven-land,25745752,2
+82914758,25745752,2
+4504076,25745752,3
+qu111,25745752,3
+1295507,25745752,5
+lovedust,25745752,1
+liuyuetong,25745752,3
+anoTherTeezy,25745752,1
+M2ciro,25745752,1
+75441561,25745752,1
+73758083,25745752,5
+120322125,25745752,1
+34385090,25745752,3
+wangwangwangran,25745752,4
+29228466,25745752,4
+her10ve,25745752,3
+64139432,25745752,3
+Leave_Summer,25745752,4
+FixtheShadow,25745752,4
+73645330,25745752,3
+58065564,25745752,1
+41927716,25745752,4
+52093514,25745752,2
+64171838,25745752,2
+kingiknow,25745752,3
+65037665,25745752,-1
+49298107,25745752,3
+yuri13,25745752,3
+71362286,25745752,3
+43522694,25745752,1
+1052133,25745752,3
+1052133,25745752,3
+102567750,25745752,5
+mountaindew,25745752,4
+75350674,25745752,2
+126845659,25745752,1
+kangecho,25745752,2
+58464066,25745752,-1
+1569342,25745752,1
+RyanSheckler,25745752,4
+CSO-Botasky,25745752,5
+lyl610327,25745752,2
+83461460,25745752,1
+54199069,25745752,4
+130111580,25745752,1
+49710983,25745752,3
+tracylk,25745752,2
+Franka,25745752,5
+1409570,25745752,1
+23675714,25745752,3
+59012176,25745752,3
+124735104,25745752,2
+65292306,25745752,3
+violetljj,25745752,3
+57446763,25745752,1
+jackie1211,25745752,1
+108404098,25745752,2
+4617488,25745752,3
+avygo,25745752,2
+Linc_F,25745752,-1
+64858326,25745752,1
+zsqsophy,25745752,4
+50620883,25745752,3
+muyi1988,25745752,4
+44995539,25745752,4
+79580095,25745752,3
+52521119,25745752,1
+forrestjiang,25745752,5
+75217622,25745752,1
+4291484,25745752,2
+122693544,25745752,1
+akirasama,25745752,4
+52129588,25745752,-1
+75140432,25745752,3
+kittydxd,25745752,1
+ys5259,25745752,2
+64578424,25745752,5
+53159276,25745752,2
+133208122,25745752,2
+61866931,25745752,-1
+127164338,25745752,2
+48632772,25745752,3
+phlunhai,25745752,3
+64083587,25745752,4
+55790945,25745752,1
+48945287,25745752,4
+hoterran,25745752,3
+strike1up,25745752,3
+ww0936,25745752,3
+parkson,25745752,4
+66168257,25745752,2
+66168257,25745752,2
+3305024,25745752,3
+73031414,25745752,3
+aimurol,25745752,3
+81441568,25745752,3
+68266271,25745752,1
+gegewu92,25745752,3
+67681903,25745752,3
+54239245,25745752,2
+42593023,25745752,1
+34774708,25745752,2
+4509171,25745752,4
+110504879,25745752,3
+60704811,25745752,2
+gemirai,25745752,2
+53068845,25745752,3
+41371729,25745752,1
+97705695,25745752,3
+82917990,25745752,3
+57446915,25745752,2
+34570824,25745752,2
+82095351,25745752,3
+anitanine,25745752,1
+59295882,25745752,3
+71373933,25745752,1
+50083570,25745752,1
+82028785,25745752,1
+68363266,25745752,1
+27884235,25745752,2
+78977201,25745752,1
+cookie-bear,25745752,3
+73993174,25745752,1
+stench,25745752,-1
+tianxianglouzhu,25745752,2
+121195542,25745752,5
+75322883,25745752,1
+42936334,25745752,3
+45305916,25745752,2
+120988299,25745752,2
+35776291,25745752,1
+kulilin,25745752,-1
+somuchinlove,25745752,2
+109800958,25745752,1
+48942866,25745752,3
+zylovenic,25745752,2
+40047821,25745752,4
+73288818,25745752,3
+94967102,25745752,4
+52772256,25745752,3
+SmallByeBye,25745752,4
+56973040,25745752,2
+79399194,25745752,2
+70509315,25745752,2
+72883424,25745752,3
+cynthiachang,25745752,2
+55799828,25745752,4
+90616646,25745752,4
+yuanweiru,25745752,5
+131195628,25745752,3
+91306799,25745752,5
+12182707,25745752,1
+ivyli33,25745752,1
+37460852,25745752,1
+53815748,25745752,4
+jshippo,25745752,1
+tulipwings,25745752,1
+101139541,25745752,3
+53124352,25745752,5
+49282329,25745752,3
+61263474,25745752,2
+127115764,25745752,1
+rimiam,25745752,1
+128373341,25745752,3
+57174556,25745752,4
+formyself,25745752,4
+ustyle,25745752,4
+16084893,25745752,3
+130937635,25745752,3
+lightrain,25745752,3
+51963014,25745752,3
+54016570,25745752,3
+69589198,25745752,4
+102633742,25745752,1
+82993911,25745752,2
+25268390,25745752,4
+47053055,25745752,3
+53897556,25745752,3
+81550547,25745752,3
+mainemay,25745752,1
+3476283,25745752,4
+AngelikaSigrid,25745752,1
+D8023520,25745752,-1
+34317519,25745752,3
+86469978,25745752,5
+33635351,25745752,3
+63136750,25745752,2
+BerryYeh,25745752,3
+40044511,25745752,3
+orangejiang,25745752,2
+AAAxiaowei,25745752,3
+toqueena,25745752,2
+OuTalK,25745752,3
+51735869,25745752,3
+51329457,25745752,2
+zwj514235,25745752,1
+54588630,25745752,3
+58921825,25745752,2
+75825490,25745752,2
+53195450,25745752,3
+nestle103114,25745752,3
+59749392,25745752,1
+37129050,25745752,1
+44475863,25745752,5
+uikeyzl,25745752,3
+ilovesusan,25745752,3
+33900366,25745752,3
+50328041,25745752,4
+hairh,25745752,2
+64208969,25745752,4
+55645521,25745752,4
+129286364,25745752,1
+52846207,25745752,-1
+Deepoxygen,25745752,1
+51191835,25745752,1
+kongzong,25745752,2
+sanwanbaozi,25745752,3
+luweiyan2012,25745752,1
+64537748,25745752,2
+HYQRZKLS,25745752,3
+janelovepeace,25745752,3
+56128139,25745752,5
+77233451,25745752,1
+BonjourEnid,25745752,3
+79372672,25745752,3
+128176597,25745752,5
+flylinklove,25745752,2
+133000864,25745752,1
+51386269,25745752,3
+133282268,25745752,3
+133263842,25745752,3
+133263842,25745752,3
+51392225,25745752,2
+119317544,25745752,3
+106639249,25745752,3
+wangleku0310,25745752,3
+mr-kill,25745752,1
+wlxcr,25745752,-1
+51607217,25745752,1
+3484897,25745752,3
+85347919,25745752,1
+122573291,25745752,5
+133254262,25745752,3
+122493414,25745752,1
+ly_1218,25745752,1
+ideal.yue,25745752,-1
+lolita_L,25745752,3
+49745050,25745752,3
+131752150,25745752,2
+mick3,25745752,2
+65468438,25745752,2
+65468438,25745752,2
+125105946,25745752,1
+122244041,25745752,2
+77567155,25745752,-1
+8872886,25745752,3
+asacat7insummer,25745752,5
+LXH88888888,25745752,2
+LuuuuC,25745752,1
+51075041,25745752,4
+54069821,25745752,1
+47068171,25745752,5
+Han-Lyn,25745752,3
+57606505,25745752,-1
+69222265,25745752,3
+xyleaf,25745752,-1
+zaidaoyang,25745752,4
+yohvi,25745752,2
+lingxie,25745752,2
+74981611,25745752,1
+58484976,25745752,2
+58484976,25745752,2
+58304901,25745752,3
+91139241,25745752,2
+93805140,25745752,2
+59106111,25745752,1
+72914221,25745752,2
+76726208,25745752,3
+48290239,25745752,4
+52231356,25745752,1
+59316993,25745752,1
+61715256,25745752,5
+51833370,25745752,3
+sunhaoxiang,25745752,3
+chenlingjie,25745752,1
+47568982,25745752,3
+63594336,25745752,3
+67740158,25745752,-1
+2436041,25745752,3
+114505500,25745752,5
+41236968,25745752,1
+82252494,25745752,1
+46467695,25745752,5
+sigurros123,25745752,2
+smcc911,25745752,3
+zasuny,25745752,2
+79111155,25745752,3
+78728709,25745752,1
+2791897,25745752,4
+Reslie,25745752,2
+63681662,25745752,3
+132529083,25745752,-1
+ke-ke,25745752,1
+127123698,25745752,3
+qinqinluotuo,25745752,3
+82150919,25745752,1
+she-is-momo,25745752,1
+edtos,25745752,4
+10392574,25745752,1
+68685051,25745752,4
+46155111,25745752,4
+avon0801,25745752,3
+50975959,25745752,3
+lilipop,25745752,1
+74719967,25745752,3
+jessiewho,25745752,2
+63502277,25745752,2
+8895439,25745752,3
+66596223,25745752,3
+53609658,25745752,1
+50127668,25745752,1
+zhaoyihong,25745752,2
+75838186,25745752,5
+47691460,25745752,2
+61005123,25745752,4
+aitong,25745752,-1
+49587951,25745752,3
+48819486,25745752,3
+79693169,25745752,2
+67019496,25745752,1
+34016067,25745752,3
+53959125,25745752,2
+49338594,25745752,1
+smilewsy,25745752,4
+4679905,25745752,4
+61151666,25745752,-1
+64335429,25745752,1
+2231648,25745752,4
+54613578,25745752,1
+63324585,25745752,3
+tetsujo,25745752,3
+49723254,25745752,2
+44796686,25745752,4
+12998796,25745752,4
+104815996,25745752,2
+68851529,25745752,4
+69307404,25745752,3
+84961149,25745752,3
+hdkoo,25745752,3
+gongs,25745752,5
+32657657,25745752,3
+58135467,25745752,2
+57211554,25745752,3
+mfswsungirl,25745752,3
+16954200,25745752,3
+55552346,25745752,2
+migesha,25745752,3
+122752212,25745752,3
+SJW620,25745752,3
+49919460,25745752,1
+37029015,25745752,3
+2610640,25745752,2
+49465758,25745752,2
+Vamo_D,25745752,-1
+83053215,25745752,3
+49087160,25745752,3
+qianyuqianxun-d,25745752,4
+huang9426464,25745752,3
+119454086,25745752,4
+89997756,25745752,1
+132770225,25745752,3
+90595685,25745752,3
+49061947,25745752,2
+stacy-agony,25745752,1
+59537499,25745752,3
+1617824,25745752,2
+45753459,25745752,3
+37121767,25745752,3
+89081852,25745752,3
+30836444,25745752,2
+ink1020,25745752,3
+61554035,25745752,5
+tanxiaomai,25745752,4
+sooooosweet,25745752,2
+46801772,25745752,4
+54764633,25745752,2
+69227741,25745752,2
+82884353,25745752,1
+75580319,25745752,3
+lisayang,25745752,3
+waasabi,25745752,1
+xiaosanye,25745752,-1
+wjww2128,25745752,3
+54054785,25745752,3
+42402561,25745752,3
+96867051,25745752,3
+togilj,25745752,3
+fengwanjing,25745752,3
+76346345,25745752,1
+hendiujiu,25745752,3
+vivienne1117,25745752,3
+63446871,25745752,3
+58354598,25745752,2
+121014962,25745752,2
+130798088,25745752,2
+132342909,25745752,2
+iamartist,25745752,3
+100364124,25745752,1
+54400244,25745752,2
+121562470,25745752,1
+69102270,25745752,1
+66567816,25745752,3
+catlover33,25745752,3
+schuni,25745752,3
+francessl,25745752,4
+qi7745723,25745752,2
+2346310,25745752,3
+oh2est,25745752,3
+73944113,25745752,3
+3821718,25745752,3
+3603638,25745752,4
+shannon_lxj,25745752,3
+tracytao,25745752,2
+3283267,25745752,3
+133132614,25745752,1
+hulahei,25745752,3
+3822591,25745752,3
+52838837,25745752,3
+xjnjenny,25745752,-1
+46240887,25745752,4
+41926358,25745752,4
+41926358,25745752,4
+78260740,25745752,2
+52312113,25745752,2
+53984450,25745752,2
+jndolphin,25745752,3
+113108849,25745752,4
+49460299,25745752,2
+76118152,25745752,5
+71426619,25745752,5
+65602766,25745752,1
+ximeir,25745752,2
+52806271,25745752,3
+75981147,25745752,5
+missying,25745752,3
+50687552,25745752,3
+51736506,25745752,4
+Yang0531,25745752,-1
+tomas-yang,25745752,3
+sisiliya,25745752,3
+131855831,25745752,3
+130858757,25745752,4
+elsieb,25745752,3
+97830721,25745752,4
+xuyudi,25745752,5
+janincepetrova,25745752,3
+2764486,25745752,2
+49678404,25745752,4
+54067198,25745752,4
+53778713,25745752,3
+122698083,25745752,1
+64673199,25745752,3
+Dawnen,25745752,3
+44451771,25745752,4
+122789808,25745752,3
+60350995,25745752,3
+129130401,25745752,5
+jean4you,25745752,2
+122879836,25745752,3
+71259453,25745752,3
+34704440,25745752,-1
+37052645,25745752,4
+57566137,25745752,4
+49148901,25745752,4
+liaoshun,25745752,1
+28141552,25745752,1
+132742952,25745752,4
+sasa926,25745752,2
+3845975,25745752,2
+87732252,25745752,2
+43447764,25745752,2
+3745423,25745752,5
+26557161,25745752,4
+zicheng05,25745752,1
+Vanilla.Y,25745752,3
+88262083,25745752,2
+moguduola,25745752,3
+59987958,25745752,3
+alex.tseng,25745752,4
+38866851,25745752,4
+46746652,25745752,2
+elliry,25745752,2
+53206314,25745752,2
+46825298,25745752,3
+lihan19970726,25745752,2
+115786111,25745752,1
+45099103,25745752,2
+61591717,25745752,-1
+75614710,25745752,1
+yhbx,25745752,3
+53019499,25745752,2
+heidiholic,25745752,1
+61126038,25745752,3
+43830625,25745752,2
+imsatan,25745752,1
+jizisudexiaowo,25745752,5
+fedorajiang,25745752,3
+lolipig,25745752,3
+stefanie3nana3,25745752,2
+120092472,25745752,2
+52593168,25745752,2
+ziyingme,25745752,2
+68146250,25745752,2
+mianma90,25745752,3
+121933047,25745752,3
+castlefloating,25745752,3
+maomao0504,25745752,3
+2991153,25745752,3
+61190847,25745752,2
+38505999,25745752,-1
+miaomiao0408,25745752,3
+129115423,25745752,2
+2212675,25745752,2
+shuiyun52,25745752,4
+64242792,25745752,2
+58003887,25745752,5
+38256301,25745752,3
+103235720,25745752,2
+52828296,25745752,4
+4648977,25745752,2
+71882881,25745752,-1
+132546726,25745752,1
+qiongdong,25745752,1
+semall,25745752,2
+70455730,25745752,2
+133074819,25745752,2
+gaokai3091354,25745752,3
+58833110,25745752,3
+EveFan,25745752,3
+2440486,25745752,4
+124815483,25745752,4
+zhiou,25745752,3
+46030353,25745752,1
+2852981,25745752,2
+tujimaimeng,25745752,3
+28130069,25745752,2
+professor,25745752,1
+41366816,25745752,2
+43998123,25745752,4
+55771326,25745752,3
+59373590,25745752,4
+60941930,25745752,1
+55773526,25745752,3
+54328345,25745752,5
+61452474,25745752,3
+96370254,25745752,2
+130595719,25745752,1
+90299967,25745752,3
+102158786,25745752,1
+72357492,25745752,2
+3661802,25745752,4
+68598855,25745752,2
+icetyle,25745752,4
+moontooth,25745752,5
+51067587,25745752,-1
+56976141,25745752,1
+41264823,25745752,3
+3801073,25745752,4
+absinthejt,25745752,3
+45286644,25745752,2
+chenxiangshu,25745752,3
+zouzhiruo,25745752,4
+horaprima,25745752,3
+3139782,25745752,3
+51593794,25745752,4
+helloer,25745752,2
+ruxiaoguo,25745752,3
+129167693,25745752,4
+kamoku,25745752,3
+40283915,25745752,3
+52280570,25745752,-1
+124239167,25745752,1
+2445728,25745752,-1
+Mxmshamrock,25745752,3
+triangle3,25745752,3
+tinytower,25745752,3
+64667835,25745752,-1
+133043824,25745752,4
+lubylol,25745752,-1
+45808338,25745752,1
+71186980,25745752,3
+shiqing008,25745752,3
+47258009,25745752,3
+74685314,25745752,4
+132790620,25745752,3
+yanglory,25745752,2
+nnyyamm,25745752,-1
+canmao,25745752,3
+Anitachung,25745752,5
+HEZHENW,25745752,1
+62971730,25745752,2
+55770875,25745752,3
+takemeasiam,25745752,2
+43335889,25745752,4
+68633540,25745752,2
+35961674,25745752,-1
+kimyoujin,25745752,2
+a.muriel,25745752,-1
+42531309,25745752,4
+54731687,25745752,2
+78745042,25745752,2
+53728053,25745752,2
+83462778,25745752,4
+76182952,25745752,3
+moonsssong,25745752,3
+46258886,25745752,2
+superpanv,25745752,3
+65041467,25745752,2
+hetaoxiaoniu,25745752,2
+sxqs,25745752,3
+64006704,25745752,3
+48332324,25745752,3
+55332677,25745752,4
+9662580,25745752,2
+53782984,25745752,1
+yxmj1982,25745752,2
+47924726,25745752,2
+76354393,25745752,4
+58959669,25745752,3
+48122099,25745752,4
+91120236,25745752,4
+63461045,25745752,3
+haochimaomao,25745752,2
+fameloo,25745752,3
+128095249,25745752,3
+97190506,25745752,2
+zl88918,25745752,4
+dy_holys,25745752,3
+72703568,25745752,3
+DearHuman,25745752,2
+46346813,25745752,3
+37229624,25745752,3
+58161520,25745752,2
+77055604,25745752,4
+yuanmavis,25745752,3
+aaron-cai,25745752,3
+38257497,25745752,2
+60092522,25745752,2
+57110839,25745752,5
+3524514,25745752,3
+123413024,25745752,3
+62133220,25745752,3
+anantitheist,25745752,2
+33000797,25745752,-1
+singing4u,25745752,2
+75909471,25745752,1
+iriswpy,25745752,3
+alternative,25745752,2
+declee,25745752,2
+102938310,25745752,1
+83359033,25745752,2
+52140378,25745752,2
+70336690,25745752,1
+xiaoism,25745752,3
+ijihoon,25745752,3
+47376134,25745752,3
+48849197,25745752,3
+50416946,25745752,4
+3907850,25745752,2
+weimeidejing,25745752,5
+82988329,25745752,2
+vienC,25745752,3
+42700509,25745752,4
+HyoA,25745752,3
+74390608,25745752,3
+ZZH1264473877,25745752,1
+gcc220,25745752,4
+66358226,25745752,1
+neverland1993,25745752,3
+universe_7,25745752,1
+59561773,25745752,3
+ArwenZhang,25745752,4
+cqmccb,25745752,3
+xiaoyijunzi,25745752,3
+19240319,25745752,3
+kimly,25745752,3
+AmoH,25745752,4
+Yun-TTTTT,25745752,4
+131784684,25745752,2
+FEILAMIDU,25745752,4
+44176449,25745752,3
+67815505,25745752,3
+panfangjie,25745752,1
+18656568,25745752,2
+silkworm-lucy,25745752,1
+cassieee,25745752,1
+49125583,25745752,5
+67536361,25745752,2
+fornirvanah,25745752,1
+79822624,25745752,1
+68918458,25745752,1
+48090448,25745752,4
+bluerider,25745752,2
+48610227,25745752,-1
+dearruby,25745752,4
+51159769,25745752,3
+46881075,25745752,2
+sy19960123,25745752,4
+103193931,25745752,2
+41417844,25745752,1
+121763445,25745752,1
+84614536,25745752,-1
+3508304,25745752,4
+huohuoa,25745752,2
+105153848,25745752,1
+74029688,25745752,1
+36109432,25745752,1
+71125053,25745752,2
+ducenia,25745752,4
+hxh1992,25745752,2
+75346809,25745752,2
+64061419,25745752,4
+toki,25745752,4
+yatata2003,25745752,4
+71673399,25745752,3
+piecelost,25745752,5
+59164586,25745752,3
+60551662,25745752,2
+71907210,25745752,4
+rainynut,25745752,2
+131011949,25745752,3
+lzh625,25745752,-1
+75180650,25745752,1
+3282401,25745752,3
+JaneHu,25745752,4
+69650617,25745752,3
+59596686,25745752,4
+64302220,25745752,2
+beikou,25745752,2
+45781335,25745752,3
+66203352,25745752,1
+53274811,25745752,-1
+90793123,25745752,1
+superrain,25745752,2
+44054948,25745752,4
+56008242,25745752,2
+59102121,25745752,4
+59970340,25745752,-1
+1838937,25745752,3
+126794982,25745752,2
+123516848,25745752,1
+2162550,25745752,2
+57521129,25745752,4
+yanglw,25745752,2
+38508819,25745752,3
+Rukia,25745752,3
+apr1lcoo,25745752,3
+Pomethos,25745752,-1
+cyohiko,25745752,2
+82805385,25745752,-1
+eveningbaby,25745752,3
+92480023,25745752,4
+52556384,25745752,2
+121998810,25745752,3
+125631230,25745752,5
+darlingpea,25745752,2
+german0z,25745752,5
+2196209,25745752,3
+51624487,25745752,4
+4912264,25745752,3
+4121303,25745752,4
+4121303,25745752,4
+markmong,25745752,3
+74269453,25745752,3
+123783477,25745752,4
+chuanxiaxiaolan,25745752,5
+132923762,25745752,1
+50413289,25745752,1
+132948296,25745752,5
+125428809,25745752,2
+NicoleDR,25745752,2
+58202321,25745752,4
+48016802,25745752,3
+13271937,25745752,3
+92930894,25745752,3
+eDDDie,25745752,5
+4568311,25745752,2
+54397830,25745752,-1
+34905844,25745752,4
+candyberg,25745752,3
+2787490,25745752,2
+sevenlan,25745752,1
+manyfish313,25745752,4
+2304016,25745752,4
+MENG-ARCHI,25745752,4
+35961263,25745752,4
+69122945,25745752,3
+119852340,25745752,3
+46138752,25745752,3
+liangfangfang,25745752,3
+tracy4125,25745752,4
+64816700,25745752,1
+koujiao,25745752,1
+50136328,25745752,4
+67887593,25745752,3
+42044541,25745752,-1
+callmeaaaaj,25745752,2
+4341731,25745752,2
+97682532,25745752,2
+45572268,25745752,2
+88605309,25745752,1
+122891503,25745752,1
+83538603,25745752,3
+46946776,25745752,1
+65125200,25745752,1
+liang1992,25745752,2
+40300523,25745752,5
+55466368,25745752,3
+danzi0105,25745752,3
+corssrainbow,25745752,-1
+DawnGreen,25745752,2
+zjy1222,25745752,1
+rainsun0607,25745752,2
+56141863,25745752,3
+63992080,25745752,4
+4463635,25745752,2
+132917728,25745752,5
+35450002,25745752,2
+kally_allen,25745752,3
+77214430,25745752,1
+1096867,25745752,4
+49663642,25745752,4
+vincentfuyu,25745752,3
+missliuyuan,25745752,4
+102770095,25745752,1
+56904781,25745752,1
+76893699,25745752,3
+126719955,25745752,4
+77238803,25745752,3
+81173543,25745752,2
+59135946,25745752,3
+detectivemmhy,25745752,2
+I191265,25745752,-1
+58083000,25745752,3
+33261301,25745752,4
+102636668,25745752,-1
+66975061,25745752,2
+51618406,25745752,2
+132196057,25745752,5
+47027912,25745752,5
+58737002,25745752,-1
+132853356,25745752,2
+61313964,25745752,2
+sike,25745752,-1
+2510900,25745752,3
+ZRWei,25745752,3
+84345266,25745752,1
+62651443,25745752,3
+samclafin,25745752,4
+131828372,25745752,3
+75678243,25745752,2
+56164553,25745752,3
+51277324,25745752,3
+63162453,25745752,3
+82437320,25745752,2
+gloria_sxt,25745752,2
+lilizhe,25745752,-1
+seankool,25745752,3
+55822752,25745752,5
+59317514,25745752,4
+48065174,25745752,3
+asmuer,25745752,2
+115097585,25745752,3
+1786605,25745752,1
+hongzhouche,25745752,3
+130564444,25745752,1
+47369566,25745752,2
+127283446,25745752,3
+3836230,25745752,3
+28524293,25745752,5
+53234728,25745752,5
+34454062,25745752,3
+130496328,25745752,1
+29898737,25745752,2
+57985657,25745752,1
+awaylovey,25745752,5
+107808793,25745752,3
+71883824,25745752,-1
+82350821,25745752,-1
+45593068,25745752,4
+lynnem,25745752,1
+lynnem,25745752,1
+93469131,25745752,2
+4224404,25745752,1
+1898612,25745752,3
+dodov,25745752,2
+132758231,25745752,3
+STleo,25745752,2
+130222270,25745752,3
+66438423,25745752,3
+57956919,25745752,3
+bigtailboy,25745752,1
+96305246,25745752,3
+lanmai,25745752,5
+132747299,25745752,4
+ilovedogand,25745752,3
+WenwenYoung,25745752,4
+PureLemon,25745752,5
+48510325,25745752,2
+69084711,25745752,2
+yzjoanne,25745752,3
+mic1990,25745752,4
+frena7,25745752,3
+Connie540511,25745752,1
+78851730,25745752,1
+kingszar,25745752,1
+56091106,25745752,4
+132433248,25745752,2
+hdjjys,25745752,2
+119742644,25745752,3
+35022452,25745752,4
+41078375,25745752,3
+ymli,25745752,2
+3174793,25745752,-1
+76075796,25745752,-1
+1805575,25745752,2
+67737299,25745752,3
+122288974,25745752,2
+frankie_sy,25745752,2
+132704696,25745752,5
+yue_cp,25745752,2
+yue_cp,25745752,2
+55468852,25745752,1
+104659789,25745752,4
+132657014,25745752,3
+63465084,25745752,2
+tianchuan,25745752,3
+2299452,25745752,5
+sspring,25745752,-1
+YM220,25745752,-1
+4628706,25745752,4
+102862602,25745752,2
+harryheyang,25745752,4
+42522085,25745752,3
+24515643,25745752,5
+maxmartin,25745752,5
+48873217,25745752,3
+52962046,25745752,2
+Midori1011,25745752,2
+janie225,25745752,2
+132636435,25745752,5
+48521258,25745752,2
+62690762,25745752,1
+48621293,25745752,4
+72188961,25745752,3
+61506735,25745752,4
+53238292,25745752,2
+35518301,25745752,3
+61568515,25745752,4
+3488671,25745752,1
+kim100702,25745752,2
+42320046,25745752,4
+56435930,25745752,3
+130532413,25745752,4
+28884615,25745752,4
+59015045,25745752,2
+54626237,25745752,1
+Scarlett--YJ,25745752,3
+24825242,25745752,4
+cappuccino0510,25745752,4
+120427530,25745752,4
+63802533,25745752,4
+lemonomel,25745752,1
+dingdingshine,25745752,1
+Jessica.clr,25745752,2
+born_to_die,25745752,1
+4363426,25745752,2
+77344802,25745752,2
+70386523,25745752,4
+60834286,25745752,1
+haloyt,25745752,1
+63867022,25745752,3
+itsmeymq,25745752,1
+49162787,25745752,2
+zlx199707,25745752,1
+83520823,25745752,2
+3371471,25745752,2
+roseandwater,25745752,4
+56839601,25745752,2
+46387542,25745752,3
+echozhanglijun,25745752,3
+CBX2012,25745752,3
+mmcv,25745752,1
+48568251,25745752,3
+48979950,25745752,-1
+40281526,25745752,5
+47745204,25745752,3
+shallowlands,25745752,4
+51622016,25745752,4
+126785351,25745752,1
+62952735,25745752,1
+2202605,25745752,3
+120394443,25745752,2
+snowyhowe,25745752,2
+helenhong,25745752,-1
+36206856,25745752,3
+132295390,25745752,2
+xiaoyantheone,25745752,4
+FakeCheetah,25745752,1
+93505964,25745752,1
+52241788,25745752,2
+52241788,25745752,2
+63012050,25745752,1
+47323555,25745752,1
+youlikethewind,25745752,2
+130531885,25745752,3
+83188339,25745752,2
+52004957,25745752,3
+57798377,25745752,4
+40811209,25745752,1
+NEWchenyi,25745752,1
+henry2004,25745752,3
+124914342,25745752,5
+61533902,25745752,-1
+5196178,25745752,3
+124764727,25745752,3
+81031962,25745752,2
+48811233,25745752,1
+42141886,25745752,4
+3202447,25745752,3
+115335906,25745752,3
+115335906,25745752,3
+92775688,25745752,4
+64724465,25745752,3
+42678497,25745752,3
+25686543,25745752,3
+131765556,25745752,3
+24368398,25745752,3
+132358159,25745752,3
+55416040,25745752,-1
+41936951,25745752,3
+24888847,25745752,1
+lovebigmac,25745752,3
+superbin1014,25745752,3
+68480529,25745752,3
+76781369,25745752,1
+49569915,25745752,2
+jasonwang,25745752,3
+107128082,25745752,3
+115853836,25745752,3
+akin11,25745752,2
+50420932,25745752,4
+68501402,25745752,2
+cajiln,25745752,4
+90201276,25745752,2
+VRoss,25745752,2
+senelu,25745752,3
+120860718,25745752,2
+xiaoxiaogui0425,25745752,3
+shifenjiandan,25745752,3
+little_cupid,25745752,3
+63707848,25745752,2
+132092156,25745752,2
+4490517,25745752,3
+4488058,25745752,4
+62213575,25745752,4
+moi.s,25745752,2
+otumnrio,25745752,-1
+126301446,25745752,1
+Summer0707,25745752,1
+lynn120915,25745752,3
+blusia4,25745752,1
+vinewood,25745752,3
+cowboybebop,25745752,2
+datewithstar,25745752,2
+27675083,25745752,2
+paper-airplane,25745752,2
+4544874,25745752,4
+72253469,25745752,1
+carytrading,25745752,4
+33323051,25745752,4
+sakurawinter,25745752,3
+sirk,25745752,1
+chen7777,25745752,1
+127711954,25745752,3
+XXXXKKKK,25745752,3
+53602743,25745752,-1
+54998759,25745752,4
+68862914,25745752,3
+50430721,25745752,2
+youyousina,25745752,4
+summerisabel,25745752,1
+tdlimon,25745752,4
+100040211,25745752,4
+77570203,25745752,3
+49194367,25745752,3
+70474463,25745752,3
+biluokuku,25745752,5
+131884478,25745752,4
+66366898,25745752,3
+73997619,25745752,3
+78776565,25745752,4
+yangyucn,25745752,3
+PulpPaprika,25745752,3
+hwhollywu,25745752,3
+AhLang,25745752,2
+58316398,25745752,2
+3086369,25745752,1
+mike1997,25745752,1
+58043118,25745752,2
+44573720,25745752,2
+36156854,25745752,2
+52240587,25745752,-1
+yu67459999,25745752,3
+115815838,25745752,3
+vincent-biubiu,25745752,1
+132271449,25745752,4
+34901213,25745752,2
+41566646,25745752,2
+Mr.Children06,25745752,3
+125732609,25745752,2
+day14,25745752,1
+hcii1022,25745752,3
+4549116,25745752,4
+83889430,25745752,2
+129766862,25745752,1
+122633809,25745752,4
+83364239,25745752,2
+SDx74,25745752,-1
+88298074,25745752,1
+55671161,25745752,1
+55671161,25745752,1
+78746228,25745752,4
+Shirleyjscy,25745752,3
+93465458,25745752,3
+79421710,25745752,4
+131551681,25745752,2
+115020307,25745752,2
+xiaolan1993,25745752,1
+5475581,25745752,3
+5800448,25745752,5
+106538681,25745752,1
+82669426,25745752,1
+flashingcrystal,25745752,3
+62178164,25745752,3
+juliantt,25745752,3
+88140661,25745752,3
+52191249,25745752,2
+74329790,25745752,3
+108601263,25745752,2
+121122291,25745752,3
+39224218,25745752,2
+127548896,25745752,1
+TiAmoWangQiXin,25745752,1
+82560223,25745752,3
+96358063,25745752,1
+84340930,25745752,5
+gejun9558,25745752,2
+46061693,25745752,3
+maydayclouds,25745752,2
+hymnjiao,25745752,3
+54858114,25745752,4
+128718320,25745752,3
+mirccccco,25745752,4
+123555998,25745752,3
+34423655,25745752,4
+119489564,25745752,3
+89474196,25745752,4
+35528479,25745752,3
+43300305,25745752,4
+121925320,25745752,2
+125992098,25745752,2
+116073490,25745752,2
+husi_,25745752,1
+120128695,25745752,3
+60349266,25745752,3
+91034588,25745752,3
+66193299,25745752,2
+49669519,25745752,4
+30842717,25745752,3
+59071520,25745752,3
+60877433,25745752,3
+58457804,25745752,1
+121967825,25745752,1
+mmk817,25745752,4
+49445419,25745752,3
+dinosaw,25745752,4
+127129249,25745752,4
+liunnn,25745752,4
+131470546,25745752,1
+simppydhl,25745752,3
+simppydhl,25745752,3
+75874484,25745752,3
+alicialin,25745752,1
+29442857,25745752,3
+120459070,25745752,3
+59493620,25745752,3
+67757068,25745752,1
+132181165,25745752,3
+36541079,25745752,2
+bellysu,25745752,1
+cynthia_nn_bbd,25745752,4
+58193787,25745752,3
+61133743,25745752,1
+youleren,25745752,1
+lindada,25745752,2
+80072984,25745752,1
+moon1880,25745752,4
+ziamy,25745752,2
+dannyZ,25745752,1
+42682123,25745752,2
+122212002,25745752,1
+42695669,25745752,1
+114469142,25745752,2
+Siegismund,25745752,3
+43388614,25745752,3
+38665191,25745752,3
+2333505,25745752,4
+blessfortune,25745752,5
+40140527,25745752,3
+131802543,25745752,1
+62921648,25745752,3
+2813670,25745752,3
+82520594,25745752,3
+34808540,25745752,1
+a326715,25745752,3
+hakana,25745752,1
+103122769,25745752,4
+57098623,25745752,3
+59005410,25745752,3
+79240212,25745752,3
+50501455,25745752,4
+43494097,25745752,1
+74512782,25745752,2
+odelete,25745752,4
+65359383,25745752,2
+66329364,25745752,3
+AkaSedative,25745752,3
+hehechishiba,25745752,1
+16910877,25745752,2
+51275778,25745752,1
+40239574,25745752,2
+51525281,25745752,4
+84266483,25745752,1
+67029502,25745752,3
+65832475,25745752,2
+44140767,25745752,2
+55295766,25745752,1
+liuxiaobamboo,25745752,3
+51718836,25745752,3
+modan89,25745752,3
+imthedevilwhoru,25745752,3
+113591698,25745752,3
+31438257,25745752,1
+61439975,25745752,1
+116157955,25745752,4
+74689331,25745752,4
+131863386,25745752,4
+Brown-,25745752,2
+57275922,25745752,2
+fancylyf,25745752,3
+woyougongfubcei,25745752,3
+tinaq,25745752,2
+57591346,25745752,4
+Joe1994,25745752,5
+baibao,25745752,3
+120594583,25745752,3
+61091671,25745752,1
+39297187,25745752,-1
+51741700,25745752,2
+45111580,25745752,4
+56223706,25745752,2
+chunfenghuayu23,25745752,1
+62730894,25745752,2
+60139322,25745752,4
+kangsang,25745752,1
+polyboot,25745752,3
+litianfei,25745752,-1
+2872141,25745752,2
+Alice.Z,25745752,4
+74261201,25745752,3
+ucigas,25745752,4
+126136697,25745752,2
+50574950,25745752,1
+3627066,25745752,2
+lovemyselflydia,25745752,1
+93365573,25745752,2
+Jalynnnnn,25745752,2
+68436569,25745752,2
+53169819,25745752,1
+37001196,25745752,1
+91495186,25745752,3
+27553815,25745752,4
+chaocai,25745752,3
+80596581,25745752,3
+60041907,25745752,3
+49224319,25745752,4
+y328675858,25745752,2
+119495221,25745752,3
+51909890,25745752,2
+lingweiran_0305,25745752,4
+sand_x,25745752,2
+2613759,25745752,-1
+metadiamond,25745752,3
+64110948,25745752,2
+orange12345,25745752,3
+gexiaotong,25745752,2
+beyondcen,25745752,2
+119123981,25745752,4
+130533856,25745752,2
+87820826,25745752,1
+3801810,25745752,2
+fshigh,25745752,1
+76998008,25745752,3
+61693828,25745752,3
+NirvanaHHH,25745752,1
+67672808,25745752,4
+60620851,25745752,-1
+128956153,25745752,4
+liushu1987,25745752,4
+lut06010938,25745752,4
+51009437,25745752,3
+52282042,25745752,3
+68311938,25745752,3
+daisy1202,25745752,1
+marciameng,25745752,4
+3444600,25745752,3
+50555792,25745752,2
+98591417,25745752,1
+56755911,25745752,2
+49165846,25745752,3
+49165846,25745752,3
+my1507,25745752,3
+kangmeng,25745752,3
+63208019,25745752,4
+luluoyi,25745752,3
+35071954,25745752,3
+68767704,25745752,3
+maoyufreng,25745752,2
+SennettRinn,25745752,1
+48355482,25745752,4
+51172081,25745752,4
+CRI515895808,25745752,1
+cStar,25745752,3
+48183944,25745752,3
+103959221,25745752,3
+106597439,25745752,2
+wangtingmm,25745752,-1
+30894678,25745752,2
+92790429,25745752,1
+justinwu0129,25745752,2
+shibiebie,25745752,2
+Kamelia-Jia,25745752,2
+51378440,25745752,4
+29946371,25745752,-1
+65543931,25745752,-1
+4336649,25745752,3
+76002759,25745752,3
+74670235,25745752,3
+Eurya,25745752,-1
+qlybaby,25745752,3
+JustCallMeCJ,25745752,2
+70477417,25745752,3
+guoyunya,25745752,3
+68239078,25745752,2
+60514515,25745752,2
+78399714,25745752,2
+130286254,25745752,3
+80902505,25745752,2
+130944431,25745752,1
+quanetta,25745752,3
+131999238,25745752,2
+yanleung1102,25745752,2
+53124953,25745752,4
+advender,25745752,4
+panyijun0428,25745752,3
+3468995,25745752,2
+119456408,25745752,2
+74479513,25745752,3
+10552823,25745752,-1
+88674325,25745752,3
+virlee,25745752,-1
+nandeyansu,25745752,3
+58140285,25745752,1
+63075072,25745752,4
+32105474,25745752,3
+77165635,25745752,2
+131814259,25745752,3
+47224670,25745752,4
+79757878,25745752,3
+khalilfongmlg,25745752,5
+khalilfongmlg,25745752,5
+121727190,25745752,3
+72491929,25745752,3
+47995488,25745752,3
+51850334,25745752,3
+120225888,25745752,2
+65301310,25745752,5
+shadow-walker,25745752,4
+zongjunxiao,25745752,3
+3310337,25745752,2
+gaizadizadi,25745752,2
+58641999,25745752,2
+58578065,25745752,5
+45965937,25745752,3
+3709827,25745752,3
+z_ana,25745752,4
+127782442,25745752,2
+63334997,25745752,4
+67624548,25745752,4
+waterblinkh2o,25745752,3
+flvacant,25745752,-1
+54903336,25745752,2
+55385860,25745752,3
+3546704,25745752,3
+63084049,25745752,4
+zoeyhe,25745752,3
+88425662,25745752,3
+128946011,25745752,4
+52327328,25745752,-1
+59679372,25745752,3
+64549779,25745752,2
+102146628,25745752,2
+127944882,25745752,3
+1380204,25745752,3
+130427491,25745752,2
+32462724,25745752,3
+tsebb,25745752,2
+38694734,25745752,3
+62987657,25745752,3
+37146663,25745752,3
+70140679,25745752,-1
+99053606,25745752,2
+68121895,25745752,3
+92697402,25745752,1
+keman,25745752,5
+123469142,25745752,2
+131822862,25745752,3
+114918691,25745752,1
+130742235,25745752,3
+d.t.,25745752,1
+84668219,25745752,5
+50928026,25745752,3
+77673608,25745752,2
+cathh,25745752,1
+40589857,25745752,2
+ASTIANGUO,25745752,1
+githagrey,25745752,4
+gumogu,25745752,3
+wanglizhi2014,25745752,4
+1487998,25745752,3
+jason61719,25745752,4
+For_desperado,25745752,1
+61641666,25745752,2
+131841419,25745752,2
+60885961,25745752,2
+44768876,25745752,5
+yolandamiu,25745752,5
+diorsunrise,25745752,3
+46603705,25745752,2
+rockymei,25745752,3
+hky2,25745752,1
+bbbonniechan,25745752,1
+124139068,25745752,3
+67913939,25745752,5
+sallycastle,25745752,3
+92871519,25745752,3
+45910142,25745752,2
+JOOOO,25745752,2
+2569325,25745752,-1
+63015769,25745752,2
+119806823,25745752,3
+66274003,25745752,-1
+1742631,25745752,2
+52101454,25745752,3
+53498411,25745752,2
+44865012,25745752,3
+53109456,25745752,1
+73502435,25745752,1
+listentomelody,25745752,4
+55504631,25745752,2
+69100403,25745752,2
+liz0326,25745752,2
+125543674,25745752,3
+58921736,25745752,1
+Pikachu1127,25745752,3
+46935032,25745752,2
+fengjiansun,25745752,3
+yazhou0906,25745752,2
+melentao,25745752,3
+68963714,25745752,3
+ocn27,25745752,2
+doublewater,25745752,2
+7069657,25745752,3
+31630076,25745752,2
+leexiaomu,25745752,1
+129454490,25745752,2
+qqskyaa126,25745752,4
+55353580,25745752,3
+114462057,25745752,2
+Coky.M,25745752,2
+yoyoinlove,25745752,2
+su1s,25745752,2
+abc1985,25745752,4
+cloudy1112,25745752,4
+lovedtomma,25745752,2
+grmy,25745752,3
+chickJzi,25745752,1
+128405814,25745752,1
+49761219,25745752,2
+56201857,25745752,5
+76666278,25745752,1
+89912354,25745752,2
+51679757,25745752,2
+4044749,25745752,3
+verstand,25745752,1
+42046990,25745752,1
+notbitchy,25745752,2
+April1st,25745752,-1
+17280012,25745752,2
+53045068,25745752,4
+127680038,25745752,2
+wansi,25745752,5
+131663027,25745752,1
+yuyun13,25745752,1
+67388709,25745752,1
+95017002,25745752,2
+suberry,25745752,3
+19826905,25745752,3
+103071122,25745752,3
+120605718,25745752,1
+92698705,25745752,1
+131201641,25745752,-1
+sukilai,25745752,5
+63435651,25745752,5
+129061968,25745752,2
+43521036,25745752,2
+45580580,25745752,1
+100039626,25745752,2
+43194409,25745752,3
+muouplay,25745752,2
+92140787,25745752,3
+lenville,25745752,4
+engamichelle,25745752,1
+104533245,25745752,2
+52199259,25745752,-1
+34792301,25745752,4
+6873140,25745752,-1
+jinjingjing,25745752,1
+crpily,25745752,2
+50655031,25745752,3
+131629655,25745752,3
+76187253,25745752,2
+3703647,25745752,2
+dante8977,25745752,2
+urannus,25745752,2
+3220986,25745752,-1
+4278092,25745752,4
+44244784,25745752,5
+57791239,25745752,3
+60178062,25745752,2
+42968297,25745752,2
+71938024,25745752,3
+72895182,25745752,3
+4472993,25745752,-1
+iloveEminem,25745752,2
+48623717,25745752,1
+124171387,25745752,1
+48470249,25745752,1
+58391749,25745752,3
+hejiaqiqi,25745752,2
+52750268,25745752,3
+82294419,25745752,2
+80126415,25745752,2
+Maze10888119,25745752,3
+ichicha,25745752,1
+1884591,25745752,4
+62278686,25745752,2
+imtutu,25745752,2
+47755926,25745752,3
+helvinyang,25745752,3
+wukundouban,25745752,4
+tammysoso,25745752,2
+44652708,25745752,4
+119864973,25745752,4
+foreverGJC8023,25745752,4
+echolovekc,25745752,5
+55996158,25745752,2
+97114018,25745752,2
+benjaminsmith,25745752,4
+mumuyanshi,25745752,5
+56487740,25745752,3
+43881902,25745752,2
+75381849,25745752,3
+119681463,25745752,1
+sheensheen,25745752,1
+127299263,25745752,1
+wrdeam,25745752,3
+91270444,25745752,2
+Yaya325,25745752,4
+120689172,25745752,3
+Robot.,25745752,2
+lazyariel,25745752,4
+104630878,25745752,3
+48132530,25745752,4
+30486993,25745752,3
+sogstad,25745752,4
+91126805,25745752,3
+39077146,25745752,3
+92372717,25745752,3
+94422178,25745752,1
+66461284,25745752,3
+shangshishuo,25745752,4
+64544380,25745752,3
+43777566,25745752,3
+QUANZHILONGLV,25745752,3
+97341954,25745752,3
+PennyZZZZZ,25745752,2
+82602677,25745752,2
+40749277,25745752,4
+70954347,25745752,4
+68014143,25745752,2
+hegelian,25745752,4
+118090358,25745752,1
+Ertu,25745752,4
+yousuosi77,25745752,3
+50933473,25745752,2
+youyiwanan,25745752,4
+57640790,25745752,3
+77457334,25745752,3
+45439094,25745752,1
+xixi_yuanxin,25745752,3
+Zealx,25745752,1
+WANGMINGZHITU,25745752,3
+120303134,25745752,5
+XY920521,25745752,1
+50686538,25745752,3
+78259832,25745752,3
+ltec,25745752,2
+missviar,25745752,3
+49757444,25745752,2
+103495727,25745752,3
+xiaoyunamoureux,25745752,2
+98585435,25745752,2
+75855875,25745752,3
+61557848,25745752,2
+130953760,25745752,1
+75513285,25745752,2
+50797855,25745752,3
+wuuuuyu,25745752,1
+50474968,25745752,1
+65535339,25745752,1
+48518100,25745752,3
+36227944,25745752,4
+37848644,25745752,2
+45575383,25745752,4
+52995358,25745752,1
+violette__zz,25745752,1
+129837323,25745752,3
+78825956,25745752,-1
+46936953,25745752,3
+47473114,25745752,1
+68634522,25745752,2
+EMOROAM,25745752,3
+79474538,25745752,3
+55834652,25745752,2
+50179203,25745752,3
+47203293,25745752,3
+71432525,25745752,3
+81937236,25745752,3
+mimitri,25745752,1
+lonelytravel,25745752,1
+126853775,25745752,3
+58606169,25745752,3
+2778486,25745752,1
+47509089,25745752,2
+girlsophia,25745752,3
+54478886,25745752,2
+41554573,25745752,2
+83513831,25745752,3
+52687755,25745752,3
+67383394,25745752,3
+seafoodss,25745752,3
+115696968,25745752,1
+71989717,25745752,2
+121143067,25745752,2
+momolaly,25745752,4
+34843395,25745752,3
+61834617,25745752,3
+131134300,25745752,3
+57815489,25745752,1
+92588251,25745752,3
+hellohuman,25745752,3
+TheSilvia,25745752,3
+31665022,25745752,3
+62761298,25745752,3
+102599770,25745752,2
+130451028,25745752,3
+71455047,25745752,3
+58512408,25745752,3
+57837799,25745752,1
+97187997,25745752,5
+120765012,25745752,4
+Liu_ya_wen,25745752,2
+sym15008250465,25745752,-1
+DominoRecording,25745752,1
+78540381,25745752,2
+53991249,25745752,5
+59326783,25745752,4
+jering,25745752,4
+130346728,25745752,5
+62241697,25745752,3
+45231027,25745752,3
+53326904,25745752,2
+AugustSeven,25745752,1
+tomop,25745752,2
+MaoMolly,25745752,2
+suisui214,25745752,3
+fulmina,25745752,-1
+M475522,25745752,3
+64308036,25745752,3
+50736090,25745752,2
+53998675,25745752,2
+58308335,25745752,1
+3408360,25745752,3
+119587434,25745752,3
+34862856,25745752,2
+4697106,25745752,3
+43516388,25745752,2
+128113494,25745752,2
+joyceiveryin,25745752,3
+33944850,25745752,-1
+wendycampbell,25745752,-1
+121013233,25745752,3
+42260192,25745752,4
+44996853,25745752,3
+58094716,25745752,2
+55556430,25745752,-1
+kaprilis,25745752,5
+momoyaoyaoyao,25745752,1
+3650818,25745752,1
+73721096,25745752,4
+shiori,25745752,1
+119282623,25745752,3
+62124340,25745752,2
+fish_peanut,25745752,3
+37316854,25745752,4
+93379036,25745752,3
+zhangquezi,25745752,2
+73125867,25745752,2
+83074556,25745752,1
+83074556,25745752,1
+cyanchen0708,25745752,1
+yaoyayue,25745752,3
+84285814,25745752,3
+131268122,25745752,3
+3758190,25745752,3
+56103306,25745752,1
+61088432,25745752,3
+56517266,25745752,3
+45755121,25745752,3
+freezinggl,25745752,2
+nova_hi,25745752,5
+50900186,25745752,2
+kiandaodao,25745752,3
+40371395,25745752,3
+a7925,25745752,3
+49282018,25745752,1
+103208454,25745752,5
+2625768,25745752,3
+74238143,25745752,3
+goback,25745752,2
+hahagoushinan,25745752,3
+liyins,25745752,5
+MEIKI,25745752,3
+45415867,25745752,3
+131148586,25745752,3
+songchunxue,25745752,2
+17111288,25745752,3
+26743316,25745752,4
+120570050,25745752,1
+101864611,25745752,3
+eggsoup,25745752,4
+103182067,25745752,3
+65124913,25745752,3
+32779785,25745752,5
+102992486,25745752,-1
+iamxy2,25745752,1
+2511370,25745752,3
+47170402,25745752,4
+81734505,25745752,2
+64821035,25745752,4
+lmtteleung,25745752,4
+oewnibiys,25745752,3
+81051670,25745752,2
+yzy-Amelie,25745752,3
+110025674,25745752,3
+120513686,25745752,3
+maiganer,25745752,3
+72777197,25745752,-1
+121429956,25745752,2
+51584268,25745752,1
+lixiangchao,25745752,3
+57442857,25745752,3
+54013917,25745752,-1
+50785660,25745752,4
+mingyuezhe,25745752,1
+2076258,25745752,2
+wyswallow,25745752,3
+Charlotte-e,25745752,3
+129678455,25745752,3
+60545329,25745752,3
+toiki,25745752,2
+56676061,25745752,3
+YOHaYY,25745752,-1
+66838621,25745752,1
+48793240,25745752,3
+125555811,25745752,1
+44162461,25745752,2
+npzhd,25745752,2
+cocoprincess,25745752,2
+65029164,25745752,3
+121807870,25745752,1
+63314716,25745752,4
+kim5257,25745752,3
+57275978,25745752,5
+127792178,25745752,3
+fm532,25745752,2
+46697808,25745752,3
+renkan09,25745752,2
+76027599,25745752,2
+chlich,25745752,1
+phoebe0_0nn,25745752,3
+71502534,25745752,3
+66172023,25745752,1
+ivanla,25745752,4
+130934527,25745752,2
+howensh,25745752,1
+59112359,25745752,4
+zzzzzmvp,25745752,1
+linanh8,25745752,5
+4593627,25745752,1
+coolgun,25745752,1
+1090281,25745752,-1
+77317619,25745752,3
+1279239,25745752,4
+41620486,25745752,4
+oracle218,25745752,3
+52356933,25745752,-1
+2266577,25745752,3
+70642572,25745752,5
+erosthefaith,25745752,2
+130458549,25745752,1
+meko1206,25745752,4
+1440772,25745752,1
+zoujie0409,25745752,1
+bladerunner2,25745752,3
+130717797,25745752,3
+island109,25745752,2
+59267126,25745752,3
+73948805,25745752,2
+89742637,25745752,4
+46845043,25745752,4
+44209806,25745752,-1
+97649336,25745752,3
+88158429,25745752,5
+lianyiaihong,25745752,3
+52839041,25745752,3
+15146438,25745752,2
+SnowyOwl1402,25745752,3
+130324639,25745752,-1
+ximoxc,25745752,4
+50607886,25745752,3
+119683375,25745752,2
+i7COLORS,25745752,4
+62203184,25745752,3
+53222131,25745752,1
+4505621,25745752,4
+52883244,25745752,3
+2191840,25745752,3
+92584891,25745752,3
+129291444,25745752,3
+58070269,25745752,1
+christine1212,25745752,3
+119673605,25745752,2
+zhxm,25745752,4
+95166626,25745752,2
+zc378810767,25745752,2
+130796283,25745752,3
+71143154,25745752,1
+81785913,25745752,2
+53527724,25745752,2
+58057227,25745752,1
+32314974,25745752,2
+2216643,25745752,2
+zuobei30,25745752,2
+zhixiayufei,25745752,3
+121647241,25745752,2
+64382868,25745752,3
+yeallingmay,25745752,2
+48959194,25745752,3
+95438826,25745752,3
+atomziyu,25745752,3
+3259792,25745752,3
+51517839,25745752,2
+119432670,25745752,2
+91827424,25745752,3
+130105525,25745752,3
+46722209,25745752,3
+64938793,25745752,4
+52463414,25745752,4
+129076389,25745752,4
+23450183,25745752,3
+1485397,25745752,2
+xxflyyh,25745752,3
+1115329,25745752,2
+a13019,25745752,3
+76618509,25745752,2
+119166720,25745752,1
+Rolin,25745752,4
+69701825,25745752,2
+64163569,25745752,2
+128742823,25745752,1
+sweetxy,25745752,3
+130998330,25745752,3
+130998619,25745752,3
+2111262,25745752,3
+Calin,25745752,1
+103201938,25745752,1
+janetbubble,25745752,3
+linden13,25745752,2
+50118082,25745752,3
+74346176,25745752,3
+69857353,25745752,3
+42585852,25745752,3
+75074135,25745752,2
+58698487,25745752,3
+dawanzi_c,25745752,1
+fursonfu,25745752,3
+121544957,25745752,-1
+67632250,25745752,3
+Doven,25745752,-1
+52535900,25745752,3
+senji,25745752,2
+honeynaga,25745752,3
+129327926,25745752,4
+konkonorange,25745752,1
+83952518,25745752,3
+2480244,25745752,1
+36452184,25745752,1
+130954002,25745752,3
+130938555,25745752,2
+68698952,25745752,3
+64304447,25745752,3
+130116430,25745752,4
+l_panda,25745752,3
+a632157547,25745752,3
+3322566,25745752,2
+km961228,25745752,4
+92637266,25745752,2
+49015861,25745752,1
+syh622,25745752,2
+130647398,25745752,2
+49000069,25745752,5
+52350621,25745752,4
+5580630,25745752,4
+zyx321,25745752,3
+48631155,25745752,3
+4727036,25745752,2
+69111679,25745752,3
+60729691,25745752,4
+77489603,25745752,4
+49364288,25745752,2
+79415032,25745752,3
+fairydiane,25745752,3
+2096526,25745752,2
+yunjixiong,25745752,1
+81767433,25745752,3
+44305889,25745752,2
+28481892,25745752,2
+68865059,25745752,3
+xmm3790,25745752,4
+itis-jia71,25745752,3
+anents,25745752,2
+125579549,25745752,2
+Rittle,25745752,2
+127080428,25745752,3
+billean,25745752,4
+130813893,25745752,3
+2393516,25745752,4
+46359237,25745752,3
+46359237,25745752,3
+2529749,25745752,-1
+129480352,25745752,4
+4620614,25745752,3
+smallamo,25745752,4
+59906456,25745752,1
+Jane1424335445,25745752,2
+69228313,25745752,-1
+4202021,25745752,2
+58338006,25745752,3
+Vengle,25745752,2
+40616987,25745752,2
+63980526,25745752,3
+66083647,25745752,3
+70800493,25745752,4
+66066845,25745752,4
+49995331,25745752,3
+xs_212121,25745752,3
+2986410,25745752,2
+54985336,25745752,4
+74614771,25745752,1
+Doodledoodle,25745752,4
+51862225,25745752,3
+nckid,25745752,2
+51316179,25745752,2
+62581194,25745752,1
+kevinrise,25745752,3
+60602246,25745752,5
+104359779,25745752,3
+33525277,25745752,3
+7542909,25745752,2
+61459253,25745752,3
+130756811,25745752,3
+66494720,25745752,1
+gegechenguang,25745752,1
+58503937,25745752,4
+87298656,25745752,4
+xpen,25745752,2
+41084789,25745752,2
+Tong323,25745752,3
+122514534,25745752,1
+92541865,25745752,2
+48259477,25745752,2
+fianglee,25745752,3
+2790567,25745752,3
+65361448,25745752,3
+melting-sugar,25745752,3
+71453468,25745752,1
+2980085,25745752,4
+58927688,25745752,2
+51285935,25745752,3
+35297543,25745752,3
+66272206,25745752,3
+73161604,25745752,2
+59925796,25745752,3
+jingyaZ,25745752,4
+122943812,25745752,3
+48581609,25745752,3
+sinkingzxl,25745752,1
+72425203,25745752,4
+72425203,25745752,4
+28468007,25745752,2
+16531942,25745752,1
+81089052,25745752,4
+64716585,25745752,2
+85078279,25745752,3
+natejumper,25745752,1
+19893059,25745752,4
+imay5,25745752,3
+45792472,25745752,2
+hello-malaimo,25745752,3
+74775337,25745752,1
+52803529,25745752,3
+121998536,25745752,3
+1141798,25745752,2
+wing1115,25745752,4
+50472438,25745752,2
+adiawang,25745752,2
+55626253,25745752,2
+59191856,25745752,-1
+128895829,25745752,4
+130744180,25745752,2
+119739812,25745752,5
+68490960,25745752,3
+Moredo,25745752,5
+130046819,25745752,3
+48781030,25745752,3
+reneeyang,25745752,2
+51639627,25745752,2
+54396392,25745752,1
+92589062,25745752,-1
+60963394,25745752,2
+130740344,25745752,-1
+91069970,25745752,4
+BubbleFoamFoam,25745752,4
+81410542,25745752,3
+83065264,25745752,2
+88038496,25745752,3
+1811097,25745752,3
+2646782,25745752,4
+63406200,25745752,3
+huahuadaisy,25745752,2
+130362078,25745752,2
+123095182,25745752,3
+3853276,25745752,4
+48666006,25745752,1
+52305498,25745752,1
+3511443,25745752,5
+67815073,25745752,1
+FORYUKI,25745752,2
+25509723,25745752,2
+3818284,25745752,3
+56622513,25745752,1
+2290969,25745752,3
+46640524,25745752,4
+75667669,25745752,3
+YUKi.R,25745752,-1
+77006697,25745752,2
+72607148,25745752,3
+lauraqi,25745752,-1
+72607148,25745752,3
+lauraqi,25745752,-1
+60107866,25745752,1
+yellow1010,25745752,4
+63781325,25745752,3
+luoweiliangchen,25745752,1
+47941065,25745752,3
+128128403,25745752,4
+46667318,25745752,2
+Super.Loogie,25745752,1
+zero_shrine,25745752,2
+Sikaontheway,25745752,3
+69685647,25745752,4
+yaoyao93122,25745752,3
+FK621,25745752,4
+42490816,25745752,5
+67501014,25745752,3
+78724272,25745752,3
+127342265,25745752,3
+42224337,25745752,3
+61350699,25745752,3
+55686212,25745752,3
+69428274,25745752,2
+44700374,25745752,3
+56098652,25745752,3
+48380480,25745752,3
+dyh1991,25745752,5
+68376149,25745752,4
+51777015,25745752,2
+47140746,25745752,4
+85191711,25745752,3
+rozendeer,25745752,3
+gisellaxu,25745752,1
+64974509,25745752,1
+4431281,25745752,2
+hugoshen,25745752,2
+122124788,25745752,2
+93666846,25745752,3
+qszone,25745752,4
+53793059,25745752,3
+130650007,25745752,3
+17351760,25745752,4
+58937191,25745752,3
+130271779,25745752,3
+45774569,25745752,5
+127704028,25745752,2
+53667913,25745752,3
+itistime,25745752,3
+49854958,25745752,-1
+71873614,25745752,4
+70268530,25745752,3
+eshenxian,25745752,3
+52944642,25745752,1
+azlin0707,25745752,-1
+63106534,25745752,1
+121051122,25745752,2
+jes77,25745752,2
+sashaz,25745752,3
+33006276,25745752,2
+82359622,25745752,3
+walkeri,25745752,4
+kevinyan13,25745752,1
+10898449,25745752,3
+3109810,25745752,3
+CSGrandeur,25745752,4
+good.speed.0,25745752,1
+34070623,25745752,3
+82336545,25745752,4
+63233265,25745752,2
+3715266,25745752,5
+129586433,25745752,1
+doreendd,25745752,1
+yiwang1979,25745752,2
+52243920,25745752,1
+ruan1117,25745752,3
+lilyigreg,25745752,4
+crucifix_fox,25745752,2
+2535721,25745752,3
+53632021,25745752,2
+129431204,25745752,-1
+jianmilid,25745752,3
+128578300,25745752,1
+18043217,25745752,1
+46630645,25745752,2
+connieqiao,25745752,2
+onidalee,25745752,3
+79542238,25745752,2
+60421761,25745752,4
+46292544,25745752,2
+sibyl234,25745752,4
+starever,25745752,5
+LyO-n,25745752,1
+jacysun,25745752,3
+Gladysxie,25745752,2
+zuowanyouzhuan,25745752,3
+metaboo,25745752,3
+50398781,25745752,3
+44146595,25745752,3
+Lucian_Liu,25745752,3
+62491933,25745752,3
+hynh,25745752,4
+amigo4978,25745752,3
+81294259,25745752,1
+bunnyx,25745752,2
+84032166,25745752,2
+104103884,25745752,-1
+130541613,25745752,3
+57483459,25745752,-1
+57181234,25745752,3
+49873308,25745752,1
+124596897,25745752,3
+66035004,25745752,2
+49334957,25745752,3
+64757557,25745752,2
+47674697,25745752,2
+39507649,25745752,3
+muteplant,25745752,4
+58422058,25745752,3
+58121967,25745752,3
+73034014,25745752,1
+zpp100,25745752,3
+53245934,25745752,2
+49368228,25745752,2
+leungsy,25745752,3
+67007418,25745752,3
+wlhjz,25745752,3
+shuojiushuoa,25745752,4
+4325552,25745752,2
+39125511,25745752,4
+45273360,25745752,2
+58624342,25745752,-1
+48171385,25745752,3
+11781856,25745752,2
+sophiee,25745752,3
+TLcecilia,25745752,4
+127852192,25745752,3
+85054294,25745752,3
+59984702,25745752,3
+122193967,25745752,3
+42961895,25745752,3
+114353086,25745752,3
+biqicynthia,25745752,5
+47781018,25745752,-1
+83152372,25745752,2
+66810723,25745752,1
+82834605,25745752,4
+52433072,25745752,2
+48372947,25745752,3
+45970589,25745752,2
+124822800,25745752,2
+26818314,25745752,1
+3837519,25745752,3
+chujiaren,25745752,5
+74866244,25745752,4
+123171990,25745752,2
+gongzitian,25745752,1
+2725739,25745752,2
+66179494,25745752,2
+122780834,25745752,2
+108583705,25745752,3
+Binnie_Allen,25745752,2
+fre7dom,25745752,3
+102691981,25745752,1
+84663038,25745752,2
+53827874,25745752,3
+weiwei8851,25745752,2
+40883091,25745752,4
+wxstar,25745752,3
+122498244,25745752,1
+47876948,25745752,2
+liheping0310,25745752,1
+Yuimokin,25745752,2
+67910969,25745752,5
+49750852,25745752,4
+108153127,25745752,2
+70880759,25745752,1
+62795539,25745752,4
+ys9017,25745752,3
+1377219,25745752,4
+119396712,25745752,4
+kouer,25745752,3
+79891044,25745752,2
+45840485,25745752,2
+77093571,25745752,1
+63695968,25745752,3
+74629238,25745752,5
+1634532,25745752,2
+33525558,25745752,4
+60570203,25745752,3
+Marybigday,25745752,3
+90587640,25745752,3
+cyhappy36507,25745752,3
+4460585,25745752,3
+102655437,25745752,2
+anymirror,25745752,-1
+128563651,25745752,1
+32501368,25745752,4
+xxyyxx6666,25745752,2
+44762347,25745752,5
+53811976,25745752,1
+eleveniris,25745752,3
+62475317,25745752,2
+shiro26,25745752,3
+46100445,25745752,1
+Reinyu,25745752,3
+45113254,25745752,1
+120461858,25745752,2
+31085938,25745752,3
+77222475,25745752,1
+3707909,25745752,4
+54076009,25745752,2
+circleni,25745752,3
+anniehoneys,25745752,1
+52282331,25745752,-1
+siriusa,25745752,3
+127225715,25745752,2
+67500085,25745752,2
+57808087,25745752,2
+32727331,25745752,1
+55348613,25745752,4
+101699165,25745752,-1
+115827848,25745752,3
+Cindylam,25745752,4
+130090686,25745752,5
+MaisieX,25745752,5
+30935515,25745752,3
+14433242,25745752,3
+particle_uv,25745752,4
+2572066,25745752,3
+28328996,25745752,3
+52836731,25745752,5
+chouchou0707,25745752,2
+105433832,25745752,2
+27091040,25745752,1
+50367533,25745752,4
+seaky007,25745752,2
+11189422,25745752,1
+36878088,25745752,3
+danger_tee,25745752,1
+72720290,25745752,2
+4223089,25745752,-1
+80657169,25745752,4
+53016984,25745752,3
+brair,25745752,3
+ydyie,25745752,2
+79162935,25745752,3
+46118793,25745752,4
+aidingyi,25745752,2
+45610141,25745752,2
+rena0115,25745752,3
+76697169,25745752,2
+35047264,25745752,3
+nan0521,25745752,4
+scaren,25745752,2
+wuyexingstars,25745752,-1
+1341854,25745752,2
+54471063,25745752,3
+53526098,25745752,3
+ocean929,25745752,4
+deardearcat,25745752,2
+yoan90,25745752,5
+7709401,25745752,3
+luominger,25745752,4
+52827533,25745752,3
+80234756,25745752,2
+60799185,25745752,4
+vicy,25745752,3
+3719256,25745752,1
+65013886,25745752,4
+80978036,25745752,3
+loloy,25745752,-1
+46456526,25745752,3
+71953826,25745752,4
+122172972,25745752,4
+konggupupu,25745752,2
+tour-z,25745752,3
+chilva,25745752,5
+slpnm,25745752,4
+44279253,25745752,1
+119544222,25745752,1
+L82yua,25745752,4
+yangyanyi_ash,25745752,1
+caibook,25745752,5
+62457534,25745752,2
+xyl412,25745752,3
+84109824,25745752,2
+xunuo828,25745752,2
+faye1031,25745752,3
+huangzj09thu,25745752,2
+86734236,25745752,4
+67615408,25745752,2
+xiuxiutiancai,25745752,4
+fantianru,25745752,2
+122073792,25745752,5
+63915564,25745752,4
+1816068,25745752,4
+unaunaquantro,25745752,2
+120390983,25745752,2
+98094232,25745752,3
+31536326,25745752,3
+61143334,25745752,3
+57432766,25745752,1
+72590868,25745752,4
+94391686,25745752,1
+71900698,25745752,3
+fuyunyajie,25745752,3
+DatewithJ,25745752,4
+chiyouchiyou,25745752,3
+61400757,25745752,3
+huajiemu,25745752,3
+32841660,25745752,3
+68189930,25745752,3
+79478918,25745752,-1
+67436408,25745752,3
+shouhuwodemao,25745752,1
+60020438,25745752,1
+75937419,25745752,2
+iris1217,25745752,3
+61624406,25745752,3
+58314727,25745752,2
+danielzhou776,25745752,3
+65540792,25745752,1
+57468187,25745752,2
+3733528,25745752,3
+cyan1231,25745752,2
+1257961,25745752,3
+68531336,25745752,2
+127091619,25745752,3
+qianlizi,25745752,3
+63725111,25745752,2
+69532573,25745752,1
+formula1forever,25745752,3
+130293620,25745752,3
+48194135,25745752,2
+128508241,25745752,1
+47026147,25745752,5
+an_lee1107,25745752,3
+39504280,25745752,3
+57693778,25745752,5
+49120314,25745752,2
+MrsTYMiao,25745752,1
+yjjtdcq200,25745752,4
+annerabbit1127,25745752,-1
+bluester,25745752,1
+abiteofpear,25745752,2
+intion,25745752,-1
+1797472,25745752,3
+119238411,25745752,4
+eryouyou,25745752,4
+61748227,25745752,2
+106588586,25745752,4
+44595410,25745752,2
+noheeyeon,25745752,-1
+2995739,25745752,1
+120197062,25745752,3
+MissPrissy,25745752,1
+64772999,25745752,1
+3275817,25745752,3
+51120293,25745752,2
+lyijo,25745752,2
+67077915,25745752,1
+79823709,25745752,3
+marchyan,25745752,3
+47993943,25745752,2
+49718559,25745752,-1
+52883779,25745752,1
+113999648,25745752,3
+70698244,25745752,3
+damadama,25745752,-1
+mytimemory,25745752,2
+121665406,25745752,1
+55548424,25745752,1
+maoxiaomao,25745752,2
+93294162,25745752,2
+lanlingwang,25745752,2
+47347613,25745752,1
+siyao1019,25745752,3
+63707938,25745752,1
+84620795,25745752,2
+miemierattbit,25745752,2
+59660757,25745752,1
+Olivia----CAFA,25745752,3
+53353893,25745752,2
+63648787,25745752,3
+49034223,25745752,2
+1665848,25745752,1
+85219572,25745752,2
+47265467,25745752,3
+65036885,25745752,2
+kinghaixin,25745752,2
+36199638,25745752,2
+33543846,25745752,2
+Liuchunna,25745752,2
+70548189,25745752,2
+ivyjune,25745752,3
+XXTong,25745752,1
+32187017,25745752,1
+42797773,25745752,2
+idoris,25745752,2
+3600974,25745752,2
+superman-cici,25745752,4
+129278118,25745752,3
+127424592,25745752,5
+snarry,25745752,-1
+khuntoria,25745752,3
+4448227,25745752,2
+60808695,25745752,2
+11294260,25745752,2
+51300433,25745752,3
+sophycc,25745752,1
+ihana,25745752,2
+79146336,25745752,3
+46088391,25745752,1
+59916344,25745752,2
+4107805,25745752,2
+68786476,25745752,1
+129098943,25745752,5
+67943333,25745752,5
+101206978,25745752,1
+TolyaD,25745752,2
+71374005,25745752,4
+sodaBai,25745752,2
+44005191,25745752,3
+81724184,25745752,-1
+80149039,25745752,1
+Mrs.Myself,25745752,3
+andrew628,25745752,2
+63875980,25745752,3
+miaommiki,25745752,3
+melongo,25745752,-1
+tidotuantuan,25745752,3
+127322008,25745752,2
+littleme.,25745752,1
+psychycokie,25745752,3
+chengzer,25745752,3
+yamaqiong,25745752,3
+52729351,25745752,1
+kinphone,25745752,3
+marinawang,25745752,1
+ingie,25745752,3
+46943216,25745752,3
+71014294,25745752,3
+papo,25745752,3
+115547734,25745752,1
+4857042,25745752,2
+71709733,25745752,2
+shuoshenm,25745752,1
+63093235,25745752,-1
+38919649,25745752,3
+127216522,25745752,3
+huhu_27,25745752,1
+glenwang,25745752,3
+kana_21,25745752,2
+56451458,25745752,3
+52175726,25745752,4
+38819398,25745752,3
+59993091,25745752,4
+wcwc,25745752,2
+58533261,25745752,4
+65645730,25745752,3
+85316996,25745752,5
+32448053,25745752,4
+81102769,25745752,2
+76364826,25745752,2
+57927830,25745752,2
+retraces,25745752,-1
+83377603,25745752,4
+63055497,25745752,2
+61313201,25745752,1
+shepherded,25745752,3
+aRmstrong-Kiss,25745752,3
+62732837,25745752,1
+80650615,25745752,3
+moqingran,25745752,1
+iamfine3q,25745752,4
+cyan_xi,25745752,2
+21879662,25745752,2
+kasaier,25745752,1
+alex047,25745752,1
+127933526,25745752,1
+littlepinkbang7,25745752,2
+71350146,25745752,3
+49498523,25745752,3
+sweetcold,25745752,1
+48690095,25745752,3
+59310960,25745752,3
+83261546,25745752,2
+71389371,25745752,2
+108821133,25745752,3
+4039085,25745752,5
+spf,25745752,4
+shouding,25745752,4
+51879316,25745752,3
+129157418,25745752,1
+63029644,25745752,3
+QINGFENGDIEWU,25745752,3
+4331850,25745752,3
+82911001,25745752,1
+qiqiyinyu,25745752,3
+fengxiaoyu,25745752,5
+fengxiaoyu,25745752,5
+juhse91,25745752,4
+quitejoey,25745752,4
+79196874,25745752,4
+xunjie,25745752,3
+48812180,25745752,3
+yumiaoxiaoyu,25745752,3
+77654718,25745752,2
+luciaandmayday,25745752,2
+J-1900,25745752,2
+twosquare,25745752,1
+yomoyoya,25745752,4
+Tyin,25745752,4
+81159938,25745752,-1
+Shelly0623,25745752,3
+69570266,25745752,2
+83985612,25745752,2
+68193127,25745752,2
+likaihere,25745752,3
+36470321,25745752,1
+12629797,25745752,3
+69735820,25745752,5
+59256917,25745752,2
+89079545,25745752,2
+74567166,25745752,3
+119163796,25745752,1
+44121315,25745752,3
+5747784,25745752,3
+60948643,25745752,3
+77121969,25745752,2
+123833891,25745752,4
+4519532,25745752,1
+Linfadi,25745752,3
+121194917,25745752,3
+lalaying,25745752,-1
+90562526,25745752,1
+auvauva,25745752,1
+83214911,25745752,-1
+victokyo,25745752,1
+122433778,25745752,1
+iris77yaxo,25745752,2
+83112121,25745752,3
+12031266,25745752,-1
+88259412,25745752,4
+jozenky,25745752,2
+claudiabaobeier,25745752,1
+46449280,25745752,3
+59379666,25745752,5
+wayephang,25745752,3
+74932520,25745752,3
+78669007,25745752,5
+53208620,25745752,-1
+62738742,25745752,3
+helennalove,25745752,2
+39351443,25745752,4
+124810728,25745752,3
+41796932,25745752,4
+fanink,25745752,2
+Toffifee,25745752,1
+sherrychen,25745752,4
+4455176,25745752,1
+53789576,25745752,2
+61707424,25745752,4
+1764476,25745752,4
+85367987,25745752,4
+44865825,25745752,2
+55833894,25745752,3
+57418911,25745752,2
+52883925,25745752,3
+57717411,25745752,2
+67258802,25745752,-1
+49057955,25745752,1
+oukani,25745752,3
+51489383,25745752,3
+shenyufan,25745752,2
+62976955,25745752,3
+70954003,25745752,3
+115999678,25745752,3
+102688832,25745752,3
+jingjiebaobao,25745752,3
+jingjiebaobao,25745752,3
+58258845,25745752,1
+63124174,25745752,3
+76903484,25745752,1
+58225486,25745752,3
+53364319,25745752,2
+75173977,25745752,2
+nealwzn,25745752,3
+96383885,25745752,3
+yinruoshui,25745752,2
+clever_trick,25745752,3
+60801673,25745752,2
+124456282,25745752,3
+1696802,25745752,4
+2367248,25745752,3
+64326137,25745752,3
+58442075,25745752,3
+cozy421,25745752,3
+67357105,25745752,3
+54041315,25745752,4
+yuebing123,25745752,1
+xiaobuding1111,25745752,3
+Dreamer_lbs,25745752,3
+58787934,25745752,2
+tudounvjue,25745752,3
+meskelil,25745752,2
+74617331,25745752,2
+83129118,25745752,1
+21042861,25745752,3
+xiaotaoyaoyao,25745752,2
+foleyfan,25745752,2
+39560896,25745752,4
+39522500,25745752,2
+49467804,25745752,3
+jianghucrab,25745752,3
+124442923,25745752,3
+campocampo,25745752,3
+Ss_33,25745752,2
+bankeed,25745752,3
+130004425,25745752,-1
+130004425,25745752,-1
+hanachloe,25745752,3
+42540023,25745752,3
+70488224,25745752,4
+toysfactory,25745752,-1
+91684216,25745752,2
+chengxiaoc,25745752,1
+60846829,25745752,-1
+49811100,25745752,3
+leepanda,25745752,2
+59405094,25745752,2
+MrVeritas,25745752,3
+Adrift_eternity,25745752,5
+naohai_dreamer,25745752,3
+1397901,25745752,3
+79735724,25745752,3
+41571785,25745752,3
+35921600,25745752,3
+xiaoranbao,25745752,3
+44782369,25745752,3
+3855637,25745752,1
+49443595,25745752,3
+82165536,25745752,3
+49976313,25745752,-1
+55561510,25745752,3
+119034354,25745752,4
+nvq7Gin,25745752,3
+36268247,25745752,3
+109314414,25745752,5
+63618729,25745752,2
+fangyuan1987,25745752,2
+76509928,25745752,2
+63142359,25745752,3
+57275563,25745752,3
+2773459,25745752,3
+122981054,25745752,3
+xzach,25745752,1
+64198085,25745752,5
+1818595,25745752,3
+ashvoice,25745752,1
+52461129,25745752,3
+75119142,25745752,4
+joyceyun0429,25745752,5
+greenlee,25745752,4
+129956212,25745752,3
+83731266,25745752,2
+wcfdh,25745752,5
+54158206,25745752,2
+61536666,25745752,2
+caoyang0926,25745752,2
+3894700,25745752,3
+71324630,25745752,2
+51481104,25745752,2
+vince_1216,25745752,2
+129898656,25745752,2
+123811379,25745752,5
+95572191,25745752,2
+99291502,25745752,4
+34031274,25745752,2
+nagle,25745752,4
+4630074,25745752,3
+2416285,25745752,4
+63277020,25745752,2
+nhe,25745752,3
+skyisquiet,25745752,2
+jean1jean,25745752,4
+sygzs,25745752,3
+melody1129,25745752,4
+H897120417,25745752,2
+3471163,25745752,3
+55799617,25745752,4
+guoshidongsheng,25745752,2
+73284069,25745752,4
+76905653,25745752,2
+72760801,25745752,3
+op_julie,25745752,1
+64663567,25745752,2
+unchan,25745752,2
+80553169,25745752,1
+58632896,25745752,1
+58632896,25745752,1
+122917042,25745752,2
+72261882,25745752,1
+47946624,25745752,3
+luococo,25745752,3
+jinsehuanian,25745752,5
+2804944,25745752,1
+43430222,25745752,1
+51720306,25745752,3
+92319009,25745752,1
+shadowfoxxuan,25745752,1
+meowchang,25745752,4
+yangziche,25745752,3
+37571327,25745752,3
+54898803,25745752,1
+claraye,25745752,3
+57673827,25745752,3
+crystal_zhao,25745752,3
+4758300,25745752,1
+shenxiyu,25745752,2
+54783024,25745752,3
+62982207,25745752,3
+127042716,25745752,2
+124872899,25745752,1
+115782978,25745752,2
+79930432,25745752,-1
+71296394,25745752,2
+3954422,25745752,3
+48990139,25745752,2
+princesssyn,25745752,1
+35703098,25745752,3
+michiyojun,25745752,1
+prin0602cess,25745752,-1
+mengshang,25745752,3
+joeysuri,25745752,2
+boboer,25745752,4
+102033140,25745752,4
+zzyjane,25745752,1
+69459951,25745752,4
+2539442,25745752,3
+75606824,25745752,1
+71411074,25745752,1
+60175128,25745752,3
+129469359,25745752,3
+63666378,25745752,3
+52281129,25745752,-1
+118847901,25745752,4
+77619808,25745752,5
+129245052,25745752,3
+124289200,25745752,2
+55333647,25745752,3
+34638576,25745752,1
+129834051,25745752,3
+84643794,25745752,4
+lee0402,25745752,3
+sherrytu,25745752,3
+zjinlove,25745752,3
+magiclj99,25745752,2
+montcalgary,25745752,1
+51287343,25745752,2
+2835334,25745752,2
+silentmini,25745752,3
+Nanamii,25745752,3
+shixuejiaa,25745752,1
+57167397,25745752,4
+61739872,25745752,2
+suntina,25745752,4
+129575965,25745752,2
+26538637,25745752,1
+hazelhsu,25745752,1
+71961011,25745752,1
+51861126,25745752,2
+41680917,25745752,4
+102408048,25745752,1
+1793879,25745752,3
+55351150,25745752,3
+ImLedaEar,25745752,3
+mozihua,25745752,2
+3368328,25745752,3
+jiangyuhang,25745752,3
+lilyhmmm,25745752,4
+44775342,25745752,5
+49392721,25745752,4
+66403603,25745752,4
+4672724,25745752,1
+cancer1990,25745752,3
+kazuyakiki,25745752,3
+51169832,25745752,1
+cicichen520,25745752,3
+53234077,25745752,2
+Pandaoreo,25745752,1
+jwlsxyww,25745752,1
+129763402,25745752,5
+1659552,25745752,4
+WangXuejing,25745752,1
+48321205,25745752,1
+129732129,25745752,3
+129743539,25745752,4
+59881458,25745752,1
+gongqiong,25745752,3
+69441215,25745752,3
+1320096,25745752,4
+uwtw,25745752,1
+73467942,25745752,2
+4609090,25745752,3
+simp1eb,25745752,1
+2514634,25745752,3
+jizunluosang,25745752,3
+102306841,25745752,-1
+3322909,25745752,2
+lovehebey,25745752,4
+sukiniu,25745752,-1
+56807111,25745752,3
+4544241,25745752,3
+89980305,25745752,4
+56918360,25745752,3
+ywinnie,25745752,3
+81506415,25745752,2
+43640979,25745752,4
+rickydna,25745752,3
+ning77,25745752,3
+2170073,25745752,2
+120884692,25745752,1
+39236308,25745752,3
+hsguo,25745752,2
+119183809,25745752,3
+Swagga,25745752,2
+renyouy,25745752,1
+80763276,25745752,3
+51007787,25745752,1
+fang0079,25745752,2
+Tony_MuYuan,25745752,2
+53048690,25745752,3
+52120205,25745752,3
+62102534,25745752,3
+Pixie_19,25745752,4
+59837919,25745752,2
+zmmmomo,25745752,3
+52489810,25745752,2
+53844095,25745752,1
+52736219,25745752,4
+qusibaxu,25745752,1
+2725757,25745752,3
+chillychilly,25745752,5
+43787915,25745752,3
+56199113,25745752,4
+maplepu,25745752,2
+84654420,25745752,3
+54261763,25745752,1
+majoselyqiujuan,25745752,2
+Precious0113,25745752,3
+31169595,25745752,3
+31799024,25745752,4
+66782031,25745752,2
+67586472,25745752,3
+66228994,25745752,1
+4538969,25745752,4
+little_Jia,25745752,-1
+59892824,25745752,2
+2262469,25745752,2
+dokodemodoa,25745752,3
+55021891,25745752,1
+44218001,25745752,4
+39148019,25745752,3
+127244778,25745752,3
+89928823,25745752,3
+54331010,25745752,3
+65919385,25745752,1
+56156366,25745752,2
+60095714,25745752,4
+122352396,25745752,2
+73995677,25745752,2
+foxyfoxyfoxy,25745752,2
+Ever1988,25745752,4
+120297845,25745752,3
+43833073,25745752,-1
+37321411,25745752,2
+81213276,25745752,4
+59286568,25745752,2
+50495894,25745752,3
+53503878,25745752,3
+77905933,25745752,1
+122598324,25745752,4
+51209806,25745752,1
+83230428,25745752,5
+66194891,25745752,2
+mxlzyd,25745752,3
+76189804,25745752,3
+hellooopq,25745752,4
+63485325,25745752,3
+50582932,25745752,3
+jun0728,25745752,4
+82630847,25745752,3
+41785476,25745752,2
+57139809,25745752,3
+40369337,25745752,2
+59378291,25745752,1
+51239744,25745752,4
+122696705,25745752,3
+52930373,25745752,1
+shijinxue,25745752,2
+lixiaosan,25745752,3
+48938846,25745752,4
+mscmiya,25745752,3
+orangelu,25745752,2
+3635055,25745752,4
+83183843,25745752,2
+81532007,25745752,2
+wuhuijing,25745752,3
+84000442,25745752,3
+124869246,25745752,4
+68880594,25745752,4
+73161188,25745752,3
+92062002,25745752,5
+tougholdboy,25745752,1
+6529519,25745752,3
+66454794,25745752,2
+3399583,25745752,2
+64705566,25745752,4
+echo-shuang,25745752,4
+58059620,25745752,2
+34132006,25745752,3
+52112521,25745752,2
+xunnn,25745752,3
+49900478,25745752,2
+ali000027,25745752,3
+3277855,25745752,3
+2726500,25745752,5
+AprilHo,25745752,5
+54069039,25745752,2
+39449677,25745752,5
+53132595,25745752,3
+VUCHUNG,25745752,5
+4364181,25745752,4
+57126178,25745752,2
+gb.8,25745752,3
+48079918,25745752,3
+Medusa_fc,25745752,3
+anlinxiong,25745752,3
+127253307,25745752,1
+128154666,25745752,5
+82442883,25745752,1
+49905032,25745752,1
+67381515,25745752,2
+44109266,25745752,3
+lichentrek,25745752,3
+78987156,25745752,3
+66338909,25745752,3
+86450815,25745752,1
+52151546,25745752,2
+74258577,25745752,3
+RealDigit,25745752,1
+gps730,25745752,3
+seuleme0328,25745752,2
+49402699,25745752,3
+1169851,25745752,1
+55272945,25745752,-1
+jet_plane,25745752,4
+zgd0914,25745752,2
+sunbiyu,25745752,3
+bluegrid,25745752,3
+v_vlll,25745752,3
+62781897,25745752,2
+83307271,25745752,2
+79129210,25745752,1
+willese,25745752,4
+KOPwangxi,25745752,1
+59532761,25745752,1
+52176942,25745752,5
+51171341,25745752,3
+lvxiaoying,25745752,2
+62428038,25745752,3
+119315449,25745752,1
+50371058,25745752,5
+50179673,25745752,2
+37957904,25745752,3
+83002189,25745752,4
+71015044,25745752,5
+2493980,25745752,3
+72781855,25745752,1
+52705241,25745752,1
+16693810,25745752,3
+liang00liang,25745752,2
+127386685,25745752,3
+74821561,25745752,1
+LavenderLyn,25745752,2
+92335297,25745752,3
+69655172,25745752,1
+66991726,25745752,1
+2108403,25745752,1
+51047226,25745752,3
+nebgnahz,25745752,3
+mojian,25745752,2
+44483182,25745752,3
+35149263,25745752,3
+100782149,25745752,2
+53455572,25745752,3
+67039087,25745752,3
+49949826,25745752,4
+weiguangyinghuo,25745752,3
+qikapu,25745752,4
+m_sting,25745752,1
+xfjzoe,25745752,3
+53604938,25745752,4
+129483894,25745752,5
+maxwell2place,25745752,2
+hanwujideshu,25745752,2
+w-leaf,25745752,3
+shirleychien,25745752,4
+feilong880928,25745752,4
+46598833,25745752,5
+62751729,25745752,3
+61960090,25745752,1
+57878986,25745752,2
+jennewong,25745752,1
+29271779,25745752,1
+hl558866,25745752,1
+55446081,25745752,3
+129473035,25745752,3
+60240016,25745752,2
+2728631,25745752,2
+3139153,25745752,4
+30639936,25745752,2
+winifred911,25745752,-1
+monster1000,25745752,3
+enmaying,25745752,3
+125978151,25745752,1
+nuriazsy,25745752,1
+Irice,25745752,3
+58994072,25745752,5
+hujie,25745752,4
+70895665,25745752,3
+dengleite,25745752,3
+ravinenoravine,25745752,2
+119951362,25745752,2
+64284331,25745752,3
+52184872,25745752,1
+lushrene,25745752,3
+51534769,25745752,4
+48436897,25745752,4
+moon123,25745752,2
+61660180,25745752,2
+129451784,25745752,3
+joyful_jojo,25745752,2
+antoniochen,25745752,2
+128613579,25745752,2
+61242770,25745752,2
+56175545,25745752,2
+51420490,25745752,2
+74971385,25745752,2
+buya,25745752,4
+69797335,25745752,4
+anison,25745752,3
+iamnoone,25745752,3
+65622658,25745752,5
+39288960,25745752,4
+jiangying,25745752,4
+jumpinglove,25745752,4
+85047671,25745752,3
+91349757,25745752,2
+moonface2,25745752,4
+52530638,25745752,4
+vicky_vampire,25745752,2
+lazzaro,25745752,3
+34311576,25745752,2
+10191174,25745752,3
+59079436,25745752,2
+57515812,25745752,1
+53083409,25745752,2
+aviva1984,25745752,4
+48678072,25745752,-1
+themostyu,25745752,1
+77350146,25745752,2
+xiaochongshan,25745752,1
+53370067,25745752,3
+rainbowstar,25745752,4
+63227542,25745752,2
+56909892,25745752,3
+52900844,25745752,3
+41724625,25745752,3
+49031985,25745752,3
+miu-Wolf,25745752,1
+48923783,25745752,3
+73681396,25745752,1
+2039225,25745752,2
+50836289,25745752,4
+54698620,25745752,1
+subtle11,25745752,4
+129131502,25745752,4
+52628024,25745752,3
+Slyviaaa,25745752,1
+54619955,25745752,1
+121614690,25745752,1
+4135603,25745752,3
+76249553,25745752,2
+4068403,25745752,5
+129388498,25745752,5
+huoxiaoliang,25745752,-1
+35742329,25745752,3
+58709298,25745752,2
+91356257,25745752,3
+115370500,25745752,4
+84343760,25745752,4
+justinran,25745752,2
+52747900,25745752,3
+HH-W,25745752,2
+58313086,25745752,3
+26545118,25745752,3
+51416132,25745752,2
+51201626,25745752,2
+ozell,25745752,2
+53075931,25745752,1
+35015558,25745752,5
+35890579,25745752,1
+4885959,25745752,3
+67907884,25745752,3
+qingxi52vv,25745752,4
+leixiaotian,25745752,3
+kirstyng,25745752,1
+67079655,25745752,4
+worshipful,25745752,3
+77071451,25745752,1
+mangoboi,25745752,1
+43653734,25745752,3
+12232981,25745752,3
+61727176,25745752,1
+16010745,25745752,3
+36563636,25745752,4
+inrelief,25745752,1
+43401466,25745752,3
+65037491,25745752,3
+2777801,25745752,-1
+67985857,25745752,1
+80161168,25745752,3
+nimenime,25745752,3
+49684901,25745752,3
+harrisonxu,25745752,2
+Zimoer,25745752,2
+2050459,25745752,3
+3930745,25745752,3
+lovecall,25745752,2
+127362939,25745752,1
+cold_sophie,25745752,2
+48805377,25745752,1
+etsdie,25745752,2
+yyangle,25745752,1
+65293424,25745752,2
+84207817,25745752,3
+11287144,25745752,1
+104823188,25745752,3
+77356251,25745752,2
+63570492,25745752,3
+34070573,25745752,3
+4624478,25745752,3
+79970005,25745752,-1
+56804273,25745752,-1
+57968371,25745752,3
+YeshuaComm,25745752,4
+olabaobao,25745752,4
+muxuewei1225,25745752,4
+84779636,25745752,3
+wonderful_days,25745752,4
+51304398,25745752,3
+28058521,25745752,3
+30917359,25745752,4
+kaarlo,25745752,4
+85155782,25745752,1
+1766764,25745752,3
+68515056,25745752,5
+34985418,25745752,1
+127728111,25745752,3
+62453659,25745752,5
+47305840,25745752,2
+58801917,25745752,4
+hello999,25745752,3
+59649901,25745752,1
+40763709,25745752,-1
+chyidan,25745752,2
+moxing,25745752,3
+Lou-yingying,25745752,4
+77758955,25745752,2
+63145913,25745752,4
+AmeliaZhu,25745752,-1
+hatesleep,25745752,4
+54150368,25745752,1
+Yozakura0514,25745752,5
+62392789,25745752,3
+54187449,25745752,1
+4498749,25745752,2
+ganzhejun,25745752,3
+127348779,25745752,-1
+49852947,25745752,4
+sburrow,25745752,2
+83769093,25745752,3
+64495212,25745752,3
+103533703,25745752,2
+40138023,25745752,3
+xiaolanhou,25745752,3
+68528163,25745752,3
+marsradiance,25745752,3
+54813786,25745752,3
+aladingmax,25745752,3
+3635990,25745752,1
+77092352,25745752,2
+51046227,25745752,3
+liuhaiyu,25745752,3
+2922610,25745752,3
+52416598,25745752,3
+neverecho,25745752,2
+54432513,25745752,-1
+71024831,25745752,2
+Obtson,25745752,2
+102885778,25745752,1
+daijialu1992,25745752,2
+51589844,25745752,2
+maxine-m,25745752,1
+yvonnezcl,25745752,4
+79488891,25745752,1
+1434867,25745752,3
+36803758,25745752,2
+66159119,25745752,1
+J.Z.Cat,25745752,3
+55822976,25745752,2
+93961949,25745752,1
+nelliejudy,25745752,4
+56288464,25745752,2
+81546429,25745752,3
+51496200,25745752,2
+65730802,25745752,5
+not_cat,25745752,1
+Lafa,25745752,2
+114998223,25745752,2
+60883936,25745752,3
+Colin_Wang,25745752,5
+53162708,25745752,3
+62497997,25745752,3
+49519192,25745752,3
+break-Trance,25745752,1
+74764381,25745752,3
+klpz,25745752,1
+51413524,25745752,3
+78473890,25745752,-1
+49740890,25745752,3
+1867292,25745752,3
+33020931,25745752,2
+45870400,25745752,4
+3392551,25745752,5
+69660376,25745752,-1
+58315379,25745752,3
+NEWzx,25745752,5
+49731512,25745752,-1
+Dandelion369,25745752,4
+lingqingchun,25745752,-1
+57990089,25745752,3
+29211262,25745752,2
+3646381,25745752,3
+79191929,25745752,2
+62157854,25745752,3
+92189909,25745752,2
+dance-L,25745752,5
+63693456,25745752,2
+36576530,25745752,2
+57542144,25745752,4
+2221275,25745752,1
+elinli00,25745752,4
+61196009,25745752,-1
+59572879,25745752,5
+63351658,25745752,1
+46093934,25745752,4
+sarabilau2,25745752,2
+40019918,25745752,1
+114689592,25745752,4
+rhe,25745752,5
+Clara_duoduo,25745752,3
+jessica-cyy,25745752,2
+30922286,25745752,4
+108241953,25745752,3
+57640868,25745752,3
+94683221,25745752,3
+56268506,25745752,1
+1307904,25745752,3
+48322771,25745752,3
+65388357,25745752,3
+46719875,25745752,3
+rainwatcher,25745752,2
+Dolores17,25745752,4
+48554628,25745752,2
+3314831,25745752,2
+alohala1988,25745752,1
+39104472,25745752,2
+azaizaizai,25745752,-1
+51866043,25745752,3
+49636760,25745752,2
+YuSu,25745752,3
+tanglu,25745752,1
+coffeejikou,25745752,3
+linlinzoo,25745752,3
+bielimoshengren,25745752,3
+lich0079,25745752,3
+62963887,25745752,2
+weiaiJaychou,25745752,3
+129183631,25745752,4
+nokia13792,25745752,1
+77641783,25745752,3
+yz326,25745752,2
+46360410,25745752,2
+pengyn,25745752,1
+emlia,25745752,3
+14818507,25745752,3
+36135879,25745752,1
+linn2034,25745752,3
+120733275,25745752,4
+59599576,25745752,3
+3565793,25745752,3
+Zukunft,25745752,3
+mokpo,25745752,3
+wfxs,25745752,3
+72291192,25745752,3
+65882756,25745752,3
+32503822,25745752,3
+zoekeke,25745752,4
+57797470,25745752,3
+43822211,25745752,3
+64660196,25745752,3
+youwanttobe,25745752,3
+libin1012,25745752,2
+89472918,25745752,1
+29345085,25745752,2
+yuuu,25745752,4
+104622893,25745752,4
+9324537,25745752,1
+58954568,25745752,4
+79437046,25745752,-1
+60261141,25745752,3
+2168902,25745752,3
+3461242,25745752,3
+LxiaoY0214,25745752,4
+1462552,25745752,-1
+lys613,25745752,4
+129164828,25745752,5
+Master.D,25745752,3
+46436848,25745752,3
+47397728,25745752,4
+mimi1710,25745752,2
+89464147,25745752,3
+aprilsunshine,25745752,3
+60590619,25745752,2
+3729649,25745752,2
+47338909,25745752,2
+2596903,25745752,3
+51599544,25745752,3
+carol1990,25745752,2
+warmic,25745752,-1
+70005321,25745752,3
+59963564,25745752,3
+nknemo,25745752,-1
+69683493,25745752,2
+4260081,25745752,2
+47047008,25745752,3
+emi2,25745752,4
+nymphlake,25745752,1
+74553230,25745752,3
+70929695,25745752,1
+49901356,25745752,4
+buguameng,25745752,1
+mrlinxiaotian,25745752,2
+51324278,25745752,3
+rachel511,25745752,5
+128409852,25745752,2
+69439535,25745752,3
+yueryu,25745752,3
+49082451,25745752,1
+Khalil006,25745752,2
+65590168,25745752,3
+46765542,25745752,3
+85064698,25745752,3
+4429031,25745752,3
+49853837,25745752,3
+59490797,25745752,4
+namik_ercan,25745752,3
+volantisff,25745752,3
+mayday_apple,25745752,3
+97387099,25745752,3
+102747303,25745752,1
+74816528,25745752,4
+44923935,25745752,1
+129106127,25745752,1
+A-fu-,25745752,2
+46435416,25745752,3
+zeldamoon,25745752,3
+48050417,25745752,3
+tomylovejane,25745752,3
+61287886,25745752,3
+66919459,25745752,1
+63577306,25745752,4
+hanxi_cy,25745752,3
+10663578,25745752,5
+caiwoshishei,25745752,-1
+57925894,25745752,3
+weihao,25745752,-1
+bof,25745752,3
+47309326,25745752,4
+51711938,25745752,2
+freenest,25745752,3
+14542773,25745752,4
+FourtyFour,25745752,1
+36963391,25745752,3
+sabina0116,25745752,2
+2793166,25745752,3
+54961969,25745752,3
+1956404,25745752,5
+79256798,25745752,3
+128614166,25745752,2
+pao76,25745752,3
+44820765,25745752,2
+82254270,25745752,3
+edisonmotata,25745752,4
+35308346,25745752,3
+wangzj0826,25745752,4
+aginny,25745752,3
+yangwutu,25745752,3
+85262730,25745752,5
+59524505,25745752,3
+128522293,25745752,3
+3298336,25745752,1
+47713342,25745752,3
+1951216,25745752,3
+55890752,25745752,1
+Icebella,25745752,3
+coolorita,25745752,3
+ProfThunder,25745752,3
+120911868,25745752,3
+justinliang,25745752,3
+51935302,25745752,2
+69942512,25745752,3
+54385062,25745752,2
+1630232,25745752,4
+4371910,25745752,5
+46209502,25745752,-1
+Reinhaid,25745752,5
+iris0619,25745752,4
+jjmking,25745752,4
+54085861,25745752,1
+klovez,25745752,-1
+2673019,25745752,3
+yumiaowater,25745752,1
+cswuyg,25745752,3
+evilQin,25745752,1
+4682542,25745752,3
+52411930,25745752,3
+49060139,25745752,2
+34805156,25745752,2
+56650965,25745752,2
+60822574,25745752,3
+2030465,25745752,2
+VastOpen,25745752,1
+49578244,25745752,2
+leave_left,25745752,3
+3666746,25745752,2
+37228447,25745752,1
+35384928,25745752,4
+119854281,25745752,2
+128616679,25745752,3
+58005910,25745752,5
+70126449,25745752,1
+Gorbachev,25745752,3
+han22d,25745752,3
+ximenjun,25745752,2
+guo19molly,25745752,1
+58276595,25745752,3
+49436106,25745752,3
+75061352,25745752,3
+62713868,25745752,3
+akinrosebaggio,25745752,3
+l-memory,25745752,3
+ccccccxtmmd,25745752,1
+hear_me,25745752,2
+41099035,25745752,1
+salmonnn,25745752,2
+tumengying,25745752,3
+gigiego,25745752,5
+71865681,25745752,4
+2875606,25745752,-1
+52992444,25745752,4
+maychendaxu,25745752,4
+55480709,25745752,3
+52199219,25745752,2
+58016622,25745752,3
+lichulei,25745752,-1
+60174975,25745752,1
+tlbin1989,25745752,2
+taozi9129,25745752,2
+yuruiruiruirui,25745752,1
+128122162,25745752,3
+winsunVU,25745752,2
+4474893,25745752,4
+july0007,25745752,3
+2003525,25745752,3
+camel1990,25745752,3
+80537833,25745752,3
+65519083,25745752,1
+63986854,25745752,3
+76216989,25745752,4
+novkey,25745752,3
+128551970,25745752,2
+somenothing,25745752,1
+46781917,25745752,-1
+36930975,25745752,3
+36805272,25745752,2
+90048757,25745752,3
+88648524,25745752,2
+kilo2009,25745752,3
+xianghang123,25745752,2
+qiufen,25745752,3
+56488254,25745752,2
+46053347,25745752,-1
+52636646,25745752,2
+cyee,25745752,2
+3353710,25745752,3
+jideknight,25745752,2
+zking1,25745752,4
+72987299,25745752,2
+movielove,25745752,3
+vinjun,25745752,3
+64809984,25745752,3
+128112253,25745752,1
+43080143,25745752,2
+115593440,25745752,4
+liyah,25745752,1
+43102366,25745752,1
+84403778,25745752,2
+37184514,25745752,3
+60260957,25745752,4
+48205123,25745752,4
+4507417,25745752,3
+65741833,25745752,1
+27244349,25745752,3
+30353667,25745752,3
+73160270,25745752,1
+62367310,25745752,-1
+1370640,25745752,3
+126702436,25745752,1
+78721241,25745752,1
+weinuo13,25745752,3
+91800949,25745752,3
+63620310,25745752,3
+30796047,25745752,1
+40931837,25745752,2
+41541704,25745752,3
+129015324,25745752,4
+50222666,25745752,-1
+55550016,25745752,2
+2326875,25745752,3
+89450129,25745752,4
+73856461,25745752,2
+45101654,25745752,-1
+77922789,25745752,3
+OMGZZ,25745752,3
+fragilelove,25745752,3
+99216791,25745752,3
+34204093,25745752,1
+58167224,25745752,4
+50058727,25745752,3
+50455323,25745752,2
+eugne,25745752,3
+57071643,25745752,2
+88082434,25745752,2
+83809414,25745752,1
+48662567,25745752,3
+3265509,25745752,3
+122458396,25745752,-1
+Haze1,25745752,3
+zhangjc223,25745752,5
+64527930,25745752,2
+52742930,25745752,2
+doveeyes,25745752,2
+46572033,25745752,4
+6901137,25745752,3
+79251740,25745752,3
+47537180,25745752,3
+seraphimzhao,25745752,3
+xiangjiaopian,25745752,1
+1935319,25745752,2
+49229512,25745752,3
+4267240,25745752,3
+Juno14,25745752,3
+63579399,25745752,3
+sam_wyc,25745752,2
+42725072,25745752,4
+41471449,25745752,3
+36047206,25745752,1
+Sep.7,25745752,2
+3075268,25745752,3
+102644530,25745752,3
+57530817,25745752,2
+4417096,25745752,2
+57526570,25745752,2
+overlook,25745752,4
+luyanan1943,25745752,2
+3897743,25745752,1
+alynlin,25745752,4
+insolitude,25745752,3
+50617120,25745752,3
+xzw0101,25745752,2
+58605674,25745752,3
+anniebear,25745752,3
+tea69,25745752,1
+ginnyisbest,25745752,3
+88364359,25745752,3
+56647071,25745752,2
+51243874,25745752,2
+50629690,25745752,2
+4509681,25745752,4
+3884732,25745752,4
+kuensun,25745752,2
+92004174,25745752,5
+127005452,25745752,2
+L.ccnightcat,25745752,1
+bitchdog,25745752,5
+128954101,25745752,1
+finally127,25745752,2
+51441724,25745752,2
+78787255,25745752,3
+82228274,25745752,2
+91498001,25745752,4
+11867512,25745752,2
+2595182,25745752,1
+jojo52,25745752,4
+28856648,25745752,3
+65646692,25745752,3
+48066058,25745752,2
+43956541,25745752,4
+46191550,25745752,3
+yaoly0709,25745752,3
+54378325,25745752,3
+sacpoh,25745752,3
+26638056,25745752,2
+47814886,25745752,3
+29472366,25745752,2
+nirvanaTaylor,25745752,3
+128736731,25745752,3
+81464535,25745752,3
+sunnyniumei,25745752,2
+2840439,25745752,3
+40970313,25745752,1
+4104741,25745752,1
+47649687,25745752,3
+62498014,25745752,2
+lisa_clover,25745752,3
+53644623,25745752,1
+123776993,25745752,4
+70961153,25745752,3
+zhangzhangzhang,25745752,2
+33296547,25745752,1
+airq7,25745752,3
+4590334,25745752,3
+Minus-M,25745752,4
+shizhe0314,25745752,3
+3410802,25745752,1
+35736307,25745752,3
+54122368,25745752,4
+arashiown,25745752,2
+yoli,25745752,2
+68919595,25745752,4
+sunnyujia,25745752,3
+127114017,25745752,4
+50611156,25745752,-1
+127224312,25745752,3
+54679074,25745752,3
+57811727,25745752,1
+asayaka,25745752,3
+leexqh,25745752,4
+49010548,25745752,2
+ivyuan,25745752,2
+sirian,25745752,3
+10648336,25745752,4
+Keli_Zhang,25745752,3
+40123576,25745752,3
+12573491,25745752,3
+83956629,25745752,1
+83956629,25745752,1
+66177481,25745752,2
+chishiba,25745752,1
+cjshangbuqi,25745752,5
+47365967,25745752,2
+keithw,25745752,4
+ohghost,25745752,3
+85174401,25745752,4
+yulebecky,25745752,3
+inky217,25745752,2
+35731766,25745752,1
+xcj87390521,25745752,4
+kimomo,25745752,3
+14777192,25745752,5
+120015305,25745752,1
+43975366,25745752,4
+121545000,25745752,1
+3685431,25745752,3
+52237701,25745752,3
+4594496,25745752,5
+jaromu,25745752,3
+52842297,25745752,1
+54790827,25745752,1
+lovelessmay,25745752,3
+huiha,25745752,2
+babysd,25745752,4
+1724013,25745752,1
+89994937,25745752,3
+45633165,25745752,1
+4696594,25745752,2
+Earnestina,25745752,3
+53906378,25745752,2
+16519492,25745752,3
+3455600,25745752,3
+tangyilun,25745752,3
+kofee,25745752,1
+87686821,25745752,1
+Alice798,25745752,1
+79741169,25745752,1
+xphone,25745752,4
+cgy0330,25745752,3
+98109919,25745752,-1
+Tayaya,25745752,5
+52913418,25745752,4
+keisa,25745752,4
+54012954,25745752,3
+muzixiaoyu,25745752,3
+76197558,25745752,2
+windhanhan,25745752,3
+17908241,25745752,3
+127938914,25745752,1
+74940071,25745752,4
+mornight,25745752,1
+easyong,25745752,2
+dingdaiwei,25745752,3
+1423262,25745752,3
+cengl,25745752,2
+lingdonging,25745752,3
+nannan1986,25745752,-1
+gedabing,25745752,2
+45454876,25745752,3
+4529745,25745752,3
+13445940,25745752,4
+3471096,25745752,1
+82307667,25745752,3
+luoqiuyue,25745752,3
+Ashleetiantian,25745752,3
+3917502,25745752,3
+zooooooj,25745752,1
+73530078,25745752,3
+45702896,25745752,-1
+93179604,25745752,2
+45817231,25745752,3
+46817425,25745752,-1
+49175410,25745752,3
+65283141,25745752,3
+59859111,25745752,1
+70214186,25745752,3
+39770268,25745752,3
+wojuguniang,25745752,3
+78899779,25745752,2
+auringonpaiste,25745752,3
+54991103,25745752,4
+Sun8023yy,25745752,4
+61534352,25745752,3
+Ryanzeng,25745752,1
+35051373,25745752,2
+45230961,25745752,2
+daidai1346,25745752,3
+szk13731584239,25745752,1
+37694256,25745752,3
+ilovelovered,25745752,4
+logboy,25745752,2
+37278837,25745752,3
+90244371,25745752,3
+57879215,25745752,3
+wgd0525,25745752,4
+shadowshen0319,25745752,1
+TIFFAY,25745752,1
+xiaoyu86,25745752,4
+aeroprince,25745752,3
+Thelma_,25745752,1
+gaoxingyeah,25745752,1
+50040990,25745752,-1
+kgm,25745752,1
+91216946,25745752,3
+mithlond,25745752,3
+43991440,25745752,1
+43539479,25745752,2
+loway,25745752,3
+52032404,25745752,1
+xghlg,25745752,1
+91201009,25745752,1
+42990777,25745752,1
+2187326,25745752,3
+2323600,25745752,5
+75369986,25745752,3
+75325570,25745752,2
+32019984,25745752,5
+14183259,25745752,3
+53791984,25745752,1
+leafxiaoying,25745752,2
+never-be-loser,25745752,4
+33294782,25745752,3
+51651994,25745752,3
+32566964,25745752,2
+50081676,25745752,4
+2724287,25745752,5
+misssummer,25745752,2
+69676532,25745752,2
+takemetohell,25745752,1
+52242741,25745752,3
+Wade619,25745752,1
+Lanelie,25745752,2
+bianhui,25745752,3
+eugene117,25745752,3
+56571196,25745752,4
+78857767,25745752,4
+3943602,25745752,3
+43717763,25745752,3
+66937674,25745752,1
+nanahjy,25745752,2
+47243761,25745752,1
+127226503,25745752,1
+maluguojiang,25745752,3
+kona,25745752,1
+59580012,25745752,2
+carnivalera,25745752,4
+21139926,25745752,3
+74511790,25745752,3
+Snoopeacer,25745752,5
+69133855,25745752,3
+63167572,25745752,4
+1268296,25745752,4
+49876674,25745752,3
+lemon_period,25745752,2
+renymartin,25745752,3
+loveirina,25745752,1
+grani_air,25745752,1
+84530034,25745752,3
+123394682,25745752,3
+18983980,25745752,1
+62926962,25745752,3
+xjun,25745752,1
+2750624,25745752,-1
+xiaoranran,25745752,1
+60894356,25745752,4
+56369223,25745752,2
+HXYu,25745752,3
+chenshiqi,25745752,3
+93478333,25745752,3
+67287207,25745752,2
+mrcandy,25745752,4
+xiaocheng88,25745752,3
+75298444,25745752,1
+71145132,25745752,2
+128521119,25745752,3
+maorui,25745752,3
+56678240,25745752,1
+71506125,25745752,4
+128748521,25745752,1
+63946270,25745752,1
+4531781,25745752,2
+87327748,25745752,3
+48414241,25745752,2
+46411162,25745752,3
+108610860,25745752,3
+cy-yeah,25745752,2
+14113539,25745752,2
+2446032,25745752,1
+64819804,25745752,3
+minmin106,25745752,3
+4800478,25745752,2
+44646589,25745752,2
+49128296,25745752,1
+Fayviola,25745752,1
+27783640,25745752,4
+44597595,25745752,3
+54585048,25745752,2
+simonnye,25745752,2
+simonnye,25745752,2
+susanyezi,25745752,4
+84960809,25745752,2
+38105854,25745752,3
+62591475,25745752,3
+sumo-zy,25745752,3
+128739239,25745752,-1
+dear-lc,25745752,2
+tina870704,25745752,3
+78638741,25745752,1
+heydzi,25745752,2
+128271168,25745752,4
+64659361,25745752,3
+78445664,25745752,2
+48115281,25745752,3
+blachkitty,25745752,4
+shaoyi,25745752,3
+swmzzz,25745752,4
+luciaedekuai,25745752,2
+43372236,25745752,3
+59471293,25745752,2
+78896312,25745752,3
+81979053,25745752,2
+58982995,25745752,2
+1273166,25745752,3
+64403814,25745752,3
+2135257,25745752,3
+81336001,25745752,3
+57818340,25745752,-1
+4191076,25745752,1
+yytaizi,25745752,3
+53909669,25745752,1
+43342177,25745752,1
+W_wanna_Show,25745752,1
+30435959,25745752,3
+huhu227,25745752,1
+44365763,25745752,2
+83885196,25745752,1
+56890247,25745752,3
+lcpeng,25745752,2
+121858716,25745752,-1
+Fulllove,25745752,3
+xuyuying91,25745752,3
+90678564,25745752,1
+60825742,25745752,3
+deaddao,25745752,1
+43096733,25745752,3
+55496858,25745752,1
+yujianxiaoben,25745752,1
+121042228,25745752,3
+77883575,25745752,3
+deelop,25745752,2
+Jenn__ifer,25745752,3
+54889228,25745752,3
+72480107,25745752,3
+43062560,25745752,2
+ziyu0802,25745752,4
+29398491,25745752,3
+62253613,25745752,3
+68260270,25745752,4
+91303025,25745752,3
+41375652,25745752,4
+37546577,25745752,1
+68211622,25745752,3
+yue17years,25745752,-1
+14168896,25745752,3
+43269770,25745752,3
+50030620,25745752,4
+istas,25745752,4
+59220796,25745752,1
+ev3ve,25745752,2
+kweer,25745752,2
+llahx,25745752,3
+huxzhao,25745752,2
+3719378,25745752,-1
+53414901,25745752,4
+tyfevan,25745752,3
+50924648,25745752,3
+41375493,25745752,1
+chewick,25745752,3
+93299177,25745752,3
+PIERO1208,25745752,1
+33921766,25745752,3
+TaTaxxxx,25745752,2
+anlovesweeets,25745752,1
+3372236,25745752,4
+66800718,25745752,1
+58771894,25745752,3
+59691399,25745752,3
+36814878,25745752,3
+chaisisi,25745752,4
+chenxiaodong,25745752,2
+40593729,25745752,2
+83778628,25745752,4
+66260749,25745752,1
+4158579,25745752,3
+shangxia28,25745752,2
+65441937,25745752,4
+11503015,25745752,1
+47368196,25745752,3
+81741082,25745752,3
+qiantuo0508,25745752,1
+62400100,25745752,3
+1773126,25745752,3
+57996824,25745752,4
+jiqn,25745752,2
+supermyhero,25745752,2
+leecyril,25745752,2
+46148106,25745752,3
+32535970,25745752,3
+JoeydreamOn,25745752,4
+88397887,25745752,2
+aspiere,25745752,3
+lemosama,25745752,2
+iceberlod,25745752,2
+47434041,25745752,3
+36627836,25745752,2
+huhan,25745752,4
+53586447,25745752,4
+54370463,25745752,4
+63150408,25745752,1
+imsunmmer,25745752,2
+mycage,25745752,1
+79701801,25745752,2
+chenhongyu1222,25745752,3
+55598262,25745752,1
+2323154,25745752,3
+rockyanhua,25745752,4
+70631236,25745752,-1
+iris714,25745752,1
+47339610,25745752,4
+2257637,25745752,-1
+2346098,25745752,3
+leonchoi,25745752,1
+sunyangchina,25745752,2
+LUCKYPAN9,25745752,2
+65387375,25745752,2
+53720863,25745752,1
+ademuese,25745752,4
+Tryortry,25745752,2
+ademuese,25745752,4
+Tryortry,25745752,2
+Toblerone,25745752,1
+Queenie-S,25745752,2
+47844203,25745752,4
+nyx777,25745752,3
+lly950412,25745752,3
+seeing...,25745752,3
+59336552,25745752,4
+76467871,25745752,2
+birdgirl,25745752,2
+58937014,25745752,4
+miss_zoay,25745752,2
+wss2046,25745752,2
+48649262,25745752,3
+dellur,25745752,3
+poisonseven,25745752,3
+verawxl,25745752,4
+3598334,25745752,4
+Alined,25745752,3
+jean_wong,25745752,2
+81162851,25745752,5
+charachai,25745752,3
+57596518,25745752,3
+7669558,25745752,4
+90881925,25745752,3
+55799629,25745752,3
+2353173,25745752,3
+40443774,25745752,3
+82923282,25745752,1
+woochang,25745752,2
+60048972,25745752,3
+77117906,25745752,4
+36664361,25745752,3
+Yolandaleaf,25745752,3
+127081165,25745752,3
+whc4956,25745752,3
+brilliantze,25745752,4
+59084050,25745752,3
+76543597,25745752,3
+pigzi,25745752,3
+53179164,25745752,4
+62662196,25745752,5
+32402352,25745752,3
+ylzhangyao,25745752,1
+2245827,25745752,1
+122845155,25745752,3
+84570982,25745752,1
+fstuntun,25745752,4
+afrasakurai,25745752,1
+bananazookeeper,25745752,1
+34156068,25745752,3
+75867013,25745752,3
+76551061,25745752,3
+leilei66,25745752,1
+21631528,25745752,-1
+abbeyssss,25745752,1
+renchenwei,25745752,3
+Sweetchin_music,25745752,3
+45231026,25745752,3
+120900030,25745752,3
+68853437,25745752,1
+49479409,25745752,3
+52454484,25745752,1
+121482185,25745752,3
+69320295,25745752,2
+59020888,25745752,4
+vivian1165,25745752,1
+yanpealew,25745752,3
+hildachanting,25745752,3
+1457677,25745752,1
+42995158,25745752,2
+baoxiaolin0913,25745752,3
+47754884,25745752,1
+53255422,25745752,3
+51583553,25745752,2
+44835375,25745752,3
+128631933,25745752,3
+binmusiq,25745752,2
+75445619,25745752,3
+liumessi,25745752,2
+51200813,25745752,3
+58105572,25745752,3
+66976207,25745752,4
+69334548,25745752,4
+83576575,25745752,4
+56493073,25745752,2
+lllhx,25745752,1
+31618353,25745752,-1
+98473521,25745752,3
+1406185,25745752,5
+63399322,25745752,1
+50342310,25745752,3
+63981195,25745752,1
+57461686,25745752,3
+127684585,25745752,1
+51165620,25745752,2
+53248531,25745752,1
+66053525,25745752,1
+127900544,25745752,3
+49155542,25745752,1
+Roseate,25745752,5
+68584442,25745752,3
+4594060,25745752,3
+50360912,25745752,2
+128617296,25745752,1
+lapland,25745752,4
+jodiexie,25745752,2
+reira_jxy,25745752,2
+40591271,25745752,3
+112920430,25745752,3
+moshushi1123,25745752,1
+55627025,25745752,1
+81898202,25745752,4
+74256621,25745752,2
+46003260,25745752,3
+JiaoYaZi,25745752,3
+68948810,25745752,4
+58135379,25745752,1
+79264332,25745752,2
+guoxiaobei,25745752,3
+57670721,25745752,5
+ld514,25745752,3
+76871723,25745752,1
+61233839,25745752,3
+68881578,25745752,1
+44396338,25745752,2
+38980922,25745752,2
+breseislee,25745752,1
+saibei,25745752,2
+42680639,25745752,4
+janejane,25745752,4
+42644649,25745752,3
+15185430,25745752,2
+65209107,25745752,5
+57235976,25745752,2
+41787565,25745752,1
+57472846,25745752,-1
+papizza,25745752,4
+89980809,25745752,3
+119181387,25745752,-1
+52799019,25745752,3
+121520114,25745752,3
+53147090,25745752,3
+76636095,25745752,3
+122262430,25745752,4
+83019906,25745752,1
+50395874,25745752,4
+72949033,25745752,1
+81975836,25745752,2
+66997852,25745752,3
+49211599,25745752,5
+mfishy,25745752,2
+64874710,25745752,4
+victorking1,25745752,3
+sunburntapril,25745752,1
+64273735,25745752,2
+zhangyifei,25745752,3
+88196239,25745752,2
+128593530,25745752,1
+75292115,25745752,3
+64794289,25745752,1
+36541533,25745752,3
+79384441,25745752,2
+laycher,25745752,3
+58978626,25745752,2
+formers,25745752,1
+lastinggg,25745752,2
+46524843,25745752,3
+xiaoyizhuo,25745752,2
+45631897,25745752,3
+42948649,25745752,4
+ISRAFEL,25745752,2
+56090186,25745752,3
+sonia0223,25745752,3
+69428143,25745752,2
+tianxiaweigong,25745752,1
+sunshinexuu,25745752,3
+128589286,25745752,3
+42884870,25745752,3
+88327119,25745752,2
+92966403,25745752,2
+75199665,25745752,4
+shuyina,25745752,2
+35652268,25745752,1
+wuhen333,25745752,3
+yingketong,25745752,2
+45878132,25745752,2
+Ira_Jing,25745752,2
+48036288,25745752,1
+49125980,25745752,3
+lowinvae,25745752,3
+75149022,25745752,5
+85105550,25745752,3
+58802831,25745752,3
+monoh,25745752,-1
+CatWitch,25745752,4
+64260117,25745752,2
+128580925,25745752,3
+128580162,25745752,-1
+Springgu,25745752,3
+34015028,25745752,2
+lanshangba,25745752,3
+68079881,25745752,3
+bellamanson,25745752,1
+1796714,25745752,4
+46620424,25745752,3
+2062909,25745752,4
+fcinter,25745752,2
+istrangers,25745752,3
+igyl,25745752,1
+102415916,25745752,-1
+Cri_J,25745752,2
+64250966,25745752,3
+43199610,25745752,3
+91312806,25745752,3
+85233162,25745752,2
+54225374,25745752,3
+124553413,25745752,3
+56260092,25745752,3
+1383301,25745752,3
+jinyannn,25745752,3
+72632667,25745752,4
+floraalma,25745752,2
+usamil,25745752,3
+mee2ashin,25745752,3
+4564181,25745752,2
+miracle5sj,25745752,2
+55354401,25745752,3
+tovi,25745752,3
+daisy7.,25745752,2
+22914275,25745752,3
+babyfairy,25745752,2
+45265566,25745752,3
+121132691,25745752,3
+nvzideai,25745752,4
+nanadong,25745752,4
+1313315,25745752,2
+46901299,25745752,3
+127027482,25745752,1
+anquanhuochai,25745752,4
+91216302,25745752,4
+121085525,25745752,3
+cos2xhps,25745752,2
+kener,25745752,3
+62012748,25745752,3
+mollyfang777,25745752,1
+onionear,25745752,3
+3575164,25745752,1
+28587995,25745752,2
+34587187,25745752,3
+60102515,25745752,3
+3365504,25745752,3
+ling821,25745752,1
+Sophieless,25745752,4
+2519781,25745752,1
+44066080,25745752,2
+13871057,25745752,1
+1786402,25745752,-1
+1689606,25745752,3
+STT810,25745752,1
+48675954,25745752,2
+49762475,25745752,2
+Southernghost,25745752,3
+wattan,25745752,3
+45520180,25745752,3
+4733801,25745752,4
+128538422,25745752,3
+48252437,25745752,2
+53824348,25745752,4
+45864291,25745752,2
+125630908,25745752,2
+120712105,25745752,2
+bejieforever,25745752,2
+emily7726,25745752,3
+126624214,25745752,4
+66636246,25745752,1
+55387190,25745752,4
+44399678,25745752,3
+82314966,25745752,1
+2555888,25745752,3
+71561935,25745752,1
+42549191,25745752,2
+66345679,25745752,1
+48072166,25745752,3
+50192575,25745752,1
+pyf0814,25745752,3
+126334650,25745752,4
+28736860,25745752,3
+ananw99,25745752,3
+34990141,25745752,2
+50568364,25745752,2
+Valen-Valen,25745752,5
+121243676,25745752,1
+62405602,25745752,4
+8412009,25745752,3
+80227900,25745752,2
+47588699,25745752,4
+69947890,25745752,3
+83621117,25745752,2
+83621117,25745752,2
+66767418,25745752,2
+77456137,25745752,3
+IvyGiggs,25745752,1
+64465114,25745752,3
+52951268,25745752,3
+17871243,25745752,3
+1659209,25745752,3
+58354549,25745752,2
+a1b2c32046,25745752,4
+50451911,25745752,1
+junostar,25745752,3
+1813564,25745752,4
+49095374,25745752,5
+lynnakimi,25745752,5
+damnm,25745752,2
+jetamit,25745752,-1
+fjy5663,25745752,1
+59504522,25745752,1
+69236111,25745752,4
+69236111,25745752,4
+1176730,25745752,3
+60180557,25745752,5
+87889075,25745752,5
+petitelazy,25745752,3
+58731052,25745752,3
+58841103,25745752,4
+51564972,25745752,1
+fidee,25745752,2
+57539880,25745752,1
+102170416,25745752,3
+qingmuwu,25745752,4
+47940206,25745752,4
+75413985,25745752,3
+lovely_fish,25745752,3
+62531945,25745752,1
+61351953,25745752,3
+127053764,25745752,3
+57596395,25745752,2
+49624513,25745752,3
+amilar,25745752,2
+43886305,25745752,2
+92785899,25745752,2
+58267808,25745752,2
+120383320,25745752,1
+ElleXiah,25745752,3
+67577626,25745752,3
+erwa,25745752,3
+70648645,25745752,2
+TheOutsiders,25745752,1
+74402995,25745752,3
+jinqianmei,25745752,1
+57920939,25745752,2
+54666875,25745752,3
+21354916,25745752,3
+57292678,25745752,3
+49580998,25745752,3
+48613697,25745752,2
+102128924,25745752,-1
+fuyu8818,25745752,2
+69585663,25745752,2
+103595381,25745752,5
+68812580,25745752,4
+63418813,25745752,3
+10041078,25745752,3
+levin815,25745752,3
+54474184,25745752,3
+1335533,25745752,2
+46935861,25745752,1
+lesones,25745752,1
+45324744,25745752,5
+YHC08300604,25745752,1
+qichongecho,25745752,1
+ventell,25745752,2
+toprocku,25745752,3
+50444681,25745752,3
+quizas63,25745752,-1
+48769501,25745752,3
+Emily0803,25745752,4
+55542795,25745752,2
+79863315,25745752,-1
+65982623,25745752,2
+113310119,25745752,3
+1502480,25745752,3
+GraceTong,25745752,3
+50405161,25745752,2
+1448393,25745752,4
+127111413,25745752,4
+yuantown,25745752,2
+71921218,25745752,2
+Lingeomor,25745752,3
+4222944,25745752,-1
+xihahaha,25745752,2
+120632188,25745752,3
+71791159,25745752,3
+127592240,25745752,3
+crscylla,25745752,3
+59040206,25745752,2
+ayannagai,25745752,2
+Murphymolly,25745752,2
+65373191,25745752,3
+2583803,25745752,3
+luwei-robilu,25745752,5
+cabrite,25745752,4
+96471096,25745752,4
+2268415,25745752,1
+51096995,25745752,1
+114356246,25745752,3
+73702365,25745752,2
+50312553,25745752,4
+minty2minty,25745752,2
+veolxxxx,25745752,3
+wellsli2015,25745752,4
+51156582,25745752,3
+57880931,25745752,4
+58173665,25745752,2
+40836230,25745752,4
+55563448,25745752,4
+SevenJJing,25745752,3
+xiaoyuhen,25745752,2
+108253828,25745752,5
+81215779,25745752,-1
+29455722,25745752,2
+61752343,25745752,4
+74422713,25745752,2
+Houdong,25745752,1
+64595511,25745752,2
+87401407,25745752,4
+45590109,25745752,1
+irene826,25745752,3
+87818852,25745752,3
+45037814,25745752,1
+1132056,25745752,5
+1871316,25745752,1
+2030775,25745752,3
+smile369,25745752,1
+93855975,25745752,4
+35371266,25745752,2
+60201729,25745752,2
+heymonica,25745752,3
+66711391,25745752,3
+lesleylove,25745752,3
+48401731,25745752,2
+mamoshang,25745752,1
+53542403,25745752,3
+58932081,25745752,4
+CeciliaQueen,25745752,3
+mujin1217,25745752,4
+sunjialin1989,25745752,3
+116055027,25745752,4
+43956879,25745752,-1
+78277110,25745752,5
+47469915,25745752,3
+95980532,25745752,3
+qianhenbangye,25745752,3
+58280028,25745752,3
+91361689,25745752,1
+v-iviann,25745752,1
+50942013,25745752,3
+63559969,25745752,3
+2934232,25745752,3
+yaochunpeng,25745752,4
+91774101,25745752,2
+85260214,25745752,4
+hit_TEA,25745752,4
+rockynira,25745752,4
+niandaing,25745752,3
+73751248,25745752,3
+86254981,25745752,2
+4004723,25745752,1
+51355741,25745752,3
+53554219,25745752,3
+74493313,25745752,1
+lanxiaoyang710,25745752,4
+43235070,25745752,3
+alan5x,25745752,1
+49813166,25745752,1
+achotec,25745752,2
+30768721,25745752,2
+114120755,25745752,3
+114120755,25745752,3
+somovie,25745752,3
+joyjay,25745752,4
+49761983,25745752,3
+stephanielv,25745752,1
+82849854,25745752,2
+formydream,25745752,1
+128277585,25745752,3
+58310222,25745752,3
+chenhehechen,25745752,4
+44020426,25745752,3
+62864359,25745752,4
+65340061,25745752,3
+xuyimeng,25745752,2
+37503152,25745752,3
+53339781,25745752,3
+103675641,25745752,2
+49529143,25745752,1
+dizzyzzy,25745752,4
+daydayup_6,25745752,3
+daydayup_6,25745752,3
+Annandan,25745752,3
+Erinlin_smile,25745752,3
+Zicher,25745752,1
+Chee7oL,25745752,4
+54363066,25745752,2
+dreariness,25745752,2
+65508895,25745752,4
+31318306,25745752,3
+jin.paopao,25745752,2
+Sunscape,25745752,1
+2308650,25745752,2
+79417931,25745752,3
+sufie,25745752,3
+90325710,25745752,1
+50299714,25745752,1
+25683141,25745752,4
+37370038,25745752,1
+55485806,25745752,5
+52282792,25745752,3
+55485806,25745752,5
+52282792,25745752,3
+81348694,25745752,3
+1782017,25745752,1
+1614728,25745752,3
+72034999,25745752,2
+48407248,25745752,2
+madelinezl,25745752,2
+jocelyn1213,25745752,3
+bonbont,25745752,2
+bleudit,25745752,4
+47831078,25745752,3
+47835316,25745752,3
+evitashi,25745752,3
+52128416,25745752,5
+41899297,25745752,3
+91186161,25745752,3
+79201200,25745752,3
+54968846,25745752,4
+alazybone,25745752,3
+63033488,25745752,3
+zyaiyoko,25745752,1
+xxreed,25745752,1
+lesadieu,25745752,-1
+32360693,25745752,3
+75271434,25745752,4
+tamiwang,25745752,5
+70300693,25745752,3
+3201810,25745752,-1
+caoyingcan,25745752,4
+sunnie.j,25745752,1
+yangyi52,25745752,3
+127287498,25745752,3
+119526629,25745752,4
+mikicute,25745752,2
+48131107,25745752,-1
+71882861,25745752,3
+yzk2237084,25745752,2
+64127845,25745752,4
+53508097,25745752,4
+53260993,25745752,1
+72791717,25745752,1
+52866522,25745752,3
+47152130,25745752,2
+26247906,25745752,3
+yuelai15,25745752,3
+124359273,25745752,1
+66619833,25745752,2
+mislittlesummer,25745752,3
+59238229,25745752,4
+55661989,25745752,5
+Mavis0122,25745752,4
+3935622,25745752,4
+68583073,25745752,2
+vero1012,25745752,2
+wsq1117,25745752,2
+yyyyyyyu2,25745752,3
+27085704,25745752,5
+37621515,25745752,2
+39351378,25745752,2
+4295778,25745752,2
+65429118,25745752,-1
+qq381525772,25745752,1
+70421764,25745752,2
+60625092,25745752,4
+21946696,25745752,3
+51369508,25745752,2
+61763961,25745752,5
+10652673,25745752,3
+35827809,25745752,4
+77001369,25745752,2
+58291702,25745752,1
+xuyq,25745752,2
+50402097,25745752,1
+pearltear,25745752,2
+114677427,25745752,3
+KeryChou,25745752,3
+54763920,25745752,3
+69422648,25745752,5
+24598372,25745752,2
+hirokawananako,25745752,1
+2137969,25745752,2
+4648504,25745752,2
+88093223,25745752,1
+4390470,25745752,3
+62567179,25745752,1
+foolmyself,25745752,3
+losite,25745752,2
+chic1206,25745752,-1
+68668092,25745752,1
+51915290,25745752,3
+75344428,25745752,1
+zhuwb517,25745752,3
+zdm,25745752,2
+68674316,25745752,5
+60435322,25745752,2
+106628211,25745752,3
+yanhan40,25745752,1
+59342050,25745752,1
+1749400,25745752,3
+1749400,25745752,3
+46697613,25745752,2
+mancyann,25745752,5
+49009055,25745752,2
+42578950,25745752,3
+57337928,25745752,2
+missing7V,25745752,3
+61914185,25745752,3
+119944161,25745752,3
+93847349,25745752,1
+xjjlight,25745752,4
+49786116,25745752,2
+57291251,25745752,4
+117808839,25745752,4
+shiranmh,25745752,2
+68496579,25745752,3
+68593427,25745752,3
+joyboat,25745752,2
+dayoujia,25745752,3
+sunbaby1991,25745752,2
+L_kid,25745752,3
+lichenbye,25745752,3
+59982291,25745752,2
+81454122,25745752,3
+33625985,25745752,4
+37102095,25745752,-1
+4039412,25745752,1
+py962492,25745752,3
+3427459,25745752,3
+57104969,25745752,3
+punk250,25745752,1
+65820709,25745752,3
+zhouyou0807,25745752,2
+42630229,25745752,1
+67843456,25745752,2
+46120245,25745752,2
+128328073,25745752,2
+bearbean,25745752,3
+67610456,25745752,3
+2340389,25745752,3
+ak430,25745752,2
+2262505,25745752,3
+ruo,25745752,3
+54323797,25745752,3
+99975380,25745752,4
+maguowei,25745752,2
+49174691,25745752,1
+helenelian,25745752,4
+58863205,25745752,1
+77493243,25745752,1
+58249088,25745752,2
+Razzmatazz,25745752,2
+caseyqian,25745752,-1
+69600023,25745752,4
+76956024,25745752,3
+promise0624,25745752,1
+1319405,25745752,1
+4891607,25745752,2
+65711709,25745752,2
+xiaoguli,25745752,3
+jennyseath,25745752,2
+57307614,25745752,2
+34507670,25745752,2
+59024448,25745752,1
+sosaixi,25745752,2
+Fxlly3,25745752,2
+yeai3,25745752,1
+2792721,25745752,2
+30311427,25745752,4
+simplycomplex,25745752,5
+arielwjx,25745752,3
+46338692,25745752,3
+74589582,25745752,3
+65889401,25745752,3
+dorajane,25745752,3
+49141997,25745752,3
+that555,25745752,3
+3711374,25745752,3
+4394529,25745752,2
+sherlyandnicole,25745752,2
+sherlyandnicole,25745752,2
+53728385,25745752,5
+2742057,25745752,1
+guitarain,25745752,4
+bairu610613,25745752,2
+gg871103,25745752,3
+48789543,25745752,2
+53877889,25745752,2
+2600498,25745752,-1
+113927921,25745752,4
+127037591,25745752,1
+60054122,25745752,1
+jochencrynomore,25745752,3
+63457703,25745752,4
+74958646,25745752,1
+61956899,25745752,2
+85038471,25745752,4
+7609988,25745752,1
+80810506,25745752,3
+83020087,25745752,3
+83020087,25745752,3
+30765497,25745752,3
+78408840,25745752,2
+52033116,25745752,1
+108685938,25745752,3
+3679222,25745752,-1
+58301131,25745752,2
+58658426,25745752,3
+niaoyunfeidouba,25745752,5
+58028491,25745752,3
+helan00,25745752,2
+ukimuknow,25745752,3
+crambola,25745752,1
+66066002,25745752,1
+53289993,25745752,3
+deepwawaya,25745752,5
+2752956,25745752,1
+UD_NaZi,25745752,3
+95771825,25745752,-1
+BoyZ,25745752,4
+57819875,25745752,-1
+97155046,25745752,1
+61540867,25745752,3
+evaxiao,25745752,5
+83346786,25745752,2
+leeshiuan,25745752,3
+81835425,25745752,2
+3869328,25745752,2
+83250285,25745752,2
+48369925,25745752,2
+kimnamhwa,25745752,3
+96410412,25745752,4
+lifeicai,25745752,4
+107143032,25745752,3
+16313678,25745752,3
+AE86,25745752,2
+47491946,25745752,1
+stilllive,25745752,1
+LilithChan,25745752,3
+48918241,25745752,1
+127562721,25745752,1
+58886429,25745752,2
+52508494,25745752,2
+34711453,25745752,3
+cuttlefish0,25745752,3
+sukimushroom,25745752,3
+yanhaijing,25745752,4
+mabeysomeday,25745752,5
+125347499,25745752,3
+y1ntian,25745752,1
+87495306,25745752,4
+4075064,25745752,4
+58457160,25745752,4
+erikson,25745752,3
+face_off,25745752,2
+smilinglynn,25745752,2
+61779592,25745752,3
+mayflylris,25745752,1
+maoamao,25745752,2
+43015675,25745752,1
+liaosanchuan,25745752,3
+87910708,25745752,1
+64441437,25745752,2
+spunik,25745752,2
+56167490,25745752,2
+55767497,25745752,5
+47941009,25745752,2
+55305426,25745752,2
+isay_,25745752,2
+vv1027,25745752,-1
+4804001,25745752,2
+iplumage,25745752,3
+119365101,25745752,2
+sbandsth,25745752,2
+73542789,25745752,5
+aegeanguo,25745752,3
+hiolivia,25745752,2
+fishyfishy,25745752,4
+47624024,25745752,2
+74599483,25745752,2
+janice1124,25745752,2
+109010563,25745752,3
+84299996,25745752,4
+42293111,25745752,2
+JinSeraph,25745752,2
+101807713,25745752,1
+88622582,25745752,2
+46696173,25745752,2
+q798929021,25745752,2
+53466542,25745752,3
+3344824,25745752,3
+69008426,25745752,2
+62749686,25745752,3
+69273736,25745752,2
+Z3Z5,25745752,3
+52046844,25745752,2
+37344756,25745752,3
+2812420,25745752,5
+51940316,25745752,1
+54092051,25745752,3
+50514638,25745752,2
+68850842,25745752,1
+66980718,25745752,4
+58658233,25745752,1
+74575002,25745752,1
+alexCLC,25745752,1
+gilian,25745752,1
+84961585,25745752,1
+inruin,25745752,4
+80998115,25745752,3
+69730932,25745752,3
+63750436,25745752,5
+hbjbocai,25745752,3
+3819309,25745752,2
+1781887,25745752,2
+63433613,25745752,4
+56886215,25745752,1
+56743856,25745752,3
+53002602,25745752,3
+49355062,25745752,3
+84526610,25745752,1
+Marilyn.dd,25745752,3
+2376689,25745752,-1
+104872369,25745752,1
+qinshenglove,25745752,1
+75853916,25745752,4
+CPUCMX,25745752,1
+64715901,25745752,2
+52481316,25745752,3
+54266589,25745752,3
+58960162,25745752,1
+mocha____,25745752,1
+61997331,25745752,2
+zhaopeng007,25745752,3
+oliviahaohao,25745752,-1
+75869572,25745752,1
+MinarWang,25745752,1
+126014934,25745752,2
+128165523,25745752,1
+37017024,25745752,2
+weibrave,25745752,1
+arthuryu,25745752,3
+119693372,25745752,4
+79936861,25745752,3
+60370348,25745752,2
+wolfdharky,25745752,4
+nancy425,25745752,3
+MeloTheFisher,25745752,3
+82681356,25745752,2
+SUNSAD,25745752,2
+misspo,25745752,2
+ivylmj,25745752,1
+57495680,25745752,2
+feixueying,25745752,3
+87338273,25745752,1
+78881822,25745752,2
+12348280,25745752,-1
+yaya0305,25745752,2
+GreenCard,25745752,1
+31204989,25745752,4
+49121283,25745752,2
+122754274,25745752,3
+61506654,25745752,5
+80230257,25745752,4
+26604258,25745752,-1
+maplelove040,25745752,1
+50271561,25745752,2
+3129085,25745752,2
+RrrrrrrocK,25745752,4
+tuyoudesign,25745752,5
+78702660,25745752,3
+2134066,25745752,1
+39892852,25745752,1
+61387919,25745752,2
+insummer_ever,25745752,3
+47991998,25745752,3
+yhjiang,25745752,3
+maomaoye,25745752,3
+Rachel23,25745752,3
+35617688,25745752,4
+14357343,25745752,3
+Miss153,25745752,2
+zhongyunting,25745752,3
+64010291,25745752,2
+cycoca,25745752,3
+richardjay,25745752,1
+biheye,25745752,2
+loveDemi1216,25745752,1
+68993451,25745752,3
+nancy516,25745752,4
+littleteatea,25745752,4
+61193045,25745752,2
+Collins1995,25745752,2
+65642792,25745752,-1
+42814747,25745752,3
+Shadow..,25745752,3
+27408437,25745752,4
+126151029,25745752,3
+43136444,25745752,3
+51945136,25745752,3
+67194881,25745752,2
+71590670,25745752,-1
+72936086,25745752,4
+yaozhitong1021,25745752,4
+hexiaotang,25745752,3
+Coanl,25745752,2
+79848707,25745752,2
+motou0328,25745752,5
+ruby0511,25745752,5
+Cactao,25745752,3
+mklop2008,25745752,3
+forevermy,25745752,3
+abaobao,25745752,2
+hottgb,25745752,2
+88932342,25745752,4
+zhangtianyi1216,25745752,3
+51911319,25745752,1
+mariewyssa,25745752,2
+Zesz,25745752,2
+126953594,25745752,2
+76681041,25745752,3
+yutang,25745752,2
+piaoweier,25745752,3
+xisochakaihuale,25745752,4
+lemons,25745752,3
+72891921,25745752,3
+125655857,25745752,3
+39525517,25745752,2
+36940575,25745752,2
+30079642,25745752,3
+120437687,25745752,2
+66475895,25745752,3
+120352953,25745752,-1
+62314343,25745752,1
+122833017,25745752,3
+49521685,25745752,4
+mlgg,25745752,3
+Carmeliano,25745752,5
+3450620,25745752,4
+kashing,25745752,4
+82229788,25745752,2
+40517102,25745752,5
+97431474,25745752,3
+pyan,25745752,3
+iamsyh,25745752,2
+mmllove,25745752,3
+kat.is.kathy,25745752,2
+41786402,25745752,3
+50158938,25745752,5
+julia0214,25745752,3
+90469600,25745752,-1
+ice41322,25745752,1
+shf993,25745752,2
+67512191,25745752,1
+64026152,25745752,4
+zhangxiaokang,25745752,3
+62489919,25745752,2
+3573239,25745752,3
+44758154,25745752,3
+66209180,25745752,4
+66209180,25745752,4
+sloth715,25745752,2
+38342887,25745752,3
+cici0617,25745752,3
+72691746,25745752,4
+49177179,25745752,-1
+46968524,25745752,2
+126874620,25745752,4
+MsHsu,25745752,-1
+fuzyu,25745752,1
+1635161,25745752,4
+dhtcwd,25745752,3
+56360766,25745752,3
+njuwangfeng,25745752,-1
+kambing,25745752,4
+67235309,25745752,3
+78851743,25745752,2
+unbounder,25745752,2
+bluedada,25745752,3
+ashuimmer,25745752,2
+65358186,25745752,5
+2896581,25745752,3
+lanyanleiyu,25745752,3
+78258766,25745752,2
+59742770,25745752,3
+41125061,25745752,1
+mogubloom,25745752,3
+spx,25745752,2
+58840542,25745752,4
+THIS-IS-MAOYU,25745752,3
+49602953,25745752,3
+51925461,25745752,3
+35538541,25745752,1
+61468605,25745752,3
+66981878,25745752,2
+yuyan1234,25745752,3
+1997569,25745752,3
+86253120,25745752,1
+61953349,25745752,5
+100532395,25745752,3
+40201382,25745752,2
+tt1122,25745752,3
+1736575,25745752,3
+Daisyjing,25745752,1
+66237030,25745752,1
+84310026,25745752,3
+68747756,25745752,2
+44552200,25745752,3
+zhurou,25745752,3
+92115024,25745752,1
+67104840,25745752,3
+37448778,25745752,4
+3657700,25745752,4
+1897616,25745752,3
+83193363,25745752,2
+L_islander,25745752,1
+14946660,25745752,2
+qianqiandeya,25745752,5
+33538904,25745752,3
+2522310,25745752,1
+119836922,25745752,5
+3784979,25745752,4
+64216728,25745752,2
+91236974,25745752,4
+47988380,25745752,1
+60721081,25745752,1
+57400377,25745752,1
+liyanyi,25745752,3
+120854379,25745752,5
+63672355,25745752,2
+xpen95,25745752,3
+59879730,25745752,3
+katze,25745752,3
+yifei1110,25745752,4
+Dyouknow,25745752,4
+70491139,25745752,4
+32820912,25745752,5
+64255744,25745752,2
+88564672,25745752,3
+brucetown,25745752,3
+fairyhui521,25745752,3
+100841051,25745752,4
+yumbe,25745752,3
+92005501,25745752,3
+minhom,25745752,3
+49151192,25745752,1
+angelkalen,25745752,3
+ksmyass,25745752,3
+83006178,25745752,3
+43649070,25745752,4
+39863972,25745752,3
+buxizhizhou530,25745752,3
+59622080,25745752,3
+128160386,25745752,3
+127068197,25745752,3
+longhua,25745752,5
+moilly,25745752,2
+63928716,25745752,2
+57396693,25745752,4
+45477713,25745752,3
+taxidriver1976,25745752,1
+3493699,25745752,2
+25958436,25745752,3
+48080680,25745752,4
+63684409,25745752,4
+60071554,25745752,5
+3577665,25745752,2
+66055788,25745752,2
+48229847,25745752,2
+jaycelyn,25745752,2
+56941149,25745752,4
+16968943,25745752,1
+61265491,25745752,2
+dreamerangela,25745752,3
+25725176,25745752,3
+82445997,25745752,3
+3513626,25745752,2
+4082102,25745752,2
+JESSIE_USC,25745752,1
+46317402,25745752,4
+2616668,25745752,3
+45461182,25745752,2
+33432860,25745752,4
+92155502,25745752,2
+cjlchaos,25745752,3
+Alcor,25745752,1
+zhuobielin,25745752,3
+yang0826,25745752,2
+2172654,25745752,4
+dahuaa,25745752,5
+YesIDO.,25745752,3
+90564869,25745752,3
+94600308,25745752,1
+davidaclee,25745752,-1
+61219748,25745752,2
+98179826,25745752,3
+epdeda,25745752,4
+53581376,25745752,5
+49848634,25745752,1
+71408490,25745752,2
+49971138,25745752,3
+56796153,25745752,2
+58148727,25745752,1
+50788557,25745752,5
+cueb,25745752,3
+wayman_lin,25745752,4
+2413295,25745752,3
+39913165,25745752,4
+mouse920127,25745752,4
+Sissi.Wu,25745752,1
+1391137,25745752,3
+56437151,25745752,2
+65585379,25745752,2
+74882629,25745752,5
+gnibiy,25745752,4
+eden1009,25745752,1
+ruoling211,25745752,4
+68368092,25745752,2
+swirl1164,25745752,4
+olejue,25745752,3
+clear_wang,25745752,3
+soylee1218,25745752,2
+jane0526,25745752,-1
+Sueli,25745752,2
+48108254,25745752,2
+AXLROSES,25745752,3
+leoo_leee,25745752,3
+leohepburn,25745752,3
+37631254,25745752,3
+4265798,25745752,2
+omg-_-,25745752,3
+108146760,25745752,2
+69836665,25745752,3
+84280233,25745752,2
+la0gui,25745752,1
+jiscat,25745752,2
+43585970,25745752,2
+28566802,25745752,4
+59820675,25745752,1
+79132036,25745752,2
+80524865,25745752,2
+34943389,25745752,3
+shcafe,25745752,5
+H-Akane,25745752,2
+1808559,25745752,3
+62270641,25745752,1
+june28th,25745752,3
+65681776,25745752,4
+kkjoy2617,25745752,3
+51087385,25745752,3
+42859204,25745752,4
+20019318,25745752,2
+59370142,25745752,2
+38047106,25745752,4
+EternityParis,25745752,-1
+34468133,25745752,2
+72970549,25745752,2
+capricornslythe,25745752,3
+zyr920924,25745752,3
+fanxiaodong,25745752,3
+40303756,25745752,2
+3599139,25745752,4
+54712127,25745752,1
+DFsesame,25745752,4
+52342003,25745752,2
+79748311,25745752,3
+echolee314,25745752,2
+CackleHan,25745752,3
+kuxingseng80,25745752,3
+luffy828,25745752,3
+55285381,25745752,3
+66338674,25745752,2
+103970279,25745752,1
+60119270,25745752,2
+56521478,25745752,3
+82357316,25745752,2
+baomihuaxx,25745752,1
+55357697,25745752,4
+51004851,25745752,4
+127943674,25745752,1
+48543801,25745752,2
+dovefly,25745752,3
+3581002,25745752,1
+58653283,25745752,3
+58199841,25745752,3
+yuanzedong,25745752,3
+50527578,25745752,-1
+brightliwei,25745752,4
+wowanyu,25745752,2
+66269083,25745752,2
+60768748,25745752,3
+73958470,25745752,2
+liyihan-,25745752,1
+10009156,25745752,1
+JennyDingding,25745752,3
+jetaimeyc,25745752,3
+85164976,25745752,2
+79071322,25745752,3
+nonob,25745752,-1
+sdkl,25745752,3
+33663407,25745752,2
+103971408,25745752,2
+pandaz23,25745752,3
+natsunokaori,25745752,-1
+3125244,25745752,4
+alen6025,25745752,5
+42171704,25745752,2
+128112191,25745752,3
+sxbbmsc,25745752,4
+3797391,25745752,1
+1456080,25745752,2
+68409423,25745752,4
+shirleywang,25745752,2
+yeats1865,25745752,2
+56241501,25745752,3
+26650310,25745752,3
+kkbear,25745752,3
+33597419,25745752,2
+49316847,25745752,2
+48481672,25745752,3
+34751637,25745752,2
+lalalameans,25745752,3
+74778756,25745752,3
+49566546,25745752,2
+toxichoco,25745752,4
+63332533,25745752,2
+115225798,25745752,4
+73696070,25745752,3
+74249680,25745752,1
+shiguagji,25745752,1
+shir23,25745752,2
+121629069,25745752,2
+46593728,25745752,1
+47639252,25745752,1
+64053916,25745752,4
+122943989,25745752,5
+little-dog,25745752,3
+102627576,25745752,-1
+3896074,25745752,1
+43849260,25745752,3
+47601380,25745752,3
+47698809,25745752,3
+56313808,25745752,4
+60591844,25745752,3
+4196011,25745752,2
+83354741,25745752,4
+qinxinzhu,25745752,2
+pocketwalker91,25745752,3
+39061280,25745752,-1
+heshizan,25745752,2
+43521478,25745752,2
+82562378,25745752,3
+13753332,25745752,2
+49756655,25745752,3
+61959364,25745752,4
+104062670,25745752,4
+50712363,25745752,2
+ssb,25745752,2
+97313895,25745752,3
+83094433,25745752,2
+83094433,25745752,2
+hipposama,25745752,3
+62296764,25745752,3
+miyaM,25745752,2
+48210528,25745752,3
+tobrave,25745752,4
+YDevilcrys,25745752,-1
+cicichild,25745752,2
+98904281,25745752,4
+kulapika,25745752,2
+61321543,25745752,2
+yuimi5,25745752,3
+40490776,25745752,5
+65931819,25745752,4
+58177849,25745752,4
+Alex-boil,25745752,-1
+69753886,25745752,1
+dandiallen,25745752,3
+5116652,25745752,3
+61855461,25745752,4
+52288589,25745752,4
+53794132,25745752,2
+68202657,25745752,2
+53605714,25745752,1
+117911079,25745752,2
+11202805,25745752,4
+73861786,25745752,1
+xuxinleo,25745752,3
+1598738,25745752,2
+125694010,25745752,3
+36352996,25745752,1
+53063481,25745752,2
+tjyan,25745752,4
+2209447,25745752,3
+49320833,25745752,3
+esther11yiyi,25745752,3
+60381439,25745752,1
+yongyuanziyou,25745752,1
+119517478,25745752,2
+likinglr,25745752,5
+zhaoxiaoli1989,25745752,1
+59149801,25745752,2
+47996444,25745752,3
+127812113,25745752,2
+102791213,25745752,2
+3605330,25745752,2
+71543959,25745752,4
+sissiwowo,25745752,4
+57812558,25745752,1
+zjmmc86,25745752,3
+49134940,25745752,4
+40839121,25745752,2
+45859910,25745752,5
+userl1,25745752,4
+Shnei,25745752,3
+kitano,25745752,3
+59290404,25745752,3
+89997882,25745752,3
+huantong,25745752,3
+25795086,25745752,3
+25795086,25745752,3
+64186246,25745752,3
+64898172,25745752,3
+76994083,25745752,2
+121608486,25745752,1
+4690950,25745752,1
+54776017,25745752,3
+97114662,25745752,1
+120407803,25745752,1
+87023158,25745752,3
+53884142,25745752,4
+34532073,25745752,2
+99223990,25745752,3
+87026553,25745752,4
+60287854,25745752,1
+33683472,25745752,3
+7735198,25745752,3
+daheiluozi,25745752,1
+38595648,25745752,3
+yuyucara,25745752,2
+mjtang,25745752,1
+119698382,25745752,3
+47854967,25745752,3
+jessechen0907,25745752,2
+115169667,25745752,3
+1958346,25745752,4
+49449526,25745752,1
+48615515,25745752,3
+60597045,25745752,3
+61490354,25745752,4
+127587316,25745752,3
+GZ,25745752,1
+34150219,25745752,4
+45182133,25745752,1
+xujiujiu,25745752,3
+26226238,25745752,-1
+delicioussalad,25745752,4
+64692199,25745752,2
+45819377,25745752,3
+Yunsta,25745752,2
+orchid0112,25745752,1
+52617654,25745752,1
+chocoqiao,25745752,-1
+43044093,25745752,3
+65285618,25745752,3
+zianzhao,25745752,3
+66771614,25745752,2
+108496496,25745752,3
+51070756,25745752,1
+57714945,25745752,3
+Monster_004,25745752,2
+imCheryl,25745752,3
+3467669,25745752,3
+neverlandIvy,25745752,4
+NeilGuo521,25745752,4
+drxxuan,25745752,2
+55446096,25745752,1
+4900400,25745752,1
+kikineko,25745752,-1
+q0,25745752,4
+57915460,25745752,3
+Zosen,25745752,3
+86026697,25745752,2
+65457803,25745752,4
+13823787,25745752,2
+59408878,25745752,2
+7795838,25745752,4
+3119825,25745752,3
+arangWendy,25745752,2
+78640879,25745752,2
+starlife,25745752,3
+65669725,25745752,2
+44349376,25745752,4
+smallbai406,25745752,3
+hildasu,25745752,2
+piggasol,25745752,3
+13774743,25745752,2
+80628102,25745752,3
+samuel_liu,25745752,1
+55454799,25745752,1
+55454799,25745752,1
+changaning,25745752,4
+34493482,25745752,2
+ztreez,25745752,-1
+48507134,25745752,2
+34347136,25745752,2
+stef313,25745752,3
+120018328,25745752,5
+40059497,25745752,2
+45376175,25745752,1
+53225897,25745752,3
+wincywincy,25745752,1
+2727052,25745752,3
+2250819,25745752,2
+62746745,25745752,1
+SuperWMY,25745752,1
+coryzh,25745752,2
+q565152665,25745752,1
+kcog,25745752,2
+violin0714,25745752,1
+44276090,25745752,1
+124393680,25745752,1
+69920763,25745752,4
+huodijin,25745752,2
+53920626,25745752,2
+57777518,25745752,1
+89146290,25745752,3
+12794807,25745752,2
+93113085,25745752,3
+77511021,25745752,4
+51325389,25745752,2
+63554272,25745752,-1
+renchang,25745752,2
+49364601,25745752,3
+dyinghero,25745752,-1
+75129838,25745752,1
+y_vette,25745752,3
+yelihua,25745752,2
+120241385,25745752,3
+sorceresskital,25745752,2
+61278455,25745752,4
+61054348,25745752,3
+62220821,25745752,2
+lixiaguniang,25745752,3
+56909243,25745752,4
+47358102,25745752,-1
+63041082,25745752,1
+123378274,25745752,1
+44022921,25745752,2
+babbye,25745752,3
+cello22,25745752,2
+53999019,25745752,2
+57865039,25745752,4
+49041999,25745752,3
+59133678,25745752,5
+41560097,25745752,2
+42670122,25745752,5
+65502815,25745752,3
+ve0709,25745752,3
+rocekrong,25745752,3
+4520278,25745752,2
+70122827,25745752,2
+liszt_pp,25745752,2
+au2kddi,25745752,1
+62155959,25745752,1
+aiyutao,25745752,2
+xxy13199114449,25745752,-1
+1454015,25745752,2
+52926147,25745752,3
+alinababy,25745752,3
+67608458,25745752,3
+39540944,25745752,2
+41791601,25745752,4
+39937848,25745752,3
+120197329,25745752,3
+taochongshaozhu,25745752,3
+1536567,25745752,3
+youjingfengle,25745752,3
+4389301,25745752,3
+fxoc,25745752,1
+30961553,25745752,4
+70289658,25745752,3
+61221215,25745752,3
+jiulexiong,25745752,3
+52789187,25745752,3
+2809402,25745752,2
+72712114,25745752,3
+54049023,25745752,2
+57456072,25745752,2
+96660049,25745752,2
+hiphopking,25745752,4
+kissorli,25745752,2
+45176243,25745752,2
+thesp,25745752,1
+M.iya,25745752,3
+2725068,25745752,4
+kring,25745752,3
+47924060,25745752,3
+luzifer,25745752,4
+annia0216,25745752,1
+25879300,25745752,3
+67614484,25745752,3
+80298244,25745752,3
+58752829,25745752,3
+49388908,25745752,2
+78925849,25745752,1
+53868957,25745752,5
+kinkin77,25745752,4
+128002588,25745752,4
+63305986,25745752,4
+yingruo91,25745752,1
+89016897,25745752,4
+29875571,25745752,2
+maydayisfaith,25745752,1
+ReyC,25745752,1
+2015104,25745752,3
+mwangym,25745752,4
+heybuwawa,25745752,-1
+59556078,25745752,2
+51478709,25745752,3
+91428973,25745752,3
+44763359,25745752,3
+fairyi,25745752,3
+sueinjuly,25745752,3
+96473447,25745752,5
+94032593,25745752,1
+58386439,25745752,3
+61627108,25745752,2
+pianxiye0926,25745752,3
+puhuahua,25745752,1
+45385150,25745752,3
+tangjiaqi,25745752,3
+vanuan,25745752,3
+55741572,25745752,4
+heyanniehowru,25745752,1
+71528776,25745752,2
+azo_pan,25745752,3
+zhanghuaxin,25745752,3
+51022867,25745752,2
+se2o3,25745752,2
+55283261,25745752,2
+55006462,25745752,2
+2471325,25745752,1
+littleric3,25745752,1
+44284522,25745752,3
+hetaojiazi,25745752,3
+71931742,25745752,3
+88857098,25745752,3
+hey.nanzhuang,25745752,1
+61054715,25745752,1
+andvic,25745752,1
+80038652,25745752,1
+64233455,25745752,3
+54614709,25745752,3
+4163721,25745752,3
+67229743,25745752,1
+colorfullion,25745752,1
+3206858,25745752,3
+littlewhity,25745752,3
+1599911,25745752,3
+COCOTTE,25745752,1
+jelly-8,25745752,4
+1427052,25745752,2
+85513403,25745752,2
+47558716,25745752,3
+37371725,25745752,4
+Theresa_Tsui,25745752,3
+48310124,25745752,3
+119489543,25745752,1
+52530490,25745752,2
+40436346,25745752,3
+xiaotianqing,25745752,4
+99508404,25745752,3
+94032763,25745752,1
+hugme,25745752,2
+47379077,25745752,2
+122994591,25745752,3
+58338581,25745752,2
+75955122,25745752,5
+72659294,25745752,3
+72659294,25745752,3
+hichai,25745752,2
+47522853,25745752,3
+63982448,25745752,1
+pixiezhezhe,25745752,3
+78448364,25745752,2
+74624469,25745752,2
+71133496,25745752,2
+67220324,25745752,3
+kanagawa,25745752,3
+91584041,25745752,2
+yushu25,25745752,-1
+93332466,25745752,1
+62517484,25745752,3
+61087819,25745752,1
+rabbit0709,25745752,3
+amoryqq,25745752,3
+79409218,25745752,3
+83739647,25745752,1
+81804736,25745752,2
+miki19900107,25745752,4
+pupuleaf,25745752,3
+54781167,25745752,-1
+colormoon,25745752,3
+52449680,25745752,3
+44864127,25745752,2
+62964700,25745752,1
+maoxiaowen,25745752,1
+37619756,25745752,1
+67240379,25745752,2
+moon6fly,25745752,2
+75117769,25745752,2
+76491056,25745752,1
+impanda,25745752,3
+52463415,25745752,1
+88603301,25745752,3
+127950412,25745752,3
+2696017,25745752,1
+34304437,25745752,1
+Seuysiro,25745752,3
+9815076,25745752,1
+83879581,25745752,2
+71616521,25745752,2
+44408526,25745752,2
+63526709,25745752,1
+45191985,25745752,2
+71818385,25745752,1
+68765311,25745752,3
+2292568,25745752,-1
+eefee,25745752,4
+elinnao,25745752,3
+52386668,25745752,3
+47885583,25745752,3
+MonteVita,25745752,2
+45447065,25745752,2
+JLy4380644,25745752,-1
+damon1947,25745752,2
+49866538,25745752,3
+wangshaoda,25745752,3
+MonicaRae,25745752,1
+82308347,25745752,3
+63992894,25745752,1
+52756002,25745752,2
+82038252,25745752,3
+48264121,25745752,3
+1306242,25745752,3
+125655628,25745752,2
+4038977,25745752,2
+75007342,25745752,2
+46799195,25745752,3
+76092155,25745752,-1
+2891897,25745752,5
+123274551,25745752,1
+cnl1011,25745752,3
+roger589,25745752,2
+chenshazi,25745752,4
+122662265,25745752,3
+4018486,25745752,1
+46378243,25745752,1
+54520030,25745752,1
+45129270,25745752,2
+81407852,25745752,2
+56566421,25745752,4
+yangqianbao,25745752,2
+MISSMOUMOU,25745752,3
+3138357,25745752,3
+57928831,25745752,3
+3039896,25745752,4
+xuhaihua,25745752,-1
+52165017,25745752,5
+erinlulu,25745752,2
+81520240,25745752,1
+3226920,25745752,3
+77645193,25745752,3
+3478406,25745752,2
+59722191,25745752,3
+rockzero,25745752,3
+53138846,25745752,2
+22531064,25745752,3
+58423983,25745752,5
+58423983,25745752,5
+61302881,25745752,2
+2311976,25745752,3
+J13,25745752,2
+105796566,25745752,5
+83840078,25745752,2
+119263777,25745752,1
+53904124,25745752,1
+yansihan,25745752,4
+tiepido,25745752,4
+DereyantChan,25745752,2
+3569090,25745752,2
+minnierai,25745752,1
+56594024,25745752,4
+121057399,25745752,1
+suguorui,25745752,4
+83273023,25745752,1
+AboutMary,25745752,2
+xiaotun,25745752,2
+54058940,25745752,1
+1062820,25745752,4
+3295210,25745752,3
+yuanyuansky,25745752,4
+27068945,25745752,3
+9791060,25745752,2
+52690453,25745752,3
+42550528,25745752,3
+crystalnian,25745752,3
+1003623,25745752,3
+88719620,25745752,3
+jxtx520,25745752,3
+Diawa,25745752,3
+3520940,25745752,2
+78879238,25745752,1
+106113807,25745752,3
+gladdon,25745752,3
+67387298,25745752,1
+121434286,25745752,4
+89844037,25745752,2
+53458050,25745752,3
+Elia1246,25745752,1
+83994671,25745752,2
+21936280,25745752,4
+54868256,25745752,4
+46498894,25745752,1
+timeispassing,25745752,1
+53866213,25745752,2
+Amy-QQ,25745752,3
+tianjianshuo,25745752,3
+27083454,25745752,1
+PsyLadyTricky,25745752,1
+49266731,25745752,2
+63629111,25745752,2
+62323478,25745752,4
+cherrytiaotiao,25745752,4
+75569669,25745752,3
+TinyLens1990,25745752,2
+wa923,25745752,3
+51350136,25745752,1
+48542605,25745752,3
+lilian199288,25745752,3
+1205451,25745752,3
+aprilini,25745752,1
+41502441,25745752,3
+13817157,25745752,3
+yaoyan,25745752,3
+51909421,25745752,2
+101751000,25745752,3
+reyo,25745752,1
+55914846,25745752,5
+53794054,25745752,2
+Sugwene1030,25745752,2
+alicetintin,25745752,-1
+Jason90,25745752,4
+twinsty,25745752,-1
+shenshenet,25745752,3
+97648563,25745752,2
+2756792,25745752,4
+3214366,25745752,5
+idrinkbeer,25745752,3
+48254361,25745752,-1
+gayles,25745752,2
+44008475,25745752,3
+shallio,25745752,3
+70446017,25745752,4
+61180688,25745752,3
+CKyan,25745752,1
+l1086905132,25745752,5
+Jhopassion,25745752,3
+67987733,25745752,3
+4684031,25745752,1
+vilita,25745752,3
+phoebe43,25745752,1
+yuanqing630,25745752,5
+chitty411,25745752,1
+roentgen,25745752,1
+66699032,25745752,2
+47098019,25745752,4
+52635539,25745752,1
+51821755,25745752,5
+60409700,25745752,2
+limeemil,25745752,1
+58630566,25745752,1
+44716146,25745752,3
+49340336,25745752,4
+71048664,25745752,2
+120049030,25745752,4
+ya829,25745752,1
+53129390,25745752,2
+75809533,25745752,1
+vidania,25745752,2
+yangfan520,25745752,2
+75416768,25745752,2
+46337346,25745752,2
+69222480,25745752,2
+ainaonao,25745752,4
+53408262,25745752,3
+66222441,25745752,1
+84936380,25745752,-1
+orangeboy,25745752,4
+49761291,25745752,2
+48476618,25745752,2
+zhoushuqing,25745752,-1
+33275779,25745752,3
+65809377,25745752,3
+2168659,25745752,4
+87383835,25745752,3
+38698372,25745752,1
+45346180,25745752,1
+menthe11,25745752,3
+127429408,25745752,2
+russellwx,25745752,4
+65039793,25745752,3
+127901534,25745752,2
+65721480,25745752,3
+43889610,25745752,1
+hitian,25745752,1
+onlylovevicky,25745752,3
+2374657,25745752,2
+45571229,25745752,4
+76234100,25745752,3
+huobai,25745752,2
+6700582,25745752,4
+62987482,25745752,3
+4683967,25745752,3
+52618680,25745752,3
+58045712,25745752,2
+comewinni,25745752,1
+43857375,25745752,4
+55444463,25745752,-1
+59618340,25745752,4
+44121250,25745752,3
+63926382,25745752,3
+111974961,25745752,4
+3206408,25745752,1
+39518721,25745752,3
+87919166,25745752,4
+64274695,25745752,3
+3416468,25745752,1
+124286936,25745752,3
+124286936,25745752,3
+103610572,25745752,5
+W-0,25745752,2
+40281229,25745752,3
+yourstoryya,25745752,4
+che_yan,25745752,4
+59323757,25745752,3
+62864634,25745752,2
+dEjaVu.,25745752,-1
+miawanzi,25745752,2
+51568494,25745752,2
+49558870,25745752,4
+86716942,25745752,3
+49411986,25745752,2
+74725890,25745752,3
+61721303,25745752,3
+52352034,25745752,4
+agatewang,25745752,2
+127755735,25745752,1
+niuniuniuniuniu,25745752,2
+mayhi,25745752,5
+72257329,25745752,3
+madiwu,25745752,3
+63275995,25745752,2
+34569099,25745752,4
+69221648,25745752,1
+collinswhy,25745752,1
+50521216,25745752,4
+flavia-huqing,25745752,3
+66294527,25745752,3
+30181678,25745752,2
+36138367,25745752,1
+105405230,25745752,1
+Monica999xkw,25745752,1
+74321754,25745752,2
+114433999,25745752,4
+64543096,25745752,2
+carolsy22,25745752,3
+satanyyy,25745752,1
+simple_v,25745752,4
+76685954,25745752,3
+mumuyang1987,25745752,3
+butterfly10,25745752,3
+lswawabao,25745752,3
+50679163,25745752,1
+62415828,25745752,4
+92000437,25745752,3
+35292289,25745752,4
+immt,25745752,2
+60944731,25745752,3
+bbmuyu,25745752,3
+53236505,25745752,1
+jessiezhaixi,25745752,4
+TiAmoGuaibaobao,25745752,1
+56841923,25745752,3
+52782307,25745752,3
+127912749,25745752,4
+36109086,25745752,4
+bontemps,25745752,3
+summer0706,25745752,3
+29568724,25745752,1
+68946693,25745752,2
+roseunicorn,25745752,5
+83472045,25745752,1
+46319723,25745752,3
+ecstasybird,25745752,1
+ppxoxqq,25745752,2
+1793602,25745752,3
+61116917,25745752,3
+42084433,25745752,3
+43219152,25745752,3
+45408474,25745752,2
+32625691,25745752,2
+gzrunman,25745752,5
+102841911,25745752,1
+2790400,25745752,3
+1326787,25745752,2
+90950399,25745752,3
+tanlQI,25745752,3
+58403534,25745752,2
+58081227,25745752,-1
+menghao,25745752,5
+50284389,25745752,5
+1574050,25745752,5
+56642682,25745752,2
+kikizhu,25745752,3
+homelessbitch,25745752,5
+52790172,25745752,3
+69381377,25745752,1
+70258844,25745752,2
+mattni,25745752,3
+swanman17,25745752,2
+6765143,25745752,2
+28178860,25745752,4
+10582878,25745752,3
+1617432,25745752,1
+lili_ice,25745752,3
+desa,25745752,3
+53247306,25745752,2
+sabrinaxu,25745752,4
+Missy1012,25745752,2
+37896659,25745752,5
+yaocu,25745752,3
+2393543,25745752,3
+lunaya,25745752,3
+27308826,25745752,4
+58289108,25745752,-1
+65948183,25745752,3
+55536173,25745752,2
+44594188,25745752,3
+52790328,25745752,2
+jingyi2011,25745752,2
+59859213,25745752,4
+127686469,25745752,2
+benbirdz,25745752,5
+60494996,25745752,4
+58772458,25745752,2
+18984732,25745752,3
+54105382,25745752,4
+adoudouer,25745752,3
+huica3,25745752,-1
+4456560,25745752,3
+marco_0708,25745752,1
+50494275,25745752,3
+60486115,25745752,3
+mystory0310,25745752,1
+33883920,25745752,3
+56072639,25745752,3
+1671555,25745752,1
+57348921,25745752,4
+79915546,25745752,1
+64677693,25745752,2
+sezhu,25745752,1
+89417792,25745752,3
+ler.sky.,25745752,2
+63993568,25745752,4
+fuji-kelly,25745752,4
+41430205,25745752,1
+53485211,25745752,2
+2272378,25745752,3
+2652338,25745752,3
+70948915,25745752,2
+50234828,25745752,3
+volacano,25745752,1
+vipzshtomorrow,25745752,1
+121682845,25745752,3
+cherrywang0118,25745752,3
+xinwenlulu,25745752,-1
+74232483,25745752,4
+119383359,25745752,1
+f3112087,25745752,2
+FaberLee,25745752,5
+53223737,25745752,-1
+1138408,25745752,5
+47805986,25745752,4
+bluefall,25745752,3
+48828278,25745752,5
+126804729,25745752,2
+easystyle,25745752,3
+90051465,25745752,3
+90051465,25745752,3
+carolwang,25745752,3
+79199655,25745752,3
+49095343,25745752,3
+42484258,25745752,2
+62663500,25745752,3
+48162414,25745752,1
+sylviapoor,25745752,3
+foreverboy,25745752,2
+laohao,25745752,2
+haprabbit,25745752,3
+eleGuai,25745752,2
+2230280,25745752,4
+44453325,25745752,3
+4445748,25745752,1
+119304037,25745752,2
+zzddbb,25745752,-1
+49795617,25745752,3
+pingi_,25745752,-1
+45980116,25745752,1
+121491917,25745752,-1
+Chneyu8504,25745752,3
+64639835,25745752,3
+wuxiduo,25745752,2
+57387221,25745752,4
+30884176,25745752,3
+64297139,25745752,1
+41138597,25745752,1
+67649121,25745752,2
+68700662,25745752,3
+57916639,25745752,-1
+65723409,25745752,5
+estelle_mellow,25745752,2
+cophichou,25745752,3
+mufengqin,25745752,1
+oldmanriver,25745752,1
+48987151,25745752,3
+2539331,25745752,3
+48166498,25745752,2
+2620278,25745752,1
+62121101,25745752,2
+49314265,25745752,3
+3616877,25745752,2
+46479619,25745752,3
+49880373,25745752,4
+53663495,25745752,1
+72501364,25745752,1
+66514228,25745752,4
+4623641,25745752,3
+121920760,25745752,2
+highfever100,25745752,2
+53419926,25745752,3
+4575449,25745752,5
+caoduozi,25745752,3
+67882810,25745752,3
+57084858,25745752,3
+spnda,25745752,3
+26715515,25745752,5
+93408667,25745752,4
+malicedix,25745752,2
+52094472,25745752,3
+36884802,25745752,3
+damos,25745752,1
+60051428,25745752,2
+lululalalulu,25745752,2
+Wasted,25745752,2
+65862187,25745752,1
+tingkelly,25745752,4
+51592058,25745752,2
+49232664,25745752,5
+dhgx,25745752,1
+103271136,25745752,1
+keruisitao,25745752,5
+66644571,25745752,3
+46899635,25745752,1
+49748372,25745752,4
+45244208,25745752,2
+XenFOne,25745752,1
+sixthchild,25745752,1
+56035260,25745752,1
+56035260,25745752,1
+92958366,25745752,4
+60215317,25745752,3
+jellysmiling,25745752,3
+Fly_to_be,25745752,2
+sirmask,25745752,3
+dongdayeah,25745752,3
+49868522,25745752,3
+70996341,25745752,4
+toyshen,25745752,2
+zhangyuyuzhang,25745752,3
+meme727,25745752,4
+2180956,25745752,1
+35608760,25745752,5
+79330359,25745752,3
+zouhuzm,25745752,1
+nick0403,25745752,4
+103178758,25745752,2
+ximenqing_,25745752,3
+tuzijiang,25745752,2
+92610102,25745752,4
+sapphire1986,25745752,3
+jennifer_yue,25745752,4
+luckycat_,25745752,-1
+evangel,25745752,1
+hrcforever,25745752,5
+55767927,25745752,2
+fsgj4444,25745752,2
+63769140,25745752,3
+urk717,25745752,2
+56311207,25745752,2
+24791739,25745752,2
+apple475,25745752,3
+58888075,25745752,2
+115482550,25745752,3
+70499364,25745752,3
+99601239,25745752,1
+amandapang,25745752,3
+xiaoshuiliuqiao,25745752,2
+86836719,25745752,4
+86836719,25745752,4
+33970475,25745752,1
+95836807,25745752,3
+lialooloo,25745752,-1
+65741899,25745752,3
+57780182,25745752,3
+xiaoxingboy,25745752,5
+xiaoaifansion,25745752,3
+narcyRan,25745752,1
+93469106,25745752,3
+river712,25745752,3
+62452772,25745752,2
+sanzanglx,25745752,3
+dengzhuo,25745752,3
+45344133,25745752,3
+brokenL,25745752,4
+uu2,25745752,3
+jinjidexiong,25745752,2
+2581972,25745752,5
+clynch,25745752,-1
+tony07monkey,25745752,3
+63308535,25745752,2
+50219998,25745752,1
+2948050,25745752,-1
+4009725,25745752,1
+rokkumu,25745752,1
+summer_rock,25745752,1
+80045002,25745752,1
+55980098,25745752,2
+57105996,25745752,2
+ruoren,25745752,2
+64713080,25745752,4
+4402268,25745752,3
+2429499,25745752,3
+48041351,25745752,3
+57847628,25745752,-1
+102598019,25745752,4
+76893393,25745752,3
+50010079,25745752,3
+127854341,25745752,1
+127854341,25745752,1
+xjrangel,25745752,2
+56130323,25745752,4
+zhangwanxun,25745752,3
+pimichang,25745752,3
+53206296,25745752,2
+58584284,25745752,5
+honeydaisy,25745752,2
+127088427,25745752,3
+56914134,25745752,2
+codetco,25745752,2
+56333236,25745752,2
+aNeEr,25745752,2
+49255582,25745752,3
+94085565,25745752,4
+103110470,25745752,3
+127850405,25745752,-1
+4557290,25745752,5
+72996822,25745752,2
+91578620,25745752,1
+likenana,25745752,1
+wakaka1986,25745752,1
+84918621,25745752,1
+ricik,25745752,2
+foreveraegeanse,25745752,2
+brooke868,25745752,3
+59104815,25745752,3
+40917294,25745752,-1
+39130354,25745752,2
+3474392,25745752,3
+13463439,25745752,1
+69234532,25745752,2
+miluoya,25745752,4
+65390747,25745752,4
+Cliaoliao,25745752,2
+53588490,25745752,5
+2817521,25745752,2
+yy541272862,25745752,2
+66322119,25745752,3
+2984029,25745752,4
+70741441,25745752,2
+50532923,25745752,2
+27207021,25745752,3
+coual,25745752,3
+127845222,25745752,-1
+2227798,25745752,5
+49902216,25745752,2
+51023914,25745752,3
+sakyadream,25745752,1
+1951463,25745752,2
+127778865,25745752,3
+53470202,25745752,3
+51221624,25745752,1
+1803492,25745752,3
+ghslyvia,25745752,2
+50150642,25745752,3
+zhhongbo,25745752,2
+82522249,25745752,3
+121622673,25745752,3
+53751262,25745752,4
+leavev,25745752,4
+44068980,25745752,3
+91785401,25745752,2
+3680362,25745752,1
+53510827,25745752,1
+miku,25745752,3
+56207725,25745752,1
+weichengluanma,25745752,3
+54654369,25745752,2
+77165599,25745752,1
+48739144,25745752,2
+51651483,25745752,4
+79763326,25745752,3
+3760780,25745752,3
+50930270,25745752,4
+xiaomixixi,25745752,3
+52981467,25745752,3
+37293230,25745752,3
+soul922,25745752,3
+51280368,25745752,4
+52074740,25745752,2
+127073783,25745752,3
+ourhike,25745752,5
+toddmi,25745752,2
+125615628,25745752,5
+3504680,25745752,1
+woodleaf_723,25745752,3
+127840208,25745752,1
+73600368,25745752,4
+42724768,25745752,3
+127840029,25745752,1
+51583782,25745752,1
+127707761,25745752,5
+62956939,25745752,3
+auth2333,25745752,3
+kickkkk,25745752,-1
+61069338,25745752,1
+6440487,25745752,3
+chen828,25745752,4
+uhoiuikjhiu,25745752,3
+81586957,25745752,5
+zlmtvip123,25745752,1
+gremlin511,25745752,4
+39562998,25745752,3
+4915009,25745752,4
+zhouruopei,25745752,2
+53326407,25745752,2
+114852399,25745752,1
+46368829,25745752,2
+onlyloll,25745752,1
+youyu1229,25745752,2
+26595142,25745752,3
+mymadworld,25745752,2
+findependence,25745752,1
+Garing,25745752,3
+48726212,25745752,3
+fengyicici,25745752,1
+1859550,25745752,4
+49259090,25745752,2
+78972220,25745752,3
+ySrrrrr,25745752,2
+vanjuta,25745752,3
+34245923,25745752,2
+2498446,25745752,5
+63894811,25745752,2
+86853416,25745752,2
+2788108,25745752,3
+yujianlch,25745752,-1
+47048376,25745752,3
+127829264,25745752,-1
+59012002,25745752,4
+48413885,25745752,-1
+83852836,25745752,3
+84145371,25745752,3
+zhangrenran,25745752,2
+52128308,25745752,2
+64640148,25745752,2
+poly0330,25745752,3
+79194263,25745752,1
+cooloh,25745752,3
+62367037,25745752,-1
+127825089,25745752,-1
+73666911,25745752,2
+49011902,25745752,1
+jsh0915,25745752,2
+djakjfdl,25745752,3
+zzheng,25745752,3
+julynan,25745752,2
+marioshuairen,25745752,1
+X-forest,25745752,3
+82763339,25745752,2
+jashia,25745752,5
+cuion,25745752,3
+sunjm,25745752,2
+78393251,25745752,3
+55790566,25745752,1
+65913822,25745752,3
+MA123456789,25745752,5
+56349029,25745752,3
+53888621,25745752,4
+45332811,25745752,3
+59797746,25745752,3
+67057631,25745752,1
+71225504,25745752,4
+47261642,25745752,3
+lzxsophia,25745752,2
+56344879,25745752,4
+youraisemedown,25745752,1
+erobin,25745752,3
+mar_jin,25745752,-1
+zhongxing,25745752,3
+89981907,25745752,3
+65075626,25745752,-1
+73871573,25745752,2
+48406181,25745752,1
+ryonino,25745752,2
+luojiu,25745752,-1
+58716721,25745752,3
+127816393,25745752,1
+127816292,25745752,2
+68567549,25745752,3
+54197858,25745752,-1
+Evanslv,25745752,3
+lasiya1986,25745752,3
+snow-in-coffee,25745752,3
+dmLaura,25745752,3
+67080689,25745752,3
+127725727,25745752,3
+65870450,25745752,3
+yilin101,25745752,2
+4182806,25745752,3
+wenteng1988,25745752,2
+45318563,25745752,1
+vicong,25745752,-1
+62934408,25745752,1
+greeneyesgirl,25745752,2
+50251329,25745752,5
+aprilair1991,25745752,4
+80850838,25745752,2
+10617843,25745752,-1
+63067059,25745752,3
+72613469,25745752,2
+68324587,25745752,4
+56392220,25745752,3
+3350882,25745752,3
+smallkiki,25745752,4
+84047449,25745752,-1
+Foxie717,25745752,4
+xyq1364,25745752,-1
+65670261,25745752,1
+52258781,25745752,1
+43505203,25745752,3
+47976009,25745752,3
+linglingwin,25745752,2
+123129041,25745752,3
+36282135,25745752,3
+xmly13,25745752,4
+52843544,25745752,3
+119756171,25745752,3
+79486578,25745752,4
+74951548,25745752,2
+sugardomoto,25745752,2
+vivian_ko,25745752,2
+124794563,25745752,4
+qamber,25745752,2
+Carl0809,25745752,3
+yanjie0310,25745752,3
+Kraatui,25745752,3
+4758428,25745752,2
+90225659,25745752,1
+46341304,25745752,4
+127806972,25745752,5
+50113328,25745752,3
+mayeehaohao,25745752,1
+81870071,25745752,3
+8402557,25745752,3
+59655599,25745752,3
+48636482,25745752,3
+eazi2,25745752,1
+libiezaijian,25745752,2
+lala0322,25745752,3
+43390539,25745752,4
+71159763,25745752,3
+42497545,25745752,1
+luoxiaomumu,25745752,5
+127497892,25745752,5
+jenniferxiao,25745752,3
+122601369,25745752,1
+nolike,25745752,4
+36601365,25745752,3
+119081444,25745752,3
+2248138,25745752,3
+34105589,25745752,3
+46348954,25745752,3
+62222208,25745752,3
+50774905,25745752,4
+ssjianghe,25745752,2
+48146318,25745752,4
+chenny515,25745752,1
+9659634,25745752,2
+9659634,25745752,2
+huyouyou,25745752,3
+91487437,25745752,3
+3220875,25745752,5
+56524460,25745752,3
+Popdai,25745752,5
+69135256,25745752,2
+YamaHao,25745752,-1
+53731567,25745752,-1
+blew,25745752,3
+106450202,25745752,2
+like-a-star,25745752,4
+soloz,25745752,2
+huaidanwakaka,25745752,3
+44628811,25745752,3
+47047240,25745752,3
+aptxkim,25745752,3
+83387941,25745752,2
+49123249,25745752,1
+4309080,25745752,3
+54767282,25745752,1
+48795786,25745752,1
+sssmiyavi,25745752,3
+60011676,25745752,3
+53532061,25745752,1
+xiawu4dian,25745752,4
+yoyo815,25745752,3
+a476583825,25745752,3
+80442320,25745752,3
+zxl321,25745752,2
+anaisecho,25745752,1
+71779079,25745752,3
+73135208,25745752,2
+48034227,25745752,4
+76115316,25745752,3
+52013983,25745752,2
+58706786,25745752,-1
+74025312,25745752,1
+1282175,25745752,3
+54955614,25745752,1
+s1,25745752,2
+depressioncat,25745752,5
+1240037,25745752,3
+58922706,25745752,1
+superzoukang,25745752,3
+yu830,25745752,3
+Baoberlln,25745752,3
+54444085,25745752,3
+Bloodleee,25745752,2
+66575929,25745752,2
+dearpea,25745752,3
+64622433,25745752,4
+ddtou,25745752,3
+67856848,25745752,-1
+adayaway,25745752,2
+alessioliu,25745752,2
+TL-toupan512,25745752,1
+79948176,25745752,3
+56672211,25745752,4
+LeeDouzi,25745752,2
+39653518,25745752,2
+63241871,25745752,2
+45441070,25745752,2
+1834004,25745752,4
+3303856,25745752,3
+48323179,25745752,3
+too1890,25745752,4
+shables,25745752,1
+yigesurenle,25745752,3
+wubudingyang,25745752,2
+47044731,25745752,5
+47869663,25745752,4
+shenggu,25745752,-1
+2114417,25745752,2
+56164426,25745752,2
+127334219,25745752,2
+liushu429,25745752,1
+108168194,25745752,4
+54652758,25745752,3
+31692663,25745752,4
+46234987,25745752,1
+83691770,25745752,3
+shenshenaini,25745752,5
+72234354,25745752,3
+38886735,25745752,-1
+candy_mo,25745752,4
+vera-cyw,25745752,3
+56827634,25745752,4
+82872921,25745752,1
+69504289,25745752,1
+zhuangdikun,25745752,2
+1580104,25745752,3
+66979226,25745752,3
+37568625,25745752,1
+sunskystone,25745752,2
+69132994,25745752,4
+49759767,25745752,1
+1153912,25745752,2
+skutiee,25745752,-1
+51882960,25745752,3
+51836771,25745752,1
+2993640,25745752,5
+hayleyzhang,25745752,3
+89787162,25745752,3
+69168156,25745752,5
+40681472,25745752,2
+faye_fiona,25745752,5
+62041665,25745752,2
+wangliuchi,25745752,3
+30010628,25745752,3
+1885351,25745752,4
+cimicimi,25745752,3
+jiangxuezi,25745752,3
+green198641,25745752,-1
+125368859,25745752,4
+51445023,25745752,3
+4519798,25745752,1
+74759325,25745752,2
+cloudwwb,25745752,4
+1463503,25745752,2
+36435105,25745752,4
+2622237,25745752,3
+4024224,25745752,3
+48562105,25745752,3
+47016442,25745752,3
+57707299,25745752,4
+48132884,25745752,3
+60074125,25745752,2
+65392414,25745752,2
+sissip,25745752,2
+32195292,25745752,2
+35569255,25745752,2
+53606035,25745752,3
+bellona-mars,25745752,5
+70831845,25745752,1
+xhelin,25745752,3
+3109335,25745752,2
+30225455,25745752,3
+xyzbehappy,25745752,2
+oneweek,25745752,3
+3762146,25745752,1
+75945244,25745752,1
+2428631,25745752,2
+shen0919,25745752,3
+62559082,25745752,3
+searchforneed,25745752,4
+stellawxm,25745752,3
+42116561,25745752,2
+80854961,25745752,2
+4509975,25745752,2
+57766346,25745752,3
+zhanzhan8871,25745752,3
+jerkoff,25745752,3
+43609061,25745752,3
+55817697,25745752,3
+wnnawnn,25745752,1
+108693709,25745752,2
+mohemishuo,25745752,3
+1198621,25745752,3
+64579754,25745752,5
+57581825,25745752,2
+43978812,25745752,2
+64996012,25745752,3
+38635905,25745752,4
+96967794,25745752,1
+fountine1120,25745752,1
+52548384,25745752,-1
+50166173,25745752,3
+hnicypb,25745752,3
+3852753,25745752,3
+48079113,25745752,3
+vivian443600819,25745752,1
+47166842,25745752,3
+glasstar,25745752,2
+qinluowei,25745752,2
+2386302,25745752,1
+skylerzhang,25745752,-1
+2011733,25745752,4
+3483952,25745752,2
+66458815,25745752,2
+56307969,25745752,3
+98739826,25745752,3
+Gobytime,25745752,2
+53220311,25745752,1
+lzltracy,25745752,4
+119463216,25745752,3
+51517686,25745752,3
+44406151,25745752,3
+49275406,25745752,2
+kewensmile,25745752,4
+lilylee1023,25745752,4
+48591760,25745752,3
+luoze,25745752,2
+81259545,25745752,3
+41365624,25745752,4
+zzzxy,25745752,2
+47590897,25745752,3
+Anoni,25745752,3
+60257340,25745752,4
+67393581,25745752,2
+tanglu1110,25745752,-1
+nangongmocheng,25745752,2
+calvingaga,25745752,3
+4003784,25745752,2
+kevin7,25745752,5
+59760298,25745752,3
+58055365,25745752,4
+57753542,25745752,3
+lovesunny,25745752,2
+iisakura,25745752,3
+72626479,25745752,2
+46220008,25745752,1
+39547942,25745752,2
+noPussy,25745752,5
+wwwsxst,25745752,3
+49668025,25745752,3
+74535406,25745752,1
+64574389,25745752,5
+liwujiu,25745752,3
+yangjiangyou,25745752,3
+glandlord,25745752,3
+37183583,25745752,4
+46939628,25745752,3
+reborncx,25745752,3
+82496206,25745752,3
+icebully521,25745752,3
+60819733,25745752,2
+liuxk99,25745752,2
+leafandmemory,25745752,4
+52390173,25745752,3
+himarkcn,25745752,2
+62521521,25745752,1
+62876165,25745752,3
+4218191,25745752,4
+leeweidong,25745752,3
+125227684,25745752,1
+EvelynSalt,25745752,4
+Fanssi,25745752,3
+cuixuelei,25745752,2
+63548568,25745752,3
+52771940,25745752,3
+47774379,25745752,3
+lingxiaoyi,25745752,3
+afeidemimi,25745752,1
+linquan,25745752,4
+62593308,25745752,2
+shennanqing,25745752,2
+greymz,25745752,5
+luxifero,25745752,2
+q455,25745752,3
+NiBen,25745752,5
+gdmia,25745752,2
+2955357,25745752,2
+laixiaccc,25745752,2
+58871831,25745752,3
+35578162,25745752,2
+atengbrilliance,25745752,2
+38085562,25745752,2
+seahainiao,25745752,1
+renxiaoheng,25745752,1
+dreven,25745752,3
+tottibai,25745752,4
+tulando,25745752,5
+80462824,25745752,2
+62600527,25745752,1
+baffel,25745752,3
+juno_wang,25745752,2
+76126722,25745752,-1
+45828294,25745752,3
+diecuo,25745752,1
+58542371,25745752,-1
+44450679,25745752,1
+3719668,25745752,3
+49162813,25745752,2
+buffyjiang,25745752,2
+48251563,25745752,5
+68584250,25745752,1
+thoris,25745752,3
+81374641,25745752,1
+LilC,25745752,3
+50401032,25745752,3
+runlifelong,25745752,1
+57674058,25745752,2
+61814596,25745752,1
+wendyshel,25745752,2
+katherine_pig,25745752,3
+83475018,25745752,2
+85156145,25745752,3
+52160657,25745752,3
+40054268,25745752,1
+51170737,25745752,3
+126536544,25745752,2
+travel_yuong,25745752,3
+92075243,25745752,1
+icebugger,25745752,1
+97061327,25745752,1
+jjwhu,25745752,2
+4188273,25745752,1
+56326446,25745752,3
+Lolita1881,25745752,4
+Lolita1881,25745752,4
+49873483,25745752,3
+roseauthor,25745752,1
+coldang,25745752,3
+3592617,25745752,3
+52999233,25745752,3
+qqkidz,25745752,2
+59169109,25745752,3
+50098699,25745752,3
+58314881,25745752,4
+ice_pudding,25745752,2
+haoweichen,25745752,3
+57984448,25745752,3
+35518497,25745752,2
+54373936,25745752,5
+3346776,25745752,3
+64137710,25745752,3
+littlezhisandra,25745752,3
+50840996,25745752,3
+43632851,25745752,2
+xiaopang1106,25745752,4
+njweek,25745752,3
+71495543,25745752,3
+47239413,25745752,1
+61395769,25745752,1
+43785559,25745752,3
+59604055,25745752,1
+76993603,25745752,3
+43508209,25745752,1
+moqi-xiao,25745752,3
+51216421,25745752,2
+carinawang,25745752,3
+wait2000,25745752,3
+xmengyao,25745752,3
+shorechain,25745752,3
+lovelarissa,25745752,4
+87450435,25745752,2
+Cynthiajjz,25745752,3
+6745246,25745752,3
+44129318,25745752,3
+1372577,25745752,4
+77186305,25745752,3
+Koko_head,25745752,3
+60888197,25745752,4
+63680376,25745752,3
+72319276,25745752,1
+candyhorse,25745752,3
+vava2046,25745752,3
+102781440,25745752,3
+summerwu,25745752,2
+feesle,25745752,4
+43713017,25745752,3
+6911787,25745752,3
+princesswan,25745752,3
+33649081,25745752,4
+gaxiaomi,25745752,2
+Amandaland,25745752,-1
+68027461,25745752,2
+4657028,25745752,2
+andystrawberry,25745752,2
+88718414,25745752,1
+61392222,25745752,2
+79550224,25745752,3
+53531270,25745752,2
+116089509,25745752,1
+3671639,25745752,3
+4547052,25745752,2
+70961097,25745752,-1
+3088700,25745752,2
+25664582,25745752,2
+65518969,25745752,3
+2808574,25745752,3
+56684398,25745752,3
+68385418,25745752,2
+linxinbaozi,25745752,3
+88378303,25745752,1
+2734376,25745752,3
+haehikalu,25745752,-1
+4088278,25745752,3
+liuGrey,25745752,3
+sweetqin,25745752,3
+pgydw,25745752,3
+50142885,25745752,4
+53534718,25745752,3
+nonopa,25745752,1
+65763988,25745752,4
+78843795,25745752,3
+63229017,25745752,4
+eunsung,25745752,4
+happy8dayday,25745752,5
+53804710,25745752,3
+mcbird3017,25745752,3
+62273973,25745752,5
+2647676,25745752,4
+Youmans,25745752,3
+ycmcif,25745752,3
+maimaibupang,25745752,2
+cathyclan,25745752,1
+liong,25745752,5
+idahoriver,25745752,3
+cheerjuno,25745752,3
+43748947,25745752,2
+belliys,25745752,1
+41896464,25745752,2
+Yokizyz,25745752,2
+59594277,25745752,3
+68984410,25745752,3
+luoliningmou,25745752,1
+39421864,25745752,3
+51037636,25745752,4
+59541262,25745752,1
+45899910,25745752,2
+4453221,25745752,3
+4700776,25745752,3
+72693532,25745752,1
+75186086,25745752,3
+102404375,25745752,1
+11658942,25745752,3
+Ra1nbow,25745752,-1
+67377954,25745752,-1
+67377954,25745752,-1
+suoweiyiren,25745752,5
+lfyfnfn,25745752,3
+47659426,25745752,1
+karmaqi,25745752,5
+shmilymichelle,25745752,1
+83456365,25745752,2
+37634334,25745752,-1
+34969112,25745752,3
+70458781,25745752,2
+82412505,25745752,5
+48792374,25745752,4
+10236919,25745752,3
+skag,25745752,3
+ousophie,25745752,-1
+1456706,25745752,1
+skyofhaley,25745752,3
+60701395,25745752,4
+57786882,25745752,1
+3142293,25745752,-1
+yeying220,25745752,4
+65676827,25745752,1
+57248096,25745752,2
+luizspirit,25745752,2
+102581208,25745752,3
+104427856,25745752,5
+64249051,25745752,1
+42991994,25745752,2
+justno,25745752,2
+xilouchen,25745752,3
+treeplanting,25745752,3
+61319449,25745752,3
+70968182,25745752,2
+2600549,25745752,3
+73189108,25745752,3
+1977072,25745752,4
+4564418,25745752,2
+huangtoufa,25745752,3
+legendold,25745752,2
+gemiyang,25745752,5
+65679289,25745752,1
+2248587,25745752,3
+leetreasure,25745752,2
+mary.mary,25745752,4
+2672610,25745752,4
+33415384,25745752,3
+together1018,25745752,2
+66959983,25745752,2
+67494271,25745752,5
+66698052,25745752,2
+Alex2Wang,25745752,5
+1149126,25745752,3
+62403296,25745752,1
+49571617,25745752,2
+daniel1027,25745752,1
+59794841,25745752,2
+charlene1996,25745752,2
+83082276,25745752,1
+123945021,25745752,3
+1536123,25745752,2
+evollove,25745752,1
+109239137,25745752,3
+after17-Lily,25745752,1
+90257264,25745752,3
+stephen.lee,25745752,3
+alicetianbule,25745752,4
+cszczjy,25745752,5
+yelano,25745752,2
+Bening,25745752,4
+64875254,25745752,4
+maoduoli,25745752,3
+45479009,25745752,2
+116471524,25745752,2
+pyf1991,25745752,4
+yuxiaoyan0908,25745752,2
+yumoxin,25745752,2
+47586387,25745752,4
+46327503,25745752,5
+favezhihao,25745752,3
+37228673,25745752,3
+37228673,25745752,3
+59778777,25745752,3
+76777443,25745752,-1
+54395692,25745752,1
+4652178,25745752,3
+dinkwok,25745752,2
+50832667,25745752,5
+40172644,25745752,2
+81468340,25745752,4
+xialehe,25745752,3
+jeremywan,25745752,2
+65124379,25745752,3
+69946594,25745752,3
+wuhuihong1992,25745752,3
+leon_howe,25745752,-1
+adamhu,25745752,2
+qjy,25745752,3
+penchen,25745752,2
+vera0902,25745752,4
+57948442,25745752,1
+42533881,25745752,-1
+50351028,25745752,2
+2658903,25745752,4
+cadx2,25745752,2
+63407991,25745752,3
+68819897,25745752,1
+lsj1112,25745752,1
+yaya102,25745752,4
+115235217,25745752,1
+67310405,25745752,1
+47415890,25745752,2
+40447897,25745752,2
+41431313,25745752,3
+66888940,25745752,5
+40605709,25745752,2
+88068570,25745752,1
+92671472,25745752,5
+55777311,25745752,3
+102938445,25745752,2
+56322118,25745752,2
+56322118,25745752,2
+54342192,25745752,3
+47659966,25745752,1
+57033708,25745752,3
+53459682,25745752,3
+2208033,25745752,3
+tinywitch,25745752,3
+73611945,25745752,3
+3858083,25745752,3
+stayfoolishstay,25745752,5
+52434343,25745752,3
+lyych,25745752,3
+44809756,25745752,2
+3450694,25745752,3
+icheney,25745752,2
+32882542,25745752,2
+AspireY,25745752,2
+milara,25745752,4
+49606873,25745752,2
+68963474,25745752,3
+slowwalker,25745752,3
+love-jasmine,25745752,5
+earderou,25745752,1
+35994673,25745752,3
+57864057,25745752,1
+73760476,25745752,1
+black9_eleven,25745752,5
+68681840,25745752,3
+Edith_M,25745752,1
+MsDuoli,25745752,1
+AsukaCheung,25745752,2
+gagaGu,25745752,3
+66699250,25745752,3
+ikeike,25745752,3
+69507945,25745752,2
+54208229,25745752,3
+48667836,25745752,1
+ggqgu,25745752,1
+65145861,25745752,3
+lanshunun,25745752,3
+44668432,25745752,4
+85314786,25745752,-1
+91686370,25745752,-1
+Justgreen,25745752,4
+53601891,25745752,2
+57725456,25745752,2
+xbaba,25745752,2
+3556906,25745752,2
+9678828,25745752,4
+sintar,25745752,1
+Lemonsir,25745752,2
+caocaoa,25745752,1
+yobro,25745752,1
+h_deanz,25745752,1
+59232789,25745752,3
+Kts.,25745752,1
+66413788,25745752,4
+Jankerli,25745752,2
+59271699,25745752,4
+bunnyyz,25745752,2
+allenshao,25745752,4
+49246188,25745752,2
+allblue,25745752,3
+25282878,25745752,2
+127326691,25745752,3
+3089552,25745752,3
+69467775,25745752,4
+ahua1106,25745752,3
+67077088,25745752,3
+59959824,25745752,2
+moshien,25745752,1
+57085015,25745752,5
+91586235,25745752,3
+54415106,25745752,4
+126751984,25745752,3
+rucool,25745752,3
+2374450,25745752,3
+colinwang1123,25745752,2
+aivae,25745752,2
+49304073,25745752,3
+3598072,25745752,4
+84033983,25745752,5
+gongyansong,25745752,1
+many72,25745752,2
+20054174,25745752,3
+53922518,25745752,3
+102269992,25745752,3
+44578565,25745752,1
+56377405,25745752,2
+38811434,25745752,1
+3141648,25745752,1
+62489520,25745752,3
+Xenomelodies,25745752,4
+49548565,25745752,1
+47001489,25745752,3
+Linqiny,25745752,2
+xiaoshi0212,25745752,2
+62757407,25745752,3
+109169757,25745752,2
+kandyball,25745752,1
+ensi,25745752,2
+1883923,25745752,3
+69873542,25745752,3
+42876448,25745752,3
+jiatianyu1,25745752,4
+64318696,25745752,3
+bolanboy,25745752,3
+81240800,25745752,2
+problemchildren,25745752,1
+55383324,25745752,2
+45379301,25745752,2
+wuchild,25745752,3
+lisa91l,25745752,1
+57943867,25745752,3
+65104168,25745752,1
+79409541,25745752,2
+57469040,25745752,1
+65321007,25745752,2
+43496249,25745752,3
+60624451,25745752,3
+3922341,25745752,3
+42861474,25745752,4
+53309781,25745752,-1
+solokimi,25745752,2
+36355818,25745752,2
+66289579,25745752,1
+zzztl,25745752,3
+2672693,25745752,4
+4784093,25745752,-1
+undeadmonster,25745752,1
+54917860,25745752,5
+DavyNight,25745752,1
+melody1012,25745752,2
+72431740,25745752,1
+57086582,25745752,4
+k-moon,25745752,2
+24497938,25745752,4
+102902029,25745752,1
+126168366,25745752,1
+station123,25745752,3
+94040130,25745752,2
+93848272,25745752,3
+59142794,25745752,2
+jeremy-won,25745752,3
+10175471,25745752,2
+rbit,25745752,3
+120426647,25745752,2
+Fassonhymn,25745752,3
+suobang11,25745752,4
+61855067,25745752,-1
+49870974,25745752,2
+weizhidexianzhi,25745752,-1
+70494982,25745752,4
+64119806,25745752,3
+loveloki913,25745752,3
+46590871,25745752,2
+54753339,25745752,4
+122604724,25745752,3
+52381385,25745752,3
+79414164,25745752,2
+125040121,25745752,2
+63888010,25745752,2
+wywe,25745752,3
+64665284,25745752,4
+J7N,25745752,3
+59739922,25745752,1
+milanjia,25745752,3
+FuckUrMother,25745752,3
+57563598,25745752,1
+zipaiwang,25745752,1
+44622653,25745752,1
+14234896,25745752,1
+57040976,25745752,3
+37981041,25745752,-1
+72524329,25745752,4
+42106999,25745752,3
+4597338,25745752,2
+92135778,25745752,2
+61323163,25745752,2
+48164798,25745752,3
+49082695,25745752,1
+godmako,25745752,1
+quite-yacca,25745752,2
+68770847,25745752,3
+graceoklove,25745752,3
+81331494,25745752,3
+66202135,25745752,4
+3788996,25745752,5
+2996899,25745752,4
+31241189,25745752,3
+102996784,25745752,2
+4901199,25745752,3
+2275412,25745752,3
+63916193,25745752,1
+45910532,25745752,3
+120636923,25745752,1
+120625991,25745752,3
+122411500,25745752,3
+49927976,25745752,4
+2632584,25745752,1
+127682733,25745752,2
+Mealie,25745752,3
+nearlloveyou,25745752,3
+59625510,25745752,5
+ragtag,25745752,3
+bluishocean,25745752,4
+3179337,25745752,2
+QXT-Christine,25745752,2
+xudifang13,25745752,3
+58659536,25745752,-1
+mekong,25745752,2
+57112840,25745752,2
+moonglade,25745752,4
+62140009,25745752,4
+60738715,25745752,2
+119516969,25745752,2
+Ranice,25745752,3
+FuckoffJinMu,25745752,2
+50329136,25745752,3
+54130842,25745752,2
+63810704,25745752,2
+74680055,25745752,2
+loveless002,25745752,-1
+lelige,25745752,3
+119043374,25745752,5
+2794729,25745752,4
+magicallss,25745752,3
+44392983,25745752,2
+A.Plus,25745752,1
+kaka-inzaghi,25745752,2
+52140771,25745752,4
+hekahuiqu,25745752,2
+121228834,25745752,1
+45860661,25745752,-1
+4199524,25745752,1
+78934649,25745752,3
+luv_ljpp,25745752,3
+55392439,25745752,3
+2373395,25745752,2
+babymuah,25745752,2
+dukeduan,25745752,2
+ilea,25745752,4
+beibeiyu,25745752,2
+65937854,25745752,3
+lstra,25745752,2
+120772872,25745752,3
+lorenmt,25745752,2
+44645874,25745752,2
+88080225,25745752,-1
+82767053,25745752,2
+85375875,25745752,1
+onlyssy,25745752,3
+xiaoyaozai,25745752,4
+57338440,25745752,3
+66236628,25745752,3
+61434887,25745752,2
+Little_cen,25745752,3
+57111606,25745752,4
+3044978,25745752,2
+86851535,25745752,1
+4506723,25745752,2
+4342517,25745752,2
+84458674,25745752,2
+82533302,25745752,2
+43241733,25745752,4
+liuweifly,25745752,4
+44207067,25745752,2
+82890119,25745752,2
+70042257,25745752,2
+yujingweiwei,25745752,3
+53629840,25745752,4
+4743244,25745752,3
+yiyufan84,25745752,2
+47615356,25745752,3
+45055967,25745752,3
+62754758,25745752,2
+69728043,25745752,-1
+70440738,25745752,3
+mitchi327,25745752,2
+pennypq,25745752,-1
+63352800,25745752,3
+67212610,25745752,1
+gilyun,25745752,2
+chena,25745752,3
+85242524,25745752,5
+46989842,25745752,2
+59393765,25745752,3
+windfromthesea,25745752,4
+32853386,25745752,3
+36794017,25745752,3
+65541182,25745752,4
+39412698,25745752,1
+51497873,25745752,3
+3311212,25745752,3
+Flower-tea,25745752,1
+shelstar,25745752,2
+zhanglinge,25745752,2
+jollychang,25745752,2
+pluiechan,25745752,3
+55656825,25745752,2
+122161339,25745752,4
+49919563,25745752,2
+78988663,25745752,1
+fxiaobo,25745752,2
+73254327,25745752,4
+3616413,25745752,3
+throughyoursoul,25745752,1
+1494780,25745752,3
+4348431,25745752,3
+37787259,25745752,3
+hope-fate,25745752,3
+56236572,25745752,4
+amour_lee,25745752,3
+49146085,25745752,1
+63496954,25745752,3
+vivienvb,25745752,3
+83666516,25745752,3
+58442010,25745752,2
+orchid714,25745752,3
+57998290,25745752,1
+37488201,25745752,-1
+69958249,25745752,3
+36402022,25745752,2
+2621323,25745752,3
+73200892,25745752,3
+102307715,25745752,3
+sealong,25745752,3
+69420876,25745752,2
+dingning_teinei,25745752,2
+cheng7si8jin,25745752,2
+MarkFong,25745752,1
+37402473,25745752,2
+124892658,25745752,3
+38815134,25745752,2
+40413421,25745752,5
+75292213,25745752,4
+31714780,25745752,2
+xiaogangkof,25745752,3
+icerabbitbaby,25745752,2
+59573485,25745752,2
+1228717,25745752,3
+39716480,25745752,1
+80163980,25745752,4
+72996142,25745752,3
+2845192,25745752,5
+50054232,25745752,4
+63782135,25745752,5
+Zathywen,25745752,1
+49267852,25745752,3
+63095049,25745752,3
+i.m.yours,25745752,3
+58884746,25745752,1
+40835496,25745752,-1
+MOVA,25745752,-1
+57262819,25745752,3
+62825162,25745752,-1
+loischoi,25745752,1
+43308904,25745752,4
+34753066,25745752,3
+41919176,25745752,2
+44675357,25745752,1
+57456977,25745752,3
+61907684,25745752,2
+ccllj,25745752,2
+zoerance,25745752,4
+60245007,25745752,5
+63041482,25745752,3
+44203908,25745752,2
+76397648,25745752,2
+102647175,25745752,4
+3277293,25745752,3
+cherryonsale,25745752,3
+nanjournal,25745752,4
+skycg,25745752,1
+cchestnut,25745752,1
+104822115,25745752,-1
+CobainRose,25745752,2
+5180421,25745752,2
+changchangxian,25745752,3
+nss1w1,25745752,2
+cheer1993,25745752,2
+Rosier,25745752,3
+51401098,25745752,3
+SeanShepherd,25745752,4
+1493686,25745752,2
+101271752,25745752,5
+13012249,25745752,2
+Joan_J,25745752,3
+75215757,25745752,1
+2957616,25745752,3
+68871897,25745752,3
+52634623,25745752,3
+vanexu,25745752,3
+61863665,25745752,2
+99004931,25745752,2
+HowShouldIKnow,25745752,2
+70694742,25745752,-1
+ableno,25745752,3
+60406508,25745752,1
+49338971,25745752,3
+49338971,25745752,3
+64197994,25745752,3
+45828730,25745752,3
+119312199,25745752,2
+52499368,25745752,2
+48320059,25745752,3
+shadow_z,25745752,2
+littlejuice,25745752,-1
+dearachie,25745752,3
+81146604,25745752,5
+56474762,25745752,1
+59222778,25745752,3
+jyngoing1990,25745752,-1
+97187010,25745752,2
+agenta,25745752,3
+2365357,25745752,3
+2061554,25745752,4
+ciguanzi,25745752,5
+57617460,25745752,1
+kay0oo,25745752,1
+36212126,25745752,2
+9614176,25745752,1
+58289543,25745752,2
+81410709,25745752,5
+36789209,25745752,2
+53735942,25745752,5
+62837123,25745752,1
+35079473,25745752,1
+sshen,25745752,2
+108352341,25745752,2
+53636341,25745752,3
+63187401,25745752,2
+79407609,25745752,3
+42291376,25745752,3
+62927689,25745752,3
+1828898,25745752,2
+May_C,25745752,1
+57806547,25745752,1
+33747314,25745752,2
+xixi-0303,25745752,1
+abin520918,25745752,3
+yogurtmao,25745752,2
+4223711,25745752,2
+64734128,25745752,3
+78437206,25745752,3
+madebyran,25745752,4
+junejasmine,25745752,3
+94830928,25745752,3
+80120133,25745752,1
+4478909,25745752,2
+christopherlin,25745752,3
+87749865,25745752,4
+25676059,25745752,2
+dreamheartfly,25745752,3
+99078833,25745752,2
+99181086,25745752,1
+55314291,25745752,3
+tinafaerie,25745752,1
+djy_joy,25745752,1
+yilingyu,25745752,4
+58827869,25745752,3
+47361455,25745752,3
+angelisoul,25745752,3
+62119610,25745752,3
+edgeyeung,25745752,3
+28739392,25745752,5
+81530706,25745752,1
+linyuyuan,25745752,2
+72100627,25745752,2
+kalviny,25745752,2
+1182787,25745752,1
+46646867,25745752,-1
+104605800,25745752,1
+nicokey,25745752,4
+piaoyull,25745752,3
+lm24,25745752,1
+78977506,25745752,1
+shizongdb,25745752,3
+3406491,25745752,3
+62492010,25745752,2
+83650519,25745752,2
+YolaZhang,25745752,-1
+82906785,25745752,1
+62718926,25745752,2
+magicube123,25745752,2
+linco23,25745752,2
+akkabby,25745752,2
+57049124,25745752,3
+74150636,25745752,4
+flowermumu,25745752,2
+doralikesemon,25745752,3
+45255899,25745752,3
+55815609,25745752,3
+4732854,25745752,1
+82040101,25745752,5
+47902481,25745752,-1
+45620399,25745752,3
+68007040,25745752,3
+57382521,25745752,1
+51255691,25745752,2
+34182992,25745752,2
+seeve,25745752,3
+jhxxs,25745752,2
+tianranzijiegou,25745752,3
+62481118,25745752,1
+mymydemon,25745752,3
+68776201,25745752,2
+KITTEN614_,25745752,-1
+63973142,25745752,4
+84899568,25745752,3
+123998072,25745752,-1
+sunnymary,25745752,4
+60406186,25745752,3
+sunchao1989,25745752,2
+44105688,25745752,1
+47822950,25745752,4
+xiaoyao123,25745752,1
+52821678,25745752,1
+doubandengjian,25745752,2
+114082783,25745752,3
+yanjiaweii,25745752,1
+69210897,25745752,3
+46379489,25745752,2
+60590150,25745752,1
+JaceJing,25745752,2
+122228928,25745752,3
+zerogreen0305,25745752,2
+58930752,25745752,-1
+lostgreenforest,25745752,1
+53409218,25745752,3
+89635048,25745752,5
+jiachangting,25745752,3
+jmatsingapore,25745752,3
+65133684,25745752,3
+62344583,25745752,5
+jianchen810,25745752,3
+kongkongph,25745752,2
+bluevsfly,25745752,4
+49466017,25745752,1
+58885519,25745752,4
+73011629,25745752,2
+60282135,25745752,3
+yozir,25745752,2
+120342469,25745752,5
+35506270,25745752,1
+Geraldine7,25745752,4
+61720773,25745752,2
+98975242,25745752,1
+tykm,25745752,3
+qiuyunzi7,25745752,1
+1251922,25745752,5
+71271781,25745752,3
+50312843,25745752,5
+Elizabeth-Lee,25745752,1
+78749402,25745752,5
+83725711,25745752,2
+120981329,25745752,2
+58433623,25745752,2
+121103196,25745752,2
+116007872,25745752,1
+94022104,25745752,3
+63193528,25745752,2
+61074050,25745752,4
+mufanxuanji,25745752,1
+71560494,25745752,2
+77919551,25745752,3
+ailuert,25745752,2
+41896370,25745752,2
+36667983,25745752,4
+46525176,25745752,2
+sqjane,25745752,2
+84268334,25745752,1
+89035025,25745752,4
+102838934,25745752,3
+49249384,25745752,1
+han962464,25745752,2
+57947466,25745752,3
+50365147,25745752,-1
+40278277,25745752,3
+caoshaohong,25745752,4
+43767898,25745752,2
+43128727,25745752,3
+sfcwr,25745752,1
+jmkun,25745752,1
+101884264,25745752,3
+127619617,25745752,1
+46004647,25745752,1
+leilasu,25745752,1
+80429780,25745752,3
+61247946,25745752,2
+chenxinyu1505,25745752,4
+like9225,25745752,3
+78380925,25745752,4
+jin_hw,25745752,3
+43740988,25745752,3
+47717774,25745752,3
+43200549,25745752,3
+ccwx,25745752,-1
+80914640,25745752,3
+movieview,25745752,1
+122887171,25745752,-1
+78923364,25745752,5
+125726477,25745752,1
+54251461,25745752,2
+natsuaoi,25745752,2
+yoicy,25745752,5
+60336002,25745752,3
+10888686,25745752,2
+48942164,25745752,3
+61952291,25745752,-1
+72309214,25745752,2
+SilviaVicky1995,25745752,4
+muyefeifei,25745752,3
+2771396,25745752,3
+53362229,25745752,2
+59777369,25745752,3
+56138640,25745752,2
+treetof,25745752,2
+xinsunflower,25745752,-1
+38939469,25745752,3
+57824649,25745752,3
+82043338,25745752,2
+zuoxiaoer,25745752,3
+127111031,25745752,1
+Bamboooooo,25745752,2
+73604611,25745752,4
+49842297,25745752,3
+gungunyuan,25745752,3
+63651791,25745752,3
+43470974,25745752,2
+4582318,25745752,3
+guoqichepiao,25745752,-1
+81744133,25745752,3
+44006704,25745752,1
+62388980,25745752,3
+Solo-n,25745752,3
+23321019,25745752,2
+88256583,25745752,3
+57303054,25745752,2
+57080555,25745752,2
+cherryago,25745752,2
+1133756,25745752,3
+66109305,25745752,3
+36806341,25745752,2
+afste99,25745752,-1
+126707400,25745752,3
+34558131,25745752,1
+60246775,25745752,2
+72857645,25745752,3
+50891455,25745752,3
+58101535,25745752,2
+69195695,25745752,1
+62679013,25745752,3
+3224119,25745752,3
+58071540,25745752,3
+54888937,25745752,3
+moszz,25745752,4
+chafy,25745752,1
+hRy,25745752,2
+76534851,25745752,4
+44306993,25745752,3
+shousolo,25745752,2
+3071398,25745752,1
+Jewelyxy,25745752,2
+14960795,25745752,3
+81444301,25745752,3
+119225016,25745752,1
+manman71,25745752,3
+57863099,25745752,-1
+lycorissoul,25745752,4
+sunflowerqi,25745752,2
+nianning,25745752,4
+1929074,25745752,3
+71946766,25745752,3
+tuzichuchu,25745752,2
+68000398,25745752,2
+tuan_ak,25745752,2
+58432745,25745752,3
+60415178,25745752,5
+46804480,25745752,3
+52870405,25745752,2
+54228413,25745752,4
+bloodykiss,25745752,2
+jurgenzn,25745752,1
+66155020,25745752,3
+qilichafang,25745752,3
+xiangheng,25745752,4
+84921652,25745752,1
+dfay,25745752,4
+mmycshng,25745752,4
+125539581,25745752,3
+wangyangtzu,25745752,3
+when31,25745752,1
+tiancaimu,25745752,1
+37926382,25745752,3
+47265766,25745752,1
+49554966,25745752,-1
+44103636,25745752,2
+jessicapan,25745752,3
+51312252,25745752,3
+haihouzhi,25745752,2
+57405167,25745752,2
+53173007,25745752,2
+78056349,25745752,3
+30222025,25745752,3
+2600693,25745752,5
+shinpaopao,25745752,3
+3971708,25745752,2
+65477496,25745752,4
+zhuxiaoqi,25745752,3
+vermouthmsg,25745752,2
+115721198,25745752,1
+vivianyatou,25745752,5
+n1c.monster,25745752,1
+91065270,25745752,1
+50629535,25745752,3
+46888824,25745752,3
+huiverci,25745752,2
+4654704,25745752,3
+camille_seven,25745752,4
+97840419,25745752,3
+stellariver,25745752,3
+tuotuodetuo,25745752,1
+87867332,25745752,2
+58039910,25745752,2
+82920248,25745752,3
+airstreet,25745752,3
+77495232,25745752,1
+75863573,25745752,3
+nina,25745752,3
+2066831,25745752,2
+60866075,25745752,5
+49790964,25745752,4
+minino,25745752,2
+40868820,25745752,4
+shuangweishu,25745752,4
+63171651,25745752,2
+96948133,25745752,3
+Twinkling.S,25745752,4
+49544994,25745752,3
+98324017,25745752,3
+for_y,25745752,3
+65809636,25745752,2
+50207871,25745752,1
+aaaaaaaaaaa,25745752,3
+46355021,25745752,3
+23826255,25745752,1
+58727852,25745752,-1
+icefruit,25745752,3
+hedgehog,25745752,2
+61282289,25745752,3
+35788853,25745752,3
+51841755,25745752,4
+45008619,25745752,3
+57948603,25745752,3
+72354881,25745752,5
+1875805,25745752,-1
+120445293,25745752,4
+Isil.G,25745752,2
+pussyyy,25745752,1
+ywl930,25745752,1
+51605377,25745752,2
+75699562,25745752,2
+3856901,25745752,2
+39786572,25745752,2
+elizabethwang,25745752,3
+wjlzty,25745752,3
+53830314,25745752,3
+55617091,25745752,1
+65273951,25745752,3
+macaronigerrard,25745752,3
+67870530,25745752,4
+hemaz,25745752,5
+56964823,25745752,5
+79964293,25745752,2
+miumiussss,25745752,3
+baibi,25745752,2
+51602185,25745752,2
+4680837,25745752,1
+54224355,25745752,3
+3066956,25745752,3
+52176275,25745752,1
+redspring,25745752,2
+SundraLee,25745752,1
+93462752,25745752,2
+zytarcy,25745752,4
+2206901,25745752,3
+72090669,25745752,2
+pau,25745752,3
+YvonneHou,25745752,5
+62317296,25745752,1
+83141101,25745752,2
+65765391,25745752,3
+67753240,25745752,2
+49784018,25745752,3
+48191441,25745752,2
+eaudevie,25745752,4
+vinciwang,25745752,3
+saai,25745752,4
+HR-vivi,25745752,4
+54674682,25745752,1
+overcure,25745752,4
+44172388,25745752,1
+92302421,25745752,2
+bobolu,25745752,3
+3014602,25745752,3
+50761351,25745752,3
+51901912,25745752,2
+loveyu3317,25745752,5
+62141852,25745752,1
+2287652,25745752,3
+shiye919,25745752,3
+95910591,25745752,2
+54489877,25745752,3
+64450665,25745752,3
+79207793,25745752,2
+65687734,25745752,1
+melodysunny,25745752,3
+mwr23929,25745752,3
+67409717,25745752,2
+yemengying,25745752,1
+53134415,25745752,2
+16896495,25745752,2
+egeria1225,25745752,2
+solo007,25745752,1
+47258020,25745752,2
+113552306,25745752,2
+justMog,25745752,1
+16715889,25745752,1
+hm512,25745752,2
+36751744,25745752,-1
+50094689,25745752,2
+57639704,25745752,3
+CCLOVEFF,25745752,1
+4484336,25745752,3
+60615986,25745752,4
+75332568,25745752,3
+72944780,25745752,3
+35222177,25745752,4
+nora1sme,25745752,2
+liangazalea,25745752,3
+45416494,25745752,1
+moyee_sky,25745752,4
+WHF_Jabel,25745752,2
+cherrye,25745752,2
+2737013,25745752,1
+31449811,25745752,4
+grey01,25745752,1
+64011512,25745752,1
+K-Child,25745752,1
+80727161,25745752,3
+3438313,25745752,3
+65111838,25745752,3
+superfionaxu,25745752,2
+62906196,25745752,2
+17713438,25745752,3
+80598638,25745752,1
+47010269,25745752,4
+60390276,25745752,1
+50043116,25745752,1
+63359487,25745752,3
+14840393,25745752,3
+41853033,25745752,3
+47722144,25745752,2
+62209147,25745752,5
+48957896,25745752,3
+amber_xyxy,25745752,1
+120670980,25745752,3
+linyanyanyan,25745752,2
+lovemayday,25745752,2
+81845055,25745752,4
+88070266,25745752,3
+60347813,25745752,5
+87719224,25745752,4
+81126169,25745752,2
+54000391,25745752,4
+52728964,25745752,3
+34063715,25745752,4
+2113261,25745752,3
+whyes,25745752,4
+102618812,25745752,2
+mumudelinzi,25745752,3
+omega333,25745752,3
+99550697,25745752,3
+2985026,25745752,2
+73163829,25745752,4
+71181418,25745752,2
+78714718,25745752,1
+63161358,25745752,3
+54277204,25745752,3
+59554628,25745752,1
+80798230,25745752,1
+2169690,25745752,1
+53105432,25745752,1
+102122606,25745752,2
+121263235,25745752,2
+44849027,25745752,2
+84195404,25745752,-1
+77613125,25745752,-1
+47200046,25745752,3
+47200046,25745752,3
+elsiehu,25745752,4
+arlotte,25745752,1
+62530102,25745752,4
+120867848,25745752,2
+alisonend,25745752,3
+54158683,25745752,3
+127579311,25745752,2
+62210177,25745752,3
+69215741,25745752,3
+102546806,25745752,1
+jiaruoyu,25745752,2
+likecake,25745752,1
+diaomao,25745752,4
+xenia-xie,25745752,4
+98289221,25745752,1
+79794029,25745752,3
+66333721,25745752,2
+2447240,25745752,-1
+54831320,25745752,3
+huhuxiaoxue0219,25745752,5
+60162656,25745752,1
+115739905,25745752,1
+34230958,25745752,3
+36221737,25745752,5
+58748815,25745752,2
+dengxian123,25745752,2
+cindyran,25745752,3
+yangDAyun,25745752,3
+63155764,25745752,4
+leftshoulder,25745752,3
+jisixue0111,25745752,2
+trista017,25745752,3
+tarylin,25745752,2
+79684421,25745752,4
+47365314,25745752,2
+61110036,25745752,1
+Leslie_ontheway,25745752,3
+47536354,25745752,4
+hanhanq,25745752,2
+55472715,25745752,2
+onlymengya,25745752,2
+afa1021,25745752,1
+102456387,25745752,3
+lanshitou135,25745752,3
+52470011,25745752,4
+cctvjz,25745752,3
+3333349,25745752,3
+67275434,25745752,2
+lokolifestyle,25745752,1
+71732006,25745752,1
+horae,25745752,2
+lealex,25745752,2
+127569899,25745752,3
+kp81ndlf,25745752,3
+fnx,25745752,3
+ernestfang,25745752,4
+50622408,25745752,3
+59193043,25745752,3
+sweetie_orange,25745752,1
+tintinchatte,25745752,2
+65616591,25745752,2
+action552200,25745752,3
+126731909,25745752,3
+63728947,25745752,2
+lingaigai,25745752,2
+57931932,25745752,2
+labelleza,25745752,5
+pjcs,25745752,3
+3560661,25745752,1
+mrockfire,25745752,1
+79420252,25745752,3
+76931391,25745752,2
+2273247,25745752,3
+54728119,25745752,3
+49129833,25745752,2
+66219107,25745752,4
+88201815,25745752,3
+laowinglok,25745752,5
+34025686,25745752,1
+RAINYF,25745752,3
+51132496,25745752,3
+58764034,25745752,2
+wukomn,25745752,3
+85296243,25745752,2
+71283588,25745752,5
+shizhiyu,25745752,3
+resodo,25745752,3
+lili9790,25745752,2
+74301144,25745752,3
+4665010,25745752,5
+26369943,25745752,1
+65303828,25745752,2
+Fascinne,25745752,2
+67247084,25745752,3
+37573301,25745752,3
+71840223,25745752,1
+qimy,25745752,5
+58771514,25745752,3
+119731025,25745752,2
+guanmu,25745752,2
+97431657,25745752,1
+99812463,25745752,4
+zybest,25745752,1
+62245008,25745752,3
+69044302,25745752,3
+heavywoo,25745752,1
+68204055,25745752,4
+52265965,25745752,1
+lexi1018,25745752,4
+46328450,25745752,1
+77438165,25745752,3
+122195109,25745752,2
+1397180,25745752,4
+82245378,25745752,1
+120532212,25745752,4
+59745943,25745752,4
+73566126,25745752,2
+52148095,25745752,1
+4021496,25745752,3
+83679704,25745752,2
+54583864,25745752,2
+73925877,25745752,1
+solavre,25745752,-1
+89610465,25745752,2
+72595145,25745752,3
+guoniaodao,25745752,4
+gezix1n,25745752,1
+59354362,25745752,4
+85102033,25745752,3
+104011490,25745752,2
+4902582,25745752,4
+80074512,25745752,5
+HH-HH-HH,25745752,4
+78903709,25745752,2
+48042943,25745752,4
+lovelyyuchen,25745752,3
+yangfan0628,25745752,1
+49375167,25745752,3
+83206457,25745752,1
+47995787,25745752,2
+63132063,25745752,2
+lezonewayne,25745752,3
+57784065,25745752,2
+midautumnsong,25745752,3
+49274976,25745752,3
+86810515,25745752,2
+Y-Lillian,25745752,2
+75493093,25745752,1
+eaufavor,25745752,3
+EVz,25745752,3
+63923908,25745752,3
+108665190,25745752,3
+gloria1102,25745752,2
+lunay,25745752,2
+salome0831,25745752,2
+takacmon,25745752,2
+4775119,25745752,3
+62181928,25745752,3
+huoxiaolan,25745752,4
+66867402,25745752,3
+50707806,25745752,1
+64897674,25745752,4
+waitwait,25745752,4
+gluttony6,25745752,1
+81221310,25745752,1
+66106670,25745752,1
+juwujian,25745752,2
+maggieyy6,25745752,5
+46346298,25745752,4
+39093072,25745752,2
+32478975,25745752,3
+xielemon,25745752,3
+riceshoot,25745752,4
+54364029,25745752,4
+4826096,25745752,3
+3178442,25745752,1
+millayQ,25745752,2
+100574320,25745752,2
+geekgirl0201,25745752,1
+34144556,25745752,5
+54947602,25745752,3
+48905575,25745752,2
+fish4h,25745752,2
+48310966,25745752,3
+Shanna_Q,25745752,3
+48713854,25745752,5
+fasshinetti,25745752,1
+apiutardi,25745752,-1
+miaoxiaoqiu,25745752,1
+53485894,25745752,1
+yiyouyu1992,25745752,3
+50588840,25745752,4
+3857532,25745752,3
+xdai321,25745752,2
+2087969,25745752,2
+79080709,25745752,3
+1888866,25745752,5
+iyuantian,25745752,3
+joemayxu,25745752,3
+51259360,25745752,3
+126895739,25745752,3
+52698885,25745752,2
+aiconanao,25745752,2
+16343359,25745752,2
+73571191,25745752,2
+vc2046,25745752,4
+52622304,25745752,2
+53466383,25745752,3
+51149079,25745752,3
+52113990,25745752,2
+icefishe,25745752,3
+70043510,25745752,2
+72449720,25745752,1
+57120276,25745752,3
+4187639,25745752,3
+58503450,25745752,2
+65315119,25745752,3
+catchingcold,25745752,3
+2019155,25745752,3
+mian11,25745752,2
+yuanzai7,25745752,3
+54537827,25745752,3
+65252438,25745752,5
+mandy23,25745752,5
+CrashCaine,25745752,2
+53785455,25745752,-1
+talentygw,25745752,3
+minamy1227,25745752,3
+65369148,25745752,1
+125297068,25745752,1
+31884633,25745752,3
+58023093,25745752,3
+am-gemini,25745752,1
+edward1988,25745752,1
+87981727,25745752,3
+106730683,25745752,2
+36710706,25745752,3
+joyinzone,25745752,2
+imluming,25745752,-1
+Sandorothy,25745752,1
+4522191,25745752,1
+samsyu,25745752,3
+54770734,25745752,1
+1274922,25745752,1
+70103274,25745752,5
+34176930,25745752,5
+2791297,25745752,-1
+dairytea,25745752,3
+summeric,25745752,3
+riceseedling,25745752,2
+32920328,25745752,3
+64038033,25745752,5
+Davy.L,25745752,3
+45120293,25745752,3
+116273034,25745752,3
+60038262,25745752,1
+120466803,25745752,3
+71000941,25745752,3
+97134850,25745752,3
+snivelbb,25745752,3
+1560387,25745752,1
+53483609,25745752,4
+tenr,25745752,2
+53199032,25745752,2
+fancy1012,25745752,4
+SILENT7,25745752,3
+39993169,25745752,3
+kenji0102,25745752,1
+50414498,25745752,2
+47743714,25745752,5
+104822554,25745752,2
+45568388,25745752,4
+57001880,25745752,3
+2415644,25745752,4
+subingjie,25745752,3
+58333151,25745752,3
+wymanqin,25745752,3
+53309932,25745752,4
+songjiawei,25745752,4
+songjiawei,25745752,4
+70333895,25745752,3
+2106137,25745752,4
+74930984,25745752,-1
+shisan107,25745752,2
+65145767,25745752,2
+79372078,25745752,2
+mohoko,25745752,3
+tigerrrmilk,25745752,2
+yaoxiaochen,25745752,5
+limm9262,25745752,4
+mayee1121,25745752,-1
+64658457,25745752,2
+alwayssimple,25745752,-1
+27432217,25745752,3
+54204621,25745752,5
+30219531,25745752,2
+firstpro,25745752,3
+59238168,25745752,-1
+bbl45,25745752,3
+48480563,25745752,3
+49455574,25745752,3
+76804621,25745752,2
+1138243,25745752,2
+60762036,25745752,-1
+jingj,25745752,3
+KayYin,25745752,1
+44866431,25745752,3
+djwayye,25745752,3
+35683842,25745752,2
+52160935,25745752,3
+sherly0710,25745752,2
+xxshen,25745752,3
+45311427,25745752,2
+66336980,25745752,4
+zzz.aoe,25745752,4
+83532433,25745752,2
+1821069,25745752,3
+45583268,25745752,3
+easy1028,25745752,3
+chinriya,25745752,1
+81757410,25745752,2
+4421106,25745752,4
+46669786,25745752,3
+privateoo,25745752,1
+68237211,25745752,3
+127457458,25745752,3
+55480299,25745752,4
+cheerychang,25745752,-1
+41073565,25745752,3
+47723496,25745752,2
+49830114,25745752,2
+1988523,25745752,3
+53281566,25745752,3
+55867399,25745752,3
+chuansha,25745752,4
+huihuiatu,25745752,1
+53437669,25745752,2
+53259018,25745752,1
+54478772,25745752,1
+115660168,25745752,2
+Youoen,25745752,1
+echohey,25745752,2
+43152603,25745752,4
+xxxxpp,25745752,2
+58279594,25745752,4
+aeol,25745752,3
+84827883,25745752,3
+lemon_ccc_,25745752,3
+56561314,25745752,4
+Rihaulin,25745752,3
+A19920501,25745752,5
+57370195,25745752,2
+63000787,25745752,2
+31689638,25745752,4
+45413186,25745752,-1
+51293208,25745752,2
+55480147,25745752,3
+65719312,25745752,3
+74670545,25745752,4
+loveyu0725,25745752,3
+76550501,25745752,2
+3652866,25745752,3
+ztjlscm,25745752,3
+lily1208,25745752,4
+83304203,25745752,3
+49363697,25745752,-1
+Ronnie816,25745752,2
+6079512,25745752,2
+luzhiyu,25745752,2
+yesnov,25745752,3
+39590903,25745752,5
+4724177,25745752,1
+61697290,25745752,2
+66964463,25745752,2
+63322067,25745752,2
+2413967,25745752,4
+42325678,25745752,3
+121191945,25745752,1
+69273538,25745752,4
+127408964,25745752,1
+45238478,25745752,1
+56228022,25745752,3
+54533341,25745752,3
+stefaniewong,25745752,3
+67770308,25745752,2
+127506237,25745752,3
+vigalee,25745752,1
+78658082,25745752,2
+45799994,25745752,2
+blablala,25745752,3
+xiongjixiaojie,25745752,2
+morninglove,25745752,2
+57933302,25745752,2
+96044338,25745752,2
+63240805,25745752,3
+3859112,25745752,3
+72655226,25745752,5
+69675369,25745752,3
+56894837,25745752,3
+loversying,25745752,3
+xcoral,25745752,2
+BMY378670541,25745752,1
+78609308,25745752,1
+53362350,25745752,2
+58626683,25745752,1
+83885200,25745752,2
+52230748,25745752,3
+12254266,25745752,2
+51843085,25745752,4
+1204893,25745752,4
+63395542,25745752,2
+54534074,25745752,3
+70794815,25745752,3
+xyidan,25745752,4
+113426887,25745752,1
+Grace_Xuliang,25745752,2
+4447378,25745752,1
+61011661,25745752,2
+minquan,25745752,2
+85245609,25745752,4
+120889404,25745752,4
+lesleylui,25745752,2
+45594284,25745752,4
+48670005,25745752,-1
+56475433,25745752,2
+YalEing,25745752,3
+Eternal.n1ce,25745752,3
+47802404,25745752,1
+74201077,25745752,1
+36230644,25745752,3
+4283665,25745752,-1
+78385443,25745752,3
+127491127,25745752,1
+53392958,25745752,2
+52129503,25745752,2
+58957111,25745752,4
+doraemon63,25745752,2
+3595686,25745752,3
+4712419,25745752,2
+fly-bike,25745752,3
+shingle,25745752,2
+4823170,25745752,3
+62582532,25745752,-1
+71522943,25745752,2
+hezhijie,25745752,5
+45968027,25745752,2
+shmilykz,25745752,4
+120619243,25745752,2
+61911779,25745752,4
+GOEVERYWHERE,25745752,2
+81690165,25745752,3
+54098139,25745752,2
+4411026,25745752,4
+kisscat_117,25745752,4
+46986379,25745752,4
+87907452,25745752,5
+47426137,25745752,2
+yanxiaobao,25745752,3
+50700305,25745752,-1
+adoredmouse,25745752,1
+8028927,25745752,3
+51830058,25745752,2
+89852120,25745752,3
+olovc,25745752,3
+67661617,25745752,2
+45382410,25745752,3
+68175783,25745752,2
+68124742,25745752,2
+61882735,25745752,1
+80265155,25745752,2
+65205962,25745752,-1
+2274605,25745752,1
+81939274,25745752,1
+btone0808,25745752,3
+32742041,25745752,4
+wasii,25745752,2
+cloudy20011128,25745752,1
+52209363,25745752,2
+60051093,25745752,1
+nananadia,25745752,-1
+zyxlinda,25745752,3
+59378072,25745752,3
+49213643,25745752,4
+44504599,25745752,3
+besupposedto,25745752,1
+40198971,25745752,4
+60848115,25745752,2
+122791785,25745752,-1
+hexi1,25745752,2
+fyp34756,25745752,3
+61542735,25745752,2
+51433287,25745752,2
+HilaryYue,25745752,3
+annieshuo,25745752,2
+chelsea_baker,25745752,3
+elsfkyyo,25745752,1
+49937909,25745752,2
+3608735,25745752,3
+66985441,25745752,3
+52539615,25745752,2
+rqh999,25745752,3
+40077032,25745752,3
+43211032,25745752,2
+51170340,25745752,4
+fnx19920408,25745752,1
+db_time,25745752,2
+lovesolo,25745752,2
+ayataoj,25745752,4
+89488163,25745752,1
+fu_sion,25745752,4
+53027731,25745752,3
+van2,25745752,4
+53895554,25745752,2
+44020931,25745752,3
+57557138,25745752,4
+2896376,25745752,2
+rolex16600,25745752,2
+57425005,25745752,3
+evelynxuan,25745752,1
+zhouxiaoxian007,25745752,2
+jack13,25745752,1
+lunann,25745752,3
+121789797,25745752,4
+47056157,25745752,3
+lostcheung,25745752,2
+74746507,25745752,1
+santasirius,25745752,1
+77693072,25745752,3
+sunlin0,25745752,3
+68878726,25745752,1
+46505445,25745752,3
+62154310,25745752,3
+echozhan,25745752,1
+mango1992,25745752,3
+2268420,25745752,3
+4057118,25745752,3
+48957397,25745752,3
+chloecin,25745752,3
+69941774,25745752,2
+mumu1007,25745752,2
+GreenySoul,25745752,1
+15923962,25745752,2
+64779909,25745752,1
+39294617,25745752,1
+67556869,25745752,1
+littleDana,25745752,5
+81265752,25745752,3
+63823426,25745752,3
+106779301,25745752,3
+tzuka,25745752,3
+51758846,25745752,3
+68490361,25745752,3
+9848429,25745752,2
+3218379,25745752,4
+6298887,25745752,2
+78089832,25745752,1
+55993781,25745752,3
+wanganqi,25745752,2
+76692239,25745752,4
+76692239,25745752,4
+47799629,25745752,3
+45757597,25745752,1
+italyhoneybaby,25745752,4
+50422639,25745752,3
+4329878,25745752,3
+cht,25745752,5
+yululiuli,25745752,2
+34597318,25745752,1
+44901118,25745752,2
+66550666,25745752,3
+47391200,25745752,2
+liuxinyuxiao,25745752,2
+127291315,25745752,2
+geminiwj,25745752,3
+currant,25745752,4
+2426180,25745752,2
+jingrong,25745752,3
+58618323,25745752,2
+sunflowermay,25745752,2
+89281052,25745752,4
+poppy7mbsf,25745752,3
+51417203,25745752,4
+66304010,25745752,1
+51947959,25745752,1
+beavers,25745752,2
+78861167,25745752,4
+22105037,25745752,2
+48967331,25745752,2
+46976661,25745752,4
+63040206,25745752,3
+53819334,25745752,2
+80110021,25745752,2
+51478294,25745752,3
+zhangjianpeng,25745752,3
+61700568,25745752,3
+43573128,25745752,2
+coconutZii,25745752,3
+4534729,25745752,3
+93825881,25745752,1
+YLACHESIS,25745752,2
+54074581,25745752,1
+127435009,25745752,3
+122400330,25745752,3
+supremedie,25745752,3
+13856427,25745752,2
+54815941,25745752,3
+crazygrave,25745752,2
+126281906,25745752,2
+92023130,25745752,3
+52476794,25745752,2
+73262344,25745752,2
+70296365,25745752,3
+heikedaolai,25745752,2
+zazahuang,25745752,2
+3372957,25745752,1
+34767488,25745752,1
+65074680,25745752,2
+119456438,25745752,3
+47096871,25745752,1
+47096871,25745752,1
+29462918,25745752,3
+88039142,25745752,2
+62877248,25745752,3
+43499936,25745752,5
+49201790,25745752,2
+zncu,25745752,3
+52519025,25745752,3
+50689721,25745752,2
+59593299,25745752,3
+10208605,25745752,3
+46671979,25745752,3
+75851586,25745752,1
+49702943,25745752,2
+sumptuouslife,25745752,2
+3915202,25745752,3
+43859610,25745752,3
+sherrybecks,25745752,3
+53734471,25745752,1
+Akashi_yan,25745752,4
+42012043,25745752,3
+moxu,25745752,3
+lovelyao,25745752,5
+Maomaoxian,25745752,3
+69189478,25745752,1
+3168552,25745752,5
+102626192,25745752,3
+4258787,25745752,1
+Freya-ice,25745752,4
+2341195,25745752,1
+68806699,25745752,2
+38700017,25745752,3
+57389316,25745752,2
+40806754,25745752,3
+84326615,25745752,2
+101126607,25745752,3
+tina_ann,25745752,1
+64690164,25745752,3
+42060650,25745752,1
+53499544,25745752,1
+114333708,25745752,2
+127409335,25745752,3
+49072248,25745752,1
+127406348,25745752,3
+73491796,25745752,3
+67947664,25745752,4
+62880402,25745752,1
+yokodesu,25745752,3
+35224402,25745752,1
+53436516,25745752,2
+nonconstant119,25745752,3
+calypso29,25745752,2
+shinysue,25745752,4
+11149109,25745752,3
+shiyezi8877,25745752,4
+zhuangbixia,25745752,3
+beiz1,25745752,3
+46385467,25745752,-1
+49176842,25745752,4
+47971012,25745752,-1
+78731389,25745752,-1
+11786089,25745752,4
+shimian,25745752,-1
+84257030,25745752,1
+62151514,25745752,3
+75871966,25745752,4
+renyuanstella,25745752,2
+yenobis,25745752,2
+127376604,25745752,1
+4673381,25745752,3
+48859035,25745752,3
+reveur07,25745752,4
+JustRainbow,25745752,4
+springluoluo,25745752,2
+liangwei567,25745752,1
+foreverwxin,25745752,3
+68800950,25745752,3
+45335965,25745752,2
+58513319,25745752,3
+88490596,25745752,2
+luhua,25745752,3
+80026003,25745752,3
+80856544,25745752,1
+77459141,25745752,3
+momokitty,25745752,1
+121299325,25745752,3
+90514163,25745752,1
+52656756,25745752,4
+Madao_D,25745752,2
+50066885,25745752,2
+94659336,25745752,1
+103382309,25745752,3
+62240477,25745752,3
+48956654,25745752,2
+37463088,25745752,3
+DX911012,25745752,2
+122349852,25745752,3
+46843516,25745752,3
+84877250,25745752,2
+49428955,25745752,4
+u1d4louis,25745752,3
+3886646,25745752,1
+78214422,25745752,3
+56328149,25745752,2
+30714456,25745752,3
+45892109,25745752,3
+16121075,25745752,3
+64331425,25745752,1
+38445269,25745752,1
+youdebin1992,25745752,4
+41868148,25745752,3
+badbad123,25745752,4
+67111986,25745752,3
+46507534,25745752,1
+75606493,25745752,4
+59501924,25745752,2
+56831308,25745752,4
+ronaldojxz,25745752,2
+keita1,25745752,1
+48963501,25745752,2
+ananne,25745752,3
+4296358,25745752,3
+59802289,25745752,4
+60390320,25745752,2
+114394193,25745752,3
+120572628,25745752,3
+tyx033333,25745752,3
+viennall,25745752,3
+58044860,25745752,4
+bunnyland,25745752,2
+jaro.,25745752,-1
+48207203,25745752,4
+39744248,25745752,3
+54193967,25745752,-1
+42998893,25745752,4
+46188471,25745752,3
+60752122,25745752,3
+123169118,25745752,1
+127367403,25745752,2
+35294763,25745752,3
+ranjiangli,25745752,5
+43310692,25745752,2
+kidjoey,25745752,3
+hhxx1214,25745752,5
+16315719,25745752,1
+90035370,25745752,1
+62935767,25745752,5
+84646038,25745752,3
+ParadiseOfFilm,25745752,4
+77621365,25745752,3
+73187314,25745752,3
+65878913,25745752,2
+58418894,25745752,3
+85621045,25745752,4
+51629890,25745752,3
+chengchengchina,25745752,1
+87937161,25745752,1
+39629387,25745752,2
+bianmengso,25745752,1
+xslidian,25745752,1
+chenjialu031,25745752,1
+42952627,25745752,3
+45803249,25745752,5
+guagua1992,25745752,3
+alwayscrowded,25745752,2
+62880392,25745752,1
+73769279,25745752,1
+3606037,25745752,3
+73346384,25745752,3
+46454886,25745752,3
+mabel4100,25745752,4
+alizeeyang960,25745752,-1
+80904732,25745752,4
+121681116,25745752,1
+greenday1112,25745752,3
+ningzi310,25745752,3
+younger105,25745752,2
+3323872,25745752,3
+58773339,25745752,4
+andrewcx,25745752,2
+127352818,25745752,5
+39922157,25745752,1
+62196307,25745752,2
+30499670,25745752,3
+ludi0511,25745752,3
+91295365,25745752,2
+64626178,25745752,3
+57558926,25745752,4
+shaynexue,25745752,1
+kiwiwing,25745752,3
+Narcissus1264,25745752,5
+49893614,25745752,2
+66631115,25745752,1
+88322346,25745752,5
+31942615,25745752,2
+67606509,25745752,1
+Inkfearless,25745752,2
+76589400,25745752,2
+46423055,25745752,4
+44976986,25745752,2
+47037098,25745752,3
+58574695,25745752,4
+hosisi,25745752,3
+108442662,25745752,2
+61246130,25745752,4
+71108776,25745752,2
+78233443,25745752,4
+46424200,25745752,3
+77662216,25745752,3
+59226266,25745752,4
+49538225,25745752,2
+blue-shadow,25745752,2
+53317019,25745752,2
+vikichen,25745752,3
+56838974,25745752,3
+33567005,25745752,2
+chaochaovickey,25745752,3
+61171869,25745752,3
+66710662,25745752,1
+35069880,25745752,2
+35069880,25745752,2
+78793233,25745752,2
+112933075,25745752,3
+silencexsky,25745752,2
+90780570,25745752,2
+Turtles,25745752,4
+127341516,25745752,3
+fanser,25745752,5
+queentie,25745752,3
+Felica,25745752,3
+91807368,25745752,-1
+56682623,25745752,1
+jolenebear,25745752,2
+62764426,25745752,3
+2906253,25745752,2
+hvangwei,25745752,3
+102606012,25745752,2
+ayfl,25745752,-1
+xiangdahai,25745752,2
+jialinwonder,25745752,1
+dongdongskice,25745752,3
+3475333,25745752,3
+51799882,25745752,2
+valencheng,25745752,2
+nielu,25745752,4
+32433633,25745752,3
+57700870,25745752,1
+40111345,25745752,3
+41387006,25745752,-1
+agloriousview,25745752,2
+68738752,25745752,4
+81351219,25745752,3
+3478294,25745752,2
+yilihome,25745752,3
+65105898,25745752,3
+76039126,25745752,3
+3428014,25745752,3
+81051190,25745752,4
+liqiyao8931,25745752,3
+79037298,25745752,2
+lsg_lsg,25745752,3
+62325505,25745752,3
+74855224,25745752,3
+douban8020,25745752,3
+99863115,25745752,4
+97610451,25745752,1
+29313919,25745752,3
+qiulei,25745752,2
+banana,25745752,3
+4132596,25745752,2
+kangkangarea,25745752,3
+cheergoll,25745752,3
+126971318,25745752,3
+99849912,25745752,5
+2363090,25745752,4
+41487778,25745752,2
+69417205,25745752,2
+46567889,25745752,2
+turtleontree,25745752,3
+25572888,25745752,3
+arch1919,25745752,4
+56874186,25745752,3
+cassiopeiaxiah,25745752,3
+liluyang0817,25745752,3
+77390342,25745752,4
+GraceBinbin,25745752,1
+46605791,25745752,3
+Charleneliu,25745752,2
+49296258,25745752,3
+Joycejingtong,25745752,3
+eatbananamoku,25745752,3
+65340213,25745752,1
+63167823,25745752,4
+54187258,25745752,2
+58603050,25745752,3
+47620861,25745752,2
+113050393,25745752,3
+67962053,25745752,1
+amber0517,25745752,3
+88048268,25745752,3
+88048268,25745752,3
+42889609,25745752,3
+lurve,25745752,1
+onebooy,25745752,5
+55990207,25745752,2
+59312532,25745752,3
+Karol0411,25745752,4
+alittlebit,25745752,2
+119248717,25745752,3
+54620678,25745752,1
+44892859,25745752,3
+clorisw,25745752,4
+36410386,25745752,-1
+lmishere,25745752,-1
+50740852,25745752,3
+55668809,25745752,2
+taiyanghuazhen,25745752,4
+amyiam,25745752,3
+80395827,25745752,2
+stompbabe,25745752,3
+89997290,25745752,2
+4688576,25745752,2
+57855892,25745752,4
+42359749,25745752,-1
+sunset-sn,25745752,3
+85127553,25745752,2
+qiudd,25745752,3
+51126064,25745752,3
+62370156,25745752,2
+80036973,25745752,2
+junhengliu,25745752,4
+68650969,25745752,4
+sholipa,25745752,-1
+64681504,25745752,2
+sissybaby,25745752,2
+88996246,25745752,4
+65896919,25745752,3
+57767148,25745752,3
+69616363,25745752,1
+zzi,25745752,4
+Miss.Hyacinth,25745752,3
+127298823,25745752,2
+rockwy0613,25745752,5
+shaonianxin,25745752,3
+123368853,25745752,3
+2380878,25745752,4
+serein0423,25745752,1
+mccco,25745752,2
+1258025,25745752,-1
+aoaoaoaoao,25745752,4
+casablancayx,25745752,4
+42838726,25745752,3
+52275922,25745752,1
+79199091,25745752,3
+46455848,25745752,3
+dongchengxin,25745752,2
+ifesherry,25745752,4
+62895935,25745752,3
+48973065,25745752,1
+122014268,25745752,2
+122552717,25745752,1
+hengjitu,25745752,4
+65948631,25745752,3
+luoyuhu,25745752,2
+icetone96,25745752,2
+xxxholic99,25745752,3
+71902602,25745752,2
+60726602,25745752,5
+55487752,25745752,1
+52964714,25745752,2
+39447144,25745752,2
+HanaSakuragi,25745752,4
+zhangdjxx,25745752,3
+reneeia,25745752,2
+xiaohaolaohu,25745752,-1
+champange,25745752,3
+dcyp,25745752,1
+kingkongofkhan,25745752,2
+57691417,25745752,3
+AmySpecial,25745752,3
+107797527,25745752,2
+68927651,25745752,1
+2354646,25745752,3
+73952321,25745752,2
+121038852,25745752,5
+49157213,25745752,3
+cherl,25745752,3
+69389104,25745752,-1
+50330876,25745752,3
+47692286,25745752,1
+59344526,25745752,1
+happy_cici,25745752,1
+56273704,25745752,5
+104120710,25745752,3
+vv.1,25745752,3
+63848305,25745752,3
+Astolfo,25745752,1
+outstandinger,25745752,3
+fantasy_yang,25745752,1
+74651683,25745752,3
+48773990,25745752,1
+2309684,25745752,5
+67936485,25745752,3
+125699910,25745752,2
+127273439,25745752,2
+41651378,25745752,5
+35831817,25745752,2
+gfm,25745752,4
+LunaticPandora,25745752,1
+Phyllis5,25745752,2
+violin1112,25745752,4
+58267868,25745752,3
+neko1234,25745752,3
+MandyIsun,25745752,1
+zwanflying,25745752,4
+tydaan,25745752,2
+65090686,25745752,4
+2874898,25745752,2
+103978669,25745752,3
+119834273,25745752,3
+le-lucermair,25745752,2
+adododo,25745752,3
+saint753,25745752,4
+2544651,25745752,2
+3166262,25745752,3
+xxeeeeee,25745752,3
+missmogu,25745752,4
+RivaLinn,25745752,1
+Seraph0628,25745752,4
+62034840,25745752,3
+Lmaomao0352,25745752,2
+121721694,25745752,4
+34161257,25745752,3
+dukuo,25745752,5
+57978536,25745752,4
+56750373,25745752,1
+emmaeven,25745752,2
+combrain,25745752,4
+53429771,25745752,3
+122471816,25745752,2
+122471816,25745752,2
+michelleluo,25745752,2
+75398319,25745752,4
+35657081,25745752,4
+60159317,25745752,2
+60877547,25745752,4
+77586983,25745752,4
+127282748,25745752,1
+jiangmanshu,25745752,5
+81258030,25745752,2
+50438516,25745752,2
+50461431,25745752,3
+45954041,25745752,3
+60678946,25745752,5
+62946373,25745752,4
+hiromasahan,25745752,3
+56205319,25745752,2
+yoyoloveyou,25745752,1
+treelulu,25745752,3
+120793425,25745752,5
+woshiguolei,25745752,3
+51898214,25745752,2
+16235886,25745752,1
+125116163,25745752,2
+yoonki1993,25745752,1
+89530028,25745752,3
+sadiee,25745752,3
+81019920,25745752,4
+63227249,25745752,2
+51829065,25745752,1
+127276463,25745752,1
+82987051,25745752,-1
+52145474,25745752,2
+MrsCC,25745752,4
+60352980,25745752,3
+79993837,25745752,3
+4015959,25745752,2
+pisces310,25745752,2
+VulgarWorld,25745752,1
+2167564,25745752,3
+67779609,25745752,4
+49150210,25745752,3
+doumeiyuou,25745752,2
+97515933,25745752,4
+21893924,25745752,1
+magic_kid,25745752,1
+59429825,25745752,3
+venky712,25745752,5
+3917363,25745752,-1
+ninosun,25745752,4
+51148966,25745752,3
+83244269,25745752,2
+43089605,25745752,3
+127266459,25745752,1
+dangogo,25745752,3
+56884321,25745752,2
+68471660,25745752,3
+vertigo23,25745752,2
+3610531,25745752,3
+onehundredblue,25745752,4
+99251376,25745752,1
+62061078,25745752,3
+4619630,25745752,1
+13038456,25745752,1
+echoabc0409,25745752,3
+43593979,25745752,4
+43055983,25745752,4
+3624026,25745752,4
+58684123,25745752,3
+49642517,25745752,2
+methuselah,25745752,1
+67832658,25745752,3
+71097682,25745752,2
+molin327,25745752,2
+47256072,25745752,3
+xiawu1130,25745752,4
+101831219,25745752,2
+44331893,25745752,-1
+3251343,25745752,2
+58466790,25745752,3
+91471421,25745752,2
+23733715,25745752,3
+46689282,25745752,2
+47523220,25745752,2
+115639810,25745752,3
+74332625,25745752,3
+91497506,25745752,2
+77162594,25745752,3
+Sissi-fei,25745752,2
+52148531,25745752,1
+68799171,25745752,1
+95360863,25745752,1
+25849981,25745752,3
+46585910,25745752,3
+72445632,25745752,4
+44427627,25745752,4
+babyny,25745752,3
+waWa.tomato,25745752,4
+104658411,25745752,4
+43210840,25745752,2
+hydrofluo,25745752,2
+6118493,25745752,-1
+Mrmuy520,25745752,5
+42223948,25745752,4
+74705700,25745752,1
+myfan,25745752,2
+oldnikki,25745752,1
+naizhengtan,25745752,5
+124506846,25745752,4
+68498461,25745752,-1
+122889599,25745752,2
+4663492,25745752,5
+73838812,25745752,3
+93040251,25745752,2
+jackyxie,25745752,3
+yumi_2828,25745752,3
+30714995,25745752,4
+61030127,25745752,2
+60708720,25745752,4
+maitianangle,25745752,3
+91566384,25745752,-1
+fishhate,25745752,-1
+4906702,25745752,4
+y-3y17,25745752,-1
+xiao7,25745752,2
+51965431,25745752,3
+solitudefreedom,25745752,3
+62178416,25745752,5
+63422353,25745752,2
+4054351,25745752,3
+lintin23,25745752,3
+senor,25745752,1
+49858554,25745752,-1
+88130267,25745752,5
+106310454,25745752,1
+Aquarius_Girl,25745752,2
+11871887,25745752,2
+candymelody,25745752,4
+shania0912,25745752,3
+73766908,25745752,4
+xiaoan7EF,25745752,-1
+summer510,25745752,3
+lavnls,25745752,3
+47853022,25745752,5
+zhb555,25745752,-1
+60325674,25745752,3
+12489963,25745752,3
+flanklideo,25745752,1
+liimaday,25745752,1
+82630962,25745752,3
+eatwhat,25745752,4
+48796562,25745752,2
+67248667,25745752,1
+yoyoyoyou,25745752,3
+51136126,25745752,2
+38781943,25745752,1
+44971294,25745752,4
+anboli,25745752,4
+60841792,25745752,-1
+50959937,25745752,4
+XIMABAIYANG,25745752,3
+54683018,25745752,5
+3853719,25745752,2
+65473477,25745752,4
+66938697,25745752,2
+51292681,25745752,3
+79194174,25745752,2
+68871392,25745752,3
+62344639,25745752,2
+lloveleely,25745752,-1
+120774094,25745752,3
+tianzhueyesonme,25745752,2
+myonlysummer,25745752,3
+n745967340,25745752,4
+superallen,25745752,3
+geniusfei,25745752,-1
+2678810,25745752,1
+55629358,25745752,3
+54084911,25745752,-1
+58596675,25745752,5
+102597476,25745752,1
+45220607,25745752,1
+115895353,25745752,3
+madwithu,25745752,2
+65352682,25745752,2
+Heaven3,25745752,1
+rongpeng,25745752,-1
+108440383,25745752,4
+53437305,25745752,3
+71813557,25745752,3
+64173169,25745752,3
+53975225,25745752,1
+56001919,25745752,3
+33629882,25745752,1
+yoyoyoyoyoyoyo,25745752,1
+Desperatio_God,25745752,2
+90777132,25745752,4
+54772166,25745752,1
+Banana_Z,25745752,3
+72132264,25745752,1
+3423882,25745752,3
+silence_queen,25745752,4
+82083115,25745752,1
+43871620,25745752,3
+weexf,25745752,5
+we_15,25745752,1
+shshshadow,25745752,-1
+49207878,25745752,5
+64287254,25745752,1
+74871304,25745752,2
+guominhua,25745752,3
+80425280,25745752,3
+44121177,25745752,3
+JiangHuiling,25745752,3
+sisisummer,25745752,4
+MZZ1221,25745752,3
+koyomi,25745752,2
+46343339,25745752,2
+84076381,25745752,1
+BYAlice,25745752,2
+65002726,25745752,4
+94932551,25745752,3
+4549914,25745752,1
+atomd,25745752,4
+49731648,25745752,2
+53498536,25745752,4
+117149225,25745752,2
+47844034,25745752,4
+i-san,25745752,2
+50587917,25745752,3
+47778375,25745752,1
+AiwobiezouLZH,25745752,2
+34552812,25745752,3
+67552015,25745752,5
+4503655,25745752,1
+inoyu,25745752,4
+luckytan,25745752,4
+123001004,25745752,2
+58536019,25745752,4
+57831811,25745752,3
+127157742,25745752,4
+zzxuan,25745752,4
+aawenping,25745752,3
+46803556,25745752,3
+libowen,25745752,5
+46183275,25745752,3
+119786760,25745752,1
+46887400,25745752,4
+119371106,25745752,1
+47832961,25745752,3
+summertime727,25745752,-1
+YaO-TaTa,25745752,3
+52624192,25745752,3
+57088096,25745752,2
+kiwimomo,25745752,1
+64926044,25745752,2
+a5811548,25745752,2
+Cheeranita,25745752,2
+60515729,25745752,4
+Kathtelet,25745752,5
+121900406,25745752,2
+48216088,25745752,5
+80985277,25745752,4
+106596511,25745752,3
+injune,25745752,4
+1585106,25745752,3
+zling--HE,25745752,3
+115144480,25745752,5
+fangyu0701,25745752,4
+127148800,25745752,5
+sanshuicaosuwen,25745752,3
+isss,25745752,2
+1286114,25745752,3
+antime,25745752,4
+51775024,25745752,3
+i-am-wen-2u,25745752,3
+60358389,25745752,1
+50720441,25745752,5
+chichaofan,25745752,4
+72727625,25745752,4
+44689732,25745752,3
+123634795,25745752,5
+heyaoniming3000,25745752,1
+64067066,25745752,3
+81044842,25745752,3
+sunsword1991,25745752,5
+xixiseven,25745752,3
+lostcindy,25745752,3
+34179685,25745752,4
+60095133,25745752,3
+ailyfhong9999,25745752,1
+stillm,25745752,4
+36580993,25745752,3
+sweetheart7,25745752,3
+51927148,25745752,2
+86807524,25745752,2
+yogaeven,25745752,2
+53155728,25745752,1
+zoeterry,25745752,3
+45137235,25745752,2
+45137235,25745752,2
+80398385,25745752,3
+yiliangsan,25745752,3
+65410502,25745752,2
+76344742,25745752,2
+skyFei,25745752,1
+48731580,25745752,4
+88913069,25745752,-1
+2858394,25745752,3
+57419591,25745752,1
+seeyou--,25745752,3
+65543223,25745752,3
+47632443,25745752,5
+73080100,25745752,3
+bqx0888,25745752,3
+52087392,25745752,3
+2056853,25745752,2
+pinkpinkpinkred,25745752,2
+baoyinjun,25745752,2
+64487390,25745752,5
+64487390,25745752,5
+60648596,25745752,1
+99834805,25745752,2
+83233045,25745752,3
+50668498,25745752,2
+4431102,25745752,4
+51979637,25745752,4
+73036583,25745752,1
+48827039,25745752,4
+rucic,25745752,5
+62546784,25745752,3
+58064743,25745752,2
+52426350,25745752,3
+36945830,25745752,4
+70173493,25745752,3
+ningning9164,25745752,-1
+121754243,25745752,4
+cworange,25745752,1
+45631854,25745752,3
+62187339,25745752,2
+57934089,25745752,4
+57054575,25745752,3
+lo0707,25745752,3
+darlinfish,25745752,-1
+43630302,25745752,2
+34142242,25745752,3
+63849510,25745752,3
+33657208,25745752,5
+y19940504,25745752,3
+lightreus,25745752,1
+35522307,25745752,4
+122944258,25745752,2
+3955122,25745752,3
+43776397,25745752,3
+Joie,25745752,3
+beini125,25745752,2
+suqieyao,25745752,3
+1953044,25745752,4
+46175639,25745752,1
+59302028,25745752,5
+104076508,25745752,1
+102153568,25745752,3
+117235946,25745752,1
+Jastine,25745752,3
+33620840,25745752,4
+88922357,25745752,3
+59556087,25745752,1
+aigreeny,25745752,2
+1166572,25745752,2
+EthanChu,25745752,3
+dasyhiqiang,25745752,2
+64828822,25745752,5
+41864568,25745752,3
+shio713,25745752,3
+79148662,25745752,-1
+1408080,25745752,-1
+53888176,25745752,3
+gdragon-ily,25745752,3
+minuan,25745752,3
+120604909,25745752,1
+34992254,25745752,1
+banzhan,25745752,3
+xuxiailing,25745752,3
+namco,25745752,3
+102884744,25745752,1
+80651054,25745752,3
+lihui_tiger,25745752,1
+huaanhuang,25745752,2
+55016503,25745752,2
+madrid9,25745752,1
+127080135,25745752,3
+52537520,25745752,1
+52236886,25745752,4
+126125556,25745752,3
+48188623,25745752,1
+66382241,25745752,2
+122107585,25745752,2
+vane0109,25745752,4
+64664851,25745752,2
+91145752,25745752,1
+104528763,25745752,4
+34710237,25745752,3
+jutaomomo,25745752,-1
+hrm,25745752,1
+82550997,25745752,3
+florah,25745752,4
+2416197,25745752,1
+evenlingbo,25745752,3
+shunchong,25745752,3
+79718919,25745752,3
+xinbaoyi,25745752,1
+66163622,25745752,2
+82927538,25745752,1
+wtdhouse,25745752,3
+45315390,25745752,1
+122839892,25745752,4
+93497449,25745752,4
+43680432,25745752,1
+havenkid,25745752,2
+58897808,25745752,4
+ya19910907,25745752,3
+springfantasy,25745752,2
+124770201,25745752,2
+52469091,25745752,3
+gjx189,25745752,4
+43430592,25745752,-1
+58045060,25745752,3
+94131682,25745752,2
+toforever,25745752,3
+72728384,25745752,2
+64111544,25745752,1
+2409661,25745752,3
+tammyj_11,25745752,1
+43654702,25745752,2
+53437744,25745752,3
+6343940,25745752,4
+63381133,25745752,3
+95213691,25745752,3
+90586431,25745752,1
+88091701,25745752,1
+67698381,25745752,2
+50176051,25745752,4
+53417740,25745752,4
+11793681,25745752,4
+122384398,25745752,4
+48884000,25745752,1
+60378678,25745752,1
+57163160,25745752,4
+elaine0801,25745752,4
+elflyn,25745752,2
+longwandaren,25745752,4
+dulanduo,25745752,3
+4400554,25745752,3
+helloxxf,25745752,4
+127063702,25745752,1
+4201884,25745752,3
+uranus_taotao,25745752,2
+115305871,25745752,2
+67034338,25745752,3
+zajm,25745752,3
+echo920905,25745752,4
+80020848,25745752,3
+120399336,25745752,2
+57976050,25745752,1
+2372058,25745752,3
+125900459,25745752,1
+Walkee,25745752,2
+zhuyuying,25745752,1
+79104365,25745752,2
+50945725,25745752,1
+56941343,25745752,2
+ljojingle,25745752,1
+2777892,25745752,2
+vera-cheng,25745752,2
+67400745,25745752,3
+78500828,25745752,2
+54943644,25745752,1
+79605736,25745752,4
+ningjing0215,25745752,4
+62418670,25745752,3
+57212988,25745752,3
+jingshuixian,25745752,4
+57597976,25745752,1
+67181847,25745752,-1
+AnaesthesiaSue,25745752,-1
+62973843,25745752,3
+96140309,25745752,4
+48971514,25745752,3
+63522426,25745752,2
+69379174,25745752,4
+44614198,25745752,3
+127011923,25745752,3
+54471920,25745752,4
+zmyBattier,25745752,3
+80806690,25745752,3
+qiangqiangzhang,25745752,3
+50682359,25745752,4
+mufanqiushi,25745752,3
+47732306,25745752,4
+zod798,25745752,3
+49384394,25745752,2
+5592925,25745752,3
+laishuwen,25745752,4
+millylyu,25745752,1
+83366793,25745752,1
+50292036,25745752,2
+65550033,25745752,1
+70173659,25745752,5
+62306156,25745752,1
+cuichenpro,25745752,1
+115217962,25745752,1
+72651303,25745752,-1
+39144462,25745752,2
+shoutingyu,25745752,-1
+127064109,25745752,2
+56277901,25745752,3
+ccccmy,25745752,2
+127083816,25745752,2
+67209913,25745752,1
+niangaoshou,25745752,2
+127082553,25745752,4
+65214570,25745752,2
+zangxp,25745752,4
+44411218,25745752,3
+47034969,25745752,2
+127081062,25745752,4
+wangholic,25745752,2
+70253982,25745752,1
+88002306,25745752,2
+Luna_apo,25745752,1
+maggie1268,25745752,4
+46430549,25745752,3
+49541286,25745752,4
+SK8_frank,25745752,3
+82515489,25745752,1
+55024300,25745752,2
+125913784,25745752,3
+81939398,25745752,2
+80240044,25745752,3
+melody6,25745752,3
+3434510,25745752,1
+chenzhaozhao,25745752,3
+60251823,25745752,3
+realmflora,25745752,2
+57654704,25745752,3
+67808822,25745752,3
+41843254,25745752,2
+mpor2,25745752,5
+104709607,25745752,1
+fuyubo,25745752,3
+hici,25745752,4
+53010578,25745752,-1
+mingyaback,25745752,3
+lxklzy,25745752,5
+allenzn125,25745752,3
+85054313,25745752,2
+56872460,25745752,1
+compliment,25745752,3
+76270911,25745752,2
+daobanjiang,25745752,2
+newbear,25745752,2
+76028703,25745752,3
+127072493,25745752,2
+64687652,25745752,3
+goufanbbs,25745752,3
+126931660,25745752,4
+87909103,25745752,3
+geekvx,25745752,1
+puyi,25745752,2
+43167755,25745752,3
+lilian-gu,25745752,3
+59902058,25745752,1
+zhaoxiaoya,25745752,4
+41835913,25745752,1
+daisy3977,25745752,2
+guihua621,25745752,3
+127071890,25745752,1
+75500814,25745752,2
+monilen,25745752,2
+3506807,25745752,2
+95224421,25745752,3
+97010885,25745752,4
+1496396,25745752,3
+64882896,25745752,2
+princecat,25745752,3
+3768837,25745752,2
+Lynne101,25745752,3
+64934360,25745752,5
+poon.,25745752,5
+Wzzzzzza,25745752,1
+beyo213,25745752,3
+lmoung,25745752,4
+4288448,25745752,2
+50410126,25745752,3
+D-bao,25745752,3
+41047138,25745752,3
+46173103,25745752,4
+ljh007,25745752,3
+55420390,25745752,3
+91217287,25745752,2
+30001236,25745752,2
+chydi,25745752,-1
+50775215,25745752,2
+liusuer,25745752,3
+dongruochuzi,25745752,-1
+lh_amber,25745752,3
+summertt422,25745752,2
+Shearwater,25745752,1
+52583680,25745752,2
+77266400,25745752,2
+75860030,25745752,-1
+43770578,25745752,4
+68696664,25745752,2
+2233963,25745752,3
+68537326,25745752,2
+97111841,25745752,1
+4406540,25745752,2
+122874925,25745752,3
+65023609,25745752,3
+storytellerbroo,25745752,4
+8708200,25745752,2
+2210778,25745752,1
+60168432,25745752,2
+mcgregor,25745752,3
+122938233,25745752,3
+68692229,25745752,1
+59016139,25745752,4
+127053709,25745752,4
+103487977,25745752,2
+58640955,25745752,3
+3544390,25745752,2
+60042688,25745752,1
+127043703,25745752,4
+AngelaDayday,25745752,3
+51110047,25745752,3
+48452240,25745752,-1
+58310945,25745752,2
+96398339,25745752,4
+4355421,25745752,-1
+27645956,25745752,3
+63214398,25745752,3
+nadjacho,25745752,-1
+52978874,25745752,3
+52248618,25745752,3
+52834321,25745752,3
+6457514,25745752,5
+panelephant,25745752,5
+47272004,25745752,3
+122952047,25745752,3
+zmdoor,25745752,1
+yanala,25745752,3
+58975463,25745752,3
+40716634,25745752,2
+41778329,25745752,1
+orpzrpv,25745752,3
+68083374,25745752,2
+56383208,25745752,2
+Hely5,25745752,1
+83389859,25745752,-1
+77624574,25745752,3
+45719908,25745752,3
+miumiu777,25745752,2
+momokozz,25745752,3
+57476889,25745752,1
+123475054,25745752,2
+xinruzhishui22,25745752,3
+46172188,25745752,4
+50453835,25745752,5
+smileuna,25745752,1
+52104189,25745752,2
+sunflower2008,25745752,5
+56557982,25745752,2
+44313345,25745752,2
+prague2046,25745752,1
+93420965,25745752,4
+102832548,25745752,1
+58624199,25745752,4
+4673617,25745752,4
+97185474,25745752,3
+yiciyuan,25745752,5
+jjjade,25745752,1
+hanhnin,25745752,1
+hcaelb,25745752,3
+42323410,25745752,3
+AstridL411,25745752,3
+58792200,25745752,2
+126628474,25745752,1
+52490954,25745752,2
+ttangelica,25745752,4
+dearhana,25745752,4
+Creep_v,25745752,5
+emotion7,25745752,4
+82362528,25745752,3
+84466308,25745752,1
+122710059,25745752,2
+65084443,25745752,5
+cqingxian,25745752,2
+44272846,25745752,2
+41470882,25745752,2
+71370829,25745752,2
+caprice_vvn,25745752,2
+94380874,25745752,1
+126024624,25745752,3
+qingjianfeiwu,25745752,4
+52954426,25745752,2
+teresa_leaves,25745752,3
+100420531,25745752,2
+125823187,25745752,3
+69031967,25745752,3
+71996038,25745752,3
+36175622,25745752,3
+InveRno,25745752,3
+ifthereisoneday,25745752,3
+marcoli,25745752,2
+longger,25745752,2
+44561459,25745752,4
+4280640,25745752,3
+Eleanor_Mc,25745752,1
+93224854,25745752,4
+yao_bing,25745752,3
+MovieL,25745752,2
+42702997,25745752,2
+53295691,25745752,3
+102166582,25745752,3
+91432391,25745752,3
+vltss,25745752,3
+K_Kaito,25745752,2
+16048346,25745752,3
+122527158,25745752,3
+43990586,25745752,3
+35120433,25745752,3
+3078372,25745752,4
+iyuxingcao,25745752,3
+kawayiilove,25745752,4
+4563712,25745752,3
+70924398,25745752,2
+5336287,25745752,2
+65288750,25745752,3
+49636823,25745752,4
+76430480,25745752,4
+vivissky,25745752,3
+68724971,25745752,2
+icepolar,25745752,3
+jiaosally,25745752,1
+53539335,25745752,3
+younvtongche,25745752,3
+cookiecola,25745752,1
+97059252,25745752,2
+54710397,25745752,-1
+Shane-SISU,25745752,3
+56388358,25745752,3
+namihjl,25745752,3
+101232797,25745752,1
+41703607,25745752,4
+roam0629,25745752,5
+5652052,25745752,3
+popooooooooo,25745752,3
+58559104,25745752,4
+lingmo7seven,25745752,3
+33638024,25745752,3
+Realgirl,25745752,3
+17790607,25745752,2
+48689734,25745752,3
+67190853,25745752,3
+71609046,25745752,2
+51044049,25745752,1
+52596870,25745752,1
+2340314,25745752,3
+2183227,25745752,4
+37333384,25745752,4
+tmy1107,25745752,3
+89838973,25745752,3
+loria,25745752,2
+62392001,25745752,3
+102203140,25745752,1
+46980960,25745752,1
+104517766,25745752,1
+69816487,25745752,1
+zsqbgd,25745752,3
+65116926,25745752,-1
+raincy4,25745752,3
+DJ-day,25745752,-1
+71968640,25745752,3
+coolluo_zw,25745752,3
+42494306,25745752,3
+39089723,25745752,2
+leegengg,25745752,4
+46750786,25745752,1
+48256975,25745752,3
+tincnie,25745752,4
+agoooooo9794xy,25745752,3
+Betty_king,25745752,1
+heyrino.,25745752,3
+53205723,25745752,3
+60382121,25745752,-1
+moqishu,25745752,-1
+78290634,25745752,2
+121180696,25745752,3
+livyluqin,25745752,3
+51814421,25745752,-1
+chris041,25745752,4
+badyueyue,25745752,1
+42898994,25745752,1
+57898699,25745752,4
+49145683,25745752,4
+55606165,25745752,2
+chobit.w,25745752,2
+lingchen22,25745752,2
+48775291,25745752,4
+14149496,25745752,5
+62473874,25745752,1
+79861493,25745752,3
+53476410,25745752,3
+crys_zzz,25745752,3
+52341431,25745752,2
+34255820,25745752,3
+67468613,25745752,3
+96775561,25745752,2
+93187662,25745752,3
+43080910,25745752,3
+xxrachel,25745752,3
+2569501,25745752,3
+46813003,25745752,4
+3759142,25745752,4
+51640558,25745752,1
+67262547,25745752,1
+122104513,25745752,1
+73027943,25745752,3
+57885765,25745752,4
+67550871,25745752,1
+1572368,25745752,4
+2978891,25745752,2
+11627543,25745752,3
+55653104,25745752,1
+45556093,25745752,3
+wangjingya,25745752,3
+62202666,25745752,4
+qingfengmubai,25745752,3
+49520443,25745752,1
+62973297,25745752,1
+62973297,25745752,1
+53958013,25745752,2
+76442034,25745752,1
+alan1023,25745752,-1
+wotaomei,25745752,5
+121433358,25745752,3
+45529743,25745752,3
+58742522,25745752,2
+cyl1937,25745752,3
+twocold-,25745752,3
+85368770,25745752,3
+3548440,25745752,3
+57359421,25745752,3
+75909451,25745752,2
+lzhuce,25745752,2
+66032572,25745752,4
+47516693,25745752,3
+126327911,25745752,3
+66168101,25745752,1
+58583668,25745752,1
+73165513,25745752,3
+early_birds,25745752,3
+lee1927,25745752,3
+pengpengyue,25745752,3
+87459568,25745752,2
+84994789,25745752,2
+92894015,25745752,2
+64173784,25745752,4
+66595239,25745752,-1
+xiaoyubaobao,25745752,3
+spiderbat,25745752,3
+mmj626,25745752,3
+62405259,25745752,1
+67472889,25745752,3
+41782473,25745752,2
+cozumakemesmile,25745752,3
+50191563,25745752,4
+46574492,25745752,3
+28631660,25745752,4
+dyz_McAvoy,25745752,1
+screwuuuuu,25745752,1
+59592825,25745752,3
+lalade,25745752,3
+79463991,25745752,3
+L-princess,25745752,1
+lucyn,25745752,1
+56252551,25745752,3
+44722840,25745752,3
+126975946,25745752,4
+vikissss,25745752,2
+126139511,25745752,3
+58481286,25745752,2
+50979668,25745752,5
+renmq,25745752,3
+dearabbyabby,25745752,3
+32746698,25745752,2
+weixiaol,25745752,2
+4286712,25745752,2
+6009745,25745752,4
+100576049,25745752,4
+Ruby-0917,25745752,2
+67727072,25745752,2
+79546136,25745752,4
+jinnioio,25745752,4
+71655181,25745752,1
+76120521,25745752,4
+3537717,25745752,2
+heyunlong,25745752,4
+Irisyin058,25745752,2
+45262915,25745752,2
+59290556,25745752,1
+80715123,25745752,3
+4310786,25745752,3
+lairen,25745752,4
+79803791,25745752,1
+57592404,25745752,4
+36664214,25745752,4
+2561474,25745752,1
+53769450,25745752,3
+xx218,25745752,1
+amidede,25745752,4
+65266454,25745752,4
+flydancer,25745752,4
+115200228,25745752,1
+88412250,25745752,3
+9903895,25745752,2
+58725600,25745752,3
+3813613,25745752,1
+uruk60kg,25745752,4
+akinotsubasa,25745752,3
+60243726,25745752,5
+lovepoison,25745752,1
+Mavisssz,25745752,1
+54018482,25745752,2
+82747954,25745752,3
+52374086,25745752,3
+lalolo,25745752,4
+71947752,25745752,3
+KathyChin,25745752,-1
+49878108,25745752,3
+linbaola,25745752,5
+126825312,25745752,1
+54965871,25745752,2
+54639922,25745752,4
+2878601,25745752,4
+3522043,25745752,3
+51300065,25745752,2
+66717482,25745752,3
+87090261,25745752,1
+Angel.Tracy,25745752,2
+53132869,25745752,2
+99377723,25745752,4
+kenc,25745752,3
+58056246,25745752,3
+4253230,25745752,5
+63352015,25745752,1
+3621806,25745752,4
+dayandnights,25745752,3
+merolan,25745752,4
+1508507,25745752,-1
+72781778,25745752,2
+102720326,25745752,3
+litterbean,25745752,5
+13903375,25745752,3
+lucychen,25745752,3
+84168657,25745752,4
+qdwhjcd,25745752,2
+chowge,25745752,3
+104818700,25745752,2
+37552777,25745752,3
+64301558,25745752,4
+kyoko.,25745752,2
+49577279,25745752,-1
+53201086,25745752,-1
+zt-0929,25745752,3
+126186349,25745752,1
+50902906,25745752,2
+83361236,25745752,4
+52599155,25745752,2
+71697872,25745752,1
+26523193,25745752,4
+62777144,25745752,3
+49893629,25745752,3
+84779002,25745752,2
+55886505,25745752,1
+luoluofan,25745752,4
+126949865,25745752,3
+87727642,25745752,1
+Y_xiaoyang,25745752,3
+colorwind,25745752,3
+taozilove1314,25745752,4
+3701499,25745752,4
+67796115,25745752,2
+108793879,25745752,3
+97214449,25745752,3
+38625392,25745752,3
+49006770,25745752,2
+43609343,25745752,2
+57664737,25745752,2
+51407309,25745752,1
+46368799,25745752,1
+jin811089856,25745752,5
+51836301,25745752,2
+54010420,25745752,3
+67692167,25745752,2
+blackout,25745752,1
+62292922,25745752,4
+1065050,25745752,4
+89909266,25745752,1
+qingyangnn,25745752,3
+113775615,25745752,3
+49925058,25745752,2
+sixtime,25745752,1
+levitating,25745752,2
+61228899,25745752,5
+60411524,25745752,2
+zsq0028347,25745752,3
+27300707,25745752,3
+6015634,25745752,4
+78462539,25745752,1
+56414637,25745752,4
+65466493,25745752,4
+115838618,25745752,2
+42849001,25745752,4
+38781759,25745752,3
+42039153,25745752,2
+81116656,25745752,1
+81916130,25745752,3
+viviwanghoho,25745752,1
+ranfei,25745752,2
+Hakknk,25745752,-1
+vidqing,25745752,1
+78475246,25745752,5
+47346400,25745752,4
+25299808,25745752,3
+61254076,25745752,4
+Veronica-,25745752,3
+xjwangzhi,25745752,-1
+wushuimu,25745752,3
+2820162,25745752,4
+35910960,25745752,1
+31214717,25745752,4
+2516625,25745752,3
+shutu,25745752,3
+honey0324,25745752,3
+58879384,25745752,3
+41951711,25745752,2
+57756222,25745752,2
+62582404,25745752,4
+matcha717,25745752,3
+mudongaimogu,25745752,4
+94585757,25745752,3
+mandylu2010,25745752,4
+63236633,25745752,2
+108227368,25745752,3
+123480642,25745752,5
+64461922,25745752,2
+xuliking,25745752,2
+63658740,25745752,1
+124913025,25745752,3
+1867729,25745752,-1
+LasciatemiMorir,25745752,2
+73854717,25745752,3
+52562845,25745752,1
+77495634,25745752,3
+iappler,25745752,5
+51192527,25745752,2
+52116951,25745752,2
+L-sheep,25745752,3
+slbx_Lau,25745752,1
+3583078,25745752,4
+51152524,25745752,3
+49115680,25745752,3
+luoxinyue,25745752,-1
+41002663,25745752,4
+49541218,25745752,3
+41649419,25745752,2
+59430879,25745752,4
+50739381,25745752,3
+79934578,25745752,2
+79934578,25745752,2
+64090808,25745752,3
+62522469,25745752,2
+77724993,25745752,4
+68283213,25745752,2
+54117483,25745752,1
+34032008,25745752,3
+85345126,25745752,1
+40861362,25745752,3
+3179740,25745752,2
+2370392,25745752,3
+67826635,25745752,3
+123697515,25745752,2
+83811612,25745752,4
+agehamemory,25745752,2
+1933666,25745752,2
+sffan,25745752,4
+58709119,25745752,3
+58335462,25745752,2
+66999227,25745752,3
+qianxiaoyi,25745752,3
+mouy490,25745752,4
+106379046,25745752,3
+dinglinsusu,25745752,5
+24543063,25745752,4
+mitusheng,25745752,2
+FFFine,25745752,1
+cassiecici,25745752,5
+3688402,25745752,-1
+pikazhu,25745752,4
+yuweeney,25745752,4
+47739480,25745752,1
+114353499,25745752,3
+54551118,25745752,4
+34438026,25745752,3
+4560084,25745752,1
+LphilosopherL,25745752,3
+faiel,25745752,2
+49918065,25745752,3
+46605494,25745752,4
+changtengteng,25745752,3
+35743711,25745752,4
+62457079,25745752,4
+rainysue,25745752,3
+32074412,25745752,3
+119821299,25745752,2
+cejjessie,25745752,3
+22040154,25745752,2
+25179405,25745752,3
+luxixi429,25745752,2
+49215844,25745752,2
+55325388,25745752,3
+103251789,25745752,3
+3165537,25745752,2
+58292946,25745752,3
+51918247,25745752,2
+shineone,25745752,3
+42337387,25745752,3
+47485602,25745752,2
+succina,25745752,1
+104961288,25745752,5
+smilemiaomiao,25745752,3
+xiaohazz,25745752,4
+3477183,25745752,1
+67733438,25745752,2
+53506476,25745752,4
+123208179,25745752,4
+81835593,25745752,5
+49284817,25745752,-1
+58283985,25745752,3
+72660726,25745752,3
+JoyYoung,25745752,2
+36659366,25745752,3
+54272292,25745752,2
+imoviekobe,25745752,2
+aiwangyue,25745752,2
+82511648,25745752,4
+41533763,25745752,3
+39877849,25745752,1
+ritawwx,25745752,4
+madman-daily,25745752,2
+misslather,25745752,1
+76951536,25745752,3
+120359259,25745752,2
+Angeline_xu,25745752,2
+2632594,25745752,3
+53008518,25745752,3
+tianqiyong,25745752,2
+70744275,25745752,4
+64954480,25745752,2
+ichvermissedich,25745752,3
+89626032,25745752,4
+2258556,25745752,2
+81873289,25745752,1
+28312683,25745752,2
+superMmm,25745752,3
+49565536,25745752,-1
+ola0705,25745752,-1
+11402687,25745752,3
+67245376,25745752,3
+shyizhu,25745752,5
+Dyuhoutianqing,25745752,5
+54358561,25745752,2
+66224726,25745752,3
+43773651,25745752,4
+pinkbebe,25745752,3
+xixi__Veronica,25745752,1
+53229788,25745752,3
+53698727,25745752,2
+32359738,25745752,3
+49508184,25745752,2
+93212648,25745752,1
+53149609,25745752,2
+125843967,25745752,1
+Hanncy.Zheng,25745752,4
+Janiceznl,25745752,3
+4664693,25745752,3
+Rye-zeroboy,25745752,3
+48153158,25745752,3
+58618452,25745752,2
+dan0824,25745752,1
+2758560,25745752,2
+54618725,25745752,4
+66339819,25745752,2
+121578175,25745752,3
+3540943,25745752,3
+61119863,25745752,4
+48128948,25745752,-1
+36478287,25745752,1
+56957975,25745752,3
+arielzhong,25745752,3
+76925066,25745752,3
+46815070,25745752,2
+elvies,25745752,1
+69189360,25745752,-1
+36231794,25745752,3
+2964464,25745752,1
+70440342,25745752,3
+88428362,25745752,3
+83492460,25745752,4
+121071539,25745752,1
+left_behind,25745752,4
+ilovepp,25745752,1
+54505273,25745752,1
+48730189,25745752,3
+75936791,25745752,1
+57476701,25745752,3
+97845627,25745752,3
+washingstar,25745752,3
+xiaobei1116,25745752,4
+Sharonmay,25745752,3
+68776997,25745752,1
+libertyer,25745752,2
+38989368,25745752,5
+50836111,25745752,3
+46067513,25745752,2
+lray123,25745752,3
+48880380,25745752,2
+76550924,25745752,2
+49762626,25745752,1
+81250715,25745752,4
+ronarona,25745752,5
+103409828,25745752,1
+40684892,25745752,2
+huangting0126,25745752,-1
+74013512,25745752,1
+Sid-Joker,25745752,3
+chelingli,25745752,-1
+9173752,25745752,4
+qjunny,25745752,1
+44813973,25745752,3
+124268613,25745752,3
+57061185,25745752,3
+4684950,25745752,3
+81413289,25745752,2
+hayako8059,25745752,3
+3410378,25745752,3
+80925523,25745752,2
+81882321,25745752,1
+rurucat,25745752,2
+5960133,25745752,4
+82582111,25745752,4
+lishirley,25745752,3
+scant,25745752,3
+45745443,25745752,3
+45483327,25745752,3
+chixixiaoyu228,25745752,2
+49970434,25745752,1
+2244201,25745752,1
+84655356,25745752,1
+57710980,25745752,4
+48446069,25745752,1
+50249833,25745752,3
+70454803,25745752,1
+54253559,25745752,3
+takataka,25745752,1
+yujun_2011,25745752,3
+chendaxiao,25745752,4
+ofish0,25745752,3
+53006710,25745752,2
+61042379,25745752,3
+wondermlq,25745752,3
+58286860,25745752,2
+48517531,25745752,3
+52015863,25745752,-1
+68152865,25745752,2
+42431883,25745752,4
+43383576,25745752,3
+47190086,25745752,3
+2759466,25745752,3
+shenqiongye,25745752,2
+dongjiayue,25745752,3
+59317942,25745752,1
+yishu.,25745752,3
+C-Plus,25745752,3
+2330877,25745752,4
+62808606,25745752,1
+everlike,25745752,-1
+yyo427,25745752,-1
+126892283,25745752,3
+97312448,25745752,1
+33782598,25745752,4
+Amour-Xerophyte,25745752,1
+3107188,25745752,5
+27858199,25745752,1
+70982238,25745752,2
+zhenbaodao,25745752,3
+65808284,25745752,3
+82323132,25745752,3
+43652066,25745752,2
+3939279,25745752,4
+okaycl,25745752,3
+52974670,25745752,1
+68922284,25745752,2
+doulaodou,25745752,3
+litaile,25745752,3
+73311977,25745752,1
+46810094,25745752,2
+kaiqiangwei,25745752,3
+45944952,25745752,4
+april_rap,25745752,2
+wenzhengchen,25745752,4
+58821009,25745752,4
+foxcc,25745752,3
+neilfushi,25745752,2
+56686488,25745752,4
+29172425,25745752,3
+100090079,25745752,5
+ashinsama,25745752,3
+slow-down,25745752,1
+109632163,25745752,1
+matoi,25745752,3
+rose886,25745752,1
+57588789,25745752,5
+52769755,25745752,-1
+37217307,25745752,5
+110146987,25745752,2
+aiziyuer,25745752,4
+51706608,25745752,3
+stephanie5uu,25745752,2
+68871440,25745752,3
+yanzi1214,25745752,3
+qqmhao,25745752,5
+66595017,25745752,1
+2842222,25745752,2
+100377379,25745752,3
+lzzzzzfbee,25745752,1
+trymybestYE,25745752,1
+74810108,25745752,2
+3683994,25745752,2
+61476348,25745752,2
+62411138,25745752,3
+AllanBen,25745752,3
+clairexinaiwawa,25745752,4
+below17,25745752,2
+3000688,25745752,3
+xieruisheng,25745752,3
+64113646,25745752,3
+103735356,25745752,3
+51297917,25745752,4
+63617560,25745752,-1
+dhflockyer00,25745752,3
+manymanyny,25745752,5
+showmeet111,25745752,3
+46465612,25745752,2
+61806244,25745752,1
+57761477,25745752,2
+Perhaps_Green,25745752,3
+46528708,25745752,2
+MisSara,25745752,3
+palais_echo,25745752,1
+gruel_,25745752,4
+3192663,25745752,3
+ifr2p,25745752,3
+38869173,25745752,3
+lucky498,25745752,2
+46655241,25745752,1
+68538489,25745752,3
+37544902,25745752,3
+29584481,25745752,4
+82705965,25745752,1
+4603863,25745752,3
+zihuihui,25745752,4
+71962172,25745752,2
+49507964,25745752,4
+65562076,25745752,4
+60019067,25745752,3
+miketseng,25745752,4
+henryxuzimo,25745752,3
+wlpzyc,25745752,3
+wolvestime,25745752,3
+51012068,25745752,1
+hanlu1991,25745752,5
+54095491,25745752,4
+44903919,25745752,2
+126704969,25745752,1
+mhying29,25745752,4
+62765706,25745752,4
+34292646,25745752,2
+xuy1202,25745752,2
+2826756,25745752,4
+12694657,25745752,2
+chenxiliu,25745752,3
+empfan,25745752,3
+muxiansen,25745752,3
+blueblue_sky,25745752,3
+67232116,25745752,3
+49157394,25745752,4
+43342048,25745752,3
+45030880,25745752,3
+38485317,25745752,3
+52622213,25745752,2
+ztzs,25745752,2
+4728467,25745752,-1
+49808652,25745752,2
+28968809,25745752,4
+moranyushi,25745752,4
+1731822,25745752,3
+57957652,25745752,3
+76371710,25745752,5
+43212336,25745752,3
+guishao,25745752,3
+61161768,25745752,2
+muxucao,25745752,5
+rinnie,25745752,3
+102435306,25745752,2
+hester-chan,25745752,3
+lavende,25745752,2
+58504970,25745752,2
+125661279,25745752,2
+96161847,25745752,2
+50518122,25745752,2
+helloface,25745752,4
+69012682,25745752,-1
+Remember.,25745752,-1
+marioii,25745752,-1
+54671889,25745752,2
+youyoujiangli,25745752,5
+64064709,25745752,3
+51851072,25745752,2
+mzxwx,25745752,4
+50810279,25745752,1
+48100251,25745752,3
+102812397,25745752,3
+3069618,25745752,4
+63849240,25745752,1
+45061776,25745752,1
+3219043,25745752,3
+harrz,25745752,4
+64373770,25745752,4
+zhqiyao,25745752,3
+39611534,25745752,1
+78760255,25745752,4
+buaojiao,25745752,4
+4145495,25745752,2
+shen_jia_yi,25745752,3
+44245497,25745752,3
+69979232,25745752,2
+54342985,25745752,3
+gogom,25745752,1
+nicole24,25745752,2
+52286838,25745752,3
+57449570,25745752,3
+94566833,25745752,3
+93606686,25745752,3
+3966164,25745752,2
+121382823,25745752,4
+69187139,25745752,3
+4571269,25745752,2
+68283591,25745752,4
+20982958,25745752,1
+verylast,25745752,3
+94373618,25745752,2
+126748700,25745752,1
+liutianhong1992,25745752,1
+62665352,25745752,2
+mewcatcher,25745752,4
+chelseaq,25745752,4
+3959996,25745752,1
+48545858,25745752,3
+126081007,25745752,3
+67694189,25745752,5
+qingcongtou,25745752,3
+65729154,25745752,3
+57425264,25745752,1
+linhome,25745752,3
+8797571,25745752,4
+hisunnyday123,25745752,5
+52222145,25745752,3
+3828189,25745752,3
+41967985,25745752,1
+88171828,25745752,3
+iamwangtao,25745752,2
+huyiwei,25745752,2
+66946937,25745752,2
+40848331,25745752,2
+lynshian,25745752,1
+50433074,25745752,4
+42165209,25745752,4
+gubbys,25745752,1
+46061169,25745752,1
+uhziel,25745752,4
+49267186,25745752,1
+40311354,25745752,1
+71467734,25745752,3
+3312294,25745752,2
+chancius,25745752,2
+49456596,25745752,3
+readyliu,25745752,5
+jinqu911,25745752,4
+sophie1900,25745752,2
+15923288,25745752,1
+XXXVII,25745752,2
+zxjtmac,25745752,5
+mazzystarxue,25745752,5
+CNToria617,25745752,4
+69125005,25745752,2
+3768479,25745752,2
+Ruiyiruiyiruiyi,25745752,2
+sherry0330,25745752,2
+99924032,25745752,1
+57058120,25745752,2
+48950860,25745752,3
+2124043,25745752,4
+7449865,25745752,3
+83962986,25745752,3
+58913556,25745752,2
+35823010,25745752,2
+27571749,25745752,4
+lm2279473827,25745752,4
+70191334,25745752,2
+70692054,25745752,2
+58050529,25745752,2
+50104726,25745752,3
+belongtol,25745752,4
+gladiatoryuwei,25745752,4
+summer_waiting,25745752,2
+boboliu,25745752,1
+55419470,25745752,1
+45320268,25745752,3
+1223666,25745752,3
+Passio_nuova,25745752,3
+xd0812,25745752,2
+princelai,25745752,4
+sl19910727,25745752,2
+46754080,25745752,1
+49471489,25745752,3
+honeydoris,25745752,3
+misamore,25745752,1
+45168775,25745752,3
+79278191,25745752,2
+68579661,25745752,2
+25259616,25745752,3
+Fay59,25745752,2
+58004932,25745752,4
+37244080,25745752,4
+Nanalw,25745752,4
+114034987,25745752,4
+52154937,25745752,-1
+4294147,25745752,3
+62635630,25745752,3
+34025218,25745752,3
+78376415,25745752,2
+46961290,25745752,3
+1743863,25745752,5
+73873085,25745752,4
+102621114,25745752,-1
+46420896,25745752,2
+47543330,25745752,-1
+61103418,25745752,-1
+62553096,25745752,3
+41638531,25745752,-1
+53515051,25745752,-1
+71785045,25745752,3
+53773948,25745752,3
+48748738,25745752,3
+kaiwu,25745752,4
+kazuha,25745752,4
+70720802,25745752,-1
+roylaw,25745752,3
+Ichbinnichttot,25745752,5
+Ineverdimagain,25745752,4
+yuedawei,25745752,3
+49258293,25745752,2
+myplacemyway,25745752,2
+64886603,25745752,3
+52948477,25745752,1
+zhegejiale,25745752,1
+4648608,25745752,3
+52134648,25745752,3
+2659580,25745752,2
+82031489,25745752,4
+yujianwo49,25745752,3
+70269664,25745752,1
+66380921,25745752,1
+nanashuai,25745752,3
+61025821,25745752,3
+nuan950707,25745752,1
+dragonlinaping,25745752,4
+46292520,25745752,3
+52708584,25745752,1
+94782987,25745752,3
+chanelluo,25745752,3
+45117838,25745752,1
+Amo-L,25745752,1
+pussy_crystal,25745752,3
+66838662,25745752,5
+64565262,25745752,1
+59665595,25745752,2
+yuading,25745752,1
+49305424,25745752,5
+corrinneh,25745752,1
+62555864,25745752,2
+74721875,25745752,1
+81219479,25745752,-1
+cristian,25745752,1
+68810289,25745752,2
+102601631,25745752,4
+70238509,25745752,2
+limerr,25745752,4
+55368955,25745752,2
+65079823,25745752,1
+tangtian0327,25745752,3
+104266951,25745752,3
+58977127,25745752,4
+124349489,25745752,3
+acmilanzjt,25745752,5
+zikki__,25745752,3
+62667007,25745752,3
+48480567,25745752,-1
+Lreckle,25745752,2
+57666555,25745752,1
+46340908,25745752,2
+2569268,25745752,3
+2730322,25745752,4
+suvita,25745752,3
+zqbj,25745752,3
+52839547,25745752,2
+JesusSAM,25745752,2
+75188752,25745752,3
+doreen1215,25745752,2
+54108352,25745752,-1
+84322029,25745752,3
+62157035,25745752,3
+greatlollypop,25745752,2
+99922140,25745752,3
+112957638,25745752,1
+cidishenhao,25745752,1
+53890773,25745752,1
+62453612,25745752,1
+dailypop,25745752,2
+54089518,25745752,3
+greenlifehi,25745752,2
+74795845,25745752,3
+60892883,25745752,2
+102164266,25745752,3
+118277522,25745752,1
+121715773,25745752,-1
+66986240,25745752,1
+61679641,25745752,1
+61679641,25745752,1
+claydolx,25745752,2
+39491713,25745752,2
+71609799,25745752,3
+babiroytina,25745752,1
+45530358,25745752,2
+demiinzhang,25745752,3
+64873674,25745752,3
+98761073,25745752,1
+xueyugaoyuan,25745752,3
+ying823624,25745752,2
+59632577,25745752,3
+109142318,25745752,3
+70662258,25745752,2
+59580132,25745752,1
+53854833,25745752,1
+xu77,25745752,3
+xxxxiaoxiao,25745752,4
+78635801,25745752,3
+maxituanguowang,25745752,3
+VINCENTVCHAN,25745752,2
+88406395,25745752,1
+55479715,25745752,4
+115621068,25745752,5
+1615580,25745752,4
+xuansushine,25745752,4
+shannynzhang,25745752,2
+duanxxx,25745752,5
+lianjin,25745752,1
+59363812,25745752,2
+53646130,25745752,3
+51384913,25745752,1
+67937047,25745752,1
+66488518,25745752,2
+himandy,25745752,3
+60421809,25745752,3
+1902628,25745752,3
+46282005,25745752,2
+vanessa-hsueh,25745752,4
+15018167,25745752,-1
+73836336,25745752,1
+75020217,25745752,2
+72945762,25745752,4
+126843438,25745752,2
+kiara1988,25745752,2
+89170724,25745752,3
+ringringlee21,25745752,4
+4856520,25745752,1
+ramonachan,25745752,3
+caroldove,25745752,3
+43401216,25745752,4
+wxhsolo,25745752,1
+47599682,25745752,2
+Ouidah,25745752,1
+cerrol,25745752,2
+67525276,25745752,2
+4056710,25745752,1
+91358615,25745752,3
+3977305,25745752,3
+48723605,25745752,1
+zhangying0913,25745752,3
+1831746,25745752,3
+47021316,25745752,2
+2646418,25745752,4
+49875686,25745752,1
+70221928,25745752,3
+122178187,25745752,4
+Chingshun,25745752,1
+54309491,25745752,2
+77174799,25745752,1
+79108534,25745752,3
+59274667,25745752,2
+67005716,25745752,4
+30116913,25745752,3
+bctc,25745752,2
+calvinlv,25745752,3
+stef23,25745752,3
+40471337,25745752,-1
+60981917,25745752,3
+52696490,25745752,1
+Memorial_Sue,25745752,-1
+44228798,25745752,3
+Devilseer,25745752,4
+108992454,25745752,2
+54188941,25745752,4
+littles1si,25745752,4
+1653790,25745752,3
+i_Soda,25745752,3
+wheatkittymew,25745752,3
+49549960,25745752,1
+miki_ai,25745752,1
+landy0514,25745752,3
+41575985,25745752,3
+120418587,25745752,3
+61100170,25745752,3
+96009356,25745752,-1
+44358201,25745752,1
+89902421,25745752,3
+69121526,25745752,2
+53166427,25745752,4
+73571891,25745752,2
+103769558,25745752,2
+1189538,25745752,4
+80665810,25745752,3
+79614333,25745752,1
+81068580,25745752,1
+wohuodafa,25745752,2
+72209496,25745752,3
+34033819,25745752,2
+70464788,25745752,3
+54930854,25745752,2
+72367829,25745752,-1
+55020304,25745752,1
+100947136,25745752,4
+lvyejusy,25745752,3
+AriesW322,25745752,2
+58518290,25745752,3
+Xionz,25745752,2
+53875153,25745752,4
+amycuteee,25745752,1
+52105118,25745752,1
+34394752,25745752,3
+76515871,25745752,2
+48604788,25745752,5
+4810068,25745752,5
+51602408,25745752,3
+dabyrowe,25745752,1
+xdcheung,25745752,3
+108002657,25745752,1
+46328381,25745752,3
+90145564,25745752,3
+39411006,25745752,5
+irene_kirakira,25745752,3
+17708601,25745752,3
+3278408,25745752,2
+slpnju2010,25745752,2
+guiguibuwugui,25745752,3
+2085138,25745752,1
+69225914,25745752,3
+1750737,25745752,3
+71299784,25745752,1
+67068693,25745752,3
+99833662,25745752,2
+yaogaosheng,25745752,1
+alexleem,25745752,2
+bay2fun,25745752,3
+52887670,25745752,4
+zuoshoudezuo,25745752,3
+jesmine114,25745752,2
+67922393,25745752,4
+46393539,25745752,2
+51338891,25745752,4
+wind-clover,25745752,-1
+56237449,25745752,4
+64923013,25745752,5
+50564190,25745752,4
+39986895,25745752,2
+124510788,25745752,3
+hansey1994,25745752,3
+ndcharles,25745752,-1
+60333318,25745752,3
+yasenluobin,25745752,3
+turbine,25745752,3
+miesafeandsound,25745752,3
+43260341,25745752,3
+72538044,25745752,3
+94168571,25745752,3
+115203825,25745752,2
+103007178,25745752,4
+52052900,25745752,-1
+3760456,25745752,5
+fengmaozidejia,25745752,1
+59949461,25745752,1
+chistory,25745752,4
+61652299,25745752,3
+ukakun,25745752,3
+1831722,25745752,3
+84734544,25745752,4
+39114388,25745752,1
+exvi,25745752,3
+49006442,25745752,3
+81693756,25745752,3
+xxs127,25745752,3
+56010108,25745752,4
+1552049,25745752,-1
+121363589,25745752,5
+75001572,25745752,2
+Before37,25745752,3
+ceffee,25745752,3
+122907867,25745752,2
+89371386,25745752,3
+esparanza,25745752,3
+103951444,25745752,3
+45430088,25745752,2
+yangui,25745752,4
+taesk,25745752,4
+raintree00,25745752,4
+jingle827,25745752,1
+51276928,25745752,3
+125063685,25745752,3
+51909458,25745752,2
+3331967,25745752,4
+saber1995,25745752,3
+3504351,25745752,2
+122446625,25745752,3
+sherryxie0805,25745752,1
+ohyeacat,25745752,3
+chitian,25745752,2
+xxqxz,25745752,2
+43161702,25745752,2
+105306474,25745752,3
+89726078,25745752,5
+58828155,25745752,3
+xia_xiao,25745752,3
+52084634,25745752,2
+reMadeInChina,25745752,4
+jechy1989,25745752,1
+43908956,25745752,1
+yunxin,25745752,3
+46656559,25745752,2
+3922372,25745752,2
+124680480,25745752,2
+62658973,25745752,2
+chen9h,25745752,5
+76243038,25745752,2
+69210293,25745752,3
+85002998,25745752,2
+66992980,25745752,2
+44728276,25745752,3
+44863580,25745752,2
+65760748,25745752,3
+63760706,25745752,1
+55937300,25745752,3
+icehinata,25745752,3
+fuckooo,25745752,5
+40901036,25745752,-1
+fmime,25745752,3
+76765570,25745752,3
+chenxinsang,25745752,5
+randichou,25745752,3
+hl88miss,25745752,1
+70238336,25745752,3
+60573407,25745752,4
+52976106,25745752,2
+aintro,25745752,1
+3121598,25745752,3
+49581389,25745752,2
+63682283,25745752,3
+Kalibu,25745752,3
+71269156,25745752,1
+zhipeng_zzpp,25745752,4
+64122386,25745752,3
+zhuxingyu7,25745752,3
+29832500,25745752,3
+3583676,25745752,1
+51007365,25745752,1
+3011410,25745752,3
+15965977,25745752,4
+48871743,25745752,1
+koori0501,25745752,4
+koori0501,25745752,4
+62174984,25745752,1
+maojialaoshu,25745752,3
+72965488,25745752,4
+romance90,25745752,3
+85395736,25745752,3
+42959658,25745752,3
+48137780,25745752,2
+loveyzj13,25745752,3
+78261244,25745752,5
+70515402,25745752,2
+73788922,25745752,1
+limeyan,25745752,3
+8990983,25745752,3
+xiao-wei,25745752,3
+57285744,25745752,1
+3382542,25745752,2
+126819328,25745752,2
+HermionenoimreH,25745752,2
+53942101,25745752,4
+119987605,25745752,3
+52581402,25745752,4
+121741379,25745752,3
+63397034,25745752,2
+58696141,25745752,1
+42781171,25745752,3
+73319162,25745752,3
+Xunyinmu,25745752,2
+jjcever,25745752,5
+Utopia.YY,25745752,3
+66340559,25745752,1
+38818550,25745752,4
+xiezilove,25745752,2
+50738842,25745752,1
+55017020,25745752,-1
+78362081,25745752,2
+jewelshao,25745752,2
+87518110,25745752,3
+60061265,25745752,4
+48921388,25745752,3
+58598004,25745752,1
+46003128,25745752,2
+lovejtlforever2,25745752,5
+1014275,25745752,3
+35729058,25745752,3
+guonianle,25745752,2
+102617597,25745752,3
+48009224,25745752,4
+9823482,25745752,4
+82642076,25745752,4
+littlekidzouzou,25745752,2
+shunong,25745752,1
+60046415,25745752,1
+59012758,25745752,3
+73705783,25745752,3
+115706838,25745752,2
+josiekiu,25745752,3
+67117129,25745752,3
+124520259,25745752,3
+68764818,25745752,3
+29988044,25745752,1
+TitlisGushishan,25745752,3
+64841112,25745752,4
+45128285,25745752,3
+hello-carol,25745752,5
+38611027,25745752,1
+yunl988,25745752,3
+Halbert-Sun,25745752,4
+121650352,25745752,3
+48199394,25745752,5
+KOBENYF,25745752,2
+99869940,25745752,2
+64103380,25745752,2
+68866312,25745752,2
+3722910,25745752,3
+iyoun9,25745752,3
+44231628,25745752,3
+67878898,25745752,4
+84205053,25745752,3
+53771098,25745752,1
+68205425,25745752,-1
+73416826,25745752,3
+60609410,25745752,3
+whereru,25745752,2
+dear-echo,25745752,3
+jichuhood,25745752,4
+kubrick311,25745752,2
+81006535,25745752,3
+I_love_night,25745752,5
+109238530,25745752,5
+chih,25745752,1
+94850956,25745752,2
+62014355,25745752,3
+54126303,25745752,1
+crystalgirl,25745752,1
+Smallercloud,25745752,4
+51530306,25745752,1
+46277147,25745752,1
+49454101,25745752,1
+42691855,25745752,1
+ash1225,25745752,3
+59100715,25745752,3
+imom918,25745752,2
+aragakki,25745752,3
+80611510,25745752,1
+68336768,25745752,1
+50519870,25745752,1
+10762878,25745752,3
+77033669,25745752,4
+summercharon,25745752,3
+55638611,25745752,1
+joker_bass,25745752,-1
+46058827,25745752,2
+47273453,25745752,3
+29602196,25745752,4
+ninthcity,25745752,1
+playgame,25745752,2
+102519966,25745752,4
+ueifly,25745752,3
+115715339,25745752,4
+3512272,25745752,4
+jeelychair,25745752,2
+Ayouki,25745752,4
+121767741,25745752,4
+116531685,25745752,3
+49043955,25745752,3
+2099044,25745752,3
+61478984,25745752,2
+76435601,25745752,1
+119945985,25745752,3
+52355127,25745752,4
+gsgsgs6,25745752,2
+122788862,25745752,1
+maaad,25745752,2
+gonghm,25745752,2
+zhengzhongyu,25745752,-1
+50062390,25745752,2
+Mariakevin,25745752,3
+panda919,25745752,2
+75792815,25745752,1
+Shimpear,25745752,4
+94269146,25745752,3
+4867856,25745752,5
+xxfelix,25745752,5
+yexiaohong,25745752,3
+78575214,25745752,3
+64235845,25745752,2
+55643387,25745752,3
+39292972,25745752,1
+89097837,25745752,3
+lisara,25745752,3
+53025817,25745752,1
+55807313,25745752,4
+vianne_xu,25745752,2
+2233324,25745752,1
+67545355,25745752,1
+18041356,25745752,2
+54811615,25745752,3
+yitull,25745752,3
+waka729,25745752,4
+dearanonymity,25745752,1
+49893535,25745752,3
+queenmeng_lynn,25745752,3
+121859817,25745752,3
+51138955,25745752,2
+31308183,25745752,3
+dianjinshu,25745752,3
+75497602,25745752,3
+SJzzy314,25745752,2
+63041459,25745752,4
+wanghongwey,25745752,3
+mr.slow,25745752,2
+84944079,25745752,3
+56723489,25745752,5
+formosante,25745752,1
+62793517,25745752,2
+shuizhixing,25745752,4
+122048990,25745752,3
+linxhe,25745752,-1
+MaymySumOn,25745752,1
+102283798,25745752,3
+70055114,25745752,3
+xieyixi,25745752,3
+61813726,25745752,2
+bilibilibili,25745752,1
+Lewxorn,25745752,3
+53867313,25745752,3
+arenagreen,25745752,2
+88071858,25745752,1
+115223509,25745752,2
+3936192,25745752,3
+laurel-nanr,25745752,3
+DearestSummer,25745752,3
+55619623,25745752,3
+44548602,25745752,3
+38986432,25745752,3
+vivia7n,25745752,3
+91036297,25745752,1
+120567214,25745752,4
+luohen1987,25745752,5
+53155339,25745752,3
+32408872,25745752,4
+122451528,25745752,3
+47786775,25745752,3
+zlaye,25745752,4
+68771576,25745752,4
+83244806,25745752,2
+52313219,25745752,3
+57467616,25745752,3
+chenvii,25745752,5
+yoyo...fish,25745752,2
+83898984,25745752,1
+58630530,25745752,3
+36184244,25745752,3
+vhenshan,25745752,3
+pkt1993,25745752,4
+51245343,25745752,2
+porvinci,25745752,3
+zmm02,25745752,5
+88638997,25745752,3
+55294900,25745752,2
+cmyssssssss,25745752,4
+50364248,25745752,2
+72508629,25745752,4
+65339223,25745752,3
+yzm0727,25745752,3
+61852645,25745752,1
+73261825,25745752,3
+50298020,25745752,4
+84419481,25745752,3
+81573147,25745752,3
+122099416,25745752,3
+35121818,25745752,1
+hyhmq,25745752,2
+3270210,25745752,4
+126658399,25745752,3
+rocketeer98,25745752,4
+57215655,25745752,3
+arota,25745752,4
+genglihui,25745752,5
+continuelazy,25745752,4
+61428160,25745752,2
+lingcandy,25745752,4
+44738448,25745752,2
+44606989,25745752,3
+64205318,25745752,4
+rmj,25745752,4
+62087328,25745752,4
+61898774,25745752,3
+47792903,25745752,3
+83550377,25745752,3
+72698131,25745752,3
+46854543,25745752,4
+61866321,25745752,2
+cl20lc,25745752,3
+56004375,25745752,2
+78719140,25745752,2
+53084795,25745752,2
+qi-zi,25745752,5
+63506986,25745752,1
+Y_Y0907,25745752,2
+48355699,25745752,4
+85119712,25745752,3
+63953631,25745752,1
+fivestrips,25745752,5
+48026427,25745752,4
+ajinian,25745752,3
+68872792,25745752,3
+luoochaoo,25745752,4
+xiongweilin,25745752,3
+61124642,25745752,4
+123123131,25745752,3
+62744470,25745752,3
+Ckellly,25745752,2
+63696363,25745752,4
+febyting,25745752,3
+bjlc,25745752,4
+47853230,25745752,3
+CSMiss,25745752,3
+davidttmam,25745752,3
+davidttmam,25745752,3
+50092483,25745752,3
+124097844,25745752,1
+yjybibby,25745752,4
+121622730,25745752,3
+94151786,25745752,3
+49258355,25745752,2
+47707866,25745752,2
+2364223,25745752,3
+122210880,25745752,2
+60874704,25745752,2
+103545145,25745752,3
+49412559,25745752,3
+93818986,25745752,5
+81711510,25745752,3
+Apache1993,25745752,3
+83550216,25745752,2
+54189498,25745752,3
+44460949,25745752,1
+sweety124,25745752,2
+56675868,25745752,-1
+MAT1412418,25745752,2
+80398365,25745752,2
+62404317,25745752,3
+121434858,25745752,2
+114499367,25745752,-1
+aishanmei,25745752,4
+yischumi,25745752,3
+evooone,25745752,2
+40366146,25745752,1
+x-13,25745752,-1
+14491147,25745752,-1
+3606261,25745752,2
+45467820,25745752,-1
+menkoumahu,25745752,4
+63687502,25745752,5
+mn131518,25745752,1
+44660108,25745752,1
+aizhengyang,25745752,2
+82980188,25745752,2
+xuehaotian,25745752,3
+47587289,25745752,5
+50553074,25745752,1
+72020538,25745752,2
+ruo1996,25745752,1
+ansonwangr,25745752,2
+39399066,25745752,4
+xywljc,25745752,2
+69039939,25745752,4
+87381547,25745752,3
+66765368,25745752,1
+nuannuanmo,25745752,2
+52121306,25745752,4
+102184386,25745752,1
+55296144,25745752,1
+69125337,25745752,1
+Benny_Fu,25745752,4
+62081900,25745752,3
+myrollingstar,25745752,2
+71516012,25745752,3
+71833847,25745752,1
+63245856,25745752,1
+69690458,25745752,1
+55539336,25745752,1
+imvesper,25745752,3
+82507807,25745752,2
+cusdaydream,25745752,3
+68962689,25745752,1
+50306536,25745752,4
+108247778,25745752,1
+73910323,25745752,3
+126685684,25745752,3
+44626452,25745752,2
+39824877,25745752,3
+mouldersoul,25745752,3
+zhuqingdaren,25745752,2
+70821619,25745752,1
+83152204,25745752,4
+muxueqz,25745752,2
+huerwei,25745752,5
+49268784,25745752,3
+shuchang521,25745752,5
+mengqishuo,25745752,4
+cat_tracy,25745752,-1
+lareida,25745752,3
+saintage,25745752,4
+37424688,25745752,1
+RIO-Teamradio,25745752,-1
+50331335,25745752,4
+54856887,25745752,2
+3811273,25745752,3
+57433106,25745752,5
+48578756,25745752,3
+43536991,25745752,5
+lola721,25745752,3
+cultaste,25745752,3
+Ymmy,25745752,3
+47010023,25745752,1
+52725191,25745752,1
+82814595,25745752,3
+51277299,25745752,3
+Effie-more,25745752,2
+iamwinni,25745752,1
+ilkay,25745752,3
+qqmx,25745752,5
+6591920,25745752,3
+carrie_lo,25745752,2
+63191904,25745752,3
+Linkinport,25745752,2
+60788989,25745752,3
+65384640,25745752,3
+103024790,25745752,1
+63528977,25745752,3
+apple_jody,25745752,2
+122185327,25745752,4
+90611286,25745752,4
+89716765,25745752,5
+59233639,25745752,3
+122392735,25745752,1
+xinxinxia,25745752,5
+84965549,25745752,2
+42137156,25745752,3
+changefiona,25745752,3
+79862222,25745752,1
+100716300,25745752,1
+94004363,25745752,1
+52454174,25745752,4
+81897337,25745752,2
+53856338,25745752,2
+ccone,25745752,3
+49581171,25745752,2
+unknown-place,25745752,3
+120215971,25745752,4
+54148468,25745752,1
+53176363,25745752,2
+62065685,25745752,4
+50702384,25745752,2
+summer-v,25745752,3
+83993012,25745752,3
+119321352,25745752,1
+miracleu,25745752,1
+dani0411,25745752,-1
+63401608,25745752,4
+nigelallan,25745752,4
+hlsdy,25745752,5
+enchantress,25745752,1
+pocalumos,25745752,2
+68489038,25745752,4
+wangxhtt,25745752,3
+49088246,25745752,1
+66159896,25745752,1
+yys456789,25745752,3
+2178447,25745752,1
+43328284,25745752,2
+3128240,25745752,-1
+42584319,25745752,3
+60537174,25745752,2
+ChicWeirdo,25745752,2
+47101435,25745752,-1
+58085308,25745752,4
+AndreBFSU,25745752,2
+mycelia,25745752,3
+ngels,25745752,4
+yidan816,25745752,3
+71938369,25745752,1
+95598191,25745752,4
+52287768,25745752,1
+58300381,25745752,3
+50574721,25745752,1
+cambrianstar,25745752,5
+74762630,25745752,3
+63531655,25745752,3
+80266613,25745752,2
+renling,25745752,1
+42400179,25745752,1
+64768558,25745752,1
+AnitaXSteps,25745752,4
+64166028,25745752,2
+4284000,25745752,4
+68015443,25745752,2
+68015443,25745752,2
+78270325,25745752,1
+58001500,25745752,2
+56191698,25745752,4
+123469699,25745752,2
+3617677,25745752,2
+binglanxier,25745752,1
+didadidi,25745752,2
+maudluthan,25745752,1
+88327391,25745752,2
+52866645,25745752,2
+66579976,25745752,4
+50579879,25745752,2
+36472531,25745752,4
+zhuzi_33,25745752,1
+2797260,25745752,4
+123554879,25745752,3
+49135437,25745752,3
+zhawu,25745752,1
+84203379,25745752,3
+37260591,25745752,1
+102723218,25745752,1
+80370344,25745752,3
+89308667,25745752,4
+58343189,25745752,1
+64144009,25745752,2
+52083386,25745752,2
+52835573,25745752,3
+xuhongruc,25745752,3
+58963514,25745752,5
+59961169,25745752,3
+firemeng,25745752,3
+ceqt_pulpfictio,25745752,1
+43377368,25745752,3
+utasty,25745752,3
+44100704,25745752,1
+hillyang,25745752,3
+47233211,25745752,3
+3869053,25745752,2
+4016863,25745752,2
+4016863,25745752,2
+yuyangaiyang,25745752,2
+oathkeeper,25745752,1
+supersaiku,25745752,3
+Phoebe89,25745752,2
+59141735,25745752,2
+67077607,25745752,1
+102930164,25745752,3
+23957168,25745752,4
+104575311,25745752,2
+65521542,25745752,2
+49231708,25745752,2
+wendaoyoung,25745752,3
+rudaoshi,25745752,3
+44040923,25745752,3
+caozhenzi,25745752,5
+4831469,25745752,3
+8729690,25745752,-1
+56009472,25745752,4
+YHRui0831,25745752,5
+Gayfriend10ve,25745752,5
+roadfinder,25745752,3
+95148578,25745752,3
+yamin1004,25745752,3
+hll00,25745752,1
+81985882,25745752,2
+39677608,25745752,2
+46441162,25745752,1
+67811189,25745752,3
+65037565,25745752,2
+30354186,25745752,3
+kakaloveu,25745752,3
+46566856,25745752,5
+46642782,25745752,2
+51105006,25745752,3
+meow-3-,25745752,-1
+ayii,25745752,2
+93150644,25745752,3
+61184354,25745752,1
+suyinyu,25745752,3
+87954982,25745752,2
+forever_girl,25745752,1
+amputee_house,25745752,3
+68874282,25745752,2
+jadeXZY,25745752,3
+TakeItEasyTed,25745752,3
+yuyuyuyuyuxp,25745752,2
+38222446,25745752,1
+67678482,25745752,1
+120373913,25745752,4
+76824704,25745752,3
+41944635,25745752,4
+3761305,25745752,3
+70017565,25745752,3
+105146353,25745752,4
+kid177,25745752,3
+51229534,25745752,2
+extremist,25745752,3
+84024492,25745752,5
+clareleung,25745752,3
+67942569,25745752,3
+flaovr,25745752,2
+wsz910919,25745752,2
+59468829,25745752,5
+han_sy,25745752,4
+76649445,25745752,3
+snail04831,25745752,3
+lynn1123,25745752,4
+1762190,25745752,2
+56008705,25745752,5
+Aureliano-1016,25745752,3
+60461731,25745752,1
+huangdx,25745752,3
+tree_poppy,25745752,3
+popopo,25745752,2
+59569708,25745752,3
+45105333,25745752,5
+zyq1029q12,25745752,3
+monstersimon,25745752,3
+87536553,25745752,3
+princeomi,25745752,4
+Lily.7,25745752,4
+82075201,25745752,1
+74449417,25745752,3
+duanduankong,25745752,3
+120226411,25745752,-1
+46673851,25745752,2
+55632749,25745752,3
+orlandoaa,25745752,5
+chongguichenji,25745752,1
+fourteen14_14,25745752,3
+tweety778,25745752,2
+33245540,25745752,1
+59310037,25745752,2
+4057814,25745752,4
+46064508,25745752,1
+likemie,25745752,4
+59198180,25745752,1
+arale180,25745752,4
+50576351,25745752,2
+chenlinglingha,25745752,3
+wutongsuliang,25745752,2
+sweetlalalove,25745752,2
+45155872,25745752,2
+3557552,25745752,3
+126474447,25745752,2
+63320068,25745752,2
+51423325,25745752,-1
+51054227,25745752,3
+113327866,25745752,3
+54588486,25745752,2
+92271265,25745752,3
+kara_yusoo,25745752,3
+35963836,25745752,3
+54100046,25745752,1
+81525042,25745752,2
+reginachi,25745752,3
+4811269,25745752,2
+49195863,25745752,3
+101625344,25745752,2
+46879309,25745752,4
+dandankittybaby,25745752,2
+77419257,25745752,3
+62903092,25745752,2
+84599460,25745752,4
+100540737,25745752,3
+68804843,25745752,1
+60306425,25745752,3
+53204374,25745752,3
+52293862,25745752,3
+51915169,25745752,3
+75721226,25745752,3
+38248181,25745752,2
+62180561,25745752,3
+53741615,25745752,3
+shero0305,25745752,3
+76586086,25745752,2
+3989868,25745752,1
+doublefan,25745752,3
+4522647,25745752,2
+wusiyi,25745752,2
+2277888,25745752,2
+lucine_chen,25745752,3
+52211909,25745752,2
+53868142,25745752,3
+softgirl,25745752,3
+62084147,25745752,1
+renee0129,25745752,2
+yuriko233,25745752,3
+jasonccnu,25745752,4
+50566408,25745752,4
+71203011,25745752,-1
+62053077,25745752,3
+94248044,25745752,3
+1056656,25745752,3
+51705570,25745752,2
+tianyingguniang,25745752,2
+77785733,25745752,1
+20657820,25745752,1
+52275579,25745752,4
+edonsuffinos,25745752,2
+61050621,25745752,1
+59025977,25745752,3
+121340498,25745752,3
+92944875,25745752,3
+3578321,25745752,3
+67438001,25745752,1
+84077935,25745752,1
+93399266,25745752,-1
+RyanWY,25745752,1
+64671678,25745752,3
+31867371,25745752,2
+Melody19871024,25745752,2
+65697796,25745752,2
+66085138,25745752,2
+49339917,25745752,1
+43222334,25745752,2
+lionxiyouming,25745752,2
+33196085,25745752,1
+67250079,25745752,1
+getbuzylinving,25745752,5
+elisha_gai,25745752,3
+46499786,25745752,3
+bbigpanda,25745752,2
+2181108,25745752,1
+1875408,25745752,-1
+45255401,25745752,3
+yiseleven,25745752,3
+75667260,25745752,2
+83248600,25745752,3
+20924678,25745752,2
+65692300,25745752,3
+bozzi,25745752,1
+liim87,25745752,2
+65077858,25745752,2
+48909969,25745752,3
+115474584,25745752,1
+lynne.l,25745752,-1
+JanekissQSN,25745752,1
+67775640,25745752,1
+yimoyoulan916,25745752,3
+isayan,25745752,3
+Vol.de.nuit,25745752,3
+63589265,25745752,2
+kisscululala,25745752,1
+78169762,25745752,3
+34678139,25745752,5
+53238243,25745752,1
+64729752,25745752,3
+qixuan0222,25745752,3
+72946203,25745752,2
+49552465,25745752,2
+1465957,25745752,1
+39646775,25745752,4
+57286234,25745752,5
+lijianxiuer,25745752,1
+lotusworld,25745752,3
+66017098,25745752,3
+xiaoan1314,25745752,3
+50719255,25745752,4
+97331648,25745752,4
+58904276,25745752,2
+89925975,25745752,4
+laudee,25745752,4
+y_y316,25745752,1
+68620991,25745752,3
+79922578,25745752,1
+49976823,25745752,3
+kawazoeyang,25745752,3
+83246005,25745752,3
+62924095,25745752,-1
+96331633,25745752,1
+papayayaya,25745752,5
+60088640,25745752,2
+60140602,25745752,3
+77634895,25745752,2
+115874709,25745752,3
+47709338,25745752,2
+7223165,25745752,2
+62486948,25745752,4
+Canvas_X,25745752,2
+57969665,25745752,3
+68980281,25745752,1
+120052917,25745752,4
+3466745,25745752,4
+100682612,25745752,2
+elephant0823,25745752,2
+shuimuniuniu,25745752,1
+fantastic7,25745752,3
+1355300,25745752,4
+gogolaviz,25745752,3
+54632275,25745752,3
+49628023,25745752,2
+52597198,25745752,2
+65358436,25745752,4
+75192516,25745752,3
+125698191,25745752,2
+huadekai,25745752,3
+57880300,25745752,1
+108893834,25745752,3
+JerryGin,25745752,2
+cyl941028,25745752,-1
+60392839,25745752,2
+zl19960120,25745752,3
+missmoony,25745752,2
+65077960,25745752,1
+46749955,25745752,2
+yanxianxian,25745752,3
+52598210,25745752,2
+46760774,25745752,3
+netweng,25745752,1
+74318370,25745752,1
+Iayours,25745752,4
+59251026,25745752,2
+60312308,25745752,5
+chewlife,25745752,-1
+53257768,25745752,1
+126731826,25745752,1
+75807285,25745752,2
+102024318,25745752,5
+123065625,25745752,3
+56617946,25745752,4
+99912233,25745752,3
+79912597,25745752,2
+52365304,25745752,4
+LynetteDong,25745752,2
+51515100,25745752,2
+57693251,25745752,3
+103297189,25745752,1
+68631910,25745752,2
+50373897,25745752,2
+50732750,25745752,2
+57278963,25745752,2
+87978530,25745752,3
+47876529,25745752,2
+61790133,25745752,3
+76749304,25745752,1
+53644977,25745752,2
+72979074,25745752,2
+49993674,25745752,-1
+mrstarry,25745752,2
+yrvincy0622yang,25745752,3
+57534621,25745752,3
+52918154,25745752,1
+73101232,25745752,4
+alexw,25745752,2
+54538975,25745752,3
+43442263,25745752,3
+43228384,25745752,3
+63990792,25745752,1
+52235575,25745752,4
+44173062,25745752,5
+zhangzhenrong,25745752,4
+51126355,25745752,5
+purestar,25745752,3
+xxxiyybabe,25745752,3
+51769966,25745752,3
+2233142,25745752,3
+67944529,25745752,3
+nannan16,25745752,3
+126723672,25745752,2
+59553409,25745752,1
+22525155,25745752,2
+69188961,25745752,2
+1311897,25745752,4
+51951428,25745752,3
+99784458,25745752,1
+kissclover,25745752,2
+liuxunsimida,25745752,1
+77904577,25745752,2
+60165688,25745752,2
+53075716,25745752,1
+87069723,25745752,3
+acupoftequila,25745752,2
+ciel2jia,25745752,3
+60786536,25745752,1
+4165611,25745752,5
+a3615,25745752,1
+88288973,25745752,-1
+jiaop,25745752,2
+librasun13,25745752,3
+68480782,25745752,1
+49171184,25745752,2
+37591941,25745752,2
+52325131,25745752,3
+1795919,25745752,1
+3706398,25745752,2
+4888016,25745752,5
+memechayedandan,25745752,2
+104579666,25745752,3
+76031040,25745752,3
+maggiehu0611,25745752,3
+62635960,25745752,2
+liiiiiiiii9,25745752,3
+isobel0723,25745752,4
+74684254,25745752,1
+3254418,25745752,2
+3834270,25745752,5
+103016546,25745752,3
+61295594,25745752,2
+61295594,25745752,2
+119019066,25745752,1
+64758592,25745752,3
+dashan1928,25745752,2
+SYF_923,25745752,1
+2213454,25745752,2
+119989539,25745752,2
+liufangni,25745752,2
+84930768,25745752,2
+116304949,25745752,5
+52649059,25745752,1
+120803939,25745752,5
+100460859,25745752,2
+106159855,25745752,3
+126389489,25745752,1
+38513029,25745752,1
+53706093,25745752,3
+hongwehuang,25745752,1
+77883181,25745752,2
+Firm_Julien,25745752,5
+qingyizheng,25745752,4
+75184056,25745752,1
+59058717,25745752,3
+97353222,25745752,5
+hellozll,25745752,4
+hunhunsui,25745752,4
+56867346,25745752,2
+kicker10,25745752,3
+121324584,25745752,5
+andmirror,25745752,4
+malu,25745752,2
+61486728,25745752,1
+leachboy,25745752,5
+120747337,25745752,2
+55970866,25745752,1
+polypeptide,25745752,2
+126708797,25745752,2
+50188089,25745752,4
+xttian,25745752,3
+37694449,25745752,2
+35380385,25745752,4
+121082637,25745752,4
+67973100,25745752,5
+59421721,25745752,3
+4474664,25745752,3
+47514207,25745752,5
+lichuman,25745752,2
+44908756,25745752,1
+83082309,25745752,1
+63381376,25745752,2
+designpath,25745752,2
+62023471,25745752,3
+60746887,25745752,2
+67987874,25745752,4
+124559600,25745752,1
+BlackForever,25745752,5
+62030418,25745752,2
+62347727,25745752,3
+waya,25745752,2
+78473653,25745752,3
+Iamwanghaha,25745752,3
+pandaleilei,25745752,3
+shaoyahu,25745752,3
+botaowei,25745752,3
+3547185,25745752,3
+50600162,25745752,2
+gloria1206,25745752,2
+yinpark,25745752,3
+63679165,25745752,3
+63434436,25745752,2
+mygegeburu1111,25745752,2
+particles,25745752,1
+55333709,25745752,1
+74835284,25745752,3
+55420489,25745752,3
+64855352,25745752,3
+mikelpc,25745752,1
+luobeini1996,25745752,3
+sincerity615,25745752,3
+97188131,25745752,3
+leftliu,25745752,1
+jeanl,25745752,1
+59021120,25745752,3
+BIN_CHANG,25745752,1
+48312862,25745752,3
+97489665,25745752,5
+48217900,25745752,2
+43549069,25745752,3
+55477102,25745752,3
+102386704,25745752,4
+44286528,25745752,2
+51361935,25745752,5
+49012195,25745752,-1
+56227323,25745752,5
+42093808,25745752,3
+4255750,25745752,2
+panda_prada,25745752,3
+66641094,25745752,3
+63274089,25745752,1
+28776614,25745752,5
+cutebbluckygirl,25745752,3
+54778838,25745752,5
+57286187,25745752,1
+37376533,25745752,3
+alaray,25745752,4
+sylviasun2011,25745752,1
+aiya12th,25745752,2
+79349907,25745752,2
+83861463,25745752,1
+huayuan619,25745752,3
+92323728,25745752,3
+datongtong,25745752,3
+snakesarah,25745752,1
+tiramisu-1990,25745752,2
+78898515,25745752,4
+54744490,25745752,1
+120913111,25745752,5
+52683154,25745752,-1
+dingdangneko,25745752,2
+kwg18168,25745752,5
+kwg18168,25745752,5
+54885866,25745752,2
+longzhanyun,25745752,3
+cindyhello,25745752,4
+85727973,25745752,3
+92960717,25745752,2
+70687888,25745752,3
+62615176,25745752,2
+61967626,25745752,3
+lifangze,25745752,3
+sydliao,25745752,1
+3851402,25745752,3
+41952166,25745752,-1
+yaweilove0,25745752,3
+49567775,25745752,1
+82095773,25745752,3
+63426980,25745752,4
+64841580,25745752,-1
+53813321,25745752,5
+94563993,25745752,3
+58289345,25745752,1
+68732725,25745752,3
+57894256,25745752,2
+89792510,25745752,1
+52907345,25745752,2
+51282229,25745752,1
+ETSUKO.Z,25745752,-1
+72995695,25745752,1
+4857000,25745752,1
+7704743,25745752,-1
+aprisliver,25745752,4
+40056486,25745752,1
+91872215,25745752,5
+72171780,25745752,5
+47220302,25745752,3
+126650293,25745752,5
+50668588,25745752,2
+37782810,25745752,2
+vermis_sum,25745752,1
+126621481,25745752,3
+57726967,25745752,3
+53797844,25745752,5
+51584292,25745752,2
+raising_dawn,25745752,3
+50637101,25745752,3
+cherry_lyt,25745752,1
+mk0529,25745752,-1
+ilishengyoung,25745752,5
+63776129,25745752,3
+77430587,25745752,3
+lin0523,25745752,2
+violalululu,25745752,2
+67481661,25745752,4
+61199839,25745752,2
+ritaqu1118,25745752,3
+fanshuren,25745752,3
+53060922,25745752,2
+60662065,25745752,3
+25956979,25745752,5
+53102956,25745752,5
+35938900,25745752,4
+48170987,25745752,5
+88588672,25745752,3
+51887604,25745752,4
+68742620,25745752,2
+65160778,25745752,2
+2404315,25745752,2
+47366540,25745752,2
+zhaoshuhan,25745752,5
+vista1990,25745752,3
+drug-L,25745752,3
+freyaml,25745752,2
+45008056,25745752,1
+46461287,25745752,3
+108030138,25745752,4
+43897178,25745752,3
+Rita_Amber,25745752,1
+1530964,25745752,1
+kfsj,25745752,2
+80752018,25745752,2
+25174642,25745752,4
+gardeniasky,25745752,3
+64994053,25745752,2
+Erishia,25745752,1
+69323349,25745752,3
+62708720,25745752,1
+22158654,25745752,3
+65911054,25745752,2
+bear6,25745752,4
+50558551,25745752,2
+qzl,25745752,4
+4828233,25745752,2
+52775910,25745752,4
+57851144,25745752,2
+121544567,25745752,2
+Yanyuqing,25745752,3
+nighteye1123,25745752,1
+surmoon,25745752,3
+57181364,25745752,2
+92999358,25745752,4
+1713057,25745752,-1
+44691440,25745752,3
+76038438,25745752,2
+sizuka3n,25745752,3
+64254102,25745752,2
+123036590,25745752,2
+DQRXY,25745752,4
+momola,25745752,4
+63388007,25745752,1
+48086861,25745752,2
+50742762,25745752,2
+49749063,25745752,4
+Deirdre95,25745752,2
+65232710,25745752,2
+45179970,25745752,3
+yeungyi,25745752,1
+70687695,25745752,5
+zqyesther,25745752,3
+time2night,25745752,2
+baizi886,25745752,3
+owenwoo,25745752,2
+121440685,25745752,1
+sunjinrui,25745752,2
+KennySiliver,25745752,3
+47817686,25745752,2
+gerralonso,25745752,1
+3487458,25745752,4
+xiaomujunjun,25745752,2
+46216940,25745752,4
+YYDEE,25745752,1
+55444348,25745752,2
+98251559,25745752,4
+24988098,25745752,2
+whitecliff,25745752,4
+88485379,25745752,2
+christinahua,25745752,3
+71058748,25745752,4
+105905778,25745752,1
+longzuxin,25745752,4
+71325468,25745752,1
+xinlang,25745752,3
+82881734,25745752,2
+1206373,25745752,4
+treywea,25745752,2
+burettes,25745752,3
+xtrats,25745752,3
+63351241,25745752,3
+80348100,25745752,2
+3537995,25745752,2
+PrinceAlbert,25745752,3
+88051302,25745752,3
+63998451,25745752,4
+79346510,25745752,1
+yuzi329,25745752,3
+56922790,25745752,1
+103969062,25745752,1
+61588586,25745752,2
+14341331,25745752,3
+45605841,25745752,5
+64335483,25745752,3
+52724535,25745752,3
+watermemory,25745752,3
+93138245,25745752,1
+49186665,25745752,2
+missingx,25745752,2
+qinaihui,25745752,4
+64819308,25745752,4
+saner1126,25745752,2
+74230231,25745752,3
+57057682,25745752,3
+luluyunxiao,25745752,4
+4140462,25745752,1
+53185145,25745752,3
+silencehuang,25745752,4
+yqw,25745752,3
+69849400,25745752,2
+126671524,25745752,3
+68549226,25745752,2
+Fishisme,25745752,-1
+74608799,25745752,2
+77151655,25745752,2
+102854854,25745752,2
+green_rock,25745752,2
+55796244,25745752,1
+YYQ970509,25745752,2
+53910261,25745752,3
+67784702,25745752,5
+lanmour,25745752,4
+DuKeArNoLd,25745752,-1
+aiyuo,25745752,3
+bing_07,25745752,3
+scarecrowlv5,25745752,3
+64320233,25745752,3
+WANDORA,25745752,1
+64859489,25745752,1
+83070447,25745752,3
+122334124,25745752,1
+64684628,25745752,5
+47862106,25745752,3
+68350909,25745752,3
+51048563,25745752,3
+90201226,25745752,3
+58293938,25745752,3
+zqsnail121,25745752,4
+schwarz5,25745752,1
+67703548,25745752,1
+104099681,25745752,4
+98728218,25745752,3
+lichenbo,25745752,2
+119293185,25745752,3
+62738411,25745752,4
+46223615,25745752,2
+97470773,25745752,3
+4585995,25745752,3
+82934816,25745752,2
+125650125,25745752,5
+61602134,25745752,1
+53432720,25745752,3
+coco921,25745752,4
+wanran8,25745752,2
+64921062,25745752,1
+46735351,25745752,5
+mumuximilik,25745752,2
+shaine,25745752,2
+43586326,25745752,1
+48533468,25745752,3
+TTEminem,25745752,3
+121583885,25745752,2
+42653268,25745752,4
+49782852,25745752,3
+iamxx,25745752,3
+stephanie225,25745752,1
+linchencun,25745752,5
+zelowawa,25745752,3
+116866912,25745752,2
+57857957,25745752,2
+67864163,25745752,3
+43769453,25745752,3
+49386960,25745752,2
+verayan,25745752,4
+41374892,25745752,4
+4914375,25745752,4
+1882204,25745752,2
+Seajor74,25745752,1
+vicki-lau,25745752,5
+64995430,25745752,2
+ladymashroom,25745752,1
+xintongx,25745752,4
+68712202,25745752,2
+coco0609,25745752,4
+57501453,25745752,1
+64958113,25745752,3
+joygirlying,25745752,1
+neotree,25745752,4
+124898500,25745752,3
+69152267,25745752,2
+sybilyuan,25745752,3
+49246032,25745752,3
+119013202,25745752,4
+78604896,25745752,2
+66234722,25745752,4
+nianyis,25745752,3
+2915371,25745752,4
+35745537,25745752,1
+126401152,25745752,1
+53045494,25745752,3
+3566634,25745752,2
+boohooer,25745752,2
+120744791,25745752,5
+75439501,25745752,-1
+60437344,25745752,2
+2882324,25745752,2
+weirdoToC,25745752,3
+sweetjune,25745752,1
+sheer415,25745752,2
+45324453,25745752,3
+51198327,25745752,1
+yujiuwei,25745752,3
+75914022,25745752,2
+georgie,25745752,2
+60130169,25745752,3
+58364140,25745752,1
+4361916,25745752,2
+42573780,25745752,2
+74529248,25745752,3
+roy_aladdin,25745752,4
+43343540,25745752,3
+4498928,25745752,3
+yokoxyy0yrvs,25745752,3
+82319086,25745752,3
+love-99,25745752,3
+56981599,25745752,2
+46931652,25745752,1
+guoheng000,25745752,2
+83767002,25745752,1
+62676355,25745752,1
+crowdedstars,25745752,3
+51983639,25745752,-1
+48238044,25745752,1
+chuleiwu,25745752,3
+97645479,25745752,3
+crystallovess,25745752,4
+45539899,25745752,2
+124629682,25745752,2
+philasophie,25745752,2
+49465683,25745752,4
+45404097,25745752,4
+4491930,25745752,1
+florahua,25745752,2
+tommypotato,25745752,2
+82545481,25745752,1
+gjhlikemusic,25745752,2
+63686313,25745752,3
+imqxq,25745752,-1
+mrchildish,25745752,1
+59384775,25745752,1
+119472529,25745752,3
+phoof,25745752,3
+125305853,25745752,4
+49435214,25745752,3
+101746783,25745752,1
+65695073,25745752,3
+62093944,25745752,2
+48335260,25745752,3
+75855286,25745752,-1
+bianbianx,25745752,3
+1297826,25745752,1
+2877945,25745752,4
+44369382,25745752,2
+1539383,25745752,4
+maricel,25745752,2
+62601567,25745752,2
+su_zijun,25745752,4
+shaoworld,25745752,3
+32566267,25745752,3
+40721243,25745752,2
+68133278,25745752,2
+56492985,25745752,2
+83415261,25745752,2
+50073434,25745752,3
+xiaotwo,25745752,3
+80346808,25745752,4
+48901454,25745752,1
+48653408,25745752,4
+56571222,25745752,3
+66048384,25745752,5
+jinianrusheng,25745752,1
+csmr,25745752,4
+raibei,25745752,2
+119993698,25745752,3
+77046288,25745752,2
+iae,25745752,4
+amaoxiansheng,25745752,3
+32670743,25745752,4
+77128244,25745752,1
+taikityu,25745752,2
+65939641,25745752,3
+50519888,25745752,3
+goodluckstella,25745752,5
+51061132,25745752,1
+70611380,25745752,2
+120956047,25745752,2
+Ms_Luka,25745752,2
+yiasong,25745752,2
+kuruto,25745752,2
+63976517,25745752,2
+102331795,25745752,3
+70475549,25745752,2
+29905943,25745752,2
+2794369,25745752,2
+tianyajie,25745752,1
+120002421,25745752,1
+119297823,25745752,2
+43627329,25745752,4
+3180760,25745752,3
+winey717267,25745752,5
+zhangxiaogou77,25745752,3
+35087113,25745752,3
+77176944,25745752,1
+69940581,25745752,-1
+39696918,25745752,3
+126572599,25745752,3
+81205305,25745752,4
+61131692,25745752,1
+68865370,25745752,1
+119340847,25745752,1
+cutehome,25745752,-1
+34155818,25745752,1
+Yuenyuan,25745752,3
+61403722,25745752,3
+virginiaboat,25745752,-1
+83146288,25745752,-1
+42630408,25745752,1
+Watermonster,25745752,2
+43188757,25745752,5
+64540880,25745752,3
+55374994,25745752,3
+53971929,25745752,1
+56685137,25745752,1
+qianxing,25745752,1
+qmcream,25745752,1
+17839542,25745752,1
+melody86215,25745752,-1
+92119764,25745752,3
+Song1183,25745752,4
+goyankeesgo,25745752,4
+wen1011,25745752,3
+53609213,25745752,3
+52353213,25745752,2
+61829100,25745752,3
+54083638,25745752,3
+sphynx,25745752,1
+Patrick_Kang,25745752,4
+55985386,25745752,4
+52148269,25745752,1
+yeweijia,25745752,4
+69015164,25745752,3
+41833499,25745752,3
+echosanmao,25745752,3
+59024604,25745752,4
+sslcfss,25745752,2
+41327989,25745752,3
+u-sister,25745752,-1
+59979647,25745752,2
+89662844,25745752,1
+53854187,25745752,2
+49065178,25745752,2
+3800028,25745752,2
+wuxiaominghan,25745752,3
+89906593,25745752,3
+65592563,25745752,3
+sunnywo,25745752,-1
+chx93,25745752,3
+72385755,25745752,3
+61440451,25745752,5
+80095710,25745752,2
+lovezh19930223,25745752,4
+50276433,25745752,2
+MEITONG,25745752,3
+dioscuri0602,25745752,2
+dioscuri0602,25745752,2
+kuma1020,25745752,2
+vvehouse,25745752,2
+38803170,25745752,3
+66814088,25745752,1
+59677538,25745752,2
+38785285,25745752,3
+ILY_XX,25745752,2
+oldragontomb,25745752,2
+duckdan,25745752,3
+48523760,25745752,2
+70835664,25745752,2
+63170740,25745752,1
+41317902,25745752,3
+xuove,25745752,1
+78626733,25745752,3
+44374753,25745752,2
+2030403,25745752,3
+seventeenF,25745752,1
+3388108,25745752,4
+lianxin-,25745752,3
+65468535,25745752,3
+63714796,25745752,1
+61738888,25745752,4
+efeimaomao,25745752,3
+ashengr,25745752,3
+45383601,25745752,2
+125923003,25745752,3
+77084938,25745752,5
+vivienp,25745752,4
+52679814,25745752,1
+JC_Panda,25745752,3
+lucifermi,25745752,3
+123205267,25745752,5
+sonfeo,25745752,3
+103355489,25745752,3
+51114715,25745752,4
+40617377,25745752,4
+44079904,25745752,1
+linlyn,25745752,4
+29024580,25745752,3
+greengreendeer,25745752,1
+63977456,25745752,3
+57717534,25745752,4
+greenduck,25745752,3
+qiaoyayafly,25745752,3
+78314737,25745752,2
+58132057,25745752,-1
+50629197,25745752,4
+72434559,25745752,-1
+buddhajump,25745752,3
+samleq,25745752,2
+52762831,25745752,2
+54543639,25745752,2
+49422565,25745752,3
+52318221,25745752,3
+4005034,25745752,4
+alice0124,25745752,-1
+49241776,25745752,-1
+60760442,25745752,4
+xuningyu,25745752,3
+43815351,25745752,3
+viola210,25745752,4
+72885322,25745752,3
+83989454,25745752,5
+81592087,25745752,1
+Viannie_CXY,25745752,3
+103570822,25745752,2
+50017356,25745752,2
+29640209,25745752,3
+lrq92livecn,25745752,4
+irislxxx,25745752,1
+80978535,25745752,4
+74771823,25745752,3
+shuixin7,25745752,4
+57747110,25745752,4
+jiliuyinlai,25745752,2
+65137697,25745752,3
+75375560,25745752,3
+63354598,25745752,3
+26044083,25745752,3
+xoxoxiaoxiaoai,25745752,2
+47912507,25745752,3
+Ray_u,25745752,2
+amoker,25745752,3
+31873785,25745752,5
+fantasy727,25745752,4
+suqianc,25745752,3
+43595652,25745752,2
+shuibeixjr,25745752,3
+29904054,25745752,2
+89815307,25745752,1
+31787957,25745752,3
+Floratme,25745752,2
+20327170,25745752,2
+nuannuan827,25745752,3
+49710379,25745752,2
+Saggezza,25745752,4
+Rockristy,25745752,4
+Leo-Andy,25745752,4
+84675514,25745752,4
+sleepbaby,25745752,4
+58339654,25745752,4
+3553586,25745752,4
+tootoo06,25745752,-1
+lovehily,25745752,2
+51000520,25745752,4
+canvasfan,25745752,3
+34737598,25745752,4
+54958824,25745752,3
+51195956,25745752,2
+3573467,25745752,1
+31092225,25745752,4
+3661228,25745752,2
+60593657,25745752,-1
+Zmeters,25745752,4
+keh1124,25745752,2
+72661721,25745752,2
+24787645,25745752,3
+74096448,25745752,4
+74096448,25745752,4
+52718430,25745752,-1
+100445422,25745752,3
+rangxiao,25745752,-1
+80172019,25745752,1
+58068856,25745752,3
+62852145,25745752,3
+54935675,25745752,-1
+56145956,25745752,5
+2973165,25745752,2
+59562131,25745752,4
+Son47,25745752,3
+34898803,25745752,3
+49583745,25745752,4
+49168857,25745752,2
+57048842,25745752,1
+surewen,25745752,1
+32645204,25745752,3
+tm_lover,25745752,2
+Kimshuaibing,25745752,2
+Plaka,25745752,2
+67163006,25745752,4
+63275020,25745752,1
+49587231,25745752,4
+82258467,25745752,3
+2149977,25745752,4
+72035614,25745752,-1
+coin1115,25745752,3
+Jennie_ding,25745752,2
+bluefish123,25745752,4
+120287477,25745752,1
+applelover,25745752,4
+4007831,25745752,1
+4427457,25745752,3
+forever4me,25745752,5
+queensmary,25745752,3
+2657344,25745752,4
+46370564,25745752,3
+heyjjzlyoops,25745752,3
+51828374,25745752,2
+ask4more,25745752,-1
+67897858,25745752,3
+4464843,25745752,5
+vampirelily,25745752,4
+3351959,25745752,3
+81160704,25745752,4
+3305372,25745752,2
+wishknow,25745752,4
+67916161,25745752,3
+47603257,25745752,2
+Candiceme,25745752,3
+66271816,25745752,1
+Simplelove_,25745752,1
+70316842,25745752,3
+demian2013,25745752,2
+yd9110,25745752,3
+80227581,25745752,4
+leaf615,25745752,3
+liza_,25745752,3
+90127295,25745752,3
+Gita.,25745752,-1
+69224150,25745752,3
+rosemarry1212,25745752,3
+tiamat,25745752,3
+1450381,25745752,3
+6615487,25745752,4
+yelanlan,25745752,4
+syanns,25745752,4
+54831633,25745752,4
+score19,25745752,4
+60263723,25745752,3
+4411646,25745752,1
+6955816,25745752,1
+chajumo,25745752,2
+49965099,25745752,1
+amandaccforever,25745752,3
+50660338,25745752,3
+Ecphronia,25745752,3
+xiaol123456,25745752,4
+51776299,25745752,1
+51776299,25745752,1
+79157709,25745752,1
+75850688,25745752,5
+126587949,25745752,2
+49589714,25745752,1
+42709350,25745752,2
+58545738,25745752,2
+48763298,25745752,3
+Iris-ta,25745752,1
+83644669,25745752,3
+64466995,25745752,3
+51172840,25745752,3
+alvinyan,25745752,1
+66832758,25745752,3
+53246670,25745752,3
+doknowme,25745752,2
+52013531,25745752,3
+58244101,25745752,2
+edwardtomb,25745752,2
+4508828,25745752,3
+95692649,25745752,3
+plasticme,25745752,5
+14836914,25745752,1
+leevee,25745752,1
+63011221,25745752,1
+58394036,25745752,3
+55793060,25745752,1
+annchuu,25745752,2
+37733981,25745752,1
+sunsraul,25745752,2
+48937311,25745752,3
+55410872,25745752,3
+120765147,25745752,-1
+71188390,25745752,4
+1754621,25745752,2
+elvish,25745752,5
+Stefanie-li,25745752,1
+80133574,25745752,3
+Monomaniavien,25745752,4
+64061395,25745752,5
+60848954,25745752,2
+51766104,25745752,1
+songofmomo,25745752,1
+fwk522,25745752,3
+58983814,25745752,3
+48673809,25745752,3
+dyq930211,25745752,2
+Echo_castle,25745752,1
+69345836,25745752,5
+50840366,25745752,3
+yukito6,25745752,1
+summerose,25745752,4
+79507266,25745752,3
+102432384,25745752,2
+1863792,25745752,1
+49913221,25745752,4
+64454454,25745752,2
+Alberta77,25745752,3
+44306902,25745752,3
+60662074,25745752,2
+4357290,25745752,4
+dilv,25745752,2
+49585616,25745752,3
+lamkarev,25745752,3
+70944686,25745752,3
+mm0220xt,25745752,3
+63409040,25745752,3
+96490951,25745752,3
+52237752,25745752,3
+Carme,25745752,1
+72873688,25745752,1
+butten,25745752,4
+57689997,25745752,5
+Felicityluo,25745752,4
+54823776,25745752,2
+2324353,25745752,3
+62628758,25745752,5
+52459455,25745752,1
+48380421,25745752,2
+102872954,25745752,1
+voodoo_shen,25745752,3
+Lovelife-hh,25745752,3
+83760985,25745752,3
+sandimu,25745752,2
+41545017,25745752,4
+46507893,25745752,2
+122104900,25745752,3
+57811423,25745752,-1
+serendipity1937,25745752,-1
+luvlena,25745752,3
+63034919,25745752,2
+82365180,25745752,5
+yuanyueer,25745752,1
+39911891,25745752,2
+83401257,25745752,1
+43888841,25745752,4
+85083207,25745752,-1
+87903865,25745752,1
+43867451,25745752,3
+Ellllllli,25745752,1
+52853980,25745752,3
+4544301,25745752,3
+50539437,25745752,1
+yourmean,25745752,4
+123404476,25745752,2
+44256631,25745752,2
+34938628,25745752,3
+43229954,25745752,3
+58859760,25745752,3
+45620369,25745752,3
+91066189,25745752,2
+60878801,25745752,4
+58728873,25745752,2
+61601067,25745752,1
+65217615,25745752,2
+57693558,25745752,1
+waterclouder,25745752,1
+124186253,25745752,1
+4672566,25745752,2
+jordantan,25745752,3
+isabel_chen,25745752,2
+48544549,25745752,2
+xiangguniang,25745752,4
+menthalvmint,25745752,4
+penaltyxx,25745752,5
+anotherrose,25745752,5
+92926718,25745752,2
+40489455,25745752,2
+78710175,25745752,3
+liezao,25745752,5
+2547602,25745752,2
+47166701,25745752,2
+71013460,25745752,1
+59425944,25745752,3
+90105219,25745752,4
+3326265,25745752,4
+62003160,25745752,1
+51790573,25745752,-1
+fan_1220,25745752,-1
+116179485,25745752,3
+122675748,25745752,3
+mashwer,25745752,1
+64720052,25745752,2
+124695341,25745752,1
+eyrehuang,25745752,3
+40577920,25745752,4
+60660353,25745752,3
+celia550,25745752,3
+ruilixiurui,25745752,1
+sunnyzone,25745752,1
+lovevision,25745752,3
+64674359,25745752,1
+Yinaly,25745752,3
+11192863,25745752,2
+4217513,25745752,4
+littlelambofgod,25745752,4
+59163051,25745752,4
+CrowNature,25745752,3
+53894863,25745752,1
+85143816,25745752,2
+73106736,25745752,2
+inkhkkk,25745752,2
+52239194,25745752,2
+smartsz,25745752,5
+nicolastong,25745752,3
+59695133,25745752,3
+41592585,25745752,3
+keneyzhao,25745752,4
+31640664,25745752,-1
+49631693,25745752,3
+49119255,25745752,1
+ftjason,25745752,2
+57677790,25745752,4
+zhusiyang,25745752,3
+68918230,25745752,-1
+minormylove,25745752,2
+62318695,25745752,3
+z_wolwitness,25745752,3
+38404027,25745752,4
+4257921,25745752,2
+reckoner,25745752,3
+54783483,25745752,1
+85124225,25745752,4
+Luckymiku,25745752,3
+122966951,25745752,2
+115937929,25745752,3
+sheroselina,25745752,3
+56722636,25745752,2
+76295338,25745752,2
+35228199,25745752,4
+zhangshiyu1024,25745752,3
+suzhaoyang,25745752,3
+43793736,25745752,1
+66101131,25745752,4
+62623482,25745752,1
+Sweet_Lee131,25745752,3
+fairyx,25745752,3
+54551463,25745752,3
+102078175,25745752,4
+82998619,25745752,2
+Clxzx1314,25745752,3
+80307859,25745752,3
+45566980,25745752,2
+38983877,25745752,4
+Marilyn_Manson,25745752,1
+luckysep_4,25745752,3
+jasmine_1992,25745752,3
+46095839,25745752,3
+haixiaoyang,25745752,3
+cantucimtryin,25745752,1
+lalack1987,25745752,-1
+Jechina,25745752,2
+khunfeng,25745752,3
+3500195,25745752,2
+81174351,25745752,2
+KingWong,25745752,1
+1117074,25745752,-1
+sieteliu,25745752,4
+sewyee,25745752,4
+fuloli,25745752,3
+zbbsbjs,25745752,1
+41806618,25745752,4
+ohlinh89,25745752,4
+51699021,25745752,2
+forevereva,25745752,3
+101113512,25745752,1
+51887409,25745752,4
+68456066,25745752,1
+lauriexue,25745752,4
+58160746,25745752,3
+89944772,25745752,3
+2014851,25745752,4
+hyahjm77,25745752,4
+MOKUZJY,25745752,3
+121334018,25745752,2
+71869087,25745752,3
+Mr.tuzi,25745752,2
+s_3,25745752,2
+1489279,25745752,-1
+pussycat100,25745752,3
+shangchunhui,25745752,3
+58367127,25745752,3
+nianai,25745752,-1
+gstone1723,25745752,3
+56452310,25745752,3
+3262787,25745752,3
+sunnybay,25745752,3
+40541584,25745752,-1
+48107309,25745752,4
+jiujiuprincess,25745752,2
+51163329,25745752,3
+3954052,25745752,4
+121521436,25745752,1
+xunaonao,25745752,2
+39095297,25745752,4
+51739161,25745752,3
+94594968,25745752,5
+55460987,25745752,5
+tuzidan,25745752,3
+elena-ye,25745752,1
+3287367,25745752,3
+vivianazone,25745752,-1
+sakura0531,25745752,1
+60398739,25745752,3
+53715739,25745752,3
+sukey91,25745752,5
+3572516,25745752,2
+Lotto59,25745752,1
+67399637,25745752,3
+63765493,25745752,1
+jiaye_8023,25745752,2
+8528137,25745752,1
+56244631,25745752,3
+70676468,25745752,2
+93858057,25745752,3
+binkicee,25745752,4
+45101640,25745752,3
+25129636,25745752,5
+2144848,25745752,3
+79507251,25745752,2
+65240470,25745752,1
+94850929,25745752,4
+42748490,25745752,2
+bltee,25745752,3
+chiu-chiu,25745752,3
+69019042,25745752,5
+45627400,25745752,3
+yijingqi,25745752,5
+64885985,25745752,5
+my_landscape,25745752,4
+55512369,25745752,4
+121103552,25745752,2
+dennie2011,25745752,4
+54741903,25745752,4
+53202810,25745752,1
+120054325,25745752,-1
+silent.mi,25745752,2
+beautifulsmile,25745752,3
+qihaoqiuchang,25745752,3
+Liberty14,25745752,4
+eugenewilber,25745752,1
+100648579,25745752,2
+78254079,25745752,1
+bandage2010,25745752,3
+feelzyl,25745752,4
+zhangqihao,25745752,3
+61160709,25745752,2
+15266202,25745752,-1
+85030702,25745752,1
+49752908,25745752,1
+49687167,25745752,3
+71772028,25745752,4
+60761601,25745752,2
+59573093,25745752,3
+16676768,25745752,5
+37509431,25745752,1
+47858802,25745752,2
+78798714,25745752,4
+49651317,25745752,1
+51087579,25745752,3
+116277859,25745752,3
+64162048,25745752,-1
+3245046,25745752,1
+dearjan,25745752,5
+remilia,25745752,1
+clhan,25745752,3
+3174999,25745752,-1
+1802493,25745752,3
+51010303,25745752,3
+50636469,25745752,1
+52189151,25745752,3
+63766185,25745752,1
+114011906,25745752,2
+64327949,25745752,1
+52539806,25745752,-1
+126510659,25745752,4
+Greenyni,25745752,1
+louix,25745752,3
+hushibookstore,25745752,3
+69808734,25745752,3
+xinxing185,25745752,4
+62822588,25745752,3
+ColinZhang,25745752,2
+64189007,25745752,4
+zhj_810,25745752,3
+2844320,25745752,3
+yoyo5411,25745752,3
+33062238,25745752,4
+coco112,25745752,1
+4018918,25745752,2
+qiandouduo,25745752,5
+58433028,25745752,2
+10971455,25745752,2
+84039736,25745752,3
+daxiaosa,25745752,1
+48949608,25745752,2
+17004593,25745752,4
+83855853,25745752,3
+34939065,25745752,5
+51387684,25745752,2
+ameliefei,25745752,1
+115219918,25745752,1
+18174444,25745752,4
+80386991,25745752,2
+81872132,25745752,4
+37411559,25745752,2
+2741521,25745752,3
+125806599,25745752,2
+58281873,25745752,3
+57286063,25745752,2
+49209128,25745752,1
+xiaoyaozizai,25745752,3
+72782260,25745752,2
+flotte,25745752,5
+lvxiangvsg,25745752,-1
+Linjingx,25745752,2
+41397677,25745752,1
+57479148,25745752,1
+56074135,25745752,4
+mignon0515,25745752,3
+43333979,25745752,5
+47016933,25745752,4
+jacquelinelau,25745752,2
+cmisland,25745752,1
+Sapporo,25745752,2
+reave,25745752,1
+50574849,25745752,4
+68714300,25745752,3
+52838594,25745752,1
+70844899,25745752,1
+randervaart,25745752,5
+104623422,25745752,1
+eyelike1,25745752,-1
+60979573,25745752,1
+churao,25745752,5
+65774825,25745752,5
+minijoan,25745752,4
+39014221,25745752,-1
+ccc8023,25745752,1
+66863582,25745752,2
+xinzhengs,25745752,3
+4608887,25745752,2
+jiyounv,25745752,3
+MaccyLiu,25745752,3
+Show-_-,25745752,3
+53324194,25745752,2
+44530220,25745752,3
+lowingsea,25745752,3
+66997046,25745752,5
+Sheeplady,25745752,3
+kikilili006,25745752,4
+48402177,25745752,-1
+55876756,25745752,1
+guoxiaoheng,25745752,2
+urlx,25745752,4
+bulajun,25745752,4
+44409988,25745752,2
+shawivy,25745752,3
+50683078,25745752,4
+119592358,25745752,1
+39268690,25745752,3
+88930627,25745752,1
+wangtaocyy,25745752,3
+60506014,25745752,1
+48370399,25745752,2
+47798709,25745752,5
+51557756,25745752,2
+40850252,25745752,3
+43999051,25745752,5
+68947670,25745752,4
+49181549,25745752,4
+75732992,25745752,1
+57697286,25745752,3
+sEvera1,25745752,4
+51911200,25745752,1
+Milk_Solo,25745752,2
+13808919,25745752,1
+zoedark,25745752,3
+luluhengheng,25745752,5
+daodaowu,25745752,1
+kuangzhenyao,25745752,4
+123288101,25745752,4
+41308887,25745752,2
+80635442,25745752,4
+Lu1101,25745752,-1
+chachaa,25745752,3
+2692052,25745752,1
+wangying2325,25745752,4
+44049794,25745752,1
+115271516,25745752,-1
+50400133,25745752,3
+126244027,25745752,3
+41498049,25745752,3
+41278212,25745752,2
+CINIC1607,25745752,4
+65911258,25745752,1
+114483839,25745752,2
+76096245,25745752,1
+take_me_away,25745752,5
+maydayyqy,25745752,3
+53457714,25745752,-1
+76238756,25745752,3
+49162171,25745752,3
+52247452,25745752,1
+lyratam,25745752,2
+4209620,25745752,2
+suarron,25745752,5
+49485195,25745752,2
+36112597,25745752,3
+40728649,25745752,2
+49155452,25745752,3
+42202741,25745752,3
+1905433,25745752,3
+56104597,25745752,1
+hsy1108,25745752,2
+hanus,25745752,3
+4795748,25745752,4
+102667562,25745752,3
+122998045,25745752,4
+59428764,25745752,1
+77068892,25745752,3
+sukixiaojie,25745752,4
+aleloise,25745752,3
+79016960,25745752,1
+GM1993,25745752,3
+48057004,25745752,4
+mirroror,25745752,4
+42907481,25745752,3
+63254362,25745752,2
+allen_y,25745752,3
+4386029,25745752,4
+108394568,25745752,2
+wangbinyan,25745752,1
+xl8690,25745752,4
+59027708,25745752,1
+58178750,25745752,4
+54338909,25745752,3
+mokki555,25745752,2
+39179216,25745752,1
+59772219,25745752,4
+2075939,25745752,3
+41803938,25745752,3
+chatterboc,25745752,1
+2712047,25745752,3
+uki-chao,25745752,4
+young-lazy,25745752,-1
+59376214,25745752,4
+40659159,25745752,2
+39728715,25745752,1
+70487817,25745752,1
+cyuxin,25745752,4
+linlinghao,25745752,3
+56692728,25745752,2
+65110292,25745752,-1
+69811337,25745752,3
+65631549,25745752,2
+30267706,25745752,1
+liaojiafen,25745752,1
+57486378,25745752,1
+45841206,25745752,1
+46373671,25745752,2
+50707301,25745752,1
+44296729,25745752,-1
+69040717,25745752,2
+42908367,25745752,4
+84710865,25745752,3
+juve_vidal23,25745752,3
+106711871,25745752,1
+76283003,25745752,4
+63599562,25745752,3
+47193126,25745752,-1
+inthemelody,25745752,4
+77644475,25745752,3
+48768490,25745752,2
+17828049,25745752,2
+67220317,25745752,5
+120541183,25745752,3
+43716096,25745752,1
+devnet,25745752,1
+75189266,25745752,3
+91036176,25745752,3
+75987972,25745752,-1
+hezicha,25745752,5
+charo,25745752,1
+125003275,25745752,2
+58955045,25745752,5
+112387290,25745752,3
+loserisit,25745752,3
+61321953,25745752,4
+adachinoboolu,25745752,4
+122164611,25745752,3
+gaishixiaogui,25745752,5
+75946130,25745752,4
+2518346,25745752,5
+76432800,25745752,4
+Xbw777,25745752,2
+48191805,25745752,3
+88201656,25745752,2
+Monster-Liu1994,25745752,1
+Matt-Howe,25745752,2
+Matt-Howe,25745752,2
+77236400,25745752,1
+32836711,25745752,2
+41430865,25745752,3
+67668770,25745752,1
+ttkyla,25745752,2
+62532292,25745752,5
+curlooo,25745752,3
+3123758,25745752,3
+61982601,25745752,2
+margaret_yong,25745752,2
+48441251,25745752,4
+75625714,25745752,2
+68263919,25745752,3
+54786298,25745752,2
+4026585,25745752,2
+42289302,25745752,-1
+72573288,25745752,2
+61133613,25745752,2
+tamatoruns,25745752,3
+46680586,25745752,1
+46361626,25745752,2
+55398795,25745752,2
+35331418,25745752,1
+71939546,25745752,5
+120544917,25745752,4
+60036297,25745752,2
+starandstar,25745752,2
+Kelvin_Lee,25745752,3
+58323320,25745752,1
+45969661,25745752,4
+63961875,25745752,1
+nan1208,25745752,2
+41614126,25745752,3
+52997821,25745752,3
+54118574,25745752,2
+64601279,25745752,4
+114540983,25745752,4
+TongZilou,25745752,4
+68266016,25745752,3
+70235777,25745752,2
+3090478,25745752,3
+57233366,25745752,4
+49442507,25745752,2
+yfqc24pippo,25745752,2
+42987999,25745752,3
+magicsunshine,25745752,2
+115529221,25745752,3
+40934646,25745752,3
+49187387,25745752,3
+sonofsam,25745752,2
+39006881,25745752,3
+76464800,25745752,1
+zhouyj,25745752,5
+54210699,25745752,3
+singleyu,25745752,3
+zhouchenelva,25745752,1
+52458935,25745752,1
+littlesugar,25745752,3
+117234787,25745752,2
+aoneatwo,25745752,1
+43714574,25745752,3
+MOGUANTHONY,25745752,2
+60046251,25745752,-1
+doris_1994,25745752,2
+GracieG,25745752,1
+58142969,25745752,2
+i-alice,25745752,3
+94274085,25745752,2
+88679885,25745752,4
+46042872,25745752,3
+luoabei,25745752,3
+gongziyi,25745752,5
+70717641,25745752,3
+jayleehoho,25745752,2
+56024643,25745752,3
+78910091,25745752,2
+mamuzuke,25745752,2
+Dejected,25745752,4
+mriruis,25745752,3
+121274651,25745752,3
+wmymt,25745752,4
+z498084785,25745752,1
+8132922,25745752,5
+126128083,25745752,3
+120109452,25745752,2
+88433908,25745752,1
+82454010,25745752,2
+kiralove00,25745752,3
+34940692,25745752,2
+34569018,25745752,2
+74367163,25745752,4
+caitlynd,25745752,3
+42188580,25745752,1
+58322790,25745752,-1
+90465571,25745752,2
+doa4,25745752,3
+djdaisy1874,25745752,3
+laperseus,25745752,3
+little_baby,25745752,2
+16189590,25745752,4
+SabrinaChen,25745752,3
+wangmian0729,25745752,2
+60912631,25745752,4
+3609679,25745752,2
+L0ve-zL,25745752,2
+sugaryes,25745752,3
+72527995,25745752,3
+5674564,25745752,2
+46963529,25745752,5
+caizhidao,25745752,3
+Alinaqueen,25745752,3
+47154165,25745752,2
+77914968,25745752,3
+81926873,25745752,4
+Iamfull,25745752,3
+67049599,25745752,2
+58094163,25745752,1
+52816638,25745752,3
+54753933,25745752,2
+46625386,25745752,3
+65004384,25745752,4
+57134566,25745752,4
+caicaisweat,25745752,4
+119394560,25745752,3
+fujiaying,25745752,4
+49299881,25745752,2
+mickylana,25745752,3
+79945542,25745752,4
+41969815,25745752,3
+nightivy,25745752,1
+50933206,25745752,2
+65363266,25745752,5
+99080642,25745752,3
+102289527,25745752,3
+94234362,25745752,3
+53726852,25745752,3
+lianmaomi,25745752,1
+37436539,25745752,3
+xiaoshiliushu,25745752,3
+sunnyvicky,25745752,2
+CrystalYao,25745752,2
+guobingyao728,25745752,1
+38691155,25745752,5
+jieeeed,25745752,2
+42796272,25745752,2
+88273371,25745752,3
+54366340,25745752,3
+47462121,25745752,1
+61611580,25745752,3
+zoe_dabai,25745752,1
+100746508,25745752,4
+48582918,25745752,3
+teng.,25745752,2
+3743689,25745752,1
+weipengcheng,25745752,1
+56357426,25745752,5
+52600120,25745752,2
+83402921,25745752,-1
+1080571,25745752,1
+44407422,25745752,2
+65100690,25745752,1
+53656219,25745752,3
+jeanne68240109,25745752,2
+xiaozhuo02,25745752,-1
+42563034,25745752,3
+grammarbai,25745752,1
+nerida8013,25745752,3
+m.Blacky,25745752,3
+74855673,25745752,2
+53669377,25745752,3
+dormancy,25745752,2
+69568844,25745752,4
+67832663,25745752,3
+matthewchen,25745752,3
+55282407,25745752,-1
+63085289,25745752,2
+46261546,25745752,2
+VieVie,25745752,-1
+76291472,25745752,4
+2155845,25745752,5
+47790252,25745752,3
+ask5588619,25745752,3
+46162078,25745752,3
+hahatedan,25745752,4
+57004497,25745752,2
+39941847,25745752,2
+69167567,25745752,3
+28677254,25745752,3
+zql9527,25745752,2
+62132064,25745752,4
+2180309,25745752,4
+56181037,25745752,3
+1582144,25745752,2
+lhwithsummer,25745752,4
+lovingly,25745752,4
+dorothy1203,25745752,3
+cindy_1994816,25745752,1
+3020797,25745752,4
+47297203,25745752,3
+62368657,25745752,-1
+120084471,25745752,1
+34823102,25745752,1
+Lolita-H,25745752,3
+66146839,25745752,4
+40002546,25745752,4
+zenglove1220,25745752,3
+maples611627,25745752,4
+maggiexx,25745752,3
+gospursgo,25745752,3
+hustzxf,25745752,1
+vicvicvic,25745752,3
+49211988,25745752,-1
+boill,25745752,4
+29710107,25745752,2
+33538024,25745752,2
+126261570,25745752,3
+muyanyan,25745752,2
+yikecai,25745752,4
+whateverp,25745752,5
+2934911,25745752,4
+46065900,25745752,2
+27008930,25745752,3
+quiettree,25745752,-1
+63690698,25745752,2
+69785918,25745752,1
+68080863,25745752,1
+45395995,25745752,4
+67416002,25745752,3
+81317395,25745752,3
+58964496,25745752,2
+4474468,25745752,4
+65893110,25745752,3
+addict2smoke,25745752,3
+50143998,25745752,5
+guozhiqiang,25745752,3
+seansjq7,25745752,1
+huayeah,25745752,2
+40474663,25745752,2
+76846124,25745752,4
+LeeMar,25745752,3
+63677587,25745752,1
+125268010,25745752,1
+62418294,25745752,5
+49109662,25745752,3
+96204394,25745752,3
+3780954,25745752,2
+1911270,25745752,5
+78651458,25745752,3
+superzhen,25745752,4
+southdrift,25745752,3
+lc87624,25745752,4
+55596037,25745752,4
+seafffff,25745752,5
+xiajixiangnan,25745752,3
+Su33er,25745752,3
+shan0102,25745752,1
+boonup,25745752,4
+luguohong,25745752,2
+62709413,25745752,4
+39698078,25745752,3
+56788006,25745752,4
+2685590,25745752,5
+102945477,25745752,2
+kyokoo,25745752,4
+47935001,25745752,3
+53496053,25745752,-1
+59262140,25745752,5
+124537695,25745752,3
+102426428,25745752,3
+jessie223,25745752,-1
+momokoochan,25745752,1
+4083280,25745752,2
+57270396,25745752,1
+39321555,25745752,4
+47566185,25745752,3
+37538848,25745752,3
+61281204,25745752,3
+59374112,25745752,2
+majunyanli,25745752,4
+fffflower,25745752,2
+yushicaomei,25745752,3
+69998360,25745752,2
+hashayaqi,25745752,1
+feibaobei,25745752,1
+124383631,25745752,2
+83187671,25745752,3
+daemo,25745752,5
+lleiou,25745752,4
+70862123,25745752,3
+seekingant,25745752,2
+63950350,25745752,3
+1601177,25745752,1
+31548307,25745752,2
+ellenha,25745752,3
+kejinlong,25745752,2
+52335106,25745752,-1
+bessie28,25745752,3
+oraora,25745752,2
+45463936,25745752,4
+45463936,25745752,4
+103589221,25745752,3
+57931146,25745752,5
+QAZLee,25745752,3
+35199121,25745752,2
+wangweiyi,25745752,3
+leonardzhu,25745752,2
+52154436,25745752,4
+ccccissy,25745752,3
+45271195,25745752,4
+apple_laputa,25745752,1
+64966584,25745752,2
+54479962,25745752,1
+84122258,25745752,2
+51453942,25745752,5
+66690317,25745752,3
+linianxu,25745752,2
+36341358,25745752,-1
+51778464,25745752,3
+aprilpear,25745752,1
+RulyLee,25745752,5
+yuanchanggeng,25745752,2
+48892199,25745752,3
+69067944,25745752,3
+52868226,25745752,2
+renlon,25745752,3
+che1989,25745752,3
+missirene,25745752,3
+60538655,25745752,-1
+41900641,25745752,1
+53857506,25745752,1
+48976619,25745752,2
+MlovesB,25745752,3
+phyllis_withu,25745752,2
+124245470,25745752,1
+63369291,25745752,2
+46467173,25745752,4
+55429218,25745752,3
+53792829,25745752,2
+59740753,25745752,5
+53132873,25745752,1
+56541613,25745752,3
+43595713,25745752,4
+hedmgh,25745752,4
+Mscudder,25745752,3
+50360714,25745752,3
+121713887,25745752,3
+54398591,25745752,3
+censhinan,25745752,2
+laurencelee,25745752,1
+heavycoldteahou,25745752,2
+84001065,25745752,5
+58495364,25745752,1
+61849563,25745752,3
+32819169,25745752,3
+yingtaozi07,25745752,2
+vradica,25745752,3
+4239908,25745752,3
+49988447,25745752,2
+74948787,25745752,5
+yuebancl,25745752,3
+VVIVXIV,25745752,3
+whisperblue,25745752,1
+amwtt,25745752,2
+mymisssummer,25745752,3
+Maybo-Chang,25745752,3
+44927910,25745752,3
+67173929,25745752,3
+56194866,25745752,3
+ruby199204,25745752,1
+ripage,25745752,3
+50073106,25745752,3
+82995055,25745752,1
+53257837,25745752,3
+2696668,25745752,5
+57598870,25745752,4
+Juneaitvxq,25745752,1
+61714365,25745752,1
+97009281,25745752,3
+3607686,25745752,2
+61954377,25745752,5
+48553188,25745752,2
+13262103,25745752,3
+125010883,25745752,3
+SkyTangHui,25745752,2
+expiate,25745752,4
+35226590,25745752,1
+48787871,25745752,3
+80745781,25745752,4
+me1069258180,25745752,5
+126395591,25745752,5
+ruiqigreen,25745752,3
+63391208,25745752,1
+vtmonkey,25745752,3
+kennyeffect,25745752,1
+18439305,25745752,3
+8078899,25745752,4
+moon_mengmeng,25745752,3
+4454692,25745752,3
+96674410,25745752,3
+63825498,25745752,1
+relyon,25745752,4
+Narglc,25745752,4
+125773849,25745752,3
+weimengxiao,25745752,1
+73791401,25745752,3
+chris310-nan,25745752,3
+guoguo430,25745752,5
+bailuoliuwei,25745752,5
+lovelysunshine,25745752,1
+67072789,25745752,5
+60114596,25745752,4
+48248068,25745752,-1
+72004354,25745752,3
+63330574,25745752,-1
+68957542,25745752,2
+3803257,25745752,3
+124514675,25745752,5
+phoenix43,25745752,2
+62428828,25745752,2
+46597691,25745752,3
+tiansijie,25745752,3
+morimiru,25745752,3
+4912751,25745752,1
+wangyilin220,25745752,2
+Joinblue,25745752,-1
+London1,25745752,3
+70990571,25745752,2
+luoluomass,25745752,4
+120699928,25745752,1
+72279477,25745752,3
+90605938,25745752,4
+44735067,25745752,3
+52709247,25745752,3
+62402038,25745752,2
+55335684,25745752,2
+88236856,25745752,1
+73707848,25745752,2
+61771440,25745752,2
+61365011,25745752,2
+antique9248,25745752,2
+DemiNee,25745752,2
+fi_fi,25745752,3
+53902216,25745752,1
+43471974,25745752,4
+66743693,25745752,4
+rocksind,25745752,4
+vitaminJ,25745752,3
+28907680,25745752,1
+kasogg,25745752,2
+3180846,25745752,4
+BiXiaoBengZhuRe,25745752,4
+neko707,25745752,1
+48820036,25745752,1
+83495033,25745752,2
+xxclorisxx,25745752,1
+iimozart,25745752,4
+57379426,25745752,3
+71767198,25745752,3
+39303357,25745752,1
+bodysun,25745752,3
+84462296,25745752,-1
+53430385,25745752,1
+liumoming,25745752,-1
+71859163,25745752,3
+zc...,25745752,5
+60389754,25745752,3
+50330506,25745752,4
+81003990,25745752,2
+72433183,25745752,2
+91632813,25745752,4
+3140834,25745752,1
+lcrgreen,25745752,4
+river615125,25745752,4
+71316982,25745752,1
+Noct.Jun-L,25745752,2
+wangjun1900,25745752,3
+37150686,25745752,1
+58131814,25745752,3
+huacanlan,25745752,4
+68945862,25745752,3
+98836044,25745752,4
+44364803,25745752,2
+84296194,25745752,2
+wangrujing,25745752,4
+pianzhikuangyy,25745752,2
+64697524,25745752,1
+zacklee,25745752,2
+elsolmysun,25745752,3
+4787504,25745752,2
+3489632,25745752,3
+lixinleixinli,25745752,3
+hazelny,25745752,2
+34108808,25745752,1
+caixiaoqiang,25745752,4
+51625334,25745752,5
+56430618,25745752,4
+53962498,25745752,-1
+pepereina,25745752,3
+55984117,25745752,-1
+44392002,25745752,2
+anya2011,25745752,5
+linyanli,25745752,1
+38881116,25745752,1
+62275045,25745752,3
+Caoxiao,25745752,3
+53439566,25745752,3
+21834685,25745752,2
+73878048,25745752,2
+streamercity,25745752,3
+yan7478,25745752,3
+62233659,25745752,2
+mimiiii,25745752,3
+2479091,25745752,2
+douxiaokou,25745752,1
+53430352,25745752,1
+blueweijiu,25745752,3
+55439689,25745752,-1
+69646030,25745752,3
+luluwhite,25745752,3
+4023497,25745752,3
+linglongwunv,25745752,3
+69952221,25745752,1
+Miralte,25745752,2
+xiaotuo,25745752,2
+67606836,25745752,4
+58970338,25745752,3
+78984625,25745752,2
+Xinuan,25745752,5
+bbqdfc,25745752,4
+1340085,25745752,3
+Trezeguet,25745752,4
+qiaomai,25745752,3
+63459099,25745752,4
+2630094,25745752,2
+53672819,25745752,3
+51299697,25745752,3
+3804622,25745752,3
+61304869,25745752,3
+104580788,25745752,1
+78876616,25745752,-1
+30741393,25745752,2
+72233881,25745752,3
+51151541,25745752,1
+4071214,25745752,3
+65372022,25745752,2
+114533111,25745752,3
+joey12255555,25745752,1
+wangyuan2648,25745752,3
+48287597,25745752,1
+lnss,25745752,2
+46390941,25745752,2
+sandra9966,25745752,3
+62055619,25745752,3
+111072325,25745752,1
+67654598,25745752,3
+TerryPrince,25745752,2
+46689569,25745752,2
+58902454,25745752,4
+51398532,25745752,3
+xmcog,25745752,3
+70982693,25745752,1
+rimonl,25745752,1
+balalily,25745752,2
+maoqiujun,25745752,3
+baozi2707,25745752,1
+jjq8590188,25745752,1
+53068177,25745752,3
+62523670,25745752,2
+2203673,25745752,2
+80482136,25745752,1
+SmileyVicky,25745752,2
+58040413,25745752,4
+45401652,25745752,3
+4383854,25745752,5
+53316387,25745752,3
+32964830,25745752,1
+2946410,25745752,3
+tisili,25745752,2
+48224282,25745752,1
+44335994,25745752,4
+61961368,25745752,4
+60178731,25745752,4
+phonicfei,25745752,3
+seventhworkshop,25745752,-1
+why051370,25745752,4
+122915542,25745752,3
+62574107,25745752,5
+redcookie,25745752,3
+48222794,25745752,2
+47750593,25745752,2
+chaobeir1028,25745752,4
+62651248,25745752,4
+novembery,25745752,3
+126383331,25745752,3
+VickyMonster,25745752,1
+62995857,25745752,2
+renmeng,25745752,4
+49765851,25745752,2
+suaguai7,25745752,3
+suaguai7,25745752,3
+124833218,25745752,-1
+83674616,25745752,3
+115178880,25745752,4
+79124781,25745752,2
+kane7,25745752,3
+32881100,25745752,3
+naschris,25745752,2
+42000833,25745752,3
+Lyabing,25745752,-1
+bijin,25745752,3
+2464610,25745752,2
+sss214,25745752,5
+77834855,25745752,2
+3278968,25745752,3
+32705581,25745752,-1
+Crystal-clj,25745752,2
+50307120,25745752,2
+70497722,25745752,3
+baoziaron,25745752,3
+120797263,25745752,5
+25585138,25745752,2
+103215074,25745752,3
+PKUTeaParty,25745752,1
+64759386,25745752,5
+lusion,25745752,4
+2918978,25745752,4
+m.edulla,25745752,3
+51886941,25745752,1
+72397969,25745752,3
+81418362,25745752,3
+joyyyy,25745752,4
+60475552,25745752,2
+irenetina,25745752,3
+112129032,25745752,1
+summerfaye,25745752,4
+Spiritsouland,25745752,3
+Yasmin_,25745752,2
+65002965,25745752,3
+ckomy115,25745752,3
+59299531,25745752,2
+49108399,25745752,2
+54761724,25745752,1
+islandcoast,25745752,4
+Apirl0426,25745752,4
+alianhei,25745752,3
+lovefeather,25745752,3
+59046346,25745752,3
+84866392,25745752,2
+chenhuayang,25745752,2
+white817,25745752,2
+64223906,25745752,3
+49431546,25745752,3
+mn123321,25745752,-1
+78234449,25745752,1
+deerlulu17,25745752,3
+61594746,25745752,4
+xmyc,25745752,3
+miss0804,25745752,1
+43842293,25745752,3
+eskimonino,25745752,3
+49066626,25745752,3
+46481404,25745752,3
+3671744,25745752,2
+angle223,25745752,2
+72722458,25745752,1
+paris521,25745752,-1
+kakayanzi,25745752,3
+yourlilith,25745752,2
+82815159,25745752,2
+aq1216,25745752,2
+69048288,25745752,2
+xinxinyu,25745752,3
+lisins77,25745752,3
+64154274,25745752,3
+62671989,25745752,3
+yukiseventeen,25745752,3
+KinO_O,25745752,2
+earlyzaozao,25745752,2
+CZ1011,25745752,2
+CZ1011,25745752,2
+68918685,25745752,4
+chouchouCp,25745752,1
+4352101,25745752,3
+4430986,25745752,2
+chahom,25745752,3
+wuliangmouji,25745752,3
+40119554,25745752,4
+freiya,25745752,3
+julywazi,25745752,3
+realien,25745752,1
+62612561,25745752,2
+104312412,25745752,2
+72549209,25745752,2
+40104674,25745752,3
+91674742,25745752,1
+15372517,25745752,2
+115673587,25745752,1
+AIRs,25745752,1
+49666297,25745752,1
+53577462,25745752,2
+48965115,25745752,3
+78420106,25745752,2
+111584714,25745752,2
+lolos,25745752,4
+54455940,25745752,1
+lxyjdan,25745752,3
+43452126,25745752,2
+71619888,25745752,3
+applecs,25745752,2
+1521152,25745752,2
+3985070,25745752,1
+sarah219,25745752,4
+gagaSiuCheoNg,25745752,2
+51056568,25745752,-1
+63612050,25745752,1
+2954485,25745752,2
+47002164,25745752,4
+kishtyy_41,25745752,3
+78593884,25745752,3
+61116211,25745752,3
+121079964,25745752,4
+miko0409,25745752,2
+119355340,25745752,3
+69397059,25745752,1
+WYQlluvia,25745752,4
+3254734,25745752,3
+60348245,25745752,1
+63513609,25745752,3
+2705138,25745752,3
+sunhecool,25745752,1
+alternativeH,25745752,1
+46064966,25745752,-1
+2217613,25745752,4
+48826254,25745752,2
+Chenxianli,25745752,2
+59577856,25745752,2
+69842524,25745752,3
+icemonique,25745752,3
+53370545,25745752,5
+yanyanjiang,25745752,1
+maydanji,25745752,3
+50090638,25745752,5
+95501857,25745752,2
+jofanie,25745752,3
+65423303,25745752,3
+72365393,25745752,2
+57193473,25745752,4
+kkka,25745752,1
+aliangshuo,25745752,3
+4254640,25745752,1
+63156283,25745752,3
+65496075,25745752,3
+66860468,25745752,1
+18747582,25745752,3
+4626230,25745752,3
+diandiandidi,25745752,1
+freakbody,25745752,2
+gaolina,25745752,2
+97443496,25745752,1
+kirawll,25745752,3
+116380571,25745752,3
+42135670,25745752,3
+3597500,25745752,5
+65240625,25745752,4
+9221488,25745752,2
+90446896,25745752,3
+deaconsu,25745752,4
+71496445,25745752,2
+48591299,25745752,1
+53743018,25745752,1
+75558546,25745752,2
+43398824,25745752,4
+49064882,25745752,1
+43152925,25745752,-1
+hhhmc,25745752,3
+eleventhsnow,25745752,3
+5382699,25745752,5
+34638229,25745752,4
+112822542,25745752,1
+106260389,25745752,4
+84177108,25745752,5
+101953197,25745752,2
+107805569,25745752,2
+121273352,25745752,4
+83122250,25745752,1
+45259366,25745752,3
+2711621,25745752,1
+50959488,25745752,2
+48688516,25745752,2
+99483183,25745752,3
+5214442,25745752,2
+32650866,25745752,3
+49305149,25745752,3
+81968571,25745752,2
+zisic,25745752,3
+63877279,25745752,3
+Julyxiaobao,25745752,4
+125643700,25745752,1
+lucameow,25745752,3
+sibony,25745752,-1
+sapx,25745752,3
+89262639,25745752,3
+baqian,25745752,1
+64978865,25745752,4
+axio,25745752,2
+gjr,25745752,2
+xxyilun,25745752,-1
+lovetsubasa,25745752,5
+yokotree,25745752,4
+3548835,25745752,3
+2145908,25745752,3
+JonathanGun,25745752,3
+68392307,25745752,4
+secret.rainbow,25745752,1
+L_LAWLIET,25745752,3
+siyuquan,25745752,5
+56453886,25745752,2
+54265487,25745752,2
+47323388,25745752,-1
+4217605,25745752,2
+67641940,25745752,2
+hannibal8,25745752,2
+jy0820,25745752,4
+69547535,25745752,4
+sky77722,25745752,1
+douyashuo,25745752,3
+Lynnwu,25745752,3
+58237348,25745752,3
+121988172,25745752,3
+66029889,25745752,5
+94886676,25745752,2
+57132937,25745752,3
+chaiyanchao,25745752,4
+BennyB,25745752,3
+Trafalgar,25745752,1
+1887686,25745752,3
+66650863,25745752,3
+paopaotang1990,25745752,2
+49489445,25745752,5
+1765008,25745752,3
+uuuuGY,25745752,2
+4691552,25745752,5
+28272719,25745752,3
+diana0223,25745752,-1
+52318521,25745752,3
+58643524,25745752,-1
+spankercat,25745752,2
+61861239,25745752,2
+3346145,25745752,3
+issalou,25745752,3
+1731256,25745752,3
+41711436,25745752,2
+82404312,25745752,4
+wangzhumei,25745752,3
+mingtaiyupao,25745752,2
+122532383,25745752,2
+Pittsburgh,25745752,-1
+34454459,25745752,5
+tomsnakewang,25745752,3
+enough45,25745752,4
+megumiwo,25745752,1
+47810301,25745752,2
+princegemini,25745752,4
+73552921,25745752,2
+AL1109079684,25745752,2
+55352127,25745752,2
+wenlu,25745752,3
+Boice-YY,25745752,1
+octopus0831,25745752,2
+46551234,25745752,4
+57612713,25745752,1
+money_1,25745752,2
+126343844,25745752,4
+103347600,25745752,3
+56322830,25745752,4
+51741927,25745752,3
+nbyuan,25745752,2
+50627941,25745752,3
+71630357,25745752,5
+66261518,25745752,5
+aizhao01060218,25745752,2
+hhana,25745752,1
+LuciferLaw,25745752,1
+71727863,25745752,4
+2973153,25745752,3
+amandapisces,25745752,4
+38686040,25745752,2
+Imissusky,25745752,3
+68760009,25745752,1
+cindy_ming,25745752,1
+62726649,25745752,5
+C.YEll,25745752,1
+120653130,25745752,3
+90778678,25745752,2
+79878488,25745752,5
+106153294,25745752,4
+80784693,25745752,4
+snowing_y,25745752,3
+2563465,25745752,3
+w189620829,25745752,4
+chinazx,25745752,5
+60141694,25745752,1
+65891739,25745752,3
+45080512,25745752,3
+126343047,25745752,3
+xgtmy95,25745752,2
+yayatianrandai,25745752,1
+71888272,25745752,1
+Yeah.Owl.G,25745752,3
+1381497,25745752,1
+wjp,25745752,3
+4806563,25745752,3
+13198440,25745752,3
+kidrun,25745752,5
+danshuyl,25745752,2
+simonpeter,25745752,4
+83257989,25745752,3
+80925161,25745752,2
+nicolas7,25745752,3
+orsule,25745752,2
+97195140,25745752,4
+50281371,25745752,4
+80414582,25745752,4
+58337049,25745752,2
+53673765,25745752,3
+65175804,25745752,2
+120934977,25745752,4
+canslzyjen,25745752,5
+licinda,25745752,3
+leftsun0923,25745752,4
+49786853,25745752,2
+49585596,25745752,2
+59415959,25745752,4
+70500308,25745752,3
+littlepoorshit,25745752,1
+6578851,25745752,3
+qixiaole,25745752,3
+94710762,25745752,1
+coors,25745752,3
+90014790,25745752,1
+noncampgen,25745752,3
+122929945,25745752,2
+52378291,25745752,2
+niguize,25745752,-1
+107338684,25745752,4
+tanggg,25745752,3
+51386842,25745752,3
+tinywhowho,25745752,3
+dayingzi,25745752,2
+39279260,25745752,3
+danso,25745752,3
+2453788,25745752,3
+40821697,25745752,3
+lemontree3345,25745752,5
+43362782,25745752,2
+60885052,25745752,5
+ninababy25,25745752,3
+72454425,25745752,3
+87820646,25745752,4
+wehavenoneed,25745752,4
+120531545,25745752,3
+49891918,25745752,4
+70687104,25745752,2
+31507086,25745752,3
+82334570,25745752,3
+flxjp,25745752,3
+56556616,25745752,4
+124032422,25745752,3
+2732006,25745752,1
+4348412,25745752,4
+55591249,25745752,2
+oxyoxyoxygen,25745752,1
+xuyanshang,25745752,4
+70681801,25745752,-1
+49991288,25745752,-1
+geoking617,25745752,1
+45384993,25745752,3
+49330983,25745752,3
+49084630,25745752,1
+36132288,25745752,3
+clayfly,25745752,-1
+qingqing1990,25745752,2
+49273602,25745752,3
+StandOnLifE,25745752,3
+52685312,25745752,1
+otaku_,25745752,3
+yueningxin,25745752,2
+Yuz-day,25745752,1
+77735645,25745752,5
+57314886,25745752,4
+wocaonimadabb,25745752,4
+2940018,25745752,4
+77194286,25745752,1
+sweather,25745752,3
+53054975,25745752,4
+nilinli,25745752,2
+65755053,25745752,2
+z1901111,25745752,1
+126337955,25745752,1
+iris1031,25745752,3
+80581175,25745752,3
+119203760,25745752,3
+JohnJuniors,25745752,3
+feimin,25745752,-1
+2244827,25745752,4
+71790709,25745752,2
+74515279,25745752,1
+3042278,25745752,3
+Eileke,25745752,2
+yahgyl,25745752,2
+95823388,25745752,1
+million,25745752,-1
+119829181,25745752,1
+mud2011,25745752,4
+88542586,25745752,4
+63325158,25745752,3
+doraqian613,25745752,5
+lilifen0720,25745752,1
+122291394,25745752,4
+61845707,25745752,3
+xianuannian,25745752,2
+67346577,25745752,2
+65763845,25745752,5
+thezealer,25745752,3
+122858309,25745752,3
+92497641,25745752,2
+81712287,25745752,3
+54942846,25745752,5
+47531635,25745752,5
+48917226,25745752,3
+103315156,25745752,2
+63571108,25745752,3
+73225522,25745752,3
+92048195,25745752,2
+45662792,25745752,2
+tinydream,25745752,4
+3549790,25745752,3
+42723395,25745752,3
+66951342,25745752,3
+59571249,25745752,3
+84270133,25745752,3
+19136693,25745752,1
+47013563,25745752,3
+83229059,25745752,5
+bigstud,25745752,1
+48803721,25745752,1
+54099440,25745752,4
+48532760,25745752,2
+106423465,25745752,1
+SamuelYan,25745752,3
+68678476,25745752,1
+60358393,25745752,2
+12738365,25745752,2
+64211454,25745752,5
+51282561,25745752,3
+Dora_bamboo,25745752,3
+gnmmb,25745752,1
+71678279,25745752,4
+89344944,25745752,1
+55583926,25745752,1
+46698247,25745752,3
+121386623,25745752,1
+72985710,25745752,3
+40049713,25745752,2
+Jensen4ever,25745752,1
+4575064,25745752,3
+dove109,25745752,4
+72894253,25745752,4
+65441793,25745752,-1
+56827696,25745752,3
+78932970,25745752,4
+60142596,25745752,1
+helenff,25745752,3
+urmyv1,25745752,-1
+66239370,25745752,5
+119405586,25745752,5
+athenaaoao,25745752,5
+57954109,25745752,1
+plasticsub,25745752,1
+alisa_lea,25745752,4
+48251188,25745752,1
+1947840,25745752,5
+59320480,25745752,3
+50880780,25745752,4
+viola-x,25745752,1
+bluebelieve9,25745752,1
+68778164,25745752,5
+75888884,25745752,1
+64237711,25745752,5
+31068073,25745752,2
+85264365,25745752,2
+45737013,25745752,3
+bankuailvtang,25745752,3
+50548382,25745752,5
+Agnesi,25745752,1
+piao_yao_,25745752,4
+unervern,25745752,3
+erdansleepy,25745752,3
+viviensong,25745752,3
+jiongreborn,25745752,5
+7689266,25745752,1
+93975923,25745752,1
+67002094,25745752,1
+hussi,25745752,3
+39352449,25745752,4
+3457397,25745752,2
+adagio4400,25745752,5
+catduo,25745752,2
+Eve2005,25745752,1
+B612minmin,25745752,3
+48523065,25745752,3
+dorothy.C,25745752,5
+78231416,25745752,3
+mqxjdz,25745752,3
+73651442,25745752,3
+ladyC1016,25745752,2
+xia0xue,25745752,2
+63159258,25745752,1
+2504153,25745752,3
+69750232,25745752,4
+49193773,25745752,3
+47493797,25745752,3
+aoaoaoaoaoaoao,25745752,2
+ally7,25745752,3
+14692856,25745752,2
+62201501,25745752,1
+115702103,25745752,1
+44618116,25745752,5
+wuxiling,25745752,2
+45261585,25745752,3
+43409515,25745752,5
+minmingan,25745752,1
+67610680,25745752,1
+Gothicone,25745752,2
+abuwangzi,25745752,1
+42946923,25745752,4
+58983444,25745752,4
+52758613,25745752,5
+56870980,25745752,2
+67010279,25745752,1
+53053364,25745752,4
+47053418,25745752,5
+76818566,25745752,4
+4369602,25745752,2
+59540342,25745752,-1
+46600033,25745752,3
+51694672,25745752,4
+55737467,25745752,5
+114781822,25745752,3
+79560195,25745752,3
+119845628,25745752,2
+56374175,25745752,3
+115541155,25745752,3
+haruka49,25745752,3
+84056163,25745752,4
+dydoudou,25745752,4
+75569999,25745752,4
+47894900,25745752,2
+69274709,25745752,1
+25257094,25745752,4
+dear_rebecca,25745752,-1
+50651365,25745752,5
+47679672,25745752,2
+Reinheit,25745752,3
+87648315,25745752,2
+clairecqy,25745752,2
+51923534,25745752,4
+cat_yr,25745752,4
+yejiajunlove,25745752,3
+120375835,25745752,1
+73490575,25745752,3
+63738949,25745752,4
+lolita007,25745752,-1
+fengwuyaoye,25745752,3
+74853954,25745752,2
+muzhizhanglang,25745752,3
+52650191,25745752,3
+2654815,25745752,2
+3815024,25745752,-1
+iampearl,25745752,3
+53573790,25745752,3
+39835043,25745752,4
+wheattime,25745752,3
+85341687,25745752,4
+27891262,25745752,3
+70076924,25745752,1
+4887509,25745752,3
+58419588,25745752,2
+63457669,25745752,1
+yancm,25745752,3
+56385781,25745752,3
+xll_xqzhang,25745752,4
+61033806,25745752,3
+vivianlovesun,25745752,2
+wjscxx,25745752,2
+53522902,25745752,3
+74771985,25745752,2
+64582672,25745752,3
+60150875,25745752,4
+taikongwoniu,25745752,5
+Lucy.Wang,25745752,4
+72706074,25745752,3
+yihuiw,25745752,1
+51410626,25745752,2
+77082442,25745752,2
+liulazy,25745752,4
+singercatrol,25745752,3
+1887825,25745752,2
+justnijin,25745752,4
+45623979,25745752,4
+mic0124,25745752,4
+34573514,25745752,2
+3617454,25745752,3
+63964754,25745752,1
+104823115,25745752,3
+94679289,25745752,2
+53773450,25745752,3
+53165975,25745752,4
+lnayg1221,25745752,3
+lnayg1221,25745752,3
+summervoilet,25745752,2
+68179093,25745752,4
+89667488,25745752,1
+48554960,25745752,3
+71861591,25745752,4
+weizheren,25745752,2
+49388696,25745752,3
+59338554,25745752,4
+41125638,25745752,3
+58252447,25745752,3
+wanzi623,25745752,4
+67862373,25745752,1
+2206145,25745752,3
+38947433,25745752,3
+OrangeWeiei,25745752,4
+88537945,25745752,4
+1686305,25745752,4
+48108896,25745752,3
+30569827,25745752,4
+75474977,25745752,3
+103274308,25745752,4
+lucky_sm,25745752,2
+smilehuhu,25745752,3
+tanlin8711,25745752,3
+themissingken,25745752,2
+yaohooo,25745752,3
+2977822,25745752,3
+58284947,25745752,3
+80105449,25745752,3
+recall710,25745752,2
+kiddoanne,25745752,5
+79342106,25745752,2
+xiaozhu2nannan,25745752,3
+115815894,25745752,3
+52904420,25745752,3
+53492535,25745752,1
+67619742,25745752,1
+jiangruoan1013,25745752,3
+daisy702,25745752,3
+61828785,25745752,2
+63822026,25745752,3
+50579039,25745752,3
+63599319,25745752,1
+VALLA,25745752,2
+hyykkb,25745752,4
+julycythia,25745752,4
+guooyi,25745752,3
+73332736,25745752,3
+readmovie,25745752,2
+zison,25745752,1
+58027563,25745752,1
+cloud622,25745752,3
+88539587,25745752,5
+xiaozhusi,25745752,3
+49301416,25745752,4
+54463600,25745752,2
+creamo,25745752,1
+4793256,25745752,5
+121822634,25745752,2
+31573360,25745752,4
+broempty,25745752,3
+61920379,25745752,3
+currysue,25745752,3
+56340290,25745752,4
+92523849,25745752,2
+54076866,25745752,4
+47525831,25745752,2
+56360797,25745752,3
+Psycho_L,25745752,2
+rinkacheng,25745752,2
+kerysie,25745752,2
+4401995,25745752,1
+61064779,25745752,4
+lilysaylove,25745752,3
+56795705,25745752,5
+5653111,25745752,4
+51786434,25745752,2
+49579775,25745752,5
+74567017,25745752,4
+chihuoo,25745752,4
+star027,25745752,4
+shanghai11,25745752,4
+110104355,25745752,1
+lcghere,25745752,2
+candyisme,25745752,4
+125309329,25745752,2
+47148931,25745752,4
+Earrame,25745752,1
+solycoco,25745752,3
+51035629,25745752,5
+39070600,25745752,1
+kellyelbe,25745752,2
+53103122,25745752,3
+66361854,25745752,2
+Mackintosh,25745752,1
+luckytia,25745752,4
+basaya,25745752,1
+jxjjxhb,25745752,1
+47904693,25745752,4
+47904693,25745752,4
+124396719,25745752,2
+53583275,25745752,3
+55620822,25745752,5
+Bermuda-RAN,25745752,3
+stickman,25745752,5
+52770411,25745752,1
+90187672,25745752,1
+122821584,25745752,1
+67454532,25745752,3
+39947970,25745752,4
+45953798,25745752,2
+44692354,25745752,3
+yekaokao,25745752,3
+kid131,25745752,3
+2807823,25745752,2
+79775979,25745752,3
+51860822,25745752,5
+44158473,25745752,5
+82188158,25745752,1
+50180421,25745752,3
+12534849,25745752,2
+109241655,25745752,2
+101919506,25745752,3
+athenahyphen,25745752,3
+58068960,25745752,3
+78710315,25745752,1
+lizjuly,25745752,3
+46881440,25745752,2
+82406719,25745752,1
+10737697,25745752,5
+steph6luna,25745752,1
+54867328,25745752,3
+47172637,25745752,5
+HCY510,25745752,5
+49902009,25745752,4
+kyleul,25745752,5
+84710118,25745752,1
+47200426,25745752,3
+anthonybb,25745752,3
+3426705,25745752,4
+58258651,25745752,2
+Cheersmelon,25745752,3
+muuuma,25745752,4
+123277207,25745752,3
+RRspace,25745752,3
+58158315,25745752,2
+34571461,25745752,3
+80845781,25745752,3
+SA69,25745752,1
+46697713,25745752,2
+35272301,25745752,2
+duduxiongzhifu,25745752,4
+3333885,25745752,3
+83892151,25745752,5
+56396657,25745752,1
+44052702,25745752,2
+68835395,25745752,3
+96935544,25745752,5
+Hana.Summer.,25745752,2
+2287976,25745752,3
+124571006,25745752,1
+Mibowen611,25745752,3
+2980674,25745752,3
+54033630,25745752,2
+64508591,25745752,5
+a-zhu,25745752,3
+oranicge,25745752,4
+56053205,25745752,3
+forest_desert,25745752,3
+123331677,25745752,3
+40823380,25745752,1
+121073792,25745752,3
+sunianjinshired,25745752,4
+3816221,25745752,2
+luoshenmao,25745752,1
+yullc,25745752,3
+124123020,25745752,3
+83895101,25745752,2
+62263229,25745752,-1
+yzj1212,25745752,1
+38138105,25745752,3
+76124816,25745752,5
+xiaohundexiaoba,25745752,2
+shelleyhsu,25745752,3
+44008231,25745752,5
+55916803,25745752,2
+banbeizi,25745752,1
+tt0090,25745752,3
+Claudialovedad,25745752,3
+45640219,25745752,3
+64162059,25745752,3
+63871984,25745752,2
+45346411,25745752,4
+126183109,25745752,5
+57220767,25745752,5
+68819289,25745752,3
+65796258,25745752,2
+soundj,25745752,3
+64450294,25745752,3
+78150719,25745752,2
+52795058,25745752,1
+faannn,25745752,3
+120518242,25745752,2
+S-Daisy,25745752,5
+91036793,25745752,3
+wzh1995,25745752,1
+mao_daidai,25745752,1
+suh5213,25745752,2
+53144791,25745752,1
+48175935,25745752,1
+42261320,25745752,2
+44397532,25745752,2
+82888615,25745752,1
+66629958,25745752,3
+3272880,25745752,2
+28649058,25745752,1
+26602627,25745752,5
+kylintatto,25745752,4
+byandong,25745752,4
+81297479,25745752,2
+DEMO9266,25745752,4
+109939304,25745752,3
+1643126,25745752,2
+gyapreen,25745752,4
+ganqianru,25745752,1
+52988026,25745752,4
+47345422,25745752,2
+58963539,25745752,2
+yiannisyan,25745752,3
+jennieyoung,25745752,2
+57469413,25745752,2
+richey_,25745752,3
+33376379,25745752,1
+114567490,25745752,3
+82876812,25745752,2
+RabbitXYZ,25745752,3
+47732275,25745752,3
+olivia0914,25745752,-1
+74056494,25745752,2
+73475415,25745752,2
+94678422,25745752,1
+103474402,25745752,1
+59956884,25745752,4
+46869931,25745752,4
+114181457,25745752,5
+47894027,25745752,2
+61317179,25745752,5
+52558781,25745752,-1
+46439800,25745752,2
+4260903,25745752,3
+52992118,25745752,2
+2768499,25745752,1
+58741014,25745752,2
+FairleeY,25745752,2
+4488442,25745752,3
+36814539,25745752,5
+orangeumoon,25745752,1
+76374701,25745752,4
+seeeeeeeeeeeeee,25745752,3
+2622536,25745752,1
+14360918,25745752,3
+71172794,25745752,3
+83942613,25745752,4
+64349163,25745752,4
+fanny-zone,25745752,3
+onlyzhaojunyi,25745752,2
+2492496,25745752,3
+namexjn,25745752,1
+phoebejh,25745752,1
+j2dream,25745752,3
+116856151,25745752,1
+xuyangran,25745752,1
+33071133,25745752,3
+51624566,25745752,2
+119372376,25745752,2
+63436872,25745752,1
+94349964,25745752,2
+sandy-ann,25745752,2
+Mizleave,25745752,3
+58131642,25745752,4
+52420102,25745752,2
+52198048,25745752,1
+55534841,25745752,1
+Xuansee,25745752,3
+109858301,25745752,1
+62219119,25745752,3
+58701029,25745752,2
+weichengyuan,25745752,2
+52818523,25745752,4
+GODIVA,25745752,4
+67730092,25745752,2
+40706768,25745752,3
+yexinsheng,25745752,2
+jjzzjoyce,25745752,4
+52114898,25745752,5
+leiqinger,25745752,2
+ephemearashin,25745752,3
+69248680,25745752,1
+76536277,25745752,-1
+Azzz,25745752,3
+41341856,25745752,1
+ragenee,25745752,4
+28978843,25745752,3
+stillfyou,25745752,3
+58916644,25745752,2
+xiatan,25745752,3
+shangdixiaole,25745752,1
+HoneySuki,25745752,5
+ya45010424,25745752,4
+85062757,25745752,5
+48247295,25745752,2
+119428504,25745752,3
+yinchuanfu,25745752,4
+53798871,25745752,1
+47920878,25745752,3
+122136126,25745752,3
+62773903,25745752,2
+jie2u,25745752,5
+60042960,25745752,3
+84569301,25745752,3
+73016853,25745752,3
+34105254,25745752,4
+76277046,25745752,1
+78559592,25745752,2
+62209116,25745752,4
+82462822,25745752,1
+75196730,25745752,4
+88429988,25745752,2
+50619132,25745752,2
+lolitahanhan,25745752,3
+everlastinglove,25745752,1
+zytsubasa,25745752,2
+102416411,25745752,3
+124494416,25745752,3
+gautama,25745752,2
+louie628,25745752,3
+91584522,25745752,2
+58899302,25745752,1
+68691422,25745752,3
+qstar1989,25745752,1
+1054914,25745752,2
+63110579,25745752,3
+67419264,25745752,3
+82564566,25745752,3
+leave614,25745752,3
+125052065,25745752,2
+4008427,25745752,2
+sunwiner,25745752,4
+54731797,25745752,3
+63412313,25745752,2
+45412806,25745752,3
+79422797,25745752,3
+121994299,25745752,4
+tom926,25745752,1
+JunAllen,25745752,-1
+ys0114,25745752,3
+69586177,25745752,4
+58929132,25745752,1
+56494454,25745752,5
+1001195,25745752,1
+60302594,25745752,4
+zuochangyu,25745752,4
+maofly,25745752,4
+61389722,25745752,3
+60842705,25745752,2
+79381337,25745752,1
+53238980,25745752,1
+48859024,25745752,2
+daoyudeai,25745752,1
+91212635,25745752,5
+50760323,25745752,2
+turf85,25745752,3
+momosen,25745752,3
+41320733,25745752,3
+47365240,25745752,2
+93142720,25745752,3
+51468288,25745752,4
+67880800,25745752,2
+61016661,25745752,3
+124092156,25745752,2
+4008354,25745752,1
+69529988,25745752,3
+126283294,25745752,1
+csee1121,25745752,5
+51086058,25745752,2
+80314108,25745752,3
+saylove,25745752,2
+91582621,25745752,2
+cheerdream,25745752,3
+49064751,25745752,2
+berber918,25745752,1
+lzeer,25745752,2
+61482345,25745752,3
+49081343,25745752,4
+2149589,25745752,4
+48849326,25745752,3
+106130226,25745752,4
+74325789,25745752,4
+longlanglang,25745752,3
+59803789,25745752,1
+yzzlovezj,25745752,3
+105700070,25745752,5
+80847551,25745752,4
+jiuzao,25745752,2
+50910985,25745752,2
+don_C,25745752,3
+76149601,25745752,5
+77187696,25745752,2
+2118404,25745752,4
+89036799,25745752,4
+121192728,25745752,1
+Aamina-memory,25745752,-1
+65638081,25745752,2
+52259960,25745752,3
+39945204,25745752,1
+49560545,25745752,1
+2445750,25745752,3
+Leslie_Cheung,25745752,1
+39975906,25745752,5
+89095718,25745752,1
+57590168,25745752,3
+48997081,25745752,1
+53898523,25745752,2
+34800119,25745752,3
+asinjoi,25745752,1
+80999122,25745752,1
+61656459,25745752,3
+103605137,25745752,2
+71337437,25745752,2
+58193839,25745752,3
+62562108,25745752,3
+56144100,25745752,2
+xwj0902,25745752,3
+48229136,25745752,3
+39095645,25745752,3
+64138297,25745752,3
+sylviamayday,25745752,2
+jojo123com,25745752,3
+sjxin,25745752,2
+47346628,25745752,2
+53697921,25745752,1
+61490793,25745752,2
+40560256,25745752,3
+Venus910,25745752,4
+81832502,25745752,3
+FTDxiaowukong,25745752,4
+3355710,25745752,3
+126275262,25745752,1
+neoelsa,25745752,3
+54849133,25745752,3
+47670024,25745752,1
+4686814,25745752,1
+51125825,25745752,2
+jokie1104,25745752,3
+60365345,25745752,2
+sweettalk5205,25745752,2
+65826765,25745752,-1
+52526455,25745752,5
+3198636,25745752,4
+rachelpp,25745752,3
+121551255,25745752,-1
+102397525,25745752,3
+124274372,25745752,4
+51717187,25745752,5
+28633682,25745752,3
+43678627,25745752,4
+tiffanyji,25745752,1
+52360941,25745752,4
+65917801,25745752,2
+70514763,25745752,1
+life2x,25745752,4
+62103689,25745752,2
+66228440,25745752,3
+musicvatamin,25745752,2
+rleetomato,25745752,3
+gala9394,25745752,3
+64252494,25745752,1
+deist,25745752,4
+58034264,25745752,2
+61647279,25745752,3
+M-Sapphire,25745752,1
+that_mango,25745752,1
+57423264,25745752,4
+yesidogiveadamn,25745752,1
+76722357,25745752,2
+haning,25745752,5
+17176281,25745752,1
+tozikiacherry,25745752,2
+s3d451,25745752,4
+92585489,25745752,2
+1513002,25745752,1
+aprilwind_shi,25745752,2
+52861827,25745752,3
+72538808,25745752,3
+123564410,25745752,-1
+hy2015,25745752,5
+49893438,25745752,1
+wincy_5c,25745752,3
+61192596,25745752,3
+65574259,25745752,1
+Janone,25745752,2
+yamiyuki,25745752,5
+lick647,25745752,1
+dulllennon,25745752,4
+46311374,25745752,5
+42207663,25745752,2
+121953679,25745752,2
+45385294,25745752,2
+superman7664,25745752,2
+126264069,25745752,5
+56597679,25745752,2
+52857124,25745752,4
+49040678,25745752,3
+61856030,25745752,2
+2274906,25745752,2
+67015862,25745752,1
+98985469,25745752,1
+68621390,25745752,4
+122061353,25745752,1
+40687803,25745752,1
+122986176,25745752,4
+rabbitfish,25745752,4
+californiachris,25745752,1
+53668793,25745752,4
+84248348,25745752,3
+115772568,25745752,3
+39809119,25745752,4
+mangggggg,25745752,2
+yueyue718,25745752,3
+iamhuangyuxuan,25745752,2
+joanna_L,25745752,2
+82871480,25745752,5
+3805267,25745752,4
+6852727,25745752,5
+monkeyfish,25745752,4
+44156307,25745752,5
+46968523,25745752,1
+2271745,25745752,1
+Erica1011,25745752,2
+aipa,25745752,3
+8858277,25745752,5
+Katrina42314,25745752,4
+53142647,25745752,2
+87374913,25745752,2
+AnotherLouise,25745752,3
+caoxiaoying,25745752,3
+88661228,25745752,2
+51540960,25745752,4
+3415449,25745752,2
+51068415,25745752,3
+58908894,25745752,1
+36687091,25745752,4
+sillyho,25745752,1
+39788968,25745752,1
+59723079,25745752,2
+66613325,25745752,3
+4105471,25745752,5
+luxury_lixi,25745752,5
+46742218,25745752,1
+29696256,25745752,5
+50659341,25745752,3
+47504020,25745752,2
+89750609,25745752,3
+2029651,25745752,2
+slsunluyx,25745752,1
+51133078,25745752,4
+69121193,25745752,1
+57405984,25745752,3
+pororo0707,25745752,5
+a-kico,25745752,1
+nhlover,25745752,1
+midori_amoy,25745752,1
+69272743,25745752,2
+3638194,25745752,3
+47398025,25745752,-1
+121962717,25745752,4
+54594576,25745752,3
+chongncepu,25745752,4
+huangjungeng,25745752,4
+liuhaozys,25745752,5
+84522058,25745752,5
+58911905,25745752,3
+fallenfanell,25745752,3
+76064140,25745752,4
+41918653,25745752,3
+chonger3507,25745752,4
+dabaibai,25745752,3
+cinyo0312,25745752,4
+zihaozai0407,25745752,4
+50117171,25745752,3
+70457581,25745752,4
+53719354,25745752,5
+2227016,25745752,2
+95937050,25745752,1
+79281125,25745752,3
+zblshine,25745752,2
+126038784,25745752,4
+coolwd,25745752,2
+124974218,25745752,5
+48916211,25745752,1
+49064899,25745752,3
+oldclean,25745752,3
+moshangsunrise,25745752,3
+64342759,25745752,1
+Decadeff,25745752,3
+92133935,25745752,3
+36185142,25745752,1
+zhtianyu,25745752,2
+83746312,25745752,4
+66303721,25745752,4
+126259005,25745752,5
+jasjaff,25745752,3
+50616224,25745752,4
+46267341,25745752,2
+27926151,25745752,3
+84157110,25745752,2
+70311914,25745752,1
+61350033,25745752,1
+1437680,25745752,5
+126115582,25745752,4
+50774706,25745752,1
+102815541,25745752,2
+3959210,25745752,1
+jailbreakbin,25745752,4
+yuco,25745752,1
+71123907,25745752,3
+3545798,25745752,1
+102456258,25745752,2
+49973625,25745752,3
+zhaonahyuk,25745752,3
+azeizei,25745752,3
+75093360,25745752,4
+bluesyilan7,25745752,3
+asia1990,25745752,2
+52798970,25745752,4
+51817711,25745752,2
+mintangel,25745752,2
+3199607,25745752,5
+71833015,25745752,2
+54051724,25745752,2
+56911400,25745752,3
+23865191,25745752,3
+45489178,25745752,3
+65358811,25745752,5
+RainbowRen,25745752,1
+62366078,25745752,5
+41403989,25745752,3
+ljnbb,25745752,4
+84288969,25745752,4
+Jh1205,25745752,2
+115041315,25745752,2
+24274750,25745752,3
+58810279,25745752,2
+4590078,25745752,3
+59345564,25745752,2
+tangwenbin,25745752,3
+115552732,25745752,2
+tuliqin,25745752,2
+NITLY,25745752,4
+66302544,25745752,2
+1864146,25745752,3
+3389000,25745752,5
+121143952,25745752,2
+44976171,25745752,3
+68963965,25745752,2
+54083569,25745752,1
+53243609,25745752,1
+64888120,25745752,5
+82232966,25745752,2
+58945423,25745752,3
+55789619,25745752,-1
+93214291,25745752,1
+62571521,25745752,3
+29620241,25745752,4
+123231401,25745752,1
+sara52,25745752,3
+51828462,25745752,2
+mamcat,25745752,3
+delete801,25745752,2
+4855838,25745752,3
+51907986,25745752,3
+xzl1905,25745752,4
+destiny.chan,25745752,-1
+80354641,25745752,4
+53507443,25745752,3
+59361957,25745752,3
+yandafan,25745752,1
+4358906,25745752,3
+115711894,25745752,4
+79990790,25745752,3
+109330278,25745752,3
+52925540,25745752,2
+ielit,25745752,3
+suikame,25745752,2
+47619273,25745752,2
+51774232,25745752,5
+HAMOTO,25745752,3
+Cassiopeia1205,25745752,5
+VIPP,25745752,2
+43906508,25745752,2
+9823994,25745752,1
+withmydog,25745752,1
+60051498,25745752,1
+58595954,25745752,4
+suisuichen,25745752,5
+sherry33,25745752,3
+104897605,25745752,4
+vera1988,25745752,3
+63080276,25745752,3
+2337372,25745752,2
+124499271,25745752,1
+63242262,25745752,2
+50590088,25745752,3
+100625640,25745752,3
+diccy227,25745752,4
+51444963,25745752,3
+52030611,25745752,3
+63371877,25745752,4
+orangeT,25745752,1
+68287178,25745752,3
+124398850,25745752,2
+heechen,25745752,3
+Qyaoyao,25745752,-1
+50640260,25745752,5
+23750536,25745752,4
+67182027,25745752,4
+58168213,25745752,1
+57090877,25745752,1
+47688996,25745752,2
+56018610,25745752,-1
+ishama,25745752,2
+122609115,25745752,3
+sonicui,25745752,1
+5012885,25745752,3
+woshijinxiaoyu,25745752,2
+99917102,25745752,3
+lidazhuan,25745752,3
+buan420,25745752,4
+14904352,25745752,3
+54642925,25745752,5
+71766001,25745752,5
+48917866,25745752,3
+rosa9,25745752,3
+52156829,25745752,4
+41874215,25745752,3
+mo2eda,25745752,2
+gaaaaaaaaaz,25745752,2
+qilin17,25745752,3
+70928299,25745752,4
+120089529,25745752,1
+mrfish,25745752,3
+80422486,25745752,4
+82437190,25745752,5
+JoyMcCartney,25745752,1
+40336952,25745752,2
+cookiesun0420,25745752,3
+58950825,25745752,4
+126188503,25745752,3
+ttv5,25745752,4
+90697037,25745752,3
+zoechang1025,25745752,2
+nuttybamboo,25745752,3
+122446654,25745752,3
+52835847,25745752,5
+67681636,25745752,3
+48463405,25745752,5
+litsunny,25745752,3
+121148510,25745752,1
+dyinggg,25745752,3
+81626321,25745752,3
+53412461,25745752,5
+Sarahpanee,25745752,3
+seeeeela,25745752,3
+78853925,25745752,1
+49950062,25745752,3
+45784272,25745752,3
+90546161,25745752,1
+61265061,25745752,3
+Utopiartist,25745752,2
+34979549,25745752,3
+122835581,25745752,3
+45987150,25745752,2
+83996558,25745752,4
+37037916,25745752,4
+qfsstj,25745752,3
+36633049,25745752,1
+43910154,25745752,2
+52746748,25745752,4
+babylucky,25745752,1
+jofiely,25745752,2
+3508207,25745752,2
+liujiazhong,25745752,4
+m19900714,25745752,3
+88081334,25745752,4
+56016863,25745752,1
+sun_corydalis,25745752,4
+49389129,25745752,2
+56133889,25745752,4
+iris29,25745752,1
+ycy19870313,25745752,1
+kimixu1017,25745752,2
+kkguagangqin,25745752,1
+41128451,25745752,3
+82889509,25745752,4
+120687136,25745752,3
+57664608,25745752,3
+cld104123,25745752,5
+Sarinagara,25745752,3
+52744528,25745752,3
+chen_ml1026,25745752,-1
+1075966,25745752,3
+83900345,25745752,2
+63095918,25745752,1
+41116493,25745752,3
+daydream466,25745752,4
+carrieloveless,25745752,3
+cici198739,25745752,2
+anyi1314,25745752,5
+peka,25745752,2
+huaxianzi198986,25745752,1
+andynihan,25745752,3
+64216484,25745752,1
+45595430,25745752,3
+lsiori,25745752,1
+kate101,25745752,3
+54764887,25745752,3
+Mandy_ywx,25745752,2
+raizzt,25745752,3
+valanthecarey,25745752,2
+76591163,25745752,1
+56803551,25745752,4
+47203558,25745752,1
+19701461,25745752,4
+48789683,25745752,1
+MaZai,25745752,2
+59504947,25745752,5
+79254196,25745752,-1
+77295763,25745752,5
+52286623,25745752,3
+yechi,25745752,2
+54896584,25745752,4
+66719799,25745752,1
+63331591,25745752,3
+ziyunying,25745752,4
+55618766,25745752,-1
+CLASSIC-MOVIE,25745752,4
+chobitmoon,25745752,2
+yamaci,25745752,3
+49928864,25745752,3
+83601520,25745752,2
+52979491,25745752,1
+72319072,25745752,3
+candyrainz,25745752,-1
+66750558,25745752,3
+104777463,25745752,4
+62476174,25745752,3
+54082963,25745752,3
+53050903,25745752,2
+121774438,25745752,1
+iamzuzhitao,25745752,3
+62318904,25745752,1
+wosiq26,25745752,2
+55980175,25745752,2
+33456055,25745752,3
+56444863,25745752,3
+79989439,25745752,1
+78914788,25745752,2
+121767165,25745752,3
+34005046,25745752,1
+56529479,25745752,3
+71593445,25745752,1
+Danya_Tang,25745752,3
+Tracy.Wan,25745752,3
+4518731,25745752,3
+126248170,25745752,2
+62024381,25745752,1
+123419758,25745752,3
+55325145,25745752,4
+46944255,25745752,2
+solwe,25745752,5
+songai0609,25745752,2
+63900378,25745752,1
+59164249,25745752,1
+61166197,25745752,1
+120222665,25745752,4
+jokylovecr,25745752,1
+48116369,25745752,3
+hanqiu1995,25745752,3
+124254697,25745752,1
+xiashu-,25745752,3
+64056125,25745752,3
+70025737,25745752,1
+Ranfeg,25745752,-1
+bonnie_june,25745752,-1
+45795420,25745752,3
+53531812,25745752,2
+augeste,25745752,3
+caorong1023,25745752,2
+54741378,25745752,5
+54741378,25745752,5
+119257372,25745752,1
+73496560,25745752,3
+41409099,25745752,3
+77244526,25745752,1
+kiyoka,25745752,4
+52873518,25745752,5
+55690778,25745752,2
+74990413,25745752,2
+27545632,25745752,3
+89913056,25745752,4
+60870044,25745752,3
+yyuan9372,25745752,2
+40522482,25745752,1
+decfrt,25745752,2
+52721870,25745752,4
+54413887,25745752,5
+53168109,25745752,3
+evan14,25745752,4
+55836561,25745752,5
+41574175,25745752,3
+echocici,25745752,3
+67863005,25745752,3
+qilapengqi,25745752,3
+67525836,25745752,4
+love1222,25745752,4
+52892284,25745752,1
+99698320,25745752,5
+crazyfamily,25745752,4
+anisezww,25745752,3
+44329176,25745752,3
+67728756,25745752,2
+32135185,25745752,3
+63383879,25745752,3
+114336409,25745752,3
+DERRICK_ROSE,25745752,1
+lyricless,25745752,3
+47818302,25745752,3
+57882904,25745752,2
+1357146,25745752,2
+flora19900428,25745752,4
+54915058,25745752,3
+RedHonour,25745752,1
+63790380,25745752,3
+77307938,25745752,2
+2846988,25745752,2
+36617677,25745752,5
+52858125,25745752,1
+yayayayao,25745752,1
+mjiayi,25745752,3
+2135609,25745752,1
+sevendream129,25745752,2
+57773561,25745752,2
+93105801,25745752,1
+40241549,25745752,1
+aliciaenelveran,25745752,2
+55306896,25745752,-1
+kioce,25745752,3
+41976054,25745752,1
+annnnnn,25745752,1
+58316570,25745752,1
+sylvan914,25745752,3
+77890563,25745752,3
+59500634,25745752,1
+lizzy2005,25745752,2
+122900035,25745752,5
+yoonjae_,25745752,2
+rjy0215,25745752,1
+46289509,25745752,1
+44053020,25745752,3
+28645018,25745752,4
+tintin_yu,25745752,2
+aileennico,25745752,2
+22077242,25745752,5
+4350982,25745752,1
+125682611,25745752,4
+67437110,25745752,-1
+12764291,25745752,3
+70426965,25745752,2
+63616841,25745752,2
+91297667,25745752,2
+122130571,25745752,1
+13569368,25745752,1
+dear.still,25745752,4
+61328607,25745752,-1
+56314850,25745752,3
+95891176,25745752,2
+59392792,25745752,4
+34459327,25745752,2
+76953306,25745752,1
+50527952,25745752,4
+31195431,25745752,3
+55806165,25745752,3
+39977560,25745752,3
+39679039,25745752,4
+56076845,25745752,4
+4247189,25745752,2
+siau2tie1,25745752,5
+85064072,25745752,2
+1427766,25745752,5
+shisisi,25745752,2
+52511810,25745752,2
+67551894,25745752,3
+Makoto614,25745752,3
+shixiaoxuan,25745752,5
+47905384,25745752,3
+66705172,25745752,2
+xinxinniannian,25745752,2
+47743128,25745752,3
+carrietvxq,25745752,4
+64013773,25745752,2
+48525620,25745752,5
+69542609,25745752,1
+109042034,25745752,4
+jeremywcc,25745752,3
+andoze,25745752,4
+81090765,25745752,1
+44926208,25745752,3
+amy6663,25745752,4
+33749828,25745752,3
+33749828,25745752,3
+arika.L,25745752,3
+53818723,25745752,-1
+98271323,25745752,3
+40757284,25745752,3
+frida0516,25745752,3
+120736500,25745752,1
+quill,25745752,3
+51909557,25745752,1
+83418476,25745752,1
+dearmeng,25745752,4
+zpzs,25745752,4
+79830283,25745752,2
+annho,25745752,1
+94529871,25745752,1
+hhy890809,25745752,3
+51959718,25745752,3
+58145545,25745752,4
+76865023,25745752,1
+122224219,25745752,3
+78941984,25745752,2
+tintingo,25745752,2
+z.circle,25745752,2
+81885646,25745752,3
+asdddwz,25745752,1
+60127464,25745752,1
+97350616,25745752,2
+miss_miss_u,25745752,1
+54173979,25745752,3
+76429798,25745752,1
+60803696,25745752,1
+43858158,25745752,4
+76610246,25745752,5
+115785803,25745752,5
+69364818,25745752,2
+66615224,25745752,3
+65292706,25745752,2
+51759635,25745752,3
+4163899,25745752,4
+7374252,25745752,3
+58625918,25745752,1
+mishi,25745752,2
+20768934,25745752,1
+qilin,25745752,4
+sertina,25745752,1
+t1n9_520,25745752,3
+65850343,25745752,1
+Yq0702,25745752,2
+3995354,25745752,-1
+shuchenxue,25745752,-1
+rosavivian,25745752,3
+35998666,25745752,3
+49649488,25745752,4
+75469567,25745752,3
+115523541,25745752,2
+122178478,25745752,4
+vickyfanyan,25745752,2
+59705184,25745752,3
+78091553,25745752,3
+1353806,25745752,4
+84049214,25745752,1
+57059547,25745752,2
+48824155,25745752,5
+114893512,25745752,3
+90416000,25745752,1
+59011955,25745752,4
+levianahu,25745752,2
+43775375,25745752,4
+70241348,25745752,2
+113100904,25745752,3
+blinglu,25745752,2
+lmj5526,25745752,4
+princessing,25745752,4
+vxxxi,25745752,3
+54126939,25745752,3
+32541723,25745752,4
+115040546,25745752,2
+122198903,25745752,1
+58340906,25745752,3
+53814284,25745752,4
+61824176,25745752,3
+55640220,25745752,3
+61985343,25745752,4
+122010605,25745752,5
+48906452,25745752,3
+KaYcily,25745752,2
+59398930,25745752,1
+catlyn,25745752,5
+nivakyo,25745752,2
+miucather,25745752,4
+liuine,25745752,2
+50396291,25745752,2
+70726088,25745752,3
+51004773,25745752,1
+mtz,25745752,4
+51782800,25745752,1
+74599733,25745752,4
+51186569,25745752,2
+sukijuri,25745752,3
+kiiidgstar,25745752,3
+4297857,25745752,3
+hanalook,25745752,4
+119061064,25745752,5
+41953149,25745752,2
+levkimi,25745752,2
+53927357,25745752,2
+miuzc.pei,25745752,2
+98620451,25745752,3
+3873448,25745752,3
+55976298,25745752,2
+90035469,25745752,2
+62594842,25745752,4
+45068358,25745752,1
+125708318,25745752,2
+121859961,25745752,2
+73664006,25745752,4
+80516818,25745752,5
+71712974,25745752,1
+68116821,25745752,2
+annie-bean,25745752,-1
+52682142,25745752,2
+60591590,25745752,3
+72169675,25745752,4
+KarRoyRita,25745752,-1
+74913423,25745752,3
+loveyouwuwang,25745752,3
+3351650,25745752,3
+33290727,25745752,3
+izune,25745752,1
+xixiduoduo,25745752,2
+89343886,25745752,4
+cn1027,25745752,4
+47853825,25745752,5
+48804060,25745752,2
+82456949,25745752,2
+wenjunlwj,25745752,3
+73866765,25745752,4
+74013127,25745752,-1
+80961880,25745752,2
+phoebehsu,25745752,3
+53368322,25745752,3
+milklover,25745752,4
+78902065,25745752,4
+60547124,25745752,4
+3958065,25745752,4
+54824703,25745752,5
+54764560,25745752,3
+51886121,25745752,4
+64976213,25745752,4
+58043566,25745752,3
+48369193,25745752,3
+vosr,25745752,1
+2615650,25745752,3
+65102324,25745752,1
+vvish,25745752,3
+wuxingta,25745752,3
+14670568,25745752,2
+ngwillya,25745752,5
+72789208,25745752,4
+54647803,25745752,2
+61932917,25745752,3
+4228858,25745752,2
+125334017,25745752,1
+93462898,25745752,3
+102409204,25745752,1
+116819189,25745752,1
+42839977,25745752,1
+64441983,25745752,3
+irissui,25745752,2
+99329704,25745752,2
+84393372,25745752,4
+8627977,25745752,5
+80933554,25745752,2
+FrankWasabi,25745752,2
+1215925,25745752,2
+qianmop,25745752,1
+yuyanlin,25745752,4
+64107417,25745752,3
+dorisfeng520,25745752,4
+46319235,25745752,2
+122040688,25745752,5
+73734497,25745752,3
+darlingtudai,25745752,2
+48539832,25745752,-1
+95020076,25745752,2
+62089788,25745752,4
+4059412,25745752,3
+VitaBunny,25745752,3
+sofans,25745752,2
+53308031,25745752,2
+5095261,25745752,2
+54338591,25745752,3
+ssime,25745752,1
+berrytime,25745752,4
+70359207,25745752,4
+120956800,25745752,4
+2809057,25745752,3
+82347389,25745752,5
+121805239,25745752,1
+44585668,25745752,3
+3752516,25745752,3
+88026032,25745752,4
+58722109,25745752,2
+89749275,25745752,1
+52822833,25745752,2
+103775903,25745752,2
+imhechang,25745752,2
+59032148,25745752,4
+68731965,25745752,4
+36627775,25745752,-1
+97072450,25745752,2
+47950856,25745752,4
+75449907,25745752,1
+44532870,25745752,3
+51064764,25745752,3
+54772245,25745752,3
+solaryy,25745752,4
+leoloe,25745752,4
+dreamskitter,25745752,3
+67694516,25745752,4
+34035451,25745752,2
+55275802,25745752,4
+83421613,25745752,5
+yuexiaokan,25745752,3
+4875017,25745752,1
+59109173,25745752,5
+83471901,25745752,2
+28559275,25745752,3
+56794742,25745752,3
+spicymilk,25745752,2
+peggyzhu,25745752,5
+74455741,25745752,5
+120611241,25745752,2
+27719539,25745752,4
+52302842,25745752,3
+38586420,25745752,2
+125543859,25745752,1
+115895497,25745752,1
+76255849,25745752,5
+42144339,25745752,1
+csprite,25745752,2
+35228915,25745752,3
+cynthiays,25745752,4
+66795690,25745752,3
+48145179,25745752,2
+cannotmissyou,25745752,2
+72739016,25745752,2
+81515243,25745752,2
+happyelement,25745752,1
+49968813,25745752,1
+50363542,25745752,5
+62259012,25745752,3
+48579838,25745752,1
+leeloo_s,25745752,2
+81819960,25745752,2
+1788452,25745752,2
+89849165,25745752,1
+66627403,25745752,1
+claire1031,25745752,3
+45792761,25745752,4
+4369278,25745752,3
+Gordoncoco,25745752,1
+98991003,25745752,3
+62514800,25745752,5
+43232986,25745752,1
+69094998,25745752,2
+1520336,25745752,3
+cheert,25745752,3
+2888284,25745752,4
+88327648,25745752,3
+z_red,25745752,5
+yangchuhan123,25745752,1
+aotui,25745752,3
+101419547,25745752,5
+28240327,25745752,3
+Swangshu,25745752,1
+48919627,25745752,3
+phoenixfannie,25745752,2
+46912278,25745752,4
+35503787,25745752,5
+car007,25745752,2
+65649623,25745752,3
+119418827,25745752,5
+ichbinsherlyn,25745752,2
+53523795,25745752,5
+34898710,25745752,5
+cyrus_wong,25745752,2
+zhangdayang,25745752,3
+52587148,25745752,2
+myo,25745752,4
+hundanbunengchi,25745752,3
+lynnca,25745752,2
+50095107,25745752,4
+46333522,25745752,5
+119860885,25745752,2
+Masked-xia,25745752,5
+72088231,25745752,4
+52655521,25745752,3
+126051718,25745752,1
+65044584,25745752,2
+65044584,25745752,2
+46249272,25745752,4
+66720945,25745752,5
+aether1013,25745752,3
+51061137,25745752,2
+4315821,25745752,3
+65517569,25745752,2
+102165650,25745752,3
+WillFly,25745752,4
+2761282,25745752,3
+xiaohu2008,25745752,-1
+121185122,25745752,1
+44423056,25745752,1
+52907196,25745752,3
+63644941,25745752,3
+62644533,25745752,3
+gaoshuang1226,25745752,3
+Quartz,25745752,4
+102877618,25745752,1
+4839154,25745752,2
+65881645,25745752,5
+81853101,25745752,4
+Fiiiiiii,25745752,1
+yobaby,25745752,2
+116540697,25745752,3
+69387510,25745752,3
+69900690,25745752,3
+minniedai,25745752,3
+67213840,25745752,1
+46537433,25745752,3
+56719974,25745752,2
+58172616,25745752,4
+81147489,25745752,3
+46431893,25745752,3
+47845240,25745752,-1
+122627623,25745752,2
+xuxudaodao,25745752,3
+wangweivenus,25745752,3
+33830687,25745752,2
+May_1s,25745752,2
+May_1s,25745752,2
+28783357,25745752,3
+122912528,25745752,4
+vivizhang,25745752,5
+2985824,25745752,2
+76550737,25745752,3
+2113603,25745752,3
+30410041,25745752,5
+61569107,25745752,1
+122046858,25745752,2
+leabc,25745752,2
+69811813,25745752,2
+52815247,25745752,5
+83429427,25745752,2
+53460924,25745752,-1
+weiwei1020,25745752,2
+Guardianangel,25745752,4
+61474754,25745752,2
+66423300,25745752,3
+83987378,25745752,5
+15859690,25745752,3
+81815749,25745752,2
+50824639,25745752,2
+82581264,25745752,1
+88168548,25745752,4
+76211304,25745752,2
+102747382,25745752,3
+53652006,25745752,2
+52576194,25745752,1
+80171035,25745752,2
+97444159,25745752,4
+linmiao,25745752,3
+126184876,25745752,1
+54220545,25745752,1
+duoduoshuwu,25745752,4
+romanbaby,25745752,2
+64801771,25745752,2
+74163569,25745752,2
+65040252,25745752,4
+43363409,25745752,3
+3050422,25745752,1
+luckia1991,25745752,2
+52465631,25745752,1
+67076211,25745752,2
+82069865,25745752,5
+80784091,25745752,3
+49543853,25745752,3
+4434489,25745752,3
+96784473,25745752,5
+76698487,25745752,-1
+121702182,25745752,3
+40966373,25745752,2
+YuDd.,25745752,2
+49357995,25745752,3
+6384260,25745752,2
+119551734,25745752,4
+4129696,25745752,1
+49296113,25745752,1
+56055715,25745752,1
+66680881,25745752,4
+zizzyzizz,25745752,3
+babycatty,25745752,2
+lvpi,25745752,3
+dee4ever,25745752,3
+Tavico,25745752,3
+75835017,25745752,1
+dont27,25745752,4
+120636759,25745752,1
+xiaojidunmoguxi,25745752,3
+13106819,25745752,1
+shoushouan,25745752,-1
+54680854,25745752,2
+57850067,25745752,4
+KG719,25745752,2
+57335774,25745752,1
+venicedream,25745752,3
+yeyun_n,25745752,5
+raintingfan,25745752,2
+star332,25745752,5
+j946791150,25745752,3
+53743649,25745752,1
+momoicy,25745752,1
+71222358,25745752,1
+50158808,25745752,2
+Yaoguaishushu,25745752,2
+molly1012,25745752,2
+65851516,25745752,3
+csaver,25745752,3
+36499503,25745752,1
+58464727,25745752,5
+93050157,25745752,2
+51800781,25745752,3
+125885775,25745752,5
+91420048,25745752,1
+67214340,25745752,1
+50060410,25745752,1
+68505371,25745752,3
+3284940,25745752,5
+60987007,25745752,3
+58581778,25745752,2
+53260986,25745752,2
+35180180,25745752,5
+53605408,25745752,3
+3563917,25745752,5
+44814557,25745752,4
+gaiasmile,25745752,4
+Ibasyo,25745752,1
+124104250,25745752,1
+111493695,25745752,1
+qairy,25745752,-1
+1189560,25745752,3
+73924798,25745752,1
+60092810,25745752,1
+pure_115,25745752,3
+Aisora,25745752,2
+lan_nal,25745752,2
+Iamapoem,25745752,2
+72929095,25745752,1
+awesomz,25745752,2
+45207350,25745752,2
+54673185,25745752,3
+82329330,25745752,5
+1631122,25745752,2
+happywarm,25745752,4
+DeWatson,25745752,4
+119913085,25745752,1
+wavelpc,25745752,3
+48764715,25745752,5
+67089360,25745752,3
+91655384,25745752,5
+48308518,25745752,3
+4740822,25745752,4
+48048904,25745752,4
+52201112,25745752,3
+dianapoldi,25745752,3
+50844097,25745752,1
+52846055,25745752,4
+119571357,25745752,2
+4306630,25745752,2
+edenhsu,25745752,2
+ddqr,25745752,2
+lovely-Sissi,25745752,3
+vanjohnbob,25745752,2
+xiaoyedeguo,25745752,4
+53530379,25745752,4
+lcn,25745752,2
+YJWDWD,25745752,4
+3278389,25745752,3
+kelci,25745752,-1
+45727227,25745752,2
+4359181,25745752,2
+51330797,25745752,1
+43397816,25745752,4
+39596666,25745752,2
+122399571,25745752,4
+126188591,25745752,2
+Hdodo,25745752,3
+47370737,25745752,3
+lucas90hou,25745752,2
+67738250,25745752,3
+72746491,25745752,3
+122213220,25745752,3
+84217185,25745752,4
+85382563,25745752,4
+67244429,25745752,3
+Baronera,25745752,2
+63425633,25745752,4
+47494111,25745752,3
+33934433,25745752,3
+ViviaChen,25745752,4
+kidwong,25745752,1
+crazy0527,25745752,1
+83317166,25745752,5
+42292941,25745752,1
+lily_fa,25745752,1
+57929787,25745752,5
+50443148,25745752,2
+wiki7,25745752,-1
+49562137,25745752,3
+50709247,25745752,1
+momisa,25745752,2
+Kim1122,25745752,1
+tangnin,25745752,3
+1403190,25745752,3
+qingfengvicky,25745752,5
+69455218,25745752,3
+imagicw,25745752,1
+1303295,25745752,2
+61530247,25745752,2
+Cici0926,25745752,1
+63938212,25745752,3
+78478366,25745752,5
+lostabadan,25745752,-1
+48254044,25745752,2
+49854531,25745752,1
+wkwjolene,25745752,3
+69977807,25745752,4
+48006997,25745752,2
+4279976,25745752,5
+45953948,25745752,1
+68801564,25745752,5
+76626092,25745752,3
+75132715,25745752,5
+65930256,25745752,1
+luzaozao,25745752,1
+80707639,25745752,3
+56812957,25745752,4
+chaimengjie,25745752,4
+iyyhua,25745752,3
+68467702,25745752,3
+Fai-Cai,25745752,3
+50386140,25745752,1
+54602354,25745752,1
+34445967,25745752,2
+3061850,25745752,2
+62238994,25745752,1
+61797796,25745752,3
+3484320,25745752,3
+53833960,25745752,4
+57856212,25745752,3
+randalpoal,25745752,5
+67781034,25745752,-1
+60432635,25745752,1
+61219547,25745752,3
+57059937,25745752,4
+62087939,25745752,2
+121410124,25745752,4
+levido,25745752,3
+dstro,25745752,1
+55984415,25745752,1
+126186740,25745752,5
+89087643,25745752,3
+NaamTsui,25745752,2
+101792589,25745752,5
+57820083,25745752,5
+60234260,25745752,-1
+3330105,25745752,2
+64755839,25745752,2
+tegs,25745752,3
+81107134,25745752,5
+OkaLen,25745752,-1
+76667923,25745752,5
+115807401,25745752,1
+xiaojia86,25745752,1
+jessica0118,25745752,3
+maodaxiong33,25745752,1
+56923561,25745752,3
+Tree4,25745752,1
+59153234,25745752,4
+yaoyaocj,25745752,4
+airan712,25745752,2
+119078211,25745752,3
+foxvia,25745752,3
+bbfary,25745752,3
+42148511,25745752,5
+49342941,25745752,2
+67276689,25745752,2
+56029329,25745752,3
+56908068,25745752,2
+4389847,25745752,5
+a1l2t3,25745752,4
+83130364,25745752,4
+126095873,25745752,5
+49220314,25745752,4
+71715950,25745752,4
+lulu520520,25745752,2
+52710389,25745752,3
+3306665,25745752,1
+1270557,25745752,2
+goer1991,25745752,3
+caosiying,25745752,3
+60901756,25745752,3
+poeee,25745752,1
+1548109,25745752,3
+lies583,25745752,3
+40822080,25745752,3
+upyougo,25745752,2
+lianbeibei,25745752,1
+34310004,25745752,3
+53003962,25745752,4
+sdinger,25745752,3
+60095742,25745752,1
+dongchenxing,25745752,3
+63922807,25745752,5
+73376575,25745752,3
+guguDoris,25745752,2
+121247515,25745752,4
+61324818,25745752,3
+75386626,25745752,5
+Isabella_Meow,25745752,3
+ming_203344,25745752,2
+79773701,25745752,2
+53433843,25745752,2
+78738800,25745752,5
+67529255,25745752,5
+Yiemao,25745752,4
+50622639,25745752,5
+87209971,25745752,2
+119071715,25745752,3
+65268118,25745752,4
+duoran,25745752,4
+119421761,25745752,3
+66620661,25745752,4
+mengqingqing,25745752,2
+ijunojiang,25745752,1
+slswlovelzy,25745752,4
+LISHUANGLOLA,25745752,3
+47243412,25745752,2
+66586650,25745752,3
+59038115,25745752,5
+30367938,25745752,1
+volcancano,25745752,3
+58130346,25745752,3
+53512949,25745752,3
+jielylee,25745752,3
+108561836,25745752,4
+lukeyu,25745752,4
+54865862,25745752,4
+agonii,25745752,1
+50118479,25745752,3
+Pettyi,25745752,3
+58523083,25745752,3
+35342800,25745752,-1
+zhangreeki,25745752,1
+LoveJaejoong,25745752,-1
+yaoyang513,25745752,2
+63414399,25745752,2
+bettermeloveme,25745752,4
+69034155,25745752,4
+124563320,25745752,5
+zhannichen,25745752,1
+abbyabbiesendoh,25745752,3
+nauyuxSilverdew,25745752,1
+39513476,25745752,4
+93027619,25745752,2
+67941529,25745752,1
+aaronfighting,25745752,3
+63864508,25745752,1
+zeta-du,25745752,4
+81745530,25745752,2
+81745530,25745752,2
+2026862,25745752,3
+sfroompp,25745752,3
+65466495,25745752,2
+Abandoned_Sundy,25745752,2
+100144425,25745752,3
+73096568,25745752,1
+52473810,25745752,4
+65583104,25745752,3
+81897833,25745752,3
+121412616,25745752,2
+birdieeos,25745752,3
+81281958,25745752,5
+58636228,25745752,2
+1828264,25745752,-1
+42816825,25745752,-1
+tripster,25745752,1
+81653455,25745752,2
+74862165,25745752,3
+goodnightclara,25745752,4
+mcfeemiki,25745752,5
+45822820,25745752,4
+114567900,25745752,4
+Hey_825,25745752,4
+85310751,25745752,4
+74590863,25745752,5
+48929842,25745752,2
+34805000,25745752,4
+33684021,25745752,1
+52667302,25745752,2
+shimmer825,25745752,2
+43618482,25745752,4
+92025447,25745752,3
+68936887,25745752,2
+tearabbit,25745752,4
+sunnyday-u,25745752,3
+sylvi,25745752,2
+47227699,25745752,3
+50624122,25745752,3
+77718867,25745752,3
+3725907,25745752,3
+liujinyu,25745752,2
+yigeguniang,25745752,1
+80177881,25745752,2
+39687505,25745752,5
+kathychu,25745752,2
+zhuakuangshitai,25745752,2
+AmberArch,25745752,4
+115943222,25745752,2
+68071230,25745752,2
+hiddenmonkey,25745752,1
+81833605,25745752,-1
+s_sc1,25745752,2
+udandan,25745752,4
+52444491,25745752,4
+49872790,25745752,1
+chenjingLU,25745752,-1
+44374598,25745752,3
+haizizang5,25745752,3
+3397020,25745752,4
+92576305,25745752,1
+izemo-sunny,25745752,4
+63045020,25745752,2
+ctotoro,25745752,5
+Flora1119,25745752,-1
+49425371,25745752,4
+67944780,25745752,1
+59103272,25745752,-1
+43554739,25745752,4
+71348074,25745752,1
+119484113,25745752,3
+4387966,25745752,3
+71135423,25745752,3
+52626969,25745752,2
+47993544,25745752,3
+119694915,25745752,3
+2635787,25745752,4
+70402235,25745752,1
+wandoulove,25745752,3
+diatunifee,25745752,3
+75828184,25745752,-1
+Miss.Perhaps,25745752,-1
+67336403,25745752,5
+B-B-B-Side,25745752,1
+85028525,25745752,2
+92762833,25745752,3
+113677173,25745752,1
+58063020,25745752,5
+48490607,25745752,3
+92459635,25745752,5
+104559787,25745752,3
+48876851,25745752,4
+73655682,25745752,5
+moenning,25745752,3
+3046293,25745752,1
+47795148,25745752,4
+41865149,25745752,3
+121615724,25745752,1
+52222041,25745752,1
+26194428,25745752,2
+58189352,25745752,3
+38327139,25745752,3
+kayomii,25745752,3
+52011624,25745752,4
+74510100,25745752,4
+92964739,25745752,1
+bestsecretlife,25745752,2
+88528701,25745752,1
+6239310,25745752,1
+68269627,25745752,4
+53998631,25745752,3
+57630254,25745752,4
+sakuranomiya,25745752,4
+2816656,25745752,3
+dear.sunny,25745752,4
+bola-hui,25745752,3
+ifycing,25745752,4
+46880306,25745752,4
+64789824,25745752,5
+kathytop,25745752,3
+AbiesMill,25745752,1
+61366288,25745752,2
+84147839,25745752,1
+46309984,25745752,5
+leexiang,25745752,2
+kuangsao,25745752,-1
+duanzizai,25745752,3
+71177607,25745752,2
+puayin,25745752,1
+lgn,25745752,5
+liuqiqi,25745752,2
+76590839,25745752,5
+liaomengying,25745752,1
+4194244,25745752,1
+jiyongoppa,25745752,3
+80297866,25745752,4
+rackjackcn,25745752,1
+70161155,25745752,2
+48240288,25745752,1
+79151265,25745752,1
+jiansforever,25745752,4
+pawear,25745752,4
+14627562,25745752,3
+lt900708,25745752,3
+mio1989,25745752,1
+57982510,25745752,2
+maydayfuck,25745752,4
+54372624,25745752,3
+120420039,25745752,3
+74170855,25745752,3
+56990342,25745752,2
+58617905,25745752,1
+104152076,25745752,3
+XLAngel,25745752,3
+73828343,25745752,2
+izaijin,25745752,2
+ceh19930603,25745752,1
+65510626,25745752,3
+hellowind,25745752,2
+121793456,25745752,1
+67618142,25745752,3
+yaozi0426,25745752,2
+80230025,25745752,3
+106207289,25745752,3
+45454807,25745752,2
+91114476,25745752,1
+34104565,25745752,-1
+14965275,25745752,3
+63383010,25745752,3
+87501952,25745752,5
+47152561,25745752,2
+19734042,25745752,3
+D_Da1sy,25745752,3
+110189050,25745752,-1
+48494718,25745752,3
+103680149,25745752,2
+62476854,25745752,3
+yyw0306,25745752,3
+japhy121,25745752,2
+53945496,25745752,4
+2243854,25745752,4
+ada7603,25745752,1
+107438665,25745752,2
+73410174,25745752,5
+66686811,25745752,1
+pkunlz,25745752,4
+anniee,25745752,-1
+72243861,25745752,1
+CoffeeYuan,25745752,3
+leftpomelo,25745752,3
+58204376,25745752,4
+20057083,25745752,4
+baron-K,25745752,2
+69822920,25745752,1
+78925645,25745752,3
+livinoreal,25745752,3
+yangmianyang,25745752,2
+57161995,25745752,2
+soranya,25745752,1
+zero520,25745752,2
+73469799,25745752,1
+76077313,25745752,1
+75115896,25745752,3
+52506762,25745752,3
+113572352,25745752,2
+86598985,25745752,1
+14358522,25745752,1
+84346271,25745752,2
+73704011,25745752,1
+3646254,25745752,5
+watermelondeer,25745752,5
+50088327,25745752,1
+7214513,25745752,2
+Renee101,25745752,1
+chanel0214,25745752,3
+stomach_ache,25745752,2
+67894475,25745752,3
+61863577,25745752,3
+62927775,25745752,2
+mexihu,25745752,5
+elcm,25745752,1
+59992887,25745752,2
+75175953,25745752,4
+dodo729,25745752,4
+smilyk,25745752,1
+2366487,25745752,5
+nancyxik,25745752,4
+57104894,25745752,1
+115613463,25745752,1
+bonbonju,25745752,5
+48871407,25745752,-1
+62444334,25745752,5
+iear,25745752,1
+dumblesong,25745752,3
+52576008,25745752,2
+119404798,25745752,3
+70294430,25745752,3
+79170701,25745752,3
+102818452,25745752,1
+88292094,25745752,2
+46207489,25745752,1
+yingyujiaoshi,25745752,1
+83259241,25745752,2
+cuplzsh,25745752,3
+81973756,25745752,3
+9915911,25745752,3
+121779298,25745752,2
+46512598,25745752,1
+67765216,25745752,3
+62345614,25745752,4
+anliye,25745752,3
+77203417,25745752,3
+117360867,25745752,-1
+68269996,25745752,2
+nic0311,25745752,1
+icyci,25745752,3
+vivian-Cheng,25745752,1
+42860506,25745752,4
+45843509,25745752,1
+47949405,25745752,2
+80752202,25745752,4
+3313195,25745752,3
+91821810,25745752,4
+87410268,25745752,3
+4370686,25745752,4
+122496758,25745752,3
+52203110,25745752,1
+43398593,25745752,-1
+seaskyLK,25745752,3
+qiaqia320,25745752,2
+66348303,25745752,1
+xiguai,25745752,2
+63513932,25745752,3
+115686371,25745752,3
+88011281,25745752,1
+52360256,25745752,3
+84028552,25745752,3
+49199928,25745752,5
+2679311,25745752,2
+1493589,25745752,3
+126125294,25745752,3
+arielxin,25745752,1
+47048413,25745752,2
+89320570,25745752,1
+YvetteYvette,25745752,3
+57823211,25745752,-1
+42949382,25745752,2
+68740087,25745752,3
+subibi_0018,25745752,2
+66329057,25745752,1
+jeffersontang,25745752,1
+1594503,25745752,5
+54848736,25745752,4
+45679618,25745752,1
+50221817,25745752,4
+83134774,25745752,3
+Chikomoumao,25745752,5
+116052846,25745752,5
+34549773,25745752,4
+121850059,25745752,2
+58580022,25745752,5
+48935399,25745752,5
+83817130,25745752,1
+vc017,25745752,2
+101647444,25745752,1
+53677228,25745752,1
+52520125,25745752,-1
+3514375,25745752,3
+ecane,25745752,2
+edijason,25745752,-1
+47024053,25745752,2
+36591097,25745752,4
+59524724,25745752,5
+43856844,25745752,5
+77438048,25745752,1
+aagg36121,25745752,3
+43562341,25745752,2
+xiaojirou007,25745752,3
+gudongdonggu,25745752,4
+indoors,25745752,-1
+96410540,25745752,1
+76544638,25745752,1
+69000560,25745752,3
+98489007,25745752,3
+35085554,25745752,2
+50012009,25745752,1
+pandoragbn,25745752,4
+31207408,25745752,1
+66071884,25745752,5
+44078982,25745752,1
+97306162,25745752,5
+52718701,25745752,3
+64529195,25745752,5
+croyn,25745752,-1
+mxymj729,25745752,3
+69275711,25745752,4
+sugarsugarcane,25745752,1
+33656787,25745752,1
+91994560,25745752,1
+113275992,25745752,4
+menggutuji,25745752,5
+41194137,25745752,2
+126160039,25745752,1
+4674424,25745752,2
+chrisyoopsy,25745752,4
+49028296,25745752,1
+121022970,25745752,1
+71025729,25745752,1
+73667987,25745752,1
+66539223,25745752,2
+32937393,25745752,5
+luoyingling,25745752,3
+57894449,25745752,3
+43666528,25745752,1
+62555084,25745752,3
+yinghu,25745752,4
+62024523,25745752,2
+43969731,25745752,-1
+56967663,25745752,3
+tc1949,25745752,1
+48904339,25745752,3
+mathwaiting,25745752,1
+63682991,25745752,5
+36541831,25745752,1
+63503398,25745752,3
+zoe605533485,25745752,1
+loveyavintage,25745752,2
+58863431,25745752,3
+2146274,25745752,4
+122657372,25745752,4
+53914126,25745752,3
+114658288,25745752,1
+77771379,25745752,4
+gossipatupper,25745752,4
+81346317,25745752,2
+57583046,25745752,4
+69163444,25745752,1
+C_Perk,25745752,2
+suxiv,25745752,1
+93208688,25745752,1
+c2c3,25745752,4
+4886516,25745752,3
+9354883,25745752,1
+3515794,25745752,3
+80846705,25745752,4
+64091286,25745752,3
+3989769,25745752,2
+51715999,25745752,1
+119641961,25745752,1
+121369893,25745752,5
+62156108,25745752,3
+64804918,25745752,3
+68705275,25745752,1
+66993627,25745752,2
+63790894,25745752,4
+Goeasy,25745752,5
+62268815,25745752,1
+76443964,25745752,3
+84234924,25745752,1
+bearblindman,25745752,1
+51763667,25745752,2
+kylinsan,25745752,5
+125369308,25745752,1
+35192408,25745752,4
+bingo-kll,25745752,4
+125783118,25745752,1
+34949221,25745752,1
+82096975,25745752,1
+3480496,25745752,1
+63672511,25745752,2
+k1na,25745752,1
+xqyamour,25745752,3
+58980651,25745752,4
+alacrity,25745752,-1
+62490892,25745752,5
+55479744,25745752,3
+120886080,25745752,3
+124257806,25745752,2
+doraeman,25745752,3
+SUNNY927,25745752,3
+55315350,25745752,2
+55942870,25745752,3
+71985811,25745752,2
+jintoudexing,25745752,3
+79677319,25745752,1
+3570398,25745752,5
+serena0848,25745752,5
+62259637,25745752,1
+66784871,25745752,2
+seafans,25745752,3
+65224694,25745752,3
+l5xsl,25745752,2
+115212595,25745752,2
+82691525,25745752,4
+fumihiko1985,25745752,2
+113752134,25745752,4
+87488888,25745752,3
+3475951,25745752,2
+41629334,25745752,2
+65573770,25745752,3
+helemon,25745752,2
+yilingbaihe,25745752,3
+2809964,25745752,3
+87642267,25745752,4
+eddy_charlie,25745752,2
+stacey0507,25745752,5
+116508377,25745752,1
+51736844,25745752,-1
+72444352,25745752,1
+53256326,25745752,2
+61236868,25745752,4
+63410566,25745752,2
+50221695,25745752,5
+farewellxxrx,25745752,3
+Who.care.,25745752,3
+shichunmeng,25745752,-1
+aomiz,25745752,1
+mmmmmya,25745752,3
+43725183,25745752,5
+46758156,25745752,1
+56160592,25745752,2
+skins_tony,25745752,4
+63392102,25745752,5
+92649048,25745752,3
+81785994,25745752,1
+54180373,25745752,5
+65213268,25745752,3
+nineism,25745752,3
+mlcf,25745752,3
+pop5475,25745752,3
+79109261,25745752,4
+126145571,25745752,1
+52246931,25745752,1
+3993595,25745752,4
+tl372228075,25745752,1
+42535832,25745752,1
+63227061,25745752,4
+64160255,25745752,5
+CRA1G,25745752,3
+57827622,25745752,-1
+51645217,25745752,1
+steero1015,25745752,3
+102200849,25745752,3
+124640229,25745752,3
+lrc940928,25745752,3
+31462086,25745752,1
+fusiji,25745752,1
+82741086,25745752,3
+106497872,25745752,1
+44517782,25745752,2
+55990410,25745752,3
+yuxiangyun,25745752,5
+78422649,25745752,-1
+geniuswan,25745752,2
+script217,25745752,4
+qijiuzhiyue,25745752,1
+99331350,25745752,4
+hanax4,25745752,4
+57510931,25745752,2
+deardeerdearme,25745752,3
+100836149,25745752,3
+bill86101,25745752,1
+bearwinner,25745752,3
+63253187,25745752,5
+102602350,25745752,1
+59210685,25745752,1
+77809977,25745752,3
+79074513,25745752,1
+65174941,25745752,5
+66813486,25745752,2
+52117580,25745752,1
+60764117,25745752,5
+72113417,25745752,5
+vividzjr,25745752,5
+weixiaobaobao,25745752,2
+68264319,25745752,3
+57800427,25745752,3
+49404591,25745752,5
+88412200,25745752,5
+Jin-ze,25745752,5
+112360900,25745752,3
+80845511,25745752,1
+125476983,25745752,5
+98846309,25745752,5
+ishtarie,25745752,3
+120593690,25745752,5
+StoneandFlower,25745752,1
+69223309,25745752,2
+63527233,25745752,3
+nightbox,25745752,4
+2819362,25745752,1
+78809440,25745752,1
+46981371,25745752,1
+91379888,25745752,4
+98436048,25745752,1
+yz501,25745752,3
+124504451,25745752,1
+93561411,25745752,1
+standyvan,25745752,2
+43062291,25745752,5
+33529236,25745752,4
+joyceshow,25745752,5
+60605103,25745752,3
+27246567,25745752,2
+9274036,25745752,3
+87988157,25745752,4
+68679029,25745752,2
+Campion,25745752,-1
+123349165,25745752,1
+47379208,25745752,1
+81732674,25745752,1
+zhizhi5,25745752,4
+63192896,25745752,1
+wangyani,25745752,5
+86193611,25745752,5
+50273478,25745752,4
+52161799,25745752,5
+57972002,25745752,1
+99910728,25745752,1
+68433418,25745752,2
+michicody,25745752,5
+ycone,25745752,1
+Dr.Hannibal,25745752,1
+InfoG,25745752,2
+80033670,25745752,5
+1725462,25745752,5
+125965009,25745752,2
+88899585,25745752,1
+52899301,25745752,5
+48501027,25745752,1
+1381463,25745752,5
+haha654,25745752,3
+ly_yun811,25745752,4
+3811853,25745752,1
+80822437,25745752,1
+125111991,25745752,1
+58273018,25745752,5
+56645472,25745752,1
+72953763,25745752,1
+35330741,25745752,3
+35330741,25745752,3
+sssh,25745752,4
+1368059,25745752,1
+72179400,25745752,3
+83220891,25745752,4
+55770977,25745752,1
+88012352,25745752,2
+kim899,25745752,5
+103214078,25745752,3
+48131684,25745752,1
+66292492,25745752,4
+67294761,25745752,3
+btjd,25745752,3
+littleaprilfool,25745752,1
+hypnoticboy,25745752,1
+74553947,25745752,1
+96994268,25745752,3
+3411325,25745752,4
+82151381,25745752,5
+lingfriendly,25745752,4
+60653434,25745752,3
+sennytime,25745752,5
+59102193,25745752,1
+tansydreamslink,25745752,3
+3485385,25745752,1
+smallriver,25745752,4
+4791701,25745752,3
+58009802,25745752,3
+55882161,25745752,3
+85901553,25745752,3
+52271140,25745752,-1
+rainymu,25745752,3
+56998031,25745752,3
+6734075,25745752,5
+49407288,25745752,-1
+wind_field,25745752,1
+62960950,25745752,2
+snowchong1984,25745752,4
+48026180,25745752,2
+nothingkitsch,25745752,2
+64124840,25745752,1
+45182883,25745752,5
+3597129,25745752,4
+z_fleur,25745752,4
+2173034,25745752,-1
+84194737,25745752,1
+53434934,25745752,2
+Alan-H,25745752,3
+1344200,25745752,4
+june.q,25745752,2
+69016984,25745752,1
+echoing2013,25745752,-1
+SakuraSakurada,25745752,3
+76998767,25745752,3
+71407779,25745752,3
+joanna726,25745752,5
+iklong,25745752,4
+57542378,25745752,2
+121425871,25745752,4
+119931381,25745752,3
+54753928,25745752,3
+33734840,25745752,4
+60834753,25745752,1
+63101856,25745752,3
+Melbourner,25745752,4
+su311,25745752,2
+76225555,25745752,1
+81329407,25745752,3
+59408891,25745752,4
+38246464,25745752,1
+82021088,25745752,1
+79907287,25745752,1
+47904697,25745752,5
+coco91718,25745752,4
+46797913,25745752,4
+53795550,25745752,1
+qianqian7xh,25745752,3
+pineapples,25745752,3
+sunnyink,25745752,2
+122270068,25745752,3
+120892030,25745752,3
+WendiMurdoch,25745752,1
+66602653,25745752,5
+bjmiss,25745752,1
+58630285,25745752,1
+121076786,25745752,1
+55769747,25745752,5
+65313383,25745752,1
+shiyun.sherry,25745752,1
+curtis_zhu,25745752,5
+91580919,25745752,1
+115072556,25745752,1
+74871784,25745752,1
+65735533,25745752,4
+3967385,25745752,4
+66057037,25745752,3
+84652846,25745752,1
+47509679,25745752,3
+susiesmile,25745752,1
+53899164,25745752,1
+55852519,25745752,2
+37740959,25745752,1
+49931157,25745752,4
+57315902,25745752,1
+48990593,25745752,3
+Enigmapoet,25745752,3
+queenic,25745752,3
+102053653,25745752,1
+68923501,25745752,1
+ruoruoheng,25745752,4
+Jsophia,25745752,3
+tanya_yan,25745752,3
+3693808,25745752,2
+Gorjess3,25745752,2
+4473871,25745752,3
+52462524,25745752,-1
+97503255,25745752,1
+MONSTER-HaN,25745752,1
+63140817,25745752,5
+74385868,25745752,2
+54801845,25745752,5
+85324202,25745752,1
+75733367,25745752,2
+71654816,25745752,4
+40756690,25745752,3
+114290703,25745752,3
+64266034,25745752,2
+sunflower_zhy,25745752,5
+69137072,25745752,1
+djinn77,25745752,3
+121118830,25745752,2
+72441940,25745752,4
+22342554,25745752,3
+85338149,25745752,1
+41942106,25745752,1
+85391551,25745752,2
+MademoiselleXie,25745752,2
+93668317,25745752,2
+44049094,25745752,5
+84973514,25745752,2
+84973514,25745752,2
+120828757,25745752,3
+70371869,25745752,2
+84422023,25745752,2
+84585718,25745752,1
+35438123,25745752,3
+44286506,25745752,1
+harukimlee,25745752,2
+74313797,25745752,-1
+89747225,25745752,3
+121986674,25745752,4
+tu_bi_yang,25745752,3
+52582332,25745752,1
+75651301,25745752,5
+29973964,25745752,3
+49396445,25745752,2
+41484631,25745752,2
+baoziyudigua,25745752,4
+4655887,25745752,4
+99309591,25745752,2
+cheng4496,25745752,3
+lishidai93,25745752,4
+46243415,25745752,3
+92032476,25745752,3
+53344657,25745752,3
+aibaobaoguai327,25745752,3
+4666209,25745752,4
+jael0000,25745752,-1
+59025385,25745752,1
+51908403,25745752,1
+zhaimao,25745752,3
+33130502,25745752,5
+4530938,25745752,1
+ls_9211,25745752,3
+41279117,25745752,2
+Dlulu,25745752,2
+xiguaguantou,25745752,4
+2329339,25745752,3
+yanranlemon,25745752,3
+wang346591260,25745752,3
+83143182,25745752,3
+K.Night,25745752,4
+2634815,25745752,4
+annkie,25745752,5
+51235772,25745752,3
+v1wanghuang,25745752,4
+6644981,25745752,3
+74077521,25745752,-1
+63874058,25745752,3
+kwasii,25745752,1
+17881602,25745752,3
+46480705,25745752,2
+xiaomaowaxika,25745752,3
+christna,25745752,3
+92398159,25745752,1
+90904421,25745752,2
+arecibo,25745752,1
+dudunvmotou,25745752,4
+48723518,25745752,3
+3346986,25745752,1
+52464033,25745752,3
+zrocky,25745752,3
+3380037,25745752,4
+31389307,25745752,3
+tiara24,25745752,3
+85054280,25745752,3
+48501430,25745752,4
+53386586,25745752,3
+54222336,25745752,3
+65075320,25745752,5
+53172916,25745752,3
+3296176,25745752,4
+sqxmy,25745752,3
+48017863,25745752,3
+69134335,25745752,4
+rainstopgoodbye,25745752,1
+zoe970829,25745752,3
+45041466,25745752,4
+62159352,25745752,5
+53966112,25745752,3
+53966112,25745752,3
+ripplelien,25745752,3
+31559590,25745752,3
+yujialin,25745752,2
+babycandy,25745752,1
+shelleywh,25745752,1
+67836856,25745752,1
+MariahCD,25745752,4
+64160321,25745752,3
+VirginiaHsu,25745752,3
+4401259,25745752,3
+88410895,25745752,4
+summer712,25745752,5
+yimianmian,25745752,4
+52312074,25745752,3
+60157768,25745752,4
+82915499,25745752,4
+57065086,25745752,4
+120336940,25745752,3
+82578796,25745752,3
+55575027,25745752,4
+lubinfan,25745752,4
+clarattttt,25745752,3
+44581367,25745752,1
+81294123,25745752,-1
+77654313,25745752,3
+91263818,25745752,1
+2092985,25745752,2
+2529003,25745752,-1
+jionghuming,25745752,4
+2547310,25745752,3
+122329830,25745752,3
+44817324,25745752,2
+62993339,25745752,1
+2849635,25745752,1
+cooop,25745752,3
+81412725,25745752,3
+57566252,25745752,1
+66405619,25745752,2
+32022704,25745752,4
+91952258,25745752,2
+paka4,25745752,1
+52647007,25745752,5
+91561477,25745752,4
+LBHsmile,25745752,4
+82811308,25745752,4
+49045306,25745752,1
+57537354,25745752,2
+tonyuanChen,25745752,2
+82832857,25745752,2
+lqh815,25745752,2
+cheng_Ting,25745752,2
+114647405,25745752,2
+61999118,25745752,1
+ooshan,25745752,3
+65063242,25745752,1
+bulijite,25745752,3
+ymxdd326,25745752,4
+50755752,25745752,3
+64735575,25745752,2
+55859412,25745752,1
+4056788,25745752,-1
+57467904,25745752,2
+2471940,25745752,3
+lululovexiah,25745752,-1
+wunaihuaqi,25745752,2
+61651466,25745752,5
+JOCK,25745752,4
+vibrant_mind,25745752,5
+sallyvivi,25745752,2
+61624734,25745752,5
+36716093,25745752,3
+65339878,25745752,4
+yumengya,25745752,4
+52801321,25745752,2
+63550302,25745752,3
+78386968,25745752,1
+gaoxiaopang,25745752,2
+33674931,25745752,4
+Orchid,25745752,2
+22811115,25745752,5
+115634040,25745752,-1
+half2nine,25745752,3
+whisperdolphin,25745752,3
+70154626,25745752,1
+54906238,25745752,4
+55462319,25745752,1
+60080924,25745752,4
+yunxin92,25745752,3
+yihongmeilan,25745752,5
+47609007,25745752,2
+chesterchoi,25745752,2
+ffliens,25745752,3
+jeffchuwei,25745752,3
+53235782,25745752,4
+47696504,25745752,5
+82494304,25745752,3
+48573240,25745752,3
+lotusmomo,25745752,4
+105494552,25745752,3
+DOOLYUNI,25745752,4
+92649072,25745752,3
+supermanfang,25745752,3
+quanzhouren,25745752,1
+44564870,25745752,3
+sangye,25745752,1
+76790235,25745752,2
+NNNNNian-,25745752,1
+115670211,25745752,4
+2021877,25745752,3
+57311033,25745752,3
+124136324,25745752,2
+61621681,25745752,2
+51503621,25745752,3
+54215499,25745752,2
+38920427,25745752,-1
+lingrui1995,25745752,-1
+duanbaba,25745752,3
+57057093,25745752,3
+72536411,25745752,2
+68905253,25745752,3
+PoooZz,25745752,3
+ding1yi,25745752,3
+maimai251,25745752,2
+79846202,25745752,3
+s-a-d,25745752,3
+52885236,25745752,4
+Mathilda_428,25745752,3
+93455996,25745752,3
+63894161,25745752,5
+68145483,25745752,3
+47840871,25745752,4
+59587066,25745752,2
+56609950,25745752,1
+sordk,25745752,5
+goxilg,25745752,4
+lancang,25745752,2
+54740356,25745752,3
+63299955,25745752,3
+sdllovewly,25745752,3
+45824223,25745752,5
+45107933,25745752,3
+62599463,25745752,-1
+Dannylynn,25745752,4
+73471222,25745752,5
+susie1991,25745752,2
+mariahbfly,25745752,2
+xxxxxxdee,25745752,2
+51318360,25745752,-1
+muxiaomi,25745752,3
+1503749,25745752,4
+socialism,25745752,3
+58924080,25745752,3
+52298907,25745752,5
+56769973,25745752,3
+50126982,25745752,5
+sasky,25745752,3
+3978577,25745752,4
+songzi,25745752,1
+57949224,25745752,3
+JazzJohnny,25745752,2
+61619787,25745752,2
+82231172,25745752,2
+129032954,25745752,3
+69336085,25745752,3
+102156765,25745752,4
+59302581,25745752,3
+narcisusss,25745752,4
+chenhuangchao,25745752,4
+57409751,25745752,5
+120945947,25745752,3
+58993802,25745752,2
+56035155,25745752,2
+133235780,25745752,5
+131892019,25745752,5
+136663776,25745752,2
+114745452,25745752,2
+120424017,25745752,-1
+88075202,25745752,1
+Small_Wan,25745752,4
+alen_chy11344,11540651,3
+lmx1220,11540651,4
+57262819,11540651,3
+53025831,11540651,2
+35806544,11540651,3
+woaiwoziji1314,11540651,4
+85422025,11540651,-1
+84872284,11540651,3
+57382412,11540651,-1
+44096316,11540651,3
+lingdongling,11540651,3
+90546251,11540651,4
+76798161,11540651,4
+54159008,11540651,5
+wwwsxst,11540651,4
+109463525,11540651,4
+61558891,11540651,1
+48132079,11540651,5
+50293369,11540651,5
+91677665,11540651,5
+28308658,11540651,-1
+sophiazt,11540651,-1
+ilmarie,11540651,4
+131025179,11540651,3
+51093087,11540651,3
+62883035,11540651,4
+clankyacml,11540651,3
+37945803,11540651,3
+47593124,11540651,3
+62677477,11540651,3
+71995699,11540651,5
+67731504,11540651,3
+1536123,11540651,-1
+jpdong,11540651,4
+DavyNight,11540651,4
+64242861,11540651,4
+49142490,11540651,3
+103325989,11540651,4
+75497990,11540651,5
+nanxisunny0514,11540651,5
+122868077,11540651,3
+128596881,11540651,4
+Ruty1985,11540651,4
+49711912,11540651,4
+137178370,11540651,4
+76357897,11540651,3
+63202815,11540651,5
+127169144,11540651,4
+125675802,11540651,3
+135279955,11540651,3
+Yinaly,11540651,3
+doon7,11540651,4
+59664886,11540651,4
+a5045402,11540651,4
+122944258,11540651,3
+95980532,11540651,4
+1981762,11540651,3
+wyjfl,11540651,4
+137061387,11540651,2
+134417369,11540651,4
+Pridsl,11540651,4
+98014856,11540651,3
+66333721,11540651,3
+32959269,11540651,4
+5318547,11540651,3
+128020172,11540651,3
+made-by-stan,11540651,4
+59901599,11540651,3
+66591270,11540651,5
+37402473,11540651,3
+63265733,11540651,4
+Sunny851020,11540651,2
+52883078,11540651,3
+Zazai,11540651,2
+50418082,11540651,5
+1943610,11540651,3
+gyz,11540651,3
+126467467,11540651,4
+81998298,11540651,3
+59714184,11540651,3
+67232116,11540651,-1
+135603135,11540651,4
+102840070,11540651,5
+HanHi,11540651,2
+yayayayay,11540651,5
+64865282,11540651,3
+64954125,11540651,4
+98956225,11540651,3
+103277074,11540651,4
+62319857,11540651,3
+14699938,11540651,2
+Taiup,11540651,4
+58776311,11540651,5
+104839897,11540651,5
+131909298,11540651,3
+81149989,11540651,3
+58691394,11540651,4
+kadai929,11540651,2
+addff,11540651,4
+123997632,11540651,5
+64713560,11540651,4
+83127130,11540651,3
+64723431,11540651,3
+88658178,11540651,3
+qimaoyu,11540651,5
+120250936,11540651,5
+52644042,11540651,4
+105462772,11540651,4
+125373467,11540651,3
+49913788,11540651,3
+47037959,11540651,2
+65580779,11540651,2
+137206904,11540651,4
+xianxiansushou,11540651,3
+booboo777,11540651,3
+47800725,11540651,4
+124640229,11540651,3
+45012026,11540651,5
+69838036,11540651,1
+130952703,11540651,4
+96774487,11540651,3
+120996153,11540651,2
+134625303,11540651,3
+wudongmian,11540651,4
+53431261,11540651,4
+74752187,11540651,4
+sniperchris,11540651,3
+116295813,11540651,4
+4528157,11540651,3
+enjoyfreedom,11540651,3
+Seeos,11540651,3
+53324509,11540651,5
+92224480,11540651,4
+kangwenyi,11540651,4
+84010010,11540651,4
+1767400,11540651,3
+anyone,11540651,3
+121565821,11540651,3
+83412988,11540651,5
+spx,11540651,3
+pinecone511,11540651,5
+103305507,11540651,4
+58549515,11540651,5
+82046546,11540651,4
+59575014,11540651,3
+65510449,11540651,3
+128468373,11540651,3
+136496987,11540651,4
+1627841,11540651,5
+starry_liu,11540651,3
+101722942,11540651,3
+136593391,11540651,2
+121362164,11540651,3
+deardeer92,11540651,4
+zhaorouqiu,11540651,5
+100497038,11540651,4
+91140276,11540651,3
+59135946,11540651,3
+nealwzn,11540651,3
+46361626,11540651,3
+81285027,11540651,-1
+shadyyyyy,11540651,4
+tongziyam,11540651,3
+102108363,11540651,3
+nizhenhua1981,11540651,3
+119559372,11540651,4
+50835910,11540651,4
+ivylal,11540651,3
+136057924,11540651,1
+135725760,11540651,4
+44286528,11540651,3
+129776064,11540651,4
+55406228,11540651,3
+47421248,11540651,-1
+51266077,11540651,4
+14088916,11540651,4
+67153884,11540651,5
+wuyanghuxi,11540651,3
+80246281,11540651,3
+72995803,11540651,-1
+123635851,11540651,4
+caixiaoqiang,11540651,5
+50887988,11540651,3
+94767953,11540651,4
+48121857,11540651,2
+66481682,11540651,4
+4482032,11540651,3
+Mr.tao,11540651,3
+37160547,11540651,3
+52489598,11540651,2
+76244481,11540651,3
+121289283,11540651,3
+2487199,11540651,2
+2446517,11540651,3
+134495648,11540651,3
+59799868,11540651,4
+joeysuri,11540651,4
+43153098,11540651,3
+59859213,11540651,4
+49324923,11540651,5
+49324923,11540651,5
+126186349,11540651,5
+54041008,11540651,-1
+ecolizx,11540651,4
+62677139,11540651,3
+124980141,11540651,5
+53680946,11540651,2
+135703307,11540651,4
+3679450,11540651,4
+55598262,11540651,5
+duax,11540651,4
+58429306,11540651,4
+49022002,11540651,4
+128247907,11540651,5
+102184149,11540651,4
+68102477,11540651,4
+98174233,11540651,4
+91808189,11540651,4
+64302220,11540651,3
+ellie1501240013,11540651,4
+ellie1501240013,11540651,4
+88853288,11540651,5
+40966373,11540651,4
+44358201,11540651,3
+47840013,11540651,5
+122296517,11540651,3
+29839010,11540651,3
+52652829,11540651,4
+55983243,11540651,4
+70648140,11540651,3
+happinessspace,11540651,4
+fenshoudashi,11540651,3
+2754204,11540651,3
+46402600,11540651,3
+63359487,11540651,3
+49390358,11540651,4
+ivydehouse,11540651,3
+60047782,11540651,4
+53343599,11540651,4
+61146756,11540651,4
+64529500,11540651,4
+74249669,11540651,4
+jbecks,11540651,3
+76216989,11540651,4
+40591271,11540651,4
+134128447,11540651,3
+lockrock,11540651,4
+45648190,11540651,3
+134938707,11540651,4
+135260479,11540651,3
+125165455,11540651,3
+Byebye-lilian,11540651,4
+102627576,11540651,4
+Alicia_Y,11540651,4
+46099230,11540651,3
+132959097,11540651,3
+alwaysaway,11540651,3
+54344998,11540651,3
+97354586,11540651,3
+52313418,11540651,3
+113285477,11540651,3
+sunnyshd,11540651,4
+pinxue,11540651,4
+16870391,11540651,4
+53254724,11540651,-1
+58863257,11540651,5
+aben,11540651,5
+35873648,11540651,3
+61479485,11540651,3
+133029940,11540651,3
+59865394,11540651,-1
+50318763,11540651,4
+33819207,11540651,5
+31117141,11540651,4
+birdersky,11540651,4
+Rotta,11540651,3
+43141090,11540651,3
+61888159,11540651,4
+36940575,11540651,4
+40970313,11540651,3
+40970313,11540651,3
+VicS,11540651,4
+126943943,11540651,3
+mistlessea,11540651,4
+123688744,11540651,2
+69614184,11540651,5
+42835041,11540651,3
+68825025,11540651,4
+69691925,11540651,3
+79748311,11540651,4
+1434867,11540651,3
+45193776,11540651,4
+tianhao8316,11540651,3
+82934026,11540651,4
+daisylikeu,11540651,3
+titiegg,11540651,4
+122482788,11540651,3
+42137156,11540651,3
+53463101,11540651,3
+2733941,11540651,2
+zoufei0404,11540651,4
+64757557,11540651,4
+50459857,11540651,3
+57378206,11540651,1
+liumessi,11540651,3
+69020759,11540651,4
+134269871,11540651,4
+126579453,11540651,5
+51606142,11540651,2
+DivaTequila,11540651,3
+76331020,11540651,3
+3700850,11540651,4
+o844,11540651,2
+133918620,11540651,3
+51578168,11540651,5
+92619228,11540651,2
+78571536,11540651,5
+54740979,11540651,3
+vitamin227,11540651,3
+69232328,11540651,3
+63108147,11540651,3
+nikkispaghetti,11540651,3
+72642943,11540651,3
+justnijin,11540651,5
+26545118,11540651,5
+echo_ch,11540651,4
+52056943,11540651,4
+64700587,11540651,4
+52521119,11540651,3
+fallune,11540651,3
+57566252,11540651,3
+134004054,11540651,-1
+86807674,11540651,3
+67011353,11540651,4
+42783992,11540651,2
+74564961,11540651,3
+105390195,11540651,4
+70603009,11540651,3
+susie1991,11540651,4
+10214968,11540651,3
+133847224,11540651,4
+runhawker,11540651,4
+dellama,11540651,4
+133556437,11540651,4
+echoditto,11540651,3
+tyx033333,11540651,-1
+65469860,11540651,3
+Shyisnotshy,11540651,3
+79404532,11540651,4
+4765195,11540651,4
+70840584,11540651,5
+62873685,11540651,4
+61235459,11540651,-1
+93956744,11540651,4
+zhixiayufei,11540651,4
+4294774,11540651,4
+50278899,11540651,4
+133575194,11540651,3
+78488765,11540651,4
+79254008,11540651,5
+77626905,11540651,3
+41351821,11540651,4
+44303318,11540651,2
+89081852,11540651,3
+3640801,11540651,5
+45461182,11540651,4
+3474392,11540651,4
+69753373,11540651,3
+92842822,11540651,5
+robins1979,11540651,4
+115827848,11540651,4
+who_a_hana,11540651,3
+longya,11540651,3
+80245940,11540651,4
+Q289637188,11540651,3
+53316387,11540651,4
+hdkoo,11540651,1
+82725323,11540651,3
+96473743,11540651,3
+magicxiaobi,11540651,3
+68596231,11540651,2
+giacintaxx,11540651,4
+43258987,11540651,4
+90660703,11540651,4
+50207070,11540651,4
+69970746,11540651,3
+38559106,11540651,5
+50353681,11540651,3
+71311502,11540651,5
+124238568,11540651,3
+eastern,11540651,4
+62368471,11540651,4
+1493686,11540651,3
+wangleku0310,11540651,4
+46766109,11540651,3
+131837034,11540651,4
+58726340,11540651,4
+46005086,11540651,4
+Andred,11540651,4
+sunwiner,11540651,4
+1322402,11540651,4
+simaxiangru118,11540651,3
+40748484,11540651,3
+119084646,11540651,3
+111461811,11540651,5
+77427319,11540651,5
+5606116,11540651,2
+62498869,11540651,4
+1397901,11540651,4
+syrz,11540651,4
+41529515,11540651,5
+Sophieless,11540651,4
+47619462,11540651,3
+57991554,11540651,4
+115131162,11540651,4
+127565044,11540651,3
+57758773,11540651,4
+48496460,11540651,3
+54192378,11540651,3
+happysadop,11540651,3
+88345379,11540651,4
+52055708,11540651,4
+78728709,11540651,3
+3852548,11540651,-1
+69057814,11540651,3
+59691399,11540651,3
+juliayunjie,11540651,4
+33951055,11540651,4
+132130443,11540651,4
+46177546,11540651,4
+tangstar27,11540651,3
+58376944,11540651,4
+yutingamy,11540651,3
+LENAJINWEN,11540651,5
+129270644,11540651,4
+evilon,11540651,3
+64822311,11540651,3
+132324063,11540651,3
+3028587,11540651,2
+50846350,11540651,4
+cookiefive,11540651,4
+caicaihuang,11540651,3
+freenest,11540651,3
+1593742,11540651,5
+61945985,11540651,4
+68202799,11540651,4
+lenka992,11540651,-1
+47053575,11540651,4
+angiangeng,11540651,2
+47563354,11540651,4
+59016139,11540651,4
+48770075,11540651,4
+106730683,11540651,4
+ice_pudding,11540651,3
+76999762,11540651,2
+88877033,11540651,3
+101947898,11540651,3
+49455574,11540651,2
+83193363,11540651,3
+53031430,11540651,5
+4546005,11540651,4
+77898629,11540651,3
+58658233,11540651,3
+73149843,11540651,4
+madamadadane,11540651,3
+2449818,11540651,4
+59778777,11540651,3
+44109266,11540651,3
+47243761,11540651,4
+64542644,11540651,3
+onless,11540651,3
+131538725,11540651,4
+2466949,11540651,2
+1700673,11540651,5
+2181401,11540651,4
+55812116,11540651,3
+53586447,11540651,5
+63732204,11540651,3
+119865328,11540651,4
+61309406,11540651,3
+ziv_yll,11540651,5
+53145042,11540651,3
+46375776,11540651,3
+62369741,11540651,3
+hushibookstore,11540651,4
+xulu_films,11540651,3
+130105525,11540651,4
+wuyiye,11540651,3
+readyliu,11540651,3
+66706245,11540651,3
+60885961,11540651,-1
+65560821,11540651,5
+75166337,11540651,4
+63015769,11540651,2
+51711938,11540651,3
+116614076,11540651,3
+36807657,11540651,3
+yelucaizi,11540651,3
+LauraLi1989,11540651,3
+64266034,11540651,3
+37482324,11540651,3
+67605510,11540651,4
+waytolove,11540651,4
+gigalo,11540651,3
+130154428,11540651,3
+57496538,11540651,4
+J7N,11540651,-1
+60570203,11540651,4
+4431281,11540651,3
+53879443,11540651,4
+nongwh,11540651,4
+lovingmomo,11540651,3
+3109810,11540651,4
+129527351,11540651,5
+hejiaqiqi,11540651,4
+41996564,11540651,3
+sushunai,11540651,4
+34979549,11540651,4
+Fassonhymn,11540651,4
+dearruby,11540651,3
+A_R_C_rops,11540651,4
+61438592,11540651,4
+64413783,11540651,3
+47755926,11540651,3
+67479654,11540651,4
+129751512,11540651,3
+3418445,11540651,3
+phunny,11540651,2
+WANGMINGZHITU,11540651,3
+Corrinne,11540651,2
+47807328,11540651,3
+57149098,11540651,4
+50624143,11540651,3
+4039057,11540651,4
+handouxiansheng,11540651,5
+127761017,11540651,3
+64515609,11540651,3
+FuckoffJinMu,11540651,2
+65810750,11540651,3
+zoelee915010,11540651,4
+48349088,11540651,3
+luxi1988,11540651,4
+58454098,11540651,5
+xfjzoe,11540651,3
+74707117,11540651,3
+OldYuan,11540651,3
+72488037,11540651,3
+muuuma,11540651,4
+76375182,11540651,4
+73603686,11540651,3
+Aldrberan,11540651,4
+andrpirl,11540651,4
+101864611,11540651,4
+68238165,11540651,2
+engamichelle,11540651,5
+126911965,11540651,3
+lls17,11540651,4
+50867193,11540651,3
+77048663,11540651,4
+53935985,11540651,3
+85190354,11540651,2
+54512951,11540651,4
+stellawah,11540651,5
+27976936,11540651,4
+daisyinblossom,11540651,4
+79080709,11540651,4
+etchitaro,11540651,4
+53437305,11540651,4
+44973722,11540651,5
+xiaohe5210,11540651,3
+27083454,11540651,3
+52839041,11540651,3
+52718923,11540651,2
+82494304,11540651,4
+jokelvin,11540651,3
+91515979,11540651,1
+kkbear,11540651,3
+2319992,11540651,4
+hsiaka,11540651,3
+121228834,11540651,4
+frosteeeee,11540651,3
+57543745,11540651,3
+jisixue0111,11540651,3
+2171738,11540651,3
+Karol0411,11540651,4
+rrrrrrc,11540651,4
+39535521,11540651,4
+yuyangaiyang,11540651,4
+79168578,11540651,3
+morningsu,11540651,3
+2387348,11540651,3
+4614026,11540651,4
+76332063,11540651,4
+47081544,11540651,3
+53692727,11540651,4
+benyang,11540651,5
+wannafat,11540651,4
+52967718,11540651,3
+68189537,11540651,4
+50154752,11540651,4
+54845592,11540651,3
+auvauva,11540651,1
+63461451,11540651,4
+34043000,11540651,4
+84042964,11540651,3
+littlemarss,11540651,3
+35228199,11540651,4
+69785918,11540651,3
+59945460,11540651,4
+xxxiyybabe,11540651,4
+1782603,11540651,4
+puyangxixu,11540651,5
+66967732,11540651,2
+prayerinc,11540651,3
+don_C,11540651,2
+45291863,11540651,4
+1697947,11540651,1
+wennie1995,11540651,3
+chuxcy,11540651,3
+61408402,11540651,3
+crushon,11540651,3
+2155432,11540651,5
+doskevin407,11540651,4
+89410418,11540651,3
+3752454,11540651,3
+59433731,11540651,4
+58448667,11540651,4
+daystar22,11540651,4
+qo_op,11540651,3
+grayfoxever,11540651,4
+73428960,11540651,4
+87387635,11540651,5
+123373729,11540651,4
+ijiaorui,11540651,3
+61520625,11540651,4
+3934047,11540651,3
+delchisio,11540651,3
+2266457,11540651,4
+47707866,11540651,4
+53554219,11540651,3
+3767677,11540651,5
+joyzhai,11540651,3
+93825881,11540651,3
+119428504,11540651,3
+54277204,11540651,3
+35986570,11540651,3
+78576225,11540651,2
+jijillwang,11540651,4
+pinkjar,11540651,3
+35140822,11540651,4
+46088391,11540651,4
+44923935,11540651,3
+58304383,11540651,4
+78846025,11540651,2
+cheer313,11540651,4
+avrilyian,11540651,3
+cn50344,11540651,3
+47359205,11540651,3
+simplelifer,11540651,4
+2424837,11540651,4
+41881220,11540651,2
+128760790,11540651,3
+cloudlandlord,11540651,4
+72207422,11540651,5
+zhuiazhui,11540651,4
+78786637,11540651,3
+Jessicalulu,11540651,3
+35578162,11540651,3
+Nibia,11540651,4
+91474719,11540651,4
+4509975,11540651,3
+56907720,11540651,3
+kingofjungleo,11540651,4
+kingcopushu,11540651,3
+64938793,11540651,4
+gaolaotou,11540651,4
+batongyang,11540651,3
+75849450,11540651,3
+45875943,11540651,3
+124602530,11540651,3
+64926044,11540651,4
+65664176,11540651,4
+74789050,11540651,4
+46781081,11540651,4
+kaixian,11540651,4
+4226601,11540651,3
+1496396,11540651,2
+49170151,11540651,3
+huhu227,11540651,3
+81082751,11540651,4
+105931012,11540651,3
+92331243,11540651,3
+swiftflyer,11540651,3
+89534065,11540651,3
+34404618,11540651,4
+hanluweishuang,11540651,4
+59040075,11540651,4
+ldy9527,11540651,1
+63981195,11540651,3
+93104938,11540651,5
+54415980,11540651,4
+121400385,11540651,4
+mylbj,11540651,2
+67240379,11540651,3
+97010885,11540651,3
+daysofyouth,11540651,4
+zhuzi_33,11540651,2
+personalzac,11540651,3
+64881542,11540651,3
+90000787,11540651,4
+kilo_echo,11540651,5
+2596903,11540651,3
+WN-ninja,11540651,3
+79381189,11540651,4
+38252612,11540651,4
+15799355,11540651,3
+xiaoranbao,11540651,4
+goldenknob,11540651,4
+61069338,11540651,4
+53539927,11540651,3
+53539927,11540651,3
+122757661,11540651,4
+5116652,11540651,3
+66168101,11540651,4
+46999271,11540651,4
+izhouxy,11540651,3
+79526047,11540651,4
+54569706,11540651,5
+45369042,11540651,4
+3633287,11540651,-1
+64276762,11540651,3
+ziyoupaifeizai,11540651,3
+125570850,11540651,4
+61137197,11540651,4
+65186592,11540651,4
+125038920,11540651,4
+48803971,11540651,3
+25635000,11540651,4
+70694742,11540651,-1
+51921097,11540651,3
+caotory,11540651,3
+yuantown,11540651,3
+54116667,11540651,3
+38699051,11540651,3
+124417882,11540651,1
+46624759,11540651,4
+43767898,11540651,3
+126095873,11540651,4
+64728959,11540651,4
+127728111,11540651,3
+39093072,11540651,5
+abc1985,11540651,2
+40105087,11540651,4
+16313678,11540651,4
+104274348,11540651,1
+98090779,11540651,3
+39494809,11540651,3
+mmdrx,11540651,4
+42535832,11540651,3
+102618812,11540651,3
+52140378,11540651,4
+laomo,11540651,4
+51059017,11540651,4
+la_ficine,11540651,4
+47937098,11540651,5
+50054232,11540651,3
+lucypurple,11540651,4
+cocof,11540651,2
+47795407,11540651,3
+uion,11540651,3
+15872244,11540651,3
+matrixinside,11540651,5
+peterpan1004,11540651,4
+doreen1215,11540651,2
+seaea5t,11540651,4
+bigkacc,11540651,4
+xiaobai_zw,11540651,3
+59607126,11540651,4
+63599409,11540651,5
+65474816,11540651,2
+33149603,11540651,5
+82688294,11540651,3
+6243740,11540651,5
+41680643,11540651,4
+dayandnights,11540651,4
+monstersimon,11540651,4
+61497577,11540651,3
+4105261,11540651,3
+66932854,11540651,4
+48976619,11540651,3
+63768504,11540651,4
+58051571,11540651,5
+37420300,11540651,4
+57795255,11540651,4
+solavre,11540651,4
+74117389,11540651,4
+45101654,11540651,-1
+122458396,11540651,3
+102974670,11540651,3
+mdragon,11540651,3
+50079024,11540651,-1
+chenwanrao,11540651,4
+3119745,11540651,4
+Butterfly_M,11540651,3
+81572870,11540651,4
+102191343,11540651,3
+65554790,11540651,3
+57969665,11540651,3
+zene,11540651,3
+6636122,11540651,3
+14360735,11540651,4
+junko,11540651,5
+44029743,11540651,3
+poire,11540651,4
+1418514,11540651,4
+tianranzijiegou,11540651,-1
+recyclebiner,11540651,3
+qichengshiwo,11540651,4
+58604332,11540651,3
+4299667,11540651,4
+goldenslumber,11540651,3
+115721198,11540651,4
+zzfznp,11540651,3
+65809636,11540651,3
+44552200,11540651,3
+50242355,11540651,4
+124569189,11540651,4
+115919297,11540651,4
+keik0,11540651,5
+80663628,11540651,3
+125455938,11540651,3
+59137908,11540651,5
+4251957,11540651,-1
+badaalle,11540651,3
+2799911,11540651,3
+51753128,11540651,3
+68532789,11540651,3
+merengue,11540651,3
+55851508,11540651,5
+50811466,11540651,4
+88171857,11540651,4
+60172474,11540651,-1
+jyuelovejay,11540651,5
+34063715,11540651,2
+45968027,11540651,3
+54455940,11540651,3
+55961272,11540651,5
+1319405,11540651,2
+46700100,11540651,3
+59822585,11540651,4
+81445735,11540651,4
+41786270,11540651,2
+dbhungry,11540651,3
+biskup,11540651,3
+45800962,11540651,4
+2752972,11540651,4
+2668037,11540651,3
+67516737,11540651,3
+sail308,11540651,-1
+ding1yi,11540651,3
+yayaamy,11540651,3
+robinorigin,11540651,4
+BOBLEE82,11540651,3
+4818146,11540651,3
+ISHADOW,11540651,4
+43096733,11540651,3
+cocojamboo,11540651,3
+hlt19920904,11540651,4
+50195547,11540651,4
+121303699,11540651,5
+3469662,11540651,5
+56469194,11540651,3
+123261047,11540651,5
+54906280,11540651,4
+55942870,11540651,3
+neverbutterfly,11540651,3
+65890025,11540651,4
+48681537,11540651,4
+45290589,11540651,1
+LiRuoShui,11540651,4
+4026585,11540651,3
+48877659,11540651,3
+82096379,11540651,4
+vivinicole,11540651,5
+69008426,11540651,3
+98083831,11540651,2
+51920001,11540651,3
+88324576,11540651,4
+82876812,11540651,3
+58057180,11540651,3
+3298219,11540651,4
+zhuobielin,11540651,4
+potatotomato,11540651,4
+xkwnso,11540651,4
+swordflying,11540651,3
+naples5,11540651,5
+kyj113,11540651,3
+115560708,11540651,4
+56169435,11540651,5
+39544151,11540651,3
+67906282,11540651,4
+BritpopStarFeel,11540651,4
+122644888,11540651,4
+81351219,11540651,4
+Youandi4,11540651,-1
+cskywalker,11540651,3
+37311123,11540651,3
+94243524,11540651,5
+44276090,11540651,4
+68470472,11540651,5
+fragment,11540651,4
+1198621,11540651,4
+72626479,11540651,3
+herryday,11540651,3
+ccushuaia1220,11540651,-1
+sonnavabitch,11540651,3
+118854321,11540651,4
+4569765,11540651,3
+40495510,11540651,3
+weixiaobao,11540651,4
+44226147,11540651,3
+65937854,11540651,4
+jingerjingjing,11540651,3
+leonlancelot,11540651,3
+always9172,11540651,4
+50694634,11540651,3
+2579882,11540651,3
+37303827,11540651,4
+chedan-NB,11540651,2
+ghzm1027,11540651,3
+62192019,11540651,4
+45539899,11540651,4
+80784693,11540651,4
+46312271,11540651,2
+yycznh0520,11540651,3
+shingle,11540651,4
+98790915,11540651,3
+83217907,11540651,3
+2752956,11540651,3
+47554684,11540651,3
+1951501,11540651,3
+66856933,11540651,4
+46242801,11540651,3
+blankscreen,11540651,3
+60381439,11540651,3
+61392222,11540651,4
+61235171,11540651,3
+cloud15,11540651,4
+twoduaihan,11540651,5
+romance90,11540651,3
+26387979,11540651,4
+42838726,11540651,4
+79499233,11540651,4
+EncoreUneFois,11540651,3
+86810515,11540651,4
+53942903,11540651,3
+115217962,11540651,4
+60042127,11540651,4
+71688338,11540651,-1
+71961235,11540651,3
+60736257,11540651,3
+49155542,11540651,3
+49180179,11540651,4
+sxy921026,11540651,3
+34514428,11540651,5
+17790607,11540651,3
+126702436,11540651,4
+83517836,11540651,4
+xinme,11540651,4
+54721020,11540651,4
+77876684,11540651,3
+rurucat,11540651,4
+44045443,11540651,2
+49167214,11540651,3
+1381390,11540651,5
+chelsea_baker,11540651,5
+3705906,11540651,4
+126842438,11540651,4
+50532923,11540651,3
+78236258,11540651,-1
+78236258,11540651,-1
+lucifer024,11540651,4
+menxian,11540651,3
+hsirun,11540651,4
+85316491,11540651,4
+58425060,11540651,4
+95160479,11540651,4
+AmongV5,11540651,3
+92567735,11540651,4
+70362034,11540651,4
+82909007,11540651,3
+62579451,11540651,4
+93465458,11540651,3
+quebom,11540651,3
+91876111,11540651,4
+60690851,11540651,4
+imauve,11540651,4
+124608845,11540651,4
+56883918,11540651,2
+ixiaotong,11540651,4
+64468472,11540651,3
+4111954,11540651,3
+122300732,11540651,2
+102945477,11540651,2
+tianhongkun,11540651,3
+47590897,11540651,3
+44437315,11540651,4
+83183535,11540651,4
+54688945,11540651,5
+May_T,11540651,4
+34901213,11540651,3
+52680941,11540651,3
+45588600,11540651,4
+82308347,11540651,3
+81819960,11540651,3
+jopees,11540651,3
+valiantwarrior,11540651,3
+Kso-go,11540651,4
+45485577,11540651,3
+baleyang,11540651,4
+51095448,11540651,4
+4295917,11540651,4
+66711883,11540651,4
+54925155,11540651,3
+44003548,11540651,3
+57666555,11540651,2
+sakuras1412,11540651,-1
+82188158,11540651,3
+yangjiangyou,11540651,3
+CherryP,11540651,4
+49456596,11540651,4
+124887489,11540651,4
+89747008,11540651,3
+81929147,11540651,5
+62667346,11540651,3
+bunny1108,11540651,4
+2217613,11540651,3
+56876245,11540651,3
+vittek,11540651,3
+kgbbeer,11540651,3
+kgbbeer,11540651,3
+55935140,11540651,4
+yelllala,11540651,-1
+64227759,11540651,4
+85250768,11540651,4
+cuion,11540651,3
+78819457,11540651,3
+bettervi2011,11540651,4
+2859890,11540651,4
+66706238,11540651,5
+103414691,11540651,3
+53920626,11540651,3
+53439566,11540651,4
+63778802,11540651,3
+44483182,11540651,4
+1482288,11540651,3
+65669179,11540651,3
+hapysmile,11540651,3
+46620424,11540651,3
+fwkboran,11540651,5
+63953631,11540651,3
+52259960,11540651,3
+102623663,11540651,5
+73033279,11540651,3
+67556869,11540651,3
+summerdxw,11540651,4
+125751709,11540651,5
+52903037,11540651,4
+andrewcx,11540651,3
+yanmingsky,11540651,3
+dnarna_vicky,11540651,-1
+TaTaxxxx,11540651,4
+GloriaBryant,11540651,3
+45685322,11540651,4
+68964549,11540651,3
+58858653,11540651,4
+62599463,11540651,3
+65104168,11540651,3
+songxiaoci,11540651,3
+57591346,11540651,4
+57591346,11540651,4
+55529089,11540651,4
+2266117,11540651,-1
+71250285,11540651,4
+SHOUYOU,11540651,3
+bigracoon,11540651,4
+74599483,11540651,4
+68300009,11540651,-1
+121628266,11540651,4
+cocoon92,11540651,5
+zhangzhangzhang,11540651,4
+2033366,11540651,3
+78966790,11540651,4
+secenteen,11540651,4
+slow-down,11540651,4
+72720004,11540651,4
+76611723,11540651,5
+63995500,11540651,2
+tushanxiao,11540651,3
+51951428,11540651,5
+91093296,11540651,4
+imdiaosi,11540651,3
+39745338,11540651,4
+43817219,11540651,4
+59739922,11540651,2
+44914758,11540651,3
+122833017,11540651,4
+banbeizi,11540651,-1
+60732201,11540651,4
+47501890,11540651,3
+4000873,11540651,3
+49594731,11540651,3
+77698200,11540651,3
+62076752,11540651,5
+85239246,11540651,4
+75881434,11540651,4
+YuTianTian,11540651,4
+60406508,11540651,3
+83040147,11540651,3
+56981599,11540651,3
+48559229,11540651,3
+youye2046,11540651,4
+121477552,11540651,5
+45032378,11540651,4
+4389676,11540651,5
+RayruiSun,11540651,3
+94703330,11540651,4
+103488836,11540651,1
+hanlisen,11540651,2
+66873262,11540651,3
+37950189,11540651,4
+48269548,11540651,3
+louix,11540651,5
+43289772,11540651,5
+78810524,11540651,3
+43302206,11540651,4
+xiaoranlee,11540651,3
+crow.,11540651,5
+103551700,11540651,4
+40910855,11540651,4
+WhoRU,11540651,3
+55673285,11540651,5
+50404313,11540651,4
+100841051,11540651,3
+48726212,11540651,4
+124892658,11540651,5
+3201544,11540651,4
+4534607,11540651,2
+41627268,11540651,4
+64799751,11540651,4
+23416699,11540651,3
+37771312,11540651,3
+janice5680,11540651,3
+fuxiu,11540651,3
+60131423,11540651,3
+suekingjay,11540651,5
+101583833,11540651,4
+47097255,11540651,3
+2583295,11540651,2
+davidmoer,11540651,3
+devilvv,11540651,2
+46338692,11540651,3
+2668869,11540651,5
+lele480,11540651,3
+12360363,11540651,4
+57724049,11540651,4
+74246341,11540651,5
+100328938,11540651,4
+4411528,11540651,3
+bonniefx,11540651,3
+heechen,11540651,4
+jchguo,11540651,5
+11920556,11540651,4
+35938658,11540651,2
+zyjj141,11540651,4
+120815285,11540651,4
+3730375,11540651,4
+66594452,11540651,4
+87558584,11540651,3
+CraziLaura,11540651,3
+1056656,11540651,3
+hensoy,11540651,3
+58615356,11540651,2
+114353086,11540651,4
+71294450,11540651,3
+4116226,11540651,4
+3276784,11540651,4
+66802637,11540651,3
+58916879,11540651,4
+90623048,11540651,4
+108173445,11540651,4
+66678297,11540651,3
+75827543,11540651,3
+sunjianshuo,11540651,2
+113982394,11540651,4
+54225374,11540651,4
+49407963,11540651,4
+wenbao,11540651,3
+4143335,11540651,3
+lm9527,11540651,4
+yoyosapple,11540651,2
+1032604,11540651,3
+zhhsbkl,11540651,1
+42174355,11540651,4
+68732725,11540651,4
+cherie_LT,11540651,5
+53245934,11540651,3
+65187145,11540651,2
+64010291,11540651,3
+53208620,11540651,1
+62601567,11540651,5
+37382236,11540651,4
+erbility,11540651,3
+116044095,11540651,4
+blueshadow30,11540651,3
+92293191,11540651,3
+35323082,11540651,5
+22456411,11540651,3
+1041979,11540651,3
+86327597,11540651,5
+3343691,11540651,-1
+1068202,11540651,4
+sulang,11540651,4
+35595189,11540651,3
+4413248,11540651,3
+37682814,11540651,4
+tianxiaweigong,11540651,2
+58893864,11540651,3
+58338006,11540651,4
+indieX,11540651,3
+80734129,11540651,5
+TomiOh,11540651,3
+46643661,11540651,4
+36621771,11540651,3
+53176135,11540651,4
+48233451,11540651,3
+62936115,11540651,5
+utiao,11540651,3
+56227363,11540651,3
+54930854,11540651,3
+39384615,11540651,3
+41658840,11540651,5
+flxjp,11540651,3
+76663316,11540651,4
+3760760,11540651,3
+64821728,11540651,3
+47788251,11540651,2
+97840419,11540651,4
+tinyno7,11540651,4
+witch7027,11540651,4
+Dasiycat,11540651,3
+aiwowo,11540651,3
+51775024,11540651,3
+67866967,11540651,5
+25503918,11540651,3
+101751000,11540651,4
+dandan0720,11540651,3
+115552732,11540651,3
+virago1994,11540651,4
+38971714,11540651,4
+knocklee,11540651,3
+66633074,11540651,4
+madrid9,11540651,3
+CharlesChou,11540651,3
+pipix,11540651,4
+54214103,11540651,3
+4217792,11540651,3
+1096298,11540651,3
+42445219,11540651,3
+yore.,11540651,4
+58601937,11540651,5
+3413987,11540651,4
+91203301,11540651,2
+59587066,11540651,4
+24186075,11540651,4
+4290135,11540651,4
+luzhiyu,11540651,3
+hankluo,11540651,4
+49968137,11540651,-1
+74062182,11540651,3
+4239908,11540651,4
+lins1,11540651,4
+6821770,11540651,3
+58305109,11540651,4
+29433181,11540651,4
+cold_warm,11540651,2
+xiaojiongxia,11540651,3
+tlsay,11540651,4
+59193043,11540651,4
+47976319,11540651,5
+94328046,11540651,5
+55571747,11540651,4
+64359754,11540651,5
+psychodying,11540651,4
+58229675,11540651,4
+3192663,11540651,4
+iammonna,11540651,3
+shelockcrc,11540651,3
+80319931,11540651,4
+metkee,11540651,3
+metkee,11540651,3
+68366606,11540651,3
+83694704,11540651,2
+sonnet1983,11540651,3
+51075686,11540651,4
+50494817,11540651,4
+45864291,11540651,3
+52835573,11540651,4
+vane0109,11540651,5
+50073903,11540651,4
+feblee,11540651,4
+YeonParadise,11540651,4
+2622237,11540651,4
+Joie,11540651,4
+1028676,11540651,3
+56684398,11540651,3
+designernoideas,11540651,3
+45278107,11540651,4
+106955962,11540651,3
+93492854,11540651,3
+58047710,11540651,3
+3857532,11540651,3
+48885636,11540651,5
+43891940,11540651,3
+fu_sion,11540651,5
+64028775,11540651,3
+cuacfxx,11540651,4
+54833088,11540651,5
+yiasong,11540651,4
+49079570,11540651,3
+53823521,11540651,4
+fengjiansun,11540651,3
+75912541,11540651,3
+simphiwe_zuma,11540651,3
+78634490,11540651,3
+57012377,11540651,2
+75086421,11540651,5
+laura2zero,11540651,3
+65776181,11540651,4
+52859781,11540651,4
+bluebird2046,11540651,2
+46497522,11540651,5
+71946766,11540651,4
+sadom,11540651,3
+32867787,11540651,3
+57336670,11540651,3
+36288413,11540651,3
+Big2BMan,11540651,5
+123175427,11540651,5
+Decadeff,11540651,4
+2640651,11540651,3
+53240525,11540651,3
+jingmeng_xiahti,11540651,4
+51489383,11540651,4
+58762404,11540651,3
+76905653,11540651,3
+helicopter,11540651,3
+9775754,11540651,3
+cjshangbuqi,11540651,4
+axiuluo1529,11540651,3
+73571191,11540651,3
+buchimifan,11540651,2
+63283532,11540651,4
+53682563,11540651,3
+1253917,11540651,5
+70329752,11540651,3
+readerhui,11540651,3
+yihuiw,11540651,4
+qixiaomu,11540651,4
+104580788,11540651,3
+pariseros,11540651,4
+57723007,11540651,3
+dark-otaku,11540651,5
+Liwei_big,11540651,5
+1754621,11540651,2
+15286223,11540651,3
+25982397,11540651,3
+xu77,11540651,3
+1907130,11540651,3
+levid,11540651,4
+83346786,11540651,4
+43603952,11540651,4
+120112831,11540651,4
+58484976,11540651,3
+4267389,11540651,3
+46781917,11540651,-1
+66747156,11540651,4
+62496308,11540651,-1
+45631897,11540651,3
+4258349,11540651,3
+littlepisces,11540651,4
+49948378,11540651,4
+1482191,11540651,3
+48855282,11540651,-1
+52128416,11540651,4
+73832904,11540651,3
+lisayang,11540651,3
+53992790,11540651,5
+52597615,11540651,3
+45416494,11540651,4
+52801650,11540651,4
+44105688,11540651,3
+3651030,11540651,4
+46059712,11540651,2
+whc4956,11540651,4
+zishi,11540651,3
+iamliuzhe,11540651,4
+princesssyn,11540651,3
+63586324,11540651,3
+82722060,11540651,5
+30649428,11540651,3
+27545760,11540651,2
+54652758,11540651,5
+46012521,11540651,3
+36302109,11540651,3
+56534538,11540651,3
+46091317,11540651,3
+QQ7935007,11540651,3
+zuozichu,11540651,3
+51222757,11540651,3
+61533902,11540651,-1
+60074125,11540651,2
+ashixinru,11540651,4
+100255899,11540651,4
+54034056,11540651,3
+Changenie,11540651,3
+3579800,11540651,3
+60421809,11540651,4
+31622009,11540651,3
+shengqingyue,11540651,5
+wangyao1982,11540651,3
+qinyun,11540651,4
+49488588,11540651,4
+MrsCC,11540651,4
+parisyang3,11540651,3
+tom926,11540651,3
+mmmmiao,11540651,3
+57398814,11540651,3
+75691865,11540651,3
+61967626,11540651,3
+46208929,11540651,3
+roseunicorn,11540651,4
+17828049,11540651,4
+122949296,11540651,5
+53841308,11540651,3
+thesurfingleaf,11540651,3
+18080670,11540651,3
+ideyes,11540651,3
+1233038,11540651,2
+heysummer,11540651,3
+10007135,11540651,4
+gilyun,11540651,4
+qiangqiangzhang,11540651,3
+fcinter,11540651,3
+LUCKYLYB,11540651,5
+46426968,11540651,3
+42859187,11540651,3
+116769767,11540651,4
+72397969,11540651,5
+63503398,11540651,4
+4841197,11540651,3
+60941930,11540651,2
+3410802,11540651,3
+60618166,11540651,5
+kevin5,11540651,3
+49813677,11540651,3
+58301131,11540651,4
+3831064,11540651,4
+52297888,11540651,3
+117307392,11540651,4
+lvjiazhui,11540651,4
+2217071,11540651,4
+LilC,11540651,3
+61294688,11540651,5
+102748029,11540651,2
+110901020,11540651,2
+38770333,11540651,4
+v99Alice,11540651,5
+zhangstyle,11540651,4
+48183944,11540651,3
+58003212,11540651,4
+120287193,11540651,3
+84093369,11540651,4
+43671696,11540651,3
+50109915,11540651,4
+sheenshuay,11540651,4
+29362776,11540651,4
+52789161,11540651,4
+pupuxiang,11540651,1
+57468138,11540651,4
+71178159,11540651,4
+2030641,11540651,4
+58369888,11540651,3
+56024205,11540651,4
+masterobert,11540651,5
+51067589,11540651,3
+54576231,11540651,3
+3677825,11540651,3
+46238744,11540651,3
+langziyinyin,11540651,3
+58865216,11540651,4
+49109502,11540651,2
+48224395,11540651,4
+52823341,11540651,5
+CRA1G,11540651,4
+60155135,11540651,4
+66521777,11540651,3
+61823164,11540651,4
+reebi,11540651,4
+61716542,11540651,4
+poox,11540651,3
+44273997,11540651,4
+Young.forU,11540651,3
+119319878,11540651,3
+49963542,11540651,3
+cheeseflower,11540651,4
+huanzhi,11540651,3
+47333738,11540651,4
+YvonneGQ,11540651,3
+47325319,11540651,4
+47325319,11540651,4
+121679794,11540651,3
+102930164,11540651,4
+82521332,11540651,4
+65919928,11540651,5
+hexinchen,11540651,5
+foreverran,11540651,3
+121805396,11540651,3
+amidede,11540651,4
+dewar,11540651,3
+115965924,11540651,4
+changefiona,11540651,5
+59066202,11540651,4
+72657219,11540651,4
+56827696,11540651,4
+43910063,11540651,4
+northcity,11540651,3
+75720957,11540651,2
+alice1123,11540651,4
+52750268,11540651,4
+65585379,11540651,2
+49164545,11540651,3
+3521983,11540651,3
+47585455,11540651,3
+85054291,11540651,3
+huyouyou,11540651,3
+shirihou,11540651,4
+zr1120,11540651,4
+75846051,11540651,4
+6537233,11540651,4
+2722902,11540651,4
+119085322,11540651,3
+duduxiongzhifu,11540651,2
+sunflowerqi,11540651,3
+71383486,11540651,3
+115919572,11540651,2
+64729781,11540651,5
+foreversleepy,11540651,4
+69214891,11540651,4
+3130809,11540651,3
+76018725,11540651,2
+74541142,11540651,3
+78823235,11540651,3
+MissMingMing,11540651,4
+62157854,11540651,3
+everlastingEGO,11540651,3
+49922437,11540651,3
+63548568,11540651,3
+Ryu_9320,11540651,3
+1333997,11540651,2
+treeingx,11540651,2
+69683493,11540651,4
+raphealguo,11540651,5
+40123726,11540651,5
+62480578,11540651,3
+2089364,11540651,5
+68072626,11540651,5
+79703710,11540651,4
+yededi8821,11540651,3
+43495791,11540651,4
+zjl234,11540651,3
+asenette,11540651,3
+luerdelphic,11540651,4
+122643761,11540651,-1
+junyilee,11540651,4
+78862155,11540651,4
+jessica_21,11540651,3
+chenhongyu1222,11540651,4
+Yu-Tommy,11540651,3
+82016647,11540651,-1
+75300369,11540651,2
+zhuzaixuanyabia,11540651,3
+103372233,11540651,4
+1730018,11540651,4
+65250419,11540651,4
+100314397,11540651,4
+96161152,11540651,3
+VC39,11540651,2
+70487817,11540651,4
+40870953,11540651,3
+atnc,11540651,4
+uandm1111,11540651,3
+fishzero,11540651,-1
+1061597,11540651,5
+35499398,11540651,3
+nile0106,11540651,3
+48889968,11540651,4
+39786572,11540651,4
+48821319,11540651,3
+bearhao1976,11540651,5
+69292892,11540651,4
+44833816,11540651,4
+Boomer,11540651,4
+methuselah,11540651,3
+119490218,11540651,4
+55371350,11540651,4
+49435214,11540651,4
+flymelody,11540651,4
+72977963,11540651,5
+50402097,11540651,4
+zzzwing,11540651,3
+70749736,11540651,-1
+7134514,11540651,2
+halfsummer07,11540651,4
+1333942,11540651,3
+81042708,11540651,3
+Bebefore,11540651,3
+58847654,11540651,4
+45291333,11540651,4
+jinyanmu,11540651,3
+37219196,11540651,4
+emoti0n,11540651,4
+conglin2537,11540651,4
+64463407,11540651,5
+119543799,11540651,5
+84968890,11540651,5
+3425206,11540651,3
+63171651,11540651,4
+78603515,11540651,4
+76669177,11540651,5
+37826043,11540651,3
+liumang2,11540651,4
+oweuuu,11540651,-1
+10724888,11540651,3
+43867712,11540651,4
+Orchendor,11540651,3
+1266223,11540651,-1
+16304195,11540651,5
+zhanghuaxin,11540651,4
+11289468,11540651,4
+67471374,11540651,4
+49109939,11540651,3
+AchlysL,11540651,2
+63666748,11540651,4
+74148676,11540651,5
+78217786,11540651,3
+120789660,11540651,-1
+104445642,11540651,3
+53378706,11540651,5
+80033918,11540651,3
+52160935,11540651,4
+79784284,11540651,4
+37914560,11540651,3
+earlyzaozao,11540651,2
+natsuki_10,11540651,3
+109142318,11540651,3
+clockwork-fish,11540651,3
+82305871,11540651,3
+81628425,11540651,3
+4298839,11540651,3
+yanpealew,11540651,4
+68795801,11540651,3
+76704934,11540651,4
+eveningbaby,11540651,3
+33415384,11540651,4
+dahuilang15656,11540651,5
+56687999,11540651,3
+48292310,11540651,3
+torreslee,11540651,4
+pedant,11540651,2
+xiaoyamei,11540651,5
+79330359,11540651,4
+chrisywk,11540651,3
+51086058,11540651,4
+IsabellaH,11540651,-1
+ya19910907,11540651,5
+fanfouxiong,11540651,4
+ilovehotcoffee,11540651,-1
+43967401,11540651,4
+56649250,11540651,4
+fun-lv,11540651,3
+76509928,11540651,3
+55759085,11540651,3
+56866137,11540651,4
+shmily095,11540651,4
+45884991,11540651,3
+3826970,11540651,-1
+120242097,11540651,3
+52106146,11540651,4
+3184101,11540651,3
+zhangyangan,11540651,3
+Sun_1001,11540651,3
+formeswong,11540651,4
+59793320,11540651,3
+70918450,11540651,3
+79504633,11540651,3
+momisa,11540651,3
+9662580,11540651,4
+44495780,11540651,3
+dazzzhhh,11540651,4
+62106919,11540651,4
+88171828,11540651,3
+41502118,11540651,3
+58930883,11540651,2
+LZX1990,11540651,4
+maoxiaomao,11540651,4
+63574970,11540651,1
+dabaii,11540651,3
+78098679,11540651,2
+43133361,11540651,3
+41694650,11540651,3
+59261484,11540651,5
+53724452,11540651,4
+44423459,11540651,5
+47569063,11540651,4
+kangjie123,11540651,3
+64450294,11540651,3
+aaa33444,11540651,2
+nancy_hehe,11540651,3
+luyang21,11540651,5
+50747236,11540651,3
+57714176,11540651,4
+1556378,11540651,3
+75667669,11540651,3
+pii3you,11540651,5
+34780057,11540651,2
+91498001,11540651,5
+120398572,11540651,3
+iceba,11540651,4
+youraisemedown,11540651,3
+63254243,11540651,4
+71861591,11540651,5
+Psycho_L,11540651,3
+44379063,11540651,3
+50124375,11540651,4
+78153366,11540651,4
+60800632,11540651,3
+wuchaoyu673,11540651,4
+4610600,11540651,3
+1941226,11540651,3
+77610965,11540651,4
+62906196,11540651,3
+rainwatcher,11540651,3
+45463396,11540651,1
+4287326,11540651,5
+54956575,11540651,3
+jite,11540651,3
+5402486,11540651,5
+67125371,11540651,3
+64467057,11540651,3
+ligong,11540651,4
+69404620,11540651,5
+52442754,11540651,4
+37344562,11540651,3
+58936052,11540651,4
+61229030,11540651,3
+119372743,11540651,4
+50568364,11540651,4
+ts1089,11540651,1
+54950596,11540651,3
+3133331,11540651,-1
+zhangxinwei,11540651,3
+72233093,11540651,3
+121044112,11540651,4
+paishao,11540651,2
+zpavel,11540651,3
+miaomi,11540651,4
+85665063,11540651,5
+48690159,11540651,5
+54635444,11540651,4
+marilyntoto,11540651,-1
+60382938,11540651,3
+Mr..k.ing,11540651,4
+115547734,11540651,3
+zhixingdao,11540651,4
+90894536,11540651,4
+avalanche,11540651,4
+1378503,11540651,3
+49948273,11540651,4
+68037802,11540651,4
+6500897,11540651,3
+sheepcheer,11540651,4
+3481297,11540651,3
+40027917,11540651,3
+chenghu,11540651,3
+Livia1201,11540651,4
+54762055,11540651,4
+60095669,11540651,-1
+114880326,11540651,2
+115786111,11540651,3
+54122368,11540651,5
+13337545,11540651,4
+102841911,11540651,5
+55438034,11540651,5
+49787096,11540651,3
+53573423,11540651,3
+45582735,11540651,-1
+81478198,11540651,3
+kikidong,11540651,3
+Sigrid_Lu,11540651,3
+3213781,11540651,3
+gosaturday,11540651,4
+48396212,11540651,3
+ChenJY971002,11540651,3
+63839731,11540651,4
+46786788,11540651,3
+Uranus_Qiang,11540651,3
+64514761,11540651,-1
+76789340,11540651,3
+62124340,11540651,3
+59408878,11540651,3
+xuduoyan,11540651,3
+65369148,11540651,3
+52444506,11540651,5
+yohang,11540651,-1
+guguDoris,11540651,5
+50136328,11540651,4
+50159186,11540651,3
+46529547,11540651,3
+languheshang,11540651,4
+58716721,11540651,3
+kinso,11540651,4
+2298833,11540651,4
+50105974,11540651,3
+77186305,11540651,4
+duzhouchi,11540651,4
+1335533,11540651,3
+1050344,11540651,3
+haywire,11540651,4
+zhangyue78,11540651,4
+49862496,11540651,3
+helene127,11540651,3
+zenithalwick,11540651,4
+57036848,11540651,-1
+wjscxx,11540651,4
+121365508,11540651,2
+freedi2009,11540651,4
+ileonwii,11540651,4
+69360513,11540651,3
+2044324,11540651,5
+58897478,11540651,2
+119098474,11540651,4
+47285151,11540651,3
+peholia,11540651,4
+allwordswrong,11540651,4
+iampearl,11540651,3
+58802831,11540651,4
+tjz230,11540651,3
+70296365,11540651,3
+yrming,11540651,3
+butten,11540651,3
+3023546,11540651,4
+2842937,11540651,3
+4682097,11540651,-1
+1411336,11540651,3
+xyhg569doubandy,11540651,3
+89843774,11540651,-1
+92908596,11540651,4
+andylau40,11540651,3
+3392902,11540651,4
+3086369,11540651,3
+2602172,11540651,-1
+76117897,11540651,4
+66112477,11540651,3
+51378899,11540651,4
+patient_,11540651,3
+39168682,11540651,4
+Murray-sg,11540651,3
+old-playboy,11540651,3
+122052846,11540651,3
+53908141,11540651,4
+somniloquist,11540651,3
+62455169,11540651,4
+wangmian0729,11540651,4
+musicyue21,11540651,4
+McCrae,11540651,4
+2132959,11540651,2
+13330129,11540651,4
+38167160,11540651,3
+44196996,11540651,4
+61318658,11540651,-1
+3597938,11540651,4
+anruolan,11540651,3
+61077950,11540651,4
+63218478,11540651,5
+irismile,11540651,3
+119838841,11540651,5
+47746906,11540651,3
+17692341,11540651,-1
+68558336,11540651,4
+50474968,11540651,3
+ihee1995,11540651,5
+4648504,11540651,2
+rabbityinyin,11540651,4
+panpan_lovelife,11540651,4
+45939025,11540651,3
+1534419,11540651,5
+34009269,11540651,3
+58280400,11540651,3
+58117184,11540651,4
+32258314,11540651,5
+120287477,11540651,4
+27225086,11540651,4
+49255582,11540651,4
+63527344,11540651,4
+99832706,11540651,4
+42116639,11540651,3
+122048990,11540651,5
+41109138,11540651,5
+kingflower,11540651,2
+41952166,11540651,4
+titiz,11540651,4
+60657790,11540651,3
+53467813,11540651,4
+lssuzie,11540651,3
+81958013,11540651,3
+43464406,11540651,3
+25958436,11540651,4
+3598072,11540651,4
+92005501,11540651,4
+50142885,11540651,5
+holystar,11540651,4
+furien,11540651,4
+1285360,11540651,5
+yagami-light,11540651,3
+54633830,11540651,2
+49662983,11540651,3
+zuolun2046,11540651,4
+hendrix,11540651,5
+97434116,11540651,3
+xiaojingyush,11540651,3
+flowermumu,11540651,3
+fanxiaodong,11540651,3
+ufeelchueng,11540651,4
+58466744,11540651,3
+46020433,11540651,3
+SHAOSHAOMENG,11540651,3
+yumiko_s,11540651,4
+widomiao7,11540651,3
+63275995,11540651,3
+4916602,11540651,3
+81870071,11540651,3
+mianhuashengfan,11540651,-1
+67742715,11540651,3
+48019989,11540651,3
+49511491,11540651,2
+83947812,11540651,3
+52907085,11540651,5
+chiyouchiyou,11540651,3
+4134812,11540651,3
+50197826,11540651,2
+kennan,11540651,5
+75381649,11540651,4
+103214078,11540651,4
+foofights,11540651,2
+dyalan,11540651,2
+65930256,11540651,3
+wizkeigo,11540651,3
+78977506,11540651,4
+aprilsunshine,11540651,4
+37344756,11540651,4
+51465916,11540651,3
+lulujustme,11540651,3
+120826576,11540651,3
+52218684,11540651,-1
+79915546,11540651,3
+47410920,11540651,4
+69874247,11540651,2
+1840916,11540651,2
+2139321,11540651,5
+67084021,11540651,4
+76873283,11540651,3
+coka1999,11540651,3
+koizora0818,11540651,4
+56722636,11540651,4
+KeryChou,11540651,4
+51457792,11540651,4
+3085702,11540651,3
+yinsumin128,11540651,5
+zoeybatman,11540651,4
+43751226,11540651,5
+grannys_bear,11540651,4
+liuzelei,11540651,4
+rikki,11540651,3
+47941534,11540651,5
+zyt_69,11540651,4
+31812370,11540651,4
+3843442,11540651,3
+pbc0615,11540651,3
+49157213,11540651,3
+papa_christmas,11540651,3
+chendi,11540651,2
+AuRevoir7,11540651,3
+58487810,11540651,3
+liushuijianger,11540651,4
+3547067,11540651,2
+vincent2010,11540651,4
+doralupin,11540651,4
+55951555,11540651,3
+noaccident,11540651,5
+88532423,11540651,5
+40957904,11540651,3
+39961322,11540651,4
+liancheng,11540651,3
+crystalguojj,11540651,5
+ccpfly,11540651,4
+aspartameeee,11540651,3
+87095553,11540651,4
+40684892,11540651,4
+kingdoucloud,11540651,3
+FW_1224,11540651,5
+silviaisme,11540651,4
+43375121,11540651,3
+4587542,11540651,3
+super-bao,11540651,-1
+ladiesgaga,11540651,3
+46436685,11540651,-1
+Zinsen,11540651,5
+61189947,11540651,4
+zhouxiaoou,11540651,4
+daniel_gao,11540651,4
+62336834,11540651,4
+57425264,11540651,3
+3337008,11540651,4
+46815070,11540651,3
+woshixiaoye,11540651,4
+archikiki,11540651,4
+shaochen,11540651,-1
+4605484,11540651,3
+salome0831,11540651,4
+46642787,11540651,3
+4508079,11540651,3
+73866765,11540651,3
+39235200,11540651,2
+53172902,11540651,3
+2218729,11540651,3
+119353833,11540651,4
+54273337,11540651,3
+K_kk,11540651,4
+49146355,11540651,3
+Nefelibata,11540651,3
+elynsu,11540651,2
+juneismiranda,11540651,4
+ifanmu,11540651,4
+65159840,11540651,3
+58480988,11540651,3
+67697002,11540651,4
+miaogusensai,11540651,4
+roylaw,11540651,4
+ningning9164,11540651,-1
+119248099,11540651,5
+94862134,11540651,5
+39095645,11540651,3
+more-u-are,11540651,4
+zhangrui39,11540651,3
+wakeng,11540651,4
+77086576,11540651,3
+1280801,11540651,5
+3344940,11540651,3
+69265548,11540651,3
+wangjianqiang,11540651,4
+67072789,11540651,4
+eva3190,11540651,5
+sasa522,11540651,4
+40659159,11540651,4
+58211668,11540651,5
+75763564,11540651,2
+lili9790,11540651,4
+56167719,11540651,5
+59590971,11540651,4
+2581375,11540651,3
+xiaolvmiao,11540651,4
+hahagoushinan,11540651,3
+xxzy93,11540651,3
+58086381,11540651,3
+90467667,11540651,4
+41675821,11540651,3
+64345409,11540651,4
+44361116,11540651,3
+xiaozhangshi,11540651,4
+jxncm,11540651,5
+69305542,11540651,4
+55649933,11540651,3
+41014500,11540651,4
+105196709,11540651,3
+48836214,11540651,4
+32906170,11540651,4
+40447897,11540651,3
+48078859,11540651,4
+36253770,11540651,4
+42243165,11540651,4
+68983294,11540651,4
+33663407,11540651,3
+35066963,11540651,4
+25432866,11540651,4
+Rainlivelin,11540651,4
+i90hou,11540651,3
+4018918,11540651,4
+HaLoveTeHoMe,11540651,4
+xperia,11540651,4
+15163815,11540651,2
+48229847,11540651,4
+lukaka,11540651,3
+76153086,11540651,2
+41150727,11540651,3
+1887825,11540651,3
+7609988,11540651,3
+51183805,11540651,4
+wangruodan,11540651,3
+35414122,11540651,3
+43215299,11540651,3
+walkerdc,11540651,5
+42144253,11540651,5
+1225334,11540651,5
+vicy,11540651,3
+57244499,11540651,-1
+57834233,11540651,4
+colorwind,11540651,3
+54493645,11540651,3
+2937093,11540651,4
+75898645,11540651,3
+25803795,11540651,5
+42748477,11540651,5
+63583816,11540651,3
+veolxxxx,11540651,3
+ymwtime,11540651,5
+120791198,11540651,5
+D1984,11540651,4
+zong8queen,11540651,4
+103020260,11540651,4
+103576235,11540651,5
+53168001,11540651,4
+gxyvonne,11540651,4
+83548080,11540651,3
+tankdriver,11540651,3
+troublebreaker,11540651,4
+49362263,11540651,3
+adidasisallin,11540651,4
+baipang,11540651,2
+JESSIE_USC,11540651,4
+wzn,11540651,2
+4856255,11540651,5
+celestialquasar,11540651,5
+63119659,11540651,5
+airan712,11540651,3
+Rurutia7,11540651,3
+cloudy20011128,11540651,3
+chrno,11540651,5
+4146586,11540651,3
+motou0328,11540651,5
+4534557,11540651,5
+nutting,11540651,4
+88611960,11540651,4
+61826682,11540651,3
+46287060,11540651,2
+52199185,11540651,4
+58828155,11540651,4
+klo14,11540651,3
+wangshazi,11540651,1
+56371738,11540651,5
+kbbean620,11540651,4
+81336001,11540651,5
+Eclipse_17,11540651,3
+56980595,11540651,3
+76327264,11540651,4
+Do-my-self,11540651,3
+62041863,11540651,4
+Shoegazer,11540651,3
+58301627,11540651,4
+Labradorbear,11540651,3
+50625254,11540651,5
+80382193,11540651,4
+52606273,11540651,4
+4068734,11540651,4
+44806384,11540651,4
+doufutou,11540651,3
+54882283,11540651,3
+oakhui,11540651,3
+amour1,11540651,4
+bigmiao,11540651,3
+66339819,11540651,4
+3640083,11540651,4
+verygodort,11540651,5
+3541486,11540651,3
+56524460,11540651,4
+58748815,11540651,4
+36725270,11540651,3
+gioupy,11540651,4
+88260197,11540651,4
+charleswangpku,11540651,5
+wmwan,11540651,5
+allblue,11540651,3
+70805035,11540651,4
+issalou,11540651,3
+43864644,11540651,4
+87691265,11540651,2
+36853373,11540651,4
+3762146,11540651,1
+49135954,11540651,3
+46696173,11540651,3
+48548172,11540651,3
+113163801,11540651,3
+45406348,11540651,4
+48357056,11540651,3
+liuxiaowan,11540651,3
+81963195,11540651,3
+4248478,11540651,3
+edomino,11540651,3
+SharonShining,11540651,4
+thegrudge,11540651,4
+aysonzyy,11540651,5
+95451283,11540651,4
+109858301,11540651,4
+4439510,11540651,3
+Amber-huge,11540651,2
+luohuazhu,11540651,3
+gintokihi,11540651,2
+Andy9,11540651,4
+fancy8612,11540651,5
+61602922,11540651,-1
+47308476,11540651,4
+90807462,11540651,5
+qianlizi,11540651,4
+51432613,11540651,5
+34347136,11540651,3
+60307464,11540651,4
+24699373,11540651,3
+68528163,11540651,4
+cnxder,11540651,4
+cly0321,11540651,4
+14988021,11540651,5
+1034946,11540651,4
+morgana,11540651,3
+remuse,11540651,3
+enjoyleelife,11540651,3
+basu,11540651,4
+54039660,11540651,-1
+53830250,11540651,-1
+Cecil.,11540651,3
+90091065,11540651,3
+44549599,11540651,4
+53744128,11540651,4
+scarlett4ever,11540651,3
+simsummer,11540651,4
+lygirl989193,11540651,4
+catsama77,11540651,3
+57978152,11540651,3
+66251904,11540651,4
+Anoni,11540651,3
+48165079,11540651,3
+48165079,11540651,3
+14504751,11540651,3
+lynnpsy,11540651,1
+wildold,11540651,3
+2752506,11540651,3
+woshigejilao,11540651,3
+50312553,11540651,3
+37380998,11540651,3
+4385012,11540651,2
+77797292,11540651,4
+119123455,11540651,3
+shinninnovator,11540651,3
+lazzaro,11540651,3
+78339818,11540651,-1
+shmilymichelle,11540651,2
+80110950,11540651,2
+wunie,11540651,4
+63310083,11540651,5
+48126061,11540651,4
+52534942,11540651,-1
+52534942,11540651,-1
+14186620,11540651,-1
+1666477,11540651,3
+47148942,11540651,5
+xlts,11540651,-1
+charleslee707,11540651,3
+65087582,11540651,2
+58379589,11540651,4
+47787325,11540651,5
+68424766,11540651,4
+10128811,11540651,4
+87357593,11540651,2
+47533640,11540651,3
+hepu,11540651,-1
+60390276,11540651,3
+42149787,11540651,-1
+Davidcyclone,11540651,-1
+48506304,11540651,5
+4790872,11540651,3
+zhouxiushan,11540651,4
+popzoe,11540651,3
+91319965,11540651,3
+eveshi,11540651,5
+60918605,11540651,3
+Stephen2046,11540651,4
+74479513,11540651,4
+52287609,11540651,2
+2402421,11540651,4
+54989059,11540651,3
+60719241,11540651,4
+l97183025,11540651,3
+2189211,11540651,3
+90986289,11540651,4
+54901617,11540651,5
+1274922,11540651,3
+say,11540651,3
+81999811,11540651,5
+juno_wang,11540651,3
+63531003,11540651,4
+misslisa,11540651,3
+x1Ao_y,11540651,4
+46038574,11540651,4
+maureenz,11540651,4
+2923778,11540651,4
+duanziyu,11540651,4
+spicymilk,11540651,4
+65167478,11540651,3
+50754510,11540651,3
+andynihan,11540651,5
+48829724,11540651,3
+50570726,11540651,4
+51370063,11540651,4
+121008120,11540651,-1
+48483690,11540651,1
+rucianyimo,11540651,4
+64801860,11540651,5
+61718141,11540651,4
+missmico,11540651,4
+never_missing,11540651,3
+kimxixi,11540651,3
+67044747,11540651,4
+48685450,11540651,4
+63305510,11540651,4
+monster1000,11540651,5
+PriscillaLSH,11540651,2
+45927442,11540651,4
+83356943,11540651,4
+anvirdo,11540651,4
+57962044,11540651,4
+52670612,11540651,3
+1919885,11540651,5
+1565710,11540651,5
+49298107,11540651,3
+showscai,11540651,5
+yaoliu,11540651,5
+56182429,11540651,3
+48042943,11540651,5
+3782689,11540651,3
+52294863,11540651,3
+ambrosia.levine,11540651,3
+edgeyeung,11540651,4
+foleyfan,11540651,5
+80226411,11540651,3
+renbirth,11540651,5
+41564076,11540651,3
+95672258,11540651,3
+103056686,11540651,5
+nengyinyibeiwu,11540651,3
+itsuki11,11540651,3
+poppy25,11540651,3
+53479679,11540651,5
+FSRMD,11540651,4
+reflan,11540651,3
+Daniel-Cheung,11540651,5
+34131923,11540651,3
+4107529,11540651,3
+50383146,11540651,4
+102051444,11540651,4
+47994797,11540651,3
+73755227,11540651,4
+josherich,11540651,4
+namatterwhat,11540651,4
+93500334,11540651,4
+cjl49168,11540651,3
+aivnce,11540651,3
+yuan0243109,11540651,3
+christopherlin,11540651,3
+68894222,11540651,3
+4165770,11540651,3
+62230987,11540651,5
+46507893,11540651,4
+48354152,11540651,3
+48866605,11540651,3
+57229828,11540651,5
+daetou,11540651,4
+4340099,11540651,2
+120902753,11540651,5
+sean_chen,11540651,4
+47733868,11540651,4
+74015810,11540651,4
+83476878,11540651,3
+76193683,11540651,5
+junejoe,11540651,4
+MrBaby,11540651,-1
+3045195,11540651,4
+4469892,11540651,4
+JustStayReal,11540651,4
+38646660,11540651,3
+blue995,11540651,3
+57367354,11540651,4
+120042812,11540651,4
+lovejidi,11540651,4
+61809588,11540651,5
+14352801,11540651,4
+3727803,11540651,5
+67375279,11540651,3
+54076844,11540651,3
+71561935,11540651,3
+44527198,11540651,4
+mariah1986,11540651,3
+memejoo,11540651,4
+56137272,11540651,3
+31120990,11540651,4
+52790172,11540651,4
+1495292,11540651,4
+qingmuwu,11540651,5
+52441252,11540651,4
+64223729,11540651,4
+npzhd,11540651,3
+LLsupportsJIM,11540651,3
+3273698,11540651,5
+2867984,11540651,3
+50060410,11540651,3
+wsz910919,11540651,3
+2465698,11540651,3
+58578065,11540651,4
+bademotion,11540651,4
+57857115,11540651,3
+42927229,11540651,4
+ouiiissa,11540651,3
+48922054,11540651,4
+biguniverse,11540651,5
+gaopengyuan,11540651,4
+sanji,11540651,3
+70238509,11540651,2
+27560437,11540651,5
+54756616,11540651,4
+dear-lc,11540651,3
+skiny_orange,11540651,4
+60145877,11540651,4
+yzone,11540651,5
+6303192,11540651,3
+childinzoo,11540651,4
+30116913,11540651,3
+62946373,11540651,4
+93892137,11540651,3
+58673226,11540651,3
+jidecengjing,11540651,3
+50351028,11540651,3
+87621689,11540651,4
+87621689,11540651,4
+81296522,11540651,4
+82838350,11540651,4
+43966741,11540651,4
+adui,11540651,3
+2428233,11540651,3
+Andreayanxiaoxi,11540651,4
+39271216,11540651,4
+50125343,11540651,4
+yofly,11540651,4
+twofat222,11540651,4
+themissingken,11540651,3
+49419366,11540651,4
+88197662,11540651,3
+52156870,11540651,3
+119487629,11540651,4
+57947049,11540651,4
+numbnight,11540651,3
+76554749,11540651,3
+2759466,11540651,4
+2759466,11540651,4
+61445283,11540651,-1
+nknymphet,11540651,3
+Cllindaoud,11540651,2
+90971876,11540651,4
+58342964,11540651,4
+zuoshoudezuo,11540651,3
+72255246,11540651,1
+2438543,11540651,-1
+chesbasten,11540651,4
+2872117,11540651,2
+yuedawei,11540651,2
+yangyanggege,11540651,4
+6578851,11540651,4
+36716093,11540651,3
+kopite,11540651,4
+73150320,11540651,3
+caocaoa,11540651,3
+aking,11540651,3
+wusiyi,11540651,3
+38928061,11540651,3
+ffk1119,11540651,3
+45484261,11540651,3
+3446661,11540651,5
+4196011,11540651,3
+cryingcatjojo,11540651,3
+32433633,11540651,4
+2956956,11540651,-1
+shishuo,11540651,-1
+60367888,11540651,2
+63138045,11540651,-1
+3981876,11540651,4
+49060712,11540651,5
+tuka0710,11540651,4
+banchiling,11540651,3
+llh9277,11540651,3
+July_AuE,11540651,4
+pacifica,11540651,5
+53601891,11540651,4
+34321151,11540651,4
+40572936,11540651,5
+wangzhy,11540651,3
+pineappletu,11540651,4
+summermayfly,11540651,3
+45242330,11540651,3
+57590168,11540651,4
+Makoto614,11540651,4
+57604793,11540651,5
+32890058,11540651,3
+ariellau,11540651,3
+todaymorning,11540651,5
+Heyimwalker,11540651,2
+znrpiggey,11540651,3
+74460460,11540651,4
+3140834,11540651,4
+wangying2325,11540651,4
+78397546,11540651,3
+3073055,11540651,3
+cokasusu,11540651,4
+4502707,11540651,4
+63890745,11540651,5
+49128296,11540651,3
+crystal1124,11540651,-1
+cathymelody,11540651,3
+61626156,11540651,4
+buwanmeidewanme,11540651,3
+52628024,11540651,4
+75077274,11540651,3
+yyy18n,11540651,3
+Chiunotfortoday,11540651,4
+39987739,11540651,4
+nelson1014,11540651,3
+sibylwang,11540651,3
+50451911,11540651,4
+42171704,11540651,3
+16965088,11540651,3
+7255952,11540651,4
+33768233,11540651,5
+121103196,11540651,3
+53910261,11540651,5
+colarxu,11540651,4
+56430618,11540651,4
+43648335,11540651,4
+115849992,11540651,2
+ECEO,11540651,5
+66173769,11540651,4
+Hc66,11540651,4
+85360234,11540651,3
+103553630,11540651,3
+honeybunny9048,11540651,3
+troy521,11540651,4
+1831746,11540651,3
+47135774,11540651,-1
+44457357,11540651,2
+120116458,11540651,4
+16901476,11540651,4
+43698664,11540651,4
+bookpoto,11540651,3
+lakiroby,11540651,3
+69685647,11540651,4
+janie225,11540651,4
+mossx,11540651,2
+htl90983,11540651,2
+shizishou,11540651,-1
+60186583,11540651,3
+61932917,11540651,3
+23321019,11540651,3
+59025385,11540651,3
+xiaobai2046,11540651,2
+1369113,11540651,3
+dioscuri0602,11540651,4
+62625427,11540651,4
+3375154,11540651,3
+1721507,11540651,4
+63183774,11540651,4
+65313383,11540651,4
+49356246,11540651,3
+dongqingjia,11540651,3
+78602807,11540651,5
+75288450,11540651,3
+heartrick,11540651,3
+81095299,11540651,3
+2327781,11540651,3
+koiwai0908,11540651,4
+12498692,11540651,4
+pianohood,11540651,4
+ruilixiurui,11540651,4
+55640775,11540651,3
+83389859,11540651,4
+tayee,11540651,4
+62545390,11540651,-1
+jasjaff,11540651,4
+46333522,11540651,5
+85384929,11540651,3
+zhaix0221,11540651,4
+60119754,11540651,2
+16780361,11540651,3
+jinyuji,11540651,4
+lemonomel,11540651,4
+niuxiaohei,11540651,2
+61462956,11540651,4
+sherry-he,11540651,3
+jude_chen,11540651,3
+jxyz,11540651,-1
+Fxlly3,11540651,3
+43625639,11540651,4
+lancaoqin,11540651,3
+59446959,11540651,3
+3566789,11540651,4
+2927344,11540651,3
+fanshuren,11540651,5
+121074400,11540651,2
+56655457,11540651,3
+mrfengge,11540651,4
+retireforread,11540651,4
+OneiLulu,11540651,4
+good_man,11540651,5
+62457534,11540651,2
+2516176,11540651,4
+twalnut,11540651,-1
+mexihu,11540651,5
+onshuway,11540651,4
+45651390,11540651,4
+3959996,11540651,4
+2600540,11540651,5
+baijixing,11540651,4
+yxsb,11540651,3
+mcyuane,11540651,3
+2414691,11540651,3
+bolu_zz,11540651,4
+112895942,11540651,3
+74056494,11540651,3
+lijingyu1027,11540651,3
+58812825,11540651,5
+47193126,11540651,3
+4918550,11540651,3
+lixiuyeyu,11540651,4
+67870138,11540651,3
+idiot.child,11540651,5
+1809705,11540651,3
+Martin-Zhang,11540651,3
+68764818,11540651,4
+11012424,11540651,3
+82719526,11540651,4
+zcq741433220,11540651,4
+liuweimao,11540651,4
+3232828,11540651,4
+78655020,11540651,5
+55981199,11540651,2
+6752200,11540651,5
+58249428,11540651,3
+88078787,11540651,4
+108282995,11540651,4
+48500258,11540651,5
+50039035,11540651,3
+72792251,11540651,3
+xfdzl,11540651,1
+92155502,11540651,4
+2829164,11540651,5
+11035464,11540651,2
+zmyBattier,11540651,3
+LilithXu,11540651,3
+82569239,11540651,4
+xingxing0204,11540651,2
+1491079,11540651,3
+mythjill,11540651,4
+small_insects,11540651,4
+121066615,11540651,4
+hanax4,11540651,4
+62903796,11540651,5
+55774823,11540651,5
+64120999,11540651,4
+sjt641100358,11540651,4
+ljksdhr,11540651,5
+48863683,11540651,3
+52838594,11540651,2
+55842990,11540651,3
+71953415,11540651,3
+89773690,11540651,3
+76636095,11540651,4
+56676061,11540651,4
+4511323,11540651,3
+Novembersnow,11540651,3
+nofer,11540651,4
+113285581,11540651,4
+62346655,11540651,3
+sunzning,11540651,4
+mufengqin,11540651,4
+83250000,11540651,4
+48474156,11540651,3
+81773475,11540651,3
+71336529,11540651,3
+poisonseven,11540651,4
+3880844,11540651,3
+1240037,11540651,4
+55287492,11540651,5
+47757084,11540651,3
+72257329,11540651,3
+jojo2046,11540651,4
+60127464,11540651,4
+1115324,11540651,4
+78428613,11540651,4
+yoyoyoyoyoyoyo,11540651,3
+53326904,11540651,4
+36942754,11540651,3
+leonchoi,11540651,4
+54642925,11540651,4
+53362350,11540651,5
+xiaomujunjun,11540651,3
+kuangbi,11540651,3
+8523675,11540651,2
+80936991,11540651,3
+49266863,11540651,4
+68138320,11540651,3
+blueskyfly,11540651,3
+65764407,11540651,3
+3078958,11540651,-1
+3177593,11540651,2
+81090960,11540651,2
+65058502,11540651,4
+aniya320,11540651,4
+40237768,11540651,2
+Likea,11540651,4
+102652883,11540651,3
+45382901,11540651,4
+juwujian,11540651,3
+yaoguanzi,11540651,4
+45991925,11540651,3
+joyenjoyjoy,11540651,3
+anearl,11540651,4
+46712687,11540651,1
+Nenya,11540651,3
+13070662,11540651,3
+46287830,11540651,-1
+ymirhh,11540651,4
+Caligola,11540651,4
+bearlost,11540651,3
+35163305,11540651,4
+4122711,11540651,5
+vivian1204,11540651,4
+61982601,11540651,3
+wuhuihong1992,11540651,4
+lchenye,11540651,2
+yourblossom,11540651,3
+yinxiaoyun,11540651,5
+47679030,11540651,4
+62936243,11540651,4
+talentygw,11540651,4
+58179619,11540651,3
+65913822,11540651,3
+51978840,11540651,4
+64122386,11540651,4
+112970184,11540651,2
+yueyuebetty,11540651,-1
+56922790,11540651,5
+56299828,11540651,4
+learfei,11540651,5
+Utopia.YY,11540651,4
+37095412,11540651,5
+amanjj,11540651,-1
+amanjj,11540651,-1
+86240865,11540651,5
+keningisgod,11540651,3
+78621739,11540651,4
+jiangli1988,11540651,5
+17672710,11540651,3
+sebastiaan,11540651,3
+yuruo,11540651,4
+94093856,11540651,5
+samsaran,11540651,4
+77774632,11540651,3
+42643774,11540651,3
+3089552,11540651,4
+87699080,11540651,3
+50198822,11540651,4
+hime28,11540651,4
+planoto,11540651,4
+hanqiu1995,11540651,5
+60156657,11540651,3
+njtintin,11540651,5
+62095615,11540651,3
+65535895,11540651,5
+ask4more,11540651,3
+51700900,11540651,3
+twooneseven,11540651,3
+baishibaihu,11540651,4
+57088195,11540651,3
+108797239,11540651,4
+qingdaofu,11540651,4
+woshiex,11540651,3
+84994911,11540651,4
+3925373,11540651,3
+74140703,11540651,3
+agenta,11540651,4
+2238966,11540651,3
+119243560,11540651,4
+73647832,11540651,5
+zqsaima,11540651,4
+62368657,11540651,-1
+46531912,11540651,4
+66057217,11540651,3
+79822624,11540651,3
+62661776,11540651,4
+station123,11540651,4
+50582924,11540651,3
+leocas,11540651,4
+beautifish,11540651,4
+pirouette,11540651,3
+zqy931213,11540651,3
+1486502,11540651,3
+81939398,11540651,3
+55405960,11540651,4
+Hi_Five,11540651,4
+shunong,11540651,3
+53317988,11540651,2
+34544680,11540651,4
+45411639,11540651,4
+1671568,11540651,3
+75548648,11540651,4
+64507278,11540651,4
+45207380,11540651,3
+fotoz,11540651,3
+31102423,11540651,3
+lynn0128,11540651,3
+75474977,11540651,5
+CanaanYoung,11540651,3
+42368147,11540651,2
+36718097,11540651,4
+2965888,11540651,4
+115974716,11540651,3
+46722209,11540651,4
+yeeeeeee,11540651,3
+121568276,11540651,4
+36466126,11540651,5
+53806348,11540651,4
+kirayo,11540651,5
+mml3774,11540651,3
+JDevonshire,11540651,3
+yochiro,11540651,5
+cw2011,11540651,3
+61726589,11540651,4
+48380446,11540651,3
+freeilove,11540651,5
+56571222,11540651,3
+11769509,11540651,4
+Naturexu,11540651,4
+btone0808,11540651,4
+50752972,11540651,3
+48524644,11540651,2
+63612050,11540651,3
+1550135,11540651,3
+56454388,11540651,4
+sodasis,11540651,3
+lynnstefanie,11540651,3
+fuzyu,11540651,5
+34525386,11540651,1
+difeijing,11540651,2
+3305372,11540651,3
+abibdy,11540651,5
+cilar,11540651,3
+70738525,11540651,5
+65641173,11540651,3
+2734376,11540651,3
+birdgirl,11540651,3
+classical622,11540651,3
+73600166,11540651,4
+32390009,11540651,3
+97982238,11540651,4
+2492062,11540651,4
+3202437,11540651,2
+pandatou,11540651,5
+65417437,11540651,4
+michaelmine,11540651,4
+66331569,11540651,4
+Aurora707,11540651,3
+2714941,11540651,5
+58587564,11540651,-1
+Candy08,11540651,4
+CSO-Botasky,11540651,5
+cherry_ocean,11540651,4
+68389512,11540651,-1
+20885358,11540651,4
+3588917,11540651,4
+yanjiaweii,11540651,4
+91715211,11540651,3
+vigalee,11540651,4
+xyhqs1984,11540651,4
+50506293,11540651,4
+33245540,11540651,3
+52143519,11540651,3
+MeloTheFisher,11540651,5
+4140462,11540651,3
+56035155,11540651,3
+57676648,11540651,3
+65013886,11540651,3
+vincent910203,11540651,4
+veiko,11540651,4
+58313990,11540651,4
+qingbingyuhu,11540651,3
+cosmos-deu,11540651,2
+88652488,11540651,2
+65458998,11540651,3
+xiaojirou007,11540651,3
+69197339,11540651,3
+46065661,11540651,5
+1429902,11540651,3
+96514775,11540651,4
+renjiananhuo,11540651,4
+51704929,11540651,4
+1396380,11540651,3
+56857008,11540651,3
+oldragontomb,11540651,3
+51892425,11540651,3
+1783093,11540651,-1
+49568811,11540651,4
+wleii,11540651,-1
+che1989,11540651,4
+37424688,11540651,2
+AlicePrincess,11540651,-1
+51222661,11540651,4
+25960765,11540651,3
+xuyq,11540651,3
+4608890,11540651,4
+vivian1165,11540651,4
+68719898,11540651,3
+70915171,11540651,4
+hashayaqi,11540651,4
+Ein7,11540651,3
+syoyin,11540651,-1
+69520730,11540651,4
+121544957,11540651,4
+42000641,11540651,3
+1523440,11540651,3
+60878653,11540651,4
+liqiyao8931,11540651,5
+43480485,11540651,3
+johnwan2007,11540651,3
+oliver521,11540651,3
+119886262,11540651,4
+67618719,11540651,4
+67618719,11540651,4
+2788057,11540651,4
+f91_82,11540651,3
+chara,11540651,4
+76804621,11540651,4
+jasonyun,11540651,4
+49983823,11540651,3
+58059498,11540651,3
+gwq531,11540651,3
+GreenL,11540651,3
+hanblues,11540651,4
+21946696,11540651,4
+2410499,11540651,4
+Q9,11540651,3
+JunkRoad,11540651,4
+69045210,11540651,3
+59617623,11540651,4
+51985669,11540651,3
+75080045,11540651,4
+40114379,11540651,5
+52325322,11540651,4
+62452692,11540651,4
+51965596,11540651,4
+73739772,11540651,3
+83853096,11540651,4
+50665690,11540651,3
+66842888,11540651,3
+43130617,11540651,2
+zeph1462,11540651,3
+loveyourass,11540651,4
+65981408,11540651,4
+3671869,11540651,3
+58231376,11540651,3
+89575571,11540651,4
+70327248,11540651,4
+106645346,11540651,4
+3529418,11540651,5
+2539543,11540651,4
+97431657,11540651,4
+50212998,11540651,3
+50212998,11540651,3
+2394056,11540651,-1
+67368772,11540651,4
+65523668,11540651,3
+six211,11540651,3
+70862123,11540651,3
+59113427,11540651,5
+CharlesLC,11540651,4
+63770150,11540651,4
+7132062,11540651,3
+98473521,11540651,4
+51438383,11540651,2
+choushabi,11540651,3
+63254362,11540651,3
+simpledeer,11540651,3
+yinleo,11540651,3
+awooda,11540651,3
+xiaoye780621,11540651,3
+49284729,11540651,4
+qingqingr,11540651,-1
+47308380,11540651,4
+39328555,11540651,3
+4066964,11540651,4
+115885281,11540651,3
+63041714,11540651,4
+53835110,11540651,3
+63827792,11540651,3
+53653707,11540651,5
+wanwanwan4u,11540651,5
+cl20lc,11540651,4
+91604108,11540651,3
+67238808,11540651,3
+3053426,11540651,3
+bejieforever,11540651,3
+47869189,11540651,4
+4622986,11540651,4
+63730928,11540651,4
+47305840,11540651,4
+newbear,11540651,4
+64121149,11540651,5
+79938004,11540651,4
+64854726,11540651,3
+49449526,11540651,4
+s_mileyutian,11540651,4
+devnet,11540651,3
+53608504,11540651,4
+lagumili,11540651,5
+38691155,11540651,5
+GarYZuA,11540651,5
+67689487,11540651,3
+barboon,11540651,3
+89852120,11540651,3
+63180462,11540651,4
+wy320,11540651,4
+devilnue,11540651,4
+26116014,11540651,3
+bulbosa,11540651,4
+99931426,11540651,3
+2201753,11540651,3
+izune,11540651,3
+gjr1027,11540651,4
+3513677,11540651,3
+1352823,11540651,3
+1097236,11540651,4
+62504399,11540651,4
+nieblalan,11540651,3
+39913411,11540651,4
+120538254,11540651,4
+simplymeanna,11540651,4
+catsoup,11540651,3
+66550666,11540651,3
+56533866,11540651,3
+8549482,11540651,5
+76185877,11540651,4
+icebugger,11540651,4
+71142992,11540651,2
+qizeyu,11540651,2
+riverbrother,11540651,4
+kiki204629,11540651,4
+1373968,11540651,5
+A.Mo,11540651,4
+65907866,11540651,3
+buxiebujie,11540651,2
+49981766,11540651,4
+xmausp,11540651,4
+foreverjc,11540651,-1
+55373656,11540651,4
+43667084,11540651,3
+4631001,11540651,3
+51783252,11540651,3
+YolaZhang,11540651,4
+1159296,11540651,3
+jayzhung2011,11540651,5
+49416673,11540651,3
+49100394,11540651,3
+97945976,11540651,4
+ILWTFT,11540651,2
+85323930,11540651,4
+momojasper,11540651,3
+63322067,11540651,5
+nineautumn,11540651,4
+44412475,11540651,5
+3532237,11540651,3
+woshzd,11540651,4
+89768757,11540651,2
+46310239,11540651,3
+78410506,11540651,3
+1719492,11540651,3
+susan-no-home,11540651,3
+48119983,11540651,4
+59228070,11540651,4
+84171597,11540651,4
+49003252,11540651,3
+goodbyemyprince,11540651,2
+76689420,11540651,3
+53002549,11540651,3
+sunkumo,11540651,3
+58545738,11540651,4
+bxg555,11540651,-1
+67843912,11540651,2
+67843912,11540651,2
+LHone,11540651,2
+50629676,11540651,3
+40337501,11540651,3
+57818340,11540651,4
+smart-ass,11540651,3
+34005046,11540651,1
+45340915,11540651,3
+anonymousor,11540651,3
+karenzkk,11540651,4
+thomsonkoo,11540651,3
+littlecin,11540651,4
+104178936,11540651,4
+2187326,11540651,3
+39279260,11540651,2
+62334058,11540651,1
+sugarsugarcane,11540651,4
+j946791150,11540651,3
+56016863,11540651,3
+WSSWHL,11540651,3
+miaomiaomiao321,11540651,3
+Uvo,11540651,3
+tintintsang,11540651,3
+35782756,11540651,2
+2483160,11540651,5
+43716096,11540651,3
+4422872,11540651,4
+nangle,11540651,2
+powerfultony,11540651,3
+blue1929,11540651,3
+55708069,11540651,5
+81552285,11540651,3
+dxl1236,11540651,4
+67184394,11540651,5
+92348000,11540651,3
+53656219,11540651,4
+lengleng,11540651,3
+81129445,11540651,3
+shenyong6813,11540651,2
+imedi,11540651,3
+79914885,11540651,5
+liangsiming,11540651,4
+49174429,11540651,3
+80164004,11540651,1
+46394662,11540651,3
+82663579,11540651,4
+1017956,11540651,3
+117130584,11540651,4
+58596058,11540651,4
+68427539,11540651,3
+lostinpradas,11540651,-1
+35407437,11540651,-1
+42150092,11540651,4
+redjar,11540651,4
+44549010,11540651,4
+3546509,11540651,4
+lincolnhong,11540651,3
+3913353,11540651,4
+71574131,11540651,3
+58035552,11540651,3
+TalkChan,11540651,3
+14965275,11540651,4
+asanisimasa,11540651,3
+baisechengai,11540651,4
+MOVIE--KO,11540651,4
+50900048,11540651,3
+AILUHAN123,11540651,3
+87035372,11540651,3
+mackalex,11540651,3
+74499406,11540651,3
+48721213,11540651,-1
+4836705,11540651,3
+64794289,11540651,2
+46370921,11540651,5
+chqqq,11540651,4
+69165098,11540651,3
+poeee,11540651,2
+1763471,11540651,2
+StevenSuen-,11540651,4
+66394593,11540651,4
+quanzhouren,11540651,4
+Clarke,11540651,3
+100294226,11540651,-1
+stef23,11540651,4
+39681378,11540651,4
+57286143,11540651,3
+87997485,11540651,4
+104818700,11540651,4
+2144303,11540651,5
+ellie0314,11540651,5
+deardearvan,11540651,3
+2651943,11540651,4
+48712788,11540651,4
+3399267,11540651,4
+88452602,11540651,4
+VVIVXIV,11540651,3
+RonHan,11540651,4
+aizhengyang,11540651,3
+zhr19951204,11540651,4
+gohan,11540651,3
+dataroom,11540651,3
+suxudong,11540651,4
+exherb,11540651,4
+49201790,11540651,5
+76618509,11540651,2
+mAggietll,11540651,3
+74573393,11540651,4
+zhaigonglue,11540651,4
+jammie2011,11540651,3
+68878726,11540651,5
+61739872,11540651,5
+62877248,11540651,3
+4024224,11540651,4
+74353904,11540651,3
+Somalia-pirate,11540651,4
+hollycn,11540651,4
+45465205,11540651,4
+53076809,11540651,4
+57923940,11540651,2
+108879962,11540651,2
+51605377,11540651,4
+lyych,11540651,3
+1001195,11540651,4
+88155488,11540651,4
+giantguo,11540651,4
+podolski,11540651,4
+Jienishuilema,11540651,4
+frontboy,11540651,3
+moca87,11540651,4
+93892762,11540651,4
+66973648,11540651,4
+vincentjones,11540651,4
+60378678,11540651,4
+83492460,11540651,4
+melons,11540651,4
+102902029,11540651,4
+48051561,11540651,5
+sweetiantian,11540651,3
+80791412,11540651,4
+51721466,11540651,3
+akin11,11540651,4
+114417648,11540651,2
+68859699,11540651,4
+wanpunleo,11540651,4
+mr.littlefish,11540651,5
+69272743,11540651,4
+81205305,11540651,4
+49356152,11540651,4
+sosofly,11540651,4
+1402905,11540651,3
+38702982,11540651,5
+funz_7,11540651,4
+bigsb,11540651,3
+65925279,11540651,4
+bergy10,11540651,5
+42680639,11540651,4
+sona302,11540651,4
+qiao517,11540651,4
+40515302,11540651,1
+yoocat,11540651,3
+119224522,11540651,3
+1392150,11540651,3
+59774628,11540651,3
+catherine_koo,11540651,4
+84303452,11540651,5
+82353804,11540651,4
+dolcevulpes,11540651,3
+Clara0916,11540651,4
+70954003,11540651,4
+1585106,11540651,3
+53479522,11540651,3
+108942456,11540651,3
+102997764,11540651,3
+VivianChow317,11540651,4
+65911258,11540651,4
+6124302,11540651,4
+4073845,11540651,5
+63049878,11540651,3
+109558086,11540651,4
+Eric-Andy,11540651,4
+53267569,11540651,3
+35220185,11540651,5
+54023914,11540651,3
+87772667,11540651,3
+lingjiaying,11540651,3
+jamkwokurt,11540651,3
+peartnut,11540651,4
+58065568,11540651,3
+66332847,11540651,3
+53283594,11540651,4
+megamind123,11540651,2
+46258857,11540651,3
+tonyleung2046,11540651,2
+3851255,11540651,3
+92494614,11540651,4
+27522311,11540651,4
+jokerw,11540651,-1
+will-l,11540651,5
+71644727,11540651,2
+51199402,11540651,1
+beilegeju,11540651,4
+4154813,11540651,3
+51077034,11540651,4
+1268296,11540651,5
+44730715,11540651,3
+44028431,11540651,4
+60529407,11540651,3
+56041375,11540651,5
+55630387,11540651,3
+46891725,11540651,4
+gentle_dove,11540651,3
+Meva,11540651,3
+2776951,11540651,3
+42919587,11540651,3
+69133855,11540651,4
+44500409,11540651,3
+mwangym,11540651,3
+cgy0330,11540651,4
+4165611,11540651,3
+Emmie,11540651,4
+41634233,11540651,3
+sho2mon4e4y,11540651,4
+2106585,11540651,3
+ameba,11540651,5
+79254578,11540651,3
+49601163,11540651,5
+2163010,11540651,3
+Showga,11540651,3
+jiangrui89,11540651,3
+44178660,11540651,3
+92773537,11540651,3
+sunflowermay,11540651,3
+markknight,11540651,4
+57488189,11540651,5
+81042721,11540651,3
+sodazxw,11540651,4
+80676857,11540651,4
+wangmuyang,11540651,3
+92853414,11540651,-1
+96044338,11540651,3
+qinger1999,11540651,3
+65373294,11540651,1
+ly244855983,11540651,4
+58217947,11540651,5
+xiaozhu19880805,11540651,3
+83030951,11540651,2
+Leostella,11540651,4
+yeyinger,11540651,3
+iginite,11540651,3
+34596748,11540651,4
+48441373,11540651,4
+48765818,11540651,3
+62917415,11540651,4
+lesley30stm,11540651,3
+51907524,11540651,4
+80063534,11540651,3
+70421309,11540651,5
+64544380,11540651,3
+54653189,11540651,1
+33561648,11540651,4
+70238352,11540651,3
+volitta,11540651,3
+45526237,11540651,4
+68465476,11540651,4
+51939758,11540651,5
+ingrid25,11540651,3
+48930135,11540651,4
+islandsea,11540651,2
+91252299,11540651,3
+3466389,11540651,3
+helene9933,11540651,3
+62211088,11540651,3
+ew94kmd,11540651,4
+37521103,11540651,5
+42011516,11540651,2
+68620338,11540651,3
+57080555,11540651,4
+59958107,11540651,5
+vvivvi,11540651,3
+60207900,11540651,4
+57252256,11540651,3
+43393007,11540651,2
+72985710,11540651,4
+79199701,11540651,5
+lc0423,11540651,3
+miyuwen,11540651,3
+4228422,11540651,3
+jinchang,11540651,3
+58202838,11540651,3
+65014427,11540651,3
+51705636,11540651,4
+83288763,11540651,4
+75113411,11540651,3
+44010990,11540651,5
+50833916,11540651,4
+58731723,11540651,4
+37931387,11540651,4
+xihahaha,11540651,3
+47333124,11540651,3
+65361448,11540651,4
+81979053,11540651,4
+38416664,11540651,4
+zaoshuizaoqi,11540651,4
+beatleyann,11540651,4
+73084756,11540651,4
+51974103,11540651,3
+44963286,11540651,4
+2106137,11540651,3
+fumihiko1985,11540651,4
+50438430,11540651,4
+83773769,11540651,4
+5747784,11540651,3
+94546976,11540651,3
+saintkaka,11540651,3
+SolenShieh,11540651,3
+96796487,11540651,4
+67812928,11540651,2
+66513837,11540651,5
+27475876,11540651,4
+carrypotter,11540651,3
+sylar83,11540651,3
+48947262,11540651,3
+1781738,11540651,3
+ruo1996,11540651,2
+54721365,11540651,3
+80887950,11540651,4
+57581825,11540651,3
+maye696,11540651,3
+2890229,11540651,4
+75531469,11540651,5
+57105306,11540651,3
+jqcx,11540651,2
+75651066,11540651,3
+92468807,11540651,3
+6250833,11540651,3
+2092765,11540651,3
+inspiredxx,11540651,2
+3638203,11540651,4
+magic1029,11540651,3
+2048402,11540651,3
+45797451,11540651,3
+67162659,11540651,3
+58872297,11540651,5
+asanjiamomo,11540651,3
+fanyichao,11540651,4
+hellowind,11540651,3
+4132580,11540651,4
+easytodo,11540651,4
+53559432,11540651,3
+53644977,11540651,-1
+46520547,11540651,-1
+44412603,11540651,3
+samsyu,11540651,3
+2978891,11540651,4
+59568163,11540651,4
+stng,11540651,3
+AspireY,11540651,3
+Linqiny,11540651,3
+tmcclh,11540651,3
+yalindongdong,11540651,3
+abpeter,11540651,3
+69166545,11540651,3
+89176238,11540651,5
+temporarylife,11540651,3
+36121962,11540651,5
+67836856,11540651,5
+45890616,11540651,3
+49082695,11540651,3
+33204818,11540651,3
+ydlxiaolong,11540651,3
+39132532,11540651,-1
+42267736,11540651,5
+jeremywan,11540651,3
+becky-me,11540651,3
+a1b2c31221,11540651,4
+1452797,11540651,3
+75441561,11540651,3
+53051656,11540651,-1
+51029851,11540651,3
+87308057,11540651,3
+dashixiaoshi,11540651,4
+78347009,11540651,3
+lihaoshabi,11540651,3
+1805745,11540651,4
+48414089,11540651,3
+45183610,11540651,3
+cheesejia,11540651,4
+60002715,11540651,3
+jiemopaofu,11540651,5
+66669080,11540651,3
+linbinchi,11540651,4
+Jealousy,11540651,3
+57070161,11540651,3
+2959189,11540651,4
+koreadream,11540651,3
+83756975,11540651,5
+vanessadali,11540651,4
+sadiee,11540651,3
+huayeah,11540651,4
+deartintin,11540651,3
+4678321,11540651,3
+66458815,11540651,3
+snoopybunny,11540651,-1
+dust4hope,11540651,4
+3029693,11540651,4
+76123737,11540651,3
+62881995,11540651,4
+39285669,11540651,-1
+79820861,11540651,3
+52702022,11540651,3
+53677228,11540651,4
+shouting,11540651,3
+limpidness,11540651,3
+tierra,11540651,3
+61504727,11540651,5
+Jerchozj,11540651,4
+81249317,11540651,3
+57214869,11540651,3
+isthislove,11540651,3
+46561056,11540651,-1
+74680055,11540651,3
+lidadan,11540651,3
+silencewong,11540651,2
+2761640,11540651,5
+kafuka-K,11540651,4
+78828351,11540651,3
+53560863,11540651,4
+40181028,11540651,5
+62192212,11540651,3
+49072248,11540651,5
+reeboir,11540651,-1
+69503000,11540651,4
+54786298,11540651,3
+xiaoweiwang,11540651,4
+57665696,11540651,-1
+queenschill,11540651,3
+2076258,11540651,4
+3322566,11540651,4
+weecy,11540651,4
+Schwarzwaelder,11540651,4
+adelebleu,11540651,4
+4706549,11540651,-1
+57534338,11540651,3
+St.Mango,11540651,3
+42469777,11540651,4
+wakaka1986,11540651,3
+9164431,11540651,2
+31301735,11540651,3
+angle223,11540651,4
+yc11,11540651,-1
+49125980,11540651,3
+king_lijin,11540651,4
+liuningba,11540651,3
+74536227,11540651,4
+52938830,11540651,-1
+shshshadow,11540651,-1
+43211032,11540651,5
+56336372,11540651,5
+50030842,11540651,4
+yue17years,11540651,4
+busixiaohai,11540651,3
+imachild,11540651,4
+45319686,11540651,3
+Janone,11540651,4
+35991194,11540651,3
+43846305,11540651,2
+56044350,11540651,5
+62582526,11540651,4
+resurgam92dawn,11540651,3
+foreveraegeanse,11540651,3
+56517415,11540651,3
+14836914,11540651,4
+52716682,11540651,4
+oldwolfnwf,11540651,4
+hexiaoqin,11540651,3
+22930383,11540651,5
+59376214,11540651,5
+migrate,11540651,4
+zhangcoolhaas,11540651,3
+yeslie,11540651,4
+asdzheng,11540651,-1
+asdasfff,11540651,4
+36029564,11540651,4
+48939731,11540651,4
+3140129,11540651,-1
+alarevividkid,11540651,4
+Veronicam,11540651,3
+95212358,11540651,3
+68917315,11540651,4
+3638737,11540651,1
+136902419,11540651,3
+blueblue1001,11540651,-1
+BellKing,11540651,5
+Chandler00,11540651,3
+ztx158,11540651,5
+49314871,11540651,3
+60407834,11540651,3
+Uvoli,11540651,4
+80063018,11540651,-1
+91937896,11540651,-1
+alen_chy11344,11540651,3
+lmx1220,11540651,4
+57262819,11540651,3
+53025831,11540651,2
+35806544,11540651,3
+woaiwoziji1314,11540651,4
+85422025,11540651,-1
+84872284,11540651,3
+57382412,11540651,-1
+44096316,11540651,3
+lingdongling,11540651,3
+90546251,11540651,4
+76798161,11540651,4
+54159008,11540651,5
+wwwsxst,11540651,4
+109463525,11540651,4
+61558891,11540651,1
+48132079,11540651,5
+50293369,11540651,5
+91677665,11540651,5
+70314512,11776289,3
+99508404,11776289,2
+48435609,11776289,3
+115375109,11776289,4
+53025831,11776289,2
+37620368,11776289,3
+heydenny,11776289,2
+49730580,11776289,4
+79265813,11776289,4
+76818492,11776289,3
+71220393,11776289,3
+54889228,11776289,2
+eefee,11776289,2
+3706515,11776289,3
+92637548,11776289,4
+Eudemonia-moon,11776289,2
+56823104,11776289,3
+zhangcj1224,11776289,3
+120303134,11776289,4
+3139871,11776289,5
+114977043,11776289,3
+1486195,11776289,-1
+daleiyaoxiayu,11776289,-1
+kunkunxiansheng,11776289,1
+1785328,11776289,1
+summer4_ever,11776289,4
+darrenism,11776289,4
+89474196,11776289,4
+88197662,11776289,4
+4901199,11776289,4
+50058727,11776289,3
+68630098,11776289,3
+52840916,11776289,3
+43671128,11776289,3
+3210124,11776289,2
+37424688,11776289,2
+119864973,11776289,4
+82519366,11776289,2
+50307120,11776289,3
+34973828,11776289,4
+51420490,11776289,4
+56941343,11776289,4
+mouq,11776289,4
+68791794,11776289,2
+71146390,11776289,3
+62667107,11776289,1
+127347148,11776289,3
+81326728,11776289,5
+congshuli,11776289,4
+130314342,11776289,4
+134815283,11776289,-1
+60696883,11776289,2
+1315276,11776289,4
+allahking,11776289,1
+54639887,11776289,3
+joanna_ck,11776289,2
+xfting007,11776289,5
+93113085,11776289,3
+45580337,11776289,4
+120632957,11776289,3
+65055486,11776289,3
+57475712,11776289,5
+54721365,11776289,3
+Ruty1985,11776289,3
+120271645,11776289,4
+62558401,11776289,3
+130044129,11776289,2
+wuyunoy,11776289,3
+47707485,11776289,3
+48707415,11776289,4
+3310337,11776289,3
+135588947,11776289,2
+xieruisheng,11776289,3
+57697286,11776289,3
+84217419,11776289,4
+27927536,11776289,2
+57637480,11776289,5
+59428826,11776289,3
+32867787,11776289,3
+47993951,11776289,2
+131025179,11776289,4
+132863914,11776289,3
+51060145,11776289,3
+wangeasy,11776289,5
+67753942,11776289,3
+biby9475,11776289,2
+68014143,11776289,2
+1556251,11776289,3
+72656578,11776289,3
+aliceshi,11776289,3
+xxpd,11776289,3
+87673742,11776289,4
+135138287,11776289,4
+39843091,11776289,2
+yanagi,11776289,4
+1786605,11776289,3
+32058895,11776289,-1
+130541613,11776289,4
+61816824,11776289,5
+61369928,11776289,2
+61369928,11776289,2
+3641686,11776289,3
+29262337,11776289,2
+136101337,11776289,4
+idevin,11776289,2
+56380943,11776289,3
+123274527,11776289,3
+58412040,11776289,2
+56158327,11776289,4
+amor27,11776289,3
+59968700,11776289,5
+68550514,11776289,3
+26482170,11776289,1
+53466542,11776289,2
+76935104,11776289,5
+67291761,11776289,3
+119263813,11776289,3
+79074513,11776289,4
+Seuysiro,11776289,4
+51749955,11776289,3
+xiaoqianquan,11776289,4
+rethatevon,11776289,2
+enough,11776289,3
+59617829,11776289,3
+52451378,11776289,3
+sunchuan,11776289,5
+134534855,11776289,4
+66620851,11776289,3
+134507096,11776289,4
+65720842,11776289,3
+102604927,11776289,1
+39518332,11776289,3
+65635790,11776289,3
+40300209,11776289,4
+137555231,11776289,3
+is_xiaoshu,11776289,3
+echogame,11776289,3
+137325687,11776289,4
+1277016,11776289,3
+Qin-,11776289,3
+46175639,11776289,1
+76216989,11776289,3
+61215850,11776289,3
+yushan33,11776289,2
+chaochao85mao,11776289,-1
+108821133,11776289,2
+dovm,11776289,3
+14406293,11776289,4
+42913226,11776289,3
+136517754,11776289,3
+30150892,11776289,-1
+51297351,11776289,3
+4616077,11776289,2
+70923979,11776289,4
+zengjie0515,11776289,3
+vicy,11776289,3
+136832190,11776289,3
+jianchen810,11776289,4
+3465389,11776289,-1
+mia777,11776289,3
+SPIRITUA,11776289,3
+65641173,11776289,3
+1766794,11776289,3
+liuyayao619,11776289,1
+137108959,11776289,4
+42375246,11776289,3
+46208636,11776289,2
+72712114,11776289,3
+4622525,11776289,4
+elliry,11776289,3
+perhaps0108,11776289,3
+49446729,11776289,4
+45489324,11776289,3
+melanie_je,11776289,3
+122981729,11776289,1
+3564670,11776289,2
+54512951,11776289,3
+Jimmy_li,11776289,3
+66088686,11776289,3
+geekieo,11776289,3
+83881122,11776289,3
+51856482,11776289,1
+80314628,11776289,3
+monilen,11776289,4
+2216479,11776289,4
+137072636,11776289,4
+lansewuwangwo,11776289,4
+121243676,11776289,2
+cjdmn1984,11776289,4
+59504522,11776289,1
+83769444,11776289,3
+3867251,11776289,5
+64902103,11776289,1
+52925540,11776289,4
+dayandnights,11776289,3
+33693061,11776289,1
+65260404,11776289,3
+30587036,11776289,2
+83119838,11776289,3
+134625303,11776289,1
+136727796,11776289,4
+zoujian-999,11776289,3
+84675514,11776289,3
+129408166,11776289,3
+Dielin,11776289,3
+53265759,11776289,4
+68551392,11776289,4
+98956225,11776289,2
+29092385,11776289,3
+87909103,11776289,3
+methuselah,11776289,1
+4262197,11776289,4
+131187465,11776289,5
+22842390,11776289,4
+91548416,11776289,3
+1319405,11776289,1
+hailstorm,11776289,4
+ddxiaohuli,11776289,2
+58338006,11776289,3
+77481221,11776289,5
+xincheer,11776289,3
+luckyanc,11776289,1
+43693739,11776289,4
+mikesun,11776289,3
+47346958,11776289,4
+37753392,11776289,2
+53916327,11776289,3
+120852248,11776289,1
+wanyinan,11776289,2
+115735544,11776289,3
+130557749,11776289,4
+fishgor,11776289,3
+56843528,11776289,3
+108400738,11776289,3
+muouplay,11776289,3
+52854119,11776289,3
+92490871,11776289,3
+58277019,11776289,2
+69547535,11776289,2
+50941482,11776289,5
+2376689,11776289,-1
+xxxeleven,11776289,4
+50837451,11776289,3
+1367998,11776289,4
+88345829,11776289,3
+52084703,11776289,3
+geniuswan,11776289,2
+36653510,11776289,3
+3595686,11776289,3
+115051698,11776289,3
+cinta-2012,11776289,4
+marmotgo,11776289,4
+doudou0511,11776289,4
+79803791,11776289,2
+yc11,11776289,-1
+1600664,11776289,4
+130540894,11776289,3
+85490827,11776289,3
+zxjtmac,11776289,2
+53721065,11776289,1
+maybe520sunshin,11776289,4
+67561364,11776289,2
+fanshall,11776289,4
+qd724945697,11776289,3
+133986166,11776289,4
+74617934,11776289,4
+51004773,11776289,4
+3006385,11776289,4
+65025231,11776289,2
+62222653,11776289,3
+57467616,11776289,3
+2370392,11776289,3
+56431276,11776289,4
+40701239,11776289,3
+49830114,11776289,2
+85084871,11776289,3
+NicoleCrowe,11776289,4
+50667944,11776289,3
+58467960,11776289,4
+charo,11776289,4
+126579331,11776289,2
+62837123,11776289,4
+29771014,11776289,4
+113582401,11776289,2
+Maybo-Chang,11776289,2
+suziyun319,11776289,-1
+121482185,11776289,4
+110392919,11776289,2
+gmrxfx,11776289,3
+65321007,11776289,2
+134506095,11776289,4
+79108534,11776289,3
+41351821,11776289,3
+47100012,11776289,3
+yuanpy,11776289,3
+boxxx,11776289,4
+84076381,11776289,3
+verylast,11776289,3
+playgame,11776289,4
+115097585,11776289,1
+119400759,11776289,3
+131909298,11776289,3
+130647398,11776289,3
+69095785,11776289,3
+137206904,11776289,2
+shelleyhsu,11776289,3
+44838676,11776289,3
+53734415,11776289,3
+4347444,11776289,3
+135102331,11776289,2
+47209223,11776289,3
+70212980,11776289,3
+86922521,11776289,4
+29433181,11776289,3
+121916264,11776289,4
+74916567,11776289,3
+49509733,11776289,3
+52317151,11776289,2
+59788445,11776289,3
+summernight1cn,11776289,3
+chaud,11776289,3
+45268716,11776289,3
+56095656,11776289,2
+3950589,11776289,3
+137046543,11776289,3
+anison,11776289,3
+52416598,11776289,3
+9619954,11776289,3
+57931932,11776289,3
+4204353,11776289,-1
+50706220,11776289,2
+130988431,11776289,2
+131020888,11776289,2
+99570083,11776289,3
+Do-my-self,11776289,4
+114435379,11776289,3
+68630108,11776289,2
+71882881,11776289,3
+72870354,11776289,3
+46170417,11776289,5
+130599589,11776289,3
+1448991,11776289,4
+58215137,11776289,2
+130419426,11776289,3
+display,11776289,1
+miemie-cpu,11776289,3
+130362078,11776289,4
+reveur07,11776289,2
+linshiyi07,11776289,3
+zebramomo,11776289,3
+61675448,11776289,4
+108296832,11776289,2
+74752187,11776289,4
+46340614,11776289,3
+43539479,11776289,2
+roaring90h,11776289,2
+83402921,11776289,-1
+137046507,11776289,3
+donutsss,11776289,-1
+74580493,11776289,3
+74580493,11776289,3
+100418686,11776289,2
+lwl8823,11776289,3
+smilewsy,11776289,3
+menophenon,11776289,3
+64585406,11776289,2
+73530411,11776289,3
+135792492,11776289,1
+1876785,11776289,3
+65660136,11776289,5
+136274462,11776289,3
+sissixiong,11776289,3
+61524961,11776289,4
+65714390,11776289,4
+apple16,11776289,3
+hedgehog,11776289,2
+77200977,11776289,1
+yishu.,11776289,4
+45573643,11776289,3
+48137780,11776289,5
+48137780,11776289,5
+ximeir,11776289,3
+36433281,11776289,3
+36537385,11776289,3
+xiaowumei,11776289,3
+124869246,11776289,3
+1242185,11776289,4
+65424625,11776289,4
+130445057,11776289,3
+80276904,11776289,3
+1575077,11776289,3
+122352200,11776289,4
+37085118,11776289,3
+huiverci,11776289,3
+136826257,11776289,4
+dbhungry,11776289,3
+1922481,11776289,-1
+minijoan,11776289,3
+74369155,11776289,2
+millylyu,11776289,1
+kingpeace,11776289,3
+50516869,11776289,5
+leechambo,11776289,2
+123000223,11776289,5
+62370377,11776289,3
+fmxiaofei,11776289,4
+zhongxiaoho,11776289,4
+Yebanyuewuhen,11776289,3
+135273378,11776289,4
+136271115,11776289,3
+36138367,11776289,2
+44975625,11776289,3
+yifei1110,11776289,3
+51358310,11776289,3
+daisyhyj,11776289,1
+gegewu92,11776289,1
+xzw1407,11776289,3
+128756108,11776289,2
+clockwork-fish,11776289,3
+45418624,11776289,3
+RATATKAIQI,11776289,3
+iamsbp,11776289,3
+4324027,11776289,2
+84010010,11776289,4
+127131340,11776289,3
+69504632,11776289,1
+42620728,11776289,2
+yixiaoyan_,11776289,2
+2391373,11776289,3
+changingchen,11776289,4
+115746552,11776289,4
+fangyuan1mi,11776289,2
+66179494,11776289,4
+55020304,11776289,3
+zpp100,11776289,3
+regain,11776289,4
+Razzmatazz,11776289,2
+huzibeer,11776289,3
+53624567,11776289,4
+74060146,11776289,3
+mmdandan,11776289,4
+112387290,11776289,3
+twopersons,11776289,4
+liudiudiu,11776289,2
+banxiamelove,11776289,4
+123555386,11776289,4
+46493353,11776289,3
+51672014,11776289,4
+daystar22,11776289,4
+stevenfive,11776289,3
+55986543,11776289,3
+youdianhuanjue,11776289,4
+jennystar,11776289,3
+51862860,11776289,4
+67826155,11776289,3
+xiaogua,11776289,3
+aibamoe,11776289,1
+ran3233,11776289,4
+37869520,11776289,-1
+81442988,11776289,-1
+kulapika,11776289,3
+43620888,11776289,1
+54915314,11776289,1
+1226511,11776289,3
+109657209,11776289,2
+45508468,11776289,1
+sisyphos,11776289,4
+3627066,11776289,1
+1754621,11776289,3
+chenlongfei1010,11776289,3
+55914846,11776289,4
+20713273,11776289,3
+2187670,11776289,3
+YogiWong,11776289,4
+topxpp,11776289,4
+135112639,11776289,-1
+iammrsun,11776289,3
+krenee,11776289,3
+honey10151106,11776289,3
+136736172,11776289,3
+Arpil,11776289,4
+135671469,11776289,1
+52883078,11776289,4
+89399541,11776289,3
+136669389,11776289,2
+peterpanty,11776289,4
+EsperanzaX,11776289,3
+129633404,11776289,3
+1965081,11776289,3
+18071732,11776289,3
+Juno14,11776289,4
+48096896,11776289,4
+9095449,11776289,4
+51491569,11776289,3
+79671588,11776289,3
+61997003,11776289,3
+135845113,11776289,3
+74605878,11776289,-1
+45089855,11776289,5
+81412709,11776289,4
+87758868,11776289,2
+shuikanshuizhid,11776289,5
+64579984,11776289,3
+121819431,11776289,3
+furore,11776289,3
+69244531,11776289,4
+57950076,11776289,4
+CT19950923,11776289,3
+126156930,11776289,4
+60818460,11776289,4
+102104781,11776289,4
+6649345,11776289,-1
+benbenmuxi,11776289,2
+73538087,11776289,2
+133471355,11776289,2
+3435038,11776289,3
+60661944,11776289,5
+26438724,11776289,3
+1071198,11776289,3
+aissi,11776289,3
+lephemera,11776289,3
+43846305,11776289,5
+44005693,11776289,4
+bzking,11776289,3
+59142794,11776289,1
+34601889,11776289,4
+81491962,11776289,2
+48863720,11776289,3
+122352396,11776289,2
+58079311,11776289,3
+133241079,11776289,3
+40443774,11776289,2
+yaoxingjia,11776289,4
+95461910,11776289,3
+sophiaforfree,11776289,4
+74471598,11776289,2
+49925828,11776289,3
+2655191,11776289,3
+136102603,11776289,4
+RanQixi,11776289,3
+59027708,11776289,1
+91140276,11776289,1
+40910855,11776289,3
+67184008,11776289,4
+96161152,11776289,2
+16943300,11776289,3
+102904949,11776289,3
+74241382,11776289,3
+laijiojio,11776289,5
+dd770523,11776289,4
+ooolinda,11776289,4
+28852948,11776289,4
+gexiaoshang,11776289,4
+2628458,11776289,4
+ruxiaoguo,11776289,-1
+57565686,11776289,3
+mysubi,11776289,1
+96241491,11776289,2
+127688878,11776289,1
+47361455,11776289,4
+67072789,11776289,3
+1121733,11776289,4
+75625244,11776289,-1
+amaokk,11776289,4
+59292042,11776289,3
+mpower007,11776289,3
+3831064,11776289,3
+4528157,11776289,-1
+4376255,11776289,1
+konfer,11776289,3
+kazuyakiki,11776289,2
+76154789,11776289,3
+stramonium526,11776289,-1
+48065742,11776289,3
+1658796,11776289,3
+anygned,11776289,-1
+chenxinyu1505,11776289,4
+biguniverse,11776289,3
+48483774,11776289,4
+DrinkD,11776289,2
+on1ooker,11776289,3
+132468640,11776289,5
+yaoyaoxiaozhan,11776289,2
+4501544,11776289,2
+favezhihao,11776289,4
+49369958,11776289,4
+111988301,11776289,3
+131206597,11776289,3
+60691717,11776289,3
+42803233,11776289,-1
+48666035,11776289,3
+43181758,11776289,2
+131373760,11776289,1
+53920626,11776289,3
+AhLang,11776289,3
+48267278,11776289,2
+49946350,11776289,3
+60786130,11776289,4
+3505625,11776289,2
+68078780,11776289,3
+44145594,11776289,1
+gubutong,11776289,4
+83025470,11776289,1
+moyezi,11776289,2
+5894610,11776289,2
+lizzywoo,11776289,2
+4264469,11776289,-1
+emmalove1314,11776289,5
+66614447,11776289,2
+127975111,11776289,4
+3489938,11776289,3
+2955357,11776289,2
+Isayori,11776289,3
+42689691,11776289,2
+aropfw1004,11776289,2
+2144303,11776289,3
+134013028,11776289,3
+88943744,11776289,3
+52799019,11776289,3
+136058716,11776289,1
+fengbao945,11776289,2
+128760790,11776289,3
+fixxxer,11776289,3
+stilllovebobdyl,11776289,4
+leeshiuan,11776289,4
+67759592,11776289,2
+51554165,11776289,5
+pennawang,11776289,3
+51718836,11776289,4
+131355822,11776289,3
+2647676,11776289,2
+4558040,11776289,3
+18080670,11776289,3
+80993663,11776289,5
+36502417,11776289,1
+jeanwoo,11776289,3
+kouok,11776289,4
+53927357,11776289,4
+xuanlihuan,11776289,5
+Qoer,11776289,1
+122587004,11776289,4
+136337190,11776289,3
+60655749,11776289,3
+tongnixcv,11776289,1
+maoamao,11776289,3
+flytomilan,11776289,3
+1326010,11776289,3
+106596511,11776289,3
+July_AuE,11776289,4
+119495221,11776289,2
+37402473,11776289,3
+52806556,11776289,2
+48037393,11776289,-1
+yuefulun,11776289,3
+kaixing123,11776289,3
+buchangkun,11776289,5
+camart,11776289,1
+55852131,11776289,4
+cynthia_he,11776289,5
+34343005,11776289,1
+34343005,11776289,1
+55822408,11776289,3
+28953793,11776289,3
+44832442,11776289,3
+yihengxi,11776289,2
+joychung,11776289,3
+61836437,11776289,1
+sunjinhui,11776289,3
+72589205,11776289,3
+ann27996090,11776289,2
+MIssMao-,11776289,3
+132954430,11776289,3
+bLue.C,11776289,1
+sakina_s,11776289,1
+96784473,11776289,1
+touya0229,11776289,3
+49312943,11776289,2
+48071996,11776289,3
+114269223,11776289,4
+66353833,11776289,3
+102997764,11776289,1
+135575731,11776289,3
+xguozi,11776289,3
+Gilberte,11776289,3
+39381148,11776289,2
+63255619,11776289,4
+32835447,11776289,3
+readcpc,11776289,2
+29839010,11776289,4
+47302173,11776289,1
+66520731,11776289,2
+v_xunyicao_v,11776289,3
+135694361,11776289,4
+ininsun,11776289,1
+zeal_she,11776289,3
+handsome23,11776289,4
+52344759,11776289,3
+universe_7,11776289,3
+43810983,11776289,3
+136212415,11776289,1
+chenhuayang,11776289,3
+yuanziwei,11776289,2
+mmmcc,11776289,3
+45066937,11776289,3
+128932894,11776289,4
+66785665,11776289,2
+53833067,11776289,2
+129556271,11776289,2
+50413289,11776289,3
+68757762,11776289,2
+119561349,11776289,3
+5594345,11776289,2
+fzlinyanxia,11776289,4
+56260072,11776289,4
+71715054,11776289,4
+lovers-fahion,11776289,5
+fuck_time,11776289,-1
+dizya,11776289,3
+ad.7,11776289,3
+67923437,11776289,3
+cStar,11776289,3
+104592207,11776289,3
+48332324,11776289,3
+136216084,11776289,2
+55292150,11776289,4
+crystal612,11776289,4
+27815123,11776289,4
+2719310,11776289,5
+57586189,11776289,3
+36681127,11776289,3
+119571357,11776289,2
+RITABMW,11776289,3
+txjbb,11776289,4
+luly_xy,11776289,3
+49137650,11776289,3
+34219306,11776289,4
+somehoow,11776289,3
+48761906,11776289,4
+2561474,11776289,3
+devilnue,11776289,4
+tibet412,11776289,3
+66152773,11776289,3
+68799841,11776289,3
+134574897,11776289,3
+AILUHAN123,11776289,3
+36100413,11776289,2
+2544330,11776289,2
+le-lucermair,11776289,1
+4892064,11776289,1
+arika.L,11776289,3
+53925227,11776289,2
+1067485,11776289,4
+Deeper.Dark,11776289,3
+119226090,11776289,2
+71177487,11776289,3
+54783483,11776289,3
+41240808,11776289,3
+47624847,11776289,4
+135372483,11776289,2
+58913556,11776289,4
+58913556,11776289,4
+RIVERT,11776289,4
+1494371,11776289,3
+41805757,11776289,4
+peterdyf,11776289,3
+56237449,11776289,2
+67701653,11776289,4
+136184241,11776289,2
+134500938,11776289,2
+vipdayu,11776289,4
+51951428,11776289,3
+53316387,11776289,3
+90647626,11776289,3
+56235082,11776289,4
+136120354,11776289,4
+6922527,11776289,2
+68467794,11776289,2
+39255754,11776289,3
+96042637,11776289,3
+Sk.Young,11776289,2
+59524621,11776289,1
+marjorie.shi,11776289,1
+59629692,11776289,3
+66066845,11776289,5
+69236111,11776289,3
+mozhangnunu,11776289,4
+48066058,11776289,3
+wangleku,11776289,3
+47681702,11776289,4
+ejw,11776289,5
+lissa_710,11776289,1
+liunisn,11776289,3
+4511323,11776289,1
+49825242,11776289,1
+81765589,11776289,5
+12198403,11776289,5
+123280530,11776289,3
+yao120,11776289,1
+libertyer,11776289,3
+61775961,11776289,3
+CackleHan,11776289,2
+32607301,11776289,3
+66923568,11776289,1
+snowyhowe,11776289,2
+66319337,11776289,3
+wangleku0310,11776289,2
+huimin13,11776289,2
+123645823,11776289,1
+3248632,11776289,3
+122874127,11776289,-1
+Sophiazd,11776289,4
+134414314,11776289,4
+65396178,11776289,3
+OnlyCoffee,11776289,4
+1836199,11776289,5
+61130128,11776289,4
+wsqabc,11776289,4
+135981815,11776289,2
+48183944,11776289,1
+50394173,11776289,2
+50394173,11776289,2
+2770648,11776289,-1
+barcaren,11776289,4
+91498001,11776289,4
+126290013,11776289,3
+39015968,11776289,3
+52128416,11776289,4
+1793602,11776289,3
+iyuge,11776289,4
+3517099,11776289,4
+thethirteenth,11776289,-1
+4577694,11776289,3
+53084899,11776289,3
+72233881,11776289,3
+60766541,11776289,3
+119405586,11776289,3
+121823412,11776289,3
+mogo1988,11776289,4
+tracyxing,11776289,3
+122874925,11776289,2
+63136253,11776289,3
+xinxinniannian,11776289,2
+120617781,11776289,5
+38207955,11776289,3
+50875593,11776289,3
+kong_bai_ge,11776289,3
+cuacfxx,11776289,4
+15378913,11776289,3
+62318523,11776289,4
+29783240,11776289,4
+heidyxu,11776289,4
+134525513,11776289,4
+q937891120,11776289,3
+136054482,11776289,5
+53245934,11776289,4
+yuxiaodi1988,11776289,3
+1215929,11776289,3
+Time-Trust,11776289,4
+77758955,11776289,1
+whoab,11776289,5
+3851739,11776289,5
+48264121,11776289,3
+tianranzijiegou,11776289,3
+56198518,11776289,3
+yinzi731,11776289,2
+20807282,11776289,3
+131146429,11776289,3
+36399495,11776289,4
+unicorn77,11776289,5
+SZH19920707,11776289,2
+loki-649,11776289,5
+135145248,11776289,4
+2760083,11776289,4
+66392767,11776289,2
+87889980,11776289,3
+18965054,11776289,2
+woodrain,11776289,4
+zachzhou,11776289,5
+53437305,11776289,3
+3834977,11776289,3
+82096379,11776289,4
+liuhuanluoyang,11776289,3
+duxiaoyu,11776289,3
+i-ynw,11776289,1
+97365571,11776289,2
+doctoryang,11776289,4
+eleventhsnow,11776289,4
+1862999,11776289,3
+Popdai,11776289,5
+huhu1999,11776289,3
+71133496,11776289,4
+134537950,11776289,4
+fanyichao,11776289,2
+shinexyt,11776289,3
+47056482,11776289,3
+xiaoyaozizai,11776289,2
+75166261,11776289,4
+4325847,11776289,2
+51241460,11776289,4
+78497624,11776289,3
+57907278,11776289,5
+2126183,11776289,3
+nanc-paul,11776289,4
+doubana,11776289,3
+2370135,11776289,2
+122402846,11776289,-1
+nianmin,11776289,1
+120069048,11776289,1
+64730225,11776289,4
+55429218,11776289,1
+50797119,11776289,4
+jelly-8,11776289,3
+69773402,11776289,2
+53322141,11776289,4
+48222569,11776289,4
+48763260,11776289,4
+132882804,11776289,4
+58231376,11776289,4
+66552525,11776289,4
+36591697,11776289,3
+j23ju,11776289,3
+yoyo92Iris,11776289,4
+76994083,11776289,2
+onlyloll,11776289,3
+akayy,11776289,2
+53685664,11776289,4
+44284036,11776289,2
+59979647,11776289,3
+chloe7603,11776289,2
+sonatina,11776289,4
+schumibati,11776289,5
+59101445,11776289,3
+morechou,11776289,3
+2403220,11776289,-1
+rosemarrywu,11776289,5
+szdouban,11776289,4
+69475039,11776289,3
+3053008,11776289,2
+54162190,11776289,-1
+SUNNY927,11776289,4
+53307065,11776289,3
+jcstar,11776289,3
+97057870,11776289,2
+frankxumomo,11776289,3
+2448346,11776289,4
+65240470,11776289,3
+Saggezza,11776289,4
+lasiya1986,11776289,2
+shuangeryu,11776289,4
+yangfengdouban,11776289,3
+57079811,11776289,4
+45324717,11776289,4
+47589972,11776289,4
+51783252,11776289,4
+51236215,11776289,3
+nuanai,11776289,3
+115807401,11776289,3
+fuchajingran,11776289,3
+3470100,11776289,4
+54146602,11776289,5
+39666216,11776289,3
+130459392,11776289,3
+134937890,11776289,5
+75855286,11776289,2
+et-evelyn,11776289,3
+58090719,11776289,4
+78786637,11776289,4
+piaotutu,11776289,3
+16928498,11776289,2
+tsebb,11776289,2
+2759426,11776289,4
+63249490,11776289,3
+Smooth0727,11776289,3
+15606775,11776289,4
+74230231,11776289,3
+81834646,11776289,-1
+85174401,11776289,3
+jessiehippo,11776289,3
+3573377,11776289,-1
+77111727,11776289,3
+37062227,11776289,3
+43120723,11776289,3
+71993757,11776289,4
+134171382,11776289,1
+15071816,11776289,3
+zhl19741130520,11776289,5
+cathy_59,11776289,4
+49163542,11776289,3
+2570198,11776289,2
+42506410,11776289,3
+pbc0615,11776289,2
+somkanel,11776289,2
+60762933,11776289,3
+takahashili,11776289,3
+3923065,11776289,4
+52770411,11776289,1
+71391201,11776289,3
+59618340,11776289,3
+1666774,11776289,4
+mahanxue,11776289,3
+93861419,11776289,3
+43652499,11776289,3
+58382356,11776289,5
+59363812,11776289,3
+121932752,11776289,2
+133414711,11776289,3
+8399487,11776289,4
+2258556,11776289,3
+128012079,11776289,4
+summersuy,11776289,3
+52732364,11776289,3
+61657305,11776289,3
+renyuanstella,11776289,3
+17791320,11776289,5
+2239351,11776289,3
+4051279,11776289,1
+Light_L,11776289,-1
+emilialinlin,11776289,4
+59774628,11776289,3
+35904729,11776289,2
+rkyy,11776289,3
+reiko77877,11776289,2
+130940103,11776289,3
+29458018,11776289,3
+wangabao,11776289,3
+mhyigeren,11776289,3
+2469695,11776289,4
+marthachan,11776289,4
+glax,11776289,3
+littlewho,11776289,4
+hugowai,11776289,-1
+78154825,11776289,4
+2114161,11776289,5
+36794017,11776289,2
+imoioi,11776289,4
+34178192,11776289,3
+Optimus-Prime,11776289,2
+51836771,11776289,2
+66168101,11776289,2
+134026402,11776289,2
+58233650,11776289,4
+huan19494114,11776289,2
+69946594,11776289,3
+lingqingchun,11776289,-1
+50342310,11776289,3
+46943216,11776289,2
+74572703,11776289,4
+61748227,11776289,4
+49247233,11776289,2
+sylin,11776289,3
+73496560,11776289,3
+45053582,11776289,3
+125770398,11776289,4
+83360787,11776289,3
+langyian,11776289,3
+51909458,11776289,1
+ilovejay79118,11776289,3
+47307716,11776289,3
+122912528,11776289,4
+62369741,11776289,3
+129235712,11776289,-1
+Sibier,11776289,2
+62532292,11776289,4
+39363445,11776289,1
+fangmuchen1314,11776289,2
+jimmyusher,11776289,3
+2966600,11776289,4
+62295613,11776289,3
+poddy,11776289,3
+53897092,11776289,3
+janice_wong,11776289,2
+63194138,11776289,3
+36299194,11776289,5
+4083554,11776289,4
+71880775,11776289,4
+59244056,11776289,2
+97171614,11776289,3
+34417366,11776289,2
+82387187,11776289,3
+64087263,11776289,4
+67918844,11776289,3
+scarlett982,11776289,3
+medeHOW,11776289,4
+76236179,11776289,1
+52363732,11776289,4
+justlinling,11776289,3
+Duck1217479484,11776289,3
+lengleng2025,11776289,-1
+62915199,11776289,3
+55295766,11776289,5
+67653468,11776289,3
+70687104,11776289,1
+shuihe,11776289,2
+29890430,11776289,5
+103039257,11776289,2
+iett815,11776289,3
+48605766,11776289,4
+soool,11776289,1
+133847224,11776289,3
+61879648,11776289,4
+xellgio,11776289,3
+133350413,11776289,3
+floraforever21,11776289,4
+koklite,11776289,3
+4411026,11776289,2
+Clarssia,11776289,4
+38984888,11776289,3
+51338490,11776289,2
+shadow.u,11776289,2
+63820149,11776289,4
+1796714,11776289,3
+voguey,11776289,2
+3990146,11776289,4
+28467614,11776289,3
+109273896,11776289,3
+48130433,11776289,2
+121795248,11776289,-1
+48324481,11776289,3
+126849700,11776289,4
+happyhouse1314,11776289,4
+88322938,11776289,3
+53806077,11776289,3
+38986432,11776289,4
+41758984,11776289,3
+54033630,11776289,3
+57139809,11776289,2
+mabeysomeday,11776289,5
+77288583,11776289,3
+77042003,11776289,2
+88393319,11776289,3
+3666019,11776289,4
+44020426,11776289,2
+lmelva,11776289,3
+fifa10,11776289,3
+79450664,11776289,3
+62926962,11776289,3
+46986696,11776289,4
+45925638,11776289,-1
+63890745,11776289,2
+59535372,11776289,3
+14327084,11776289,2
+katiezhou,11776289,-1
+6270415,11776289,2
+cathyyzn,11776289,2
+60963394,11776289,2
+mutii,11776289,3
+66224726,11776289,3
+41660790,11776289,3
+43767898,11776289,3
+3640414,11776289,3
+133029940,11776289,2
+chaomei,11776289,3
+shadowzzh,11776289,4
+hanaling,11776289,4
+pihou,11776289,4
+11503015,11776289,3
+shingle,11776289,3
+SuperWMY,11776289,2
+94168906,11776289,3
+2927344,11776289,4
+133883408,11776289,2
+zhurou,11776289,2
+MeloTheFisher,11776289,2
+fengyeada,11776289,2
+57847628,11776289,-1
+bailongyizhan,11776289,2
+34570824,11776289,3
+33326634,11776289,3
+63612050,11776289,3
+chalolee,11776289,3
+62195893,11776289,2
+3398075,11776289,3
+13986008,11776289,3
+78182755,11776289,3
+Stone2k,11776289,4
+48868579,11776289,4
+65145767,11776289,3
+46327503,11776289,4
+sweetlemon,11776289,3
+70638775,11776289,3
+lantianxin,11776289,3
+langweibo,11776289,5
+beary,11776289,4
+4109036,11776289,4
+zhouxin95,11776289,2
+SUiTHiNK,11776289,3
+46801772,11776289,3
+88632956,11776289,2
+58431994,11776289,3
+crazygrave,11776289,3
+60099689,11776289,5
+86240865,11776289,1
+DOLEIMI,11776289,3
+1504613,11776289,2
+sui2,11776289,3
+66083249,11776289,3
+60047060,11776289,2
+NCelestial,11776289,3
+35087113,11776289,3
+4657541,11776289,4
+3804622,11776289,3
+nalusea,11776289,4
+39941847,11776289,4
+fujiaying,11776289,-1
+zq8870690207,11776289,3
+66458815,11776289,3
+122315157,11776289,1
+59556078,11776289,3
+3666746,11776289,4
+Garing,11776289,4
+fffx9527,11776289,4
+43934370,11776289,2
+122048396,11776289,3
+Simplelove_,11776289,1
+82550997,11776289,1
+87237465,11776289,2
+134495648,11776289,3
+65098968,11776289,3
+35776858,11776289,3
+65976416,11776289,4
+dreammoon508,11776289,2
+44678301,11776289,3
+1960285,11776289,3
+57080555,11776289,-1
+zcsky,11776289,4
+pupuxiang,11776289,1
+jeensk,11776289,3
+72257329,11776289,1
+65308671,11776289,3
+fish620,11776289,3
+do.care,11776289,4
+doraemon63,11776289,3
+2858772,11776289,2
+110172016,11776289,1
+lyzw,11776289,5
+motou0328,11776289,3
+135101148,11776289,5
+1499575,11776289,3
+45937620,11776289,5
+87866521,11776289,4
+queenchelsea,11776289,1
+WXbmouth,11776289,4
+snoah,11776289,2
+xiongweilin,11776289,2
+parala,11776289,3
+2911617,11776289,2
+carrie0422,11776289,3
+73532203,11776289,3
+58301131,11776289,3
+2348623,11776289,-1
+sosaixi,11776289,2
+42562073,11776289,2
+73545042,11776289,2
+95592443,11776289,3
+iamxy2,11776289,2
+yuanzedong,11776289,3
+133202517,11776289,3
+87885475,11776289,2
+taoqishu,11776289,3
+chengshan,11776289,-1
+1191648,11776289,3
+duguguiyu,11776289,4
+88292094,11776289,4
+Windyli102,11776289,4
+44750610,11776289,3
+3756476,11776289,3
+50066816,11776289,3
+126749714,11776289,3
+laylaseven,11776289,2
+119078211,11776289,3
+zhoujialin,11776289,5
+p0pking,11776289,3
+linggan6234,11776289,5
+aibaobaoguai327,11776289,3
+39421864,11776289,2
+yuantown,11776289,3
+36617215,11776289,3
+103277074,11776289,4
+4200804,11776289,4
+97420155,11776289,-1
+iamxiaoqi,11776289,2
+81591121,11776289,4
+rainycats,11776289,3
+52918154,11776289,3
+73909736,11776289,2
+corrinneh,11776289,3
+71062611,11776289,3
+81034512,11776289,-1
+41201365,11776289,5
+64110948,11776289,3
+25664582,11776289,3
+63270983,11776289,3
+zhangying0913,11776289,2
+17091787,11776289,4
+130817915,11776289,3
+17871243,11776289,1
+gaxiaomi,11776289,2
+50404313,11776289,3
+74145867,11776289,3
+cyygigig,11776289,2
+60142180,11776289,5
+choulaoya,11776289,3
+combrain,11776289,3
+48079918,11776289,1
+45064973,11776289,3
+64934604,11776289,5
+93667110,11776289,3
+58115644,11776289,2
+41487778,11776289,4
+77654718,11776289,3
+truthyfarr,11776289,3
+47993943,11776289,4
+133319509,11776289,3
+80722428,11776289,2
+35668888,11776289,1
+54802370,11776289,3
+49402699,11776289,3
+45784891,11776289,4
+kikilili006,11776289,4
+atu521,11776289,3
+atu521,11776289,3
+126873032,11776289,3
+QINGFENGDIEWU,11776289,3
+6537233,11776289,3
+mangomaluko,11776289,2
+Su33er,11776289,3
+jj2332,11776289,2
+78272085,11776289,4
+shadow-walker,11776289,3
+lensliao,11776289,2
+2599607,11776289,4
+TXS0331,11776289,2
+zzkiara,11776289,1
+tola95,11776289,3
+nicolegong,11776289,1
+52048699,11776289,3
+timliutianxiang,11776289,3
+8402557,11776289,3
+79478187,11776289,4
+faerysun,11776289,1
+foxvia,11776289,4
+vampire1900,11776289,3
+Mary_Lee,11776289,5
+imagefly,11776289,2
+azeizei,11776289,3
+babylou,11776289,3
+61190388,11776289,3
+52456948,11776289,2
+jizisudexiaowo,11776289,1
+67763944,11776289,4
+natejumper,11776289,5
+103631948,11776289,5
+icyport,11776289,4
+71633312,11776289,1
+62074957,11776289,1
+longlystone,11776289,4
+52636646,11776289,2
+92945557,11776289,4
+yangisyang,11776289,4
+HeroineDaode,11776289,3
+98622958,11776289,-1
+63462151,11776289,4
+98473521,11776289,2
+gisellaxu,11776289,4
+51313270,11776289,4
+46342568,11776289,3
+stickerzhang,11776289,3
+66291335,11776289,1
+59220835,11776289,3
+woshicaicai,11776289,3
+70055114,11776289,3
+114284723,11776289,4
+leavelau,11776289,4
+chaosi,11776289,3
+Lemonsir,11776289,3
+84530034,11776289,2
+57163926,11776289,4
+53335299,11776289,4
+1751335,11776289,4
+leeyone,11776289,1
+63223538,11776289,2
+75007342,11776289,2
+2576970,11776289,1
+38513029,11776289,1
+115593023,11776289,4
+karenizumi,11776289,4
+126206725,11776289,3
+2245968,11776289,4
+xiaozhumomo,11776289,2
+circleontheway,11776289,2
+50002640,11776289,2
+45351422,11776289,3
+yd9110,11776289,4
+1314726,11776289,3
+yb7116163,11776289,3
+126723672,11776289,3
+105792969,11776289,3
+qingshanzheshan,11776289,4
+mamielyw,11776289,3
+CheeseTree,11776289,1
+39698078,11776289,3
+71383486,11776289,4
+48164798,11776289,3
+74937470,11776289,5
+34212571,11776289,3
+1768522,11776289,1
+26648126,11776289,3
+119090951,11776289,3
+cabrite,11776289,1
+xuekesheng,11776289,3
+huyouyou,11776289,2
+79717292,11776289,3
+60209728,11776289,3
+44661693,11776289,3
+2006517,11776289,4
+dewar,11776289,2
+1766764,11776289,3
+songchenxi,11776289,-1
+99401561,11776289,4
+2889153,11776289,1
+Fengyouyang,11776289,3
+49441067,11776289,2
+cxl951404897,11776289,2
+1022296,11776289,1
+80163980,11776289,3
+69068097,11776289,5
+78722309,11776289,3
+2485814,11776289,4
+djwayye,11776289,1
+47924060,11776289,3
+81659044,11776289,4
+65199752,11776289,4
+1580185,11776289,3
+xue0302,11776289,3
+45800647,11776289,3
+135514328,11776289,1
+vera-cyw,11776289,3
+29153799,11776289,4
+isade,11776289,4
+zhoue0311,11776289,-1
+xy52119910521,11776289,3
+yangsunny,11776289,3
+63874058,11776289,4
+minamy1227,11776289,4
+38191056,11776289,3
+49342454,11776289,2
+54727803,11776289,3
+60624789,11776289,3
+65981408,11776289,3
+qfy,11776289,3
+1593742,11776289,3
+62586995,11776289,4
+2626046,11776289,3
+vivian855055,11776289,3
+93013491,11776289,1
+45957514,11776289,1
+126785151,11776289,4
+biquan,11776289,1
+UC0083,11776289,1
+102911668,11776289,3
+46991549,11776289,4
+eloisepqy,11776289,4
+72723779,11776289,2
+3425239,11776289,3
+seasing1992,11776289,3
+34243799,11776289,3
+lh12123,11776289,2
+54493645,11776289,3
+64243172,11776289,5
+65948183,11776289,1
+josephgyal,11776289,3
+130610060,11776289,4
+57972100,11776289,2
+54784556,11776289,5
+132778268,11776289,-1
+42680639,11776289,2
+zhangleyuan,11776289,3
+kevin5,11776289,2
+42280664,11776289,4
+temps,11776289,5
+128340217,11776289,1
+43828485,11776289,2
+valiantina,11776289,2
+30117998,11776289,3
+61717566,11776289,3
+28460777,11776289,2
+72651777,11776289,3
+62274710,11776289,5
+60733451,11776289,3
+41314472,11776289,4
+60945673,11776289,4
+63575195,11776289,3
+ning77,11776289,4
+39121054,11776289,2
+Jayuh,11776289,4
+GZ,11776289,2
+120268837,11776289,2
+70047087,11776289,5
+55289567,11776289,3
+10724888,11776289,5
+49308988,11776289,2
+58934229,11776289,4
+3975778,11776289,2
+4338735,11776289,2
+33649081,11776289,4
+45362948,11776289,2
+75179640,11776289,2
+53825805,11776289,3
+youzidao,11776289,3
+58630944,11776289,3
+67209695,11776289,3
+64473872,11776289,4
+wind_field,11776289,3
+60856294,11776289,2
+65181371,11776289,2
+66803513,11776289,4
+mizuki313,11776289,2
+56950148,11776289,4
+73781165,11776289,4
+linshang,11776289,3
+46898295,11776289,-1
+65683142,11776289,1
+jonenow,11776289,3
+izzie,11776289,4
+127632434,11776289,4
+53484529,11776289,2
+71552096,11776289,4
+2513938,11776289,4
+nevernice,11776289,3
+34575902,11776289,3
+white_sophia,11776289,-1
+57486738,11776289,1
+48065738,11776289,3
+moyee_sky,11776289,3
+xiaopang1288,11776289,3
+4464824,11776289,5
+41529515,11776289,2
+67843034,11776289,4
+hanqiu1995,11776289,4
+2600693,11776289,4
+4905173,11776289,3
+lucky498,11776289,2
+4051137,11776289,4
+58629376,11776289,3
+Juju.Fox,11776289,4
+1251597,11776289,4
+47800725,11776289,3
+120978925,11776289,3
+61933640,11776289,4
+minnie1104,11776289,-1
+KidHolmes,11776289,4
+56008028,11776289,3
+108625513,11776289,3
+3790594,11776289,4
+68398906,11776289,3
+38665191,11776289,3
+halang2012,11776289,4
+59408878,11776289,2
+41968915,11776289,3
+114608710,11776289,2
+eDDDie,11776289,3
+54497461,11776289,3
+77334635,11776289,5
+60192740,11776289,2
+qichengshiwo,11776289,4
+71593445,11776289,3
+fanshousiwen,11776289,4
+44436573,11776289,4
+87979590,11776289,3
+nemo2man,11776289,3
+70630808,11776289,3
+53715801,11776289,3
+37382236,11776289,3
+Rosier,11776289,3
+duckdan,11776289,4
+119263777,11776289,1
+FilmYan,11776289,2
+133201300,11776289,2
+59664988,11776289,4
+61160709,11776289,2
+3161517,11776289,3
+3907847,11776289,5
+52934173,11776289,5
+ohgoogjump,11776289,3
+15019258,11776289,4
+63099215,11776289,2
+62637324,11776289,3
+3840209,11776289,2
+NicoleDR,11776289,3
+wuyaa1215,11776289,2
+bulijite,11776289,2
+eeiceeic,11776289,2
+64882417,11776289,-1
+130978369,11776289,3
+csaver,11776289,3
+58698487,11776289,3
+56582885,11776289,3
+68146250,11776289,3
+60606998,11776289,3
+face0,11776289,2
+foxtt,11776289,3
+1829773,11776289,1
+tobewith0216,11776289,4
+67632250,11776289,4
+38811434,11776289,3
+53707542,11776289,4
+70238336,11776289,3
+131118954,11776289,4
+43699027,11776289,4
+3934610,11776289,3
+22997328,11776289,3
+50778853,11776289,5
+how-precious,11776289,-1
+lucia_star,11776289,2
+6400247,11776289,2
+aiwengfan,11776289,1
+56621713,11776289,4
+70017565,11776289,1
+81317162,11776289,3
+47413356,11776289,3
+81317162,11776289,3
+47413356,11776289,3
+72651956,11776289,4
+104445642,11776289,2
+63174808,11776289,3
+Septrois,11776289,4
+62784694,11776289,-1
+yatuifan,11776289,3
+irenemi,11776289,4
+48355039,11776289,1
+65274866,11776289,2
+2483011,11776289,2
+134552700,11776289,4
+52293374,11776289,3
+28633682,11776289,2
+2632722,11776289,4
+79970005,11776289,-1
+92239154,11776289,1
+slothbug,11776289,2
+42576821,11776289,2
+96488948,11776289,3
+linqihoho,11776289,5
+78966790,11776289,3
+Hea3ven,11776289,3
+4347027,11776289,4
+51606142,11776289,2
+1540565,11776289,3
+53022387,11776289,-1
+97354586,11776289,3
+45926517,11776289,5
+54351295,11776289,2
+132794710,11776289,4
+4648608,11776289,4
+69045210,11776289,3
+zoeyilin,11776289,5
+4930666,11776289,5
+65123381,11776289,2
+1426889,11776289,2
+67727072,11776289,3
+94032593,11776289,3
+woshiex,11776289,3
+48937810,11776289,3
+yjxwang,11776289,4
+4916588,11776289,4
+53971929,11776289,3
+omg-_-,11776289,4
+44034080,11776289,4
+57616259,11776289,1
+47542853,11776289,4
+Decembermay,11776289,4
+2420665,11776289,3
+67024367,11776289,4
+3555189,11776289,3
+47114271,11776289,2
+passengereg,11776289,1
+70603009,11776289,4
+looktwice,11776289,3
+39877849,11776289,5
+65660961,11776289,1
+61963967,11776289,1
+105530942,11776289,1
+65868478,11776289,4
+134318408,11776289,4
+78634802,11776289,4
+mybullet,11776289,4
+yellowcroaker,11776289,3
+48286955,11776289,4
+85155782,11776289,2
+3914860,11776289,3
+81222828,11776289,4
+67306781,11776289,5
+47193126,11776289,3
+120537657,11776289,3
+57748754,11776289,5
+44379096,11776289,5
+queen70,11776289,3
+41511009,11776289,2
+4228858,11776289,4
+27432217,11776289,2
+marioshuairen,11776289,2
+97682532,11776289,3
+wodeshudong,11776289,3
+3685431,11776289,4
+68237085,11776289,3
+2725739,11776289,4
+49101414,11776289,4
+52926147,11776289,3
+43713017,11776289,2
+20755333,11776289,2
+65417437,11776289,3
+55855348,11776289,4
+46062235,11776289,4
+64123749,11776289,3
+bsp-w,11776289,3
+wxcn843,11776289,1
+64394091,11776289,3
+51717187,11776289,4
+78925849,11776289,3
+34386699,11776289,4
+4333699,11776289,3
+jinqianmei,11776289,3
+120094445,11776289,1
+pgydw,11776289,5
+godzip,11776289,2
+wrj_mm,11776289,-1
+xxqxz,11776289,4
+130701225,11776289,4
+yukisnow93,11776289,5
+xghlg,11776289,4
+sjk,11776289,4
+54265487,11776289,2
+78500828,11776289,3
+58930966,11776289,4
+60263818,11776289,1
+1281739,11776289,3
+sby37,11776289,3
+42243165,11776289,4
+49191528,11776289,4
+83411107,11776289,4
+131527543,11776289,1
+75361006,11776289,2
+80634044,11776289,4
+louishirley,11776289,3
+26490137,11776289,2
+48910590,11776289,2
+2404315,11776289,2
+69345836,11776289,4
+37754278,11776289,4
+55592315,11776289,1
+yuimi5,11776289,3
+jersey0821,11776289,3
+lingyun93,11776289,4
+luminRAY,11776289,1
+venus3255,11776289,3
+17471764,11776289,-1
+122154980,11776289,2
+fasshinetti,11776289,3
+61253690,11776289,5
+64309170,11776289,2
+1531818,11776289,5
+NatureQ,11776289,4
+121772413,11776289,3
+126682168,11776289,4
+120048792,11776289,2
+57819875,11776289,-1
+F1vese7enone,11776289,3
+shukong,11776289,4
+37967188,11776289,3
+122093308,11776289,4
+95395894,11776289,3
+46218794,11776289,4
+lulu_sheep,11776289,2
+zWalle,11776289,2
+kate101,11776289,4
+52294863,11776289,3
+120378701,11776289,3
+sym15008250465,11776289,4
+53953725,11776289,3
+light0817,11776289,4
+rasimya,11776289,2
+122060054,11776289,3
+66489043,11776289,3
+Renoooo,11776289,3
+58049381,11776289,3
+93299177,11776289,-1
+xygoing,11776289,3
+xiaoxiaodeyuanz,11776289,3
+chencheng2046,11776289,4
+46218208,11776289,4
+51153180,11776289,2
+davidttmam,11776289,3
+luocaoyaoyao,11776289,4
+103477622,11776289,4
+121943500,11776289,3
+39795294,11776289,3
+youjingfengle,11776289,1
+gerlinda,11776289,3
+DianJuBaby,11776289,4
+57629368,11776289,3
+Pacific_Wei,11776289,4
+myjune,11776289,4
+50638011,11776289,3
+3807164,11776289,4
+64092197,11776289,2
+26545118,11776289,3
+dasherry,11776289,5
+Molan-Fish,11776289,1
+3414829,11776289,3
+emotion123,11776289,3
+laipixiaoxiuxiu,11776289,3
+53530476,11776289,4
+47853230,11776289,3
+62147836,11776289,4
+120605718,11776289,3
+28298846,11776289,2
+95688195,11776289,3
+55942870,11776289,1
+30396866,11776289,4
+BALENO,11776289,2
+48252437,11776289,1
+yscysc803,11776289,3
+103182067,11776289,4
+cicihappy,11776289,3
+43842293,11776289,5
+37694449,11776289,3
+79543278,11776289,4
+C61497775,11776289,3
+121433358,11776289,1
+3658150,11776289,4
+65763988,11776289,2
+dustblue,11776289,3
+54838318,11776289,5
+li2007,11776289,-1
+58656660,11776289,4
+69299781,11776289,-1
+49472160,11776289,4
+70470057,11776289,3
+pw142965,11776289,4
+superbjs,11776289,1
+133046698,11776289,4
+margaret_yong,11776289,3
+XJZ123,11776289,3
+icilyfox,11776289,3
+hanyoyo2000,11776289,3
+wywe,11776289,5
+OpenSpaces,11776289,1
+g.z.y,11776289,3
+knightsai,11776289,1
+luweiyan2012,11776289,3
+53724452,11776289,2
+52299764,11776289,-1
+68075321,11776289,3
+NEUN1975,11776289,3
+1615580,11776289,3
+3107975,11776289,2
+8073151,11776289,4
+62401840,11776289,3
+kuimouren,11776289,4
+25850558,11776289,5
+135317067,11776289,4
+47856322,11776289,3
+ndcharles,11776289,5
+kkgrace,11776289,3
+yjk0313,11776289,4
+sophiee,11776289,2
+118854321,11776289,5
+61386431,11776289,3
+61111034,11776289,1
+62428481,11776289,3
+59094570,11776289,3
+3442979,11776289,3
+4358473,11776289,4
+65398795,11776289,3
+134434723,11776289,3
+53768301,11776289,3
+1550135,11776289,1
+67659493,11776289,1
+54442469,11776289,5
+55991039,11776289,2
+brucewong,11776289,3
+Hitachi,11776289,3
+zacklee,11776289,2
+Jaer,11776289,4
+65645276,11776289,3
+fedorajiang,11776289,3
+amwindy,11776289,5
+68732725,11776289,3
+amwtt,11776289,4
+91827424,11776289,3
+72891921,11776289,3
+minimushroom,11776289,4
+zoerose,11776289,3
+51938291,11776289,3
+71791031,11776289,1
+59290556,11776289,2
+58025121,11776289,3
+1263665,11776289,5
+59178948,11776289,3
+50256249,11776289,4
+51602185,11776289,2
+ameliefei,11776289,2
+earthquakes,11776289,2
+56070920,11776289,3
+78447533,11776289,4
+fenglimuren,11776289,2
+60201729,11776289,3
+53455572,11776289,4
+vivianlovesun,11776289,4
+64273735,11776289,4
+35586325,11776289,4
+iml5,11776289,4
+3712644,11776289,4
+B-162,11776289,3
+advender,11776289,3
+132773025,11776289,2
+56823949,11776289,4
+xl8690,11776289,4
+2819219,11776289,4
+56035155,11776289,3
+2286926,11776289,2
+128100069,11776289,3
+DavyNight,11776289,2
+49548565,11776289,2
+Benny_Fu,11776289,4
+3013133,11776289,3
+kongguyouju,11776289,3
+57472498,11776289,5
+43904088,11776289,3
+hecky,11776289,2
+cancer1990,11776289,4
+42093808,11776289,3
+elsolmysun,11776289,4
+65081339,11776289,3
+57607946,11776289,2
+130016484,11776289,4
+earlyzaozao,11776289,2
+49784959,11776289,4
+128179315,11776289,3
+35578162,11776289,4
+2823928,11776289,3
+everscot,11776289,4
+51965596,11776289,5
+61939090,11776289,3
+irafighting,11776289,1
+3634203,11776289,3
+babybottle,11776289,3
+45789849,11776289,4
+simplyme,11776289,-1
+135366540,11776289,4
+laycher,11776289,2
+ruan1117,11776289,3
+Xiaoyue,11776289,4
+1365076,11776289,3
+68971338,11776289,3
+sevenBB,11776289,5
+Paranoid7,11776289,3
+3984993,11776289,-1
+100179635,11776289,4
+62945273,11776289,2
+102986186,11776289,2
+1023218,11776289,4
+ferrari_4cats,11776289,3
+aprain,11776289,4
+47768193,11776289,3
+huapiqiu,11776289,1
+34363692,11776289,2
+58710906,11776289,5
+50063528,11776289,2
+39168659,11776289,2
+3678344,11776289,2
+108693709,11776289,3
+35071954,11776289,4
+71985328,11776289,4
+65301310,11776289,3
+lovingyoyo8ever,11776289,2
+64996012,11776289,2
+Sheeplady,11776289,2
+2705335,11776289,2
+63033488,11776289,4
+mylucky1010,11776289,2
+DetectiveKING,11776289,1
+129239528,11776289,-1
+64725454,11776289,4
+victokyo,11776289,4
+stompbabe,11776289,3
+65408583,11776289,4
+62790249,11776289,4
+45464563,11776289,-1
+48174123,11776289,2
+allblue,11776289,3
+itzijing,11776289,4
+50739381,11776289,2
+28481892,11776289,3
+51152524,11776289,2
+heydzi,11776289,2
+67919722,11776289,4
+icymercy,11776289,4
+xunjie,11776289,2
+vivienne1117,11776289,5
+54814792,11776289,2
+hardcandyjie,11776289,2
+62600930,11776289,3
+imtutu,11776289,2
+chonger,11776289,3
+72133543,11776289,4
+67441765,11776289,3
+62979514,11776289,4
+64898125,11776289,2
+115560708,11776289,4
+katerzo,11776289,2
+62876165,11776289,1
+colorjiang,11776289,4
+5355133,11776289,4
+125663520,11776289,3
+56617946,11776289,2
+44911334,11776289,4
+77092352,11776289,2
+tetsujo,11776289,3
+62705115,11776289,3
+wyb372709042,11776289,4
+knightingreen,11776289,4
+goldenday,11776289,2
+xiaolanzzz,11776289,2
+48017863,11776289,4
+1073807,11776289,4
+formers,11776289,3
+ferkmavie,11776289,3
+63430017,11776289,2
+53562028,11776289,1
+4229818,11776289,3
+ibenben,11776289,3
+qinlang1900,11776289,2
+56936714,11776289,4
+candleZ,11776289,4
+1865210,11776289,3
+88690250,11776289,2
+windwing,11776289,3
+Pincent,11776289,4
+3455527,11776289,2
+52064559,11776289,3
+50629690,11776289,3
+herfilm,11776289,5
+3874094,11776289,1
+xixi-0303,11776289,3
+lelexiaomifeng,11776289,3
+64024738,11776289,1
+57844107,11776289,3
+7223165,11776289,3
+sula2011,11776289,-1
+yutang,11776289,3
+83079271,11776289,5
+58605674,11776289,3
+62214390,11776289,1
+70300693,11776289,5
+33510302,11776289,4
+47926457,11776289,4
+60153184,11776289,3
+43644112,11776289,5
+51245601,11776289,3
+rainstopgoodbye,11776289,3
+58944780,11776289,2
+3922372,11776289,1
+35996089,11776289,3
+yoyoyoyoyoyoyo,11776289,4
+128666486,11776289,3
+49708830,11776289,4
+15583757,11776289,3
+49362198,11776289,4
+87956504,11776289,4
+120466803,11776289,4
+64677693,11776289,2
+3421868,11776289,3
+84131231,11776289,3
+4284000,11776289,2
+leikea,11776289,3
+49248736,11776289,3
+xiaosongqu,11776289,3
+xuylu,11776289,4
+55479330,11776289,3
+ZozoMY,11776289,3
+woochang,11776289,3
+30962131,11776289,3
+amytsai,11776289,3
+74711950,11776289,2
+58421094,11776289,4
+83493569,11776289,3
+4134812,11776289,3
+chaunceyjohn,11776289,3
+129801735,11776289,3
+1574113,11776289,4
+3510245,11776289,3
+xiao33,11776289,5
+45230961,11776289,1
+roxymusic,11776289,5
+44690899,11776289,3
+48423987,11776289,3
+134540327,11776289,4
+yanhuazhimeng,11776289,4
+4654119,11776289,2
+14002029,11776289,5
+i840152811,11776289,1
+59856519,11776289,3
+77151655,11776289,4
+seayo,11776289,3
+Utopia.YY,11776289,3
+helloBek,11776289,3
+2730322,11776289,3
+130474636,11776289,4
+37229624,11776289,3
+vivianking,11776289,4
+57580969,11776289,3
+57729353,11776289,3
+78542473,11776289,3
+129381529,11776289,1
+64454454,11776289,-1
+115598915,11776289,5
+67346668,11776289,4
+miamiami,11776289,4
+114987209,11776289,4
+2580551,11776289,3
+godismyye,11776289,3
+42475511,11776289,3
+3360731,11776289,-1
+88539374,11776289,3
+2984009,11776289,4
+50761351,11776289,1
+126719955,11776289,3
+122232090,11776289,3
+yoyo_ran,11776289,-1
+74913423,11776289,2
+3025950,11776289,2
+57460299,11776289,3
+51103261,11776289,-1
+128915580,11776289,4
+54658280,11776289,3
+65588690,11776289,3
+liyuanli0824,11776289,4
+18984732,11776289,3
+65013886,11776289,-1
+53302185,11776289,5
+depressioncat,11776289,5
+freezinggl,11776289,3
+45944885,11776289,2
+4354942,11776289,-1
+50057454,11776289,-1
+3123402,11776289,4
+67452375,11776289,-1
+42000641,11776289,3
+135292568,11776289,5
+77213278,11776289,4
+134193379,11776289,3
+XXTong,11776289,2
+1393472,11776289,-1
+sophia_423,11776289,2
+74117962,11776289,3
+41095490,11776289,5
+55943262,11776289,4
+120556914,11776289,4
+2699313,11776289,-1
+67352190,11776289,3
+lazzaro,11776289,3
+mylittlechul_c,11776289,4
+babywineer,11776289,2
+2106137,11776289,2
+94886676,11776289,3
+59217273,11776289,3
+14840393,11776289,3
+113596639,11776289,-1
+summerose,11776289,3
+121235168,11776289,-1
+hlinwang,11776289,2
+74368485,11776289,5
+2431231,11776289,2
+47542838,11776289,3
+77048663,11776289,5
+keysersoze,11776289,4
+dear_tuanzi,11776289,4
+119189447,11776289,3
+71426673,11776289,3
+foxgarden,11776289,3
+62457534,11776289,4
+35384928,11776289,4
+grantqian,11776289,4
+63461451,11776289,3
+GMDY,11776289,4
+45261585,11776289,-1
+1821069,11776289,4
+erbility,11776289,1
+84207817,11776289,1
+47501890,11776289,3
+zene,11776289,3
+26959254,11776289,4
+69794753,11776289,-1
+52427227,11776289,5
+57707856,11776289,1
+3978591,11776289,-1
+41786270,11776289,3
+17407986,11776289,5
+61049952,11776289,3
+yanqingchen,11776289,-1
+wildestor,11776289,3
+zini8023,11776289,3
+114617164,11776289,3
+91117590,11776289,1
+134094707,11776289,3
+buyiding2011,11776289,-1
+69030272,11776289,4
+haixiaoyang,11776289,1
+54395692,11776289,2
+39378921,11776289,3
+orsule,11776289,2
+nansila,11776289,2
+yuexiaokan,11776289,-1
+mabysomebody,11776289,4
+zhanghanha,11776289,3
+windy.lin,11776289,-1
+127426227,11776289,3
+zuoshoudezuo,11776289,3
+51741700,11776289,2
+2182855,11776289,5
+57286843,11776289,4
+little_cupid,11776289,2
+43333979,11776289,4
+134035415,11776289,4
+46866923,11776289,4
+59931368,11776289,4
+55404773,11776289,3
+51047226,11776289,4
+81530706,11776289,2
+57949224,11776289,2
+45312368,11776289,4
+45686083,11776289,3
+weizheren,11776289,3
+134580402,11776289,4
+yigedejia,11776289,1
+monsterkill,11776289,3
+fuckyeahdelia,11776289,4
+124887489,11776289,4
+sophie-july23,11776289,3
+80640532,11776289,3
+122895814,11776289,3
+zhuobielin,11776289,3
+7798390,11776289,1
+3503380,11776289,4
+ingrida,11776289,1
+63075072,11776289,1
+princewk1008,11776289,1
+Yven,11776289,4
+134499055,11776289,3
+qiangqiangzhang,11776289,3
+shenxuzhu,11776289,3
+3885010,11776289,4
+ajwang1031,11776289,4
+loftywain,11776289,3
+61877419,11776289,5
+52117256,11776289,4
+xuchijun,11776289,4
+57235976,11776289,5
+honey0324,11776289,3
+116510572,11776289,4
+88964352,11776289,5
+sheldonkao,11776289,2
+2737013,11776289,2
+holy_ml,11776289,3
+3706500,11776289,4
+49529307,11776289,4
+67048173,11776289,4
+lesones,11776289,3
+karasu419,11776289,4
+38770627,11776289,4
+54090932,11776289,3
+shijinxue,11776289,4
+2902661,11776289,3
+53731567,11776289,1
+65141663,11776289,2
+1458725,11776289,3
+81588706,11776289,4
+skyjadebear,11776289,4
+86229035,11776289,-1
+29725427,11776289,3
+52054076,11776289,3
+2136999,11776289,3
+76964275,11776289,1
+ananmaomi,11776289,3
+131034869,11776289,4
+39265602,11776289,2
+yaochunpeng,11776289,4
+46812658,11776289,5
+44775155,11776289,5
+57490076,11776289,5
+young8789,11776289,-1
+chengchen0121,11776289,3
+June_1,11776289,3
+36313714,11776289,3
+54049800,11776289,2
+73939740,11776289,3
+se7xn,11776289,3
+guanstella,11776289,2
+4146586,11776289,2
+thecrespo,11776289,2
+kangmeng,11776289,3
+102337536,11776289,4
+115645606,11776289,4
+yeeeeeee,11776289,3
+peyman,11776289,3
+yue17years,11776289,4
+63101856,11776289,3
+naturelei,11776289,3
+minquan,11776289,2
+39769024,11776289,3
+1102153,11776289,3
+78680128,11776289,2
+55561510,11776289,3
+yujianxiaoben,11776289,2
+79734997,11776289,2
+53526777,11776289,3
+53837792,11776289,3
+buguai,11776289,3
+joemayxu,11776289,3
+4862060,11776289,3
+4862060,11776289,3
+48826276,11776289,4
+61422378,11776289,5
+70989661,11776289,4
+37675452,11776289,3
+50467988,11776289,4
+51711938,11776289,4
+134789384,11776289,1
+mandeeeee,11776289,3
+veverlee,11776289,3
+1818595,11776289,2
+48414241,11776289,4
+65181695,11776289,3
+leebins,11776289,3
+129977173,11776289,1
+39226471,11776289,2
+cassiecici,11776289,3
+1495292,11776289,3
+cndxj1990,11776289,3
+52214552,11776289,4
+qingfengmubai,11776289,3
+14950195,11776289,3
+50655031,11776289,3
+33538142,11776289,3
+47048340,11776289,4
+xiaoxianmianpu,11776289,1
+yeeye,11776289,5
+128940036,11776289,5
+47239413,11776289,3
+2288902,11776289,3
+allwordswrong,11776289,4
+Ouidah,11776289,1
+82238487,11776289,2
+70310265,11776289,3
+liu66,11776289,1
+127217738,11776289,2
+3966164,11776289,2
+41541704,11776289,2
+jingrong,11776289,3
+35137558,11776289,1
+4247179,11776289,3
+5116652,11776289,3
+69094686,11776289,3
+67425224,11776289,3
+veiko,11776289,3
+bluestar777,11776289,2
+42490816,11776289,2
+93614628,11776289,3
+2280761,11776289,3
+109239059,11776289,5
+53339781,11776289,2
+13569368,11776289,2
+peggy198644,11776289,3
+51729072,11776289,4
+huoshuyinhua,11776289,4
+45176243,11776289,3
+127933526,11776289,1
+3322909,11776289,2
+71879067,11776289,3
+megzzy,11776289,3
+99806468,11776289,3
+york_wu,11776289,3
+57367354,11776289,3
+1356477,11776289,4
+ak_a,11776289,4
+77169093,11776289,3
+70530619,11776289,3
+1947490,11776289,4
+36422506,11776289,1
+4620614,11776289,3
+127113606,11776289,3
+54825070,11776289,4
+78977506,11776289,2
+121270653,11776289,1
+103016546,11776289,3
+jimwang0106,11776289,1
+69091213,11776289,2
+2623718,11776289,2
+stevecarell,11776289,4
+65386803,11776289,4
+47746859,11776289,2
+29271779,11776289,2
+41517741,11776289,1
+54860840,11776289,3
+40447897,11776289,4
+55990850,11776289,1
+120793472,11776289,4
+57912090,11776289,3
+swiftflyer,11776289,3
+shadowlew,11776289,1
+chrisywk,11776289,2
+imarilyn,11776289,3
+lichuman,11776289,5
+55006908,11776289,4
+loveyixiao,11776289,3
+aspartameeee,11776289,2
+120241385,11776289,3
+95074857,11776289,4
+37029015,11776289,3
+chenjingye,11776289,1
+65283141,11776289,2
+121263235,11776289,4
+78277110,11776289,4
+78885050,11776289,-1
+zuozuo1990,11776289,4
+2039887,11776289,3
+51517686,11776289,1
+nowaysis,11776289,4
+129838963,11776289,5
+125267371,11776289,1
+47412712,11776289,3
+49918740,11776289,3
+128849268,11776289,4
+1867292,11776289,3
+owenclv,11776289,3
+25774865,11776289,4
+3617419,11776289,4
+adamwzw,11776289,3
+2028239,11776289,4
+aurden,11776289,3
+aurden,11776289,3
+anonymousor,11776289,4
+glhxanthus,11776289,3
+ohagur,11776289,2
+4501745,11776289,4
+72438704,11776289,4
+52099107,11776289,5
+25110019,11776289,3
+solavre,11776289,4
+ainaonao,11776289,1
+68433941,11776289,4
+ilovefashion,11776289,3
+47782519,11776289,3
+41842523,11776289,3
+49167211,11776289,2
+mengtiantian,11776289,5
+115547734,11776289,3
+62004006,11776289,4
+Youoen,11776289,2
+eksmemo,11776289,4
+131499272,11776289,4
+pigSu,11776289,2
+53256397,11776289,2
+48136541,11776289,2
+76331020,11776289,1
+2259682,11776289,5
+Jessiecutie,11776289,-1
+74013127,11776289,3
+cxlpanda,11776289,3
+65947697,11776289,3
+2187326,11776289,3
+67905577,11776289,3
+shiww,11776289,5
+63044059,11776289,3
+43632851,11776289,2
+1236338,11776289,3
+35587373,11776289,2
+wangzhibin,11776289,1
+127153017,11776289,4
+kkkccc,11776289,4
+47858936,11776289,3
+133410048,11776289,2
+62323478,11776289,1
+73467942,11776289,3
+1656874,11776289,3
+bloodluster,11776289,5
+6243740,11776289,1
+82520594,11776289,3
+richarddeng,11776289,3
+xuansushine,11776289,2
+3053086,11776289,3
+92610102,11776289,3
+roger589,11776289,3
+unicornlarry,11776289,4
+67916161,11776289,1
+crazylr9,11776289,4
+1886385,11776289,3
+17180865,11776289,3
+64709555,11776289,4
+52434343,11776289,4
+52434343,11776289,4
+kusoking,11776289,4
+2651943,11776289,4
+52074740,11776289,3
+xjksama,11776289,4
+56008242,11776289,3
+ClaireL,11776289,2
+45055967,11776289,5
+81998298,11776289,3
+63927330,11776289,3
+nanacancer,11776289,3
+thierryhenry,11776289,1
+musesmelpomene,11776289,3
+2254491,11776289,5
+luyicia,11776289,3
+Ronicalee,11776289,3
+lcpeng,11776289,1
+4708937,11776289,2
+85433592,11776289,5
+liuxiaobamboo,11776289,1
+muyu125,11776289,3
+59390060,11776289,4
+babieblue,11776289,4
+yvone1220,11776289,3
+127905303,11776289,3
+joyceamigo,11776289,3
+49313939,11776289,4
+53591524,11776289,4
+huoxingzhuyao,11776289,3
+61497577,11776289,3
+stone-ron,11776289,5
+4116226,11776289,2
+emmazq,11776289,2
+thisisdaisy,11776289,3
+reeboir,11776289,3
+3592617,11776289,4
+46070924,11776289,3
+62141852,11776289,4
+50793866,11776289,3
+102823150,11776289,4
+125474588,11776289,3
+74145154,11776289,5
+73144387,11776289,4
+yuedawei,11776289,1
+99550697,11776289,4
+68887897,11776289,4
+106594383,11776289,4
+43002828,11776289,2
+imcybill,11776289,3
+73012023,11776289,3
+gingerbread-man,11776289,3
+122384431,11776289,4
+1811724,11776289,3
+3880844,11776289,2
+Seeos,11776289,3
+59623092,11776289,3
+frnong,11776289,2
+sureiamsure,11776289,5
+zeroqq,11776289,-1
+27253308,11776289,3
+moryfor,11776289,3
+2678240,11776289,3
+ziyu0802,11776289,4
+angang721,11776289,4
+59927608,11776289,1
+79431429,11776289,4
+133988097,11776289,5
+3177593,11776289,3
+59835894,11776289,2
+3450694,11776289,3
+onceme,11776289,4
+87602683,11776289,1
+121819432,11776289,4
+52719303,11776289,4
+123612122,11776289,-1
+65915294,11776289,3
+90598022,11776289,2
+82980188,11776289,2
+89852120,11776289,3
+102581208,11776289,3
+xiaotianqing,11776289,3
+foleyfan,11776289,3
+45828294,11776289,4
+46449592,11776289,1
+131141632,11776289,1
+mcfzgr91225,11776289,5
+131647140,11776289,1
+Grace_Xuliang,11776289,2
+1980904,11776289,2
+bluelsd,11776289,3
+hsj9,11776289,4
+48887083,11776289,2
+benzliang,11776289,3
+27799523,11776289,4
+xiaoyememories,11776289,4
+birdieeos,11776289,3
+44235403,11776289,3
+122431988,11776289,3
+78396120,11776289,2
+64692199,11776289,1
+62595700,11776289,2
+sissi33,11776289,2
+71929336,11776289,4
+65590168,11776289,2
+misszhao7,11776289,3
+49501478,11776289,3
+58042557,11776289,4
+103554299,11776289,3
+45852274,11776289,2
+fiona-cin,11776289,4
+51180631,11776289,4
+grayguy,11776289,3
+imqxq,11776289,-1
+43172381,11776289,2
+71421150,11776289,1
+yihuiw,11776289,4
+meme727,11776289,4
+flowertide,11776289,3
+85452483,11776289,2
+73828343,11776289,4
+Plumed__Serpent,11776289,3
+liangtong,11776289,4
+48395509,11776289,4
+60701551,11776289,4
+liuyushu,11776289,3
+eveche,11776289,3
+Bigdad,11776289,5
+szhiji,11776289,3
+Yoy1,11776289,4
+stupidcat7652,11776289,-1
+imkly,11776289,4
+moguduola,11776289,4
+sowhatanyi,11776289,4
+78601907,11776289,3
+passerbyv,11776289,3
+BlueMoonshine,11776289,4
+coldyue,11776289,4
+43663289,11776289,3
+nangle,11776289,3
+MayaDey,11776289,1
+MayaDey,11776289,1
+cccCORRINEeee,11776289,3
+fecal,11776289,2
+89159179,11776289,3
+maomao0504,11776289,3
+48042943,11776289,3
+112965937,11776289,5
+81404706,11776289,3
+onedotdot,11776289,1
+4239908,11776289,4
+49528893,11776289,5
+livelongandpros,11776289,3
+56633809,11776289,4
+winners711,11776289,1
+ihaveafreeheart,11776289,3
+azoi,11776289,4
+1913258,11776289,3
+50880780,11776289,2
+hazechann,11776289,3
+2325631,11776289,4
+2325631,11776289,4
+1268296,11776289,3
+68255432,11776289,5
+jiachangting,11776289,3
+32433633,11776289,2
+62458506,11776289,3
+4647836,11776289,5
+52967718,11776289,3
+kelingshanshan,11776289,3
+75555636,11776289,4
+52408878,11776289,2
+64671678,11776289,4
+56111292,11776289,4
+51448618,11776289,4
+108576950,11776289,5
+34187825,11776289,3
+46572945,11776289,3
+41502913,11776289,4
+57303793,11776289,3
+81325605,11776289,2
+127068197,11776289,4
+fanxiaodong,11776289,2
+56824817,11776289,4
+103216806,11776289,4
+74768790,11776289,3
+56866137,11776289,4
+88101207,11776289,3
+37216410,11776289,3
+ergeo,11776289,3
+119997789,11776289,4
+40517102,11776289,4
+coco921,11776289,4
+75328137,11776289,3
+sherrychen,11776289,3
+yimoyoulan916,11776289,3
+55925233,11776289,1
+74234828,11776289,4
+135097592,11776289,4
+123277207,11776289,4
+dengxian123,11776289,3
+88212348,11776289,4
+83192314,11776289,3
+3852778,11776289,3
+wymanqin,11776289,4
+xzx2011,11776289,2
+51332362,11776289,5
+4445748,11776289,2
+simmychow,11776289,3
+shifanghe,11776289,3
+97088153,11776289,3
+mariaaa,11776289,-1
+loveless002,11776289,-1
+lishunli,11776289,2
+eugne,11776289,3
+106663926,11776289,3
+78150719,11776289,4
+50663434,11776289,2
+laoguai,11776289,3
+2851415,11776289,4
+augusttt,11776289,4
+liaojiafen,11776289,2
+STT810,11776289,1
+94352576,11776289,3
+tuzimomomo,11776289,2
+foxzy5,11776289,1
+haimingbu,11776289,3
+88789846,11776289,3
+52384552,11776289,2
+44629760,11776289,4
+95442218,11776289,3
+41795083,11776289,5
+28130545,11776289,1
+62027748,11776289,3
+123222453,11776289,3
+45463396,11776289,3
+63997678,11776289,5
+43710853,11776289,1
+c2c3,11776289,4
+134520468,11776289,4
+pixdream,11776289,3
+50191113,11776289,-1
+abin520918,11776289,3
+tutusky,11776289,4
+3943602,11776289,5
+51915169,11776289,1
+129743539,11776289,4
+vincentjones,11776289,4
+94247612,11776289,5
+52887670,11776289,3
+62605597,11776289,3
+1550046,11776289,4
+2517086,11776289,3
+crystaldrr,11776289,4
+131511603,11776289,3
+44457357,11776289,4
+winglet,11776289,2
+74510100,11776289,3
+G-Dear,11776289,3
+48120700,11776289,3
+39519802,11776289,3
+cxyecho,11776289,2
+mico2009,11776289,4
+53311132,11776289,4
+maomiDD,11776289,4
+4096669,11776289,2
+slowwalker,11776289,3
+moredarkwhite,11776289,3
+135126833,11776289,4
+hime28,11776289,4
+84351170,11776289,3
+2822846,11776289,2
+65021113,11776289,4
+1198621,11776289,3
+48786722,11776289,4
+132197794,11776289,3
+wxhsolo,11776289,1
+1048791,11776289,4
+64740791,11776289,1
+luzhumao,11776289,3
+50489760,11776289,4
+56299828,11776289,3
+59290832,11776289,1
+53485894,11776289,3
+just07,11776289,3
+DDouble,11776289,3
+GLSQ,11776289,5
+evon1987,11776289,4
+39152562,11776289,5
+zhenglin0577,11776289,-1
+56928746,11776289,4
+54873138,11776289,3
+yvonne9254,11776289,4
+49702943,11776289,3
+129857824,11776289,5
+bb609,11776289,4
+cute-candyan,11776289,2
+56898104,11776289,1
+pengpeng,11776289,3
+67811189,11776289,1
+58484976,11776289,2
+75210772,11776289,4
+vane0109,11776289,5
+3738868,11776289,1
+83469606,11776289,3
+84028552,11776289,2
+100497038,11776289,3
+48661159,11776289,3
+spzmoon,11776289,4
+tiantianyeye,11776289,4
+63422177,11776289,2
+miqingye,11776289,2
+engamichelle,11776289,2
+charrme,11776289,3
+83900345,11776289,4
+87495306,11776289,4
+sysop,11776289,3
+65649890,11776289,4
+51449689,11776289,4
+131092031,11776289,3
+4320404,11776289,3
+Michellekids,11776289,2
+ivydehouse,11776289,4
+61845707,11776289,3
+supermeat,11776289,4
+favorite,11776289,4
+jiangdashaoye,11776289,5
+PsychoMissSo,11776289,3
+46138752,11776289,2
+59725846,11776289,3
+2523625,11776289,3
+lisaxingxing,11776289,5
+50590088,11776289,2
+SummerRyanShu,11776289,4
+just_nomadic,11776289,3
+48976619,11776289,3
+cloverllx,11776289,3
+2471325,11776289,3
+2239303,11776289,4
+79666507,11776289,2
+130496328,11776289,1
+26985231,11776289,4
+lindaduanduan,11776289,5
+53362350,11776289,3
+74230672,11776289,4
+dearJJ,11776289,2
+Sonntag,11776289,3
+2221354,11776289,4
+1515476,11776289,4
+qiluoluo,11776289,4
+101503219,11776289,3
+1265651,11776289,4
+3262787,11776289,2
+jolyne,11776289,4
+53988209,11776289,2
+veronicawu1982,11776289,3
+134532187,11776289,4
+84526752,11776289,3
+doylerao,11776289,2
+duanziyu,11776289,1
+83141101,11776289,3
+83141101,11776289,3
+42084433,11776289,3
+sapphire,11776289,3
+64136344,11776289,4
+30221113,11776289,3
+51468288,11776289,3
+59266552,11776289,4
+67968935,11776289,4
+75940485,11776289,1
+Septembres,11776289,3
+47974911,11776289,3
+1831746,11776289,3
+arko,11776289,-1
+115551507,11776289,2
+kiki204629,11776289,3
+93217012,11776289,4
+roseyan_lxy,11776289,-1
+seancheung,11776289,3
+4248246,11776289,4
+vicky_talk,11776289,1
+130083039,11776289,3
+120784937,11776289,3
+120984863,11776289,2
+51361935,11776289,5
+14923645,11776289,5
+28312683,11776289,2
+btone0808,11776289,2
+58878500,11776289,1
+134417369,11776289,3
+103214078,11776289,3
+26860515,11776289,3
+61259818,11776289,2
+mwkang,11776289,4
+78793555,11776289,5
+56684398,11776289,3
+115540624,11776289,2
+your_j,11776289,2
+71093640,11776289,4
+34709086,11776289,3
+90217144,11776289,3
+134499178,11776289,4
+changefiona,11776289,4
+jimmy47,11776289,2
+54364029,11776289,5
+zaozao1012,11776289,3
+90812716,11776289,4
+41440625,11776289,3
+134339414,11776289,4
+134505975,11776289,3
+63658067,11776289,2
+119330188,11776289,3
+134463446,11776289,5
+130940806,11776289,4
+126994808,11776289,3
+134888389,11776289,3
+134862117,11776289,4
+yt1215,11776289,2
+shenxueying,11776289,4
+120379485,11776289,4
+ste0815,11776289,5
+62664539,11776289,4
+52157367,11776289,2
+2568387,11776289,4
+BIN_CHANG,11776289,-1
+dixueyaxiaojie,11776289,2
+41966800,11776289,1
+129582003,11776289,3
+78543917,11776289,1
+56872460,11776289,2
+Jerry-feng,11776289,3
+nshen121,11776289,3
+130309969,11776289,4
+44662884,11776289,3
+IncredibleWoody,11776289,3
+K_Kaito,11776289,3
+1138243,11776289,2
+85508803,11776289,4
+75437175,11776289,4
+65520405,11776289,4
+82508790,11776289,2
+timejin,11776289,3
+63127179,11776289,3
+52962015,11776289,3
+nxam,11776289,3
+45378310,11776289,2
+50719241,11776289,-1
+1514019,11776289,2
+36731496,11776289,4
+134552123,11776289,5
+mymydemon,11776289,3
+rednoodles,11776289,2
+44079178,11776289,2
+114557614,11776289,3
+richar-live,11776289,3
+130540529,11776289,4
+49761983,11776289,3
+TCTF,11776289,5
+skay,11776289,2
+54557622,11776289,4
+71107908,11776289,3
+46615150,11776289,5
+79639135,11776289,2
+9274036,11776289,3
+cidishenhao,11776289,4
+134128447,11776289,3
+48480567,11776289,-1
+summerking23,11776289,4
+96490951,11776289,3
+127112078,11776289,4
+54767282,11776289,3
+fenglao,11776289,3
+corgi,11776289,-1
+129503817,11776289,1
+Avila_Yin,11776289,2
+dustinchan,11776289,3
+64755839,11776289,4
+74246341,11776289,4
+83989454,11776289,5
+1240037,11776289,3
+WENDY-NN,11776289,4
+57751641,11776289,3
+44865600,11776289,4
+29211262,11776289,3
+cl20lc,11776289,3
+57580353,11776289,2
+37787259,11776289,2
+51126355,11776289,4
+xandraaa,11776289,2
+57643998,11776289,1
+boffin,11776289,2
+121633982,11776289,1
+dodo729,11776289,2
+3436739,11776289,4
+58197963,11776289,1
+72580043,11776289,1
+82623937,11776289,2
+60067719,11776289,1
+41706695,11776289,1
+Antidream,11776289,4
+jackybaby,11776289,5
+96290717,11776289,3
+42600622,11776289,3
+36686349,11776289,2
+50616151,11776289,3
+69222265,11776289,2
+95910611,11776289,3
+maychendaxu,11776289,3
+sweetcamel,11776289,3
+61557848,11776289,4
+130599620,11776289,4
+50972003,11776289,1
+HyoA,11776289,3
+119428504,11776289,4
+134661569,11776289,1
+kally_allen,11776289,4
+dyalan,11776289,3
+angelliujiayun,11776289,3
+134542917,11776289,3
+70487982,11776289,3
+63875980,11776289,5
+50436684,11776289,4
+3658319,11776289,3
+115029613,11776289,4
+45205134,11776289,2
+49369831,11776289,3
+soleilratemma,11776289,2
+yomfall,11776289,4
+55683912,11776289,3
+121920760,11776289,3
+cheerychang,11776289,3
+3337362,11776289,2
+134499105,11776289,4
+43070651,11776289,4
+4807458,11776289,3
+41527285,11776289,3
+96331633,11776289,5
+67630487,11776289,4
+108247778,11776289,3
+alisontsai,11776289,3
+shmily_yummy,11776289,2
+shmily_yummy,11776289,2
+91842843,11776289,4
+yangjianmeiyang,11776289,4
+69280582,11776289,3
+75776370,11776289,3
+qingxi52vv,11776289,2
+121959506,11776289,3
+60552303,11776289,3
+6350218,11776289,1
+37731857,11776289,-1
+roseandwater,11776289,3
+2642604,11776289,3
+sevendbly,11776289,3
+dulanduo,11776289,5
+57491810,11776289,2
+cktckt,11776289,3
+122039396,11776289,4
+120011949,11776289,3
+103706853,11776289,4
+45804522,11776289,4
+50720441,11776289,3
+63548568,11776289,3
+134508428,11776289,3
+90638810,11776289,5
+spf,11776289,-1
+24936156,11776289,3
+130533856,11776289,5
+JimmyLien,11776289,4
+joker619,11776289,3
+108946509,11776289,2
+51048738,11776289,3
+hyner,11776289,3
+134495748,11776289,3
+silverlee,11776289,4
+134529720,11776289,3
+40273043,11776289,2
+93197518,11776289,4
+10124138,11776289,3
+63396418,11776289,5
+colorwind,11776289,3
+colorwind,11776289,3
+dddoushabao,11776289,3
+chihuoo,11776289,3
+chenxiliu,11776289,4
+55398830,11776289,4
+69856173,11776289,3
+119991203,11776289,3
+134500343,11776289,4
+57698231,11776289,4
+2784323,11776289,3
+59199050,11776289,3
+46712687,11776289,2
+52051860,11776289,3
+130353620,11776289,3
+45855864,11776289,3
+miuye00,11776289,4
+60337804,11776289,1
+133864523,11776289,3
+59405094,11776289,3
+64852339,11776289,4
+57248096,11776289,2
+84866154,11776289,3
+128072383,11776289,3
+50926960,11776289,5
+gongzitian,11776289,3
+130535859,11776289,4
+128386518,11776289,3
+niu513,11776289,-1
+134137352,11776289,4
+47336635,11776289,3
+48746387,11776289,2
+130940590,11776289,3
+67843912,11776289,2
+58281873,11776289,4
+56223706,11776289,4
+52535642,11776289,3
+ohohzhizhi,11776289,2
+76767700,11776289,4
+49150210,11776289,3
+130938555,11776289,4
+55324794,11776289,5
+2310421,11776289,3
+donna12355,11776289,3
+3609679,11776289,3
+53862196,11776289,4
+50772354,11776289,3
+131337124,11776289,3
+huzexi,11776289,3
+Qyaoyao,11776289,-1
+31555036,11776289,4
+48459304,11776289,4
+eleven-z,11776289,3
+10810027,11776289,3
+2829310,11776289,3
+48532833,11776289,3
+ziyanxue,11776289,3
+51186771,11776289,4
+xiaoxiaogui0425,11776289,3
+42149787,11776289,4
+cotton,11776289,-1
+125498604,11776289,3
+65687089,11776289,2
+130945059,11776289,4
+4493051,11776289,4
+119930629,11776289,3
+59822585,11776289,4
+46093934,11776289,3
+53830314,11776289,4
+74628004,11776289,4
+amosteng,11776289,4
+98379378,11776289,2
+carrypotter,11776289,2
+Phyllis5,11776289,3
+52145474,11776289,3
+89700756,11776289,2
+1359052,11776289,1
+iisakura,11776289,2
+48623743,11776289,2
+wtforz,11776289,3
+89318429,11776289,5
+53364319,11776289,3
+2036072,11776289,2
+56022280,11776289,4
+weirdoToC,11776289,4
+64757557,11776289,3
+61967626,11776289,3
+emotion7,11776289,3
+57064183,11776289,4
+71743079,11776289,4
+2529003,11776289,4
+4573696,11776289,-1
+54367149,11776289,3
+55606165,11776289,3
+44482309,11776289,3
+sunnysabine,11776289,4
+1574050,11776289,3
+raehide,11776289,4
+100746508,11776289,2
+mrbrightside,11776289,1
+ChicWeirdo,11776289,4
+133103066,11776289,2
+1522607,11776289,3
+xxflyyh,11776289,2
+pashplus,11776289,4
+vexit,11776289,-1
+helosh,11776289,3
+49763880,11776289,4
+xuyajing,11776289,4
+lightcoloursun,11776289,3
+jody_zhang,11776289,4
+ilvrock,11776289,3
+4469892,11776289,3
+qjwcc,11776289,1
+1357759,11776289,3
+58310803,11776289,3
+80848658,11776289,1
+4753861,11776289,3
+93294169,11776289,4
+anitasayz,11776289,3
+64926044,11776289,4
+41288485,11776289,5
+missneuf,11776289,2
+madnesswoo,11776289,1
+67861218,11776289,3
+chinalnkn,11776289,4
+61133743,11776289,4
+52063178,11776289,4
+ProfThunder,11776289,4
+74011152,11776289,2
+76346345,11776289,2
+130789736,11776289,2
+ozawa,11776289,3
+3724437,11776289,2
+ruilixiurui,11776289,2
+47704379,11776289,-1
+40735647,11776289,4
+sunevivi,11776289,3
+33482278,11776289,3
+72096774,11776289,2
+57135077,11776289,3
+xyoyo,11776289,4
+kicker10,11776289,4
+64128291,11776289,2
+BDX,11776289,-1
+dearruby,11776289,3
+3541486,11776289,3
+134330229,11776289,5
+71946766,11776289,4
+48223823,11776289,4
+cathycat,11776289,2
+Arenas4.-_-Hreo,11776289,4
+3671533,11776289,3
+134327676,11776289,5
+47537834,11776289,4
+4336395,11776289,3
+68878726,11776289,3
+4828017,11776289,3
+48604788,11776289,2
+taylorh,11776289,4
+105864771,11776289,4
+45448082,11776289,3
+penny1210,11776289,-1
+lullaby_ly,11776289,3
+tender_night,11776289,3
+Jarashi,11776289,3
+39950361,11776289,2
+60233136,11776289,4
+37311123,11776289,4
+chusijie,11776289,3
+xiaotao,11776289,3
+54096060,11776289,3
+85384929,11776289,2
+cucnmql,11776289,2
+jsgoldwall,11776289,2
+41338064,11776289,2
+1530155,11776289,3
+maerta,11776289,3
+121478447,11776289,4
+rosacia,11776289,3
+deltatrong,11776289,4
+21274604,11776289,2
+2343743,11776289,3
+Lul.z,11776289,3
+pamelayang,11776289,4
+62871612,11776289,3
+2348326,11776289,4
+31978240,11776289,1
+77308324,11776289,4
+40003537,11776289,1
+108289552,11776289,3
+2704491,11776289,5
+34846798,11776289,4
+93825881,11776289,3
+71218944,11776289,5
+73631597,11776289,1
+3430040,11776289,5
+49547973,11776289,1
+66009586,11776289,4
+xuqingkuang,11776289,2
+amyzane,11776289,2
+amyzane,11776289,2
+53300409,11776289,-1
+66763319,11776289,1
+chaaaaa,11776289,2
+reaco,11776289,2
+35189092,11776289,3
+xiaoan7EF,11776289,2
+57693778,11776289,2
+supermagua,11776289,2
+qjunny,11776289,3
+lingfriendly,11776289,3
+alicenana,11776289,3
+39104472,11776289,4
+21927784,11776289,2
+xczhong,11776289,3
+der_Baum,11776289,3
+61830049,11776289,3
+46912803,11776289,3
+iuheuxnehc,11776289,2
+76584740,11776289,4
+116649672,11776289,5
+66556802,11776289,4
+47373898,11776289,5
+104901969,11776289,4
+zz169,11776289,3
+qi-shao-shang,11776289,3
+60729529,11776289,4
+2049714,11776289,3
+56796153,11776289,3
+45996774,11776289,4
+jeanne68240109,11776289,2
+62720771,11776289,3
+130166144,11776289,3
+127651937,11776289,4
+54500977,11776289,3
+4766836,11776289,2
+dabeibao,11776289,3
+52910373,11776289,3
+lemonplant,11776289,4
+126630499,11776289,3
+33133224,11776289,-1
+87069723,11776289,3
+xuecong,11776289,2
+65046838,11776289,3
+113487954,11776289,3
+danny1105,11776289,4
+73331491,11776289,5
+butten,11776289,5
+49298107,11776289,3
+ying1012,11776289,4
+62743500,11776289,4
+41236968,11776289,4
+73064038,11776289,3
+79466970,11776289,4
+30857176,11776289,4
+1469018,11776289,2
+66825713,11776289,-1
+84965973,11776289,1
+48036288,11776289,4
+59122633,11776289,3
+59122633,11776289,3
+79750101,11776289,3
+RLanffy,11776289,2
+46754080,11776289,1
+60155135,11776289,3
+kyuly,11776289,4
+71625785,11776289,3
+morvin,11776289,3
+4652178,11776289,-1
+GWWGWW,11776289,4
+2320667,11776289,4
+MELODYYU2010,11776289,5
+2828081,11776289,4
+36811646,11776289,3
+41502689,11776289,3
+3689558,11776289,1
+53373861,11776289,2
+103539396,11776289,2
+70294430,11776289,4
+moenning,11776289,4
+lostoldboy,11776289,3
+124257806,11776289,3
+justsay,11776289,3
+cathy52singing,11776289,4
+liuliuagnes,11776289,3
+67143504,11776289,2
+snakesarah,11776289,1
+17775259,11776289,1
+y19940504,11776289,4
+Martashen,11776289,3
+Morewhite,11776289,1
+84019906,11776289,2
+50642846,11776289,3
+xiongmaof,11776289,4
+46220008,11776289,4
+4542511,11776289,3
+23725217,11776289,4
+46979178,11776289,5
+3341499,11776289,4
+34881345,11776289,4
+jumpinglove,11776289,3
+61127541,11776289,2
+4394529,11776289,3
+sirluoji,11776289,4
+92835955,11776289,2
+66404994,11776289,4
+2310617,11776289,3
+52867570,11776289,4
+126980247,11776289,3
+DrRay,11776289,4
+my_landscape,11776289,3
+83601520,11776289,4
+nbyuan,11776289,2
+60999102,11776289,3
+120886080,11776289,5
+25481348,11776289,3
+29998862,11776289,4
+51799436,11776289,3
+75455492,11776289,4
+83526079,11776289,4
+65369148,11776289,3
+capricornprince,11776289,3
+xiaoshi0212,11776289,4
+60788836,11776289,3
+76270911,11776289,3
+124596897,11776289,3
+71950308,11776289,4
+4313535,11776289,3
+52907345,11776289,3
+purple2046,11776289,3
+85811535,11776289,2
+121130294,11776289,4
+58054803,11776289,3
+125111991,11776289,3
+79381337,11776289,3
+48705415,11776289,3
+CharlesChou,11776289,3
+41317902,11776289,2
+gegeyinkou,11776289,3
+nancy-chan,11776289,4
+lingci,11776289,3
+48317610,11776289,1
+79846892,11776289,2
+duduxiongzhifu,11776289,3
+45242330,11776289,3
+45868354,11776289,3
+1395865,11776289,2
+83505394,11776289,3
+3922229,11776289,4
+sybirl,11776289,3
+47467920,11776289,3
+2521968,11776289,4
+moshanghu,11776289,4
+4884902,11776289,2
+61627142,11776289,5
+27403051,11776289,4
+81469223,11776289,4
+63050000,11776289,4
+66234722,11776289,4
+119385790,11776289,2
+119385790,11776289,2
+darlingbu,11776289,5
+119383961,11776289,3
+toonan,11776289,1
+ifengzi,11776289,1
+either_or,11776289,1
+hlsdy,11776289,5
+3410512,11776289,3
+lulupink,11776289,1
+7542909,11776289,3
+mikifung1124,11776289,1
+49978942,11776289,4
+tiny.y,11776289,2
+79754122,11776289,2
+56524713,11776289,3
+sho2mon4e4y,11776289,3
+43826661,11776289,4
+aQuabLus,11776289,3
+56181037,11776289,3
+47418045,11776289,4
+leexiaopeng,11776289,3
+kevi2dan,11776289,4
+59908250,11776289,3
+43870604,11776289,5
+2918978,11776289,4
+demon0414,11776289,4
+air1104,11776289,1
+42663693,11776289,3
+128017227,11776289,4
+Candy_Can,11776289,4
+122384654,11776289,2
+83829939,11776289,2
+binghushouyeren,11776289,3
+liancheng,11776289,5
+131329189,11776289,-1
+Paradox_Q,11776289,3
+57542378,11776289,2
+cheryl84,11776289,4
+geminige,11776289,4
+2576084,11776289,1
+silkfly,11776289,3
+3378930,11776289,5
+WHEREONLYYOUME,11776289,3
+58624199,11776289,3
+livingfly,11776289,3
+Muggle_ms,11776289,4
+huangsiluofu,11776289,3
+2056209,11776289,3
+2391687,11776289,4
+61580150,11776289,3
+cissy_cissy,11776289,2
+marysays,11776289,-1
+3819480,11776289,3
+rachelife930,11776289,5
+112718861,11776289,3
+44875082,11776289,3
+33326569,11776289,3
+tegs,11776289,2
+41040273,11776289,4
+68401259,11776289,3
+laomo,11776289,3
+Dorothycheer,11776289,2
+44555140,11776289,3
+ziv_yll,11776289,1
+64136306,11776289,2
+49767497,11776289,3
+84003620,11776289,3
+115125689,11776289,3
+yprenkouer,11776289,2
+2681017,11776289,3
+dunkben,11776289,4
+52243511,11776289,3
+54655578,11776289,1
+34591792,11776289,5
+3042850,11776289,3
+3793085,11776289,3
+122009529,11776289,5
+103793768,11776289,4
+coryu,11776289,3
+36076477,11776289,2
+68608061,11776289,3
+124814242,11776289,3
+Cherie.,11776289,3
+23369326,11776289,4
+Mulholland,11776289,3
+51478034,11776289,4
+akilee614,11776289,4
+21354916,11776289,3
+li_1314,11776289,4
+52890425,11776289,5
+88243971,11776289,3
+4148066,11776289,2
+48347367,11776289,3
+32314974,11776289,2
+21338461,11776289,4
+53507443,11776289,3
+hmily0316,11776289,3
+81687278,11776289,-1
+45556826,11776289,4
+solitaryreaper,11776289,4
+103503223,11776289,3
+132190479,11776289,4
+3978018,11776289,4
+2260580,11776289,3
+4559768,11776289,2
+bessie28,11776289,4
+wwnoah,11776289,3
+91576800,11776289,2
+1668702,11776289,1
+lfj1016,11776289,3
+47754503,11776289,4
+59391832,11776289,2
+44500339,11776289,4
+jluy,11776289,3
+92427949,11776289,3
+80619112,11776289,4
+vicW,11776289,3
+GrinGrinGrin,11776289,3
+86091558,11776289,2
+Koko_head,11776289,5
+yufei707,11776289,2
+stellajiang,11776289,3
+38404027,11776289,3
+58451504,11776289,3
+70446791,11776289,-1
+17549723,11776289,2
+misscoke,11776289,1
+2380878,11776289,4
+4614210,11776289,4
+123456916,11776289,4
+28398689,11776289,2
+hazelchao,11776289,3
+54478804,11776289,2
+70951210,11776289,2
+candylifenuevo,11776289,3
+1886453,11776289,5
+65095857,11776289,4
+133687248,11776289,5
+57605115,11776289,3
+60981917,11776289,4
+60981917,11776289,4
+maeho,11776289,3
+126693961,11776289,2
+rickybieber,11776289,1
+hxp1989,11776289,3
+83389859,11776289,2
+lynjan,11776289,3
+2030641,11776289,4
+2787271,11776289,4
+83717387,11776289,3
+48463035,11776289,4
+65072304,11776289,3
+48105948,11776289,3
+60049868,11776289,4
+51139499,11776289,2
+3388290,11776289,2
+Blacksevenshow,11776289,3
+3294820,11776289,3
+1929758,11776289,3
+47413468,11776289,2
+yuanziis,11776289,2
+44816197,11776289,3
+keneyzhao,11776289,2
+czj950615,11776289,2
+55021112,11776289,5
+44801673,11776289,3
+37580592,11776289,3
+55970012,11776289,3
+zr97,11776289,5
+61726273,11776289,2
+78975012,11776289,4
+1586971,11776289,3
+43814222,11776289,1
+hushibookstore,11776289,4
+36208121,11776289,3
+76169652,11776289,3
+87821207,11776289,5
+2978891,11776289,3
+48163178,11776289,3
+16409481,11776289,3
+SummerDuan,11776289,5
+52129503,11776289,3
+81084741,11776289,3
+4254640,11776289,2
+yan6,11776289,3
+Sophie.,11776289,3
+82225198,11776289,4
+71214465,11776289,4
+dabaibai,11776289,3
+chouchou35,11776289,1
+2404348,11776289,3
+2595427,11776289,1
+37280239,11776289,4
+63032751,11776289,4
+4629619,11776289,5
+karain,11776289,3
+4090722,11776289,-1
+70506259,11776289,4
+yu0226,11776289,3
+6500897,11776289,5
+66457968,11776289,3
+40110852,11776289,4
+tide1897,11776289,3
+NINEYR,11776289,4
+Anatomy,11776289,1
+tomsnakewang,11776289,3
+46378933,11776289,2
+lpor,11776289,1
+33328418,11776289,3
+11786089,11776289,4
+lovelawliet,11776289,3
+as_shmily,11776289,4
+60408856,11776289,3
+anotheronexia,11776289,3
+49607126,11776289,2
+48998927,11776289,3
+80319590,11776289,3
+altmann,11776289,4
+57561564,11776289,3
+rorgegorge,11776289,5
+3522119,11776289,3
+miu921,11776289,3
+zouzhiruo,11776289,1
+emily7726,11776289,4
+69173173,11776289,4
+goson,11776289,5
+49767711,11776289,1
+46792617,11776289,3
+33143149,11776289,3
+zayaza,11776289,4
+cathrineeyes,11776289,4
+csee1121,11776289,4
+41403989,11776289,4
+constantmartin,11776289,4
+38633281,11776289,4
+16315719,11776289,4
+43005536,11776289,3
+befreelancer,11776289,4
+128157735,11776289,3
+52286623,11776289,3
+58226021,11776289,4
+Nyor,11776289,2
+113291249,11776289,5
+bettylwx,11776289,3
+1985034,11776289,5
+81792271,11776289,1
+58043566,11776289,4
+jackieatdnv,11776289,3
+kuangren79,11776289,3
+5955160,11776289,4
+steveliux,11776289,2
+130551483,11776289,3
+iris29,11776289,4
+57981890,11776289,3
+35951306,11776289,2
+79080942,11776289,4
+vvtutu,11776289,2
+lancer21,11776289,-1
+1069770,11776289,3
+shallwinyee,11776289,3
+46310239,11776289,2
+ylnaiwcz,11776289,2
+67751186,11776289,1
+izaijin,11776289,3
+31389307,11776289,3
+renzrxly,11776289,3
+57104894,11776289,2
+purestar,11776289,3
+51432651,11776289,5
+qiusheng,11776289,4
+megansyr,11776289,-1
+everlastingblue,11776289,4
+57987263,11776289,5
+2594481,11776289,3
+ALee301302,11776289,4
+56668791,11776289,4
+Fionsay,11776289,4
+WSSWHL,11776289,3
+96545513,11776289,4
+79022123,11776289,5
+terryoy,11776289,5
+55663940,11776289,-1
+kuxiafeng,11776289,4
+63874750,11776289,4
+changle0605,11776289,3
+133125055,11776289,4
+qianqian0829,11776289,3
+joycebigtime,11776289,4
+evastone,11776289,3
+45749483,11776289,3
+48236459,11776289,4
+UWMADISON,11776289,4
+YYDEE,11776289,4
+41212756,11776289,4
+yuyang1990720,11776289,2
+84681267,11776289,3
+35233003,11776289,4
+72723513,11776289,3
+wjscxx,11776289,2
+79358875,11776289,-1
+1412545,11776289,-1
+finsen27,11776289,3
+39720218,11776289,3
+yaya102,11776289,3
+wubudingyang,11776289,3
+yishenmanli,11776289,3
+45417298,11776289,4
+daangel,11776289,4
+4809632,11776289,4
+Deepoxygen,11776289,4
+sophie.sue,11776289,4
+losacos,11776289,4
+ppxihuanni,11776289,1
+Charlotte.Q,11776289,3
+yamlion,11776289,5
+87655848,11776289,4
+3306665,11776289,4
+91919355,11776289,3
+xx218,11776289,3
+64981286,11776289,3
+65013902,11776289,1
+134148719,11776289,5
+xdcheung,11776289,4
+xxxcici123,11776289,1
+xyl19900815,11776289,4
+gsh1215,11776289,4
+40067937,11776289,4
+scarlet_,11776289,3
+79948176,11776289,3
+3308651,11776289,4
+hexuanpomon,11776289,4
+43697952,11776289,5
+Guardianangel,11776289,1
+78475246,11776289,4
+xuxinyan083,11776289,3
+52944642,11776289,3
+amandaccforever,11776289,3
+lucywang53,11776289,4
+50900048,11776289,3
+121922821,11776289,5
+59025385,11776289,2
+1132028,11776289,5
+66289579,11776289,5
+anko2626,11776289,4
+119108631,11776289,1
+jsc528,11776289,2
+68079880,11776289,3
+aarivy,11776289,4
+134145147,11776289,4
+48677630,11776289,1
+78364683,11776289,4
+qinwenrene,11776289,5
+52780996,11776289,3
+48681369,11776289,2
+98014979,11776289,4
+39829339,11776289,2
+122696545,11776289,2
+45607426,11776289,1
+laowinglok,11776289,2
+wuzhuan105,11776289,3
+aegeanguo,11776289,4
+57906022,11776289,1
+orient8947,11776289,2
+suqieyao,11776289,3
+81916004,11776289,3
+119157867,11776289,3
+heavycoldteahou,11776289,3
+104823216,11776289,3
+78968264,11776289,4
+67742715,11776289,4
+34473328,11776289,4
+80578018,11776289,3
+shirley115,11776289,4
+2848425,11776289,4
+hitent,11776289,3
+milkshare,11776289,3
+52470011,11776289,4
+49532139,11776289,3
+64287527,11776289,2
+66363897,11776289,4
+66363897,11776289,4
+62581194,11776289,3
+41310886,11776289,2
+cherry0120,11776289,3
+oxolin,11776289,1
+89464147,11776289,3
+46661734,11776289,4
+89451365,11776289,3
+carriezw,11776289,5
+cgaga,11776289,4
+dahdumiedu,11776289,4
+48662310,11776289,4
+lyingcream,11776289,2
+missliyu,11776289,2
+30649428,11776289,3
+44309498,11776289,3
+3965227,11776289,2
+4439132,11776289,5
+76114103,11776289,3
+40947080,11776289,4
+40947080,11776289,4
+2488600,11776289,2
+74341937,11776289,5
+evelyncaelum,11776289,3
+84167567,11776289,2
+easy1028,11776289,4
+124749541,11776289,1
+goldpoppy,11776289,4
+62185562,11776289,1
+54077751,11776289,2
+will_u,11776289,3
+queenayip,11776289,4
+64597466,11776289,4
+shishiamz,11776289,3
+4600161,11776289,3
+cocozhao,11776289,4
+64972660,11776289,3
+xyy_1214,11776289,1
+fsmarjorie,11776289,3
+51387429,11776289,1
+72181533,11776289,3
+stjarl,11776289,-1
+103378638,11776289,5
+phoenix43,11776289,4
+52447788,11776289,3
+43020527,11776289,3
+coolwd,11776289,3
+45345873,11776289,3
+52114898,11776289,1
+jiutianforever,11776289,5
+feng-tracy,11776289,2
+miyamiyawei,11776289,3
+45754533,11776289,3
+28112076,11776289,3
+shallowye,11776289,3
+momopeach,11776289,5
+70158247,11776289,5
+51591369,11776289,3
+14113539,11776289,2
+59466056,11776289,3
+59466056,11776289,3
+65440660,11776289,3
+ploverpang,11776289,5
+44656032,11776289,4
+44187248,11776289,3
+11396494,11776289,4
+93081094,11776289,5
+auvauva,11776289,3
+103106457,11776289,2
+ohnirvana,11776289,4
+nicy119,11776289,3
+131239316,11776289,4
+couple1314,11776289,3
+47390120,11776289,5
+CZ1011,11776289,3
+46509105,11776289,4
+he21,11776289,-1
+5659406,11776289,5
+67921546,11776289,5
+oapa,11776289,4
+85054280,11776289,3
+49122848,11776289,4
+yadiel,11776289,3
+4160222,11776289,3
+gaopengyuan,11776289,1
+someone0,11776289,5
+SINCE1988,11776289,4
+116652565,11776289,3
+fumihiko1985,11776289,4
+kkyellow,11776289,2
+3035586,11776289,4
+89934202,11776289,2
+53238210,11776289,3
+68738740,11776289,4
+64688710,11776289,4
+51087231,11776289,2
+cijunbutileng,11776289,3
+129106127,11776289,2
+2880913,11776289,2
+jasonisajoker,11776289,3
+fuyun2710,11776289,2
+25674163,11776289,3
+47359205,11776289,2
+65907866,11776289,3
+leLJ,11776289,3
+8872886,11776289,4
+76146142,11776289,3
+59994640,11776289,5
+49728742,11776289,3
+2668037,11776289,4
+58956740,11776289,5
+2174521,11776289,4
+89187056,11776289,3
+5592925,11776289,4
+tomatooo,11776289,3
+51482739,11776289,5
+127244778,11776289,3
+54148554,11776289,3
+allentear,11776289,3
+zourong,11776289,4
+130699016,11776289,1
+49443595,11776289,4
+fourv,11776289,4
+130531885,11776289,4
+bluegrid,11776289,2
+49260594,11776289,3
+89646324,11776289,4
+47612067,11776289,3
+katrinamu,11776289,3
+chrisyx,11776289,4
+57842249,11776289,4
+48998446,11776289,3
+royin.chao,11776289,3
+57534573,11776289,5
+44789325,11776289,2
+74867829,11776289,4
+zyztonorrow,11776289,3
+dutianxiong,11776289,-1
+54843353,11776289,2
+49366823,11776289,3
+sliaobellamy,11776289,2
+77914968,11776289,1
+64038122,11776289,2
+48523065,11776289,4
+monkeyshuai,11776289,4
+38989368,11776289,3
+34063715,11776289,4
+53383402,11776289,2
+Nikki-2006,11776289,4
+movie007wn,11776289,3
+fang0079,11776289,3
+2504247,11776289,2
+39542479,11776289,3
+amatou,11776289,5
+91958061,11776289,5
+shunong,11776289,4
+hollyxiyi,11776289,3
+85169500,11776289,3
+3776230,11776289,5
+wangjun1900,11776289,3
+kaarlo,11776289,3
+Bobbyency,11776289,3
+42861474,11776289,3
+susidai,11776289,3
+braveshengchun,11776289,3
+yumeria,11776289,4
+34901213,11776289,2
+2359503,11776289,4
+61326336,11776289,3
+miss_xiaoxiao,11776289,2
+58023093,11776289,3
+33749828,11776289,3
+69125337,11776289,4
+xilouchen,11776289,4
+31586440,11776289,3
+32267845,11776289,4
+37019955,11776289,4
+vhuangdao,11776289,2
+121738119,11776289,4
+54676136,11776289,4
+97312448,11776289,3
+31465488,11776289,4
+xxiaotian,11776289,1
+84548876,11776289,3
+55835105,11776289,3
+zhangtuo,11776289,4
+17009603,11776289,5
+68490361,11776289,2
+10750432,11776289,3
+zcq741433220,11776289,4
+68703625,11776289,1
+AnitaXSteps,11776289,2
+2635787,11776289,5
+59416830,11776289,3
+65510626,11776289,2
+weiranchenglin,11776289,3
+olviayanws,11776289,3
+sosad,11776289,3
+74607366,11776289,-1
+64821728,11776289,2
+83193212,11776289,2
+71096090,11776289,5
+sakura9686,11776289,3
+nightpanda,11776289,1
+57274544,11776289,4
+115506087,11776289,3
+15497319,11776289,3
+53364915,11776289,3
+46326400,11776289,3
+nov.11,11776289,2
+1056656,11776289,4
+127433083,11776289,3
+43600313,11776289,4
+2823823,11776289,3
+85901553,11776289,3
+25350324,11776289,-1
+2472187,11776289,3
+54126303,11776289,1
+84431385,11776289,4
+echoabc0409,11776289,3
+55817697,11776289,3
+48640337,11776289,4
+adamhu,11776289,3
+Kishimoto,11776289,1
+80850093,11776289,4
+58544371,11776289,3
+3555237,11776289,4
+11020421,11776289,2
+corday,11776289,3
+roseunicorn,11776289,2
+66331142,11776289,2
+72693000,11776289,3
+48329083,11776289,3
+77876684,11776289,1
+ouyangbella,11776289,4
+124568524,11776289,-1
+andotadao,11776289,2
+falsefish,11776289,4
+87554373,11776289,1
+61742449,11776289,3
+shurazhang,11776289,4
+4337944,11776289,4
+1069725,11776289,4
+102456258,11776289,3
+127043703,11776289,4
+131538725,11776289,5
+putaonat,11776289,3
+53848520,11776289,1
+84873418,11776289,3
+48873151,11776289,1
+130941733,11776289,3
+2243854,11776289,3
+115370500,11776289,3
+sinry,11776289,4
+memecha1314,11776289,4
+74959611,11776289,3
+lhacs,11776289,5
+ele30tin,11776289,3
+127378341,11776289,3
+57057682,11776289,1
+Hanry7,11776289,1
+roy821,11776289,4
+putao2014,11776289,3
+53919558,11776289,1
+youran_lee,11776289,3
+honeyzst,11776289,2
+132099750,11776289,3
+33855845,11776289,3
+44437250,11776289,4
+annabel828,11776289,4
+3843442,11776289,3
+2249187,11776289,4
+jinliping,11776289,5
+3192663,11776289,4
+sunny_wong,11776289,3
+42144339,11776289,-1
+KRISJ,11776289,5
+54537877,11776289,2
+quzheng1986,11776289,3
+83900482,11776289,3
+56478943,11776289,3
+shixiaoxuan,11776289,1
+3121598,11776289,4
+16992419,11776289,4
+37757378,11776289,1
+honey-honey,11776289,3
+49170151,11776289,3
+herofox,11776289,5
+4157643,11776289,3
+36633049,11776289,4
+littlecherie,11776289,4
+48508682,11776289,5
+59164249,11776289,3
+129964304,11776289,3
+13156041,11776289,3
+13405505,11776289,2
+62245513,11776289,3
+nangongmocheng,11776289,4
+52729351,11776289,4
+68790690,11776289,4
+thomsonkoo,11776289,3
+75902072,11776289,3
+84114738,11776289,4
+57558926,11776289,3
+iamfoot,11776289,1
+54656864,11776289,3
+45935605,11776289,2
+89609901,11776289,2
+2527708,11776289,3
+114096414,11776289,3
+17825314,11776289,3
+cat_water,11776289,3
+luoqiuyue,11776289,4
+57545593,11776289,2
+taoqianmo,11776289,4
+dyinggg,11776289,3
+68880594,11776289,5
+81312576,11776289,3
+curlooo,11776289,3
+48743870,11776289,5
+2210778,11776289,4
+chennanlydia,11776289,3
+Renascen,11776289,4
+lightgreen,11776289,3
+98793162,11776289,2
+henryxuzimo,11776289,4
+104252458,11776289,4
+68324587,11776289,1
+37052621,11776289,3
+51618749,11776289,2
+51236762,11776289,4
+75181740,11776289,4
+57244499,11776289,-1
+69148089,11776289,3
+fccindy,11776289,5
+45541495,11776289,3
+Andy9,11776289,4
+yfqc24pippo,11776289,3
+luzhiyu,11776289,3
+nedteng,11776289,3
+49488269,11776289,3
+yao2harry,11776289,3
+maidangdang,11776289,3
+49026093,11776289,4
+4429031,11776289,3
+hanadomoto,11776289,3
+65075320,11776289,4
+ruokongzhi,11776289,3
+122191146,11776289,5
+48954056,11776289,4
+68778164,11776289,3
+73554013,11776289,3
+antihuman,11776289,5
+115772568,11776289,4
+1605000,11776289,4
+47227699,11776289,1
+125806599,11776289,3
+68918586,11776289,4
+47729106,11776289,4
+felinoshuffle,11776289,4
+27017814,11776289,3
+10321693,11776289,3
+100162086,11776289,4
+73675216,11776289,1
+3933823,11776289,3
+loveguigui7814,11776289,2
+74684254,11776289,4
+grinch,11776289,3
+H897120417,11776289,4
+vengy123,11776289,4
+71882861,11776289,2
+cheng_Ting,11776289,2
+54375575,11776289,3
+Rocklisa,11776289,2
+51234375,11776289,2
+lingtong198747,11776289,4
+122764683,11776289,5
+hr116,11776289,5
+metac,11776289,3
+scorates1984,11776289,3
+59621398,11776289,4
+66602695,11776289,4
+71867547,11776289,3
+59625308,11776289,5
+36183091,11776289,4
+63939883,11776289,3
+2374450,11776289,3
+bbcth,11776289,3
+88226761,11776289,2
+julynse,11776289,4
+1802113,11776289,4
+1895030,11776289,3
+53998675,11776289,1
+juwujian,11776289,3
+66064592,11776289,3
+121925432,11776289,4
+sugar-man,11776289,3
+45319686,11776289,3
+66203352,11776289,4
+4129515,11776289,3
+ningning9164,11776289,-1
+kach244,11776289,4
+82404312,11776289,3
+dazhuang1990,11776289,5
+awen2309,11776289,3
+65541442,11776289,2
+wonderc,11776289,1
+47564941,11776289,5
+dantegao2015,11776289,4
+2255211,11776289,4
+Innerplant,11776289,4
+2914496,11776289,3
+shochiu,11776289,4
+50672411,11776289,1
+91825059,11776289,4
+3753878,11776289,2
+foufou,11776289,4
+bforbetter,11776289,4
+m19900714,11776289,4
+4158567,11776289,3
+51759848,11776289,3
+tintintsang,11776289,3
+66461284,11776289,4
+dorothy.C,11776289,3
+98877536,11776289,4
+122136126,11776289,5
+19136693,11776289,2
+47755264,11776289,-1
+1864146,11776289,3
+54376852,11776289,3
+61935443,11776289,4
+3597938,11776289,5
+3293781,11776289,5
+91294156,11776289,3
+84328091,11776289,3
+xixikai,11776289,2
+1787295,11776289,3
+69000298,11776289,5
+82990219,11776289,3
+40012228,11776289,5
+kissnianan,11776289,3
+fanny_lingf,11776289,3
+littlecar,11776289,2
+87907452,11776289,4
+83686297,11776289,1
+1493686,11776289,3
+4344316,11776289,4
+47806605,11776289,3
+97816589,11776289,3
+3276325,11776289,4
+zlooo_timm,11776289,-1
+72661721,11776289,3
+31530097,11776289,3
+51171341,11776289,3
+69214114,11776289,1
+74585115,11776289,3
+kalashnikovyang,11776289,3
+summeric,11776289,3
+OOORRR,11776289,3
+34617683,11776289,1
+66036408,11776289,1
+67679868,11776289,3
+asanjiamomo,11776289,4
+34155288,11776289,4
+a1234567,11776289,4
+3165431,11776289,3
+17109660,11776289,4
+leafxiaoying,11776289,4
+85812003,11776289,1
+lilmi13,11776289,4
+50269699,11776289,3
+17708601,11776289,3
+MariahC,11776289,4
+thesadyesterday,11776289,4
+dawdle,11776289,2
+8839314,11776289,5
+62446851,11776289,2
+66631115,11776289,1
+60860186,11776289,3
+Iamwanghaha,11776289,4
+68101692,11776289,3
+xysxt,11776289,3
+49925058,11776289,3
+hanxiaonuan,11776289,4
+flowerann,11776289,4
+71985811,11776289,3
+xxxxiaoxiao,11776289,3
+demoncat,11776289,2
+77350379,11776289,1
+antoniochen,11776289,3
+febyting,11776289,4
+115898172,11776289,4
+40581527,11776289,4
+122088775,11776289,3
+79934332,11776289,2
+deepe,11776289,2
+49174412,11776289,3
+raytao,11776289,4
+miaoxiaof,11776289,4
+64008981,11776289,4
+63359487,11776289,4
+69037881,11776289,3
+lotusworld,11776289,4
+3677550,11776289,3
+stomach_ache,11776289,4
+smilehuhu,11776289,3
+lovenorman,11776289,4
+61531110,11776289,3
+3574374,11776289,3
+60164301,11776289,3
+2491680,11776289,2
+105547420,11776289,1
+3309887,11776289,3
+Aiyouyouyouyou,11776289,5
+72781855,11776289,3
+61516280,11776289,4
+66521777,11776289,2
+28026736,11776289,3
+cl411,11776289,3
+114185944,11776289,1
+122380965,11776289,1
+picnicskins,11776289,3
+3768964,11776289,4
+woainikakashi,11776289,4
+60666565,11776289,4
+54989899,11776289,2
+49103272,11776289,3
+shenxi,11776289,3
+2818823,11776289,5
+52203581,11776289,4
+130846662,11776289,1
+yichunchunshili,11776289,4
+bxg555,11776289,-1
+missguo3,11776289,5
+53023463,11776289,4
+133769481,11776289,1
+GUYU7,11776289,3
+1037155,11776289,4
+Janmine,11776289,5
+79604988,11776289,1
+70081984,11776289,2
+silencewong,11776289,2
+angle223,11776289,3
+87860382,11776289,3
+4167975,11776289,4
+120297129,11776289,-1
+Walt_W,11776289,3
+71593524,11776289,5
+3383915,11776289,3
+allenwangzihan,11776289,4
+ysxue,11776289,4
+56459821,11776289,4
+61749408,11776289,3
+HandsomePrince,11776289,4
+4069863,11776289,3
+cqmccb,11776289,3
+cappuccino5026,11776289,5
+lovemapaandhuhu,11776289,4
+81473347,11776289,4
+85397972,11776289,5
+50060410,11776289,4
+61282289,11776289,1
+3167300,11776289,4
+65061479,11776289,4
+complicate89,11776289,1
+80250339,11776289,4
+DeWatson,11776289,4
+35336788,11776289,3
+49311331,11776289,3
+121933047,11776289,4
+2749090,11776289,2
+flxjp,11776289,4
+yoyoyoyou,11776289,-1
+49748838,11776289,4
+119248717,11776289,4
+YLACHESIS,11776289,4
+45838830,11776289,3
+60940048,11776289,5
+58513606,11776289,2
+forrymhrccpig,11776289,4
+gone2006,11776289,3
+2462135,11776289,5
+honeyhh,11776289,3
+54864472,11776289,-1
+52829135,11776289,2
+58587564,11776289,4
+41855603,11776289,4
+82065150,11776289,1
+rainsun0607,11776289,3
+littleD,11776289,3
+yjyskoala,11776289,4
+58369888,11776289,2
+gocia,11776289,4
+37966759,11776289,4
+Her_Mione,11776289,2
+49116059,11776289,4
+116728333,11776289,3
+77046292,11776289,3
+LuuuuC,11776289,2
+rapclot,11776289,5
+reappear,11776289,3
+2840304,11776289,3
+1364563,11776289,3
+m2529,11776289,5
+99483183,11776289,3
+133593177,11776289,4
+xiaotuo,11776289,3
+grace090216,11776289,3
+133877898,11776289,2
+131751998,11776289,2
+44006704,11776289,2
+62934434,11776289,5
+16121075,11776289,3
+57092090,11776289,4
+ltec,11776289,5
+17004593,11776289,2
+16799908,11776289,4
+94715443,11776289,3
+66341501,11776289,4
+Monster_004,11776289,4
+44617009,11776289,3
+52442754,11776289,3
+49993074,11776289,3
+yunqiu,11776289,3
+73536867,11776289,3
+101450082,11776289,3
+46657628,11776289,4
+ydlxiaolong,11776289,3
+42190807,11776289,5
+67619742,11776289,4
+73421771,11776289,3
+jiang_feng_xiu,11776289,4
+81546030,11776289,2
+81278452,11776289,4
+70682305,11776289,3
+98084107,11776289,3
+HEYHo,11776289,1
+62370156,11776289,5
+novoul,11776289,2
+120070082,11776289,2
+71348074,11776289,4
+76857499,11776289,3
+57143181,11776289,1
+june.q,11776289,3
+kyleul,11776289,5
+kongyan15,11776289,1
+131297465,11776289,3
+4655887,11776289,5
+80062653,11776289,4
+87608735,11776289,2
+niguangfeng,11776289,5
+ginnyisbest,11776289,1
+102489587,11776289,5
+70253333,11776289,3
+66127114,11776289,5
+killmystery,11776289,-1
+59156667,11776289,2
+56526640,11776289,4
+yuuu,11776289,3
+56543834,11776289,3
+65681528,11776289,4
+41836272,11776289,3
+48096986,11776289,4
+luciusluo,11776289,2
+48545182,11776289,4
+xiaojirou007,11776289,3
+ILWTFT,11776289,4
+XXXXXmian,11776289,2
+73819913,11776289,4
+silentlion,11776289,4
+130692853,11776289,3
+71790709,11776289,3
+55410872,11776289,3
+longxiaosi,11776289,3
+31421017,11776289,3
+87095553,11776289,3
+58076899,11776289,5
+myiesha,11776289,1
+69998360,11776289,3
+kubrick311,11776289,2
+121805239,11776289,2
+40451164,11776289,1
+4909186,11776289,3
+62440182,11776289,4
+61660180,11776289,2
+3053159,11776289,5
+youyeqiuxin,11776289,3
+leeredevil,11776289,4
+67284885,11776289,4
+pws2008,11776289,4
+2837600,11776289,3
+53092429,11776289,4
+90785580,11776289,4
+2705138,11776289,2
+foreversleepy,11776289,3
+52242741,11776289,4
+97300287,11776289,3
+128454123,11776289,4
+61328607,11776289,5
+32541723,11776289,3
+42443171,11776289,3
+83242026,11776289,2
+8151313,11776289,3
+131117180,11776289,3
+63874494,11776289,3
+122048600,11776289,4
+fx20061006,11776289,5
+129087038,11776289,4
+98415041,11776289,4
+shisisi,11776289,3
+94872079,11776289,3
+64241758,11776289,5
+honahlee,11776289,3
+130276654,11776289,4
+44049804,11776289,4
+58741014,11776289,-1
+mumudangdang,11776289,1
+46334233,11776289,5
+caesarphoenix,11776289,3
+wandertree,11776289,5
+5566664,11776289,4
+64173822,11776289,4
+68200387,11776289,1
+49586478,11776289,2
+68034921,11776289,4
+44705986,11776289,3
+66995559,11776289,2
+ceh19930603,11776289,2
+lstra,11776289,4
+71755062,11776289,1
+43830625,11776289,3
+78055552,11776289,4
+lovelyee,11776289,4
+58549511,11776289,3
+winsonunddrei,11776289,3
+2029651,11776289,3
+ahmu,11776289,2
+51219877,11776289,4
+58927939,11776289,5
+tenaciousdragon,11776289,2
+60226490,11776289,4
+42292941,11776289,4
+2510654,11776289,4
+fishzero,11776289,4
+91504508,11776289,3
+66721136,11776289,3
+29212843,11776289,3
+46194616,11776289,4
+4685842,11776289,5
+sunxuhang,11776289,4
+ilestlevraije,11776289,3
+20719866,11776289,3
+42767479,11776289,5
+54934785,11776289,3
+nian-an,11776289,3
+70024677,11776289,2
+57807205,11776289,2
+sfroompp,11776289,5
+hejie511,11776289,5
+78219576,11776289,4
+52738182,11776289,3
+7881838,11776289,2
+14914580,11776289,3
+64007978,11776289,-1
+35234705,11776289,4
+5214442,11776289,3
+daying,11776289,3
+52086830,11776289,3
+67652760,11776289,5
+131494962,11776289,1
+oathkeeper,11776289,1
+54731797,11776289,4
+42800174,11776289,4
+82630962,11776289,3
+47821826,11776289,3
+48253364,11776289,3
+thaddeuskhu,11776289,3
+130726632,11776289,3
+Cecilia1990,11776289,3
+4625344,11776289,3
+100582359,11776289,4
+120102643,11776289,5
+78414144,11776289,3
+1001195,11776289,2
+40931757,11776289,3
+13984024,11776289,3
+3547067,11776289,1
+48058863,11776289,2
+fwtzzl,11776289,4
+joanna726,11776289,3
+1795919,11776289,3
+2700196,11776289,1
+47263625,11776289,4
+ly227,11776289,4
+78548156,11776289,4
+ivy_lmj,11776289,3
+117347877,11776289,3
+49699512,11776289,3
+dear_ada,11776289,4
+48045145,11776289,2
+B-B-B-Side,11776289,2
+mayxoxo,11776289,4
+68917720,11776289,2
+24792867,11776289,5
+37146663,11776289,5
+88941806,11776289,1
+51536951,11776289,3
+DARKM,11776289,1
+82582719,11776289,3
+hillyang,11776289,4
+47243761,11776289,3
+65735533,11776289,4
+121681116,11776289,4
+61520625,11776289,4
+jackie1207,11776289,3
+evaniscoming,11776289,4
+59737537,11776289,4
+lingxishuyu,11776289,3
+49421064,11776289,2
+lewuleyi,11776289,5
+123036643,11776289,4
+voguecity,11776289,4
+34600215,11776289,2
+nancy8787,11776289,4
+57099405,11776289,5
+93161752,11776289,3
+4934279,11776289,1
+131383669,11776289,1
+79847046,11776289,4
+Ruby-0917,11776289,1
+cannwindsor,11776289,4
+cuixuelei,11776289,4
+tiffany33,11776289,1
+61824176,11776289,3
+89723194,11776289,3
+imoviekobe,11776289,3
+2069523,11776289,3
+sidneyalva,11776289,3
+33665319,11776289,3
+wangxiaoyeer,11776289,4
+slowerlearner,11776289,5
+64694528,11776289,3
+17672710,11776289,2
+31692663,11776289,4
+121925373,11776289,4
+64086666,11776289,3
+wdmzjls,11776289,4
+chenbrush,11776289,3
+78518168,11776289,2
+97623200,11776289,4
+52841977,11776289,3
+64160291,11776289,4
+69531104,11776289,3
+132854070,11776289,5
+yanziniguang,11776289,4
+xinyu2011,11776289,-1
+kaopuYan0731,11776289,4
+mirrorsx,11776289,2
+60549842,11776289,2
+yanqingwei,11776289,2
+Ja_Gui,11776289,2
+Eie10_9,11776289,4
+102859940,11776289,4
+102342515,11776289,3
+deany,11776289,3
+moooote,11776289,1
+2472399,11776289,2
+99707810,11776289,3
+59137908,11776289,3
+47122000,11776289,5
+134018761,11776289,1
+44658384,11776289,3
+Losyah,11776289,-1
+63099220,11776289,3
+karas5,11776289,3
+lattice.lee,11776289,2
+yumizai,11776289,3
+50615991,11776289,3
+131628728,11776289,4
+68811221,11776289,5
+4610304,11776289,4
+71561935,11776289,3
+66178804,11776289,5
+31978586,11776289,4
+gstone1723,11776289,4
+ray7667268,11776289,4
+unclelonglegs,11776289,3
+96769747,11776289,2
+121032737,11776289,2
+57597596,11776289,4
+64507106,11776289,-1
+133900665,11776289,3
+128390764,11776289,3
+65828524,11776289,3
+beaux,11776289,3
+101963490,11776289,-1
+zero520,11776289,4
+SeyfriedAriel,11776289,5
+4832403,11776289,4
+120334801,11776289,4
+47052463,11776289,2
+2340389,11776289,3
+annieaiannie,11776289,2
+63156510,11776289,3
+90635232,11776289,4
+72704694,11776289,4
+67958148,11776289,3
+mori0331,11776289,5
+claireqq,11776289,3
+miti32,11776289,4
+91643336,11776289,2
+88844052,11776289,3
+4370686,11776289,3
+runcastor,11776289,5
+erobin,11776289,3
+14408136,11776289,4
+64091557,11776289,4
+119799653,11776289,1
+ciliea,11776289,4
+57626964,11776289,4
+80042443,11776289,4
+69631083,11776289,3
+43535108,11776289,1
+Miranda625,11776289,3
+ljane,11776289,5
+51605377,11776289,2
+34059998,11776289,3
+iris714,11776289,4
+53626433,11776289,3
+79334007,11776289,4
+58625918,11776289,3
+2705006,11776289,-1
+atomziyu,11776289,5
+nwieelhx,11776289,3
+70933657,11776289,3
+48848721,11776289,2
+T.V.Zoe,11776289,3
+choushabi,11776289,4
+4190834,11776289,3
+125655857,11776289,2
+130813425,11776289,3
+2701338,11776289,3
+121916138,11776289,3
+88731652,11776289,2
+61905540,11776289,4
+49855278,11776289,4
+73648035,11776289,1
+69317574,11776289,5
+Uroboros,11776289,3
+3948628,11776289,3
+waWa.tomato,11776289,5
+43216565,11776289,3
+Jarry_yang,11776289,4
+socalled,11776289,1
+xyhen,11776289,3
+michaelcc,11776289,3
+62475317,11776289,3
+fallistuzi,11776289,4
+Collins1995,11776289,3
+fre7dom,11776289,4
+Elizabeth-Lee,11776289,3
+48920065,11776289,5
+Amy-Winter,11776289,1
+67389352,11776289,3
+83479704,11776289,4
+braquentin,11776289,3
+53094976,11776289,4
+4005034,11776289,4
+122121522,11776289,1
+Sueli,11776289,5
+51020259,11776289,5
+94845988,11776289,5
+4369602,11776289,2
+superMmm,11776289,2
+60717435,11776289,4
+46054766,11776289,-1
+129480352,11776289,4
+78936814,11776289,5
+76999762,11776289,2
+115376627,11776289,4
+63444910,11776289,4
+suyoyi,11776289,1
+130369014,11776289,5
+WierdMinds,11776289,3
+iamsyh,11776289,4
+liwujiu,11776289,3
+102960018,11776289,4
+127080428,11776289,5
+66860468,11776289,3
+52992118,11776289,2
+2570265,11776289,4
+63236633,11776289,1
+130690419,11776289,3
+gaohang,11776289,5
+85119623,11776289,3
+3494073,11776289,4
+undeadmonster,11776289,4
+caojiang,11776289,3
+1148225,11776289,4
+45440110,11776289,4
+Plutoyw,11776289,3
+124640229,11776289,4
+miaomiaomiaomad,11776289,3
+132111748,11776289,2
+3478406,11776289,4
+49854531,11776289,3
+partipris,11776289,-1
+107284336,11776289,4
+50953723,11776289,3
+2265138,11776289,4
+87776926,11776289,2
+62582526,11776289,3
+50953807,11776289,5
+JackHChan,11776289,1
+32995807,11776289,2
+Tweff,11776289,3
+1452141,11776289,2
+vinciwang,11776289,2
+125773849,11776289,3
+4650728,11776289,4
+gexiarong,11776289,3
+smeles,11776289,3
+43285924,11776289,4
+quanzhouren,11776289,4
+49329563,11776289,3
+56573880,11776289,4
+babyxy006,11776289,4
+52518211,11776289,4
+ringrose5719,11776289,2
+yoco,11776289,1
+GeiaoGeiao,11776289,3
+lovely_love,11776289,4
+128742398,11776289,3
+69822780,11776289,2
+Zetsubo,11776289,3
+53497780,11776289,2
+52868454,11776289,2
+44206386,11776289,2
+133715428,11776289,2
+2176730,11776289,4
+129574538,11776289,3
+shirley395,11776289,1
+50112537,11776289,3
+57753980,11776289,3
+126959974,11776289,3
+sugushome,11776289,3
+63920180,11776289,3
+haidonsun,11776289,2
+biglao,11776289,1
+65560821,11776289,3
+siyoo,11776289,2
+42137156,11776289,3
+122168213,11776289,1
+49411879,11776289,4
+lolitayan,11776289,2
+64518708,11776289,5
+acouchpotato,11776289,1
+nnnya,11776289,5
+InTheShadowOfLo,11776289,4
+51772148,11776289,4
+83094887,11776289,4
+zizon,11776289,2
+sodasue,11776289,3
+80766328,11776289,3
+96428900,11776289,2
+47787216,11776289,3
+62409548,11776289,3
+60549347,11776289,-1
+77718867,11776289,4
+bigbei,11776289,2
+G20100425nivel,11776289,2
+kejinlong,11776289,4
+darlingtudai,11776289,3
+129040380,11776289,1
+xss0791,11776289,4
+130851881,11776289,3
+shennessy,11776289,4
+49316302,11776289,3
+timestrawberry,11776289,3
+qianmokuihua,11776289,2
+72094066,11776289,4
+131131042,11776289,3
+Summerhoda,11776289,3
+taxi,11776289,4
+annho,11776289,4
+58059498,11776289,3
+108419935,11776289,1
+vivifyvivi,11776289,2
+listenmumu,11776289,1
+udandan,11776289,1
+ween339,11776289,5
+62155301,11776289,4
+133239114,11776289,3
+sodiumy,11776289,3
+68567528,11776289,2
+90325710,11776289,2
+dangshilu,11776289,4
+yjhsherry,11776289,3
+soledadan,11776289,3
+celiagirl,11776289,3
+53476410,11776289,4
+47104985,11776289,2
+77644475,11776289,4
+134008337,11776289,3
+108077404,11776289,3
+44658410,11776289,3
+Ryanzeng,11776289,1
+yeslie,11776289,4
+59228070,11776289,3
+52649059,11776289,3
+58096445,11776289,3
+nilaoye,11776289,2
+75284780,11776289,2
+97180170,11776289,5
+52728964,11776289,5
+arys88,11776289,1
+62742693,11776289,2
+65079823,11776289,2
+copy6,11776289,4
+119988256,11776289,4
+dodorene,11776289,4
+59305765,11776289,1
+CeleryLove,11776289,3
+49382185,11776289,3
+63412313,11776289,3
+monsterbaby,11776289,3
+50023585,11776289,-1
+40104674,11776289,3
+82689458,11776289,3
+67182363,11776289,4
+3599865,11776289,4
+73503738,11776289,-1
+79605736,11776289,3
+43134221,11776289,3
+14715966,11776289,-1
+54479962,11776289,3
+45008056,11776289,2
+FindingKnightly,11776289,3
+87922451,11776289,3
+52259960,11776289,3
+52259960,11776289,3
+staytonight,11776289,3
+essay13,11776289,3
+juvenility,11776289,2
+onlyjuly,11776289,4
+133266692,11776289,3
+47564497,11776289,3
+star-b612,11776289,3
+3346015,11776289,4
+104056990,11776289,3
+4255750,11776289,4
+34719706,11776289,5
+128992913,11776289,4
+ywl930,11776289,1
+121516783,11776289,3
+84109824,11776289,5
+45484861,11776289,3
+75288450,11776289,3
+53789319,11776289,2
+49734653,11776289,4
+52907195,11776289,3
+48369193,11776289,3
+57947049,11776289,4
+99329704,11776289,3
+102958157,11776289,2
+122288974,11776289,3
+133080033,11776289,2
+levitating,11776289,3
+niubility1258,11776289,5
+60432635,11776289,3
+71166963,11776289,4
+64328029,11776289,1
+91093296,11776289,5
+kuangbi,11776289,3
+126375178,11776289,2
+jocelyn1213,11776289,4
+44272314,11776289,4
+37848161,11776289,3
+83156275,11776289,4
+75678243,11776289,2
+59918811,11776289,3
+zjnsas,11776289,5
+fontain,11776289,3
+123504720,11776289,4
+iear,11776289,4
+66579976,11776289,4
+119399510,11776289,4
+64069487,11776289,3
+Alvin0414,11776289,2
+130603786,11776289,5
+73405940,11776289,3
+hannahhanning,11776289,4
+79537393,11776289,3
+49165485,11776289,4
+3297412,11776289,5
+tiamat,11776289,5
+Bingbing.,11776289,4
+60918487,11776289,2
+75426424,11776289,3
+metkee,11776289,3
+1158377,11776289,4
+34120415,11776289,4
+52744740,11776289,4
+2238966,11776289,4
+131368901,11776289,1
+76096581,11776289,3
+62650109,11776289,2
+73959584,11776289,4
+1170261,11776289,4
+starstargoo,11776289,3
+127089161,11776289,3
+50769743,11776289,3
+mrHeakles,11776289,3
+129369858,11776289,3
+46973641,11776289,3
+Rottenmudpit,11776289,1
+58034175,11776289,3
+missingwei,11776289,3
+maqingyun,11776289,4
+xly7788,11776289,4
+29219029,11776289,3
+79805335,11776289,3
+AJIONG119,11776289,3
+3670661,11776289,4
+68366606,11776289,3
+52571798,11776289,5
+78668658,11776289,5
+42217417,11776289,4
+2460035,11776289,5
+eason0210,11776289,1
+132356471,11776289,3
+69125005,11776289,2
+53643581,11776289,3
+72684898,11776289,1
+zhubeilife,11776289,4
+71806570,11776289,3
+jump28157,11776289,5
+aprilwind_shi,11776289,3
+maydayclouds,11776289,3
+133569910,11776289,2
+133569910,11776289,2
+88262927,11776289,4
+124454581,11776289,4
+46815070,11776289,2
+98620451,11776289,5
+gismine,11776289,3
+121352269,11776289,3
+qijiuzhiyue,11776289,3
+60870044,11776289,1
+51014734,11776289,4
+48283426,11776289,2
+132249471,11776289,3
+74625744,11776289,1
+59735330,11776289,3
+jaslee,11776289,2
+41216171,11776289,2
+43304462,11776289,3
+133732634,11776289,3
+71118924,11776289,5
+48198672,11776289,4
+69020975,11776289,2
+67641940,11776289,5
+131849470,11776289,4
+4628716,11776289,3
+cantona_x,11776289,3
+amhuming,11776289,4
+NataliaZhao,11776289,3
+2791328,11776289,4
+66263363,11776289,5
+2571757,11776289,4
+93164050,11776289,2
+128063403,11776289,3
+58847654,11776289,4
+122052846,11776289,4
+62471719,11776289,5
+lijsh,11776289,2
+78914788,11776289,4
+2049622,11776289,3
+92110044,11776289,4
+Chopen,11776289,1
+4129696,11776289,3
+p2165,11776289,1
+64495212,11776289,4
+sixiaokong,11776289,3
+69223309,11776289,4
+enanm,11776289,3
+seafans,11776289,2
+108496496,11776289,4
+104823115,11776289,3
+ngqmtm,11776289,1
+104823204,11776289,4
+antony1994,11776289,3
+128250063,11776289,3
+34940692,11776289,4
+36698820,11776289,-1
+2193770,11776289,5
+the_z,11776289,5
+104823188,11776289,3
+beepee,11776289,3
+4154813,11776289,4
+57303621,11776289,5
+bladerunner2,11776289,1
+4294774,11776289,4
+127329113,11776289,3
+47154165,11776289,2
+2175508,11776289,3
+MovieL,11776289,2
+vvvvv5,11776289,4
+bjmiss,11776289,1
+2476748,11776289,3
+56919674,11776289,1
+ew94kmd,11776289,3
+4267389,11776289,4
+53853520,11776289,4
+1609951,11776289,2
+126400536,11776289,5
+mixdream,11776289,2
+holy-fishman,11776289,4
+ramya99,11776289,3
+104823231,11776289,4
+flowervirus,11776289,4
+aaaaaaaaaaa,11776289,-1
+mlsslm777,11776289,1
+57701070,11776289,3
+bar_sur,11776289,3
+35350032,11776289,3
+blueside,11776289,3
+Blanche,11776289,4
+82895419,11776289,2
+susie1991,11776289,3
+56752174,11776289,4
+alei7774,11776289,3
+Youandi4,11776289,-1
+46430549,11776289,2
+121888181,11776289,3
+41629334,11776289,3
+lefrais,11776289,4
+ayame,11776289,-1
+cyrus_wong,11776289,4
+116614076,11776289,3
+zhouq1,11776289,3
+Microka,11776289,3
+56792528,11776289,-1
+58588109,11776289,3
+49002817,11776289,1
+50942280,11776289,4
+richer725,11776289,4
+84231339,11776289,1
+62185146,11776289,3
+3668271,11776289,3
+Wsuansuan,11776289,3
+waterskop,11776289,5
+59992839,11776289,4
+46942165,11776289,3
+Swangshu,11776289,2
+giantguo,11776289,2
+126248170,11776289,4
+liaojinzi,11776289,4
+toyshen,11776289,4
+niguize,11776289,3
+josefina_sysbs,11776289,3
+94585344,11776289,3
+diaosicheng,11776289,1
+bullshitforever,11776289,-1
+78906900,11776289,3
+shoushouan,11776289,-1
+4026585,11776289,2
+ydyie,11776289,3
+wanghaoze,11776289,3
+133621437,11776289,3
+stjimmybooze,11776289,2
+47916116,11776289,3
+adeline9999,11776289,4
+duanzizai,11776289,3
+37106430,11776289,4
+3916887,11776289,5
+dadafanhe,11776289,5
+lixiaguniang,11776289,3
+2121850,11776289,3
+58323332,11776289,1
+kite2002,11776289,4
+65309880,11776289,5
+serendip,11776289,2
+duidao,11776289,1
+edwardtroy,11776289,4
+122363289,11776289,1
+70542460,11776289,4
+eyesfetish,11776289,3
+76393487,11776289,4
+2859580,11776289,4
+120948560,11776289,4
+2137795,11776289,5
+61583937,11776289,1
+63910386,11776289,2
+70119569,11776289,4
+119806823,11776289,4
+jiajun14,11776289,4
+46413224,11776289,4
+solitude1207,11776289,3
+3427459,11776289,4
+dirtydung,11776289,2
+71913827,11776289,5
+4411528,11776289,2
+linchuzhuang,11776289,3
+79151265,11776289,3
+hiiamhere,11776289,2
+cgy0330,11776289,3
+133082737,11776289,4
+59963564,11776289,1
+rushi3,11776289,3
+48919627,11776289,5
+pimin,11776289,-1
+77307938,11776289,3
+Janone,11776289,2
+fxoc,11776289,3
+1887825,11776289,4
+dychou,11776289,4
+70238509,11776289,1
+chrislovefive,11776289,4
+woailiulian,11776289,4
+87726379,11776289,4
+SoyQueenaTse,11776289,3
+115276282,11776289,4
+1169348,11776289,4
+CINDY_YL,11776289,4
+49207665,11776289,3
+typezero,11776289,2
+65448112,11776289,3
+82150919,11776289,5
+123688744,11776289,3
+lingrui1995,11776289,-1
+yunge1991,11776289,3
+36565635,11776289,4
+Darevivion,11776289,3
+6981512,11776289,5
+70595414,11776289,4
+3483729,11776289,3
+88048268,11776289,2
+68825025,11776289,3
+21020961,11776289,4
+69465675,11776289,-1
+131557392,11776289,5
+56719974,11776289,5
+tushihe,11776289,2
+113050393,11776289,1
+Leonador,11776289,3
+63017284,11776289,3
+er953921,11776289,2
+43861505,11776289,-1
+jaredspecter,11776289,4
+50068704,11776289,3
+hellomybluelife,11776289,1
+70559646,11776289,4
+missfaye,11776289,3
+43748947,11776289,4
+30457423,11776289,5
+4172110,11776289,5
+zhaimozi,11776289,5
+1897420,11776289,4
+pajamania,11776289,3
+4165611,11776289,3
+59307428,11776289,3
+63568126,11776289,3
+63196895,11776289,4
+118090358,11776289,3
+Tamilynn,11776289,5
+34005309,11776289,-1
+lizzy2005,11776289,-1
+126632521,11776289,3
+49201790,11776289,4
+ms0604,11776289,4
+59329084,11776289,2
+lolitagreen,11776289,3
+2986990,11776289,4
+smallove816,11776289,-1
+58854842,11776289,3
+56016394,11776289,2
+43603952,11776289,4
+2596903,11776289,2
+duhuitang,11776289,5
+48953772,11776289,4
+119644008,11776289,5
+liuqing2009,11776289,5
+62601567,11776289,3
+piaoweier,11776289,4
+124136324,11776289,3
+4777385,11776289,2
+aihisie,11776289,3
+sophiayou,11776289,4
+49148779,11776289,4
+43232986,11776289,1
+Inupiat,11776289,3
+123146229,11776289,4
+71654816,11776289,3
+74249680,11776289,4
+124443004,11776289,5
+ruo1996,11776289,3
+suanshaw,11776289,5
+zhongshu,11776289,3
+Chohin,11776289,3
+49761291,11776289,4
+kulilin,11776289,3
+qianricao,11776289,4
+58955452,11776289,4
+banana77,11776289,3
+62001753,11776289,5
+120964846,11776289,5
+greengrey,11776289,4
+unkovsky,11776289,3
+venn,11776289,4
+76655139,11776289,3
+53644977,11776289,4
+47764024,11776289,2
+102797351,11776289,5
+doa4,11776289,4
+64067029,11776289,4
+tildali1214,11776289,4
+4666209,11776289,3
+55852519,11776289,4
+86721520,11776289,5
+jamesma,11776289,3
+82022775,11776289,4
+taugenichts,11776289,4
+60413211,11776289,2
+50133611,11776289,3
+1113431,11776289,4
+orangeumoon,11776289,3
+58691394,11776289,2
+2387348,11776289,3
+sunnyareas,11776289,3
+KeithMoon,11776289,3
+62579424,11776289,1
+58043248,11776289,5
+61142417,11776289,3
+41122541,11776289,4
+46891725,11776289,2
+49891610,11776289,3
+yny23,11776289,1
+52350621,11776289,3
+41293498,11776289,3
+2055478,11776289,3
+choy,11776289,3
+73877407,11776289,5
+anzhenyunyou,11776289,4
+101279421,11776289,5
+46833436,11776289,3
+1340085,11776289,4
+aprilrainer,11776289,4
+birchyanhua,11776289,3
+52900474,11776289,4
+xiexiaomao,11776289,3
+125845341,11776289,5
+helene9933,11776289,3
+61588685,11776289,5
+tuzichiluobo,11776289,2
+x1Ao_y,11776289,3
+a55h01e,11776289,3
+96044338,11776289,3
+4228422,11776289,3
+CeciliaQueen,11776289,5
+GreenL,11776289,2
+Lreckle,11776289,3
+69384559,11776289,2
+39132532,11776289,5
+downisup,11776289,5
+YOYOFunFun1064,11776289,2
+carmengmm,11776289,4
+flamencopp,11776289,4
+essy,11776289,4
+dogeli,11776289,4
+wakaka1986,11776289,4
+50212998,11776289,4
+57319762,11776289,3
+67711452,11776289,4
+2341369,11776289,4
+bearblindman,11776289,4
+53654985,11776289,4
+52145577,11776289,4
+52146626,11776289,3
+55643387,11776289,4
+xu77,11776289,2
+47569637,11776289,3
+64867760,11776289,3
+agwhy,11776289,1
+1791796,11776289,3
+wangle_cs,11776289,1
+boomXXboomXX,11776289,4
+58904723,11776289,4
+10218271,11776289,3
+2783035,11776289,4
+2471940,11776289,4
+66129611,11776289,5
+69152267,11776289,3
+53794132,11776289,2
+68089671,11776289,4
+leighpeng,11776289,-1
+47127791,11776289,4
+ginandmilk,11776289,-1
+68984410,11776289,3
+zhengxiaoben,11776289,4
+49893438,11776289,3
+zl19960120,11776289,3
+DizzyFox,11776289,4
+3812638,11776289,-1
+zajm,11776289,3
+blinglu,11776289,4
+acacia_acacia,11776289,4
+15874122,11776289,3
+BoondockSaints,11776289,3
+53586597,11776289,2
+KathyChin,11776289,-1
+1264953,11776289,3
+1411076,11776289,5
+37495463,11776289,5
+53557522,11776289,5
+stetehe,11776289,3
+nanchizi,11776289,-1
+39947856,11776289,3
+jywpl,11776289,3
+languheshang,11776289,3
+jhy007,11776289,4
+59794185,11776289,3
+51572703,11776289,3
+zhonghualin,11776289,5
+50797855,11776289,3
+2228783,11776289,4
+pigmoon,11776289,4
+43159348,11776289,3
+samsyu,11776289,-1
+HDG3215,11776289,5
+jeffchuwei,11776289,4
+51061132,11776289,4
+53677228,11776289,3
+3063479,11776289,3
+3440740,11776289,3
+cca2222223,11776289,5
+54907599,11776289,4
+hexiaoqin,11776289,3
+N111111111,11776289,3
+39596385,11776289,5
+miaoyan,11776289,3
+fantastic1021,11776289,-1
+lynwang,11776289,3
+winkido,11776289,-1
+yin888888,11776289,-1
+xiaoshuiliuqiao,11776289,3
+31281892,11776289,4
+77902546,11776289,5
+Loveholic_px,11776289,4
+52116951,11776289,2
+pole,11776289,2
+landelanle,11776289,3
+deartintin,11776289,3
+Eunyul,11776289,2
+shiguagji,11776289,2
+chinesean,11776289,3
+21767774,11776289,3
+49326623,11776289,3
+2166366,11776289,3
+lili9790,11776289,4
+138256845,11776289,2
+beurgalaxy,11776289,4
+weixiuqing,11776289,4
+136957672,11776289,4
+137801072,11776289,3
+myrainman,11776289,3
+eeyiyitizi,11776289,3
+94327869,11776289,4
+valen600,11776289,5
+cencen1010,11776289,4
+128626698,11776289,5
+2836718,11776289,1
+yqyh,11776289,-1
+67351683,11776289,3
+33931596,11776289,4
+36642666,11776289,3
+74684989,11776289,3
+137812693,11776289,1
+iamchrisy,11776289,2
+poetwang,11776289,4
+70314512,11776289,3
+99508404,11776289,2
+48435609,11776289,3
+115375109,11776289,4
+53025831,11776289,2
+37620368,11776289,3
+heydenny,11776289,2
+49730580,11776289,4
+79265813,11776289,4
+76818492,11776289,3
+71220393,11776289,3
+54889228,11776289,2
+eefee,11776289,2
+3706515,11776289,3
+92637548,11776289,4
+Eudemonia-moon,11776289,2
+56823104,11776289,3
+zhangcj1224,11776289,3
+120303134,11776289,4
+3139871,11776289,5
+alonso_frame,4160540,4
+halopan,4160540,4
+losrfuu,4160540,3
+papa1968,4160540,3
+64688509,4160540,4
+wsbaihu,4160540,4
+jimuwawa,4160540,4
+53667782,4160540,3
+4333160,4160540,4
+90161175,4160540,3
+62453659,4160540,5
+58164147,4160540,5
+1844983,4160540,3
+52007831,4160540,4
+58064926,4160540,4
+57290496,4160540,3
+yancm,4160540,4
+15393217,4160540,4
+43370880,4160540,4
+89778884,4160540,4
+eefee,4160540,3
+jeffmsu,4160540,3
+56977444,4160540,3
+59311720,4160540,4
+72866809,4160540,3
+ganster,4160540,5
+misty_rui,4160540,4
+135844833,4160540,-1
+52689721,4160540,4
+53341104,4160540,2
+41813819,4160540,5
+47658546,4160540,4
+45446401,4160540,4
+48864357,4160540,3
+50065002,4160540,3
+xiaojiongxia,4160540,3
+56309200,4160540,-1
+haimian1077,4160540,4
+137555231,4160540,4
+81481225,4160540,3
+81481225,4160540,3
+39720218,4160540,3
+54690757,4160540,4
+49538698,4160540,4
+43906549,4160540,4
+114977043,4160540,5
+37481119,4160540,4
+93961949,4160540,4
+101978260,4160540,4
+66989868,4160540,4
+104462145,4160540,-1
+puhonglei,4160540,4
+kissthebunny,4160540,2
+Cheung11,4160540,3
+yuyourongyan,4160540,-1
+ishra,4160540,3
+jidoudou,4160540,3
+Ashez,4160540,5
+chloelone,4160540,4
+116380975,4160540,4
+davia1107,4160540,5
+119489543,4160540,3
+3789295,4160540,4
+65424287,4160540,2
+44893800,4160540,3
+59689060,4160540,3
+81589343,4160540,4
+49946146,4160540,4
+71053452,4160540,4
+32143928,4160540,4
+136658274,4160540,2
+cureyxx,4160540,-1
+48377465,4160540,3
+51967179,4160540,3
+57838596,4160540,4
+69682517,4160540,3
+1388185,4160540,5
+1393380,4160540,3
+136133409,4160540,1
+happytimeinmay,4160540,2
+xixistone,4160540,3
+wuyunoy,4160540,4
+crossmaple,4160540,4
+92878802,4160540,3
+onetwothreefar,4160540,4
+127420827,4160540,4
+82643605,4160540,4
+1399092,4160540,3
+103525640,4160540,3
+59065986,4160540,3
+shirley_zhong,4160540,4
+80854961,4160540,5
+myl1fe,4160540,5
+69189624,4160540,4
+codeyu,4160540,4
+49073345,4160540,4
+66088686,4160540,3
+55749529,4160540,3
+2254491,4160540,3
+58526834,4160540,3
+127131340,4160540,4
+imwhisper,4160540,3
+99340754,4160540,-1
+48763260,4160540,4
+dadadadadadada8,4160540,4
+61721421,4160540,3
+137582289,4160540,2
+66283335,4160540,5
+93207062,4160540,4
+2070699,4160540,3
+67696784,4160540,5
+Zweig,4160540,3
+61807648,4160540,4
+sunsun0222,4160540,5
+windson7,4160540,3
+52080305,4160540,3
+62047761,4160540,3
+49694479,4160540,5
+baliangyutang,4160540,4
+100309549,4160540,4
+135694361,4160540,4
+55771467,4160540,4
+ignoreme,4160540,4
+liangzhuzaoshu,4160540,-1
+tanxiaole,4160540,2
+2161404,4160540,4
+126680069,4160540,4
+Pinnsvin,4160540,3
+99119028,4160540,-1
+2543390,4160540,-1
+53443769,4160540,5
+hou-z,4160540,4
+58999340,4160540,4
+129951028,4160540,4
+57972087,4160540,3
+59127988,4160540,3
+49305149,4160540,4
+fishmeme,4160540,4
+rehin,4160540,5
+44102290,4160540,4
+zhuyaoyao,4160540,3
+mda05057,4160540,4
+44326808,4160540,3
+3365356,4160540,3
+yeemin,4160540,-1
+74601834,4160540,4
+57693635,4160540,4
+77163742,4160540,5
+3864098,4160540,4
+3285663,4160540,2
+psychodying,4160540,4
+72431740,4160540,4
+shanshan5an,4160540,3
+63793789,4160540,4
+51053103,4160540,3
+geminehoo,4160540,3
+1559239,4160540,-1
+duducool,4160540,5
+bmrlb,4160540,5
+70321611,4160540,4
+71176381,4160540,3
+aeirolu,4160540,4
+131615477,4160540,3
+bainiqiu,4160540,-1
+134509898,4160540,4
+53867160,4160540,4
+sugarli,4160540,5
+3307804,4160540,-1
+lysw123,4160540,5
+128063403,4160540,3
+anthonywu,4160540,4
+Sugar23,4160540,2
+1176730,4160540,3
+72852558,4160540,3
+134533952,4160540,4
+100953233,4160540,5
+coldcall,4160540,4
+65269166,4160540,5
+SR-Vision,4160540,4
+63183052,4160540,4
+135099165,4160540,4
+angel_wang,4160540,5
+3475708,4160540,5
+67009587,4160540,4
+134625303,4160540,2
+98014856,4160540,3
+66620851,4160540,5
+127299151,4160540,3
+FantasyDuan,4160540,4
+35430870,4160540,4
+91025544,4160540,3
+3657934,4160540,4
+2417785,4160540,3
+52103092,4160540,5
+4587143,4160540,3
+70950231,4160540,3
+lindanda,4160540,3
+43602056,4160540,5
+79330359,4160540,1
+nuvo615,4160540,3
+KathyChin,4160540,-1
+80206205,4160540,3
+137671530,4160540,5
+53403999,4160540,3
+bucks,4160540,2
+79053164,4160540,4
+49448182,4160540,3
+136818696,4160540,4
+40166841,4160540,4
+ladycocoococ,4160540,4
+31606811,4160540,4
+58207796,4160540,4
+61510588,4160540,5
+2170473,4160540,4
+steven_lee,4160540,4
+83989831,4160540,2
+53483609,4160540,4
+neverlookback,4160540,3
+130353620,4160540,5
+kiki0616,4160540,4
+84760249,4160540,4
+4637837,4160540,4
+sebastianv,4160540,2
+yujie270,4160540,3
+52398058,4160540,4
+91473851,4160540,4
+LucienLorca,4160540,3
+JarviStark,4160540,4
+Girlwraith,4160540,4
+65260404,4160540,4
+48834090,4160540,3
+136875339,4160540,4
+ishikari,4160540,3
+42912534,4160540,3
+54371596,4160540,4
+2633400,4160540,3
+beckhacong,4160540,4
+119301457,4160540,4
+weili27,4160540,4
+84710876,4160540,4
+84710876,4160540,4
+98956225,4160540,2
+62705311,4160540,3
+53897145,4160540,3
+hugjm,4160540,-1
+51836053,4160540,4
+133864365,4160540,2
+79532758,4160540,4
+55494665,4160540,3
+136517754,4160540,5
+65898593,4160540,4
+87867332,4160540,3
+Dlio_o,4160540,4
+51658550,4160540,3
+3375154,4160540,3
+50930824,4160540,3
+68430723,4160540,3
+123736721,4160540,4
+51386269,4160540,5
+62842608,4160540,3
+58004391,4160540,3
+65273951,4160540,4
+49711912,4160540,3
+131909298,4160540,3
+132463662,4160540,4
+59173867,4160540,3
+71117694,4160540,3
+49803548,4160540,5
+55020304,4160540,3
+maydaycomet,4160540,4
+108481476,4160540,4
+48560904,4160540,4
+51536951,4160540,4
+6842341,4160540,3
+64713560,4160540,3
+lost-kaine,4160540,4
+137059867,4160540,3
+71093640,4160540,4
+67682492,4160540,4
+maoxiaofeng,4160540,4
+38226162,4160540,4
+41236968,4160540,3
+86638464,4160540,4
+95460891,4160540,2
+62121031,4160540,5
+2427747,4160540,4
+103486960,4160540,4
+3318502,4160540,3
+rika19860217,4160540,3
+fallinrnb,4160540,3
+136727796,4160540,4
+1122926,4160540,4
+shaoraul,4160540,4
+41687639,4160540,4
+3646602,4160540,4
+Elsa.pan,4160540,4
+43982125,4160540,4
+3043901,4160540,4
+88658178,4160540,4
+79139734,4160540,4
+79139734,4160540,4
+81542616,4160540,3
+46068341,4160540,3
+127313933,4160540,4
+wuyaji,4160540,5
+36352996,4160540,3
+46724815,4160540,3
+1366592,4160540,3
+56981196,4160540,4
+3170428,4160540,2
+29873877,4160540,4
+49539458,4160540,4
+97415625,4160540,3
+107682156,4160540,3
+seth-king,4160540,4
+41963538,4160540,4
+xxxeleven,4160540,3
+49232578,4160540,4
+imhechang,4160540,5
+136091730,4160540,3
+bunny_Shen,4160540,4
+59110325,4160540,3
+137290239,4160540,2
+45975385,4160540,4
+80915286,4160540,2
+ADmoviemtime,4160540,3
+50158938,4160540,4
+yardbirds,4160540,4
+46070924,4160540,3
+wheatdisorde,4160540,5
+135970045,4160540,3
+terryhangover,4160540,3
+68098280,4160540,4
+akayy,4160540,4
+137206904,4160540,3
+136160725,4160540,4
+3600589,4160540,5
+4804994,4160540,3
+41014466,4160540,3
+sara810,4160540,4
+76295495,4160540,3
+1669108,4160540,4
+4100649,4160540,4
+82817836,4160540,4
+50400133,4160540,2
+45962163,4160540,5
+41494294,4160540,5
+137101396,4160540,4
+demondiscuz,4160540,5
+61825430,4160540,4
+hedgew3w,4160540,4
+Lucifer4219,4160540,4
+Jsadx,4160540,4
+53953725,4160540,2
+85035571,4160540,3
+Evangelion01,4160540,2
+119685812,4160540,2
+47543330,4160540,-1
+122966703,4160540,3
+jadexyy,4160540,3
+19734042,4160540,4
+Yangtze_Ann,4160540,-1
+108563752,4160540,5
+33895362,4160540,3
+xianxiansushou,4160540,2
+40926979,4160540,3
+anteruna,4160540,3
+3350824,4160540,4
+127080428,4160540,4
+3646019,4160540,3
+a_marantine,4160540,4
+jooyi,4160540,4
+Ken,4160540,3
+46430154,4160540,5
+88285360,4160540,2
+59704797,4160540,4
+rollin,4160540,4
+130952703,4160540,3
+27507760,4160540,3
+119626499,4160540,3
+119626499,4160540,3
+Momo-at1615,4160540,4
+62140326,4160540,4
+53935414,4160540,4
+61024723,4160540,4
+47126344,4160540,5
+caofei-dai,4160540,3
+sif7,4160540,4
+choulaoya,4160540,4
+87636985,4160540,4
+guppyfish,4160540,4
+67355396,4160540,4
+1690690,4160540,4
+75538960,4160540,4
+84854172,4160540,3
+48090771,4160540,4
+53316539,4160540,4
+taralz0527,4160540,3
+136978639,4160540,3
+tatanolove,4160540,3
+59961169,4160540,3
+122871112,4160540,5
+129775647,4160540,3
+vanilla-sky,4160540,4
+KeryChou,4160540,3
+68881946,4160540,5
+gonny,4160540,4
+53723225,4160540,3
+2016454,4160540,5
+48093431,4160540,3
+scorates1984,4160540,-1
+2629692,4160540,3
+jediyu,4160540,5
+nsz,4160540,4
+2563465,4160540,3
+51393119,4160540,4
+lynnesay,4160540,4
+3446950,4160540,4
+miumiu777,4160540,3
+134503288,4160540,4
+69833008,4160540,4
+xiaowumei,4160540,3
+rockgong,4160540,3
+133350003,4160540,5
+136333363,4160540,4
+41923950,4160540,4
+103985675,4160540,3
+cwill,4160540,5
+124712461,4160540,4
+80325464,4160540,4
+1751457,4160540,5
+1574402,4160540,4
+ineedtudou,4160540,4
+43872313,4160540,4
+46916215,4160540,2
+35623829,4160540,5
+62013752,4160540,4
+an__,4160540,1
+3522043,4160540,3
+47724316,4160540,4
+123621816,4160540,2
+53154595,4160540,4
+129585590,4160540,4
+100020528,4160540,3
+lumins,4160540,3
+135144421,4160540,3
+wch2020,4160540,4
+63997678,4160540,4
+corvin,4160540,5
+mrkingdom,4160540,2
+61489786,4160540,4
+41717444,4160540,2
+98044777,4160540,3
+mikermiller,4160540,3
+yrebecca_55,4160540,-1
+30322114,4160540,5
+53570723,4160540,5
+87338273,4160540,4
+136826257,4160540,2
+bear1943,4160540,3
+bear1943,4160540,3
+1122936,4160540,5
+136765005,4160540,3
+78645703,4160540,4
+lingojj,4160540,4
+jade0711,4160540,3
+132827615,4160540,4
+120929768,4160540,3
+136837238,4160540,4
+wenj91,4160540,4
+4516843,4160540,3
+55457108,4160540,4
+Xiaoyue,4160540,1
+128192780,4160540,2
+66633074,4160540,3
+34765454,4160540,3
+1148321,4160540,3
+134527565,4160540,4
+61866321,4160540,3
+56988998,4160540,3
+53672963,4160540,3
+fafnir5251,4160540,5
+134101680,4160540,3
+1186840,4160540,5
+84135690,4160540,3
+4194592,4160540,5
+49847142,4160540,4
+121780577,4160540,4
+90097591,4160540,3
+49995634,4160540,5
+133620973,4160540,5
+49619529,4160540,4
+80460975,4160540,3
+salmonvicky,4160540,-1
+xizhoumei,4160540,5
+45648190,4160540,4
+1617824,4160540,4
+lincolnhong,4160540,4
+44066493,4160540,5
+1324079,4160540,3
+129633404,4160540,3
+92398383,4160540,5
+43622913,4160540,5
+44183342,4160540,4
+39771066,4160540,4
+63426980,4160540,5
+64578424,4160540,5
+58115368,4160540,3
+46220008,4160540,3
+37620368,4160540,3
+53347373,4160540,4
+evaisdead,4160540,5
+3202710,4160540,3
+57260239,4160540,4
+136575395,4160540,2
+51795664,4160540,4
+47346958,4160540,3
+yozir,4160540,4
+88916457,4160540,5
+rainwatcher,4160540,4
+rainwatcher,4160540,4
+87237425,4160540,4
+125971465,4160540,4
+ancova,4160540,4
+60854908,4160540,4
+alexyou,4160540,4
+xx2086,4160540,2
+shineone,4160540,4
+2937504,4160540,4
+46365473,4160540,2
+91684216,4160540,3
+131687078,4160540,4
+33907274,4160540,-1
+abracadebraie,4160540,2
+68404885,4160540,4
+raphael0525,4160540,3
+41307480,4160540,3
+131463434,4160540,3
+1451542,4160540,3
+47299010,4160540,3
+136560460,4160540,5
+vanvin,4160540,4
+69532674,4160540,4
+congyaoyao,4160540,3
+slimseven,4160540,3
+slippercc,4160540,4
+hamletvsRomeo,4160540,2
+33293861,4160540,4
+58246439,4160540,-1
+raptor,4160540,5
+3595699,4160540,4
+127008939,4160540,3
+22140861,4160540,4
+3956478,4160540,4
+87863211,4160540,4
+1319405,4160540,4
+69383984,4160540,5
+48139668,4160540,4
+50235107,4160540,4
+88007027,4160540,2
+127165615,4160540,5
+2658946,4160540,4
+63150042,4160540,3
+87095553,4160540,3
+2849990,4160540,3
+Gdeer,4160540,5
+79237122,4160540,-1
+1505431,4160540,4
+120715056,4160540,1
+lipiaopiao,4160540,4
+JoshuaW,4160540,5
+gisan,4160540,3
+120182003,4160540,3
+51105174,4160540,4
+wuxingta,4160540,3
+68871897,4160540,3
+124697172,4160540,4
+131184477,4160540,3
+58161942,4160540,3
+lyc67,4160540,4
+62338703,4160540,3
+102444403,4160540,3
+135671469,4160540,4
+79648769,4160540,3
+83881122,4160540,4
+41758761,4160540,3
+51679757,4160540,4
+h1057015905,4160540,4
+12644505,4160540,3
+73331483,4160540,4
+marlborosin,4160540,5
+acomplexman,4160540,3
+55607661,4160540,5
+59516835,4160540,5
+OldYuan,4160540,4
+caprice_vvn,4160540,3
+3826970,4160540,-1
+77534408,4160540,3
+Ice.,4160540,4
+54687829,4160540,3
+121920760,4160540,3
+Mounail,4160540,3
+115138237,4160540,-1
+57149006,4160540,5
+wudongmian,4160540,2
+56339363,4160540,5
+136281938,4160540,4
+48226786,4160540,5
+62422201,4160540,4
+13902448,4160540,4
+49437443,4160540,4
+kat.is.kathy,4160540,5
+ostara,4160540,3
+zianzhao,4160540,5
+Yunsta,4160540,3
+hysdqw,4160540,3
+4352057,4160540,3
+76623488,4160540,4
+34771983,4160540,4
+104890249,4160540,2
+102956805,4160540,4
+48269477,4160540,3
+28726499,4160540,4
+2089051,4160540,4
+49114944,4160540,5
+120895151,4160540,4
+57079509,4160540,3
+41785476,4160540,4
+lesly,4160540,3
+64224391,4160540,4
+123997874,4160540,3
+135230769,4160540,4
+shuijiao,4160540,5
+catails,4160540,3
+ziningcanyue,4160540,5
+wangjianfqy,4160540,4
+dodo221,4160540,3
+e3829069,4160540,3
+124825941,4160540,4
+68597225,4160540,4
+78695888,4160540,3
+Yulia,4160540,4
+58583348,4160540,3
+79515371,4160540,2
+48260143,4160540,4
+pengyaos,4160540,4
+120112831,4160540,4
+64446418,4160540,4
+juna0911,4160540,5
+q258523454,4160540,4
+74937470,4160540,4
+40237768,4160540,4
+133179065,4160540,3
+62023518,4160540,4
+36581508,4160540,3
+52893055,4160540,5
+4315821,4160540,3
+48514176,4160540,4
+32737561,4160540,3
+121909765,4160540,3
+59210685,4160540,3
+52068926,4160540,3
+xifengweiyu,4160540,3
+136097338,4160540,2
+1354561,4160540,4
+3978018,4160540,4
+84622836,4160540,5
+mib,4160540,4
+normanjr,4160540,3
+flora_12,4160540,4
+heizhou,4160540,4
+52289478,4160540,4
+97187010,4160540,4
+39001255,4160540,4
+perisher,4160540,3
+TheFoo,4160540,-1
+135928484,4160540,3
+57132516,4160540,5
+66250308,4160540,2
+87559278,4160540,4
+JudahXIII,4160540,4
+49199639,4160540,5
+65086413,4160540,5
+66178804,4160540,4
+51722209,4160540,5
+81839566,4160540,5
+torrors,4160540,2
+62608491,4160540,3
+66836176,4160540,4
+december.L,4160540,3
+Jack_Yan,4160540,3
+25704051,4160540,4
+liaoliaoxu,4160540,3
+2578584,4160540,5
+102207645,4160540,4
+43430222,4160540,3
+40853957,4160540,4
+samove,4160540,4
+42680639,4160540,4
+46981462,4160540,1
+62400100,4160540,4
+82269433,4160540,3
+51990836,4160540,3
+Kikowu,4160540,2
+66552525,4160540,5
+69010983,4160540,5
+siorjot,4160540,4
+34081510,4160540,4
+54955217,4160540,4
+120361026,4160540,-1
+134495648,4160540,3
+79108534,4160540,4
+3629598,4160540,4
+alanyao,4160540,4
+1058726,4160540,5
+134876696,4160540,3
+uwani,4160540,3
+129107764,4160540,4
+54080134,4160540,3
+1077086,4160540,4
+46021968,4160540,4
+129473035,4160540,4
+ssqqssqq12,4160540,3
+115185041,4160540,4
+1751335,4160540,4
+61023908,4160540,5
+119081444,4160540,3
+119428231,4160540,1
+74368485,4160540,3
+52202300,4160540,3
+3119465,4160540,4
+112920430,4160540,2
+15183757,4160540,4
+55287270,4160540,4
+124869246,4160540,3
+piaoyi,4160540,3
+4231449,4160540,3
+1708377,4160540,3
+deadcolour,4160540,3
+70668435,4160540,4
+ilovemyself,4160540,3
+yuyude,4160540,4
+54506320,4160540,3
+tabrias,4160540,4
+jimmyusher,4160540,4
+51651483,4160540,4
+peachgardn,4160540,4
+73152155,4160540,4
+whypro,4160540,4
+autumndream,4160540,3
+44317071,4160540,4
+91480587,4160540,4
+1815039,4160540,3
+40125342,4160540,4
+75993500,4160540,3
+93807265,4160540,4
+119877742,4160540,5
+134434017,4160540,3
+68989826,4160540,-1
+ensi,4160540,3
+joybang,4160540,3
+butterfly2Queen,4160540,4
+bensdiary,4160540,3
+nealwzn,4160540,4
+37390884,4160540,3
+58202321,4160540,4
+54734027,4160540,3
+3142248,4160540,3
+47886279,4160540,4
+GuChristina,4160540,3
+yimaima,4160540,3
+121829507,4160540,3
+xiobai,4160540,4
+qinaideliji,4160540,3
+105433832,4160540,4
+mainemay,4160540,3
+heryard,4160540,5
+55618931,4160540,4
+51600146,4160540,4
+xiaoxinadd,4160540,5
+xiaoxinadd,4160540,5
+40017309,4160540,4
+38191056,4160540,3
+4109036,4160540,5
+trashyouth,4160540,4
+78728738,4160540,5
+54795644,4160540,3
+51353895,4160540,3
+66016685,4160540,2
+43069509,4160540,4
+53408262,4160540,5
+56064396,4160540,3
+GKTThh,4160540,3
+4750660,4160540,2
+1128067,4160540,3
+135698693,4160540,4
+sable_in_red,4160540,4
+135704491,4160540,3
+47052162,4160540,3
+64345449,4160540,3
+taatoo,4160540,4
+90338227,4160540,3
+94715443,4160540,4
+96503660,4160540,5
+117808839,4160540,4
+ChocoRum,4160540,4
+87682536,4160540,4
+AJ.neverland,4160540,4
+126435484,4160540,3
+1444111,4160540,4
+huminyan910801,4160540,5
+44134802,4160540,4
+4111647,4160540,-1
+53377652,4160540,4
+88730050,4160540,4
+100279661,4160540,4
+103492790,4160540,3
+nevain,4160540,1
+1657207,4160540,4
+orangela,4160540,-1
+for_love,4160540,3
+41894139,4160540,5
+132065702,4160540,4
+yeyujh,4160540,4
+45663975,4160540,4
+linnea0313,4160540,4
+75842929,4160540,4
+72757269,4160540,5
+lish0001,4160540,4
+sunyugo,4160540,3
+dongboqi,4160540,4
+48066537,4160540,4
+57163926,4160540,5
+ufofay,4160540,4
+40257008,4160540,3
+120604084,4160540,3
+28074817,4160540,5
+32847832,4160540,4
+53068716,4160540,4
+56906475,4160540,3
+naomilee,4160540,3
+sorry531,4160540,-1
+60770013,4160540,5
+104696310,4160540,2
+msjoyce,4160540,4
+allwordswrong,4160540,3
+Son47,4160540,3
+yuchishangjiu,4160540,3
+Robin0227,4160540,4
+tsai.,4160540,5
+121398687,4160540,2
+evastone,4160540,4
+closer_14,4160540,4
+3609870,4160540,2
+45388031,4160540,4
+83942238,4160540,3
+65207565,4160540,5
+39098592,4160540,4
+szhiji,4160540,4
+82412505,4160540,5
+132438473,4160540,3
+127809639,4160540,4
+85447526,4160540,4
+62658444,4160540,4
+deepseashell,4160540,4
+zhuqt,4160540,4
+hazel-y,4160540,4
+1728859,4160540,2
+paquitahh,4160540,3
+guolichee,4160540,-1
+3887933,4160540,3
+4842930,4160540,4
+4905173,4160540,4
+105530942,4160540,4
+waynehume,4160540,4
+60717435,4160540,4
+moonlightshit,4160540,3
+122745799,4160540,4
+61197524,4160540,3
+x1Ao_y,4160540,3
+solarwater,4160540,4
+51733805,4160540,3
+56035103,4160540,4
+63606511,4160540,4
+kenzo1983,4160540,4
+2004970,4160540,4
+nbyidao,4160540,3
+51455219,4160540,4
+46859187,4160540,5
+81923941,4160540,3
+37521103,4160540,3
+bleed666,4160540,2
+25110019,4160540,4
+131795789,4160540,4
+86193760,4160540,4
+17979531,4160540,4
+48180333,4160540,3
+46931652,4160540,-1
+70001053,4160540,4
+Slyffin,4160540,3
+22595281,4160540,4
+51468288,4160540,4
+just_nomadic,4160540,4
+evilpeach,4160540,4
+jayscorpio,4160540,4
+54742628,4160540,4
+4349474,4160540,3
+39698078,4160540,3
+GERNAZI,4160540,2
+50738842,4160540,1
+timemachine5,4160540,3
+1708899,4160540,3
+49576668,4160540,3
+Devilhunter,4160540,3
+zhuxinyi,4160540,4
+135396561,4160540,3
+fulmina,4160540,3
+philette,4160540,5
+tooer,4160540,5
+Liew_qing,4160540,5
+amairtil,4160540,3
+67220317,4160540,3
+suis,4160540,3
+122360797,4160540,4
+121236294,4160540,2
+56975242,4160540,4
+58412725,4160540,4
+134489537,4160540,4
+3519432,4160540,4
+63699116,4160540,4
+xwjaney,4160540,3
+38589654,4160540,4
+33981553,4160540,3
+94988945,4160540,3
+69762404,4160540,5
+qiushimao,4160540,4
+54682027,4160540,4
+73371995,4160540,5
+82227481,4160540,4
+50888397,4160540,4
+themissingone,4160540,3
+110447556,4160540,4
+aquariusyoyo,4160540,4
+Ewi,4160540,5
+60437819,4160540,3
+helenforce,4160540,4
+52701456,4160540,4
+129451784,4160540,4
+dbclbcl,4160540,3
+58611624,4160540,4
+6539111,4160540,4
+77048663,4160540,5
+aimiludemao,4160540,4
+119296699,4160540,3
+67728245,4160540,5
+3442593,4160540,4
+57927830,4160540,4
+3756476,4160540,4
+66770908,4160540,4
+52345284,4160540,3
+126836075,4160540,4
+blazel,4160540,4
+53265029,4160540,5
+80175824,4160540,4
+Jeffstyle,4160540,3
+50394173,4160540,3
+51697302,4160540,4
+48763298,4160540,4
+53575080,4160540,4
+131068311,4160540,3
+44412254,4160540,4
+103108509,4160540,4
+errena,4160540,3
+bluep,4160540,3
+72509443,4160540,4
+gxlengxue,4160540,4
+47537834,4160540,3
+10227322,4160540,4
+49376492,4160540,3
+kirinkeren,4160540,2
+kirinkeren,4160540,2
+2723228,4160540,3
+29710107,4160540,5
+3818190,4160540,4
+56823011,4160540,4
+32586647,4160540,4
+sunshinean2000,4160540,3
+calvingaga,4160540,4
+dante8977,4160540,4
+60410320,4160540,5
+61051965,4160540,4
+xuzhezhen,4160540,4
+3880595,4160540,2
+134334897,4160540,4
+jekyll,4160540,4
+rext,4160540,3
+45307903,4160540,4
+eugene117,4160540,4
+lolitazly,4160540,3
+58021100,4160540,2
+98591417,4160540,3
+130030005,4160540,3
+81985285,4160540,5
+90751149,4160540,4
+kusoking,4160540,4
+56111292,4160540,4
+1974674,4160540,5
+51606142,4160540,3
+watchboy,4160540,3
+77156561,4160540,4
+noply,4160540,3
+44286528,4160540,4
+gravity-sjc,4160540,4
+vivianya,4160540,3
+16084893,4160540,4
+90598022,4160540,3
+29685065,4160540,5
+SHANGYIMOMO,4160540,3
+2966484,4160540,4
+f888,4160540,5
+44837247,4160540,4
+7934750,4160540,3
+kokia233,4160540,3
+93664984,4160540,4
+74672452,4160540,4
+1074069,4160540,5
+BlackPure,4160540,4
+56920148,4160540,4
+66495130,4160540,4
+38151651,4160540,3
+xiaomei0606511,4160540,4
+21990858,4160540,5
+1165091,4160540,3
+lifehere,4160540,4
+zhangying0913,4160540,-1
+39857951,4160540,4
+skysnow5201314,4160540,4
+on1ooker,4160540,4
+maxiaowu,4160540,1
+130162828,4160540,4
+consigli,4160540,3
+cdhd,4160540,4
+63869528,4160540,3
+67854963,4160540,2
+h7766,4160540,-1
+58158842,4160540,3
+133332673,4160540,1
+jewelshao,4160540,4
+90205716,4160540,2
+68578162,4160540,4
+vnoonv,4160540,-1
+72765235,4160540,3
+56559303,4160540,5
+84749284,4160540,3
+xlxiaolei,4160540,3
+gaodazhi,4160540,4
+61547123,4160540,4
+119262490,4160540,4
+Googlor,4160540,3
+kordelia,4160540,-1
+134630183,4160540,5
+12244253,4160540,2
+59386777,4160540,4
+133651758,4160540,1
+95529225,4160540,3
+justinwu0129,4160540,4
+93484113,4160540,4
+134040475,4160540,3
+45076514,4160540,3
+everfreeneciel,4160540,3
+59795953,4160540,3
+122097294,4160540,3
+66141079,4160540,3
+ruxiaoguo,4160540,3
+72867351,4160540,3
+74170590,4160540,3
+74418129,4160540,4
+97491371,4160540,5
+hokuto,4160540,3
+66744438,4160540,-1
+Ston3s,4160540,-1
+76049655,4160540,4
+52327604,4160540,4
+67840640,4160540,4
+53897092,4160540,3
+dongxuanlan,4160540,4
+keinshen,4160540,5
+nangdaocc,4160540,4
+52524178,4160540,4
+8073151,4160540,4
+4646953,4160540,3
+123690548,4160540,4
+103236141,4160540,2
+48137780,4160540,5
+paco,4160540,3
+ilove_CY,4160540,3
+1965573,4160540,3
+hqi7,4160540,4
+ctiaotiao,4160540,4
+weizen,4160540,4
+64335483,4160540,4
+17471764,4160540,-1
+JoyceAn,4160540,3
+hedmgh,4160540,3
+67205440,4160540,3
+59199050,4160540,4
+zhenzhen,4160540,3
+cca2222223,4160540,5
+50201051,4160540,4
+deina,4160540,4
+weblinder,4160540,4
+60348521,4160540,3
+1764284,4160540,4
+46096823,4160540,2
+colleen_1211,4160540,3
+Green-fly,4160540,5
+mariewyssa,4160540,4
+121142586,4160540,3
+51734671,4160540,4
+angelranran,4160540,2
+cranehwqzqh,4160540,5
+hpcsoar,4160540,5
+2544854,4160540,1
+xiaojuner12,4160540,3
+128412701,4160540,3
+74575002,4160540,4
+shine714,4160540,4
+60593481,4160540,3
+58744941,4160540,3
+87010317,4160540,4
+57088195,4160540,4
+103214078,4160540,3
+4067622,4160540,5
+65913469,4160540,4
+wheatberry,4160540,5
+15439490,4160540,4
+131684327,4160540,4
+80176061,4160540,4
+cclaser,4160540,3
+87860382,4160540,4
+127688878,4160540,1
+91656862,4160540,4
+123346219,4160540,-1
+46248376,4160540,3
+61021408,4160540,4
+neverland_qq,4160540,4
+icykiko,4160540,3
+2415153,4160540,3
+7952688,4160540,5
+tidey,4160540,3
+89876565,4160540,3
+4471547,4160540,3
+82225198,4160540,4
+64645993,4160540,5
+44160675,4160540,5
+43256604,4160540,3
+70988971,4160540,2
+76298418,4160540,4
+48091031,4160540,3
+violastabene,4160540,4
+4481826,4160540,4
+3031709,4160540,4
+Cgangs,4160540,-1
+MK,4160540,4
+1694268,4160540,4
+47071046,4160540,-1
+baojq0482,4160540,4
+56741602,4160540,4
+66311081,4160540,5
+47396894,4160540,3
+58731052,4160540,2
+natajiang,4160540,3
+Cicinnurus,4160540,4
+morgankuku,4160540,3
+YuleWu,4160540,3
+66043535,4160540,5
+N44,4160540,4
+sradium,4160540,4
+1814709,4160540,5
+cmyssssssss,4160540,3
+47602699,4160540,4
+67658660,4160540,3
+55695831,4160540,4
+andylau40,4160540,4
+mozanbei,4160540,5
+78216114,4160540,3
+tenderhearted,4160540,4
+zxmushroom,4160540,-1
+old-playboy,4160540,4
+73915629,4160540,2
+ioaxis,4160540,5
+43864936,4160540,4
+65759876,4160540,4
+49063054,4160540,4
+120566516,4160540,3
+65084443,4160540,4
+46741446,4160540,3
+dayofpass,4160540,3
+graygem,4160540,4
+lazylauren,4160540,4
+119829181,4160540,4
+130860796,4160540,3
+1526094,4160540,4
+84238663,4160540,4
+67192113,4160540,4
+3051483,4160540,4
+31630076,4160540,5
+78569938,4160540,2
+26878396,4160540,5
+62411560,4160540,3
+48167450,4160540,3
+Cyder,4160540,4
+6681296,4160540,3
+126877277,4160540,3
+63934272,4160540,5
+105280800,4160540,3
+81566298,4160540,4
+58015342,4160540,3
+1371874,4160540,4
+76169652,4160540,4
+46428362,4160540,4
+yikoyumisa,4160540,-1
+49210805,4160540,4
+1111980,4160540,3
+45323632,4160540,4
+78277982,4160540,4
+Love.Story,4160540,4
+47939693,4160540,5
+54977613,4160540,3
+evachfu,4160540,3
+cfqjw,4160540,3
+26322881,4160540,3
+loveandfreedom,4160540,4
+57093116,4160540,3
+34226675,4160540,3
+85316838,4160540,3
+2283018,4160540,4
+Ann-e,4160540,3
+A131450,4160540,4
+30874232,4160540,3
+3960547,4160540,-1
+64064245,4160540,3
+55965923,4160540,4
+JSAMINE,4160540,4
+37227307,4160540,3
+dreamk,4160540,2
+start20130208,4160540,5
+yangqianamy,4160540,-1
+2919381,4160540,4
+64552831,4160540,4
+119374507,4160540,3
+48672626,4160540,4
+45816367,4160540,4
+70413922,4160540,3
+oyxp,4160540,4
+58172616,4160540,3
+Jobszhuisui9,4160540,4
+5485569,4160540,5
+57617103,4160540,4
+134026402,4160540,3
+lvxg521,4160540,5
+78603493,4160540,3
+63202867,4160540,3
+61898774,4160540,4
+bleachxiaobai,4160540,5
+WatanabeSumire,4160540,2
+54306037,4160540,4
+buubu,4160540,5
+62296200,4160540,3
+70115262,4160540,4
+xiaopang2671,4160540,3
+lecsi,4160540,-1
+6303192,4160540,4
+saky,4160540,3
+54614709,4160540,4
+91062068,4160540,4
+2322719,4160540,4
+eazi2,4160540,4
+iiilu,4160540,3
+56054406,4160540,4
+129802429,4160540,4
+44639364,4160540,3
+paradoxx,4160540,4
+49282329,4160540,4
+annerabbit1127,4160540,4
+61904918,4160540,4
+60287061,4160540,4
+122556292,4160540,3
+3331039,4160540,3
+urasucker,4160540,4
+58889054,4160540,3
+55507630,4160540,3
+97181253,4160540,3
+vermouthsama,4160540,4
+63997974,4160540,3
+W3IQ7,4160540,3
+xxberny,4160540,4
+1083198,4160540,3
+55881700,4160540,4
+83143884,4160540,4
+Lin_Ling,4160540,3
+Plumed__Serpent,4160540,4
+127766149,4160540,3
+yangshijie1107,4160540,4
+junliny,4160540,4
+gloomsky,4160540,2
+79425986,4160540,4
+49691795,4160540,-1
+kidsboom,4160540,3
+87212576,4160540,5
+royalheart,4160540,3
+14585550,4160540,3
+60571579,4160540,4
+55715149,4160540,4
+zhuguangyu,4160540,4
+liive,4160540,5
+41142807,4160540,4
+CaptLimbo,4160540,4
+70397135,4160540,4
+66643938,4160540,4
+82717454,4160540,5
+41853736,4160540,5
+30357929,4160540,4
+ZouzheFoudouzhe,4160540,-1
+pigmiura,4160540,4
+98767132,4160540,4
+82766218,4160540,4
+Shadowman,4160540,5
+126599373,4160540,3
+49318064,4160540,4
+wendayuan,4160540,5
+79314239,4160540,3
+dinosaw,4160540,5
+73836108,4160540,4
+walinee,4160540,4
+zhujiajun86,4160540,4
+61579146,4160540,3
+120903556,4160540,2
+lilith1150511,4160540,4
+zhuomiaomiao,4160540,3
+manyandandan,4160540,4
+56919953,4160540,4
+2713751,4160540,3
+116283306,4160540,4
+cappuccino-jl,4160540,3
+21338461,4160540,4
+64996012,4160540,3
+58059498,4160540,4
+67763944,4160540,5
+bear-fullhouse,4160540,4
+67969318,4160540,5
+Dydia,4160540,3
+shimengyan0326,4160540,4
+91471421,4160540,3
+34789541,4160540,3
+81644640,4160540,5
+119883443,4160540,5
+3691770,4160540,4
+75753400,4160540,3
+133628416,4160540,4
+elijahh,4160540,2
+yabatoo,4160540,4
+73173572,4160540,-1
+120085809,4160540,4
+hayden001,4160540,3
+108693709,4160540,2
+90178539,4160540,5
+stephaniezl91,4160540,3
+133536172,4160540,3
+67111986,4160540,3
+122336700,4160540,3
+124714856,4160540,5
+29113494,4160540,3
+K0BE24,4160540,4
+133440857,4160540,3
+ASS-KICKer,4160540,3
+27008930,4160540,4
+76566444,4160540,3
+4426659,4160540,4
+120659252,4160540,3
+120659252,4160540,3
+103533703,4160540,3
+Jiang_jss,4160540,4
+41566646,4160540,3
+62167868,4160540,4
+50403801,4160540,5
+55556011,4160540,3
+51844432,4160540,3
+41090322,4160540,4
+3879838,4160540,4
+1302983,4160540,5
+77525535,4160540,4
+2232768,4160540,3
+BethBubbly,4160540,4
+ssmustbelavas,4160540,4
+Seuls_,4160540,2
+fivedegree,4160540,4
+84299996,4160540,3
+LaneSatan,4160540,4
+luziyujiang,4160540,4
+19193769,4160540,4
+48666035,4160540,4
+fandarin,4160540,3
+75851842,4160540,4
+53146748,4160540,4
+lucifer7th,4160540,1
+82603813,4160540,4
+132247158,4160540,5
+Aimovie,4160540,2
+1413100,4160540,4
+wtsy,4160540,-1
+60038262,4160540,3
+37823126,4160540,4
+59502573,4160540,3
+konnomakoto,4160540,5
+calamus22,4160540,3
+32094199,4160540,4
+xiaopang1106,4160540,5
+chloeti,4160540,4
+126769592,4160540,4
+cccj.box,4160540,4
+37220457,4160540,4
+Plutoyw,4160540,4
+xiadouya,4160540,3
+vitaminsunshine,4160540,4
+72067182,4160540,2
+2803619,4160540,4
+green_rock,4160540,3
+49838718,4160540,4
+80926875,4160540,4
+45459664,4160540,4
+65744500,4160540,5
+69037881,4160540,3
+ytstyan,4160540,4
+truenorthbistro,4160540,3
+tiffany33,4160540,4
+90445661,4160540,5
+62492544,4160540,3
+34909666,4160540,4
+4500589,4160540,3
+supersun1005,4160540,4
+3433308,4160540,4
+1948576,4160540,-1
+Alivia0622,4160540,4
+loneblog,4160540,3
+47243834,4160540,4
+61752391,4160540,3
+57907537,4160540,5
+60760507,4160540,4
+npzhd,4160540,3
+Ahbing,4160540,-1
+4166635,4160540,2
+34403067,4160540,4
+112453384,4160540,5
+132016475,4160540,3
+107586571,4160540,1
+tilovefa,4160540,3
+56203117,4160540,4
+63401608,4160540,2
+jolyne,4160540,3
+jolyne,4160540,3
+hereisxiao,4160540,4
+CSGrandeur,4160540,4
+120900030,4160540,5
+nnyxian,4160540,4
+51358310,4160540,4
+uf0,4160540,4
+olmo,4160540,4
+seayo,4160540,4
+116089509,4160540,3
+wklappt,4160540,4
+49190112,4160540,4
+50805673,4160540,5
+3979432,4160540,3
+58907281,4160540,5
+kex,4160540,3
+48479937,4160540,4
+miyavikame,4160540,5
+61419341,4160540,5
+mislittlesummer,4160540,4
+flyoverthecity,4160540,4
+2045360,4160540,4
+3749468,4160540,4
+4481559,4160540,3
+134055784,4160540,3
+64435375,4160540,3
+kitashin,4160540,5
+57301508,4160540,4
+baihuxian,4160540,3
+60072533,4160540,3
+4270273,4160540,2
+fameloo,4160540,2
+72324170,4160540,4
+45966706,4160540,4
+62662414,4160540,3
+65398395,4160540,5
+67517398,4160540,4
+2333505,4160540,4
+simppydhl,4160540,4
+59572934,4160540,3
+44741261,4160540,4
+2412177,4160540,4
+alal_clcl,4160540,4
+barkerhjj,4160540,5
+freakfreakfreak,4160540,5
+cloudlandlord,4160540,3
+Micsco1992,4160540,3
+73189108,4160540,3
+2254810,4160540,3
+61322162,4160540,4
+73714750,4160540,3
+chandearkathy,4160540,5
+128250063,4160540,-1
+77122322,4160540,4
+1531565,4160540,3
+59132072,4160540,4
+43867607,4160540,3
+64750111,4160540,3
+Jodiezhang,4160540,3
+56001919,4160540,3
+shuai19930426,4160540,5
+60867302,4160540,3
+1077635,4160540,3
+Flipped_Judy,4160540,4
+53620031,4160540,4
+74817373,4160540,4
+43653387,4160540,3
+67957454,4160540,5
+66861175,4160540,2
+JeLLyss,4160540,-1
+guishou,4160540,5
+46482350,4160540,4
+48864711,4160540,5
+77576230,4160540,4
+1565154,4160540,4
+133788229,4160540,4
+53743879,4160540,5
+eedc,4160540,4
+92830730,4160540,4
+82404312,4160540,4
+56089571,4160540,4
+54329397,4160540,3
+vince717,4160540,4
+31895771,4160540,4
+97301110,4160540,5
+62915355,4160540,3
+131191820,4160540,4
+55974456,4160540,3
+21130742,4160540,5
+1447068,4160540,3
+39007288,4160540,4
+reneryu,4160540,3
+viola1990mm,4160540,4
+127318413,4160540,5
+3733528,4160540,3
+57642181,4160540,4
+44292349,4160540,4
+jackchen,4160540,4
+jijillwang,4160540,4
+may-may,4160540,4
+cory1990,4160540,3
+57321135,4160540,4
+47232282,4160540,3
+90581117,4160540,4
+49754687,4160540,4
+49995331,4160540,3
+louisalau007,4160540,4
+20194870,4160540,3
+45944885,4160540,2
+lancer04,4160540,4
+1204038,4160540,4
+dujiachen,4160540,4
+dingjiandoris,4160540,4
+114500626,4160540,4
+115665667,4160540,4
+129453126,4160540,3
+loreleishanny,4160540,3
+120274901,4160540,3
+brbaarlab,4160540,4
+2301005,4160540,3
+gpsupergp,4160540,4
+dzone,4160540,1
+82339358,4160540,-1
+60385477,4160540,3
+119078211,4160540,3
+niuniu2221,4160540,4
+earthchild,4160540,4
+3555189,4160540,3
+1328560,4160540,3
+heyebei,4160540,3
+2315237,4160540,4
+4226775,4160540,-1
+aguis,4160540,4
+49338392,4160540,-1
+Windbroken,4160540,4
+75255232,4160540,4
+71495543,4160540,4
+dingstyle,4160540,4
+4592782,4160540,4
+71133496,4160540,4
+loyanymve,4160540,4
+46679669,4160540,-1
+3805082,4160540,3
+yihaifei,4160540,3
+53823594,4160540,4
+vickydesertswu,4160540,3
+2238631,4160540,4
+4568924,4160540,4
+shallowlands,4160540,4
+skyFei,4160540,5
+34158839,4160540,5
+2592575,4160540,5
+48509446,4160540,4
+41234171,4160540,4
+129298730,4160540,4
+124878359,4160540,3
+1152785,4160540,4
+faithandchange,4160540,5
+114505579,4160540,5
+101067288,4160540,4
+46754344,4160540,3
+wywapple,4160540,4
+StillAliveLoL,4160540,4
+lch_amo,4160540,5
+49542471,4160540,3
+kagural,4160540,4
+49405131,4160540,3
+49645185,4160540,4
+31736711,4160540,4
+130446592,4160540,4
+hewitt121,4160540,4
+lemonshammy,4160540,3
+45917791,4160540,3
+bigfishk,4160540,3
+132983057,4160540,4
+119325889,4160540,4
+50644881,4160540,4
+loveuleslie,4160540,4
+50875593,4160540,4
+106207289,4160540,5
+106207289,4160540,5
+3453558,4160540,4
+runhawker,4160540,5
+yangzhiqiao,4160540,4
+42172533,4160540,5
+44756085,4160540,5
+94353228,4160540,4
+haji,4160540,4
+1182532,4160540,4
+73924798,4160540,4
+33439278,4160540,4
+sssuryy,4160540,3
+Yokizyz,4160540,3
+65176170,4160540,4
+whitraven,4160540,4
+zz5555,4160540,4
+44596229,4160540,4
+60981159,4160540,4
+4335000,4160540,4
+42568988,4160540,1
+48226644,4160540,3
+2213454,4160540,3
+91645081,4160540,-1
+Song1183,4160540,4
+WhitePupil,4160540,5
+62938015,4160540,4
+sharebearr,4160540,4
+2571322,4160540,3
+52344572,4160540,3
+33619574,4160540,3
+4377011,4160540,4
+Anniby-Jade,4160540,4
+121057597,4160540,5
+wendell003,4160540,4
+Kikis945,4160540,3
+72232333,4160540,3
+SunandShadow,4160540,4
+32645204,4160540,-1
+4131568,4160540,4
+vincehwangcc,4160540,4
+48786722,4160540,4
+68592556,4160540,4
+65502815,4160540,4
+longliving,4160540,3
+65098968,4160540,4
+4833625,4160540,4
+35938658,4160540,3
+33768233,4160540,4
+90237158,4160540,4
+133684056,4160540,5
+41573731,4160540,4
+75503461,4160540,3
+51505905,4160540,3
+1614276,4160540,3
+64954480,4160540,1
+94988988,4160540,4
+67644954,4160540,4
+90579098,4160540,4
+joyeteyoj,4160540,4
+yooogurt,4160540,4
+yooogurt,4160540,4
+icekramjoy,4160540,3
+heapsnow,4160540,4
+40593676,4160540,5
+57080555,4160540,3
+129764944,4160540,4
+liz37,4160540,-1
+3680608,4160540,3
+44400280,4160540,4
+121679794,4160540,4
+76187986,4160540,5
+4194558,4160540,4
+Wasted,4160540,3
+71826311,4160540,4
+104823216,4160540,4
+taizi717,4160540,3
+64029045,4160540,4
+suixi,4160540,4
+43748947,4160540,5
+71176894,4160540,5
+losiuhong,4160540,3
+metalody,4160540,4
+52108376,4160540,4
+author,4160540,4
+79240544,4160540,4
+68584442,4160540,3
+58495364,4160540,3
+hxl6,4160540,4
+43542523,4160540,3
+50411793,4160540,4
+47894136,4160540,4
+122832846,4160540,4
+17778744,4160540,3
+1499246,4160540,4
+54233501,4160540,5
+61584024,4160540,3
+millettellim,4160540,4
+54770085,4160540,3
+91870642,4160540,5
+sanmir,4160540,-1
+133192758,4160540,-1
+62178164,4160540,3
+132186892,4160540,2
+113444876,4160540,5
+133515838,4160540,4
+103415530,4160540,3
+63863771,4160540,3
+64796008,4160540,4
+alacrity516,4160540,3
+20967601,4160540,3
+25673026,4160540,4
+nzy,4160540,5
+58155946,4160540,3
+chenjiaqi1008,4160540,1
+34632511,4160540,2
+CharlesRosen,4160540,5
+nicole_ni,4160540,4
+69430764,4160540,4
+bnblut,4160540,5
+121206161,4160540,4
+38611027,4160540,4
+93143338,4160540,4
+WOBUSHINI,4160540,4
+28785708,4160540,3
+84004672,4160540,4
+51297351,4160540,4
+34005309,4160540,1
+2639021,4160540,4
+eincy,4160540,4
+81195770,4160540,4
+46361986,4160540,3
+3908174,4160540,5
+62140748,4160540,5
+85830142,4160540,4
+17654843,4160540,3
+63777033,4160540,5
+49921497,4160540,4
+2183363,4160540,4
+51997514,4160540,3
+46935861,4160540,3
+67850378,4160540,3
+25378672,4160540,3
+49926534,4160540,5
+2427065,4160540,4
+4659732,4160540,4
+ilovehongkou,4160540,3
+2853059,4160540,3
+53024139,4160540,3
+palefox,4160540,5
+43840561,4160540,3
+1317656,4160540,5
+84634589,4160540,4
+69824529,4160540,4
+ariel5336,4160540,4
+123475054,4160540,5
+70214878,4160540,4
+curlyfox,4160540,4
+51445023,4160540,4
+3113509,4160540,4
+land4dream,4160540,3
+ztt90119,4160540,4
+55458833,4160540,4
+1544023,4160540,4
+sucyin,4160540,4
+cuiyingjun,4160540,4
+nina1205,4160540,4
+68933107,4160540,3
+boboidream,4160540,5
+fishend,4160540,4
+dolphinfu,4160540,3
+42661364,4160540,4
+120092472,4160540,4
+61049599,4160540,4
+41556922,4160540,4
+68014906,4160540,3
+60624789,4160540,4
+35967033,4160540,4
+38718376,4160540,4
+lindsay0907,4160540,5
+turandot0815,4160540,1
+49065754,4160540,3
+qfkx,4160540,4
+56858025,4160540,3
+samleq,4160540,5
+132830109,4160540,4
+74801562,4160540,4
+keven.496,4160540,3
+59705593,4160540,4
+yoory,4160540,-1
+Amo621,4160540,5
+NicoleCrowe,4160540,4
+fish6058,4160540,3
+Agnes62,4160540,4
+liangzishuixing,4160540,4
+anicelv,4160540,4
+115351276,4160540,4
+antony007007,4160540,4
+82775979,4160540,3
+1733175,4160540,4
+djinn77,4160540,4
+fkimi,4160540,4
+promise1993,4160540,5
+53836712,4160540,5
+kidpeterpan,4160540,3
+67494946,4160540,-1
+yaweilee,4160540,4
+90616646,4160540,4
+120342469,4160540,5
+qingmuwu,4160540,5
+annbabyyan,4160540,-1
+71086413,4160540,4
+eightsbar,4160540,3
+StephenZhang502,4160540,4
+3238270,4160540,3
+132390630,4160540,4
+68058633,4160540,4
+91805285,4160540,2
+EAY,4160540,1
+132024097,4160540,3
+45484861,4160540,4
+45484861,4160540,4
+65123072,4160540,4
+47923593,4160540,4
+dlcby,4160540,5
+75189651,4160540,4
+gretchen_n,4160540,3
+demipoldi,4160540,5
+nolanjr,4160540,3
+ninerock,4160540,4
+54159008,4160540,5
+little_cupid,4160540,3
+75184606,4160540,3
+6188730,4160540,5
+superlisunny,4160540,5
+77033669,4160540,4
+Kissthelife,4160540,3
+129158063,4160540,4
+125648446,4160540,4
+75825490,4160540,3
+victorhuming,4160540,3
+shisonghua,4160540,1
+hellohuman,4160540,4
+baisemianbuqun,4160540,4
+50744916,4160540,2
+133087571,4160540,4
+41518225,4160540,4
+45505109,4160540,4
+huhu1999,4160540,2
+78301371,4160540,5
+3750983,4160540,3
+91543549,4160540,4
+66104038,4160540,4
+zayaza,4160540,4
+66005272,4160540,4
+68366606,4160540,3
+91238295,4160540,4
+62326341,4160540,5
+50041783,4160540,5
+dlgcy,4160540,5
+2054495,4160540,2
+46148106,4160540,3
+ksmyass,4160540,3
+59865394,4160540,5
+59082297,4160540,4
+87863001,4160540,2
+chuanhua1989,4160540,3
+65885890,4160540,3
+127466089,4160540,3
+orangelu,4160540,4
+runtofreedom,4160540,5
+2338145,4160540,3
+81249317,4160540,3
+74060146,4160540,4
+zhuangbiaowei,4160540,4
+julia_duan,4160540,3
+2508743,4160540,-1
+26830263,4160540,3
+63259048,4160540,3
+henrysum73,4160540,4
+3496829,4160540,4
+55596124,4160540,4
+ChenM,4160540,3
+42775906,4160540,5
+2428233,4160540,4
+3470100,4160540,4
+55572207,4160540,4
+75381843,4160540,4
+26503826,4160540,-1
+133155762,4160540,4
+weizheren,4160540,4
+58547901,4160540,4
+42993511,4160540,4
+ovanisho,4160540,4
+121332127,4160540,5
+agreedoes,4160540,4
+55348613,4160540,4
+Veronicam,4160540,3
+85307679,4160540,4
+115514267,4160540,4
+130295473,4160540,5
+57479988,4160540,5
+62882653,4160540,3
+4624601,4160540,3
+54078326,4160540,4
+120312874,4160540,3
+45831323,4160540,3
+48524640,4160540,5
+64943136,4160540,3
+88038496,4160540,4
+53065744,4160540,4
+57972218,4160540,4
+31854340,4160540,5
+44778883,4160540,5
+126575098,4160540,4
+19136693,4160540,3
+16618379,4160540,3
+75235466,4160540,4
+imnothan,4160540,1
+youaredead,4160540,4
+karain,4160540,4
+101793601,4160540,3
+47873468,4160540,4
+zhuiyii,4160540,3
+81360818,4160540,4
+42248589,4160540,3
+44417635,4160540,2
+69529350,4160540,4
+132181842,4160540,4
+63011235,4160540,3
+58405298,4160540,5
+48028421,4160540,4
+87893460,4160540,3
+changgu4290,4160540,3
+Anw77,4160540,4
+72944170,4160540,4
+45609195,4160540,4
+camellowang,4160540,3
+9857556,4160540,4
+43752137,4160540,3
+everpassenger,4160540,5
+langweibo,4160540,4
+skylightking,4160540,3
+81445026,4160540,2
+58658233,4160540,4
+58950740,4160540,5
+59537499,4160540,4
+boogeyman,4160540,5
+66071713,4160540,5
+andreaqi,4160540,5
+49813166,4160540,3
+72101661,4160540,4
+121926110,4160540,3
+longlystone,4160540,3
+53316043,4160540,4
+PatrickMYK,4160540,3
+69484318,4160540,3
+69102270,4160540,4
+67582454,4160540,5
+justno,4160540,-1
+77626905,4160540,4
+55548424,4160540,4
+leila1204,4160540,4
+93748665,4160540,3
+87488566,4160540,2
+aquariusxy,4160540,5
+sep1221,4160540,3
+46256555,4160540,3
+92011041,4160540,4
+102901525,4160540,4
+58797753,4160540,4
+50180272,4160540,3
+59321746,4160540,5
+zhousophia,4160540,2
+53577462,4160540,3
+94052787,4160540,2
+ChloeJoyce,4160540,3
+3014394,4160540,4
+53721569,4160540,4
+27339155,4160540,5
+abeishishabi,4160540,4
+coconutZii,4160540,4
+47667196,4160540,1
+34145664,4160540,3
+52514383,4160540,4
+Monderian,4160540,3
+hettler,4160540,4
+42922537,4160540,3
+ztx1210,4160540,3
+tobecause,4160540,4
+2978891,4160540,4
+saltcoffee,4160540,4
+evangeline1101,4160540,4
+72087317,4160540,4
+23712945,4160540,4
+xxxxxoxxxxx,4160540,3
+67742715,4160540,3
+73797820,4160540,2
+71429906,4160540,3
+1167276,4160540,3
+templar,4160540,3
+yuwenzhilian,4160540,5
+leader4,4160540,4
+2548986,4160540,3
+vivianclytze,4160540,3
+42989419,4160540,4
+pezhe,4160540,5
+46631161,4160540,4
+4425575,4160540,4
+Jerryxuch,4160540,4
+hxgx,4160540,3
+79667856,4160540,4
+115566032,4160540,3
+abezhang,4160540,3
+2411985,4160540,4
+65763828,4160540,4
+valhalla,4160540,4
+62411138,4160540,4
+4617038,4160540,4
+Stwphanie,4160540,4
+61830049,4160540,4
+4497664,4160540,3
+52540412,4160540,3
+50207070,4160540,4
+81373304,4160540,4
+60389557,4160540,4
+63843241,4160540,4
+61047391,4160540,4
+68506147,4160540,4
+1823227,4160540,4
+nvmotou,4160540,3
+102751216,4160540,4
+45957427,4160540,4
+56909243,4160540,4
+summer_waiting,4160540,4
+91120236,4160540,-1
+83681188,4160540,4
+133019129,4160540,4
+50892549,4160540,5
+34348516,4160540,4
+floraman,4160540,3
+Simply08,4160540,3
+luly_xy,4160540,4
+2737013,4160540,2
+entelechie,4160540,3
+1607358,4160540,4
+4327168,4160540,5
+67435054,4160540,4
+gcc220,4160540,3
+35349114,4160540,3
+kkbpopsy,4160540,3
+46762307,4160540,4
+65851504,4160540,5
+121555350,4160540,4
+48615515,4160540,5
+43445712,4160540,5
+81144305,4160540,4
+53011645,4160540,5
+54703119,4160540,5
+64069487,4160540,3
+54324041,4160540,4
+3520940,4160540,3
+58283647,4160540,3
+62140644,4160540,5
+1727088,4160540,4
+cheng_Ting,4160540,2
+PriscillaLSH,4160540,4
+44324751,4160540,3
+55886831,4160540,5
+96660784,4160540,3
+50063811,4160540,3
+ulysseus-2,4160540,4
+linfeng365,4160540,4
+41842523,4160540,3
+49141660,4160540,4
+132653889,4160540,4
+47548599,4160540,1
+52123243,4160540,4
+NicoleDR,4160540,5
+67520921,4160540,5
+50111492,4160540,4
+131987227,4160540,4
+Nikon,4160540,3
+91259845,4160540,5
+72485071,4160540,4
+84068879,4160540,3
+2798813,4160540,3
+51938076,4160540,-1
+44927626,4160540,3
+lovers-fahion,4160540,5
+77890563,4160540,4
+130986286,4160540,4
+52395639,4160540,4
+59038571,4160540,4
+1491317,4160540,-1
+81106134,4160540,4
+68588112,4160540,4
+yixiaogao,4160540,5
+116138651,4160540,4
+okay477,4160540,3
+3964079,4160540,4
+56021804,4160540,4
+62886660,4160540,3
+75179409,4160540,4
+52843468,4160540,4
+mymx,4160540,3
+107718660,4160540,4
+52383930,4160540,4
+2854749,4160540,-1
+52230748,4160540,4
+46766109,4160540,3
+81139572,4160540,4
+PushTheStart,4160540,4
+102881898,4160540,4
+77046288,4160540,3
+stella0720,4160540,3
+61375666,4160540,3
+49891735,4160540,4
+foun,4160540,4
+34946618,4160540,5
+touch1986summer,4160540,3
+touch1986summer,4160540,3
+54183087,4160540,3
+MAOXIAOCHENG,4160540,-1
+sproblvem,4160540,1
+daly0520,4160540,3
+akward,4160540,3
+keneyzhao,4160540,3
+49487093,4160540,4
+10009156,4160540,4
+55608107,4160540,4
+2332724,4160540,4
+silentmini,4160540,3
+67523596,4160540,4
+42209180,4160540,3
+3671533,4160540,4
+adejavu,4160540,3
+73444287,4160540,4
+1073807,4160540,4
+musique,4160540,4
+59886586,4160540,4
+55774300,4160540,4
+70634565,4160540,4
+48071996,4160540,3
+changle0605,4160540,3
+1936811,4160540,4
+56788441,4160540,4
+119423240,4160540,4
+3407887,4160540,4
+8250575,4160540,3
+xl8690,4160540,3
+G--er,4160540,3
+33201871,4160540,5
+yestar,4160540,3
+3852548,4160540,-1
+121036796,4160540,5
+mariashuang,4160540,3
+freshyyblue,4160540,4
+diett,4160540,3
+StanleyCheung,4160540,4
+122384654,4160540,4
+1575077,4160540,4
+56493761,4160540,4
+oksklok,4160540,4
+leskui,4160540,3
+Mr.KNight,4160540,3
+120764157,4160540,4
+78851730,4160540,3
+flowermoi,4160540,4
+57947049,4160540,4
+robins1979,4160540,4
+coxat,4160540,5
+stoneqr,4160540,5
+fansherlocked,4160540,5
+49364179,4160540,4
+4271688,4160540,4
+francesfyy,4160540,4
+70481744,4160540,3
+KatoShigeaki,4160540,3
+bluegatecrossin,4160540,3
+15342214,4160540,5
+15342214,4160540,5
+4210996,4160540,3
+54228014,4160540,3
+49989946,4160540,3
+51281553,4160540,3
+2009614,4160540,4
+57874487,4160540,3
+93372123,4160540,4
+73983729,4160540,3
+Repression,4160540,4
+lutina,4160540,4
+vv_gh,4160540,2
+61158174,4160540,4
+28219717,4160540,4
+laceless,4160540,-1
+2009122,4160540,4
+3061962,4160540,4
+37953747,4160540,3
+43375121,4160540,5
+40518476,4160540,4
+65123381,4160540,3
+Crecy,4160540,2
+82623937,4160540,3
+smile_1314,4160540,4
+33491668,4160540,4
+49157213,4160540,3
+66904097,4160540,4
+ZHFan,4160540,3
+2555357,4160540,2
+74641561,4160540,4
+airzx,4160540,4
+121933047,4160540,4
+bramasole0528,4160540,4
+27423900,4160540,5
+cherryhj,4160540,3
+72556877,4160540,3
+MihaelKeehl,4160540,4
+4285342,4160540,4
+Ron1230,4160540,4
+zhaohuli,4160540,4
+78420106,4160540,4
+81662725,4160540,5
+80346808,4160540,4
+funkybaby,4160540,3
+jiejiepeishan,4160540,4
+42623950,4160540,3
+31120990,4160540,3
+63779528,4160540,5
+72781855,4160540,3
+24473673,4160540,4
+62614786,4160540,3
+4269560,4160540,4
+36296551,4160540,4
+wetony,4160540,4
+lizzy56,4160540,4
+shenshenet,4160540,4
+leiii,4160540,3
+43652685,4160540,3
+58591644,4160540,4
+mirror-y,4160540,5
+mongly,4160540,5
+70042532,4160540,4
+61076987,4160540,3
+60824727,4160540,5
+onelifeonelove,4160540,4
+121344871,4160540,4
+livia112,4160540,3
+42522085,4160540,4
+luyt,4160540,5
+69387377,4160540,3
+27632752,4160540,4
+abaqiao,4160540,3
+65168884,4160540,3
+Air02,4160540,4
+4010473,4160540,-1
+56496405,4160540,3
+phoebe9982,4160540,4
+3797778,4160540,4
+43182055,4160540,4
+121685799,4160540,5
+3742281,4160540,3
+39873897,4160540,5
+54976113,4160540,3
+32195292,4160540,4
+59571140,4160540,4
+131823411,4160540,4
+rapheal,4160540,4
+122775909,4160540,4
+60822788,4160540,5
+64741757,4160540,4
+callmemrcoolman,4160540,3
+130020039,4160540,4
+48200475,4160540,4
+patato5liu,4160540,-1
+71979032,4160540,1
+96046921,4160540,3
+61054348,4160540,5
+alcat,4160540,5
+4026025,4160540,4
+81083696,4160540,2
+28884615,4160540,2
+fifihu,4160540,4
+yangyingshan,4160540,4
+3911956,4160540,4
+68005444,4160540,4
+120222665,4160540,4
+82040101,4160540,5
+summerindream,4160540,4
+zhengxianmin,4160540,3
+75826878,4160540,4
+62703299,4160540,5
+Sura890123,4160540,4
+withsurui,4160540,2
+46313447,4160540,3
+inruin,4160540,4
+HYGUY,4160540,3
+24139618,4160540,4
+shunjun,4160540,4
+langziyinyin,4160540,3
+68637205,4160540,4
+93601866,4160540,4
+120091522,4160540,4
+2750696,4160540,-1
+83220030,4160540,4
+linfact,4160540,4
+72440682,4160540,5
+82838369,4160540,4
+116308396,4160540,4
+LOVEyuduoduo,4160540,4
+43897253,4160540,1
+mmcv,4160540,5
+101206978,4160540,4
+planoto,4160540,4
+yanan928,4160540,5
+60155135,4160540,4
+72086305,4160540,3
+whatareyoufor,4160540,3
+wall..,4160540,3
+mbii,4160540,3
+buzzsunny,4160540,3
+Ironduck,4160540,4
+119874761,4160540,5
+zaiyuepaoduosh,4160540,5
+34404618,4160540,3
+50988051,4160540,5
+119238411,4160540,4
+magicnuan,4160540,4
+61162296,4160540,-1
+84020070,4160540,4
+mydar,4160540,-1
+44420768,4160540,3
+14965275,4160540,3
+41041352,4160540,3
+4160222,4160540,4
+75849450,4160540,3
+54800222,4160540,3
+63232381,4160540,4
+92454572,4160540,3
+esme123,4160540,5
+49685366,4160540,3
+56071242,4160540,4
+MrMia,4160540,3
+51445328,4160540,3
+jahwey,4160540,4
+stabrid,4160540,3
+65688183,4160540,1
+2387705,4160540,4
+iouhuan,4160540,5
+panda-ma,4160540,4
+iwantican,4160540,4
+49836781,4160540,-1
+63802651,4160540,-1
+bh1994,4160540,4
+53854187,4160540,4
+55309998,4160540,3
+4373310,4160540,3
+74700188,4160540,4
+duochiduozhan,4160540,3
+1912208,4160540,4
+3944226,4160540,3
+63223538,4160540,4
+83949510,4160540,4
+imyummy,4160540,4
+130030793,4160540,5
+63077837,4160540,4
+HY13616507306,4160540,4
+weneedplay,4160540,4
+9082007,4160540,4
+78377702,4160540,3
+121579661,4160540,4
+Espange,4160540,5
+paper,4160540,3
+everlastingblue,4160540,4
+chjjuly0118,4160540,3
+64238881,4160540,4
+60858827,4160540,3
+saint753,4160540,4
+68443375,4160540,4
+zhangzhai,4160540,5
+abigcat,4160540,5
+49411986,4160540,4
+87853134,4160540,3
+45545379,4160540,2
+Secretloveplace,4160540,4
+43625639,4160540,4
+67457628,4160540,4
+thankyou2014,4160540,4
+stower,4160540,4
+1032604,4160540,2
+graciesy,4160540,4
+WindyEcho,4160540,4
+3550389,4160540,-1
+69072673,4160540,4
+phoenixjing,4160540,4
+1248650,4160540,4
+oink,4160540,4
+michaells,4160540,5
+127292796,4160540,4
+44387904,4160540,3
+121997108,4160540,4
+68004061,4160540,4
+28307995,4160540,3
+nowforever,4160540,5
+ChaoticAeon,4160540,3
+45633111,4160540,-1
+VRoss,4160540,5
+Stupid,4160540,4
+79337395,4160540,4
+lifest,4160540,3
+rainy0124,4160540,4
+88564672,4160540,3
+loooli,4160540,-1
+JefferyZ,4160540,4
+53559369,4160540,4
+127365822,4160540,3
+ibluepurple,4160540,4
+3828576,4160540,4
+cgy,4160540,2
+zhubeilife,4160540,3
+59311627,4160540,5
+38012408,4160540,3
+43493146,4160540,5
+33326569,4160540,4
+1011562,4160540,4
+eatwhatieat,4160540,4
+gene4ever,4160540,4
+3138370,4160540,4
+2570820,4160540,3
+kaixian,4160540,3
+52315577,4160540,4
+fishghoul,4160540,4
+3130809,4160540,3
+biti.vector,4160540,3
+terryoy,4160540,4
+42706088,4160540,-1
+83793299,4160540,-1
+yuxflan,4160540,4
+94949490,4160540,3
+49138497,4160540,3
+88327119,4160540,4
+68728045,4160540,-1
+38318681,4160540,4
+48636603,4160540,3
+59374884,4160540,3
+63927330,4160540,4
+jessielikes,4160540,4
+willinchang,4160540,3
+53387777,4160540,3
+michaelhuan,4160540,4
+darkiller,4160540,4
+1821069,4160540,3
+musicide,4160540,3
+2292966,4160540,3
+131285529,4160540,5
+lanyangyangdecc,4160540,4
+83313626,4160540,4
+79889745,4160540,3
+44164811,4160540,3
+keke_flyr,4160540,-1
+Cancer_x,4160540,3
+33439516,4160540,3
+sharonz,4160540,5
+59404566,4160540,5
+74691605,4160540,5
+57991654,4160540,4
+102983230,4160540,5
+bulijite,4160540,3
+44713959,4160540,4
+78603515,4160540,3
+65531183,4160540,5
+84745831,4160540,3
+sickroom305,4160540,-1
+1401397,4160540,4
+zoujichun,4160540,5
+41423466,4160540,4
+aprilwind_shi,4160540,4
+76936393,4160540,3
+11202805,4160540,4
+21929051,4160540,4
+dujunday,4160540,5
+129532848,4160540,4
+80240325,4160540,3
+Fdiori,4160540,4
+66698052,4160540,4
+66456284,4160540,4
+shadowsmack,4160540,4
+vincent-biubiu,4160540,4
+cutecool,4160540,4
+132130443,4160540,4
+67371305,4160540,3
+62606235,4160540,4
+sweet333333,4160540,4
+53833067,4160540,3
+45580580,4160540,5
+49026093,4160540,4
+ameliefei,4160540,5
+santacruz,4160540,5
+mao87523,4160540,4
+62298442,4160540,4
+67021523,4160540,3
+67021523,4160540,3
+micao-onlyhui,4160540,3
+lsl9119,4160540,4
+91911664,4160540,3
+2664560,4160540,4
+yishuier,4160540,4
+121517314,4160540,4
+38798958,4160540,5
+youwin,4160540,4
+cabaret,4160540,2
+124028516,4160540,4
+4158054,4160540,5
+ximeir,4160540,4
+64873674,4160540,4
+54668729,4160540,4
+59329084,4160540,4
+39913122,4160540,3
+51528570,4160540,3
+mfish_,4160540,5
+closet,4160540,4
+80245940,4160540,4
+2282089,4160540,3
+Sunny851020,4160540,3
+132213872,4160540,4
+53365652,4160540,5
+33328418,4160540,4
+LrioWong,4160540,3
+79506720,4160540,4
+ninecat,4160540,4
+ValsonChen,4160540,5
+3634555,4160540,3
+56825394,4160540,4
+36304179,4160540,4
+58777523,4160540,3
+53989389,4160540,5
+50028019,4160540,5
+cokekaola,4160540,3
+46315141,4160540,3
+lucyintheocean,4160540,4
+kam603958330,4160540,2
+4478909,4160540,3
+58457804,4160540,3
+35991873,4160540,4
+53405110,4160540,3
+foreversleepy,4160540,4
+69273127,4160540,3
+2426655,4160540,3
+alicialin,4160540,4
+52054385,4160540,4
+47776036,4160540,3
+ooo000ooo,4160540,3
+2377434,4160540,4
+21680407,4160540,3
+105344131,4160540,-1
+84479943,4160540,4
+33042240,4160540,4
+whatever92,4160540,5
+47170402,4160540,4
+45957568,4160540,3
+oak1890,4160540,3
+124515893,4160540,3
+57884796,4160540,3
+40110852,4160540,3
+87743484,4160540,3
+2137795,4160540,3
+Miss.Z.,4160540,4
+53633250,4160540,4
+130334670,4160540,3
+xihahaha,4160540,3
+52616115,4160540,5
+54646551,4160540,5
+79420813,4160540,3
+huazi3A87,4160540,5
+63776141,4160540,4
+71038565,4160540,4
+94022078,4160540,4
+superse,4160540,2
+lisa1989_Sun,4160540,4
+59762157,4160540,3
+50131666,4160540,4
+44030355,4160540,3
+3475246,4160540,3
+zying,4160540,3
+121721694,4160540,4
+yuan8507,4160540,3
+gloria1102,4160540,3
+kylingu,4160540,3
+68893935,4160540,4
+63043429,4160540,2
+nocturnelee,4160540,4
+56832705,4160540,4
+65832475,4160540,4
+53933661,4160540,3
+53798089,4160540,5
+tjz230,4160540,3
+85821824,4160540,5
+halloweenist,4160540,4
+li_ye5,4160540,5
+62095303,4160540,3
+JOESATRIANI,4160540,-1
+JOESATRIANI,4160540,-1
+66714330,4160540,3
+dannytheking,4160540,4
+57001973,4160540,3
+61028583,4160540,4
+57612204,4160540,4
+52611637,4160540,5
+16910877,4160540,4
+2493346,4160540,-1
+Stephanie_zhong,4160540,4
+49278748,4160540,4
+47142937,4160540,4
+JoyceX,4160540,4
+2139321,4160540,4
+68331532,4160540,4
+120884692,4160540,2
+57459962,4160540,4
+69463567,4160540,3
+63236309,4160540,3
+30144740,4160540,4
+yukino,4160540,4
+39408600,4160540,4
+xujibo1988,4160540,3
+vaccinated,4160540,4
+51096995,4160540,5
+48483774,4160540,5
+71097682,4160540,5
+52428120,4160540,3
+1138773,4160540,4
+mollymouth,4160540,-1
+43120723,4160540,4
+9104603,4160540,3
+finalong,4160540,4
+zhirunze,4160540,4
+creepricorn,4160540,4
+2198591,4160540,4
+ellenjaw,4160540,3
+yh9708,4160540,5
+65912201,4160540,3
+52889197,4160540,4
+xiachuanhe,4160540,4
+fridalee2,4160540,3
+kuangren79,4160540,4
+emma0729,4160540,4
+hwl19900304,4160540,5
+119404798,4160540,3
+1303267,4160540,4
+Clatyz-Sun,4160540,4
+60053075,4160540,4
+2720430,4160540,5
+ukawashou,4160540,3
+3518592,4160540,5
+42821103,4160540,1
+kidda,4160540,4
+46559043,4160540,3
+60222551,4160540,4
+yfwz100,4160540,4
+120890753,4160540,4
+60904027,4160540,4
+121002205,4160540,4
+xhlaxhla,4160540,3
+54631317,4160540,4
+79640756,4160540,4
+yishengpingfan,4160540,4
+tuscany1234,4160540,4
+tzkeer,4160540,3
+71141044,4160540,3
+kangmeng,4160540,4
+94207439,4160540,5
+huanzhuying,4160540,-1
+joyjay,4160540,-1
+66585349,4160540,4
+48296036,4160540,4
+73914489,4160540,3
+SEEINGLAU,4160540,5
+43830625,4160540,3
+123172810,4160540,5
+68140400,4160540,3
+Tong323,4160540,3
+45233873,4160540,4
+sailboat,4160540,-1
+1077003,4160540,3
+131587593,4160540,3
+caito,4160540,3
+3845314,4160540,3
+sugar-man,4160540,4
+64075825,4160540,4
+weeland,4160540,3
+haochimaomao,4160540,3
+76467352,4160540,2
+57286930,4160540,4
+36359450,4160540,4
+49253283,4160540,4
+amyzane,4160540,4
+1427633,4160540,4
+56739185,4160540,4
+87769477,4160540,3
+Ada_quan,4160540,-1
+misswatermelon,4160540,3
+sweetqin,4160540,5
+119743662,4160540,4
+65416892,4160540,4
+lzl890129,4160540,5
+130024032,4160540,4
+95824497,4160540,4
+50624143,4160540,4
+52285009,4160540,3
+91236974,4160540,4
+pzaiqueen,4160540,3
+nigelcrane,4160540,3
+dasiy.d,4160540,5
+52394644,4160540,4
+liumang2,4160540,3
+marage,4160540,4
+71178019,4160540,4
+2112561,4160540,4
+38897761,4160540,3
+JustCallMeCJ,4160540,4
+60732201,4160540,4
+61027168,4160540,4
+80066409,4160540,4
+67135692,4160540,3
+2527162,4160540,4
+42074061,4160540,4
+56422339,4160540,3
+65913822,4160540,3
+68706440,4160540,3
+55324449,4160540,4
+55619638,4160540,4
+60162366,4160540,4
+derek_major,4160540,4
+93860731,4160540,5
+ninjiushinin,4160540,4
+129131502,4160540,4
+thandiwe,4160540,3
+53109456,4160540,4
+luoqiuyue,4160540,4
+sharronli,4160540,4
+53904124,4160540,4
+easonkoko,4160540,4
+easonkoko,4160540,4
+Mo-Cuishle,4160540,3
+easternmoon,4160540,4
+81668154,4160540,4
+gunsky,4160540,3
+Adrift_eternity,4160540,5
+eznf,4160540,4
+83034260,4160540,4
+48164798,4160540,3
+62378722,4160540,3
+121299325,4160540,4
+44331893,4160540,4
+anpho,4160540,3
+43254568,4160540,3
+114841876,4160540,5
+liu65425,4160540,3
+79191929,4160540,3
+hhhlulu,4160540,-1
+43302206,4160540,4
+121763910,4160540,3
+yoocat,4160540,3
+2088344,4160540,3
+peach99,4160540,3
+travelaway,4160540,4
+Dependon,4160540,4
+121660280,4160540,3
+36659083,4160540,2
+niuzhi,4160540,5
+BOAT-GUO,4160540,4
+49890113,4160540,4
+toddmi,4160540,4
+michiyouko,4160540,5
+52935293,4160540,4
+55755674,4160540,3
+LizShen,4160540,4
+29789085,4160540,4
+34163695,4160540,4
+40850926,4160540,2
+47127791,4160540,3
+111965475,4160540,3
+45800541,4160540,4
+Blureen,4160540,-1
+72745150,4160540,4
+97912108,4160540,4
+54836169,4160540,2
+61485977,4160540,4
+46370564,4160540,5
+57249057,4160540,5
+123945021,4160540,4
+50090335,4160540,4
+122929763,4160540,4
+waitintheseason,4160540,3
+dsqingdao,4160540,4
+mrsrost,4160540,4
+80664333,4160540,4
+44132219,4160540,4
+littleben,4160540,3
+kyo_21,4160540,3
+66966914,4160540,4
+dongdayou,4160540,4
+55272555,4160540,3
+jafkxc,4160540,4
+77536605,4160540,5
+39363264,4160540,2
+56947576,4160540,4
+50028349,4160540,3
+jiajunzhi,4160540,2
+90715533,4160540,4
+ludj_007,4160540,4
+61742449,4160540,4
+70654982,4160540,3
+yytaizi,4160540,3
+92697402,4160540,2
+pbc0615,4160540,3
+frankchi,4160540,3
+icatcat,4160540,4
+78599391,4160540,5
+1772338,4160540,5
+38161901,4160540,5
+89844032,4160540,4
+cajiln,4160540,4
+shawnneverfade,4160540,2
+seraphhoo,4160540,3
+foxswily,4160540,3
+moxii,4160540,3
+3723513,4160540,4
+56480029,4160540,3
+41671241,4160540,3
+122286775,4160540,3
+44768876,4160540,5
+meteoraX,4160540,3
+54366340,4160540,3
+70177723,4160540,4
+69725938,4160540,4
+36152069,4160540,4
+psynonder,4160540,4
+Popdai,4160540,1
+64939636,4160540,4
+manmandemange,4160540,4
+fireflyxin,4160540,4
+82424254,4160540,2
+54145451,4160540,3
+52396951,4160540,2
+imshen,4160540,4
+120072340,4160540,4
+sosxisang,4160540,3
+120113112,4160540,3
+feifreeyifei,4160540,4
+44201606,4160540,4
+21606016,4160540,4
+52806556,4160540,4
+53637766,4160540,4
+echo0607,4160540,5
+48310124,4160540,4
+124456282,4160540,4
+102446549,4160540,5
+64497362,4160540,3
+82620092,4160540,4
+82222392,4160540,4
+Sxixi,4160540,4
+vielen940130,4160540,5
+marioxu,4160540,4
+givindream,4160540,5
+46095676,4160540,5
+59902712,4160540,4
+54984584,4160540,4
+108843661,4160540,5
+suiyi7367,4160540,3
+39748225,4160540,4
+summer2lin,4160540,3
+1230430,4160540,4
+punaisilvia,4160540,3
+d.t.,4160540,3
+131780411,4160540,4
+yiyeyiye,4160540,4
+131198702,4160540,5
+tanjiangling,4160540,4
+3006385,4160540,4
+3798345,4160540,3
+57984537,4160540,4
+51300093,4160540,4
+27749034,4160540,3
+JoooNE,4160540,4
+oliviapalermo,4160540,3
+2476748,4160540,4
+77216984,4160540,1
+stany,4160540,3
+73123286,4160540,3
+xxxcici123,4160540,4
+8490514,4160540,5
+125546785,4160540,3
+65803974,4160540,3
+4367069,4160540,4
+130044129,4160540,3
+49748372,4160540,3
+xinnii,4160540,4
+48792138,4160540,4
+45980116,4160540,4
+yo911217,4160540,5
+qiao1123,4160540,3
+nathan412,4160540,3
+arys-mao,4160540,4
+79208015,4160540,3
+flyingwhale,4160540,4
+wjw.,4160540,3
+81341228,4160540,2
+128569967,4160540,4
+ET.papillon,4160540,3
+67605485,4160540,4
+2648592,4160540,4
+64407051,4160540,5
+57142558,4160540,3
+58913556,4160540,4
+sareil,4160540,2
+sharrie,4160540,4
+3427459,4160540,4
+shixiaomi,4160540,4
+Cheeranita,4160540,5
+longestname,4160540,4
+1403812,4160540,5
+1403812,4160540,5
+92198270,4160540,4
+Cynthiasama,4160540,5
+92140787,4160540,5
+dulllennon,4160540,3
+terrybj,4160540,4
+xihua1993,4160540,3
+riohead,4160540,4
+59738934,4160540,4
+29998862,4160540,3
+maggiemars,4160540,3
+45340915,4160540,3
+84800557,4160540,5
+53925176,4160540,3
+2528826,4160540,4
+68992496,4160540,3
+93226079,4160540,3
+48794742,4160540,-1
+4752519,4160540,3
+102969702,4160540,4
+zengcity,4160540,4
+1506430,4160540,1
+49755333,4160540,3
+98665982,4160540,4
+70158503,4160540,4
+100039626,4160540,3
+diysad,4160540,-1
+79080709,4160540,4
+89474196,4160540,3
+81378317,4160540,5
+46125593,4160540,4
+64217349,4160540,3
+65740121,4160540,4
+languheshang,4160540,5
+48487891,4160540,4
+1786605,4160540,3
+45482570,4160540,4
+65009709,4160540,-1
+40411879,4160540,4
+53874586,4160540,4
+spade3,4160540,3
+89082243,4160540,3
+66717059,4160540,4
+3481727,4160540,4
+48057625,4160540,5
+34097491,4160540,4
+oceanlike,4160540,4
+62403296,4160540,3
+m.Blacky,4160540,3
+60883239,4160540,4
+47529878,4160540,3
+43482012,4160540,4
+57848317,4160540,3
+WOBAA,4160540,4
+montcalgary,4160540,3
+1048791,4160540,5
+11255442,4160540,5
+skferb,4160540,3
+wuxi4945,4160540,4
+67447555,4160540,5
+37803671,4160540,4
+51962295,4160540,3
+63781325,4160540,4
+58878500,4160540,4
+up0119,4160540,3
+72523304,4160540,5
+carino8023,4160540,3
+67848471,4160540,3
+FinalFantasy,4160540,4
+66171228,4160540,5
+76655139,4160540,4
+knoppers,4160540,4
+wood0913,4160540,4
+68961164,4160540,4
+malu,4160540,3
+rui400,4160540,4
+zita07,4160540,5
+69822507,4160540,4
+deeplymoxs,4160540,4
+108264732,4160540,4
+61628790,4160540,4
+47773223,4160540,4
+45129270,4160540,2
+52627644,4160540,4
+indigo90,4160540,4
+46506463,4160540,3
+ddmsl,4160540,4
+bizichuxue,4160540,4
+49510973,4160540,4
+reneeeee,4160540,4
+1110332,4160540,4
+coldyue,4160540,4
+40436346,4160540,3
+4486237,4160540,4
+lphobia,4160540,5
+120287477,4160540,3
+DZTL,4160540,4
+44564068,4160540,4
+dancingwithme,4160540,3
+55827930,4160540,3
+heisixiang,4160540,4
+131575721,4160540,3
+49761291,4160540,3
+86638445,4160540,3
+25468044,4160540,4
+76452322,4160540,4
+wakopa,4160540,3
+122554815,4160540,2
+ORBR,4160540,4
+1951463,4160540,4
+exex,4160540,3
+127947406,4160540,3
+54250866,4160540,3
+1550127,4160540,3
+wfxs,4160540,5
+ypgdjh,4160540,4
+4251338,4160540,4
+3709827,4160540,4
+yzarc,4160540,4
+mylbj,4160540,4
+127180672,4160540,4
+46529547,4160540,5
+shaochong,4160540,2
+108280775,4160540,5
+45463495,4160540,4
+1079578,4160540,4
+Alcor,4160540,3
+58064281,4160540,3
+42029452,4160540,3
+92796739,4160540,4
+Lkila,4160540,4
+62509398,4160540,3
+xuancaidanqing,4160540,3
+69272743,4160540,4
+sunseekerns,4160540,2
+57311033,4160540,4
+firstcause,4160540,3
+3759585,4160540,4
+vinoANDvivi,4160540,4
+49545340,4160540,4
+49545340,4160540,4
+48042943,4160540,3
+43777566,4160540,3
+keisa,4160540,4
+3790594,4160540,3
+qiuniao1982,4160540,3
+46884939,4160540,5
+75421360,4160540,5
+67952037,4160540,3
+miaow,4160540,4
+33584040,4160540,4
+53640936,4160540,4
+PARIADISE,4160540,4
+jessica_joy5,4160540,4
+17114874,4160540,2
+58411499,4160540,4
+lanty,4160540,4
+58338006,4160540,4
+119371106,4160540,4
+53718083,4160540,5
+zod,4160540,3
+ad.7,4160540,3
+yuyusuper2,4160540,4
+2169667,4160540,4
+69970746,4160540,4
+65935512,4160540,3
+49637787,4160540,3
+116531685,4160540,5
+jbm,4160540,5
+1805528,4160540,4
+3510327,4160540,4
+51888216,4160540,3
+120303134,4160540,3
+64126928,4160540,4
+59600162,4160540,-1
+78314147,4160540,4
+44809136,4160540,3
+51273572,4160540,-1
+49757444,4160540,4
+nikan,4160540,3
+68632515,4160540,3
+83760985,4160540,3
+43372030,4160540,4
+97757646,4160540,4
+83855659,4160540,3
+46116896,4160540,4
+huahui,4160540,4
+66461284,4160540,4
+66831372,4160540,4
+66426967,4160540,3
+distanters,4160540,4
+kukucat,4160540,4
+80923328,4160540,3
+79901303,4160540,5
+viva-l,4160540,4
+64535817,4160540,4
+58697566,4160540,3
+53543970,4160540,3
+57844859,4160540,2
+95360863,4160540,5
+49655643,4160540,4
+62650320,4160540,4
+liulull,4160540,4
+lbnew,4160540,4
+48781583,4160540,5
+qingzai,4160540,4
+58323329,4160540,4
+41437625,4160540,4
+46342196,4160540,4
+kanzaki666,4160540,3
+1755947,4160540,5
+casper009,4160540,5
+97396333,4160540,3
+3406492,4160540,4
+susidai,4160540,3
+duoxingxing,4160540,4
+74914910,4160540,4
+4657541,4160540,5
+121487671,4160540,4
+49081343,4160540,4
+129672781,4160540,5
+48957681,4160540,5
+gogowa,4160540,3
+fisherman,4160540,5
+72924603,4160540,4
+51888047,4160540,4
+125148047,4160540,4
+61492149,4160540,4
+3505477,4160540,5
+85352179,4160540,3
+58099911,4160540,-1
+3265610,4160540,4
+jiqingyi,4160540,3
+justjr,4160540,3
+zooyam,4160540,5
+52840916,4160540,4
+56552029,4160540,3
+49170790,4160540,3
+38036637,4160540,-1
+124094945,4160540,3
+48175935,4160540,4
+35224934,4160540,4
+3052607,4160540,3
+PennyCCC,4160540,3
+59458875,4160540,4
+47241007,4160540,4
+70132891,4160540,4
+56431276,4160540,4
+2444385,4160540,4
+48204509,4160540,4
+38770627,4160540,5
+ivis1989,4160540,4
+bfa1950,4160540,4
+douyashuo,4160540,3
+39745338,4160540,4
+fairyhui521,4160540,5
+renmeng,4160540,4
+85292866,4160540,5
+61400757,4160540,5
+46949718,4160540,3
+v5spider,4160540,3
+41214988,4160540,3
+44275428,4160540,4
+3770809,4160540,3
+64321061,4160540,3
+zhangliyuan91,4160540,4
+Zhaokai0226,4160540,4
+6469458,4160540,3
+82882772,4160540,5
+Van07,4160540,3
+82008062,4160540,5
+4161339,4160540,3
+2539331,4160540,4
+kiku223,4160540,4
+45869247,4160540,5
+1171612,4160540,3
+miuzc.pei,4160540,3
+1998897,4160540,2
+62369741,4160540,2
+xxyyxx6666,4160540,4
+xxyyxx6666,4160540,4
+davidxuzhao,4160540,4
+57980249,4160540,3
+yww435052076,4160540,4
+78311238,4160540,5
+80775732,4160540,4
+Faithy26,4160540,4
+3706515,4160540,3
+49270565,4160540,4
+Gawiel,4160540,4
+45755121,4160540,4
+sefvdx,4160540,4
+lovesm,4160540,4
+too_up,4160540,4
+64308036,4160540,4
+liminjun,4160540,3
+93866634,4160540,4
+49268784,4160540,1
+46823456,4160540,2
+loveangelalove,4160540,5
+jennylove,4160540,3
+71741698,4160540,4
+4242859,4160540,3
+1438357,4160540,1
+46603705,4160540,3
+46162383,4160540,3
+2566893,4160540,4
+zzsycfx57,4160540,3
+acesniper,4160540,4
+1605000,4160540,4
+wzh1995,4160540,4
+1482191,4160540,4
+47163330,4160540,5
+4486712,4160540,3
+124988609,4160540,5
+fum,4160540,-1
+62740981,4160540,5
+3816364,4160540,4
+51445389,4160540,3
+ekamiao,4160540,4
+pussy0pu,4160540,4
+lightwings,4160540,3
+60421761,4160540,3
+52160935,4160540,4
+lrc940928,4160540,3
+wei75820,4160540,4
+foreveryoung01,4160540,4
+55314641,4160540,4
+115097585,4160540,3
+92086611,4160540,4
+83119841,4160540,3
+92692605,4160540,4
+2458122,4160540,3
+32776828,4160540,3
+69873927,4160540,4
+yuchenyuan,4160540,4
+82494887,4160540,4
+zhawl,4160540,3
+goodnightXX,4160540,4
+sprite226,4160540,5
+sprite226,4160540,5
+xiaoheilian,4160540,4
+yqw,4160540,4
+VOLETASOS,4160540,3
+85344130,4160540,4
+76234100,4160540,4
+1314588,4160540,3
+51735678,4160540,4
+131183374,4160540,4
+peachbaby,4160540,2
+70131254,4160540,3
+83513831,4160540,5
+103622760,4160540,3
+54169795,4160540,3
+41317103,4160540,4
+128645774,4160540,3
+103302860,4160540,4
+kairikaoru,4160540,3
+34062723,4160540,4
+leonmu,4160540,4
+50568364,4160540,4
+58339090,4160540,4
+2148283,4160540,-1
+1099666,4160540,5
+xh7cly,4160540,4
+wj8198026,4160540,3
+53962357,4160540,3
+45507399,4160540,3
+3452519,4160540,4
+71408490,4160540,3
+CatRococo,4160540,3
+131219401,4160540,3
+36621771,4160540,4
+51793957,4160540,3
+34512767,4160540,4
+83876707,4160540,4
+119340847,4160540,3
+60068819,4160540,4
+oblivionangel,4160540,4
+1817816,4160540,3
+57534621,4160540,3
+MrJlol,4160540,5
+53951715,4160540,-1
+54254523,4160540,3
+63165563,4160540,4
+1333788,4160540,3
+1568406,4160540,4
+smcc911,4160540,4
+missufinally,4160540,4
+2620783,4160540,4
+ClaireL,4160540,3
+ccbadger,4160540,4
+sun1994zoe,4160540,4
+giraffe410,4160540,4
+61879467,4160540,-1
+52835573,4160540,3
+61033806,4160540,3
+justsmaki,4160540,3
+43910063,4160540,4
+64708561,4160540,3
+64708561,4160540,3
+53937396,4160540,5
+68668145,4160540,1
+fabio5,4160540,4
+46005086,4160540,4
+51020341,4160540,4
+11618167,4160540,4
+lynchor,4160540,3
+69570266,4160540,2
+stickerzhang,4160540,4
+zeyldjj,4160540,5
+49172161,4160540,4
+50117171,4160540,3
+komatsumiho,4160540,5
+39817838,4160540,3
+95264069,4160540,4
+60050271,4160540,5
+62209147,4160540,5
+84609158,4160540,3
+40193618,4160540,4
+93666846,4160540,3
+zbar1234,4160540,4
+58992948,4160540,3
+cherryye,4160540,5
+54251948,4160540,4
+62318575,4160540,5
+68559686,4160540,4
+67077088,4160540,3
+everytimedouble,4160540,4
+56322593,4160540,2
+54878176,4160540,4
+freelancy,4160540,5
+60164301,4160540,5
+73787415,4160540,4
+spx,4160540,2
+130332408,4160540,4
+3643746,4160540,5
+96674410,4160540,4
+85274353,4160540,3
+hellomilky,4160540,3
+lyishaou,4160540,4
+Su33er,4160540,3
+62159352,4160540,4
+momoko_huang,4160540,5
+76393487,4160540,3
+2048690,4160540,4
+bearcubmer,4160540,5
+frankyym,4160540,4
+55860565,4160540,4
+jerryfilm,4160540,4
+53559646,4160540,4
+lalalina,4160540,4
+1525882,4160540,4
+47167717,4160540,4
+gjy1123,4160540,4
+23904361,4160540,3
+BlairWang,4160540,2
+44940929,4160540,4
+yadiel,4160540,4
+thevyi,4160540,5
+3800028,4160540,3
+4242024,4160540,3
+rubyxr1028,4160540,-1
+83241271,4160540,5
+65538675,4160540,4
+49585135,4160540,4
+46965877,4160540,4
+fm532,4160540,3
+128979657,4160540,3
+bjin,4160540,4
+hyt,4160540,3
+51097525,4160540,3
+lrq92livecn,4160540,4
+50166201,4160540,4
+81335043,4160540,5
+quatre33,4160540,4
+Ellusion,4160540,4
+76916226,4160540,4
+guagua1992,4160540,4
+zzc8883800,4160540,4
+58543683,4160540,4
+bellaG,4160540,4
+57580969,4160540,3
+myself920,4160540,3
+4447712,4160540,3
+104409838,4160540,4
+sun2_7,4160540,4
+65584799,4160540,3
+60336002,4160540,4
+58320011,4160540,4
+1274832,4160540,3
+65458998,4160540,3
+58631682,4160540,4
+65981408,4160540,4
+75563219,4160540,5
+jkk0620,4160540,5
+69941774,4160540,3
+43347140,4160540,5
+55447460,4160540,4
+1206135,4160540,5
+79399870,4160540,5
+VALLA,4160540,4
+44021425,4160540,5
+72354881,4160540,3
+ViviaChen,4160540,3
+hewuyou,4160540,4
+88450760,4160540,5
+50290697,4160540,3
+lovemycats,4160540,3
+64834271,4160540,4
+1332702,4160540,4
+buzhiyuba,4160540,4
+lichen_sun,4160540,3
+36295870,4160540,4
+61797911,4160540,3
+53586282,4160540,3
+41798049,4160540,3
+54893820,4160540,4
+tinnu,4160540,3
+81457451,4160540,4
+81457451,4160540,4
+Lichuang,4160540,3
+49128296,4160540,3
+loturis,4160540,4
+62153411,4160540,-1
+129171726,4160540,4
+3480424,4160540,5
+celebrate,4160540,3
+87521541,4160540,3
+3880844,4160540,3
+zangtianfly,4160540,4
+49776648,4160540,3
+2339845,4160540,4
+65540792,4160540,3
+59620866,4160540,4
+128514178,4160540,4
+41247402,4160540,2
+2340389,4160540,5
+73079476,4160540,3
+52944731,4160540,4
+121928290,4160540,4
+beloydwu,4160540,4
+wroctaw,4160540,4
+DTShow,4160540,4
+4368444,4160540,3
+wendyyc,4160540,-1
+48973534,4160540,2
+loveactually102,4160540,4
+60072264,4160540,5
+samtino,4160540,3
+mattni,4160540,4
+61741541,4160540,3
+K-Child,4160540,3
+guyi87,4160540,4
+62282689,4160540,4
+67703642,4160540,5
+74479513,4160540,4
+59012758,4160540,4
+prejudice,4160540,4
+momojasper,4160540,4
+ArsenalCH,4160540,3
+129556271,4160540,4
+dearjo,4160540,4
+2438025,4160540,3
+82846844,4160540,5
+ling821,4160540,2
+43947432,4160540,3
+130756811,4160540,4
+61504169,4160540,4
+xjrm,4160540,4
+48003316,4160540,4
+101450082,4160540,4
+bemathematician,4160540,5
+84899362,4160540,4
+50341989,4160540,4
+sona302,4160540,3
+47352478,4160540,4
+67589382,4160540,3
+79425472,4160540,4
+happiness-tmx,4160540,4
+happiness-tmx,4160540,4
+65810005,4160540,3
+91774101,4160540,2
+61304869,4160540,4
+88452602,4160540,4
+46830605,4160540,4
+50271291,4160540,3
+xxxiyybabe,4160540,4
+whz1143243564,4160540,3
+4391066,4160540,4
+forsky,4160540,4
+11658942,4160540,4
+29574917,4160540,4
+122114630,4160540,3
+journey..,4160540,2
+48950860,4160540,4
+stary_gxh,4160540,3
+10200994,4160540,3
+57097536,4160540,3
+46813038,4160540,3
+50884822,4160540,3
+47492303,4160540,3
+2677247,4160540,4
+10710034,4160540,2
+carinawang,4160540,4
+margaret_wmx,4160540,3
+3800102,4160540,5
+97409290,4160540,2
+3801810,4160540,1
+MrAveiro,4160540,3
+4491309,4160540,4
+64193481,4160540,3
+65672051,4160540,2
+slx603,4160540,4
+55313545,4160540,4
+72123222,4160540,4
+16718270,4160540,3
+maydayfuck,4160540,3
+121479059,4160540,4
+1067687,4160540,4
+60127747,4160540,4
+shenxiyu,4160540,5
+llh1991,4160540,3
+cattieknights,4160540,1
+49828947,4160540,5
+kalashnikov,4160540,3
+fylingy,4160540,3
+126716117,4160540,2
+49033077,4160540,-1
+tojohnonly,4160540,5
+Tiny-Point,4160540,4
+35697125,4160540,4
+jjq8590188,4160540,4
+56448548,4160540,3
+snow961003,4160540,4
+euwen,4160540,4
+67334410,4160540,5
+gaoshiqi,4160540,2
+78491782,4160540,4
+32018385,4160540,5
+32018385,4160540,5
+115985324,4160540,4
+braveshengchun,4160540,4
+littlefatty815,4160540,5
+62753939,4160540,4
+50701865,4160540,3
+miss_dian,4160540,3
+47503404,4160540,4
+64974471,4160540,3
+67296398,4160540,2
+68100167,4160540,4
+55472715,4160540,5
+2481028,4160540,4
+1108403,4160540,4
+89301190,4160540,4
+heydzi,4160540,3
+uleh,4160540,3
+2875093,4160540,3
+53282547,4160540,4
+2831575,4160540,3
+53632021,4160540,4
+54898944,4160540,4
+sahalazx,4160540,5
+kekeying,4160540,4
+47347613,4160540,4
+rosemarylucy,4160540,5
+1613608,4160540,4
+128247761,4160540,4
+After1217,4160540,4
+49086369,4160540,5
+48261081,4160540,4
+57784370,4160540,4
+59604055,4160540,4
+wi2am,4160540,3
+63435651,4160540,3
+48019991,4160540,-1
+87772579,4160540,4
+73828343,4160540,4
+66460349,4160540,3
+117027234,4160540,3
+117027234,4160540,3
+4496644,4160540,4
+25686543,4160540,5
+Latias,4160540,3
+tuanziaifadai,4160540,3
+41796539,4160540,3
+Lava_R,4160540,4
+63900378,4160540,3
+liuctic,4160540,3
+119864973,4160540,4
+121519477,4160540,4
+4912264,4160540,3
+44865324,4160540,4
+artgaoya,4160540,3
+44137428,4160540,5
+60044541,4160540,4
+25973603,4160540,5
+124537695,4160540,3
+120517901,4160540,3
+63068333,4160540,-1
+chenshuting0919,4160540,4
+lingerer,4160540,4
+72972634,4160540,5
+shawluke,4160540,4
+2201495,4160540,4
+130962145,4160540,3
+86840728,4160540,4
+71863067,4160540,4
+37779092,4160540,4
+129798303,4160540,4
+73349181,4160540,3
+Psycho_L,4160540,3
+130749837,4160540,2
+32354448,4160540,4
+52461129,4160540,5
+126745018,4160540,5
+50307527,4160540,-1
+72712114,4160540,4
+EassSy,4160540,4
+CCCOLE0605,4160540,4
+89525142,4160540,4
+46062471,4160540,4
+59290556,4160540,4
+gongzitian,4160540,4
+49541188,4160540,4
+58200374,4160540,3
+123892334,4160540,4
+73899002,4160540,4
+87978953,4160540,2
+53863493,4160540,5
+sasasha,4160540,3
+58945423,4160540,4
+3687958,4160540,4
+65173707,4160540,5
+46996397,4160540,4
+52378291,4160540,4
+55656004,4160540,3
+89880536,4160540,4
+leven0111,4160540,4
+neotree,4160540,5
+YYDEE,4160540,4
+12177460,4160540,5
+4342819,4160540,3
+26921092,4160540,-1
+graceguo,4160540,-1
+apple-dudu,4160540,3
+lingqingchun,4160540,-1
+70779185,4160540,3
+68895947,4160540,3
+83747600,4160540,3
+hamixiong0926,4160540,3
+46906827,4160540,5
+Arenas4.-_-Hreo,4160540,5
+gothickid,4160540,3
+81417004,4160540,3
+52724535,4160540,3
+jack77gyq,4160540,5
+douBchenxiao,4160540,3
+yuuuummy,4160540,4
+caracostanza,4160540,5
+jackiekuo,4160540,4
+m19900714,4160540,5
+93300402,4160540,4
+jeffen,4160540,4
+xiaoziww,4160540,4
+67549177,4160540,4
+pluiechan,4160540,4
+aricahuang,4160540,4
+funyifan,4160540,2
+chicken__run,4160540,5
+1973189,4160540,4
+56007618,4160540,4
+xiaocheng88,4160540,4
+129756377,4160540,5
+25259616,4160540,4
+65917717,4160540,4
+Grace_Xuliang,4160540,4
+94380874,4160540,4
+42689506,4160540,5
+61346101,4160540,4
+53500604,4160540,4
+2957464,4160540,2
+114350326,4160540,5
+no_thx,4160540,4
+41732863,4160540,4
+aiyos,4160540,3
+kimliuzaixi,4160540,5
+willgabuta,4160540,4
+65038141,4160540,4
+lovinggarfield,4160540,3
+2602210,4160540,1
+67083640,4160540,3
+EdwardLear,4160540,3
+81464535,4160540,4
+47432042,4160540,3
+2804944,4160540,2
+cherryJ,4160540,3
+77037611,4160540,3
+76146294,4160540,4
+hss18384939520,4160540,1
+47732899,4160540,4
+lijue206,4160540,4
+2171690,4160540,3
+aeroprince,4160540,4
+38222446,4160540,4
+panshurst,4160540,4
+prudenceD,4160540,4
+2812955,4160540,3
+cense,4160540,3
+2655191,4160540,4
+96514775,4160540,4
+itislh,4160540,4
+52703708,4160540,4
+69646560,4160540,4
+4156800,4160540,4
+44525790,4160540,4
+127464842,4160540,5
+54065263,4160540,4
+ananwang,4160540,5
+4493098,4160540,4
+63017434,4160540,5
+guozixiang,4160540,5
+54011582,4160540,4
+1101928,4160540,4
+youlookfabulous,4160540,3
+83202177,4160540,2
+3473473,4160540,5
+jjessi,4160540,3
+41130036,4160540,4
+56103928,4160540,4
+48591645,4160540,3
+65976416,4160540,4
+66926887,4160540,4
+65947697,4160540,4
+withliancheng,4160540,4
+94391686,4160540,4
+57768614,4160540,-1
+58107870,4160540,3
+steph6luna,4160540,5
+ajang,4160540,4
+rednuriko,4160540,3
+ayumi,4160540,3
+alexf,4160540,3
+1381390,4160540,4
+48963798,4160540,5
+ssime,4160540,4
+62436528,4160540,4
+4478992,4160540,4
+64146995,4160540,3
+56857225,4160540,-1
+fabrique1987,4160540,3
+sejishikong,4160540,-1
+chidaoshu,4160540,3
+56211932,4160540,4
+conglin2537,4160540,3
+79127642,4160540,4
+48130433,4160540,4
+57821710,4160540,3
+47402425,4160540,5
+liancheng,4160540,4
+kimiyooo,4160540,-1
+Polo79,4160540,-1
+45047336,4160540,3
+ximenqing_,4160540,4
+cairongjia,4160540,4
+1369129,4160540,4
+1493144,4160540,3
+106598774,4160540,4
+48941780,4160540,4
+78382812,4160540,5
+wowwowwowtings,4160540,4
+andserendipity,4160540,4
+wlj2lhx,4160540,3
+70902682,4160540,4
+natejumper,4160540,3
+YOUNGPUNK,4160540,5
+124971974,4160540,3
+webcjz,4160540,4
+aprisliver,4160540,3
+90847864,4160540,4
+toucHero,4160540,3
+liyan1011,4160540,4
+2024071,4160540,5
+83467877,4160540,2
+72442723,4160540,4
+43603952,4160540,3
+qianqianfei,4160540,4
+43703653,4160540,5
+vinKate,4160540,4
+QQ3BlueRose,4160540,4
+71848127,4160540,3
+49282353,4160540,3
+2499876,4160540,4
+75961277,4160540,3
+72468752,4160540,3
+konglingyiQQ,4160540,5
+mhyigeren,4160540,4
+IceKey,4160540,4
+80126415,4160540,4
+onlyck,4160540,4
+Rosesea,4160540,4
+49581171,4160540,3
+48386140,4160540,4
+2965888,4160540,4
+105864771,4160540,4
+beate,4160540,4
+ms2ni,4160540,4
+1329817,4160540,5
+2883655,4160540,4
+yiuyiuu,4160540,3
+115982359,4160540,3
+oracle218,4160540,4
+2671866,4160540,3
+3943144,4160540,4
+3016464,4160540,3
+4565520,4160540,4
+ge383203180xin,4160540,4
+60923783,4160540,-1
+104373100,4160540,3
+43256414,4160540,4
+41486823,4160540,4
+70361131,4160540,3
+123370298,4160540,3
+126348691,4160540,3
+55295934,4160540,5
+4713496,4160540,3
+johannesthomas,4160540,3
+64254250,4160540,3
+nihac,4160540,4
+46895896,4160540,4
+fafa8343,4160540,2
+PsychoMissSo,4160540,4
+57958921,4160540,2
+51362669,4160540,5
+6037165,4160540,3
+wenjiaqi,4160540,3
+Gz_Gz,4160540,3
+45953948,4160540,4
+yolanda_kin,4160540,3
+63636223,4160540,4
+8387653,4160540,-1
+60720562,4160540,4
+4332785,4160540,5
+39382938,4160540,4
+61363863,4160540,3
+74416708,4160540,5
+jiscat,4160540,2
+54711543,4160540,4
+92335297,4160540,4
+coocooloot,4160540,4
+xx_jmlx,4160540,3
+Cao-Wei,4160540,3
+58004932,4160540,3
+89213949,4160540,-1
+stevenzhaodl,4160540,3
+61350532,4160540,3
+130734074,4160540,3
+33880591,4160540,4
+59178529,4160540,5
+2003213,4160540,4
+69047601,4160540,3
+ymm,4160540,3
+75043119,4160540,3
+52305498,4160540,4
+122107409,4160540,5
+4224712,4160540,5
+50901359,4160540,3
+98956475,4160540,3
+ling-ling,4160540,4
+41083928,4160540,4
+60230223,4160540,4
+44407422,4160540,4
+49713178,4160540,-1
+84526245,4160540,3
+1475802,4160540,5
+3061104,4160540,4
+70362034,4160540,3
+guoerer,4160540,4
+toytao,4160540,4
+115835795,4160540,4
+yutang,4160540,4
+4694061,4160540,4
+qunlangzhishou,4160540,4
+realpussy,4160540,4
+41479148,4160540,3
+autumnginger,4160540,3
+82152426,4160540,-1
+57602836,4160540,4
+27728988,4160540,4
+2339752,4160540,2
+57474326,4160540,4
+123228313,4160540,4
+66339819,4160540,5
+47427697,4160540,3
+110431093,4160540,5
+wxhsolo,4160540,5
+102673795,4160540,-1
+stridep,4160540,4
+50785660,4160540,4
+38404027,4160540,5
+54770734,4160540,5
+74105180,4160540,4
+letifer,4160540,4
+xiezhiyuan,4160540,4
+67520406,4160540,4
+54915058,4160540,3
+3954422,4160540,5
+74824888,4160540,4
+43542310,4160540,4
+3006521,4160540,4
+74448596,4160540,3
+lensmo,4160540,4
+54410446,4160540,2
+Scorpio_lxs,4160540,4
+67705905,4160540,3
+boohoo,4160540,-1
+Notali64,4160540,4
+4564181,4160540,2
+45536348,4160540,2
+79865158,4160540,5
+4446167,4160540,3
+120418587,4160540,3
+60963394,4160540,3
+49862758,4160540,4
+sentsuki,4160540,3
+1227418,4160540,3
+52631968,4160540,4
+freenest,4160540,4
+oliver330,4160540,4
+hechaxiaotu,4160540,1
+2879624,4160540,4
+64240733,4160540,4
+zhuroushitianai,4160540,4
+48824155,4160540,2
+48509984,4160540,4
+47385181,4160540,5
+129186675,4160540,4
+44724487,4160540,4
+59684689,4160540,4
+69975776,4160540,4
+ranwuwu,4160540,4
+lanpengyou,4160540,3
+73696070,4160540,3
+rener,4160540,4
+young2u,4160540,3
+ideyes,4160540,4
+59158101,4160540,4
+musofan,4160540,4
+uncleyang,4160540,4
+b_less,4160540,3
+62650109,4160540,3
+yasin.z,4160540,4
+aliceshi,4160540,2
+9274036,4160540,4
+boredblooming,4160540,4
+MoQin,4160540,5
+120065870,4160540,4
+62401840,4160540,4
+aiziyuer,4160540,4
+77912328,4160540,4
+55446096,4160540,4
+alwaysnforever,4160540,3
+HottestDaisy,4160540,3
+57751641,4160540,3
+44203908,4160540,4
+yanjing7611,4160540,3
+64974509,4160540,4
+41815717,4160540,-1
+ywy3130,4160540,3
+130580816,4160540,4
+45478417,4160540,4
+91787589,4160540,4
+cugzengqq,4160540,4
+45558691,4160540,4
+130658738,4160540,3
+yuan0243109,4160540,4
+discipline,4160540,4
+120538141,4160540,3
+33547006,4160540,3
+4842786,4160540,4
+4842786,4160540,4
+52598698,4160540,4
+50111172,4160540,3
+63637280,4160540,3
+SUiTHiNK,4160540,4
+Magicians,4160540,3
+songzer,4160540,3
+sky-captaion,4160540,1
+89318429,4160540,5
+61003769,4160540,3
+cplcs,4160540,3
+movieworm,4160540,4
+65897168,4160540,4
+47747519,4160540,5
+41919176,4160540,3
+69407378,4160540,4
+88078787,4160540,3
+53964680,4160540,3
+38452487,4160540,3
+icefishe,4160540,3
+58954568,4160540,4
+2658066,4160540,4
+60495529,4160540,4
+3690173,4160540,2
+2131520,4160540,4
+71281519,4160540,5
+73581567,4160540,4
+LIMEADE,4160540,3
+121113544,4160540,-1
+adrian1990,4160540,4
+128739482,4160540,4
+126364761,4160540,3
+JEAN325,4160540,4
+39104858,4160540,5
+magere,4160540,4
+63050000,4160540,3
+yiqiu8932,4160540,4
+honeydoris,4160540,5
+49515197,4160540,4
+95403251,4160540,3
+95403251,4160540,3
+10859268,4160540,4
+64757557,4160540,4
+49340190,4160540,5
+34532073,4160540,3
+47998075,4160540,4
+58359246,4160540,4
+6872427,4160540,5
+iris77yaxo,4160540,3
+47188401,4160540,4
+47840026,4160540,5
+61245435,4160540,4
+ikuma,4160540,-1
+crowdedstars,4160540,3
+18965054,4160540,4
+51274265,4160540,3
+67751186,4160540,4
+53814825,4160540,-1
+45108609,4160540,3
+62275045,4160540,3
+4791286,4160540,4
+mewcatcher,4160540,4
+davidwang33,4160540,4
+48892053,4160540,4
+90553636,4160540,5
+73150320,4160540,4
+45767220,4160540,4
+changkxs,4160540,4
+78389609,4160540,3
+42445219,4160540,2
+currant,4160540,3
+rebmevon,4160540,5
+KingsleyXie,4160540,4
+48542981,4160540,4
+alphacafe,4160540,3
+50507298,4160540,5
+29442857,4160540,4
+3829662,4160540,3
+unclelongneck,4160540,3
+91348351,4160540,4
+127252296,4160540,3
+1895030,4160540,3
+a-daydream,4160540,4
+79847046,4160540,4
+hrj21,4160540,3
+shuchendsc,4160540,4
+summermaoyi,4160540,3
+muyu125,4160540,4
+14745605,4160540,5
+97341954,4160540,4
+30515688,4160540,4
+jiaowoaguo,4160540,3
+54754236,4160540,3
+1767863,4160540,3
+Amitas,4160540,4
+53708555,4160540,5
+2227798,4160540,4
+58332166,4160540,4
+65662005,4160540,2
+microfree,4160540,5
+43377923,4160540,3
+126828053,4160540,4
+fenglianjun,4160540,4
+QINGFENGDIEWU,4160540,3
+83168472,4160540,4
+zhongsi,4160540,5
+63211106,4160540,4
+68318329,4160540,4
+maxiaoxi9527,4160540,2
+49866596,4160540,1
+4522213,4160540,3
+oulichen,4160540,3
+nangongmocheng,4160540,4
+85358774,4160540,3
+53709830,4160540,4
+tweek,4160540,4
+lejson,4160540,3
+1355863,4160540,3
+3836230,4160540,-1
+71026194,4160540,4
+3059021,4160540,4
+77222475,4160540,2
+130433536,4160540,4
+49862287,4160540,3
+vivienous,4160540,5
+veiko,4160540,4
+78304906,4160540,5
+3737719,4160540,3
+allofartandlife,4160540,5
+92840931,4160540,4
+53238292,4160540,4
+61551663,4160540,3
+moziyue,4160540,4
+36112089,4160540,4
+44045443,4160540,3
+yummygirl,4160540,3
+roseandwater,4160540,4
+126053208,4160540,3
+43762131,4160540,5
+88272709,4160540,3
+81845230,4160540,4
+130531529,4160540,3
+34219043,4160540,3
+85143816,4160540,4
+lovingecho,4160540,3
+yymx1130,4160540,4
+moeglichkeit,4160540,3
+85005877,4160540,4
+115867952,4160540,1
+debussy,4160540,4
+58422058,4160540,3
+62346407,4160540,5
+Isabella_baby,4160540,4
+58904341,4160540,4
+yvonnessm,4160540,3
+80011707,4160540,4
+71332667,4160540,4
+alphy,4160540,3
+51046269,4160540,5
+bonniekillu,4160540,3
+Shellxiaosh,4160540,4
+39628553,4160540,4
+2284641,4160540,5
+74525845,4160540,4
+102236551,4160540,4
+baomu,4160540,3
+4258722,4160540,4
+Mary-ed,4160540,3
+80689279,4160540,4
+naizhengtan,4160540,5
+1609757,4160540,4
+88324576,4160540,4
+63062317,4160540,4
+53644623,4160540,1
+jiangliuer0518,4160540,-1
+88395515,4160540,4
+50116920,4160540,4
+jackiam,4160540,3
+m.1234567,4160540,4
+102408048,4160540,4
+4578368,4160540,4
+87402327,4160540,3
+libowen,4160540,3
+ariel2009,4160540,4
+39288876,4160540,4
+57761897,4160540,3
+60788836,4160540,4
+suekyshi,4160540,3
+lizny921,4160540,3
+AvivaShey,4160540,3
+Serimbaudlau,4160540,4
+6500897,4160540,3
+eddy_charlie,4160540,4
+72656224,4160540,3
+22593878,4160540,4
+wagobian,4160540,2
+Moncalieri,4160540,4
+37016506,4160540,4
+57684790,4160540,4
+moojoX,4160540,2
+moojoX,4160540,2
+44452876,4160540,3
+52567562,4160540,-1
+11189422,4160540,4
+Leoky,4160540,4
+DCBinseven,4160540,5
+44284522,4160540,4
+imKuku,4160540,4
+67048173,4160540,4
+3344118,4160540,5
+50644195,4160540,4
+74711950,4160540,3
+2830816,4160540,-1
+43723717,4160540,4
+2686879,4160540,3
+52434343,4160540,2
+xiehuayingxhy,4160540,5
+52478383,4160540,5
+LilithChen,4160540,4
+MLLEfanfan,4160540,3
+68631195,4160540,1
+islander,4160540,4
+Like_zsy,4160540,4
+40029379,4160540,5
+RealDigit,4160540,5
+InSavageTown,4160540,5
+39307000,4160540,4
+4475505,4160540,4
+49693617,4160540,5
+wonderlandalice,4160540,2
+2696668,4160540,5
+bigymaorock,4160540,4
+47155914,4160540,4
+f91_82,4160540,2
+guliguo_428,4160540,4
+3852739,4160540,5
+beethoven,4160540,4
+2433047,4160540,4
+10149854,4160540,4
+42338941,4160540,4
+42338941,4160540,4
+lixiao09795,4160540,4
+115782738,4160540,3
+55996936,4160540,4
+71882861,4160540,4
+21771687,4160540,3
+54991939,4160540,5
+49359781,4160540,4
+yscysc803,4160540,4
+armeng,4160540,3
+48191181,4160540,3
+40760358,4160540,3
+65710892,4160540,3
+62995545,4160540,4
+1799681,4160540,4
+43942858,4160540,4
+rainloveyy,4160540,3
+45488064,4160540,4
+120008046,4160540,4
+81698816,4160540,1
+122458396,4160540,3
+52141746,4160540,3
+seodler,4160540,4
+jerome_ruc,4160540,4
+cupcake,4160540,2
+teenwolf,4160540,2
+104600848,4160540,4
+70682556,4160540,5
+americanidiot,4160540,3
+63300843,4160540,1
+fantasy219,4160540,4
+58509595,4160540,4
+Orbital,4160540,5
+2238966,4160540,4
+dreamlin7,4160540,4
+milkfroth,4160540,3
+120978925,4160540,4
+qq381525772,4160540,3
+70310265,4160540,4
+lynnhal,4160540,4
+43577072,4160540,3
+53378505,4160540,3
+79168541,4160540,4
+2330272,4160540,3
+bigvincy,4160540,3
+ailiuliu,4160540,4
+115681868,4160540,3
+50403764,4160540,5
+56252551,4160540,4
+103247038,4160540,-1
+Ark-s,4160540,3
+Shauro,4160540,5
+65396178,4160540,3
+tiffany_love,4160540,4
+janefung,4160540,4
+48917306,4160540,4
+1465243,4160540,3
+gui2160,4160540,3
+RoronoaLuffy,4160540,4
+zhangyangan,4160540,4
+40139547,4160540,4
+surfire1206,4160540,4
+80706483,4160540,4
+moesolo,4160540,2
+1377903,4160540,4
+Tomokin,4160540,3
+37914560,4160540,3
+lzacg,4160540,4
+2275412,4160540,3
+15612441,4160540,4
+3169523,4160540,4
+LilyInBJ,4160540,2
+3323980,4160540,3
+kayslv,4160540,5
+1281026,4160540,-1
+kamisangma,4160540,4
+antimido,4160540,5
+leinov,4160540,4
+62902715,4160540,5
+78721948,4160540,4
+79580095,4160540,5
+36031855,4160540,3
+65542582,4160540,5
+53477720,4160540,3
+1312141,4160540,-1
+melynda,4160540,4
+37413627,4160540,4
+3832888,4160540,4
+68093704,4160540,4
+booow,4160540,4
+107794504,4160540,3
+ipodmelody,4160540,4
+yangxiaofeliz,4160540,3
+gladysyin,4160540,4
+40177253,4160540,5
+46011187,4160540,3
+haizor,4160540,4
+34753066,4160540,5
+94257080,4160540,4
+2266577,4160540,3
+yidaijiankuan,4160540,4
+3671835,4160540,3
+3618040,4160540,4
+xuylu,4160540,4
+69021864,4160540,5
+46171104,4160540,4
+yelisi,4160540,3
+51636160,4160540,4
+95768578,4160540,4
+amu1023,4160540,3
+luxixi99,4160540,3
+hisamlovedesign,4160540,5
+56070920,4160540,3
+4081670,4160540,4
+55004423,4160540,4
+39977631,4160540,3
+1462465,4160540,3
+staybird,4160540,5
+40360938,4160540,5
+philoInSH,4160540,5
+fdid,4160540,3
+2201311,4160540,3
+bluegrid,4160540,2
+lymanc,4160540,4
+betamin,4160540,2
+nengyinyibeiwu,4160540,4
+70889770,4160540,5
+blender,4160540,3
+apoorguitar,4160540,4
+49499844,4160540,4
+slshukui,4160540,-1
+51737601,4160540,4
+74196181,4160540,4
+74546208,4160540,4
+46491501,4160540,4
+68635821,4160540,3
+10560080,4160540,3
+32028224,4160540,3
+128237011,4160540,4
+48078859,4160540,5
+79417839,4160540,4
+seeme,4160540,4
+24267833,4160540,4
+80245550,4160540,3
+60766541,4160540,4
+huyizhong,4160540,4
+Tanoshiyi,4160540,5
+orlandoaa,4160540,4
+3996368,4160540,4
+45048645,4160540,4
+82359622,4160540,4
+3430345,4160540,5
+27624982,4160540,4
+23853027,4160540,3
+42995651,4160540,5
+83773769,4160540,3
+mayee1121,4160540,3
+Litchell,4160540,4
+sylviasun2011,4160540,4
+55018128,4160540,3
+17582771,4160540,-1
+3966093,4160540,4
+binben,4160540,4
+leafsong,4160540,3
+62455742,4160540,5
+zoethree,4160540,4
+juchiran,4160540,3
+60421230,4160540,5
+csi910,4160540,5
+tianxiaws4,4160540,5
+48590382,4160540,3
+57157420,4160540,4
+1847624,4160540,4
+62559082,4160540,3
+129902514,4160540,5
+4021192,4160540,5
+Black_Star,4160540,2
+therecomy,4160540,3
+36939317,4160540,3
+50851987,4160540,4
+CptHaddock,4160540,3
+heather17,4160540,2
+124210070,4160540,4
+mili7788,4160540,3
+43207503,4160540,5
+43866584,4160540,1
+51356260,4160540,3
+49963511,4160540,1
+90556805,4160540,4
+DAI_YELIE,4160540,3
+67115672,4160540,3
+42678961,4160540,4
+ddzr,4160540,3
+64039684,4160540,4
+61014893,4160540,4
+77744175,4160540,4
+82471194,4160540,5
+mouzhi,4160540,4
+60275352,4160540,5
+78906906,4160540,3
+128885646,4160540,4
+madgirldoris,4160540,4
+kenengdaqi,4160540,4
+67092172,4160540,4
+zzzt29,4160540,3
+119167003,4160540,3
+14197101,4160540,3
+limeikinder,4160540,2
+35051709,4160540,3
+sakiring,4160540,4
+67615408,4160540,5
+47114271,4160540,3
+51638198,4160540,5
+52460447,4160540,4
+3762146,4160540,2
+63915564,4160540,4
+1423217,4160540,3
+49272831,4160540,4
+1571477,4160540,3
+Sk.Young,4160540,4
+xjnjenny,4160540,4
+minquan,4160540,3
+keiiii,4160540,4
+58021214,4160540,4
+jojojoshow,4160540,4
+chrisWen,4160540,3
+subuuti,4160540,3
+68977369,4160540,3
+61328957,4160540,3
+abby0109,4160540,2
+101915984,4160540,4
+irockbunny,4160540,3
+youthalone,4160540,4
+19124466,4160540,4
+58512408,4160540,5
+40733477,4160540,4
+40835496,4160540,5
+lxp1234,4160540,5
+61682333,4160540,2
+4083854,4160540,3
+omniwillpotent,4160540,4
+yogurtshue,4160540,4
+63368491,4160540,5
+52934173,4160540,5
+vontall,4160540,5
+shushi2011,4160540,4
+botuoxi,4160540,5
+66084053,4160540,4
+43192927,4160540,3
+ll_azrael,4160540,4
+83250285,4160540,3
+103380368,4160540,2
+83656919,4160540,4
+harryjin,4160540,4
+3555049,4160540,4
+wezhang,4160540,3
+64636436,4160540,4
+linglongwunv,4160540,4
+67177395,4160540,3
+iorizci,4160540,3
+47022632,4160540,4
+31698933,4160540,3
+52012798,4160540,3
+1956404,4160540,4
+128005787,4160540,4
+130319064,4160540,4
+eureka7,4160540,4
+76626092,4160540,3
+63932323,4160540,4
+treeofhope,4160540,5
+88109580,4160540,4
+88097347,4160540,4
+65116292,4160540,3
+130179604,4160540,4
+79599953,4160540,5
+3311727,4160540,4
+Mu_la,4160540,3
+103228718,4160540,3
+3305668,4160540,4
+47434041,4160540,4
+kildren2013,4160540,3
+53184572,4160540,5
+123963583,4160540,4
+3646381,4160540,4
+61134295,4160540,5
+56523090,4160540,5
+37573301,4160540,4
+48132228,4160540,-1
+shilaimu,4160540,4
+4517436,4160540,5
+4366776,4160540,3
+ljaimni,4160540,5
+2046080,4160540,2
+huan19494114,4160540,4
+1187053,4160540,3
+51142714,4160540,5
+38138105,4160540,3
+56470887,4160540,3
+69948545,4160540,3
+106207821,4160540,4
+54443064,4160540,-1
+lizmurray,4160540,4
+63461045,4160540,5
+76943413,4160540,4
+50271595,4160540,4
+1516524,4160540,4
+kenheart_ccxuan,4160540,2
+Ranfeg,4160540,-1
+45034340,4160540,3
+81258030,4160540,3
+63292425,4160540,5
+DorisWANG,4160540,4
+37102807,4160540,4
+81412725,4160540,5
+37017024,4160540,4
+siyao1019,4160540,4
+102922692,4160540,5
+3874009,4160540,3
+threeday,4160540,3
+tianbuman,4160540,3
+tianbuman,4160540,3
+126209159,4160540,4
+62137803,4160540,4
+71732006,4160540,4
+70548189,4160540,4
+58135379,4160540,4
+lovehebey,4160540,3
+isaakfvkampfer,4160540,3
+ariesking,4160540,3
+47876726,4160540,4
+fuckutopia,4160540,4
+55850316,4160540,3
+neillee312,4160540,3
+130132099,4160540,3
+Mulholland,4160540,3
+96200371,4160540,3
+46352679,4160540,4
+4321081,4160540,4
+19103297,4160540,5
+dEjaVu.,4160540,-1
+JinSeraph,4160540,4
+70935394,4160540,3
+65031005,4160540,5
+65117604,4160540,4
+125750519,4160540,2
+75231611,4160540,4
+PureVirus,4160540,4
+33525558,4160540,4
+56085509,4160540,5
+64972660,4160540,4
+3038376,4160540,3
+silent_island,4160540,2
+pilixiaohongmao,4160540,4
+kinghaixin,4160540,4
+wanwan824,4160540,4
+wjlqnyrc,4160540,5
+43790131,4160540,5
+illjill,4160540,4
+white-night,4160540,4
+3520804,4160540,2
+3173654,4160540,4
+evich,4160540,2
+127392524,4160540,4
+clemencechow,4160540,3
+68433941,4160540,4
+babajiang,4160540,5
+gstone1723,4160540,4
+44592673,4160540,4
+liaojinzi,4160540,3
+52621906,4160540,3
+77615925,4160540,4
+cheapchic,4160540,4
+39975348,4160540,4
+116054561,4160540,3
+dear001,4160540,3
+57416043,4160540,4
+daysofyouth,4160540,4
+yvone1220,4160540,4
+76946573,4160540,-1
+63821120,4160540,3
+iScandinavia,4160540,5
+90817930,4160540,3
+68397442,4160540,4
+48091725,4160540,5
+57111606,4160540,4
+77836113,4160540,2
+49294423,4160540,3
+2005734,4160540,4
+50939193,4160540,3
+44852938,4160540,4
+89455749,4160540,4
+41012306,4160540,3
+wangyuan2648,4160540,4
+2101526,4160540,3
+Lu_uney,4160540,4
+53353893,4160540,3
+127029651,4160540,4
+46520547,4160540,-1
+40027917,4160540,4
+58339263,4160540,4
+79404532,4160540,3
+34780057,4160540,4
+superman-is-gay,4160540,4
+75561690,4160540,2
+55606448,4160540,4
+quills,4160540,2
+Faychang,4160540,4
+aaaai,4160540,4
+geyuank,4160540,2
+121084172,4160540,4
+lin2jie,4160540,5
+2913201,4160540,3
+crenw,4160540,4
+41440460,4160540,4
+lutosdan,4160540,5
+62687217,4160540,4
+lionlsh,4160540,4
+hinderpanda,4160540,3
+soulmatestarry,4160540,-1
+102653753,4160540,4
+105794344,4160540,4
+103583567,4160540,4
+68541291,4160540,4
+73875283,4160540,3
+47163316,4160540,5
+4439996,4160540,4
+lh940328,4160540,5
+48894602,4160540,4
+52721473,4160540,3
+50558551,4160540,4
+79938209,4160540,4
+66967830,4160540,4
+mrcoolchina,4160540,4
+48477485,4160540,4
+bloodleopard,4160540,4
+53567005,4160540,3
+chankawai,4160540,4
+57562576,4160540,4
+Kostova,4160540,5
+57637867,4160540,5
+3608789,4160540,4
+2440792,4160540,3
+65632268,4160540,4
+83195523,4160540,3
+53014985,4160540,3
+58561925,4160540,4
+1719492,4160540,2
+48335787,4160540,5
+2577586,4160540,3
+60808695,4160540,3
+firepr,4160540,5
+55566255,4160540,5
+3184552,4160540,4
+101945887,4160540,4
+vanilla_lee,4160540,4
+48240826,4160540,4
+littlekunsheng,4160540,4
+35776944,4160540,4
+38397417,4160540,3
+1223469,4160540,4
+87997485,4160540,3
+53710188,4160540,2
+126980247,4160540,4
+donchen,4160540,3
+84599749,4160540,4
+46088391,4160540,3
+1575137,4160540,5
+Leo_Pan,4160540,3
+yuenee,4160540,3
+53548921,4160540,4
+50445283,4160540,3
+63755964,4160540,3
+2481956,4160540,4
+laihiukei,4160540,5
+44435549,4160540,4
+clmp124,4160540,5
+61973775,4160540,4
+28170509,4160540,3
+67880800,4160540,3
+67832658,4160540,4
+59276752,4160540,5
+aiziji,4160540,3
+MirrorImage,4160540,4
+2232953,4160540,3
+88922890,4160540,5
+83029187,4160540,3
+yjp235,4160540,5
+1056656,4160540,4
+2732455,4160540,5
+zhuangdikun,4160540,2
+minmin106,4160540,4
+45229801,4160540,5
+madiwu,4160540,5
+87558584,4160540,4
+1101491,4160540,3
+26818446,4160540,4
+3138357,4160540,3
+unicornlarry,4160540,4
+42421580,4160540,5
+4308388,4160540,4
+gulunmu,4160540,2
+2039569,4160540,3
+9549001,4160540,5
+12681117,4160540,4
+1105624,4160540,3
+bravefish,4160540,3
+37382236,4160540,3
+9521966,4160540,4
+Carmeliano,4160540,4
+49369904,4160540,3
+127571049,4160540,4
+53685870,4160540,4
+pandaz23,4160540,4
+33691715,4160540,3
+being_eggache,4160540,5
+33363647,4160540,3
+58369888,4160540,3
+52422798,4160540,4
+whereshallwego,4160540,3
+45558670,4160540,5
+65516017,4160540,3
+solycoco,4160540,4
+Sid,4160540,3
+2426372,4160540,3
+Pandaoreo,4160540,4
+64104549,4160540,4
+sonnet1983,4160540,5
+tlbb008,4160540,4
+tojason,4160540,2
+Cookiies,4160540,4
+lovemusic007,4160540,4
+120241385,4160540,5
+1792647,4160540,2
+sugarjune,4160540,3
+2021234,4160540,4
+yurenxiaobai,4160540,4
+26946241,4160540,5
+59017371,4160540,4
+64776955,4160540,4
+2717554,4160540,4
+maloma1721x,4160540,3
+baicaitai,4160540,5
+58863205,4160540,2
+55436430,4160540,5
+53654019,4160540,4
+jiaosally,4160540,3
+44877103,4160540,3
+48217943,4160540,-1
+128760790,4160540,4
+elise0219,4160540,4
+playtoy,4160540,3
+72936098,4160540,2
+58901835,4160540,3
+alwaysat,4160540,4
+lanchong03,4160540,3
+3218379,4160540,4
+36610260,4160540,4
+Ginatea,4160540,3
+46721845,4160540,3
+manue1,4160540,2
+61709298,4160540,4
+oweuuu,4160540,-1
+64021058,4160540,4
+74345724,4160540,3
+92919500,4160540,3
+Bobbyency,4160540,3
+4607844,4160540,4
+47306356,4160540,4
+4370207,4160540,3
+xiaomuonly,4160540,4
+TEAstory,4160540,4
+armai,4160540,4
+chelseawangqin,4160540,3
+79249529,4160540,4
+zera,4160540,4
+5642184,4160540,4
+lvyuanzi,4160540,4
+74698401,4160540,4
+85245609,4160540,4
+3222803,4160540,3
+3575164,4160540,4
+zeal,4160540,4
+54133944,4160540,4
+youasshole,4160540,5
+yummy1986,4160540,5
+kelly_syl,4160540,4
+35888113,4160540,4
+29458018,4160540,3
+3396223,4160540,3
+103728250,4160540,4
+2546239,4160540,4
+60871322,4160540,2
+lsx8270,4160540,4
+50244103,4160540,3
+wmwm,4160540,-1
+summerious,4160540,3
+Moretoless,4160540,4
+hsscby,4160540,5
+littleRED222,4160540,3
+ryannys,4160540,3
+53289830,4160540,3
+eason0210,4160540,5
+123016146,4160540,5
+58731723,4160540,5
+irisdd,4160540,4
+4523846,4160540,4
+jopees,4160540,5
+3440574,4160540,4
+winnylee,4160540,3
+46968280,4160540,4
+58805947,4160540,3
+50667944,4160540,3
+42463723,4160540,3
+3519752,4160540,3
+magic.rhythm,4160540,4
+xingli89,4160540,5
+best_times,4160540,5
+wajie1129,4160540,3
+44015053,4160540,4
+iffrank,4160540,5
+57770188,4160540,5
+vipdayu,4160540,4
+sogstad,4160540,3
+74660977,4160540,5
+a_Yuan,4160540,4
+55446081,4160540,4
+63586324,4160540,3
+PiDoG,4160540,4
+45838830,4160540,4
+65154337,4160540,3
+68479471,4160540,5
+100622662,4160540,5
+leftorright002,4160540,4
+64895995,4160540,4
+piapiapia,4160540,2
+3698997,4160540,4
+Ever1988,4160540,3
+jbecks,4160540,4
+85346311,4160540,3
+73958470,4160540,4
+73958470,4160540,4
+121419838,4160540,4
+42022756,4160540,3
+8342264,4160540,4
+4258306,4160540,5
+crodie,4160540,-1
+gss2046,4160540,4
+zizailr,4160540,4
+27676863,4160540,5
+ichimarumidori,4160540,4
+redsmile,4160540,4
+hljmsfy,4160540,2
+36300431,4160540,4
+97705695,4160540,3
+65803742,4160540,4
+53283406,4160540,4
+3772330,4160540,3
+42897156,4160540,3
+37586252,4160540,5
+3436777,4160540,5
+wxquan,4160540,4
+bigsword,4160540,4
+4706549,4160540,-1
+83455232,4160540,5
+57785248,4160540,4
+4668252,4160540,4
+Daruke,4160540,3
+sweetmisscat,4160540,4
+46483875,4160540,3
+76589400,4160540,3
+2735517,4160540,4
+65052284,4160540,4
+30251701,4160540,4
+45792584,4160540,3
+48552463,4160540,4
+13871057,4160540,5
+55564890,4160540,3
+79111866,4160540,4
+nafertari,4160540,4
+78473931,4160540,4
+78473931,4160540,4
+kongweihan,4160540,4
+liusashmily,4160540,4
+4372308,4160540,4
+joeshaw,4160540,5
+yuedawei,4160540,4
+49079570,4160540,3
+50879673,4160540,4
+jy147154,4160540,4
+4519532,4160540,4
+58049381,4160540,4
+34722246,4160540,4
+Linfadi,4160540,4
+littlevanny,4160540,4
+35000188,4160540,4
+55632749,4160540,4
+dengda,4160540,3
+1069760,4160540,4
+53660209,4160540,5
+1988523,4160540,3
+37767994,4160540,3
+34473328,4160540,4
+60123701,4160540,3
+52357915,4160540,4
+birdicat,4160540,4
+mistycheney,4160540,4
+yesidogiveadamn,4160540,5
+cyy9828,4160540,3
+agnes223,4160540,3
+99643447,4160540,4
+jerrynmb,4160540,4
+dltmw,4160540,4
+moquin,4160540,3
+kazuki_,4160540,4
+uping,4160540,5
+40654523,4160540,4
+64979240,4160540,4
+isnicola,4160540,4
+1333976,4160540,3
+53282047,4160540,5
+60460597,4160540,4
+echolulala,4160540,4
+yiyouyu1992,4160540,4
+47368327,4160540,5
+sephilish,4160540,4
+58199520,4160540,5
+58030085,4160540,5
+84433988,4160540,3
+2260481,4160540,5
+siupak,4160540,3
+Cherryzuo,4160540,4
+6243740,4160540,3
+dirkhysteria,4160540,1
+2945919,4160540,5
+46722646,4160540,4
+48686884,4160540,4
+peterpanty,4160540,5
+yu830,4160540,4
+79745413,4160540,5
+SZHsamuel,4160540,4
+SZHsamuel,4160540,4
+58457160,4160540,3
+73532203,4160540,4
+Before,4160540,4
+61797915,4160540,2
+3419883,4160540,4
+76554051,4160540,4
+120405318,4160540,5
+43004579,4160540,4
+2610379,4160540,5
+riki0221,4160540,4
+66768802,4160540,5
+66810723,4160540,3
+37306803,4160540,3
+iamlowe,4160540,4
+83075499,4160540,5
+fying,4160540,3
+1169851,4160540,3
+highmore91,4160540,3
+44975625,4160540,3
+Vanessa...,4160540,3
+Milkandy,4160540,4
+underwater_m,4160540,2
+102164266,4160540,3
+50548382,4160540,4
+linqiu126,4160540,4
+Yu-Tommy,4160540,3
+4652776,4160540,4
+Molan-Fish,4160540,4
+47385143,4160540,5
+46862579,4160540,4
+44215076,4160540,5
+mengmenglonglon,4160540,3
+43225247,4160540,4
+73655476,4160540,5
+112133874,4160540,3
+61944030,4160540,4
+SundraLee,4160540,4
+mangomangotree,4160540,4
+93105801,4160540,3
+yxjeremy,4160540,5
+60514515,4160540,4
+xiaopin19,4160540,3
+65696190,4160540,4
+winifredc,4160540,4
+dashan1928,4160540,3
+1215929,4160540,4
+121332582,4160540,-1
+jimxie,4160540,4
+62887627,4160540,3
+71585704,4160540,3
+fuloli,4160540,3
+Broderick,4160540,4
+45737599,4160540,3
+73985222,4160540,4
+68242891,4160540,4
+64938793,4160540,4
+lijinfengo,4160540,5
+46167635,4160540,5
+67211309,4160540,4
+67211309,4160540,4
+49585303,4160540,4
+118854497,4160540,5
+120659553,4160540,5
+57124272,4160540,5
+lovepeter,4160540,4
+79412322,4160540,5
+47473114,4160540,5
+hiyejia,4160540,4
+woodyallen,4160540,4
+winsonunddrei,4160540,3
+zykmilan,4160540,5
+dearFreundin,4160540,4
+55701739,4160540,4
+sophie-z,4160540,4
+78821909,4160540,4
+1370561,4160540,4
+holly_xu,4160540,4
+fuxiaopang,4160540,3
+68361818,4160540,3
+81986503,4160540,4
+huashengcuicui,4160540,4
+64926044,4160540,4
+45004745,4160540,4
+36618546,4160540,3
+45390521,4160540,4
+1023218,4160540,4
+65450414,4160540,4
+missfaye,4160540,5
+wangshiqian1024,4160540,4
+1308850,4160540,3
+2401652,4160540,2
+zhangbohun,4160540,3
+47614516,4160540,4
+3609200,4160540,5
+45581073,4160540,4
+Tea1116.,4160540,5
+49309537,4160540,4
+64222843,4160540,3
+Free-Mason,4160540,3
+man_to_patient,4160540,3
+xever,4160540,4
+cloverllx,4160540,3
+mlgg,4160540,4
+wingstoflygrey,4160540,5
+biketo,4160540,4
+hot_air,4160540,5
+fayyuki,4160540,4
+kisssuperqi,4160540,2
+8313519,4160540,4
+zhiling,4160540,4
+106351670,4160540,3
+samy0868,4160540,3
+53878159,4160540,3
+87357482,4160540,4
+bunny636,4160540,2
+52333341,4160540,4
+34740477,4160540,4
+63873840,4160540,4
+2376689,4160540,-1
+70884450,4160540,3
+vinnywang,4160540,4
+53854833,4160540,3
+fionanunu,4160540,4
+46780682,4160540,3
+85356798,4160540,4
+60858560,4160540,4
+newwold,4160540,1
+85065723,4160540,4
+2516776,4160540,-1
+35780501,4160540,3
+xiaotaoyaoyao,4160540,3
+72719769,4160540,4
+loveaholic,4160540,5
+seattle_on,4160540,5
+3932480,4160540,-1
+80820907,4160540,4
+48406181,4160540,4
+34853481,4160540,5
+3751886,4160540,4
+47800794,4160540,5
+102594722,4160540,2
+48715746,4160540,3
+81129445,4160540,3
+momo0724,4160540,4
+2135257,4160540,4
+mola,4160540,4
+AspireY,4160540,3
+x.xiong,4160540,3
+Tokolee,4160540,4
+50458514,4160540,3
+38904635,4160540,4
+YAMAHA_GO,4160540,4
+54721365,4160540,3
+pangziminmin,4160540,4
+43409918,4160540,3
+63576554,4160540,5
+2563929,4160540,4
+sunsun1990,4160540,4
+youyoujean,4160540,5
+44431235,4160540,5
+zhouxiaoou,4160540,4
+uRpunkhouseboy,4160540,4
+rivi021,4160540,4
+fasy,4160540,3
+34674400,4160540,3
+102356757,4160540,3
+59797746,4160540,4
+kinkin77,4160540,-1
+plumson,4160540,4
+75270004,4160540,4
+sidneybig,4160540,4
+82689458,4160540,4
+48198672,4160540,3
+33324943,4160540,4
+97501403,4160540,4
+50451911,4160540,3
+51583306,4160540,3
+juliekathy,4160540,4
+79607790,4160540,4
+79607790,4160540,4
+50186720,4160540,4
+44957091,4160540,4
+cinderppp,4160540,4
+carmen8212,4160540,3
+4294308,4160540,2
+silence_queen,4160540,4
+129977566,4160540,3
+rococo333,4160540,4
+37369275,4160540,4
+51264470,4160540,4
+abnormal-pluto,4160540,4
+62741239,4160540,4
+momo7170,4160540,4
+47705439,4160540,4
+19438823,4160540,2
+48924562,4160540,3
+clarattttt,4160540,4
+thomas1989,4160540,3
+51905890,4160540,1
+Cikoo_6,4160540,4
+amethyst_cm,4160540,3
+pipopipapipi,4160540,-1
+xbey,4160540,3
+feiyangboshi,4160540,3
+2774375,4160540,4
+44103140,4160540,4
+maikocyan,4160540,5
+44862479,4160540,4
+65239116,4160540,3
+62224348,4160540,4
+44556391,4160540,-1
+51777015,4160540,4
+117234787,4160540,3
+mabeysomeday,4160540,3
+a591386133,4160540,4
+1694819,4160540,3
+31973700,4160540,4
+53477722,4160540,4
+83217907,4160540,4
+WN-ninja,4160540,4
+2254775,4160540,5
+Zealx,4160540,4
+53906378,4160540,4
+timetowrite,4160540,4
+2645593,4160540,4
+xiaoyaozizai,4160540,5
+49142507,4160540,4
+soultaker,4160540,4
+3092474,4160540,3
+94034456,4160540,4
+66802525,4160540,3
+crazygrave,4160540,4
+jialululu,4160540,-1
+51028577,4160540,4
+36216598,4160540,3
+73901440,4160540,4
+81895989,4160540,5
+magic1029,4160540,3
+nineism,4160540,3
+32448053,4160540,4
+75653628,4160540,5
+57086582,4160540,5
+88121855,4160540,2
+dearjan,4160540,5
+kid131,4160540,3
+26461987,4160540,4
+kaolashuo,4160540,3
+42781557,4160540,4
+monkeycupl,4160540,4
+shadowfoxxuan,4160540,3
+49445106,4160540,4
+MyMichelle,4160540,3
+zdaxuxu,4160540,4
+3768406,4160540,4
+64854726,4160540,4
+heartbreakerkid,4160540,3
+asuka216,4160540,4
+oodd,4160540,4
+Svena,4160540,4
+Svena,4160540,4
+121796930,4160540,3
+67449498,4160540,4
+SpiderWolf,4160540,5
+79511947,4160540,4
+50924789,4160540,4
+em_mushroom,4160540,-1
+liumessi,4160540,3
+4295513,4160540,4
+55568825,4160540,3
+42511069,4160540,4
+yvonneliu,4160540,3
+deepsnow,4160540,4
+wtforz,4160540,3
+ravinenoravine,4160540,3
+zqnpz,4160540,3
+haozi1990,4160540,4
+60846829,4160540,-1
+Suixinsin,4160540,4
+36847599,4160540,3
+64953459,4160540,4
+52387878,4160540,3
+4387213,4160540,4
+39872737,4160540,-1
+ripplelien,4160540,4
+2065436,4160540,5
+27352868,4160540,3
+xita,4160540,5
+78066054,4160540,3
+51810708,4160540,4
+gjr1027,4160540,4
+55656322,4160540,4
+31530097,4160540,3
+lcpeng,4160540,4
+127755735,4160540,4
+successlessness,4160540,-1
+meishabubeizhan,4160540,4
+pilgrim_soul,4160540,4
+129853005,4160540,4
+newmood,4160540,-1
+finalrisk,4160540,4
+2165440,4160540,4
+58702024,4160540,3
+sureyMJ,4160540,4
+callmev,4160540,3
+102050741,4160540,4
+babyA,4160540,4
+jinliping,4160540,4
+30626996,4160540,4
+121075553,4160540,4
+58254875,4160540,4
+49798561,4160540,4
+iskl,4160540,5
+jimmy037,4160540,4
+52281129,4160540,-1
+Mizleave,4160540,4
+52529736,4160540,4
+Sandal,4160540,3
+qiqi6105,4160540,4
+56872460,4160540,4
+happysadop,4160540,4
+62130444,4160540,4
+nkkun,4160540,4
+nanjournal,4160540,4
+57591346,4160540,3
+62775007,4160540,3
+qianchong,4160540,4
+gtl,4160540,3
+80477682,4160540,4
+68476661,4160540,4
+105196709,4160540,3
+liuyingxin_1984,4160540,4
+ShellyBean,4160540,5
+74773211,4160540,5
+128494995,4160540,3
+51197070,4160540,4
+3559014,4160540,-1
+78160641,4160540,4
+rainielo,4160540,3
+68199229,4160540,5
+a999999773,4160540,4
+61045704,4160540,3
+59426898,4160540,3
+69423388,4160540,3
+1427052,4160540,3
+38766642,4160540,3
+77155788,4160540,4
+46522015,4160540,4
+95240468,4160540,3
+69105248,4160540,4
+41870233,4160540,4
+Eucalypts,4160540,4
+79016211,4160540,4
+kinjio,4160540,4
+54572779,4160540,3
+48112826,4160540,4
+kylechiang,4160540,4
+35499398,4160540,4
+52189374,4160540,2
+mpower007,4160540,4
+64416662,4160540,3
+tradis,4160540,4
+66546390,4160540,3
+1793879,4160540,4
+baywreath,4160540,5
+57298061,4160540,5
+flora_panda,4160540,2
+maggieleehom,4160540,3
+60079529,4160540,5
+summertime727,4160540,-1
+9429775,4160540,4
+48488105,4160540,3
+babybottle,4160540,4
+aking,4160540,4
+3351581,4160540,3
+leexiaoxiao,4160540,3
+99632498,4160540,3
+pennyhu,4160540,4
+hitoshio,4160540,-1
+104792365,4160540,4
+127426227,4160540,4
+69388549,4160540,4
+zhuzaixuanyabia,4160540,5
+88393319,4160540,4
+1493686,4160540,4
+2534802,4160540,5
+e2cat,4160540,3
+88815892,4160540,4
+gong_ken,4160540,5
+49146355,4160540,4
+119189447,4160540,4
+17871243,4160540,3
+78921107,4160540,5
+2614125,4160540,4
+49848992,4160540,4
+83273023,4160540,4
+54380467,4160540,3
+momohei,4160540,3
+gilxiao,4160540,4
+27422714,4160540,3
+2622237,4160540,4
+studyzy,4160540,5
+66053525,4160540,3
+53856338,4160540,3
+nepuba,4160540,4
+Mapotatoes,4160540,3
+hj26,4160540,5
+moonorz,4160540,4
+54983344,4160540,2
+48233629,4160540,4
+4357598,4160540,4
+78851743,4160540,3
+81314852,4160540,3
+3275817,4160540,3
+14113539,4160540,4
+wejjjjj,4160540,4
+61775961,4160540,3
+19037879,4160540,3
+awesomedude,4160540,4
+lidianxi1990,4160540,5
+123181397,4160540,4
+3622707,4160540,3
+icyolivia,4160540,-1
+ceraa,4160540,4
+61301677,4160540,4
+lynn0818,4160540,4
+manxiaoyue,4160540,3
+27545632,4160540,4
+minmin0801ahoah,4160540,5
+1358167,4160540,5
+48972272,4160540,3
+lyzw,4160540,4
+122420292,4160540,3
+10172527,4160540,-1
+45968027,4160540,4
+ning77,4160540,5
+68724407,4160540,-1
+clh7,4160540,4
+56789007,4160540,3
+lyuri,4160540,4
+chenjubo,4160540,4
+45278107,4160540,3
+39355167,4160540,4
+114728275,4160540,3
+enjoymyjoy,4160540,3
+JunSta,4160540,3
+79364792,4160540,-1
+ycho1203,4160540,5
+57758773,4160540,4
+ovspianist,4160540,5
+cicisj,4160540,3
+michaelcc,4160540,4
+99223060,4160540,5
+73210562,4160540,4
+CharlieXiaoxiao,4160540,3
+1830523,4160540,4
+Martorberg,4160540,4
+51513711,4160540,3
+53395539,4160540,4
+129616937,4160540,3
+69152007,4160540,3
+52900844,4160540,3
+tianxiaweigong,4160540,5
+25970354,4160540,4
+wangdoudou20,4160540,3
+orionzhang,4160540,4
+45484403,4160540,3
+47379893,4160540,3
+121675172,4160540,3
+80993663,4160540,2
+95305100,4160540,4
+luoqingyou,4160540,4
+63351658,4160540,3
+LillianLuan,4160540,4
+59379666,4160540,5
+54485796,4160540,4
+53233343,4160540,3
+ailiyubaba,4160540,2
+61708505,4160540,4
+47733868,4160540,3
+vchin,4160540,3
+42535612,4160540,3
+gis,4160540,5
+51070910,4160540,3
+emeline,4160540,4
+63367154,4160540,3
+64641019,4160540,4
+michaelkingdom,4160540,4
+ivyfly,4160540,4
+qianqiandeya,4160540,4
+4775119,4160540,4
+47525784,4160540,5
+AlecChou,4160540,3
+51636177,4160540,5
+2858772,4160540,3
+2830223,4160540,4
+48965557,4160540,2
+64978409,4160540,4
+cxl951404897,4160540,4
+chiaky,4160540,4
+chiaky,4160540,4
+CrashCaine,4160540,4
+ducklucy,4160540,4
+77758955,4160540,3
+shadow_break,4160540,3
+55916506,4160540,3
+3406599,4160540,4
+42814628,4160540,4
+govgouviiiiiiii,4160540,4
+63305986,4160540,4
+yuuko-rei,4160540,4
+boxvc,4160540,4
+selinalyons,4160540,4
+51875621,4160540,4
+51559906,4160540,4
+jinyuanhan,4160540,4
+78857918,4160540,5
+alexhuang,4160540,4
+44690899,4160540,4
+51571110,4160540,3
+vivifyvivi,4160540,3
+chobijaeyu,4160540,3
+45833896,4160540,4
+guiying96,4160540,4
+Weiming,4160540,4
+DVforever,4160540,3
+62701121,4160540,5
+126346633,4160540,4
+danji,4160540,-1
+2974918,4160540,4
+ruudgoal,4160540,4
+heyiteng,4160540,3
+58491950,4160540,4
+51210782,4160540,3
+1246201,4160540,3
+52463415,4160540,4
+48902446,4160540,5
+52413397,4160540,4
+ritz,4160540,3
+32001555,4160540,2
+jjftnt007,4160540,5
+renshaoqun,4160540,3
+48960199,4160540,3
+107520660,4160540,4
+freeyoru,4160540,5
+18322235,4160540,5
+1581275,4160540,5
+89528523,4160540,4
+66427696,4160540,4
+1096452,4160540,4
+elained,4160540,3
+62504399,4160540,3
+yin-gang,4160540,5
+17036547,4160540,3
+59040075,4160540,3
+50608084,4160540,3
+70624068,4160540,3
+57985826,4160540,5
+5612926,4160540,3
+muxieyes,4160540,4
+neverbutterfly,4160540,4
+rominakata,4160540,3
+xylor,4160540,4
+2996377,4160540,3
+gojin,4160540,4
+Elsa-Young,4160540,4
+guigui291,4160540,4
+120787443,4160540,4
+49308797,4160540,4
+keman,4160540,1
+123373729,4160540,3
+2333248,4160540,4
+46898679,4160540,4
+63485325,4160540,3
+67657833,4160540,4
+kammury,4160540,4
+44109266,4160540,4
+sidafaming,4160540,5
+homecaty,4160540,4
+achen29,4160540,4
+58907789,4160540,2
+nicdone,4160540,5
+77394245,4160540,4
+2828074,4160540,3
+35176811,4160540,4
+zpavel,4160540,4
+66716056,4160540,4
+PaoPaoface,4160540,4
+49005223,4160540,3
+35744087,4160540,4
+jiayidevil,4160540,5
+3923065,4160540,3
+dou4y,4160540,4
+msw0123,4160540,3
+karling,4160540,3
+36763698,4160540,3
+58829197,4160540,5
+61355644,4160540,5
+37688904,4160540,4
+honger9393,4160540,4
+3971708,4160540,4
+1118044,4160540,5
+46722209,4160540,3
+43535885,4160540,3
+4488210,4160540,4
+2073098,4160540,3
+65550033,4160540,4
+88927471,4160540,4
+4294747,4160540,5
+1240037,4160540,4
+cutebug,4160540,3
+Davidcyclone,4160540,-1
+44484325,4160540,4
+50616224,4160540,5
+marioshuairen,4160540,3
+129603350,4160540,2
+miniasalani,4160540,5
+ng2014,4160540,5
+Lumiere5200,4160540,4
+57755066,4160540,4
+34990141,4160540,4
+shift77,4160540,4
+34739546,4160540,4
+57350477,4160540,3
+70648715,4160540,4
+WSSWHL,4160540,3
+shadowkid,4160540,3
+127896553,4160540,3
+wang2d,4160540,4
+3745688,4160540,4
+Esax,4160540,5
+code6,4160540,5
+DoctorHou,4160540,4
+cjc1021,4160540,1
+saosaoxy,4160540,3
+122782956,4160540,4
+haianlong,4160540,4
+63850885,4160540,3
+marsding,4160540,3
+simphiwe_zuma,4160540,4
+25195048,4160540,3
+Clarke,4160540,3
+B1z,4160540,4
+antime,4160540,4
+1448991,4160540,3
+zorro4337,4160540,4
+65418706,4160540,4
+tianchuan,4160540,4
+xuchenxi,4160540,4
+89451372,4160540,4
+altmann,4160540,5
+61727840,4160540,3
+73674505,4160540,-1
+ludwiger,4160540,3
+62735975,4160540,5
+meditation0370,4160540,4
+tanxiqianqian,4160540,4
+58726406,4160540,3
+128315720,4160540,3
+51303010,4160540,4
+51303010,4160540,4
+42536966,4160540,3
+62271634,4160540,4
+65810750,4160540,4
+106596511,4160540,3
+Arma-Ni,4160540,5
+vfish,4160540,4
+11080929,4160540,3
+47212791,4160540,4
+92004174,4160540,4
+58429306,4160540,4
+56871206,4160540,3
+43096733,4160540,4
+danzellee,4160540,4
+66757528,4160540,5
+55885677,4160540,4
+Lee_Will,4160540,4
+116471524,4160540,4
+Summer-isKing,4160540,3
+71680452,4160540,4
+79846802,4160540,-1
+77568488,4160540,4
+JiaoYaZi,4160540,3
+47619334,4160540,4
+1032100,4160540,3
+114402570,4160540,4
+sirene,4160540,4
+61688729,4160540,4
+wangxiaomo,4160540,4
+47995488,4160540,4
+cherryoung,4160540,4
+13976232,4160540,4
+yuuka0765,4160540,3
+49673011,4160540,5
+benjune,4160540,4
+129548619,4160540,4
+120558664,4160540,4
+107556145,4160540,4
+55326389,4160540,3
+90847508,4160540,4
+lvlvlvl,4160540,3
+59651696,4160540,4
+lubolin,4160540,4
+62684666,4160540,5
+94269146,4160540,3
+1334269,4160540,5
+Ray_W,4160540,4
+48034586,4160540,3
+bike24,4160540,1
+lugeast,4160540,2
+53906176,4160540,5
+36232662,4160540,2
+np68oyster,4160540,5
+SaxaTamija,4160540,4
+52636646,4160540,4
+47845902,4160540,3
+weilijie,4160540,3
+i13nocry,4160540,3
+AeroAnte,4160540,4
+aeeyajie,4160540,4
+aeeyajie,4160540,4
+81589227,4160540,4
+lbc21,4160540,4
+65412989,4160540,4
+64543856,4160540,4
+49948273,4160540,3
+62663209,4160540,4
+gsh1215,4160540,5
+2242413,4160540,4
+82145368,4160540,3
+xyanfangzone,4160540,4
+63119872,4160540,5
+125570850,4160540,3
+fongfongziv1600,4160540,3
+99077517,4160540,4
+beijinglife,4160540,4
+121680409,4160540,4
+47438715,4160540,3
+3601002,4160540,3
+ender99,4160540,3
+43384723,4160540,3
+108367905,4160540,4
+35905722,4160540,3
+119230037,4160540,4
+48673876,4160540,4
+chishiba,4160540,5
+2562419,4160540,4
+25179405,4160540,4
+lucypurple,4160540,3
+simor0105uknow,4160540,2
+77358523,4160540,5
+61406882,4160540,4
+feller,4160540,3
+gezi33,4160540,4
+42198366,4160540,5
+65164486,4160540,3
+65236397,4160540,4
+xuyansong,4160540,4
+73685212,4160540,5
+94949440,4160540,4
+47510305,4160540,3
+72719968,4160540,3
+alison0310,4160540,4
+kxhehe,4160540,4
+77873859,4160540,-1
+52466190,4160540,4
+43528546,4160540,3
+83209029,4160540,3
+wjmm,4160540,4
+67120890,4160540,3
+folgeru,4160540,-1
+39447377,4160540,-1
+63369919,4160540,4
+51299697,4160540,4
+forvendetta,4160540,2
+yangsheng213,4160540,4
+mumu_1314,4160540,3
+totorolove,4160540,2
+82140443,4160540,4
+59594277,4160540,3
+89103199,4160540,4
+xinzoe,4160540,-1
+121628266,4160540,4
+50698080,4160540,3
+4407883,4160540,4
+yueyuedad1972,4160540,4
+yangshuangblue,4160540,4
+45799375,4160540,4
+82087372,4160540,3
+TwistedZ,4160540,4
+71879067,4160540,4
+33035895,4160540,4
+48990593,4160540,4
+15137952,4160540,3
+xzz005,4160540,5
+lunaya,4160540,4
+33221550,4160540,4
+TrueBit,4160540,3
+allanzlau,4160540,4
+126753343,4160540,3
+yoyodesmile,4160540,4
+tutusky,4160540,3
+62336834,4160540,4
+24818011,4160540,5
+73921973,4160540,4
+54757107,4160540,3
+70895665,4160540,3
+42926256,4160540,4
+2245968,4160540,4
+3617454,4160540,3
+115656840,4160540,3
+carrie_c.,4160540,3
+kisscat890505,4160540,3
+52685413,4160540,4
+24986693,4160540,4
+A.I.,4160540,3
+Super.Loogie,4160540,3
+dancelatoto,4160540,4
+11715318,4160540,5
+44923935,4160540,3
+58297666,4160540,4
+70650158,4160540,3
+41317848,4160540,4
+4226601,4160540,3
+3407440,4160540,4
+hongzhouche,4160540,4
+emd12,4160540,5
+huamochu,4160540,2
+62605597,4160540,5
+67800883,4160540,4
+31867466,4160540,4
+tiaotiaotang,4160540,2
+2058011,4160540,3
+tricky_V,4160540,4
+122374018,4160540,2
+47198507,4160540,3
+115634040,4160540,3
+76467871,4160540,3
+sun.kids,4160540,3
+52535672,4160540,3
+rasiel,4160540,5
+3859112,4160540,3
+Reignian,4160540,3
+69855575,4160540,4
+90638184,4160540,5
+cyanme,4160540,3
+JasonCheung1992,4160540,4
+pasband,4160540,4
+45662849,4160540,-1
+3784972,4160540,3
+1299948,4160540,4
+Aaaaaarmageddon,4160540,3
+karo1993,4160540,4
+lasiaz,4160540,3
+sophie-522,4160540,3
+Daisy777777777,4160540,-1
+79390200,4160540,-1
+113529566,4160540,3
+genppppp,4160540,1
+44182094,4160540,3
+Rihaulin,4160540,3
+kylinandtianzhe,4160540,4
+2846758,4160540,4
+4409440,4160540,2
+39957958,4160540,3
+66549912,4160540,4
+122757661,4160540,4
+54540243,4160540,4
+semfish,4160540,4
+3192650,4160540,5
+37478005,4160540,4
+58861409,4160540,4
+52898119,4160540,4
+67456292,4160540,5
+63920180,4160540,3
+zoever,4160540,3
+shf993,4160540,4
+124022784,4160540,4
+52256109,4160540,3
+60393651,4160540,4
+129389364,4160540,-1
+2031364,4160540,5
+Schwarzwaelder,4160540,4
+58350801,4160540,4
+79519421,4160540,3
+74262574,4160540,4
+hufey,4160540,5
+94678422,4160540,3
+57122585,4160540,3
+70042257,4160540,3
+94725015,4160540,3
+91356257,4160540,3
+yyumen,4160540,3
+15367255,4160540,4
+54977106,4160540,3
+49582191,4160540,-1
+joyzhai,4160540,4
+2248493,4160540,4
+70683823,4160540,4
+3873448,4160540,4
+teddy77,4160540,2
+ray8040,4160540,-1
+81480860,4160540,3
+72967460,4160540,4
+66619833,4160540,3
+hm512,4160540,4
+70990506,4160540,3
+53696796,4160540,4
+xieao123,4160540,5
+72297338,4160540,4
+harrymoon,4160540,4
+54925937,4160540,3
+flower_crossing,4160540,3
+killeren,4160540,3
+50222908,4160540,5
+95817419,4160540,3
+69807491,4160540,4
+87310621,4160540,4
+qq530898920,4160540,3
+45631897,4160540,4
+79415032,4160540,5
+lzyue,4160540,3
+yangsunny,4160540,4
+4057770,4160540,3
+birdieeos,4160540,3
+wh396011051,4160540,4
+giantchen,4160540,3
+1960285,4160540,3
+31757691,4160540,3
+51879316,4160540,4
+14175664,4160540,3
+tsebb,4160540,4
+51727696,4160540,3
+124869665,4160540,5
+shoucnag,4160540,5
+87903865,4160540,4
+enanm,4160540,3
+45620399,4160540,4
+67125371,4160540,4
+Dream_or_Die,4160540,5
+manmancaiba,4160540,4
+49123147,4160540,4
+51393732,4160540,5
+71180219,4160540,4
+44708171,4160540,4
+37229624,4160540,3
+dier523,4160540,3
+48905575,4160540,4
+64146905,4160540,3
+71648483,4160540,5
+43837940,4160540,4
+kingpein,4160540,5
+50565369,4160540,4
+Zimoer,4160540,3
+50764673,4160540,4
+aprain,4160540,5
+31313042,4160540,3
+45520180,4160540,4
+brucas,4160540,4
+alv1023,4160540,-1
+ambervalley,4160540,4
+BA92101,4160540,4
+57337865,4160540,3
+79257101,4160540,5
+2586114,4160540,3
+sli,4160540,3
+rinnnnka,4160540,3
+jackiex,4160540,4
+83832332,4160540,5
+xuqs,4160540,3
+sumkid,4160540,3
+17298456,4160540,3
+CatPrince,4160540,4
+x_xx,4160540,3
+65020081,4160540,3
+119526629,4160540,4
+zeisiphe,4160540,3
+52810889,4160540,3
+80658765,4160540,5
+54724200,4160540,4
+127379472,4160540,5
+44523640,4160540,4
+14247291,4160540,4
+kulapika,4160540,3
+44585668,4160540,4
+4488251,4160540,3
+50024617,4160540,3
+47316424,4160540,5
+18046588,4160540,4
+63977456,4160540,5
+demondeng,4160540,5
+wen_Schwartz,4160540,3
+64704924,4160540,4
+50234002,4160540,2
+49772004,4160540,3
+rum1412,4160540,4
+48872085,4160540,4
+jian.ai,4160540,4
+qichongecho,4160540,-1
+XiaoXiJun,4160540,5
+1196187,4160540,5
+reMark,4160540,5
+hlfpeter,4160540,5
+4132864,4160540,5
+RivenZhong,4160540,3
+48280227,4160540,5
+127466405,4160540,3
+zjy564896041,4160540,5
+beijingbing,4160540,5
+127728111,4160540,3
+45660564,4160540,5
+geniuskathy,4160540,5
+71265432,4160540,5
+aokam,4160540,5
+62860351,4160540,3
+64182296,4160540,4
+54761085,4160540,-1
+2548740,4160540,3
+55374994,4160540,5
+bryantarecool,4160540,4
+saindvy,4160540,4
+amandachun-gccz,4160540,4
+45198943,4160540,3
+69529988,4160540,3
+1550135,4160540,3
+55577893,4160540,-1
+dreaming66,4160540,4
+Elizabeth-Lee,4160540,4
+44394014,4160540,5
+48807966,4160540,3
+junoshih,4160540,3
+76383724,4160540,3
+35546848,4160540,4
+53094976,4160540,4
+129302886,4160540,2
+77762504,4160540,5
+bachappy1314,4160540,5
+41684888,4160540,5
+75215757,4160540,3
+marcohuang,4160540,4
+66394593,4160540,3
+3409400,4160540,2
+79272694,4160540,5
+71267265,4160540,4
+60715343,4160540,4
+59307428,4160540,3
+18008693,4160540,4
+68332314,4160540,4
+skeletone,4160540,4
+80634044,4160540,4
+13310822,4160540,3
+formydream,4160540,3
+52623943,4160540,4
+ddsto,4160540,5
+82690334,4160540,3
+47211975,4160540,4
+69273736,4160540,4
+jueji,4160540,4
+2432383,4160540,5
+43767898,4160540,3
+zhongxiaojun,4160540,3
+powerddt,4160540,5
+wangyou0720,4160540,4
+littleD,4160540,4
+xiaochongshan,4160540,3
+49662983,4160540,3
+45382410,4160540,4
+52308642,4160540,5
+a3615,4160540,3
+56390988,4160540,4
+72653777,4160540,4
+59222512,4160540,4
+50627941,4160540,4
+89399541,4160540,3
+36803758,4160540,4
+sometimeme,4160540,4
+chengchen0121,4160540,1
+2068462,4160540,1
+65830621,4160540,5
+yangjianmeiyang,4160540,4
+BeanInk,4160540,3
+43832986,4160540,3
+38207907,4160540,5
+26387979,4160540,4
+98090779,4160540,4
+lcqi123,4160540,3
+2187326,4160540,3
+47190086,4160540,5
+74028617,4160540,4
+35158141,4160540,4
+flowermumu,4160540,3
+4674424,4160540,4
+56260092,4160540,4
+66867402,4160540,3
+2048940,4160540,-1
+51029316,4160540,4
+51156582,4160540,4
+73681830,4160540,3
+44435715,4160540,3
+Bill.Liu,4160540,5
+44435715,4160540,3
+Bill.Liu,4160540,5
+123331677,4160540,3
+leave614,4160540,3
+73787373,4160540,-1
+2258556,4160540,3
+24274750,4160540,4
+27427099,4160540,4
+nknymphet,4160540,3
+72148820,4160540,3
+52777499,4160540,5
+11020421,4160540,3
+4311989,4160540,3
+1866298,4160540,4
+bela,4160540,3
+91432391,4160540,4
+zhhongbo,4160540,4
+43956541,4160540,4
+36694478,4160540,3
+forest_desert,4160540,4
+forest_desert,4160540,4
+34065248,4160540,3
+angelikahh,4160540,2
+lu...lu,4160540,3
+27203188,4160540,-1
+83153649,4160540,3
+55677796,4160540,3
+cofield,4160540,5
+36238973,4160540,5
+muini,4160540,3
+db924519251,4160540,2
+34316490,4160540,4
+108235768,4160540,2
+nicos,4160540,5
+pcde,4160540,4
+3547067,4160540,2
+92983760,4160540,4
+66669225,4160540,4
+alivepea,4160540,4
+49273310,4160540,4
+47321536,4160540,3
+likecake,4160540,2
+1548109,4160540,4
+82910448,4160540,5
+tonychyi,4160540,3
+kingfokings,4160540,2
+bejieforever,4160540,3
+2217071,4160540,5
+59108154,4160540,4
+jedan,4160540,1
+44392983,4160540,3
+88428355,4160540,4
+89531686,4160540,4
+49971927,4160540,4
+40449167,4160540,4
+ChaseHu,4160540,4
+Arielcong,4160540,4
+48252359,4160540,4
+43263362,4160540,3
+picnicskins,4160540,3
+chinriya,4160540,3
+delmar,4160540,4
+82973305,4160540,3
+Wade619,4160540,4
+DavyNight,4160540,3
+103707463,4160540,3
+54533341,4160540,4
+74510100,4160540,3
+70534623,4160540,4
+65113652,4160540,4
+halfyoyo,4160540,3
+2186970,4160540,4
+125346898,4160540,-1
+herohaha,4160540,4
+86253847,4160540,4
+50338654,4160540,3
+princeeeee,4160540,4
+blindye,4160540,3
+terrubunny,4160540,5
+59479604,4160540,5
+52451276,4160540,3
+2098235,4160540,3
+tq0fqeu,4160540,3
+alohala1988,4160540,2
+daizy_10,4160540,3
+37784979,4160540,3
+33908385,4160540,4
+yuantown,4160540,4
+dingdean,4160540,1
+124117539,4160540,2
+Boomer,4160540,3
+bilin,4160540,4
+Eudaimonia,4160540,4
+lalimaomao,4160540,3
+eyefy,4160540,4
+kuroneko2002,4160540,4
+abyssknight,4160540,5
+112301712,4160540,4
+50823402,4160540,4
+34575311,4160540,3
+83377603,4160540,5
+DEMO9266,4160540,4
+49678827,4160540,4
+101167339,4160540,5
+4080944,4160540,3
+93465458,4160540,4
+2809412,4160540,4
+129183631,4160540,5
+xubeisi,4160540,5
+rhuang,4160540,3
+74115192,4160540,4
+90586395,4160540,4
+Ivhuis,4160540,4
+54849133,4160540,4
+xiaoczhang,4160540,5
+wendy_may,4160540,4
+sept8,4160540,4
+jaens,4160540,3
+alienwang,4160540,5
+wengzhijuan,4160540,-1
+wengzhijuan,4160540,-1
+pengyn,4160540,4
+63011809,4160540,4
+44725365,4160540,3
+iRayc,4160540,4
+wangboyuan,4160540,4
+95767683,4160540,4
+anxel,4160540,-1
+ySrrrrr,4160540,4
+mcis,4160540,3
+killmystery,4160540,1
+buobo,4160540,4
+55540547,4160540,3
+88605317,4160540,5
+2234320,4160540,4
+1183940,4160540,-1
+45315021,4160540,3
+2785610,4160540,4
+3296630,4160540,3
+snailjia,4160540,-1
+snailjia,4160540,-1
+3931171,4160540,3
+lostlandist,4160540,5
+62517955,4160540,-1
+81404706,4160540,4
+46714118,4160540,3
+ranfei,4160540,2
+53462734,4160540,4
+situfang,4160540,3
+mylovejack12,4160540,4
+woshixiaoqi,4160540,4
+59802835,4160540,4
+42948156,4160540,3
+52729351,4160540,5
+K_kk,4160540,4
+60133071,4160540,3
+83730877,4160540,5
+cucnmql,4160540,3
+vvish,4160540,3
+SolarWoo,4160540,3
+65730226,4160540,4
+spaceli,4160540,3
+Ghost.Melody,4160540,4
+72241538,4160540,3
+monkito,4160540,4
+49118645,4160540,4
+65438415,4160540,3
+icephoenixone,4160540,4
+58840542,4160540,3
+zeroiris,4160540,-1
+42961533,4160540,4
+TualatriX,4160540,4
+55817697,4160540,4
+105871087,4160540,3
+3382023,4160540,4
+koonkit,4160540,3
+49295714,4160540,5
+36695909,4160540,4
+weiyubin1987,4160540,4
+3233761,4160540,5
+83377938,4160540,4
+51266971,4160540,3
+iceboland,4160540,5
+fcinter,4160540,3
+62626398,4160540,4
+81506415,4160540,2
+tt1426,4160540,4
+128116217,4160540,5
+46658511,4160540,3
+ccen28,4160540,4
+minhom,4160540,4
+Genjo,4160540,3
+ytismile,4160540,3
+bananayuan,4160540,3
+49587231,4160540,5
+eva3190,4160540,5
+54702669,4160540,5
+island-lll,4160540,3
+59807933,4160540,5
+2776951,4160540,5
+45501861,4160540,4
+yangisyang,4160540,4
+52202142,4160540,4
+68186986,4160540,5
+matthew1323,4160540,3
+89341086,4160540,4
+iissy,4160540,4
+freezhang527,4160540,4
+76998008,4160540,3
+46766934,4160540,3
+6023961,4160540,3
+77288841,4160540,4
+57896401,4160540,4
+keesh,4160540,4
+58135341,4160540,4
+33830687,4160540,2
+1724394,4160540,4
+32767730,4160540,4
+75909451,4160540,4
+unbounder,4160540,3
+58262203,4160540,5
+45107128,4160540,5
+2095236,4160540,3
+4411646,4160540,3
+113270295,4160540,4
+foxsu,4160540,5
+49490666,4160540,3
+fstuntun,4160540,4
+63572086,4160540,4
+117307392,4160540,4
+35578162,4160540,4
+gyn6biggun,4160540,3
+CrippledInside,4160540,3
+lcyjh1123581321,4160540,4
+81374641,4160540,3
+shinysky,4160540,4
+longlanglang,4160540,4
+61098125,4160540,5
+60142596,4160540,4
+naturalq,4160540,4
+naturalq,4160540,4
+47047008,4160540,4
+49041095,4160540,4
+5594345,4160540,4
+fancy1012,4160540,4
+neochao,4160540,4
+2597684,4160540,4
+46968893,4160540,5
+52989848,4160540,4
+54148554,4160540,5
+63454756,4160540,3
+51617541,4160540,4
+55802778,4160540,4
+greenflowersea,4160540,-1
+mjtang,4160540,4
+48990139,4160540,3
+51938291,4160540,4
+128409852,4160540,4
+w258w,4160540,4
+48856056,4160540,4
+vinta,4160540,4
+donnie,4160540,4
+wutongsuliang,4160540,3
+cloehui,4160540,4
+122787137,4160540,5
+bdnet,4160540,4
+chenjiusan,4160540,5
+grigor-grigory,4160540,4
+fengxiaoyu,4160540,5
+4429031,4160540,3
+79116802,4160540,5
+bassapple,4160540,-1
+pospoles,4160540,4
+97517593,4160540,3
+2213510,4160540,4
+80902505,4160540,3
+fnx,4160540,3
+58896419,4160540,4
+klot,4160540,4
+63822026,4160540,4
+xiguatang,4160540,3
+59583944,4160540,4
+eastease,4160540,3
+jintiandeng,4160540,3
+87473298,4160540,4
+115370500,4160540,4
+80430212,4160540,4
+29386645,4160540,5
+75704681,4160540,4
+kurobox,4160540,4
+cicici2002,4160540,3
+67680996,4160540,3
+70182542,4160540,5
+58229186,4160540,3
+55585297,4160540,4
+joyxu,4160540,-1
+2692091,4160540,3
+1920062,4160540,4
+RoAch000,4160540,4
+42132888,4160540,3
+42132888,4160540,3
+zeldamoon,4160540,5
+114353499,4160540,3
+45598227,4160540,4
+LabVIEW,4160540,5
+sunbox,4160540,3
+64565637,4160540,3
+108168194,4160540,3
+kaiwu,4160540,4
+doubandeyoung,4160540,4
+1666932,4160540,4
+61111185,4160540,4
+45431775,4160540,4
+4498680,4160540,3
+100574320,4160540,4
+15005083,4160540,3
+elushen,4160540,4
+51156864,4160540,4
+81711510,4160540,4
+findmusic,4160540,4
+13480447,4160540,5
+bmxq3739,4160540,4
+ifuya,4160540,4
+55998876,4160540,4
+113068656,4160540,4
+oursonkuma,4160540,3
+Hee_Tiina,4160540,3
+BIN_CHANG,4160540,3
+52275922,4160540,4
+yiri,4160540,-1
+BluePudge,4160540,4
+chenxiqian,4160540,4
+115657007,4160540,3
+ngc4151,4160540,4
+ljclaire,4160540,3
+fotoz,4160540,5
+jiachangting,4160540,4
+53900014,4160540,4
+2914721,4160540,3
+75088799,4160540,2
+32928728,4160540,4
+tolirong,4160540,2
+59945441,4160540,4
+vinca-hsu,4160540,5
+xixikai,4160540,4
+126230201,4160540,-1
+7223165,4160540,5
+126818106,4160540,4
+1166232,4160540,2
+87469999,4160540,5
+1635650,4160540,4
+53829242,4160540,4
+1614995,4160540,4
+LotteMars,4160540,4
+48247604,4160540,4
+87156689,4160540,5
+fly2best,4160540,5
+33263657,4160540,5
+nbyuan,4160540,3
+greenpasta,4160540,4
+58078884,4160540,4
+52644616,4160540,3
+Blanche,4160540,3
+alfiestudio,4160540,4
+1381065,4160540,3
+53526243,4160540,3
+38648875,4160540,5
+46889127,4160540,4
+45448167,4160540,5
+angelzhang,4160540,3
+4312876,4160540,4
+1463503,4160540,4
+46572945,4160540,5
+68437634,4160540,4
+71929336,4160540,3
+67357105,4160540,4
+60192740,4160540,4
+53724452,4160540,3
+fantasychang,4160540,4
+brightchai,4160540,5
+115902289,4160540,4
+4284029,4160540,5
+40684002,4160540,3
+58977127,4160540,4
+34805156,4160540,4
+97052938,4160540,5
+41610301,4160540,4
+4116226,4160540,4
+frnong,4160540,4
+melentao,4160540,2
+SuzyMao,4160540,2
+arlashi,4160540,3
+xiaoxiaodeyuanz,4160540,3
+cwyalpha,4160540,4
+71937916,4160540,3
+41387006,4160540,4
+57405167,4160540,4
+58801917,4160540,4
+66623318,4160540,3
+65075320,4160540,5
+128443021,4160540,5
+55308976,4160540,3
+80559391,4160540,4
+120524672,4160540,5
+xilouchen,4160540,3
+101625344,4160540,3
+63462794,4160540,4
+59914430,4160540,5
+wll789ly,4160540,4
+49266863,4160540,4
+67330888,4160540,3
+Yurki,4160540,3
+fangyuan1987,4160540,3
+44356747,4160540,4
+3511814,4160540,4
+6004495,4160540,4
+53581844,4160540,4
+bombbombbombbom,4160540,3
+108496496,4160540,4
+nianhuaapple,4160540,3
+47095353,4160540,3
+2889153,4160540,1
+82690479,4160540,5
+sosofly,4160540,4
+zene,4160540,4
+77084511,4160540,4
+47717774,4160540,4
+shibal,4160540,4
+49247233,4160540,4
+34638576,4160540,-1
+SeaGod,4160540,4
+18439305,4160540,2
+69016984,4160540,4
+119159151,4160540,4
+2265615,4160540,3
+29534182,4160540,4
+randomlee,4160540,4
+evilQin,4160540,2
+59164881,4160540,3
+Desea,4160540,4
+2363758,4160540,3
+92580665,4160540,5
+58539257,4160540,4
+43390539,4160540,5
+68610149,4160540,2
+57371510,4160540,3
+caolong,4160540,4
+71961235,4160540,3
+65004495,4160540,4
+46120245,4160540,3
+xiyilo,4160540,5
+3438313,4160540,4
+85258559,4160540,4
+noringing,4160540,1
+PabloNeruda,4160540,4
+58072209,4160540,3
+fsgj4444,4160540,3
+121922274,4160540,5
+louis4498,4160540,4
+92085198,4160540,4
+59336433,4160540,3
+46739678,4160540,4
+Xia0_K,4160540,5
+a632157547,4160540,3
+56291360,4160540,4
+ericchen_xh,4160540,4
+55021891,4160540,3
+48370487,4160540,4
+hxf1919,4160540,4
+39415945,4160540,3
+53307065,4160540,4
+108942456,4160540,3
+63127179,4160540,4
+fung_71,4160540,4
+reave,4160540,4
+notmelody,4160540,3
+48823789,4160540,4
+ca04132,4160540,5
+46133817,4160540,3
+njtintin,4160540,4
+sunnyisle,4160540,3
+wentaoxie,4160540,3
+76371893,4160540,-1
+u2bb,4160540,4
+128340217,4160540,3
+128832790,4160540,4
+43768697,4160540,4
+fyits,4160540,4
+41441007,4160540,4
+RITABMW,4160540,4
+62551258,4160540,3
+sugarcube,4160540,5
+Cellvip,4160540,3
+52219048,4160540,4
+2628019,4160540,4
+62323038,4160540,4
+121762921,4160540,4
+32251971,4160540,5
+mmmpgcd,4160540,3
+76417903,4160540,4
+56143102,4160540,4
+zya5411,4160540,5
+izune,4160540,4
+50193644,4160540,5
+jackiejo,4160540,4
+19469713,4160540,4
+59235428,4160540,5
+huangrui1016,4160540,3
+darkhands,4160540,-1
+43891940,4160540,4
+89804270,4160540,4
+candyrice,4160540,4
+43136444,4160540,4
+kitty_kugoo,4160540,3
+stolee,4160540,3
+75741734,4160540,4
+onlyloll,4160540,4
+59544418,4160540,3
+veroniques,4160540,4
+Chenzhouyun1995,4160540,4
+43720060,4160540,5
+3035447,4160540,3
+77343772,4160540,-1
+rye39,4160540,3
+47877003,4160540,-1
+tychool,4160540,-1
+piaoweier,4160540,4
+75007342,4160540,4
+Sunbowinrain,4160540,4
+37262549,4160540,4
+33822786,4160540,4
+cardilia,4160540,4
+yunze55,4160540,4
+40804228,4160540,-1
+43891249,4160540,4
+43459920,4160540,4
+75436336,4160540,4
+53439322,4160540,4
+c-bode,4160540,4
+woruili,4160540,3
+kazuho,4160540,3
+52327328,4160540,3
+78806633,4160540,3
+25982397,4160540,3
+64530044,4160540,3
+Isil.G,4160540,3
+92945557,4160540,4
+puppy33,4160540,5
+ivysyi,4160540,4
+68547609,4160540,4
+56821182,4160540,3
+zhongxing,4160540,4
+57217044,4160540,4
+52111107,4160540,4
+nailu99,4160540,5
+artur,4160540,5
+73061172,4160540,5
+50747504,4160540,2
+101393970,4160540,5
+63412313,4160540,3
+70805035,4160540,4
+80619112,4160540,3
+4629743,4160540,5
+53717841,4160540,3
+79936861,4160540,4
+119631821,4160540,3
+3909726,4160540,4
+122302954,4160540,3
+2485814,4160540,5
+76414184,4160540,3
+48501189,4160540,4
+11889754,4160540,4
+72594786,4160540,5
+keytoworld,4160540,4
+Creep_,4160540,3
+74541142,4160540,3
+zkn911,4160540,4
+lizhai,4160540,3
+51513008,4160540,4
+xiaomeizi22,4160540,4
+1341329,4160540,4
+43708089,4160540,5
+37280371,4160540,3
+apjuice,4160540,3
+3066037,4160540,3
+50169026,4160540,3
+70160255,4160540,2
+8527993,4160540,3
+ring3,4160540,4
+42727237,4160540,4
+58808535,4160540,3
+51087531,4160540,5
+71203011,4160540,3
+VINCENTVCHAN,4160540,4
+rpp,4160540,4
+cactus.,4160540,4
+nicy119,4160540,4
+3119464,4160540,3
+78113032,4160540,4
+70522766,4160540,2
+55943749,4160540,4
+55906244,4160540,3
+41099035,4160540,4
+2229062,4160540,3
+simpledeer,4160540,3
+4774837,4160540,4
+ztl-poppy,4160540,4
+M_Caesar,4160540,3
+manchild,4160540,4
+sukiffff,4160540,3
+jessietam,4160540,4
+51050317,4160540,5
+56810105,4160540,4
+49050823,4160540,-1
+Ray_u,4160540,3
+4823170,4160540,4
+3119745,4160540,2
+72979356,4160540,5
+59529440,4160540,5
+Sep.7,4160540,3
+40308928,4160540,4
+pierrewrs,4160540,4
+my_azure_sky,4160540,5
+wyfsmd,4160540,2
+starlife,4160540,4
+77186305,4160540,4
+50027948,4160540,4
+74816528,4160540,4
+silentmonkey,4160540,5
+48725678,4160540,3
+cios,4160540,3
+seasunflower,4160540,4
+fatansy,4160540,4
+43171729,4160540,5
+cvzl,4160540,4
+2309738,4160540,3
+1783337,4160540,3
+74536227,4160540,3
+Librebing,4160540,2
+pengpengyue,4160540,4
+32814387,4160540,4
+10793041,4160540,4
+79194135,4160540,4
+50924290,4160540,4
+sjzqzkn,4160540,4
+43239303,4160540,3
+42034925,4160540,3
+Hero14,4160540,4
+amy_1119,4160540,4
+52153576,4160540,3
+64418004,4160540,4
+36350346,4160540,4
+fatfatpanda,4160540,3
+sysonchen,4160540,5
+tianjianshuo,4160540,5
+lidiss,4160540,4
+doingcando,4160540,4
+ameleseue,4160540,4
+MonisaDuu,4160540,5
+52411055,4160540,3
+bananafishdodo,4160540,2
+77769633,4160540,4
+QQY,4160540,4
+1096571,4160540,3
+78787255,4160540,4
+120269206,4160540,5
+hsupurr,4160540,3
+57630254,4160540,4
+32098351,4160540,4
+48038723,4160540,3
+momokoochan,4160540,5
+64110948,4160540,4
+128948147,4160540,4
+3007182,4160540,4
+sanhao_love,4160540,4
+lisa417,4160540,4
+monoideism,4160540,4
+57542144,4160540,5
+sweetie_blondie,4160540,4
+69066282,4160540,4
+69066282,4160540,4
+ayumiH,4160540,3
+3189714,4160540,4
+4595070,4160540,4
+49937057,4160540,2
+124988562,4160540,4
+wzjzxgj,4160540,4
+CKyan,4160540,4
+36444572,4160540,3
+1061640,4160540,4
+81103621,4160540,4
+71529314,4160540,2
+chatmeng,4160540,4
+121263235,4160540,2
+80691286,4160540,4
+52898475,4160540,4
+64563247,4160540,4
+Wang.MY,4160540,5
+ziyoupaifeizai,4160540,5
+84334911,4160540,4
+57828105,4160540,3
+90412275,4160540,3
+38500219,4160540,5
+51635015,4160540,4
+103350106,4160540,2
+sunny1992,4160540,2
+61074050,4160540,3
+52284138,4160540,4
+48539445,4160540,5
+58082436,4160540,5
+61049464,4160540,4
+Butterfly_M,4160540,3
+weiwei1020,4160540,4
+Collins1995,4160540,3
+10125205,4160540,4
+onlyblue16,4160540,4
+cainroziel,4160540,3
+qixiaole,4160540,3
+kong_bai_ge,4160540,5
+54959481,4160540,4
+51490972,4160540,4
+koushisi,4160540,3
+59488711,4160540,4
+68796799,4160540,3
+motou0328,4160540,3
+47199948,4160540,3
+haroolovbom,4160540,5
+4411166,4160540,3
+lm9527,4160540,5
+1446460,4160540,3
+85472462,4160540,3
+51172081,4160540,3
+120266213,4160540,3
+gongqingkui,4160540,4
+56980748,4160540,5
+72985710,4160540,3
+73873085,4160540,5
+4527709,4160540,4
+iamliving,4160540,4
+35667000,4160540,4
+59217273,4160540,4
+douzihao,4160540,4
+davyjones,4160540,4
+30941541,4160540,5
+2644737,4160540,3
+109169757,4160540,3
+ChalmersC,4160540,4
+105859099,4160540,2
+115366212,4160540,5
+78192927,4160540,4
+elisha_gai,4160540,4
+AndiChiao,4160540,4
+bihu,4160540,4
+Ozu,4160540,4
+55618754,4160540,3
+67088127,4160540,4
+wanghuzou,4160540,4
+vampire1900,4160540,4
+cjshangbuqi,4160540,4
+68952401,4160540,4
+90475568,4160540,1
+102191343,4160540,3
+alazyer,4160540,5
+69035619,4160540,3
+56288464,4160540,3
+44477822,4160540,5
+10128811,4160540,4
+63584381,4160540,4
+51540920,4160540,5
+Utopiartist,4160540,4
+ivylan,4160540,5
+leo2009-12,4160540,4
+65263676,4160540,5
+103650057,4160540,4
+46144657,4160540,2
+46880191,4160540,4
+doll88,4160540,4
+3045095,4160540,5
+tkseraph,4160540,5
+88522948,4160540,3
+48694579,4160540,-1
+64887412,4160540,3
+61823164,4160540,3
+4409109,4160540,3
+3548787,4160540,5
+72491929,4160540,4
+juzi1117,4160540,4
+freemanhu,4160540,4
+34216133,4160540,3
+chunz666,4160540,5
+4856520,4160540,5
+felt,4160540,5
+loveirina,4160540,2
+ice-yan,4160540,4
+37424688,4160540,3
+45441727,4160540,5
+121270653,4160540,1
+3703670,4160540,3
+34592808,4160540,4
+phonexu,4160540,4
+heymona,4160540,3
+lapand,4160540,5
+104365503,4160540,5
+91746178,4160540,4
+59378291,4160540,3
+11226693,4160540,4
+128136989,4160540,5
+yaochunpeng,4160540,3
+daniboy,4160540,3
+37499308,4160540,4
+53608504,4160540,4
+dinglinsusu,4160540,5
+53317988,4160540,3
+Janeyoung,4160540,4
+colour-blue,4160540,4
+67350499,4160540,-1
+60875087,4160540,-1
+2725722,4160540,5
+jane85,4160540,4
+43617068,4160540,4
+sd0225,4160540,5
+67126761,4160540,4
+52226268,4160540,4
+47415286,4160540,3
+46091379,4160540,4
+41949292,4160540,3
+49325422,4160540,4
+63336838,4160540,4
+3794173,4160540,4
+SeaLionYouth,4160540,3
+2663629,4160540,3
+53988209,4160540,3
+18360610,4160540,4
+62704108,4160540,3
+jessiehxj,4160540,3
+ly19910801,4160540,4
+82026124,4160540,4
+aqweji,4160540,5
+Kevin3,4160540,4
+2393425,4160540,4
+kirstyng,4160540,3
+44303318,4160540,4
+mumuaiu,4160540,4
+45612704,4160540,4
+Obtson,4160540,2
+55357697,4160540,4
+4728940,4160540,2
+Sinept,4160540,3
+tenko,4160540,3
+2401351,4160540,3
+fengjiansun,4160540,4
+66139828,4160540,3
+98649579,4160540,4
+sisujerome,4160540,4
+3456645,4160540,2
+1494955,4160540,4
+mywordmyworld,4160540,4
+hudachazi1227,4160540,4
+2334495,4160540,-1
+43497624,4160540,4
+RainbowRen,4160540,4
+enimo,4160540,3
+nicolaswang,4160540,4
+FSSSSS,4160540,4
+lllllllei,4160540,3
+128299048,4160540,4
+15098138,4160540,3
+102077432,4160540,4
+roger589,4160540,3
+ada-xiayu,4160540,3
+72522615,4160540,3
+cmisland,4160540,5
+wenteng1988,4160540,3
+yuxi_space,4160540,4
+foryoungheart,4160540,4
+60746988,4160540,3
+Coeur_De_Lion,4160540,4
+46056151,4160540,5
+toostupid,4160540,3
+50519870,4160540,4
+58706786,4160540,3
+1265797,4160540,3
+84960286,4160540,4
+60818367,4160540,3
+64746643,4160540,5
+78720836,4160540,3
+sam_smile,4160540,4
+44834403,4160540,4
+jerry1992,4160540,4
+76630020,4160540,3
+3613790,4160540,4
+59156667,4160540,3
+52634459,4160540,4
+itty,4160540,3
+69927384,4160540,4
+4582318,4160540,2
+mylittle_banana,4160540,4
+35459636,4160540,3
+63345924,4160540,4
+3858718,4160540,2
+youyeyi,4160540,4
+palermo97,4160540,3
+cadick,4160540,4
+linngallery,4160540,5
+55596130,4160540,3
+3878634,4160540,4
+128569083,4160540,4
+2610769,4160540,3
+guey4,4160540,5
+35474492,4160540,5
+121148510,4160540,4
+lanxianda,4160540,3
+firekisser,4160540,3
+57966600,4160540,4
+siqooo,4160540,5
+46959229,4160540,2
+izume,4160540,4
+papaduty,4160540,4
+66234722,4160540,4
+pyf1991,4160540,4
+pyf1991,4160540,4
+57784548,4160540,4
+32865838,4160540,4
+liquor,4160540,3
+75691865,4160540,3
+giacintaxx,4160540,5
+91957409,4160540,4
+72030393,4160540,5
+47568574,4160540,4
+yao120,4160540,3
+65813989,4160540,4
+qingchun1943,4160540,2
+63257932,4160540,3
+4214564,4160540,5
+76763638,4160540,4
+90807462,4160540,4
+kikocastle,4160540,4
+xsyn,4160540,2
+74059129,4160540,4
+2491769,4160540,3
+1530155,4160540,3
+51113941,4160540,4
+fsivyneof4,4160540,4
+61667051,4160540,4
+21139926,4160540,3
+s_shanshan,4160540,3
+baimaheizong,4160540,3
+2162550,4160540,4
+67976989,4160540,3
+44656195,4160540,4
+MissAria_R,4160540,3
+62390746,4160540,3
+4544453,4160540,-1
+57753980,4160540,4
+115115523,4160540,5
+90729884,4160540,4
+Saggezza,4160540,4
+119215261,4160540,4
+tychio,4160540,5
+guyuejiayu,4160540,4
+LincolnSixEcho,4160540,3
+liarb,4160540,3
+3589275,4160540,3
+73856461,4160540,5
+witchweiwei,4160540,4
+43840425,4160540,4
+126031305,4160540,3
+jayslong,4160540,5
+cherrye,4160540,4
+74013716,4160540,3
+104558736,4160540,5
+58888075,4160540,4
+cskywalker,4160540,4
+mellowang,4160540,5
+126702436,4160540,2
+64689820,4160540,3
+4787852,4160540,4
+54807886,4160540,3
+li_1314,4160540,3
+30005056,4160540,4
+miss.version,4160540,4
+42504061,4160540,4
+1670915,4160540,4
+xuezhiyuan-,4160540,4
+jinbing,4160540,3
+fjmxy,4160540,-1
+75184056,4160540,3
+42360628,4160540,3
+illllls,4160540,4
+57006141,4160540,3
+tibetkids,4160540,4
+127225715,4160540,2
+citizencala,4160540,4
+54473419,4160540,5
+1268355,4160540,4
+106163472,4160540,4
+54540628,4160540,4
+Bloodworks,4160540,3
+76462779,4160540,1
+skyearthone,4160540,4
+80914640,4160540,3
+Lylaohyeah,4160540,5
+2658903,4160540,4
+52872697,4160540,4
+127606527,4160540,4
+79637543,4160540,5
+114333708,4160540,4
+81808162,4160540,4
+alft-huahua,4160540,5
+60588154,4160540,2
+yourblossom,4160540,4
+73571891,4160540,5
+47056580,4160540,3
+80319590,4160540,3
+jeanswearj,4160540,2
+alfred_348,4160540,3
+102960113,4160540,2
+56102108,4160540,2
+1775081,4160540,4
+Ashin1118,4160540,4
+82809906,4160540,4
+50744404,4160540,4
+7795838,4160540,5
+68864457,4160540,4
+47859941,4160540,3
+3429384,4160540,4
+zuojun,4160540,3
+53404103,4160540,4
+54375575,4160540,3
+Luci4er,4160540,5
+q114055080,4160540,-1
+49472128,4160540,5
+37370038,4160540,5
+elaine14,4160540,5
+sirmask,4160540,4
+47604910,4160540,4
+70301806,4160540,4
+47190979,4160540,4
+flyindance_fei,4160540,2
+60025721,4160540,4
+48514608,4160540,3
+54066175,4160540,5
+sanshuicaosuwen,4160540,3
+46311374,4160540,3
+yumj,4160540,4
+oldrabbit,4160540,5
+53875327,4160540,3
+2827733,4160540,3
+duduxiongzhifu,4160540,2
+61012713,4160540,4
+allenzn125,4160540,3
+kenson,4160540,4
+102876006,4160540,3
+sylcp,4160540,4
+JennyZhao16,4160540,4
+34710237,4160540,3
+88863939,4160540,4
+Quattro1980,4160540,4
+45527228,4160540,4
+cymryan,4160540,4
+renzhifilm,4160540,3
+32195437,4160540,4
+51885129,4160540,3
+2168233,4160540,5
+2842318,4160540,4
+silentsunflower,4160540,3
+veronica0701,4160540,5
+52782307,4160540,4
+steamnoob,4160540,3
+102891153,4160540,4
+3253959,4160540,5
+sweetiantian,4160540,4
+1782474,4160540,3
+67731504,4160540,4
+50366170,4160540,4
+lsytoin,4160540,4
+82522748,4160540,5
+85081969,4160540,4
+45811626,4160540,3
+an.night,4160540,2
+28953793,4160540,5
+xunzhi,4160540,4
+23335882,4160540,5
+72207422,4160540,4
+acenqiu,4160540,4
+42410152,4160540,5
+mila,4160540,3
+ODODOD,4160540,5
+sail.0,4160540,5
+81914486,4160540,4
+wizards,4160540,5
+renzw,4160540,-1
+kekefeng,4160540,5
+92017914,4160540,3
+1920409,4160540,3
+just-forever,4160540,4
+46564377,4160540,5
+jingcailife,4160540,4
+BJm,4160540,4
+Le5in,4160540,3
+1279239,4160540,4
+72480107,4160540,3
+eaudevie,4160540,4
+53362229,4160540,4
+70006548,4160540,5
+2718336,4160540,4
+59904891,4160540,4
+75956787,4160540,4
+47509216,4160540,5
+53015845,4160540,4
+55529089,4160540,4
+32536351,4160540,3
+4603766,4160540,2
+51524489,4160540,3
+qintt105,4160540,4
+dengxian123,4160540,3
+63444982,4160540,4
+greenpeaser,4160540,5
+sharkspeare,4160540,4
+3977688,4160540,4
+28736165,4160540,3
+48717761,4160540,4
+57001880,4160540,3
+cici_wtf13,4160540,4
+erbility,4160540,3
+45300768,4160540,3
+51380962,4160540,4
+AuRevoir7,4160540,4
+53298099,4160540,4
+66951342,4160540,4
+3392062,4160540,3
+65498039,4160540,4
+ruibobox,4160540,5
+xunliwu,4160540,4
+63602193,4160540,4
+113528717,4160540,4
+roxymusic,4160540,4
+ksky,4160540,5
+92735028,4160540,4
+40610609,4160540,3
+126842883,4160540,3
+s5ven,4160540,2
+1875805,4160540,4
+76376590,4160540,4
+2504247,4160540,3
+62234771,4160540,4
+76197558,4160540,4
+80209748,4160540,4
+81812897,4160540,5
+48712788,4160540,4
+tinychen,4160540,5
+50438416,4160540,4
+desmond1982,4160540,3
+sheenshuay,4160540,3
+2764417,4160540,5
+72225494,4160540,5
+Eudemonia-moon,4160540,3
+2118914,4160540,-1
+121126768,4160540,5
+ampire_dan,4160540,4
+104158167,4160540,5
+saviorzy,4160540,5
+86093744,4160540,5
+49984882,4160540,4
+3435112,4160540,3
+J7N,4160540,3
+kzp574343931,4160540,5
+57548410,4160540,3
+mint29,4160540,3
+wjxmygc,4160540,3
+11503015,4160540,3
+cyy771,4160540,4
+54907080,4160540,4
+4123019,4160540,4
+brandnewstart,4160540,3
+celinedsam,4160540,3
+B-162,4160540,3
+30282365,4160540,3
+skyuuka,4160540,4
+64154441,4160540,4
+59383084,4160540,4
+sunshine2.0,4160540,4
+saya.,4160540,4
+eugne,4160540,4
+44482337,4160540,5
+107495405,4160540,3
+nem,4160540,3
+120187893,4160540,3
+airinsky,4160540,4
+48304899,4160540,4
+3538758,4160540,4
+53089248,4160540,4
+47217799,4160540,4
+imsunmmer,4160540,3
+61995903,4160540,3
+43921829,4160540,4
+wmz1106,4160540,4
+freewhao,4160540,5
+4412861,4160540,5
+128652326,4160540,3
+movie8,4160540,4
+67503021,4160540,4
+119903956,4160540,4
+80570322,4160540,3
+52097875,4160540,4
+44611044,4160540,4
+65408583,4160540,4
+2700957,4160540,4
+77153470,4160540,4
+Perry_Chan,4160540,4
+66967732,4160540,3
+116073490,4160540,4
+sfm,4160540,5
+78517327,4160540,4
+3876144,4160540,4
+yanpealew,4160540,4
+jumpjumpgogogo,4160540,4
+zhangtingrui,4160540,4
+Snmusic,4160540,-1
+gluttony6,4160540,4
+49870315,4160540,3
+yaomonan,4160540,5
+3086120,4160540,4
+crab802,4160540,4
+fishlittle,4160540,-1
+52826734,4160540,3
+90402607,4160540,5
+qqskyaa126,4160540,4
+xiamubeishi,4160540,5
+tt2792654,4160540,4
+4500361,4160540,4
+woodring,4160540,-1
+82898495,4160540,4
+123235799,4160540,4
+57549243,4160540,4
+xiaochanzi,4160540,4
+67288880,4160540,4
+85084961,4160540,3
+fionasocool,4160540,4
+fickKPCh,4160540,4
+53046797,4160540,4
+35409946,4160540,4
+xdcheung,4160540,5
+56742059,4160540,4
+83395003,4160540,4
+summerjie,4160540,3
+66979855,4160540,4
+2843764,4160540,5
+JosephineQv,4160540,5
+53257525,4160540,5
+may_you_never,4160540,3
+Diane_myl,4160540,4
+z00c,4160540,4
+47757400,4160540,5
+4873862,4160540,5
+3438528,4160540,3
+4242728,4160540,4
+59236889,4160540,2
+tomas-yang,4160540,4
+70300693,4160540,4
+99598599,4160540,3
+126948662,4160540,4
+79092004,4160540,4
+3705182,4160540,4
+4685842,4160540,5
+68467794,4160540,3
+liumxpeng,4160540,5
+83406180,4160540,4
+35450002,4160540,3
+57305886,4160540,3
+deepxi,4160540,4
+2033498,4160540,3
+2909826,4160540,5
+81545235,4160540,4
+TheBurningPalms,4160540,4
+39877849,4160540,3
+58456017,4160540,4
+109530447,4160540,3
+djoko,4160540,3
+32835447,4160540,4
+62662196,4160540,5
+59361957,4160540,3
+39086210,4160540,4
+goodmengmeng,4160540,4
+6821770,4160540,4
+53437305,4160540,4
+stilllive,4160540,5
+1493055,4160540,4
+15462238,4160540,3
+45724409,4160540,3
+60783143,4160540,4
+50776710,4160540,4
+14405820,4160540,4
+hr77,4160540,3
+51449484,4160540,4
+diorsunrise,4160540,4
+120372720,4160540,4
+redangel,4160540,4
+53569227,4160540,4
+4356952,4160540,4
+4685727,4160540,3
+2963229,4160540,3
+52889528,4160540,3
+joysleep,4160540,4
+dumurphy,4160540,5
+rivers543,4160540,4
+3560661,4160540,5
+70415985,4160540,4
+essecancer,4160540,-1
+95243004,4160540,3
+Sylar10,4160540,4
+luxuriant,4160540,-1
+79561217,4160540,5
+120779558,4160540,5
+49228448,4160540,4
+4521975,4160540,4
+35739270,4160540,4
+2352547,4160540,2
+48313221,4160540,4
+Kevser,4160540,-1
+dairytea,4160540,3
+38246464,4160540,4
+83766715,4160540,4
+merengue,4160540,3
+50249730,4160540,5
+fish.in.bottle,4160540,3
+l6226227,4160540,4
+62668317,4160540,5
+miss.sadness,4160540,3
+66644571,4160540,3
+50732923,4160540,4
+2032764,4160540,4
+5116652,4160540,3
+lovetatum,4160540,3
+55644124,4160540,4
+sinclair,4160540,4
+83796210,4160540,4
+63664459,4160540,4
+52624380,4160540,3
+allusioni,4160540,3
+allusioni,4160540,3
+74418627,4160540,4
+strawman81,4160540,5
+joyyoung19,4160540,5
+marryrene,4160540,5
+1885523,4160540,3
+daliaodelinju,4160540,4
+aiwengfan,4160540,5
+Garing,4160540,4
+59760298,4160540,4
+82022775,4160540,3
+58105572,4160540,4
+18020051,4160540,4
+83895101,4160540,3
+zxzzzs,4160540,5
+VendettaChild,4160540,-1
+39351443,4160540,4
+giantguo,4160540,4
+zcy0505,4160540,4
+121173641,4160540,4
+reneelv,4160540,4
+Jerusalem,4160540,5
+81107474,4160540,3
+onlyYH,4160540,3
+rongjiexuanlv,4160540,4
+huiverci,4160540,4
+rememberjuly,4160540,4
+102747007,4160540,3
+guaishouyaya,4160540,4
+iyuge,4160540,4
+40789061,4160540,3
+73421795,4160540,3
+122194227,4160540,4
+66663285,4160540,5
+jessica0118,4160540,4
+iceout,4160540,4
+90546161,4160540,4
+43121658,4160540,4
+qi-shao-shang,4160540,4
+73662943,4160540,4
+celt,4160540,-1
+53792834,4160540,4
+57442857,4160540,4
+75309704,4160540,4
+maxurumu,4160540,4
+124129982,4160540,3
+2799911,4160540,4
+67333061,4160540,5
+fuyun2710,4160540,3
+71542304,4160540,3
+2254547,4160540,5
+rackylo,4160540,5
+38221735,4160540,5
+58899374,4160540,4
+71814035,4160540,2
+53932443,4160540,4
+1553246,4160540,4
+42993095,4160540,5
+nadileaf,4160540,4
+4309765,4160540,4
+grey_sugar,4160540,2
+tree0912,4160540,5
+49807065,4160540,4
+bl.mio,4160540,3
+50585223,4160540,3
+88201815,4160540,3
+82485056,4160540,3
+47588521,4160540,4
+zhifeige,4160540,4
+hgn127,4160540,4
+65641754,4160540,4
+3956290,4160540,3
+56180987,4160540,4
+wennan_z,4160540,5
+84039736,4160540,4
+2610986,4160540,3
+50353681,4160540,5
+52876797,4160540,3
+55340250,4160540,5
+57460299,4160540,5
+Royxlam,4160540,3
+35827809,4160540,3
+crazyaquarius,4160540,3
+80466570,4160540,4
+zdoudou,4160540,4
+rcx92,4160540,4
+62837123,4160540,4
+66686811,4160540,5
+freerom,4160540,-1
+qlbldm,4160540,4
+67708728,4160540,5
+4031470,4160540,5
+41394344,4160540,4
+2290428,4160540,-1
+49111587,4160540,4
+49191528,4160540,4
+WANG_RS,4160540,4
+45725575,4160540,5
+fakeplastictree,4160540,4
+56758013,4160540,4
+103497855,4160540,4
+AuLai,4160540,4
+54158519,4160540,5
+43258987,4160540,4
+3132248,4160540,3
+lingyun93,4160540,4
+119263777,4160540,3
+63757609,4160540,4
+lhgdxx,4160540,4
+47243412,4160540,3
+66269844,4160540,3
+56890247,4160540,4
+59314632,4160540,4
+87991331,4160540,-1
+52244189,4160540,5
+majoyes,4160540,4
+64780259,4160540,4
+4481315,4160540,3
+50450766,4160540,4
+64707906,4160540,5
+98605942,4160540,3
+121385910,4160540,3
+57456977,4160540,4
+vera0902,4160540,3
+59393765,4160540,4
+2772927,4160540,4
+schauer,4160540,5
+26512977,4160540,3
+71719033,4160540,4
+36805272,4160540,3
+95592443,4160540,4
+49549223,4160540,5
+62475521,4160540,4
+lameizi,4160540,3
+HeyHeo,4160540,3
+Eazyc,4160540,4
+gyd,4160540,4
+84593268,4160540,5
+60506014,4160540,4
+121340498,4160540,4
+53538029,4160540,-1
+63253187,4160540,3
+3420891,4160540,3
+honestydudu,4160540,3
+3333087,4160540,4
+vincent_chen,4160540,4
+56620067,4160540,4
+62779631,4160540,4
+49095874,4160540,3
+59386290,4160540,4
+79452257,4160540,4
+muamu,4160540,5
+gang4,4160540,4
+HarryBabel,4160540,3
+38248181,4160540,4
+AmeliaZhu,4160540,-1
+Time-Trust,4160540,3
+102437430,4160540,4
+hqwxyz,4160540,5
+flxjp,4160540,3
+1109333,4160540,4
+122340180,4160540,4
+64886603,4160540,5
+4531040,4160540,4
+86807524,4160540,5
+8505616,4160540,3
+77495232,4160540,3
+keith_z,4160540,4
+ccamanda,4160540,4
+yelia926,4160540,4
+stevenfive,4160540,4
+renren0223,4160540,4
+82823263,4160540,4
+jasonthejazzist,4160540,4
+sevenVSseven,4160540,4
+neardemon,4160540,3
+chentianle,4160540,3
+shanggu,4160540,2
+wanglutong,4160540,5
+4406925,4160540,4
+4406925,4160540,4
+46761795,4160540,5
+shhhhhhh,4160540,4
+69152346,4160540,4
+zhaoyao0919,4160540,3
+56209739,4160540,4
+42295841,4160540,3
+67162659,4160540,3
+57546427,4160540,3
+whiteindarknigh,4160540,5
+54783483,4160540,4
+jiduohuanle,4160540,4
+79858645,4160540,3
+30067864,4160540,5
+63875533,4160540,4
+57723121,4160540,4
+115509459,4160540,3
+6961213,4160540,4
+Smileysnow,4160540,4
+shuang331,4160540,4
+47542838,4160540,5
+qytq,4160540,4
+58603704,4160540,4
+83133983,4160540,4
+weiyandayi,4160540,4
+69168057,4160540,4
+chuleiwu,4160540,3
+amunli,4160540,4
+miniqiur,4160540,3
+73592449,4160540,2
+4895785,4160540,4
+jodiefan,4160540,3
+49220225,4160540,4
+PeterChe1990,4160540,5
+corneactto,4160540,4
+52347469,4160540,4
+jluy,4160540,4
+92482344,4160540,5
+aquar25,4160540,4
+43557662,4160540,3
+peri_yi,4160540,4
+87083592,4160540,5
+52336873,4160540,3
+57513950,4160540,3
+3939599,4160540,5
+jetaimeyc,4160540,3
+rocksun,4160540,4
+61315252,4160540,4
+kiiizuna,4160540,4
+meifyrt,4160540,4
+flamingbrisk,4160540,4
+49798956,4160540,3
+62258561,4160540,2
+62707210,4160540,3
+xinwenlulu,4160540,3
+5750489,4160540,4
+yeqingyang,4160540,3
+Maydaylily,4160540,4
+42306867,4160540,4
+lewish,4160540,4
+46510966,4160540,3
+25978852,4160540,3
+28312683,4160540,4
+Rencee,4160540,3
+102841911,4160540,4
+66539633,4160540,3
+uiigo,4160540,4
+fernweh,4160540,4
+zen-yggdrasil,4160540,4
+49134732,4160540,4
+IamtheDevil,4160540,3
+xly7788,4160540,4
+2955323,4160540,5
+anstapa,4160540,5
+53300404,4160540,5
+NysUn,4160540,4
+holy_ml,4160540,4
+rqh999,4160540,4
+33782352,4160540,3
+76086734,4160540,4
+63506712,4160540,3
+49916048,4160540,4
+84872284,4160540,3
+iknowysy,4160540,4
+67522411,4160540,3
+88439681,4160540,4
+90658978,4160540,4
+53056312,4160540,3
+82305871,4160540,4
+linxiaohai,4160540,5
+120299687,4160540,3
+lawbody,4160540,3
+46163023,4160540,-1
+128112191,4160540,4
+GZ,4160540,5
+feomepler,4160540,3
+60633902,4160540,4
+CTT696,4160540,3
+52274350,4160540,3
+47709338,4160540,4
+52274350,4160540,3
+47709338,4160540,4
+2635787,4160540,5
+57561635,4160540,4
+68669440,4160540,4
+66767418,4160540,4
+senlintu,4160540,4
+indie,4160540,3
+2570198,4160540,3
+meskelil,4160540,3
+bloodrose,4160540,4
+127296781,4160540,5
+53051656,4160540,3
+imesong,4160540,4
+49719620,4160540,4
+superrao,4160540,4
+83853096,4160540,5
+dhrgxf,4160540,5
+zc1997,4160540,3
+125087493,4160540,5
+saintdump,4160540,4
+43359124,4160540,4
+clairecqy,4160540,-1
+45622535,4160540,4
+Karasu7,4160540,3
+58472013,4160540,4
+pingfandeshabi,4160540,4
+56682982,4160540,3
+53208620,4160540,2
+miyaliang,4160540,4
+2121850,4160540,4
+61952714,4160540,4
+pmtea,4160540,3
+54664894,4160540,4
+43467166,4160540,3
+111745071,4160540,4
+2921991,4160540,-1
+47151726,4160540,3
+53715801,4160540,4
+67977752,4160540,5
+23964620,4160540,5
+38737800,4160540,3
+67630346,4160540,4
+royajunjun,4160540,4
+122580809,4160540,4
+57795255,4160540,3
+iisakura,4160540,3
+3802046,4160540,5
+52596729,4160540,4
+3680251,4160540,4
+Gothicone,4160540,2
+AndyYue,4160540,4
+2498446,4160540,4
+106794129,4160540,3
+AOMENGMENG,4160540,4
+shine495_,4160540,4
+catyes,4160540,4
+48685895,4160540,4
+dodoo7,4160540,4
+2524962,4160540,5
+44714353,4160540,3
+43131725,4160540,4
+2741464,4160540,3
+Lynniass,4160540,4
+35242611,4160540,2
+ruanzebang,4160540,3
+62294425,4160540,3
+80285088,4160540,5
+3896719,4160540,1
+50629676,4160540,4
+sf12447411,4160540,4
+broccoli013,4160540,5
+46544607,4160540,3
+Jensen4ever,4160540,3
+piaofu-bu,4160540,3
+neverbetter,4160540,4
+50014844,4160540,3
+3903753,4160540,3
+57786267,4160540,4
+bananazookeeper,4160540,3
+broempty,4160540,3
+81351219,4160540,4
+4298839,4160540,3
+1282175,4160540,2
+83548080,4160540,4
+3571898,4160540,4
+47142528,4160540,5
+flowermoon,4160540,3
+4387690,4160540,3
+8752115,4160540,4
+jiaxindaocaoren,4160540,4
+87909103,4160540,3
+belle,4160540,5
+love_1973,4160540,4
+kp81ndlf,4160540,3
+3514906,4160540,3
+49703092,4160540,4
+36757046,4160540,5
+33914811,4160540,-1
+bruce_liu1123,4160540,5
+73118410,4160540,5
+rypang,4160540,3
+59114459,4160540,3
+84698699,4160540,4
+viviweiwei66,4160540,2
+69354188,4160540,4
+50249739,4160540,4
+91024874,4160540,4
+popfeng,4160540,3
+2518305,4160540,3
+Chaos13,4160540,3
+creasywq,4160540,5
+120781613,4160540,4
+41636718,4160540,4
+125391105,4160540,4
+xieeedetiancai,4160540,3
+74599483,4160540,3
+zjshichaoren,4160540,5
+rakobi,4160540,4
+Murphymolly,4160540,3
+47026147,4160540,3
+3495876,4160540,4
+120647415,4160540,5
+4345264,4160540,4
+127066563,4160540,5
+3059050,4160540,5
+121118492,4160540,5
+annvivienne,4160540,2
+muhuanxiong,4160540,3
+sentimento-rose,4160540,3
+septenary77,4160540,5
+christie88cn,4160540,4
+66632216,4160540,4
+Luciferre,4160540,4
+boe,4160540,2
+2325252,4160540,4
+70308638,4160540,5
+51083261,4160540,3
+3471541,4160540,5
+62818720,4160540,4
+37200150,4160540,3
+78502935,4160540,5
+40645830,4160540,3
+luckfu,4160540,3
+46762781,4160540,4
+79680480,4160540,4
+55835105,4160540,4
+3602431,4160540,4
+76153086,4160540,4
+62532021,4160540,4
+49135765,4160540,4
+121388513,4160540,5
+4134812,4160540,4
+kan_YB,4160540,3
+60312962,4160540,4
+stellawoo,4160540,5
+49519192,4160540,4
+2856696,4160540,3
+bearhao1976,4160540,4
+37950189,4160540,3
+75531460,4160540,4
+25740506,4160540,4
+Heiyoo,4160540,4
+59237362,4160540,4
+longfei39,4160540,5
+3111681,4160540,4
+40596238,4160540,2
+68230715,4160540,4
+70272999,4160540,5
+2539442,4160540,4
+J_Seraph,4160540,4
+stickwitu1003,4160540,4
+kangxinggui,4160540,5
+evey42,4160540,4
+57729721,4160540,-1
+39073451,4160540,5
+49712271,4160540,4
+seaty,4160540,3
+64973861,4160540,4
+64740791,4160540,4
+minroro,4160540,4
+lelige,4160540,4
+44121250,4160540,2
+53895817,4160540,5
+v3a10i,4160540,4
+2842120,4160540,4
+4150144,4160540,4
+73979703,4160540,4
+43787285,4160540,3
+91497506,4160540,4
+azthwh,4160540,4
+34243519,4160540,-1
+sayawangdao,4160540,3
+4200336,4160540,3
+snowandsnow,4160540,4
+Vanish2,4160540,4
+2942680,4160540,-1
+51445817,4160540,4
+3791437,4160540,5
+35330234,4160540,3
+3791437,4160540,5
+35330234,4160540,3
+helloajun,4160540,5
+soda-fine,4160540,4
+yorihisa,4160540,4
+cherryonsale,4160540,4
+54082963,4160540,4
+70129344,4160540,4
+66576953,4160540,5
+52554533,4160540,4
+iayunuo,4160540,5
+106514817,4160540,4
+50082750,4160540,4
+34104531,4160540,2
+uncleradar,4160540,3
+etfromchina,4160540,3
+53713588,4160540,4
+DaisyQian,4160540,4
+123496986,4160540,4
+83852836,4160540,4
+amyenvy,4160540,4
+50095857,4160540,3
+Tiny_Jelly,4160540,3
+89066668,4160540,2
+jiangjiang1214,4160540,3
+60305014,4160540,3
+1080722,4160540,4
+59288696,4160540,5
+52635539,4160540,3
+lollipopwyj,4160540,5
+59524525,4160540,5
+Cheney__,4160540,5
+HeavenAshura,4160540,4
+102128924,4160540,4
+Exaiy,4160540,3
+81757410,4160540,3
+49392981,4160540,4
+57805220,4160540,4
+78116847,4160540,5
+87311289,4160540,3
+4627477,4160540,5
+deer1156164672,4160540,4
+48117298,4160540,4
+103409828,4160540,2
+DalSegno,4160540,4
+52529809,4160540,3
+64715710,4160540,3
+49003442,4160540,5
+liussdy,4160540,4
+mshow,4160540,4
+85621966,4160540,5
+qjunny,4160540,3
+34727533,4160540,4
+30441221,4160540,3
+disanzhe,4160540,4
+1579221,4160540,3
+91428973,4160540,4
+44020426,4160540,3
+50347835,4160540,4
+54863573,4160540,3
+73723847,4160540,4
+64218724,4160540,4
+50683342,4160540,4
+nabiki1003,4160540,5
+ciulid,4160540,1
+yeyayu,4160540,3
+CCeleven1230,4160540,3
+62510506,4160540,4
+1160337,4160540,3
+63805238,4160540,4
+49091580,4160540,5
+91688422,4160540,3
+61774951,4160540,3
+Candy_Ghost,4160540,2
+2944300,4160540,4
+sailbarcelona,4160540,4
+53227132,4160540,3
+54521491,4160540,4
+Petrick628,4160540,3
+63937204,4160540,4
+msycle,4160540,3
+4280640,4160540,4
+rmj,4160540,4
+34182156,4160540,4
+madelinezl,4160540,4
+3969292,4160540,3
+45698347,4160540,2
+69636879,4160540,3
+fables,4160540,-1
+54891645,4160540,5
+64080222,4160540,2
+83344631,4160540,3
+Zizou_Vam,4160540,4
+103180003,4160540,3
+4743407,4160540,5
+vividzw,4160540,4
+kiwiaide,4160540,4
+catmint,4160540,5
+JC921004,4160540,3
+1963086,4160540,4
+58792200,4160540,3
+LovelyCupid,4160540,3
+59301340,4160540,4
+51277324,4160540,4
+80792973,4160540,5
+allein,4160540,4
+63642212,4160540,3
+youcat,4160540,3
+houyizhong,4160540,4
+streams06,4160540,4
+50527578,4160540,3
+domp,4160540,4
+66676801,4160540,2
+4538969,4160540,3
+kavkaliao,4160540,4
+42919297,4160540,3
+topgamer,4160540,3
+1498731,4160540,5
+83192314,4160540,5
+kindxie,4160540,3
+49326502,4160540,3
+mycforever,4160540,-1
+ethanw,4160540,3
+10236919,4160540,5
+doris19921203,4160540,5
+1631968,4160540,3
+darrenskywalker,4160540,3
+50256249,4160540,4
+63635904,4160540,4
+59149853,4160540,4
+72732422,4160540,5
+48575471,4160540,3
+39245426,4160540,5
+howlformousai,4160540,3
+nicksor,4160540,4
+116607290,4160540,3
+faydao,4160540,3
+2005598,4160540,2
+88612427,4160540,4
+63981734,4160540,4
+76128506,4160540,4
+66629686,4160540,4
+3936026,4160540,3
+78380925,4160540,4
+unclewood,4160540,4
+61878012,4160540,4
+119472433,4160540,4
+2840246,4160540,3
+119184606,4160540,4
+52690453,4160540,3
+120597236,4160540,3
+56072639,4160540,4
+rainbowbunny,4160540,4
+9091191,4160540,4
+119868910,4160540,3
+63418693,4160540,4
+liuchuanzi,4160540,5
+1406185,4160540,4
+94351135,4160540,5
+Zukunft,4160540,5
+lvkunpeng,4160540,4
+63395542,4160540,4
+2137969,4160540,4
+Monster.,4160540,-1
+smiduo,4160540,-1
+iceyliu,4160540,3
+vianjolie,4160540,4
+63403641,4160540,4
+68177595,4160540,4
+laneddy,4160540,3
+48689695,4160540,4
+64109076,4160540,4
+74967653,4160540,4
+3401258,4160540,4
+58650701,4160540,4
+2955357,4160540,4
+93699875,4160540,4
+1806463,4160540,4
+47955426,4160540,4
+2162982,4160540,4
+68550848,4160540,3
+71025729,4160540,3
+102597476,4160540,4
+90587256,4160540,4
+66105271,4160540,4
+wjscxx,4160540,4
+73600166,4160540,3
+floraforever21,4160540,3
+66493866,4160540,3
+2829909,4160540,4
+64168650,4160540,4
+paradoxe,4160540,4
+av13,4160540,4
+68076968,4160540,3
+58301552,4160540,-1
+76148699,4160540,4
+megamao,4160540,4
+44549735,4160540,5
+67950329,4160540,4
+gu_yan,4160540,4
+JUNREYOO,4160540,4
+45845721,4160540,4
+104261144,4160540,3
+yujiuwei,4160540,3
+buddhajump,4160540,1
+Immafrady,4160540,5
+2797193,4160540,5
+py962492,4160540,3
+26360274,4160540,3
+vincent-wen,4160540,5
+53967478,4160540,5
+34929495,4160540,5
+4161317,4160540,3
+androidboy00,4160540,5
+sarna,4160540,-1
+71132041,4160540,4
+64177068,4160540,5
+beatricehzp,4160540,3
+72260700,4160540,4
+46196075,4160540,4
+42859204,4160540,4
+127603477,4160540,3
+59974805,4160540,4
+1653790,4160540,4
+khalilbaby,4160540,4
+heraunty,4160540,4
+gjy19911216,4160540,4
+1711434,4160540,3
+67610456,4160540,5
+1217251,4160540,3
+ChenMelon,4160540,5
+9623777,4160540,3
+justifiedo,4160540,3
+busyq,4160540,3
+58290785,4160540,2
+61104985,4160540,3
+youyuanshanren,4160540,4
+liveland,4160540,3
+baby861708,4160540,4
+wmsdaishu,4160540,5
+wmsdaishu,4160540,5
+43742601,4160540,4
+71654816,4160540,4
+YuSu,4160540,3
+44549010,4160540,4
+imoviekobe,4160540,4
+3489632,4160540,4
+85190529,4160540,4
+39607607,4160540,4
+82550997,4160540,2
+42274147,4160540,4
+50755752,4160540,4
+marilynsky,4160540,4
+125772927,4160540,4
+junqli86,4160540,4
+Desmondj,4160540,5
+4722347,4160540,4
+1831746,4160540,3
+103343443,4160540,3
+zouhuzm,4160540,2
+Charlie.Lee,4160540,3
+SokSolon,4160540,4
+shenluos,4160540,5
+38360036,4160540,4
+56896542,4160540,3
+trianglecat,4160540,4
+53485894,4160540,4
+91882469,4160540,4
+genietao,4160540,3
+xiaotuo,4160540,3
+4217386,4160540,5
+lozer,4160540,4
+3579800,4160540,4
+61783140,4160540,4
+60382121,4160540,-1
+127531680,4160540,3
+102862890,4160540,3
+69573255,4160540,2
+septemwang,4160540,4
+83052833,4160540,4
+crossword,4160540,4
+55439146,4160540,4
+bzfdu,4160540,4
+2414691,4160540,3
+74984448,4160540,5
+75869572,4160540,4
+52340866,4160540,-1
+29985951,4160540,4
+95749827,4160540,4
+helemon,4160540,3
+45706553,4160540,3
+48037187,4160540,4
+53829453,4160540,5
+Ein7,4160540,3
+120242626,4160540,3
+2430900,4160540,4
+56633527,4160540,5
+iBobChang,4160540,4
+72225673,4160540,3
+greengrey,4160540,3
+65889401,4160540,5
+4114969,4160540,4
+47665941,4160540,3
+98096679,4160540,4
+68607460,4160540,4
+55793666,4160540,5
+85333070,4160540,4
+55875465,4160540,4
+103020260,4160540,4
+45379301,4160540,3
+57943867,4160540,3
+75807285,4160540,4
+61026363,4160540,4
+61282710,4160540,4
+3217100,4160540,-1
+53279071,4160540,3
+1087321,4160540,4
+Heresy666,4160540,4
+jayne_c,4160540,5
+47160172,4160540,4
+47889203,4160540,5
+liwujiu,4160540,4
+80794899,4160540,4
+121675139,4160540,3
+81445735,4160540,5
+66237715,4160540,5
+61261594,4160540,3
+74089465,4160540,3
+yzt0806,4160540,4
+69563005,4160540,4
+Jackandfoureyes,4160540,3
+39029113,4160540,5
+Shanglinyuan,4160540,4
+58924080,4160540,3
+1436107,4160540,4
+linxiaoleng,4160540,4
+57452457,4160540,4
+53240525,4160540,4
+stallboy,4160540,1
+2292568,4160540,4
+1084703,4160540,3
+frankkahn,4160540,3
+4206119,4160540,-1
+neverevenever,4160540,5
+60835831,4160540,4
+withchocolate,4160540,4
+43539810,4160540,3
+60300339,4160540,4
+dewriver,4160540,5
+pepereina,4160540,2
+79169198,4160540,3
+wfay,4160540,4
+roy4321210,4160540,-1
+MeloTheFisher,4160540,3
+adelineadele,4160540,4
+55286456,4160540,3
+huangjingJude,4160540,4
+Au.k,4160540,3
+3509692,4160540,2
+49269010,4160540,4
+spectretown,4160540,4
+57416285,4160540,5
+Tfish,4160540,5
+53248408,4160540,5
+115714696,4160540,5
+37296535,4160540,4
+readman,4160540,5
+75937419,4160540,3
+65854158,4160540,3
+86091558,4160540,2
+116778035,4160540,5
+43343230,4160540,4
+1273166,4160540,4
+34507670,4160540,3
+wanderintheworl,4160540,4
+78607701,4160540,5
+3929605,4160540,5
+netsurfe,4160540,3
+jxli,4160540,-1
+58418894,4160540,5
+zizzyzizz,4160540,4
+1998991,4160540,3
+49613841,4160540,-1
+mowenxia,4160540,4
+avaziyi,4160540,4
+51474654,4160540,4
+63020890,4160540,5
+57233884,4160540,5
+48046648,4160540,4
+79453297,4160540,4
+40994633,4160540,4
+48310966,4160540,5
+glorymanutd,4160540,4
+aliceadelice,4160540,4
+83141296,4160540,2
+superchen,4160540,3
+sade1996,4160540,4
+levid,4160540,4
+70752428,4160540,3
+126893480,4160540,3
+126893480,4160540,3
+1693817,4160540,3
+83472045,4160540,4
+66609593,4160540,3
+79122676,4160540,4
+frankphoenix,4160540,3
+p2165,4160540,4
+51841332,4160540,3
+66295147,4160540,4
+65907866,4160540,3
+sgzjhw,4160540,4
+48704882,4160540,4
+88018835,4160540,3
+54319908,4160540,4
+3741660,4160540,4
+1510862,4160540,4
+redcookie,4160540,4
+1840162,4160540,4
+38325652,4160540,3
+3481297,4160540,3
+allblue,4160540,3
+47243761,4160540,3
+3892506,4160540,4
+92809978,4160540,3
+22871754,4160540,4
+47737974,4160540,4
+1356234,4160540,4
+68560082,4160540,-1
+58170865,4160540,4
+45226797,4160540,4
+4239908,4160540,5
+q164511490,4160540,4
+65239097,4160540,4
+82247336,4160540,4
+roro0306,4160540,4
+53815086,4160540,4
+54669571,4160540,4
+27978918,4160540,3
+zhizi99,4160540,4
+46607514,4160540,4
+howaiyan,4160540,3
+34575902,4160540,4
+ddwang,4160540,5
+3421868,4160540,5
+38869173,4160540,3
+alonetime,4160540,-1
+stuyannnnnnnnnn,4160540,4
+39022168,4160540,4
+59012414,4160540,4
+121534057,4160540,3
+2574869,4160540,4
+1363290,4160540,3
+gavinturkey,4160540,4
+megzzy,4160540,3
+fengshurui,4160540,-1
+64092114,4160540,5
+xiaosongqu,4160540,4
+127766292,4160540,3
+oncemygrandpa,4160540,3
+58399918,4160540,4
+3192663,4160540,3
+4657028,4160540,3
+goldenday,4160540,3
+gluecoco,4160540,4
+3287454,4160540,3
+oakhui,4160540,3
+STT810,4160540,4
+wuhuihong1992,4160540,4
+29341299,4160540,4
+34956783,4160540,3
+74778874,4160540,3
+51951428,4160540,4
+30341435,4160540,3
+Zhun,4160540,3
+chinesean,4160540,4
+75952866,4160540,4
+1283668,4160540,4
+CPUCMX,4160540,4
+91375204,4160540,4
+season-ho,4160540,3
+4364181,4160540,4
+xiaobai_zw,4160540,4
+15872244,4160540,4
+72648633,4160540,4
+61408402,4160540,3
+50444681,4160540,4
+3413443,4160540,4
+liumangJone,4160540,4
+31849844,4160540,4
+bb182,4160540,4
+72427940,4160540,4
+59554998,4160540,4
+103619776,4160540,5
+jenniferxiao,4160540,3
+45641492,4160540,3
+47852595,4160540,2
+kkka,4160540,3
+77320088,4160540,4
+96000077,4160540,5
+rki,4160540,3
+119224522,4160540,4
+resodo,4160540,3
+1364563,4160540,4
+newzallery,4160540,4
+satan1988,4160540,5
+metkee,4160540,4
+cyjcyj92,4160540,4
+79392187,4160540,4
+61497577,4160540,3
+meaterballer,4160540,5
+61415736,4160540,4
+67644854,4160540,2
+48045653,4160540,5
+49957530,4160540,4
+scarlett1128,4160540,3
+84207817,4160540,4
+103610572,4160540,4
+AllanBen,4160540,4
+52468739,4160540,4
+52454145,4160540,3
+56488690,4160540,4
+52160826,4160540,5
+32746698,4160540,3
+60161365,4160540,3
+48495423,4160540,4
+muyiya,4160540,4
+47995028,4160540,5
+2679788,4160540,5
+56484149,4160540,3
+1460780,4160540,3
+yaole,4160540,5
+43295924,4160540,5
+nancyindream,4160540,3
+84641449,4160540,4
+zengx233,4160540,4
+Leslie221,4160540,3
+yifan7702,4160540,3
+2462353,4160540,3
+PsyLadyTricky,4160540,4
+3198021,4160540,5
+jj-lee,4160540,4
+insummer_ever,4160540,5
+84957899,4160540,5
+pogostar,4160540,4
+thezealer,4160540,4
+47335967,4160540,3
+hakujiu,4160540,3
+1061597,4160540,4
+maoqiujun,4160540,4
+47399688,4160540,3
+Yuimokin,4160540,4
+48554960,4160540,3
+loulou-mae,4160540,4
+littleteatea,4160540,4
+wingerbaby,4160540,2
+79074513,4160540,4
+1725503,4160540,4
+4841197,4160540,3
+97386152,4160540,4
+52969700,4160540,5
+65642792,4160540,3
+1389249,4160540,4
+54940586,4160540,2
+18746695,4160540,3
+55485128,4160540,4
+Hc66,4160540,3
+tongnixcv,4160540,3
+46170275,4160540,4
+honeybunny9048,4160540,3
+57818188,4160540,4
+dofvo,4160540,4
+51541189,4160540,4
+56143225,4160540,4
+dewar,4160540,3
+cancer1990,4160540,4
+19216126,4160540,4
+46765428,4160540,3
+yolandami,4160540,5
+wondream,4160540,4
+MMX2012,4160540,4
+flower_hui,4160540,-1
+sevenplus,4160540,4
+bingno,4160540,4
+64252494,4160540,3
+tanxi920,4160540,4
+zx8713,4160540,4
+before1998CXH,4160540,4
+106852153,4160540,4
+Neeeeeverland,4160540,4
+63579771,4160540,2
+42999158,4160540,-1
+mythjill,4160540,4
+89767110,4160540,4
+fuyu8818,4160540,5
+32960410,4160540,3
+2024868,4160540,5
+interskh,4160540,4
+89609698,4160540,4
+52572703,4160540,4
+kururu,4160540,4
+62825162,4160540,4
+62017090,4160540,5
+8447509,4160540,4
+dunn813,4160540,3
+Sylary,4160540,4
+110901020,4160540,3
+54574023,4160540,4
+linjunzhe,4160540,4
+51543579,4160540,4
+edward1988,4160540,3
+38548988,4160540,3
+82307280,4160540,3
+65397009,4160540,5
+duffy,4160540,5
+47129510,4160540,5
+65466491,4160540,2
+52325451,4160540,3
+4333851,4160540,3
+ohlalaho,4160540,5
+37748423,4160540,4
+53025886,4160540,4
+73478164,4160540,3
+61223246,4160540,4
+decemfirst,4160540,4
+dodov,4160540,3
+zenlee,4160540,3
+46540591,4160540,3
+57248096,4160540,4
+yido312,4160540,4
+nevertori,4160540,3
+22818829,4160540,3
+120792651,4160540,5
+53885262,4160540,4
+iamswan,4160540,4
+84610412,4160540,5
+minus16,4160540,4
+67072789,4160540,3
+62379540,4160540,4
+lzhip,4160540,5
+cherrieQ,4160540,4
+58431994,4160540,3
+1396338,4160540,3
+51701544,4160540,5
+May_T,4160540,4
+1022788,4160540,4
+yore.,4160540,5
+Rottenmudpit,4160540,3
+shousolo,4160540,3
+61599115,4160540,5
+BearSlayer,4160540,4
+59100232,4160540,5
+rayzart,4160540,5
+91019778,4160540,4
+lr2000,4160540,3
+54269016,4160540,5
+ranfangzhe2,4160540,5
+1411336,4160540,3
+30641768,4160540,4
+84721148,4160540,4
+macrocheng,4160540,3
+80797191,4160540,4
+90469600,4160540,-1
+51517255,4160540,-1
+2437069,4160540,3
+dingtian911,4160540,4
+jmjm,4160540,4
+53522902,4160540,4
+wei123,4160540,4
+berryandrose,4160540,5
+fishbrown,4160540,-1
+80240498,4160540,4
+1383301,4160540,3
+90465571,4160540,3
+3767677,4160540,3
+doon7,4160540,3
+4591102,4160540,1
+ReyC,4160540,5
+wuzhuan105,4160540,4
+yangui,4160540,4
+49949268,4160540,3
+104445642,4160540,3
+94394247,4160540,5
+51898920,4160540,5
+yzk2237084,4160540,3
+1233601,4160540,4
+VampirX,4160540,5
+angalny,4160540,3
+4896156,4160540,4
+51855205,4160540,4
+41655130,4160540,4
+88317701,4160540,5
+2174443,4160540,4
+Mobius.wang,4160540,5
+mansono,4160540,3
+42086995,4160540,4
+52499368,4160540,3
+DKJessica,4160540,4
+24068635,4160540,4
+DJCosmic,4160540,5
+16313678,4160540,5
+33538142,4160540,5
+74413601,4160540,3
+riverbrother,4160540,4
+wuxipaopao,4160540,4
+49836065,4160540,4
+62017131,4160540,5
+anpanteng,4160540,4
+lilylee1023,4160540,4
+83630621,4160540,3
+qinlang1900,4160540,5
+snakeofwinter,4160540,3
+1743655,4160540,3
+51753128,4160540,5
+rayhal,4160540,4
+zhangxiaochun,4160540,3
+121768645,4160540,5
+71057399,4160540,4
+82888615,4160540,4
+56249828,4160540,4
+53750032,4160540,4
+54622662,4160540,2
+104219883,4160540,4
+4809867,4160540,4
+windyolivia,4160540,4
+78724440,4160540,4
+mona220,4160540,4
+jinjidexiong,4160540,3
+52707530,4160540,4
+wangmuse,4160540,4
+xuaoling,4160540,5
+26390357,4160540,3
+39494809,4160540,4
+cby890653,4160540,4
+greenne,4160540,4
+myself2,4160540,4
+lulew0126,4160540,5
+62503467,4160540,3
+3183207,4160540,-1
+OrianneLau,4160540,4
+2849700,4160540,3
+51909421,4160540,3
+55309646,4160540,4
+Sohai,4160540,5
+121620281,4160540,4
+74601156,4160540,3
+48333582,4160540,2
+xiaoheng,4160540,4
+44150563,4160540,4
+35963836,4160540,4
+leoo_leee,4160540,5
+locking,4160540,3
+102791213,4160540,4
+Night_shadow,4160540,4
+ReiDx,4160540,4
+2040298,4160540,2
+BonneNotte,4160540,3
+59010462,4160540,2
+106347535,4160540,3
+37160658,4160540,4
+49900100,4160540,-1
+32200405,4160540,4
+50489557,4160540,5
+wangyuxiao,4160540,3
+4320404,4160540,3
+63561011,4160540,4
+chidoufuma,4160540,3
+63932737,4160540,3
+64025963,4160540,5
+cynthia3922,4160540,4
+melodygxl,4160540,4
+1189608,4160540,4
+3331579,4160540,3
+45993639,4160540,4
+door9,4160540,4
+tree-on-feet,4160540,3
+40876369,4160540,4
+59202972,4160540,4
+seren,4160540,3
+56621713,4160540,4
+50293369,4160540,5
+50293369,4160540,5
+liarelaw,4160540,3
+snapeloveyou,4160540,-1
+sunyangchina,4160540,3
+ww.happiness,4160540,4
+50437623,4160540,3
+lovewaiter,4160540,3
+59123210,4160540,4
+sibylwang,4160540,4
+fishghost,4160540,5
+giantpanda,4160540,4
+wakin1707,4160540,4
+28013682,4160540,4
+huayeah,4160540,4
+96062684,4160540,5
+48288113,4160540,1
+114541045,4160540,4
+banruoliuli,4160540,4
+2704869,4160540,3
+saechoe,4160540,3
+saechoe,4160540,3
+84564093,4160540,3
+50197826,4160540,4
+MirrorTarkovsky,4160540,-1
+84171597,4160540,3
+46146656,4160540,3
+birch,4160540,-1
+60874704,4160540,4
+mashushu,4160540,3
+65369148,4160540,4
+ice_pudding,4160540,3
+58934229,4160540,5
+120223686,4160540,4
+57791754,4160540,4
+53257634,4160540,4
+zzyzeal,4160540,3
+leedany,4160540,3
+42724768,4160540,3
+68229107,4160540,4
+61101184,4160540,4
+23730457,4160540,4
+49364738,4160540,4
+70034039,4160540,2
+feilong880928,4160540,4
+96808289,4160540,5
+lunay,4160540,3
+3332733,4160540,4
+3529058,4160540,3
+myhay,4160540,4
+moonwater,4160540,2
+42987621,4160540,3
+4051797,4160540,4
+46292893,4160540,4
+75555205,4160540,4
+60386467,4160540,4
+vincentjones,4160540,4
+35303340,4160540,5
+121468237,4160540,5
+3219519,4160540,5
+54885866,4160540,4
+wuyuanjing,4160540,4
+37676493,4160540,4
+fenglimuren,4160540,4
+Coka-Less,4160540,2
+43244299,4160540,3
+sinxu,4160540,5
+quelheart,4160540,4
+55325420,4160540,2
+51508838,4160540,5
+crowd,4160540,3
+liusuer,4160540,4
+35514248,4160540,5
+59597451,4160540,4
+1911940,4160540,5
+1951296,4160540,5
+72063309,4160540,4
+78934649,4160540,4
+65204496,4160540,4
+46591668,4160540,3
+55348878,4160540,3
+16581878,4160540,4
+lindadarling,4160540,3
+81845055,4160540,2
+1246074,4160540,5
+fightbean,4160540,4
+2218265,4160540,4
+Orchendor,4160540,4
+christinechu,4160540,5
+appreciation,4160540,3
+61491842,4160540,2
+3410802,4160540,5
+xulu_films,4160540,4
+55545798,4160540,4
+62153005,4160540,2
+111018942,4160540,3
+82454010,4160540,4
+mrtonyzhu,4160540,5
+58727486,4160540,3
+alisonyu,4160540,4
+iamjenny,4160540,3
+92399399,4160540,3
+122228928,4160540,4
+mi.even.live,4160540,5
+kingtreetooth,4160540,4
+airan712,4160540,3
+70804320,4160540,4
+artwalk,4160540,4
+46723550,4160540,4
+binglanxier,4160540,4
+51653649,4160540,4
+64192429,4160540,5
+Pastorale,4160540,4
+nianyike,4160540,3
+40329382,4160540,3
+2934232,4160540,3
+42006560,4160540,4
+Ikergzy,4160540,3
+45965937,4160540,4
+2813595,4160540,4
+2837832,4160540,3
+2837832,4160540,3
+rabbit_07,4160540,3
+changx,4160540,3
+65645276,4160540,3
+3561048,4160540,3
+43237878,4160540,3
+shelleyhsu,4160540,4
+59333652,4160540,1
+76868193,4160540,4
+maskguy,4160540,3
+53789609,4160540,5
+51978662,4160540,3
+takataka,4160540,4
+yeeeeeee,4160540,3
+adamson,4160540,4
+56970395,4160540,4
+52926466,4160540,5
+46809108,4160540,5
+soranya,4160540,3
+58335462,4160540,4
+allennic,4160540,4
+66663254,4160540,3
+56506887,4160540,3
+ke-ke,4160540,5
+61455222,4160540,4
+qingwood,4160540,3
+119999330,4160540,4
+63742684,4160540,3
+qixian1125,4160540,4
+clby,4160540,3
+Hans_Du,4160540,4
+czj950615,4160540,3
+52409841,4160540,4
+3818284,4160540,4
+3169236,4160540,-1
+behindtheveil,4160540,3
+yunerrun,4160540,4
+97010057,4160540,4
+lovefilms,4160540,3
+57472498,4160540,4
+102328012,4160540,-1
+jake384,4160540,4
+formyself,4160540,4
+75325570,4160540,5
+Achillesl,4160540,5
+chengnanxuan,4160540,5
+99125424,4160540,3
+77869047,4160540,4
+115292243,4160540,4
+3502559,4160540,3
+50505675,4160540,4
+80314108,4160540,4
+40967870,4160540,4
+9990655,4160540,5
+ken_zhou,4160540,5
+1149126,4160540,3
+56409585,4160540,5
+68779054,4160540,4
+joxxc,4160540,4
+lovingyoyo8ever,4160540,3
+55355100,4160540,4
+41437311,4160540,5
+ShoneSpeaking,4160540,5
+58774315,4160540,4
+future-lee,4160540,4
+yaoyamin,4160540,4
+34943389,4160540,3
+donaldwu,4160540,3
+79720313,4160540,4
+zhuimengrenm,4160540,3
+mindiaodiao,4160540,4
+54591552,4160540,3
+bbass,4160540,4
+49100394,4160540,3
+nonspicy,4160540,4
+48480567,4160540,4
+wunie,4160540,5
+63923908,4160540,4
+blacksora,4160540,3
+33688715,4160540,4
+62524902,4160540,4
+trickster,4160540,5
+guavashine,4160540,4
+51444963,4160540,4
+98643202,4160540,5
+yihuiw,4160540,4
+67019496,4160540,4
+lanjingyu,4160540,-1
+25216946,4160540,4
+61654063,4160540,4
+flatpeach,4160540,4
+arsenallau,4160540,4
+64252611,4160540,4
+36624734,4160540,3
+37499782,4160540,4
+72970549,4160540,3
+IamMrL,4160540,3
+chloehe,4160540,-1
+danielpaolod,4160540,3
+49298107,4160540,4
+2174123,4160540,5
+78098679,4160540,3
+summermayfly,4160540,3
+44763359,4160540,4
+1809705,4160540,4
+51965596,4160540,3
+68621724,4160540,-1
+4032411,4160540,4
+76545433,4160540,2
+68532789,4160540,4
+125097348,4160540,4
+67148773,4160540,5
+sunny_i,4160540,4
+26933038,4160540,3
+ilovehotcoffee,4160540,-1
+polomango,4160540,4
+uncle,4160540,-1
+zyj2nd,4160540,4
+peiyue,4160540,5
+camillushi,4160540,5
+40586247,4160540,4
+3857532,4160540,4
+121352269,4160540,5
+78240226,4160540,5
+austinswift,4160540,4
+73163829,4160540,4
+fakeyouout,4160540,4
+27517816,4160540,3
+littlejunjun,4160540,1
+liushuoyang,4160540,3
+40870953,4160540,3
+46184375,4160540,4
+83328709,4160540,3
+81134195,4160540,5
+57661642,4160540,4
+4679551,4160540,4
+summertree80,4160540,4
+iamdengdeng,4160540,4
+att2046,4160540,4
+wisagan,4160540,3
+wisagan,4160540,3
+2760131,4160540,3
+51472413,4160540,3
+edithloving,4160540,4
+yinxixi,4160540,4
+sonnenshein,4160540,3
+56198749,4160540,3
+Sh1neYuan,4160540,4
+grayfoxever,4160540,4
+comic109,4160540,4
+davemathews,4160540,-1
+waterfall24,4160540,5
+yizhongyugan,4160540,4
+85643943,4160540,3
+zoewen1984,4160540,4
+absinthejt,4160540,5
+70741441,4160540,4
+45905762,4160540,4
+2605495,4160540,4
+sakura1986,4160540,3
+67184394,4160540,4
+67181847,4160540,4
+75667669,4160540,4
+74680638,4160540,3
+oldmanriver,4160540,-1
+128111484,4160540,1
+43508209,4160540,3
+46627349,4160540,4
+55859844,4160540,4
+4496437,4160540,3
+56273353,4160540,2
+77656352,4160540,3
+axlcore,4160540,3
+zhanggongzi,4160540,4
+49594661,4160540,3
+80483587,4160540,4
+antic,4160540,5
+88302269,4160540,3
+31335200,4160540,5
+1813198,4160540,4
+nowingcolorful,4160540,4
+2429292,4160540,4
+49319979,4160540,4
+surgdy1008,4160540,4
+65306635,4160540,3
+maoking,4160540,3
+62318523,4160540,3
+54749966,4160540,4
+twopersons,4160540,4
+alcudish,4160540,4
+pennypq,4160540,-1
+54512951,4160540,2
+qyqgpower,4160540,4
+63277654,4160540,4
+5613747,4160540,4
+ponyoicy,4160540,4
+80850838,4160540,4
+woshiex,4160540,4
+49174691,4160540,5
+58438157,4160540,4
+58438157,4160540,4
+65650524,4160540,4
+95970536,4160540,3
+saraystang,4160540,4
+beautyxyw,4160540,4
+50773904,4160540,5
+120625991,4160540,3
+76999762,4160540,5
+zhangrihe,4160540,4
+wildestor,4160540,3
+70149072,4160540,2
+83781615,4160540,4
+1686304,4160540,3
+flylinklove,4160540,5
+72438301,4160540,3
+51095264,4160540,4
+fwtzzl,4160540,4
+Erman-Wei,4160540,3
+4847438,4160540,5
+79895695,4160540,4
+Bocahontas,4160540,4
+takumiya,4160540,3
+55489779,4160540,4
+54653189,4160540,2
+80433862,4160540,3
+44610838,4160540,3
+Foodeology,4160540,3
+kikilili006,4160540,3
+Aspirin129,4160540,2
+51224776,4160540,3
+53339781,4160540,3
+71843271,4160540,4
+69556914,4160540,4
+63152552,4160540,3
+bigmiao,4160540,5
+ljjchn,4160540,3
+67398488,4160540,4
+93500334,4160540,3
+57961574,4160540,3
+ssb,4160540,5
+56266517,4160540,4
+64874710,4160540,5
+3838586,4160540,4
+Johannisberg,4160540,4
+douxiaobai,4160540,3
+71270529,4160540,2
+74547968,4160540,3
+ethan.zhang,4160540,4
+vendreni,4160540,-1
+11499024,4160540,4
+isaacasimov,4160540,5
+fermit2,4160540,4
+3141119,4160540,4
+56140040,4160540,3
+51764700,4160540,3
+59609548,4160540,3
+61321543,4160540,4
+Jays,4160540,4
+73847256,4160540,3
+aolu,4160540,2
+58794497,4160540,3
+Fantastic777,4160540,4
+nightldj,4160540,-1
+45181987,4160540,4
+3608735,4160540,4
+34197564,4160540,3
+amber2046,4160540,4
+3422611,4160540,3
+waxsf,4160540,4
+2232976,4160540,4
+baniujun,4160540,3
+126039569,4160540,1
+44131299,4160540,3
+ioy,4160540,1
+btjd,4160540,4
+toishiki,4160540,5
+kgbbeer,4160540,4
+cherub235,4160540,3
+july8903,4160540,4
+kaede11,4160540,4
+54531196,4160540,5
+Kkumako,4160540,3
+aThinker,4160540,5
+15739964,4160540,4
+suh5213,4160540,4
+dats,4160540,4
+52499863,4160540,3
+libinhan,4160540,4
+lordbaker,4160540,-1
+55519511,4160540,5
+app1e,4160540,5
+57615243,4160540,3
+102938445,4160540,2
+chengty0905,4160540,4
+Jennytakun,4160540,4
+71561935,4160540,4
+wuliangmouji,4160540,4
+49364044,4160540,4
+suser,4160540,4
+53908274,4160540,4
+68277572,4160540,4
+yingtaocream,4160540,4
+72920583,4160540,3
+48607071,4160540,4
+59607126,4160540,4
+57998290,4160540,4
+58689768,4160540,3
+Kulty,4160540,5
+hxtdkz1226,4160540,2
+51583738,4160540,4
+vincitea,4160540,5
+68497673,4160540,4
+randomforever,4160540,4
+52384106,4160540,5
+seriousz,4160540,4
+121986758,4160540,4
+34694249,4160540,5
+88636083,4160540,5
+faye.,4160540,4
+xirisini,4160540,4
+121055436,4160540,5
+116551398,4160540,4
+52447788,4160540,3
+chocox,4160540,4
+66502007,4160540,4
+66307947,4160540,4
+50720620,4160540,4
+linchuzhuang,4160540,4
+45577366,4160540,3
+121619687,4160540,5
+71741760,4160540,4
+7735198,4160540,4
+2368397,4160540,5
+114429051,4160540,4
+83975163,4160540,3
+4248478,4160540,4
+46623623,4160540,4
+laoshububen,4160540,3
+34990540,4160540,3
+54317562,4160540,4
+chengzer,4160540,5
+baodai,4160540,3
+87681382,4160540,-1
+3000688,4160540,3
+qinyouxuan,4160540,4
+ruokongzhi,4160540,4
+dupang,4160540,4
+53455572,4160540,3
+44423459,4160540,5
+1658796,4160540,3
+2370344,4160540,3
+42342433,4160540,4
+45549330,4160540,5
+43231750,4160540,5
+izhukai,4160540,1
+icetone96,4160540,4
+84759549,4160540,3
+vloiter,4160540,4
+s_i_c_k_,4160540,4
+35805832,4160540,4
+35805832,4160540,4
+35364683,4160540,4
+heartnow,4160540,4
+80381774,4160540,4
+skycity,4160540,3
+CHRISLISIS,4160540,4
+mingren2588,4160540,4
+89835512,4160540,4
+EnthalpicEeeee,4160540,4
+4605484,4160540,4
+3908149,4160540,5
+2750410,4160540,3
+68115096,4160540,4
+89108079,4160540,4
+50947816,4160540,4
+118812578,4160540,5
+58305570,4160540,4
+55429218,4160540,3
+tbubo,4160540,5
+2993640,4160540,4
+2993640,4160540,4
+Solo-n,4160540,3
+coldmist,4160540,3
+91686370,4160540,2
+dearforget,4160540,4
+laolei19900613,4160540,4
+54562055,4160540,4
+62119961,4160540,3
+91222743,4160540,4
+35591333,4160540,4
+suichunjie,4160540,4
+22056950,4160540,3
+kingkongofkhan,4160540,3
+musichellsing,4160540,4
+xinzhengs,4160540,5
+69292249,4160540,5
+107728246,4160540,4
+62736630,4160540,3
+biganws,4160540,3
+dennycn,4160540,4
+dennycn,4160540,4
+52313219,4160540,4
+50167115,4160540,3
+74575095,4160540,4
+74773022,4160540,3
+2021116,4160540,3
+dwkfreedom,4160540,2
+szfdouban,4160540,4
+mengyu0811,4160540,4
+love221B,4160540,4
+50405161,4160540,4
+30291732,4160540,-1
+1369113,4160540,3
+zsk425,4160540,4
+61247651,4160540,4
+2839200,4160540,4
+73654644,4160540,5
+60635722,4160540,5
+87035372,4160540,4
+movieview,4160540,3
+lengleng2025,4160540,-1
+bubblewing,4160540,5
+fakedrum,4160540,4
+T.V.Zoe,4160540,4
+adeermo,4160540,4
+edisonme,4160540,3
+cjlinux,4160540,4
+LancySiu,4160540,4
+sentexiaohu,4160540,4
+justforcrazy,4160540,3
+wzn,4160540,2
+47176799,4160540,5
+78645942,4160540,4
+53751991,4160540,3
+lephemera,4160540,2
+81514613,4160540,5
+yuannyin,4160540,3
+zyr2014,4160540,4
+44652353,4160540,3
+monica19881012,4160540,4
+word999,4160540,3
+50348765,4160540,4
+57367354,4160540,4
+80074512,4160540,5
+68086600,4160540,5
+51092958,4160540,4
+36580588,4160540,4
+120547538,4160540,3
+87083244,4160540,5
+KissAlice,4160540,4
+praguenight,4160540,3
+53692336,4160540,4
+53653767,4160540,4
+55385860,4160540,4
+85174401,4160540,4
+xinziai,4160540,4
+qilekod,4160540,2
+81530706,4160540,3
+71067586,4160540,5
+badass420,4160540,5
+bdhztian,4160540,4
+57139809,4160540,5
+64700587,4160540,3
+43296422,4160540,3
+52859781,4160540,4
+25760345,4160540,3
+62404406,4160540,-1
+3731360,4160540,5
+colorwind,4160540,4
+rlonger,4160540,5
+119280630,4160540,4
+52656841,4160540,3
+4296038,4160540,4
+61123177,4160540,5
+50139612,4160540,-1
+gothes,4160540,4
+grayguy,4160540,4
+2762219,4160540,4
+70775632,4160540,4
+tqliutony,4160540,5
+ephemerality,4160540,4
+51132496,4160540,3
+58629376,4160540,3
+48648909,4160540,4
+3587005,4160540,3
+67346668,4160540,4
+whtsky,4160540,3
+53659591,4160540,5
+jite,4160540,4
+60042513,4160540,4
+46132797,4160540,4
+65646732,4160540,4
+62821858,4160540,4
+71231764,4160540,5
+67516676,4160540,5
+tcff,4160540,4
+shaleejia,4160540,3
+1974273,4160540,3
+3078372,4160540,5
+80140628,4160540,4
+6290141,4160540,5
+tangstar27,4160540,2
+32705757,4160540,5
+1925793,4160540,3
+57756886,4160540,4
+75797729,4160540,4
+63617641,4160540,2
+50236552,4160540,5
+Sumia,4160540,4
+aleung,4160540,4
+chtpower,4160540,4
+no1no,4160540,2
+3731723,4160540,3
+bobolu,4160540,3
+beilinyin,4160540,3
+54158411,4160540,3
+3885879,4160540,5
+queenchelsea,4160540,4
+cunsir,4160540,3
+vincent.chi,4160540,4
+31713107,4160540,5
+48050176,4160540,5
+47025279,4160540,5
+yningc,4160540,4
+49502630,4160540,4
+63306444,4160540,5
+84499099,4160540,3
+31043480,4160540,4
+BonnyBunny,4160540,5
+65670813,4160540,4
+McMurphyT,4160540,3
+49907411,4160540,3
+53744550,4160540,3
+74392239,4160540,4
+39093072,4160540,5
+sailorcooper,4160540,5
+12074004,4160540,4
+frontboy,4160540,4
+44276090,4160540,4
+FeeSouler,4160540,5
+Jonathan_Sea,4160540,4
+54049800,4160540,4
+PengUIn.C,4160540,4
+74663027,4160540,3
+47799629,4160540,5
+wangxuanlong,4160540,4
+51227085,4160540,-1
+68046428,4160540,2
+49269031,4160540,4
+72792251,4160540,4
+fatfatbird,4160540,5
+linningmeng,4160540,4
+25972265,4160540,5
+45241922,4160540,5
+50093878,4160540,4
+luzifer,4160540,4
+72241527,4160540,4
+2235112,4160540,4
+masterobert,4160540,4
+74913423,4160540,2
+25795086,4160540,2
+greenhe,4160540,3
+68020683,4160540,3
+45068027,4160540,5
+52918154,4160540,3
+lmylty,4160540,5
+dearbaoba,4160540,5
+71181579,4160540,4
+48116810,4160540,4
+26932901,4160540,3
+alexhj,4160540,3
+Narglc,4160540,3
+60207900,4160540,4
+overcure,4160540,4
+82096379,4160540,3
+sewer-d,4160540,3
+69753373,4160540,5
+46492005,4160540,4
+elle1989,4160540,-1
+45307285,4160540,4
+chenkefeng,4160540,4
+estk,4160540,4
+54393930,4160540,4
+spritefall,4160540,4
+1495292,4160540,2
+32920328,4160540,4
+46287060,4160540,4
+treeingx,4160540,4
+daisyx1108,4160540,3
+deandai,4160540,3
+douxiaokou,4160540,4
+82838350,4160540,3
+chaiweijia,4160540,4
+115131162,4160540,4
+76933799,4160540,3
+Bobbie13,4160540,3
+ymcb37,4160540,1
+59540342,4160540,-1
+ydyie,4160540,5
+11035464,4160540,1
+63651252,4160540,3
+67679868,4160540,4
+Embrace.,4160540,2
+51297703,4160540,4
+jideknight,4160540,2
+41509198,4160540,4
+47160783,4160540,4
+HBHelena,4160540,4
+liangliwen,4160540,-1
+sukijuri,4160540,4
+58955085,4160540,4
+58192311,4160540,4
+79262344,4160540,2
+54761724,4160540,4
+2199992,4160540,4
+69196405,4160540,3
+hetaojiazi,4160540,5
+cherryjoanna,4160540,3
+52655756,4160540,-1
+coolfax,4160540,4
+idontcarebitch,4160540,1
+hichai,4160540,4
+hanxu521,4160540,3
+st0114,4160540,4
+ps2xboxgbaxbox,4160540,5
+1198621,4160540,3
+bearblindman,4160540,5
+62209386,4160540,5
+47970530,4160540,5
+4110643,4160540,5
+Doluoluo,4160540,-1
+45290589,4160540,5
+55924051,4160540,4
+efscpig,4160540,4
+70844899,4160540,5
+59129484,4160540,3
+liuweimao,4160540,4
+53002549,4160540,3
+parislover,4160540,4
+65986563,4160540,4
+vivisnbb,4160540,3
+binghushouyeren,4160540,3
+64929024,4160540,4
+YolaZhang,4160540,4
+65111838,4160540,5
+2996311,4160540,4
+70296365,4160540,5
+3223740,4160540,3
+31032938,4160540,3
+cibeles,4160540,4
+50041592,4160540,3
+88335508,4160540,-1
+onlyjtl,4160540,4
+tianranzijiegou,4160540,-1
+ca5h,4160540,4
+50614819,4160540,4
+80115244,4160540,4
+81089052,4160540,2
+59901599,4160540,5
+3312294,4160540,4
+70555286,4160540,3
+60406508,4160540,2
+2676475,4160540,5
+52363154,4160540,5
+fayeyes,4160540,4
+resurrection,4160540,4
+20216566,4160540,4
+49126637,4160540,4
+52174666,4160540,4
+72665241,4160540,4
+40241549,4160540,4
+52157663,4160540,4
+2898299,4160540,4
+45314448,4160540,5
+1353634,4160540,4
+xiaoshuogege,4160540,4
+zodiac93,4160540,3
+53362350,4160540,3
+taotaomvp,4160540,4
+66161843,4160540,5
+ridox,4160540,5
+mickyxj,4160540,3
+18984732,4160540,3
+60131907,4160540,1
+52259960,4160540,3
+82177383,4160540,4
+LoveRaul77,4160540,5
+komos,4160540,4
+12794807,4160540,4
+63526709,4160540,4
+morpheus5,4160540,3
+MOKUZJY,4160540,3
+123366410,4160540,4
+77485550,4160540,3
+62515963,4160540,4
+ibravo,4160540,3
+1110575,4160540,3
+87387635,4160540,3
+xumhandy,4160540,3
+53920626,4160540,3
+60337804,4160540,3
+ChicWeirdo,4160540,5
+64793869,4160540,3
+74062182,4160540,4
+56623440,4160540,4
+GrilMorris,4160540,4
+Dr.Moth,4160540,4
+superran,4160540,4
+2182418,4160540,5
+52593684,4160540,3
+59111075,4160540,5
+104507499,4160540,5
+51840690,4160540,5
+Neyo1986,4160540,3
+daffmanda,4160540,3
+53941627,4160540,3
+MaclovenZD,4160540,3
+73948805,4160540,4
+110712209,4160540,2
+67539758,4160540,4
+ingie,4160540,3
+92880589,4160540,4
+yangqianbao,4160540,3
+14357343,4160540,3
+anjiu,4160540,4
+linlinjie,4160540,-1
+58520151,4160540,4
+72994567,4160540,4
+wyb222,4160540,4
+49072248,4160540,4
+103597194,4160540,4
+hanbooo,4160540,-1
+alfredd,4160540,4
+littleshy,4160540,4
+mageng,4160540,4
+HAPPYTINTIN,4160540,3
+65145767,4160540,3
+54744490,4160540,4
+9958941,4160540,3
+61302881,4160540,4
+67685341,4160540,2
+XinwenCheng,4160540,3
+3834977,4160540,2
+pandalucia,4160540,3
+callmeyoki,4160540,5
+Light_L,4160540,-1
+kongnici,4160540,3
+glasstar,4160540,5
+4165611,4160540,5
+casusu,4160540,3
+48165079,4160540,4
+32433633,4160540,3
+DrGonzo,4160540,4
+77035699,4160540,4
+chaoxu,4160540,3
+88891061,4160540,2
+51951271,4160540,4
+41264823,4160540,3
+79680130,4160540,4
+baoxiaozha,4160540,4
+48380446,4160540,2
+summer_ending,4160540,4
+76790888,4160540,4
+fangliller,4160540,5
+53276225,4160540,4
+2691573,4160540,3
+66488510,4160540,4
+longhua,4160540,5
+1141627,4160540,4
+cqyyAyy,4160540,5
+1261979,4160540,1
+106581395,4160540,5
+kenyoo,4160540,3
+zhibiaoshi,4160540,4
+carrieloveless,4160540,5
+51736421,4160540,-1
+69680398,4160540,5
+53602254,4160540,3
+76801382,4160540,3
+2959420,4160540,3
+2891944,4160540,4
+47977702,4160540,4
+Mackintosh,4160540,5
+1234887,4160540,4
+79109851,4160540,4
+evim,4160540,5
+hhy890809,4160540,4
+2510654,4160540,4
+18080670,4160540,4
+zzfznp,4160540,3
+blueslyrist,4160540,4
+masaikejun,4160540,4
+55021237,4160540,3
+sunnyphantaci,4160540,4
+Smeagol,4160540,4
+48795907,4160540,4
+RICE_Z,4160540,4
+104559183,4160540,3
+46738101,4160540,3
+isabella_tk,4160540,5
+100323138,4160540,5
+52318521,4160540,4
+53171772,4160540,4
+48190133,4160540,4
+2203673,4160540,-1
+winniewong021,4160540,4
+29710703,4160540,4
+shine531,4160540,-1
+pinpining,4160540,4
+60822574,4160540,5
+1837159,4160540,4
+46237216,4160540,4
+14508573,4160540,5
+youngriver,4160540,4
+frogchild,4160540,3
+1113683,4160540,4
+74332940,4160540,4
+4132596,4160540,3
+50124782,4160540,4
+23771935,4160540,4
+4146586,4160540,2
+73801711,4160540,4
+70749306,4160540,5
+1066031,4160540,3
+kenc,4160540,4
+63014642,4160540,4
+badaalle,4160540,3
+49074527,4160540,3
+54113299,4160540,4
+70614930,4160540,4
+66458815,4160540,3
+56419088,4160540,4
+3412422,4160540,4
+68085192,4160540,4
+alled,4160540,3
+59716419,4160540,5
+xisahala,4160540,4
+62922756,4160540,3
+48168328,4160540,4
+40136939,4160540,5
+58536535,4160540,3
+49383353,4160540,3
+3977584,4160540,5
+50918705,4160540,4
+62063916,4160540,5
+goodmac,4160540,4
+40523115,4160540,3
+jakartaxie,4160540,4
+30725262,4160540,4
+77001369,4160540,4
+126546596,4160540,4
+anonymousor,4160540,3
+Jeanerduo,4160540,3
+69137072,4160540,3
+57608084,4160540,5
+4632449,4160540,3
+74021642,4160540,5
+xinxinstar,4160540,4
+1444948,4160540,4
+infinitezxc,4160540,4
+103081300,4160540,3
+110930122,4160540,1
+maybejoker,4160540,-1
+dogtile_vicky,4160540,4
+monster_l,4160540,5
+48854947,4160540,3
+47822950,4160540,3
+NirvanAnswer,4160540,3
+3340762,4160540,3
+49342454,4160540,4
+4750967,4160540,3
+spottedowl,4160540,3
+121628678,4160540,4
+65004384,4160540,3
+54423436,4160540,4
+70152793,4160540,4
+56922790,4160540,4
+2243854,4160540,4
+49340336,4160540,3
+43966741,4160540,4
+wenson,4160540,3
+gamex1203,4160540,3
+72879552,4160540,4
+3864518,4160540,3
+narahana,4160540,3
+2305028,4160540,4
+41922022,4160540,4
+Injurer,4160540,4
+huachunyan,4160540,3
+57612916,4160540,3
+119644008,4160540,3
+titiz,4160540,3
+plagueangel,4160540,-1
+96398339,4160540,3
+yangpp,4160540,4
+ningzile,4160540,4
+dongjh,4160540,2
+47778684,4160540,4
+gilyun,4160540,3
+49759767,4160540,4
+58988123,4160540,3
+fireattack,4160540,3
+54385496,4160540,4
+70927104,4160540,2
+26786112,4160540,5
+69186562,4160540,-1
+51852760,4160540,1
+73761450,4160540,4
+65058502,4160540,5
+qianlongwu,4160540,4
+67555862,4160540,3
+35518301,4160540,4
+81302629,4160540,-1
+AppleTREE4014,4160540,4
+methy,4160540,4
+Jaytaoo,4160540,3
+2374657,4160540,4
+2274761,4160540,4
+53257768,4160540,3
+46497522,4160540,4
+49419366,4160540,5
+le_petit_alice,4160540,5
+102678315,4160540,2
+wowcecilia,4160540,5
+zybxixi,4160540,4
+4305669,4160540,5
+zhaigonglue,4160540,4
+handsomegay,4160540,3
+16556959,4160540,5
+4076873,4160540,4
+53053379,4160540,4
+47589972,4160540,3
+zhangleyuan,4160540,3
+4727036,4160540,4
+31102423,4160540,4
+cocacolasjcn,4160540,4
+intelligentRay,4160540,1
+3416468,4160540,-1
+folkbaba,4160540,2
+59459283,4160540,4
+back2back,4160540,4
+jason21,4160540,-1
+14538646,4160540,3
+75724026,4160540,4
+60056083,4160540,5
+59643892,4160540,3
+92165422,4160540,2
+1371998,4160540,2
+50769743,4160540,4
+rainze,4160540,5
+71861591,4160540,3
+77310208,4160540,5
+FOVERyy,4160540,4
+hellnana,4160540,5
+51728436,4160540,5
+luyang21,4160540,3
+winnie0212,4160540,3
+102162546,4160540,4
+4252298,4160540,4
+fcfwind,4160540,-1
+53108516,4160540,3
+4482032,4160540,4
+51524247,4160540,-1
+57542378,4160540,3
+wiwikuang,4160540,3
+53656219,4160540,4
+49612534,4160540,4
+muyiii,4160540,4
+HL0919,4160540,3
+40067937,4160540,3
+ttongwinter,4160540,4
+34950703,4160540,3
+amy0303,4160540,3
+53944897,4160540,3
+51893163,4160540,5
+killerose,4160540,4
+che.part.one,4160540,3
+youngtoo,4160540,4
+zibin,4160540,3
+fucktbag,4160540,4
+51870876,4160540,4
+cyrus_wong,4160540,4
+zxysyz,4160540,4
+2548730,4160540,4
+58754814,4160540,3
+39945172,4160540,4
+weitianze,4160540,3
+2094238,4160540,4
+52519025,4160540,4
+84418105,4160540,-1
+2329339,4160540,4
+116029632,4160540,4
+wwqyaya,4160540,4
+46455848,4160540,5
+frifriday,4160540,5
+46673618,4160540,3
+55942870,4160540,4
+ccnetcomcn,4160540,4
+endofmay,4160540,4
+53768301,4160540,3
+1454015,4160540,4
+xiza,4160540,5
+34794492,4160540,3
+diR97918,4160540,3
+erin522,4160540,4
+wallaceLee,4160540,4
+44122696,4160540,4
+67068475,4160540,1
+53717367,4160540,4
+4451071,4160540,5
+xuqianxun,4160540,4
+122738024,4160540,4
+evelyne_hsu,4160540,-1
+30674711,4160540,4
+datongtong,4160540,3
+sky15,4160540,3
+maoamao,4160540,4
+71865681,4160540,5
+62762880,4160540,5
+deepgrey,4160540,-1
+andy-channel,4160540,5
+63218478,4160540,5
+Webboy,4160540,4
+94030561,4160540,5
+74909450,4160540,4
+68775691,4160540,4
+enjoy826,4160540,5
+kick,4160540,5
+110718557,4160540,5
+margaux,4160540,4
+yanbigflower,4160540,-1
+ballteda,4160540,2
+64124840,4160540,2
+32995807,4160540,3
+32791958,4160540,5
+50947870,4160540,4
+33597419,4160540,4
+98010855,4160540,4
+axio,4160540,3
+46788822,4160540,4
+41617741,4160540,4
+123079597,4160540,4
+1266223,4160540,4
+1900968,4160540,5
+4283138,4160540,4
+43004375,4160540,4
+89565486,4160540,3
+59581904,4160540,4
+jy89110,4160540,4
+Eunyul,4160540,4
+64480930,4160540,4
+93908300,4160540,4
+wicca0505,4160540,5
+65670261,4160540,4
+115505780,4160540,4
+amaotou,4160540,3
+caoyong0818,4160540,5
+63644261,4160540,4
+51836771,4160540,2
+qq53117256,4160540,3
+greenotea,4160540,5
+mopopo,4160540,4
+82063610,4160540,3
+ilvhate,4160540,3
+muouplay,4160540,4
+CNzane,4160540,4
+58569504,4160540,4
+LIUYUANZI,4160540,3
+50443007,4160540,4
+50499996,4160540,4
+29844884,4160540,4
+93920997,4160540,4
+54220607,4160540,3
+ericjolee,4160540,3
+78914788,4160540,4
+Jarry_yang,4160540,4
+traylor,4160540,5
+1414083,4160540,4
+76351812,4160540,3
+85324202,4160540,3
+laowaizi,4160540,4
+3720128,4160540,4
+61402100,4160540,5
+28820949,4160540,5
+lycheng,4160540,4
+50312843,4160540,4
+carlebee,4160540,3
+61331357,4160540,-1
+61011795,4160540,4
+mrockfire,4160540,5
+giddens,4160540,5
+phoebefly,4160540,2
+jack13,4160540,4
+39015968,4160540,4
+23595062,4160540,3
+52638193,4160540,4
+desa,4160540,5
+115467690,4160540,4
+44134959,4160540,4
+2404986,4160540,4
+lbq023,4160540,5
+soundj,4160540,4
+annsjl,4160540,4
+4265287,4160540,5
+63676625,4160540,3
+48369826,4160540,2
+58759061,4160540,5
+42175180,4160540,4
+62778052,4160540,4
+61594655,4160540,3
+35165687,4160540,5
+67489382,4160540,5
+dongdongqing,4160540,4
+85008065,4160540,4
+RemyAnderson,4160540,-1
+aaaaaaaaaaa,4160540,4
+kylefun,4160540,3
+4106173,4160540,4
+GekiMasamune,4160540,4
+2039343,4160540,3
+echozhan,4160540,4
+6745246,4160540,3
+madbilly,4160540,4
+77162594,4160540,5
+57425264,4160540,3
+nikilee77,4160540,4
+63740269,4160540,3
+biquan,4160540,3
+cloudwwb,4160540,3
+PrinceAlbert,4160540,5
+62546651,4160540,4
+3461171,4160540,4
+48966138,4160540,5
+alianhei,4160540,4
+2390924,4160540,3
+iswh,4160540,2
+53829796,4160540,5
+79571053,4160540,4
+DSFTEM_TANG,4160540,4
+78786637,4160540,4
+102152665,4160540,4
+mgxshui,4160540,-1
+atom_dzd,4160540,3
+58544856,4160540,4
+wolfgang,4160540,4
+vivi112,4160540,3
+maxmartin,4160540,4
+77058316,4160540,3
+41917575,4160540,4
+dearpluto,4160540,4
+83177067,4160540,5
+60724447,4160540,5
+1828264,4160540,3
+59181026,4160540,4
+CX092,4160540,3
+54712127,4160540,4
+43606810,4160540,4
+steinyxu,4160540,4
+62518791,4160540,5
+67736631,4160540,3
+56075427,4160540,4
+52235575,4160540,4
+87651171,4160540,3
+52662813,4160540,3
+53459682,4160540,5
+sheldonkao,4160540,3
+53269895,4160540,3
+3873539,4160540,4
+63167572,4160540,3
+120338818,4160540,5
+60421809,4160540,5
+39255754,4160540,4
+serene_sh,4160540,3
+45501010,4160540,4
+dahdumiedu,4160540,4
+distance_scar,4160540,4
+1643427,4160540,3
+63427414,4160540,4
+127675582,4160540,4
+84531200,4160540,4
+52243326,4160540,3
+littlecar,4160540,4
+qjy,4160540,3
+42484258,4160540,4
+50094689,4160540,3
+5525460,4160540,4
+catfacegirl,4160540,4
+43778462,4160540,-1
+kejinlong,4160540,1
+valvewindswat,4160540,2
+thisisgap,4160540,3
+pankida,4160540,3
+57371600,4160540,4
+36988039,4160540,3
+deirdra,4160540,3
+YellowDi,4160540,5
+52917026,4160540,4
+andystrawberry,4160540,4
+kelvinshaw,4160540,3
+barcelonazhou,4160540,3
+riceseedling,4160540,3
+inmessy,4160540,3
+51950822,4160540,3
+yiyedu,4160540,3
+jyl937paradise,4160540,5
+yeahxcx,4160540,3
+2920373,4160540,3
+fuzyu,4160540,4
+57368822,4160540,4
+JaceJing,4160540,3
+75196730,4160540,3
+57025568,4160540,4
+dyinbride,4160540,4
+76804621,4160540,3
+my1507,4160540,3
+chokex100yrs,4160540,3
+4055161,4160540,-1
+51898571,4160540,1
+gorille,4160540,4
+sistee,4160540,3
+67649121,4160540,4
+62530102,4160540,5
+miracleq0614,4160540,3
+62159923,4160540,-1
+prince-bei,4160540,4
+68700662,4160540,3
+55405486,4160540,3
+69078769,4160540,3
+rbit,4160540,3
+47853230,4160540,3
+66903176,4160540,4
+jazzbon,4160540,3
+liuxingchui99,4160540,4
+78378668,4160540,4
+augusttt,4160540,4
+107539229,4160540,4
+cmart,4160540,4
+68584171,4160540,4
+jinzimiao,4160540,3
+3783132,4160540,4
+40684892,4160540,4
+43215145,4160540,4
+58930883,4160540,3
+76251078,4160540,3
+rucool,4160540,4
+2202819,4160540,5
+jaward,4160540,4
+loveanimals,4160540,3
+tinaq,4160540,3
+leonardzhu,4160540,3
+40496645,4160540,4
+36753274,4160540,3
+holuu,4160540,3
+65662824,4160540,4
+97761478,4160540,4
+84978868,4160540,4
+28955759,4160540,4
+Hex79696e67,4160540,4
+wyest,4160540,-1
+67695770,4160540,5
+sharon_c,4160540,3
+diafarona,4160540,3
+Crystal8023,4160540,3
+XXXOXXX,4160540,5
+52270206,4160540,4
+34574338,4160540,5
+reika_scar,4160540,4
+elsiehu,4160540,5
+bougainvillea,4160540,-1
+69335883,4160540,3
+helene9933,4160540,4
+108821133,4160540,4
+3783012,4160540,4
+zhongxueli,4160540,4
+lqbin,4160540,4
+62737941,4160540,4
+47532296,4160540,3
+sweetcha,4160540,4
+staryanxing,4160540,5
+88597096,4160540,-1
+envyandecho,4160540,5
+juelianyiji,4160540,3
+Mr.rawness,4160540,4
+tofrom,4160540,4
+64139432,4160540,3
+86019559,4160540,4
+64230011,4160540,-1
+73959584,4160540,4
+panyangyong,4160540,4
+1611100,4160540,5
+1511879,4160540,-1
+todayseizer,4160540,4
+43871169,4160540,5
+himarkcn,4160540,4
+46439800,4160540,4
+B-B-B-Side,4160540,4
+55937351,4160540,3
+4381444,4160540,3
+Chiniac_Cubic,4160540,4
+89852120,4160540,5
+loverwenzi22,4160540,4
+47178789,4160540,3
+54056952,4160540,4
+26167687,4160540,4
+55328171,4160540,5
+helenhong,4160540,2
+38585268,4160540,4
+4231166,4160540,4
+OpenSpaces,4160540,5
+xiaochi2,4160540,5
+52870924,4160540,4
+45242330,4160540,4
+sorrowleo,4160540,5
+wangdeuqna,4160540,4
+56566421,4160540,3
+2298833,4160540,4
+mctrain,4160540,5
+2790282,4160540,-1
+stefanieray,4160540,4
+dullphin,4160540,4
+dullphin,4160540,4
+imom918,4160540,4
+wanghuanming,4160540,5
+71516012,4160540,4
+madlab,4160540,3
+mi-hang,4160540,4
+58249010,4160540,4
+leonardokuku,4160540,4
+Pabalee,4160540,4
+1819625,4160540,3
+35916224,4160540,3
+57038536,4160540,5
+linbot,4160540,3
+39937848,4160540,4
+43886305,4160540,4
+67182363,4160540,4
+xrw,4160540,3
+57744415,4160540,4
+maomao19901108,4160540,5
+wanwanlu,4160540,4
+ganlu58,4160540,4
+103452314,4160540,4
+2622280,4160540,5
+43956326,4160540,4
+stupidcat7652,4160540,-1
+sun_1107,4160540,4
+26374508,4160540,4
+14327084,4160540,4
+74188273,4160540,3
+66344990,4160540,3
+nanantalk,4160540,2
+60677426,4160540,5
+plese,4160540,5
+65079476,4160540,3
+famafars,4160540,5
+johnsnow,4160540,4
+127858110,4160540,4
+zechewang007,4160540,3
+62124340,4160540,3
+45722630,4160540,4
+75209751,4160540,4
+victoria1024,4160540,5
+gaoqqcat,4160540,-1
+gooooooooooohe,4160540,5
+jude_chen,4160540,4
+48919879,4160540,4
+74768790,4160540,3
+34486036,4160540,4
+emunah,4160540,4
+71128604,4160540,4
+67410876,4160540,4
+55296496,4160540,4
+63741181,4160540,-1
+78683544,4160540,3
+lucifers,4160540,4
+yangyixiu1218,4160540,4
+84363352,4160540,5
+sisi0lisky,4160540,4
+rainbowwww,4160540,3
+zi34lang,4160540,5
+18318076,4160540,4
+dinoel,4160540,4
+70915171,4160540,5
+Alex2Wang,4160540,5
+43386402,4160540,3
+75328137,4160540,4
+hhl199504,4160540,4
+LauFun,4160540,3
+83303439,4160540,4
+kiki204629,4160540,4
+nebgnahz,4160540,4
+taowj,4160540,3
+47546589,4160540,4
+50148394,4160540,-1
+65520398,4160540,3
+yuwusankou,4160540,4
+55603094,4160540,4
+chrisye,4160540,5
+willsofshatter,4160540,3
+52325322,4160540,5
+72808838,4160540,4
+75096370,4160540,4
+3959996,4160540,5
+53840539,4160540,4
+82521332,4160540,3
+57591311,4160540,5
+jnhjc,4160540,5
+iamnoone,4160540,4
+pirate_cat,4160540,4
+3830228,4160540,5
+49585596,4160540,4
+2849436,4160540,4
+42646716,4160540,4
+1929758,4160540,4
+jingyi2011,4160540,4
+50330506,4160540,5
+seaneight,4160540,3
+61506971,4160540,2
+59408878,4160540,4
+suuunino,4160540,3
+christa1989,4160540,4
+52455447,4160540,-1
+58391749,4160540,4
+2374847,4160540,3
+54578856,4160540,3
+liubin1027,4160540,4
+25282878,4160540,4
+klzj,4160540,4
+47837056,4160540,4
+59099811,4160540,3
+56004367,4160540,5
+mobaibuzai,4160540,4
+vito0719,4160540,4
+Now2012,4160540,3
+windirt,4160540,3
+2696265,4160540,5
+nangle,4160540,3
+xisme,4160540,4
+chenhuayang,4160540,4
+foreveraegeanse,4160540,3
+iyuantian,4160540,3
+Sophieless,4160540,5
+25676059,4160540,4
+seinenmanga,4160540,3
+8342182,4160540,4
+119182643,4160540,5
+mrbrightside,4160540,4
+mitubufan,4160540,4
+47649577,4160540,4
+v-fmeng,4160540,5
+48697809,4160540,5
+curayukie,4160540,4
+a-Joel,4160540,4
+32144547,4160540,4
+41651433,4160540,4
+lifeisastake,4160540,4
+61302654,4160540,4
+pinkiez,4160540,5
+rapistnodabear,4160540,4
+TanLoveU,4160540,4
+78507863,4160540,5
+aikki27,4160540,-1
+28493840,4160540,-1
+52380129,4160540,5
+88316927,4160540,3
+vivi00,4160540,5
+43844879,4160540,4
+37111406,4160540,4
+67574595,4160540,4
+yuruky,4160540,3
+2415644,4160540,4
+3159688,4160540,2
+lym110,4160540,-1
+wena,4160540,4
+52408878,4160540,3
+diso,4160540,3
+Makoto614,4160540,3
+killthatfirefly,4160540,3
+fenglai,4160540,4
+sjch,4160540,4
+3251343,4160540,4
+50210563,4160540,4
+soul922,4160540,3
+51967154,4160540,3
+59446610,4160540,4
+120687136,4160540,5
+ubah3915,4160540,3
+78445664,4160540,5
+3876276,4160540,4
+57424312,4160540,5
+49069966,4160540,4
+62210177,4160540,4
+87989838,4160540,5
+75546072,4160540,4
+52750876,4160540,3
+66968677,4160540,4
+Sudanese,4160540,5
+60019384,4160540,4
+52929940,4160540,4
+3166262,4160540,4
+jiugongzi1989,4160540,3
+JSxiaxia,4160540,4
+qianjin,4160540,3
+69353582,4160540,3
+61978932,4160540,4
+1303479,4160540,2
+39649962,4160540,4
+allenyip,4160540,4
+pas_te,4160540,3
+55452001,4160540,3
+79217545,4160540,1
+nianmin,4160540,4
+mixj93,4160540,4
+18586571,4160540,4
+Gladysbrad,4160540,-1
+Hagxe,4160540,5
+hicrhodus,4160540,5
+46556512,4160540,3
+sellmysoul,4160540,4
+Sadelin,4160540,4
+121228834,4160540,4
+laoguai,4160540,4
+2866973,4160540,3
+lanshitou135,4160540,4
+danielwan,4160540,-1
+leevee,4160540,3
+48726212,4160540,4
+63531003,4160540,2
+slothbug,4160540,-1
+xyiyi,4160540,4
+64783983,4160540,3
+sandlee1986,4160540,5
+TL-toupan512,4160540,4
+TenkyAn,4160540,4
+timeseeker,4160540,4
+wuzouhuanghun,4160540,4
+104469563,4160540,3
+56099441,4160540,4
+2229130,4160540,2
+50415463,4160540,3
+Cr_Rui,4160540,5
+lex1940,4160540,3
+mescal_zoo,4160540,2
+62843691,4160540,4
+xguozi,4160540,4
+57438024,4160540,3
+58421705,4160540,3
+sisyneo,4160540,3
+1445875,4160540,3
+97434116,4160540,4
+65358454,4160540,5
+bxhOTZ,4160540,4
+123653183,4160540,5
+83757263,4160540,3
+huanghuang0227,4160540,5
+41694650,4160540,4
+21270392,4160540,4
+52128416,4160540,4
+50410160,4160540,4
+LupusZhang,4160540,4
+LupusZhang,4160540,4
+deathangel54,4160540,4
+57799036,4160540,3
+41375493,4160540,3
+classical622,4160540,1
+luzhiyu,4160540,4
+huaidanwakaka,4160540,3
+42539278,4160540,4
+4606166,4160540,3
+yededi8821,4160540,4
+ethea,4160540,5
+3078221,4160540,3
+57180055,4160540,3
+45463396,4160540,5
+64083865,4160540,3
+yangyunyan,4160540,4
+lokolifestyle,4160540,4
+hanbaobao,4160540,4
+77316354,4160540,4
+3835065,4160540,4
+63142024,4160540,3
+47821826,4160540,4
+60303119,4160540,4
+2695178,4160540,5
+vivienmoe,4160540,4
+JJ_Jacob,4160540,4
+Townshend,4160540,4
+64880714,4160540,4
+80121770,4160540,3
+113124571,4160540,5
+53811842,4160540,3
+chibao007,4160540,4
+67758880,4160540,3
+3855637,4160540,4
+48622975,4160540,3
+51411876,4160540,4
+3868293,4160540,4
+eveche,4160540,3
+47246915,4160540,4
+faiel,4160540,3
+53501877,4160540,4
+60034842,4160540,4
+petitfroid,4160540,4
+49567226,4160540,4
+48118281,4160540,4
+56475433,4160540,4
+31258002,4160540,4
+duanziyu,4160540,3
+103638490,4160540,3
+Archcity,4160540,3
+Tinynana,4160540,4
+zouyi,4160540,4
+49985202,4160540,4
+49144241,4160540,5
+45362948,4160540,3
+xirenju,4160540,1
+4147254,4160540,4
+75288450,4160540,3
+1780764,4160540,4
+EVz,4160540,4
+lidao1127,4160540,4
+fangkuan0511,4160540,4
+blackemotions,4160540,4
+3670661,4160540,4
+53873820,4160540,3
+3278392,4160540,3
+angelica_ll,4160540,4
+greation9,4160540,5
+3934959,4160540,4
+47099555,4160540,3
+51328750,4160540,4
+103105403,4160540,4
+40371107,4160540,4
+8523675,4160540,4
+81870071,4160540,3
+52046312,4160540,4
+46815070,4160540,4
+57981743,4160540,3
+tiebin223,4160540,3
+godmaydance,4160540,4
+TsingHsia,4160540,3
+76935104,4160540,4
+dudumozart,4160540,5
+54507832,4160540,5
+52444506,4160540,4
+77316107,4160540,4
+skyllla,4160540,4
+fuckfucker,4160540,3
+dnchii,4160540,4
+x-inter,4160540,5
+57743813,4160540,4
+misszuoweimen,4160540,4
+matt33,4160540,4
+51985669,4160540,5
+43837570,4160540,4
+66550848,4160540,4
+26487427,4160540,4
+125096081,4160540,4
+IanZ,4160540,5
+52272245,4160540,3
+41080463,4160540,4
+81902764,4160540,4
+1918174,4160540,3
+81296522,4160540,4
+fullmoon924,4160540,4
+4462311,4160540,4
+adamneverland,4160540,5
+3756667,4160540,-1
+127804130,4160540,5
+tongbaojia,4160540,4
+Edward_Elric,4160540,4
+M-X-Y-,4160540,4
+ambrosia.levine,4160540,3
+skgn,4160540,4
+54769561,4160540,4
+46827374,4160540,3
+mrsmsr,4160540,3
+vividtime,4160540,4
+calculus123,4160540,4
+3623173,4160540,5
+robinorigin,4160540,5
+junglehaha,4160540,4
+70708338,4160540,3
+erythematosus,4160540,4
+chiarachan,4160540,4
+moemoeplanet,4160540,3
+53277349,4160540,5
+33301622,4160540,4
+spiritsun,4160540,3
+gilbert930919,4160540,5
+ckthewise,4160540,4
+60065221,4160540,3
+dear-anonymous,4160540,5
+Mwt0708,4160540,4
+suyanz,4160540,4
+bell-wind,4160540,5
+jisixue0111,4160540,4
+59457349,4160540,4
+grannys_bear,4160540,4
+cassandra73,4160540,4
+tezuka15,4160540,4
+2819586,4160540,3
+jeremydu777,4160540,4
+55353817,4160540,5
+xuanmg,4160540,3
+sacro,4160540,3
+90056142,4160540,4
+41438322,4160540,3
+47436584,4160540,3
+1344334,4160540,4
+59969059,4160540,5
+kongben,4160540,3
+huijinxiang1008,4160540,1
+Fly_yan,4160540,3
+cockerel,4160540,1
+101818819,4160540,4
+saibei,4160540,4
+115721198,4160540,2
+63641490,4160540,5
+hi_nieve,4160540,4
+68112162,4160540,4
+92423237,4160540,4
+devil_JunN,4160540,4
+jashia,4160540,5
+45539973,4160540,4
+dataroom,4160540,4
+hiphopking,4160540,5
+likechuck,4160540,4
+3922372,4160540,3
+58993842,4160540,5
+3627412,4160540,4
+77040171,4160540,-1
+2619483,4160540,3
+4529884,4160540,4
+echosmilefor,4160540,4
+bunny-say,4160540,3
+3061502,4160540,4
+yol0321,4160540,4
+athenasaga,4160540,5
+9994133,4160540,5
+100338185,4160540,3
+dilety,4160540,5
+64113646,4160540,4
+1164137,4160540,3
+1941418,4160540,2
+51170340,4160540,4
+12667477,4160540,3
+jiajia1130,4160540,3
+3020797,4160540,4
+44618919,4160540,4
+82687720,4160540,3
+42787418,4160540,4
+pm,4160540,4
+87199816,4160540,4
+35864691,4160540,4
+70242419,4160540,5
+48711761,4160540,5
+64169214,4160540,4
+61294563,4160540,3
+101766372,4160540,3
+williamfan,4160540,5
+tomatobear,4160540,5
+JosephGordon,4160540,4
+cc51,4160540,4
+cwmaifxx,4160540,4
+wonderfultimes,4160540,5
+45156629,4160540,4
+Lancelot365,4160540,4
+likeflowers,4160540,4
+hualishu,4160540,4
+78977506,4160540,4
+46175223,4160540,4
+anmour,4160540,4
+57683355,4160540,4
+2228048,4160540,4
+47366306,4160540,4
+88661415,4160540,5
+116908080,4160540,4
+wzhu,4160540,3
+wbcyclist,4160540,4
+36008103,4160540,3
+56884321,4160540,2
+1978347,4160540,4
+55613939,4160540,3
+Sadish,4160540,4
+26265440,4160540,5
+15175212,4160540,5
+33149603,4160540,3
+unclesome,4160540,-1
+45583268,4160540,4
+coldestwind,4160540,4
+41492377,4160540,4
+40970313,4160540,3
+46064508,4160540,4
+xiaoniangT,4160540,5
+74701610,4160540,3
+marco_xc,4160540,3
+79951487,4160540,3
+50256775,4160540,5
+52704101,4160540,4
+muer1986,4160540,4
+48011009,4160540,5
+JakeNow,4160540,3
+4392294,4160540,2
+2668037,4160540,4
+arbow,4160540,4
+oscarly,4160540,4
+40735647,4160540,3
+ocean11,4160540,4
+51253098,4160540,4
+29822208,4160540,3
+xiaoduanzi,4160540,3
+49162813,4160540,4
+52061855,4160540,4
+darchang,4160540,3
+vane0109,4160540,5
+1998296,4160540,4
+66057217,4160540,4
+ruoxilingshan,4160540,4
+58094531,4160540,3
+62613227,4160540,3
+48067046,4160540,3
+127781489,4160540,4
+1709598,4160540,3
+dusk.xiyang,4160540,4
+1249947,4160540,4
+57617460,4160540,4
+45003782,4160540,5
+37402473,4160540,4
+niazion,4160540,4
+115819915,4160540,4
+28252850,4160540,3
+hahaha1983,4160540,5
+jasontodd,4160540,3
+60289458,4160540,2
+95545615,4160540,2
+31066447,4160540,4
+Suiyee,4160540,4
+HowardRoark,4160540,4
+nina,4160540,4
+wendyhsu,4160540,3
+2613556,4160540,3
+46014273,4160540,5
+30116913,4160540,4
+56911400,4160540,4
+mescoda,4160540,5
+32941683,4160540,5
+45938786,4160540,5
+49209219,4160540,3
+rhh,4160540,5
+forzajuve,4160540,4
+2600693,4160540,3
+ishtarie,4160540,4
+cc5832354,4160540,4
+pajamania,4160540,4
+5251004,4160540,4
+3312608,4160540,4
+54917292,4160540,4
+36792290,4160540,3
+2842455,4160540,4
+standyvan,4160540,3
+nsxrb,4160540,2
+1773768,4160540,4
+margie_margie,4160540,4
+81845294,4160540,3
+derek8356,4160540,3
+Fice,4160540,5
+franciss,4160540,4
+63548568,4160540,3
+flamestar,4160540,4
+51862860,4160540,4
+1840916,4160540,4
+71030752,4160540,4
+huanhai,4160540,4
+lijianizainali,4160540,-1
+45158897,4160540,3
+63989347,4160540,4
+2280920,4160540,4
+post-rocker,4160540,4
+30986190,4160540,5
+35421582,4160540,4
+jaslee,4160540,4
+93476152,4160540,5
+Tomatochaoegg,4160540,3
+miko0721,4160540,3
+53012864,4160540,4
+gionlau,4160540,4
+50100351,4160540,4
+46170903,4160540,3
+80382193,4160540,3
+123095182,4160540,5
+hejiangwin,4160540,5
+50167073,4160540,2
+3538572,4160540,3
+55624184,4160540,4
+bluehtt,4160540,4
+46149652,4160540,5
+tommylin,4160540,4
+53530714,4160540,3
+16740892,4160540,4
+fiona751,4160540,4
+41755719,4160540,4
+46282753,4160540,5
+67742444,4160540,4
+SUrou,4160540,-1
+39811397,4160540,1
+claudiabaobeier,4160540,2
+kid1412zn,4160540,4
+64030355,4160540,4
+guosong0804,4160540,5
+40424921,4160540,4
+yejiuyi,4160540,3
+4010095,4160540,3
+33732508,4160540,4
+zhchtcm,4160540,3
+johnqz874,4160540,4
+wwwsxst,4160540,4
+1759173,4160540,3
+shesgone,4160540,3
+49416713,4160540,4
+37183583,4160540,5
+50497763,4160540,3
+ben_nsr,4160540,4
+97277841,4160540,4
+2274126,4160540,-1
+64881542,4160540,4
+64626866,4160540,4
+45498889,4160540,4
+erobin,4160540,4
+43090298,4160540,3
+dd54,4160540,4
+nushou,4160540,-1
+Angely_K,4160540,4
+61426958,4160540,4
+3771616,4160540,2
+64110275,4160540,4
+30765497,4160540,3
+chymo,4160540,3
+1829349,4160540,4
+feellings,4160540,-1
+feellings,4160540,-1
+kishio,4160540,-1
+FEL_Murasakiiro,4160540,4
+83816838,4160540,5
+62345089,4160540,5
+46735351,4160540,5
+realvander,4160540,3
+hidemyhead,4160540,4
+71440202,4160540,3
+78314737,4160540,4
+20252403,4160540,4
+120551581,4160540,4
+58109203,4160540,4
+41991102,4160540,5
+63070112,4160540,4
+62860016,4160540,4
+53929972,4160540,4
+64389615,4160540,5
+60214722,4160540,5
+wild_lsak,4160540,4
+wild_lsak,4160540,4
+67316449,4160540,5
+66557005,4160540,4
+79839158,4160540,4
+Nokia95,4160540,4
+54069821,4160540,4
+3173862,4160540,2
+1497446,4160540,-1
+LinXion,4160540,4
+123449328,4160540,4
+54474146,4160540,4
+keaqy,4160540,4
+49810367,4160540,3
+87906955,4160540,3
+1599200,4160540,3
+t_go,4160540,3
+ibanyan,4160540,2
+32911120,4160540,4
+laurawang,4160540,3
+hedgehog,4160540,4
+moredarkwhite,4160540,3
+Rakastan,4160540,1
+yamm1,4160540,4
+41482074,4160540,4
+2134463,4160540,5
+2890229,4160540,4
+1576797,4160540,5
+4190834,4160540,4
+119490218,4160540,3
+unusualli,4160540,4
+37899965,4160540,3
+53682563,4160540,4
+hdjjys,4160540,3
+zggdzssaq,4160540,5
+81194074,4160540,5
+57665696,4160540,3
+istas,4160540,-1
+lovebenedict,4160540,1
+64783002,4160540,3
+72327409,4160540,4
+63965908,4160540,4
+2530595,4160540,5
+bltee,4160540,4
+fortunearn,4160540,4
+76413878,4160540,4
+50880780,4160540,3
+zsy1993,4160540,4
+blueskd,4160540,4
+TJewelz,4160540,4
+56051610,4160540,5
+fyyxf,4160540,3
+68129112,4160540,4
+3083042,4160540,3
+65285164,4160540,3
+82121921,4160540,3
+48976619,4160540,3
+52874024,4160540,4
+1346449,4160540,1
+61189415,4160540,3
+119881624,4160540,4
+dreamcatcher17,4160540,5
+125180351,4160540,3
+csee1121,4160540,4
+harry-wang,4160540,4
+50952733,4160540,5
+myselfriver,4160540,4
+46678115,4160540,5
+55354674,4160540,4
+2558232,4160540,4
+49099822,4160540,5
+estherliu,4160540,4
+bobohan,4160540,3
+kkx2222,4160540,3
+124759962,4160540,3
+40326661,4160540,1
+56732738,4160540,5
+47821989,4160540,4
+48287443,4160540,4
+2401454,4160540,5
+52538749,4160540,4
+65087582,4160540,4
+62850714,4160540,1
+65365565,4160540,4
+56194836,4160540,4
+121377457,4160540,3
+3580415,4160540,3
+70870817,4160540,3
+57319481,4160540,4
+72629481,4160540,5
+59969817,4160540,4
+regardez_moi,4160540,5
+51157596,4160540,4
+52765670,4160540,3
+Minimalis,4160540,4
+73112329,4160540,1
+53925227,4160540,4
+Bening,4160540,4
+102930164,4160540,3
+47383067,4160540,3
+htshboy,4160540,4
+htshboy,4160540,4
+62906196,4160540,3
+abin520918,4160540,4
+119325282,4160540,2
+66618128,4160540,5
+51868895,4160540,5
+43067493,4160540,4
+93471236,4160540,3
+49397696,4160540,3
+27511197,4160540,3
+Aaaa_pril,4160540,3
+3947744,4160540,4
+Curry_Egg,4160540,3
+34271981,4160540,4
+35892009,4160540,4
+120772872,4160540,3
+madblademan,4160540,5
+70277575,4160540,3
+43864644,4160540,3
+JJ88pig,4160540,4
+33976222,4160540,4
+4790872,4160540,4
+1988305,4160540,5
+yuntaoc,4160540,4
+christopherlin,4160540,3
+xing18wei,4160540,3
+viva.wj,4160540,4
+pjcs,4160540,4
+66277034,4160540,5
+tankdriver,4160540,3
+68696664,4160540,3
+112129032,4160540,4
+60372939,4160540,4
+huoshuyinhua,4160540,3
+58836160,4160540,4
+36060435,4160540,4
+48770075,4160540,4
+64009647,4160540,4
+50373897,4160540,4
+14352147,4160540,4
+41015265,4160540,4
+mufishchi,4160540,4
+lujcmss,4160540,4
+119786891,4160540,4
+eaufavor,4160540,4
+49302418,4160540,5
+darkphoenix,4160540,4
+74346817,4160540,4
+Zynismus,4160540,4
+3122796,4160540,3
+alan_fanfan,4160540,4
+81930957,4160540,4
+xuanyushuo,4160540,4
+jiangfeng1124,4160540,5
+2092985,4160540,4
+60731189,4160540,5
+leehow29,4160540,4
+3571336,4160540,2
+evilhyde,4160540,4
+47193126,4160540,3
+rockzero,4160540,-1
+66048476,4160540,4
+nevertry,4160540,4
+ngc2535,4160540,4
+4266952,4160540,4
+37751161,4160540,4
+43662887,4160540,4
+ShiningRay,4160540,3
+2784323,4160540,5
+62721036,4160540,4
+urielwang,4160540,4
+105374455,4160540,5
+80936991,4160540,4
+83130364,4160540,5
+chenxinchenyu,4160540,4
+deactivate,4160540,4
+61621650,4160540,2
+parkxiahky,4160540,3
+wangyi2011,4160540,3
+68364127,4160540,5
+104629005,4160540,4
+47708904,4160540,4
+france_lj,4160540,4
+cloudy20011128,4160540,3
+47747818,4160540,4
+Temor,4160540,4
+37612186,4160540,4
+ohahahu,4160540,4
+cissy,4160540,3
+wuwildwind,4160540,4
+63636822,4160540,4
+xonnox,4160540,4
+millayQ,4160540,3
+dbhungry,4160540,4
+2924921,4160540,4
+74818677,4160540,4
+66753924,4160540,3
+51434691,4160540,3
+chenkongkong,4160540,4
+54004738,4160540,5
+hsueason,4160540,3
+yutingamy,4160540,4
+redbackzhong,4160540,-1
+55576764,4160540,5
+zhongshanaoli,4160540,4
+65776800,4160540,5
+fengzaifei,4160540,4
+4374610,4160540,5
+4243064,4160540,3
+53415052,4160540,-1
+45577944,4160540,5
+jxncm,4160540,5
+46338692,4160540,3
+116977972,4160540,4
+36667235,4160540,4
+Felwithe,4160540,5
+ClaireChu,4160540,4
+gangrel96,4160540,4
+62036162,4160540,4
+41799258,4160540,4
+liuGrey,4160540,4
+61805853,4160540,5
+82431278,4160540,3
+kimomo,4160540,4
+tuimaoshu,4160540,4
+67851439,4160540,4
+9598034,4160540,4
+2283860,4160540,5
+LassCoLa,4160540,4
+kleinbottle,4160540,3
+72984075,4160540,3
+OldKingdom,4160540,4
+mingwang,4160540,4
+61389962,4160540,3
+a13025566,4160540,3
+2071906,4160540,4
+126482942,4160540,5
+kl147,4160540,3
+4307095,4160540,5
+43452188,4160540,4
+4603294,4160540,4
+40581527,4160540,4
+1892627,4160540,3
+86140576,4160540,-1
+57886651,4160540,4
+Kallita,4160540,4
+1795295,4160540,4
+zzp767,4160540,4
+grassy,4160540,-1
+swwol32,4160540,4
+somniloquist,4160540,3
+47461599,4160540,3
+44290578,4160540,5
+adu2599,4160540,4
+60144175,4160540,5
+43961500,4160540,4
+zhujiao,4160540,4
+93724180,4160540,4
+3884388,4160540,3
+jezad,4160540,4
+Oceanor,4160540,3
+68139737,4160540,5
+mowong,4160540,4
+60728287,4160540,3
+62221934,4160540,4
+60392839,4160540,3
+samsyu,4160540,4
+hudodo0314,4160540,3
+greatblue,4160540,3
+anliucom,4160540,4
+weilonghuang,4160540,4
+mengqu520,4160540,4
+60714854,4160540,5
+lovelessdavy,4160540,4
+3326265,4160540,4
+58596058,4160540,4
+megansyr,4160540,-1
+1236338,4160540,4
+48843413,4160540,3
+66276613,4160540,3
+allon,4160540,5
+53802947,4160540,3
+60368000,4160540,5
+50735225,4160540,4
+sijizhp,4160540,3
+cijunbutileng,4160540,3
+suicideclub,4160540,4
+45543286,4160540,3
+20817049,4160540,4
+gengu,4160540,5
+83123138,4160540,4
+92806168,4160540,3
+azullluvia,4160540,5
+coney321,4160540,-1
+aylia,4160540,5
+58371683,4160540,4
+47790392,4160540,5
+108352341,4160540,4
+52740043,4160540,4
+50210818,4160540,3
+shuimudeyu1990,4160540,4
+cuixinhai88,4160540,5
+riqu,4160540,3
+lokaven,4160540,4
+liqiyao8931,4160540,4
+xiaojirou007,4160540,3
+46735684,4160540,4
+lavicong,4160540,1
+favezhihao,4160540,5
+45593428,4160540,3
+tuiblio,4160540,3
+crankysophia,4160540,2
+jiangssica,4160540,5
+jiao.s,4160540,5
+jeffersontang,4160540,4
+zqsaima,4160540,5
+85948759,4160540,4
+nemoye,4160540,4
+13053957,4160540,4
+127700575,4160540,4
+127700575,4160540,4
+silence17,4160540,4
+augeste,4160540,4
+60140602,4160540,2
+1886385,4160540,4
+cantona_x,4160540,3
+47352863,4160540,3
+63278789,4160540,4
+3904908,4160540,4
+40552565,4160540,4
+eleora,4160540,4
+45008619,4160540,5
+39605411,4160540,3
+99977887,4160540,4
+40859229,4160540,4
+vivienvb,4160540,4
+cchestnut,4160540,4
+3626661,4160540,5
+2788057,4160540,3
+Olesama,4160540,4
+abc1985,4160540,3
+50795833,4160540,5
+102070870,4160540,3
+2488466,4160540,5
+71519036,4160540,4
+Jhon_Lou,4160540,4
+M1993interspace,4160540,5
+31634567,4160540,4
+52543419,4160540,4
+yace,4160540,3
+proband,4160540,3
+kualo,4160540,3
+buyiding2011,4160540,3
+67388709,4160540,4
+1567784,4160540,3
+89984750,4160540,3
+qinxuanzi,4160540,4
+115702913,4160540,4
+65020946,4160540,4
+83974267,4160540,4
+33245540,4160540,4
+2671857,4160540,3
+59062851,4160540,3
+btone0808,4160540,1
+snokin,4160540,4
+AsleepOrDead,4160540,5
+Yufeiizhang,4160540,4
+1963480,4160540,4
+auv1990,4160540,4
+3617977,4160540,3
+57923940,4160540,3
+2229995,4160540,3
+42368147,4160540,3
+franticman,4160540,5
+josherich,4160540,3
+2722876,4160540,1
+lightreus,4160540,4
+53346121,4160540,3
+2668629,4160540,4
+62457534,4160540,4
+47346774,4160540,3
+stompbabe,4160540,3
+63569379,4160540,3
+seventeenF,4160540,3
+69751106,4160540,4
+36458457,4160540,4
+58854842,4160540,4
+Mr.Zeng,4160540,-1
+101884264,4160540,3
+bcnk,4160540,4
+50831360,4160540,4
+aralebox,4160540,4
+36556180,4160540,5
+ala,4160540,4
+thomsonkoo,4160540,3
+76011688,4160540,3
+49174429,4160540,4
+Amberfrom,4160540,4
+3701499,4160540,4
+Niro-Zeng,4160540,3
+3809796,4160540,1
+55842990,4160540,4
+Edward-Lockwood,4160540,5
+52433144,4160540,4
+Roy021,4160540,-1
+dkjune,4160540,4
+greatabel,4160540,3
+70394248,4160540,4
+63406200,4160540,4
+65108877,4160540,4
+51183805,4160540,4
+37263242,4160540,4
+64350894,4160540,3
+126821975,4160540,4
+HSamson,4160540,4
+xiang_ge,4160540,5
+zy421,4160540,4
+17407986,4160540,2
+58454071,4160540,4
+osssan,4160540,3
+45985032,4160540,2
+leechambo,4160540,3
+55797857,4160540,4
+62739404,4160540,5
+124249667,4160540,4
+My_deary,4160540,4
+70253982,4160540,4
+74103020,4160540,3
+maxmilia,4160540,4
+uruk60kg,4160540,4
+81836984,4160540,5
+hnnyzxh,4160540,4
+4690946,4160540,3
+40613162,4160540,4
+2830194,4160540,4
+d15i7,4160540,4
+52116951,4160540,4
+125323744,4160540,4
+orlando_6,4160540,4
+93332466,4160540,4
+48155237,4160540,4
+spadar,4160540,5
+64325413,4160540,5
+dreamending,4160540,3
+74680055,4160540,4
+rin993,4160540,3
+41680643,4160540,4
+sb54ha,4160540,4
+52470011,4160540,3
+mauvey,4160540,4
+yyuan9372,4160540,3
+xxxxsxxxx,4160540,3
+moca87,4160540,5
+leoyoontsaw,4160540,4
+inearlysummer,4160540,3
+45483327,4160540,4
+chloe_huang,4160540,4
+2109374,4160540,3
+75043360,4160540,4
+37660069,4160540,5
+happythename,4160540,5
+HJS_L,4160540,3
+120392055,4160540,4
+guanchen76,4160540,3
+52282089,4160540,3
+69544047,4160540,5
+58255325,4160540,4
+3753878,4160540,5
+Loudzone,4160540,4
+59752375,4160540,4
+lanshunun,4160540,3
+83220244,4160540,3
+51476835,4160540,3
+35471670,4160540,5
+wakaka1986,4160540,3
+79020620,4160540,4
+54817318,4160540,5
+3581018,4160540,3
+liao_le,4160540,3
+52134958,4160540,4
+jieyaren,4160540,4
+49376400,4160540,3
+67900102,4160540,4
+lzh625,4160540,5
+DamonCoxon,4160540,3
+1326010,4160540,4
+67424029,4160540,4
+50761421,4160540,4
+67548909,4160540,4
+48646694,4160540,5
+mackalex,4160540,3
+77267201,4160540,3
+1017956,4160540,4
+huaxiren,4160540,3
+goodbyemyprince,4160540,3
+dengdee,4160540,4
+aether1013,4160540,3
+bitkb,4160540,5
+2052146,4160540,-1
+1805745,4160540,4
+61599926,4160540,2
+cheth,4160540,3
+JLeee,4160540,4
+1496058,4160540,3
+8605018,4160540,3
+yanyan0724,4160540,4
+fufufufuxk,4160540,3
+48634684,4160540,4
+71723817,4160540,4
+xiao8888,4160540,4
+liyijuan,4160540,3
+guoyandao,4160540,4
+115669845,4160540,3
+50219833,4160540,4
+heylian,4160540,4
+58549511,4160540,4
+hutianyi,4160540,5
+maniacmolecules,4160540,4
+84642768,4160540,4
+47754409,4160540,4
+darendaren,4160540,-1
+75122925,4160540,4
+aaadzy,4160540,5
+chincir,4160540,1
+Isayori,4160540,4
+nopanic,4160540,5
+44579499,4160540,4
+2166867,4160540,4
+61712114,4160540,3
+lorenmt,4160540,5
+55272945,4160540,5
+lovelinRan,4160540,5
+violette,4160540,3
+82615703,4160540,3
+81628425,4160540,4
+Rukia,4160540,4
+3178602,4160540,4
+4313043,4160540,4
+34744036,4160540,5
+54400244,4160540,3
+90051465,4160540,3
+baoziguainiu,4160540,4
+xijunw,4160540,4
+68229713,4160540,5
+46712687,4160540,5
+97537742,4160540,5
+shaogezhu,4160540,2
+chaoz-mozart,4160540,5
+79042987,4160540,5
+Motey,4160540,3
+42221402,4160540,3
+49718559,4160540,4
+seafans,4160540,4
+9036844,4160540,5
+53771308,4160540,5
+8903991,4160540,5
+81509803,4160540,4
+62984615,4160540,3
+53605408,4160540,4
+soulmissing,4160540,4
+48787128,4160540,4
+mugglezwt,4160540,4
+39023511,4160540,4
+chopinfisher,4160540,5
+sakimay,4160540,5
+3202437,4160540,4
+coldmountain_,4160540,3
+56396911,4160540,3
+48797392,4160540,3
+1976152,4160540,4
+85239246,4160540,4
+johnkale,4160540,5
+49764715,4160540,4
+14587316,4160540,-1
+36669166,4160540,3
+48182921,4160540,5
+62862861,4160540,4
+89763899,4160540,4
+Tianyangyang,4160540,4
+leemarkgz,4160540,4
+eiji218837,4160540,3
+trebleang,4160540,4
+xiaoyushudai,4160540,3
+aezero,4160540,4
+beiliya6261,4160540,3
+clockrabbit,4160540,4
+17841543,4160540,5
+starstargoo,4160540,3
+hjzj,4160540,3
+xiamudemao,4160540,3
+122598157,4160540,2
+Chliztian,4160540,3
+wenliangno1,4160540,4
+2266457,4160540,4
+4597338,4160540,3
+fat_hill,4160540,5
+ssxl,4160540,3
+47781280,4160540,4
+54853596,4160540,4
+51480816,4160540,4
+74624469,4160540,4
+49074611,4160540,3
+3894700,4160540,4
+thegreatkoala,4160540,4
+nancy1989511,4160540,4
+zhangfeitt,4160540,4
+garfieldcr,4160540,4
+ninosun,4160540,4
+runaway6161,4160540,3
+solitaryreaper,4160540,-1
+terenceyibo,4160540,4
+48505229,4160540,4
+27088353,4160540,4
+teikamouse,4160540,3
+46847805,4160540,4
+1068125,4160540,4
+42106999,4160540,3
+63916193,4160540,5
+lazzaro,4160540,3
+55831282,4160540,4
+47417998,4160540,4
+yeyinihao,4160540,3
+birdlikezyl,4160540,5
+63642878,4160540,-1
+53559432,4160540,2
+aki.sh,4160540,4
+52822053,4160540,-1
+buxiebujie,4160540,3
+69968814,4160540,5
+75651301,4160540,4
+58110144,4160540,4
+CharlesChou,4160540,5
+zhaoxiaofang,4160540,4
+59334722,4160540,4
+yyyakun,4160540,5
+muson00,4160540,4
+100778702,4160540,3
+53256209,4160540,4
+nolotus,4160540,1
+iread,4160540,3
+Vycia,4160540,3
+45804814,4160540,3
+65366516,4160540,4
+67238808,4160540,4
+70173493,4160540,3
+59253003,4160540,5
+122427333,4160540,4
+Phyllis5,4160540,4
+34542650,4160540,3
+39945204,4160540,4
+82303147,4160540,3
+3286191,4160540,5
+49541286,4160540,3
+sullivan_lee,4160540,4
+linnjil,4160540,4
+2822373,4160540,-1
+yada911,4160540,2
+worldman55555,4160540,5
+50075764,4160540,3
+qzl,4160540,4
+Youoen,4160540,4
+8312118,4160540,4
+2168788,4160540,-1
+cocojamboo,4160540,3
+49608808,4160540,3
+86714653,4160540,5
+cui_xianan,4160540,3
+illiteracy,4160540,3
+47220020,4160540,3
+69680465,4160540,4
+zhuerba1,4160540,5
+57084778,4160540,3
+caocaoa,4160540,3
+60195405,4160540,5
+73552244,4160540,3
+96498442,4160540,3
+jiuchen21,4160540,3
+25534577,4160540,5
+35813268,4160540,3
+4737971,4160540,3
+3627066,4160540,4
+50372044,4160540,4
+aladingmax,4160540,5
+49712766,4160540,4
+63958025,4160540,4
+sirk,4160540,4
+GLORY_HERE,4160540,3
+15920466,4160540,-1
+TVBVSBON,4160540,4
+63011221,4160540,4
+3588917,4160540,4
+70278597,4160540,4
+51572844,4160540,4
+54150368,4160540,3
+63612050,4160540,4
+hooklt,4160540,4
+61137197,4160540,4
+lucindaLI,4160540,4
+4590078,4160540,5
+cect,4160540,3
+kingdoucloud,4160540,4
+1305377,4160540,-1
+98136515,4160540,4
+62877248,4160540,3
+115660168,4160540,3
+ILWTFT,4160540,3
+1729125,4160540,3
+fan_tuan,4160540,4
+afa1021,4160540,3
+norlesamourai,4160540,-1
+44204441,4160540,5
+yeslie,4160540,4
+61069338,4160540,4
+77719731,4160540,3
+iliuweiming,4160540,4
+thistle_,4160540,3
+foreverroad,4160540,4
+50479628,4160540,5
+59842104,4160540,3
+simply_red,4160540,5
+videe,4160540,4
+51795148,4160540,-1
+3540441,4160540,4
+53392958,4160540,4
+awesome_egg,4160540,-1
+62582526,4160540,4
+46866500,4160540,4
+demoncat,4160540,3
+WildHorse2012,4160540,4
+114737955,4160540,3
+yzone,4160540,3
+45607134,4160540,2
+46828936,4160540,5
+aileenchow,4160540,3
+parisyoung,4160540,2
+xxe,4160540,3
+52214552,4160540,4
+halfling,4160540,4
+58906132,4160540,5
+xianxianchen,4160540,3
+76150664,4160540,4
+67235309,4160540,4
+threeyears,4160540,4
+YuRAY,4160540,5
+xiaoyingshuo,4160540,4
+huazhuhaiyao,4160540,4
+Tylermrx,4160540,4
+sealong,4160540,4
+maohei,4160540,3
+64239323,4160540,5
+63910609,4160540,3
+wwnoah,4160540,4
+lfy610,4160540,4
+particles,4160540,4
+97786845,4160540,4
+126329792,4160540,3
+tangsongsong,4160540,4
+yanya,4160540,4
+ossianshiwo,4160540,4
+54926735,4160540,5
+1316648,4160540,3
+annaxingxin,4160540,4
+60420315,4160540,3
+bohemiann,4160540,4
+4118910,4160540,5
+66550666,4160540,4
+100591441,4160540,5
+52583509,4160540,3
+annalotory,4160540,5
+7609988,4160540,4
+116718171,4160540,5
+81189396,4160540,-1
+4712419,4160540,4
+zechs,4160540,4
+88033258,4160540,3
+70542468,4160540,3
+misstorlii,4160540,3
+srada,4160540,4
+70469575,4160540,4
+49246555,4160540,3
+34700595,4160540,4
+lisanlin,4160540,2
+75986460,4160540,4
+mesjustt,4160540,4
+60311898,4160540,4
+75015059,4160540,-1
+55617091,4160540,2
+119263813,4160540,3
+50900048,4160540,3
+3636694,4160540,5
+49539687,4160540,4
+nanday,4160540,4
+45103571,4160540,4
+kulilin,4160540,2
+afterthis,4160540,3
+4251957,4160540,-1
+luluto,4160540,4
+1648909,4160540,1
+mjwclearstory,4160540,4
+COCOCOQUEEN,4160540,3
+CAla,4160540,4
+essy,4160540,4
+2344931,4160540,4
+1114835,4160540,4
+80803700,4160540,2
+v32,4160540,3
+43164701,4160540,3
+aspartameeee,4160540,4
+1223426,4160540,4
+102885531,4160540,3
+babywineer,4160540,3
+47639252,4160540,3
+62336484,4160540,4
+63422177,4160540,4
+48502563,4160540,5
+muxiaoxu,4160540,3
+51112387,4160540,5
+dou_1223,4160540,5
+64004502,4160540,4
+65550886,4160540,4
+cyn99,4160540,4
+iwei,4160540,4
+wtymarx,4160540,4
+akitaneru,4160540,4
+78719289,4160540,5
+44070862,4160540,3
+74395883,4160540,4
+2690106,4160540,4
+theflyingjamie,4160540,4
+rivering,4160540,4
+helloLins,4160540,5
+fadedsoul,4160540,3
+44628811,4160540,3
+simplepig,4160540,3
+51636486,4160540,3
+carried,4160540,3
+jihong,4160540,4
+2273373,4160540,-1
+101747409,4160540,4
+44468738,4160540,3
+wcngsjb,4160540,3
+sevenbucks,4160540,4
+jomey,4160540,4
+4664312,4160540,3
+sousou,4160540,3
+52278915,4160540,5
+51206699,4160540,3
+dirtywest,4160540,5
+lubyson,4160540,4
+3372957,4160540,2
+61236643,4160540,4
+oranjeruud,4160540,3
+47386345,4160540,4
+danger8413,4160540,3
+49201790,4160540,3
+zelda145,4160540,2
+icwk,4160540,5
+Andy_Shan,4160540,3
+77017255,4160540,5
+ruo619,4160540,2
+linsio,4160540,4
+almo,4160540,4
+bayer04040404,4160540,4
+57468138,4160540,4
+NMary,4160540,3
+lemon_period,4160540,4
+31991404,4160540,4
+landystar,4160540,4
+simonyao,4160540,2
+10539580,4160540,3
+60650202,4160540,4
+124812731,4160540,4
+82248938,4160540,3
+Teejayu,4160540,4
+victor.Z,4160540,4
+Aurorainbow,4160540,5
+2440348,4160540,2
+63280608,4160540,-1
+fjyzhu,4160540,4
+13621767,4160540,4
+thechamp,4160540,4
+andriylin,4160540,5
+huhan,4160540,4
+anarchy4,4160540,4
+Sam_in_Fangzi,4160540,4
+47046714,4160540,3
+72756935,4160540,4
+66189087,4160540,4
+60673752,4160540,4
+54666689,4160540,4
+kingsitcome,4160540,3
+koala676,4160540,4
+fuckdoubanagain,4160540,-1
+46082749,4160540,4
+51057351,4160540,5
+hohosweet,4160540,4
+puppetjuan,4160540,2
+74170855,4160540,4
+2199302,4160540,5
+53028011,4160540,5
+kidaliu,4160540,3
+13593852,4160540,-1
+ussj,4160540,4
+david-kwok,4160540,4
+82989096,4160540,5
+shuoyun,4160540,-1
+46363322,4160540,5
+104367240,4160540,5
+46608685,4160540,4
+the-lake-house,4160540,4
+2310913,4160540,4
+35241807,4160540,2
+roy325,4160540,3
+4175111,4160540,3
+1746842,4160540,4
+vahn,4160540,4
+Illbeamyouup,4160540,5
+49596265,4160540,5
+71968197,4160540,3
+rollschild,4160540,3
+lingrui1995,4160540,3
+57742250,4160540,4
+60120741,4160540,3
+fli93,4160540,4
+103526803,4160540,5
+4583369,4160540,4
+Mayk,4160540,4
+ecane,4160540,4
+52951268,4160540,4
+56263251,4160540,3
+maomixiaosu,4160540,4
+71455965,4160540,4
+littlelu,4160540,5
+83415261,4160540,4
+housefuture,4160540,4
+53830411,4160540,3
+shiyun.sherry,4160540,3
+2210223,4160540,4
+Sheffield,4160540,4
+47345728,4160540,4
+zhoubaicai,4160540,-1
+3686999,4160540,4
+48680601,4160540,3
+dontleaveme,4160540,5
+sinikami,4160540,3
+60094901,4160540,3
+58608944,4160540,4
+55640471,4160540,5
+affidavit1,4160540,-1
+13048235,4160540,5
+xiaoshizhan,4160540,4
+baixiaoleng,4160540,5
+guanjunyan,4160540,-1
+yongzhenkaiyuan,4160540,5
+impzz,4160540,5
+74491212,4160540,4
+paul314,4160540,3
+vigilgt,4160540,4
+66595969,4160540,5
+73868761,4160540,3
+ethanlau,4160540,4
+65507794,4160540,4
+63765493,4160540,4
+68027669,4160540,4
+56809398,4160540,3
+1403770,4160540,4
+lcghere,4160540,4
+4473063,4160540,2
+wikimedia,4160540,4
+zonovo,4160540,3
+weexf,4160540,4
+wanxiaojin,4160540,4
+5580630,4160540,4
+ballsirius,4160540,4
+prayerinc,4160540,4
+fenglao,4160540,3
+58499826,4160540,4
+123313285,4160540,4
+85626671,4160540,3
+menethil,4160540,5
+sofia1217,4160540,3
+62261212,4160540,5
+45661291,4160540,3
+2472202,4160540,4
+terry_f,4160540,4
+jessiewang1119,4160540,3
+aboutin,4160540,4
+myrzrt,4160540,4
+hualideweisuo,4160540,3
+42468760,4160540,3
+40371299,4160540,-1
+52391581,4160540,5
+84093369,4160540,4
+ibabybearm,4160540,4
+lly950412,4160540,3
+nimonnwang,4160540,4
+46897570,4160540,4
+kotony,4160540,4
+35750649,4160540,5
+dana_dana,4160540,3
+48687311,4160540,4
+57858429,4160540,5
+51329457,4160540,4
+Youandi4,4160540,-1
+2596947,4160540,2
+44504599,4160540,4
+claudiaraxy,4160540,4
+designforlife,4160540,4
+fayy,4160540,3
+47597913,4160540,4
+Macmania,4160540,4
+nikubenki,4160540,3
+49148779,4160540,4
+47593124,4160540,4
+53247764,4160540,4
+27560437,4160540,1
+3254520,4160540,5
+curett,4160540,2
+luciddreamlq,4160540,5
+2099122,4160540,4
+54731356,4160540,5
+1632116,4160540,3
+applejune,4160540,5
+68881008,4160540,-1
+4841562,4160540,3
+62749551,4160540,4
+andk2181,4160540,3
+2336151,4160540,4
+37789151,4160540,5
+62837159,4160540,3
+electroniXtar,4160540,5
+yoonjaeleven,4160540,4
+61572428,4160540,4
+34347136,4160540,5
+Bloodleee,4160540,3
+47326552,4160540,3
+66819479,4160540,5
+4450454,4160540,3
+AkiranoAsahi,4160540,5
+aprildaisy,4160540,4
+xuanlihuan,4160540,4
+Woody58,4160540,4
+1428027,4160540,5
+oralm,4160540,4
+Etoilefilante,4160540,4
+raynix,4160540,1
+2106137,4160540,4
+akalion,4160540,3
+zjy1222,4160540,4
+22991326,4160540,5
+79757878,4160540,5
+35044445,4160540,4
+49408765,4160540,-1
+65672467,4160540,4
+51004773,4160540,4
+39628944,4160540,-1
+kaiserhl,4160540,1
+hai_bao,4160540,3
+lovemepolly,4160540,4
+abooa,4160540,4
+aicbgyihai,4160540,4
+44203991,4160540,4
+dinajiang,4160540,4
+2376763,4160540,5
+Sanjiaoer,4160540,-1
+seehee,4160540,4
+sokuuu,4160540,4
+36882677,4160540,4
+junsansi,4160540,-1
+50242355,4160540,4
+1437680,4160540,4
+BruceBack,4160540,3
+63920441,4160540,4
+ultraviolet,4160540,5
+49082695,4160540,4
+yurited,4160540,5
+sxy921026,4160540,4
+1408253,4160540,4
+fuyuxuan,4160540,5
+brainlesscong,4160540,5
+87118528,4160540,4
+sepmokanewsky,4160540,4
+Vincentwsk,4160540,5
+chunxiaoniubi,4160540,4
+56602222,4160540,3
+44273997,4160540,5
+shir23,4160540,4
+2135192,4160540,4
+47112558,4160540,4
+inkhkkk,4160540,4
+perfm0n,4160540,3
+piepiecharlene,4160540,4
+64571969,4160540,4
+wangtianchang,4160540,5
+47060979,4160540,4
+kellyouka,4160540,4
+themoonforgets,4160540,4
+Maideren,4160540,4
+yaomiao,4160540,5
+53652012,4160540,3
+shosony,4160540,4
+69187139,4160540,4
+moi_7ong,4160540,4
+mfishoo,4160540,4
+1251930,4160540,5
+zellux,4160540,4
+49527668,4160540,4
+3474392,4160540,4
+82339454,4160540,4
+alwayslo7e,4160540,5
+4860409,4160540,2
+26486155,4160540,4
+guitarain,4160540,3
+3306133,4160540,3
+3507094,4160540,4
+francesyu9233,4160540,2
+125760534,4160540,4
+54516781,4160540,4
+74044873,4160540,5
+3663654,4160540,3
+59378072,4160540,3
+31622009,4160540,4
+74756120,4160540,4
+51165620,4160540,2
+74030060,4160540,5
+jackalthe,4160540,-1
+foleyfan,4160540,3
+42787791,4160540,4
+paltrow,4160540,-1
+8718496,4160540,5
+deandy,4160540,4
+baby_wyx,4160540,3
+47876521,4160540,3
+jaredc,4160540,4
+82690710,4160540,4
+4000873,4160540,4
+garuru,4160540,3
+44131158,4160540,3
+85207739,4160540,5
+61216437,4160540,3
+33260321,4160540,4
+3321276,4160540,3
+daangel,4160540,5
+5566664,4160540,3
+nieblalan,4160540,4
+67843912,4160540,3
+56493831,4160540,4
+54756499,4160540,4
+anncloudy,4160540,3
+61060682,4160540,3
+51282315,4160540,4
+77092352,4160540,4
+DAINYONG,4160540,4
+53181549,4160540,4
+47396460,4160540,4
+54128716,4160540,3
+37098429,4160540,4
+82144608,4160540,4
+xu779147197,4160540,4
+Coldkey_Yun,4160540,5
+UNVS,4160540,3
+liero,4160540,3
+tmc,4160540,4
+51974103,4160540,3
+rulaishenzhang,4160540,4
+76085199,4160540,4
+kuafujingmeng,4160540,3
+4161702,4160540,5
+obafgkm,4160540,3
+alicemeng,4160540,4
+Sammyzheng,4160540,4
+63527236,4160540,4
+67331748,4160540,4
+vinkingking,4160540,4
+savagett,4160540,3
+51706765,4160540,3
+GreatStarSeven,4160540,4
+kingkongbarbie,4160540,5
+27028067,4160540,-1
+68572064,4160540,4
+74619704,4160540,4
+1885662,4160540,3
+NullPointer,4160540,4
+wind_gxh,4160540,3
+FanTastic-Y,4160540,4
+40728585,4160540,3
+4104001,4160540,3
+61935443,4160540,4
+26237008,4160540,4
+Milkful,4160540,4
+xmausp,4160540,4
+121168749,4160540,3
+coolluo_zw,4160540,3
+abcclk,4160540,4
+84948949,4160540,3
+sethqi,4160540,4
+dydyd_douban,4160540,4
+4489375,4160540,5
+72902533,4160540,3
+65053978,4160540,4
+74916040,4160540,5
+Ask,4160540,4
+46770728,4160540,5
+8469986,4160540,4
+56973139,4160540,3
+60101934,4160540,4
+dynamic,4160540,3
+kikona,4160540,4
+46913971,4160540,2
+63734932,4160540,3
+92468807,4160540,4
+66836438,4160540,4
+61512042,4160540,3
+68964549,4160540,4
+luoxuzhi,4160540,4
+simplesue,4160540,-1
+4525795,4160540,4
+20672891,4160540,4
+vanessa920,4160540,5
+79897130,4160540,4
+37677418,4160540,4
+yalindongdong,4160540,3
+bodysnatcher,4160540,5
+nanoButterMint,4160540,5
+91252299,4160540,3
+4542640,4160540,5
+39959377,4160540,4
+drunkpiano2011,4160540,3
+yangjunye,4160540,4
+74250747,4160540,5
+bailinlin,4160540,-1
+59894468,4160540,4
+2231082,4160540,3
+cold24,4160540,-1
+lostinfire,4160540,4
+32023588,4160540,4
+bellezjn,4160540,3
+cat_rs,4160540,4
+52390566,4160540,4
+2569857,4160540,3
+longsy,4160540,5
+anniehoneys,4160540,4
+33275779,4160540,4
+luckysand,4160540,4
+36253770,4160540,3
+win7758,4160540,3
+37653990,4160540,4
+13262103,4160540,4
+47784827,4160540,4
+58113714,4160540,4
+53518939,4160540,4
+zhangyanwen,4160540,4
+56069549,4160540,3
+62569679,4160540,5
+32033776,4160540,4
+attack_y,4160540,4
+zeroyoung,4160540,-1
+69165098,4160540,4
+z_wolwitness,4160540,4
+34875842,4160540,4
+ztztztzt8888,4160540,4
+82083975,4160540,4
+32875465,4160540,4
+Forrestgary,4160540,5
+43782586,4160540,4
+58283106,4160540,4
+58376944,4160540,4
+xiaoyaoworm,4160540,3
+12650289,4160540,4
+mouq,4160540,4
+hermit90,4160540,4
+49186147,4160540,4
+1482288,4160540,4
+2020933,4160540,4
+noroom,4160540,5
+gaaramengyi,4160540,5
+75855875,4160540,2
+80065462,4160540,3
+2234882,4160540,3
+44199764,4160540,5
+63530647,4160540,5
+51472613,4160540,3
+robin1988,4160540,3
+50570726,4160540,4
+andy87819,4160540,4
+liujieruo,4160540,3
+W0rstSupportCN,4160540,4
+gyceedoo,4160540,3
+realwish,4160540,5
+2908018,4160540,5
+51558823,4160540,4
+xiaodaoyang,4160540,4
+66178513,4160540,4
+usaywhat,4160540,4
+63318519,4160540,4
+babe_of_pisces,4160540,4
+henshss,4160540,4
+14701628,4160540,4
+46920813,4160540,3
+Vivere,4160540,5
+49297822,4160540,5
+rachelray83,4160540,4
+momoshuo,4160540,5
+49035765,4160540,2
+my7may,4160540,5
+shanguicheng,4160540,5
+51251741,4160540,4
+cosmos-deu,4160540,5
+58280400,4160540,4
+4415743,4160540,5
+103735356,4160540,4
+2402858,4160540,3
+57980305,4160540,5
+orangeT,4160540,4
+ripslyme,4160540,3
+62163111,4160540,3
+imagefly,4160540,4
+82238487,4160540,4
+47782519,4160540,3
+68984410,4160540,4
+2185769,4160540,2
+yangyucn,4160540,3
+32409019,4160540,3
+45909249,4160540,4
+41199913,4160540,4
+kouhualin,4160540,3
+47043061,4160540,4
+yujianxiaoben,4160540,3
+2338228,4160540,4
+amour1,4160540,4
+vivamian,4160540,3
+47572959,4160540,5
+84636662,4160540,4
+heisland,4160540,4
+54034056,4160540,3
+get0ut,4160540,4
+14791938,4160540,4
+missdonglian,4160540,3
+zxin94264,4160540,5
+81692824,4160540,5
+113169570,4160540,5
+47467918,4160540,3
+amowu,4160540,4
+2387348,4160540,4
+91433204,4160540,4
+54518640,4160540,3
+1226511,4160540,3
+2596592,4160540,4
+sodazxw,4160540,4
+115822113,4160540,3
+jaciewho,4160540,4
+87355390,4160540,5
+71414314,4160540,4
+4105021,4160540,3
+26526390,4160540,4
+litianjiao,4160540,4
+driftorhu,4160540,5
+43653538,4160540,3
+haiserlu,4160540,2
+bons,4160540,-1
+acbc115,4160540,4
+jasonwzz,4160540,5
+74301144,4160540,3
+connieliye,4160540,5
+54504933,4160540,4
+63535536,4160540,3
+43781354,4160540,4
+vickychen110,4160540,4
+48949735,4160540,5
+heptahedron,4160540,5
+29107256,4160540,4
+yangcht,4160540,3
+4331359,4160540,4
+pandanian,4160540,4
+2329298,4160540,4
+Julinawang,4160540,4
+singlesinger,4160540,4
+74783952,4160540,4
+mzmuxin,4160540,4
+laperseus,4160540,3
+acepatrick,4160540,4
+3539295,4160540,3
+enchanted13,4160540,4
+3009345,4160540,4
+odajiri,4160540,3
+Strangefamiliar,4160540,4
+xiaoyuhen,4160540,3
+38955500,4160540,4
+55619717,4160540,2
+conanemily,4160540,4
+lukemdk,4160540,3
+62146907,4160540,4
+wildold,4160540,3
+oldstreetlight,4160540,4
+pigpearl,4160540,3
+masaki_saigyoji,4160540,5
+45345873,4160540,4
+27890443,4160540,-1
+47882725,4160540,3
+JeffreyWu,4160540,4
+lexieweila,4160540,-1
+49270931,4160540,-1
+2039887,4160540,5
+1807732,4160540,5
+xsky,4160540,5
+oliviaorsino,4160540,4
+opheliaopera,4160540,4
+will_u,4160540,4
+duddleBug,4160540,5
+54278419,4160540,4
+72129542,4160540,4
+4636124,4160540,4
+siyannnn,4160540,4
+46360410,4160540,4
+houstun,4160540,3
+rickycc,4160540,5
+70121713,4160540,-1
+67620488,4160540,3
+37551097,4160540,3
+yinkun,4160540,3
+75984184,4160540,3
+petterzhang,4160540,3
+fishy,4160540,4
+45312368,4160540,4
+shezaizuyi,4160540,2
+pumpkin_s,4160540,5
+3015810,4160540,3
+livia_wu,4160540,4
+3594852,4160540,3
+47660748,4160540,4
+prince_neo,4160540,2
+kaolaxing,4160540,5
+51491569,4160540,3
+70662119,4160540,4
+49761983,4160540,3
+50219893,4160540,3
+56865316,4160540,4
+53932616,4160540,4
+yuaaiy,4160540,-1
+qinsining,4160540,4
+sy9443,4160540,3
+1159054,4160540,5
+applires,4160540,5
+Betty818,4160540,4
+65607463,4160540,3
+3851255,4160540,4
+GMDY,4160540,3
+sysysysy,4160540,3
+shuangeryu,4160540,4
+irukia,4160540,4
+aarontee329,4160540,4
+45251073,4160540,5
+stemcell,4160540,4
+chglu.wag,4160540,5
+70369993,4160540,5
+48816803,4160540,3
+Celestial_Fury,4160540,4
+4868364,4160540,4
+46417195,4160540,4
+l00000000,4160540,2
+pipituliuliu,4160540,4
+auntyo,4160540,3
+fivero,4160540,4
+50703649,4160540,4
+4306814,4160540,4
+suisui214,4160540,5
+up-up-up,4160540,5
+33324533,4160540,3
+cloverzxy,4160540,4
+ohghost,4160540,4
+119744329,4160540,3
+44542197,4160540,5
+BROKENNAILS,4160540,5
+ydlxiaolong,4160540,4
+slavica,4160540,5
+66858542,4160540,4
+2265138,4160540,5
+E-Yum,4160540,5
+1503749,4160540,5
+cinkie,4160540,5
+1663187,4160540,3
+a1830996698,4160540,3
+cassiopeiaxiah,4160540,3
+3634776,4160540,4
+2332162,4160540,4
+1668414,4160540,4
+foreverlethe,4160540,-1
+43396822,4160540,3
+9612906,4160540,5
+sapx,4160540,4
+imqiuzi,4160540,4
+68657829,4160540,4
+63760743,4160540,3
+3092747,4160540,4
+rakumm,4160540,4
+108077404,4160540,3
+96044338,4160540,4
+muxxzzz,4160540,5
+Hexenkartothek,4160540,4
+ValentineQ,4160540,4
+47508310,4160540,3
+Ocean52,4160540,4
+dklovesmovie,4160540,3
+52905046,4160540,4
+45655057,4160540,4
+tina0330,4160540,3
+dylcf,4160540,5
+68354862,4160540,4
+52561499,4160540,5
+54186627,4160540,4
+4019398,4160540,5
+yizhao,4160540,4
+34209311,4160540,5
+angela.dashen,4160540,5
+journey4free,4160540,5
+55391084,4160540,4
+40887669,4160540,4
+4198519,4160540,4
+71014294,4160540,2
+odeya,4160540,5
+64780091,4160540,3
+lunacake,4160540,4
+lollybomb,4160540,4
+alwaysbestrong,4160540,3
+60088640,4160540,3
+34600682,4160540,4
+49145944,4160540,5
+105758076,4160540,3
+jennyjin,4160540,3
+wzdradon,4160540,3
+16959294,4160540,3
+duqiurui,4160540,4
+ll61,4160540,5
+lazy.wanderlust,4160540,5
+bloodykiss,4160540,4
+2486638,4160540,5
+mouzhu,4160540,5
+PCvarment,4160540,5
+soffeeyang,4160540,4
+18133718,4160540,3
+18133718,4160540,3
+57166176,4160540,4
+62469238,4160540,5
+1651604,4160540,4
+dearmorpheus,4160540,4
+missyou1203,4160540,1
+31951077,4160540,4
+66612367,4160540,5
+coolant,4160540,3
+Simon_Stark,4160540,4
+wuyaa1215,4160540,3
+13038312,4160540,4
+54111436,4160540,3
+susimai,4160540,2
+yangqiaohe,4160540,3
+80570003,4160540,4
+aquahst,4160540,3
+clearjunjun,4160540,3
+winmaxangle,4160540,3
+huir,4160540,5
+shmilyyan,4160540,3
+mrdriver,4160540,4
+daphneleaf,4160540,4
+shusai,4160540,5
+rethatevon,4160540,4
+XXXXXmian,4160540,3
+ruo1996,4160540,4
+59556078,4160540,4
+magicalwz,4160540,5
+wbyring,4160540,4
+50277925,4160540,4
+jingrong,4160540,4
+28736860,4160540,3
+2597570,4160540,5
+emor-hwang,4160540,5
+mocnabuodouhs,4160540,4
+1143666,4160540,4
+nlai,4160540,4
+52426499,4160540,4
+cyeon,4160540,3
+50298891,4160540,4
+48569357,4160540,4
+66089736,4160540,5
+abelxing,4160540,3
+115994323,4160540,3
+Warrgon,4160540,5
+LimeBlast,4160540,5
+smeles,4160540,4
+72788387,4160540,-1
+krsnik,4160540,-1
+44397515,4160540,5
+feqinfan,4160540,4
+43725091,4160540,4
+antifast,4160540,5
+monyer,4160540,3
+regalo,4160540,4
+71438734,4160540,4
+se7enbao,4160540,5
+121197040,4160540,3
+2761343,4160540,-1
+Lance_lc,4160540,4
+83195287,4160540,4
+70468331,4160540,4
+shinesday,4160540,5
+68887897,4160540,5
+xixi9000,4160540,5
+43356588,4160540,5
+shiori,4160540,2
+framtid,4160540,5
+68661080,4160540,5
+zhr19951204,4160540,4
+59749392,4160540,4
+aihisie,4160540,4
+leafmela,4160540,4
+83188361,4160540,4
+2809081,4160540,4
+59774628,4160540,4
+everlastingEGO,4160540,3
+youkilo,4160540,5
+panrunni,4160540,-1
+panrunni,4160540,-1
+1252761,4160540,4
+bozil,4160540,3
+82588845,4160540,3
+AubreySoong,4160540,4
+71864970,4160540,4
+vivieong,4160540,4
+SpiritedGreen,4160540,4
+marvin42,4160540,4
+soildsnake,4160540,5
+fuck_time,4160540,5
+83948967,4160540,3
+41891191,4160540,3
+captaindtshoot,4160540,5
+58649588,4160540,5
+67900848,4160540,2
+2011951,4160540,5
+60526937,4160540,4
+54026530,4160540,5
+2404630,4160540,5
+61336044,4160540,3
+alonso_frame,4160540,4
+halopan,4160540,4
+losrfuu,4160540,3
+papa1968,4160540,3
+64688509,4160540,4
+wsbaihu,4160540,4
+jimuwawa,4160540,4
+53667782,4160540,3
+4333160,4160540,4
+90161175,4160540,3
+62453659,4160540,5
+58164147,4160540,5
+1844983,4160540,3
+52007831,4160540,4
+58064926,4160540,4
+57290496,4160540,3
+yancm,4160540,4
+15393217,4160540,4
+43370880,4160540,4
+rickydna,25956520,4
+3857610,25956520,5
+GrEy4ai,25956520,2
+jjwhu,25956520,3
+36664394,25956520,4
+82231172,25956520,4
+AliceTang27,25956520,3
+2840439,25956520,5
+54355700,25956520,4
+lingdongling,25956520,3
+vivifyvivi,25956520,1
+113532923,25956520,4
+63868760,25956520,4
+Elizabeth-Lee,25956520,2
+justinnext,25956520,2
+4065013,25956520,-1
+133241079,25956520,5
+dream_lee,25956520,5
+47331203,25956520,3
+53272974,25956520,3
+60267759,25956520,4
+76460934,25956520,3
+29574917,25956520,-1
+76667923,25956520,3
+46172244,25956520,3
+moushenglingyu,25956520,1
+4624601,25956520,3
+68630098,25956520,3
+gloria1102,25956520,3
+43671128,25956520,4
+3210124,25956520,3
+36805272,25956520,2
+43542523,25956520,3
+14308587,25956520,3
+104462145,25956520,-1
+68528163,25956520,3
+76509928,25956520,4
+guoxiaoheng,25956520,2
+4137118,25956520,3
+4236471,25956520,3
+4236471,25956520,3
+53935985,25956520,4
+han_sy,25956520,4
+yzzlovezj,25956520,3
+73536867,25956520,4
+61557157,25956520,4
+xixiseven,25956520,3
+137839195,25956520,3
+78759547,25956520,3
+wuyunoy,25956520,3
+134399469,25956520,4
+LinuxPlusPlus,25956520,4
+41943699,25956520,3
+tangshundgar,25956520,3
+47818066,25956520,5
+3272880,25956520,3
+herunqi,25956520,4
+52723005,25956520,5
+pennate,25956520,4
+48065738,25956520,2
+55539986,25956520,4
+V.c,25956520,5
+137479208,25956520,3
+50657770,25956520,4
+deartintin,25956520,3
+28346145,25956520,2
+62157854,25956520,3
+137824298,25956520,3
+1616375,25956520,3
+41706695,25956520,4
+108816754,25956520,3
+64132743,25956520,3
+53466542,25956520,3
+132257844,25956520,4
+137555231,25956520,2
+61116917,25956520,4
+suxiaoqian007,25956520,2
+nightlord7,25956520,3
+jinnjinnee,25956520,4
+bettersnail,25956520,-1
+39362601,25956520,1
+74170855,25956520,2
+lolipig,25956520,3
+dhlp,25956520,5
+63240805,25956520,3
+82038252,25956520,3
+47165746,25956520,4
+66620851,25956520,3
+134519666,25956520,3
+103572835,25956520,4
+ilovejay79118,25956520,3
+58544664,25956520,4
+tanxiaole,25956520,2
+45010437,25956520,3
+57083421,25956520,4
+102220840,25956520,3
+79330359,25956520,3
+maorui,25956520,3
+14628401,25956520,-1
+137325687,25956520,4
+58202838,25956520,4
+hisheny,25956520,4
+44610423,25956520,4
+46138752,25956520,3
+47925086,25956520,4
+kusch,25956520,3
+mi-hang,25956520,4
+71093640,25956520,3
+123264996,25956520,1
+130362078,25956520,3
+2709569,25956520,4
+2980085,25956520,3
+eleGuai,25956520,3
+1673897,25956520,2
+kibby,25956520,5
+3180760,25956520,3
+princessing,25956520,4
+75937419,25956520,2
+jijillwang,25956520,1
+67411374,25956520,5
+54946553,25956520,-1
+iissy,25956520,2
+64238881,25956520,3
+121633982,25956520,2
+little_mari0,25956520,3
+ciciywg,25956520,4
+mansonloong,25956520,3
+42375246,25956520,4
+particle_uv,25956520,3
+36307732,25956520,4
+foreverworld,25956520,2
+45596906,25956520,5
+bimbo,25956520,2
+79053164,25956520,4
+Lillianzyl,25956520,1
+30166414,25956520,3
+emmalove1314,25956520,4
+68630108,25956520,2
+130425031,25956520,5
+56128182,25956520,5
+98956070,25956520,3
+53350576,25956520,3
+Limpicka,25956520,4
+123002309,25956520,3
+33616609,25956520,5
+97645479,25956520,2
+58723728,25956520,3
+evangeline1101,25956520,4
+3094573,25956520,5
+104710659,25956520,2
+34882816,25956520,-1
+56083731,25956520,2
+MeloTheFisher,25956520,3
+96758494,25956520,5
+70214079,25956520,2
+3735449,25956520,-1
+MaxinAn,25956520,3
+kuxiafeng,25956520,3
+67514961,25956520,3
+3597057,25956520,2
+yushu25,25956520,3
+2376689,25956520,-1
+56894837,25956520,5
+czhou,25956520,3
+1349594,25956520,5
+126500017,25956520,3
+98956225,25956520,2
+53227132,25956520,2
+134532187,25956520,3
+Charline-2015,25956520,-1
+daerzi,25956520,3
+69679017,25956520,4
+53721830,25956520,2
+68737646,25956520,5
+edhua,25956520,3
+16960582,25956520,3
+32737561,25956520,4
+kaede11,25956520,2
+51909421,25956520,2
+sharonsama,25956520,3
+3109255,25956520,2
+jicheng1993,25956520,4
+lecsi,25956520,3
+83769444,25956520,4
+3082551,25956520,2
+dearlayla,25956520,3
+25917087,25956520,2
+wanwibeatles,25956520,3
+mikesun,25956520,3
+125827809,25956520,2
+yolanda_kin,25956520,3
+qingxi52vv,25956520,3
+53300409,25956520,4
+91095353,25956520,3
+4228422,25956520,4
+41899297,25956520,4
+100639145,25956520,3
+130765313,25956520,5
+4561356,25956520,3
+1773126,25956520,3
+55824890,25956520,4
+roymo,25956520,4
+1998903,25956520,3
+44045127,25956520,3
+121763445,25956520,4
+73530411,25956520,4
+135247004,25956520,2
+65187145,25956520,3
+115695650,25956520,2
+jhy007,25956520,3
+66966914,25956520,4
+55740203,25956520,5
+58338006,25956520,3
+izhouxy,25956520,4
+43982125,25956520,3
+41902485,25956520,2
+2228009,25956520,1
+35681480,25956520,2
+83119838,25956520,3
+133986166,25956520,3
+39720218,25956520,4
+71541185,25956520,5
+71848127,25956520,3
+64692199,25956520,1
+1169851,25956520,2
+70308638,25956520,3
+3467669,25956520,3
+127080746,25956520,3
+ivy_lmj,25956520,3
+127972732,25956520,3
+nowaysis,25956520,3
+56774043,25956520,4
+2426372,25956520,3
+72782260,25956520,3
+wakaka1986,25956520,2
+125149511,25956520,3
+jennystar,25956520,4
+yulebecky,25956520,3
+40185288,25956520,3
+xiaoyufan569801,25956520,4
+edgeyeung,25956520,3
+1406185,25956520,2
+zsq0028347,25956520,3
+somnus0319,25956520,3
+PILOT.AA,25956520,3
+xyc1987,25956520,3
+echo520f1,25956520,2
+130384556,25956520,4
+saint753,25956520,3
+58807022,25956520,1
+134417369,25956520,3
+ALEC1874,25956520,1
+136409582,25956520,4
+chibao007,25956520,2
+huiverci,25956520,3
+131909298,25956520,3
+130647398,25956520,4
+68550514,25956520,4
+69095785,25956520,3
+68551392,25956520,4
+68551392,25956520,4
+137206904,25956520,3
+alabataille,25956520,3
+115764101,25956520,3
+6260234,25956520,4
+59203993,25956520,5
+134501526,25956520,3
+91825059,25956520,3
+103242828,25956520,-1
+53916327,25956520,3
+81744133,25956520,4
+chaud,25956520,3
+83747600,25956520,4
+45268716,25956520,3
+3399138,25956520,4
+67586472,25956520,3
+70996426,25956520,3
+66575578,25956520,2
+wgutou,25956520,3
+62153097,25956520,3
+54719032,25956520,3
+wzyforever,25956520,4
+mitusheng,25956520,4
+5894610,25956520,2
+beckham7,25956520,1
+52128416,25956520,4
+61024723,25956520,4
+14311494,25956520,5
+62705311,25956520,2
+25572888,25956520,4
+61675448,25956520,3
+134258996,25956520,3
+44112284,25956520,2
+2482936,25956520,3
+pielin,25956520,2
+xclc,25956520,4
+42812938,25956520,4
+48264121,25956520,3
+xiaoyuhen,25956520,2
+2186089,25956520,4
+56076845,25956520,4
+2825518,25956520,3
+56139397,25956520,3
+snow-in-coffee,25956520,1
+80276904,25956520,4
+104489015,25956520,3
+51909458,25956520,3
+1742631,25956520,3
+65213268,25956520,4
+45573643,25956520,3
+wnhello,25956520,4
+gtxyxyz,25956520,4
+libin65316,25956520,2
+1069770,25956520,3
+129472402,25956520,2
+63241916,25956520,3
+zhangccc,25956520,4
+xiaowumei,25956520,3
+40870953,25956520,3
+130445057,25956520,3
+69068097,25956520,5
+88345829,25956520,2
+127131340,25956520,2
+127118502,25956520,1
+136265610,25956520,4
+46099687,25956520,4
+53877349,25956520,3
+hanhanq,25956520,3
+121243676,25956520,3
+leechambo,25956520,2
+pp8908,25956520,2
+103622140,25956520,3
+eiris,25956520,2
+40126557,25956520,3
+Lisa.L,25956520,3
+izune,25956520,2
+80419134,25956520,5
+cqingteng,25956520,3
+54838499,25956520,3
+daisyhyj,25956520,3
+JackingChen,25956520,2
+58776311,25956520,3
+3826970,25956520,-1
+shirley920,25956520,4
+kane-chen,25956520,4
+67220317,25956520,2
+1929074,25956520,3
+62917415,25956520,3
+hairh,25956520,5
+cukie,25956520,5
+yrftx,25956520,3
+128569083,25956520,4
+50005438,25956520,-1
+120402616,25956520,4
+adore1992,25956520,4
+stella930,25956520,4
+58732598,25956520,-1
+skyjadebear,25956520,4
+131128700,25956520,4
+57609788,25956520,5
+moyezi,25956520,4
+co_cobalt,25956520,4
+91117590,25956520,3
+25645218,25956520,4
+4388211,25956520,3
+50443968,25956520,4
+90092374,25956520,5
+66759401,25956520,4
+shiningsnow,25956520,2
+2333505,25956520,3
+68465476,25956520,3
+126248170,25956520,3
+136083805,25956520,4
+96873313,25956520,4
+70055114,25956520,2
+61033806,25956520,2
+2445824,25956520,4
+59914430,25956520,3
+122609595,25956520,3
+zhangjiasy,25956520,4
+zhangjiasy,25956520,4
+61619787,25956520,2
+cherrytiaotiao,25956520,3
+39479021,25956520,4
+58827869,25956520,5
+samendoon,25956520,3
+125655628,25956520,3
+74060146,25956520,3
+2715259,25956520,3
+yang1783253577,25956520,2
+1122936,25956520,1
+115097585,25956520,1
+87338273,25956520,3
+81251411,25956520,-1
+63568126,25956520,3
+46359852,25956520,5
+136757933,25956520,3
+40237768,25956520,4
+49108399,25956520,4
+Vincentwu,25956520,4
+Vincentwu,25956520,4
+73245322,25956520,4
+59826514,25956520,3
+chenolivia,25956520,3
+yuntuo12,25956520,5
+65660136,25956520,4
+62400100,25956520,4
+101793601,25956520,2
+aiolia,25956520,3
+79108534,25956520,4
+54756616,25956520,4
+62498869,25956520,4
+cipherblue,25956520,2
+moshanghu,25956520,4
+heechul007,25956520,4
+2076258,25956520,3
+4502175,25956520,3
+kinso,25956520,3
+muer1986,25956520,3
+HR-vivi,25956520,3
+tuirt,25956520,4
+78776025,25956520,2
+133794602,25956520,4
+46374465,25956520,4
+4394529,25956520,4
+56833761,25956520,4
+wt1112,25956520,5
+kevin5,25956520,3
+53897092,25956520,2
+29844884,25956520,3
+gaokai3091354,25956520,3
+59676385,25956520,3
+104592207,25956520,3
+lalarain,25956520,3
+4132580,25956520,3
+48963798,25956520,3
+34236785,25956520,-1
+56660352,25956520,4
+58276692,25956520,4
+136555362,25956520,5
+136555362,25956520,5
+68871897,25956520,3
+67843034,25956520,3
+134574897,25956520,4
+108821133,25956520,3
+54740979,25956520,3
+131169136,25956520,3
+90543489,25956520,2
+karasu419,25956520,3
+128207747,25956520,3
+41196257,25956520,4
+creanion,25956520,4
+3577491,25956520,3
+5116652,25956520,3
+34702944,25956520,2
+miki_ai,25956520,1
+53920626,25956520,3
+49134940,25956520,4
+wengwt,25956520,4
+66348048,25956520,4
+44810732,25956520,2
+51272941,25956520,2
+48444621,25956520,4
+6649345,25956520,-1
+121819431,25956520,3
+3435038,25956520,3
+xiaomo1,25956520,3
+gynini,25956520,2
+103415530,25956520,3
+71873135,25956520,2
+Sophieless,25956520,2
+cloudy20011128,25956520,2
+81491962,25956520,4
+67880800,25956520,3
+124878413,25956520,5
+mrockfire,25956520,2
+83621117,25956520,3
+42749212,25956520,2
+63015769,25956520,3
+96728684,25956520,5
+spf,25956520,4
+3613680,25956520,2
+57996084,25956520,3
+61309406,25956520,5
+3192663,25956520,2
+MisSara,25956520,3
+darlingm,25956520,4
+131135953,25956520,4
+shuchang521,25956520,5
+74471598,25956520,3
+42006560,25956520,3
+87999281,25956520,-1
+jelly-8,25956520,2
+31630076,25956520,3
+3646019,25956520,3
+136370706,25956520,3
+4573696,25956520,3
+Hanamizuki,25956520,1
+4563516,25956520,4
+63253187,25956520,-1
+83017477,25956520,5
+48031945,25956520,3
+54039871,25956520,2
+hotowl,25956520,3
+40967366,25956520,3
+135694361,25956520,3
+Rex0729,25956520,1
+71938024,25956520,3
+amis110,25956520,4
+nnyyamm,25956520,-1
+Godot_x,25956520,1
+82935134,25956520,4
+cuplzsh,25956520,2
+2922988,25956520,3
+68971338,25956520,4
+52054076,25956520,4
+67919722,25956520,3
+2650205,25956520,1
+129274650,25956520,3
+126239848,25956520,4
+gmrxfx,25956520,2
+zjl234,25956520,3
+on1ooker,25956520,2
+2802044,25956520,3
+54704732,25956520,3
+2081187,25956520,4
+1319405,25956520,1
+ccccissy,25956520,3
+cindy547288,25956520,4
+104368418,25956520,4
+loveserein,25956520,3
+lovers-fahion,25956520,5
+mayoke,25956520,3
+47624847,25956520,3
+84176426,25956520,2
+40567402,25956520,3
+49045557,25956520,4
+63391208,25956520,4
+100198483,25956520,3
+astridchan,25956520,4
+58980651,25956520,4
+81034512,25956520,-1
+57583046,25956520,3
+38634168,25956520,3
+Sara.Xu,25956520,1
+linlin009006,25956520,2
+guoxiangjiu,25956520,3
+radiooo,25956520,3
+48740274,25956520,3
+35443594,25956520,1
+72293050,25956520,3
+63636223,25956520,3
+128409852,25956520,3
+70335996,25956520,3
+2955357,25956520,3
+mythjill,25956520,4
+48938261,25956520,3
+3742479,25956520,1
+87221029,25956520,5
+noappleonhead,25956520,5
+134013028,25956520,2
+lear7,25956520,4
+leeps,25956520,5
+39975348,25956520,3
+110392919,25956520,4
+13893884,25956520,5
+59235428,25956520,3
+49854579,25956520,3
+Microka,25956520,3
+70314512,25956520,3
+134972244,25956520,5
+106525523,25956520,4
+66552525,25956520,3
+97684607,25956520,4
+58944780,25956520,3
+66053525,25956520,1
+81351219,25956520,3
+zhangshilianchu,25956520,4
+48317610,25956520,4
+4234695,25956520,3
+bomg,25956520,4
+39077146,25956520,4
+136337190,25956520,3
+30302894,25956520,2
+78389609,25956520,1
+yangfengdouban,25956520,2
+58001500,25956520,3
+dogeli,25956520,3
+gs21cn,25956520,3
+103271136,25956520,4
+longya,25956520,2
+janelihyi,25956520,2
+73163829,25956520,3
+young_15,25956520,5
+102747303,25956520,2
+90105219,25956520,3
+GeSMD,25956520,4
+69535474,25956520,1
+50887988,25956520,3
+78169762,25956520,2
+78169762,25956520,2
+benbig,25956520,5
+1456080,25956520,3
+47421248,25956520,-1
+61281204,25956520,3
+46023770,25956520,4
+62341735,25956520,2
+74145154,25956520,3
+jiangwoody,25956520,2
+136256083,25956520,3
+ring_ring,25956520,4
+2544720,25956520,3
+136320790,25956520,3
+43452296,25956520,4
+51342796,25956520,2
+36100413,25956520,5
+1105862,25956520,3
+qjy,25956520,3
+acomplexman,25956520,2
+mujin1217,25956520,4
+120948560,25956520,4
+furien,25956520,3
+63662521,25956520,5
+72233130,25956520,5
+87558213,25956520,3
+PureLemon,25956520,1
+59855986,25956520,2
+83411110,25956520,5
+51037733,25956520,4
+teresa1678,25956520,3
+l321,25956520,4
+handsome23,25956520,3
+sunhaoxiang,25956520,4
+119644008,25956520,3
+76553080,25956520,2
+oracle218,25956520,4
+103454751,25956520,3
+74512782,25956520,3
+connectless,25956520,3
+59997555,25956520,3
+53443769,25956520,5
+kingflower,25956520,3
+yuedawei,25956520,2
+YuSu,25956520,3
+62314563,25956520,4
+58630530,25956520,4
+132348134,25956520,3
+74479513,25956520,3
+108352573,25956520,4
+daidai1346,25956520,3
+45939025,25956520,3
+below17,25956520,2
+136199952,25956520,2
+37322815,25956520,4
+45792472,25956520,4
+128103281,25956520,2
+133417355,25956520,5
+130189758,25956520,4
+cStar,25956520,3
+49032670,25956520,4
+39360207,25956520,5
+57342202,25956520,-1
+66513814,25956520,5
+50933206,25956520,4
+81061741,25956520,2
+QINGFENGDIEWU,25956520,4
+sixiaokong,25956520,3
+catsama77,25956520,1
+36617215,25956520,4
+36681127,25956520,3
+Bondguy,25956520,3
+38508819,25956520,1
+4842930,25956520,2
+51395459,25956520,3
+77391757,25956520,4
+47795407,25956520,3
+suetz,25956520,3
+74329329,25956520,4
+58706786,25956520,3
+14415630,25956520,3
+douban7douban8,25956520,4
+84968890,25956520,3
+liu_feng,25956520,4
+57291251,25956520,4
+40155699,25956520,5
+skyisquiet,25956520,3
+fanqu,25956520,4
+bbsether,25956520,3
+mazhao,25956520,1
+2632584,25956520,3
+young8789,25956520,-1
+1295097,25956520,3
+quanquan0817,25956520,2
+51477454,25956520,3
+maplepu,25956520,2
+66967732,25956520,3
+30765497,25956520,2
+zhangjian_1q26,25956520,-1
+Joie,25956520,2
+2370135,25956520,3
+69753373,25956520,1
+130222539,25956520,2
+47745204,25956520,3
+130459392,25956520,4
+133820326,25956520,3
+127265847,25956520,3
+3923065,25956520,4
+135677641,25956520,-1
+timbowen,25956520,3
+104167946,25956520,1
+2291010,25956520,3
+62650557,25956520,4
+1951463,25956520,2
+59629692,25956520,1
+102496068,25956520,4
+93299607,25956520,3
+delicioussalad,25956520,3
+MissMonsterQ,25956520,3
+42106999,25956520,4
+46712687,25956520,2
+52394644,25956520,3
+laolei19900613,25956520,1
+yuyouting,25956520,4
+132683835,25956520,3
+pupuxiang,25956520,4
+134040475,25956520,4
+58897808,25956520,3
+chinriya,25956520,1
+futuxiaozhen,25956520,3
+49712766,25956520,4
+Seuysiro,25956520,3
+urk717,25956520,3
+50040990,25956520,3
+122161339,25956520,3
+longsuiyun,25956520,2
+YAMAHA_GO,25956520,4
+OnlyCoffee,25956520,4
+128739482,25956520,3
+58013933,25956520,5
+61130128,25956520,4
+121943500,25956520,2
+1291946,25956520,3
+57545593,25956520,2
+108496496,25956520,3
+63878965,25956520,2
+76599391,25956520,5
+13129748,25956520,2
+xss0791,25956520,2
+weiyubin1987,25956520,2
+feiwujin,25956520,3
+kkkkaylee,25956520,5
+51491569,25956520,3
+4577694,25956520,3
+76808940,25956520,3
+52987252,25956520,3
+xfjzoe,25956520,3
+84637749,25956520,4
+59618340,25956520,-1
+fuzi_du,25956520,4
+70794815,25956520,3
+kafuka-K,25956520,1
+innocent329,25956520,5
+62545183,25956520,4
+4578133,25956520,5
+119614924,25956520,2
+71715054,25956520,5
+56197566,25956520,5
+61069338,25956520,4
+cskywalker,25956520,3
+59556078,25956520,3
+a13019,25956520,3
+48480567,25956520,3
+124060014,25956520,5
+1225013,25956520,-1
+chandearkathy,25956520,4
+4083554,25956520,3
+46220008,25956520,4
+65854158,25956520,4
+42550528,25956520,3
+81463697,25956520,2
+maichao,25956520,2
+AlexanderWang,25956520,4
+75602395,25956520,4
+lingqingchun,25956520,-1
+ellenjj,25956520,4
+55447276,25956520,4
+2760083,25956520,2
+52269289,25956520,3
+52836731,25956520,4
+smilingxixi,25956520,3
+59609548,25956520,2
+65832475,25956520,4
+66698052,25956520,3
+65145890,25956520,3
+54721365,25956520,4
+smileecho,25956520,3
+84955242,25956520,4
+23525886,25956520,4
+amake,25956520,3
+zhangrenran,25956520,2
+jcstar,25956520,1
+Juzzia,25956520,2
+54813786,25956520,2
+pyan,25956520,3
+75330539,25956520,4
+xiaoxianbibi,25956520,3
+71372922,25956520,3
+42984901,25956520,4
+carinawang,25956520,2
+131364833,25956520,4
+48020067,25956520,4
+littleteatea,25956520,4
+127624177,25956520,4
+104310668,25956520,3
+chloepisode,25956520,2
+3778573,25956520,5
+133125055,25956520,3
+2108403,25956520,4
+69773402,25956520,2
+119362745,25956520,3
+2759426,25956520,4
+ifuseekayu,25956520,1
+danger_tee,25956520,5
+3109335,25956520,3
+57294981,25956520,3
+sibyl4u,25956520,3
+134092855,25956520,3
+onlyloll,25956520,2
+61726612,25956520,4
+qiangqiangzhang,25956520,3
+55715149,25956520,3
+yaolinlu,25956520,3
+76981338,25956520,3
+liszt_pp,25956520,3
+4537806,25956520,-1
+56890247,25956520,4
+125971465,25956520,4
+48542981,25956520,2
+icefishe,25956520,3
+63703573,25956520,3
+tottibai,25956520,3
+120187474,25956520,2
+82550997,25956520,2
+crow.,25956520,4
+CAORussell,25956520,1
+103971408,25956520,2
+tianranzijiegou,25956520,3
+67330324,25956520,5
+114284723,25956520,4
+43910063,25956520,3
+121920760,25956520,3
+henei,25956520,2
+1149126,25956520,2
+71985811,25956520,2
+1520223,25956520,2
+2771262,25956520,4
+Jerusalem,25956520,4
+Danny-Green,25956520,-1
+cai1st,25956520,4
+72257329,25956520,3
+zhixiayufei,25956520,4
+102667562,25956520,4
+wutianxiang,25956520,4
+aeroprince,25956520,2
+StanleyCheung,25956520,3
+124832004,25956520,2
+135424879,25956520,5
+54490331,25956520,4
+joyzhai,25956520,1
+your_j,25956520,2
+crystal19910312,25956520,3
+10041078,25956520,2
+moredarkwhite,25956520,2
+62730894,25956520,3
+49798956,25956520,3
+papadaixiong,25956520,3
+cabrite,25956520,4
+timeispassing,25956520,2
+4697106,25956520,4
+powerdog,25956520,4
+todorov,25956520,2
+Tulia1022,25956520,5
+67400745,25956520,2
+20967601,25956520,4
+65628515,25956520,3
+getanvil,25956520,3
+summersuy,25956520,4
+qqkidz,25956520,3
+14691847,25956520,5
+61702958,25956520,2
+87026553,25956520,4
+48198767,25956520,3
+44318435,25956520,2
+newbear,25956520,3
+47622714,25956520,3
+47542838,25956520,4
+2305028,25956520,3
+fccc,25956520,4
+jisixue0111,25956520,3
+88259412,25956520,2
+loveirina,25956520,2
+92945557,25956520,3
+84609158,25956520,2
+69365887,25956520,3
+4364181,25956520,2
+22843463,25956520,3
+jielade08,25956520,4
+63435651,25956520,3
+2094664,25956520,-1
+64757557,25956520,4
+tq010or,25956520,5
+61855461,25956520,3
+momo077,25956520,3
+petterzhang,25956520,2
+dusk.xiyang,25956520,2
+60051093,25956520,3
+1282175,25956520,2
+79908876,25956520,4
+50192575,25956520,3
+73011629,25956520,3
+13964762,25956520,2
+92364458,25956520,3
+67742444,25956520,3
+melody.wong,25956520,3
+wannafat,25956520,3
+3225890,25956520,3
+123164516,25956520,3
+81992484,25956520,4
+59181026,25956520,3
+69273736,25956520,4
+88719361,25956520,2
+48288703,25956520,3
+70300693,25956520,2
+ayataoj,25956520,3
+thehonestman,25956520,4
+68816004,25956520,3
+51606142,25956520,2
+58698487,25956520,4
+63626568,25956520,2
+57978536,25956520,4
+jackieatdnv,25956520,2
+wyfar,25956520,2
+spx,25956520,2
+guitarain,25956520,3
+134003152,25956520,4
+30258501,25956520,3
+65109390,25956520,2
+loersan11,25956520,4
+29640209,25956520,4
+76677796,25956520,4
+134374898,25956520,3
+raysun81,25956520,3
+77222475,25956520,3
+fangyuan1mi,25956520,2
+54443064,25956520,-1
+1282890,25956520,-1
+65644933,25956520,4
+wsz910919,25956520,3
+kkjoy2617,25956520,4
+46781917,25956520,-1
+46781917,25956520,-1
+FilmYan,25956520,4
+mwkang,25956520,4
+101890144,25956520,4
+127598543,25956520,3
+41383796,25956520,4
+BeiFengFei,25956520,4
+1088676,25956520,2
+chen9h,25956520,3
+Jane1424335445,25956520,2
+76881504,25956520,2
+50075764,25956520,3
+fumihiko1985,25956520,2
+26116734,25956520,4
+65809377,25956520,2
+65081339,25956520,3
+44973722,25956520,3
+54215342,25956520,3
+16792916,25956520,3
+grubbyjiangli,25956520,3
+pbc0615,25956520,1
+lppove,25956520,4
+kally_allen,25956520,4
+mandyhua,25956520,3
+74835284,25956520,3
+2658903,25956520,3
+74413601,25956520,4
+wsgstrike,25956520,3
+78843795,25956520,3
+39761464,25956520,4
+61023908,25956520,3
+surebesure,25956520,4
+6578851,25956520,4
+hynh,25956520,3
+90924243,25956520,3
+44666271,25956520,3
+53637766,25956520,3
+arzoo,25956520,4
+buzhi,25956520,4
+63950350,25956520,4
+48137459,25956520,1
+52268564,25956520,3
+50963591,25956520,2
+65717651,25956520,1
+2826239,25956520,2
+cca2222223,25956520,3
+127102772,25956520,5
+84363352,25956520,5
+62309596,25956520,-1
+78925849,25956520,2
+121247615,25956520,3
+63927330,25956520,3
+missufinally,25956520,3
+83781629,25956520,5
+44020426,25956520,3
+48183944,25956520,2
+63000903,25956520,5
+winter-h,25956520,3
+40506185,25956520,4
+61439975,25956520,3
+vanessazheng,25956520,4
+22140861,25956520,3
+reneech,25956520,3
+70397135,25956520,1
+gluttony6,25956520,1
+96638998,25956520,4
+69857353,25956520,3
+47259806,25956520,3
+120541509,25956520,2
+shingle,25956520,2
+57262819,25956520,4
+60963394,25956520,1
+62842608,25956520,3
+88072113,25956520,3
+54158519,25956520,3
+iamkoptite,25956520,2
+46034257,25956520,3
+64996012,25956520,3
+YH222,25956520,3
+7402565,25956520,5
+cpxxpc,25956520,3
+charlenegenie,25956520,3
+tiramisu-1990,25956520,3
+sewll,25956520,3
+9556755,25956520,4
+108693709,25956520,3
+slipper003,25956520,4
+37311123,25956520,4
+Jerryxuch,25956520,4
+135335880,25956520,2
+114850618,25956520,4
+62308831,25956520,4
+47265467,25956520,3
+telomere,25956520,5
+59537499,25956520,3
+120092472,25956520,5
+79210098,25956520,3
+51836771,25956520,2
+imagine_,25956520,5
+DrinkD,25956520,4
+128991169,25956520,2
+44457357,25956520,2
+45996774,25956520,3
+41842523,25956520,4
+41758984,25956520,3
+75698770,25956520,3
+3177593,25956520,3
+54664894,25956520,3
+wlj13626,25956520,3
+3320785,25956520,4
+poline,25956520,3
+57640790,25956520,3
+47799758,25956520,2
+viviane1989,25956520,3
+63559969,25956520,4
+39765753,25956520,3
+67352190,25956520,2
+hecongqi,25956520,5
+shawivy,25956520,3
+nalusea,25956520,3
+3105123,25956520,3
+55867399,25956520,2
+65136878,25956520,3
+35224934,25956520,5
+leeshiuan,25956520,4
+atomziyu,25956520,4
+1118758,25956520,3
+gagaye,25956520,2
+yushengdenghao,25956520,4
+2884967,25956520,3
+GenPotato,25956520,-1
+3571623,25956520,3
+2330272,25956520,3
+yuuka0765,25956520,4
+85634562,25956520,4
+49273916,25956520,1
+shockcat,25956520,3
+130937635,25956520,3
+80163980,25956520,4
+funz_7,25956520,3
+3450662,25956520,2
+Yanyuqing,25956520,4
+72430905,25956520,3
+130540529,25956520,3
+102406839,25956520,4
+25636311,25956520,2
+momojq,25956520,3
+84342168,25956520,4
+enough,25956520,3
+lyzw,25956520,5
+83209029,25956520,3
+54239245,25956520,3
+35753013,25956520,5
+4582318,25956520,2
+1061597,25956520,2
+98767132,25956520,4
+21767774,25956520,2
+qinxinzhu,25956520,3
+eileen_cheung,25956520,3
+zwj514235,25956520,-1
+59813218,25956520,4
+68433941,25956520,3
+1514019,25956520,2
+51404354,25956520,4
+janice5680,25956520,3
+45278107,25956520,2
+3843442,25956520,4
+135702188,25956520,5
+50865792,25956520,3
+46824404,25956520,3
+Cindylam,25956520,5
+sosaixi,25956520,3
+44832442,25956520,3
+louing,25956520,-1
+yangtao0810,25956520,3
+52046312,25956520,4
+3550233,25956520,4
+61543977,25956520,2
+135250807,25956520,4
+73189108,25956520,2
+61190388,25956520,4
+44852938,25956520,2
+67119457,25956520,-1
+63691279,25956520,4
+46534834,25956520,4
+50094689,25956520,3
+62169194,25956520,4
+54102792,25956520,3
+31335200,25956520,3
+motou0328,25956520,1
+49983823,25956520,1
+ryogon,25956520,3
+43788388,25956520,3
+66771297,25956520,5
+61111185,25956520,3
+103193931,25956520,3
+lhnothing,25956520,4
+Light_L,25956520,-1
+swwol32,25956520,3
+53501877,25956520,4
+76964275,25956520,3
+47732306,25956520,2
+56711504,25956520,4
+yuantown,25956520,2
+128477614,25956520,5
+4750660,25956520,3
+N_ego,25956520,3
+yangsheng213,25956520,2
+99473768,25956520,3
+134542917,25956520,2
+syt0924,25956520,2
+Ivankeke,25956520,3
+lionxb5,25956520,-1
+renth,25956520,4
+52099107,25956520,5
+49003201,25956520,5
+1123445,25956520,-1
+6990422,25956520,3
+y328675858,25956520,2
+65976416,25956520,4
+55447460,25956520,3
+huminyan910801,25956520,5
+cxmeat,25956520,4
+yuxiaodi1988,25956520,3
+Lemonsir,25956520,3
+28467614,25956520,3
+ymj1116,25956520,4
+mizutanikosuke,25956520,3
+YesIDO.,25956520,3
+4708937,25956520,4
+gaolaotou,25956520,3
+124640229,25956520,3
+119829181,25956520,3
+71038565,25956520,2
+122973986,25956520,4
+63781325,25956520,4
+cyygigig,25956520,3
+jiajiaxie,25956520,3
+Juju.Fox,25956520,4
+stephen.lee,25956520,4
+53530476,25956520,3
+yumiaowater,25956520,3
+110364577,25956520,2
+7255952,25956520,3
+83719821,25956520,2
+91428973,25956520,3
+40659159,25956520,3
+babylovelife,25956520,4
+51163329,25956520,2
+30562566,25956520,5
+ohchara,25956520,4
+59122633,25956520,3
+kamiyamaki,25956520,3
+chinanana,25956520,4
+xiaoxintu,25956520,3
+56833900,25956520,3
+47368646,25956520,1
+61355644,25956520,4
+44302132,25956520,3
+71057399,25956520,4
+50414498,25956520,3
+79394528,25956520,5
+momoko11510,25956520,3
+133758631,25956520,5
+97416328,25956520,3
+17871243,25956520,2
+lacly,25956520,4
+53358688,25956520,3
+3912925,25956520,2
+josephgyal,25956520,3
+dongxiaomeng,25956520,4
+122394659,25956520,4
+61888159,25956520,3
+2622237,25956520,3
+whichonelisten,25956520,4
+2401259,25956520,3
+56199113,25956520,4
+129164828,25956520,3
+49995634,25956520,3
+fairyhui521,25956520,3
+47329000,25956520,4
+candyxiting,25956520,4
+4311991,25956520,4
+tinaq,25956520,3
+41083928,25956520,2
+134463446,25956520,4
+44436573,25956520,3
+52216770,25956520,4
+65948183,25956520,2
+fancywind,25956520,5
+88324576,25956520,4
+pantuwang,25956520,4
+67943333,25956520,3
+YuleWu,25956520,3
+78806633,25956520,3
+34641222,25956520,3
+70990506,25956520,2
+98605942,25956520,3
+51412736,25956520,4
+3262787,25956520,4
+23408203,25956520,3
+103026141,25956520,1
+4134812,25956520,3
+47026147,25956520,2
+nonob,25956520,-1
+2620278,25956520,-1
+miku,25956520,3
+kingkongofkhan,25956520,2
+meskelil,25956520,4
+42116561,25956520,2
+13293190,25956520,2
+63422177,25956520,2
+120002421,25956520,5
+4565520,25956520,4
+yampak,25956520,2
+10200994,25956520,4
+73496560,25956520,3
+120043439,25956520,3
+64841580,25956520,2
+16870391,25956520,3
+desmodus,25956520,4
+tianzaifeibaba,25956520,2
+63612050,25956520,3
+wplee,25956520,1
+49891223,25956520,5
+114533111,25956520,2
+ganganjj,25956520,2
+huajun20,25956520,1
+ala7lee,25956520,3
+1887825,25956520,3
+126804729,25956520,3
+gogom,25956520,2
+65662348,25956520,3
+maimai251,25956520,2
+134221694,25956520,5
+30926546,25956520,1
+48467281,25956520,3
+liuxk99,25956520,4
+clearsky11,25956520,3
+45782661,25956520,3
+41374892,25956520,3
+foxduck,25956520,3
+ll_azrael,25956520,4
+134909513,25956520,4
+58004418,25956520,1
+78634802,25956520,3
+MoonYu,25956520,4
+44661693,25956520,3
+RunRunLoser,25956520,3
+68723455,25956520,4
+3729467,25956520,3
+81160704,25956520,5
+3123758,25956520,3
+77674777,25956520,5
+2258556,25956520,3
+53778713,25956520,4
+3450694,25956520,3
+58601681,25956520,4
+88452602,25956520,4
+4879557,25956520,4
+45804814,25956520,3
+leafxiaoying,25956520,5
+54235712,25956520,-1
+22074065,25956520,4
+74420414,25956520,4
+133254262,25956520,3
+56969754,25956520,3
+Frienky,25956520,3
+michelleliu31,25956520,3
+77626905,25956520,3
+nanshuo,25956520,3
+zhoue0311,25956520,-1
+59220835,25956520,4
+luziyujiang,25956520,4
+37869628,25956520,2
+mrbeishuo,25956520,2
+Yunsta,25956520,2
+popoer1982,25956520,5
+47047627,25956520,3
+57980305,25956520,4
+98452549,25956520,2
+redtalent,25956520,5
+71383486,25956520,4
+10236919,25956520,4
+61775961,25956520,3
+14345802,25956520,4
+vanvin,25956520,3
+1198621,25956520,4
+56314850,25956520,2
+102930164,25956520,3
+1922549,25956520,5
+75667669,25956520,2
+131182158,25956520,3
+124536699,25956520,4
+lazydesigner,25956520,2
+121758004,25956520,3
+46942165,25956520,4
+4415376,25956520,4
+53785185,25956520,3
+sylin,25956520,1
+27023055,25956520,2
+72979356,25956520,4
+40931837,25956520,3
+zyqwendy,25956520,3
+54493645,25956520,1
+62340238,25956520,3
+fumaolianxi,25956520,-1
+2428233,25956520,3
+119495221,25956520,4
+dingban,25956520,3
+121619925,25956520,4
+51416132,25956520,3
+46076421,25956520,3
+56981599,25956520,1
+21147092,25956520,3
+120783023,25956520,4
+2891944,25956520,4
+3170513,25956520,2
+65086608,25956520,4
+43474668,25956520,3
+39545267,25956520,3
+thisisdaisy,25956520,3
+67971024,25956520,3
+5580906,25956520,3
+2600693,25956520,3
+135315015,25956520,4
+4801256,25956520,2
+50638011,25956520,4
+3768837,25956520,2
+53487447,25956520,4
+2583639,25956520,1
+wrj_mm,25956520,3
+floraalma,25956520,3
+58604332,25956520,4
+57714578,25956520,3
+winkerrabbit,25956520,2
+xuejc1988,25956520,3
+36992481,25956520,3
+1766764,25956520,3
+3887741,25956520,5
+74701610,25956520,2
+allon,25956520,4
+62369006,25956520,3
+Floraturing1996,25956520,2
+76943413,25956520,1
+hanqiu1995,25956520,2
+pansin,25956520,5
+99629606,25956520,5
+dolores_guo,25956520,2
+4487001,25956520,3
+vnoonv,25956520,-1
+xiongweilin,25956520,3
+k33425,25956520,3
+4441196,25956520,3
+47785072,25956520,2
+tristanfree,25956520,3
+65912201,25956520,4
+fighting-ing,25956520,3
+45505797,25956520,3
+62968482,25956520,5
+2483011,25956520,3
+119483950,25956520,5
+95078314,25956520,4
+59835894,25956520,3
+2008667,25956520,2
+56557982,25956520,5
+69594701,25956520,4
+34153568,25956520,2
+69240602,25956520,3
+66669225,25956520,5
+wheatkittymew,25956520,3
+xuanxuan1209,25956520,4
+129851260,25956520,4
+50474968,25956520,4
+27025632,25956520,5
+69678068,25956520,3
+zhangsai,25956520,2
+Coldfact,25956520,3
+59217273,25956520,2
+51432613,25956520,5
+59408878,25956520,1
+28633682,25956520,3
+71107908,25956520,3
+volantisff,25956520,3
+little-aileen,25956520,2
+37424688,25956520,2
+nemopapa,25956520,3
+54770734,25956520,4
+84247711,25956520,5
+lvxg521,25956520,3
+fendandan,25956520,4
+45022085,25956520,2
+67561107,25956520,4
+48009224,25956520,4
+64938793,25956520,5
+on1yys,25956520,4
+88322938,25956520,2
+wutongtree,25956520,3
+126688884,25956520,4
+SHANGHAIJAJA,25956520,4
+29875571,25956520,4
+49342454,25956520,2
+127450235,25956520,3
+2462135,25956520,5
+cheeksying,25956520,3
+53680946,25956520,2
+90551968,25956520,4
+65013886,25956520,3
+ppyforever,25956520,5
+131527494,25956520,4
+4140463,25956520,1
+shanghai11,25956520,4
+134738255,25956520,4
+dor0229,25956520,-1
+1643126,25956520,4
+47779713,25956520,3
+ghostneng,25956520,3
+74913423,25956520,3
+81294077,25956520,3
+43748947,25956520,3
+manchesite,25956520,2
+46935861,25956520,4
+4106948,25956520,3
+55942870,25956520,3
+pixdream,25956520,4
+60544607,25956520,4
+iRayc,25956520,3
+66057217,25956520,3
+135241177,25956520,4
+67389754,25956520,4
+121611138,25956520,3
+121779298,25956520,4
+47413356,25956520,3
+78601907,25956520,3
+81998298,25956520,3
+sev7n777,25956520,3
+muzhizhanglang,25956520,3
+argoowz,25956520,4
+132841345,25956520,3
+33245540,25956520,2
+132921526,25956520,1
+59739922,25956520,3
+49418217,25956520,4
+brew,25956520,3
+lxu,25956520,4
+58956237,25956520,4
+67189963,25956520,4
+39769024,25956520,3
+63949906,25956520,3
+44109266,25956520,3
+2962402,25956520,3
+piggy726,25956520,5
+54715465,25956520,5
+71386826,25956520,4
+talk2linx,25956520,3
+67024367,25956520,3
+43942858,25956520,4
+47924726,25956520,2
+34155630,25956520,2
+aiwengfan,25956520,3
+1828898,25956520,3
+114468940,25956520,3
+41636718,25956520,3
+jianghang,25956520,4
+kamao,25956520,3
+84681267,25956520,4
+72783015,25956520,2
+67245376,25956520,4
+ronanbread,25956520,3
+49039285,25956520,1
+46338692,25956520,4
+54613578,25956520,4
+omg-_-,25956520,3
+33010059,25956520,3
+59336433,25956520,2
+67494005,25956520,5
+namik_ercan,25956520,4
+ayannagai,25956520,3
+74418627,25956520,3
+looktwice,25956520,2
+33481008,25956520,5
+132197794,25956520,3
+43089605,25956520,3
+25740506,25956520,3
+53910304,25956520,-1
+lazzaro,25956520,3
+51874201,25956520,4
+katrinaguo,25956520,4
+40100770,25956520,4
+57963777,25956520,2
+47193126,25956520,3
+54266589,25956520,4
+kp81ndlf,25956520,3
+61209060,25956520,4
+33219854,25956520,5
+76611723,25956520,3
+41511009,25956520,3
+dkjune,25956520,1
+90697037,25956520,4
+13053957,25956520,4
+zhaoxiaoli1989,25956520,2
+marioshuairen,25956520,1
+64771227,25956520,3
+5318547,25956520,2
+44875082,25956520,-1
+40866645,25956520,5
+65417437,25956520,4
+66767418,25956520,3
+69586800,25956520,2
+47127791,25956520,3
+ys1013,25956520,2
+50552660,25956520,4
+71421150,25956520,5
+4251338,25956520,3
+xuwangdake,25956520,3
+70781177,25956520,2
+84235049,25956520,3
+45789849,25956520,3
+cageyz,25956520,4
+57235976,25956520,4
+37832420,25956520,2
+133563922,25956520,2
+youmuyishu,25956520,3
+78413869,25956520,1
+3488671,25956520,2
+50251677,25956520,5
+1281739,25956520,3
+55737467,25956520,4
+marco_0708,25956520,2
+shaynexue,25956520,3
+130496328,25956520,2
+62801128,25956520,3
+40140527,25956520,4
+59945441,25956520,4
+1511879,25956520,-1
+120299687,25956520,3
+126178361,25956520,2
+64333581,25956520,5
+55323573,25956520,4
+49520759,25956520,4
+45221913,25956520,5
+61746013,25956520,2
+Rodolfo,25956520,1
+78321087,25956520,4
+yihuiw,25956520,2
+46627349,25956520,3
+60822788,25956520,3
+114347751,25956520,2
+47434041,25956520,4
+2503589,25956520,-1
+82793308,25956520,3
+gps730,25956520,4
+2572066,25956520,4
+anillusion,25956520,4
+baixiaoyu,25956520,5
+57698960,25956520,3
+52638193,25956520,4
+noh55iw,25956520,4
+4123613,25956520,3
+shiori,25956520,3
+douyashuo,25956520,3
+56194866,25956520,-1
+25282878,25956520,3
+liu1231,25956520,5
+47238636,25956520,-1
+21545008,25956520,4
+129611962,25956520,3
+2737013,25956520,2
+3547067,25956520,1
+77092352,25956520,4
+joyjay,25956520,4
+3634203,25956520,2
+3807164,25956520,4
+54578280,25956520,3
+4538460,25956520,4
+archiechen,25956520,4
+2033601,25956520,3
+119300833,25956520,3
+kiteshady,25956520,4
+68983294,25956520,3
+68983294,25956520,3
+42884278,25956520,3
+4239908,25956520,3
+42991994,25956520,2
+myjune,25956520,4
+76548979,25956520,4
+Yoeshorre,25956520,2
+36422506,25956520,4
+53248531,25956520,4
+65763988,25956520,5
+C61497775,25956520,3
+121270653,25956520,1
+56430102,25956520,4
+119376917,25956520,3
+34063715,25956520,2
+1978167,25956520,4
+65981408,25956520,3
+131239316,25956520,4
+4698494,25956520,4
+109169757,25956520,4
+xmdd123,25956520,2
+4271475,25956520,3
+g.z.y,25956520,2
+81468340,25956520,3
+70970974,25956520,4
+53726776,25956520,3
+21331611,25956520,-1
+90812716,25956520,3
+89852120,25956520,2
+5691697,25956520,2
+3043901,25956520,3
+41264056,25956520,5
+46590871,25956520,3
+105530942,25956520,4
+Carf,25956520,3
+62377440,25956520,3
+fayewong77,25956520,4
+45378310,25956520,3
+70698244,25956520,3
+56566421,25956520,4
+3475246,25956520,3
+50700305,25956520,-1
+ichhhh,25956520,3
+120094445,25956520,3
+3442979,25956520,5
+77774632,25956520,3
+30219531,25956520,3
+134864468,25956520,2
+silent_island,25956520,3
+megane0931,25956520,2
+bora2547,25956520,3
+monster1000,25956520,4
+2424966,25956520,4
+35201014,25956520,-1
+lotusweety,25956520,2
+48308518,25956520,3
+63330294,25956520,3
+53128590,25956520,3
+33538904,25956520,4
+134021149,25956520,4
+94830928,25956520,5
+65590168,25956520,4
+83604307,25956520,4
+47835316,25956520,3
+60413211,25956520,2
+enimo,25956520,4
+2459955,25956520,2
+63044059,25956520,3
+luweiyan2012,25956520,3
+xfile99,25956520,2
+27232697,25956520,3
+79214635,25956520,4
+42835041,25956520,3
+67758784,25956520,1
+95443736,25956520,3
+2166426,25956520,3
+saintcyr,25956520,4
+madamadadane,25956520,3
+37840696,25956520,3
+44812730,25956520,4
+64172361,25956520,4
+babybluebb,25956520,3
+58689768,25956520,2
+kimi-1119,25956520,3
+68878726,25956520,4
+Edward_Elric,25956520,2
+33538142,25956520,1
+36103097,25956520,3
+ava_hippo,25956520,2
+CitrusSinensis,25956520,2
+anonymousor,25956520,3
+80040060,25956520,2
+shmilymichelle,25956520,2
+ivy.lee9,25956520,5
+44750610,25956520,4
+51582662,25956520,3
+38721043,25956520,2
+3598072,25956520,3
+115827848,25956520,3
+jingmeng_xiahti,25956520,3
+jingmeng_xiahti,25956520,3
+42689691,25956520,3
+3394942,25956520,4
+63923908,25956520,1
+72738301,25956520,1
+58725860,25956520,4
+Smileysnow,25956520,4
+135366540,25956520,5
+42695400,25956520,3
+1493686,25956520,4
+135196754,25956520,1
+1379137,25956520,4
+51936769,25956520,2
+dahdumiedu,25956520,5
+sslclz,25956520,4
+defyboy,25956520,1
+56776280,25956520,2
+101820045,25956520,4
+37485617,25956520,4
+41975874,25956520,3
+47109551,25956520,2
+65283141,25956520,3
+2353173,25956520,3
+84217185,25956520,3
+37452173,25956520,4
+83388773,25956520,1
+33942554,25956520,4
+64309170,25956520,5
+68163340,25956520,4
+83453172,25956520,3
+lilymonkey,25956520,3
+muyu125,25956520,3
+hapysmile,25956520,2
+127688878,25956520,3
+56884321,25956520,3
+70043510,25956520,5
+chenbala,25956520,3
+62288453,25956520,3
+4246182,25956520,3
+58154691,25956520,4
+Zhkuzds,25956520,4
+133398715,25956520,3
+chanel0214,25956520,3
+64195446,25956520,3
+2923557,25956520,3
+129239528,25956520,-1
+3501606,25956520,3
+63910609,25956520,4
+57580969,25956520,3
+58484976,25956520,4
+102598019,25956520,3
+huapiqiu,25956520,2
+63043429,25956520,2
+erichalfrchuck,25956520,3
+38770627,25956520,4
+122016263,25956520,3
+65199752,25956520,5
+1886385,25956520,3
+78214422,25956520,3
+heydzi,25956520,2
+1621506,25956520,3
+49875019,25956520,1
+52259960,25956520,3
+clockrabbit,25956520,3
+52907369,25956520,2
+3658150,25956520,3
+104409838,25956520,4
+100682612,25956520,4
+Latios,25956520,2
+82656562,25956520,4
+53855737,25956520,3
+1536123,25956520,-1
+ydyie,25956520,2
+3187158,25956520,3
+52905046,25956520,2
+yuefulun,25956520,3
+56684398,25956520,3
+pengpeng,25956520,3
+50930270,25956520,5
+4409440,25956520,2
+62721036,25956520,4
+OpenSpaces,25956520,3
+regalo,25956520,3
+L_kid,25956520,3
+63888010,25956520,5
+53794132,25956520,3
+85811535,25956520,2
+35996089,25956520,3
+49571617,25956520,4
+3828576,25956520,3
+nangle,25956520,2
+71561935,25956520,2
+4418842,25956520,3
+binglanxier,25956520,3
+2730322,25956520,3
+30251701,25956520,1
+4509681,25956520,4
+79862222,25956520,4
+2336151,25956520,4
+59101445,25956520,3
+59101445,25956520,3
+46234987,25956520,3
+Brettish,25956520,3
+mo719125078,25956520,4
+78714718,25956520,3
+franklyn1210,25956520,3
+45182133,25956520,3
+action552200,25956520,3
+60038262,25956520,3
+samnice,25956520,4
+shuizhimuhua,25956520,4
+45307903,25956520,3
+43632851,25956520,1
+2187326,25956520,3
+Cyder,25956520,4
+69270211,25956520,4
+aibaobaoguai327,25956520,3
+1220427,25956520,2
+7798390,25956520,2
+Superjulia1007,25956520,4
+agao137,25956520,5
+Rafe0323,25956520,3
+zhaoliqun,25956520,4
+50761351,25956520,4
+ashleystella,25956520,4
+cherryfeng,25956520,3
+baiyang36172417,25956520,-1
+fantasticmybaby,25956520,3
+135076039,25956520,3
+46454401,25956520,4
+joemayxu,25956520,3
+55279581,25956520,3
+koukouxuanhe,25956520,3
+salome0831,25956520,3
+53362350,25956520,3
+124365930,25956520,5
+maomao0504,25956520,4
+dipezzy,25956520,3
+49846009,25956520,1
+bzfdu,25956520,2
+wonsabo,25956520,4
+58412725,25956520,4
+sodiumy,25956520,-1
+elegantwww,25956520,3
+2862919,25956520,4
+94380874,25956520,2
+132277209,25956520,3
+134800314,25956520,4
+65029025,25956520,3
+68894327,25956520,3
+84091392,25956520,2
+3656028,25956520,5
+seayo,25956520,4
+126241489,25956520,4
+yvone1220,25956520,2
+xiaoshuogege,25956520,2
+caocaoa,25956520,1
+tonyuanChen,25956520,3
+130248738,25956520,3
+58414355,25956520,2
+sunflowerlife,25956520,5
+84249631,25956520,4
+50206708,25956520,3
+62079416,25956520,3
+102184149,25956520,5
+79627181,25956520,3
+55325388,25956520,4
+1831746,25956520,3
+104630057,25956520,4
+34343005,25956520,4
+54653189,25956520,1
+99004931,25956520,4
+43603952,25956520,2
+132463662,25956520,3
+lilishi,25956520,3
+athenasaga,25956520,3
+53470202,25956520,3
+49076895,25956520,3
+catfacegirl,25956520,3
+kangwenyi,25956520,5
+yingxxxxx,25956520,1
+2202819,25956520,2
+60563094,25956520,3
+47367894,25956520,3
+48748738,25956520,2
+81240800,25956520,4
+134907491,25956520,3
+hazel-y,25956520,4
+96044338,25956520,3
+24792867,25956520,4
+2238966,25956520,4
+122365805,25956520,4
+chuleiwu,25956520,-1
+CClaire,25956520,3
+51398532,25956520,-1
+loveless002,25956520,5
+Quester,25956520,-1
+60826813,25956520,4
+pineberry,25956520,3
+65764407,25956520,4
+76365309,25956520,3
+hejingyi0803,25956520,4
+2580780,25956520,-1
+43764031,25956520,4
+78182755,25956520,-1
+75006736,25956520,3
+4545627,25956520,-1
+flydreamer,25956520,4
+135292568,25956520,4
+133796108,25956520,5
+34794492,25956520,5
+77213278,25956520,4
+61957844,25956520,3
+funnypunny,25956520,-1
+59572879,25956520,5
+4823170,25956520,3
+96471096,25956520,5
+luffyhan,25956520,5
+2908729,25956520,-1
+67125371,25956520,4
+soultaker,25956520,4
+124317546,25956520,5
+lizhiqiang127,25956520,4
+67088676,25956520,2
+97196841,25956520,5
+babywineer,25956520,5
+zhanghuaxin,25956520,4
+earthquakes,25956520,2
+103925530,25956520,3
+np68oyster,25956520,2
+Sandorothy,25956520,2
+126185385,25956520,4
+52214552,25956520,2
+61483763,25956520,-1
+3398416,25956520,3
+magicnuan,25956520,3
+45286644,25956520,3
+dongxuanlan,25956520,3
+45241922,25956520,4
+sola123,25956520,3
+45344133,25956520,-1
+merengue,25956520,2
+geniusong,25956520,-1
+4918742,25956520,4
+unchan,25956520,1
+zhangtuo,25956520,4
+63359487,25956520,1
+64249051,25956520,3
+61245435,25956520,-1
+81530706,25956520,3
+16959294,25956520,1
+sable_in_red,25956520,3
+Liverpoolsun,25956520,2
+129724079,25956520,2
+78786637,25956520,5
+89382029,25956520,3
+86911673,25956520,1
+49914687,25956520,4
+78277110,25956520,-1
+62132064,25956520,3
+45461182,25956520,4
+ClaireL,25956520,2
+39002723,25956520,-1
+62853956,25956520,3
+film101,25956520,1
+just_nomadic,25956520,4
+xiaomujunjun,25956520,3
+heyjjzlyoops,25956520,-1
+47309128,25956520,3
+46564377,25956520,5
+hongzhouche,25956520,-1
+81845294,25956520,3
+wpl5978,25956520,-1
+louiseheaven,25956520,4
+zhaohanyue,25956520,-1
+candy_mo,25956520,3
+120793472,25956520,3
+alei7774,25956520,2
+suhong,25956520,2
+59113427,25956520,3
+47361455,25956520,3
+62491387,25956520,3
+hiyanghui,25956520,5
+91604108,25956520,2
+57445637,25956520,4
+faiel,25956520,4
+atombb,25956520,-1
+44573720,25956520,3
+46528708,25956520,4
+jersey0821,25956520,-1
+61012226,25956520,4
+96175707,25956520,1
+wxhsolo,25956520,-1
+Jodiezhang,25956520,3
+83141101,25956520,4
+4462347,25956520,5
+68490361,25956520,3
+5845424,25956520,-1
+46496098,25956520,-1
+43801354,25956520,4
+snipersteve,25956520,-1
+91515979,25956520,1
+eastease,25956520,-1
+1133756,25956520,3
+callmeX5,25956520,5
+4412176,25956520,4
+51729072,25956520,4
+105196709,25956520,4
+57367354,25956520,3
+gubingjie,25956520,4
+133268624,25956520,5
+loveloki913,25956520,4
+realien,25956520,1
+47212439,25956520,4
+58301131,25956520,1
+92867704,25956520,5
+Mullin,25956520,2
+120765147,25956520,-1
+1495292,25956520,2
+54966908,25956520,3
+110172016,25956520,4
+14247291,25956520,4
+52114041,25956520,4
+sequel,25956520,4
+xiaopang1106,25956520,5
+36554075,25956520,4
+41926358,25956520,4
+Hdodo,25956520,3
+yyyakun,25956520,5
+richer725,25956520,1
+58783502,25956520,3
+1795295,25956520,3
+62237771,25956520,-1
+127781489,25956520,3
+114614991,25956520,4
+foleyfan,25956520,2
+76327951,25956520,4
+81684957,25956520,3
+59094570,25956520,5
+yuc200,25956520,2
+67238808,25956520,3
+53387777,25956520,1
+huanhua,25956520,3
+73741678,25956520,2
+NeverLate,25956520,3
+53485894,25956520,2
+difeijing,25956520,3
+134488722,25956520,3
+mysky,25956520,1
+45176243,25956520,3
+17430479,25956520,5
+iamcwq,25956520,5
+59604055,25956520,2
+hnnyzxh,25956520,2
+49145683,25956520,3
+45615134,25956520,3
+2420705,25956520,4
+yyuan9372,25956520,3
+61329392,25956520,3
+btone0808,25956520,3
+2616668,25956520,3
+4066025,25956520,3
+62279554,25956520,4
+50183053,25956520,1
+46812658,25956520,3
+52892284,25956520,3
+1211087,25956520,4
+44504599,25956520,-1
+rbhuanxiong,25956520,4
+83900345,25956520,3
+win2012,25956520,3
+102938445,25956520,4
+63485325,25956520,-1
+goofy-G,25956520,4
+58824133,25956520,4
+61536847,25956520,2
+cancercell,25956520,4
+cloudlandlord,25956520,2
+89491653,25956520,4
+minquan,25956520,2
+lepd,25956520,3
+120445293,25956520,4
+if0lily,25956520,3
+39649962,25956520,2
+abin520918,25956520,3
+54586836,25956520,3
+66969635,25956520,4
+Robbinsun,25956520,1
+2066944,25956520,3
+shanyier,25956520,3
+4531748,25956520,4
+82096379,25956520,1
+serphim8,25956520,3
+80817324,25956520,3
+imoviekobe,25956520,4
+huantong,25956520,3
+gtl,25956520,1
+22531064,25956520,4
+37020629,25956520,1
+60392839,25956520,3
+namieamuro,25956520,3
+67353177,25956520,3
+61110036,25956520,2
+64740791,25956520,2
+agenta,25956520,2
+65108877,25956520,3
+84351170,25956520,3
+chenlong92,25956520,4
+81916130,25956520,4
+hljmsfy,25956520,3
+75043360,25956520,4
+moryfor,25956520,2
+46049077,25956520,2
+43719217,25956520,4
+vincentjones,25956520,2
+1442801,25956520,2
+75591777,25956520,1
+lonelyfireworks,25956520,3
+80826623,25956520,3
+80319931,25956520,3
+41036146,25956520,5
+TalkChan,25956520,3
+95074857,25956520,4
+62877248,25956520,3
+wanwan______,25956520,4
+violet_heaven,25956520,3
+2030775,25956520,3
+133553375,25956520,4
+70630808,25956520,4
+87884178,25956520,3
+53740988,25956520,4
+62664539,25956520,4
+isoldesue,25956520,4
+hedaxia,25956520,3
+59011123,25956520,3
+nxam,25956520,4
+56933618,25956520,3
+40616987,25956520,3
+itszjy,25956520,3
+127952646,25956520,5
+33534935,25956520,2
+67887593,25956520,3
+69822780,25956520,3
+49507964,25956520,4
+mfishoo,25956520,2
+122039396,25956520,3
+H897120417,25956520,3
+134552700,25956520,2
+122124788,25956520,4
+132830115,25956520,3
+lvy823823,25956520,2
+133988097,25956520,3
+46976674,25956520,4
+134500343,25956520,3
+78968264,25956520,3
+102812066,25956520,3
+3687958,25956520,3
+68918230,25956520,3
+133410048,25956520,1
+134388863,25956520,4
+vivienvb,25956520,5
+11020421,25956520,2
+134258576,25956520,3
+48079918,25956520,3
+2853604,25956520,2
+133864523,25956520,3
+yaqian,25956520,3
+4404011,25956520,4
+115060047,25956520,2
+35966141,25956520,4
+62072392,25956520,3
+2897322,25956520,4
+3107975,25956520,3
+kevinrise,25956520,2
+75369986,25956520,5
+35586325,25956520,3
+chaoren124,25956520,3
+rucisabella,25956520,2
+63978060,25956520,3
+myice,25956520,4
+myice,25956520,4
+59083968,25956520,3
+60302594,25956520,3
+grace0621,25956520,5
+smallove816,25956520,-1
+58618452,25956520,3
+xiaoyingge,25956520,1
+dick8045,25956520,2
+acseleon,25956520,3
+1600664,25956520,3
+aprilsunshine,25956520,3
+17586082,25956520,3
+2341945,25956520,3
+1465852,25956520,3
+venuscat,25956520,2
+48589119,25956520,3
+75489500,25956520,4
+claireloveyou,25956520,3
+80055631,25956520,1
+49260594,25956520,4
+4401346,25956520,3
+28074817,25956520,4
+kiki204629,25956520,3
+121925373,25956520,3
+zhuqingdaren,25956520,3
+RebeccaRabbit,25956520,3
+66290632,25956520,3
+87069723,25956520,3
+Lifer,25956520,-1
+3775093,25956520,5
+GiraffeApril,25956520,3
+62507891,25956520,3
+3800028,25956520,2
+yuuko007,25956520,4
+115337600,25956520,5
+fanyelove,25956520,4
+81042933,25956520,3
+132339597,25956520,5
+104699208,25956520,5
+67562388,25956520,4
+67562388,25956520,4
+Onik-112527,25956520,3
+yousuosi77,25956520,2
+130488007,25956520,4
+72970549,25956520,3
+53373861,25956520,4
+122943812,25956520,3
+58055759,25956520,4
+Mgreenbean,25956520,2
+89763137,25956520,3
+45932979,25956520,4
+133367493,25956520,5
+55335684,25956520,4
+Iamfull,25956520,4
+69980622,25956520,4
+1369113,25956520,1
+51277324,25956520,4
+42234148,25956520,4
+67570635,25956520,4
+129503817,25956520,2
+129503817,25956520,2
+27017814,25956520,4
+pyw-sunshine,25956520,4
+flamingbrisk,25956520,2
+littlerow,25956520,3
+129214543,25956520,3
+54449435,25956520,3
+ccllj,25956520,4
+51866823,25956520,2
+2406760,25956520,4
+alessiagu,25956520,3
+53656219,25956520,3
+83734300,25956520,2
+86234038,25956520,1
+31922995,25956520,4
+80021054,25956520,3
+1934267,25956520,2
+55606322,25956520,4
+130426117,25956520,3
+kay_oo7,25956520,3
+f05041220,25956520,3
+chuyanran,25956520,3
+43001536,25956520,3
+122578622,25956520,2
+wbhwho,25956520,-1
+3395057,25956520,4
+46509168,25956520,4
+102841911,25956520,3
+34182992,25956520,4
+100497038,25956520,3
+74568738,25956520,2
+shanggu,25956520,5
+50410126,25956520,5
+lgyssg,25956520,4
+108419935,25956520,4
+64858326,25956520,3
+1631122,25956520,2
+56431276,25956520,3
+125021641,25956520,5
+82993911,25956520,3
+2438025,25956520,3
+Lreckle,25956520,2
+2733047,25956520,4
+shenhuxi,25956520,-1
+Cherry.Pluto,25956520,3
+85035571,25956520,3
+maomao3644,25956520,2
+126949865,25956520,5
+piubiu,25956520,4
+nimonnwang,25956520,5
+lcpeng,25956520,3
+momon1900,25956520,4
+phoebeless,25956520,4
+81084741,25956520,4
+103230913,25956520,3
+guoerer,25956520,2
+ruoxudeng,25956520,3
+97188703,25956520,3
+55943262,25956520,4
+lijingwu,25956520,3
+59027708,25956520,3
+59404568,25956520,4
+66168101,25956520,1
+45511772,25956520,3
+50744916,25956520,3
+46734513,25956520,3
+chantax,25956520,1
+1076820,25956520,3
+61009233,25956520,4
+silencelee,25956520,3
+47667196,25956520,2
+57275706,25956520,4
+68608640,25956520,3
+66802444,25956520,3
+19240319,25956520,3
+carrottbjihyrl,25956520,4
+52283432,25956520,3
+48609572,25956520,2
+34056300,25956520,4
+59691857,25956520,-1
+2199291,25956520,-1
+69120461,25956520,4
+3693963,25956520,3
+ccccoffee,25956520,3
+46692711,25956520,2
+implicitallure,25956520,5
+itsvzc,25956520,5
+81107474,25956520,3
+79731276,25956520,1
+48542605,25956520,3
+48804651,25956520,4
+4431205,25956520,1
+nicolastong,25956520,2
+56925526,25956520,2
+37402993,25956520,4
+akilee614,25956520,4
+jun14,25956520,2
+iplumage,25956520,4
+84930768,25956520,3
+summerhanabi,25956520,3
+37569925,25956520,4
+102166139,25956520,3
+67502392,25956520,3
+24346390,25956520,3
+49330983,25956520,2
+2696668,25956520,5
+3598086,25956520,3
+61711569,25956520,4
+xiaolijie,25956520,4
+74672452,25956520,4
+65596546,25956520,3
+nicole82,25956520,5
+55770448,25956520,4
+34187825,25956520,5
+51274769,25956520,5
+130851910,25956520,4
+113408548,25956520,5
+70019854,25956520,3
+zeroD,25956520,2
+76346345,25956520,3
+45207350,25956520,3
+120219887,25956520,5
+MissM,25956520,2
+ran3233,25956520,4
+45753459,25956520,3
+32502933,25956520,2
+29107256,25956520,4
+121888181,25956520,3
+82980188,25956520,2
+59621210,25956520,4
+MephistophelesK,25956520,4
+8711485,25956520,1
+130179115,25956520,3
+49026093,25956520,5
+68165879,25956520,4
+mollydai,25956520,4
+133122713,25956520,4
+3030378,25956520,3
+qinsining,25956520,4
+lrrfantasy,25956520,3
+lrrfantasy,25956520,3
+miyuwen,25956520,3
+47660842,25956520,3
+72677574,25956520,5
+54647803,25956520,3
+wangjun1900,25956520,4
+131610219,25956520,2
+BurningSoul,25956520,4
+sophiayou,25956520,2
+42908367,25956520,3
+canopy,25956520,4
+2265138,25956520,5
+xiaotun,25956520,3
+blingbling0212,25956520,4
+47274200,25956520,4
+1313358,25956520,3
+ishikari,25956520,3
+B-B-B-Side,25956520,4
+28298846,25956520,3
+84739128,25956520,4
+84739128,25956520,4
+allentear,25956520,4
+48749084,25956520,4
+35818666,25956520,2
+133087040,25956520,3
+3330105,25956520,3
+2720430,25956520,3
+2305347,25956520,5
+deviltom,25956520,2
+81532007,25956520,4
+dengbilin,25956520,4
+129764969,25956520,5
+45449329,25956520,4
+lunxian414,25956520,3
+2078834,25956520,4
+62125190,25956520,5
+50994268,25956520,1
+3141648,25956520,2
+88267742,25956520,4
+64173610,25956520,3
+64547855,25956520,1
+roseandwater,25956520,3
+lynn_500,25956520,3
+37915420,25956520,4
+mr.slow,25956520,3
+51236215,25956520,3
+6988511,25956520,3
+moonbeam0104,25956520,3
+96290717,25956520,4
+ipci,25956520,-1
+sid005,25956520,3
+cruxansata,25956520,-1
+121657475,25956520,3
+fashional,25956520,1
+wiwicat502,25956520,2
+xiaoyubaobao,25956520,3
+63565906,25956520,2
+colisa,25956520,1
+chocoqiao,25956520,4
+58794497,25956520,4
+63436872,25956520,3
+jessie1989,25956520,3
+ilosemyself,25956520,4
+tjmelody,25956520,3
+Gladysxie,25956520,3
+45347825,25956520,2
+wmjzdb,25956520,3
+3015416,25956520,3
+51743352,25956520,4
+43955073,25956520,2
+54654221,25956520,3
+62518074,25956520,3
+betty5230,25956520,3
+107124348,25956520,3
+kongchanzhimeng,25956520,2
+75812054,25956520,4
+63352800,25956520,3
+Floopy.S,25956520,4
+67922393,25956520,3
+63376272,25956520,-1
+lightu,25956520,4
+48823817,25956520,2
+53420942,25956520,4
+62426044,25956520,3
+summerwith,25956520,4
+51328750,25956520,4
+71947752,25956520,3
+63161507,25956520,3
+heydi,25956520,3
+59281167,25956520,3
+HilaryYue,25956520,3
+79560195,25956520,3
+4116226,25956520,3
+25350324,25956520,2
+125738022,25956520,3
+findor,25956520,3
+2295891,25956520,4
+2304016,25956520,5
+1765008,25956520,3
+59794841,25956520,3
+76276828,25956520,4
+122981054,25956520,3
+51763464,25956520,3
+79847046,25956520,3
+132886296,25956520,2
+minamishi,25956520,3
+hutt,25956520,5
+82378885,25956520,3
+53517811,25956520,3
+49702943,25956520,2
+app1e,25956520,4
+qjunny,25956520,3
+damos,25956520,3
+61734498,25956520,4
+131255183,25956520,3
+132921572,25956520,-1
+51618406,25956520,2
+latticetsui,25956520,-1
+61041885,25956520,3
+61568515,25956520,5
+33382680,25956520,-1
+imluoyi,25956520,1
+62880392,25956520,4
+87907452,25956520,3
+denny.bean,25956520,3
+91138119,25956520,2
+lanhl,25956520,3
+61749408,25956520,3
+1437985,25956520,4
+lt900708,25956520,4
+8056035,25956520,3
+fangxiaotang,25956520,3
+57779578,25956520,3
+gloria1206,25956520,4
+45459664,25956520,3
+104612405,25956520,3
+WICK,25956520,3
+Haguedon,25956520,4
+sysysysy,25956520,3
+32609644,25956520,4
+46738902,25956520,4
+63314941,25956520,3
+31108272,25956520,3
+69400068,25956520,4
+121340549,25956520,3
+92528113,25956520,4
+56677474,25956520,5
+5955160,25956520,4
+53642273,25956520,1
+84303160,25956520,3
+78651241,25956520,4
+longislandiced,25956520,2
+yueyue718,25956520,3
+87820826,25956520,2
+59210685,25956520,3
+giliani,25956520,4
+littlewings,25956520,3
+4657884,25956520,5
+myqueenangela,25956520,3
+81960503,25956520,3
+122304933,25956520,5
+simpleseason,25956520,4
+forzainzaghi,25956520,3
+liminality,25956520,2
+2180689,25956520,4
+32433633,25956520,3
+7881838,25956520,3
+42391530,25956520,4
+56066164,25956520,5
+ritalu,25956520,3
+chenchangxing,25956520,4
+mugglezwt,25956520,3
+13570007,25956520,1
+51420554,25956520,2
+47332466,25956520,4
+echo7forest,25956520,3
+37509431,25956520,4
+65538675,25956520,3
+misszhao,25956520,4
+BSB7262659,25956520,1
+59772100,25956520,2
+100303280,25956520,3
+84620795,25956520,4
+47773314,25956520,2
+NG,25956520,3
+45261585,25956520,2
+misssui,25956520,2
+61313964,25956520,1
+94022104,25956520,4
+montee_D,25956520,2
+stgrave,25956520,3
+94766000,25956520,3
+69986120,25956520,3
+1175096,25956520,1
+35780501,25956520,-1
+55280839,25956520,2
+long_distance,25956520,-1
+tavi0529,25956520,3
+KinoQ,25956520,-1
+iear,25956520,4
+115599807,25956520,5
+79934578,25956520,2
+chenhuayang,25956520,3
+50191469,25956520,3
+zccdtc,25956520,4
+67163006,25956520,4
+52709919,25956520,4
+silentmini,25956520,3
+91133669,25956520,3
+124786575,25956520,5
+33199146,25956520,4
+youyouhanxiao,25956520,3
+10888686,25956520,3
+jialezone,25956520,3
+44366504,25956520,5
+sugarli,25956520,4
+60739586,25956520,4
+rouroudong,25956520,3
+4617162,25956520,4
+zoecaffrey,25956520,3
+27223833,25956520,2
+Lotto59,25956520,3
+34638402,25956520,4
+55774300,25956520,5
+46880191,25956520,2
+80822437,25956520,1
+123273766,25956520,3
+1719141,25956520,4
+2393231,25956520,5
+41042005,25956520,4
+zhusiyang,25956520,3
+mycio,25956520,3
+58485840,25956520,3
+eve-71,25956520,3
+4902486,25956520,4
+j5281,25956520,3
+changefiona,25956520,4
+yishenmanli,25956520,4
+58037804,25956520,3
+hanwin216,25956520,4
+65044584,25956520,3
+supertrf,25956520,4
+132657014,25956520,4
+85310751,25956520,3
+38001119,25956520,4
+46300608,25956520,4
+56141860,25956520,2
+62318822,25956520,3
+enjoy826,25956520,2
+128631933,25956520,1
+83638503,25956520,4
+3670661,25956520,3
+1531818,25956520,5
+ScarlettCheung,25956520,4
+81421967,25956520,3
+119290611,25956520,3
+imcherrie,25956520,3
+34728183,25956520,3
+say2030,25956520,4
+57842249,25956520,3
+iris29,25956520,3
+aiJC,25956520,3
+111584714,25956520,2
+95076327,25956520,4
+68599558,25956520,2
+sundaedae,25956520,3
+47476786,25956520,4
+sherry615,25956520,3
+lvchencf,25956520,3
+qingfengvicky,25956520,3
+founder8968,25956520,-1
+53938589,25956520,-1
+39152562,25956520,5
+mnxn889,25956520,3
+122669942,25956520,2
+41420695,25956520,1
+44500031,25956520,3
+60761601,25956520,2
+47122000,25956520,5
+73199533,25956520,4
+dearFreundin,25956520,2
+59538037,25956520,4
+83217907,25956520,3
+3079236,25956520,4
+69592510,25956520,4
+40161822,25956520,3
+cilva,25956520,3
+45415867,25956520,3
+AzuresongWarden,25956520,4
+65680520,25956520,4
+75624333,25956520,2
+131538681,25956520,5
+50269699,25956520,3
+70421764,25956520,3
+flying_sword,25956520,4
+leon_rootless,25956520,3
+69173173,25956520,4
+wndhaor,25956520,4
+mudingcatshere,25956520,-1
+44685216,25956520,4
+45331089,25956520,3
+64981286,25956520,3
+huing,25956520,4
+75987958,25956520,3
+happygs,25956520,4
+43714574,25956520,4
+3331967,25956520,3
+44525790,25956520,3
+119427193,25956520,4
+33557750,25956520,4
+hennewb,25956520,4
+3273386,25956520,3
+57354872,25956520,5
+jeans522,25956520,4
+xizhaoming,25956520,2
+maggiemars,25956520,4
+yanyu_r,25956520,3
+3706220,25956520,2
+4657541,25956520,2
+daniel01,25956520,4
+68392497,25956520,3
+2705619,25956520,3
+shukong,25956520,4
+44030490,25956520,5
+1865210,25956520,3
+hd35,25956520,5
+suaguai7,25956520,2
+cheerychang,25956520,3
+56926782,25956520,3
+55644124,25956520,4
+49284769,25956520,3
+baby9410,25956520,3
+44192221,25956520,1
+artofloving,25956520,3
+hollyxiyi,25956520,3
+sapphire_1228,25956520,4
+arenagreen,25956520,3
+Earrame,25956520,3
+2842455,25956520,3
+46167248,25956520,4
+fqlv5,25956520,1
+45595430,25956520,4
+49319979,25956520,4
+52468739,25956520,2
+2329339,25956520,3
+nakuchiyo,25956520,2
+58231376,25956520,3
+liaoxiaoben,25956520,4
+33139664,25956520,5
+4823337,25956520,3
+82099928,25956520,4
+91998053,25956520,3
+3190777,25956520,1
+wzshere,25956520,3
+lupinthe3rd,25956520,4
+58847621,25956520,3
+131248519,25956520,1
+107489594,25956520,3
+103277074,25956520,3
+61664820,25956520,3
+sophie1900,25956520,3
+laurel-nanr,25956520,4
+winsonunddrei,25956520,4
+zcq741433220,25956520,3
+66234722,25956520,4
+cuixuelei,25956520,3
+SoyQueenaTse,25956520,4
+29386645,25956520,2
+48695037,25956520,4
+67984945,25956520,4
+43042569,25956520,4
+52340547,25956520,4
+62493846,25956520,5
+Serena_0512,25956520,4
+Jeanette_Xu,25956520,4
+63618132,25956520,2
+127950412,25956520,3
+47971743,25956520,4
+dokuso,25956520,5
+1606950,25956520,5
+4431102,25956520,4
+77557122,25956520,4
+Qiao929,25956520,3
+jiaosally,25956520,3
+torreslee,25956520,4
+46820075,25956520,3
+dizzyzzy,25956520,5
+66851184,25956520,5
+dangdang1027,25956520,5
+ckyyuan,25956520,3
+130001662,25956520,3
+60311898,25956520,4
+bloodleopard,25956520,3
+68238638,25956520,4
+hhy2013,25956520,4
+Daisy0210,25956520,5
+luvitas,25956520,2
+sonicui,25956520,5
+1303295,25956520,3
+flowermoi,25956520,4
+78994143,25956520,3
+Popdai,25956520,1
+52028198,25956520,4
+orlandoaa,25956520,-1
+1761444,25956520,4
+59013874,25956520,5
+21338461,25956520,4
+pubolin,25956520,4
+lovexiaoyan,25956520,3
+49543853,25956520,3
+ilovekyoko,25956520,5
+62141852,25956520,4
+3438313,25956520,4
+iumbrella,25956520,3
+sweetlemon,25956520,3
+feelingthewind,25956520,4
+37376533,25956520,3
+53945496,25956520,5
+1462255,25956520,5
+lotusworld,25956520,5
+73478164,25956520,3
+resurgam92dawn,25956520,3
+sipmac,25956520,4
+at_summer,25956520,3
+74249680,25956520,4
+56035155,25956520,3
+weidong8888,25956520,3
+78931639,25956520,4
+1110643,25956520,3
+73064038,25956520,3
+50299553,25956520,4
+131538725,25956520,4
+yiweicoffee,25956520,2
+zhangcj1224,25956520,2
+75268479,25956520,2
+51732025,25956520,-1
+67953627,25956520,5
+bochan,25956520,4
+elliry,25956520,3
+paper-airplane,25956520,4
+wilfulting,25956520,4
+106356583,25956520,5
+53958145,25956520,4
+116805216,25956520,3
+I-Rynn,25956520,3
+15005083,25956520,-1
+wangjim,25956520,5
+eddychaw,25956520,2
+89944772,25956520,4
+64287527,25956520,2
+gretchen_n,25956520,2
+3597938,25956520,4
+77914968,25956520,4
+66088686,25956520,3
+58148468,25956520,4
+octopus0831,25956520,4
+omikko,25956520,-1
+holly_xu,25956520,3
+63921722,25956520,4
+3595293,25956520,2
+3044833,25956520,3
+53769414,25956520,3
+1876785,25956520,3
+edward4th,25956520,2
+jiapp,25956520,4
+jofanie,25956520,4
+110484611,25956520,5
+64763104,25956520,4
+5991197,25956520,5
+22040154,25956520,3
+2842505,25956520,3
+70510688,25956520,3
+39566719,25956520,2
+61060366,25956520,3
+129350178,25956520,5
+2166021,25956520,3
+angelchou,25956520,4
+yuco,25956520,1
+58871831,25956520,4
+89060524,25956520,2
+66307947,25956520,5
+marshmallowwh,25956520,4
+42714668,25956520,1
+sasky,25956520,3
+37783302,25956520,5
+49210085,25956520,2
+55374511,25956520,4
+4231664,25956520,2
+104056990,25956520,3
+124413216,25956520,4
+48937128,25956520,3
+50472438,25956520,2
+daydream466,25956520,5
+63113646,25956520,3
+84343760,25956520,3
+3510245,25956520,3
+132560934,25956520,3
+khq,25956520,5
+2911268,25956520,3
+3969339,25956520,4
+47755264,25956520,-1
+83704374,25956520,3
+66000047,25956520,5
+51224776,25956520,3
+17775259,25956520,1
+48335260,25956520,4
+59458875,25956520,3
+71141044,25956520,1
+65183965,25956520,4
+66631115,25956520,3
+66430524,25956520,3
+115486176,25956520,3
+novembery,25956520,4
+Ertu,25956520,2
+3790594,25956520,5
+qingfengpushang,25956520,3
+zhawu,25956520,3
+caesarphoenix,25956520,3
+yan6,25956520,3
+grinch,25956520,3
+89092386,25956520,4
+enchanter_nana,25956520,2
+r.ain,25956520,4
+2488091,25956520,4
+49419366,25956520,4
+irene4ever,25956520,4
+toprocku,25956520,2
+enchanted13,25956520,1
+benben321,25956520,3
+4005034,25956520,3
+guobingyao728,25956520,3
+113356558,25956520,4
+K_Kaito,25956520,3
+108247778,25956520,3
+65080268,25956520,4
+90140834,25956520,5
+45721870,25956520,3
+65168546,25956520,5
+KIm_513,25956520,4
+as_shmily,25956520,3
+39351378,25956520,3
+121756661,25956520,5
+59361957,25956520,3
+34757533,25956520,4
+Alicescat,25956520,2
+claraye,25956520,5
+moyx,25956520,3
+72164651,25956520,1
+49366314,25956520,5
+fecal,25956520,4
+josiekiu,25956520,4
+lilychung,25956520,4
+50588044,25956520,3
+62442761,25956520,2
+53828979,25956520,2
+122317247,25956520,-1
+jiangmingji,25956520,4
+nini1030,25956520,3
+84155998,25956520,1
+CityOfShadows,25956520,3
+62469238,25956520,4
+100240812,25956520,3
+thrush,25956520,3
+51086722,25956520,4
+3573467,25956520,3
+56015661,25956520,3
+bluegrid,25956520,3
+67742715,25956520,4
+coconutZii,25956520,3
+122952047,25956520,4
+78352623,25956520,4
+57496538,25956520,3
+51369610,25956520,4
+dearza01,25956520,3
+36226280,25956520,3
+52456095,25956520,4
+76755993,25956520,5
+mecoco999,25956520,3
+dutianxiong,25956520,1
+yeskor,25956520,4
+29590811,25956520,4
+ameibush9799,25956520,3
+65145861,25956520,4
+2279554,25956520,4
+1019579,25956520,3
+maybealiar,25956520,4
+119258828,25956520,5
+sunluilui,25956520,3
+yueyarom,25956520,4
+87666016,25956520,4
+xy9102,25956520,3
+1111980,25956520,3
+83521053,25956520,4
+allenzn125,25956520,4
+53036681,25956520,3
+67668770,25956520,3
+49521977,25956520,1
+60624598,25956520,3
+aiba229,25956520,2
+cut,25956520,4
+72445632,25956520,4
+54345196,25956520,3
+82958383,25956520,4
+32541678,25956520,-1
+48072199,25956520,3
+dinosaw,25956520,3
+80250339,25956520,2
+cjmqzy0123,25956520,4
+50527952,25956520,3
+49274936,25956520,4
+59883054,25956520,3
+breadforest,25956520,4
+3129085,25956520,3
+36927005,25956520,3
+2206999,25956520,4
+65496075,25956520,4
+love523,25956520,1
+83359033,25956520,4
+63940928,25956520,4
+hiyangtao,25956520,4
+121370922,25956520,5
+71898206,25956520,4
+75650547,25956520,5
+132572356,25956520,3
+chenlulu,25956520,3
+yao_bing,25956520,3
+43584128,25956520,1
+60888658,25956520,4
+51197261,25956520,4
+48463715,25956520,4
+103031887,25956520,4
+81225680,25956520,2
+3577665,25956520,2
+58460115,25956520,2
+46556512,25956520,4
+amaoxiansheng,25956520,3
+mmissfreak,25956520,1
+sleepythom,25956520,3
+50880780,25956520,3
+72990514,25956520,4
+93031665,25956520,3
+whydoido,25956520,4
+yuanjiyi,25956520,3
+nineautumn,25956520,3
+konghanlei,25956520,4
+YuTianTian,25956520,4
+2049714,25956520,3
+28219717,25956520,3
+dekaixu,25956520,3
+Ruty1985,25956520,5
+37857132,25956520,4
+3001594,25956520,3
+83587515,25956520,-1
+63264576,25956520,3
+62472993,25956520,4
+libertyer,25956520,2
+loveyixiao,25956520,4
+40931757,25956520,2
+3116391,25956520,2
+madsereins,25956520,4
+34901213,25956520,2
+88320086,25956520,5
+51139499,25956520,4
+63989940,25956520,5
+60223940,25956520,3
+zebramomo,25956520,5
+122337608,25956520,3
+72988545,25956520,2
+finsen27,25956520,4
+52923795,25956520,4
+38567114,25956520,3
+paradoxe,25956520,4
+cici_wtf13,25956520,5
+superxiaoqi123,25956520,2
+3656467,25956520,3
+46061693,25956520,3
+94514917,25956520,4
+74532668,25956520,3
+46455848,25956520,4
+vividgreen,25956520,4
+vividgreen,25956520,4
+37779092,25956520,4
+ImEm,25956520,4
+35703098,25956520,4
+50926664,25956520,4
+ya19910907,25956520,4
+64718772,25956520,5
+67679868,25956520,3
+twoartist,25956520,4
+104751637,25956520,5
+F061213,25956520,5
+53492499,25956520,4
+47430266,25956520,3
+46412027,25956520,5
+67090243,25956520,4
+119447313,25956520,4
+3546488,25956520,5
+kankan329,25956520,2
+4338735,25956520,3
+53376823,25956520,4
+48098094,25956520,3
+48314806,25956520,4
+hans_berdych,25956520,3
+35270225,25956520,5
+coralc,25956520,2
+3365374,25956520,4
+39048100,25956520,3
+meyoo,25956520,2
+mathilda_le,25956520,5
+121849085,25956520,2
+momodi,25956520,3
+lanmon,25956520,4
+36238973,25956520,3
+mattviola,25956520,4
+3278968,25956520,2
+37255247,25956520,4
+130123416,25956520,3
+61722322,25956520,2
+62872014,25956520,3
+53489403,25956520,4
+123288101,25956520,4
+32995807,25956520,3
+49913366,25956520,4
+74528520,25956520,5
+lemonomel,25956520,3
+58810279,25956520,5
+123549763,25956520,3
+lovesunny,25956520,3
+54550633,25956520,3
+1503749,25956520,4
+wsy0309,25956520,5
+36862106,25956520,5
+taxi,25956520,2
+mayre,25956520,5
+52242741,25956520,3
+zhangziyi,25956520,4
+don_C,25956520,1
+78538562,25956520,4
+62182745,25956520,3
+luoyunxiang72,25956520,4
+74150636,25956520,5
+59018880,25956520,3
+74974016,25956520,3
+132474319,25956520,4
+sunA1n711,25956520,3
+marvelwei,25956520,3
+3555237,25956520,4
+50144553,25956520,3
+2834880,25956520,2
+48761994,25956520,4
+60651695,25956520,4
+39863904,25956520,5
+77047132,25956520,4
+65664991,25956520,3
+colorwind,25956520,4
+64091286,25956520,4
+77489603,25956520,2
+3529035,25956520,3
+4523741,25956520,5
+1592520,25956520,3
+77074010,25956520,4
+4749363,25956520,3
+50715776,25956520,-1
+96394942,25956520,1
+caoxuanjun,25956520,-1
+50066816,25956520,5
+53512949,25956520,4
+David023,25956520,5
+43335184,25956520,4
+3418984,25956520,3
+124307188,25956520,5
+46547191,25956520,3
+rorgegorge,25956520,2
+juyi214,25956520,3
+67487155,25956520,5
+58115368,25956520,1
+lindada,25956520,3
+119786891,25956520,3
+71654816,25956520,4
+36753404,25956520,5
+allthesame,25956520,3
+45487500,25956520,3
+76267184,25956520,2
+63348856,25956520,4
+50017356,25956520,2
+42735872,25956520,3
+1787295,25956520,3
+76636095,25956520,3
+41351821,25956520,3
+45463396,25956520,2
+Anh.zz,25956520,2
+103704385,25956520,2
+73205777,25956520,2
+weizheren,25956520,1
+cupittang,25956520,4
+119428504,25956520,3
+zs278777745,25956520,3
+2646418,25956520,4
+58351149,25956520,2
+57693778,25956520,3
+discipline,25956520,4
+cheerwhisky,25956520,4
+2058011,25956520,4
+52168475,25956520,4
+Little-Shaily,25956520,-1
+peRFect1012,25956520,3
+55930699,25956520,4
+ruilixiurui,25956520,4
+Mulholland,25956520,3
+37481260,25956520,4
+yan7478,25956520,4
+76780337,25956520,3
+kemingyang,25956520,4
+pussycat100,25956520,3
+applecs,25956520,2
+65532755,25956520,4
+28559275,25956520,3
+43188757,25956520,4
+twopersons,25956520,3
+84879388,25956520,5
+summerinbloom,25956520,3
+1917244,25956520,3
+41585917,25956520,3
+120605598,25956520,4
+pussycheer,25956520,4
+33978544,25956520,4
+xinxinyan,25956520,3
+zhenglin0577,25956520,2
+54772042,25956520,5
+36676686,25956520,4
+53127978,25956520,3
+1109340,25956520,3
+36817857,25956520,3
+viavia1991,25956520,3
+landcrosser,25956520,4
+75338620,25956520,3
+echowithu,25956520,3
+momomosuck,25956520,-1
+zazahuang,25956520,3
+Ashes-of-Roses,25956520,4
+82301494,25956520,5
+60334916,25956520,3
+morninglove,25956520,4
+mavislvv,25956520,5
+74535406,25956520,3
+61317516,25956520,3
+62317068,25956520,5
+aaaaaaaaaaa,25956520,2
+38633281,25956520,3
+53800753,25956520,2
+78955356,25956520,4
+CAROHANNAH,25956520,4
+bookeat,25956520,5
+3423661,25956520,4
+freed0me,25956520,5
+khuntracie,25956520,2
+chulditector,25956520,2
+125641594,25956520,4
+bluetiger,25956520,-1
+ifuya,25956520,4
+120091522,25956520,4
+42576821,25956520,3
+61318658,25956520,-1
+119399510,25956520,5
+131329716,25956520,5
+124959588,25956520,3
+LeonXyqXavi,25956520,3
+mercury0302,25956520,3
+115504725,25956520,4
+56878421,25956520,5
+51378440,25956520,3
+8725092,25956520,3
+55874346,25956520,4
+45273360,25956520,5
+53721393,25956520,4
+53677228,25956520,2
+61219748,25956520,1
+82146721,25956520,2
+51534915,25956520,4
+tildali1214,25956520,3
+72273685,25956520,3
+poeee,25956520,2
+60623717,25956520,3
+4331772,25956520,4
+15532810,25956520,2
+2809747,25956520,-1
+67276689,25956520,4
+47104715,25956520,2
+nuderain,25956520,5
+47717016,25956520,3
+Haoxixiansen,25956520,3
+56174035,25956520,5
+74287403,25956520,5
+83472025,25956520,3
+91297667,25956520,3
+54940586,25956520,4
+poemaroma,25956520,5
+88196239,25956520,3
+36757046,25956520,5
+77847494,25956520,3
+77847494,25956520,3
+zhtianyu,25956520,2
+63505489,25956520,3
+windmoon,25956520,4
+8895439,25956520,4
+air1104,25956520,2
+127319320,25956520,3
+braquentin,25956520,4
+yjhsherry,25956520,3
+96233634,25956520,3
+lengleng,25956520,2
+dvddvd,25956520,4
+iamwaitingher,25956520,4
+74154243,25956520,4
+haloading,25956520,5
+81897337,25956520,5
+anboli,25956520,3
+102747007,25956520,4
+shio713,25956520,3
+chimu,25956520,3
+4312876,25956520,4
+49519003,25956520,3
+3326293,25956520,4
+27277879,25956520,4
+49117698,25956520,4
+yinyaofan,25956520,3
+62296200,25956520,4
+53044283,25956520,4
+tiramisulovers,25956520,4
+1926472,25956520,2
+65370065,25956520,2
+1089374,25956520,1
+83883222,25956520,4
+56470887,25956520,4
+63760743,25956520,3
+47073186,25956520,2
+chenyangxu,25956520,3
+82691525,25956520,4
+zhj_810,25956520,3
+52725183,25956520,3
+hippojumpbig,25956520,3
+3100517,25956520,-1
+xiaofanskyfree,25956520,4
+64222843,25956520,3
+47239413,25956520,2
+slowerlearner,25956520,5
+79891044,25956520,4
+44654150,25956520,2
+60867302,25956520,3
+65850343,25956520,4
+72098816,25956520,2
+115552732,25956520,2
+58258651,25956520,4
+94068216,25956520,4
+34950703,25956520,3
+89560788,25956520,5
+sends,25956520,3
+61624806,25956520,-1
+70448343,25956520,4
+silentlion,25956520,4
+58936179,25956520,4
+126658027,25956520,5
+York29,25956520,4
+54811800,25956520,3
+54479962,25956520,4
+77305939,25956520,4
+80146650,25956520,-1
+74448596,25956520,4
+AJIONG119,25956520,3
+119583854,25956520,4
+47215662,25956520,4
+79260802,25956520,4
+2380878,25956520,4
+75285531,25956520,3
+35228199,25956520,5
+cherry1108,25956520,4
+130290957,25956520,5
+annieaiannie,25956520,4
+92717529,25956520,4
+77099096,25956520,3
+43122192,25956520,3
+59164249,25956520,3
+65075320,25956520,5
+SILENT7,25956520,3
+65274866,25956520,4
+88260129,25956520,4
+4478909,25956520,4
+121148792,25956520,4
+58094799,25956520,-1
+guyuqiao,25956520,5
+55660651,25956520,3
+guinie,25956520,3
+henhenlove,25956520,3
+68653967,25956520,3
+63815638,25956520,5
+57910521,25956520,5
+79215325,25956520,3
+65266454,25956520,3
+sugar.yao,25956520,4
+57285886,25956520,4
+103220348,25956520,3
+snowbaby217,25956520,5
+2009298,25956520,3
+lovely_love,25956520,3
+67976109,25956520,4
+3865672,25956520,3
+kimidesperado,25956520,4
+65521542,25956520,5
+84419481,25956520,3
+April-qmw,25956520,4
+50054734,25956520,3
+73571891,25956520,4
+kidozz,25956520,2
+4432517,25956520,1
+64081879,25956520,3
+88048268,25956520,4
+51162987,25956520,3
+63072408,25956520,3
+119850013,25956520,4
+52832781,25956520,2
+55511225,25956520,2
+61258694,25956520,4
+78473653,25956520,3
+120336002,25956520,5
+43787915,25956520,3
+shiguagji,25956520,4
+22031277,25956520,4
+47260881,25956520,4
+4175208,25956520,5
+47679672,25956520,3
+1799807,25956520,4
+72759769,25956520,3
+kindy_,25956520,-1
+weizi1977,25956520,3
+78691419,25956520,-1
+52508593,25956520,5
+65309880,25956520,3
+why20061108,25956520,2
+UncleTS,25956520,4
+fedorajiang,25956520,4
+80634044,25956520,4
+126693961,25956520,3
+l-memory,25956520,4
+120786974,25956520,4
+laichi_,25956520,2
+Holly810,25956520,4
+42897725,25956520,-1
+130989210,25956520,1
+46923925,25956520,-1
+Vo.,25956520,3
+131375761,25956520,3
+4172110,25956520,4
+fantasy_zs,25956520,5
+46119315,25956520,-1
+107805569,25956520,3
+3276784,25956520,3
+renee_bai,25956520,3
+3985333,25956520,4
+31004958,25956520,4
+4753861,25956520,3
+luhang363,25956520,3
+55501438,25956520,3
+36841796,25956520,5
+csaver,25956520,3
+3407751,25956520,4
+2909779,25956520,3
+88603301,25956520,4
+slcws,25956520,3
+edensan,25956520,3
+53706093,25956520,3
+52823989,25956520,4
+dafuyuan,25956520,1
+34558476,25956520,3
+83985185,25956520,4
+baoshumin,25956520,3
+98321949,25956520,2
+dyalan,25956520,3
+55833894,25956520,3
+whoseLotus,25956520,4
+84567467,25956520,4
+57276771,25956520,3
+105901752,25956520,1
+hqqsxinxin,25956520,5
+53507443,25956520,3
+reorou,25956520,-1
+Hochy,25956520,4
+xly7788,25956520,3
+Liew_qing,25956520,3
+felinoshuffle,25956520,2
+never-land-bird,25956520,3
+tsywy,25956520,4
+w74,25956520,3
+132439934,25956520,4
+jovanni,25956520,3
+69223309,25956520,3
+47552322,25956520,4
+ououf,25956520,5
+49649488,25956520,3
+54015533,25956520,5
+1890695,25956520,4
+77692526,25956520,5
+evan999,25956520,2
+87995771,25956520,5
+74463127,25956520,4
+maertaren,25956520,4
+49146851,25956520,-1
+54783483,25956520,3
+KuanKuannnn,25956520,4
+qiao517,25956520,3
+59995535,25956520,3
+47600432,25956520,4
+dydaisy,25956520,3
+3792249,25956520,4
+101963490,25956520,2
+120627927,25956520,5
+30586256,25956520,3
+4804994,25956520,-1
+125773849,25956520,3
+116308396,25956520,4
+seeonly,25956520,2
+ink1020,25956520,4
+zero520,25956520,3
+2481028,25956520,3
+42274147,25956520,4
+58956952,25956520,5
+winderwing,25956520,2
+Monster_004,25956520,4
+61932917,25956520,4
+84821105,25956520,4
+78540381,25956520,3
+113440309,25956520,4
+4145491,25956520,3
+74437095,25956520,-1
+Colman,25956520,3
+55849765,25956520,2
+papalangji,25956520,2
+48369698,25956520,-1
+nancynancygu,25956520,3
+1422255,25956520,2
+fangmuchen1314,25956520,1
+3497971,25956520,3
+131504998,25956520,4
+125111991,25956520,3
+xiaojidunmoguxi,25956520,5
+1770422,25956520,4
+40329331,25956520,-1
+xiaojiaheng,25956520,3
+pennychang945,25956520,3
+lovesunqi,25956520,5
+50400133,25956520,4
+wennie1995,25956520,4
+nanm,25956520,5
+jokylovecr,25956520,1
+yamaci,25956520,4
+40401643,25956520,3
+54977613,25956520,4
+83681028,25956520,-1
+16618379,25956520,5
+youzibanana,25956520,3
+57333199,25956520,3
+mmtete,25956520,5
+63166175,25956520,3
+58523083,25956520,3
+45224713,25956520,3
+74545723,25956520,4
+aya.stella,25956520,5
+4258787,25956520,3
+dearsissi,25956520,3
+2430432,25956520,4
+95402541,25956520,4
+sachi227,25956520,3
+63822026,25956520,4
+Clytze.vs.rose,25956520,2
+2227798,25956520,5
+freeup157,25956520,3
+119240610,25956520,3
+xianran,25956520,5
+56389919,25956520,3
+128812929,25956520,1
+119702092,25956520,-1
+LZMICHAEL,25956520,3
+119296421,25956520,3
+3282401,25956520,3
+43085353,25956520,3
+57752760,25956520,3
+67226794,25956520,1
+55891665,25956520,4
+48342025,25956520,4
+3974458,25956520,3
+82582719,25956520,3
+oldyu,25956520,3
+gongzitian,25956520,3
+Ymmy,25956520,2
+40518476,25956520,4
+Musaiki,25956520,3
+62446851,25956520,3
+47572613,25956520,3
+55970012,25956520,4
+33933254,25956520,3
+2404315,25956520,4
+96800376,25956520,2
+131079037,25956520,5
+70214405,25956520,3
+44145842,25956520,4
+130646245,25956520,4
+83389859,25956520,3
+50624122,25956520,3
+4190834,25956520,3
+41247402,25956520,3
+62491933,25956520,3
+68958006,25956520,3
+60050537,25956520,2
+14042957,25956520,1
+4413666,25956520,4
+120909510,25956520,3
+61967626,25956520,4
+Mandychai,25956520,3
+jessedong,25956520,3
+funnyxucheng,25956520,3
+4525795,25956520,2
+roy821,25956520,5
+53749033,25956520,3
+izzie,25956520,4
+72684898,25956520,2
+38629950,25956520,3
+yuzhaobin,25956520,3
+eveshi,25956520,5
+3884732,25956520,3
+53734415,25956520,1
+39447377,25956520,3
+131603099,25956520,3
+30231453,25956520,4
+minglemingle,25956520,3
+83401102,25956520,4
+syh622,25956520,3
+48036288,25956520,4
+ycy19870313,25956520,3
+ishtarie,25956520,4
+1736846,25956520,4
+e2cat,25956520,3
+78885563,25956520,4
+128061195,25956520,2
+119405586,25956520,4
+13301536,25956520,3
+dear.still,25956520,4
+129956796,25956520,4
+37366802,25956520,4
+woshixiaoyatou,25956520,3
+38080849,25956520,2
+78663644,25956520,4
+69148089,25956520,3
+1685637,25956520,5
+49695508,25956520,3
+66405994,25956520,2
+74703584,25956520,2
+jessica_21,25956520,2
+43606203,25956520,1
+45660957,25956520,3
+2391373,25956520,4
+131604050,25956520,5
+131604050,25956520,5
+kkidult,25956520,5
+ZnCore,25956520,5
+16685272,25956520,5
+41284521,25956520,-1
+axier,25956520,4
+big_peach,25956520,2
+3893474,25956520,4
+24274750,25956520,3
+98014979,25956520,2
+4137814,25956520,5
+37495463,25956520,-1
+behindtheveil,25956520,4
+36507254,25956520,2
+3131703,25956520,3
+132063463,25956520,3
+75212837,25956520,4
+DJ-day,25956520,-1
+2773656,25956520,3
+S-Majesty,25956520,3
+3053086,25956520,3
+sasz,25956520,3
+39520405,25956520,3
+wzyxiaoshou,25956520,4
+61011795,25956520,2
+43508209,25956520,2
+58127450,25956520,5
+52172835,25956520,5
+83694969,25956520,5
+muxueqz,25956520,4
+4834824,25956520,3
+61142417,25956520,4
+datete,25956520,3
+liuyucheng691,25956520,1
+54958824,25956520,5
+63622302,25956520,3
+19861416,25956520,3
+ILWTFT,25956520,4
+27636746,25956520,4
+46195954,25956520,2
+ruru8,25956520,-1
+29284011,25956520,3
+31407826,25956520,3
+lorry316,25956520,4
+91114065,25956520,3
+Song1183,25956520,3
+lingjue,25956520,3
+54533341,25956520,3
+53443110,25956520,4
+fyyxf,25956520,4
+liancheng,25956520,3
+85753777,25956520,3
+59012484,25956520,5
+94392173,25956520,3
+26692397,25956520,5
+1654472,25956520,2
+60186583,25956520,2
+47458734,25956520,3
+4841319,25956520,1
+hexiaoqin,25956520,3
+SZH19920707,25956520,3
+69475039,25956520,4
+liluoliluo,25956520,2
+Joest,25956520,3
+63400230,25956520,3
+103533703,25956520,4
+78861474,25956520,3
+52930229,25956520,5
+42654369,25956520,3
+ondineyi,25956520,2
+larawang,25956520,3
+43278259,25956520,4
+64069487,25956520,3
+ninomiyaya,25956520,4
+67890074,25956520,5
+122596452,25956520,1
+43703653,25956520,1
+xiaobenma,25956520,3
+56413716,25956520,3
+metac,25956520,5
+Froena,25956520,4
+130608231,25956520,2
+63319055,25956520,5
+54231509,25956520,3
+83782943,25956520,3
+evastone,25956520,2
+kingsheart,25956520,4
+59729897,25956520,3
+41874215,25956520,5
+q168,25956520,3
+accepthegood,25956520,2
+wck0913,25956520,3
+53739161,25956520,4
+44705370,25956520,5
+dyc0326,25956520,4
+62670724,25956520,4
+Leenur_gln,25956520,3
+80242311,25956520,4
+87237465,25956520,2
+68872792,25956520,3
+gbracelet,25956520,4
+62342625,25956520,4
+82041844,25956520,3
+44758154,25956520,-1
+2999259,25956520,-1
+54576231,25956520,3
+103629204,25956520,3
+warmice,25956520,5
+piaoweier,25956520,4
+hongliang5623,25956520,3
+candyforever,25956520,2
+amaokk,25956520,4
+SHEcecilia,25956520,5
+2343743,25956520,4
+4118218,25956520,-1
+bbbonniechan,25956520,2
+37521103,25956520,-1
+7542909,25956520,3
+Caligola,25956520,2
+3536775,25956520,3
+66989068,25956520,4
+yama.,25956520,2
+fenglimuren,25956520,3
+40611533,25956520,5
+81927453,25956520,4
+4478995,25956520,3
+2471335,25956520,3
+108431827,25956520,3
+landway,25956520,2
+14407324,25956520,2
+53908763,25956520,3
+77057576,25956520,2
+62922305,25956520,2
+75015059,25956520,-1
+54116667,25956520,2
+120784937,25956520,4
+fantasychang,25956520,3
+84741578,25956520,3
+67104840,25956520,3
+33399271,25956520,3
+wangqi428,25956520,3
+sciascia,25956520,3
+momokoochan,25956520,3
+57882904,25956520,3
+jywpl,25956520,4
+crea,25956520,4
+126818106,25956520,4
+48793243,25956520,2
+6916157,25956520,3
+xy_sailors,25956520,3
+102900567,25956520,4
+50368559,25956520,3
+48725322,25956520,2
+53721122,25956520,1
+3764030,25956520,5
+28252850,25956520,4
+maoxiaomao,25956520,4
+yanxuanyi,25956520,4
+120875472,25956520,3
+daonian_1990,25956520,4
+48506304,25956520,5
+83927943,25956520,5
+74575002,25956520,3
+52123243,25956520,3
+122805702,25956520,3
+wangxiaowei,25956520,5
+owenwoo,25956520,5
+60406508,25956520,3
+missaaa,25956520,-1
+Vanilla.Y,25956520,4
+1438707,25956520,4
+sirkee,25956520,3
+chimianbaodemao,25956520,3
+62436945,25956520,3
+128940036,25956520,4
+flycolorice,25956520,4
+kazuki_,25956520,5
+AMGEnzo,25956520,4
+68523574,25956520,4
+43281124,25956520,4
+xueshanfeitu,25956520,5
+colorjiang,25956520,-1
+127399419,25956520,3
+97312448,25956520,2
+10321693,25956520,5
+sakura9686,25956520,4
+7230609,25956520,2
+47286656,25956520,3
+79478187,25956520,4
+67619742,25956520,3
+zhousophia,25956520,3
+ajianshushu,25956520,5
+takiyah,25956520,3
+evilliang,25956520,4
+71946766,25956520,-1
+79856999,25956520,3
+43304462,25956520,-1
+MISSRuHua,25956520,3
+37333384,25956520,5
+Fedsay,25956520,3
+78475246,25956520,5
+126741827,25956520,5
+52725191,25956520,4
+42725289,25956520,4
+elainehsu,25956520,3
+99075022,25956520,5
+asacat7insummer,25956520,3
+50231066,25956520,5
+seven7ming,25956520,4
+126980247,25956520,2
+59876398,25956520,4
+47695093,25956520,3
+63631634,25956520,3
+liuxiyue,25956520,3
+80226840,25956520,5
+51965075,25956520,5
+mickyququ,25956520,2
+1164443,25956520,2
+51268266,25956520,3
+80212965,25956520,5
+2257637,25956520,-1
+adaxiang1205,25956520,3
+harechan,25956520,3
+94424696,25956520,5
+33415384,25956520,4
+94243524,25956520,1
+36006859,25956520,3
+63200444,25956520,5
+52374086,25956520,3
+129255326,25956520,3
+36565635,25956520,4
+liuhan1213,25956520,4
+46333291,25956520,2
+37217569,25956520,4
+natsuumi,25956520,4
+42171316,25956520,3
+41786270,25956520,3
+79784284,25956520,3
+65174941,25956520,3
+xzhyqq866,25956520,3
+61456781,25956520,3
+Erica1011,25956520,4
+58963466,25956520,4
+levitating,25956520,3
+68023776,25956520,4
+bbllyy,25956520,1
+dayandnights,25956520,4
+quanetta,25956520,2
+60599665,25956520,3
+4912751,25956520,3
+76109816,25956520,5
+41629334,25956520,3
+65440660,25956520,2
+75763564,25956520,3
+duduxiongzhifu,25956520,3
+2394490,25956520,4
+43080143,25956520,3
+120459070,25956520,3
+57090877,25956520,3
+kuangren79,25956520,3
+lichen_sun,25956520,3
+CAYmomo,25956520,1
+toxichoco,25956520,2
+momo0724,25956520,3
+3308358,25956520,3
+55875465,25956520,5
+55937351,25956520,-1
+thesinner,25956520,4
+liunisn,25956520,4
+46057828,25956520,5
+69381377,25956520,4
+60752428,25956520,3
+55863856,25956520,3
+63672355,25956520,3
+seekyo,25956520,3
+phoenix43,25956520,3
+67029502,25956520,3
+linsleyzhou,25956520,4
+46282005,25956520,3
+67003936,25956520,4
+49926639,25956520,1
+74671325,25956520,4
+bebikiki,25956520,4
+2785264,25956520,5
+132135949,25956520,5
+louieeeee,25956520,4
+dahuanhuan,25956520,3
+2802817,25956520,3
+teselaaaaaaa,25956520,3
+2681017,25956520,4
+34493482,25956520,4
+27343589,25956520,4
+lilithyi,25956520,5
+NJYSL,25956520,3
+59025385,25956520,4
+4905483,25956520,-1
+63458184,25956520,1
+mtz,25956520,3
+zhudewei,25956520,2
+sogenannte,25956520,3
+sogenannte,25956520,3
+Lul.z,25956520,3
+53937799,25956520,5
+3507179,25956520,3
+llamame,25956520,4
+podolski,25956520,3
+84250645,25956520,4
+79537393,25956520,3
+56526640,25956520,4
+62704108,25956520,5
+Annietta8393,25956520,3
+Eileke,25956520,3
+fxsun,25956520,-1
+79746301,25956520,4
+124254697,25956520,4
+29345040,25956520,4
+35516440,25956520,4
+avielwong,25956520,2
+2079581,25956520,1
+16604198,25956520,4
+16604198,25956520,4
+54450707,25956520,4
+jaredspecter,25956520,4
+movie8,25956520,3
+73759224,25956520,5
+3121598,25956520,4
+2472187,25956520,4
+littlewish,25956520,3
+64263776,25956520,4
+83153978,25956520,4
+4629619,25956520,4
+chishu,25956520,5
+70454973,25956520,4
+53262397,25956520,2
+27647451,25956520,3
+mixcloud,25956520,5
+62961782,25956520,4
+119806823,25956520,3
+fireworks0213,25956520,4
+72438301,25956520,4
+2568284,25956520,4
+44575941,25956520,3
+125455938,25956520,5
+37736612,25956520,2
+bearblindman,25956520,4
+39095645,25956520,3
+suikame,25956520,3
+1818595,25956520,2
+kriskid,25956520,2
+52064559,25956520,5
+2026339,25956520,3
+53659864,25956520,4
+87636985,25956520,3
+andysun0519,25956520,5
+50636732,25956520,4
+2815686,25956520,-1
+yoyoyoung,25956520,4
+59077397,25956520,3
+58927939,25956520,5
+bigmouth717,25956520,1
+ameliefei,25956520,4
+37562325,25956520,4
+yningc,25956520,5
+westgatewolf,25956520,4
+korylost,25956520,5
+MK9294,25956520,3
+72700363,25956520,4
+danwu,25956520,4
+64547560,25956520,1
+xiongjijun,25956520,4
+sunlinlin,25956520,4
+whwan,25956520,5
+Celethy,25956520,4
+2664749,25956520,4
+67632250,25956520,5
+65919352,25956520,4
+losacos,25956520,5
+xudi,25956520,-1
+50602888,25956520,5
+132130443,25956520,4
+1700702,25956520,3
+126202371,25956520,4
+103108509,25956520,5
+65237736,25956520,3
+clh7,25956520,3
+chlloe,25956520,3
+2073061,25956520,4
+80635442,25956520,4
+59366442,25956520,5
+76818492,25956520,3
+32941683,25956520,3
+121908520,25956520,5
+Obtson,25956520,3
+Ann,25956520,5
+1683948,25956520,3
+minniedai,25956520,4
+132364798,25956520,5
+2062966,25956520,3
+47994797,25956520,3
+68845209,25956520,3
+59383119,25956520,4
+cat_rs,25956520,3
+aatt,25956520,3
+40498676,25956520,3
+32672668,25956520,1
+42991062,25956520,3
+unvarying,25956520,3
+60656187,25956520,4
+moika,25956520,3
+10345879,25956520,3
+50431505,25956520,3
+66355794,25956520,4
+127005452,25956520,4
+xndsh,25956520,3
+tintintsang,25956520,4
+vincentfuyu,25956520,5
+131463589,25956520,1
+46310239,25956520,2
+4010201,25956520,4
+yyxdl,25956520,4
+2274906,25956520,3
+zzzzzmc,25956520,3
+1430924,25956520,4
+44821238,25956520,5
+73750981,25956520,5
+122352396,25956520,3
+snoopynirvana,25956520,3
+50204574,25956520,2
+3041750,25956520,4
+43364964,25956520,3
+49282329,25956520,4
+47151726,25956520,2
+37190150,25956520,4
+14032722,25956520,4
+curtis_zhu,25956520,5
+42291314,25956520,4
+45910532,25956520,3
+yolanda.h,25956520,-1
+125229716,25956520,2
+timnextgen,25956520,5
+68079880,25956520,4
+sincerity615,25956520,4
+belljazzzzzzzzz,25956520,3
+violinyuki,25956520,3
+49145783,25956520,3
+61557848,25956520,3
+zi,25956520,4
+82245250,25956520,2
+80470246,25956520,2
+looknana,25956520,1
+eddybaggio,25956520,1
+lifewithoutme,25956520,5
+maobao,25956520,2
+82689458,25956520,3
+74966541,25956520,1
+73571191,25956520,4
+ylyat,25956520,2
+51068627,25956520,3
+76743848,25956520,1
+50431026,25956520,4
+baobao520,25956520,2
+aikki27,25956520,4
+blessedme,25956520,3
+2318605,25956520,4
+juvenility,25956520,3
+minminprincess,25956520,4
+justbelieve,25956520,4
+124825999,25956520,4
+wukundouban,25956520,4
+a1234567,25956520,3
+83192314,25956520,4
+59977273,25956520,4
+kubrick311,25956520,4
+52286623,25956520,3
+jiazi1216,25956520,3
+dancinglight001,25956520,4
+74628004,25956520,3
+131856288,25956520,4
+4608887,25956520,3
+albicelestes,25956520,3
+122826547,25956520,1
+71203011,25956520,3
+bobogua,25956520,3
+35342792,25956520,5
+34170843,25956520,1
+33749828,25956520,4
+littlewhity,25956520,3
+40241549,25956520,3
+punicole,25956520,5
+faannn,25956520,3
+23154088,25956520,4
+m19900714,25956520,3
+26581304,25956520,4
+hhhhhhn,25956520,4
+131426650,25956520,5
+51786034,25956520,3
+61025925,25956520,3
+3828606,25956520,5
+1403476,25956520,5
+glowxi,25956520,2
+41195439,25956520,4
+131849470,25956520,2
+2221368,25956520,3
+Rainbowww,25956520,3
+3486553,25956520,3
+128681917,25956520,4
+xianyuxy,25956520,3
+52084634,25956520,3
+28556542,25956520,3
+61024335,25956520,4
+aada,25956520,3
+81300776,25956520,5
+50748318,25956520,4
+55640247,25956520,2
+70578459,25956520,4
+teng10g,25956520,4
+64554108,25956520,1
+zyydads,25956520,3
+56812681,25956520,4
+ariellau,25956520,2
+2056209,25956520,3
+49489445,25956520,5
+Sigrid_Lu,25956520,2
+forest_desert,25956520,4
+53256326,25956520,3
+dxq1216,25956520,3
+37131063,25956520,3
+fang0079,25956520,5
+4605484,25956520,3
+78435170,25956520,3
+75555964,25956520,4
+53090809,25956520,3
+49948438,25956520,5
+47152561,25956520,3
+68156660,25956520,4
+maye528,25956520,3
+maomaoye,25956520,2
+116537289,25956520,1
+yudandanyuyu,25956520,5
+Aquarius_Girl,25956520,3
+43842293,25956520,4
+35369841,25956520,3
+uncleradar,25956520,2
+tanggg,25956520,-1
+30569646,25956520,3
+64010291,25956520,5
+65486346,25956520,3
+30884176,25956520,2
+37280239,25956520,4
+67539308,25956520,4
+76663722,25956520,5
+sqxmy,25956520,3
+82619026,25956520,3
+novocaine,25956520,3
+princessvivian,25956520,2
+vivififi,25956520,3
+zimingyulin,25956520,3
+kenn,25956520,3
+67419264,25956520,4
+EINTP,25956520,4
+liansu713,25956520,4
+samcoco,25956520,5
+69783777,25956520,3
+55978536,25956520,4
+52499863,25956520,3
+91656862,25956520,4
+feixianggod,25956520,4
+38432011,25956520,3
+132347906,25956520,3
+87515685,25956520,5
+53187080,25956520,4
+rockrujing,25956520,3
+49324662,25956520,3
+liero,25956520,3
+78319959,25956520,1
+72409759,25956520,3
+50443148,25956520,4
+62428481,25956520,3
+90618593,25956520,4
+52128346,25956520,5
+42137156,25956520,4
+bankuailvtang,25956520,3
+50633808,25956520,3
+zzp767,25956520,3
+4876430,25956520,3
+16538744,25956520,3
+47479797,25956520,2
+82929038,25956520,4
+38448469,25956520,3
+Van07,25956520,3
+4784552,25956520,5
+65756947,25956520,5
+phoebefly,25956520,3
+64237711,25956520,5
+120529040,25956520,5
+94032593,25956520,2
+WN-ninja,25956520,3
+55444463,25956520,-1
+1346719,25956520,3
+anm5,25956520,3
+130054258,25956520,4
+47768193,25956520,5
+Vol.de.nuit,25956520,1
+imachild,25956520,4
+50687552,25956520,3
+44976171,25956520,3
+40283915,25956520,3
+121402491,25956520,5
+80346080,25956520,3
+131020282,25956520,5
+57965399,25956520,5
+wangmian0729,25956520,4
+41325269,25956520,5
+27685340,25956520,4
+49980514,25956520,3
+91114257,25956520,5
+stonyshiny,25956520,3
+71348074,25956520,3
+lzzzzzfbee,25956520,3
+doujiang03,25956520,3
+4370686,25956520,2
+seekis,25956520,4
+39835043,25956520,5
+49306580,25956520,1
+imagefly,25956520,4
+58196697,25956520,2
+lephemera,25956520,3
+Plutoyw,25956520,3
+bebusybee,25956520,2
+daangel,25956520,4
+husen,25956520,5
+guandao--,25956520,4
+93451657,25956520,2
+86208688,25956520,3
+47323555,25956520,1
+41403989,25956520,2
+3951378,25956520,4
+65458998,25956520,3
+73626689,25956520,3
+47104985,25956520,4
+47190086,25956520,3
+62475168,25956520,4
+121627285,25956520,3
+anyvvan,25956520,3
+fb87,25956520,1
+131115228,25956520,2
+rainbowlla,25956520,3
+luxifilm,25956520,4
+53242545,25956520,3
+shenyong6813,25956520,3
+130396316,25956520,5
+hr116,25956520,4
+2588629,25956520,4
+4157643,25956520,3
+yoyo_wu,25956520,3
+lighttraveller,25956520,4
+39488134,25956520,5
+61326336,25956520,3
+silverrrr9142,25956520,2
+3315921,25956520,5
+1121733,25956520,4
+87542949,25956520,5
+3284287,25956520,4
+131076137,25956520,4
+haixuanyan,25956520,4
+sebasverm,25956520,4
+2571757,25956520,2
+46565582,25956520,4
+Milkandy,25956520,2
+102994802,25956520,4
+lcghere,25956520,4
+fourchette,25956520,2
+8078899,25956520,5
+2570265,25956520,4
+25546875,25956520,2
+kobe_steak,25956520,3
+94227961,25956520,3
+44280376,25956520,5
+pianzhikuangyy,25956520,2
+nangongmocheng,25956520,4
+pxdnic,25956520,3
+77908351,25956520,5
+43294202,25956520,3
+57597596,25956520,4
+naiveal,25956520,2
+53396533,25956520,2
+4065850,25956520,5
+MR.YAO,25956520,2
+104604528,25956520,1
+kiralove00,25956520,3
+ricbabe,25956520,3
+tanktank,25956520,5
+130699016,25956520,3
+Mrs.Myself,25956520,3
+119203760,25956520,4
+97994218,25956520,4
+99329704,25956520,2
+48864357,25956520,5
+37914560,25956520,3
+zhushanshan233,25956520,4
+21436419,25956520,5
+80657169,25956520,4
+2180309,25956520,4
+viveyshao,25956520,3
+77077717,25956520,3
+4313535,25956520,3
+57702765,25956520,5
+SubVsmile,25956520,4
+73495060,25956520,3
+115892758,25956520,5
+chaimengjie,25956520,4
+11542932,25956520,2
+59573093,25956520,3
+3169210,25956520,3
+53644977,25956520,3
+DrRay,25956520,3
+76484810,25956520,4
+61426958,25956520,2
+49191008,25956520,3
+coolwd,25956520,3
+68534357,25956520,3
+47888739,25956520,-1
+115772568,25956520,3
+jmy317416114,25956520,3
+1898022,25956520,4
+izaijin,25956520,4
+xijiayang,25956520,3
+46168021,25956520,4
+48892199,25956520,3
+52758132,25956520,5
+3947538,25956520,3
+agaric26,25956520,5
+xuesongtian,25956520,3
+meko,25956520,4
+53222149,25956520,3
+67200979,25956520,5
+64173822,25956520,4
+flora0013,25956520,-1
+2267587,25956520,-1
+75650896,25956520,3
+51851072,25956520,5
+84566061,25956520,5
+57255280,25956520,3
+58281873,25956520,3
+FrankWasabi,25956520,2
+94886676,25956520,4
+eddychao,25956520,2
+58820968,25956520,5
+108277867,25956520,5
+55362027,25956520,4
+35155184,25956520,4
+32363324,25956520,1
+89100656,25956520,3
+tender_night,25956520,3
+55324515,25956520,3
+shunong,25956520,2
+90598022,25956520,3
+71543959,25956520,5
+60089560,25956520,3
+namutree,25956520,4
+mufanxuanji,25956520,4
+2127340,25956520,3
+Lydia_Zhu,25956520,3
+44656032,25956520,2
+132333627,25956520,2
+44679569,25956520,3
+46735351,25956520,5
+48381492,25956520,3
+issdream,25956520,3
+99441700,25956520,4
+45508468,25956520,4
+132306889,25956520,3
+leslie93,25956520,3
+effylee,25956520,-1
+15153228,25956520,2
+4337944,25956520,3
+ZotterElaine,25956520,3
+1106581,25956520,1
+35506270,25956520,3
+mmmenstruation,25956520,3
+74337683,25956520,4
+52003906,25956520,3
+darlingtudai,25956520,3
+47368327,25956520,3
+57725456,25956520,3
+64778238,25956520,4
+wangxiaoyeer,25956520,4
+59120246,25956520,4
+48976619,25956520,3
+Chrysene,25956520,3
+37757378,25956520,1
+61328607,25956520,5
+amatou,25956520,2
+36811646,25956520,4
+127278998,25956520,4
+126846791,25956520,4
+3502559,25956520,3
+119882836,25956520,5
+71126772,25956520,3
+64286220,25956520,3
+Regina749,25956520,4
+reave,25956520,5
+lanmour,25956520,4
+55774823,25956520,3
+57695924,25956520,1
+3950603,25956520,3
+46196075,25956520,3
+guanwaiguicai,25956520,2
+78150719,25956520,4
+4284000,25956520,3
+69117916,25956520,1
+67711452,25956520,4
+zq8870690207,25956520,3
+75001572,25956520,4
+49855278,25956520,-1
+lbj1986,25956520,4
+78539431,25956520,5
+89262639,25956520,1
+ireneyan,25956520,3
+35937463,25956520,2
+94872079,25956520,3
+pussyran,25956520,4
+61015438,25956520,5
+71180598,25956520,3
+84386579,25956520,4
+48282054,25956520,4
+jessica0118,25956520,4
+84030078,25956520,1
+32541723,25956520,3
+43043664,25956520,1
+47131649,25956520,3
+55737203,25956520,2
+123853098,25956520,4
+89700756,25956520,3
+itzhaoxiangyu,25956520,3
+74139024,25956520,3
+zcunlin,25956520,3
+40649536,25956520,4
+67267269,25956520,5
+beckihu,25956520,-1
+68129112,25956520,4
+63249490,25956520,3
+49047710,25956520,4
+40587202,25956520,5
+67911399,25956520,1
+36120326,25956520,4
+Ameliehoxiu,25956520,4
+letonk,25956520,3
+elenadivita,25956520,2
+75614710,25956520,3
+3748892,25956520,3
+68797581,25956520,4
+79571053,25956520,2
+1867292,25956520,3
+MY_Moments,25956520,5
+clarissally,25956520,3
+45855864,25956520,3
+41065952,25956520,5
+63423532,25956520,3
+pltplt,25956520,5
+104312412,25956520,3
+darkma,25956520,2
+4841197,25956520,2
+DeWatson,25956520,4
+47851057,25956520,4
+4255750,25956520,3
+fenjianchen,25956520,4
+Eleesi,25956520,4
+38337413,25956520,5
+47226412,25956520,3
+ggqgu,25956520,3
+41471449,25956520,3
+120251370,25956520,3
+Alice-in-Bed,25956520,4
+120601799,25956520,2
+hongwehuang,25956520,3
+2812415,25956520,4
+ruiye,25956520,2
+112282362,25956520,5
+16364788,25956520,2
+rp027,25956520,4
+1519013,25956520,1
+wen_Schwartz,25956520,2
+vienna76,25956520,3
+68668703,25956520,4
+132311117,25956520,1
+59260691,25956520,3
+43775375,25956520,5
+90795414,25956520,3
+83645404,25956520,4
+mowo,25956520,4
+2679311,25956520,2
+129293724,25956520,3
+51266657,25956520,1
+luanjunyi,25956520,4
+58113697,25956520,1
+66890717,25956520,5
+nekozamurai,25956520,5
+sasa522,25956520,-1
+thisismeng,25956520,2
+i.m.yours,25956520,4
+dfzxqqian,25956520,3
+arthur1990,25956520,4
+13039939,25956520,3
+82741086,25956520,4
+6968778,25956520,1
+60754399,25956520,5
+jyngoing1990,25956520,-1
+hyrorim,25956520,3
+movie007wn,25956520,3
+106113807,25956520,5
+46320869,25956520,3
+choichoi,25956520,2
+CanaanYoung,25956520,2
+43682836,25956520,3
+3489938,25956520,2
+1891047,25956520,4
+beefeaters,25956520,3
+ask4more,25956520,-1
+amyzane,25956520,4
+amyzane,25956520,4
+zayaza,25956520,3
+1834004,25956520,4
+4212088,25956520,-1
+hye-c,25956520,4
+74283242,25956520,3
+46439800,25956520,3
+catfood,25956520,3
+lishiyangmayo,25956520,2
+83667346,25956520,1
+evaniscoming,25956520,5
+87958511,25956520,5
+gqle,25956520,5
+cyrus_wong,25956520,4
+TERRYBEAR,25956520,3
+96535250,25956520,1
+39573600,25956520,4
+45047336,25956520,3
+zhou33,25956520,3
+Chopen,25956520,1
+128603906,25956520,4
+onedotdot,25956520,3
+xiaozhusi,25956520,3
+66860468,25956520,3
+vicW,25956520,2
+lzw5546,25956520,4
+41090291,25956520,4
+4335163,25956520,3
+3413441,25956520,4
+chrisyx,25956520,4
+53234728,25956520,3
+77374241,25956520,3
+yldo,25956520,3
+zjia,25956520,3
+5684681,25956520,3
+6911787,25956520,3
+27379135,25956520,4
+day14,25956520,4
+dearruby,25956520,3
+132053368,25956520,3
+87576742,25956520,4
+88174425,25956520,5
+103951444,25956520,4
+49424373,25956520,4
+65828524,25956520,5
+79773701,25956520,3
+ikaka,25956520,3
+54903336,25956520,3
+Sking_lq,25956520,5
+62579424,25956520,3
+goodbyelenin,25956520,1
+Monte.L,25956520,4
+vincente,25956520,3
+rollingpika,25956520,4
+zoujian-999,25956520,4
+35991194,25956520,2
+51434637,25956520,4
+91994560,25956520,3
+ngels,25956520,4
+50583223,25956520,2
+60708720,25956520,5
+58349730,25956520,4
+1192915,25956520,4
+121569446,25956520,3
+84916191,25956520,4
+42597546,25956520,4
+kjslove,25956520,3
+shinysun,25956520,4
+49187525,25956520,3
+69212762,25956520,4
+1166642,25956520,4
+47650705,25956520,3
+71574131,25956520,3
+zlaye,25956520,3
+yukiyuko,25956520,4
+98745859,25956520,4
+83190798,25956520,3
+48251373,25956520,2
+qi-shao-shang,25956520,2
+59651696,25956520,5
+57910322,25956520,4
+liuningba,25956520,2
+62743500,25956520,4
+92230776,25956520,3
+121933130,25956520,2
+49637787,25956520,2
+62332371,25956520,3
+glax,25956520,3
+52117256,25956520,4
+96858523,25956520,5
+yihaifei,25956520,3
+124872430,25956520,1
+mr-carrot,25956520,4
+subtle11,25956520,4
+49854531,25956520,2
+41010757,25956520,3
+viola0204,25956520,3
+aprilrainer,25956520,3
+80398365,25956520,4
+121486273,25956520,3
+57263657,25956520,3
+45754533,25956520,3
+xiaomanxiaoxi,25956520,4
+3846319,25956520,3
+3833311,25956520,3
+c.c.starry,25956520,2
+79787429,25956520,4
+silverhawk,25956520,1
+zihaozai0407,25956520,4
+susanleslie,25956520,5
+I-tengo,25956520,4
+71108776,25956520,5
+64855629,25956520,3
+nemo2man,25956520,5
+4445748,25956520,-1
+nelatever,25956520,-1
+46493467,25956520,4
+3042446,25956520,3
+61688299,25956520,4
+2599607,25956520,4
+63871072,25956520,3
+65181695,25956520,2
+nancyrocks,25956520,4
+1720086,25956520,1
+56559103,25956520,1
+69725633,25956520,4
+34017621,25956520,3
+50769743,25956520,3
+coolmilk,25956520,3
+dongchenxing,25956520,4
+amandaccforever,25956520,4
+50118479,25956520,3
+93492854,25956520,3
+37596109,25956520,2
+46754080,25956520,1
+xiejinni,25956520,5
+yuanzi123,25956520,1
+82347389,25956520,4
+ltraman,25956520,5
+76529709,25956520,3
+lixinleixinli,25956520,3
+direvil,25956520,3
+78518168,25956520,5
+53061557,25956520,3
+28853372,25956520,4
+terrysteven,25956520,2
+84591615,25956520,3
+90831537,25956520,2
+108077404,25956520,4
+51928009,25956520,4
+erdansleepy,25956520,3
+68034921,25956520,4
+39200949,25956520,-1
+66269083,25956520,2
+47626594,25956520,1
+131893713,25956520,3
+a529105502,25956520,3
+50900048,25956520,2
+linxi107,25956520,5
+13126261,25956520,4
+raquelycidas,25956520,2
+singeNicolas,25956520,4
+43906490,25956520,4
+Alice.P,25956520,3
+flowermumu,25956520,3
+123122974,25956520,5
+63170665,25956520,5
+55656968,25956520,4
+51050317,25956520,4
+VUCHUNG,25956520,3
+daylily1016,25956520,4
+yangziche,25956520,3
+51378582,25956520,5
+38863376,25956520,3
+15146438,25956520,4
+63413340,25956520,4
+sherry0425,25956520,3
+shoushouan,25956520,-1
+31281892,25956520,2
+125017541,25956520,4
+yingyingyixiao,25956520,4
+68742016,25956520,5
+59373409,25956520,4
+49298107,25956520,2
+2982439,25956520,-1
+deardearcat,25956520,3
+2495913,25956520,4
+ningning9164,25956520,-1
+119995299,25956520,3
+64033967,25956520,5
+yi204o,25956520,3
+131922601,25956520,2
+114493439,25956520,3
+29898737,25956520,4
+60408856,25956520,5
+61334084,25956520,3
+83269650,25956520,2
+127000980,25956520,4
+www_199002,25956520,4
+113752134,25956520,4
+1240037,25956520,3
+luciachang,25956520,4
+65555884,25956520,3
+36064058,25956520,5
+1182787,25956520,4
+49465683,25956520,4
+103469083,25956520,2
+qijiuzhiyue,25956520,3
+little-dog,25956520,4
+53893318,25956520,2
+30714456,25956520,3
+2284641,25956520,4
+Alvin0414,25956520,4
+19566657,25956520,-1
+124887489,25956520,4
+58288224,25956520,3
+2764887,25956520,4
+acepatrick,25956520,2
+ijunojiang,25956520,3
+2094226,25956520,2
+59367965,25956520,3
+justin-vboy,25956520,4
+22785617,25956520,5
+53994543,25956520,4
+huizhedingli,25956520,-1
+81325605,25956520,2
+129087038,25956520,3
+51629650,25956520,2
+33538024,25956520,2
+66690322,25956520,3
+82147319,25956520,3
+81404706,25956520,3
+amy27,25956520,-1
+3360731,25956520,3
+128124324,25956520,5
+SHAOSHAOMENG,25956520,3
+RATATKAIQI,25956520,3
+89542438,25956520,4
+31133001,25956520,5
+85054280,25956520,3
+fleapet,25956520,2
+skxywei,25956520,5
+changle0605,25956520,3
+4359954,25956520,-1
+92328135,25956520,4
+youngfire,25956520,5
+102797351,25956520,5
+2705138,25956520,1
+jinniuxiansheng,25956520,4
+99196855,25956520,5
+68366606,25956520,3
+39175181,25956520,4
+38811434,25956520,3
+132277009,25956520,3
+juand,25956520,4
+roll7,25956520,4
+77718867,25956520,1
+65448112,25956520,2
+jianxi,25956520,3
+zongyouyitian,25956520,3
+61485916,25956520,5
+yangyiwen,25956520,3
+54989899,25956520,2
+dai0709,25956520,3
+45650026,25956520,5
+2213510,25956520,3
+Leslie_Cheung,25956520,2
+LeeMar,25956520,3
+53692336,25956520,1
+130983822,25956520,3
+49495065,25956520,5
+102718430,25956520,4
+122198216,25956520,5
+sukimushroom,25956520,2
+ninosun,25956520,5
+54128543,25956520,4
+65297808,25956520,1
+monsoon,25956520,3
+candy_maoshijia,25956520,5
+37682814,25956520,3
+2005941,25956520,4
+60413316,25956520,2
+62334058,25956520,-1
+helernann,25956520,3
+pantaichi,25956520,3
+1864146,25956520,3
+bay2fun,25956520,3
+tomevivid,25956520,4
+tm_lover,25956520,2
+q5240689,25956520,3
+80372690,25956520,4
+47418910,25956520,5
+82685125,25956520,4
+gaishixiaogui,25956520,5
+hibaruna,25956520,2
+kiki924,25956520,5
+63730928,25956520,2
+sky147,25956520,3
+neverbetter,25956520,5
+52363732,25956520,5
+94367983,25956520,5
+seafans,25956520,3
+43626907,25956520,5
+tanya_yan,25956520,4
+2351247,25956520,4
+56044350,25956520,5
+aiwangyue,25956520,1
+graceinjune,25956520,4
+xfzhou,25956520,4
+63156510,25956520,3
+71188390,25956520,5
+vaesunshinesuns,25956520,-1
+antwon,25956520,4
+50709050,25956520,4
+80770457,25956520,2
+65696452,25956520,3
+jeady2311,25956520,3
+115569884,25956520,1
+74981759,25956520,1
+58853355,25956520,1
+51381772,25956520,4
+42759061,25956520,2
+132019921,25956520,5
+130115210,25956520,5
+ringyu,25956520,3
+loveless12,25956520,3
+p2165,25956520,3
+63343874,25956520,3
+2383388,25956520,-1
+52428777,25956520,3
+haviya,25956520,3
+52869049,25956520,1
+70386313,25956520,4
+52538749,25956520,3
+17407986,25956520,4
+michaelcc,25956520,3
+adamhu,25956520,3
+TaTaxxxx,25956520,4
+weiwei1020,25956520,4
+49583935,25956520,5
+124532032,25956520,1
+128460609,25956520,5
+52780996,25956520,5
+mississluu,25956520,4
+61919375,25956520,2
+56670282,25956520,3
+huskie,25956520,4
+71121472,25956520,4
+119101467,25956520,1
+56843033,25956520,5
+119089511,25956520,-1
+120378701,25956520,3
+69096256,25956520,3
+3836234,25956520,2
+kejinlong,25956520,1
+Sapporo,25956520,2
+59657924,25956520,4
+lovelyekin,25956520,2
+mxlzyd,25956520,5
+76487332,25956520,1
+Alined,25956520,4
+57542378,25956520,1
+67182363,25956520,4
+christie88cn,25956520,5
+81292401,25956520,4
+52631358,25956520,2
+xuyanjie,25956520,-1
+Uvo,25956520,3
+34234049,25956520,3
+unbounder,25956520,3
+fengjiansun,25956520,4
+47452659,25956520,4
+qianqianaini,25956520,5
+53817584,25956520,4
+54619955,25956520,2
+47679432,25956520,3
+56408861,25956520,4
+68878463,25956520,4
+leave614,25956520,3
+127342704,25956520,4
+50060410,25956520,3
+57370977,25956520,3
+wenteng1988,25956520,2
+54096060,25956520,2
+88439681,25956520,3
+67624149,25956520,3
+125524083,25956520,3
+49326623,25956520,3
+2643462,25956520,5
+45838830,25956520,3
+dkjm,25956520,4
+languheshang,25956520,3
+feibaobei,25956520,2
+84696017,25956520,3
+outyouka,25956520,5
+53854833,25956520,3
+joyestin,25956520,4
+lleiou,25956520,3
+wwnoah,25956520,4
+37411084,25956520,5
+49586478,25956520,2
+guxialong,25956520,5
+50938886,25956520,3
+53092429,25956520,4
+52889197,25956520,4
+73866765,25956520,2
+97350616,25956520,4
+yuuu,25956520,2
+3725907,25956520,3
+33688459,25956520,5
+52188782,25956520,4
+45828320,25956520,5
+1096571,25956520,3
+71869905,25956520,2
+MovieL,25956520,3
+8627977,25956520,1
+yycs,25956520,4
+102912296,25956520,3
+xuanranoklove,25956520,-1
+luerdelphic,25956520,3
+78548715,25956520,4
+61406306,25956520,4
+davyjones,25956520,3
+little18jo,25956520,4
+126186349,25956520,1
+121776182,25956520,1
+63996791,25956520,4
+57967875,25956520,5
+76270911,25956520,4
+3737846,25956520,5
+51800781,25956520,4
+41844551,25956520,3
+cat17fish1,25956520,-1
+wind_field,25956520,2
+Lotosschnee,25956520,4
+nobodyhome,25956520,3
+dodopan,25956520,4
+cinvro,25956520,2
+56871206,25956520,3
+131500891,25956520,3
+44725365,25956520,3
+130537973,25956520,5
+131204343,25956520,5
+59232789,25956520,4
+72985710,25956520,4
+classical622,25956520,4
+jshippo,25956520,5
+niguize,25956520,2
+55446081,25956520,3
+12452258,25956520,3
+PringlesLinB,25956520,1
+67963376,25956520,-1
+lovingmomo,25956520,4
+flxjp,25956520,3
+2275412,25956520,1
+124568537,25956520,1
+121805239,25956520,4
+89723194,25956520,2
+119156717,25956520,5
+christopherlin,25956520,2
+yfqc24pippo,25956520,3
+122247183,25956520,1
+Lujiahui0223,25956520,4
+floraxu,25956520,2
+94574301,25956520,4
+62582526,25956520,2
+Phyllis5,25956520,3
+1895030,25956520,4
+49079570,25956520,2
+60699753,25956520,5
+33527780,25956520,3
+cindycoo,25956520,2
+130393277,25956520,2
+83307037,25956520,5
+hmlfr,25956520,4
+1995910,25956520,2
+lae,25956520,4
+cassiopeiafever,25956520,4
+asdf710667,25956520,2
+80230025,25956520,2
+shakie,25956520,4
+tanlin8711,25956520,3
+79814792,25956520,2
+gexiaomeng,25956520,2
+sunnyujia,25956520,2
+73681186,25956520,4
+shushizhenliu,25956520,2
+touch1986summer,25956520,5
+64162088,25956520,4
+1815039,25956520,3
+vivien1120,25956520,3
+130613342,25956520,4
+125386476,25956520,4
+131410217,25956520,5
+46815070,25956520,2
+azuremoon0118,25956520,-1
+52223517,25956520,1
+tjz230,25956520,2
+58913556,25956520,3
+47034969,25956520,2
+78396760,25956520,3
+alice1123,25956520,3
+130642973,25956520,4
+65154589,25956520,3
+PFmaple,25956520,4
+2563465,25956520,3
+changzheng,25956520,4
+64107417,25956520,2
+123419758,25956520,4
+60903093,25956520,2
+vitaminJ,25956520,3
+kyleul,25956520,5
+2623544,25956520,1
+llittlexu,25956520,5
+65720816,25956520,3
+92762833,25956520,2
+Hrypenlyandroid,25956520,5
+109774060,25956520,4
+38609942,25956520,1
+91958061,25956520,1
+luvecho,25956520,-1
+52345986,25956520,1
+gailsylee,25956520,2
+98424901,25956520,3
+36659366,25956520,5
+54915299,25956520,1
+48227669,25956520,4
+67289981,25956520,2
+59805346,25956520,5
+76590839,25956520,1
+49907411,25956520,3
+jallenzhang,25956520,4
+54825583,25956520,2
+51985162,25956520,-1
+2986990,25956520,2
+84608070,25956520,1
+Goshawk-,25956520,-1
+aegisxu,25956520,1
+130440504,25956520,5
+45812383,25956520,5
+130332901,25956520,5
+68040274,25956520,-1
+O____O,25956520,4
+1823502,25956520,5
+60764117,25956520,2
+122052846,25956520,1
+frienger,25956520,1
+irisyours,25956520,3
+53094126,25956520,5
+99329587,25956520,5
+102688832,25956520,3
+62716748,25956520,1
+judy0420,25956520,3
+shochiu,25956520,1
+132218568,25956520,1
+37146663,25956520,4
+103677268,25956520,4
+pwxtom,25956520,3
+65911258,25956520,3
+73838812,25956520,3
+1001195,25956520,1
+june.q,25956520,2
+48794580,25956520,3
+thisisgap,25956520,3
+earlyzaozao,25956520,2
+122392735,25956520,3
+LoveRaul77,25956520,5
+94030348,25956520,4
+bjmiss,25956520,2
+5552215,25956520,3
+132096780,25956520,5
+7900399,25956520,3
+Nakaiaoi,25956520,3
+wemn,25956520,-1
+49028296,25956520,4
+13262103,25956520,3
+severus,25956520,5
+4219402,25956520,5
+79940249,25956520,4
+123049067,25956520,1
+73762063,25956520,4
+132012662,25956520,4
+mfanson,25956520,1
+130685876,25956520,1
+43232986,25956520,1
+126176742,25956520,5
+82879204,25956520,5
+48071372,25956520,-1
+12511197,25956520,1
+asukayoshioka,25956520,3
+131918463,25956520,1
+53265718,25956520,5
+rosavivian,25956520,4
+63576554,25956520,5
+74380209,25956520,1
+58034308,25956520,1
+qianricao,25956520,3
+63412313,25956520,3
+32977496,25956520,4
+Mr.Hong,25956520,4
+Mr.Hong,25956520,4
+dcmxy,25956520,3
+27233015,25956520,4
+susberry,25956520,3
+63528738,25956520,3
+sammi_koo,25956520,3
+48395509,25956520,3
+60147260,25956520,2
+38920427,25956520,-1
+120376008,25956520,3
+56102431,25956520,4
+126400536,25956520,3
+47941861,25956520,5
+Iamapoem,25956520,3
+59359712,25956520,4
+szk13731584239,25956520,2
+123546211,25956520,5
+momopeach,25956520,3
+127061960,25956520,5
+68621390,25956520,3
+47916116,25956520,4
+mia1013,25956520,3
+27993580,25956520,1
+131537938,25956520,3
+43296422,25956520,3
+Zen-Ting,25956520,5
+14008920,25956520,4
+46567996,25956520,3
+68949311,25956520,3
+doriszhangye,25956520,5
+orangeumoon,25956520,2
+75381849,25956520,4
+82581264,25956520,-1
+lmm333,25956520,3
+119683375,25956520,3
+78984625,25956520,-1
+prin0602cess,25956520,3
+55537461,25956520,5
+millylyu,25956520,1
+81409226,25956520,-1
+49572879,25956520,4
+49343715,25956520,4
+Darevivion,25956520,1
+sunmin1992,25956520,5
+rurucat,25956520,2
+milovejt_,25956520,2
+67413648,25956520,3
+yycznh0520,25956520,4
+122680968,25956520,5
+mr.Marlboro,25956520,1
+snowmoonsakura,25956520,4
+51464562,25956520,3
+120302342,25956520,3
+summer4_ever,25956520,2
+42202174,25956520,5
+45408474,25956520,4
+63994620,25956520,3
+58956740,25956520,4
+48523065,25956520,3
+62370156,25956520,2
+64755839,25956520,3
+48071996,25956520,4
+sherry_mj,25956520,3
+58310679,25956520,3
+68363242,25956520,4
+97840419,25956520,3
+87726379,25956520,4
+48962941,25956520,1
+4401259,25956520,3
+yixi7,25956520,4
+42646468,25956520,4
+84391390,25956520,1
+53181549,25956520,5
+oxolin,25956520,1
+elisha_gai,25956520,3
+Ryanzeng,25956520,4
+63352248,25956520,4
+graceanbaby,25956520,5
+67404244,25956520,2
+cyhappy36507,25956520,4
+76824704,25956520,4
+66836438,25956520,3
+chuck0jessie,25956520,4
+73346410,25956520,4
+61921759,25956520,3
+forseptember,25956520,2
+75940485,25956520,3
+fanfan1989,25956520,-1
+130331814,25956520,1
+younger105,25956520,3
+melonnpumpkin,25956520,5
+79492851,25956520,3
+ff_way,25956520,1
+4165611,25956520,3
+127329113,25956520,3
+29741430,25956520,3
+51061132,25956520,4
+84076381,25956520,3
+60020985,25956520,1
+129798303,25956520,3
+8342264,25956520,2
+48384609,25956520,4
+46710908,25956520,4
+10011120,25956520,3
+86807524,25956520,4
+60372310,25956520,4
+55773220,25956520,1
+38387457,25956520,3
+49761291,25956520,2
+yuexiaokan,25956520,5
+72976463,25956520,2
+63721849,25956520,4
+53654985,25956520,4
+huaxiaozh,25956520,4
+56711007,25956520,3
+duosuo-ndream,25956520,4
+64181087,25956520,-1
+82623937,25956520,2
+pajamania,25956520,3
+wendyblueberry,25956520,3
+121457828,25956520,1
+afa1021,25956520,3
+1378503,25956520,3
+43496439,25956520,5
+62484889,25956520,4
+52414644,25956520,3
+northcity,25956520,-1
+Do-my-self,25956520,3
+aibamoe,25956520,3
+35827809,25956520,4
+91880703,25956520,5
+104115197,25956520,-1
+batongyang,25956520,5
+mymeda,25956520,4
+xxxxxxdee,25956520,3
+120243539,25956520,5
+huan19494114,25956520,2
+42000833,25956520,4
+52944642,25956520,3
+duanzizai,25956520,3
+duanzizai,25956520,3
+40611753,25956520,3
+3672180,25956520,4
+eokmiamia,25956520,3
+44559687,25956520,4
+5355133,25956520,4
+46161171,25956520,4
+124136324,25956520,3
+49450479,25956520,-1
+jeffchuwei,25956520,3
+monster-yy,25956520,5
+30457423,25956520,3
+galinashen,25956520,3
+3308006,25956520,1
+doubanwangwei,25956520,5
+pariseros,25956520,5
+69547016,25956520,3
+57080555,25956520,3
+81619869,25956520,3
+2666968,25956520,-1
+zhouxiaoxian007,25956520,3
+4154813,25956520,5
+51381196,25956520,4
+46457898,25956520,-1
+ilmarie,25956520,4
+1025513,25956520,-1
+58179619,25956520,3
+73084756,25956520,4
+3874094,25956520,1
+PrincessAlice,25956520,5
+82729346,25956520,2
+74900511,25956520,5
+xu77,25956520,3
+45274666,25956520,3
+baizi886,25956520,4
+woshimumu,25956520,3
+53219323,25956520,3
+wanziphoto,25956520,3
+84142287,25956520,4
+ruo1996,25956520,3
+51759848,25956520,4
+rabbityinyin,25956520,-1
+blinglu,25956520,3
+rajorAn,25956520,4
+68984410,25956520,3
+65600552,25956520,4
+3322566,25956520,3
+KATHLEEN285,25956520,3
+51810692,25956520,-1
+50945725,25956520,1
+4108180,25956520,5
+103214078,25956520,3
+9420191,25956520,5
+Hannia,25956520,3
+41848345,25956520,3
+megumi2046,25956520,3
+yalindongdong,25956520,3
+undeadmonster,25956520,4
+77196684,25956520,3
+lyj120954099,25956520,3
+rickydna,25956520,4
+3857610,25956520,5
+GrEy4ai,25956520,2
+jjwhu,25956520,3
+36664394,25956520,4
+82231172,25956520,4
+AliceTang27,25956520,3
+2840439,25956520,5
+54355700,25956520,4
+lingdongling,25956520,3
+vivifyvivi,25956520,1
+113532923,25956520,4
+63868760,25956520,4
+Elizabeth-Lee,25956520,2
+justinnext,25956520,2
+4065013,25956520,-1
+133241079,25956520,5
+dream_lee,25956520,5
+47331203,25956520,3
+53272974,25956520,3
+133771695,26021055,2
+82231172,26021055,1
+125055300,26021055,3
+93290437,26021055,1
+76692295,26021055,3
+kai1949,26021055,5
+zoelu,26021055,-1
+134176594,26021055,2
+131343395,26021055,5
+74357024,26021055,1
+121807870,26021055,1
+102267665,26021055,3
+133491379,26021055,1
+54049800,26021055,2
+51705019,26021055,1
+56441549,26021055,2
+50970598,26021055,1
+134531481,26021055,1
+135609693,26021055,1
+115356546,26021055,1
+57632493,26021055,2
+vala1994,26021055,1
+115329516,26021055,1
+82519366,26021055,1
+137062977,26021055,5
+62730894,26021055,1
+98916827,26021055,3
+137047356,26021055,2
+29608626,26021055,2
+60987007,26021055,3
+42700509,26021055,1
+51057847,26021055,1
+kunkunxiansheng,26021055,1
+126970287,26021055,3
+136534147,26021055,3
+121390872,26021055,1
+2602994,26021055,1
+130605576,26021055,4
+57872112,26021055,1
+4624612,26021055,1
+w-leaf,26021055,1
+77481221,26021055,3
+Xuansee,26021055,1
+131254424,26021055,1
+Thrloverock,26021055,1
+48383123,26021055,1
+jinyiqian,26021055,2
+134644116,26021055,1
+arielzhang,26021055,3
+58921825,26021055,2
+lovingsister,26021055,2
+108860224,26021055,1
+74812612,26021055,1
+50925315,26021055,1
+2085469,26021055,2
+75796576,26021055,3
+1319405,26021055,1
+41843254,26021055,1
+6119938,26021055,2
+48873217,26021055,1
+48538651,26021055,1
+131470546,26021055,2
+foleyfan,26021055,1
+bigfacebigeye,26021055,1
+L-6206,26021055,1
+andreamomozby,26021055,2
+Amoresummer,26021055,2
+80937866,26021055,-1
+101472907,26021055,1
+89789393,26021055,1
+109463525,26021055,2
+128384587,26021055,1
+53782984,26021055,2
+3187343,26021055,3
+guoxiaoheng,26021055,3
+fancybear,26021055,1
+4478283,26021055,3
+68101294,26021055,2
+137726184,26021055,2
+66381242,26021055,2
+xiaoyao123,26021055,1
+137555231,26021055,2
+gonglingsu,26021055,1
+77794190,26021055,2
+84267223,26021055,3
+135442645,26021055,2
+75581591,26021055,1
+badula,26021055,-1
+61640481,26021055,2
+131752746,26021055,2
+48127699,26021055,1
+133978729,26021055,2
+70246557,26021055,1
+54064610,26021055,2
+46630645,26021055,2
+123634795,26021055,4
+ifeon,26021055,1
+jub,26021055,4
+137503237,26021055,1
+78066826,26021055,2
+35744685,26021055,2
+91440426,26021055,3
+134399469,26021055,1
+85320947,26021055,1
+4500067,26021055,3
+80276042,26021055,1
+magiclj99,26021055,2
+cat.k,26021055,1
+65145457,26021055,-1
+43677701,26021055,3
+38915358,26021055,4
+cherry_why,26021055,3
+131887197,26021055,1
+38000900,26021055,3
+4468461,26021055,2
+84419481,26021055,1
+134815283,26021055,4
+zoekeke,26021055,2
+smallqianqian,26021055,1
+127480277,26021055,1
+136947773,26021055,3
+91277792,26021055,3
+137305184,26021055,4
+137235653,26021055,3
+99710074,26021055,3
+emmalty,26021055,1
+47381919,26021055,1
+lnayg1221,26021055,3
+36502417,26021055,1
+48632388,26021055,5
+ever4ever,26021055,2
+127966354,26021055,1
+nancy1207,26021055,1
+78616610,26021055,4
+36580993,26021055,1
+136942011,26021055,3
+yizhimaze,26021055,3
+7010764,26021055,2
+SB714995200,26021055,1
+64760327,26021055,2
+125841916,26021055,4
+celysej,26021055,4
+58648435,26021055,3
+103521905,26021055,3
+53484529,26021055,2
+68531336,26021055,1
+2746168,26021055,3
+58716035,26021055,1
+133895653,26021055,1
+60193197,26021055,1
+132706996,26021055,5
+137581640,26021055,1
+19271403,26021055,3
+135138287,26021055,1
+80991459,26021055,4
+63961193,26021055,4
+44049094,26021055,1
+134542917,26021055,1
+thesillyone,26021055,1
+59205597,26021055,3
+59205597,26021055,3
+zi-jojopig,26021055,1
+93613617,26021055,3
+103242828,26021055,2
+113345841,26021055,1
+107546917,26021055,1
+79825260,26021055,1
+121740137,26021055,1
+135510742,26021055,1
+57218441,26021055,1
+3610351,26021055,1
+133217235,26021055,1
+52997821,26021055,3
+62936676,26021055,1
+50580090,26021055,4
+128233338,26021055,3
+62157854,26021055,1
+63480868,26021055,2
+47512500,26021055,2
+54462920,26021055,1
+60652654,26021055,1
+41158642,26021055,2
+44775342,26021055,3
+69166998,26021055,1
+47494111,26021055,1
+92589362,26021055,3
+60043726,26021055,2
+65808735,26021055,1
+tianluoDaisy,26021055,1
+3471791,26021055,2
+2987938,26021055,2
+43458075,26021055,3
+58082536,26021055,2
+81268447,26021055,-1
+LoveUU520,26021055,1
+124444264,26021055,2
+omogumogumo,26021055,3
+58635910,26021055,1
+68550514,26021055,4
+131103457,26021055,2
+114380564,26021055,1
+hegwin,26021055,2
+4153870,26021055,2
+136668262,26021055,2
+54935420,26021055,1
+84866154,26021055,3
+bettersnail,26021055,-1
+idadai,26021055,1
+123730406,26021055,1
+summerdontgo,26021055,2
+92023130,26021055,3
+134067728,26021055,2
+longming21,26021055,4
+125282375,26021055,4
+137850204,26021055,3
+88985406,26021055,2
+137849195,26021055,3
+64235845,26021055,3
+71185937,26021055,1
+wangyuezuiai,26021055,1
+chaikuan,26021055,1
+84255418,26021055,3
+120048792,26021055,2
+shuimuniuniu,26021055,2
+80319833,26021055,2
+25927417,26021055,2
+80227581,26021055,3
+137839195,26021055,2
+137449600,26021055,1
+103572835,26021055,2
+hennic,26021055,2
+137793944,26021055,2
+icewendy,26021055,2
+3543054,26021055,-1
+58863257,26021055,1
+62253613,26021055,-1
+71918561,26021055,1
+60054122,26021055,1
+115310630,26021055,2
+129734802,26021055,1
+129734802,26021055,1
+61315672,26021055,2
+xinyingaiai,26021055,1
+44449851,26021055,1
+125655628,26021055,3
+57572100,26021055,1
+120911789,26021055,1
+136251378,26021055,1
+137479208,26021055,1
+somnouslove,26021055,3
+ecstasybird,26021055,1
+122855833,26021055,1
+52221531,26021055,1
+3609952,26021055,1
+74092219,26021055,3
+1393380,26021055,2
+vichyhchi,26021055,1
+60877547,26021055,1
+130539334,26021055,2
+AquamarineS,26021055,-1
+is_xiaoshu,26021055,2
+137075359,26021055,3
+43969731,26021055,-1
+lytt,26021055,1
+47444356,26021055,1
+aprilliusiyue,26021055,1
+55793019,26021055,1
+50299714,26021055,1
+3306518,26021055,2
+48659455,26021055,2
+vermis_sum,26021055,2
+xiarijinghao,26021055,1
+cedric99,26021055,2
+53318874,26021055,1
+108391256,26021055,4
+120535734,26021055,1
+2012057,26021055,2
+134507096,26021055,2
+56111522,26021055,1
+132463662,26021055,2
+67031001,26021055,1
+elinli00,26021055,2
+42375246,26021055,3
+lisalovevivi,26021055,1
+69713505,26021055,1
+41236968,26021055,1
+66403603,26021055,2
+121195542,26021055,5
+57771981,26021055,1
+SuperErinyeah,26021055,2
+77434550,26021055,1
+119262714,26021055,1
+134935591,26021055,1
+81998298,26021055,1
+68630000,26021055,4
+72220959,26021055,3
+134108684,26021055,1
+54493901,26021055,3
+48888769,26021055,1
+137059216,26021055,2
+137059216,26021055,2
+lele4027,26021055,3
+viviwanghoho,26021055,2
+88679885,26021055,1
+51155851,26021055,1
+pulemon,26021055,2
+42842033,26021055,1
+47882280,26021055,5
+58309406,26021055,2
+tmz1127,26021055,1
+54679074,26021055,1
+92962162,26021055,3
+132790620,26021055,1
+104710659,26021055,2
+134625303,26021055,5
+Pridsl,26021055,3
+29988563,26021055,2
+61769877,26021055,4
+120634175,26021055,4
+80544842,26021055,1
+54066175,26021055,2
+100297843,26021055,1
+joybozo,26021055,1
+53169979,26021055,3
+71917067,26021055,2
+96758494,26021055,1
+lotusmomo,26021055,3
+casuallife,26021055,3
+2216533,26021055,-1
+win-go,26021055,2
+hymnjiao,26021055,1
+liyang3228082,26021055,1
+47044557,26021055,-1
+134531645,26021055,2
+68551392,26021055,4
+52023451,26021055,2
+48623920,26021055,3
+124618760,26021055,2
+zhongxiran,26021055,-1
+130978369,26021055,1
+130978369,26021055,1
+45831454,26021055,1
+137340242,26021055,1
+64063497,26021055,2
+53459682,26021055,2
+zhoushuqing,26021055,4
+122907867,26021055,2
+93224854,26021055,5
+LittleCatEar,26021055,2
+G-myloxg,26021055,3
+71117694,26021055,1
+74908002,26021055,3
+59540406,26021055,2
+61172903,26021055,1
+cinx,26021055,1
+126092428,26021055,2
+114179686,26021055,2
+49727842,26021055,1
+qiubutong,26021055,1
+78236258,26021055,2
+2376689,26021055,-1
+68550063,26021055,4
+3281277,26021055,2
+3511663,26021055,1
+woyee,26021055,2
+luanwuCAT,26021055,1
+119253554,26021055,2
+77883575,26021055,2
+124497944,26021055,1
+120200485,26021055,1
+132664161,26021055,1
+130421778,26021055,3
+69898063,26021055,1
+TongyanTree,26021055,1
+zhangyiwang,26021055,2
+114384384,26021055,1
+114813775,26021055,-1
+49022703,26021055,3
+131749314,26021055,1
+137274542,26021055,4
+81250941,26021055,1
+134909513,26021055,3
+3907593,26021055,1
+MCcongye,26021055,1
+69776394,26021055,1
+59731344,26021055,1
+susie1991,26021055,1
+60303119,26021055,2
+1495064,26021055,1
+87469252,26021055,-1
+39268690,26021055,3
+82075343,26021055,2
+4454692,26021055,2
+131060612,26021055,4
+3934064,26021055,1
+60072437,26021055,2
+62662822,26021055,3
+56345176,26021055,1
+67331748,26021055,1
+104091868,26021055,1
+yeats1865,26021055,2
+lutheryang,26021055,1
+136829715,26021055,4
+hxh1992,26021055,1
+creanion,26021055,3
+59554149,26021055,3
+68141214,26021055,-1
+116271293,26021055,1
+77621365,26021055,2
+frankfankai,26021055,2
+120832097,26021055,2
+66207797,26021055,2
+130540894,26021055,2
+4673018,26021055,1
+81152446,26021055,1
+37148291,26021055,1
+65025231,26021055,1
+53624706,26021055,3
+122545234,26021055,2
+70957109,26021055,1
+137122181,26021055,2
+44273309,26021055,5
+53008518,26021055,4
+snowchong1984,26021055,1
+4371910,26021055,4
+asdf710667,26021055,1
+74150636,26021055,2
+52629192,26021055,2
+windchimessss,26021055,-1
+79195615,26021055,2
+137307744,26021055,5
+79834344,26021055,3
+46206481,26021055,1
+136678002,26021055,2
+pineapples,26021055,2
+crazy2000,26021055,1
+liwei_hi,26021055,5
+121180722,26021055,1
+1754343,26021055,2
+60478405,26021055,3
+60478405,26021055,3
+64309170,26021055,1
+63851711,26021055,2
+Valen-Valen,26021055,3
+somnus0319,26021055,3
+128038704,26021055,2
+132322460,26021055,4
+135285888,26021055,5
+leechenger,26021055,1
+59587066,26021055,1
+75500814,26021055,1
+104905007,26021055,5
+1399115,26021055,2
+137273110,26021055,3
+alisa_lea,26021055,2
+39315197,26021055,2
+121262498,26021055,4
+78607370,26021055,1
+137206904,26021055,3
+44308589,26021055,1
+58141531,26021055,1
+88760391,26021055,1
+116650242,26021055,1
+88322769,26021055,3
+137062207,26021055,4
+42735872,26021055,2
+35005590,26021055,1
+68632898,26021055,4
+wangxiao817,26021055,1
+53391246,26021055,2
+136409582,26021055,2
+72128165,26021055,2
+137225547,26021055,5
+70487695,26021055,4
+136488910,26021055,1
+137082405,26021055,4
+128271168,26021055,3
+98956225,26021055,4
+69439267,26021055,4
+73530411,26021055,4
+103277074,26021055,4
+127085106,26021055,3
+imhqy,26021055,1
+131412359,26021055,3
+89386351,26021055,4
+120687136,26021055,2
+moon_shiny,26021055,2
+43653734,26021055,1
+43902892,26021055,1
+72711765,26021055,3
+57780928,26021055,-1
+53916327,26021055,1
+133415623,26021055,5
+130373176,26021055,3
+131704221,26021055,3
+Yangtze_Ann,26021055,-1
+44032953,26021055,3
+135237923,26021055,2
+58513319,26021055,2
+May_1s,26021055,1
+131033417,26021055,5
+137136099,26021055,4
+6972638,26021055,3
+70313784,26021055,3
+83389168,26021055,1
+shinny010101,26021055,2
+71108612,26021055,1
+135850955,26021055,3
+68666799,26021055,4
+66035004,26021055,1
+127111031,26021055,4
+137061442,26021055,5
+133970603,26021055,1
+61675448,26021055,4
+131860652,26021055,4
+97452265,26021055,4
+103187802,26021055,2
+xclc,26021055,1
+68632804,26021055,3
+131815669,26021055,-1
+130998014,26021055,4
+40067937,26021055,-1
+1943610,26021055,4
+68541472,26021055,1
+133584467,26021055,3
+66680308,26021055,1
+98954264,26021055,3
+133415627,26021055,5
+114517843,26021055,4
+131022381,26021055,4
+Cmille_Kong,26021055,5
+74920289,26021055,2
+121194917,26021055,3
+byorange,26021055,1
+133543813,26021055,4
+131205877,26021055,5
+64083587,26021055,1
+xellgio,26021055,4
+136974711,26021055,4
+monikalife,26021055,2
+monikalife,26021055,2
+137058479,26021055,4
+33000797,26021055,5
+zuozuoqing,26021055,2
+3969658,26021055,1
+3107107,26021055,1
+47904906,26021055,2
+MelanieNg,26021055,3
+53317019,26021055,2
+3682455,26021055,1
+135140954,26021055,1
+136879375,26021055,4
+jyngoing1990,26021055,4
+61883535,26021055,1
+49901356,26021055,2
+aibamoe,26021055,1
+suiffeng0504,26021055,5
+bhbst,26021055,1
+47828018,26021055,2
+AhLang,26021055,1
+135300017,26021055,5
+75714597,26021055,1
+65641173,26021055,1
+58144474,26021055,2
+134520468,26021055,3
+121352269,26021055,1
+46370564,26021055,1
+122452558,26021055,4
+48816069,26021055,1
+hanhanq,26021055,2
+119315323,26021055,-1
+fmxiaofei,26021055,3
+40126557,26021055,3
+48591645,26021055,3
+onlyh,26021055,5
+132098902,26021055,1
+64497873,26021055,1
+120567507,26021055,3
+31108272,26021055,1
+85040313,26021055,3
+91606599,26021055,2
+cqingteng,26021055,2
+38412910,26021055,1
+daisyhyj,26021055,2
+52956234,26021055,1
+132292462,26021055,1
+2855026,26021055,2
+69769731,26021055,3
+51503621,26021055,1
+61667274,26021055,3
+55764073,26021055,2
+76022781,26021055,2
+62318904,26021055,1
+49876674,26021055,2
+116577154,26021055,2
+44836011,26021055,1
+61161768,26021055,1
+wch2020,26021055,2
+129783136,26021055,4
+56194866,26021055,1
+35827809,26021055,2
+gzy0517,26021055,1
+48935399,26021055,3
+pineberry,26021055,2
+58903090,26021055,2
+115217962,26021055,3
+42620728,26021055,1
+84060429,26021055,2
+71298888,26021055,1
+74139940,26021055,1
+67216535,26021055,2
+76230819,26021055,1
+56291360,26021055,2
+30486993,26021055,1
+49883816,26021055,1
+127951371,26021055,2
+49338392,26021055,1
+136863411,26021055,5
+53632021,26021055,1
+kiki0029,26021055,3
+97512694,26021055,2
+42517451,26021055,3
+136316736,26021055,1
+136849738,26021055,3
+136826257,26021055,1
+67181207,26021055,2
+2924137,26021055,1
+4668252,26021055,1
+hukou,26021055,1
+8152249,26021055,1
+odzydr,26021055,2
+58278943,26021055,1
+umbrella722,26021055,2
+38103612,26021055,3
+ypppp,26021055,2
+81592044,26021055,2
+106877538,26021055,5
+49232664,26021055,2
+1912059,26021055,5
+80980884,26021055,2
+135707979,26021055,2
+52479067,26021055,2
+cactus7,26021055,3
+126579331,26021055,3
+75691405,26021055,3
+107835849,26021055,3
+70548189,26021055,3
+noonsleep,26021055,2
+3774349,26021055,2
+6877388,26021055,1
+hank5owen,26021055,2
+87825799,26021055,1
+65292306,26021055,2
+2310371,26021055,1
+yonging,26021055,1
+69915690,26021055,1
+54530898,26021055,2
+xunrenlala,26021055,1
+1433196,26021055,3
+angalny,26021055,1
+93661374,26021055,1
+pottqqq,26021055,2
+132572052,26021055,4
+128934004,26021055,-1
+1339878,26021055,3
+68146250,26021055,2
+61866321,26021055,2
+tutudance,26021055,1
+dengxuanhai,26021055,2
+4465352,26021055,3
+4141698,26021055,2
+3608735,26021055,1
+tianxinmay,26021055,2
+44832442,26021055,2
+zjss,26021055,2
+52728063,26021055,2
+4217513,26021055,2
+61683482,26021055,2
+75706045,26021055,2
+79990790,26021055,3
+45681861,26021055,2
+43229954,26021055,2
+68749534,26021055,3
+kuxiafeng,26021055,1
+crystal1812,26021055,1
+2656189,26021055,1
+134730691,26021055,3
+48096896,26021055,1
+78728709,26021055,1
+64434584,26021055,1
+52903037,26021055,1
+110392919,26021055,3
+65116681,26021055,1
+xiangcai_,26021055,2
+134631211,26021055,3
+61135044,26021055,2
+yoji,26021055,1
+58338006,26021055,2
+wewillrockyou,26021055,1
+violetbooks,26021055,2
+2647676,26021055,2
+3494414,26021055,1
+phoebejh,26021055,-1
+133664025,26021055,2
+36196484,26021055,1
+34343005,26021055,2
+54261125,26021055,1
+78437206,26021055,1
+mojian,26021055,2
+122039396,26021055,2
+9095449,26021055,2
+jpclover,26021055,3
+40056486,26021055,-1
+robinjrt,26021055,-1
+136669626,26021055,1
+74121159,26021055,1
+jodiexie,26021055,2
+95481585,26021055,4
+107891565,26021055,1
+37620368,26021055,2
+qjquu,26021055,1
+piscescissy,26021055,1
+130753811,26021055,1
+134643922,26021055,3
+43627476,26021055,2
+70364463,26021055,4
+114189005,26021055,2
+50363355,26021055,1
+seven94,26021055,1
+Coky.M,26021055,2
+53212036,26021055,1
+platinum_wang,26021055,1
+116031531,26021055,1
+58754090,26021055,1
+101428938,26021055,3
+7671349,26021055,2
+66036292,26021055,-1
+102070677,26021055,1
+132599218,26021055,2
+48112826,26021055,1
+2387180,26021055,-1
+45269932,26021055,1
+78076129,26021055,1
+60854908,26021055,2
+80209748,26021055,1
+81266175,26021055,3
+134041897,26021055,2
+62748915,26021055,3
+40551404,26021055,1
+63015769,26021055,2
+134348634,26021055,2
+2209318,26021055,1
+syanns,26021055,2
+93242497,26021055,3
+116695354,26021055,-1
+58079311,26021055,3
+70775173,26021055,2
+50785660,26021055,2
+33847605,26021055,3
+sophiaforfree,26021055,-1
+gdragon-ily,26021055,3
+68527593,26021055,2
+think_think,26021055,2
+choulaoya,26021055,2
+elaine0801,26021055,4
+94207654,26021055,3
+35549531,26021055,3
+78617512,26021055,1
+33638024,26021055,1
+72120967,26021055,3
+2077590,26021055,2
+60630554,26021055,1
+4588044,26021055,1
+2226886,26021055,2
+8402557,26021055,2
+57967189,26021055,2
+52243098,26021055,1
+41680938,26021055,1
+134864362,26021055,1
+yvoria,26021055,1
+51170361,26021055,3
+58140285,26021055,1
+sometimeme,26021055,1
+1958346,26021055,2
+57361545,26021055,2
+96468820,26021055,1
+81210724,26021055,1
+jill426,26021055,2
+40967366,26021055,2
+85671654,26021055,2
+119110863,26021055,3
+63986854,26021055,1
+wikimedia,26021055,1
+ruanjingtian,26021055,2
+m4145050099,26021055,2
+66705172,26021055,1
+92177922,26021055,3
+53003962,26021055,4
+88071858,26021055,1
+bachappy1314,26021055,3
+bachappy1314,26021055,3
+3897743,26021055,2
+lemed,26021055,1
+130499897,26021055,2
+91253707,26021055,2
+115489210,26021055,3
+79452838,26021055,1
+63384083,26021055,-1
+ccior,26021055,1
+3529621,26021055,1
+50944576,26021055,-1
+27352868,26021055,2
+121834295,26021055,2
+llllyyyynana,26021055,2
+wangluling,26021055,1
+104580788,26021055,1
+119030495,26021055,5
+48023972,26021055,2
+87739966,26021055,1
+zhixiaoxia,26021055,1
+136276249,26021055,3
+55692623,26021055,1
+134911051,26021055,1
+48950860,26021055,1
+56957975,26021055,1
+hanax4,26021055,3
+79693169,26021055,2
+superfatrich,26021055,1
+uchinoakame,26021055,2
+55354703,26021055,3
+bLue.C,26021055,1
+chevalier7,26021055,1
+79423614,26021055,-1
+129326754,26021055,1
+girlsophia,26021055,2
+muz,26021055,2
+79837313,26021055,1
+45661108,26021055,1
+silortea,26021055,1
+130633898,26021055,1
+youngbinbin,26021055,1
+icecreamdd,26021055,2
+134309957,26021055,-1
+47169625,26021055,1
+chaochao85mao,26021055,-1
+waiwaixiaohei,26021055,1
+yangyangjt,26021055,2
+tjyan,26021055,3
+byduan,26021055,2
+48780269,26021055,4
+catherinex217,26021055,1
+65660136,26021055,3
+3538758,26021055,2
+125116163,26021055,3
+Rosesea,26021055,1
+95897604,26021055,4
+45030880,26021055,2
+74337586,26021055,1
+61583627,26021055,1
+51629890,26021055,2
+61583627,26021055,1
+51629890,26021055,2
+122199610,26021055,1
+xiaojiongxia,26021055,2
+40093986,26021055,1
+62503588,26021055,3
+122635365,26021055,1
+dearjan,26021055,3
+63119655,26021055,-1
+luteng1990,26021055,3
+71575681,26021055,1
+134505006,26021055,2
+52352034,26021055,3
+120317500,26021055,1
+1662799,26021055,2
+60430589,26021055,1
+42060794,26021055,2
+yuyuzstarry,26021055,3
+66107296,26021055,3
+93382000,26021055,1
+54095491,26021055,1
+47725909,26021055,3
+Mreja,26021055,2
+Esther.,26021055,2
+nickolez,26021055,3
+eleven0205,26021055,1
+58004418,26021055,1
+136335853,26021055,2
+136337190,26021055,4
+4507417,26021055,2
+52963157,26021055,4
+asato,26021055,2
+singercatrol,26021055,3
+Sttaan,26021055,2
+135099240,26021055,4
+49353235,26021055,5
+120556407,26021055,2
+47215745,26021055,3
+75360409,26021055,2
+57129991,26021055,3
+136177030,26021055,3
+FOEHN,26021055,2
+74196818,26021055,3
+MayGemini,26021055,1
+52220712,26021055,2
+lovedtomma,26021055,1
+iamnotshaobing,26021055,3
+135941801,26021055,3
+68350909,26021055,1
+135714519,26021055,2
+louis15yao,26021055,1
+136351240,26021055,3
+Godot_x,26021055,1
+136199952,26021055,1
+69646030,26021055,2
+ambehr,26021055,2
+123694221,26021055,1
+GeSMD,26021055,2
+Eriseddddd,26021055,1
+zhdong,26021055,1
+zhdong,26021055,1
+60766092,26021055,3
+132954430,26021055,3
+songzier1009,26021055,2
+85289332,26021055,2
+auapple,26021055,1
+135795752,26021055,-1
+4033467,26021055,-1
+42234148,26021055,1
+51065746,26021055,3
+127783550,26021055,5
+122261501,26021055,4
+48071372,26021055,2
+45653571,26021055,2
+tanz,26021055,2
+yiniannian,26021055,2
+48819486,26021055,3
+80503633,26021055,1
+83994671,26021055,3
+130547881,26021055,2
+74214868,26021055,2
+Yhughcheni,26021055,1
+xx0301ll,26021055,2
+62039387,26021055,2
+64819804,26021055,2
+70588269,26021055,1
+zhangxyi,26021055,1
+59510725,26021055,4
+63579399,26021055,1
+linayan,26021055,1
+JoshuaW,26021055,3
+51901368,26021055,1
+47801082,26021055,2
+38981287,26021055,1
+chx93,26021055,2
+36017617,26021055,2
+mo719125078,26021055,3
+Dandelion369,26021055,3
+46076810,26021055,3
+wu-x,26021055,1
+1882536,26021055,-1
+Zesz,26021055,2
+33534935,26021055,5
+32860510,26021055,1
+135212982,26021055,1
+quan1989cheng,26021055,1
+RiliXu,26021055,2
+deelynshire,26021055,1
+91358615,26021055,1
+67153884,26021055,2
+48084673,26021055,1
+50853952,26021055,-1
+35828355,26021055,2
+96674876,26021055,1
+muxucao,26021055,2
+caomeivivian,26021055,-1
+44838676,26021055,3
+miaomiaoxy,26021055,1
+134540692,26021055,1
+MMMangojz,26021055,1
+p_summer,26021055,-1
+chunfenghuayu23,26021055,1
+50035534,26021055,2
+46579498,26021055,1
+48378512,26021055,1
+43497977,26021055,1
+38257497,26021055,5
+125001023,26021055,-1
+62532292,26021055,2
+54225374,26021055,1
+cStar,26021055,1
+yandyandy,26021055,3
+59102121,26021055,3
+131919592,26021055,1
+132796909,26021055,1
+45348704,26021055,5
+54000871,26021055,2
+52596376,26021055,3
+103525301,26021055,1
+129846623,26021055,2
+129846623,26021055,2
+66493866,26021055,1
+60333972,26021055,1
+57924290,26021055,1
+100384714,26021055,1
+4637837,26021055,2
+shizhier,26021055,2
+47792903,26021055,3
+59883834,26021055,3
+50101777,26021055,2
+130705417,26021055,2
+55842746,26021055,1
+saltysun,26021055,1
+shanliang-,26021055,1
+5566664,26021055,1
+3277293,26021055,3
+rachelw,26021055,-1
+131468152,26021055,2
+3990927,26021055,1
+guandao--,26021055,1
+130666692,26021055,5
+tiantangling,26021055,1
+92626492,26021055,1
+134574897,26021055,2
+104734535,26021055,2
+cdqingchen,26021055,1
+wyjlazy,26021055,2
+121398261,26021055,2
+tonganda,26021055,1
+Jiffylin,26021055,2
+59368703,26021055,1
+vivifyvivi,26021055,1
+47977266,26021055,1
+2834898,26021055,3
+michiyojun,26021055,1
+46185797,26021055,4
+49519003,26021055,1
+43682942,26021055,1
+54113299,26021055,1
+27091040,26021055,1
+84985768,26021055,2
+97656732,26021055,1
+methuselah,26021055,-1
+37005827,26021055,2
+54076693,26021055,1
+70663980,26021055,2
+4678419,26021055,2
+48942391,26021055,3
+41383796,26021055,2
+62699217,26021055,1
+87599429,26021055,1
+104167946,26021055,1
+56103216,26021055,1
+136120354,26021055,3
+56751035,26021055,4